From 0caede15ce02d6a243eb56b42a376ff2a8b2f65d Mon Sep 17 00:00:00 2001 From: theuscovidatlas Date: Fri, 9 Jul 2021 16:09:44 -0500 Subject: [PATCH 01/40] Functions Test --- functions/cors.js | 54 ++ functions/countyMoran.js | 60 ++ netlify.toml | 2 + package.json | 8 +- yarn.lock | 1881 +++++++++++++++++++++++++++++++++++++- 5 files changed, 1964 insertions(+), 41 deletions(-) create mode 100644 functions/cors.js create mode 100644 functions/countyMoran.js create mode 100644 netlify.toml diff --git a/functions/cors.js b/functions/cors.js new file mode 100644 index 000000000..497528013 --- /dev/null +++ b/functions/cors.js @@ -0,0 +1,54 @@ +const cors_proxy = require('cors-anywhere'); +const fetch = require('node-fetch'); + +const handleResponse = async (response, type) => { + if (type === "json") { + return await response.json() + } + + if (type === "csv" || type === "text" || type === "document") { + return await response.text() + } + + if (type === "buffer" || type === "pbf"){ + return await response.arrayBuffer() + } + + if (type ==="blob"){ + return await response.blob() + } + + return null +} + +exports.handler = async (event) => { + console.log(event) + try { + if (!event.queryStringParameters.url) return { statusCode: 500, body: JSON.stringify({ error: 'No URL Supplied' })} + if (!event.queryStringParameters.type) return { statusCode: 500, body: JSON.stringify({ error: 'No Data Type Supplied' })} + + const port = 8080; + const cors_api_url = `http://localhost:${port}/${event.queryStringParameters.url}`; + + cors_proxy.createServer({ + originWhitelist: [], // Allow all origins + requireHeader: [], + removeHeaders: ['cookie', 'cookie2'] + }).listen(port, '0.0.0.0', function() { + console.log('Running CORS Anywhere on ' + '0.0.0.0' + ':' + port); + }); + + const response = await fetch(cors_api_url, { + method: 'GET' + }).then(r => r.json()) + + return { statusCode: 200, body: JSON.stringify({ data: response }) }; + + } catch (error) { + console.log(error); + return { + statusCode: 500, + body: JSON.stringify({ error: 'Failed fetching data' }), + }; + } +}; \ No newline at end of file diff --git a/functions/countyMoran.js b/functions/countyMoran.js new file mode 100644 index 000000000..87d44c769 --- /dev/null +++ b/functions/countyMoran.js @@ -0,0 +1,60 @@ +const jsgeoda = require('jsgeoda'); +const axios = require('axios') + +function csvJSON(csvStr){ + var lines=csvStr.split("\n"); + var result = {}; + var headers=lines[0].split(","); + + for(var i=1;i { + try { + const t0 = performance.now(); + const [geoda, raw] = await Promise.all([jsgeoda.New(), axios.get('https://raw.githubusercontent.com/GeoDaCenter/covid/master/public/csv/covid_confirmed_cdc.csv')]); + + const uid = await geoda.readGeoJSON(geom); + const {result, headers} = csvJSON(raw.data); + const data = parseOrderedData(result, headers, geoidOrder) + const weights = geoda.getQueenWeights(uid) + + return { statusCode: 200, body: JSON.stringify( + { localMoran: geoda.localMoran(weights, data), time: performance.now() - t0 }) + }; + + } catch (error) { + console.log(error); + return { + statusCode: 500, + body: JSON.stringify({ error: 'Failed fetching data' }), + }; + } +}; + +var geoidOrder = [31039,53069,35011,31109,31129,72085,46099,48327,6091,21053,39063,48189,1027,48011,39003,13189,55111,5137,41063,42007,28061,29083,8109,37037,49033,40001,39085,51775,51121,47065,35035,35003,1091,56023,29011,48057,51735,54075,48077,51095,31101,31137,22019,22111,40135,1049,36101,42053,22105,51179,26109,18073,13025,13171,18151,48361,39047,25015,21003,37001,20073,25025,16051,48177,47115,26007,21231,47185,48147,20043,48265,12053,12129,12131,28017,2130,26035,20157,12127,40017,72115,13115,32001,31181,17067,46067,41013,50011,26103,9007,37057,17025,29103,29117,42117,31043,26089,51181,48391,39017,13273,13063,56013,18115,13073,8115,30065,42043,46101,54079,34037,20039,18123,28145,31015,27095,38099,39115,39133,56041,32013,48247,8017,41005,5113,13193,18007,47129,46043,24047,17185,18069,21209,19053,18169,18003,18099,31171,38085,48127,27045,45023,27073,49005,55093,13049,13233,17113,23001,16055,32003,20147,31089,29101,55063,22021,21061,17005,17009,27085,55033,8027,29123,48353,42127,36091,48041,40095,24001,54103,55053,41007,53041,36003,19031,18117,13089,13227,30015,31017,47013,37069,24510,20111,19027,22107,47123,20075,19151,16045,5063,5085,18111,13119,12051,13265,48245,30059,8067,48027,28069,5019,41035,36075,72105,1019,48019,30087,35059,26153,36111,34007,17083,51085,20199,26003,5049,48215,37155,26123,41049,27153,5083,37109,5091,12095,8111,16041,13045,20161,48413,51167,37027,16065,18173,21001,21077,21097,23023,30097,48181,42059,2188,20051,1065,1105,1033,20151,21017,47149,13075,20101,40059,17147,48107,72053,1063,16033,19109,72151,38013,37063,19085,31103,19187,17151,47159,51089,51510,19101,30049,49013,40003,48119,47169,21193,46039,41029,72067,48507,31007,19121,12011,13279,26151,48397,26163,27105,27001,38071,37145,20195,28151,48133,28055,48123,48005,45081,29125,5001,29109,51540,17011,39145,37115,16053,39163,48309,16037,19089,12099,13181,1013,47165,51097,5015,51820,2220,41051,47061,27057,38081,36089,29179,6067,39125,18179,51063,6083,54005,28009,21055,19147,19159,37151,24015,18171,31077,31095,31151,21119,19045,27063,27039,27047,6009,25001,51119,42065,18089,47003,47027,17029,47097,41001,36097,26159,17131,21127,21175,21177,17049,47105,46025,15003,12041,18157,42109,48277,12086,31057,48289,8097,38035,18091,18057,51595,40081,20071,13145,13251,72127,48433,39069,33009,29145,18129,48311,17035,13297,27121,51157,51009,6111,17033,8093,6037,4027,13129,19025,12055,51580,50017,20113,4021,39051,8003,12017,72049,72051,47041,42031,46097,46073,18031,18037,51057,45089,36031,19195,40063,51027,51005,28087,18143,8099,48435,72121,40101,29043,72039,28073,18137,38057,13147,22049,51133,48157,55047,30073,55127,32021,17057,36103,18161,29119,31157,35047,1081,48367,38021,38003,27143,13293,6097,26033,16019,13013,13183,48271,40115,42033,26037,72133,17135,28003,28071,22043,29005,17115,26149,17055,30033,31001,27109,34039,72139,1097,46087,1057,1017,37131,8081,21087,18047,37013,72073,38015,37159,26071,27067,21237,48149,46081,23029,48045,26131,28015,41003,27133,42063,22061,42099,46137,48203,26013,40131,29019,72097,40015,8059,54011,48383,5141,8117,20035,5071,36041,51045,48083,2290,4017,28085,48357,48103,56003,47081,28143,29081,72029,18005,13223,39015,47141,38101,25027,39091,6031,6073,72123,13079,72103,29037,36027,48477,8101,29067,38009,37051,56017,26001,6061,5129,48305,36077,37153,37093,31131,42023,45035,27161,46015,47177,17023,21201,47095,45015,5051,20139,39155,48333,48359,42019,16049,20115,51029,37025,29225,49011,27033,12093,13291,19013,48403,39131,1125,1131,28097,31099,31087,10003,16081,17161,51073,5133,18017,16077,18015,42101,56043,37029,36109,5069,5079,55123,29093,48223,36001,48225,39111,20165,18107,20187,21129,27071,48029,8013,47089,40097,27165,16013,22053,46119,8031,40029,30011,48461,18051,31105,17093,11001,8085,27171,55059,8037,6075,8113,2020,12109,28019,29079,26085,26139,17031,17059,45047,20059,27027,47075,49003,28139,54051,54035,16039,24005,38005,29163,39087,29201,39001,48143,13137,13319,54061,39033,12027,9011,39059,26015,29209,51760,37169,19039,19065,6041,48381,48401,19181,39161,12043,13199,8023,48099,19001,13053,6043,29089,41047,55079,27139,39129,51145,8014,47099,26009,45069,16009,17103,31127,37031,20149,26075,48091,25019,45009,48007,13019,18165,26143,37005,6035,51610,12081,39119,8015,8025,8043,28109,28111,31041,12013,21117,19037,17037,19081,38089,26095,40019,37139,35055,28011,32023,47073,38011,42057,22055,48237,17175,40055,48211,16069,46129,6055,40033,29221,36011,48417,48407,19061,51075,20181,39139,17001,39021,33019,17075,19157,39169,13113,13141,48259,36039,51137,40089,13277,31025,46077,56009,36043,38047,26053,27005,1095,47173,54057,55003,17053,38029,6089,22113,5121,55085,22035,22037,22087,48481,2198,2195,48153,2275,21151,47009,30031,45031,1053,13143,20001,17041,51079,55137,5065,6053,35017,29131,37193,2110,29165,29021,1083,18065,31143,39123,27107,19165,24013,19011,21159,27025,21189,42015,54029,29051,26021,42061,31045,51141,26119,26135,35007,17163,17189,42009,5127,20099,42073,39067,37003,34009,33005,27089,51101,8055,48255,47023,17171,49027,49029,48257,4011,4013,26129,47087,17159,1009,30051,48131,29173,48251,13061,41023,41011,48159,36113,51113,40005,17129,13015,12069,40111,38083,18049,20091,24009,55129,53031,72003,27169,28149,29003,29139,20021,37083,35043,21051,42035,41043,55065,40147,54077,55135,48137,41037,29153,48473,1099,50009,51111,38097,13139,13283,13037,55125,27007,72043,72055,24019,42037,39023,48323,4019,35006,34005,50021,13099,25007,38049,31179,38045,16023,33007,38043,48273,18127,28101,37163,47127,12103,72019,17065,5105,20023,8029,19185,48165,1093,37189,51770,48317,48037,49057,29127,36045,19097,38063,36019,8045,29177,39073,1085,13043,19113,6105,13215,28135,20005,72081,48003,39109,48375,40133,45003,6045,51550,72153,56037,48169,54031,72001,55089,47163,45059,56011,55117,25013,48055,20029,6027,1037,19059,21095,20061,42011,47019,27083,51037,47179,45071,51093,41069,29023,22047,28125,51061,51750,32005,12037,18055,18139,55131,29105,42085,5031,29195,17193,17039,32033,27049,37173,12101,12119,36059,38091,18163,29071,37011,54107,55007,47161,55097,45063,24003,55039,54101,55061,48369,40151,21063,25003,29041,8103,8087,41045,34023,20167,17155,46055,47111,5023,1109,16003,25005,42107,38103,37045,5059,24021,17169,6051,6109,35013,13081,5027,38039,6095,19043,48449,54027,37125,20009,38087,22083,31071,22099,1119,1133,12117,28035,26065,20177,46061,27061,8073,36053,36115,18081,48445,35021,1121,55067,48155,19021,19129,48385,39041,37067,32510,19049,48065,13261,29223,45007,56007,30093,17177,26087,22027,28161,72093,26079,72005,22039,47069,4003,35023,38023,6071,8083,28023,19125,31055,51600,40057,29039,13059,16085,48275,5103,39037,40071,46041,41057,13077,28127,28131,6013,47017,51087,18119,36119,29017,54047,54033,37077,9009,31139,13023,13033,17181,17091,38051,31141,37185,72009,13197,46027,10005,13159,29175,20015,48209,48325,26105,45013,46135,55105,45077,53013,18023,17027,16067,42113,28121,48345,41039,48485,26155,20089,20123,12007,28091,28039,17085,18059,51620,48329,20171,30013,51660,17199,30029,72111,20189,21067,21091,46013,54001,47181,31013,42097,48469,51530,26147,31173,50015,51067,40011,53037,18135,49025,54093,72113,55023,1071,19123,20045,21059,21197,29097,41061,13151,38001,37137,21083,42021,47107,26093,8001,42069,40123,40037,48457,47175,40125,9013,35053,13003,12031,48145,5149,20033,21113,21171,40075,46079,37033,48377,39057,48489,72021,35028,2122,1003,19007,51127,13263,36049,54015,18077,51019,35033,31011,29149,47083,42131,37107,18167,18039,51077,48303,27093,39005,31119,12085,8079,13085,13167,5095,29059,51143,2068,20145,20209,12029,26157,2240,20065,22097,47055,39095,5093,72117,18043,20129,21081,21217,37075,54045,54073,51071,54019,53061,35015,31117,31145,31149,47085,17125,51197,13303,53077,5143,48213,55035,47153,48471,4005,20191,26127,27065,39007,6003,48167,1011,17105,39135,39079,48201,25017,72145,48115,36069,2261,1001,20121,13091,36023,13039,26161,18087,48371,13225,13311,13163,55083,48347,44009,53047,53063,55041,55113,34017,39151,48187,53029,54037,51153,42029,54055,47145,53009,53065,19177,31073,28095,12033,48439,24033,51169,48239,40085,13289,39099,1087,17191,48437,29151,17089,6017,45055,37073,8089,41019,42089,5101,38019,40103,20063,22077,31067,1115,28123,13095,18061,16017,13047,22059,23027,24027,49035,9003,9015,12087,39157,36085,39071,27077,16011,72023,72069,72077,45045,46085,55121,6113,48431,48495,46071,49041,51036,1023,18083,31047,20057,38105,38017,17069,31005,48163,19103,20133,21089,20107,49017,32011,31085,8095,5013,2090,21101,28051,28105,72037,72047,30027,24023,22119,26059,21141,46033,33013,42133,37161,46005,1043,13097,31097,37187,46075,37007,2100,38007,31003,29073,21031,56005,13211,5037,5107,22093,6115,1117,8091,35009,40149,37135,18131,26019,36029,24031,51685,51013,51035,29183,6069,24035,20013,13031,21071,30007,13309,37049,29087,48295,41009,45041,38061,49053,30003,42047,31165,28031,72099,18013,18019,21021,21065,48087,48089,17063,27081,13109,48497,2050,13307,13169,13135,55095,55045,72107,36079,51700,8011,40065,30089,48173,5047,40093,47125,53051,38055,41027,19197,48419,29055,51017,27111,22075,28115,22067,21029,1047,48093,30053,72129,72135,27021,8007,28163,55087,29107,37195,39117,30039,38031,5033,48053,29186,48179,17109,19137,5067,48229,22079,31111,48067,47079,51840,37061,37087,27037,41025,72095,55001,29045,21015,21229,22009,28137,29227,31163,46021,46063,26057,19175,17127,31113,31121,31161,21039,56025,13321,18109,48139,13229,18053,12035,28077,22127,17073,41041,23031,46029,13231,13259,34025,5021,5045,40041,19107,17061,27075,13285,6023,47043,27003,46009,47059,51183,18141,38067,46007,22115,23019,24041,13257,6065,5005,28007,19169,20011,51049,45085,2164,54109,6029,48097,45075,55119,27099,27101,44007,29161,28117,21235,18149,48491,72109,19131,13107,22025,42025,31133,47171,45083,55073,32007,54007,26165,48079,42013,29085,29009,27123,5081,32019,12071,41033,72091,28113,47031,16059,21183,31153,13071,27167,17157,23011,51173,35041,42111,51191,37081,16001,40039,39101,17149,17203,13245,1107,40045,17145,19075,8107,34035,6011,17087,8053,16031,27059,42049,28029,48467,51161,51015,2060,49031,21161,27009,48129,12005,1077,18045,17173,17051,39127,51590,13011,13305,40109,40069,37099,49043,29167,32015,19191,21023,55037,54087,27159,51670,17201,4007,24045,21043,37097,51083,37091,36057,27113,53073,41021,34029,5009,40031,48253,48185,26049,22007,28013,28041,30017,46109,17141,38077,55005,55051,27157,6015,40127,53007,26141,40027,36105,37149,37165,37085,37105,18159,20027,40145,30083,5003,5041,72147,47135,27163,51740,42051,54023,51171,48235,29025,12107,18025,29111,31075,72087,16071,17139,21107,16035,21013,27035,72011,4009,5123,13101,2070,20105,20183,12065,72041,28005,5097,26025,1029,8123,40009,6049,19153,13179,48349,48047,47187,56021,53003,27155,17017,13247,42067,42083,40049,31021,35045,36073,22031,6019,13105,1005,37017,48111,17167,40035,47035,26137,19161,49015,53019,30109,35027,40021,27173,48231,48335,48499,40113,37039,26107,21195,12067,37035,21025,48075,29181,17179,48243,51678,5135,8069,37177,27131,29219,21227,22017,46121,19127,40141,37113,54063,18155,21105,1061,17099,19055,20127,19051,16015,55081,37143,12047,2170,18035,12075,72063,72065,28045,13315,22081,47093,23017,29095,13281,28129,16075,16079,37095,19067,21145,21225,46125,47029,47067,47071,45067,72057,22117,29207,13093,27145,31155,27141,46035,47025,48337,48049,55101,55115,19009,48207,40083,36065,8065,40121,54017,54105,33003,54095,27079,53017,36009,55027,19105,20007,29169,1045,20109,6039,29075,31009,49009,56031,37071,35019,30037,37101,6085,45019,53005,29001,39043,17183,29189,17007,6103,55025,48151,22085,17137,13235,37015,37167,47143,37079,21131,24039,17123,21143,48095,48081,47133,26063,26069,13069,13299,38037,22051,22103,19083,22023,39027,27137,39093,72143,19015,48373,31051,24025,45037,51001,55015,21121,26067,37129,47131,21035,51003,47147,51043,53023,21109,27031,45073,22033,28021,24037,26081,37147,30009,31167,13001,19099,28153,48101,51081,12105,48503,1123,33015,8105,19149,36123,53033,41017,19155,29229,30101,36107,48287,13121,48073,29007,45029,55055,5055,48191,55013,35057,53049,37141,48221,46117,32031,21007,48009,48023,48405,32029,13249,9001,48313,6077,28159,21103,21167,31183,21135,27051,28053,1025,20017,21221,1069,46003,2013,31061,24029,20037,27023,46103,45049,16043,13029,51053,12111,36055,46083,55017,20207,21157,13065,13185,15005,15007,26099,13287,17079,48331,18147,21099,21137,30005,51710,48389,51155,37179,38053,12091,6001,17013,18085,28103,5147,34015,33011,30045,37121,30077,41053,41065,46105,19173,1129,39039,54025,17121,51051,51007,13243,35029,48355,56045,72137,17187,1089,47189,48063,40067,54085,19145,20087,22045,2158,37133,27043,47057,48161,42087,1041,51520,48399,48443,20153,20193,13161,19035,5145,28083,29053,26043,17197,48117,46011,29047,28027,18011,19057,19163,20143,12023,12059,28047,72141,47011,27017,48315,36095,40117,36007,48291,39009,39081,54083,54049,34011,6057,55031,21199,37065,48241,49001,13213,18075,26117,36083,12021,35031,13017,5077,12003,13173,20159,1015,28059,21037,21057,28107,48195,48071,13239,48199,9005,39143,23021,17153,40107,26145,35039,50005,51023,17119,48085,45001,31053,12115,55077,4015,4025,45051,42091,16061,72013,51720,34027,29211,20135,48039,51790,31029,39113,48447,13221,5029,29147,38073,26017,47157,6007,27115,48021,53039,53055,55009,20205,22069,22109,13155,2185,26011,19111,20141,26047,19071,23015,36099,21125,47121,29213,13269,51830,48415,8047,40087,54071,51139,40079,54089,37119,34013,29115,13209,41055,13133,46017,46095,48135,48293,53027,54003,72149,30067,48121,45021,37199,48387,48321,27149,13301,48197,17133,13165,21085,48363,13149,1079,72061,28093,20025,20081,22013,13295,19095,31019,40007,19023,30085,72017,53015,48297,29135,51193,37197,6047,40043,37023,37191,42123,5061,37059,37111,5099,8125,48421,48463,39011,22015,19063,20169,21153,48017,29027,56001,56029,42093,36081,12121,26031,26051,21173,45057,21123,19193,12123,17003,29099,29113,13051,12125,36037,19041,30025,46107,48109,23005,48013,20095,13241,54097,29215,5119,19047,16005,39055,72035,6107,72015,72125,36117,51163,38095,42045,36063,50003,12019,37183,39061,34003,32017,2180,30055,19019,17043,46047,27069,13219,48493,31059,12079,72031,18153,4012,13027,2016,2150,20185,13271,26115,18181,18113,21139,13201,47103,21211,31185,42001,45005,47037,49047,49049,18021,36047,29141,39075,19143,18079,16083,17165,26077,45061,56019,18027,26055,22003,46065,46069,45027,30095,47007,21219,47183,29077,42077,31159,36015,36121,6099,42095,1103,21027,28043,21213,50013,39029,51125,12097,5053,13175,36061,5007,72071,12083,51135,34041,36021,51690,40023,20041,48427,13103,40129,55103,35025,1075,72054,47117,51011,5087,56033,42041,42055,42079,26039,1113,39019,51065,17097,13195,5039,8057,8063,16073,55141,36013,13067,47091,39013,51195,29035,40013,31035,24017,19033,19073,21205,49055,29031,53071,29133,5025,48113,72079,18033,22073,22095,22091,29197,1059,21041,8019,48267,26097,48307,28141,48105,48217,8075,20055,20125,45039,31033,27091,47155,47139,48263,30099,31069,17117,39141,17195,48141,48301,40077,39167,29091,20047,21111,17107,55139,21075,20079,30021,54091,26111,28119,21093,17081,46057,55069,36033,51630,54081,35005,35049,6059,4023,37053,17101,18067,18125,21047,26045,19179,6025,26027,28157,2282,20179,28079,72025,72027,28025,28037,28099,46045,72119,1035,18029,18071,28081,22125,5035,12063,48125,51115,38075,48283,36067,19087,31083,30075,72075,55091,4001,29121,48279,20097,48015,29061,13253,26101,19119,48233,40139,40153,19003,6101,42105,48465,20077,19133,49023,40137,36017,17143,19091,31177,55049,27097,42003,29205,39097,20201,17019,16087,17045,8121,39065,26113,38093,29203,48423,40143,40091,48395,48171,26125,38033,56027,27117,51099,53025,27129,12001,31091,51147,49007,42017,46059,42081,16057,13237,51640,35037,48269,5073,48451,12049,39025,48501,41071,19115,20049,39121,39137,48425,42075,30035,32027,27087,34031,30047,48261,48033,29157,48411,40073,48051,36035,28133,27053,42027,48025,47077,19171,20175,19135,31147,17021,12089,12133,13007,13275,21005,21185,13057,38065,26133,47109,53001,29057,22101,50007,72045,15009,22057,19139,12113,18101,21203,21223,13055,45033,37103,29199,20131,20137,72007,72033,31065,13087,18177,21009,31093,38025,6005,47049,20031,26023,51031,39105,54067,40053,46115,50027,48455,35001,13205,15001,21147,21191,21215,30041,31175,48069,24043,21133,34033,51680,5125,54053,54021,28063,38079,30103,21049,72101,26005,47005,27015,47137,51109,18145,39049,49021,32009,26083,49039,20093,12009,18105,19117,21239,45053,48043,45065,45087,27103,55075,53011,55099,18103,20053,22123,12077,20083,20119,21149,28001,72083,28057,21073,23009,23013,13217,46049,26061,30061,47051,22029,22063,25009,46019,8035,45079,18095,40099,54009,54013,51021,30111,54043,6033,13131,8021,49037,18133,16047,47167,22121,29171,56039,55043,38059,37041,37021,6063,51730,50023,46093,18097,5017,13021,72059,72131,5115,51175,48183,36087,5089,51800,8041,29187,48475,8061,48487,41015,8119,29049,49051,16029,37157,5117,5011,48193,24011,27041,30043,51059,30023,47001,39077,13005,10001,39173,13157,20003,17095,30107,47015,23007,21165,46089,8051,26029,27151,39147,13267,48429,37117,30081,13317,53043,6081,39171,8009,16021,16007,39159,39035,48285,40105,13125,41059,46102,20117,22065,30105,13313,20203,46023,31027,53035,17111,30069,29033,53075,27147,31169,47033,19079,39165,13255,34019,29217,18121,19069,13035,8039,44001,48035,44005,39045,38069,17015,27125,41031,47021,46127,1051,13187,39083,19017,48175,37089,12061,48393,31049,36051,19141,48059,48379,20067,51105,35051,5043,31123,29015,5109,8077,29065,51185,42103,42115,48343,42125,50001,20103,26121,28049,48281,51107,29185,36025,30071,29129,53045,37127,51199,29159,30063,20019,48459,51047,40061,54069,54065,51165,18183,6093,46037,22071,1073,1127,29063,12039,13083,28033,51187,17047,47113,1111,37009,8033,39089,51683,5139,17071,1101,8005,21155,53057,28067,55021,37019,27029,51131,20163,18041,31079,31081,31115,30091,31063,72089,1007,28075,27011,27013,51091,51177,33017,13153,26041,5131,6087,13191,13207,29069,48483,13117,48409,28147,29137,26073,48341,45017,56035,21069,55019,45091,18001,22005,42119,51041,22001,42039,46123,19077,19183,46111,40051,54039,55109,42121,39153,13127,48479,37123,23003,28065,18175,48031,51025,47045,47053,51149,5075,38027,53053,16063,42071,55057,47151,46031,46053,37181,21033,45011,47039,18009,1055,16025,20155,47119,56015,55107,55133,21079,25021,18063,17077,45043,38041,49019,49045,51650,55011,51069,54041,27119,27127,47047,22089,5111,12045,47063,1021,48351,48219,13009,37175,37171,1031,39149,16027,30019,12073,40119,1039,18093,20069,21045,21169,21207,22011,23025,40025,21163,21179,21187,29155,31125,55078,48365,21011,48001,51033,19167,6021,29510,13111,46051,46091,53067,31107,35061,30079,19005,48061,48339,8071,48299,48319,37043,36071,36093,54059,20197,27055,21181,25023,36005,37055,39103,42005,34001,55071,55029,37047,39053,48441,51570,39031,31135,48205,8049,48249,19189,6079,1067,39175,48505,13177,21019,27019,31037,45025,47101,41067,51810,30057,51103,29013,33001,51159,2230,2105,53021,19093,20173,48453,12057,34021,31023,42129,12015,19029,39107,21115,44003,50025,50019,20085,22041,28155,25011,31031,30001,29143,5057,29029,51117,21233,40047,53059,26091,13123,27135,28089,48227,54099] + +var geom = new Uint8Array([123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,67,111,108,108,101,99,116,105,111,110,34,44,34,110,97,109,101,34,58,34,99,100,99,34,44,34,99,114,115,34,58,123,34,116,121,112,101,34,58,34,110,97,109,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,110,97,109,101,34,58,34,117,114,110,58,111,103,99,58,100,101,102,58,99,114,115,58,79,71,67,58,49,46,51,58,67,82,83,56,52,34,125,125,44,34,102,101,97,116,117,114,101,115,34,58,91,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,117,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,57,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,49,57,51,53,57,44,52,50,46,48,57,48,53,55,55,93,44,91,45,57,55,46,48,49,57,57,49,49,44,52,49,46,55,52,50,57,56,93,44,91,45,57,54,46,57,48,53,57,50,50,44,52,49,46,55,52,50,55,54,51,93,44,91,45,57,54,46,53,53,53,49,55,50,44,52,49,46,55,52,50,48,49,56,93,44,91,45,57,54,46,53,53,52,56,54,54,44,52,50,46,48,49,53,56,55,53,93,44,91,45,57,54,46,53,53,53,53,49,49,44,52,50,46,48,56,57,57,53,55,93,44,91,45,57,54,46,56,50,51,54,55,44,52,50,46,48,57,48,52,49,49,93,44,91,45,57,55,46,48,49,57,51,53,57,44,52,50,46,48,57,48,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,87,97,104,107,105,97,107,117,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,55,50,56,51,49,54,44,52,54,46,50,54,52,53,52,49,93,44,91,45,49,50,51,46,52,55,57,54,52,52,44,52,54,46,50,54,57,49,51,49,93,44,91,45,49,50,51,46,51,54,51,55,52,51,44,52,54,46,49,52,54,51,51,51,93,44,91,45,49,50,51,46,50,49,51,48,53,52,44,52,54,46,49,55,50,53,52,49,93,44,91,45,49,50,51,46,50,49,55,57,53,44,52,54,46,51,56,53,54,49,55,93,44,91,45,49,50,51,46,51,53,56,51,51,52,44,52,54,46,51,56,52,48,50,53,93,44,91,45,49,50,51,46,55,50,54,53,53,55,44,52,54,46,51,56,52,56,55,50,93,44,91,45,49,50,51,46,55,50,56,51,49,54,44,52,54,46,50,54,52,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,68,101,32,66,97,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,56,57,51,51,55,55,44,51,52,46,48,56,56,52,48,55,93,44,91,45,49,48,52,46,55,56,54,52,50,57,44,51,52,46,48,56,55,54,54,52,93,44,91,45,49,48,52,46,55,56,54,49,48,52,44,51,52,46,48,48,48,49,51,55,93,44,91,45,49,48,52,46,49,53,54,50,54,57,44,51,51,46,57,57,53,52,49,51,93,44,91,45,49,48,52,46,49,53,53,54,44,51,52,46,48,56,51,50,48,53,93,44,91,45,49,48,51,46,57,52,54,48,49,57,44,51,52,46,48,56,50,52,54,51,93,44,91,45,49,48,51,46,57,52,56,55,55,56,44,51,52,46,54,48,53,48,53,56,93,44,91,45,49,48,52,46,49,50,56,56,56,44,51,52,46,54,48,53,50,48,49,93,44,91,45,49,48,52,46,49,50,57,49,52,51,44,51,52,46,55,55,57,51,51,55,93,44,91,45,49,48,52,46,51,51,57,56,49,55,44,51,52,46,55,55,57,48,54,50,93,44,91,45,49,48,52,46,51,51,57,55,50,53,44,51,52,46,54,57,50,50,51,52,93,44,91,45,49,48,52,46,52,52,52,55,54,50,44,51,52,46,54,48,52,57,53,50,93,44,91,45,49,48,52,46,56,57,50,48,50,51,44,51,52,46,54,48,52,52,50,54,93,44,91,45,49,48,52,46,56,57,49,55,52,53,44,51,52,46,51,52,55,48,52,51,93,44,91,45,49,48,52,46,56,57,51,51,55,55,44,51,52,46,48,56,56,52,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,76,97,110,99,97,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,48,48,57,52,44,34,98,101,100,115,34,58,49,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,49,48,57,52,44,52,49,46,48,52,54,49,49,54,93,44,91,45,57,54,46,57,49,51,52,57,51,44,52,48,46,54,57,55,57,52,56,93,44,91,45,57,54,46,57,49,50,54,51,55,44,52,48,46,53,50,51,54,50,53,93,44,91,45,57,54,46,52,54,51,54,51,50,44,52,48,46,53,50,51,48,49,51,93,44,91,45,57,54,46,52,54,51,55,54,52,44,52,48,46,55,56,51,57,54,93,44,91,45,57,54,46,52,54,51,56,54,49,44,52,49,46,48,49,54,48,54,57,93,44,91,45,57,54,46,52,54,51,56,54,57,44,52,49,46,48,52,53,48,56,51,93,44,91,45,57,54,46,57,48,56,53,48,55,44,52,49,46,48,52,54,48,57,49,93,44,91,45,57,54,46,57,49,48,57,52,44,52,49,46,48,52,54,49,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,78,117,99,107,111,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,55,51,53,55,49,44,52,48,46,51,53,48,51,53,57,93,44,91,45,57,56,46,50,55,52,48,49,55,44,52,48,46,48,48,50,54,54,50,93,44,91,45,57,55,46,57,51,49,56,50,53,44,52,48,46,48,48,50,48,55,50,93,44,91,45,57,55,46,56,50,49,52,57,53,44,52,48,46,48,48,50,48,52,55,93,44,91,45,57,55,46,56,50,48,56,49,54,44,52,48,46,51,53,48,53,52,53,93,44,91,45,57,55,46,56,50,52,49,49,52,44,52,48,46,51,53,48,53,52,49,93,44,91,45,57,56,46,50,55,51,53,55,49,44,52,48,46,51,53,48,51,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,97,115,32,80,105,101,100,114,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,55,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,56,53,50,54,49,54,44,49,56,46,50,53,52,57,55,50,93,44,91,45,54,53,46,57,50,56,51,52,49,44,49,56,46,49,52,50,56,52,53,93,44,91,45,54,53,46,57,50,54,50,50,55,44,49,56,46,49,49,57,57,54,51,93,44,91,45,54,53,46,56,55,55,54,49,53,44,49,56,46,49,49,56,49,54,55,93,44,91,45,54,53,46,56,50,54,48,54,51,44,49,56,46,50,48,48,52,48,56,93,44,91,45,54,53,46,56,50,52,50,50,44,49,56,46,50,55,51,48,53,52,93,44,91,45,54,53,46,56,51,54,51,56,55,44,49,56,46,50,55,53,50,52,54,93,44,91,45,54,53,46,56,53,50,54,49,54,44,49,56,46,50,53,52,57,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,105,110,110,101,104,97,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,55,52,57,44,34,98,101,100,115,34,58,49,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,50,57,48,56,57,44,52,51,46,56,52,55,57,55,51,93,44,91,45,57,55,46,49,50,57,52,55,56,44,52,51,46,52,57,57,54,56,51,93,44,91,45,57,54,46,57,50,52,56,52,49,44,52,51,46,53,48,48,48,48,55,93,44,91,45,57,54,46,53,57,57,49,57,49,44,52,51,46,53,48,48,52,53,54,93,44,91,45,57,54,46,52,53,51,50,54,44,52,51,46,53,48,48,51,57,93,44,91,45,57,54,46,52,53,50,57,56,56,44,52,51,46,56,52,57,53,48,55,93,44,91,45,57,54,46,56,56,56,54,54,52,44,52,51,46,56,52,56,51,56,53,93,44,91,45,57,55,46,49,50,57,48,56,57,44,52,51,46,56,52,55,57,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,55,34,44,34,78,65,77,69,34,58,34,77,101,110,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,48,51,50,50,51,44,51,49,46,48,56,55,50,57,54,93,44,91,45,49,48,48,46,49,49,53,50,49,54,44,51,49,46,48,56,55,57,57,52,93,44,91,45,49,48,48,46,49,49,54,50,51,52,44,51,48,46,55,49,48,51,54,54,93,44,91,45,57,57,46,52,56,51,56,54,57,44,51,48,46,55,49,48,55,55,49,93,44,91,45,57,57,46,52,56,52,55,53,53,44,51,48,46,57,52,48,54,48,53,93,44,91,45,57,57,46,54,48,51,54,50,55,44,51,48,46,57,52,48,55,50,54,93,44,91,45,57,57,46,54,48,51,50,50,51,44,51,49,46,48,56,55,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,83,105,101,114,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,49,52,55,49,52,57,44,51,57,46,55,48,55,54,53,56,93,44,91,45,49,50,48,46,54,53,52,50,50,55,44,51,57,46,55,48,54,54,50,57,93,44,91,45,49,50,48,46,56,55,49,52,57,56,44,51,57,46,55,55,54,53,50,57,93,44,91,45,49,50,49,46,48,48,57,52,55,55,44,51,57,46,54,51,57,52,53,57,93,44,91,45,49,50,49,46,48,50,50,48,56,53,44,51,57,46,51,57,49,53,53,56,93,44,91,45,49,50,48,46,55,53,53,55,50,57,44,51,57,46,52,53,50,54,54,51,93,44,91,45,49,50,48,46,53,55,55,49,56,56,44,51,57,46,53,50,51,49,52,52,93,44,91,45,49,50,48,46,53,48,53,52,52,53,44,51,57,46,52,52,54,49,49,55,93,44,91,45,49,50,48,46,48,48,51,55,55,51,44,51,57,46,52,52,53,48,53,54,93,44,91,45,49,50,48,46,48,48,49,48,54,50,44,51,57,46,55,50,50,52,49,56,93,44,91,45,49,50,48,46,49,52,55,49,52,57,44,51,57,46,55,48,55,54,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,49,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,49,53,52,48,53,44,51,54,46,56,53,52,52,54,55,93,44,91,45,56,53,46,50,57,54,48,48,50,44,51,54,46,54,50,53,55,49,56,93,44,91,45,56,53,46,50,55,54,50,56,49,44,51,54,46,54,50,54,56,49,54,93,44,91,45,56,52,46,57,55,52,56,49,49,44,51,54,46,54,49,53,52,54,53,93,44,91,45,56,53,46,48,54,52,51,48,55,44,51,54,46,56,53,56,55,52,51,93,44,91,45,56,53,46,50,49,53,52,48,53,44,51,54,46,56,53,52,52,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,54,57,48,44,34,98,101,100,115,34,58,50,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,49,49,52,57,44,52,49,46,49,54,55,56,50,52,93,44,91,45,56,51,46,56,56,48,52,50,51,44,52,48,46,57,50,48,52,50,57,93,44,91,45,56,51,46,56,56,48,48,54,51,44,52,48,46,56,49,57,57,49,57,93,44,91,45,56,51,46,53,49,53,56,56,51,44,52,48,46,56,49,56,49,51,52,93,44,91,45,56,51,46,52,50,48,51,49,57,44,52,48,46,57,57,49,56,56,57,93,44,91,45,56,51,46,52,50,49,48,53,52,44,52,49,46,49,54,54,55,56,93,44,91,45,56,51,46,56,56,49,49,52,57,44,52,49,46,49,54,55,56,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,72,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,49,49,51,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,57,48,52,49,53,44,51,52,46,51,49,51,49,51,50,93,44,91,45,49,48,50,46,48,56,53,55,51,51,44,51,51,46,56,50,52,54,55,53,93,44,91,45,49,48,49,46,53,54,51,53,56,44,51,51,46,56,51,48,52,53,49,93,44,91,45,49,48,49,46,53,54,52,56,53,54,44,51,52,46,51,49,50,52,57,51,93,44,91,45,49,48,49,46,57,57,56,48,50,44,51,52,46,51,49,51,48,51,57,93,44,91,45,49,48,50,46,48,57,48,52,49,53,44,51,52,46,51,49,51,49,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,55,56,44,34,98,101,100,115,34,58,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,53,49,56,57,44,51,51,46,52,57,56,55,52,50,93,44,91,45,56,53,46,57,56,48,50,57,51,44,51,51,46,50,57,52,49,57,93,44,91,45,56,54,46,49,49,56,49,57,56,44,51,51,46,50,57,54,51,50,93,44,91,45,56,54,46,49,55,52,51,55,44,51,51,46,49,48,52,51,57,52,93,44,91,45,56,54,46,48,48,57,49,55,44,51,51,46,48,57,48,50,54,93,44,91,45,56,53,46,54,53,51,54,53,52,44,51,51,46,49,48,54,54,51,52,93,44,91,45,56,53,46,54,52,51,52,56,50,44,51,51,46,52,57,53,56,56,53,93,44,91,45,56,53,46,56,53,49,56,57,44,51,51,46,52,57,56,55,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,114,109,115,116,114,111,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,44,91,45,49,48,49,46,54,50,57,50,53,55,44,51,52,46,55,52,55,54,52,57,93,44,91,45,49,48,49,46,52,55,49,53,54,50,44,51,52,46,55,52,55,52,54,50,93,44,91,45,49,48,49,46,48,57,48,55,52,57,44,51,52,46,55,52,56,50,52,54,93,44,91,45,49,48,49,46,48,56,54,50,56,49,44,51,53,46,49,56,50,49,52,93,44,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,54,52,50,44,34,98,101,100,115,34,58,56,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,48,53,51,49,44,52,48,46,56,53,57,48,57,57,93,44,91,45,56,52,46,51,57,55,51,55,52,44,52,48,46,56,49,53,57,52,49,93,44,91,45,56,52,46,51,57,54,55,55,56,44,52,48,46,54,56,52,57,50,54,93,44,91,45,56,52,46,50,50,50,55,57,57,44,52,48,46,54,56,53,57,53,55,93,44,91,45,56,52,46,49,48,55,55,56,55,44,52,48,46,54,52,51,48,54,57,93,44,91,45,56,51,46,56,56,48,49,57,52,44,52,48,46,54,52,52,54,57,93,44,91,45,56,51,46,56,56,48,48,54,51,44,52,48,46,56,49,57,57,49,57,93,44,91,45,56,51,46,56,56,48,52,50,51,44,52,48,46,57,50,48,52,50,57,93,44,91,45,56,52,46,49,48,57,53,49,54,44,52,48,46,57,48,52,55,51,93,44,91,45,56,52,46,49,48,57,53,56,54,44,52,48,46,56,54,48,57,57,52,93,44,91,45,56,52,46,51,52,48,53,51,49,44,52,48,46,56,53,57,48,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,77,99,68,117,102,102,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,52,57,55,48,53,44,51,51,46,54,48,56,55,54,56,93,44,91,45,56,50,46,53,51,53,55,55,57,44,51,51,46,51,53,55,52,54,93,44,91,45,56,50,46,51,56,51,56,50,57,44,51,51,46,51,49,50,49,48,54,93,44,91,45,56,50,46,51,53,51,52,57,56,44,51,51,46,51,49,50,51,49,56,93,44,91,45,56,50,46,50,57,52,49,55,57,44,51,51,46,51,53,52,54,51,53,93,44,91,45,56,50,46,52,51,54,56,49,52,44,51,51,46,53,52,57,54,53,56,93,44,91,45,56,50,46,52,50,53,51,50,56,44,51,51,46,54,53,48,54,50,57,93,44,91,45,56,50,46,52,55,57,53,49,56,44,51,51,46,54,51,57,53,51,53,93,44,91,45,56,50,46,54,52,57,55,48,53,44,51,51,46,54,48,56,55,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,83,97,117,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,53,57,54,44,34,98,101,100,115,34,58,49,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,49,48,54,57,44,52,51,46,53,53,51,57,57,49,93,44,91,45,57,48,46,49,57,49,57,54,52,44,52,51,46,53,53,52,57,57,54,93,44,91,45,57,48,46,49,57,51,56,49,52,44,52,51,46,49,54,52,52,54,52,93,44,91,45,56,57,46,56,51,56,49,51,53,44,52,51,46,50,48,54,48,53,55,93,44,91,45,56,57,46,55,50,48,52,54,51,44,52,51,46,50,57,51,48,56,52,93,44,91,45,56,57,46,54,48,48,55,51,44,52,51,46,51,56,48,54,54,54,93,44,91,45,56,57,46,53,57,57,51,53,55,44,52,51,46,53,53,56,48,52,49,93,44,91,45,56,57,46,55,50,55,55,56,56,44,52,51,46,53,54,57,52,55,56,93,44,91,45,56,57,46,55,56,53,56,48,57,44,52,51,46,54,52,49,48,52,57,93,44,91,45,57,48,46,51,49,50,52,48,52,44,52,51,46,54,52,48,57,56,56,93,44,91,45,57,48,46,51,49,49,48,54,57,44,52,51,46,53,53,51,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,83,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,52,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,52,49,52,51,57,54,44,51,53,46,57,55,53,55,57,56,93,44,91,45,57,50,46,52,49,54,56,52,55,44,51,53,46,55,56,56,53,57,49,93,44,91,45,57,50,46,52,49,56,52,48,56,44,51,53,46,55,49,54,48,52,54,93,44,91,45,57,50,46,50,52,48,53,50,44,51,53,46,55,49,50,49,57,93,44,91,45,57,49,46,56,51,55,49,55,57,44,51,53,46,55,48,52,57,51,50,93,44,91,45,57,49,46,56,52,57,52,52,56,44,51,53,46,56,54,55,52,49,49,93,44,91,45,57,50,46,48,56,53,52,56,53,44,51,53,46,57,54,53,57,52,51,93,44,91,45,57,50,46,49,51,57,49,48,52,44,51,54,46,49,49,50,50,50,49,93,44,91,45,57,50,46,49,57,53,52,51,44,51,54,46,49,51,50,55,57,56,93,44,91,45,57,50,46,52,49,52,51,57,54,44,51,53,46,57,55,53,55,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,87,97,108,108,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,57,55,50,57,56,44,52,53,46,56,54,48,53,57,53,93,44,91,45,49,49,55,46,55,52,55,51,50,55,44,52,53,46,56,54,49,48,55,50,93,44,91,45,49,49,55,46,55,56,55,54,50,51,44,52,53,46,54,56,57,53,54,55,93,44,91,45,49,49,55,46,54,52,51,52,57,52,44,52,53,46,51,51,54,56,55,93,44,91,45,49,49,55,46,53,50,50,50,52,57,44,52,53,46,50,54,55,55,51,49,93,44,91,45,49,49,55,46,52,55,54,54,56,52,44,52,53,46,49,54,54,53,51,57,93,44,91,45,49,49,55,46,50,54,54,48,48,54,44,52,53,46,49,54,54,53,51,57,93,44,91,45,49,49,55,46,50,54,54,48,48,53,44,52,53,46,48,56,48,53,55,93,44,91,45,49,49,54,46,55,56,51,56,50,57,44,52,53,46,48,55,56,50,54,51,93,44,91,45,49,49,54,46,54,56,55,49,55,55,44,52,53,46,50,54,55,54,52,51,93,44,91,45,49,49,54,46,53,53,55,54,50,49,44,52,53,46,53,48,51,52,57,53,93,44,91,45,49,49,54,46,52,54,51,54,51,53,44,52,53,46,54,48,50,55,56,53,93,44,91,45,49,49,54,46,53,57,52,50,49,44,52,53,46,55,55,57,48,56,93,44,91,45,49,49,54,46,55,57,52,53,54,50,44,52,53,46,56,53,54,48,52,57,93,44,91,45,49,49,54,46,57,49,54,48,55,49,44,52,53,46,57,57,53,51,53,55,93,44,91,45,49,49,55,46,52,55,57,57,51,53,44,52,53,46,57,57,55,56,48,49,93,44,91,45,49,49,55,46,54,48,51,52,50,52,44,52,53,46,57,57,56,57,53,93,44,91,45,49,49,55,46,57,55,55,54,54,52,44,52,54,46,48,48,48,53,50,50,93,44,91,45,49,49,55,46,57,55,50,57,56,44,52,53,46,56,54,48,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,97,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,56,57,54,44,34,98,101,100,115,34,58,51,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,48,52,52,44,52,48,46,56,53,49,51,51,57,93,44,91,45,56,48,46,53,49,56,57,57,49,44,52,48,46,54,51,56,56,48,49,93,44,91,45,56,48,46,53,49,57,48,51,56,44,52,48,46,52,55,55,51,54,51,93,44,91,45,56,48,46,51,54,48,56,55,51,44,52,48,46,52,55,55,53,51,57,93,44,91,45,56,48,46,49,56,48,52,50,52,44,52,48,46,54,48,55,55,54,57,93,44,91,45,56,48,46,49,52,56,54,56,50,44,52,48,46,54,55,52,50,56,49,93,44,91,45,56,48,46,49,53,56,53,51,44,52,48,46,56,53,53,48,57,54,93,44,91,45,56,48,46,53,49,57,48,52,52,44,52,48,46,56,53,49,51,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,53,50,57,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,44,91,45,56,57,46,51,49,54,53,54,44,51,49,46,56,48,50,48,57,93,44,91,45,56,56,46,57,52,51,51,53,53,44,51,49,46,56,50,52,53,54,53,93,44,91,45,56,56,46,57,49,48,52,53,57,44,51,49,46,56,50,54,54,52,57,93,44,91,45,56,56,46,57,49,51,56,52,55,44,51,50,46,50,50,52,49,56,54,93,44,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,54,53,44,34,98,101,100,115,34,58,49,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,54,52,51,49,55,44,51,56,46,53,54,55,51,56,93,44,91,45,57,52,46,48,54,53,55,49,51,44,51,56,46,52,52,55,48,56,55,93,44,91,45,57,52,46,48,52,57,56,57,53,44,51,56,46,50,49,51,57,56,53,93,44,91,45,57,51,46,53,50,51,52,56,52,44,51,56,46,50,48,55,50,49,54,93,44,91,45,57,51,46,53,49,50,55,52,51,44,51,56,46,53,49,50,52,55,54,93,44,91,45,57,51,46,53,49,49,48,51,44,51,56,46,53,53,54,50,49,93,44,91,45,57,52,46,48,54,52,51,49,55,44,51,56,46,53,54,55,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,83,97,103,117,97,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,48,48,48,54,48,50,44,51,55,46,57,53,54,48,52,49,93,44,91,45,49,48,54,46,56,57,55,56,51,52,44,51,55,46,57,54,55,56,57,49,93,44,91,45,49,48,54,46,54,57,51,56,52,53,44,51,55,46,56,51,53,50,52,52,93,44,91,45,49,48,54,46,53,56,54,51,55,52,44,51,55,46,55,52,55,56,48,57,93,44,91,45,49,48,54,46,48,51,56,52,49,51,44,51,55,46,55,52,56,51,53,51,93,44,91,45,49,48,53,46,52,53,55,50,53,53,44,51,55,46,55,53,49,52,54,52,93,44,91,45,49,48,53,46,52,55,51,50,48,52,44,51,55,46,56,57,53,57,55,93,44,91,45,49,48,53,46,53,54,48,51,49,49,44,51,55,46,57,53,49,56,56,54,93,44,91,45,49,48,53,46,54,56,54,56,51,56,44,51,56,46,49,54,54,56,52,53,93,44,91,45,49,48,53,46,55,57,54,56,57,55,44,51,56,46,50,54,53,48,52,55,93,44,91,45,49,48,54,46,48,49,48,55,53,49,44,51,56,46,52,52,54,53,54,54,93,44,91,45,49,48,54,46,50,52,54,57,52,44,51,56,46,52,50,50,55,54,56,93,44,91,45,49,48,55,46,48,48,48,54,48,49,44,51,56,46,52,50,53,54,49,57,93,44,91,45,49,48,55,46,48,48,49,49,49,57,44,51,56,46,49,52,55,48,55,50,93,44,91,45,49,48,55,46,48,48,48,54,48,50,44,51,55,46,57,53,54,48,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,104,97,116,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,55,57,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,53,52,50,52,50,56,44,51,53,46,56,52,51,51,48,51,93,44,91,45,55,57,46,53,53,53,56,48,52,44,51,53,46,53,49,53,48,51,57,93,44,91,45,55,57,46,51,53,48,48,55,51,44,51,53,46,53,49,56,48,48,50,93,44,91,45,55,57,46,49,57,57,49,51,54,44,51,53,46,53,53,57,56,52,52,93,44,91,45,55,57,46,49,49,55,48,57,54,44,51,53,46,54,50,56,49,54,52,93,44,91,45,55,56,46,57,54,57,54,52,44,51,53,46,53,50,49,54,54,57,93,44,91,45,55,56,46,57,49,52,55,51,52,44,51,53,46,53,56,51,54,55,50,93,44,91,45,55,56,46,57,57,53,48,53,57,44,51,53,46,54,49,48,49,51,53,93,44,91,45,55,56,46,57,48,54,48,55,49,44,51,53,46,56,54,56,48,57,54,93,44,91,45,55,57,46,48,49,54,51,48,53,44,51,53,46,56,54,51,50,49,93,44,91,45,55,57,46,50,52,57,53,51,56,44,51,53,46,56,55,54,56,49,93,44,91,45,55,57,46,53,52,50,52,50,56,44,51,53,46,56,52,51,51,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,82,105,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,53,48,55,56,48,54,44,52,49,46,57,57,57,53,53,50,93,44,91,45,49,49,49,46,52,50,54,56,53,53,44,52,49,46,54,55,55,56,54,52,93,44,91,45,49,49,49,46,52,52,50,57,52,57,44,52,49,46,53,51,49,51,54,53,93,44,91,45,49,49,49,46,53,49,48,56,51,57,44,52,49,46,52,50,51,49,93,44,91,45,49,49,49,46,52,50,48,55,50,56,44,52,49,46,51,54,49,51,48,56,93,44,91,45,49,49,49,46,50,57,52,56,56,54,44,52,49,46,51,50,57,57,54,57,93,44,91,45,49,49,49,46,50,50,53,56,50,51,44,52,49,46,49,57,49,48,49,55,93,44,91,45,49,49,49,46,50,54,52,57,55,52,44,52,49,46,49,52,52,48,52,52,93,44,91,45,49,49,49,46,48,52,54,55,54,54,44,52,49,46,50,53,49,54,50,55,93,44,91,45,49,49,49,46,48,52,53,56,51,55,44,52,49,46,53,55,57,56,52,53,93,44,91,45,49,49,49,46,48,52,54,55,49,52,44,52,50,46,48,48,49,55,48,50,93,44,91,45,49,49,49,46,53,48,55,56,48,54,44,52,49,46,57,57,57,53,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,49,51,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,57,55,52,48,57,44,51,54,46,49,54,49,54,53,50,93,44,91,45,57,52,46,56,48,55,55,53,55,44,51,53,46,54,51,56,53,52,54,93,44,91,45,57,52,46,52,55,50,54,52,55,44,51,53,46,54,51,56,53,53,54,93,44,91,45,57,52,46,52,57,51,49,51,44,51,53,46,55,53,57,49,54,55,93,44,91,45,57,52,46,53,53,50,49,55,50,44,51,54,46,49,48,50,49,50,56,93,44,91,45,57,52,46,53,54,50,55,50,55,44,51,54,46,49,54,49,56,57,51,93,44,91,45,57,52,46,55,57,55,52,48,57,44,51,54,46,49,54,49,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,48,53,50,44,34,98,101,100,115,34,58,52,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,57,53,49,56,49,44,52,50,46,48,57,54,52,48,50,93,44,91,45,56,49,46,52,56,55,56,52,50,44,52,49,46,53,55,48,48,53,49,93,44,91,45,56,49,46,51,57,49,48,48,53,44,52,49,46,53,54,57,55,49,54,93,44,91,45,56,49,46,50,57,52,54,54,57,44,52,49,46,54,52,48,56,56,57,93,44,91,45,56,49,46,49,48,49,52,50,50,44,52,49,46,54,52,49,52,53,55,93,44,91,45,56,49,46,48,48,51,54,51,49,44,52,49,46,55,49,53,49,51,55,93,44,91,45,56,49,46,48,48,57,56,50,55,44,52,50,46,50,53,49,54,48,50,93,44,91,45,56,49,46,50,52,57,56,51,51,44,52,50,46,50,49,54,52,49,53,93,44,91,45,56,49,46,52,57,53,49,56,49,44,52,50,46,48,57,54,52,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,55,53,34,44,34,78,65,77,69,34,58,34,83,97,108,101,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,49,57,44,34,98,101,100,115,34,58,51,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,50,50,50,50,54,44,51,55,46,51,48,56,51,51,56,93,44,91,45,56,48,46,48,57,51,54,55,53,44,51,55,46,50,56,50,53,48,50,93,44,91,45,56,48,46,48,51,51,52,54,52,44,51,55,46,50,54,50,56,57,93,44,91,45,56,48,46,48,50,50,50,50,54,44,51,55,46,51,48,56,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,57,57,55,44,34,98,101,100,115,34,58,49,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,48,54,57,54,50,44,51,55,46,50,52,52,56,55,49,93,44,91,45,56,48,46,53,50,57,55,54,50,44,51,55,46,49,51,51,56,52,50,93,44,91,45,56,48,46,53,56,48,52,54,57,44,51,55,46,48,56,57,54,54,50,93,44,91,45,56,48,46,53,52,51,57,51,51,44,51,54,46,57,56,52,54,51,57,93,44,91,45,56,48,46,51,52,53,51,54,50,44,51,55,46,48,50,54,56,49,56,93,44,91,45,56,48,46,49,55,56,49,50,53,44,51,55,46,49,49,51,52,93,44,91,45,56,48,46,49,57,48,55,51,56,44,51,55,46,50,50,55,55,56,51,93,44,91,45,56,48,46,50,54,50,49,56,52,44,51,55,46,51,52,49,53,50,54,93,44,91,45,56,48,46,52,51,48,57,52,51,44,51,55,46,51,49,54,51,55,56,93,44,91,45,56,48,46,54,48,54,57,54,50,44,51,55,46,50,52,52,56,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,53,52,54,44,34,98,101,100,115,34,58,49,55,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,50,53,56,55,55,44,51,53,46,51,53,52,50,55,54,93,44,91,45,56,53,46,51,56,55,48,56,57,44,51,53,46,49,52,55,49,54,57,93,44,91,45,56,53,46,51,56,50,50,53,53,44,51,53,46,48,52,52,55,51,93,44,91,45,56,53,46,52,55,52,48,55,51,44,51,52,46,57,56,51,48,50,93,44,91,45,56,53,46,51,54,51,57,49,57,44,51,52,46,57,56,51,51,55,53,93,44,91,45,56,53,46,50,54,53,48,53,53,44,51,52,46,57,56,53,48,55,53,93,44,91,45,56,52,46,57,55,57,56,54,44,51,52,46,57,56,55,54,52,55,93,44,91,45,56,52,46,57,55,54,57,55,54,44,51,52,46,57,56,55,54,54,52,93,44,91,45,56,53,46,48,50,51,54,44,51,53,46,49,50,53,48,55,51,93,44,91,45,56,52,46,57,52,54,51,51,57,44,51,53,46,50,56,55,55,49,55,93,44,91,45,56,53,46,48,49,54,51,52,51,44,51,53,46,52,48,57,50,56,56,93,44,91,45,56,53,46,49,51,53,49,57,49,44,51,53,46,52,53,56,54,52,57,93,44,91,45,56,53,46,50,50,53,56,55,55,44,51,53,46,51,53,52,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,79,116,101,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,55,52,53,44,34,98,101,100,115,34,58,49,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,51,52,48,53,49,53,44,51,51,46,48,53,50,55,55,55,93,44,91,45,49,48,54,46,51,55,54,53,56,53,44,51,50,46,57,53,56,48,53,93,44,91,45,49,48,54,46,51,55,55,49,55,52,44,51,50,46,48,48,49,53,48,51,93,44,91,45,49,48,53,46,57,57,56,48,49,50,44,51,50,46,48,48,50,51,55,55,93,44,91,45,49,48,52,46,57,49,56,51,53,55,44,51,50,46,48,48,48,52,49,56,93,44,91,45,49,48,52,46,56,52,55,55,52,44,51,50,46,48,48,48,52,49,53,93,44,91,45,49,48,52,46,56,53,49,53,50,52,44,51,50,46,53,50,48,53,52,49,93,44,91,45,49,48,53,46,51,53,52,48,49,44,51,50,46,53,49,56,55,55,54,93,44,91,45,49,48,53,46,51,53,50,53,49,51,44,51,50,46,57,54,50,48,48,55,93,44,91,45,49,48,53,46,51,49,54,57,54,56,44,51,51,46,49,51,50,51,48,51,93,44,91,45,49,48,53,46,51,49,55,51,55,54,44,51,51,46,51,48,53,57,55,55,93,44,91,45,49,48,53,46,55,50,53,57,53,55,44,51,51,46,51,48,52,56,51,52,93,44,91,45,49,48,53,46,55,50,55,49,55,49,44,51,51,46,51,57,48,54,51,51,93,44,91,45,49,48,54,46,51,52,53,55,49,44,51,51,46,51,57,48,53,57,53,93,44,91,45,49,48,54,46,51,52,48,53,49,53,44,51,51,46,48,53,50,55,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,67,97,116,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,54,49,50,50,44,51,52,46,53,55,57,50,57,49,93,44,91,45,49,48,57,46,48,52,54,55,49,55,44,51,51,46,55,55,55,52,48,55,93,44,91,45,49,48,57,46,48,52,55,53,55,56,44,51,51,46,50,48,56,56,57,56,93,44,91,45,49,48,56,46,48,48,48,53,57,56,44,51,51,46,50,48,49,50,53,51,93,44,91,45,49,48,56,46,48,48,48,54,48,50,44,51,51,46,52,55,56,48,49,52,93,44,91,45,49,48,55,46,55,49,50,55,53,52,44,51,51,46,52,55,54,56,51,50,93,44,91,45,49,48,55,46,55,49,54,51,48,49,44,51,52,46,50,53,57,56,53,54,93,44,91,45,49,48,55,46,55,50,52,55,57,52,44,51,52,46,53,55,56,49,51,50,93,44,91,45,49,48,57,46,48,52,54,49,50,50,44,51,52,46,53,55,57,50,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,97,114,101,110,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,51,56,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,51,48,54,54,49,44,51,50,46,51,49,48,53,55,52,93,44,91,45,56,56,46,48,49,57,49,52,53,44,51,50,46,50,56,53,50,52,93,44,91,45,56,56,46,48,48,55,48,55,55,44,51,50,46,49,56,53,51,49,51,93,44,91,45,56,56,46,48,55,51,52,57,44,51,49,46,57,57,48,49,56,50,93,44,91,45,56,55,46,54,54,55,55,54,57,44,51,49,46,57,57,49,51,53,53,93,44,91,45,56,55,46,54,50,52,48,48,53,44,51,50,46,49,51,50,51,52,53,93,44,91,45,56,55,46,53,50,49,57,52,54,44,51,50,46,49,51,50,56,49,54,93,44,91,45,56,55,46,52,55,50,50,48,54,44,51,50,46,50,54,52,57,49,57,93,44,91,45,56,55,46,52,55,51,48,56,44,51,50,46,51,48,55,54,49,52,93,44,91,45,56,55,46,53,50,52,52,56,53,44,51,50,46,52,56,50,48,50,56,93,44,91,45,56,55,46,55,50,56,55,52,52,44,51,50,46,52,56,48,57,49,56,93,44,91,45,56,55,46,56,49,50,53,53,57,44,51,50,46,53,50,52,53,54,93,44,91,45,56,55,46,56,53,51,52,50,44,51,50,46,53,51,50,48,56,54,93,44,91,45,56,56,46,48,51,49,54,50,51,44,51,50,46,52,51,51,54,49,93,44,91,45,56,56,46,48,52,54,51,51,53,44,51,50,46,51,55,55,48,56,55,93,44,91,45,56,55,46,57,51,48,54,54,49,44,51,50,46,51,49,48,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,49,49,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,48,52,54,56,49,55,44,52,50,46,53,49,51,57,50,53,93,44,91,45,49,49,49,46,48,52,54,55,49,52,44,52,50,46,48,48,49,55,48,50,93,44,91,45,49,49,49,46,48,52,53,56,51,55,44,52,49,46,53,55,57,56,52,53,93,44,91,45,49,49,48,46,48,52,56,44,52,49,46,53,55,56,48,49,53,93,44,91,45,49,49,48,46,48,53,51,55,48,56,44,52,50,46,50,55,48,55,52,52,93,44,91,45,49,49,48,46,53,52,49,54,51,52,44,52,50,46,50,55,55,52,57,49,93,44,91,45,49,49,48,46,53,57,48,49,51,49,44,52,50,46,52,52,56,52,51,53,93,44,91,45,49,49,48,46,53,55,56,54,53,54,44,52,51,46,50,51,53,50,50,52,93,44,91,45,49,49,48,46,56,49,51,57,57,51,44,52,51,46,50,51,53,49,55,56,93,44,91,45,49,49,48,46,56,49,51,57,57,54,44,52,51,46,51,49,51,57,52,93,44,91,45,49,49,49,46,48,52,52,56,57,51,44,52,51,46,51,49,53,55,49,57,93,44,91,45,49,49,49,46,48,52,52,48,55,50,44,52,51,46,48,49,57,52,48,55,93,44,91,45,49,49,49,46,48,52,54,56,49,55,44,52,50,46,53,49,51,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,97,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,53,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,55,54,57,56,44,51,55,46,54,53,51,53,55,56,93,44,91,45,57,52,46,54,49,55,53,55,44,51,55,46,51,54,52,49,55,93,44,91,45,57,52,46,48,56,50,48,56,51,44,51,55,46,51,52,57,50,57,49,93,44,91,45,57,52,46,48,55,53,51,56,53,44,51,55,46,53,56,49,53,55,93,44,91,45,57,52,46,48,55,51,53,50,52,44,51,55,46,54,51,57,55,50,50,93,44,91,45,57,52,46,54,49,55,54,57,56,44,51,55,46,54,53,51,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,52,51,52,52,50,44,50,56,46,55,49,50,49,48,53,93,44,91,45,57,54,46,56,53,51,55,53,55,44,50,56,46,54,51,53,49,57,57,93,44,91,45,57,54,46,56,57,48,57,53,49,44,50,56,46,53,48,55,49,55,56,93,44,91,45,57,54,46,55,55,56,54,51,52,44,50,56,46,52,48,52,50,53,57,93,44,91,45,57,54,46,55,57,48,53,49,50,44,50,56,46,51,49,57,50,51,56,93,44,91,45,57,54,46,56,51,48,56,54,49,44,50,56,46,49,48,56,93,44,91,45,57,54,46,56,49,53,57,48,53,44,50,56,46,48,50,50,56,51,53,93,44,91,45,57,54,46,54,49,56,55,56,53,44,50,56,46,49,54,57,53,50,50,93,44,91,45,57,54,46,51,57,53,49,57,56,44,50,56,46,50,55,57,55,51,54,93,44,91,45,57,54,46,51,50,51,53,50,50,44,50,56,46,54,55,53,53,57,55,93,44,91,45,57,54,46,54,52,51,52,52,50,44,50,56,46,55,49,50,49,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,51,53,34,44,34,78,65,77,69,34,58,34,80,111,113,117,111,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,49,51,53,53,50,44,51,55,46,49,57,49,57,55,93,44,91,45,55,54,46,51,51,48,52,51,53,44,51,55,46,49,57,48,57,56,52,93,44,91,45,55,54,46,51,57,53,55,57,53,44,51,55,46,49,48,55,49,55,52,93,44,91,45,55,54,46,49,51,52,57,52,49,44,51,55,46,49,49,55,54,48,51,93,44,91,45,55,54,46,49,51,53,53,50,44,51,55,46,49,57,49,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,80,111,99,97,104,111,110,116,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,50,52,53,53,49,56,44,51,56,46,51,56,56,52,53,55,93,44,91,45,56,48,46,51,51,48,50,54,55,44,51,56,46,51,51,53,55,53,56,93,44,91,45,56,48,46,51,54,48,48,52,56,44,51,56,46,50,50,53,56,52,53,93,44,91,45,56,48,46,51,54,51,50,57,53,44,51,56,46,49,49,52,51,51,49,93,44,91,45,56,48,46,50,54,52,54,53,51,44,51,56,46,48,52,54,54,49,54,93,44,91,45,55,57,46,57,53,57,56,52,52,44,51,56,46,48,54,51,54,57,55,93,44,91,45,55,57,46,56,57,55,51,51,53,44,51,56,46,49,57,51,51,56,49,93,44,91,45,55,57,46,55,57,53,57,50,49,44,51,56,46,50,54,53,53,53,50,93,44,91,45,55,57,46,54,56,57,54,54,55,44,51,56,46,52,51,49,52,54,50,93,44,91,45,55,57,46,54,52,57,48,55,53,44,51,56,46,53,57,49,53,49,53,93,44,91,45,55,57,46,54,50,54,55,55,52,44,51,56,46,54,54,52,50,49,52,93,44,91,45,55,57,46,55,57,56,50,56,51,44,51,56,46,55,48,51,50,49,49,93,44,91,45,55,57,46,56,54,51,50,53,44,51,56,46,53,53,48,56,50,93,44,91,45,56,48,46,48,50,57,50,48,56,44,51,56,46,52,53,57,49,56,52,93,44,91,45,56,48,46,49,49,54,57,50,44,51,56,46,52,55,51,57,53,51,93,44,91,45,56,48,46,50,52,53,53,49,56,44,51,56,46,51,56,56,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,56,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,50,51,53,51,51,44,51,52,46,48,56,50,56,52,51,93,44,91,45,57,56,46,52,50,51,53,55,55,44,51,51,46,56,51,54,48,52,55,93,44,91,45,57,56,46,52,50,49,52,49,57,44,51,51,46,52,54,54,55,57,55,93,44,91,45,57,55,46,57,55,56,57,49,57,44,51,51,46,52,54,55,49,50,57,93,44,91,45,57,55,46,57,55,55,56,54,44,51,51,46,56,56,57,56,50,53,93,44,91,45,57,55,46,57,52,54,56,48,50,44,51,51,46,57,57,48,56,57,51,93,44,91,45,57,56,46,48,56,52,52,51,53,44,51,52,46,48,48,50,56,57,51,93,44,91,45,57,56,46,49,51,57,48,55,50,44,51,52,46,49,52,49,56,55,93,44,91,45,57,56,46,51,54,52,48,50,51,44,51,52,46,49,53,55,49,48,57,93,44,91,45,57,56,46,52,50,51,53,51,51,44,51,52,46,48,56,50,56,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,74,97,109,101,115,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,49,53,51,44,34,98,101,100,115,34,58,50,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,52,49,57,56,52,44,51,55,46,52,54,55,48,55,54,93,44,91,45,55,54,46,57,48,52,52,55,49,44,51,55,46,51,55,55,54,54,53,93,44,91,45,55,54,46,56,56,51,49,53,54,44,51,55,46,50,50,51,48,53,55,93,44,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,44,91,45,55,54,46,53,57,49,51,48,50,44,51,55,46,50,49,51,50,48,53,93,44,91,45,55,54,46,54,56,48,49,53,49,44,51,55,46,50,54,53,57,57,55,93,44,91,45,55,54,46,55,52,49,48,49,55,44,51,55,46,50,54,53,57,56,52,93,44,91,45,55,54,46,55,50,55,56,53,57,44,51,55,46,51,48,53,57,50,55,93,44,91,45,55,54,46,54,53,56,54,53,49,44,51,55,46,51,56,48,49,51,57,93,44,91,45,55,54,46,55,49,50,51,48,53,44,51,55,46,52,51,49,51,48,57,93,44,91,45,55,54,46,55,52,49,57,56,52,44,51,55,46,52,54,55,48,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,75,101,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,57,57,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,53,49,55,54,49,44,52,49,46,48,48,51,56,57,93,44,91,45,49,48,49,46,50,52,57,57,55,53,44,52,49,46,48,48,51,57,53,93,44,91,45,49,48,49,46,50,55,48,51,56,49,44,52,49,46,48,52,55,51,57,50,93,44,91,45,49,48,49,46,50,54,57,54,57,53,44,52,49,46,51,57,52,57,51,52,93,44,91,45,49,48,49,46,52,48,55,50,54,44,52,49,46,51,57,53,52,49,54,93,44,91,45,49,48,49,46,57,56,52,54,51,44,52,49,46,51,57,52,55,49,50,93,44,91,45,49,48,50,46,48,53,53,50,53,54,44,52,49,46,51,57,53,49,54,50,93,44,91,45,49,48,50,46,48,53,53,53,51,53,44,52,49,46,50,50,49,53,52,55,93,44,91,45,49,48,50,46,48,53,49,55,54,49,44,52,49,46,48,48,51,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,80,104,101,108,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,50,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,52,51,52,54,50,44,52,48,46,54,56,52,57,49,49,93,44,91,45,57,57,46,54,52,50,50,48,57,44,52,48,46,51,53,49,50,93,44,91,45,57,57,46,54,51,48,52,53,57,44,52,48,46,51,53,49,49,50,93,44,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,44,91,45,57,57,46,49,55,57,50,52,56,44,52,48,46,54,54,48,53,52,49,93,44,91,45,57,57,46,52,49,55,51,49,54,44,52,48,46,54,55,48,56,50,53,93,44,91,45,57,57,46,54,52,51,52,54,50,44,52,48,46,54,56,52,57,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,108,99,97,115,105,101,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,49,56,50,44,34,98,101,100,115,34,58,57,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,50,50,53,49,55,44,51,48,46,48,53,48,56,55,50,93,44,91,45,57,51,46,49,50,56,52,55,53,44,51,48,46,48,53,50,53,56,55,93,44,91,45,57,50,46,57,57,54,51,55,49,44,51,48,46,48,51,56,52,55,57,93,44,91,45,57,51,46,48,51,48,57,53,53,44,51,48,46,51,55,57,51,57,93,44,91,45,57,51,46,49,51,49,49,48,57,44,51,48,46,52,48,51,48,53,55,93,44,91,45,57,51,46,55,52,49,54,55,57,44,51,48,46,52,48,50,57,55,53,93,44,91,45,57,51,46,55,54,52,50,53,50,44,51,48,46,51,51,48,50,50,57,93,44,91,45,57,51,46,55,48,54,57,57,51,44,51,48,46,50,52,51,55,51,54,93,44,91,45,57,51,46,55,50,50,53,49,55,44,51,48,46,48,53,48,56,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,55,53,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,50,52,55,52,44,51,51,46,48,49,52,51,57,93,44,91,45,57,50,46,55,50,53,52,51,57,44,51,50,46,55,53,57,53,52,93,44,91,45,57,50,46,54,50,56,50,56,56,44,51,50,46,55,53,57,54,54,57,93,44,91,45,57,50,46,52,49,53,48,53,44,51,50,46,54,55,48,48,53,54,93,44,91,45,57,50,46,52,49,53,48,55,49,44,51,50,46,53,56,50,56,52,53,93,44,91,45,57,50,46,50,55,50,51,49,51,44,51,50,46,53,56,48,57,55,53,93,44,91,45,57,50,46,48,54,53,49,55,57,44,51,50,46,55,50,51,48,48,51,93,44,91,45,57,50,46,48,54,57,49,48,53,44,51,51,46,48,48,56,49,54,51,93,44,91,45,57,50,46,55,50,52,55,52,44,51,51,46,48,49,52,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,83,101,113,117,111,121,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,51,53,57,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,48,55,55,53,55,44,51,53,46,54,51,56,53,52,54,93,44,91,45,57,53,46,49,50,55,50,49,51,44,51,53,46,54,51,56,56,56,56,93,44,91,45,57,53,46,49,51,50,50,55,49,44,51,53,46,53,50,54,48,53,53,93,44,91,45,57,53,46,48,52,57,57,51,51,44,51,53,46,52,53,56,56,57,52,93,44,91,45,57,52,46,56,49,51,54,50,57,44,51,53,46,51,50,51,51,52,52,93,44,91,45,57,52,46,54,54,56,55,57,54,44,51,53,46,50,57,53,48,50,57,93,44,91,45,57,52,46,52,57,53,50,53,49,44,51,53,46,51,48,49,50,93,44,91,45,57,52,46,52,51,53,53,57,44,51,53,46,51,56,54,49,50,50,93,44,91,45,57,52,46,52,51,49,48,52,53,44,51,53,46,51,57,51,55,51,53,93,44,91,45,57,52,46,52,55,50,54,52,55,44,51,53,46,54,51,56,53,53,54,93,44,91,45,57,52,46,56,48,55,55,53,55,44,51,53,46,54,51,56,53,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,50,48,48,44,34,98,101,100,115,34,58,49,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,56,51,49,52,53,44,51,52,46,56,54,48,51,55,49,93,44,91,45,56,53,46,55,56,53,52,55,49,44,51,52,46,54,50,52,53,56,52,93,44,91,45,56,54,46,48,48,51,56,52,44,51,52,46,52,56,48,48,51,49,93,44,91,45,56,54,46,48,53,55,55,49,50,44,51,52,46,52,55,53,57,57,52,93,44,91,45,56,54,46,49,49,48,51,54,50,44,51,52,46,52,50,55,55,57,55,93,44,91,45,56,54,46,49,48,54,48,56,54,44,51,52,46,50,48,48,55,53,54,93,44,91,45,56,53,46,56,52,51,54,49,55,44,51,52,46,50,48,48,48,48,54,93,44,91,45,56,53,46,54,51,54,54,52,53,44,51,52,46,51,54,54,54,50,50,93,44,91,45,56,53,46,53,49,51,54,49,50,44,51,52,46,53,50,51,56,50,53,93,44,91,45,56,53,46,53,50,55,50,54,49,44,51,52,46,53,56,56,54,56,51,93,44,91,45,56,53,46,53,51,52,48,56,57,44,51,52,46,54,50,51,56,53,56,93,44,91,45,56,53,46,53,56,51,49,52,53,44,51,52,46,56,54,48,51,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,83,116,101,117,98,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,57,50,55,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,54,54,53,48,53,44,52,50,46,53,55,54,51,54,56,93,44,91,45,55,55,46,52,57,48,56,56,57,44,52,50,46,53,55,55,50,56,56,93,44,91,45,55,55,46,54,53,57,57,49,55,44,52,50,46,53,56,48,52,48,57,93,44,91,45,55,55,46,55,50,50,57,54,52,44,52,50,46,52,55,49,50,49,54,93,44,91,45,55,55,46,55,52,57,57,51,49,44,52,49,46,57,57,56,55,56,50,93,44,91,45,55,55,46,54,49,48,48,50,55,44,52,49,46,57,57,57,51,54,56,93,44,91,45,55,54,46,57,54,53,55,50,56,44,52,50,46,48,48,49,50,55,54,93,44,91,45,55,54,46,57,54,53,48,50,56,44,52,50,46,50,55,56,52,57,53,93,44,91,45,55,55,46,48,57,57,54,53,55,44,52,50,46,50,55,50,51,53,54,93,44,91,45,55,55,46,49,48,55,50,48,51,44,52,50,46,52,56,51,55,55,49,93,44,91,45,55,55,46,49,52,51,55,57,53,44,52,50,46,53,55,54,56,54,57,93,44,91,45,55,55,46,51,54,54,53,48,53,44,52,50,46,53,55,54,51,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,70,111,114,101,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,53,54,48,52,50,44,52,49,46,54,50,51,52,48,50,93,44,91,45,55,57,46,53,49,50,48,55,44,52,49,46,54,50,52,53,53,57,93,44,91,45,55,57,46,52,55,55,56,50,50,44,52,49,46,51,56,54,52,55,57,93,44,91,45,55,57,46,52,48,48,50,54,57,44,52,49,46,52,51,54,49,52,53,93,44,91,45,55,57,46,50,48,55,49,57,54,44,52,49,46,52,51,48,57,50,50,93,44,91,45,55,57,46,50,48,56,56,55,56,44,52,49,46,51,51,49,56,54,49,93,44,91,45,55,57,46,48,57,53,48,57,54,44,52,49,46,51,52,48,54,53,56,93,44,91,45,55,57,46,48,57,51,53,56,56,44,52,49,46,52,50,51,50,56,54,93,44,91,45,55,56,46,57,55,54,54,53,56,44,52,49,46,52,53,49,55,54,49,93,44,91,45,55,56,46,57,53,54,48,52,50,44,52,49,46,54,50,51,52,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,84,97,110,103,105,112,97,104,111,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,48,53,48,52,44,34,98,101,100,115,34,58,53,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,54,55,49,54,53,44,51,48,46,54,53,48,48,50,51,93,44,91,45,57,48,46,53,54,54,57,48,54,44,51,48,46,52,56,55,48,54,93,44,91,45,57,48,46,52,55,55,56,44,51,48,46,51,53,54,52,52,55,93,44,91,45,57,48,46,52,56,53,56,50,54,44,51,48,46,50,55,54,57,57,50,93,44,91,45,57,48,46,51,48,48,57,50,51,44,51,48,46,50,57,52,54,56,93,44,91,45,57,48,46,49,54,48,54,51,54,44,51,48,46,50,51,52,51,51,55,93,44,91,45,57,48,46,50,52,51,54,52,57,44,51,48,46,51,54,49,53,56,49,93,44,91,45,57,48,46,50,53,53,54,52,56,44,51,48,46,55,49,49,57,48,53,93,44,91,45,57,48,46,51,52,54,55,49,44,51,48,46,57,48,53,52,50,55,93,44,91,45,57,48,46,51,52,55,50,53,53,44,51,49,46,48,48,48,53,51,93,44,91,45,57,48,46,53,52,55,54,49,54,44,51,48,46,57,57,57,55,50,93,44,91,45,57,48,46,53,54,55,49,57,53,44,51,48,46,57,57,57,55,51,51,93,44,91,45,57,48,46,53,54,55,49,54,53,44,51,48,46,54,53,48,48,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,83,116,97,102,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,48,49,50,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,53,51,49,51,50,56,44,51,56,46,53,53,54,53,53,93,44,91,45,55,55,46,54,51,52,57,52,44,51,56,46,52,49,48,50,49,56,93,44,91,45,55,55,46,54,49,56,55,50,55,44,51,56,46,51,54,55,56,51,53,93,44,91,45,55,55,46,53,51,48,50,56,51,44,51,56,46,51,48,57,49,55,53,93,44,91,45,55,55,46,52,54,55,48,53,51,44,51,56,46,51,49,56,54,54,93,44,91,45,55,55,46,52,52,55,49,50,54,44,51,56,46,50,56,52,54,49,52,93,44,91,45,55,55,46,51,55,48,50,57,55,44,51,56,46,50,52,54,53,55,54,93,44,91,45,55,55,46,51,50,54,54,57,50,44,51,56,46,50,52,53,49,51,54,93,44,91,45,55,55,46,50,56,55,48,57,55,44,51,56,46,51,52,56,56,93,44,91,45,55,55,46,50,57,53,52,48,54,44,51,56,46,53,48,57,50,51,57,93,44,91,45,55,55,46,52,55,54,56,52,55,44,51,56,46,53,57,50,50,56,54,93,44,91,45,55,55,46,53,51,49,51,50,56,44,51,56,46,53,53,54,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,77,101,110,111,109,105,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,51,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,54,55,56,52,57,44,52,53,46,57,56,53,51,50,49,93,44,91,45,56,55,46,54,49,55,48,57,49,44,52,53,46,57,56,54,48,49,52,93,44,91,45,56,55,46,54,57,54,57,52,54,44,52,53,46,56,57,56,56,52,50,93,44,91,45,56,55,46,54,57,55,49,53,57,44,52,53,46,55,50,50,57,54,93,44,91,45,56,55,46,56,52,54,54,48,50,44,52,53,46,55,50,50,53,52,52,93,44,91,45,56,55,46,55,55,52,54,56,50,44,52,53,46,54,48,50,48,50,52,93,44,91,45,56,55,46,55,57,50,55,54,57,44,52,53,46,52,57,57,57,54,55,93,44,91,45,56,55,46,56,56,52,56,53,53,44,52,53,46,51,54,50,55,57,50,93,44,91,45,56,55,46,54,52,55,55,54,56,44,52,53,46,51,52,48,53,54,51,93,44,91,45,56,55,46,55,51,53,50,56,50,44,52,53,46,49,55,54,53,54,53,93,44,91,45,56,55,46,54,54,49,50,49,49,44,52,53,46,49,48,56,50,55,57,93,44,91,45,56,55,46,52,52,50,55,54,44,52,53,46,48,55,54,52,55,49,93,44,91,45,56,55,46,52,48,53,54,57,52,44,52,53,46,50,48,49,57,54,57,93,44,91,45,56,55,46,51,49,53,52,50,50,44,52,53,46,50,52,48,54,53,55,93,44,91,45,56,55,46,49,50,55,56,50,54,44,52,53,46,52,48,57,52,56,55,93,44,91,45,56,55,46,49,50,57,49,49,56,44,52,53,46,53,53,48,52,56,53,93,44,91,45,56,55,46,51,50,55,53,48,50,44,52,53,46,53,53,49,50,53,93,44,91,45,56,55,46,51,50,53,51,57,49,44,52,53,46,56,57,56,54,54,53,93,44,91,45,56,55,46,51,54,55,56,52,57,44,52,53,46,57,56,53,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,52,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,55,53,56,56,50,44,52,49,46,50,49,56,53,57,53,93,44,91,45,56,55,46,50,54,55,50,57,56,44,52,48,46,55,51,54,53,56,50,93,44,91,45,56,55,46,48,57,56,51,57,44,52,48,46,55,51,54,53,52,49,93,44,91,45,56,55,46,48,57,57,55,57,51,44,52,48,46,56,51,55,54,48,55,93,44,91,45,56,54,46,57,56,54,52,51,56,44,52,48,46,56,51,55,57,50,49,93,44,91,45,56,54,46,57,51,48,55,53,57,44,52,48,46,57,49,50,52,49,56,93,44,91,45,56,54,46,57,51,48,49,55,44,52,49,46,49,55,50,51,49,56,93,44,91,45,56,54,46,57,51,48,48,55,57,44,52,49,46,50,51,54,55,57,56,93,44,91,45,56,55,46,49,51,49,54,53,51,44,52,49,46,50,56,54,49,53,53,93,44,91,45,56,55,46,50,49,56,56,54,50,44,52,49,46,50,52,50,48,50,55,93,44,91,45,56,55,46,50,55,53,56,56,50,44,52,49,46,50,49,56,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,66,114,97,110,116,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,51,49,54,57,52,44,51,49,46,51,51,48,48,52,56,93,44,91,45,56,50,46,48,52,49,49,50,57,44,51,49,46,51,55,51,55,50,49,93,44,91,45,56,50,46,48,57,50,55,50,44,51,49,46,50,55,54,49,49,57,93,44,91,45,56,50,46,49,57,52,56,50,52,44,51,49,46,50,48,55,53,57,93,44,91,45,56,50,46,50,56,52,53,54,49,44,51,49,46,50,50,52,52,52,57,93,44,91,45,56,50,46,50,48,56,55,51,50,44,51,49,46,49,55,48,57,51,56,93,44,91,45,56,50,46,50,48,56,50,54,50,44,51,49,46,48,56,52,55,54,56,93,44,91,45,56,50,46,49,51,49,54,57,56,44,51,49,46,48,49,48,55,49,52,93,44,91,45,56,50,46,48,54,48,56,55,44,51,49,46,48,55,53,56,48,57,93,44,91,45,56,49,46,57,51,54,48,48,54,44,51,49,46,48,52,55,57,57,51,93,44,91,45,56,49,46,55,54,54,51,50,50,44,51,49,46,49,54,57,53,57,53,93,44,91,45,56,49,46,55,51,49,54,57,52,44,51,49,46,51,51,48,48,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,76,97,109,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,52,56,49,56,53,44,51,51,46,49,56,57,48,49,57,93,44,91,45,56,52,46,50,55,48,49,52,44,51,50,46,57,57,49,48,49,49,93,44,91,45,56,52,46,49,50,51,51,52,44,51,50,46,57,51,50,49,56,52,93,44,91,45,56,52,46,48,52,52,49,49,51,44,51,50,46,57,52,55,56,55,52,93,44,91,45,56,52,46,48,52,49,52,57,56,44,51,51,46,50,48,50,54,50,57,93,44,91,45,56,52,46,49,50,51,55,54,55,44,51,51,46,50,48,50,56,50,52,93,44,91,45,56,52,46,50,52,56,49,56,53,44,51,51,46,49,56,57,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,116,101,117,98,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,57,54,55,55,52,44,52,49,46,55,53,57,54,52,52,93,44,91,45,56,53,46,49,57,52,48,56,52,44,52,49,46,53,50,54,52,51,55,93,44,91,45,56,52,46,56,48,52,54,56,55,44,52,49,46,53,51,48,49,51,52,93,44,91,45,56,52,46,56,48,53,57,55,50,44,52,49,46,54,57,54,49,49,56,93,44,91,45,56,52,46,56,50,53,49,51,44,52,49,46,55,53,57,57,57,57,93,44,91,45,56,53,46,49,57,54,55,55,52,44,52,49,46,55,53,57,54,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,54,49,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,48,52,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,49,49,53,57,49,55,44,51,48,46,49,54,48,51,52,55,93,44,91,45,57,52,46,48,51,49,57,55,54,44,51,48,46,48,50,56,48,49,51,93,44,91,45,57,51,46,56,54,48,49,54,57,44,50,57,46,57,55,55,51,57,55,93,44,91,45,57,51,46,56,53,52,52,49,50,44,50,57,46,56,54,53,48,53,51,93,44,91,45,57,51,46,55,50,50,53,49,55,44,51,48,46,48,53,48,56,55,50,93,44,91,45,57,51,46,55,48,54,57,57,51,44,51,48,46,50,52,51,55,51,54,93,44,91,45,57,51,46,57,48,49,52,53,50,44,51,48,46,50,52,50,54,55,50,93,44,91,45,57,52,46,49,49,55,54,48,52,44,51,48,46,50,52,49,54,54,53,93,44,91,45,57,52,46,49,49,53,57,49,55,44,51,48,46,49,54,48,51,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,52,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,53,51,51,51,44,51,57,46,55,49,54,56,55,54,93,44,91,45,56,51,46,54,55,48,49,57,54,44,51,57,46,53,53,48,50,53,52,93,44,91,45,56,51,46,53,55,54,50,56,54,44,51,57,46,53,52,52,53,52,55,93,44,91,45,56,51,46,53,57,48,56,55,56,44,51,57,46,51,55,56,55,51,54,93,44,91,45,56,51,46,51,55,50,55,49,52,44,51,57,46,51,55,55,52,49,54,93,44,91,45,56,51,46,50,54,54,55,51,55,44,51,57,46,53,49,54,50,52,57,93,44,91,45,56,51,46,50,53,50,52,51,53,44,51,57,46,54,57,53,52,51,56,93,44,91,45,56,51,46,54,53,51,51,51,44,51,57,46,55,49,54,56,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,49,53,57,44,34,98,101,100,115,34,58,49,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,57,55,53,52,48,57,44,52,50,46,53,53,54,48,51,55,93,44,91,45,55,51,46,48,48,48,49,55,51,44,52,50,46,51,49,50,54,55,56,93,44,91,45,55,50,46,55,56,49,48,51,57,44,52,50,46,49,57,57,55,52,57,93,44,91,45,55,50,46,50,50,49,50,49,56,44,52,50,46,50,52,53,50,53,50,93,44,91,45,55,50,46,51,49,52,50,53,51,44,52,50,46,51,52,51,54,56,56,93,44,91,45,55,50,46,51,55,53,48,50,50,44,52,50,46,52,50,48,56,49,57,93,44,91,45,55,50,46,56,55,49,49,51,54,44,52,50,46,52,56,52,48,52,49,93,44,91,45,55,50,46,57,55,53,52,48,57,44,52,50,46,53,53,54,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,57,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,54,54,55,52,44,51,54,46,57,51,52,48,49,53,93,44,91,45,56,54,46,52,48,53,55,54,57,44,51,54,46,55,55,54,49,56,55,93,44,91,45,56,54,46,52,49,49,51,55,57,44,51,54,46,54,53,48,57,50,52,93,44,91,45,56,54,46,50,48,53,51,56,56,44,51,54,46,54,52,48,49,56,52,93,44,91,45,56,53,46,57,55,54,52,49,56,44,51,54,46,54,50,56,52,57,51,93,44,91,45,56,53,46,57,55,54,57,49,44,51,54,46,55,50,50,55,50,50,93,44,91,45,56,54,46,48,54,57,57,53,55,44,51,54,46,56,48,53,55,56,51,93,44,91,45,56,54,46,48,55,48,50,57,51,44,51,54,46,56,55,56,49,56,56,93,44,91,45,56,54,46,49,54,54,55,52,44,51,54,46,57,51,52,48,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,97,109,97,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,53,55,54,44,34,98,101,100,115,34,58,50,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,53,51,50,52,49,44,51,54,46,50,52,49,52,54,51,93,44,91,45,55,57,46,53,52,49,55,50,56,44,51,53,46,56,57,57,56,53,49,93,44,91,45,55,57,46,53,52,50,52,50,56,44,51,53,46,56,52,51,51,48,51,93,44,91,45,55,57,46,50,52,57,53,51,56,44,51,53,46,56,55,54,56,49,93,44,91,45,55,57,46,50,53,55,57,53,50,44,51,54,46,50,52,51,52,52,53,93,44,91,45,55,57,46,53,51,49,56,54,53,44,51,54,46,50,52,57,54,55,51,93,44,91,45,55,57,46,53,51,50,52,49,44,51,54,46,50,52,49,52,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,53,55,50,55,55,44,51,56,46,49,55,50,54,54,93,44,91,45,57,54,46,51,53,56,48,57,57,44,51,56,46,48,56,53,56,49,55,93,44,91,45,57,54,46,53,50,50,55,56,50,44,51,56,46,48,56,54,51,55,93,44,91,45,57,54,46,53,50,53,51,44,51,55,46,54,48,55,48,49,53,93,44,91,45,57,53,46,57,54,49,48,48,50,44,51,55,46,54,48,51,55,54,49,93,44,91,45,57,53,46,57,54,48,56,55,54,44,51,55,46,55,51,52,51,48,52,93,44,91,45,57,53,46,57,53,57,48,52,54,44,51,56,46,48,52,48,49,57,53,93,44,91,45,57,53,46,57,53,56,56,54,50,44,51,56,46,49,55,48,57,51,57,93,44,91,45,57,54,46,51,53,55,50,55,55,44,51,56,46,49,55,50,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,83,117,102,102,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,49,55,54,54,44,34,98,101,100,115,34,58,54,50,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,48,50,53,56,51,54,44,52,50,46,52,52,52,55,48,57,93,44,91,45,55,49,46,49,53,55,48,51,54,44,52,50,46,51,51,48,51,57,93,44,91,45,55,49,46,49,54,52,55,48,50,44,52,50,46,51,48,51,56,51,93,44,91,45,55,49,46,49,57,49,49,53,53,44,52,50,46,50,56,51,48,53,57,93,44,91,45,55,48,46,57,54,48,49,57,50,44,52,50,46,50,57,57,52,57,56,93,44,91,45,55,48,46,56,57,52,50,57,50,44,52,50,46,51,55,50,51,57,57,93,44,91,45,55,48,46,55,50,57,50,49,50,44,52,50,46,51,55,51,56,52,56,93,44,91,45,55,48,46,54,55,53,54,57,44,52,50,46,51,55,53,48,57,56,93,44,91,45,55,48,46,54,53,56,55,50,51,44,52,50,46,51,55,53,48,57,56,93,44,91,45,55,48,46,54,52,56,48,55,50,44,52,50,46,52,48,53,54,50,56,93,44,91,45,55,48,46,57,50,52,53,57,51,44,52,50,46,51,56,54,55,57,56,93,44,91,45,55,49,46,48,50,53,56,51,54,44,52,50,46,52,52,52,55,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,54,50,54,48,52,51,44,52,51,46,54,50,54,55,53,54,93,44,91,45,49,49,49,46,57,51,52,51,53,55,44,52,51,46,55,54,54,49,54,93,44,91,45,49,49,49,46,57,55,54,56,52,57,44,52,51,46,57,50,55,51,56,53,93,44,91,45,49,49,50,46,49,53,54,51,55,44,52,51,46,57,55,49,50,52,55,93,44,91,45,49,49,50,46,49,53,53,57,51,53,44,52,52,46,48,53,55,55,56,93,44,91,45,49,49,50,46,54,57,52,55,52,52,44,52,52,46,48,53,56,52,54,52,93,44,91,45,49,49,50,46,54,57,53,50,52,50,44,52,51,46,57,55,49,57,52,49,93,44,91,45,49,49,50,46,54,57,55,49,50,50,44,52,51,46,54,50,51,49,52,93,44,91,45,49,49,50,46,53,49,57,56,54,49,44,52,51,46,54,50,54,54,50,51,93,44,91,45,49,49,49,46,54,50,54,48,52,51,44,52,51,46,54,50,54,55,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,71,111,110,122,97,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,54,55,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,51,51,49,55,54,44,50,57,46,54,52,57,56,54,51,93,44,91,45,57,55,46,56,52,48,51,56,51,44,50,57,46,51,55,54,55,57,49,93,44,91,45,57,55,46,55,50,56,52,52,51,44,50,57,46,50,50,49,55,52,56,93,44,91,45,57,55,46,54,49,51,49,51,50,44,50,57,46,49,48,57,55,54,53,93,44,91,45,57,55,46,50,52,48,49,48,56,44,50,57,46,51,56,52,52,56,56,93,44,91,45,57,55,46,50,48,52,48,56,55,44,50,57,46,53,56,48,54,49,51,93,44,91,45,57,55,46,49,52,50,54,52,51,44,50,57,46,54,50,56,49,48,49,93,44,91,45,57,55,46,51,49,55,56,57,51,44,50,57,46,55,56,52,54,53,56,93,44,91,45,57,55,46,53,57,55,55,52,51,44,50,57,46,54,51,48,55,49,56,93,44,91,45,57,55,46,54,51,51,49,55,54,44,50,57,46,54,52,57,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,56,55,48,56,57,44,51,53,46,49,52,55,49,54,57,93,44,91,45,56,53,46,52,52,52,49,52,52,44,51,53,46,50,54,50,54,52,54,93,44,91,45,56,53,46,53,53,56,53,53,49,44,51,53,46,51,49,57,50,57,50,93,44,91,45,56,53,46,54,57,48,52,49,53,44,51,53,46,50,56,54,48,55,53,93,44,91,45,56,53,46,55,52,48,49,49,51,44,51,53,46,50,49,53,50,57,53,93,44,91,45,56,53,46,56,55,51,48,50,53,44,51,53,46,50,50,51,51,54,50,93,44,91,45,56,53,46,56,54,51,57,51,53,44,51,52,46,57,56,56,50,53,51,93,44,91,45,56,53,46,54,48,53,49,54,53,44,51,52,46,57,56,52,54,55,56,93,44,91,45,56,53,46,52,55,52,48,55,51,44,51,52,46,57,56,51,48,50,93,44,91,45,56,53,46,51,56,50,50,53,53,44,51,53,46,48,52,52,55,51,93,44,91,45,56,53,46,51,56,55,48,56,57,44,51,53,46,49,52,55,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,108,112,101,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,49,50,44,34,98,101,100,115,34,58,49,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,57,48,53,57,54,44,52,53,46,50,48,56,52,56,52,93,44,91,45,56,51,46,56,56,49,50,50,51,44,52,53,46,50,48,50,48,55,49,93,44,91,45,56,51,46,56,56,56,52,56,50,44,52,52,46,56,53,54,54,51,53,93,44,91,45,56,51,46,56,56,56,52,56,52,44,52,52,46,56,53,54,52,53,56,93,44,91,45,56,50,46,52,48,56,55,49,55,44,52,52,46,56,53,56,49,52,55,93,44,91,45,56,50,46,52,57,48,53,57,54,44,52,53,46,50,48,56,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,49,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,51,53,55,49,50,44,51,54,46,57,57,55,54,49,50,93,44,91,45,56,53,46,48,54,52,51,48,55,44,51,54,46,56,53,56,55,52,51,93,44,91,45,56,52,46,57,55,52,56,49,49,44,51,54,46,54,49,53,52,54,53,93,44,91,45,56,52,46,55,56,53,52,53,44,51,54,46,54,48,51,52,52,52,93,44,91,45,56,52,46,55,55,56,52,53,52,44,51,54,46,54,48,51,50,57,93,44,91,45,56,52,46,53,55,56,49,53,56,44,51,54,46,56,54,55,49,51,51,93,44,91,45,56,52,46,54,55,57,49,54,53,44,51,54,46,57,56,48,57,49,52,93,44,91,45,56,52,46,56,51,53,55,49,50,44,51,54,46,57,57,55,54,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,53,56,48,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,52,52,54,48,52,44,51,54,46,48,49,53,48,53,51,93,44,91,45,56,53,46,54,56,50,48,57,53,44,51,53,46,56,51,49,50,53,52,93,44,91,45,56,53,46,54,48,50,56,55,54,44,51,53,46,55,57,52,57,57,54,93,44,91,45,56,53,46,52,52,57,51,54,44,51,53,46,56,50,49,53,53,57,93,44,91,45,56,53,46,50,54,57,51,53,57,44,51,53,46,55,57,51,51,56,56,93,44,91,45,56,53,46,50,50,50,53,50,52,44,51,53,46,56,55,55,51,54,52,93,44,91,45,56,53,46,50,54,52,50,48,54,44,51,53,46,57,55,57,49,53,52,93,44,91,45,56,53,46,51,53,54,54,49,57,44,51,54,46,48,52,53,56,57,51,93,44,91,45,56,53,46,53,48,55,54,55,55,44,51,54,46,48,56,50,48,49,50,93,44,91,45,56,53,46,54,52,52,54,48,52,44,51,54,46,48,49,53,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,70,97,110,110,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,49,55,53,44,34,98,101,100,115,34,58,51,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,55,57,52,53,50,44,51,51,46,55,50,53,55,54,52,93,44,91,45,57,54,46,51,56,52,54,48,50,44,51,51,46,51,57,55,56,50,54,93,44,91,45,57,54,46,50,57,53,52,49,51,44,51,51,46,51,53,49,57,51,54,93,44,91,45,57,53,46,56,53,56,55,50,51,44,51,51,46,52,48,57,53,51,93,44,91,45,57,53,46,56,53,55,55,51,56,44,51,51,46,52,54,49,55,50,50,93,44,91,45,57,53,46,56,52,54,53,51,54,44,51,51,46,56,51,57,56,53,53,93,44,91,45,57,53,46,57,52,54,48,51,44,51,51,46,56,53,57,51,51,56,93,44,91,45,57,54,46,49,52,57,50,50,55,44,51,51,46,56,51,55,48,57,49,93,44,91,45,57,54,46,49,55,57,56,52,54,44,51,51,46,55,53,57,54,49,56,93,44,91,45,57,54,46,50,57,48,51,53,57,44,51,51,46,55,55,48,56,51,49,93,44,91,45,57,54,46,51,55,57,52,53,50,44,51,51,46,55,50,53,55,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,111,110,105,112,104,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,51,57,56,57,54,44,51,57,46,57,57,57,57,57,57,93,44,91,45,57,53,46,51,51,57,55,52,44,51,57,46,54,53,50,57,56,93,44,91,45,57,53,46,49,49,53,49,56,57,44,51,57,46,54,53,50,53,52,57,93,44,91,45,57,53,46,48,53,51,53,56,54,44,51,57,46,54,49,53,50,54,57,93,44,91,45,57,52,46,56,55,54,53,53,56,44,51,57,46,56,50,48,56,56,51,93,44,91,45,57,52,46,57,57,51,51,56,50,44,51,57,46,56,57,55,57,48,54,93,44,91,45,57,53,46,48,56,53,48,48,51,44,51,57,46,56,54,49,56,56,51,93,44,91,45,57,53,46,51,48,56,50,57,44,51,57,46,57,57,57,57,57,56,93,44,91,45,57,53,46,51,51,57,56,57,54,44,51,57,46,57,57,57,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,53,34,44,34,78,65,77,69,34,58,34,75,101,114,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,51,54,53,44,34,98,101,100,115,34,58,51,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,48,50,55,55,54,44,50,57,46,57,48,55,54,55,57,93,44,91,45,57,57,46,49,55,54,57,56,56,44,50,57,46,56,57,53,48,54,51,93,44,91,45,57,56,46,57,49,55,55,50,53,44,50,57,46,55,56,49,51,57,56,93,44,91,45,57,56,46,57,50,48,49,52,55,44,51,48,46,49,51,56,50,57,93,44,91,45,57,57,46,51,48,48,57,56,56,44,51,48,46,49,51,52,50,57,56,93,44,91,45,57,57,46,51,48,49,55,49,56,44,51,48,46,50,56,54,54,53,51,93,44,91,45,57,57,46,55,53,52,49,52,50,44,51,48,46,50,57,48,54,57,56,93,44,91,45,57,57,46,55,53,55,54,50,49,44,51,48,46,48,55,52,49,51,50,93,44,91,45,57,57,46,54,56,57,56,55,57,44,51,48,46,48,55,51,57,52,56,93,44,91,45,57,57,46,54,57,49,50,49,53,44,50,57,46,57,48,56,53,56,50,93,44,91,45,57,57,46,54,48,50,55,55,54,44,50,57,46,57,48,55,54,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,72,101,114,110,97,110,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,54,57,54,44,34,98,101,100,115,34,58,53,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,53,51,57,55,55,44,50,56,46,52,51,51,50,57,93,44,91,45,56,50,46,50,53,51,52,51,57,44,50,56,46,52,51,52,56,50,52,93,44,91,45,56,50,46,48,53,52,54,57,52,44,50,56,46,52,55,56,51,57,55,93,44,91,45,56,50,46,50,54,51,48,53,50,44,50,56,46,54,54,55,54,51,52,93,44,91,45,56,50,46,52,49,56,51,53,51,44,50,56,46,54,57,52,56,53,57,93,44,91,45,56,50,46,55,55,56,52,51,55,44,50,56,46,54,57,52,50,48,54,93,44,91,45,56,50,46,55,50,55,51,57,50,44,50,56,46,53,57,53,53,56,55,93,44,91,45,56,50,46,55,53,51,57,55,55,44,50,56,46,52,51,51,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,87,97,107,117,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,56,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,55,53,53,51,57,44,51,48,46,50,55,51,54,49,55,93,44,91,45,56,52,46,50,52,55,54,55,51,44,51,48,46,51,48,51,52,57,51,93,44,91,45,56,52,46,55,49,51,51,53,49,44,51,48,46,51,48,48,49,55,93,44,91,45,56,52,46,54,54,57,50,53,56,44,51,48,46,49,50,53,50,93,44,91,45,56,52,46,53,52,52,52,53,44,51,48,46,48,49,49,48,51,93,44,91,45,56,52,46,51,50,53,49,57,56,44,50,57,46,57,53,56,48,53,93,44,91,45,56,52,46,50,54,52,55,51,53,44,50,57,46,57,55,56,48,54,49,93,44,91,45,56,52,46,48,55,53,52,53,53,44,51,48,46,48,51,52,54,50,54,93,44,91,45,56,52,46,48,55,53,53,51,57,44,51,48,46,50,55,51,54,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,87,97,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,56,53,56,44,34,98,101,100,115,34,58,49,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,56,56,54,52,54,44,51,48,46,57,57,52,49,56,49,93,44,91,45,56,54,46,51,57,55,53,48,52,44,51,48,46,51,50,53,51,53,52,93,44,91,45,56,53,46,57,57,57,56,57,51,44,51,48,46,50,49,51,48,57,93,44,91,45,56,53,46,57,57,50,55,51,54,44,51,48,46,51,56,57,51,50,93,44,91,45,56,53,46,56,54,54,56,49,56,44,51,48,46,52,56,55,54,51,55,93,44,91,45,56,53,46,57,49,53,50,57,55,44,51,48,46,54,51,54,52,50,55,93,44,91,45,56,53,46,56,52,52,52,50,49,44,51,48,46,55,48,51,49,51,93,44,91,45,56,54,46,48,51,55,53,57,49,44,51,48,46,55,48,52,53,55,50,93,44,91,45,56,54,46,48,51,53,48,51,57,44,51,48,46,57,57,51,51,50,93,44,91,45,56,54,46,49,56,55,50,52,54,44,51,48,46,57,57,52,48,50,49,93,44,91,45,56,54,46,51,56,56,54,52,54,44,51,48,46,57,57,52,49,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,105,99,107,97,115,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,55,57,44,34,98,101,100,115,34,58,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,50,52,53,50,51,44,51,52,46,48,55,52,57,52,56,93,44,91,45,56,57,46,49,51,57,49,53,56,44,51,52,46,48,55,52,49,49,54,93,44,91,45,56,57,46,49,51,55,56,55,54,44,51,51,46,56,49,50,49,52,52,93,44,91,45,56,57,46,49,57,49,55,56,49,44,51,51,46,55,51,56,54,48,50,93,44,91,45,56,57,46,48,51,52,52,57,56,44,51,51,46,55,51,57,52,51,93,44,91,45,56,56,46,57,51,49,49,55,54,44,51,51,46,56,49,50,51,55,52,93,44,91,45,56,56,46,55,49,57,57,55,57,44,51,51,46,56,49,49,51,51,93,44,91,45,56,56,46,55,49,56,57,54,52,44,51,52,46,48,55,52,53,50,49,93,44,91,45,56,56,46,56,50,52,53,50,51,44,51,52,46,48,55,52,57,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,48,34,44,34,78,65,77,69,34,58,34,75,101,116,99,104,105,107,97,110,32,71,97,116,101,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,48,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,50,46,49,57,57,55,52,57,44,53,53,46,54,51,51,56,51,52,93,44,91,45,49,51,50,46,50,50,53,57,55,57,44,53,53,46,53,54,53,56,49,50,93,44,91,45,49,51,50,46,48,51,55,48,48,54,44,53,53,46,52,54,53,50,52,54,93,44,91,45,49,51,49,46,57,52,49,51,54,52,44,53,53,46,51,49,50,56,50,54,93,44,91,45,49,51,49,46,56,53,53,48,48,51,44,53,53,46,48,56,56,54,49,53,93,44,91,45,49,51,49,46,54,56,53,51,55,55,44,53,53,46,49,49,52,52,53,56,93,44,91,45,49,51,49,46,54,48,57,50,53,51,44,53,53,46,50,56,50,48,49,51,93,44,91,45,49,51,49,46,52,56,54,55,53,54,44,53,53,46,50,55,54,49,56,51,93,44,91,45,49,51,49,46,50,51,57,53,53,52,44,53,53,46,49,54,57,54,56,51,93,44,91,45,49,51,49,46,51,51,54,57,56,51,44,53,52,46,57,57,53,53,51,52,93,44,91,45,49,51,49,46,53,49,48,54,54,44,53,53,46,48,49,54,51,54,54,93,44,91,45,49,51,49,46,55,57,52,50,56,55,44,53,52,46,57,52,52,48,49,55,93,44,91,45,49,51,49,46,55,54,50,51,51,57,44,53,52,46,54,56,54,56,52,93,44,91,45,49,51,49,46,50,48,51,48,55,52,44,53,52,46,54,57,49,51,49,55,93,44,91,45,49,51,48,46,55,50,54,53,57,53,44,53,52,46,54,54,57,57,50,51,93,44,91,45,49,51,48,46,51,52,52,53,51,55,44,53,52,46,57,49,56,56,49,51,93,44,91,45,49,51,48,46,49,56,55,53,54,50,44,53,53,46,48,54,50,56,52,49,93,44,91,45,49,51,48,46,49,48,50,56,52,50,44,53,53,46,49,57,50,54,48,50,93,44,91,45,49,50,57,46,57,55,52,49,54,55,44,53,53,46,50,56,49,57,49,57,93,44,91,45,49,51,48,46,49,50,55,57,48,52,44,53,53,46,53,56,49,48,51,53,93,44,91,45,49,51,48,46,49,53,49,53,55,55,44,53,53,46,55,54,55,52,50,56,93,44,91,45,49,51,48,46,51,56,56,54,48,54,44,53,53,46,57,52,51,49,55,57,93,44,91,45,49,51,48,46,50,52,54,55,54,55,44,53,54,46,48,57,54,53,56,49,93,44,91,45,49,51,48,46,52,50,54,48,48,54,44,53,54,46,49,52,49,53,54,49,93,44,91,45,49,51,48,46,52,54,55,56,55,44,53,54,46,50,52,51,48,53,51,93,44,91,45,49,51,48,46,54,50,51,51,48,56,44,53,54,46,50,54,54,56,55,56,93,44,91,45,49,51,48,46,55,56,49,57,56,49,44,53,54,46,51,54,54,56,52,52,93,44,91,45,49,51,49,46,48,56,55,51,52,57,44,53,54,46,52,48,54,48,48,53,93,44,91,45,49,51,49,46,48,49,53,57,55,49,44,53,54,46,50,52,57,56,54,49,93,44,91,45,49,51,49,46,50,53,51,51,53,56,44,53,54,46,50,48,54,56,53,93,44,91,45,49,51,49,46,52,51,57,57,53,55,44,53,54,46,49,51,49,48,56,51,93,44,91,45,49,51,49,46,51,55,57,57,56,55,44,53,54,46,48,49,51,52,49,57,93,44,91,45,49,51,49,46,56,51,51,49,56,50,44,53,54,46,48,53,51,53,49,50,93,44,91,45,49,51,49,46,57,51,53,54,51,53,44,53,53,46,55,57,56,52,51,49,93,44,91,45,49,51,50,46,48,57,49,49,55,56,44,53,53,46,54,54,48,55,48,51,93,44,91,45,49,51,50,46,49,57,57,55,52,57,44,53,53,46,54,51,51,56,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,108,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,54,49,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,56,55,52,48,51,44,52,52,46,49,54,52,50,52,50,93,44,91,45,56,53,46,48,56,56,56,49,49,44,52,51,46,56,49,51,54,55,54,93,44,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,44,91,45,56,52,46,54,48,56,49,48,52,44,52,52,46,49,54,48,52,56,50,93,44,91,45,56,52,46,56,53,49,55,48,53,44,52,52,46,49,54,49,51,55,53,93,44,91,45,56,53,46,48,56,55,52,48,51,44,52,52,46,49,54,52,50,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,82,101,112,117,98,108,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,56,54,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,51,49,56,50,53,44,52,48,46,48,48,50,48,55,50,93,44,91,45,57,55,46,57,51,49,52,56,50,44,51,57,46,54,53,51,55,54,55,93,44,91,45,57,55,46,51,54,56,54,55,44,51,57,46,54,53,52,48,52,51,93,44,91,45,57,55,46,51,54,57,49,57,57,44,52,48,46,48,48,49,57,54,54,93,44,91,45,57,55,46,56,50,49,52,57,53,44,52,48,46,48,48,50,48,52,55,93,44,91,45,57,55,46,57,51,49,56,50,53,44,52,48,46,48,48,50,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,86,111,108,117,115,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,54,51,52,44,34,98,101,100,115,34,58,49,52,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,52,49,57,49,54,44,50,57,46,50,55,54,55,54,54,93,44,91,45,56,49,46,53,51,50,53,55,54,44,50,57,46,49,55,55,54,49,53,93,44,91,45,56,49,46,53,48,50,48,53,53,44,50,57,46,48,57,55,56,48,50,93,44,91,45,56,49,46,51,53,52,53,53,52,44,50,56,46,57,56,52,51,55,53,93,44,91,45,56,49,46,51,54,54,57,52,44,50,56,46,56,55,57,50,50,55,93,44,91,45,56,49,46,51,50,48,52,55,51,44,50,56,46,56,51,52,53,51,93,44,91,45,56,49,46,49,48,53,55,53,44,50,56,46,56,50,56,53,52,49,93,44,91,45,56,48,46,57,56,55,50,53,44,50,56,46,54,49,50,57,57,55,93,44,91,45,56,48,46,57,54,55,56,57,53,44,50,56,46,55,57,48,49,57,55,93,44,91,45,56,48,46,54,54,51,52,54,49,44,50,56,46,55,57,48,53,56,56,93,44,91,45,56,48,46,57,48,54,56,51,54,44,50,57,46,49,52,52,55,48,54,93,44,91,45,56,49,46,48,52,53,55,48,54,44,50,57,46,52,51,50,52,54,50,93,44,91,45,56,49,46,49,53,53,56,56,49,44,50,57,46,52,49,48,57,53,52,93,44,91,45,56,49,46,49,53,48,48,56,49,44,50,57,46,50,54,53,57,53,55,93,44,91,45,56,49,46,52,49,55,50,57,44,50,57,46,50,54,49,49,53,54,93,44,91,45,56,49,46,52,51,51,57,57,50,44,50,57,46,51,57,56,53,53,50,93,44,91,45,56,49,46,54,56,48,57,48,51,44,50,57,46,51,50,52,52,51,93,44,91,45,56,49,46,54,52,49,57,49,54,44,50,57,46,50,55,54,55,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,110,97,100,105,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,55,49,48,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,57,54,48,49,52,44,51,53,46,51,55,55,55,53,51,93,44,91,45,57,55,46,57,53,53,49,50,52,44,51,53,46,51,52,54,48,52,56,93,44,91,45,57,55,46,54,55,49,52,49,52,44,51,53,46,51,51,53,57,52,54,93,44,91,45,57,55,46,54,55,49,52,49,53,44,51,53,46,51,51,55,52,54,53,93,44,91,45,57,55,46,54,55,49,51,54,57,44,51,53,46,51,55,55,49,53,49,93,44,91,45,57,55,46,54,55,52,48,50,54,44,51,53,46,55,50,53,57,55,93,44,91,45,57,56,46,50,48,55,49,48,52,44,51,53,46,55,50,53,49,56,55,93,44,91,45,57,56,46,51,49,51,49,53,51,44,51,53,46,55,50,53,49,54,49,93,44,91,45,57,56,46,51,49,51,50,53,49,44,51,53,46,53,53,49,53,50,51,93,44,91,45,57,56,46,51,48,54,51,50,54,44,51,53,46,51,55,55,50,51,57,93,44,91,45,57,56,46,48,57,54,48,49,52,44,51,53,46,51,55,55,55,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,81,117,101,98,114,97,100,105,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,57,52,53,57,51,56,44,49,56,46,53,52,48,52,49,57,93,44,91,45,54,54,46,57,50,50,48,50,44,49,56,46,51,57,51,50,48,52,93,44,91,45,54,54,46,56,57,56,57,44,49,56,46,51,54,54,49,48,56,93,44,91,45,54,54,46,57,48,50,48,56,54,44,49,56,46,53,51,53,50,51,56,93,44,91,45,54,54,46,57,52,53,57,51,56,44,49,56,46,53,52,48,52,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,56,50,52,44,34,98,101,100,115,34,58,53,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,48,55,55,52,56,44,51,52,46,53,56,55,52,56,51,93,44,91,45,56,53,46,49,56,48,53,52,56,44,51,52,46,52,51,53,57,57,54,93,44,91,45,56,53,46,52,54,50,50,48,55,44,51,52,46,50,56,54,51,56,54,93,44,91,45,56,53,46,52,50,49,56,53,50,44,51,52,46,48,56,48,56,50,50,93,44,91,45,56,53,46,48,52,54,56,55,49,44,51,52,46,48,57,54,52,49,50,93,44,91,45,56,53,46,48,48,53,55,55,53,44,51,52,46,51,57,50,52,52,54,93,44,91,45,56,53,46,48,56,54,55,54,49,44,51,52,46,52,48,49,50,54,52,93,44,91,45,56,53,46,48,54,57,49,53,57,44,51,52,46,53,56,55,49,56,52,93,44,91,45,56,53,46,49,48,55,55,52,56,44,51,52,46,53,56,55,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,67,104,117,114,99,104,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,49,48,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,49,56,57,51,52,50,44,51,57,46,54,53,48,56,55,93,44,91,45,49,49,57,46,48,55,55,57,56,56,44,51,57,46,55,50,50,52,52,49,93,44,91,45,49,49,57,46,49,49,56,49,57,51,44,51,57,46,51,56,56,53,49,54,93,44,91,45,49,49,56,46,55,53,52,48,49,52,44,51,57,46,49,49,50,48,50,51,93,44,91,45,49,49,56,46,55,53,51,56,51,53,44,51,57,46,48,55,52,54,51,93,44,91,45,49,49,55,46,56,54,53,49,49,54,44,51,57,46,48,55,51,54,53,52,93,44,91,45,49,49,55,46,55,55,53,52,54,56,44,51,57,46,48,57,51,52,50,53,93,44,91,45,49,49,55,46,55,49,57,57,53,44,51,57,46,50,51,54,56,50,49,93,44,91,45,49,49,55,46,55,54,51,48,52,54,44,51,57,46,51,53,50,56,51,93,44,91,45,49,49,55,46,54,52,54,48,49,49,44,51,57,46,52,50,54,54,48,50,93,44,91,45,49,49,55,46,53,56,55,49,52,44,51,57,46,53,49,56,53,50,49,93,44,91,45,49,49,55,46,52,56,53,51,51,54,44,51,57,46,53,52,53,51,50,50,93,44,91,45,49,49,55,46,52,57,53,51,52,52,44,51,57,46,55,52,56,51,54,52,93,44,91,45,49,49,55,46,52,54,49,51,52,44,51,57,46,56,54,55,56,49,56,93,44,91,45,49,49,55,46,53,52,49,55,52,57,44,52,48,46,48,48,49,48,51,52,93,44,91,45,49,49,56,46,53,48,48,57,55,57,44,51,57,46,57,57,56,54,55,54,93,44,91,45,49,49,57,46,50,50,53,49,55,54,44,51,57,46,57,57,57,51,56,53,93,44,91,45,49,49,57,46,49,56,57,51,52,50,44,51,57,46,54,53,48,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,49,44,34,98,101,100,115,34,58,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,50,54,56,50,55,44,52,48,46,51,53,48,51,57,56,93,44,91,45,57,56,46,55,50,54,51,55,51,44,52,48,46,48,48,50,52,93,44,91,45,57,56,46,53,48,52,52,53,53,44,52,48,46,48,48,50,50,57,49,93,44,91,45,57,56,46,50,55,52,48,49,55,44,52,48,46,48,48,50,54,54,50,93,44,91,45,57,56,46,50,55,51,53,55,49,44,52,48,46,51,53,48,51,53,57,93,44,91,45,57,56,46,50,55,56,48,57,44,52,48,46,51,53,48,51,52,55,93,44,91,45,57,56,46,55,50,51,57,52,56,44,52,48,46,51,53,48,51,57,49,93,44,91,45,57,56,46,55,50,54,56,50,55,44,52,48,46,51,53,48,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,49,50,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,56,53,50,57,53,44,52,48,46,54,51,55,56,48,51,93,44,91,45,57,49,46,51,53,57,56,55,51,44,52,48,46,54,48,49,56,48,53,93,44,91,45,57,49,46,51,55,53,55,49,50,44,52,48,46,51,57,49,57,50,53,93,44,91,45,57,49,46,52,49,57,52,50,50,44,52,48,46,51,55,56,50,54,52,93,44,91,45,57,49,46,52,57,55,50,54,54,44,52,48,46,50,52,56,55,54,51,93,44,91,45,57,49,46,53,48,53,48,54,49,44,52,48,46,49,57,57,57,50,53,93,44,91,45,57,48,46,57,49,49,57,54,57,44,52,48,46,49,57,51,48,56,56,93,44,91,45,57,48,46,57,48,57,55,53,54,44,52,48,46,50,56,52,51,57,52,93,44,91,45,57,48,46,57,48,52,50,49,54,44,52,48,46,54,51,57,50,48,49,93,44,91,45,57,49,46,49,56,53,50,57,53,44,52,48,46,54,51,55,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,117,116,99,104,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,49,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,48,55,48,49,50,44,52,51,46,52,57,57,56,50,54,93,44,91,45,57,55,46,57,54,52,53,56,54,44,52,51,46,52,57,57,48,52,49,93,44,91,45,57,56,46,49,49,52,55,53,56,44,52,51,46,52,57,56,50,57,55,93,44,91,45,57,56,46,49,48,57,52,57,50,44,52,51,46,49,57,54,56,51,56,93,44,91,45,57,56,46,48,55,55,49,48,56,44,52,51,46,49,54,56,51,51,93,44,91,45,57,55,46,54,51,55,52,57,54,44,52,51,46,49,54,56,55,55,93,44,91,45,57,55,46,51,57,57,49,57,49,44,52,51,46,49,54,57,52,49,57,93,44,91,45,57,55,46,52,48,49,52,53,44,52,51,46,52,57,57,55,56,51,93,44,91,45,57,55,46,54,48,55,48,49,50,44,52,51,46,52,57,57,56,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,114,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,51,55,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,51,56,54,53,54,49,44,52,52,46,53,54,52,48,48,57,93,44,91,45,49,50,48,46,56,50,55,53,53,53,44,52,52,46,53,54,50,55,57,51,93,44,91,45,49,50,48,46,56,50,54,56,57,57,44,52,52,46,52,55,54,52,57,57,93,44,91,45,49,50,48,46,57,56,56,56,50,52,44,52,52,46,52,55,54,52,56,52,93,44,91,45,49,50,49,46,49,48,55,53,51,52,44,52,52,46,51,57,48,54,93,44,91,45,49,50,49,46,49,48,50,55,55,51,44,52,52,46,49,51,56,49,50,53,93,44,91,45,49,50,48,46,57,56,55,50,55,49,44,52,52,46,49,51,52,48,50,54,93,44,91,45,49,50,48,46,57,56,54,53,56,55,44,52,51,46,57,54,48,56,53,50,93,44,91,45,49,50,48,46,55,52,56,50,52,57,44,52,51,46,57,53,55,51,49,93,44,91,45,49,50,48,46,55,52,55,56,52,56,44,52,51,46,56,55,49,51,51,49,93,44,91,45,49,50,48,46,51,55,56,55,52,44,52,51,46,56,55,50,51,54,50,93,44,91,45,49,50,48,46,51,55,56,49,48,55,44,52,51,46,55,56,53,52,50,57,93,44,91,45,49,50,48,46,50,53,55,55,55,55,44,52,51,46,54,57,56,55,54,50,93,44,91,45,49,49,57,46,56,57,55,52,51,52,44,52,51,46,54,57,56,50,93,44,91,45,49,49,57,46,55,55,55,53,50,56,44,52,51,46,54,57,55,57,53,55,93,44,91,45,49,49,57,46,55,55,53,52,48,50,44,52,51,46,57,53,57,48,56,54,93,44,91,45,49,49,57,46,54,53,55,49,56,51,44,52,51,46,57,53,56,57,50,93,44,91,45,49,49,57,46,54,53,53,53,49,55,44,52,52,46,51,48,55,48,52,53,93,44,91,45,49,49,57,46,56,57,57,48,48,50,44,52,52,46,51,48,54,54,50,93,44,91,45,49,49,57,46,56,57,57,50,56,51,44,52,52,46,51,56,57,53,55,53,93,44,91,45,49,50,48,46,48,50,49,54,50,49,44,52,52,46,52,51,56,55,57,51,93,44,91,45,49,50,48,46,51,56,54,48,55,52,44,52,52,46,52,51,54,48,56,51,93,44,91,45,49,50,48,46,51,56,54,53,54,49,44,52,52,46,53,54,52,48,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,50,53,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,49,57,49,57,50,56,44,52,53,46,48,49,51,54,49,53,93,44,91,45,55,51,46,50,50,56,56,53,52,44,52,52,46,55,50,50,56,54,54,93,44,91,45,55,50,46,57,50,52,49,49,50,44,52,52,46,54,51,51,48,53,49,93,44,91,45,55,50,46,55,52,55,51,54,44,52,52,46,55,56,54,49,55,93,44,91,45,55,50,46,53,55,56,49,54,49,44,52,52,46,55,56,49,53,55,56,93,44,91,45,55,50,46,53,51,50,54,51,56,44,52,52,46,56,51,51,51,52,54,93,44,91,45,55,50,46,53,53,52,51,54,44,52,53,46,48,48,56,50,55,49,93,44,91,45,55,51,46,49,57,49,57,50,56,44,52,53,46,48,49,51,54,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,77,97,114,113,117,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,57,51,57,44,34,98,101,100,115,34,58,50,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,52,51,55,51,49,44,52,55,46,48,52,51,57,53,56,93,44,91,45,56,56,46,48,52,52,55,48,57,44,52,54,46,55,54,53,51,53,51,93,44,91,45,56,56,46,49,49,53,56,52,51,44,52,54,46,54,55,56,51,56,49,93,44,91,45,56,56,46,49,49,54,53,55,49,44,52,54,46,52,49,57,57,53,49,93,44,91,45,56,56,46,49,49,55,52,48,55,44,52,54,46,50,52,54,54,49,56,93,44,91,45,56,55,46,54,49,53,53,57,55,44,52,54,46,50,52,54,54,53,51,93,44,91,45,56,55,46,54,49,55,48,57,49,44,52,53,46,57,56,54,48,49,52,93,44,91,45,56,55,46,51,54,55,56,52,57,44,52,53,46,57,56,53,51,50,49,93,44,91,45,56,55,46,50,52,50,56,56,53,44,52,53,46,57,56,53,49,49,55,93,44,91,45,56,55,46,50,52,49,53,48,54,44,52,54,46,49,53,57,49,48,51,93,44,91,45,56,55,46,49,49,54,49,51,56,44,52,54,46,49,53,57,48,53,93,44,91,45,56,55,46,49,49,50,49,49,52,44,52,55,46,50,50,51,50,54,57,93,44,91,45,56,56,46,48,52,54,54,49,52,44,52,55,46,50,49,56,54,57,54,93,44,91,45,56,56,46,48,52,54,48,54,51,44,52,55,46,49,57,57,55,50,50,93,44,91,45,56,56,46,48,52,51,55,51,49,44,52,55,46,48,52,51,57,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,77,105,100,100,108,101,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,51,54,56,44,34,98,101,100,115,34,58,55,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,55,53,50,49,56,49,44,52,49,46,53,55,56,56,57,52,93,44,91,45,55,50,46,55,51,57,49,50,44,52,49,46,52,51,56,50,57,52,93,44,91,45,55,50,46,54,53,52,49,57,51,44,52,49,46,52,51,56,50,53,54,93,44,91,45,55,50,46,53,50,55,57,48,50,44,52,49,46,50,53,48,49,49,53,93,44,91,45,55,50,46,53,50,55,57,48,49,44,52,49,46,49,55,55,55,55,52,93,44,91,45,55,50,46,51,51,49,52,53,51,44,52,49,46,50,49,53,48,48,52,93,44,91,45,55,50,46,51,56,52,56,51,51,44,52,49,46,51,56,53,49,57,93,44,91,45,55,50,46,51,48,53,53,51,49,44,52,49,46,52,51,54,50,56,50,93,44,91,45,55,50,46,51,50,51,51,57,52,44,52,49,46,53,51,52,50,53,93,44,91,45,55,50,46,52,54,54,55,51,44,52,49,46,53,56,51,56,57,57,93,44,91,45,55,50,46,53,48,53,52,51,49,44,52,49,46,54,52,54,57,57,57,93,44,91,45,55,50,46,55,49,51,56,57,55,44,52,49,46,54,50,55,55,48,53,93,44,91,45,55,50,46,55,53,50,49,56,49,44,52,49,46,53,55,56,56,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,68,97,118,105,100,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,54,54,52,44,34,98,101,100,115,34,58,50,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,52,51,50,51,56,44,51,54,46,48,49,48,55,53,56,93,44,91,45,56,48,46,50,49,51,55,51,44,51,54,46,48,50,54,56,48,56,93,44,91,45,56,48,46,51,57,52,51,48,55,44,51,53,46,57,55,50,55,54,50,93,44,91,45,56,48,46,51,56,53,55,56,52,44,51,53,46,56,53,52,53,56,55,93,44,91,45,56,48,46,52,53,56,56,56,52,44,51,53,46,55,52,51,48,51,49,93,44,91,45,56,48,46,50,48,57,53,48,57,44,51,53,46,53,56,49,57,53,49,93,44,91,45,56,48,46,49,56,50,53,53,57,44,51,53,46,53,48,52,49,53,49,93,44,91,45,56,48,46,48,54,54,56,52,50,44,51,53,46,53,48,53,54,54,49,93,44,91,45,56,48,46,48,52,54,56,54,57,44,51,53,46,57,50,48,54,57,51,93,44,91,45,56,48,46,48,52,51,50,51,56,44,51,54,46,48,49,48,55,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,51,56,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,57,53,49,54,53,44,51,56,46,56,50,54,50,57,57,93,44,91,45,56,56,46,54,57,56,52,53,57,44,51,56,46,54,48,54,48,54,50,93,44,91,45,56,56,46,50,53,51,57,55,56,44,51,56,46,53,57,57,53,48,50,93,44,91,45,56,56,46,50,53,56,53,56,51,44,51,56,46,56,52,55,53,50,57,93,44,91,45,56,56,46,51,54,49,55,52,53,44,51,56,46,57,49,48,56,52,55,93,44,91,45,56,56,46,54,57,51,53,51,49,44,51,56,46,57,49,52,54,49,55,93,44,91,45,56,56,46,54,57,53,49,54,53,44,51,56,46,56,50,54,50,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,52,55,56,48,49,44,52,48,46,51,48,50,55,53,54,93,44,91,45,57,50,46,51,52,53,48,54,52,44,52,48,46,48,51,55,50,49,93,44,91,45,57,50,46,50,56,55,56,56,50,44,51,57,46,57,53,50,52,57,93,44,91,45,57,49,46,57,53,50,55,50,54,44,51,57,46,57,52,57,52,50,54,93,44,91,45,57,49,46,57,53,48,56,49,50,44,52,48,46,50,53,55,50,49,93,44,91,45,57,49,46,57,52,57,55,52,55,44,52,48,46,51,48,48,56,51,50,93,44,91,45,57,50,46,51,52,55,56,48,49,44,52,48,46,51,48,50,55,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,54,49,57,55,51,44,51,57,46,57,53,57,53,53,50,93,44,91,45,57,51,46,55,53,56,57,57,50,44,51,57,46,55,56,52,54,55,52,93,44,91,45,57,51,46,55,53,56,51,53,55,44,51,57,46,54,49,49,52,48,55,93,44,91,45,57,51,46,50,55,56,48,57,56,44,51,57,46,54,49,53,54,51,50,93,44,91,45,57,51,46,50,54,54,57,54,56,44,51,57,46,55,48,51,53,54,50,93,44,91,45,57,51,46,51,54,52,56,48,56,44,51,57,46,55,48,51,56,48,51,93,44,91,45,57,51,46,51,54,49,57,53,55,44,51,57,46,57,54,55,54,48,54,93,44,91,45,57,51,46,55,54,49,57,55,51,44,51,57,46,57,53,57,53,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,84,105,111,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,50,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,54,53,55,50,56,44,52,50,46,48,48,49,50,55,54,93,44,91,45,55,55,46,54,49,48,48,50,55,44,52,49,46,57,57,57,51,54,56,93,44,91,45,55,55,46,53,57,57,50,55,56,44,52,49,46,53,52,50,50,55,49,93,44,91,45,55,54,46,57,54,48,52,55,57,44,52,49,46,53,53,49,51,55,49,93,44,91,45,55,54,46,56,55,52,55,49,52,44,52,49,46,53,57,54,57,49,57,93,44,91,45,55,54,46,57,50,55,48,56,52,44,52,50,46,48,48,49,54,55,52,93,44,91,45,55,54,46,57,54,53,55,50,56,44,52,50,46,48,48,49,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,51,49,52,57,50,44,52,50,46,53,50,52,51,49,56,93,44,91,45,57,54,46,55,50,50,50,51,49,44,52,50,46,53,50,52,54,53,50,93,44,91,45,57,54,46,55,50,54,54,54,49,44,52,50,46,50,55,56,48,48,53,93,44,91,45,57,54,46,51,53,54,51,57,53,44,52,50,46,50,55,54,52,57,52,93,44,91,45,57,54,46,52,48,55,57,57,56,44,52,50,46,51,51,55,52,48,56,93,44,91,45,57,54,46,51,56,48,55,48,53,44,52,50,46,52,52,54,51,57,51,93,44,91,45,57,54,46,52,52,53,52,56,51,44,52,50,46,52,57,48,54,51,93,44,91,45,57,54,46,54,51,49,52,57,50,44,52,50,46,53,50,52,51,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,76,101,101,108,97,110,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,54,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,49,53,49,49,57,44,52,52,46,55,55,52,53,51,52,93,44,91,45,56,53,46,54,49,56,48,51,51,44,52,52,46,55,55,52,53,53,55,93,44,91,45,56,53,46,53,53,48,52,53,53,44,52,53,46,48,53,49,48,55,51,93,44,91,45,56,53,46,52,56,48,54,55,52,44,52,53,46,49,50,48,51,50,54,93,44,91,45,56,53,46,52,53,56,56,57,54,44,52,53,46,50,48,54,53,55,52,93,44,91,45,56,53,46,54,50,53,48,55,54,44,52,53,46,52,53,52,54,48,50,93,44,91,45,56,53,46,56,53,53,55,54,56,44,52,53,46,53,55,56,51,56,54,93,44,91,45,56,54,46,52,54,48,55,57,55,44,52,53,46,53,56,52,52,51,51,93,44,91,45,56,54,46,52,54,52,49,50,44,52,53,46,51,50,52,56,49,93,44,91,45,56,54,46,50,53,48,49,44,52,53,46,50,51,53,55,51,53,93,44,91,45,56,54,46,52,57,57,57,51,44,52,53,46,48,56,48,56,93,44,91,45,56,54,46,54,56,54,50,56,56,44,52,52,46,56,56,49,48,48,50,93,44,91,45,56,54,46,55,51,52,53,50,57,44,52,52,46,55,55,51,48,55,52,93,44,91,45,56,53,46,56,49,53,49,49,57,44,52,52,46,55,55,52,53,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,83,117,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,55,50,52,51,57,44,51,55,46,50,52,56,53,48,49,93,44,91,45,55,55,46,49,53,53,52,49,53,44,51,55,46,49,49,50,48,51,52,93,44,91,45,55,54,46,57,56,54,54,49,44,51,55,46,48,52,57,54,57,55,93,44,91,45,55,54,46,57,53,51,53,52,54,44,51,54,46,57,52,52,52,53,93,44,91,45,55,54,46,56,52,57,54,56,52,44,51,54,46,57,57,54,50,49,49,93,44,91,45,55,54,46,55,49,49,55,55,53,44,51,55,46,48,53,53,51,56,93,44,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,44,91,45,55,54,46,56,56,51,49,53,54,44,51,55,46,50,50,51,48,53,55,93,44,91,45,55,54,46,57,55,50,52,51,57,44,51,55,46,50,52,56,53,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,57,49,34,44,34,78,65,77,69,34,58,34,82,101,102,117,103,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,51,54,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,55,53,53,55,57,44,50,56,46,51,56,56,54,56,52,93,44,91,45,57,55,46,53,52,49,48,55,49,44,50,56,46,49,54,52,54,54,57,93,44,91,45,57,55,46,51,49,57,49,57,57,44,50,56,46,49,50,53,57,53,56,93,44,91,45,57,55,46,50,54,48,56,49,56,44,50,56,46,48,55,53,55,53,57,93,44,91,45,57,55,46,49,52,52,57,49,54,44,50,56,46,49,48,50,54,50,50,93,44,91,45,57,55,46,48,50,51,53,56,54,44,50,56,46,49,56,55,54,53,55,93,44,91,45,57,55,46,49,50,51,48,55,50,44,50,56,46,50,55,50,56,49,55,93,44,91,45,57,54,46,55,57,48,53,49,50,44,50,56,46,51,49,57,50,51,56,93,44,91,45,57,54,46,55,55,56,54,51,52,44,50,56,46,52,48,52,50,53,57,93,44,91,45,57,54,46,56,57,48,57,53,49,44,50,56,46,53,48,55,49,55,56,93,44,91,45,57,55,46,49,54,48,55,53,49,44,50,56,46,53,53,51,52,55,53,93,44,91,45,57,55,46,51,55,53,53,55,57,44,50,56,46,51,56,56,54,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,50,57,52,44,34,98,101,100,115,34,58,55,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,55,57,50,49,51,44,51,57,46,53,57,49,48,50,52,93,44,91,45,56,52,46,56,49,52,57,51,52,44,51,57,46,53,54,55,55,49,52,93,44,91,45,56,52,46,56,49,53,51,53,51,44,51,57,46,53,50,49,57,53,93,44,91,45,56,52,46,56,49,57,52,53,44,51,57,46,51,48,53,49,53,51,93,44,91,45,56,52,46,51,53,51,50,48,57,44,51,57,46,50,57,50,50,56,55,93,44,91,45,56,52,46,51,51,50,48,56,57,44,51,57,46,53,52,56,56,48,51,93,44,91,45,56,52,46,51,54,53,50,51,50,44,51,57,46,53,56,57,52,57,51,93,44,91,45,56,52,46,52,55,57,50,49,51,44,51,57,46,53,57,49,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,51,34,44,34,78,65,77,69,34,58,34,84,101,114,114,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,57,57,55,55,54,44,51,49,46,57,50,48,49,55,49,93,44,91,45,56,52,46,54,48,51,48,56,54,44,51,49,46,55,55,50,48,48,49,93,44,91,45,56,52,46,53,52,54,56,53,52,44,51,49,46,54,50,49,49,57,57,93,44,91,45,56,52,46,52,53,48,51,57,56,44,51,49,46,54,50,49,56,54,56,93,44,91,45,56,52,46,50,57,55,56,48,49,44,51,49,46,54,50,49,57,53,49,93,44,91,45,56,52,46,51,48,53,50,48,52,44,51,49,46,54,57,49,48,53,56,93,44,91,45,56,52,46,50,54,50,51,52,57,44,51,49,46,56,50,56,52,56,56,93,44,91,45,56,52,46,51,51,56,50,52,53,44,51,49,46,56,55,51,53,57,49,93,44,91,45,56,52,46,52,52,51,56,48,55,44,51,49,46,57,54,55,52,53,54,93,44,91,45,56,52,46,53,57,57,55,55,54,44,51,49,46,57,50,48,49,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,67,108,97,121,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,54,54,54,44,34,98,101,100,115,34,58,53,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,53,48,50,50,52,44,51,51,46,54,52,55,57,48,56,93,44,91,45,56,52,46,52,53,55,55,50,54,44,51,51,46,54,52,56,56,54,54,93,44,91,45,56,52,46,52,53,56,54,54,53,44,51,51,46,53,53,48,57,51,51,93,44,91,45,56,52,46,51,56,55,55,48,56,44,51,51,46,52,55,55,49,51,57,93,44,91,45,56,52,46,51,56,56,49,49,56,44,51,51,46,51,53,50,52,54,53,93,44,91,45,56,52,46,51,53,52,52,44,51,51,46,51,53,50,53,49,52,93,44,91,45,56,52,46,50,57,52,54,56,44,51,51,46,52,51,53,55,49,53,93,44,91,45,56,52,46,50,56,49,50,55,51,44,51,51,46,54,52,55,52,49,49,93,44,91,45,56,52,46,51,53,48,50,50,52,44,51,51,46,54,52,55,57,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,70,114,101,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,55,54,44,34,98,101,100,115,34,58,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,48,53,49,53,55,44,52,51,46,52,54,52,55,56,51,93,44,91,45,49,48,57,46,55,53,52,55,49,55,44,52,51,46,52,54,51,50,93,44,91,45,49,48,57,46,54,57,50,55,49,54,44,52,51,46,50,54,53,48,51,93,44,91,45,49,48,57,46,53,53,50,53,55,57,44,52,51,46,48,49,50,53,51,56,93,44,91,45,49,48,57,46,51,55,48,54,53,56,44,52,50,46,57,52,53,55,50,56,93,44,91,45,49,48,57,46,50,49,52,54,48,50,44,52,50,46,55,54,49,55,57,53,93,44,91,45,49,48,57,46,48,55,50,56,53,49,44,52,50,46,54,57,51,53,49,52,93,44,91,45,49,48,57,46,48,52,51,56,54,52,44,52,50,46,50,54,51,54,56,52,93,44,91,45,49,48,55,46,53,50,50,55,50,50,44,52,50,46,50,54,49,55,53,54,93,44,91,45,49,48,55,46,53,50,50,57,50,51,44,52,50,46,52,51,52,51,53,54,93,44,91,45,49,48,55,46,53,52,51,53,50,54,44,52,50,46,55,56,49,53,53,56,93,44,91,45,49,48,55,46,53,48,49,52,50,53,44,52,50,46,55,56,49,52,53,56,93,44,91,45,49,48,55,46,53,49,55,48,51,49,44,52,51,46,52,55,50,54,53,57,93,44,91,45,49,48,55,46,53,51,52,56,57,55,44,52,51,46,53,48,49,51,54,50,93,44,91,45,49,48,55,46,53,57,53,49,48,53,44,52,51,46,53,48,49,51,57,55,93,44,91,45,49,48,55,46,53,57,53,49,51,55,44,52,51,46,52,55,50,50,55,57,93,44,91,45,49,48,56,46,51,51,55,56,54,49,44,52,51,46,52,53,57,55,54,53,93,44,91,45,49,48,56,46,54,57,53,48,55,50,44,52,51,46,53,51,50,50,53,53,93,44,91,45,49,48,56,46,54,57,52,54,55,50,44,52,51,46,53,55,53,55,53,53,93,44,91,45,49,48,56,46,57,51,52,49,52,49,44,52,51,46,54,49,57,49,54,51,93,44,91,45,49,48,57,46,49,55,49,54,51,56,44,52,51,46,54,49,57,55,54,52,93,44,91,45,49,48,57,46,49,55,49,52,52,56,44,52,51,46,54,57,57,49,57,56,93,44,91,45,49,48,57,46,51,49,50,57,52,57,44,52,51,46,56,49,51,50,57,51,93,44,91,45,49,48,57,46,52,52,50,51,54,49,44,52,51,46,57,51,48,52,51,52,93,44,91,45,49,48,57,46,53,52,50,51,51,50,44,52,51,46,57,54,49,51,53,50,93,44,91,45,49,48,57,46,55,56,57,57,44,52,51,46,56,48,51,50,53,50,93,44,91,45,49,48,57,46,56,56,49,57,44,52,51,46,57,52,57,48,55,54,93,44,91,45,49,49,48,46,48,53,51,49,55,57,44,52,52,46,48,48,56,48,50,50,93,44,91,45,49,49,48,46,48,53,49,53,55,44,52,51,46,52,54,52,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,51,53,56,51,50,44,51,56,46,57,50,57,53,55,56,93,44,91,45,56,52,46,56,55,48,55,52,57,44,51,56,46,57,48,48,57,48,53,93,44,91,45,56,52,46,56,55,55,54,50,52,44,51,57,46,48,51,49,50,49,51,93,44,91,45,56,53,46,49,51,50,53,48,56,44,51,56,46,57,52,56,48,53,53,93,44,91,45,56,53,46,49,51,53,56,51,50,44,51,56,46,57,50,57,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,50,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,50,53,51,50,56,44,51,51,46,54,53,48,54,50,57,93,44,91,45,56,50,46,52,51,54,56,49,52,44,51,51,46,53,52,57,54,53,56,93,44,91,45,56,50,46,50,57,52,49,55,57,44,51,51,46,51,53,52,54,51,53,93,44,91,45,56,50,46,48,50,56,50,51,56,44,51,51,46,53,52,52,57,51,52,93,44,91,45,56,50,46,49,49,53,51,50,57,44,51,51,46,53,57,54,54,49,51,93,44,91,45,56,50,46,50,49,56,54,52,57,44,51,51,46,54,56,54,50,57,57,93,44,91,45,56,50,46,51,50,57,48,52,57,44,51,51,46,54,57,55,54,55,54,93,44,91,45,56,50,46,52,50,53,51,50,56,44,51,51,46,54,53,48,54,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,101,100,103,119,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,48,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,53,51,52,54,51,44,52,49,46,48,48,50,51,51,50,93,44,91,45,49,48,50,46,54,53,49,51,49,44,52,48,46,55,52,57,52,48,50,93,44,91,45,49,48,50,46,48,53,49,52,49,54,44,52,48,46,55,52,57,53,56,54,93,44,91,45,49,48,50,46,48,53,49,55,49,55,44,52,49,46,48,48,50,51,53,57,93,44,91,45,49,48,50,46,54,50,49,48,51,51,44,52,49,46,48,48,50,53,57,55,93,44,91,45,49,48,50,46,54,53,51,52,54,51,44,52,49,46,48,48,50,51,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,77,117,115,115,101,108,115,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,48,57,53,55,44,52,54,46,55,53,48,55,48,50,93,44,91,45,49,48,57,46,48,48,57,57,56,50,44,52,54,46,54,50,49,49,55,50,93,44,91,45,49,48,56,46,57,48,52,57,48,52,44,52,54,46,53,55,54,57,48,56,93,44,91,45,49,48,56,46,56,54,50,50,55,55,44,52,54,46,51,54,52,53,56,54,93,44,91,45,49,48,56,46,55,55,57,50,55,50,44,52,54,46,50,55,55,51,57,56,93,44,91,45,49,48,56,46,55,55,57,55,51,51,44,52,54,46,49,51,50,52,53,55,93,44,91,45,49,48,56,46,52,48,52,55,57,53,44,52,54,46,49,51,50,57,53,50,93,44,91,45,49,48,56,46,52,48,52,56,53,54,44,52,54,46,50,51,53,57,54,93,44,91,45,49,48,56,46,51,50,48,56,49,50,44,52,54,46,50,54,51,57,57,55,93,44,91,45,49,48,56,46,48,50,57,51,54,51,44,52,54,46,50,54,52,48,53,53,93,44,91,45,49,48,55,46,57,50,56,53,52,55,44,52,54,46,51,57,53,50,56,52,93,44,91,45,49,48,55,46,55,56,50,48,56,55,44,52,54,46,51,57,53,49,56,50,93,44,91,45,49,48,55,46,55,56,49,50,49,52,44,52,54,46,52,57,54,48,49,52,93,44,91,45,49,48,55,46,56,50,55,54,56,55,44,52,54,46,55,53,53,56,55,53,93,44,91,45,49,48,56,46,54,51,49,52,54,50,44,52,54,46,55,52,57,51,57,50,93,44,91,45,49,48,57,46,48,48,57,53,55,44,52,54,46,55,53,48,55,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,97,117,112,104,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,53,49,53,44,34,98,101,100,115,34,58,54,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,44,91,45,55,54,46,57,52,57,51,57,55,44,52,48,46,52,54,57,48,51,55,93,44,91,45,55,55,46,48,50,56,54,52,53,44,52,48,46,51,57,49,49,57,55,93,44,91,45,55,54,46,57,49,52,57,55,44,52,48,46,51,50,56,52,56,52,93,44,91,45,55,54,46,56,53,57,48,50,51,44,52,48,46,50,50,54,51,50,56,93,44,91,45,55,54,46,55,50,49,54,50,44,52,48,46,49,50,48,48,55,93,44,91,45,55,54,46,53,54,54,51,51,57,44,52,48,46,49,57,54,54,52,52,93,44,91,45,55,54,46,54,55,56,48,52,44,52,48,46,52,55,52,55,49,55,93,44,91,45,55,54,46,53,51,53,52,49,52,44,52,48,46,53,53,53,49,53,55,93,44,91,45,55,54,46,55,48,49,54,50,52,44,52,48,46,54,53,56,48,56,50,93,44,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,111,111,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,48,54,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,56,57,50,49,54,44,52,52,46,49,57,53,55,48,53,93,44,91,45,57,54,46,56,56,56,54,54,52,44,52,51,46,56,52,56,51,56,53,93,44,91,45,57,54,46,52,53,50,57,56,56,44,52,51,46,56,52,57,53,48,55,93,44,91,45,57,54,46,52,53,50,55,55,51,44,52,52,46,49,57,54,55,56,93,44,91,45,57,54,46,56,56,57,50,49,54,44,52,52,46,49,57,53,55,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,54,53,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,53,49,50,55,44,51,56,46,52,55,52,53,52,55,93,44,91,45,56,50,46,48,52,55,49,50,56,44,51,56,46,51,55,52,52,51,50,93,44,91,45,56,49,46,57,49,53,49,57,55,44,51,56,46,51,50,53,53,57,55,93,44,91,45,56,49,46,57,48,48,50,50,50,44,51,56,46,51,57,56,53,55,50,93,44,91,45,56,49,46,55,50,53,56,48,49,44,51,56,46,52,54,54,54,50,93,44,91,45,56,49,46,55,53,48,53,52,55,44,51,56,46,53,57,49,48,49,52,93,44,91,45,56,49,46,54,57,54,51,52,56,44,51,56,46,54,50,54,52,50,55,93,44,91,45,56,49,46,55,55,50,56,52,51,44,51,56,46,54,56,48,56,52,51,93,44,91,45,56,49,46,57,53,53,55,57,49,44,51,56,46,54,53,55,51,53,53,93,44,91,45,56,50,46,48,54,52,53,54,50,44,51,56,46,54,48,55,57,56,53,93,44,91,45,56,50,46,48,53,53,49,50,55,44,51,56,46,52,55,52,53,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,83,117,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,50,57,56,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,57,54,54,57,48,54,44,52,49,46,48,57,52,52,49,93,44,91,45,55,52,46,55,54,57,52,50,53,44,52,48,46,57,49,48,57,51,52,93,44,91,45,55,52,46,54,52,48,54,52,51,44,52,48,46,57,54,53,51,51,56,93,44,91,45,55,52,46,53,48,51,50,49,50,44,52,49,46,48,56,53,56,55,51,93,44,91,45,55,52,46,51,54,55,53,49,44,52,49,46,50,48,51,50,52,49,93,44,91,45,55,52,46,54,57,52,57,49,52,44,52,49,46,51,53,55,52,50,51,93,44,91,45,55,52,46,56,51,48,48,53,55,44,52,49,46,50,56,55,50,93,44,91,45,55,52,46,56,56,50,49,51,57,44,52,49,46,49,56,48,56,51,54,93,44,91,45,55,52,46,57,57,49,55,49,56,44,52,49,46,48,57,50,50,56,52,93,44,91,45,55,52,46,57,54,54,57,48,54,44,52,49,46,48,57,52,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,101,99,97,116,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,56,49,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,51,56,56,50,53,44,52,48,46,48,48,50,49,49,54,93,44,91,45,49,48,48,46,55,52,48,56,55,51,44,51,57,46,53,54,56,48,52,51,93,44,91,45,49,48,48,46,55,50,48,50,49,51,44,51,57,46,53,54,56,48,51,52,93,44,91,45,49,48,48,46,49,56,48,51,53,49,44,51,57,46,53,54,54,56,57,93,44,91,45,49,48,48,46,49,55,55,55,57,52,44,52,48,46,48,48,49,54,48,50,93,44,91,45,49,48,48,46,49,57,51,53,57,57,44,52,48,46,48,48,49,54,54,51,93,44,91,45,49,48,48,46,55,51,56,56,50,53,44,52,48,46,48,48,50,49,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,52,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,55,57,49,52,57,55,44,51,56,46,50,48,53,49,51,93,44,91,45,56,54,46,55,54,55,51,53,50,44,51,56,46,48,53,54,57,50,52,93,44,91,45,56,54,46,56,49,52,55,52,52,44,51,55,46,57,57,56,55,48,52,93,44,91,45,56,54,46,54,53,53,50,55,50,44,51,55,46,56,52,50,53,50,49,93,44,91,45,56,54,46,53,48,55,48,56,57,44,51,55,46,57,50,57,57,49,55,93,44,91,45,56,54,46,52,57,48,56,53,52,44,51,56,46,48,52,53,55,51,53,93,44,91,45,56,54,46,52,54,49,48,50,50,44,51,56,46,49,50,49,48,56,55,93,44,91,45,56,54,46,54,55,57,53,49,49,44,51,56,46,50,54,51,48,56,54,93,44,91,45,56,54,46,55,57,49,52,57,55,44,51,56,46,50,48,53,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,53,54,44,34,98,101,100,115,34,58,49,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,52,53,54,52,53,44,51,52,46,53,56,51,50,51,52,93,44,91,45,56,57,46,50,52,54,49,51,51,44,51,52,46,52,57,53,54,51,51,93,44,91,45,56,57,46,50,52,54,51,51,57,44,51,52,46,51,55,57,51,52,52,93,44,91,45,56,56,46,56,50,52,57,54,54,44,51,52,46,51,54,52,55,53,57,93,44,91,45,56,56,46,55,51,54,52,54,53,44,51,52,46,53,48,56,57,49,93,44,91,45,56,56,46,55,51,53,52,52,44,51,52,46,53,57,54,52,56,51,93,44,91,45,56,57,46,48,56,56,52,56,56,44,51,52,46,53,57,56,50,52,55,93,44,91,45,56,57,46,50,52,53,54,52,53,44,51,52,46,53,56,51,50,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,50,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,57,56,53,53,44,52,50,46,57,57,56,53,53,57,93,44,91,45,57,57,46,50,53,52,52,53,53,44,52,50,46,57,57,56,48,55,52,93,44,91,45,57,57,46,50,53,55,48,51,57,44,52,50,46,56,48,52,50,57,54,93,44,91,45,57,56,46,57,53,52,54,51,52,44,52,50,46,56,57,52,48,55,55,93,44,91,45,57,56,46,55,49,48,48,52,56,44,52,50,46,56,48,51,52,56,93,44,91,45,57,56,46,51,48,53,49,52,57,44,52,50,46,55,54,49,50,48,55,93,44,91,45,57,56,46,51,48,57,55,55,49,44,52,50,46,56,56,50,54,48,53,93,44,91,45,57,56,46,52,57,56,53,53,44,52,50,46,57,57,56,53,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,105,108,108,101,32,76,97,99,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,50,56,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,49,48,51,54,50,44,52,54,46,49,53,54,53,56,53,93,44,91,45,57,51,46,56,49,48,51,50,49,44,52,53,46,57,56,51,48,56,93,44,91,45,57,51,46,55,54,51,57,52,56,44,52,53,46,56,50,50,49,52,51,93,44,91,45,57,51,46,55,53,57,52,51,53,44,52,53,46,53,53,57,54,52,54,93,44,91,45,57,51,46,53,49,48,55,48,52,44,52,53,46,53,53,56,55,55,50,93,44,91,45,57,51,46,53,49,51,54,56,51,44,52,53,46,55,51,52,51,49,56,93,44,91,45,57,51,46,53,49,56,48,56,44,52,53,46,57,56,49,55,56,57,93,44,91,45,57,51,46,52,51,50,52,57,50,44,52,53,46,57,56,49,51,57,56,93,44,91,45,57,51,46,52,51,49,56,51,49,44,52,54,46,49,53,51,57,57,49,93,44,91,45,57,51,46,52,51,48,54,52,56,44,52,54,46,50,52,54,52,49,50,93,44,91,45,57,51,46,55,57,54,50,56,49,44,52,54,46,50,52,51,49,57,57,93,44,91,45,57,51,46,56,49,48,51,54,50,44,52,54,46,49,53,54,53,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,87,97,108,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,50,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,49,56,48,51,54,44,52,56,46,53,52,51,55,55,51,93,44,91,45,57,56,46,50,57,50,49,56,52,44,52,56,46,49,57,53,49,55,55,93,44,91,45,57,55,46,57,48,51,51,49,51,44,52,56,46,49,57,52,56,52,53,93,44,91,45,57,55,46,49,52,49,50,50,49,44,52,56,46,49,57,51,55,49,50,93,44,91,45,57,55,46,49,49,54,53,55,44,52,56,46,50,55,57,54,54,49,93,44,91,45,57,55,46,49,54,49,51,57,51,44,52,56,46,53,52,50,51,52,56,93,44,91,45,57,55,46,57,50,55,48,54,57,44,52,56,46,53,52,51,49,50,52,93,44,91,45,57,56,46,51,49,56,48,51,54,44,52,56,46,53,52,51,55,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,55,54,54,51,57,44,51,57,46,55,55,48,57,54,93,44,91,45,56,50,46,48,50,52,50,49,57,44,51,57,46,55,50,52,54,56,54,93,44,91,45,56,50,46,48,52,55,53,50,56,44,51,57,46,53,53,48,56,50,53,93,44,91,45,56,50,46,48,53,53,55,55,57,44,51,57,46,52,54,48,48,53,51,93,44,91,45,56,49,46,56,52,52,56,54,51,44,51,57,46,52,53,48,50,49,54,93,44,91,45,56,49,46,55,48,56,53,50,55,44,51,57,46,52,56,48,55,55,53,93,44,91,45,56,49,46,54,56,56,56,56,52,44,51,57,46,53,57,48,53,49,49,93,44,91,45,56,49,46,53,56,56,49,56,53,44,51,57,46,53,56,54,57,55,51,93,44,91,45,56,49,46,54,57,55,52,52,50,44,51,57,46,55,53,53,53,55,50,93,44,91,45,56,50,46,48,55,54,54,51,57,44,51,57,46,55,55,48,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,80,111,114,116,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,54,52,52,44,34,98,101,100,115,34,58,51,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,57,49,54,57,52,44,52,49,46,51,52,56,50,55,50,93,44,91,45,56,49,46,51,57,51,50,52,57,44,52,48,46,57,56,56,53,51,49,93,44,91,45,56,49,46,48,56,54,51,49,50,44,52,48,46,57,56,56,48,51,49,93,44,91,45,56,49,46,48,48,49,54,57,53,44,52,48,46,57,56,55,55,56,51,93,44,91,45,56,49,46,48,48,50,50,57,44,52,49,46,49,51,52,49,56,57,93,44,91,45,56,49,46,48,48,51,51,49,57,44,52,49,46,51,52,55,56,54,93,44,91,45,56,49,46,51,57,49,54,57,52,44,52,49,46,51,52,56,50,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,85,105,110,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,48,57,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,48,52,54,55,54,54,44,52,49,46,50,53,49,54,50,55,93,44,91,45,49,49,49,46,48,52,54,56,49,53,44,52,48,46,57,57,55,56,55,53,93,44,91,45,49,49,48,46,48,52,56,52,56,51,44,52,48,46,57,57,55,50,57,53,93,44,91,45,49,49,48,46,48,52,56,44,52,49,46,53,55,56,48,49,53,93,44,91,45,49,49,49,46,48,52,53,56,51,55,44,52,49,46,53,55,57,56,52,53,93,44,91,45,49,49,49,46,48,52,54,55,54,54,44,52,49,46,50,53,49,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,72,117,109,98,111,108,100,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,48,52,44,34,98,101,100,115,34,58,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,51,48,57,53,57,56,44,52,48,46,57,54,48,51,55,56,93,44,91,45,49,49,56,46,55,56,54,55,48,53,44,52,48,46,57,54,48,56,53,93,44,91,45,49,49,56,46,55,56,54,55,51,56,44,52,48,46,56,53,53,57,50,57,93,44,91,45,49,49,55,46,54,52,52,50,50,44,52,48,46,56,53,55,56,50,52,93,44,91,45,49,49,55,46,54,52,52,51,57,57,44,52,48,46,54,56,52,51,52,51,93,44,91,45,49,49,55,46,51,48,57,52,52,49,44,52,48,46,54,56,51,53,51,55,93,44,91,45,49,49,55,46,51,48,48,53,57,55,44,52,48,46,53,50,54,49,51,54,93,44,91,45,49,49,55,46,50,52,54,55,56,56,44,52,48,46,54,52,50,52,52,53,93,44,91,45,49,49,55,46,48,49,56,54,54,52,44,52,48,46,54,52,51,48,51,53,93,44,91,45,49,49,55,46,48,49,56,52,49,57,44,52,49,46,48,48,48,50,53,52,93,44,91,45,49,49,55,46,48,49,56,50,48,52,44,52,49,46,57,57,57,55,49,53,93,44,91,45,49,49,55,46,48,50,54,50,44,52,50,46,48,48,48,49,57,53,93,44,91,45,49,49,56,46,49,57,55,51,55,49,44,52,49,46,57,57,55,51,52,52,93,44,91,45,49,49,57,46,51,50,52,49,56,52,44,52,49,46,57,57,51,57,50,51,93,44,91,45,49,49,57,46,51,50,57,55,57,49,44,52,48,46,57,54,48,51,57,52,93,44,91,45,49,49,57,46,51,48,57,53,57,56,44,52,48,46,57,54,48,51,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,55,34,44,34,78,65,77,69,34,58,34,74,105,109,32,72,111,103,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,53,52,54,54,57,44,50,55,46,50,54,57,51,57,55,93,44,91,45,57,56,46,57,53,52,50,51,44,50,54,46,55,56,53,54,57,52,93,44,91,45,57,56,46,52,50,50,54,49,54,44,50,54,46,55,56,51,53,51,53,93,44,91,45,57,56,46,52,49,55,56,56,51,44,50,55,46,48,53,53,50,56,53,93,44,91,45,57,56,46,52,54,54,53,52,50,44,50,55,46,48,53,52,55,49,49,93,44,91,45,57,56,46,53,50,51,50,56,52,44,50,55,46,50,54,53,49,53,93,44,91,45,57,56,46,53,53,50,54,49,55,44,50,55,46,51,53,57,49,48,49,93,44,91,45,57,56,46,55,57,56,51,50,51,44,50,55,46,51,53,52,48,50,57,93,44,91,45,57,56,46,55,57,56,48,56,55,44,50,55,46,50,54,56,48,49,50,93,44,91,45,57,56,46,57,53,52,54,54,57,44,50,55,46,50,54,57,51,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,101,121,101,110,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,54,53,55,49,44,51,57,46,48,52,55,48,51,56,93,44,91,45,49,48,51,46,49,54,51,48,50,53,44,51,57,46,48,51,55,54,49,93,44,91,45,49,48,51,46,49,55,50,57,52,51,44,51,56,46,54,49,50,52,53,93,44,91,45,49,48,50,46,48,52,53,48,56,50,44,51,56,46,54,49,53,49,55,50,93,44,91,45,49,48,50,46,48,52,53,50,49,50,44,51,56,46,54,57,55,53,54,55,93,44,91,45,49,48,50,46,48,52,54,53,55,49,44,51,57,46,48,52,55,48,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,108,97,99,107,97,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,55,56,56,44,34,98,101,100,115,34,58,54,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,55,52,51,55,50,49,44,52,53,46,52,51,51,50,57,52,93,44,91,45,49,50,50,46,55,52,51,55,52,49,44,52,53,46,51,51,50,48,54,55,93,44,91,45,49,50,50,46,56,54,55,56,57,49,44,52,53,46,51,49,55,51,52,53,93,44,91,45,49,50,50,46,56,52,57,57,50,53,44,52,53,46,50,53,57,54,57,55,93,44,91,45,49,50,50,46,55,52,57,55,57,51,44,52,53,46,49,57,53,50,52,50,93,44,91,45,49,50,50,46,55,56,56,53,53,52,44,52,53,46,49,51,48,49,55,54,93,44,91,45,49,50,50,46,53,57,53,53,50,51,44,52,53,46,48,49,57,54,55,57,93,44,91,45,49,50,50,46,53,48,56,49,48,54,44,52,52,46,57,49,57,53,57,57,93,44,91,45,49,50,50,46,52,48,49,48,50,49,44,52,52,46,56,56,53,55,50,93,44,91,45,49,50,49,46,55,51,52,50,50,51,44,52,52,46,56,56,53,55,50,93,44,91,45,49,50,49,46,56,48,53,54,54,55,44,52,53,46,48,48,54,49,50,52,93,44,91,45,49,50,49,46,54,53,50,48,49,56,44,52,53,46,48,56,54,55,48,54,93,44,91,45,49,50,49,46,55,52,56,52,56,53,44,52,53,46,50,48,52,52,52,93,44,91,45,49,50,49,46,54,57,54,52,55,57,44,52,53,46,50,53,55,57,50,93,44,91,45,49,50,49,46,55,48,48,52,55,51,44,52,53,46,51,55,56,53,51,49,93,44,91,45,49,50,49,46,56,49,57,53,56,55,44,52,53,46,52,54,49,54,55,53,93,44,91,45,49,50,50,46,54,52,49,53,56,44,52,53,46,52,54,49,52,56,50,93,44,91,45,49,50,50,46,55,52,51,55,50,49,44,52,53,46,52,51,51,50,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,54,51,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,53,52,53,54,52,44,51,52,46,55,50,56,57,54,50,93,44,91,45,57,52,46,52,54,49,49,52,57,44,51,52,46,53,48,55,52,53,55,93,44,91,45,57,52,46,52,55,48,51,51,49,44,51,52,46,49,57,48,49,56,51,93,44,91,45,57,52,46,50,52,51,55,51,57,44,51,52,46,49,57,50,53,48,49,93,44,91,45,57,52,46,50,53,52,54,54,56,44,51,52,46,51,53,53,52,56,49,93,44,91,45,57,51,46,57,51,53,51,55,49,44,51,52,46,51,53,48,48,57,55,93,44,91,45,57,51,46,57,51,48,53,48,57,44,51,52,46,54,54,53,54,48,56,93,44,91,45,57,52,46,48,49,56,49,54,56,44,51,52,46,54,57,50,52,54,57,93,44,91,45,57,52,46,51,49,55,54,53,57,44,51,52,46,54,57,55,52,48,56,93,44,91,45,57,52,46,52,53,52,53,54,52,44,51,52,46,55,50,56,57,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,56,48,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,44,91,45,56,52,46,49,50,50,51,52,55,44,51,50,46,53,48,53,57,50,49,93,44,91,45,56,52,46,50,53,52,54,49,51,44,51,50,46,51,55,50,48,53,51,93,44,91,45,56,52,46,49,56,49,54,53,55,44,51,50,46,50,50,57,55,48,51,93,44,91,45,56,52,46,48,50,55,54,44,51,50,46,49,55,49,49,54,53,93,44,91,45,56,51,46,57,53,56,56,49,55,44,51,50,46,50,53,50,49,48,53,93,44,91,45,56,51,46,56,52,56,51,55,57,44,51,50,46,50,57,48,57,55,93,44,91,45,56,51,46,56,52,54,54,55,54,44,51,50,46,52,54,56,53,49,52,93,44,91,45,56,52,46,48,49,56,49,52,55,44,51,50,46,53,48,54,52,48,54,93,44,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,93,93,44,91,91,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,44,91,45,56,52,46,48,48,56,52,57,44,51,50,46,53,50,49,55,54,57,93,44,91,45,56,52,46,48,48,51,51,54,51,44,51,50,46,53,50,57,57,50,55,93,44,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,50,54,48,51,49,44,52,48,46,55,51,54,56,56,53,93,44,91,45,56,55,46,53,50,54,51,54,54,44,52,48,46,52,57,49,50,51,55,93,44,91,45,56,55,46,53,50,54,53,56,57,44,52,48,46,52,55,54,56,55,54,93,44,91,45,56,55,46,48,57,51,54,55,54,44,52,48,46,52,55,53,55,52,53,93,44,91,45,56,55,46,48,57,53,51,53,55,44,52,48,46,53,54,50,56,57,53,93,44,91,45,56,55,46,48,57,56,51,57,44,52,48,46,55,51,54,53,52,49,93,44,91,45,56,55,46,50,54,55,50,57,56,44,52,48,46,55,51,54,53,56,50,93,44,91,45,56,55,46,53,50,54,48,51,49,44,52,48,46,55,51,54,56,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,48,55,55,53,51,44,51,54,46,49,53,54,50,57,51,93,44,91,45,56,52,46,55,50,48,55,50,55,44,51,53,46,57,57,52,57,49,52,93,44,91,45,56,52,46,54,56,48,54,51,51,44,51,53,46,57,48,56,52,53,52,93,44,91,45,56,52,46,52,52,54,48,53,52,44,51,53,46,57,56,53,57,56,52,93,44,91,45,56,52,46,51,52,49,56,49,50,44,51,54,46,48,52,56,57,55,55,93,44,91,45,56,52,46,52,52,49,48,51,52,44,51,54,46,49,54,51,52,55,56,93,44,91,45,56,52,46,53,54,56,55,52,49,44,51,54,46,50,51,55,48,55,55,93,44,91,45,56,52,46,55,48,48,55,56,53,44,51,54,46,51,55,48,56,50,52,93,44,91,45,56,52,46,56,54,54,49,48,52,44,51,54,46,50,57,50,57,50,56,93,44,91,45,56,52,46,57,48,55,55,53,51,44,51,54,46,49,53,54,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,48,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,48,53,55,56,50,44,52,51,46,52,57,57,51,49,57,93,44,91,45,57,56,46,54,56,48,54,56,56,44,52,51,46,51,55,51,49,53,55,93,44,91,45,57,56,46,49,48,57,52,57,50,44,52,51,46,49,57,54,56,51,56,93,44,91,45,57,56,46,49,49,52,55,53,56,44,52,51,46,52,57,56,50,57,55,93,44,91,45,57,56,46,51,50,48,53,57,53,44,52,51,46,52,57,56,54,53,49,93,44,91,45,57,56,46,55,48,53,55,56,50,44,52,51,46,52,57,57,51,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,87,111,114,99,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,53,54,52,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,54,49,50,55,54,52,44,51,56,46,50,55,56,54,50,54,93,44,91,45,55,53,46,53,52,53,56,57,56,44,51,56,46,49,55,56,55,52,93,44,91,45,55,53,46,53,52,53,56,48,54,44,51,56,46,48,56,54,55,52,57,93,44,91,45,55,53,46,54,50,52,51,52,51,44,51,55,46,57,57,52,50,48,56,93,44,91,45,55,53,46,49,54,54,52,51,53,44,51,56,46,48,50,55,56,51,52,93,44,91,45,55,52,46,57,57,57,54,50,53,44,51,56,46,51,55,49,54,54,56,93,44,91,45,55,52,46,57,56,54,50,56,50,44,51,56,46,52,53,49,54,51,50,93,44,91,45,55,53,46,51,52,49,50,57,49,44,51,56,46,52,53,50,48,51,52,93,44,91,45,55,53,46,51,48,55,48,49,49,44,51,56,46,51,53,52,55,54,93,44,91,45,55,53,46,51,54,52,54,52,49,44,51,56,46,50,57,48,51,53,57,93,44,91,45,55,53,46,54,49,50,55,54,52,44,51,56,46,50,55,56,54,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,87,97,98,97,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,53,52,54,55,53,44,51,56,46,53,55,48,50,51,93,44,91,45,56,55,46,57,52,51,48,51,52,44,51,56,46,52,52,57,50,49,54,93,44,91,45,56,55,46,57,57,48,54,50,56,44,51,56,46,50,53,57,54,50,57,93,44,91,45,56,55,46,57,56,55,57,49,49,44,51,56,46,50,53,54,57,53,55,93,44,91,45,56,55,46,56,53,49,49,51,44,51,56,46,50,55,53,49,50,93,44,91,45,56,55,46,55,52,51,54,57,49,44,51,56,46,52,49,52,51,56,55,93,44,91,45,56,55,46,54,53,49,53,50,57,44,51,56,46,53,54,56,49,54,54,93,44,91,45,56,55,46,57,49,50,50,56,54,44,51,56,46,53,55,48,49,48,52,93,44,91,45,56,55,46,57,53,52,54,55,53,44,51,56,46,53,55,48,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,117,110,116,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,55,56,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,52,51,56,52,49,44,52,49,46,48,48,50,51,48,53,93,44,91,45,56,53,46,54,51,56,53,56,55,44,52,48,46,54,53,51,49,50,57,93,44,91,45,56,53,46,52,52,56,56,50,53,44,52,48,46,54,53,51,54,48,55,93,44,91,45,56,53,46,51,51,52,54,54,55,44,52,48,46,54,53,52,52,49,51,93,44,91,45,56,53,46,51,51,54,48,51,44,52,48,46,57,49,55,48,56,50,93,44,91,45,56,53,46,51,51,53,54,52,51,44,52,49,46,48,48,53,50,53,93,44,91,45,56,53,46,54,52,51,56,52,49,44,52,49,46,48,48,50,51,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,57,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,53,49,55,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,56,48,53,51,57,44,51,56,46,52,55,51,48,51,57,93,44,91,45,56,52,46,55,52,48,53,57,52,44,51,56,46,51,53,50,52,49,53,93,44,91,45,56,52,46,55,50,53,49,54,56,44,51,56,46,49,57,53,52,50,54,93,44,91,45,56,52,46,54,50,53,48,55,57,44,51,56,46,49,49,54,51,57,55,93,44,91,45,56,52,46,52,48,49,56,52,55,44,51,56,46,50,48,55,56,56,57,93,44,91,45,56,52,46,52,52,50,54,54,49,44,51,56,46,50,56,51,50,51,54,93,44,91,45,56,52,46,52,53,57,57,48,54,44,51,56,46,51,55,56,57,57,53,93,44,91,45,56,52,46,53,53,55,51,55,53,44,51,56,46,52,57,50,57,49,55,93,44,91,45,56,52,46,53,56,48,53,51,57,44,51,56,46,52,55,51,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,68,101,99,97,116,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,44,91,45,57,52,46,48,49,52,56,48,51,44,52,48,46,56,57,55,48,51,49,93,44,91,45,57,52,46,48,49,53,52,57,50,44,52,48,46,53,55,51,57,49,52,93,44,91,45,57,51,46,55,55,52,51,52,52,44,52,48,46,53,55,55,53,52,56,93,44,91,45,57,51,46,53,53,54,56,57,57,44,52,48,46,53,56,48,50,51,53,93,44,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,87,97,98,97,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,51,49,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,52,54,52,51,54,44,52,48,46,57,57,57,49,57,53,93,44,91,45,56,53,46,57,51,57,53,50,53,44,52,48,46,54,53,48,57,57,49,93,44,91,45,56,53,46,56,54,52,55,57,49,44,52,48,46,54,53,49,54,57,51,93,44,91,45,56,53,46,54,51,56,53,56,55,44,52,48,46,54,53,51,49,50,57,93,44,91,45,56,53,46,54,52,51,56,52,49,44,52,49,46,48,48,50,51,48,53,93,44,91,45,56,53,46,54,56,52,49,56,49,44,52,49,46,48,52,54,55,49,54,93,44,91,45,56,53,46,57,52,53,53,54,49,44,52,49,46,48,52,50,56,55,54,93,44,91,45,56,53,46,57,52,54,52,51,54,44,52,48,46,57,57,57,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,48,48,49,54,44,34,98,101,100,115,34,58,49,54,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,57,50,48,57,52,44,52,49,46,50,54,52,50,48,57,93,44,91,45,56,53,46,51,48,55,55,56,49,44,52,49,46,50,54,52,49,53,56,93,44,91,45,56,53,46,51,51,53,54,52,51,44,52,49,46,48,48,53,50,53,93,44,91,45,56,53,46,51,51,54,48,51,44,52,48,46,57,49,55,48,56,50,93,44,91,45,56,53,46,48,55,51,56,54,49,44,52,48,46,57,49,55,56,50,51,93,44,91,45,56,52,46,56,48,50,57,50,50,44,52,48,46,57,50,50,53,54,56,93,44,91,45,56,52,46,56,48,51,50,53,49,44,52,48,46,57,56,57,51,57,52,93,44,91,45,56,52,46,56,48,51,53,52,52,44,52,49,46,50,53,50,53,54,50,93,44,91,45,56,52,46,56,48,51,53,56,57,44,52,49,46,50,55,49,50,55,51,93,44,91,45,56,53,46,49,57,50,48,57,52,44,52,49,46,50,54,52,50,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,53,57,53,44,34,98,101,100,115,34,58,49,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,53,57,52,53,49,44,52,49,46,52,55,57,49,53,52,93,44,91,45,56,54,46,52,54,55,49,48,56,44,52,49,46,52,55,54,52,53,57,93,44,91,45,56,54,46,52,54,54,54,48,51,44,52,49,46,52,51,50,57,54,56,93,44,91,45,56,54,46,52,54,55,48,52,54,44,52,49,46,49,55,49,52,52,50,93,44,91,45,56,54,46,48,55,55,53,53,49,44,52,49,46,49,55,50,56,54,56,93,44,91,45,56,54,46,48,53,57,50,51,44,52,49,46,52,51,53,56,49,50,93,44,91,45,56,54,46,48,53,57,52,53,49,44,52,49,46,52,55,57,49,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,84,104,111,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,56,52,54,49,50,57,44,52,50,46,48,56,56,49,54,54,93,44,91,45,49,48,48,46,56,52,50,52,53,57,44,52,49,46,55,52,48,52,48,52,93,44,91,45,49,48,48,46,55,49,49,55,49,49,44,52,49,46,55,51,57,55,54,49,93,44,91,45,49,48,48,46,50,54,53,52,55,52,44,52,49,46,55,51,57,56,53,54,93,44,91,45,49,48,48,46,50,54,55,54,50,50,44,52,50,46,48,56,54,49,52,55,93,44,91,45,49,48,48,46,56,52,54,49,50,57,44,52,50,46,48,56,56,49,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,83,105,111,117,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,49,51,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,50,53,54,57,49,44,52,54,46,50,56,52,52,49,52,93,44,91,45,49,48,49,46,51,48,51,53,49,52,44,52,54,46,49,48,53,53,48,51,93,44,91,45,49,48,49,46,52,57,54,52,50,51,44,52,54,46,48,50,51,55,50,56,93,44,91,45,49,48,49,46,54,55,55,54,49,50,44,52,54,46,48,49,50,56,55,49,93,44,91,45,49,48,49,46,56,54,49,56,50,44,52,54,46,48,54,52,55,57,52,93,44,91,45,49,48,49,46,57,57,56,51,50,55,44,52,54,46,48,53,51,50,55,52,93,44,91,45,49,48,49,46,57,57,56,55,51,51,44,52,53,46,57,52,52,54,53,51,93,44,91,45,49,48,48,46,53,49,49,57,52,57,44,52,53,46,57,52,51,55,49,50,93,44,91,45,49,48,48,46,54,50,57,49,52,53,44,52,54,46,49,52,53,54,48,56,93,44,91,45,49,48,48,46,53,53,56,53,52,57,44,52,54,46,50,52,57,57,57,51,93,44,91,45,49,48,48,46,53,57,48,49,57,57,44,52,54,46,52,50,55,56,57,52,93,44,91,45,49,48,48,46,56,49,52,56,55,51,44,52,54,46,51,56,52,55,48,49,93,44,91,45,49,48,48,46,57,49,56,57,53,44,52,54,46,51,57,52,57,56,51,93,44,91,45,49,48,49,46,48,50,53,54,57,49,44,52,54,46,50,56,52,52,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,68,105,109,109,105,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,48,57,48,50,49,44,50,56,46,54,52,48,53,54,54,93,44,91,45,49,48,48,46,49,49,52,51,51,54,44,50,56,46,54,52,56,49,50,50,93,44,91,45,49,48,48,46,49,49,51,55,49,57,44,50,56,46,49,57,55,56,49,57,93,44,91,45,57,57,46,51,57,52,49,55,55,44,50,56,46,50,48,52,54,50,55,93,44,91,45,57,57,46,51,57,53,55,51,54,44,50,56,46,54,52,48,55,56,52,93,44,91,45,57,57,46,52,48,57,48,50,49,44,50,56,46,54,52,48,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,70,105,108,108,109,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,56,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,51,48,52,50,52,44,52,51,46,56,52,54,57,51,53,93,44,91,45,57,50,46,48,55,57,50,57,50,44,52,51,46,56,52,55,48,56,93,44,91,45,57,50,46,52,52,56,57,54,53,44,52,51,46,56,51,52,49,48,53,93,44,91,45,57,50,46,52,52,56,57,52,56,44,52,51,46,53,48,48,52,53,57,93,44,91,45,57,50,46,48,55,57,56,48,50,44,52,51,46,53,48,48,54,50,49,93,44,91,45,57,49,46,55,51,48,50,49,55,44,52,51,46,53,48,48,56,48,54,93,44,91,45,57,49,46,55,51,48,52,50,52,44,52,51,46,56,52,54,57,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,51,50,54,44,34,98,101,100,115,34,58,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,57,56,50,49,53,44,51,52,46,56,50,48,55,52,54,93,44,91,45,56,49,46,52,55,56,52,53,52,44,51,52,46,56,50,49,53,48,57,93,44,91,45,56,49,46,52,50,50,55,48,54,44,51,52,46,53,55,50,48,50,57,93,44,91,45,56,48,46,56,55,55,52,57,49,44,51,52,46,53,52,51,49,52,54,93,44,91,45,56,48,46,56,54,48,50,55,52,44,51,52,46,54,57,53,56,52,55,93,44,91,45,56,48,46,56,57,56,50,49,53,44,51,52,46,56,50,48,55,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,97,99,32,113,117,105,32,80,97,114,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,55,51,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,53,50,57,52,55,44,52,53,46,50,54,56,57,50,53,93,44,91,45,57,54,46,52,53,50,48,51,53,44,52,52,46,57,55,55,54,53,93,44,91,45,57,54,46,52,53,49,52,54,50,44,52,52,46,56,48,53,53,55,93,44,91,45,57,53,46,56,52,57,48,48,57,44,52,52,46,56,48,53,51,52,55,93,44,91,45,57,53,46,56,52,55,52,53,50,44,52,52,46,56,57,49,55,57,57,93,44,91,45,57,53,46,55,51,54,54,57,54,44,52,52,46,57,51,54,48,52,93,44,91,45,57,54,46,48,51,54,54,57,56,44,52,53,46,49,53,50,50,48,54,93,44,91,45,57,54,46,49,48,51,54,49,52,44,52,53,46,49,55,54,54,55,53,93,44,91,45,57,54,46,50,56,51,49,57,53,44,52,53,46,50,52,54,51,57,49,93,44,91,45,57,54,46,52,53,50,57,52,55,44,52,53,46,50,54,56,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,97,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,51,51,54,44,34,98,101,100,115,34,58,49,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,49,53,57,49,56,52,44,52,49,46,57,57,56,51,56,50,93,44,91,45,49,49,50,46,48,51,48,52,56,51,44,52,49,46,56,49,48,48,52,55,93,44,91,45,49,49,50,46,48,53,49,55,51,55,44,52,49,46,54,57,57,53,53,50,93,44,91,45,49,49,49,46,57,57,54,54,48,54,44,52,49,46,53,53,55,53,55,50,93,44,91,45,49,49,49,46,57,49,54,53,51,52,44,52,49,46,53,51,56,53,53,52,93,44,91,45,49,49,49,46,56,56,53,52,52,51,44,52,49,46,52,50,54,51,55,52,93,44,91,45,49,49,49,46,55,50,54,49,56,49,44,52,49,46,51,55,53,57,56,54,93,44,91,45,49,49,49,46,54,54,54,53,55,54,44,52,49,46,52,50,56,56,51,93,44,91,45,49,49,49,46,53,49,48,56,51,57,44,52,49,46,52,50,51,49,93,44,91,45,49,49,49,46,52,52,50,57,52,57,44,52,49,46,53,51,49,51,54,53,93,44,91,45,49,49,49,46,52,50,54,56,53,53,44,52,49,46,54,55,55,56,54,52,93,44,91,45,49,49,49,46,53,48,55,56,48,54,44,52,49,46,57,57,57,53,53,50,93,44,91,45,49,49,50,46,49,48,57,52,52,52,44,52,49,46,57,57,55,55,57,52,93,44,91,45,49,49,50,46,49,53,57,49,56,52,44,52,49,46,57,57,56,51,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,80,105,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,51,50,48,52,51,44,52,52,46,55,49,52,51,52,53,93,44,91,45,57,50,46,54,50,50,53,51,55,44,52,52,46,54,49,54,48,53,52,93,44,91,45,57,50,46,51,49,54,49,54,57,44,52,52,46,53,52,49,48,48,57,93,44,91,45,57,50,46,49,51,53,51,44,52,52,46,53,51,57,53,56,93,44,91,45,57,50,46,49,51,53,50,48,50,44,52,52,46,54,56,52,51,55,52,93,44,91,45,57,50,46,49,51,54,51,52,56,44,52,52,46,56,53,55,56,52,56,93,44,91,45,57,50,46,55,54,57,53,48,49,44,52,52,46,56,54,50,48,48,49,93,44,91,45,57,50,46,56,48,50,48,49,55,44,52,52,46,55,52,53,54,55,51,93,44,91,45,57,50,46,55,51,50,48,52,51,44,52,52,46,55,49,52,51,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,56,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,51,49,54,57,56,44,51,49,46,48,49,48,55,49,52,93,44,91,45,56,50,46,52,49,53,54,48,51,44,51,49,46,48,49,51,53,57,93,44,91,45,56,50,46,52,50,48,52,52,50,44,51,48,46,55,57,53,50,50,57,93,44,91,45,56,50,46,49,52,57,56,55,50,44,51,48,46,55,56,52,51,51,54,93,44,91,45,56,50,46,50,49,52,54,55,55,44,51,48,46,53,54,56,53,53,54,93,44,91,45,56,50,46,50,49,48,55,51,51,44,51,48,46,52,50,53,54,52,93,44,91,45,56,50,46,49,55,48,49,57,55,44,51,48,46,51,53,56,57,55,50,93,44,91,45,56,50,46,48,52,57,57,53,56,44,51,48,46,51,54,50,52,55,50,93,44,91,45,56,50,46,48,48,53,56,49,44,51,48,46,53,54,53,51,53,56,93,44,91,45,56,50,46,48,51,57,55,57,53,44,51,48,46,55,52,55,50,57,55,93,44,91,45,56,49,46,57,48,52,56,53,53,44,51,48,46,56,50,56,51,52,93,44,91,45,56,49,46,57,51,54,48,48,54,44,51,49,46,48,52,55,57,57,51,93,44,91,45,56,50,46,48,54,48,56,55,44,51,49,46,48,55,53,56,48,57,93,44,91,45,56,50,46,49,51,49,54,57,56,44,51,49,46,48,49,48,55,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,50,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,52,54,56,55,49,44,51,52,46,48,57,54,52,49,50,93,44,91,45,56,53,46,52,50,49,56,53,50,44,51,52,46,48,56,48,56,50,50,93,44,91,45,56,53,46,51,57,56,56,51,55,44,51,51,46,57,54,52,49,50,57,93,44,91,45,56,53,46,51,56,54,53,56,49,44,51,51,46,57,48,49,55,49,57,93,44,91,45,56,53,46,48,53,48,51,49,44,51,51,46,57,48,52,52,56,56,93,44,91,45,56,52,46,57,55,56,54,56,51,44,51,51,46,57,53,49,51,57,51,93,44,91,45,56,52,46,57,50,50,55,52,50,44,51,52,46,48,56,50,52,57,55,93,44,91,45,56,53,46,48,52,54,56,55,49,44,51,52,46,48,57,54,52,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,99,76,101,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,50,49,57,44,34,98,101,100,115,34,58,51,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,54,57,51,57,55,44,52,48,46,53,57,52,51,49,56,93,44,91,45,56,57,46,50,54,51,55,52,44,52,48,46,51,50,53,51,52,52,93,44,91,45,56,57,46,49,52,56,55,54,52,44,52,48,46,50,56,50,48,51,56,93,44,91,45,56,56,46,53,55,52,56,56,53,44,52,48,46,50,56,49,53,48,49,93,44,91,45,56,56,46,52,54,48,52,49,56,44,52,48,46,50,56,49,57,51,53,93,44,91,45,56,56,46,52,53,57,57,53,55,44,52,48,46,51,57,56,56,53,93,44,91,45,56,56,46,52,53,57,52,55,53,44,52,48,46,54,49,55,51,52,53,93,44,91,45,56,56,46,53,55,52,53,48,50,44,52,48,46,54,49,54,53,53,93,44,91,45,56,56,46,53,56,52,50,55,50,44,52,48,46,55,53,55,54,48,56,93,44,91,45,56,56,46,57,50,57,51,51,49,44,52,48,46,55,53,51,51,51,55,93,44,91,45,56,56,46,57,56,52,55,50,50,44,52,48,46,54,54,52,57,53,51,93,44,91,45,56,57,46,49,51,51,55,53,50,44,52,48,46,53,57,54,55,51,52,93,44,91,45,56,57,46,50,54,57,51,57,55,44,52,48,46,53,57,52,51,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,110,100,114,111,115,99,111,103,103,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,52,52,52,44,34,98,101,100,115,34,58,52,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,50,51,56,57,48,52,44,52,52,46,52,53,56,57,52,50,93,44,91,45,55,48,46,51,51,52,48,57,52,44,52,52,46,50,49,48,55,53,51,93,44,91,45,55,48,46,52,56,48,48,55,56,44,52,52,46,48,51,50,48,55,56,93,44,91,45,55,48,46,51,49,53,51,55,52,44,52,52,46,48,51,55,56,48,55,93,44,91,45,55,48,46,49,49,53,56,54,44,52,51,46,57,48,54,55,49,93,44,91,45,55,48,46,48,51,52,50,51,56,44,52,51,46,57,55,53,54,54,49,93,44,91,45,55,48,46,48,48,53,52,55,49,44,52,52,46,49,50,52,53,49,57,93,44,91,45,55,48,46,48,55,53,55,52,55,44,52,52,46,50,48,54,49,54,56,93,44,91,45,55,48,46,49,50,57,51,57,44,52,52,46,52,56,55,50,49,55,93,44,91,45,55,48,46,50,51,56,57,48,52,44,52,52,46,52,53,56,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,75,111,111,116,101,110,97,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,54,48,53,44,34,98,101,100,115,34,58,52,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,52,50,48,56,57,44,52,55,46,57,55,55,52,53,93,44,91,45,49,49,55,46,48,51,57,56,48,56,44,52,55,46,51,54,54,48,51,49,93,44,91,45,49,49,54,46,54,50,57,48,53,57,44,52,55,46,51,55,49,52,51,56,93,44,91,45,49,49,54,46,53,56,54,53,52,57,44,52,55,46,52,49,52,54,57,53,93,44,91,45,49,49,54,46,51,50,57,52,48,54,44,52,55,46,52,49,52,48,49,49,93,44,91,45,49,49,54,46,51,50,57,53,51,56,44,52,55,46,56,57,48,51,57,51,93,44,91,45,49,49,54,46,53,48,53,49,48,52,44,52,55,46,56,57,48,49,52,50,93,44,91,45,49,49,54,46,53,48,52,51,50,57,44,52,55,46,57,57,49,51,56,54,93,44,91,45,49,49,55,46,48,52,50,48,56,57,44,52,55,46,57,55,55,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,49,53,55,52,44,34,98,101,100,115,34,58,54,55,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,56,57,54,57,50,53,44,51,54,46,56,52,50,48,56,53,93,44,91,45,49,49,53,46,56,57,53,55,53,51,44,51,54,46,49,55,50,50,50,55,93,44,91,45,49,49,53,46,56,52,53,55,54,50,44,51,54,46,49,55,48,55,54,52,93,44,91,45,49,49,53,46,56,52,53,57,57,52,44,51,53,46,57,54,51,55,48,55,93,44,91,45,49,49,53,46,54,52,56,51,53,55,44,51,53,46,56,48,57,50,49,49,93,44,91,45,49,49,52,46,54,51,51,52,56,55,44,51,53,46,48,48,49,56,53,55,93,44,91,45,49,49,52,46,53,54,57,53,50,57,44,51,53,46,49,54,50,51,49,55,93,44,91,45,49,49,52,46,53,57,53,49,54,51,44,51,53,46,51,50,49,56,56,51,93,44,91,45,49,49,52,46,54,55,56,56,57,50,44,51,53,46,53,48,49,50,55,54,93,44,91,45,49,49,52,46,55,48,56,49,49,50,44,51,53,46,57,48,57,57,51,51,93,44,91,45,49,49,52,46,55,53,52,53,48,56,44,51,54,46,48,56,54,49,55,49,93,44,91,45,49,49,52,46,54,50,55,48,55,57,44,51,54,46,49,52,48,55,54,49,93,44,91,45,49,49,52,46,51,55,48,49,56,49,44,51,54,46,49,52,50,54,50,52,93,44,91,45,49,49,52,46,50,52,51,56,54,53,44,51,54,46,48,49,53,50,54,54,93,44,91,45,49,49,52,46,49,53,51,52,44,51,54,46,48,50,51,49,55,93,44,91,45,49,49,52,46,48,52,51,57,52,52,44,51,54,46,49,57,51,51,53,93,44,91,45,49,49,52,46,48,53,48,51,53,52,44,51,54,46,56,52,51,49,52,49,93,44,91,45,49,49,52,46,55,54,50,53,48,55,44,51,54,46,56,53,51,52,55,51,93,44,91,45,49,49,53,46,55,52,48,56,52,54,44,51,54,46,56,53,51,48,56,52,93,44,91,45,49,49,53,46,56,57,54,57,50,53,44,51,54,46,56,52,50,48,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,80,104,105,108,108,105,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,48,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,50,53,51,50,52,44,52,48,46,48,48,49,56,53,57,93,44,91,45,57,57,46,54,50,55,57,53,51,44,51,57,46,53,54,55,52,51,55,93,44,91,45,57,57,46,54,48,50,49,55,54,44,51,57,46,53,54,55,51,50,56,93,44,91,45,57,57,46,48,54,54,50,50,44,51,57,46,53,54,56,49,50,53,93,44,91,45,57,57,46,48,54,55,48,52,54,44,52,48,46,48,48,50,51,52,56,93,44,91,45,57,57,46,49,55,57,49,51,52,44,52,48,46,48,48,50,48,49,51,93,44,91,45,57,57,46,54,50,53,51,50,52,44,52,48,46,48,48,49,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,72,111,108,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,52,53,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,53,55,48,51,57,44,52,50,46,56,48,52,50,57,54,93,44,91,45,57,57,46,50,52,53,56,48,51,44,52,50,46,55,56,50,52,57,57,93,44,91,45,57,57,46,50,51,52,54,50,57,44,52,50,46,48,56,55,57,57,53,93,44,91,45,57,57,46,50,50,50,55,51,51,44,52,50,46,48,56,55,57,49,54,93,44,91,45,57,56,46,55,54,49,49,53,53,44,52,50,46,48,56,56,53,49,56,93,44,91,45,57,56,46,51,48,48,53,57,50,44,52,50,46,48,56,56,56,53,51,93,44,91,45,57,56,46,51,48,48,50,51,53,44,52,50,46,52,51,54,57,49,51,93,44,91,45,57,56,46,51,48,53,49,52,57,44,52,50,46,55,54,49,50,48,55,93,44,91,45,57,56,46,55,49,48,48,52,56,44,52,50,46,56,48,51,52,56,93,44,91,45,57,56,46,57,53,52,54,51,52,44,52,50,46,56,57,52,48,55,55,93,44,91,45,57,57,46,50,53,55,48,51,57,44,52,50,46,56,48,52,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,54,56,57,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,49,49,57,48,57,54,44,51,56,46,56,51,51,49,54,55,93,44,91,45,57,52,46,49,49,57,54,54,52,44,51,56,46,53,54,56,55,49,50,93,44,91,45,57,52,46,48,54,52,51,49,55,44,51,56,46,53,54,55,51,56,93,44,91,45,57,51,46,53,49,49,48,51,44,51,56,46,53,53,54,50,49,93,44,91,45,57,51,46,52,57,55,50,55,56,44,51,56,46,57,50,56,52,51,93,44,91,45,57,51,46,56,51,52,55,49,57,44,51,56,46,57,51,55,57,48,57,93,44,91,45,57,52,46,49,49,52,49,55,53,44,51,56,46,57,49,55,51,48,52,93,44,91,45,57,52,46,49,49,57,48,57,54,44,51,56,46,56,51,51,49,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,76,97,32,67,114,111,115,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,56,53,48,44,34,98,101,100,115,34,58,54,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,50,53,49,56,56,44,52,51,46,57,56,52,51,50,50,93,44,91,45,57,49,46,50,56,52,49,51,56,44,52,51,46,56,52,55,48,54,53,93,44,91,45,57,49,46,50,53,55,56,51,57,44,52,51,46,55,50,53,54,54,49,93,44,91,45,57,48,46,57,49,48,54,53,51,44,52,51,46,55,50,53,51,51,52,93,44,91,45,57,48,46,57,49,50,57,49,56,44,52,52,46,48,55,49,53,50,50,93,44,91,45,57,48,46,57,55,51,49,48,55,44,52,52,46,48,55,48,56,56,50,93,44,91,45,57,49,46,49,53,49,57,51,50,44,52,52,46,48,55,57,54,54,53,93,44,91,45,57,49,46,51,48,55,52,55,56,44,52,52,46,48,54,52,56,55,54,93,44,91,45,57,49,46,52,50,53,49,56,56,44,52,51,46,57,56,52,51,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,97,108,100,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,57,54,44,34,98,101,100,115,34,58,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,49,50,50,49,56,44,51,50,46,49,52,54,49,50,51,93,44,91,45,57,50,46,51,49,50,54,50,51,44,51,49,46,57,50,55,51,56,50,93,44,91,45,57,50,46,48,48,53,52,51,52,44,51,49,46,57,50,55,50,57,54,93,44,91,45,57,49,46,56,56,57,54,56,55,44,51,49,46,57,55,49,52,55,52,93,44,91,45,57,49,46,56,57,52,55,50,57,44,51,50,46,49,53,49,53,53,93,44,91,45,57,49,46,57,55,50,56,56,44,51,50,46,49,54,54,55,52,50,93,44,91,45,57,50,46,48,51,52,51,57,55,44,51,50,46,50,55,55,48,54,56,93,44,91,45,57,50,46,51,49,49,56,53,49,44,51,50,46,50,55,55,52,52,49,93,44,91,45,57,50,46,51,49,50,50,49,56,44,51,50,46,49,52,54,49,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,69,100,109,111,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,57,57,49,54,53,44,51,55,46,49,54,57,56,57,54,93,44,91,45,56,54,46,50,56,49,55,53,44,51,55,46,48,56,48,53,57,55,93,44,91,45,56,54,46,49,49,51,53,49,50,44,51,55,46,48,54,49,48,55,50,93,44,91,45,56,54,46,48,53,54,52,52,51,44,51,55,46,49,54,55,50,48,56,93,44,91,45,56,54,46,49,53,55,53,56,57,44,51,55,46,51,51,53,54,52,57,93,44,91,45,56,54,46,52,54,57,49,50,54,44,51,55,46,51,50,49,48,57,57,93,44,91,45,56,54,46,51,57,57,49,54,53,44,51,55,46,49,54,57,56,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,111,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,49,50,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,53,48,51,48,57,44,51,57,46,48,50,56,49,56,53,93,44,91,45,56,57,46,53,56,54,51,52,52,44,51,57,46,48,50,56,51,50,57,93,44,91,45,56,57,46,54,51,57,50,54,53,44,51,56,46,57,57,57,49,50,57,93,44,91,45,56,57,46,53,57,55,51,50,49,44,51,56,46,55,52,51,50,51,54,93,44,91,45,56,57,46,50,53,52,49,56,53,44,51,56,46,55,52,50,48,49,56,93,44,91,45,56,57,46,50,53,48,51,48,57,44,51,57,46,48,50,56,49,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,51,52,54,57,44,52,48,46,49,48,52,52,53,53,93,44,91,45,57,48,46,57,49,54,54,54,57,44,51,57,46,56,52,52,57,50,55,93,44,91,45,57,48,46,53,55,49,52,50,52,44,51,57,46,56,51,56,57,54,49,93,44,91,45,57,48,46,53,56,51,53,51,52,44,51,57,46,56,55,54,55,53,93,44,91,45,57,48,46,53,49,51,55,52,55,44,51,57,46,57,56,55,56,57,49,93,44,91,45,57,48,46,54,48,55,49,51,52,44,51,57,46,57,56,49,54,53,56,93,44,91,45,57,48,46,54,57,54,51,53,55,44,52,48,46,49,48,51,57,53,93,44,91,45,57,48,46,57,49,51,52,54,57,44,52,48,46,49,48,52,52,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,77,99,76,101,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,56,50,53,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,53,48,50,51,57,53,44,52,52,46,56,57,50,50,57,53,93,44,91,45,57,52,46,52,57,56,48,55,52,44,52,52,46,55,49,55,49,55,49,93,44,91,45,57,52,46,52,57,55,56,51,53,44,52,52,46,54,50,57,57,50,49,93,44,91,45,57,52,46,50,53,52,55,49,57,44,52,52,46,54,51,48,51,49,49,93,44,91,45,57,52,46,50,53,52,48,55,54,44,52,52,46,55,49,55,56,53,53,93,44,91,45,57,52,46,48,49,48,52,57,52,44,52,52,46,55,49,55,52,54,52,93,44,91,45,57,52,46,48,49,50,50,51,54,44,52,52,46,57,55,56,55,49,50,93,44,91,45,57,52,46,50,53,54,48,55,52,44,52,52,46,57,55,57,52,54,53,93,44,91,45,57,52,46,53,48,49,56,56,53,44,52,52,46,57,55,57,54,57,53,93,44,91,45,57,52,46,53,48,50,51,57,53,44,52,52,46,56,57,50,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,68,117,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,52,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,53,54,52,54,53,44,52,53,46,50,48,57,53,53,52,93,44,91,45,57,50,46,49,51,54,51,52,56,44,52,52,46,56,53,55,56,52,56,93,44,91,45,57,50,46,49,51,53,50,48,50,44,52,52,46,54,56,52,51,55,52,93,44,91,45,57,49,46,54,53,48,51,54,49,44,52,52,46,54,56,51,54,51,51,93,44,91,45,57,49,46,54,53,48,52,53,53,44,52,52,46,56,53,53,57,53,49,93,44,91,45,57,49,46,54,54,53,54,52,55,44,52,53,46,50,48,55,57,57,49,93,44,91,45,57,50,46,49,53,54,52,54,53,44,52,53,46,50,48,57,53,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,52,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,55,57,54,56,57,55,44,51,56,46,50,54,53,48,52,55,93,44,91,45,49,48,53,46,54,56,54,56,51,56,44,51,56,46,49,54,54,56,52,53,93,44,91,45,49,48,53,46,53,54,48,51,49,49,44,51,55,46,57,53,49,56,56,54,93,44,91,45,49,48,53,46,52,55,51,50,48,52,44,51,55,46,56,57,53,57,55,93,44,91,45,49,48,53,46,52,49,51,54,51,53,44,51,55,46,56,57,48,53,50,55,93,44,91,45,49,48,53,46,49,54,56,54,53,50,44,51,56,46,48,49,56,57,52,54,93,44,91,45,49,48,53,46,48,52,57,57,49,55,44,51,55,46,57,49,53,52,55,57,93,44,91,45,49,48,53,46,48,52,57,50,49,53,44,51,56,46,50,53,55,57,55,51,93,44,91,45,49,48,53,46,55,57,54,56,57,55,44,51,56,46,50,54,53,48,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,48,53,44,34,98,101,100,115,34,58,49,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,51,53,48,49,54,44,51,55,46,54,52,51,54,52,49,93,44,91,45,57,48,46,53,52,57,55,50,57,44,51,55,46,51,49,55,53,57,52,93,44,91,45,57,48,46,50,49,55,54,53,55,44,51,55,46,51,49,52,57,54,55,93,44,91,45,57,48,46,49,52,53,54,57,57,44,51,55,46,51,49,50,48,57,49,93,44,91,45,57,48,46,49,52,54,55,54,51,44,51,55,46,53,57,55,52,51,52,93,44,91,45,57,48,46,49,52,54,55,55,56,44,51,55,46,54,52,49,54,49,56,93,44,91,45,57,48,46,53,51,53,48,49,54,44,51,55,46,54,52,51,54,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,53,51,34,44,34,78,65,77,69,34,58,34,78,111,108,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,54,54,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,52,54,53,52,51,44,51,50,46,53,50,50,55,57,51,93,44,91,45,49,48,48,46,54,54,48,54,50,54,44,51,50,46,53,50,53,51,49,50,93,44,91,45,49,48,48,46,54,54,53,51,53,51,44,51,50,46,48,56,53,52,48,55,93,44,91,45,49,48,48,46,50,51,53,49,51,55,44,51,50,46,48,56,50,51,55,50,93,44,91,45,49,48,48,46,49,53,49,57,49,49,44,51,50,46,48,56,50,54,51,56,93,44,91,45,49,48,48,46,49,52,54,53,52,51,44,51,50,46,53,50,50,55,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,53,51,54,44,34,98,101,100,115,34,58,49,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,52,54,50,52,49,49,44,52,49,46,54,52,49,53,56,55,93,44,91,45,55,53,46,52,52,49,52,50,49,44,52,49,46,50,54,48,48,53,51,93,44,91,45,55,53,46,53,48,53,54,48,55,44,52,49,46,50,51,50,53,51,57,93,44,91,45,55,53,46,51,53,57,49,56,52,44,52,49,46,50,51,57,50,48,54,93,44,91,45,55,53,46,48,54,57,53,53,57,44,52,49,46,54,48,49,56,55,52,93,44,91,45,55,53,46,48,53,51,50,50,55,44,52,49,46,55,53,49,54,54,50,93,44,91,45,55,53,46,49,52,54,52,52,54,44,52,49,46,56,53,48,56,57,57,93,44,91,45,55,53,46,50,55,49,50,57,51,44,52,49,46,56,56,55,51,53,56,93,44,91,45,55,53,46,51,53,57,53,55,57,44,52,49,46,57,57,57,52,52,53,93,44,91,45,55,53,46,52,56,51,49,52,57,44,52,49,46,57,57,57,50,49,52,93,44,91,45,55,53,46,52,54,50,52,49,49,44,52,49,46,54,52,49,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,83,97,114,97,116,111,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,51,55,55,44,34,98,101,100,115,34,58,50,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,49,52,48,49,52,55,44,52,51,46,50,53,51,57,55,57,93,44,91,45,55,52,46,48,57,55,52,54,55,44,52,50,46,57,56,50,57,51,52,93,44,91,45,55,52,46,48,57,50,57,56,44,52,50,46,57,53,53,56,54,56,93,44,91,45,55,52,46,48,48,53,54,53,54,44,52,50,46,57,51,51,52,56,52,93,44,91,45,55,51,46,56,48,57,51,54,57,44,52,50,46,55,55,56,56,54,57,93,44,91,45,55,51,46,54,55,54,55,54,50,44,52,50,46,55,56,51,50,55,55,93,44,91,45,55,51,46,54,51,53,52,54,51,44,52,50,46,57,52,49,50,57,93,44,91,45,55,51,46,53,55,51,51,52,50,44,52,51,46,49,48,48,53,52,53,93,44,91,45,55,51,46,53,57,52,57,54,44,52,51,46,51,48,54,49,49,56,93,44,91,45,55,51,46,55,56,57,55,51,49,44,52,51,46,50,52,52,52,50,49,93,44,91,45,55,51,46,56,56,52,49,51,57,44,52,51,46,51,57,56,48,52,49,93,44,91,45,55,52,46,49,54,48,49,44,52,51,46,51,55,49,53,51,50,93,44,91,45,55,52,46,49,52,48,49,52,55,44,52,51,46,50,53,51,57,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,66,114,97,122,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,49,57,51,44,34,98,101,100,115,34,58,54,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,54,54,57,56,51,44,51,48,46,54,57,53,54,55,93,44,91,45,57,54,46,50,56,50,53,54,52,44,51,48,46,52,50,54,54,49,52,93,44,91,45,57,54,46,50,57,57,49,55,51,44,51,48,46,51,55,57,49,53,50,93,44,91,45,57,54,46,49,53,52,54,51,44,51,48,46,51,51,48,50,56,56,93,44,91,45,57,54,46,49,48,55,51,54,44,51,48,46,52,49,55,53,56,50,93,44,91,45,57,54,46,49,56,54,52,51,57,44,51,48,46,54,48,54,49,55,53,93,44,91,45,57,54,46,49,54,56,51,55,44,51,48,46,56,50,50,57,57,55,93,44,91,45,57,54,46,50,52,49,48,50,44,51,48,46,57,55,51,55,51,55,93,44,91,45,57,54,46,51,51,56,48,48,49,44,51,48,46,57,50,48,53,51,49,93,44,91,45,57,54,46,52,53,55,54,51,44,51,48,46,55,52,52,52,55,52,93,44,91,45,57,54,46,53,54,54,57,56,51,44,51,48,46,54,57,53,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,51,52,56,52,44,51,51,46,57,53,52,52,53,51,93,44,91,45,57,54,46,56,54,54,52,51,56,44,51,51,46,56,53,51,49,52,57,93,44,91,45,57,54,46,54,57,48,55,48,56,44,51,51,46,56,52,57,57,53,57,93,44,91,45,57,54,46,53,56,56,53,48,50,44,51,51,46,56,57,52,57,56,51,93,44,91,45,57,54,46,54,49,57,57,51,57,44,51,51,46,57,57,57,52,52,57,93,44,91,45,57,54,46,53,56,53,51,53,53,44,51,52,46,49,49,52,52,53,57,93,44,91,45,57,54,46,54,54,57,57,54,51,44,51,52,46,49,55,50,53,50,49,93,44,91,45,57,54,46,57,51,51,53,48,51,44,51,52,46,49,55,50,55,52,56,93,44,91,45,57,54,46,57,54,57,54,50,55,44,51,52,46,48,55,49,48,50,93,44,91,45,57,54,46,57,51,52,56,52,44,51,51,46,57,53,52,52,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,57,55,55,44,34,98,101,100,115,34,58,51,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,50,56,52,49,54,44,51,57,46,55,50,50,55,56,51,93,44,91,45,55,57,46,48,54,55,53,53,57,44,51,57,46,52,55,57,52,52,51,93,44,91,45,55,56,46,57,53,55,51,48,49,44,51,57,46,52,52,48,48,57,53,93,44,91,45,55,56,46,55,57,53,50,54,56,44,51,57,46,54,49,48,55,93,44,91,45,55,56,46,54,53,55,48,55,51,44,51,57,46,53,51,53,49,52,49,93,44,91,45,55,56,46,52,54,56,53,56,49,44,51,57,46,53,49,54,54,49,57,93,44,91,45,55,56,46,51,51,51,56,49,57,44,51,57,46,54,51,54,55,54,50,93,44,91,45,55,56,46,51,52,50,56,51,52,44,51,57,46,55,50,50,50,54,51,93,44,91,45,55,56,46,51,56,48,53,57,57,44,51,57,46,55,50,50,53,57,57,93,44,91,45,55,56,46,56,48,56,51,56,55,44,51,57,46,55,50,50,57,49,49,93,44,91,45,55,56,46,57,50,56,52,49,54,44,51,57,46,55,50,50,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,87,101,116,122,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,51,51,53,49,51,44,51,57,46,55,50,48,56,49,50,93,44,91,45,56,48,46,57,52,51,55,56,50,44,51,57,46,54,48,54,57,50,54,93,44,91,45,56,48,46,56,52,51,55,51,49,44,51,57,46,53,56,51,56,56,53,93,44,91,45,56,48,46,55,49,54,49,50,50,44,51,57,46,52,55,53,53,51,49,93,44,91,45,56,48,46,54,49,56,54,50,57,44,51,57,46,52,53,48,51,55,53,93,44,91,45,56,48,46,53,52,52,53,50,49,44,51,57,46,52,50,57,49,50,93,44,91,45,56,48,46,52,57,52,48,56,53,44,51,57,46,52,54,57,53,57,57,93,44,91,45,56,48,46,52,57,56,49,53,56,44,51,57,46,53,54,50,56,57,57,93,44,91,45,56,48,46,51,57,53,56,49,44,51,57,46,54,51,55,51,52,55,93,44,91,45,56,48,46,52,50,49,51,56,56,44,51,57,46,55,50,49,49,56,57,93,44,91,45,56,48,46,53,49,57,51,52,50,44,51,57,46,55,50,49,52,48,51,93,44,91,45,56,48,46,56,51,51,53,49,51,44,51,57,46,55,50,48,56,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,48,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,54,53,54,49,57,44,52,52,46,53,57,54,57,56,55,93,44,91,45,57,49,46,49,53,49,57,51,50,44,52,52,46,48,55,57,54,54,53,93,44,91,45,57,48,46,57,55,51,49,48,55,44,52,52,46,48,55,48,56,56,50,93,44,91,45,57,48,46,57,48,52,53,55,57,44,52,52,46,49,53,56,50,57,56,93,44,91,45,57,48,46,51,49,50,53,50,50,44,52,52,46,49,53,53,49,57,56,93,44,91,45,57,48,46,51,49,50,54,56,44,52,52,46,50,52,56,55,53,93,44,91,45,57,48,46,51,49,54,48,53,53,44,52,52,46,52,50,52,53,48,50,93,44,91,45,57,48,46,56,48,49,57,49,56,44,52,52,46,52,50,50,52,52,50,93,44,91,45,57,48,46,56,48,49,53,50,53,44,52,52,46,53,48,57,54,56,49,93,44,91,45,57,48,46,57,50,50,51,53,44,52,52,46,53,57,54,50,57,51,93,44,91,45,57,49,46,49,54,53,54,49,57,44,52,52,46,53,57,54,57,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,108,97,116,115,111,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,53,54,50,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,49,53,57,53,52,54,44,52,54,46,50,54,49,49,51,50,93,44,91,45,49,50,52,46,48,54,55,51,49,51,44,52,54,46,49,56,51,56,52,57,93,44,91,45,49,50,52,46,48,48,56,49,50,53,44,52,54,46,48,48,57,57,52,93,44,91,45,49,50,52,46,48,54,53,52,52,56,44,52,53,46,55,56,51,48,53,52,93,44,91,45,49,50,51,46,51,54,49,54,50,50,44,52,53,46,55,55,57,53,55,57,93,44,91,45,49,50,51,46,51,54,51,55,52,51,44,52,54,46,49,52,54,51,51,51,93,44,91,45,49,50,51,46,52,55,57,54,52,52,44,52,54,46,50,54,57,49,51,49,93,44,91,45,49,50,51,46,55,50,56,51,49,54,44,52,54,46,50,54,52,53,52,49,93,44,91,45,49,50,51,46,56,55,49,56,54,57,44,52,54,46,50,51,52,57,52,57,93,44,91,45,49,50,51,46,57,55,54,50,55,53,44,52,54,46,50,54,57,57,48,55,93,44,91,45,49,50,52,46,49,53,57,53,52,54,44,52,54,46,50,54,49,49,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,57,52,55,44,34,98,101,100,115,34,58,49,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,51,55,48,57,53,44,52,54,46,55,57,50,49,50,57,93,44,91,45,49,50,51,46,51,53,56,51,51,52,44,52,54,46,51,56,52,48,50,53,93,44,91,45,49,50,51,46,50,49,55,57,53,44,52,54,46,51,56,53,54,49,55,93,44,91,45,49,50,50,46,50,52,48,57,54,54,44,52,54,46,51,56,53,51,54,49,93,44,91,45,49,50,49,46,53,50,50,51,50,52,44,52,54,46,51,56,56,50,50,52,93,44,91,45,49,50,49,46,51,57,55,48,49,54,44,52,54,46,51,56,56,48,56,51,93,44,91,45,49,50,49,46,52,53,49,50,53,54,44,52,54,46,53,51,51,56,57,52,93,44,91,45,49,50,49,46,51,55,54,55,53,55,44,52,54,46,55,48,52,54,53,56,93,44,91,45,49,50,49,46,52,53,53,50,49,56,44,52,54,46,55,56,51,55,57,55,93,44,91,45,49,50,49,46,55,53,56,53,57,51,44,52,54,46,55,56,51,55,57,49,93,44,91,45,49,50,49,46,56,52,49,56,57,44,52,54,46,55,50,56,52,53,53,93,44,91,45,49,50,50,46,50,48,51,49,49,53,44,52,54,46,55,54,51,48,54,49,93,44,91,45,49,50,51,46,49,54,48,57,48,57,44,52,54,46,55,54,52,51,51,93,44,91,45,49,50,51,46,49,54,48,53,56,56,44,52,54,46,55,57,51,51,56,51,93,44,91,45,49,50,51,46,51,55,48,57,53,44,52,54,46,55,57,50,49,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,48,50,53,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,48,56,56,51,57,44,52,50,46,53,50,49,50,49,55,93,44,91,45,55,56,46,51,48,56,49,50,56,44,52,49,46,57,57,57,52,49,53,93,44,91,45,55,56,46,50,48,54,54,48,52,44,52,49,46,57,57,57,53,57,53,93,44,91,45,55,55,46,55,52,57,57,51,49,44,52,49,46,57,57,56,55,56,50,93,44,91,45,55,55,46,55,50,50,57,54,52,44,52,50,46,52,55,49,50,49,54,93,44,91,45,55,55,46,56,52,48,57,48,49,44,52,50,46,53,49,55,55,54,55,93,44,91,45,55,56,46,48,51,56,50,54,49,44,52,50,46,53,50,49,53,50,50,93,44,91,45,55,56,46,51,48,56,56,51,57,44,52,50,46,53,50,49,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,101,100,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,54,54,50,50,49,44,52,49,46,56,54,48,48,54,57,93,44,91,45,57,49,46,51,54,54,52,52,56,44,52,49,46,53,57,56,51,55,51,93,44,91,45,57,48,46,56,57,57,56,53,51,44,52,49,46,53,57,55,49,51,51,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,49,46,55,55,49,51,57,50,93,44,91,45,57,48,46,56,57,56,52,56,52,44,52,49,46,57,52,54,50,52,53,93,44,91,45,57,49,46,51,54,53,56,55,55,44,52,49,46,57,52,55,52,49,93,44,91,45,57,49,46,51,54,54,50,50,49,44,52,49,46,56,54,48,48,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,52,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,48,56,55,48,49,44,51,56,46,54,56,56,49,48,49,93,44,91,45,56,54,46,54,56,51,49,48,50,44,51,56,46,54,56,54,53,54,49,93,44,91,45,56,54,46,54,56,50,51,53,57,44,51,56,46,53,50,54,51,55,56,93,44,91,45,56,54,46,54,56,49,52,50,52,44,51,56,46,51,57,52,55,54,55,93,44,91,45,56,54,46,51,48,56,56,54,56,44,51,56,46,51,57,52,48,54,57,93,44,91,45,56,54,46,51,48,56,54,55,52,44,51,56,46,52,50,50,56,55,53,93,44,91,45,56,54,46,51,48,56,55,48,49,44,51,56,46,54,56,56,49,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,51,49,56,55,44,34,98,101,100,115,34,58,50,51,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,55,55,48,57,51,44,51,51,46,57,53,55,54,49,52,93,44,91,45,56,52,46,51,52,55,56,49,57,44,51,51,46,57,54,51,50,56,56,93,44,91,45,56,52,46,51,53,48,50,50,52,44,51,51,46,54,52,55,57,48,56,93,44,91,45,56,52,46,50,56,49,50,55,51,44,51,51,46,54,52,55,52,49,49,93,44,91,45,56,52,46,49,56,52,49,52,51,44,51,51,46,54,52,54,49,53,55,93,44,91,45,56,52,46,49,49,48,49,50,52,44,51,51,46,54,50,53,49,49,93,44,91,45,56,52,46,48,50,51,55,49,51,44,51,51,46,55,53,50,56,48,56,93,44,91,45,56,52,46,50,53,57,56,50,50,44,51,51,46,57,49,56,57,48,49,93,44,91,45,56,52,46,50,55,55,48,57,51,44,51,51,46,57,53,55,54,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,55,34,44,34,78,65,77,69,34,58,34,80,105,99,107,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,51,50,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,53,53,53,51,44,51,52,46,53,54,50,55,51,53,93,44,91,45,56,52,46,54,53,52,51,54,54,44,51,52,46,53,52,56,57,52,54,93,44,91,45,56,52,46,54,53,51,50,51,50,44,51,52,46,52,49,50,53,57,93,44,91,45,56,52,46,53,56,50,54,51,44,51,52,46,51,56,49,52,57,50,93,44,91,45,56,52,46,50,53,55,53,56,54,44,51,52,46,51,56,48,57,57,50,93,44,91,45,56,52,46,51,52,53,53,53,51,44,51,52,46,53,54,50,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,104,111,117,116,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,56,57,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,53,51,52,50,57,53,44,52,56,46,49,51,52,53,54,52,93,44,91,45,49,48,57,46,55,50,54,57,49,52,44,52,56,46,49,51,50,56,53,57,93,44,91,45,49,48,57,46,55,50,54,57,52,51,44,52,56,46,50,50,49,53,50,53,93,44,91,45,49,48,57,46,56,52,53,57,51,50,44,52,56,46,51,48,53,57,55,49,93,44,91,45,49,49,48,46,54,50,53,52,48,57,44,52,56,46,51,48,54,52,55,57,93,44,91,45,49,49,48,46,55,53,53,56,55,51,44,52,56,46,50,49,57,54,48,49,93,44,91,45,49,49,48,46,56,50,55,49,54,56,44,52,56,46,49,51,51,50,48,53,93,44,91,45,49,49,49,46,52,48,57,48,57,55,44,52,56,46,49,51,50,50,49,56,93,44,91,45,49,49,49,46,52,48,56,53,49,52,44,52,55,46,57,56,55,49,55,56,93,44,91,45,49,49,49,46,52,48,56,56,53,44,52,55,46,54,57,56,49,50,51,93,44,91,45,49,49,48,46,57,55,54,54,54,56,44,52,55,46,54,57,56,55,51,93,44,91,45,49,49,49,46,48,52,51,56,56,49,44,52,55,46,53,57,49,53,56,51,93,44,91,45,49,49,48,46,56,54,52,54,51,44,52,55,46,53,50,52,55,49,52,93,44,91,45,49,49,48,46,55,54,57,49,50,57,44,52,55,46,52,52,54,48,57,54,93,44,91,45,49,49,48,46,54,51,57,53,53,57,44,52,55,46,52,49,54,52,56,54,93,44,91,45,49,49,48,46,50,49,51,53,57,54,44,52,55,46,52,49,54,54,53,55,93,44,91,45,49,48,57,46,56,52,53,50,50,49,44,52,55,46,53,52,54,55,57,53,93,44,91,45,49,48,57,46,56,50,51,52,48,49,44,52,55,46,55,49,53,53,55,57,93,44,91,45,49,48,57,46,53,51,56,54,55,55,44,52,55,46,55,51,56,56,54,52,93,44,91,45,49,48,57,46,53,51,52,50,57,53,44,52,56,46,49,51,52,53,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,56,56,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,55,55,54,56,52,44,52,50,46,55,51,48,57,48,51,93,44,91,45,49,48,48,46,49,51,51,57,55,56,44,52,50,46,56,48,55,56,49,57,93,44,91,45,49,48,48,46,49,57,56,52,55,56,44,52,50,46,56,52,54,49,48,50,93,44,91,45,49,48,48,46,49,54,55,54,48,53,44,52,50,46,48,56,53,56,52,56,93,44,91,45,57,57,46,54,56,54,57,53,57,44,52,50,46,48,56,54,48,55,53,93,44,91,45,57,57,46,54,54,50,51,55,57,44,52,50,46,48,56,54,48,48,57,93,44,91,45,57,57,46,54,55,55,54,56,52,44,52,50,46,55,51,48,57,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,109,112,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,56,55,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,54,49,51,51,55,44,51,54,46,53,57,49,55,56,52,93,44,91,45,56,52,46,50,53,57,53,57,51,44,51,54,46,53,49,51,57,56,53,93,44,91,45,56,52,46,51,52,57,57,51,57,44,51,54,46,52,54,54,50,57,50,93,44,91,45,56,52,46,51,50,57,57,50,55,44,51,54,46,50,56,53,48,56,54,93,44,91,45,56,52,46,51,55,50,55,51,49,44,51,54,46,50,49,54,55,55,56,93,44,91,45,56,52,46,50,50,55,53,50,55,44,51,54,46,50,52,52,56,55,57,93,44,91,45,56,52,46,48,54,57,54,49,56,44,51,54,46,50,51,48,57,55,56,93,44,91,45,56,52,46,48,48,52,51,49,55,44,51,54,46,50,55,48,51,55,56,93,44,91,45,56,51,46,57,48,53,54,51,56,44,51,54,46,52,49,57,57,55,57,93,44,91,45,56,51,46,57,56,55,54,49,53,44,51,54,46,53,56,57,52,55,49,93,44,91,45,56,52,46,50,50,55,50,57,50,44,51,54,46,53,57,50,48,52,53,93,44,91,45,56,52,46,50,54,49,51,51,55,44,51,54,46,53,57,49,55,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,57,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,48,54,57,54,53,44,51,54,46,50,54,54,49,57,49,93,44,91,45,55,56,46,52,49,50,48,57,53,44,51,54,46,49,54,57,53,57,55,93,44,91,45,55,56,46,52,57,54,54,49,52,44,51,54,46,49,55,53,49,57,57,93,44,91,45,55,56,46,53,52,54,52,49,52,44,51,54,46,48,50,49,56,50,54,93,44,91,45,55,56,46,52,50,54,56,54,52,44,51,53,46,57,55,53,48,49,50,93,44,91,45,55,56,46,50,53,53,57,55,51,44,51,53,46,56,49,56,49,50,93,44,91,45,55,56,46,48,48,54,53,53,49,44,51,54,46,50,48,50,54,51,51,93,44,91,45,55,56,46,51,48,54,57,54,53,44,51,54,46,50,54,54,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,53,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,49,48,34,44,34,78,65,77,69,34,58,34,66,97,108,116,105,109,111,114,101,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,52,55,48,48,44,34,98,101,100,115,34,58,52,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,50,57,52,56,54,44,51,57,46,50,49,56,52,48,56,93,44,91,45,55,54,46,53,50,57,55,57,51,44,51,57,46,51,55,50,48,53,56,93,44,91,45,55,54,46,55,49,49,51,49,51,44,51,57,46,51,55,49,57,51,51,93,44,91,45,55,54,46,55,49,49,48,53,52,44,51,57,46,50,55,55,56,56,57,93,44,91,45,55,54,46,54,49,56,54,49,50,44,51,57,46,50,51,55,51,57,56,93,44,91,45,55,54,46,53,50,57,52,56,54,44,51,57,46,50,49,56,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,76,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,50,57,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,53,51,55,56,44,51,56,46,53,50,49,54,53,55,93,44,91,45,57,54,46,51,53,55,50,55,55,44,51,56,46,49,55,50,54,54,93,44,91,45,57,53,46,57,53,56,56,54,50,44,51,56,46,49,55,48,57,51,57,93,44,91,45,57,53,46,57,53,48,50,56,50,44,51,56,46,52,51,52,49,48,53,93,44,91,45,57,53,46,57,52,53,57,50,52,44,51,56,46,55,51,57,49,49,50,93,44,91,45,57,54,46,51,53,50,54,49,51,44,51,56,46,55,51,57,48,50,49,93,44,91,45,57,54,46,51,53,51,55,56,44,51,56,46,53,50,49,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,52,52,44,34,98,101,100,115,34,58,49,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,57,48,56,53,49,44,52,50,46,50,49,48,52,48,53,93,44,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,44,91,45,57,52,46,55,52,52,56,55,54,44,52,49,46,56,54,50,51,57,52,93,44,91,45,57,52,46,54,50,56,55,50,52,44,52,49,46,56,54,50,55,54,51,93,44,91,45,57,52,46,54,50,56,56,48,54,44,52,50,46,50,48,57,51,57,54,93,44,91,45,57,52,46,56,53,56,52,49,50,44,52,50,46,50,48,57,54,57,50,93,44,91,45,57,53,46,48,57,48,56,53,49,44,52,50,46,50,49,48,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,84,101,110,115,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,57,50,55,49,56,44,51,50,46,50,48,51,51,52,57,93,44,91,45,57,49,46,53,49,49,51,55,52,44,51,49,46,57,51,48,48,50,53,93,44,91,45,57,49,46,53,55,53,55,50,49,44,51,49,46,56,56,50,53,54,93,44,91,45,57,49,46,53,52,52,55,57,49,44,51,49,46,55,53,49,55,51,49,93,44,91,45,57,49,46,51,56,48,50,53,52,44,51,49,46,55,51,51,50,53,53,93,44,91,45,57,49,46,51,49,55,56,54,52,44,51,49,46,55,52,57,55,54,54,93,44,91,45,57,49,46,51,52,53,50,49,52,44,51,49,46,56,52,51,56,54,49,93,44,91,45,57,49,46,50,52,56,49,52,52,44,51,49,46,56,54,57,56,52,56,93,44,91,45,57,49,46,48,51,48,50,48,55,44,51,50,46,49,49,52,51,53,51,93,44,91,45,57,49,46,48,51,48,56,49,44,51,50,46,49,50,48,54,53,93,44,91,45,57,49,46,48,53,51,53,53,53,44,51,50,46,49,50,52,52,49,50,93,44,91,45,57,49,46,49,50,52,48,52,51,44,51,50,46,50,49,49,49,48,52,93,44,91,45,57,49,46,52,57,50,55,49,56,44,51,50,46,50,48,51,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,56,55,54,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,50,50,55,49,44,51,53,46,54,48,55,55,56,51,93,44,91,45,56,52,46,52,48,57,50,50,54,44,51,53,46,51,57,56,51,55,56,93,44,91,45,56,52,46,52,57,53,53,50,57,44,51,53,46,50,56,53,52,55,50,93,44,91,45,56,52,46,50,57,50,51,54,53,44,51,53,46,50,48,54,54,57,52,93,44,91,45,56,52,46,50,49,49,51,57,53,44,51,53,46,50,54,53,54,50,49,93,44,91,45,56,52,46,48,50,57,48,54,55,44,51,53,46,50,57,50,50,52,56,93,44,91,45,56,52,46,48,50,49,52,53,50,44,51,53,46,52,48,52,50,50,51,93,44,91,45,56,51,46,57,54,49,49,48,50,44,51,53,46,52,54,51,55,53,52,93,44,91,45,56,52,46,49,56,56,51,49,57,44,51,53,46,54,49,48,53,52,57,93,44,91,45,56,52,46,50,57,57,53,52,57,44,51,53,46,54,53,55,54,55,51,93,44,91,45,56,52,46,52,56,54,55,53,52,44,51,53,46,54,53,56,51,55,54,93,44,91,45,56,52,46,53,50,53,56,53,44,51,53,46,54,50,52,49,56,54,93,44,91,45,56,52,46,53,50,50,51,55,51,44,51,53,46,54,49,56,54,50,53,93,44,91,45,56,52,46,53,50,50,55,49,44,51,53,46,54,48,55,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,52,52,54,52,44,51,56,46,50,54,50,52,49,50,93,44,91,45,49,48,50,46,48,52,50,49,53,53,44,51,55,46,55,51,56,53,52,49,93,44,91,45,49,48,49,46,53,50,55,48,54,51,44,51,55,46,55,51,54,51,49,52,93,44,91,45,49,48,49,46,53,52,50,55,53,55,44,51,55,46,56,50,55,53,57,52,93,44,91,45,49,48,49,46,53,52,50,51,49,50,44,51,56,46,50,54,51,50,48,55,93,44,91,45,49,48,49,46,53,54,55,52,56,50,44,51,56,46,50,54,51,49,52,53,93,44,91,45,49,48,50,46,48,52,52,52,54,52,44,51,56,46,50,54,50,52,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,80,111,99,97,104,111,110,116,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,44,91,45,57,52,46,57,49,51,56,57,44,52,50,46,57,48,57,55,93,44,91,45,57,52,46,57,49,52,52,56,53,44,52,50,46,53,54,48,51,48,57,93,44,91,45,57,52,46,52,52,51,48,50,52,44,52,50,46,53,53,56,56,52,51,93,44,91,45,57,52,46,52,52,51,48,56,51,44,52,50,46,54,52,53,49,54,52,93,44,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,71,101,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,53,50,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,52,53,50,48,54,56,44,52,52,46,49,53,49,52,54,53,93,44,91,45,49,49,54,46,53,55,50,50,50,52,44,52,51,46,57,56,48,52,56,53,93,44,91,45,49,49,54,46,55,49,50,53,48,49,44,52,51,46,57,56,49,51,50,54,93,44,91,45,49,49,54,46,55,49,50,54,55,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,53,49,50,53,48,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,50,56,50,48,49,57,44,52,51,46,56,48,55,51,54,53,93,44,91,45,49,49,54,46,50,55,51,48,54,57,44,52,52,46,49,53,49,50,50,55,93,44,91,45,49,49,54,46,50,49,51,56,55,49,44,52,52,46,49,53,49,51,56,55,93,44,91,45,49,49,54,46,50,49,50,57,49,44,52,52,46,51,50,52,51,55,51,93,44,91,45,49,49,54,46,49,53,55,48,50,50,44,52,52,46,52,57,56,57,50,56,93,44,91,45,49,49,54,46,50,57,57,56,55,54,44,52,52,46,52,52,52,53,55,54,93,44,91,45,49,49,54,46,51,53,56,52,57,50,44,52,52,46,49,53,49,49,53,56,93,44,91,45,49,49,54,46,52,53,50,48,54,56,44,52,52,46,49,53,49,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,73,110,100,101,112,101,110,100,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,54,52,44,34,98,101,100,115,34,58,50,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,52,57,52,52,56,44,51,53,46,56,54,55,52,49,49,93,44,91,45,57,49,46,56,51,55,49,55,57,44,51,53,46,55,48,52,57,51,50,93,44,91,45,57,49,46,55,57,51,57,53,56,44,51,53,46,53,51,52,49,49,52,93,44,91,45,57,49,46,53,56,49,56,56,44,51,53,46,53,51,48,52,52,55,93,44,91,45,57,49,46,51,54,57,53,55,44,51,53,46,53,50,54,51,54,50,93,44,91,45,57,49,46,51,53,54,50,52,54,44,51,53,46,55,48,49,49,48,55,93,44,91,45,57,49,46,49,57,56,53,53,54,44,51,53,46,56,57,48,48,50,52,93,44,91,45,57,49,46,51,53,55,50,51,44,51,53,46,56,57,48,54,50,49,93,44,91,45,57,49,46,52,54,51,49,57,56,44,51,53,46,57,51,54,56,49,93,44,91,45,57,49,46,55,49,48,52,56,51,44,51,53,46,57,52,49,55,53,56,93,44,91,45,57,49,46,56,52,57,52,52,56,44,51,53,46,56,54,55,52,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,111,110,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,50,49,51,51,54,44,51,53,46,48,49,50,50,49,93,44,91,45,57,50,46,48,55,48,56,48,53,44,51,53,46,48,49,49,56,48,50,93,44,91,45,57,50,46,48,55,56,55,49,49,44,51,52,46,55,50,57,57,56,51,93,44,91,45,57,50,46,48,50,57,53,51,57,44,51,52,46,54,50,49,50,52,56,93,44,91,45,57,50,46,48,50,57,57,57,54,44,51,52,46,52,56,57,51,53,50,93,44,91,45,57,49,46,55,48,53,49,56,53,44,51,52,46,52,56,50,54,55,93,44,91,45,57,49,46,54,55,56,48,51,55,44,51,52,46,52,56,49,57,50,93,44,91,45,57,49,46,54,52,51,48,56,44,51,52,46,54,51,54,56,54,50,93,44,91,45,57,49,46,55,48,48,56,50,56,44,51,52,46,54,55,50,48,50,57,93,44,91,45,57,49,46,54,57,51,55,48,53,44,51,52,46,57,49,57,54,48,53,93,44,91,45,57,49,46,56,48,51,55,48,51,44,51,52,46,57,50,49,53,50,52,93,44,91,45,57,49,46,56,48,50,53,48,53,44,51,53,46,48,51,48,52,50,53,93,44,91,45,57,50,46,49,49,57,55,49,57,44,51,53,46,48,54,54,52,57,51,93,44,91,45,57,50,46,49,50,49,51,51,54,44,51,53,46,48,49,50,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,50,54,53,56,55,44,52,49,46,49,54,54,48,57,93,44,91,45,56,55,46,53,50,54,50,48,56,44,52,49,46,48,49,48,51,52,49,93,44,91,45,56,55,46,53,50,54,48,51,49,44,52,48,46,55,51,54,56,56,53,93,44,91,45,56,55,46,50,54,55,50,57,56,44,52,48,46,55,51,54,53,56,50,93,44,91,45,56,55,46,50,55,53,56,56,50,44,52,49,46,50,49,56,53,57,53,93,44,91,45,56,55,46,52,49,52,52,50,49,44,52,49,46,49,54,50,50,52,56,93,44,91,45,56,55,46,53,50,54,53,56,55,44,52,49,46,49,54,54,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,49,52,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,57,56,51,57,54,44,51,52,46,52,54,48,56,56,51,93,44,91,45,56,51,46,51,53,53,50,53,49,44,51,52,46,50,50,51,55,57,52,93,44,91,45,56,51,46,50,57,55,51,49,55,44,51,52,46,50,54,52,53,56,55,93,44,91,45,56,51,46,49,49,51,51,54,44,51,52,46,50,55,51,53,51,93,44,91,45,56,51,46,48,53,49,54,51,56,44,51,52,46,52,57,51,55,48,50,93,44,91,45,56,51,46,49,48,51,54,55,51,44,51,52,46,53,51,54,54,49,55,93,44,91,45,56,51,46,49,55,55,56,51,56,44,51,52,46,52,55,55,48,49,55,93,44,91,45,56,51,46,51,57,56,51,57,54,44,51,52,46,52,54,48,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,72,101,110,100,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,49,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,54,51,55,54,51,44,50,54,46,53,49,51,51,50,52,93,44,91,45,56,49,46,50,55,49,55,54,56,44,50,54,46,53,49,55,48,54,57,93,44,91,45,56,49,46,50,54,56,53,53,44,50,54,46,50,53,51,48,52,53,93,44,91,45,56,48,46,56,55,57,56,48,57,44,50,54,46,50,53,57,52,53,53,93,44,91,45,56,48,46,56,56,49,50,51,51,44,50,54,46,51,51,51,56,48,54,93,44,91,45,56,48,46,56,56,53,54,51,57,44,50,54,46,57,53,56,57,49,57,93,44,91,45,56,48,46,57,52,53,51,53,52,44,50,54,46,55,54,57,48,52,57,93,44,91,45,56,49,46,53,54,53,57,51,49,44,50,54,46,55,54,57,53,53,50,93,44,91,45,56,49,46,53,54,51,55,54,51,44,50,54,46,53,49,51,51,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,53,34,44,34,78,65,77,69,34,58,34,84,97,108,105,97,102,101,114,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,55,57,57,55,53,44,51,51,46,53,57,57,55,57,50,93,44,91,45,56,50,46,56,49,50,57,53,56,44,51,51,46,54,53,53,56,51,54,93,44,91,45,56,50,46,56,57,48,53,57,57,44,51,51,46,54,51,50,56,55,55,93,44,91,45,56,50,46,57,52,57,48,52,54,44,51,51,46,55,51,51,51,51,51,93,44,91,45,56,50,46,57,57,53,54,48,50,44,51,51,46,54,57,51,53,56,51,93,44,91,45,56,51,46,48,49,50,56,53,51,44,51,51,46,52,54,57,49,55,56,93,44,91,45,56,50,46,56,53,49,57,53,52,44,51,51,46,52,52,51,53,52,51,93,44,91,45,56,50,46,54,55,57,57,55,53,44,51,51,46,53,57,57,55,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,50,49,48,44,34,98,101,100,115,34,58,49,52,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,49,49,53,57,49,55,44,51,48,46,49,54,48,51,52,55,93,44,91,45,57,52,46,50,48,51,55,48,57,44,51,48,46,49,56,56,56,49,57,93,44,91,45,57,52,46,50,57,50,54,50,57,44,51,48,46,49,49,55,54,55,49,93,44,91,45,57,52,46,52,52,52,57,49,44,51,48,46,49,49,51,48,49,53,93,44,91,45,57,52,46,52,52,50,50,51,53,44,50,57,46,56,56,57,53,51,56,93,44,91,45,57,52,46,51,53,55,57,55,54,44,50,57,46,56,56,55,52,54,52,93,44,91,45,57,52,46,51,53,52,56,56,44,50,57,46,53,48,54,51,50,56,93,44,91,45,57,52,46,48,51,51,53,54,53,44,50,57,46,54,50,53,48,48,50,93,44,91,45,57,51,46,56,49,52,51,53,49,44,50,57,46,53,57,54,53,55,54,93,44,91,45,57,51,46,57,50,50,55,52,52,44,50,57,46,56,49,56,56,48,56,93,44,91,45,57,51,46,56,53,52,52,49,50,44,50,57,46,56,54,53,48,53,51,93,44,91,45,57,51,46,56,54,48,49,54,57,44,50,57,46,57,55,55,51,57,55,93,44,91,45,57,52,46,48,51,49,57,55,54,44,51,48,46,48,50,56,48,49,51,93,44,91,45,57,52,46,49,49,53,57,49,55,44,51,48,46,49,54,48,51,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,77,101,97,103,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,52,57,56,48,57,53,44,52,54,46,55,54,50,53,48,50,93,44,91,45,49,49,49,46,51,50,48,49,56,49,44,52,54,46,53,54,57,52,48,49,93,44,91,45,49,49,49,46,50,52,54,53,49,57,44,52,54,46,52,51,56,49,48,57,93,44,91,45,49,49,49,46,48,53,54,57,57,54,44,52,54,46,51,57,56,49,50,50,93,44,91,45,49,49,49,46,49,49,56,49,50,51,44,52,54,46,51,49,54,57,55,93,44,91,45,49,49,49,46,48,54,49,57,53,54,44,52,54,46,49,57,50,56,51,52,93,44,91,45,49,49,48,46,55,56,51,56,51,51,44,52,54,46,49,57,50,54,57,57,93,44,91,45,49,49,48,46,50,56,49,57,49,54,44,52,54,46,49,56,52,51,57,55,93,44,91,45,49,49,48,46,50,56,49,57,55,49,44,52,54,46,50,50,48,54,48,53,93,44,91,45,49,49,48,46,50,55,51,51,51,55,44,52,54,46,55,49,48,53,48,57,93,44,91,45,49,49,48,46,52,53,52,53,54,54,44,52,54,46,54,55,57,53,52,53,93,44,91,45,49,49,48,46,54,53,50,56,55,55,44,52,54,46,56,50,51,54,50,54,93,44,91,45,49,49,48,46,57,49,51,48,51,53,44,52,54,46,57,56,48,53,53,57,93,44,91,45,49,49,49,46,48,56,52,50,56,53,44,52,55,46,48,49,48,54,49,51,93,44,91,45,49,49,49,46,53,51,57,51,55,51,44,52,55,46,48,48,48,53,53,57,93,44,91,45,49,49,49,46,54,53,56,49,51,50,44,52,54,46,57,49,51,52,50,51,93,44,91,45,49,49,49,46,54,48,51,49,53,51,44,52,54,46,56,48,57,57,52,57,93,44,91,45,49,49,49,46,52,57,56,48,57,53,44,52,54,46,55,54,50,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,76,97,32,80,108,97,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,49,48,49,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,44,91,45,49,48,56,46,48,51,51,49,52,54,44,51,55,46,52,54,52,57,52,93,44,91,45,49,48,56,46,50,48,52,56,51,54,44,51,55,46,51,52,52,48,56,93,44,91,45,49,48,56,46,50,57,49,54,55,54,44,51,55,46,50,50,50,48,48,51,93,44,91,45,49,48,56,46,50,57,48,52,53,57,44,51,55,46,49,52,53,57,55,53,93,44,91,45,49,48,56,46,51,55,57,51,48,51,44,51,54,46,57,57,57,54,48,56,93,44,91,45,49,48,55,46,52,56,49,55,51,55,44,51,55,46,48,48,48,49,50,55,93,44,91,45,49,48,55,46,52,56,50,49,51,49,44,51,55,46,52,50,50,54,55,51,93,44,91,45,49,48,55,46,52,56,50,49,55,57,44,51,55,46,54,51,57,53,48,49,93,44,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,66,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,50,50,51,54,44,34,98,101,100,115,34,58,49,49,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,49,56,54,48,54,44,51,49,46,51,50,48,50,48,50,93,44,91,45,57,55,46,57,48,55,49,44,51,49,46,48,54,57,51,55,52,93,44,91,45,57,55,46,57,49,49,54,56,52,44,51,49,46,48,51,52,57,49,57,93,44,91,45,57,55,46,56,50,56,53,49,50,44,51,48,46,57,48,54,49,56,56,93,44,91,45,57,55,46,54,50,53,50,56,56,44,51,48,46,56,55,48,52,51,93,44,91,45,57,55,46,51,49,53,53,48,55,44,51,48,46,55,53,50,51,55,49,93,44,91,45,57,55,46,50,53,57,48,56,50,44,51,48,46,56,56,57,53,57,54,93,44,91,45,57,55,46,48,55,48,49,56,56,44,51,48,46,57,56,54,50,50,93,44,91,45,57,55,46,50,55,56,49,49,51,44,51,49,46,50,55,57,55,57,57,93,44,91,45,57,55,46,52,49,56,54,48,54,44,51,49,46,51,50,48,50,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,75,101,109,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,49,52,52,49,51,44,51,50,46,57,50,54,54,93,44,91,45,56,56,46,57,49,52,53,49,54,44,51,50,46,53,55,54,57,53,53,93,44,91,45,56,56,46,51,56,56,55,57,55,44,51,50,46,53,55,56,49,50,51,93,44,91,45,56,56,46,51,52,55,56,56,55,44,51,50,46,57,50,57,48,56,50,93,44,91,45,56,56,46,56,49,50,55,56,50,44,51,50,46,57,50,53,57,55,51,93,44,91,45,56,56,46,57,49,52,52,49,51,44,51,50,46,57,50,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,56,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,55,56,54,52,54,44,51,52,46,51,52,48,56,53,49,93,44,91,45,57,51,46,52,51,52,56,56,55,44,51,52,46,48,53,50,50,57,56,93,44,91,45,57,51,46,51,55,51,52,48,54,44,51,51,46,57,53,55,48,55,93,44,91,45,57,51,46,50,57,48,53,55,49,44,51,51,46,56,52,53,49,51,51,93,44,91,45,57,51,46,49,48,52,50,57,44,51,51,46,55,55,55,48,49,49,93,44,91,45,57,50,46,56,57,51,53,51,52,44,51,51,46,56,48,57,57,52,51,93,44,91,45,57,50,46,56,56,54,50,56,53,44,51,52,46,49,53,53,56,55,55,93,44,91,45,57,51,46,48,52,50,48,50,53,44,51,52,46,49,53,57,56,53,50,93,44,91,45,57,51,46,48,51,53,48,51,57,44,51,52,46,50,51,54,54,54,52,93,44,91,45,57,51,46,51,53,54,56,52,44,51,52,46,50,56,48,51,48,54,93,44,91,45,57,51,46,52,48,56,49,50,52,44,51,52,46,51,51,57,53,50,55,93,44,91,45,57,51,46,52,55,56,54,52,54,44,51,52,46,51,52,48,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,75,108,97,109,97,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,51,49,48,44,34,98,101,100,115,34,58,49,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,52,52,55,53,51,56,44,52,49,46,57,57,55,52,54,53,93,44,91,45,49,50,48,46,56,55,57,57,50,54,44,52,49,46,57,57,51,55,54,52,93,44,91,45,49,50,48,46,56,56,51,51,50,55,44,52,50,46,55,52,52,50,49,52,93,44,91,45,49,50,49,46,51,52,57,54,55,57,44,52,50,46,55,52,54,54,52,52,93,44,91,45,49,50,49,46,51,52,56,52,55,49,44,52,51,46,51,53,54,55,53,51,93,44,91,45,49,50,49,46,51,51,50,57,54,57,44,52,51,46,54,49,54,54,52,53,93,44,91,45,49,50,50,46,48,48,50,51,54,50,44,52,51,46,54,49,53,52,57,56,93,44,91,45,49,50,50,46,49,51,48,54,56,57,44,52,51,46,53,53,55,49,52,51,93,44,91,45,49,50,50,46,49,51,50,48,51,52,44,52,51,46,52,52,48,50,50,49,93,44,91,45,49,50,50,46,48,50,50,54,54,50,44,52,51,46,51,54,50,51,48,52,93,44,91,45,49,50,49,46,57,56,48,53,53,52,44,52,51,46,50,54,53,49,56,93,44,91,45,49,50,50,46,48,57,51,55,55,54,44,52,51,46,48,55,54,50,53,55,93,44,91,45,49,50,50,46,50,56,50,53,56,53,44,52,51,46,48,54,55,55,49,57,93,44,91,45,49,50,50,46,50,56,50,55,51,44,52,50,46,57,57,54,52,57,57,93,44,91,45,49,50,50,46,50,56,57,55,52,56,44,52,50,46,48,48,56,48,57,56,93,44,91,45,49,50,49,46,52,52,55,53,51,56,44,52,49,46,57,57,55,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,79,115,119,101,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,49,48,52,44,34,98,101,100,115,34,58,49,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,52,52,55,49,50,44,52,51,46,55,48,51,52,54,54,93,44,91,45,55,54,46,54,48,53,48,49,50,44,52,51,46,50,53,51,53,55,93,44,91,45,55,54,46,52,55,57,50,50,52,44,52,51,46,50,50,55,53,49,57,93,44,91,45,55,54,46,49,54,57,48,52,55,44,52,51,46,50,52,54,54,54,56,93,44,91,45,55,53,46,57,57,51,51,57,52,44,52,51,46,49,56,51,51,55,54,93,44,91,45,55,53,46,56,56,52,50,55,53,44,52,51,46,49,53,53,53,54,50,93,44,91,45,55,53,46,56,49,52,54,50,55,44,52,51,46,52,56,51,53,55,56,93,44,91,45,55,53,46,55,53,54,50,49,51,44,52,51,46,52,55,48,51,56,56,93,44,91,45,55,53,46,55,55,52,53,53,51,44,52,51,46,54,56,56,56,56,52,93,44,91,45,55,54,46,48,50,50,48,48,51,44,52,51,46,54,54,56,49,52,51,93,44,91,45,55,54,46,54,52,52,55,49,50,44,52,51,46,55,48,51,52,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,78,97,114,97,110,106,105,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,53,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,50,55,56,48,55,54,44,49,56,46,51,50,57,57,55,53,93,44,91,45,54,54,46,51,49,51,50,57,57,44,49,56,46,50,52,57,51,50,52,93,44,91,45,54,54,46,50,54,54,52,54,54,44,49,56,46,50,52,53,50,55,93,44,91,45,54,54,46,50,48,54,49,51,53,44,49,56,46,50,55,54,54,54,93,44,91,45,54,54,46,50,48,52,55,51,52,44,49,56,46,51,49,54,48,51,53,93,44,91,45,54,54,46,50,55,56,48,55,54,44,49,56,46,51,50,57,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,53,51,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,52,51,54,49,55,44,51,52,46,50,48,48,48,48,54,93,44,91,45,56,53,46,55,51,56,57,55,53,44,51,51,46,57,54,56,52,54,93,44,91,45,56,53,46,53,51,48,48,57,52,44,51,51,46,57,52,49,52,50,51,93,44,91,45,56,53,46,51,57,56,56,51,55,44,51,51,46,57,54,52,49,50,57,93,44,91,45,56,53,46,52,50,49,56,53,50,44,51,52,46,48,56,48,56,50,50,93,44,91,45,56,53,46,52,54,50,50,48,55,44,51,52,46,50,56,54,51,56,54,93,44,91,45,56,53,46,53,49,51,54,49,50,44,51,52,46,53,50,51,56,50,53,93,44,91,45,56,53,46,54,51,54,54,52,53,44,51,52,46,51,54,54,54,50,50,93,44,91,45,56,53,46,56,52,51,54,49,55,44,51,52,46,50,48,48,48,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,97,110,100,101,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,49,49,56,49,55,44,50,57,46,54,50,55,53,49,52,93,44,91,45,57,56,46,57,56,51,55,56,55,44,50,57,46,54,50,51,52,53,93,44,91,45,57,56,46,57,50,55,49,54,49,44,50,57,46,53,54,50,50,53,93,44,91,45,57,56,46,56,48,54,53,53,50,44,50,57,46,54,57,48,55,48,57,93,44,91,45,57,56,46,55,55,56,55,56,50,44,50,57,46,55,50,48,49,54,55,93,44,91,45,57,56,46,57,49,55,55,50,53,44,50,57,46,55,56,49,51,57,56,93,44,91,45,57,57,46,49,55,54,57,56,56,44,50,57,46,56,57,53,48,54,51,93,44,91,45,57,57,46,54,48,50,55,55,54,44,50,57,46,57,48,55,54,55,57,93,44,91,45,57,57,46,54,48,51,49,51,44,50,57,46,54,50,55,49,56,49,93,44,91,45,57,57,46,52,49,49,56,49,55,44,50,57,46,54,50,55,53,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,82,111,115,101,98,117,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,53,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,55,51,56,53,52,56,44,52,54,46,52,56,49,56,48,54,93,44,91,45,49,48,55,46,49,55,52,53,51,49,44,52,54,46,52,56,50,55,49,51,93,44,91,45,49,48,55,46,49,53,51,52,52,52,44,52,54,46,51,57,53,54,49,51,93,44,91,45,49,48,55,46,48,50,56,52,50,50,44,52,54,46,51,57,53,52,54,93,44,91,45,49,48,55,46,48,48,53,53,51,52,44,52,54,46,49,51,54,54,54,57,93,44,91,45,49,48,54,46,57,51,57,48,54,55,44,52,54,46,49,51,54,54,54,55,93,44,91,45,49,48,54,46,57,51,57,48,57,53,44,52,53,46,56,55,48,48,52,49,93,44,91,45,49,48,54,46,57,49,50,57,53,57,44,52,53,46,54,56,51,57,49,53,93,44,91,45,49,48,54,46,55,50,57,53,55,49,44,52,53,46,54,55,50,56,53,93,44,91,45,49,48,54,46,55,50,57,53,52,51,44,52,53,46,51,53,49,52,56,93,44,91,45,49,48,54,46,55,54,56,48,49,52,44,52,53,46,49,55,57,55,50,56,93,44,91,45,49,48,54,46,50,55,57,55,48,57,44,52,53,46,49,55,57,55,50,56,93,44,91,45,49,48,54,46,50,51,53,55,49,54,44,52,53,46,51,53,49,55,57,54,93,44,91,45,49,48,54,46,50,51,52,53,48,50,44,52,53,46,55,56,56,53,55,56,93,44,91,45,49,48,54,46,49,57,49,55,51,52,44,52,53,46,55,56,56,54,93,44,91,45,49,48,54,46,49,57,49,54,50,57,44,52,54,46,49,51,55,49,56,51,93,44,91,45,49,48,54,46,49,53,51,52,51,51,44,52,54,46,49,51,55,50,54,93,44,91,45,49,48,54,46,49,53,53,49,52,51,44,52,54,46,52,56,51,54,51,52,93,44,91,45,49,48,54,46,49,50,48,51,54,54,44,52,54,46,52,56,51,54,52,56,93,44,91,45,49,48,54,46,49,50,48,54,51,44,52,54,46,56,51,49,52,51,56,93,44,91,45,49,48,54,46,48,56,54,52,54,51,44,52,54,46,56,52,53,56,56,49,93,44,91,45,49,48,54,46,55,50,48,49,53,55,44,52,54,46,56,53,57,54,48,51,93,44,91,45,49,48,55,46,56,57,50,50,51,51,44,52,54,46,56,53,49,50,49,53,93,44,91,45,49,48,55,46,56,50,55,54,56,55,44,52,54,46,55,53,53,56,55,53,93,44,91,45,49,48,55,46,55,56,49,50,49,52,44,52,54,46,52,57,54,48,49,52,93,44,91,45,49,48,55,46,55,51,56,53,52,56,44,52,54,46,52,56,49,56,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,48,55,56,53,49,44,51,54,46,57,57,54,49,51,52,93,44,91,45,49,48,52,46,48,48,56,56,50,51,44,51,54,46,50,49,56,49,49,53,93,44,91,45,49,48,51,46,55,57,51,57,57,49,44,51,54,46,49,55,51,57,55,50,93,44,91,45,49,48,51,46,55,57,52,53,50,53,44,51,54,46,48,56,53,55,51,56,93,44,91,45,49,48,51,46,51,54,52,57,55,55,44,51,54,46,48,56,54,48,53,93,44,91,45,49,48,51,46,51,55,53,49,49,55,44,51,53,46,55,51,57,53,49,54,93,44,91,45,49,48,51,46,48,52,49,51,52,57,44,51,53,46,55,51,57,52,51,51,93,44,91,45,49,48,51,46,48,52,49,48,54,50,44,51,54,46,48,53,53,50,50,54,93,44,91,45,49,48,51,46,48,52,49,55,49,51,44,51,54,46,53,48,48,52,51,57,93,44,91,45,49,48,51,46,48,48,50,51,53,57,44,51,54,46,53,48,48,53,53,49,93,44,91,45,49,48,51,46,48,48,50,51,50,57,44,51,55,46,48,48,48,49,53,93,44,91,45,49,48,51,46,48,56,54,49,48,50,44,51,55,46,48,48,48,49,56,56,93,44,91,45,49,48,52,46,48,48,55,56,53,49,44,51,54,46,57,57,54,49,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,83,99,104,111,111,108,99,114,97,102,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,54,57,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,52,57,51,50,44,52,54,46,53,48,52,55,53,56,93,44,91,45,56,54,46,51,54,52,57,53,51,44,52,54,46,53,48,53,56,53,50,93,44,91,45,56,54,46,51,54,52,57,56,57,44,52,54,46,51,51,49,57,50,55,93,44,91,45,56,54,46,54,49,53,51,57,55,44,52,54,46,51,51,51,50,54,51,93,44,91,45,56,54,46,54,49,53,54,48,49,44,52,54,46,49,53,56,54,57,49,93,44,91,45,56,54,46,52,57,48,49,52,50,44,52,54,46,49,53,56,49,55,56,93,44,91,45,56,54,46,52,53,57,49,49,52,44,52,53,46,56,57,54,51,54,51,93,44,91,45,56,54,46,52,54,48,55,57,55,44,52,53,46,53,56,52,52,51,51,93,44,91,45,56,53,46,56,53,53,55,54,56,44,52,53,46,53,55,56,51,56,54,93,44,91,45,56,53,46,56,54,56,50,52,49,44,52,53,46,56,49,57,55,57,53,93,44,91,45,56,53,46,56,54,53,48,50,53,44,52,54,46,50,52,52,54,51,49,93,44,91,45,56,53,46,56,54,52,57,51,50,44,52,54,46,53,48,52,55,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,85,108,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,51,48,51,44,34,98,101,100,115,34,58,51,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,56,48,54,57,51,44,52,50,46,48,49,54,51,55,53,93,44,91,45,55,52,46,52,53,51,54,56,53,44,52,49,46,56,55,53,53,57,53,93,44,91,45,55,52,46,53,55,53,48,56,54,44,52,49,46,55,52,53,50,53,56,93,44,91,45,55,52,46,51,57,53,48,55,49,44,52,49,46,54,52,52,56,55,54,93,44,91,45,55,52,46,51,54,55,48,53,53,44,52,49,46,53,57,48,57,55,55,93,44,91,45,55,51,46,57,53,51,51,48,55,44,52,49,46,53,56,57,57,55,55,93,44,91,45,55,51,46,57,54,50,50,50,49,44,52,49,46,57,48,49,48,50,93,44,91,45,55,51,46,57,50,57,54,50,54,44,52,50,46,48,55,56,55,55,56,93,44,91,45,55,51,46,57,49,48,54,55,53,44,52,50,46,49,50,55,50,57,51,93,44,91,45,55,52,46,48,48,50,52,53,44,52,50,46,49,55,54,57,57,50,93,44,91,45,55,52,46,48,55,52,55,57,55,44,52,50,46,48,57,54,53,56,57,93,44,91,45,55,52,46,51,48,55,53,55,49,44,52,50,46,49,49,52,51,52,54,93,44,91,45,55,52,46,52,53,49,55,49,51,44,52,50,46,49,54,57,50,50,53,93,44,91,45,55,52,46,55,56,48,54,57,51,44,52,50,46,48,49,54,51,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,97,109,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,55,51,54,55,44,34,98,101,100,115,34,58,49,57,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,48,53,57,57,49,51,44,51,57,46,57,57,49,53,50,57,93,44,91,45,55,53,46,49,51,57,56,51,50,44,51,57,46,56,56,56,51,49,55,93,44,91,45,55,52,46,56,55,55,50,54,44,51,57,46,54,48,56,51,53,50,93,44,91,45,55,52,46,55,51,54,50,49,54,44,51,57,46,55,50,57,55,55,53,93,44,91,45,55,52,46,57,48,50,57,54,51,44,51,57,46,55,57,49,49,48,56,93,44,91,45,55,52,46,57,51,48,55,52,53,44,51,57,46,56,56,53,57,48,56,93,44,91,45,55,53,46,48,53,57,57,49,51,44,51,57,46,57,57,49,53,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,54,57,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,48,51,53,54,57,44,51,57,46,49,49,55,53,57,50,93,44,91,45,57,48,46,53,55,48,49,54,57,44,51,56,46,57,57,51,50,57,93,44,91,45,57,48,46,52,53,48,56,49,51,44,51,56,46,57,54,55,55,54,57,93,44,91,45,57,48,46,50,55,53,55,48,50,44,51,56,46,57,50,51,53,50,57,93,44,91,45,57,48,46,49,52,53,57,56,52,44,51,56,46,57,57,57,51,48,51,93,44,91,45,57,48,46,49,52,56,49,50,49,44,51,57,46,50,54,49,57,52,55,93,44,91,45,57,48,46,51,49,51,50,56,57,44,51,57,46,49,55,52,50,56,57,93,44,91,45,57,48,46,53,54,48,48,55,49,44,51,57,46,49,56,55,52,51,93,44,91,45,57,48,46,54,48,51,53,54,57,44,51,57,46,49,49,55,53,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,97,110,111,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,52,52,57,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,51,48,54,55,44,51,55,46,55,48,53,54,55,51,93,44,91,45,55,55,46,52,57,51,57,57,44,51,55,46,55,48,49,48,48,56,93,44,91,45,55,55,46,51,56,49,55,53,53,44,51,55,46,53,57,52,53,49,51,93,44,91,45,55,55,46,50,52,48,57,56,56,44,51,55,46,53,51,56,48,56,56,93,44,91,45,55,55,46,49,50,51,54,55,53,44,51,55,46,54,50,54,56,56,49,93,44,91,45,55,55,46,51,52,53,50,49,53,44,51,55,46,55,56,57,49,55,53,93,44,91,45,55,55,46,54,52,50,53,49,56,44,51,55,46,57,57,48,54,56,56,93,44,91,45,55,55,46,54,56,55,52,54,57,44,51,56,46,48,48,55,56,48,54,93,44,91,45,55,55,46,55,57,55,51,48,54,44,51,55,46,55,50,57,51,53,56,93,44,91,45,55,55,46,54,51,48,54,55,44,51,55,46,55,48,53,54,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,87,97,108,108,97,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,55,56,49,57,53,44,51,57,46,49,51,52,55,54,49,93,44,91,45,49,48,50,46,48,52,55,49,54,49,44,51,57,46,49,51,51,49,52,55,93,44,91,45,49,48,50,46,48,52,54,53,55,49,44,51,57,46,48,52,55,48,51,56,93,44,91,45,49,48,50,46,48,52,53,50,49,50,44,51,56,46,54,57,55,53,54,55,93,44,91,45,49,48,49,46,53,54,55,48,57,52,44,51,56,46,54,57,57,54,54,57,93,44,91,45,49,48,49,46,52,56,52,51,56,51,44,51,56,46,55,48,48,49,54,54,93,44,91,45,49,48,49,46,52,55,56,49,57,53,44,51,57,46,49,51,52,55,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,103,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,57,52,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,49,50,49,49,52,44,52,55,46,50,50,51,50,54,57,93,44,91,45,56,55,46,49,49,54,49,51,56,44,52,54,46,49,53,57,48,53,93,44,91,45,56,54,46,54,49,53,54,48,49,44,52,54,46,49,53,56,54,57,49,93,44,91,45,56,54,46,54,49,53,51,57,55,44,52,54,46,51,51,51,50,54,51,93,44,91,45,56,54,46,51,54,52,57,56,57,44,52,54,46,51,51,49,57,50,55,93,44,91,45,56,54,46,51,54,52,57,53,51,44,52,54,46,53,48,53,56,53,50,93,44,91,45,56,53,46,56,54,52,57,51,50,44,52,54,46,53,48,52,55,53,56,93,44,91,45,56,53,46,56,53,52,56,54,50,44,52,55,46,51,48,53,52,56,50,93,44,91,45,56,55,46,49,49,50,54,57,53,44,52,55,46,56,49,55,57,57,56,93,44,91,45,56,55,46,49,49,50,49,49,52,44,52,55,46,50,50,51,50,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,53,48,50,57,53,44,51,54,46,52,57,56,54,49,93,44,91,45,57,50,46,49,53,54,57,57,44,51,54,46,50,54,49,50,52,56,93,44,91,45,57,49,46,54,57,49,52,51,53,44,51,54,46,50,53,51,51,48,49,93,44,91,45,57,49,46,53,54,54,48,55,56,44,51,54,46,50,52,57,57,52,53,93,44,91,45,57,49,46,53,54,53,56,54,54,44,51,54,46,51,51,55,52,93,44,91,45,57,49,46,52,53,52,52,51,55,44,51,54,46,51,51,53,52,54,53,93,44,91,45,57,49,46,52,53,48,48,48,50,44,51,54,46,52,57,55,54,53,93,44,91,45,57,49,46,54,55,50,51,52,51,44,51,54,46,52,57,57,52,54,51,93,44,91,45,57,50,46,49,50,48,52,51,44,51,54,46,52,57,56,55,93,44,91,45,57,50,46,49,53,48,50,57,53,44,51,54,46,52,57,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,53,34,44,34,78,65,77,69,34,58,34,72,105,100,97,108,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,57,51,56,57,44,34,98,101,100,115,34,58,49,52,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,56,54,55,49,53,44,50,54,46,50,53,55,53,52,50,93,44,91,45,57,56,46,52,54,50,55,49,52,44,50,54,46,50,50,53,56,48,50,93,44,91,45,57,56,46,49,57,56,52,54,54,44,50,54,46,48,53,53,51,57,55,93,44,91,45,57,56,46,48,51,56,51,54,55,44,50,54,46,48,52,50,49,48,55,93,44,91,45,57,55,46,56,54,49,56,50,50,44,50,54,46,48,54,57,57,50,49,93,44,91,45,57,55,46,56,54,49,56,55,53,44,50,54,46,51,52,56,49,53,54,93,44,91,45,57,55,46,56,54,49,57,50,44,50,54,46,52,51,51,53,55,57,93,44,91,45,57,56,46,48,48,52,49,56,57,44,50,54,46,52,52,56,55,56,52,93,44,91,45,57,55,46,57,53,55,52,48,53,44,50,54,46,54,49,49,55,54,57,93,44,91,45,57,55,46,57,56,53,52,57,52,44,50,54,46,55,56,48,57,49,55,93,44,91,45,57,56,46,51,50,48,54,55,44,50,54,46,55,56,51,48,56,49,93,44,91,45,57,56,46,53,56,54,55,49,53,44,50,54,46,50,53,55,53,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,82,111,98,101,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,52,52,50,44,34,98,101,100,115,34,58,52,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,53,48,48,50,52,44,51,52,46,54,50,49,48,53,51,93,44,91,45,55,57,46,48,55,49,50,49,49,44,51,52,46,50,57,57,51,52,50,93,44,91,45,55,56,46,57,53,49,56,48,56,44,51,52,46,52,52,56,55,53,54,93,44,91,45,55,56,46,56,54,56,57,54,49,44,51,52,46,52,56,52,55,55,56,93,44,91,45,55,56,46,56,48,53,56,51,52,44,51,52,46,54,56,57,53,54,93,44,91,45,55,56,46,57,48,49,57,57,56,44,51,52,46,56,51,53,50,54,56,93,44,91,45,55,57,46,48,51,56,55,52,55,44,51,52,46,57,53,50,55,49,53,93,44,91,45,55,57,46,49,57,49,51,57,49,44,51,52,46,56,51,51,55,49,55,93,44,91,45,55,57,46,51,52,55,56,54,56,44,51,52,46,56,51,56,53,53,51,93,44,91,45,55,57,46,51,51,48,57,52,57,44,51,52,46,55,55,51,56,50,49,93,44,91,45,55,57,46,52,54,49,53,48,54,44,51,52,46,54,51,48,51,55,57,93,44,91,45,55,57,46,52,53,48,48,50,52,44,51,52,46,54,50,49,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,78,101,119,97,121,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,49,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,44,91,45,56,54,46,48,51,55,56,56,52,44,52,51,46,56,49,53,54,49,49,93,44,91,45,56,54,46,48,51,57,52,57,49,44,52,51,46,52,54,55,52,52,55,93,44,91,45,56,54,46,48,51,56,57,53,51,44,52,51,46,50,57,51,53,49,57,93,44,91,45,56,53,46,55,57,48,52,52,56,44,52,51,46,50,57,51,48,48,51,93,44,91,45,56,53,46,53,54,50,53,51,56,44,52,51,46,50,57,52,50,55,49,93,44,91,45,56,53,46,53,54,50,51,52,56,44,52,51,46,52,54,56,49,51,93,44,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,77,111,114,114,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,49,53,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,57,57,57,53,48,49,44,52,53,46,56,49,50,53,49,55,93,44,91,45,49,50,48,46,48,48,54,53,53,53,44,52,53,46,50,53,55,55,48,54,93,44,91,45,49,49,57,46,55,57,48,54,57,57,44,52,53,46,48,54,55,56,50,51,93,44,91,45,49,49,57,46,54,55,50,50,50,56,44,52,52,46,57,57,53,49,49,55,93,44,91,45,49,49,57,46,49,54,50,57,54,54,44,52,52,46,57,57,54,50,52,49,93,44,91,45,49,49,57,46,49,52,54,52,50,52,44,52,53,46,48,56,50,57,52,93,44,91,45,49,49,57,46,49,52,53,49,52,52,44,52,53,46,53,49,53,57,48,57,93,44,91,45,49,49,57,46,50,52,56,53,52,55,44,52,53,46,54,48,49,57,51,53,93,44,91,45,49,49,57,46,52,51,52,54,52,44,52,53,46,54,48,50,57,56,53,93,44,91,45,49,49,57,46,52,51,50,49,53,44,52,53,46,57,49,56,50,55,49,93,44,91,45,49,49,57,46,53,55,49,54,48,50,44,52,53,46,57,50,53,52,55,56,93,44,91,45,49,49,57,46,54,54,57,57,55,52,44,52,53,46,56,53,54,57,48,56,93,44,91,45,49,49,57,46,56,54,56,51,49,50,44,52,53,46,56,51,54,49,57,56,93,44,91,45,49,49,57,46,57,57,57,53,48,49,44,52,53,46,56,49,50,53,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,84,111,100,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,52,48,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,53,53,53,55,44,52,54,46,51,54,56,56,56,93,44,91,45,57,53,46,49,52,53,56,56,44,52,54,46,49,48,54,55,54,49,93,44,91,45,57,53,46,49,51,57,55,51,49,44,52,53,46,55,55,51,52,49,54,93,44,91,45,57,52,46,54,52,51,57,57,44,52,53,46,55,55,51,57,53,93,44,91,45,57,52,46,54,53,51,52,54,50,44,52,54,46,51,52,56,54,55,56,93,44,91,45,57,52,46,55,51,49,52,52,50,44,52,54,46,51,54,56,54,48,53,93,44,91,45,57,53,46,49,53,53,53,55,44,52,54,46,51,54,56,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,53,55,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,49,48,48,55,54,44,51,53,46,51,55,53,50,52,50,93,44,91,45,57,51,46,57,50,48,49,53,55,44,51,53,46,50,50,57,53,56,53,93,44,91,45,57,52,46,48,50,56,56,56,54,44,51,53,46,50,49,51,56,52,49,93,44,91,45,57,52,46,48,51,49,50,51,54,44,51,53,46,49,52,48,57,48,56,93,44,91,45,57,52,46,49,52,48,53,55,49,44,51,53,46,48,57,57,54,55,56,93,44,91,45,57,52,46,48,55,52,52,52,57,44,51,53,46,48,50,54,52,51,50,93,44,91,45,57,51,46,55,48,52,56,56,53,44,51,53,46,48,49,57,55,49,53,93,44,91,45,57,51,46,55,48,54,56,52,50,44,51,53,46,49,51,52,57,52,51,93,44,91,45,57,51,46,53,50,57,55,51,57,44,51,53,46,49,52,53,52,51,51,93,44,91,45,57,51,46,52,53,55,48,50,50,44,51,53,46,50,49,53,55,56,50,93,44,91,45,57,51,46,50,55,57,57,50,57,44,51,53,46,50,49,50,53,53,54,93,44,91,45,57,51,46,50,55,56,49,51,54,44,51,53,46,51,49,55,53,48,51,93,44,91,45,57,51,46,50,57,57,48,49,44,51,53,46,51,50,55,54,52,52,93,44,91,45,57,51,46,52,51,48,52,49,44,51,53,46,52,50,51,55,51,55,93,44,91,45,57,51,46,55,49,48,48,55,54,44,51,53,46,51,55,53,50,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,52,52,49,44,34,98,101,100,115,34,58,49,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,53,53,54,44,51,53,46,52,49,57,56,49,49,93,44,91,45,56,48,46,57,53,52,56,54,44,51,53,46,52,48,48,48,55,56,93,44,91,45,56,48,46,57,52,55,51,52,52,44,51,53,46,52,56,56,52,55,51,93,44,91,45,56,48,46,57,54,48,48,50,53,44,51,53,46,53,52,55,48,50,93,44,91,45,56,49,46,53,51,53,52,48,51,44,51,53,46,53,54,56,49,51,55,93,44,91,45,56,49,46,53,51,55,53,57,57,44,51,53,46,53,54,52,50,50,56,93,44,91,45,56,49,46,52,53,53,54,44,51,53,46,52,49,57,56,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,105,108,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,55,53,57,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,52,51,52,53,44,51,51,46,53,53,50,50,53,51,93,44,91,45,57,52,46,48,52,50,57,56,55,44,51,51,46,50,55,49,50,52,50,93,44,91,45,57,52,46,48,52,50,57,54,52,44,51,51,46,48,49,57,50,49,57,93,44,91,45,57,51,46,56,49,52,53,53,51,44,51,51,46,48,49,57,51,55,49,93,44,91,45,57,51,46,56,48,52,57,51,44,51,51,46,48,49,57,51,53,55,93,44,91,45,57,51,46,56,53,57,48,56,55,44,51,51,46,48,56,57,53,51,55,93,44,91,45,57,51,46,54,56,51,55,49,53,44,51,51,46,50,56,49,48,57,50,93,44,91,45,57,51,46,55,50,50,56,54,55,44,51,51,46,52,56,49,57,54,51,93,44,91,45,57,51,46,56,50,53,56,56,52,44,51,51,46,54,48,57,56,53,51,93,44,91,45,57,51,46,57,51,53,54,48,54,44,51,51,46,53,53,48,49,55,54,93,44,91,45,57,52,46,48,52,51,52,53,44,51,51,46,53,53,50,50,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,49,49,57,52,44,34,98,101,100,115,34,58,52,51,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,49,52,52,52,54,44,50,56,46,55,56,52,57,53,53,93,44,91,45,56,49,46,54,53,56,53,57,55,44,50,56,46,55,54,54,56,55,93,44,91,45,56,49,46,54,53,55,50,54,56,44,50,56,46,51,52,55,48,57,56,93,44,91,45,56,48,46,56,54,50,57,48,56,44,50,56,46,51,52,55,52,56,55,93,44,91,45,56,48,46,56,56,53,57,48,50,44,50,56,46,53,49,48,50,51,56,93,44,91,45,56,48,46,57,56,55,50,53,44,50,56,46,54,49,50,57,57,55,93,44,91,45,56,49,46,51,50,55,56,57,44,50,56,46,54,49,48,50,55,55,93,44,91,45,56,49,46,52,53,57,55,50,56,44,50,56,46,54,52,48,49,57,54,93,44,91,45,56,49,46,52,49,52,52,52,54,44,50,56,46,55,56,52,57,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,117,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,56,54,48,56,52,53,44,51,55,46,55,55,53,53,49,55,93,44,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,44,91,45,49,48,55,46,52,56,50,49,55,57,44,51,55,46,54,51,57,53,48,49,93,44,91,45,49,48,55,46,52,56,50,50,52,53,44,51,55,46,55,54,56,51,53,51,93,44,91,45,49,48,55,46,53,54,56,56,55,53,44,51,55,46,57,54,53,48,49,53,93,44,91,45,49,48,55,46,55,51,56,50,56,51,44,51,55,46,57,48,53,52,51,50,93,44,91,45,49,48,55,46,56,54,48,56,52,53,44,51,55,46,55,55,53,53,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,55,57,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,55,53,54,51,54,44,52,50,46,52,49,54,49,53,56,93,44,91,45,49,49,49,46,56,57,54,55,50,56,44,52,50,46,50,53,54,50,55,54,93,44,91,45,49,49,50,46,49,50,54,49,57,52,44,52,50,46,50,56,53,50,50,57,93,44,91,45,49,49,50,46,49,48,57,52,52,52,44,52,49,46,57,57,55,55,57,52,93,44,91,45,49,49,49,46,53,48,55,56,48,54,44,52,49,46,57,57,57,53,53,50,93,44,91,45,49,49,49,46,53,57,53,55,52,51,44,52,50,46,48,57,52,50,49,93,44,91,45,49,49,49,46,54,50,54,49,48,52,44,52,50,46,50,48,55,53,52,50,93,44,91,45,49,49,49,46,53,54,54,54,50,56,44,52,50,46,50,55,51,53,55,52,93,44,91,45,49,49,49,46,53,57,57,50,50,55,44,52,50,46,52,49,53,51,57,53,93,44,91,45,49,49,49,46,56,55,53,54,51,54,44,52,50,46,52,49,54,49,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,48,50,50,44,34,98,101,100,115,34,58,51,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,51,55,57,50,54,44,51,51,46,56,49,49,57,52,50,93,44,91,45,56,53,46,48,53,48,56,56,57,44,51,51,46,55,49,52,54,51,50,93,44,91,45,56,53,46,51,51,56,50,51,44,51,51,46,54,53,51,49,49,55,93,44,91,45,56,53,46,51,48,52,52,51,57,44,51,51,46,52,56,50,56,56,52,93,44,91,45,56,53,46,50,57,51,56,48,53,44,51,51,46,52,50,56,48,57,56,93,44,91,45,56,53,46,48,49,53,51,53,56,44,51,51,46,52,50,53,53,48,54,93,44,91,45,56,52,46,56,53,48,55,49,51,44,51,51,46,53,49,49,52,53,55,93,44,91,45,56,52,46,56,48,56,57,51,52,44,51,51,46,53,55,52,48,56,53,93,44,91,45,56,52,46,57,48,53,55,56,56,44,51,51,46,53,55,51,51,55,56,93,44,91,45,56,52,46,57,48,49,54,56,56,44,51,51,46,55,56,48,55,48,51,93,44,91,45,56,53,46,48,51,55,57,50,54,44,51,51,46,56,49,49,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,82,105,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,50,57,54,44,34,98,101,100,115,34,58,49,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,53,56,55,49,57,44,51,57,46,53,54,54,52,48,49,93,44,91,45,57,54,46,57,54,49,54,57,51,44,51,57,46,50,50,48,48,55,54,93,44,91,45,57,54,46,56,52,57,56,55,57,44,51,57,46,50,49,57,48,49,50,93,44,91,45,57,54,46,56,53,49,52,48,57,44,51,57,46,48,56,56,49,55,54,93,44,91,45,57,54,46,53,48,48,57,54,50,44,51,57,46,48,55,50,54,56,49,93,44,91,45,57,54,46,53,48,49,49,54,54,44,51,57,46,48,52,51,54,54,54,93,44,91,45,57,54,46,51,57,48,55,57,54,44,51,57,46,48,52,51,50,53,55,93,44,91,45,57,54,46,51,56,57,48,52,54,44,51,57,46,49,55,50,56,55,56,93,44,91,45,57,54,46,53,49,54,55,44,51,57,46,49,55,49,49,51,93,44,91,45,57,54,46,55,49,57,49,53,56,44,51,57,46,51,57,52,51,51,56,93,44,91,45,57,54,46,53,56,48,51,54,50,44,51,57,46,53,54,54,51,51,50,93,44,91,45,57,54,46,56,48,54,53,52,52,44,51,57,46,53,54,54,52,50,51,93,44,91,45,57,54,46,57,53,56,55,49,57,44,51,57,46,53,54,54,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,49,51,34,44,34,78,65,77,69,34,58,34,83,99,104,108,101,105,99,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,54,49,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,53,50,49,54,44,51,49,46,48,56,55,57,57,52,93,44,91,45,49,48,48,46,54,56,56,55,54,52,44,51,49,46,48,56,54,53,55,54,93,44,91,45,49,48,48,46,57,54,50,49,55,54,44,51,49,46,48,56,50,52,57,93,44,91,45,49,48,48,46,57,54,48,53,56,55,44,51,48,46,55,48,54,48,55,49,93,44,91,45,49,48,48,46,49,49,54,50,51,52,44,51,48,46,55,49,48,51,54,54,93,44,91,45,49,48,48,46,49,49,53,50,49,54,44,51,49,46,48,56,55,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,82,117,115,115,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,48,56,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,48,48,56,57,50,44,51,55,46,49,52,50,53,53,51,93,44,91,45,56,50,46,49,52,57,51,55,53,44,51,55,46,48,52,49,54,52,49,93,44,91,45,56,50,46,51,50,55,56,51,44,51,54,46,57,55,48,57,56,50,93,44,91,45,56,50,46,52,48,54,54,51,51,44,51,54,46,56,55,54,51,53,54,93,44,91,45,56,50,46,51,51,50,48,55,56,44,51,54,46,55,48,56,57,54,57,93,44,91,45,56,49,46,57,52,57,50,55,54,44,51,54,46,56,54,52,52,55,51,93,44,91,45,56,49,46,56,51,55,48,57,54,44,51,54,46,57,50,57,48,51,57,93,44,91,45,56,49,46,55,56,48,53,52,53,44,51,54,46,57,53,56,54,50,57,93,44,91,45,56,49,46,57,48,48,56,57,50,44,51,55,46,49,52,50,53,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,108,100,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,55,55,57,44,34,98,101,100,115,34,58,49,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,49,48,53,49,54,44,51,54,46,49,49,49,53,49,49,93,44,91,45,56,49,46,55,51,53,54,55,51,44,51,54,46,48,54,55,53,56,52,93,44,91,45,56,49,46,56,48,55,49,54,50,44,51,53,46,57,54,49,57,53,53,93,44,91,45,56,49,46,53,53,53,57,57,52,44,51,53,46,55,55,55,53,51,56,93,44,91,45,56,49,46,51,54,51,55,57,54,44,51,53,46,55,54,55,56,48,50,93,44,91,45,56,49,46,51,51,52,50,55,50,44,51,53,46,55,57,54,50,56,49,93,44,91,45,56,49,46,51,50,56,51,50,52,44,51,53,46,57,57,54,53,56,51,93,44,91,45,56,49,46,53,52,53,52,56,56,44,51,54,46,49,49,55,52,55,53,93,44,91,45,56,49,46,56,49,48,53,49,54,44,51,54,46,49,49,49,53,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,55,48,53,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,57,55,54,56,52,57,44,52,51,46,57,50,55,51,56,53,93,44,91,45,49,49,49,46,57,51,52,51,53,55,44,52,51,46,55,54,54,49,54,93,44,91,45,49,49,49,46,54,50,54,48,52,51,44,52,51,46,54,50,54,55,53,54,93,44,91,45,49,49,49,46,51,57,57,55,54,53,44,52,51,46,54,50,49,57,55,54,93,44,91,45,49,49,49,46,51,57,56,55,56,49,44,52,51,46,57,50,50,56,57,93,44,91,45,49,49,49,46,53,53,56,56,51,51,44,52,51,46,56,56,51,51,48,53,93,44,91,45,49,49,49,46,57,55,54,56,52,57,44,52,51,46,57,50,55,51,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,87,97,114,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,57,50,56,44,34,98,101,100,115,34,58,51,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,49,54,56,57,51,44,51,56,46,50,52,54,48,55,55,93,44,91,45,56,55,46,52,54,55,50,56,52,44,51,56,46,49,54,53,52,48,51,93,44,91,45,56,55,46,52,53,49,49,57,57,44,51,55,46,57,52,48,57,53,52,93,44,91,45,56,55,46,51,48,50,57,51,50,44,51,55,46,56,57,55,55,53,93,44,91,45,56,55,46,50,54,56,57,57,53,44,51,55,46,56,55,56,48,50,54,93,44,91,45,56,55,46,50,50,53,55,48,49,44,51,55,46,57,55,49,54,54,55,93,44,91,45,56,55,46,48,49,55,52,53,51,44,51,56,46,49,49,56,51,48,49,93,44,91,45,56,55,46,48,49,55,52,57,44,51,56,46,50,48,51,53,56,93,44,91,45,56,55,46,48,55,51,48,54,55,44,51,56,46,50,51,50,53,57,54,93,44,91,45,56,55,46,51,49,54,56,57,51,44,51,56,46,50,52,54,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,53,50,55,55,49,44,51,55,46,49,57,50,52,51,50,93,44,91,45,56,53,46,53,50,54,56,56,49,44,51,55,46,49,48,57,52,53,93,44,91,45,56,53,46,52,53,49,56,51,44,51,54,46,57,51,56,49,51,56,93,44,91,45,56,53,46,50,51,50,48,50,54,44,51,54,46,57,50,53,48,54,57,93,44,91,45,56,53,46,50,48,53,56,51,49,44,51,54,46,57,57,54,56,54,50,93,44,91,45,56,53,46,48,52,51,51,49,54,44,51,55,46,49,56,54,48,50,56,93,44,91,45,56,53,46,48,53,54,56,57,56,44,51,55,46,50,53,55,48,52,49,93,44,91,45,56,53,46,49,54,53,49,55,52,44,51,55,46,51,49,48,51,57,54,93,44,91,45,56,53,46,51,53,50,55,55,49,44,51,55,46,49,57,50,52,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,97,108,108,97,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,50,51,53,49,57,44,51,56,46,55,54,49,56,55,93,44,91,45,56,52,46,57,51,52,53,51,54,44,51,56,46,54,54,50,49,51,93,44,91,45,56,52,46,55,56,53,55,56,56,44,51,56,46,55,50,48,52,53,57,93,44,91,45,56,52,46,54,54,48,49,48,55,44,51,56,46,55,55,55,50,57,51,93,44,91,45,56,52,46,55,57,53,48,51,57,44,51,56,46,56,53,55,50,55,93,44,91,45,56,53,46,48,50,51,53,49,57,44,51,56,46,55,54,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,54,56,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,48,53,51,52,54,44,51,56,46,53,56,50,48,51,57,93,44,91,45,56,52,46,52,55,54,50,57,57,44,51,56,46,53,52,50,55,50,51,93,44,91,45,56,52,46,53,53,55,51,55,53,44,51,56,46,52,57,50,57,49,55,93,44,91,45,56,52,46,52,53,57,57,48,54,44,51,56,46,51,55,56,57,57,53,93,44,91,45,56,52,46,52,52,50,54,54,49,44,51,56,46,50,56,51,50,51,54,93,44,91,45,56,52,46,51,52,53,52,55,54,44,51,56,46,50,56,53,48,57,57,93,44,91,45,56,52,46,49,57,52,48,53,44,51,56,46,51,55,49,55,53,93,44,91,45,56,52,46,49,48,50,49,44,51,56,46,52,53,57,51,55,57,93,44,91,45,56,52,46,49,54,50,48,51,49,44,51,56,46,53,53,52,49,50,53,93,44,91,45,56,52,46,50,48,53,51,52,54,44,51,56,46,53,56,50,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,83,97,103,97,100,97,104,111,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,50,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,48,48,53,52,55,49,44,52,52,46,49,50,52,53,49,57,93,44,91,45,55,48,46,48,51,52,50,51,56,44,52,51,46,57,55,53,54,54,49,93,44,91,45,54,57,46,56,57,51,50,51,50,44,52,51,46,56,55,56,53,49,56,93,44,91,45,54,57,46,56,56,49,56,57,53,44,52,51,46,54,51,54,52,54,54,93,44,91,45,54,57,46,54,54,52,55,52,53,44,52,51,46,55,49,49,55,52,56,93,44,91,45,54,57,46,55,48,48,48,57,55,44,52,52,46,48,48,54,54,56,53,93,44,91,45,54,57,46,56,49,51,53,52,57,44,52,52,46,48,50,54,48,49,49,93,44,91,45,54,57,46,55,53,56,50,48,56,44,52,52,46,49,51,57,51,51,52,93,44,91,45,55,48,46,48,48,53,52,55,49,44,52,52,46,49,50,52,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,83,119,101,101,116,32,71,114,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,50,56,49,57,49,54,44,52,54,46,49,56,52,51,57,55,93,44,91,45,49,49,48,46,50,57,50,54,54,50,44,52,53,46,55,56,53,48,53,55,93,44,91,45,49,49,48,46,50,50,48,57,48,56,44,52,53,46,55,56,52,57,55,51,93,44,91,45,49,49,48,46,50,50,56,48,53,50,44,52,53,46,49,55,50,49,50,57,93,44,91,45,49,49,48,46,48,54,52,53,49,56,44,52,53,46,49,55,50,49,50,57,93,44,91,45,49,49,48,46,48,54,52,53,56,49,44,52,53,46,51,52,56,55,53,53,93,44,91,45,49,48,57,46,57,51,49,57,56,52,44,52,53,46,51,52,56,55,53,53,93,44,91,45,49,48,57,46,57,51,50,48,50,53,44,52,53,46,53,50,50,52,53,54,93,44,91,45,49,48,57,46,54,56,53,51,56,53,44,52,53,46,54,48,57,48,50,50,93,44,91,45,49,48,57,46,53,54,50,48,55,44,52,53,46,54,48,57,49,49,57,93,44,91,45,49,48,57,46,53,54,51,57,48,55,44,52,53,46,55,56,51,52,55,49,93,44,91,45,49,48,57,46,53,48,54,54,48,52,44,52,53,46,57,53,57,49,49,50,93,44,91,45,49,48,57,46,52,49,55,49,53,56,44,52,54,46,48,52,52,55,53,57,93,44,91,45,49,48,57,46,54,48,53,49,53,51,44,52,54,46,48,52,52,57,57,52,93,44,91,45,49,48,57,46,54,53,51,56,55,49,44,52,54,46,50,49,57,52,48,52,93,44,91,45,49,49,48,46,50,56,49,57,55,49,44,52,54,46,50,50,48,54,48,53,93,44,91,45,49,49,48,46,50,56,49,57,49,54,44,52,54,46,49,56,52,51,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,71,114,97,121,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,53,54,48,44,34,98,101,100,115,34,58,54,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,52,52,54,49,49,44,51,51,46,57,52,57,50,49,55,93,44,91,45,57,54,46,57,52,51,56,54,44,51,51,46,52,49,54,52,49,93,44,91,45,57,54,46,56,51,52,49,49,44,51,51,46,52,48,53,52,57,56,93,44,91,45,57,54,46,51,56,52,54,48,50,44,51,51,46,51,57,55,56,50,54,93,44,91,45,57,54,46,51,55,57,52,53,50,44,51,51,46,55,50,53,55,54,52,93,44,91,45,57,54,46,53,48,48,57,56,52,44,51,51,46,55,55,50,56,48,49,93,44,91,45,57,54,46,53,56,56,53,48,50,44,51,51,46,56,57,52,57,56,51,93,44,91,45,57,54,46,54,57,48,55,48,56,44,51,51,46,56,52,57,57,53,57,93,44,91,45,57,54,46,56,54,54,52,51,56,44,51,51,46,56,53,51,49,52,57,93,44,91,45,57,54,46,57,51,52,56,52,44,51,51,46,57,53,52,52,53,51,93,44,91,45,57,54,46,57,52,52,54,49,49,44,51,51,46,57,52,57,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,49,52,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,48,57,49,44,51,57,46,57,54,50,50,93,44,91,45,56,48,46,53,49,57,51,52,50,44,51,57,46,55,50,49,52,48,51,93,44,91,45,56,48,46,52,50,49,51,56,56,44,51,57,46,55,50,49,49,56,57,93,44,91,45,55,57,46,57,49,54,50,56,44,51,57,46,55,50,48,55,55,55,93,44,91,45,55,57,46,57,50,53,53,57,55,44,51,57,46,57,50,52,55,57,53,93,44,91,45,55,57,46,57,57,56,48,49,52,44,51,57,46,57,56,51,51,50,50,93,44,91,45,56,48,46,50,56,55,52,50,49,44,52,48,46,48,49,57,50,48,54,93,44,91,45,56,48,46,53,49,57,48,57,49,44,51,57,46,57,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,56,56,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,56,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,119,101,115,116,32,65,114,99,116,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,51,52,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,53,46,51,49,56,55,52,52,44,54,56,46,48,48,48,48,51,50,93,44,91,45,49,53,53,46,51,49,56,55,52,56,44,54,56,46,48,51,52,57,52,50,93,44,91,45,49,53,54,46,50,51,54,56,49,55,44,54,56,46,48,51,52,57,50,54,93,44,91,45,49,53,54,46,50,51,54,56,51,49,44,54,56,46,49,50,49,52,57,56,93,44,91,45,49,53,55,46,49,53,52,57,49,44,54,56,46,49,50,49,52,56,51,93,44,91,45,49,53,55,46,49,53,52,57,50,52,44,54,56,46,50,48,56,48,53,52,93,44,91,45,49,53,56,46,52,53,55,56,51,54,44,54,56,46,50,48,56,48,49,54,93,44,91,45,49,53,57,46,54,57,51,52,55,55,44,54,56,46,50,48,55,57,57,50,93,44,91,45,49,53,57,46,54,57,51,52,56,55,44,54,56,46,50,57,52,53,54,52,93,44,91,45,49,54,48,46,49,53,57,52,53,50,44,54,56,46,50,57,52,53,53,51,93,44,91,45,49,54,48,46,49,53,57,52,52,44,54,56,46,50,48,55,57,56,50,93,44,91,45,49,54,49,46,48,57,49,51,53,49,44,54,56,46,50,48,55,57,54,49,93,44,91,45,49,54,49,46,48,57,49,51,54,52,44,54,56,46,50,57,52,53,51,50,93,44,91,45,49,54,49,46,53,53,55,51,50,44,54,56,46,50,57,52,53,50,49,93,44,91,45,49,54,49,46,53,53,55,51,50,56,44,54,56,46,50,48,55,57,52,57,93,44,91,45,49,54,50,46,48,50,51,50,54,49,44,54,56,46,50,48,55,57,52,93,44,91,45,49,54,50,46,48,50,51,50,55,51,44,54,56,46,50,57,52,53,49,49,93,44,91,45,49,54,50,46,55,50,50,50,48,50,44,54,56,46,50,57,52,52,57,54,93,44,91,45,49,54,50,46,55,50,50,49,57,44,54,56,46,50,48,55,57,50,54,93,44,91,45,49,54,52,46,52,57,57,52,54,51,44,54,56,46,50,48,55,56,57,93,44,91,45,49,54,52,46,52,57,57,52,51,55,44,54,56,46,48,51,52,55,52,56,93,44,91,45,49,54,53,46,53,57,54,48,52,54,44,54,56,46,48,51,52,55,50,55,93,44,91,45,49,54,53,46,52,57,57,52,53,51,44,54,56,46,48,49,56,55,56,50,93,44,91,45,49,54,52,46,54,54,52,57,50,49,44,54,55,46,54,57,56,50,49,54,93,44,91,45,49,54,52,46,49,55,53,52,50,57,44,54,55,46,53,52,55,53,57,57,93,44,91,45,49,54,52,46,48,48,52,53,49,44,54,55,46,51,57,55,56,48,56,93,44,91,45,49,54,51,46,56,56,50,53,51,52,44,54,55,46,50,49,52,57,55,54,93,44,91,45,49,54,51,46,57,57,49,50,51,44,54,55,46,49,52,55,56,56,51,93,44,91,45,49,54,51,46,55,56,49,53,50,52,44,54,55,46,48,54,57,55,54,93,44,91,45,49,54,51,46,48,52,57,52,55,49,44,54,54,46,57,56,54,54,49,49,93,44,91,45,49,54,50,46,56,51,50,48,51,50,44,54,54,46,57,50,54,56,49,51,93,44,91,45,49,54,51,46,54,50,54,50,49,53,44,54,54,46,54,50,52,49,55,52,93,44,91,45,49,54,51,46,56,48,53,48,57,51,44,54,54,46,54,52,49,50,56,54,93,44,91,45,49,54,52,46,52,54,49,52,52,57,44,54,54,46,54,50,54,53,48,57,93,44,91,45,49,54,52,46,51,49,56,57,51,54,44,54,54,46,52,55,54,51,49,57,93,44,91,45,49,54,52,46,51,49,56,57,49,51,44,54,54,46,49,50,57,57,52,52,93,44,91,45,49,54,52,46,50,52,52,49,57,49,44,54,54,46,49,50,57,57,52,54,93,44,91,45,49,54,52,46,50,52,52,49,50,55,44,54,53,46,55,56,51,53,53,51,93,44,91,45,49,54,51,46,57,54,51,53,49,54,44,54,53,46,55,56,51,53,54,49,93,44,91,45,49,54,51,46,57,54,51,52,57,56,44,54,53,46,54,49,48,51,54,51,93,44,91,45,49,54,51,46,55,53,53,52,48,55,44,54,53,46,54,49,48,51,54,55,93,44,91,45,49,54,51,46,55,53,53,51,57,49,44,54,53,46,52,51,55,49,54,53,93,44,91,45,49,54,49,46,53,52,54,56,57,50,44,54,53,46,52,51,55,50,48,51,93,44,91,45,49,53,57,46,56,48,49,54,57,50,44,54,53,46,52,51,55,50,51,49,93,44,91,45,49,53,57,46,53,57,51,53,48,54,44,54,53,46,53,50,51,56,51,53,93,44,91,45,49,53,57,46,54,48,52,56,49,51,44,54,53,46,57,53,54,56,51,93,44,91,45,49,53,56,46,57,55,50,49,55,53,44,54,53,46,57,53,54,56,52,57,93,44,91,45,49,53,56,46,57,55,50,49,56,53,44,54,54,46,49,51,48,48,50,55,93,44,91,45,49,53,55,46,57,48,54,50,57,53,44,54,54,46,49,51,48,48,52,57,93,44,91,45,49,53,55,46,57,48,54,51,49,44,54,54,46,52,55,54,52,50,52,93,44,91,45,49,53,55,46,48,53,49,50,56,52,44,54,54,46,52,55,54,52,51,56,93,44,91,45,49,53,55,46,48,53,49,50,54,54,44,54,54,46,51,48,51,50,53,52,93,44,91,45,49,53,54,46,54,50,51,55,53,55,44,54,54,46,51,48,51,50,53,57,93,44,91,45,49,53,54,46,54,50,51,55,55,44,54,54,46,52,55,54,52,52,50,93,44,91,45,49,53,54,46,49,57,54,50,50,52,44,54,54,46,52,55,54,53,56,50,93,44,91,45,49,53,53,46,57,56,50,53,48,52,44,54,54,46,51,56,57,56,54,93,44,91,45,49,53,53,46,57,56,50,52,57,57,44,54,54,46,51,48,51,50,54,56,93,44,91,45,49,53,53,46,53,53,52,57,57,51,44,54,54,46,51,48,51,50,55,52,93,44,91,45,49,53,53,46,53,49,48,53,56,53,44,54,54,46,53,54,51,48,53,49,93,44,91,45,49,53,52,46,56,54,48,52,51,49,44,54,54,46,53,54,51,48,54,52,93,44,91,45,49,53,52,46,56,54,48,52,52,54,44,54,54,46,55,51,54,50,52,50,93,44,91,45,49,53,52,46,50,49,48,51,48,50,44,54,54,46,55,51,54,50,53,53,93,44,91,45,49,53,52,46,49,52,54,50,50,49,44,54,54,46,56,50,50,56,52,51,93,44,91,45,49,53,52,46,49,52,54,51,49,52,44,54,55,46,49,54,57,49,55,56,93,44,91,45,49,53,52,46,51,48,51,49,49,44,54,55,46,50,53,53,55,53,57,93,44,91,45,49,53,52,46,55,52,56,57,48,52,44,54,55,46,50,53,53,55,53,51,93,44,91,45,49,53,52,46,55,52,56,57,51,57,44,54,55,46,53,49,53,52,57,53,93,44,91,45,49,53,53,46,51,54,56,57,57,57,44,54,55,46,55,55,53,50,49,54,93,44,91,45,49,53,53,46,51,49,56,55,52,52,44,54,56,46,48,48,48,48,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,69,108,108,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,56,55,56,44,34,98,101,100,115,34,58,49,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,57,49,55,55,54,44,51,57,46,49,51,50,51,53,55,93,44,91,45,57,57,46,53,57,56,51,50,51,44,51,56,46,54,57,54,53,49,52,93,44,91,45,57,57,46,53,56,53,48,56,55,44,51,56,46,54,57,54,53,51,55,93,44,91,45,57,57,46,48,52,50,54,50,54,44,51,56,46,54,57,54,56,48,55,93,44,91,45,57,57,46,48,51,55,53,44,51,57,46,49,51,51,49,50,49,93,44,91,45,57,57,46,48,52,55,54,56,55,44,51,57,46,49,51,51,48,49,52,93,44,91,45,57,57,46,53,57,49,55,55,54,44,51,57,46,49,51,50,51,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,56,55,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,49,53,55,48,57,44,51,51,46,48,48,54,56,50,52,93,44,91,45,56,55,46,56,51,49,53,56,54,44,51,50,46,56,54,52,56,54,54,93,44,91,45,56,55,46,55,56,54,53,55,49,44,51,50,46,54,56,50,52,56,49,93,44,91,45,56,55,46,56,49,50,53,53,57,44,51,50,46,53,50,52,53,54,93,44,91,45,56,55,46,55,50,56,55,52,52,44,51,50,46,52,56,48,57,49,56,93,44,91,45,56,55,46,53,50,52,52,56,53,44,51,50,46,52,56,50,48,50,56,93,44,91,45,56,55,46,52,55,51,57,49,53,44,51,50,46,54,53,53,56,54,55,93,44,91,45,56,55,46,52,55,50,49,55,52,44,51,50,46,56,51,48,54,50,93,44,91,45,56,55,46,52,50,49,50,44,51,50,46,56,55,52,53,48,56,93,44,91,45,56,55,46,52,50,49,57,51,54,44,51,51,46,48,48,51,51,55,57,93,44,91,45,56,55,46,55,49,53,55,48,57,44,51,51,46,48,48,54,56,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,50,49,50,44,51,50,46,56,55,52,53,48,56,93,44,91,45,56,55,46,52,55,50,49,55,52,44,51,50,46,56,51,48,54,50,93,44,91,45,56,55,46,52,55,51,57,49,53,44,51,50,46,54,53,53,56,54,55,93,44,91,45,56,55,46,53,50,52,52,56,53,44,51,50,46,52,56,50,48,50,56,93,44,91,45,56,55,46,52,55,51,48,56,44,51,50,46,51,48,55,54,49,52,93,44,91,45,56,55,46,52,50,51,49,53,51,44,51,50,46,52,56,50,57,54,53,93,44,91,45,56,55,46,49,49,50,51,54,50,44,51,50,46,52,56,56,54,53,93,44,91,45,56,55,46,48,49,55,55,54,50,44,51,50,46,55,50,57,53,51,50,93,44,91,45,56,55,46,48,49,57,49,53,55,44,51,50,46,56,51,55,48,51,52,93,44,91,45,56,55,46,51,49,57,49,56,52,44,51,50,46,56,51,49,53,50,50,93,44,91,45,56,55,46,52,50,49,50,44,51,50,46,56,55,52,53,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,111,108,98,101,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,52,57,53,44,34,98,101,100,115,34,58,51,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,50,54,53,49,44,51,52,46,56,48,48,48,50,50,93,44,91,45,56,55,46,53,50,52,51,54,51,44,51,52,46,56,51,50,51,56,52,93,44,91,45,56,55,46,56,51,53,56,51,51,44,51,52,46,55,52,49,50,51,57,93,44,91,45,56,55,46,57,55,51,50,50,50,44,51,52,46,56,56,50,53,53,93,44,91,45,56,56,46,48,57,55,56,56,56,44,51,52,46,56,57,50,50,48,50,93,44,91,45,56,56,46,49,51,57,57,56,56,44,51,52,46,53,56,49,55,48,51,93,44,91,45,56,55,46,53,50,57,54,54,55,44,51,52,46,53,54,55,48,56,49,93,44,91,45,56,55,46,52,51,51,48,54,44,51,52,46,55,49,55,52,56,53,93,44,91,45,56,55,46,52,50,54,53,49,44,51,52,46,56,48,48,48,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,80,114,97,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,56,50,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,49,51,53,53,44,51,55,46,55,51,50,57,55,93,44,91,45,57,57,46,48,49,50,53,57,56,44,51,55,46,52,55,48,52,50,49,93,44,91,45,57,56,46,52,54,52,54,54,51,44,51,55,46,52,55,49,48,49,51,93,44,91,45,57,56,46,52,54,52,56,48,52,44,51,55,46,55,51,50,54,55,53,93,44,91,45,57,56,46,52,55,50,50,53,55,44,51,55,46,56,50,52,52,57,55,93,44,91,45,57,57,46,48,49,51,51,49,56,44,51,55,46,56,50,53,51,51,54,93,44,91,45,57,57,46,48,49,51,53,53,44,51,55,46,55,51,50,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,111,117,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,52,52,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,57,52,48,53,44,51,56,46,51,55,49,55,53,93,44,91,45,56,52,46,51,52,53,52,55,54,44,51,56,46,50,56,53,48,57,57,93,44,91,45,56,52,46,52,52,50,54,54,49,44,51,56,46,50,56,51,50,51,54,93,44,91,45,56,52,46,52,48,49,56,52,55,44,51,56,46,50,48,55,56,56,57,93,44,91,45,56,52,46,51,56,48,55,56,56,44,51,56,46,49,49,51,57,54,93,44,91,45,56,52,46,50,56,54,52,54,49,44,51,56,46,48,54,55,48,50,56,93,44,91,45,56,52,46,48,56,48,53,50,55,44,51,56,46,49,49,53,49,49,56,93,44,91,45,56,51,46,57,55,55,57,50,52,44,51,56,46,49,57,50,49,49,56,93,44,91,45,56,52,46,48,54,50,54,57,49,44,51,56,46,50,51,53,50,48,51,93,44,91,45,56,52,46,49,57,52,48,53,44,51,56,46,51,55,49,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,82,117,116,104,101,114,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,55,49,50,56,44,34,98,101,100,115,34,58,56,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,49,56,56,57,50,44,51,53,46,57,54,56,50,50,52,93,44,91,45,56,54,46,54,49,51,51,50,56,44,51,53,46,55,57,48,51,51,49,93,44,91,45,56,54,46,54,56,54,49,57,51,44,51,53,46,55,49,48,48,53,49,93,44,91,45,56,54,46,54,51,57,52,51,54,44,51,53,46,54,56,53,57,93,44,91,45,56,54,46,53,52,51,49,49,54,44,51,53,46,54,57,55,54,49,55,93,44,91,45,56,54,46,52,49,51,54,55,56,44,51,53,46,54,50,51,49,55,55,93,44,91,45,56,54,46,50,52,53,49,54,53,44,51,53,46,54,51,49,57,49,51,93,44,91,45,56,54,46,50,48,55,49,52,55,44,51,53,46,55,48,51,55,57,93,44,91,45,56,54,46,49,53,51,50,49,52,44,51,53,46,57,53,52,51,57,57,93,44,91,45,56,54,46,51,50,54,50,53,50,44,51,53,46,57,56,53,48,48,56,93,44,91,45,56,54,46,53,49,53,53,56,57,44,51,54,46,49,48,48,54,49,93,44,91,45,56,54,46,54,49,56,56,57,50,44,51,53,46,57,54,56,50,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,67,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,56,52,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,49,50,54,48,55,44,51,49,46,51,50,55,52,48,53,93,44,91,45,56,51,46,53,48,57,56,49,44,51,49,46,50,48,54,49,56,49,93,44,91,45,56,51,46,53,55,52,56,53,55,44,51,49,46,48,55,56,49,51,53,93,44,91,45,56,51,46,52,55,53,54,49,55,44,51,49,46,48,51,49,57,54,52,93,44,91,45,56,51,46,50,57,53,48,53,50,44,51,49,46,48,50,55,50,55,56,93,44,91,45,56,51,46,51,51,53,57,52,57,44,51,49,46,50,52,52,53,55,57,93,44,91,45,56,51,46,52,51,52,52,57,50,44,51,49,46,51,53,48,51,54,49,93,44,91,45,56,51,46,53,49,50,54,48,55,44,51,49,46,51,50,55,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,76,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,52,55,50,44,51,56,46,54,57,56,49,54,53,93,44,91,45,49,48,48,46,54,56,56,48,48,54,44,51,56,46,55,48,48,48,50,49,93,44,91,45,49,48,48,46,54,56,52,54,57,57,44,51,56,46,50,54,52,49,51,55,93,44,91,45,49,48,48,46,50,52,52,51,57,51,44,51,56,46,50,54,50,50,57,93,44,91,45,49,48,48,46,50,52,55,50,44,51,56,46,54,57,56,49,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,97,114,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,52,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,52,49,49,49,54,44,51,54,46,57,57,57,54,49,93,44,91,45,49,48,48,46,48,48,50,53,54,51,44,51,55,46,48,48,49,55,48,54,93,44,91,45,49,48,48,46,48,48,51,49,54,44,51,54,46,53,57,51,50,53,93,44,91,45,57,57,46,54,48,53,54,51,52,44,51,54,46,53,57,50,55,53,52,93,44,91,45,57,57,46,50,57,53,49,57,51,44,51,54,46,53,57,53,48,51,49,93,44,91,45,57,57,46,50,57,53,49,56,54,44,51,54,46,56,49,57,53,54,54,93,44,91,45,57,57,46,52,53,54,50,48,51,44,51,54,46,57,57,57,52,55,49,93,44,91,45,57,57,46,53,52,49,49,49,54,44,51,54,46,57,57,57,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,80,105,97,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,50,55,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,52,53,49,54,52,44,52,48,46,48,53,53,49,57,49,93,44,91,45,56,56,46,55,52,53,54,55,49,44,51,57,46,55,57,50,49,52,54,93,44,91,45,56,56,46,52,55,51,49,56,50,44,51,57,46,55,57,49,56,51,55,93,44,91,45,56,56,46,52,54,50,50,48,55,44,51,57,46,56,55,57,48,57,50,93,44,91,45,56,56,46,52,54,48,52,49,56,44,52,48,46,50,56,49,57,51,53,93,44,91,45,56,56,46,53,55,52,56,56,53,44,52,48,46,50,56,49,53,48,49,93,44,91,45,56,56,46,55,52,53,49,54,52,44,52,48,46,48,53,53,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,67,114,111,115,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,54,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,44,91,45,49,48,49,46,53,54,51,53,56,44,51,51,46,56,51,48,52,53,49,93,44,91,45,49,48,49,46,53,53,54,56,56,52,44,51,51,46,51,57,52,55,54,93,44,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,44,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,70,97,106,97,114,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,48,48,49,44,34,98,101,100,115,34,58,50,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,54,52,54,48,56,51,44,49,56,46,52,52,50,50,50,93,44,91,45,54,53,46,54,56,53,57,50,44,49,56,46,51,50,57,57,57,49,93,44,91,45,54,53,46,55,53,51,53,57,49,44,49,56,46,50,57,54,55,53,53,93,44,91,45,54,53,46,54,50,52,54,48,53,44,49,56,46,50,56,55,55,52,53,93,44,91,45,54,53,46,52,54,57,49,51,50,44,49,56,46,51,57,54,52,49,93,44,91,45,54,53,46,54,52,54,48,56,51,44,49,56,46,52,52,50,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,50,54,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,55,49,56,53,50,44,51,50,46,57,57,53,56,54,93,44,91,45,56,56,46,50,48,55,51,49,54,44,51,50,46,57,50,52,55,56,50,93,44,91,45,56,56,46,49,51,50,54,56,53,44,51,50,46,56,51,50,56,53,51,93,44,91,45,56,56,46,48,53,53,48,48,52,44,51,50,46,54,52,54,52,56,50,93,44,91,45,56,55,46,57,50,56,54,56,57,44,51,50,46,54,51,50,50,56,52,93,44,91,45,56,55,46,56,53,51,52,50,44,51,50,46,53,51,50,48,56,54,93,44,91,45,56,55,46,56,49,50,53,53,57,44,51,50,46,53,50,52,53,54,93,44,91,45,56,55,46,55,56,54,53,55,49,44,51,50,46,54,56,50,52,56,49,93,44,91,45,56,55,46,56,51,49,53,56,54,44,51,50,46,56,54,52,56,54,54,93,44,91,45,56,55,46,55,49,53,55,48,57,44,51,51,46,48,48,54,56,50,52,93,44,91,45,56,55,46,56,51,50,50,51,51,44,51,51,46,48,49,55,50,53,56,93,44,91,45,56,55,46,56,51,55,53,50,49,44,51,51,46,49,53,51,54,51,55,93,44,91,45,56,56,46,49,55,49,56,53,50,44,51,50,46,57,57,53,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,54,49,55,51,52,53,44,52,52,46,53,53,48,51,57,50,93,44,91,45,49,49,49,46,56,54,51,54,53,55,44,52,52,46,53,53,49,50,52,52,93,44,91,45,49,49,50,46,48,57,54,52,56,52,44,52,52,46,53,50,50,57,57,50,93,44,91,45,49,49,50,46,50,56,56,54,55,51,44,52,52,46,53,54,55,57,49,93,44,91,45,49,49,50,46,52,55,51,52,49,57,44,52,52,46,52,55,57,51,53,57,93,44,91,45,49,49,50,46,55,49,55,57,51,44,52,52,46,53,48,52,50,55,51,93,44,91,45,49,49,50,46,56,49,51,56,48,53,44,52,52,46,51,55,54,52,53,53,93,44,91,45,49,49,50,46,56,49,51,55,57,50,44,52,52,46,50,51,48,50,56,49,93,44,91,45,49,49,50,46,57,57,53,48,57,49,44,52,52,46,50,51,52,49,50,54,93,44,91,45,49,49,50,46,57,57,52,51,50,51,44,52,51,46,57,55,50,51,54,50,93,44,91,45,49,49,50,46,54,57,53,50,52,50,44,52,51,46,57,55,49,57,52,49,93,44,91,45,49,49,50,46,54,57,52,55,52,52,44,52,52,46,48,53,56,52,54,52,93,44,91,45,49,49,50,46,49,53,53,57,51,53,44,52,52,46,48,53,55,55,56,93,44,91,45,49,49,50,46,48,51,51,54,54,52,44,52,52,46,49,52,52,48,52,57,93,44,91,45,49,49,49,46,56,53,55,56,53,49,44,52,52,46,49,56,55,55,53,57,93,44,91,45,49,49,49,46,56,53,50,50,55,54,44,52,52,46,51,49,54,57,57,54,93,44,91,45,49,49,49,46,55,57,49,54,50,52,44,52,52,46,52,48,49,54,49,93,44,91,45,49,49,49,46,54,49,55,52,51,55,44,52,52,46,52,48,49,50,53,52,93,44,91,45,49,49,49,46,54,49,55,51,52,53,44,52,52,46,53,53,48,51,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,75,111,115,115,117,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,52,51,49,51,55,44,52,51,46,50,53,53,48,49,52,93,44,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,44,91,45,57,51,46,57,55,49,50,51,56,44,52,50,46,57,48,55,55,54,50,93,44,91,45,57,51,46,57,55,48,52,49,53,44,52,51,46,50,53,53,51,53,56,93,44,91,45,57,51,46,57,55,48,55,54,50,44,52,51,46,52,57,57,56,56,54,93,44,91,45,57,52,46,50,52,55,57,54,56,44,52,51,46,53,48,48,49,51,51,93,44,91,45,57,52,46,52,52,50,56,53,44,52,51,46,53,48,48,52,50,50,93,44,91,45,57,52,46,52,52,51,49,51,55,44,52,51,46,50,53,53,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,89,97,98,117,99,111,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,49,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,50,54,50,50,55,44,49,56,46,49,49,57,57,54,51,93,44,91,45,54,54,46,48,49,48,50,52,53,44,49,56,46,48,55,53,53,54,53,93,44,91,45,54,53,46,57,56,56,53,50,51,44,49,56,46,48,53,56,57,52,49,93,44,91,45,54,53,46,56,54,55,56,48,50,44,49,56,46,48,50,54,48,48,55,93,44,91,45,54,53,46,56,49,54,52,52,57,44,49,55,46,57,54,53,53,48,52,93,44,91,45,54,53,46,55,51,57,49,49,50,44,49,56,46,48,55,48,55,55,56,93,44,91,45,54,53,46,56,55,55,54,49,53,44,49,56,46,49,49,56,49,54,55,93,44,91,45,54,53,46,57,50,54,50,50,55,44,49,56,46,49,49,57,57,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,117,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,57,51,56,57,53,55,44,52,56,46,57,57,57,51,51,93,44,91,45,49,48,50,46,57,51,57,57,51,50,44,52,56,46,55,50,48,52,54,57,93,44,91,45,49,48,50,46,56,56,53,55,55,53,44,52,56,46,54,51,51,50,57,56,93,44,91,45,49,48,50,46,56,56,53,55,54,51,44,52,56,46,53,52,54,51,57,93,44,91,45,49,48,50,46,50,51,51,56,57,50,44,52,56,46,53,52,54,51,51,57,93,44,91,45,49,48,50,46,50,51,51,54,44,52,56,46,55,50,48,50,57,93,44,91,45,49,48,50,46,49,53,50,49,54,52,44,52,56,46,56,48,55,50,93,44,91,45,49,48,50,46,48,50,49,54,52,51,44,52,56,46,56,48,55,49,48,56,93,44,91,45,49,48,50,46,48,50,49,49,52,52,44,52,56,46,57,57,57,48,49,53,93,44,91,45,49,48,50,46,57,51,56,57,53,55,44,52,56,46,57,57,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,68,117,114,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,54,52,53,55,44,34,98,101,100,115,34,58,49,52,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,53,48,53,57,55,44,51,54,46,50,51,57,51,50,93,44,91,45,55,57,46,48,49,54,51,48,53,44,51,53,46,56,54,51,50,49,93,44,91,45,55,56,46,57,48,54,48,55,49,44,51,53,46,56,54,56,48,57,54,93,44,91,45,55,56,46,56,50,57,57,54,53,44,51,53,46,56,54,54,57,55,56,93,44,91,45,55,56,46,54,57,57,51,49,54,44,51,54,46,48,49,49,52,52,56,93,44,91,45,55,56,46,55,53,49,50,55,51,44,51,54,46,48,55,48,56,51,52,93,44,91,45,55,56,46,56,48,52,54,57,44,51,54,46,48,57,52,53,53,49,93,44,91,45,55,56,46,56,48,50,51,51,53,44,51,54,46,50,51,53,55,57,52,93,44,91,45,55,56,46,57,53,48,53,57,55,44,51,54,46,50,51,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,49,51,57,48,48,56,44,52,49,46,56,54,54,50,55,55,93,44,91,45,57,54,46,48,54,52,56,57,55,44,52,49,46,55,57,49,54,55,51,93,44,91,45,57,54,46,49,50,50,54,48,52,44,52,49,46,54,56,51,48,52,93,44,91,45,57,54,46,48,53,55,51,51,49,44,52,49,46,53,49,49,48,53,49,93,44,91,45,57,53,46,57,57,54,49,57,52,44,52,49,46,53,48,54,57,54,93,44,91,45,57,53,46,52,57,55,57,57,55,44,52,49,46,53,48,54,48,55,52,93,44,91,45,57,53,46,53,53,56,49,52,51,44,52,49,46,54,48,50,51,56,51,93,44,91,45,57,53,46,53,53,55,50,55,55,44,52,49,46,56,54,51,52,52,57,93,44,91,45,57,53,46,54,55,50,55,55,49,44,52,49,46,56,54,51,49,52,55,93,44,91,45,57,54,46,49,51,57,48,48,56,44,52,49,46,56,54,54,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,75,101,121,97,32,80,97,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,57,56,52,55,56,44,52,50,46,56,52,54,49,48,50,93,44,91,45,49,48,48,46,49,51,51,57,55,56,44,52,50,46,56,48,55,56,49,57,93,44,91,45,57,57,46,54,55,55,54,56,52,44,52,50,46,55,51,48,57,48,51,93,44,91,45,57,57,46,53,51,55,52,57,49,44,52,50,46,55,49,55,54,50,54,93,44,91,45,57,57,46,50,53,55,48,51,57,44,52,50,46,56,48,52,50,57,54,93,44,91,45,57,57,46,50,53,52,52,53,53,44,52,50,46,57,57,56,48,55,52,93,44,91,45,57,57,46,53,51,52,48,52,57,44,52,50,46,57,57,56,48,51,51,93,44,91,45,49,48,48,46,49,57,56,52,49,51,44,52,50,46,57,57,56,54,55,52,93,44,91,45,49,48,48,46,49,57,56,52,55,56,44,52,50,46,56,52,54,49,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,55,53,55,44,34,98,101,100,115,34,58,50,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,52,51,48,50,52,44,52,50,46,53,53,56,56,52,51,93,44,91,45,57,52,46,51,57,55,54,55,49,44,52,50,46,52,55,51,51,93,44,91,45,57,52,46,51,57,55,53,50,54,44,52,50,46,50,48,57,49,54,49,93,44,91,45,57,52,46,49,54,52,55,48,52,44,52,50,46,50,48,57,57,50,93,44,91,45,57,51,46,57,51,49,53,56,44,52,50,46,50,48,57,57,48,56,93,44,91,45,57,51,46,57,51,49,54,56,52,44,52,50,46,52,55,50,48,49,49,93,44,91,45,57,51,46,57,55,49,53,56,51,44,52,50,46,53,53,56,49,51,57,93,44,91,45,57,51,46,57,55,49,55,49,52,44,52,50,46,54,52,52,55,48,55,93,44,91,45,57,52,46,52,52,51,48,56,51,44,52,50,46,54,52,53,49,54,52,93,44,91,45,57,52,46,52,52,51,48,50,52,44,52,50,46,53,53,56,56,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,80,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,49,48,55,51,56,44,51,55,46,51,51,55,48,56,49,93,44,91,45,56,56,46,52,57,48,51,51,44,51,55,46,49,53,57,52,54,50,93,44,91,45,56,56,46,52,57,48,52,49,49,44,51,55,46,48,54,56,53,55,57,93,44,91,45,56,56,46,52,50,52,54,48,51,44,51,55,46,49,53,49,55,54,52,93,44,91,45,56,56,46,53,48,55,48,54,50,44,51,55,46,50,53,57,54,56,57,93,44,91,45,56,56,46,52,55,52,48,57,44,51,55,46,51,57,49,56,54,51,93,44,91,45,56,56,46,52,49,53,52,48,54,44,51,55,46,52,50,51,57,55,50,93,44,91,45,56,56,46,52,49,50,54,57,55,44,51,55,46,53,57,57,54,50,53,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,48,53,57,93,44,91,45,56,56,46,55,49,48,55,51,56,44,51,55,46,51,51,55,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,83,109,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,51,54,56,48,51,44,51,54,46,50,57,53,56,53,57,93,44,91,45,56,54,46,48,53,57,55,48,54,44,51,54,46,48,56,54,48,50,52,93,44,91,45,56,53,46,56,48,55,52,49,53,44,51,54,46,49,51,49,53,56,50,93,44,91,45,56,53,46,55,56,48,49,52,56,44,51,54,46,50,51,56,48,49,49,93,44,91,45,56,53,46,56,52,54,52,56,51,44,51,54,46,50,56,56,49,54,55,93,44,91,45,56,53,46,56,50,56,48,50,54,44,51,54,46,52,49,49,56,51,54,93,44,91,45,56,53,46,57,55,56,56,57,51,44,51,54,46,52,50,54,48,55,51,93,44,91,45,56,54,46,49,51,54,56,48,51,44,51,54,46,50,57,53,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,53,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,52,49,52,57,51,44,51,54,46,55,57,52,51,54,53,93,44,91,45,56,48,46,48,57,52,51,56,57,44,51,54,46,55,55,57,53,53,50,93,44,91,45,56,48,46,48,53,51,52,53,57,44,51,54,46,53,52,50,53,50,51,93,44,91,45,56,48,46,48,50,55,51,51,57,44,51,54,46,53,52,50,52,56,93,44,91,45,55,57,46,55,49,52,56,52,57,44,51,54,46,53,52,49,57,54,53,93,44,91,45,55,57,46,54,52,48,54,53,50,44,51,54,46,56,53,54,49,51,57,93,44,91,45,55,57,46,56,48,50,48,53,54,44,51,54,46,55,57,50,49,51,55,93,44,91,45,55,57,46,57,57,57,55,55,49,44,51,54,46,56,51,48,55,51,56,93,44,91,45,56,48,46,48,52,49,52,57,51,44,51,54,46,55,57,52,51,54,53,93,93,44,91,91,45,55,57,46,57,48,52,48,55,55,44,51,54,46,54,56,52,49,50,55,93,44,91,45,55,57,46,56,55,52,55,54,44,51,54,46,55,49,53,50,51,55,93,44,91,45,55,57,46,56,51,55,51,53,57,44,51,54,46,55,48,52,49,51,55,93,44,91,45,55,57,46,56,53,57,50,54,44,51,54,46,54,54,49,55,51,55,93,44,91,45,55,57,46,57,48,52,48,55,55,44,51,54,46,54,56,52,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,49,48,34,44,34,78,65,77,69,34,58,34,65,108,101,120,97,110,100,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,53,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,49,48,55,57,57,44,51,56,46,56,52,51,52,52,54,93,44,91,45,55,55,46,48,52,49,51,54,50,44,51,56,46,55,56,53,52,49,53,93,44,91,45,55,55,46,48,51,57,48,48,54,44,51,56,46,55,57,49,54,52,53,93,44,91,45,55,55,46,48,52,56,48,50,44,51,56,46,56,52,49,50,54,49,93,44,91,45,55,55,46,49,49,48,55,57,57,44,51,56,46,56,52,51,52,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,55,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,55,57,57,55,52,44,52,49,46,49,54,50,54,54,50,93,44,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,44,91,45,57,49,46,55,49,56,49,56,44,52,48,46,57,48,49,48,56,55,93,44,91,45,57,49,46,55,49,54,48,52,50,44,52,49,46,49,54,50,56,48,56,93,44,91,45,57,49,46,57,52,53,53,55,49,44,52,49,46,49,54,51,53,55,56,93,44,91,45,57,50,46,49,55,57,57,55,52,44,52,49,46,49,54,50,54,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,32,97,110,100,32,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,48,55,55,44,34,98,101,100,115,34,58,49,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,49,52,52,51,54,56,44,52,55,46,53,57,53,53,48,55,93,44,91,45,49,49,51,46,48,53,57,49,57,57,44,52,55,46,52,56,56,53,57,57,93,44,91,45,49,49,51,46,48,53,57,48,53,51,44,52,55,46,49,55,57,53,55,93,44,91,45,49,49,50,46,55,57,53,56,48,56,44,52,55,46,49,55,55,48,48,52,93,44,91,45,49,49,50,46,55,57,53,54,52,50,44,52,54,46,56,51,49,54,54,53,93,44,91,45,49,49,50,46,53,51,53,55,52,56,44,52,54,46,56,51,52,50,51,52,93,44,91,45,49,49,50,46,53,51,53,53,57,55,44,52,54,46,54,57,57,52,56,50,93,44,91,45,49,49,50,46,51,50,48,56,55,49,44,52,54,46,54,53,53,57,50,55,93,44,91,45,49,49,50,46,51,49,48,53,55,51,44,52,54,46,52,50,49,49,55,49,93,44,91,45,49,49,50,46,49,55,54,50,51,53,44,52,54,46,52,53,54,51,52,50,93,44,91,45,49,49,50,46,48,50,57,50,51,49,44,52,54,46,53,54,56,56,48,53,93,44,91,45,49,49,49,46,55,56,55,57,52,57,44,52,54,46,53,54,57,52,54,53,93,44,91,45,49,49,49,46,54,52,48,48,57,53,44,52,54,46,53,56,50,52,54,51,93,44,91,45,49,49,49,46,54,51,57,50,54,49,44,52,54,46,55,51,56,49,56,93,44,91,45,49,49,49,46,52,57,56,48,57,53,44,52,54,46,55,54,50,53,48,50,93,44,91,45,49,49,49,46,54,48,51,49,53,51,44,52,54,46,56,48,57,57,52,57,93,44,91,45,49,49,49,46,54,53,56,49,51,50,44,52,54,46,57,49,51,52,50,51,93,44,91,45,49,49,49,46,55,57,48,50,51,54,44,52,54,46,57,49,51,55,54,52,93,44,91,45,49,49,49,46,55,56,57,50,55,56,44,52,55,46,49,50,56,57,50,50,93,44,91,45,49,49,50,46,48,52,52,56,50,57,44,52,55,46,49,57,50,55,49,49,93,44,91,45,49,49,50,46,48,52,55,55,56,49,44,52,55,46,53,49,54,48,51,52,93,44,91,45,49,49,50,46,50,55,56,44,52,55,46,53,48,53,54,50,51,93,44,91,45,49,49,50,46,52,51,50,55,49,49,44,52,55,46,54,48,54,49,48,52,93,44,91,45,49,49,50,46,53,54,56,54,54,44,52,55,46,54,51,54,48,49,56,93,44,91,45,49,49,50,46,56,53,52,55,48,49,44,52,55,46,54,50,57,50,51,52,93,44,91,45,49,49,50,46,57,49,51,56,55,52,44,52,55,46,54,57,55,49,57,57,93,44,91,45,49,49,50,46,57,49,51,50,53,54,44,52,55,46,56,50,54,50,49,54,93,44,91,45,49,49,50,46,57,56,52,55,51,52,44,52,55,46,57,53,51,57,49,56,93,44,91,45,49,49,51,46,48,54,50,56,55,54,44,52,55,46,56,56,53,53,54,51,93,44,91,45,49,49,51,46,48,56,48,57,57,55,44,52,55,46,55,52,57,57,49,55,93,44,91,45,49,49,51,46,49,54,53,56,49,49,44,52,55,46,55,49,57,55,54,52,93,44,91,45,49,49,51,46,49,52,52,51,54,56,44,52,55,46,53,57,53,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,68,117,99,104,101,115,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,49,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,56,53,55,55,56,44,51,57,46,56,49,51,50,56,53,93,44,91,45,49,48,57,46,57,55,54,56,49,52,44,51,57,46,56,48,54,50,51,93,44,91,45,49,48,57,46,57,55,54,52,48,50,44,52,48,46,56,48,57,54,56,54,93,44,91,45,49,49,48,46,48,48,48,55,49,49,44,52,48,46,56,49,51,54,55,56,93,44,91,45,49,49,48,46,50,54,48,57,54,55,44,52,48,46,56,51,52,56,50,52,93,44,91,45,49,49,48,46,51,55,56,57,54,50,44,52,48,46,55,56,55,49,56,93,44,91,45,49,49,48,46,54,53,54,52,56,50,44,52,48,46,55,52,48,50,55,53,93,44,91,45,49,49,48,46,55,53,48,55,51,51,44,52,48,46,55,52,55,55,48,54,93,44,91,45,49,49,48,46,57,48,49,57,55,52,44,52,48,46,54,55,56,49,54,50,93,44,91,45,49,49,48,46,56,57,49,54,53,53,44,51,57,46,56,57,57,54,53,52,93,44,91,45,49,49,48,46,56,53,55,55,56,44,51,57,46,56,49,51,50,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,102,97,108,102,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,52,52,54,54,49,44,51,54,46,57,57,56,55,53,57,93,44,91,45,57,56,46,53,51,51,54,49,55,44,51,54,46,52,54,51,50,51,93,44,91,45,57,56,46,49,48,52,52,50,55,44,51,54,46,52,54,51,49,48,53,93,44,91,45,57,56,46,49,48,52,50,56,54,44,51,54,46,53,57,51,53,55,56,93,44,91,45,57,56,46,49,49,49,57,56,53,44,51,54,46,57,57,56,48,57,51,93,44,91,45,57,56,46,51,52,55,49,52,57,44,51,54,46,57,57,56,49,53,53,93,44,91,45,57,56,46,53,52,52,54,54,49,44,51,54,46,57,57,56,55,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,68,101,108,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,48,56,54,51,55,44,51,51,46,51,56,48,54,54,50,93,44,91,45,57,53,46,54,50,49,48,50,55,44,51,51,46,52,56,55,48,54,93,44,91,45,57,53,46,56,53,55,55,51,56,44,51,51,46,52,54,49,55,50,50,93,44,91,45,57,53,46,56,53,56,55,50,51,44,51,51,46,52,48,57,53,51,93,44,91,45,57,53,46,56,54,49,55,55,56,44,51,51,46,50,49,57,51,51,93,44,91,45,57,53,46,55,50,57,48,57,52,44,51,51,46,51,48,53,52,50,56,93,44,91,45,57,53,46,53,56,49,49,55,53,44,51,51,46,51,53,56,57,55,55,93,44,91,45,57,53,46,51,48,56,53,57,51,44,51,51,46,51,55,55,49,57,93,44,91,45,57,53,46,51,48,54,54,52,44,51,51,46,51,55,56,48,50,55,93,44,91,45,57,53,46,51,48,56,54,51,55,44,51,51,46,51,56,48,54,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,84,114,111,117,115,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,50,56,52,51,52,44,51,54,46,52,56,55,52,55,50,93,44,91,45,56,54,46,50,56,51,50,53,54,44,51,54,46,51,52,55,53,93,44,91,45,56,54,46,49,51,54,56,48,51,44,51,54,46,50,57,53,56,53,57,93,44,91,45,56,53,46,57,55,56,56,57,51,44,51,54,46,52,50,54,48,55,51,93,44,91,45,56,54,46,49,54,56,50,54,49,44,51,54,46,52,52,52,50,57,51,93,44,91,45,56,54,46,50,50,56,52,51,52,44,51,54,46,52,56,55,52,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,49,55,44,34,98,101,100,115,34,58,51,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,48,55,56,56,54,44,51,55,46,50,51,53,56,55,55,93,44,91,45,56,51,46,52,54,48,57,57,50,44,51,55,46,50,57,51,56,52,56,93,44,91,45,56,51,46,50,48,56,49,50,49,44,51,55,46,49,55,52,54,53,57,93,44,91,45,56,51,46,49,56,50,49,48,52,44,51,55,46,48,50,49,49,49,53,93,44,91,45,56,51,46,49,50,50,48,57,44,51,55,46,48,48,48,57,57,55,93,44,91,45,56,51,46,48,48,48,49,52,50,44,51,55,46,49,57,53,55,49,93,44,91,45,56,51,46,49,48,49,53,54,51,44,51,55,46,50,51,53,52,51,55,93,44,91,45,56,51,46,49,50,52,51,52,56,44,51,55,46,52,48,52,57,55,51,93,44,91,45,56,51,46,49,57,57,55,51,52,44,51,55,46,52,49,52,54,54,93,44,91,45,56,51,46,52,48,51,57,56,56,44,51,55,46,51,51,56,51,51,50,93,44,91,45,56,51,46,53,52,55,54,50,56,44,51,55,46,51,51,52,52,49,56,93,44,91,45,56,51,46,53,50,54,57,48,55,44,51,55,46,50,53,56,53,50,57,93,44,91,45,56,51,46,53,48,55,56,56,54,44,51,55,46,50,51,53,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,101,117,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,48,54,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,56,52,53,55,44,52,52,46,56,48,52,52,51,54,93,44,91,45,57,54,46,56,56,53,53,48,52,44,52,52,46,53,52,51,55,55,51,93,44,91,45,57,54,46,52,53,49,56,50,44,52,52,46,53,52,51,54,53,50,93,44,91,45,57,54,46,52,53,49,53,54,54,44,52,52,46,54,51,49,51,52,57,93,44,91,45,57,54,46,52,53,49,52,54,50,44,52,52,46,56,48,53,53,55,93,44,91,45,57,54,46,52,53,50,48,51,53,44,52,52,46,57,55,55,54,53,93,44,91,45,57,54,46,56,56,50,51,52,53,44,52,52,46,57,55,54,56,55,93,44,91,45,57,54,46,56,56,52,53,55,44,52,52,46,56,48,52,52,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,50,54,55,44,34,98,101,100,115,34,58,53,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,50,56,50,55,51,44,52,50,46,57,57,54,52,57,57,93,44,91,45,49,50,50,46,52,48,49,48,50,53,44,52,50,46,57,57,54,54,51,50,93,44,91,45,49,50,50,46,53,54,48,50,55,51,44,52,50,46,57,51,57,49,56,53,93,44,91,45,49,50,50,46,55,57,52,55,55,54,44,52,50,46,55,55,56,50,50,49,93,44,91,45,49,50,51,46,49,53,50,50,51,51,44,52,50,46,55,53,53,56,51,53,93,44,91,45,49,50,51,46,50,50,57,54,49,57,44,52,50,46,55,48,50,54,49,93,44,91,45,49,50,51,46,50,51,49,49,49,51,44,52,50,46,48,48,51,57,52,51,93,44,91,45,49,50,50,46,50,56,57,55,52,56,44,52,50,46,48,48,56,48,57,56,93,44,91,45,49,50,50,46,50,56,50,55,51,44,52,50,46,57,57,54,52,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,111,114,109,105,103,117,101,114,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,53,57,55,51,51,44,49,56,46,49,53,51,50,50,55,93,44,91,45,54,55,46,49,48,48,52,57,50,44,49,56,46,49,48,54,51,57,53,93,44,91,45,54,55,46,48,56,54,51,53,57,44,49,56,46,49,52,57,56,50,57,93,44,91,45,54,55,46,49,53,57,55,51,51,44,49,56,46,49,53,51,50,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,53,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,48,55,34,44,34,78,65,77,69,34,58,34,90,97,118,97,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,49,52,48,54,44,50,57,46,48,56,54,51,49,56,93,44,91,45,49,48,48,46,49,49,52,51,51,54,44,50,56,46,54,52,56,49,50,50,93,44,91,45,57,57,46,52,48,57,48,50,49,44,50,56,46,54,52,48,53,54,54,93,44,91,45,57,57,46,52,49,51,56,56,44,50,57,46,48,57,49,51,51,53,93,44,91,45,49,48,48,46,49,49,49,52,48,54,44,50,57,46,48,56,54,51,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,97,110,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,50,54,56,56,44,52,49,46,54,57,55,57,53,52,93,44,91,45,49,48,52,46,48,53,50,53,52,44,52,49,46,53,54,52,50,55,52,93,44,91,45,49,48,52,46,48,53,50,50,56,55,44,52,49,46,51,57,51,50,49,52,93,44,91,45,49,48,51,46,51,55,55,54,50,44,52,49,46,51,57,52,54,51,51,93,44,91,45,49,48,51,46,51,54,57,48,50,52,44,52,49,46,52,51,55,54,53,53,93,44,91,45,49,48,51,46,51,55,48,51,57,49,44,52,49,46,54,57,57,50,49,93,44,91,45,49,48,52,46,48,53,50,54,56,56,44,52,49,46,54,57,55,57,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,57,48,54,49,50,44,52,49,46,53,49,49,57,49,54,93,44,91,45,57,52,46,50,52,49,53,57,51,44,52,49,46,53,48,51,54,55,57,93,44,91,45,57,52,46,50,52,49,54,51,55,44,52,49,46,49,53,55,49,51,52,93,44,91,45,57,52,46,48,49,52,49,56,57,44,52,49,46,49,53,54,55,54,50,93,44,91,45,57,51,46,55,56,57,49,57,54,44,52,49,46,49,54,50,48,51,53,93,44,91,45,57,51,46,55,57,48,54,49,50,44,52,49,46,53,49,49,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,114,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,57,49,53,49,44,34,98,101,100,115,34,58,53,56,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,49,53,50,55,54,44,50,54,46,51,50,48,57,53,54,93,44,91,45,56,48,46,50,57,54,57,56,54,44,50,54,46,51,51,52,51,53,54,93,44,91,45,56,48,46,56,56,49,50,51,51,44,50,54,46,51,51,51,56,48,54,93,44,91,45,56,48,46,56,55,57,56,48,57,44,50,54,46,50,53,57,52,53,53,93,44,91,45,56,48,46,56,55,50,57,51,50,44,50,53,46,57,55,57,52,51,52,93,44,91,45,56,48,46,54,56,48,48,49,54,44,50,53,46,57,53,54,56,53,55,93,44,91,45,56,48,46,50,57,52,57,55,50,44,50,53,46,57,53,54,55,55,93,44,91,45,56,48,46,48,53,50,50,53,55,44,50,53,46,57,55,52,57,53,54,93,44,91,45,56,48,46,48,49,53,50,55,54,44,50,54,46,51,50,48,57,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,57,34,44,34,78,65,77,69,34,58,34,84,111,111,109,98,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,48,52,56,44,34,98,101,100,115,34,58,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,48,57,49,51,44,51,50,46,51,53,51,55,51,56,93,44,91,45,56,50,46,52,56,51,49,51,49,44,51,49,46,57,54,56,57,54,49,93,44,91,45,56,50,46,52,51,49,53,51,49,44,51,49,46,57,54,54,49,56,50,93,44,91,45,56,50,46,50,50,53,48,52,50,44,51,49,46,57,49,51,48,55,52,93,44,91,45,56,50,46,49,56,50,55,50,55,44,51,50,46,49,54,48,52,52,50,93,44,91,45,56,50,46,50,51,50,55,56,56,44,51,50,46,51,49,56,56,51,56,93,44,91,45,56,50,46,51,53,52,53,52,54,44,51,50,46,50,57,50,49,57,52,93,44,91,45,56,50,46,52,48,57,49,49,56,44,51,50,46,51,53,51,56,51,93,44,91,45,56,50,46,52,48,57,49,51,44,51,50,46,51,53,51,55,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,97,110,105,108,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,51,55,54,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,49,55,56,52,52,44,52,51,46,54,55,53,52,57,51,93,44,91,45,56,51,46,49,50,48,51,57,54,44,52,51,46,51,50,55,48,52,57,93,44,91,45,56,51,46,48,48,48,52,51,44,52,51,46,50,56,52,57,49,51,93,44,91,45,56,50,46,57,57,54,50,53,55,44,52,51,46,49,53,52,48,57,57,93,44,91,45,56,50,46,51,51,52,48,55,51,44,52,51,46,49,55,48,52,49,51,93,44,91,45,56,50,46,49,50,50,57,55,49,44,52,51,46,53,57,48,56,50,55,93,44,91,45,56,50,46,49,52,53,53,48,49,44,52,51,46,54,57,53,53,56,55,93,44,91,45,56,51,46,49,49,55,56,52,52,44,52,51,46,54,55,53,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,57,55,34,44,34,78,65,77,69,34,58,34,82,111,99,107,119,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,54,52,50,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,57,55,50,50,55,44,51,50,46,57,56,49,55,53,50,93,44,91,45,57,54,46,53,49,54,56,54,54,44,51,50,46,57,56,50,51,48,56,93,44,91,45,57,54,46,53,49,56,57,55,44,51,50,46,56,49,51,54,49,54,93,44,91,45,57,54,46,50,57,55,51,50,50,44,51,50,46,56,52,49,55,50,51,93,44,91,45,57,54,46,50,57,55,50,50,55,44,51,50,46,57,56,49,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,49,51,56,50,44,34,98,101,100,115,34,58,54,50,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,48,56,51,51,57,51,44,52,50,46,52,52,55,49,53,51,93,44,91,45,56,51,46,53,53,49,57,48,55,44,52,50,46,52,51,53,49,54,54,93,44,91,45,56,51,46,53,51,57,51,57,54,44,52,50,46,48,56,53,53,57,56,93,44,91,45,56,51,46,50,57,53,48,54,51,44,52,50,46,48,57,52,50,51,55,93,44,91,45,56,51,46,49,52,51,57,53,54,44,52,50,46,48,50,55,57,51,93,44,91,45,56,51,46,49,50,54,51,54,49,44,52,50,46,50,51,56,52,49,50,93,44,91,45,56,51,46,48,54,51,54,51,55,44,52,50,46,51,49,54,56,53,55,93,44,91,45,56,50,46,56,51,48,50,53,44,52,50,46,51,55,51,52,57,50,93,44,91,45,56,50,46,55,52,57,57,48,56,44,52,50,46,52,53,49,48,57,50,93,44,91,45,56,51,46,48,56,51,51,57,51,44,52,50,46,52,52,55,49,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,78,111,98,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,51,57,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,54,50,52,50,55,44,52,51,46,56,52,55,57,49,49,93,44,91,45,57,54,46,48,53,50,51,50,44,52,51,46,56,52,57,48,55,93,44,91,45,57,54,46,48,53,51,49,54,50,44,52,51,46,53,48,48,49,53,53,93,44,91,45,57,53,46,56,54,48,57,52,55,44,52,51,46,53,48,48,48,51,54,93,44,91,45,57,53,46,52,53,52,52,51,51,44,52,51,46,53,48,48,54,52,54,93,44,91,45,57,53,46,52,53,50,53,48,50,44,52,51,46,56,52,55,57,53,51,93,44,91,45,57,53,46,52,54,50,52,50,55,44,52,51,46,56,52,55,57,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,105,116,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,51,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,55,54,48,50,52,44,52,54,46,56,48,50,56,57,49,93,44,91,45,57,51,46,56,49,49,52,54,52,44,52,54,46,53,56,52,50,51,56,93,44,91,45,57,51,46,55,57,54,50,56,49,44,52,54,46,50,52,51,49,57,57,93,44,91,45,57,51,46,52,51,48,54,52,56,44,52,54,46,50,52,54,52,49,50,93,44,91,45,57,51,46,52,51,49,56,51,49,44,52,54,46,49,53,51,57,57,49,93,44,91,45,57,51,46,48,53,51,56,55,49,44,52,54,46,49,53,56,49,50,93,44,91,45,57,51,46,48,53,52,56,52,55,44,52,54,46,52,49,57,50,54,57,93,44,91,45,57,51,46,48,54,49,53,50,57,44,52,54,46,55,54,54,53,53,93,44,91,45,57,51,46,48,53,53,57,52,51,44,52,55,46,48,50,54,52,49,53,93,44,91,45,57,51,46,55,55,53,50,53,55,44,52,55,46,48,51,48,52,49,56,93,44,91,45,57,51,46,55,55,54,48,50,52,44,52,54,46,56,48,50,56,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,82,97,109,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,53,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,55,48,51,57,50,44,52,56,46,53,52,52,50,51,50,93,44,91,45,57,56,46,57,55,48,56,52,50,44,52,56,46,51,55,48,52,49,52,93,44,91,45,57,57,46,50,48,48,51,48,54,44,52,56,46,51,55,48,54,53,56,93,44,91,45,57,57,46,49,57,57,57,49,49,44,52,56,46,49,53,53,51,48,57,93,44,91,45,57,57,46,48,55,48,52,52,51,44,52,56,46,49,48,55,56,53,55,93,44,91,45,57,56,46,57,56,54,57,48,49,44,52,56,46,48,48,55,52,57,56,93,44,91,45,57,56,46,56,48,55,53,57,51,44,52,56,46,48,53,57,56,48,49,93,44,91,45,57,56,46,54,50,53,51,56,52,44,52,55,46,57,49,54,51,57,57,93,44,91,45,57,56,46,53,50,53,53,53,53,44,52,55,46,57,49,53,48,53,54,93,44,91,45,57,56,46,52,50,50,52,55,52,44,52,56,46,48,50,49,48,56,93,44,91,45,57,56,46,52,50,50,48,53,55,44,52,56,46,49,57,52,55,56,50,93,44,91,45,57,56,46,50,57,50,49,56,52,44,52,56,46,49,57,53,49,55,55,93,44,91,45,57,56,46,51,49,56,48,51,54,44,52,56,46,53,52,51,55,55,51,93,44,91,45,57,56,46,57,55,48,51,57,50,44,52,56,46,53,52,52,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,80,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,51,48,53,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,49,51,56,51,50,44,51,54,46,53,52,49,57,55,53,93,44,91,45,55,57,46,49,53,51,57,57,55,44,51,54,46,50,52,49,56,55,53,93,44,91,45,55,56,46,57,53,48,53,57,55,44,51,54,46,50,51,57,51,50,93,44,91,45,55,56,46,56,48,50,51,51,53,44,51,54,46,50,51,53,55,57,52,93,44,91,45,55,56,46,55,57,54,50,55,52,44,51,54,46,53,52,49,55,52,49,93,44,91,45,55,57,46,49,51,56,51,50,44,51,54,46,53,52,49,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,84,114,101,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,52,55,57,52,44,51,57,46,49,51,50,49,55,57,93,44,91,45,49,48,48,46,49,53,51,56,50,51,44,51,56,46,54,57,55,51,52,49,93,44,91,45,57,57,46,53,57,56,51,50,51,44,51,56,46,54,57,54,53,49,52,93,44,91,45,57,57,46,53,57,49,55,55,54,44,51,57,46,49,51,50,51,53,55,93,44,91,45,57,57,46,54,48,53,49,56,55,44,51,57,46,49,51,50,52,56,49,93,44,91,45,49,48,48,46,49,52,55,57,52,44,51,57,46,49,51,50,49,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,48,56,54,44,34,98,101,100,115,34,58,50,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,54,51,53,48,57,44,51,51,46,53,50,57,51,56,57,93,44,91,45,57,49,46,50,49,53,54,55,49,44,51,51,46,53,50,57,52,50,51,93,44,91,45,57,49,46,49,54,57,52,53,57,44,51,51,46,52,53,50,49,51,55,93,44,91,45,57,49,46,48,56,55,53,56,57,44,51,51,46,49,52,53,49,55,54,93,44,91,45,57,49,46,49,54,54,50,56,50,44,51,51,46,48,49,49,51,51,49,93,44,91,45,57,48,46,57,49,52,51,51,55,44,51,51,46,48,48,55,54,57,55,93,44,91,45,57,48,46,57,49,52,52,54,53,44,51,51,46,48,57,55,52,49,55,93,44,91,45,57,48,46,55,48,49,56,52,53,44,51,51,46,48,57,54,50,57,52,93,44,91,45,57,48,46,55,49,54,50,55,55,44,51,51,46,50,55,48,48,51,50,93,44,91,45,57,48,46,55,54,51,55,55,51,44,51,51,46,50,55,48,51,53,57,93,44,91,45,57,48,46,55,54,51,53,48,57,44,51,51,46,53,50,57,51,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,69,97,115,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,55,48,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,55,54,50,53,54,44,51,50,46,53,49,53,49,54,51,93,44,91,45,57,57,46,48,57,54,48,53,44,51,50,46,53,49,52,55,54,56,93,44,91,45,57,57,46,49,49,52,50,57,51,44,51,50,46,53,49,52,56,49,49,93,44,91,45,57,57,46,49,49,56,54,54,53,44,51,50,46,48,55,57,53,56,53,93,44,91,45,57,56,46,57,50,52,52,48,49,44,51,50,46,48,55,56,48,49,56,93,44,91,45,57,56,46,53,53,49,49,53,56,44,51,50,46,50,54,49,52,51,54,93,44,91,45,57,56,46,52,55,52,54,56,53,44,51,50,46,50,57,57,48,56,52,93,44,91,45,57,56,46,52,55,53,49,55,55,44,51,50,46,53,49,51,48,51,57,93,44,91,45,57,56,46,53,55,54,50,53,54,44,51,50,46,53,49,53,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,73,115,115,97,113,117,101,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,52,51,51,55,44,51,51,46,48,48,55,54,57,55,93,44,91,45,57,49,46,49,54,54,50,56,50,44,51,51,46,48,49,49,51,51,49,93,44,91,45,57,49,46,49,54,54,48,55,51,44,51,51,46,48,48,52,49,48,54,93,44,91,45,57,49,46,50,49,50,56,51,55,44,51,50,46,57,50,50,49,48,51,93,44,91,45,57,49,46,49,52,51,53,53,57,44,51,50,46,56,52,52,55,51,56,93,44,91,45,57,49,46,49,53,50,54,57,57,44,51,50,46,54,52,48,55,53,55,93,44,91,45,57,49,46,48,52,51,53,53,50,44,51,50,46,53,55,54,50,55,49,93,44,91,45,57,48,46,57,54,52,48,52,51,44,51,50,46,53,55,53,54,48,53,93,44,91,45,57,48,46,57,53,49,50,52,44,51,50,46,52,52,52,51,56,57,93,44,91,45,57,48,46,56,54,49,51,54,52,44,51,50,46,52,52,50,49,49,53,93,44,91,45,57,48,46,56,54,48,53,54,54,44,51,50,46,53,55,53,49,55,51,93,44,91,45,57,48,46,55,50,48,49,48,50,44,51,50,46,54,49,56,56,53,56,93,44,91,45,57,48,46,55,50,51,49,53,57,44,51,50,46,54,54,50,49,50,56,93,44,91,45,57,48,46,57,54,52,56,54,52,44,51,50,46,54,54,50,55,57,56,93,44,91,45,57,48,46,57,54,51,55,53,51,44,51,50,46,56,51,56,49,51,51,93,44,91,45,57,48,46,57,49,52,51,51,55,44,51,51,46,48,48,55,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,68,101,87,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,51,53,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,48,53,57,49,54,44,50,56,46,56,54,52,48,51,55,93,44,91,45,57,54,46,57,55,54,51,55,56,44,50,57,46,49,48,52,48,52,54,93,44,91,45,57,55,46,50,52,48,49,48,56,44,50,57,46,51,56,52,52,56,56,93,44,91,45,57,55,46,54,49,51,49,51,50,44,50,57,46,49,48,57,55,54,53,93,44,91,45,57,55,46,55,53,53,49,49,44,50,57,46,48,48,55,49,49,51,93,44,91,45,57,55,46,53,55,52,54,51,57,44,50,56,46,56,49,51,51,93,44,91,45,57,55,46,52,49,55,51,52,44,50,56,46,57,50,53,50,50,56,93,44,91,45,57,55,46,51,48,53,57,49,54,44,50,56,46,56,54,52,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,110,103,101,108,105,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,54,48,55,44,34,98,101,100,115,34,58,52,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,53,56,49,49,44,51,49,46,51,56,54,57,51,93,44,91,45,57,52,46,56,57,57,48,49,55,44,51,49,46,51,50,54,57,55,50,93,44,91,45,57,52,46,56,52,50,57,52,55,44,51,49,46,49,52,54,53,55,56,93,44,91,45,57,52,46,53,54,49,57,52,51,44,51,49,46,48,53,56,57,53,50,93,44,91,45,57,52,46,52,53,55,56,49,54,44,51,49,46,48,51,51,51,50,53,93,44,91,45,57,52,46,49,50,57,54,51,50,44,51,49,46,48,57,57,50,56,93,44,91,45,57,52,46,51,50,54,54,49,54,44,51,49,46,50,50,52,55,53,52,93,44,91,45,57,52,46,52,54,54,54,55,54,44,51,49,46,51,55,56,48,48,57,93,44,91,45,57,52,46,53,53,52,56,51,56,44,51,49,46,52,51,53,49,50,51,93,44,91,45,57,52,46,55,50,56,52,53,54,44,51,49,46,52,53,55,49,52,55,93,44,91,45,57,52,46,56,54,53,56,53,55,44,51,49,46,53,50,54,57,49,54,93,44,91,45,57,53,46,48,48,51,51,52,53,44,51,49,46,52,50,53,55,49,93,44,91,45,57,52,46,57,53,56,49,49,44,51,49,46,51,56,54,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,83,97,108,117,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,55,48,48,56,52,44,51,52,46,49,51,53,51,53,55,93,44,91,45,56,50,46,48,48,56,50,57,56,44,51,51,46,57,54,49,54,52,54,93,44,91,45,56,49,46,56,57,52,53,57,53,44,51,51,46,57,55,53,52,49,53,93,44,91,45,56,49,46,56,51,54,56,48,51,44,51,51,46,56,54,54,53,48,49,93,44,91,45,56,49,46,54,53,49,55,53,57,44,51,51,46,56,49,52,53,49,93,44,91,45,56,49,46,53,55,49,52,56,55,44,51,51,46,56,55,55,51,49,56,93,44,91,45,56,49,46,52,55,49,57,55,50,44,51,52,46,48,55,54,53,53,50,93,44,91,45,56,49,46,53,51,56,56,57,57,44,51,52,46,48,56,49,55,52,52,93,44,91,45,56,49,46,55,51,49,54,49,52,44,51,52,46,49,56,55,54,49,51,93,44,91,45,56,49,46,56,55,48,48,56,52,44,51,52,46,49,51,53,51,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,57,53,54,55,53,44,51,56,46,50,57,50,50,51,55,93,44,91,45,57,50,46,49,56,53,51,55,44,51,56,46,48,49,54,51,51,56,93,44,91,45,57,50,46,48,50,49,49,54,53,44,51,56,46,48,49,48,54,51,57,93,44,91,45,57,49,46,56,57,53,51,52,55,44,51,56,46,48,53,49,49,57,57,93,44,91,45,57,49,46,54,51,50,52,51,49,44,51,56,46,48,53,48,57,53,49,93,44,91,45,57,49,46,54,51,48,53,53,52,44,51,56,46,49,53,51,53,49,57,93,44,91,45,57,49,46,54,52,52,55,50,57,44,51,56,46,50,56,56,53,49,93,44,91,45,57,50,46,49,57,53,54,55,53,44,51,56,46,50,57,50,50,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,50,52,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,55,55,56,50,44,51,52,46,53,54,51,52,56,93,44,91,45,57,49,46,53,57,52,52,50,57,44,51,52,46,53,54,56,48,53,93,44,91,45,57,49,46,54,55,56,48,51,55,44,51,52,46,52,56,49,57,50,93,44,91,45,57,49,46,55,48,53,49,56,53,44,51,52,46,52,56,50,54,55,93,44,91,45,57,49,46,55,49,49,55,57,53,44,51,52,46,50,51,51,57,49,57,93,44,91,45,57,49,46,53,52,48,49,55,56,44,51,52,46,50,50,52,53,57,57,93,44,91,45,57,49,46,52,52,53,54,49,52,44,51,52,46,48,56,48,49,52,55,93,44,91,45,57,49,46,52,50,49,55,49,53,44,51,52,46,48,49,52,52,55,50,93,44,91,45,57,49,46,50,49,52,51,51,56,44,51,51,46,57,55,50,52,48,51,93,44,91,45,57,49,46,49,57,52,50,55,56,44,51,52,46,48,55,48,57,51,56,93,44,91,45,57,49,46,49,49,55,57,48,53,44,51,52,46,49,49,57,49,48,53,93,44,91,45,57,49,46,48,53,54,50,55,54,44,51,52,46,51,51,54,54,48,53,93,44,91,45,57,49,46,50,54,51,54,48,54,44,51,52,46,53,48,49,56,54,55,93,44,91,45,57,49,46,51,55,55,56,50,44,51,52,46,53,54,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,49,51,51,44,34,98,101,100,115,34,58,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,53,50,51,49,51,44,51,55,46,50,57,48,48,55,56,93,44,91,45,57,52,46,48,53,57,50,49,49,44,51,55,46,48,52,56,49,50,55,93,44,91,45,57,52,46,48,54,50,55,52,44,51,54,46,57,51,49,55,55,53,93,44,91,45,57,51,46,54,49,49,48,48,51,44,51,54,46,57,50,50,56,51,49,93,44,91,45,57,51,46,54,49,48,49,50,54,44,51,54,46,57,57,53,56,49,93,44,91,45,57,51,46,54,48,56,56,57,57,44,51,55,46,48,57,56,49,53,51,93,44,91,45,57,51,46,54,50,53,56,52,52,44,51,55,46,50,56,50,48,49,49,93,44,91,45,57,52,46,48,53,50,51,49,51,44,51,55,46,50,57,48,48,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,52,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,52,48,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,111,116,116,101,115,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,48,52,50,44,34,98,101,100,115,34,58,53,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,53,50,51,54,56,44,51,56,46,48,50,50,51,50,55,93,44,91,45,55,56,46,52,54,57,53,48,52,44,51,56,46,48,49,49,55,52,53,93,44,91,45,55,56,46,52,53,52,55,51,50,44,51,56,46,48,52,53,50,55,56,93,44,91,45,55,56,46,52,56,53,50,48,50,44,51,56,46,48,54,56,57,55,52,93,44,91,45,55,56,46,53,50,51,54,56,44,51,56,46,48,50,50,51,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,117,114,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,51,56,49,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,54,50,51,53,49,44,52,49,46,53,56,52,48,48,53,93,44,91,45,56,57,46,56,53,55,54,49,54,44,52,49,46,50,51,52,52,55,57,93,44,91,45,56,57,46,54,51,56,55,48,56,44,52,49,46,50,51,51,56,54,50,93,44,91,45,56,57,46,54,51,56,53,51,54,44,52,49,46,49,52,56,53,52,53,93,44,91,45,56,57,46,52,54,54,49,48,49,44,52,49,46,49,52,56,53,50,52,93,44,91,45,56,57,46,52,54,54,51,56,57,44,52,49,46,50,51,51,56,55,50,93,44,91,45,56,57,46,51,51,52,57,48,49,44,52,49,46,51,48,48,56,55,55,93,44,91,45,56,57,46,49,54,51,55,48,53,44,52,49,46,51,49,48,49,56,55,93,44,91,45,56,57,46,49,54,54,53,54,49,44,52,49,46,53,56,53,50,56,57,93,44,91,45,56,57,46,54,51,49,52,57,52,44,52,49,46,53,56,52,57,52,57,93,44,91,45,56,57,46,56,54,50,51,53,49,44,52,49,46,53,56,52,48,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,83,99,105,111,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,51,55,55,44,34,98,101,100,115,34,58,52,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,48,55,48,57,44,51,56,46,57,52,56,48,55,51,93,44,91,45,56,51,46,50,49,50,49,48,55,44,51,56,46,57,54,48,49,52,56,93,44,91,45,56,51,46,50,55,48,56,49,55,44,51,57,46,48,49,53,55,57,49,93,44,91,45,56,51,46,50,54,55,54,49,51,44,51,56,46,54,49,56,52,50,93,44,91,45,56,51,46,49,51,52,55,53,52,44,51,56,46,54,51,50,48,49,51,93,44,91,45,56,51,46,48,51,48,56,53,56,44,51,56,46,55,50,53,53,50,52,93,44,91,45,56,50,46,56,57,55,49,56,57,44,51,56,46,55,53,54,50,49,52,93,44,91,45,56,50,46,56,49,53,57,55,57,44,51,56,46,53,55,48,56,48,50,93,44,91,45,56,50,46,55,52,48,51,56,51,44,51,56,46,53,57,55,49,54,55,93,44,91,45,56,50,46,54,54,50,56,56,54,44,51,56,46,55,52,55,57,55,55,93,44,91,45,56,50,46,54,53,48,48,51,57,44,51,56,46,56,52,57,48,55,51,93,44,91,45,56,50,46,55,54,48,54,57,44,51,56,46,56,53,52,56,55,53,93,44,91,45,56,50,46,56,48,55,48,57,44,51,56,46,57,52,56,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,57,56,51,49,55,44,51,53,46,57,52,52,57,54,55,93,44,91,45,56,50,46,57,54,49,55,53,52,44,51,53,46,55,57,48,57,53,57,93,44,91,45,56,50,46,56,56,51,57,48,57,44,51,53,46,54,55,56,50,51,53,93,44,91,45,56,50,46,56,48,55,48,53,54,44,51,53,46,54,56,53,56,55,52,93,44,91,45,56,50,46,53,49,51,49,54,49,44,51,53,46,56,48,51,51,56,93,44,91,45,56,50,46,52,48,56,54,48,50,44,51,53,46,56,49,56,49,55,56,93,44,91,45,56,50,46,53,48,53,52,50,53,44,51,53,46,57,55,55,52,51,50,93,44,91,45,56,50,46,54,48,50,57,56,44,51,54,46,48,51,57,54,55,55,93,44,91,45,56,50,46,54,51,55,50,51,44,51,54,46,48,54,53,56,50,93,44,91,45,56,50,46,56,57,56,51,49,55,44,51,53,46,57,52,52,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,74,101,114,111,109,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,52,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,57,51,49,54,56,55,44,52,50,46,55,54,53,48,50,54,93,44,91,45,49,49,52,46,48,52,57,56,52,57,44,52,50,46,56,48,56,52,52,52,93,44,91,45,49,49,52,46,51,52,53,54,53,57,44,52,50,46,56,48,57,48,53,53,93,44,91,45,49,49,52,46,51,54,53,51,54,54,44,52,50,46,56,53,48,55,57,93,44,91,45,49,49,52,46,53,57,52,51,55,53,44,52,50,46,56,53,48,57,48,49,93,44,91,45,49,49,52,46,54,49,54,52,56,55,44,52,50,46,54,52,57,50,57,56,93,44,91,45,49,49,52,46,50,52,52,55,48,51,44,52,50,46,53,53,57,50,52,52,93,44,91,45,49,49,52,46,49,50,52,57,51,52,44,52,50,46,52,57,54,49,51,93,44,91,45,49,49,52,46,48,48,48,51,56,56,44,52,50,46,53,50,54,51,55,51,93,44,91,45,49,49,51,46,57,51,49,55,57,57,44,52,50,46,53,51,53,50,52,51,93,44,91,45,49,49,51,46,57,51,49,54,56,55,44,52,50,46,55,54,53,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,86,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,52,56,53,57,49,44,51,57,46,51,54,56,49,54,53,93,44,91,45,56,50,46,55,54,50,56,57,50,44,51,57,46,50,48,55,57,54,55,93,44,91,45,56,50,46,53,51,54,51,48,54,44,51,57,46,49,56,48,55,53,55,93,44,91,45,56,50,46,52,50,52,54,55,55,44,51,57,46,49,51,55,57,55,50,93,44,91,45,56,50,46,52,51,53,51,48,57,44,51,57,46,48,51,53,48,55,57,93,44,91,45,56,50,46,51,50,50,56,55,52,44,51,57,46,48,50,55,54,55,52,93,44,91,45,56,50,46,50,54,56,53,56,51,44,51,57,46,50,48,51,55,54,93,44,91,45,56,50,46,50,56,57,54,54,51,44,51,57,46,51,56,52,49,57,53,93,44,91,45,56,50,46,55,52,56,53,57,49,44,51,57,46,51,54,56,49,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,57,34,44,34,78,65,77,69,34,58,34,77,99,76,101,110,110,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,52,50,57,44,34,98,101,100,115,34,58,52,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,55,55,50,54,53,44,51,49,46,55,52,53,52,57,50,93,44,91,45,57,55,46,54,48,53,50,51,44,51,49,46,53,56,55,55,54,50,93,44,91,45,57,55,46,52,49,56,54,48,54,44,51,49,46,51,50,48,50,48,50,93,44,91,45,57,55,46,50,55,56,49,49,51,44,51,49,46,50,55,57,55,57,57,93,44,91,45,57,54,46,56,48,49,49,50,51,44,51,49,46,53,50,50,50,54,57,93,44,91,45,57,54,46,57,51,50,50,49,53,44,51,49,46,55,48,56,56,56,55,93,44,91,45,57,55,46,48,51,55,50,54,54,44,51,49,46,56,54,51,48,55,57,93,44,91,45,57,55,46,50,55,55,50,54,53,44,51,49,46,55,52,53,52,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,57,55,49,51,53,49,44,52,51,46,57,51,56,51,48,56,93,44,91,45,49,49,52,46,50,57,50,52,56,52,44,52,51,46,56,56,55,48,54,50,93,44,91,45,49,49,52,46,49,51,50,55,51,50,44,52,51,46,55,53,48,55,53,55,93,44,91,45,49,49,51,46,57,56,54,52,57,52,44,52,51,46,55,50,53,51,57,93,44,91,45,49,49,51,46,55,57,56,52,52,49,44,52,51,46,53,54,57,50,49,55,93,44,91,45,49,49,51,46,55,54,49,49,55,44,52,51,46,54,50,49,49,57,52,93,44,91,45,49,49,51,46,53,50,55,56,48,52,44,52,51,46,55,49,57,49,51,53,93,44,91,45,49,49,51,46,51,55,55,56,55,55,44,52,51,46,56,48,57,55,93,44,91,45,49,49,51,46,52,52,52,56,57,49,44,52,51,46,57,49,56,53,52,50,93,44,91,45,49,49,51,46,52,49,54,53,50,53,44,52,52,46,50,51,51,51,54,52,93,44,91,45,49,49,51,46,51,50,48,54,48,57,44,52,52,46,50,51,51,49,54,52,93,44,91,45,49,49,51,46,51,51,57,54,49,55,44,52,52,46,51,49,54,51,49,51,93,44,91,45,49,49,51,46,53,48,49,53,49,57,44,52,52,46,52,50,50,51,48,51,93,44,91,45,49,49,51,46,56,49,54,50,49,53,44,52,52,46,52,57,51,57,54,51,93,44,91,45,49,49,52,46,48,49,57,50,48,52,44,52,52,46,54,53,49,53,52,49,93,44,91,45,49,49,52,46,48,55,53,57,51,55,44,52,52,46,55,52,53,53,55,56,93,44,91,45,49,49,52,46,51,51,57,49,57,54,44,52,52,46,55,57,51,53,57,52,93,44,91,45,49,49,52,46,52,53,49,56,52,44,52,52,46,54,49,49,55,52,49,93,44,91,45,49,49,52,46,54,48,50,51,54,50,44,52,52,46,53,57,52,56,53,54,93,44,91,45,49,49,52,46,56,49,57,56,56,57,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,49,52,46,56,49,50,52,48,55,44,52,52,46,56,48,56,51,52,54,93,44,91,45,49,49,52,46,57,53,54,49,49,54,44,52,52,46,55,50,48,57,56,50,93,44,91,45,49,49,53,46,48,57,49,57,50,50,44,52,52,46,55,54,54,55,50,54,93,44,91,45,49,49,53,46,49,54,53,54,48,53,44,52,52,46,54,53,48,51,48,54,93,44,91,45,49,49,53,46,51,48,52,57,57,52,44,52,52,46,53,55,57,56,53,55,93,44,91,45,49,49,53,46,50,50,56,50,50,50,44,52,52,46,52,50,51,53,50,49,93,44,91,45,49,49,53,46,50,57,52,54,49,52,44,52,52,46,51,51,57,52,52,53,93,44,91,45,49,49,53,46,49,54,55,54,56,52,44,52,52,46,50,48,50,56,52,93,44,91,45,49,49,53,46,48,50,52,49,56,49,44,52,52,46,49,53,53,52,55,56,93,44,91,45,49,49,53,46,48,52,55,55,50,44,52,52,46,48,53,48,54,53,53,93,44,91,45,49,49,52,46,57,57,48,55,55,55,44,52,51,46,57,52,57,55,50,51,93,44,91,45,49,49,52,46,57,55,49,51,53,49,44,52,51,46,57,51,56,51,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,54,52,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,51,49,50,56,44,52,51,46,53,48,48,50,49,56,93,44,91,45,57,50,46,53,53,52,51,56,49,44,52,51,46,50,49,50,56,49,51,93,44,91,45,57,50,46,48,56,48,57,55,54,44,52,51,46,50,49,50,57,52,55,93,44,91,45,57,50,46,48,55,57,56,48,50,44,52,51,46,53,48,48,54,50,49,93,44,91,45,57,50,46,52,52,56,57,52,56,44,52,51,46,53,48,48,52,53,57,93,44,91,45,57,50,46,53,53,51,49,50,56,44,52,51,46,53,48,48,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,80,97,108,109,32,66,101,97,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,54,50,55,55,44,34,98,101,100,115,34,58,52,51,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,50,50,55,53,52,44,50,54,46,57,55,48,51,57,50,93,44,91,45,56,48,46,49,52,50,48,48,55,44,50,54,46,57,53,54,54,52,93,44,91,45,56,48,46,56,56,53,54,51,57,44,50,54,46,57,53,56,57,49,57,93,44,91,45,56,48,46,56,56,49,50,51,51,44,50,54,46,51,51,51,56,48,54,93,44,91,45,56,48,46,50,57,54,57,56,54,44,50,54,46,51,51,52,51,53,54,93,44,91,45,56,48,46,48,49,53,50,55,54,44,50,54,46,51,50,48,57,53,54,93,44,91,45,55,57,46,57,56,48,54,52,56,44,50,54,46,53,57,53,52,52,55,93,44,91,45,55,57,46,57,55,53,52,50,53,44,50,54,46,56,48,48,50,53,93,44,91,45,56,48,46,48,50,50,55,53,52,44,50,54,46,57,55,48,51,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,52,53,52,53,49,44,51,51,46,57,56,52,49,57,53,93,44,91,45,56,50,46,53,55,51,54,53,50,44,51,51,46,55,56,54,49,49,54,93,44,91,45,56,50,46,52,55,57,53,49,56,44,51,51,46,54,51,57,53,51,53,93,44,91,45,56,50,46,52,50,53,51,50,56,44,51,51,46,54,53,48,54,50,57,93,44,91,45,56,50,46,51,50,57,48,52,57,44,51,51,46,54,57,55,54,55,54,93,44,91,45,56,50,46,50,49,56,54,52,57,44,51,51,46,54,56,54,50,57,57,93,44,91,45,56,50,46,51,52,54,57,51,51,44,51,51,46,56,51,52,50,57,56,93,44,91,45,56,50,46,53,54,52,52,57,49,44,51,51,46,57,53,53,55,51,51,93,44,91,45,56,50,46,54,52,53,52,53,49,44,51,51,46,57,56,52,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,50,53,44,34,98,101,100,115,34,58,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,48,53,56,57,57,44,51,49,46,55,53,51,48,51,53,93,44,91,45,56,54,46,57,48,54,55,54,57,44,51,49,46,54,51,50,54,55,49,93,44,91,45,56,54,46,56,51,57,51,56,54,44,51,49,46,53,50,53,50,48,52,93,44,91,45,56,54,46,55,48,49,53,53,52,44,51,49,46,53,50,51,57,52,54,93,44,91,45,56,54,46,52,57,57,50,49,51,44,51,49,46,53,50,53,51,51,49,93,44,91,45,56,54,46,52,52,56,54,51,53,44,51,49,46,54,53,53,54,49,55,93,44,91,45,56,54,46,52,52,56,49,57,56,44,51,49,46,57,54,52,54,50,57,93,44,91,45,56,54,46,56,53,55,53,56,51,44,51,49,46,57,54,50,49,54,55,93,44,91,45,56,54,46,57,48,54,56,57,57,44,51,49,46,56,51,48,54,50,56,93,44,91,45,56,54,46,57,48,53,56,57,57,44,51,49,46,55,53,51,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,83,117,109,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,52,55,51,44,34,98,101,100,115,34,58,50,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,54,51,57,48,57,44,51,54,46,54,51,51,53,54,50,93,44,91,45,56,54,46,54,57,53,48,54,52,44,51,54,46,52,50,49,51,49,57,93,44,91,45,56,54,46,55,53,52,55,57,53,44,51,54,46,52,48,53,52,57,54,93,44,91,45,56,54,46,53,57,52,50,56,54,44,51,54,46,50,52,53,49,48,53,93,44,91,45,56,54,46,52,53,49,55,50,49,44,51,54,46,51,51,53,54,50,57,93,44,91,45,56,54,46,50,56,51,50,53,54,44,51,54,46,51,52,55,53,93,44,91,45,56,54,46,50,50,56,52,51,52,44,51,54,46,52,56,55,52,55,50,93,44,91,45,56,54,46,50,48,53,51,56,56,44,51,54,46,54,52,48,49,56,52,93,44,91,45,56,54,46,52,49,49,51,55,57,44,51,54,46,54,53,48,57,50,52,93,44,91,45,56,54,46,53,54,51,57,48,57,44,51,54,46,54,51,51,53,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,75,105,110,103,32,97,110,100,32,81,117,101,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,53,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,56,49,52,49,56,44,51,55,46,56,57,49,54,53,52,93,44,91,45,55,55,46,48,51,51,50,55,51,44,51,55,46,55,50,48,56,48,57,93,44,91,45,55,54,46,57,50,55,53,44,51,55,46,54,57,48,52,56,53,93,44,91,45,55,54,46,55,55,55,55,50,57,44,51,55,46,53,53,52,52,52,54,93,44,91,45,55,54,46,55,57,50,49,56,52,44,51,55,46,53,49,55,53,57,52,93,44,91,45,55,54,46,55,52,49,57,56,52,44,51,55,46,52,54,55,48,55,54,93,44,91,45,55,54,46,55,49,50,51,48,53,44,51,55,46,52,51,49,51,48,57,93,44,91,45,55,54,46,54,53,52,48,55,54,44,51,55,46,54,48,51,49,55,52,93,44,91,45,55,54,46,55,53,49,48,55,50,44,51,55,46,55,50,56,54,48,53,93,44,91,45,55,55,46,48,51,53,53,49,50,44,51,55,46,56,54,53,56,49,56,93,44,91,45,55,55,46,48,55,48,49,49,53,44,51,55,46,57,54,52,55,55,93,44,91,45,55,55,46,49,56,49,52,49,56,44,51,55,46,56,57,49,54,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,56,55,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,54,54,54,56,57,44,51,54,46,52,57,56,55,51,53,93,44,91,45,57,51,46,56,54,54,57,54,49,44,51,54,46,51,52,56,53,55,57,93,44,91,45,57,51,46,56,49,53,48,55,56,44,51,54,46,51,48,54,53,53,49,93,44,91,45,57,51,46,54,53,55,54,56,57,44,51,54,46,51,48,51,48,56,50,93,44,91,45,57,51,46,53,53,49,49,51,53,44,51,54,46,49,50,54,50,55,49,93,44,91,45,57,51,46,52,55,57,53,50,56,44,51,54,46,49,50,53,48,55,50,93,44,91,45,57,51,46,51,48,48,56,50,44,51,54,46,49,50,49,53,53,93,44,91,45,57,51,46,50,57,51,52,54,55,44,51,54,46,52,57,56,50,55,54,93,44,91,45,57,51,46,51,49,53,51,51,50,44,51,54,46,52,57,56,49,52,93,44,91,45,57,51,46,53,56,52,50,54,50,44,51,54,46,52,57,57,49,54,55,93,44,91,45,57,51,46,56,54,54,54,56,57,44,51,54,46,52,57,56,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,56,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,56,50,48,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,115,98,111,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,52,56,53,48,57,44,51,56,46,48,54,56,49,48,52,93,44,91,45,55,56,46,56,57,49,55,55,50,44,51,56,46,48,51,57,52,51,56,93,44,91,45,55,56,46,56,54,50,54,55,55,44,51,56,46,48,56,57,57,55,50,93,44,91,45,55,56,46,57,48,51,55,57,53,44,51,56,46,48,57,57,56,48,50,93,44,91,45,55,56,46,57,52,56,53,48,57,44,51,56,46,48,54,56,49,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,48,34,44,34,78,65,77,69,34,58,34,83,105,116,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,51,56,44,34,98,101,100,115,34,58,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,54,46,52,53,52,52,50,55,44,53,55,46,56,51,48,54,55,54,93,44,91,45,49,51,53,46,56,54,52,49,44,53,54,46,57,57,54,55,93,44,91,45,49,51,52,46,56,53,57,50,50,50,44,53,54,46,50,52,52,57,52,50,93,44,91,45,49,51,52,46,54,54,54,51,57,54,44,53,54,46,49,52,55,53,56,54,93,44,91,45,49,51,52,46,54,54,54,54,54,56,44,53,54,46,50,56,51,51,51,52,93,44,91,45,49,51,52,46,52,50,57,50,52,55,44,53,54,46,50,56,50,55,51,55,93,44,91,45,49,51,52,46,52,57,54,50,49,54,44,53,54,46,54,57,57,54,51,49,93,44,91,45,49,51,52,46,53,54,57,50,56,57,44,53,54,46,56,54,51,48,53,50,93,44,91,45,49,51,52,46,54,55,55,50,44,53,54,46,57,57,57,93,44,91,45,49,51,52,46,55,51,56,53,53,54,44,53,55,46,50,50,54,51,48,51,93,44,91,45,49,51,52,46,55,48,49,49,52,49,44,53,55,46,52,53,52,54,49,51,93,44,91,45,49,51,52,46,56,51,54,50,44,53,55,46,55,56,55,55,93,44,91,45,49,51,53,46,50,51,56,49,50,57,44,53,55,46,55,54,49,55,49,49,93,44,91,45,49,51,53,46,53,50,56,53,51,52,44,53,55,46,56,56,48,52,55,93,44,91,45,49,51,53,46,57,48,49,57,54,52,44,53,56,46,48,48,49,51,52,51,93,44,91,45,49,51,54,46,48,50,52,51,50,56,44,53,55,46,56,51,56,55,57,53,93,44,91,45,49,51,54,46,52,53,52,52,50,55,44,53,55,46,56,51,48,54,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,77,117,108,116,110,111,109,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,56,54,52,55,44,34,98,101,100,115,34,58,50,57,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,57,50,57,49,52,54,44,52,53,46,55,50,49,52,56,50,93,44,91,45,49,50,50,46,57,50,57,49,50,56,44,52,53,46,54,51,53,51,49,51,93,44,91,45,49,50,50,46,55,52,51,56,54,50,44,52,53,46,53,49,57,53,48,57,93,44,91,45,49,50,50,46,55,52,51,55,50,49,44,52,53,46,52,51,51,50,57,52,93,44,91,45,49,50,50,46,54,52,49,53,56,44,52,53,46,52,54,49,52,56,50,93,44,91,45,49,50,49,46,56,49,57,53,56,55,44,52,53,46,52,54,49,54,55,53,93,44,91,45,49,50,49,46,57,48,54,54,50,56,44,52,53,46,53,50,49,49,52,55,93,44,91,45,49,50,49,46,57,50,50,48,50,56,44,52,53,46,54,52,57,50,48,53,93,44,91,45,49,50,50,46,50,52,57,50,49,55,44,52,53,46,53,52,56,54,53,51,93,44,91,45,49,50,50,46,52,51,56,54,55,52,44,52,53,46,53,54,51,53,56,53,93,44,91,45,49,50,50,46,55,54,51,56,49,44,52,53,46,54,53,55,49,51,56,93,44,91,45,49,50,50,46,55,54,50,52,51,55,44,52,53,46,55,50,56,54,54,53,93,44,91,45,49,50,50,46,57,50,57,49,52,54,44,52,53,46,55,50,49,52,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,71,114,117,110,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,49,51,53,57,51,44,51,53,46,50,56,57,49,56,57,93,44,91,45,56,53,46,56,55,51,48,50,53,44,51,53,46,50,50,51,51,54,50,93,44,91,45,56,53,46,55,52,48,49,49,51,44,51,53,46,50,49,53,50,57,53,93,44,91,45,56,53,46,54,57,48,52,49,53,44,51,53,46,50,56,54,48,55,53,93,44,91,45,56,53,46,53,53,56,53,53,49,44,51,53,46,51,49,57,50,57,50,93,44,91,45,56,53,46,52,56,53,54,51,53,44,51,53,46,52,48,54,52,51,51,93,44,91,45,56,53,46,54,48,55,51,50,54,44,51,53,46,53,51,49,54,53,49,93,44,91,45,56,53,46,56,55,54,57,54,50,44,51,53,46,53,50,52,48,57,53,93,44,91,45,56,53,46,57,49,51,53,57,51,44,51,53,46,50,56,57,49,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,117,98,98,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,56,54,50,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,56,51,50,49,54,44,52,55,46,52,49,50,55,55,51,93,44,91,45,57,53,46,49,54,57,49,55,50,44,52,55,46,49,53,50,53,49,53,93,44,91,45,57,53,46,49,54,51,48,49,44,52,54,46,56,48,52,55,50,93,44,91,45,57,52,46,55,56,55,49,50,54,44,52,54,46,56,48,51,57,52,51,93,44,91,45,57,52,46,54,53,57,57,52,50,44,52,54,46,56,48,51,55,49,54,93,44,91,45,57,52,46,54,55,48,50,49,52,44,52,55,46,52,49,48,49,53,49,93,44,91,45,57,53,46,49,56,51,50,49,54,44,52,55,46,52,49,50,55,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,83,97,114,103,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,48,54,55,49,53,44,52,54,46,50,56,50,54,50,54,93,44,91,45,57,56,46,48,48,56,49,48,50,44,52,53,46,57,51,53,56,57,54,93,44,91,45,57,55,46,57,55,56,55,55,56,44,52,53,46,57,51,53,56,54,51,93,44,91,45,57,55,46,50,50,56,50,57,49,44,52,53,46,57,51,53,51,56,51,93,44,91,45,57,55,46,50,53,57,54,51,50,44,52,53,46,57,57,55,49,56,53,93,44,91,45,57,55,46,50,56,48,53,54,54,44,52,54,46,50,56,50,51,57,51,93,44,91,45,57,56,46,48,48,54,55,49,53,44,52,54,46,50,56,50,54,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,53,53,56,44,34,98,101,100,115,34,58,52,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,50,54,50,50,56,44,52,52,46,57,57,52,56,54,51,93,44,91,45,55,52,46,57,55,50,52,57,49,44,52,52,46,57,56,51,52,48,53,93,44,91,45,55,53,46,50,55,51,53,52,53,44,52,52,46,56,53,51,48,56,52,93,44,91,45,55,53,46,55,54,54,50,50,54,44,52,52,46,53,49,53,56,52,55,93,44,91,45,55,53,46,56,54,48,48,52,54,44,52,52,46,52,48,51,50,54,51,93,44,91,45,55,53,46,52,52,54,49,50,52,44,52,52,46,50,49,55,54,53,53,93,44,91,45,55,53,46,49,55,48,49,53,57,44,52,52,46,48,57,54,57,53,57,93,44,91,45,55,53,46,48,54,50,55,55,57,44,52,52,46,48,53,48,52,93,44,91,45,55,52,46,56,53,52,49,55,49,44,52,52,46,48,55,48,48,56,57,93,44,91,45,55,52,46,53,51,53,49,53,54,44,52,52,46,48,57,57,50,53,93,44,91,45,55,52,46,53,50,53,54,56,51,44,52,52,46,49,55,48,54,51,54,93,44,91,45,55,52,46,54,52,49,56,55,50,44,52,52,46,57,53,50,54,50,49,93,44,91,45,55,52,46,55,50,54,50,50,56,44,52,52,46,57,57,52,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,82,101,121,110,111,108,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,49,49,56,54,51,44,51,55,46,52,49,53,50,55,55,93,44,91,45,57,49,46,49,50,54,48,50,56,44,51,55,46,49,57,57,52,56,93,44,91,45,57,49,46,48,49,55,55,54,54,44,51,55,46,48,57,53,54,55,55,93,44,91,45,57,48,46,57,54,52,52,54,54,44,51,55,46,48,53,51,53,56,52,93,44,91,45,57,48,46,55,55,57,53,53,51,44,51,55,46,48,53,48,51,50,52,93,44,91,45,57,48,46,55,51,53,52,53,51,44,51,55,46,50,55,49,48,52,93,44,91,45,57,48,46,55,55,50,57,52,57,44,51,55,46,51,55,51,54,53,57,93,44,91,45,57,48,46,55,54,56,54,57,53,44,51,55,46,54,48,51,48,49,49,93,44,91,45,57,49,46,49,53,53,48,55,51,44,51,55,46,53,56,56,48,57,50,93,44,91,45,57,49,46,51,49,50,52,53,56,44,51,55,46,53,57,50,56,50,52,93,44,91,45,57,49,46,51,49,52,50,51,54,44,51,55,46,53,48,53,49,51,50,93,44,91,45,57,49,46,50,49,49,56,54,51,44,51,55,46,52,49,53,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,83,97,99,114,97,109,101,110,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,48,48,50,51,44,34,98,101,100,115,34,58,51,50,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,49,52,49,53,57,53,44,51,56,46,55,49,49,57,51,57,93,44,91,45,49,50,49,46,52,56,52,51,57,54,44,51,56,46,55,51,52,53,57,56,93,44,91,45,49,50,49,46,54,48,50,56,57,52,44,51,56,46,55,51,53,56,51,56,93,44,91,45,49,50,49,46,53,48,50,57,56,50,44,51,56,46,52,52,48,55,49,56,93,44,91,45,49,50,49,46,53,57,51,50,55,51,44,51,56,46,51,49,51,48,56,57,93,44,91,45,49,50,49,46,54,49,53,52,49,51,44,51,56,46,49,57,53,54,57,54,93,44,91,45,49,50,49,46,55,49,51,57,50,54,44,51,56,46,48,56,52,53,52,50,93,44,91,45,49,50,49,46,56,54,50,52,54,50,44,51,56,46,48,54,54,48,51,93,44,91,45,49,50,49,46,55,51,55,56,50,52,44,51,56,46,48,50,54,54,51,93,44,91,45,49,50,49,46,53,56,48,48,50,50,44,51,56,46,48,57,52,52,49,52,93,44,91,45,49,50,49,46,52,55,48,57,53,56,44,51,56,46,50,53,57,57,48,50,93,44,91,45,49,50,49,46,51,52,52,48,50,52,44,51,56,46,50,50,56,50,54,93,44,91,45,49,50,49,46,48,50,55,48,56,52,44,51,56,46,51,48,48,50,53,50,93,44,91,45,49,50,49,46,48,50,55,53,48,55,44,51,56,46,53,48,56,50,57,50,93,44,91,45,49,50,49,46,49,52,49,53,57,53,44,51,56,46,55,49,49,57,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,80,97,117,108,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,55,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,48,51,53,52,52,44,52,49,46,50,53,50,53,54,50,93,44,91,45,56,52,46,56,48,51,50,53,49,44,52,48,46,57,56,57,51,57,52,93,44,91,45,56,52,46,51,57,57,52,56,54,44,52,48,46,57,57,48,51,49,53,93,44,91,45,56,52,46,51,52,49,54,48,50,44,52,49,46,49,54,53,53,50,52,93,44,91,45,56,52,46,52,53,55,50,49,55,44,52,49,46,50,53,51,52,56,53,93,44,91,45,56,52,46,56,48,51,53,52,52,44,52,49,46,50,53,50,53,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,87,101,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,52,55,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,55,51,56,54,49,44,52,48,46,57,49,55,56,50,51,93,44,91,45,56,53,46,51,51,54,48,51,44,52,48,46,57,49,55,48,56,50,93,44,91,45,56,53,46,51,51,52,54,54,55,44,52,48,46,54,53,52,52,49,51,93,44,91,45,56,53,46,52,52,56,56,50,53,44,52,48,46,54,53,51,54,48,55,93,44,91,45,56,53,46,52,52,55,48,49,52,44,52,48,46,53,54,54,57,50,57,93,44,91,45,56,53,46,50,48,49,49,52,54,44,52,48,46,53,54,55,50,52,50,93,44,91,45,56,53,46,48,54,56,52,55,57,44,52,48,46,53,54,56,50,52,93,44,91,45,56,53,46,48,55,51,56,54,49,44,52,48,46,57,49,55,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,49,55,56,49,50,53,44,51,55,46,49,49,51,52,93,44,91,45,56,48,46,51,52,53,51,54,50,44,51,55,46,48,50,54,56,49,56,93,44,91,45,56,48,46,53,52,51,57,51,51,44,51,54,46,57,56,52,54,51,57,93,44,91,45,56,48,46,54,51,51,57,56,55,44,51,54,46,57,51,49,55,56,93,44,91,45,56,48,46,52,54,52,49,56,44,51,54,46,55,48,56,55,49,56,93,44,91,45,56,48,46,51,56,53,51,55,51,44,51,54,46,55,57,56,54,53,56,93,44,91,45,56,48,46,50,51,53,52,53,53,44,51,54,46,56,55,50,49,51,93,44,91,45,56,48,46,49,52,53,56,52,52,44,51,54,46,57,52,57,53,55,56,93,44,91,45,56,48,46,49,50,56,54,55,52,44,51,55,46,49,50,50,57,48,49,93,44,91,45,56,48,46,49,55,56,49,50,53,44,51,55,46,49,49,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,66,97,114,98,97,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,51,55,51,56,44,34,98,101,100,115,34,58,56,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,50,48,46,55,48,50,55,57,53,44,51,52,46,57,57,57,57,55,53,93,44,91,45,49,50,48,46,55,51,51,56,50,44,51,52,46,56,57,54,48,52,49,93,44,91,45,49,50,48,46,54,55,51,50,56,49,44,51,52,46,56,51,56,54,50,52,93,44,91,45,49,50,48,46,54,54,52,54,57,49,44,51,52,46,54,57,54,51,52,52,93,44,91,45,49,50,48,46,55,49,50,55,53,55,44,51,52,46,53,54,56,50,57,55,93,44,91,45,49,50,48,46,53,53,57,52,51,57,44,51,52,46,52,56,56,52,54,54,93,44,91,45,49,50,48,46,52,53,48,57,57,56,44,51,52,46,51,57,49,49,56,52,93,44,91,45,49,50,48,46,50,56,55,49,50,53,44,51,52,46,52,49,55,54,48,57,93,44,91,45,49,50,48,46,48,52,52,56,49,52,44,51,52,46,52,49,50,52,53,52,93,44,91,45,49,49,57,46,56,57,56,53,48,50,44,51,52,46,51,54,48,51,53,56,93,44,91,45,49,49,57,46,55,48,55,53,57,51,44,51,52,46,51,51,55,51,50,52,93,44,91,45,49,49,57,46,54,53,49,51,53,55,44,51,52,46,51,54,54,55,48,56,93,44,91,45,49,49,57,46,53,48,48,57,53,51,44,51,52,46,51,50,54,57,50,50,93,44,91,45,49,49,57,46,52,52,50,50,50,50,44,51,52,46,52,53,53,57,49,93,44,91,45,49,49,57,46,52,52,50,51,53,50,44,51,52,46,57,48,49,50,55,52,93,44,91,45,49,49,57,46,52,55,50,55,53,52,44,51,52,46,57,48,49,49,55,52,93,44,91,45,49,49,57,46,55,52,53,53,54,54,44,51,52,46,57,55,51,54,55,54,93,44,91,45,49,50,48,46,48,57,54,57,51,44,51,53,46,49,48,57,53,57,53,93,44,91,45,49,50,48,46,51,50,55,49,49,53,44,51,52,46,57,56,54,53,50,53,93,44,91,45,49,50,48,46,52,57,54,50,50,50,44,51,52,46,57,57,51,49,53,53,93,44,91,45,49,50,48,46,54,51,52,49,52,52,44,51,52,46,57,53,57,53,54,50,93,44,91,45,49,50,48,46,55,48,50,55,57,53,44,51,52,46,57,57,57,57,55,53,93,93,93,44,91,91,91,45,49,49,57,46,52,54,56,48,54,52,44,51,52,46,48,54,51,49,51,57,93,44,91,45,49,49,57,46,53,54,53,53,50,50,44,51,52,46,49,48,56,56,48,57,93,44,91,45,49,49,57,46,54,53,52,57,51,49,44,51,52,46,48,55,49,50,49,56,93,44,91,45,49,49,57,46,57,50,56,55,57,53,44,51,52,46,49,50,57,57,48,50,93,44,91,45,49,50,48,46,48,48,48,57,54,51,44,51,52,46,48,55,54,56,49,57,93,44,91,45,49,50,48,46,50,53,50,56,52,54,44,51,52,46,48,53,56,48,51,49,93,44,91,45,49,50,48,46,51,54,49,57,55,56,44,51,52,46,49,52,56,55,56,93,44,91,45,49,50,48,46,53,54,48,57,57,56,44,51,52,46,49,52,48,54,54,52,93,44,91,45,49,50,48,46,53,55,51,56,48,56,44,51,52,46,48,55,53,57,54,54,93,44,91,45,49,50,48,46,52,54,54,55,55,55,44,51,51,46,57,55,54,49,49,54,93,44,91,45,49,50,48,46,50,57,56,57,55,51,44,51,51,46,57,54,56,52,53,55,93,44,91,45,49,50,48,46,50,50,49,49,50,56,44,51,51,46,56,56,52,49,56,55,93,44,91,45,49,50,48,46,49,48,52,48,56,56,44,51,51,46,56,52,50,51,57,54,93,44,91,45,49,49,57,46,57,50,56,55,57,57,44,51,51,46,57,48,53,52,55,49,93,44,91,45,49,49,57,46,55,48,55,52,57,49,44,51,51,46,57,49,48,51,56,56,93,44,91,45,49,49,57,46,52,57,50,50,57,44,51,51,46,57,56,51,50,49,53,93,44,91,45,49,49,57,46,52,54,56,48,54,52,44,51,52,46,48,54,51,49,51,57,93,93,93,44,91,91,91,45,49,49,57,46,49,49,55,49,55,52,44,51,51,46,53,48,53,54,93,44,91,45,49,49,57,46,48,55,49,56,57,51,44,51,51,46,52,49,51,55,57,57,93,44,91,45,49,49,56,46,57,56,48,53,49,50,44,51,51,46,52,50,56,53,57,51,93,44,91,45,49,49,56,46,57,56,50,49,52,57,44,51,51,46,53,50,52,50,54,93,44,91,45,49,49,57,46,49,49,55,49,55,52,44,51,51,46,53,48,53,54,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,51,51,52,55,44,51,56,46,50,48,57,53,55,93,44,91,45,56,49,46,57,51,50,52,52,52,44,51,56,46,49,53,48,48,56,53,93,44,91,45,56,49,46,57,51,50,53,48,55,44,51,56,46,48,50,53,51,53,54,93,44,91,45,56,49,46,55,56,53,54,52,49,44,51,55,46,57,51,54,52,48,52,93,44,91,45,56,49,46,55,50,50,49,51,54,44,51,55,46,56,48,57,53,48,55,93,44,91,45,56,49,46,54,48,55,53,51,50,44,51,55,46,55,56,56,55,48,57,93,44,91,45,56,49,46,53,49,52,50,50,56,44,51,55,46,55,57,49,50,49,49,93,44,91,45,56,49,46,53,55,49,51,51,52,44,51,55,46,57,50,56,49,48,55,93,44,91,45,56,49,46,52,53,54,54,51,50,44,51,55,46,57,56,55,51,48,55,93,44,91,45,56,49,46,52,55,56,49,50,50,44,51,56,46,48,54,48,49,51,56,93,44,91,45,56,49,46,54,52,56,53,51,55,44,51,56,46,49,56,53,48,51,54,93,44,91,45,56,49,46,56,51,51,52,55,44,51,56,46,50,48,57,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,53,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,53,50,54,55,57,44,51,52,46,57,57,51,56,54,51,93,44,91,45,56,57,46,50,57,57,50,50,55,44,51,52,46,56,52,52,52,49,53,93,44,91,45,56,57,46,50,57,56,51,51,52,44,51,52,46,53,56,50,57,50,54,93,44,91,45,56,57,46,50,52,53,54,52,53,44,51,52,46,53,56,51,50,51,52,93,44,91,45,56,57,46,48,56,56,52,56,56,44,51,52,46,53,57,56,50,52,55,93,44,91,45,56,57,46,48,56,56,48,54,53,44,51,52,46,56,49,53,51,48,55,93,44,91,45,56,57,46,48,49,55,53,53,49,44,51,52,46,56,53,56,55,50,51,93,44,91,45,56,57,46,48,49,55,49,50,55,44,51,52,46,57,57,52,57,55,49,93,44,91,45,56,57,46,49,57,56,50,56,56,44,51,52,46,57,57,52,52,56,52,93,44,91,45,56,57,46,51,53,50,54,55,57,44,51,52,46,57,57,51,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,67,114,105,116,116,101,110,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,56,51,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,53,56,52,54,54,44,51,55,46,52,48,52,55,53,50,93,44,91,45,56,56,46,50,49,56,57,56,44,51,55,46,50,55,51,49,52,53,93,44,91,45,56,56,46,49,57,51,53,49,57,44,51,55,46,49,52,55,50,53,54,93,44,91,45,56,56,46,48,57,53,55,56,49,44,51,55,46,49,55,57,54,56,52,93,44,91,45,56,56,46,48,56,49,48,53,56,44,51,55,46,50,50,51,51,52,55,93,44,91,45,56,55,46,56,48,49,48,52,54,44,51,55,46,51,55,57,52,52,53,93,44,91,45,56,55,46,57,51,50,57,53,50,44,51,55,46,52,56,48,48,53,50,93,44,91,45,56,56,46,48,54,49,51,51,50,44,51,55,46,53,48,53,51,51,50,93,44,91,45,56,56,46,50,55,57,50,48,55,44,51,55,46,52,53,51,50,57,50,93,44,91,45,56,56,46,51,53,56,52,54,54,44,51,55,46,52,48,52,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,80,97,108,111,32,65,108,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,53,53,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,44,91,45,57,52,46,57,49,51,56,57,44,52,50,46,57,48,57,55,93,44,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,44,91,45,57,52,46,52,52,51,49,51,55,44,52,51,46,50,53,53,48,49,52,93,44,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,82,105,110,103,103,111,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,56,52,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,55,48,55,55,57,44,52,48,46,56,57,57,53,48,50,93,44,91,45,57,52,46,52,55,49,50,49,51,44,52,48,46,53,55,48,56,50,53,93,44,91,45,57,52,46,50,51,50,50,52,44,52,48,46,53,55,49,57,48,49,93,44,91,45,57,52,46,48,49,53,52,57,50,44,52,48,46,53,55,51,57,49,52,93,44,91,45,57,52,46,48,49,52,56,48,51,44,52,48,46,56,57,55,48,51,49,93,44,91,45,57,52,46,52,55,48,55,55,57,44,52,48,46,56,57,57,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,57,53,56,44,34,98,101,100,115,34,58,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,53,52,49,55,50,56,44,51,53,46,56,57,57,56,53,49,93,44,91,45,56,48,46,48,52,54,56,54,57,44,51,53,46,57,50,48,54,57,51,93,44,91,45,56,48,46,48,54,54,56,52,50,44,51,53,46,53,48,53,54,54,49,93,44,91,45,55,57,46,55,54,55,57,53,55,44,51,53,46,53,49,49,52,56,52,93,44,91,45,55,57,46,53,53,53,56,48,52,44,51,53,46,53,49,53,48,51,57,93,44,91,45,55,57,46,53,52,50,52,50,56,44,51,53,46,56,52,51,51,48,51,93,44,91,45,55,57,46,53,52,49,55,50,56,44,51,53,46,56,57,57,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,101,99,105,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,53,49,55,44,34,98,101,100,115,34,58,49,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,56,56,53,57,54,44,51,57,46,55,50,50,49,57,57,93,44,91,45,55,54,46,49,51,53,52,56,52,44,51,57,46,55,50,49,49,52,55,93,44,91,45,55,54,46,50,51,51,50,55,57,44,51,57,46,55,50,49,51,54,55,93,44,91,45,55,54,46,48,52,49,57,55,54,44,51,57,46,52,57,52,50,50,56,93,44,91,45,55,54,46,48,55,57,57,50,53,44,51,57,46,52,48,53,53,48,54,93,44,91,45,55,53,46,57,48,56,48,51,53,44,51,57,46,51,54,52,53,48,49,93,44,91,45,55,53,46,55,54,54,53,57,52,44,51,57,46,51,55,55,53,54,51,93,44,91,45,55,53,46,55,56,56,53,57,54,44,51,57,46,55,50,50,49,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,52,55,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,50,54,53,56,57,44,52,48,46,52,55,54,56,55,54,93,44,91,45,56,55,46,53,51,49,52,52,57,44,52,48,46,49,52,56,49,50,55,93,44,91,45,56,55,46,52,48,54,54,54,55,44,52,48,46,49,50,55,53,48,56,93,44,91,45,56,55,46,50,52,52,56,57,56,44,52,48,46,51,48,57,50,53,50,93,44,91,45,56,55,46,48,57,50,49,52,56,44,52,48,46,51,54,54,54,49,50,93,44,91,45,56,55,46,48,57,51,54,55,54,44,52,48,46,52,55,53,55,52,53,93,44,91,45,56,55,46,53,50,54,53,56,57,44,52,48,46,52,55,54,56,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,53,50,50,50,53,44,52,49,46,55,52,48,51,55,50,93,44,91,45,57,56,46,55,53,49,53,53,56,44,52,49,46,51,57,52,48,56,52,93,44,91,45,57,56,46,55,52,52,51,51,44,52,49,46,51,57,52,49,55,56,93,44,91,45,57,56,46,50,57,49,52,49,57,44,52,49,46,51,57,51,56,57,52,93,44,91,45,57,56,46,50,57,49,51,52,52,44,52,49,46,52,56,48,55,50,55,93,44,91,45,57,56,46,50,57,53,55,54,44,52,49,46,55,52,49,49,55,56,93,44,91,45,57,56,46,55,53,50,50,50,53,44,52,49,46,55,52,48,51,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,56,56,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,44,91,45,57,55,46,51,54,57,49,57,57,44,52,48,46,48,48,49,57,54,54,93,44,91,45,57,54,46,57,49,54,52,48,55,44,52,48,46,48,48,49,53,49,49,93,44,91,45,57,54,46,57,49,54,48,53,53,44,52,48,46,51,52,57,55,50,55,93,44,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,56,56,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,52,48,49,44,52,48,46,54,57,56,54,50,53,93,44,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,44,91,45,57,54,46,57,49,54,48,53,53,44,52,48,46,51,52,57,55,50,55,93,44,91,45,57,54,46,57,49,50,54,51,55,44,52,48,46,53,50,51,54,50,53,93,44,91,45,57,54,46,57,49,51,52,57,51,44,52,48,46,54,57,55,57,52,56,93,44,91,45,57,55,46,51,54,56,52,48,49,44,52,48,46,54,57,56,54,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,75,110,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,52,56,53,52,52,44,51,55,46,53,48,51,49,54,55,93,44,91,45,56,51,46,48,53,48,50,48,49,44,51,55,46,53,50,53,51,49,52,93,44,91,45,56,51,46,49,50,52,51,52,56,44,51,55,46,52,48,52,57,55,51,93,44,91,45,56,51,46,49,48,49,53,54,51,44,51,55,46,50,51,53,52,51,55,93,44,91,45,56,51,46,48,48,48,49,52,50,44,51,55,46,49,57,53,55,49,93,44,91,45,56,50,46,55,51,50,54,57,51,44,51,55,46,50,55,49,53,48,50,93,44,91,45,56,50,46,55,49,48,56,48,53,44,51,55,46,50,56,53,51,50,51,93,44,91,45,56,50,46,56,51,49,52,55,51,44,51,55,46,52,54,54,57,57,93,44,91,45,56,50,46,57,50,53,52,54,44,51,55,46,52,56,54,53,50,53,93,44,91,45,56,50,46,57,52,56,53,52,52,44,51,55,46,53,48,51,49,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,50,49,56,44,34,98,101,100,115,34,58,50,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,53,52,50,50,49,44,52,50,46,48,51,51,48,55,51,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,50,46,48,51,51,53,52,56,93,44,91,45,57,48,46,56,57,56,52,56,52,44,52,49,46,57,52,54,50,52,53,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,49,46,55,55,49,51,57,50,93,44,91,45,57,48,46,55,48,50,49,52,50,44,52,49,46,55,51,55,55,50,56,93,44,91,45,57,48,46,53,51,55,54,49,54,44,52,49,46,55,55,54,51,57,53,93,44,91,45,57,48,46,51,49,54,53,54,50,44,52,49,46,55,50,56,57,50,56,93,44,91,45,57,48,46,50,52,50,51,56,44,52,49,46,55,56,50,57,54,52,93,44,91,45,57,48,46,49,53,49,57,56,44,52,49,46,57,50,56,57,49,55,93,44,91,45,57,48,46,49,53,52,50,50,49,44,52,50,46,48,51,51,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,52,55,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,53,50,53,48,50,44,52,51,46,56,52,55,57,53,51,93,44,91,45,57,53,46,52,53,52,52,51,51,44,52,51,46,53,48,48,54,52,54,93,44,91,45,57,53,46,51,56,55,55,56,55,44,52,51,46,53,48,48,50,50,54,93,44,91,45,57,52,46,57,49,52,53,56,50,44,52,51,46,53,48,48,56,53,51,93,44,91,45,57,52,46,56,53,52,53,53,53,44,52,51,46,53,48,48,57,50,53,93,44,91,45,57,52,46,56,53,52,52,52,52,44,52,51,46,56,52,56,48,57,57,93,44,91,45,57,52,46,56,53,57,51,56,56,44,52,51,46,56,52,56,48,57,51,93,44,91,45,57,53,46,52,53,50,53,48,50,44,52,51,46,56,52,55,57,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,111,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,52,53,57,49,44,52,52,46,49,57,54,55,49,54,93,44,91,45,57,51,46,48,52,53,57,54,54,44,52,51,46,56,52,56,52,54,55,93,44,91,45,57,50,46,54,56,57,51,57,49,44,52,51,46,56,52,56,53,55,93,44,91,45,57,50,46,54,55,56,55,49,55,44,52,52,46,49,57,53,53,49,54,93,44,91,45,57,51,46,48,52,49,49,53,57,44,52,52,46,49,57,54,55,50,54,93,44,91,45,57,51,46,48,52,53,57,49,44,52,52,46,49,57,54,55,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,114,101,101,98,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,50,54,44,34,98,101,100,115,34,58,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,52,56,50,57,44,52,51,46,56,52,56,49,51,57,93,44,91,45,57,51,46,54,52,56,53,51,51,44,52,51,46,52,57,57,54,56,93,44,91,45,57,51,46,52,57,55,51,53,51,44,52,51,46,52,57,57,54,50,50,93,44,91,45,57,51,46,48,52,57,49,57,50,44,52,51,46,52,57,57,55,48,53,93,44,91,45,57,51,46,48,52,57,53,50,52,44,52,51,46,56,52,56,52,52,51,93,44,91,45,57,51,46,52,48,54,54,52,50,44,52,51,46,56,52,56,49,50,93,44,91,45,57,51,46,54,52,56,50,57,44,52,51,46,56,52,56,49,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,97,108,97,118,101,114,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,50,51,53,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,55,50,52,56,52,44,51,56,46,53,48,57,56,54,57,93,44,91,45,49,50,48,46,53,48,52,54,52,44,51,56,46,52,51,57,51,55,56,93,44,91,45,49,50,48,46,54,52,54,54,49,51,44,51,56,46,51,51,52,53,56,54,93,44,91,45,49,50,48,46,57,57,53,52,57,55,44,51,56,46,50,50,53,52,48,50,93,44,91,45,49,50,48,46,57,50,54,52,52,57,44,51,56,46,48,55,55,52,50,49,93,44,91,45,49,50,48,46,54,53,51,50,55,52,44,51,55,46,56,51,49,56,53,56,93,44,91,45,49,50,48,46,53,49,52,57,53,50,44,51,55,46,57,53,51,51,57,93,44,91,45,49,50,48,46,49,55,54,54,49,51,44,51,56,46,51,55,51,53,49,93,44,91,45,49,50,48,46,48,49,57,57,53,49,44,51,56,46,52,51,51,53,50,49,93,44,91,45,49,50,48,46,48,55,50,52,56,52,44,51,56,46,53,48,57,56,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,97,114,110,115,116,97,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,54,57,48,44,34,98,101,100,115,34,58,52,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,55,53,56,52,54,52,44,52,49,46,53,54,48,57,51,49,93,44,91,45,55,48,46,53,48,50,56,51,50,44,52,49,46,53,48,48,54,51,53,93,44,91,45,55,48,46,51,57,53,49,54,52,44,52,49,46,53,53,54,55,50,50,93,44,91,45,55,48,46,49,54,48,51,53,55,44,52,49,46,53,57,57,51,55,93,44,91,45,55,48,46,49,49,52,51,57,52,44,52,49,46,52,56,52,48,56,51,93,44,91,45,54,57,46,57,52,54,54,49,51,44,52,49,46,53,49,50,49,53,50,93,44,91,45,54,57,46,56,54,50,56,55,54,44,52,49,46,54,55,51,49,53,51,93,44,91,45,54,57,46,56,54,54,53,50,53,44,52,49,46,56,49,55,48,49,49,93,44,91,45,54,57,46,57,50,57,49,48,57,44,52,49,46,57,55,56,52,55,54,93,44,91,45,55,48,46,48,49,49,53,57,49,44,52,50,46,48,55,51,51,55,56,93,44,91,45,55,48,46,49,55,50,53,52,50,44,52,50,46,49,51,52,53,49,53,93,44,91,45,55,48,46,51,50,50,53,50,50,44,52,50,46,49,49,55,57,49,53,93,44,91,45,55,48,46,51,53,53,48,48,52,44,52,50,46,48,48,48,49,48,52,93,44,91,45,55,48,46,54,50,49,54,50,50,44,52,49,46,55,52,56,57,55,50,93,44,91,45,55,48,46,55,53,50,52,50,52,44,52,49,46,53,54,53,56,53,49,93,44,91,45,55,48,46,55,53,56,52,54,52,44,52,49,46,53,54,48,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,105,100,100,108,101,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,53,52,48,55,54,44,51,55,46,54,48,51,49,55,52,93,44,91,45,55,54,46,52,51,55,53,54,49,44,51,55,46,53,49,52,51,54,93,44,91,45,55,54,46,49,52,48,56,51,53,44,51,55,46,53,52,50,50,50,93,44,91,45,55,54,46,49,53,49,55,49,49,44,51,55,46,53,56,53,57,54,56,93,44,91,45,55,54,46,51,54,56,50,49,51,44,51,55,46,53,57,52,51,51,49,93,44,91,45,55,54,46,53,51,54,53,56,57,44,51,55,46,54,51,57,49,57,52,93,44,91,45,55,54,46,54,54,56,49,56,50,44,51,55,46,55,55,56,51,56,54,93,44,91,45,55,54,46,55,53,49,48,55,50,44,51,55,46,55,50,56,54,48,53,93,44,91,45,55,54,46,54,53,52,48,55,54,44,51,55,46,54,48,51,49,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,48,56,52,44,34,98,101,100,115,34,58,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,48,56,56,55,56,44,52,49,46,51,51,49,56,54,49,93,44,91,45,55,57,46,50,49,53,50,49,52,44,52,49,46,48,53,48,53,49,53,93,44,91,45,55,57,46,50,49,53,51,49,44,52,48,46,57,49,49,51,52,54,93,44,91,45,55,56,46,56,48,53,49,54,55,44,52,48,46,57,48,53,57,56,93,44,91,45,55,56,46,56,48,52,53,51,50,44,52,49,46,49,51,50,49,56,54,93,44,91,45,55,56,46,55,49,48,50,52,56,44,52,49,46,50,48,49,56,53,57,93,44,91,45,55,56,46,55,51,53,50,56,44,52,49,46,50,54,50,57,49,53,93,44,91,45,55,56,46,57,53,57,49,53,55,44,52,49,46,51,54,50,49,54,49,93,44,91,45,55,57,46,48,57,53,48,57,54,44,52,49,46,51,52,48,54,53,56,93,44,91,45,55,57,46,50,48,56,56,55,56,44,52,49,46,51,51,49,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,54,56,52,57,44,34,98,101,100,115,34,58,49,55,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,50,49,44,52,49,46,55,54,48,56,56,57,93,44,91,45,56,55,46,53,50,51,54,54,49,44,52,49,46,55,53,57,57,48,55,93,44,91,45,56,55,46,53,50,53,55,48,53,44,52,49,46,52,55,48,50,56,51,93,44,91,45,56,55,46,53,50,54,55,51,49,44,52,49,46,50,57,56,48,53,50,93,44,91,45,56,55,46,53,50,54,53,56,55,44,52,49,46,49,54,54,48,57,93,44,91,45,56,55,46,52,49,52,52,50,49,44,52,49,46,49,54,50,50,52,56,93,44,91,45,56,55,46,50,55,53,56,56,50,44,52,49,46,50,49,56,53,57,53,93,44,91,45,56,55,46,50,49,56,56,54,50,44,52,49,46,50,52,50,48,50,55,93,44,91,45,56,55,46,50,50,49,44,52,49,46,55,54,48,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,53,53,56,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,51,57,52,51,54,44,51,53,46,54,56,53,57,93,44,91,45,56,54,46,54,53,56,50,52,55,44,51,53,46,52,51,53,50,56,49,93,44,91,45,56,54,46,53,57,57,52,55,56,44,51,53,46,51,54,52,57,53,93,44,91,45,56,54,46,53,50,53,51,48,54,44,51,53,46,51,53,52,55,49,56,93,44,91,45,56,54,46,52,50,49,54,55,50,44,51,53,46,51,49,57,50,54,55,93,44,91,45,56,54,46,50,53,55,53,57,44,51,53,46,52,49,50,52,55,54,93,44,91,45,56,54,46,50,52,53,49,54,53,44,51,53,46,54,51,49,57,49,51,93,44,91,45,56,54,46,52,49,51,54,55,56,44,51,53,46,54,50,51,49,55,55,93,44,91,45,56,54,46,53,52,51,49,49,54,44,51,53,46,54,57,55,54,49,55,93,44,91,45,56,54,46,54,51,57,52,51,54,44,51,53,46,54,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,49,51,56,56,53,44,51,54,46,52,57,57,52,55,51,93,44,91,45,56,53,46,55,48,52,48,55,53,44,51,54,46,53,50,50,51,57,53,93,44,91,45,56,53,46,52,57,53,52,50,50,44,51,54,46,52,48,51,48,55,52,93,44,91,45,56,53,46,52,51,56,56,48,56,44,51,54,46,53,48,49,49,48,50,93,44,91,45,56,53,46,50,56,52,56,55,56,44,51,54,46,53,51,49,50,57,51,93,44,91,45,56,53,46,50,55,54,50,56,49,44,51,54,46,54,50,54,56,49,54,93,44,91,45,56,53,46,50,57,54,48,48,50,44,51,54,46,54,50,53,55,49,56,93,44,91,45,56,53,46,52,51,54,52,52,50,44,51,54,46,54,49,56,54,53,53,93,44,91,45,56,53,46,55,56,56,55,50,54,44,51,54,46,54,50,50,48,52,56,93,44,91,45,56,53,46,56,49,51,56,56,53,44,51,54,46,52,57,57,52,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,51,54,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,54,54,51,52,55,44,51,57,46,54,56,53,57,55,51,93,44,91,45,56,56,46,48,54,51,53,49,56,44,51,57,46,54,53,50,54,53,55,93,44,91,45,56,56,46,52,55,50,48,55,51,44,51,57,46,54,53,49,53,56,56,93,44,91,45,56,56,46,52,55,48,53,48,53,44,51,57,46,52,52,55,48,52,49,93,44,91,45,56,56,46,52,55,48,56,51,44,51,57,46,51,55,52,53,49,53,93,44,91,45,56,56,46,48,49,50,49,50,49,44,51,57,46,51,55,56,57,54,56,93,44,91,45,56,55,46,57,54,48,49,55,57,44,51,57,46,52,56,49,51,48,57,93,44,91,45,56,55,46,57,54,54,51,52,55,44,51,57,46,54,56,53,57,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,76,97,117,100,101,114,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,57,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,52,52,56,51,56,44,51,53,46,57,48,52,51,53,49,93,44,91,45,56,57,46,55,52,50,54,48,54,44,51,53,46,57,48,54,54,53,51,93,44,91,45,56,57,46,56,50,48,56,55,54,44,51,53,46,55,53,54,56,54,56,93,44,91,45,56,57,46,57,53,48,50,55,55,44,51,53,46,55,51,56,52,57,52,93,44,91,45,56,57,46,57,48,57,55,57,55,44,51,53,46,53,51,55,57,49,52,93,44,91,45,56,57,46,55,57,51,49,52,53,44,51,53,46,54,51,55,51,53,54,93,44,91,45,56,57,46,54,49,50,57,55,54,44,51,53,46,54,52,51,50,51,54,93,44,91,45,56,57,46,53,48,50,49,49,56,44,51,53,46,53,56,48,54,50,49,93,44,91,45,56,57,46,52,48,49,56,48,53,44,51,53,46,56,50,50,54,53,55,93,44,91,45,56,57,46,51,53,54,48,51,51,44,51,53,46,56,49,55,54,51,53,93,44,91,45,56,57,46,51,52,50,56,50,57,44,51,53,46,56,56,48,57,51,52,93,44,91,45,56,57,46,52,48,54,57,54,53,44,51,53,46,57,52,54,53,57,57,93,44,91,45,56,57,46,54,52,52,56,51,56,44,51,53,46,57,48,52,51,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,97,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,56,52,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,50,54,54,48,48,53,44,52,53,46,48,56,48,53,55,93,44,91,45,49,49,55,46,53,54,51,52,56,54,44,52,53,46,48,55,57,52,52,54,93,44,91,45,49,49,55,46,53,54,52,48,51,51,44,52,52,46,57,57,50,56,54,54,93,44,91,45,49,49,55,46,55,55,55,53,48,52,44,52,52,46,57,57,50,49,54,49,93,44,91,45,49,49,55,46,56,52,51,52,51,44,52,53,46,48,53,56,52,55,55,93,44,91,45,49,49,55,46,57,54,56,51,57,52,44,52,52,46,57,57,54,48,48,50,93,44,91,45,49,49,56,46,49,51,49,51,55,49,44,52,53,46,48,52,52,54,57,93,44,91,45,49,49,56,46,50,52,52,54,54,50,44,52,52,46,57,53,56,51,57,54,93,44,91,45,49,49,56,46,51,49,56,55,50,53,44,52,52,46,56,51,54,50,55,57,93,44,91,45,49,49,56,46,50,56,53,52,51,57,44,52,52,46,55,53,48,57,55,53,93,44,91,45,49,49,56,46,53,49,54,52,53,50,44,52,52,46,55,48,50,52,54,50,93,44,91,45,49,49,56,46,51,48,53,55,55,56,44,52,52,46,53,56,56,56,49,93,44,91,45,49,49,56,46,52,50,50,49,55,51,44,52,52,46,52,52,56,57,56,52,93,44,91,45,49,49,56,46,52,48,57,55,55,52,44,52,52,46,51,55,56,54,49,57,93,44,91,45,49,49,56,46,52,57,55,52,57,57,44,52,52,46,50,53,53,50,52,56,93,44,91,45,49,49,56,46,50,51,50,50,49,52,44,52,52,46,50,53,54,49,50,57,93,44,91,45,49,49,56,46,49,53,50,57,52,53,44,52,52,46,50,55,48,54,56,52,93,44,91,45,49,49,55,46,57,55,49,55,56,55,44,52,52,46,52,52,51,56,52,57,93,44,91,45,49,49,55,46,53,57,48,56,52,57,44,52,52,46,52,52,52,53,55,51,93,44,91,45,49,49,55,46,52,56,54,55,52,52,44,52,52,46,51,56,55,50,52,54,93,44,91,45,49,49,55,46,52,56,55,48,49,52,44,52,52,46,51,48,48,51,49,55,93,44,91,45,49,49,55,46,50,50,48,48,52,56,44,52,52,46,51,48,49,52,48,52,93,44,91,45,49,49,55,46,50,50,52,49,48,52,44,52,52,46,52,56,51,55,51,52,93,44,91,45,49,49,55,46,49,52,52,49,54,49,44,52,52,46,53,52,53,54,52,55,93,44,91,45,49,49,55,46,48,52,52,50,49,55,44,52,52,46,55,52,53,49,52,93,44,91,45,49,49,54,46,56,57,57,55,49,49,44,52,52,46,56,52,48,54,48,57,93,44,91,45,49,49,54,46,55,56,51,56,50,57,44,52,53,46,48,55,56,50,54,51,93,44,91,45,49,49,55,46,50,54,54,48,48,53,44,52,53,46,48,56,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,83,99,104,117,121,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,57,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,54,53,48,50,56,44,52,50,46,50,55,56,52,57,53,93,44,91,45,55,54,46,54,49,57,51,48,51,44,52,50,46,50,56,50,56,53,51,93,44,91,45,55,54,46,54,57,49,52,48,54,44,52,50,46,50,56,52,51,48,55,93,44,91,45,55,54,46,54,57,54,54,53,53,44,52,50,46,53,52,54,55,57,93,44,91,45,55,54,46,56,57,53,53,57,54,44,52,50,46,53,52,49,53,51,55,93,44,91,45,55,54,46,56,56,57,56,48,53,44,52,50,46,52,54,51,48,53,52,93,44,91,45,55,55,46,49,48,55,50,48,51,44,52,50,46,52,56,51,55,55,49,93,44,91,45,55,55,46,48,57,57,54,53,55,44,52,50,46,50,55,50,51,53,54,93,44,91,45,55,54,46,57,54,53,48,50,56,44,52,50,46,50,55,56,52,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,86,97,110,32,66,117,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,50,55,50,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,54,52,54,57,55,44,52,50,46,52,50,48,55,49,53,93,44,91,45,56,55,46,48,52,48,48,52,54,44,52,50,46,52,49,54,57,57,51,93,44,91,45,56,55,46,48,56,56,51,51,56,44,52,50,46,50,51,53,51,51,52,93,44,91,45,56,54,46,50,50,51,53,54,51,44,52,50,46,50,52,51,51,55,57,93,44,91,45,56,54,46,50,50,50,57,52,44,52,50,46,48,55,49,52,56,52,93,44,91,45,56,53,46,55,54,50,57,52,51,44,52,50,46,48,54,57,51,50,55,93,44,91,45,56,53,46,55,54,52,54,57,55,44,52,50,46,52,50,48,55,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,57,51,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,55,50,48,55,44,52,49,46,51,51,51,51,54,49,93,44,91,45,57,49,46,49,49,52,49,56,54,44,52,49,46,50,53,48,48,50,57,93,44,91,45,57,48,46,57,56,57,54,54,50,44,52,49,46,49,53,53,55,48,55,93,44,91,45,57,48,46,57,52,57,51,56,49,44,52,49,46,48,55,50,55,49,93,44,91,45,57,48,46,57,52,56,57,56,57,44,52,49,46,48,55,48,50,53,93,44,91,45,57,48,46,55,56,53,49,57,52,44,52,49,46,48,54,56,55,52,57,93,44,91,45,57,48,46,52,51,57,52,50,51,44,52,49,46,48,54,51,57,57,53,93,44,91,45,57,48,46,52,51,55,54,53,50,44,52,49,46,49,53,49,52,54,51,93,44,91,45,57,48,46,52,51,51,55,51,55,44,52,49,46,51,50,54,57,56,57,93,44,91,45,57,49,46,48,55,50,48,55,44,52,49,46,51,51,51,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,56,51,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,48,52,54,50,53,44,51,56,46,50,52,55,54,54,50,93,44,91,45,56,50,46,55,57,52,50,48,54,44,51,56,46,50,52,51,55,55,50,93,44,91,45,56,50,46,57,50,52,56,48,53,44,51,56,46,49,55,53,49,49,52,93,44,91,45,56,50,46,56,56,57,48,53,57,44,51,56,46,49,49,49,53,56,55,93,44,91,45,56,51,46,48,50,50,49,49,53,44,51,56,46,48,48,55,48,52,55,93,44,91,45,56,50,46,57,56,57,48,49,52,44,51,55,46,57,54,51,57,54,56,93,44,91,45,56,50,46,57,52,55,57,51,54,44,51,56,46,48,48,48,52,51,49,93,44,91,45,56,50,46,54,49,50,51,57,51,44,51,55,46,56,55,57,50,55,50,93,44,91,45,56,50,46,52,57,55,55,57,54,44,51,55,46,57,52,53,52,56,56,93,44,91,45,56,50,46,53,52,57,50,52,44,51,56,46,48,54,55,57,53,50,93,44,91,45,56,50,46,54,51,52,55,48,50,44,51,56,46,49,51,54,57,52,49,93,44,91,45,56,50,46,54,48,52,54,50,53,44,51,56,46,50,52,55,54,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,56,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,51,51,57,52,50,44,51,56,46,48,51,51,57,55,52,93,44,91,45,56,51,46,52,57,53,48,56,44,51,55,46,56,54,49,57,48,54,93,44,91,45,56,51,46,50,54,50,49,55,50,44,51,55,46,55,49,50,54,53,55,93,44,91,45,56,51,46,50,55,48,51,56,55,44,51,55,46,55,54,54,56,52,53,93,44,91,45,56,51,46,48,56,57,52,48,57,44,51,55,46,56,57,48,51,52,93,44,91,45,56,51,46,48,48,52,54,52,57,44,51,55,46,56,53,57,50,52,55,93,44,91,45,56,50,46,57,56,57,48,49,52,44,51,55,46,57,54,51,57,54,56,93,44,91,45,56,51,46,48,50,50,49,49,53,44,51,56,46,48,48,55,48,52,55,93,44,91,45,56,51,46,49,57,52,52,52,53,44,51,56,46,48,49,48,54,52,57,93,44,91,45,56,51,46,50,54,51,50,56,57,44,51,56,46,49,49,53,51,56,54,93,44,91,45,56,51,46,52,51,51,57,52,50,44,51,56,46,48,51,51,57,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,77,117,104,108,101,110,98,101,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,48,56,49,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,57,53,57,54,53,44,51,55,46,51,57,49,56,49,57,93,44,91,45,56,55,46,51,56,56,55,48,55,44,51,55,46,50,54,50,49,56,93,44,91,45,56,55,46,51,51,51,55,52,49,44,51,55,46,49,53,55,49,56,54,93,44,91,45,56,55,46,50,53,57,51,55,49,44,51,55,46,48,55,50,52,48,49,93,44,91,45,56,55,46,48,53,51,49,54,52,44,51,55,46,48,54,49,48,49,57,93,44,91,45,56,54,46,57,52,49,51,57,49,44,51,55,46,48,54,56,57,56,49,93,44,91,45,56,54,46,56,57,57,50,54,56,44,51,55,46,50,49,50,51,49,51,93,44,91,45,56,55,46,48,57,57,56,48,51,44,51,55,46,52,49,54,48,52,50,93,44,91,45,56,55,46,50,57,53,57,54,53,44,51,55,46,51,57,49,56,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,69,102,102,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,49,55,52,44,34,98,101,100,115,34,58,49,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,48,53,51,50,53,44,51,57,46,50,49,54,50,54,51,93,44,91,45,56,56,46,56,48,54,55,57,53,44,51,56,46,57,49,49,53,56,53,93,44,91,45,56,56,46,54,57,51,53,51,49,44,51,56,46,57,49,52,54,49,55,93,44,91,45,56,56,46,51,54,49,55,52,53,44,51,56,46,57,49,48,56,52,55,93,44,91,45,56,56,46,51,54,48,54,53,52,44,51,57,46,49,55,49,49,49,56,93,44,91,45,56,56,46,52,55,48,57,48,54,44,51,57,46,50,49,53,48,50,57,93,44,91,45,56,56,46,56,48,53,51,50,53,44,51,57,46,50,49,54,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,111,117,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,54,49,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,54,51,51,56,51,44,51,53,46,56,57,54,57,52,93,44,91,45,56,52,46,53,51,57,57,54,51,44,51,53,46,54,55,48,52,54,53,93,44,91,45,56,52,46,53,56,52,52,55,50,44,51,53,46,54,52,52,52,50,52,93,44,91,45,56,52,46,53,50,53,56,53,44,51,53,46,54,50,52,49,56,54,93,44,91,45,56,52,46,52,56,54,55,53,52,44,51,53,46,54,53,56,51,55,54,93,44,91,45,56,52,46,50,57,57,53,52,57,44,51,53,46,54,53,55,54,55,51,93,44,91,45,56,52,46,49,56,56,51,49,57,44,51,53,46,54,49,48,53,52,57,93,44,91,45,56,52,46,49,54,54,50,54,55,44,51,53,46,56,48,53,49,48,54,93,44,91,45,56,52,46,50,54,51,51,56,51,44,51,53,46,56,57,54,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,55,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,56,49,55,57,50,44,52,53,46,49,53,51,50,57,53,93,44,91,45,57,55,46,57,55,55,55,57,49,44,52,52,46,54,51,49,54,48,50,93,44,91,45,57,55,46,56,53,51,48,50,56,44,52,52,46,53,52,52,51,57,56,93,44,91,45,57,55,46,52,57,50,50,54,54,44,52,52,46,53,52,51,56,56,52,93,44,91,45,57,55,46,52,57,49,51,52,54,44,52,52,46,56,48,52,48,51,53,93,44,91,45,57,55,46,52,57,52,50,53,52,44,52,53,46,49,53,49,54,51,49,93,44,91,45,57,55,46,57,56,49,55,57,50,44,52,53,46,49,53,51,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,72,111,110,111,108,117,108,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,72,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,55,54,51,56,44,34,98,101,100,115,34,58,50,57,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,56,46,51,50,56,54,53,50,44,50,49,46,53,52,54,93,44,91,45,49,53,56,46,49,54,52,51,53,52,44,50,49,46,50,55,50,51,51,53,93,44,91,45,49,53,56,46,49,49,48,48,55,55,44,50,49,46,50,51,55,48,55,49,93,44,91,45,49,53,55,46,56,57,56,54,53,54,44,50,49,46,50,52,57,57,51,57,93,44,91,45,49,53,55,46,56,49,48,50,50,57,44,50,49,46,49,57,57,50,51,56,93,44,91,45,49,53,55,46,54,55,53,55,55,55,44,50,49,46,50,49,51,56,48,49,93,44,91,45,49,53,55,46,54,48,55,54,57,51,44,50,49,46,50,54,57,49,51,52,93,44,91,45,49,53,55,46,54,54,48,57,52,57,44,50,49,46,52,57,54,55,56,57,93,44,91,45,49,53,55,46,55,53,48,57,50,52,44,50,49,46,53,49,54,52,53,56,93,44,91,45,49,53,55,46,57,52,49,55,56,53,44,50,49,46,55,53,52,53,55,57,93,44,91,45,49,53,56,46,48,53,48,49,52,52,44,50,49,46,55,51,57,56,56,49,93,44,91,45,49,53,56,46,49,52,56,56,52,54,44,50,49,46,54,52,49,57,57,57,93,44,91,45,49,53,56,46,51,50,52,50,52,55,44,50,49,46,54,49,53,54,55,53,93,44,91,45,49,53,56,46,51,50,56,54,53,50,44,50,49,46,53,52,54,93,93,93,44,91,91,91,45,49,55,54,46,48,52,51,51,53,52,44,50,55,46,55,57,53,56,57,55,93,44,91,45,49,55,53,46,57,54,57,53,57,56,44,50,55,46,54,57,51,52,48,50,93,44,91,45,49,55,53,46,55,51,52,49,51,52,44,50,55,46,55,51,56,56,53,53,93,44,91,45,49,55,53,46,54,55,48,49,50,56,44,50,55,46,57,52,49,54,48,49,93,44,91,45,49,55,53,46,56,48,54,55,51,51,44,50,56,46,48,48,55,49,57,50,93,44,91,45,49,55,53,46,57,54,54,51,51,53,44,50,55,46,57,50,57,57,49,49,93,44,91,45,49,55,54,46,48,52,51,51,53,52,44,50,55,46,55,57,53,56,57,55,93,93,93,44,91,91,91,45,49,54,54,46,51,56,54,53,51,50,44,50,51,46,56,52,54,51,54,51,93,44,91,45,49,54,54,46,51,49,53,56,50,51,44,50,51,46,55,52,48,49,50,93,44,91,45,49,54,54,46,50,48,53,52,49,53,44,50,51,46,54,57,49,54,48,49,93,44,91,45,49,54,54,46,49,48,54,55,56,44,50,51,46,55,52,50,53,50,50,93,44,91,45,49,54,54,46,49,56,50,51,52,55,44,50,51,46,57,48,50,51,50,53,93,44,91,45,49,54,54,46,51,48,55,48,55,50,44,50,51,46,57,50,52,56,56,51,93,44,91,45,49,54,54,46,51,56,54,53,51,50,44,50,51,46,56,52,54,51,54,51,93,93,93,44,91,91,91,45,49,55,56,46,52,52,51,53,57,51,44,50,56,46,52,49,56,57,56,54,93,44,91,45,49,55,56,46,51,57,53,54,49,44,50,56,46,51,52,49,57,48,49,93,44,91,45,49,55,56,46,50,51,51,48,49,56,44,50,56,46,51,55,53,93,44,91,45,49,55,56,46,50,51,56,52,54,57,44,50,56,46,52,53,54,49,53,93,44,91,45,49,55,56,46,51,49,53,49,50,49,44,50,56,46,53,49,54,51,51,52,93,44,91,45,49,55,56,46,52,52,51,53,57,51,44,50,56,46,52,49,56,57,56,54,93,93,93,44,91,91,91,45,49,55,52,46,48,54,55,51,55,52,44,50,54,46,48,53,57,54,49,52,93,44,91,45,49,55,52,46,48,48,54,52,48,52,44,50,53,46,57,57,48,50,56,57,93,44,91,45,49,55,51,46,57,50,53,57,54,56,44,50,54,46,48,49,57,54,50,55,93,44,91,45,49,55,51,46,57,53,55,57,49,54,44,50,54,46,49,51,53,54,57,93,44,91,45,49,55,52,46,48,54,55,51,55,52,44,50,54,46,48,53,57,54,49,52,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,71,105,108,99,104,114,105,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,50,48,54,48,56,44,50,57,46,56,50,52,49,52,51,93,44,91,45,56,50,46,57,51,55,51,50,57,44,50,57,46,53,57,49,49,57,54,93,44,91,45,56,50,46,54,53,54,51,48,49,44,50,57,46,53,54,52,56,49,49,93,44,91,45,56,50,46,54,53,56,53,53,52,44,50,57,46,56,51,48,49,52,52,93,44,91,45,56,50,46,56,48,48,52,55,55,44,50,57,46,57,51,50,49,50,54,93,44,91,45,56,50,46,56,55,57,56,48,50,44,50,57,46,56,56,54,56,52,55,93,44,91,45,56,50,46,57,48,51,57,53,54,44,50,57,46,56,50,52,50,57,52,93,44,91,45,56,50,46,57,49,56,55,48,56,44,50,57,46,56,50,52,48,56,51,93,44,91,45,56,50,46,57,50,48,54,48,56,44,50,57,46,56,50,52,49,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,84,105,112,112,101,99,97,110,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,57,50,57,52,44,34,98,101,100,115,34,58,52,55,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,57,50,49,52,56,44,52,48,46,51,54,54,54,49,50,93,44,91,45,56,55,46,48,57,50,53,54,51,44,52,48,46,50,49,52,56,48,54,93,44,91,45,56,54,46,54,57,53,54,51,55,44,52,48,46,50,49,52,51,54,55,93,44,91,45,56,54,46,54,57,52,54,54,53,44,52,48,46,52,51,50,49,53,54,93,44,91,45,56,54,46,55,55,49,50,57,51,44,52,48,46,53,54,50,48,56,50,93,44,91,45,56,55,46,48,57,53,51,53,55,44,52,48,46,53,54,50,56,57,53,93,44,91,45,56,55,46,48,57,51,54,55,54,44,52,48,46,52,55,53,55,52,53,93,44,91,45,56,55,46,48,57,50,49,52,56,44,52,48,46,51,54,54,54,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,83,110,121,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,52,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,56,48,48,50,52,50,44,52,48,46,56,56,49,57,57,52,93,44,91,45,55,54,46,57,52,48,55,48,54,44,52,48,46,56,56,56,48,50,51,93,44,91,45,55,55,46,51,53,54,54,50,56,44,52,48,46,56,48,55,51,51,52,93,44,91,45,55,55,46,50,56,55,57,52,49,44,52,48,46,54,57,51,53,57,53,93,44,91,45,55,55,46,48,51,53,53,52,57,44,52,48,46,54,55,54,57,49,56,93,44,91,45,55,54,46,57,51,57,55,52,57,44,52,48,46,54,51,56,51,55,56,93,44,91,45,55,54,46,56,53,53,51,54,50,44,52,48,46,55,50,56,56,50,49,93,44,91,45,55,54,46,56,48,48,50,52,50,44,52,48,46,56,56,49,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,55,34,44,34,78,65,77,69,34,58,34,76,97,109,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,53,51,50,44,34,98,101,100,115,34,58,50,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,52,54,53,51,54,44,51,51,46,56,51,57,56,53,53,93,44,91,45,57,53,46,56,53,55,55,51,56,44,51,51,46,52,54,49,55,50,50,93,44,91,45,57,53,46,54,50,49,48,50,55,44,51,51,46,52,56,55,48,54,93,44,91,45,57,53,46,51,48,56,54,51,55,44,51,51,46,51,56,48,54,54,50,93,44,91,45,57,53,46,51,49,48,52,57,55,44,51,51,46,56,55,55,50,48,52,93,44,91,45,57,53,46,53,51,51,55,57,56,44,51,51,46,56,56,49,49,53,51,93,44,91,45,57,53,46,53,53,50,55,57,57,44,51,51,46,57,50,52,51,49,49,93,44,91,45,57,53,46,55,54,49,53,50,44,51,51,46,56,55,51,49,49,56,93,44,91,45,57,53,46,56,52,54,53,51,54,44,51,51,46,56,51,57,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,54,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,54,34,44,34,78,65,77,69,34,58,34,77,105,97,109,105,45,68,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,49,53,53,49,54,44,34,98,101,100,115,34,58,56,51,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,53,50,50,53,55,44,50,53,46,57,55,52,57,53,54,93,44,91,45,56,48,46,50,57,52,57,55,50,44,50,53,46,57,53,54,55,55,93,44,91,45,56,48,46,54,56,48,48,49,54,44,50,53,46,57,53,54,56,53,55,93,44,91,45,56,48,46,56,55,50,57,51,50,44,50,53,46,57,55,57,52,51,52,93,44,91,45,56,48,46,56,55,51,48,57,54,44,50,53,46,56,48,53,51,55,55,93,44,91,45,56,48,46,56,55,51,49,57,44,50,53,46,51,54,51,57,57,51,93,44,91,45,56,48,46,56,53,56,49,54,55,44,50,53,46,49,55,54,54,48,55,93,44,91,45,56,48,46,55,48,53,51,55,57,44,50,53,46,49,52,57,48,49,55,93,44,91,45,56,48,46,54,53,49,50,55,57,44,50,53,46,49,57,50,53,57,54,93,44,91,45,56,48,46,52,50,57,51,48,54,44,50,53,46,50,51,53,54,54,49,93,44,91,45,56,48,46,51,55,50,49,50,49,44,50,53,46,51,49,48,50,49,53,93,44,91,45,56,48,46,50,54,53,52,55,50,44,50,53,46,51,53,52,50,57,54,93,44,91,45,56,48,46,49,53,48,50,52,55,44,50,53,46,51,49,52,49,52,57,93,44,91,45,56,48,46,48,53,54,48,53,54,44,50,53,46,56,51,55,54,56,56,93,44,91,45,56,48,46,48,53,50,50,53,55,44,50,53,46,57,55,52,57,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,68,117,110,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,51,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,51,52,50,55,56,56,44,52,48,46,51,53,48,52,52,52,93,44,91,45,49,48,50,46,48,53,49,53,56,54,44,52,48,46,51,52,57,50,49,51,93,44,91,45,49,48,50,46,48,53,49,55,52,52,44,52,48,46,48,48,51,48,55,56,93,44,91,45,49,48,49,46,52,49,49,48,50,57,44,52,48,46,48,48,50,53,50,50,93,44,91,45,49,48,49,46,51,50,53,53,49,52,44,52,48,46,48,48,50,55,48,50,93,44,91,45,49,48,49,46,51,50,51,51,53,51,44,52,48,46,51,53,48,53,53,51,93,44,91,45,49,48,49,46,51,52,50,55,56,56,44,52,48,46,51,53,48,52,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,57,34,44,34,78,65,77,69,34,58,34,76,101,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,56,55,51,44,51,49,46,54,49,56,51,56,53,93,44,91,45,57,54,46,50,51,54,54,50,57,44,51,49,46,52,49,51,51,57,50,93,44,91,45,57,54,46,51,49,57,49,54,53,44,51,49,46,51,53,55,49,50,57,93,44,91,45,57,54,46,51,50,55,54,51,44,51,49,46,50,56,52,56,55,54,93,44,91,45,57,54,46,50,52,49,48,50,44,51,48,46,57,55,51,55,51,55,93,44,91,45,57,53,46,57,55,51,56,52,49,44,51,49,46,48,57,50,49,53,93,44,91,45,57,53,46,55,54,52,52,49,44,51,49,46,48,57,52,50,49,49,93,44,91,45,57,53,46,55,50,53,50,50,54,44,51,49,46,50,55,49,48,56,52,93,44,91,45,57,53,46,54,53,53,53,52,53,44,51,49,46,51,50,57,54,52,93,44,91,45,57,53,46,55,51,57,50,55,57,44,51,49,46,53,48,52,48,53,54,93,44,91,45,57,53,46,55,56,55,51,44,51,49,46,54,49,56,51,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,80,105,116,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,51,57,52,52,56,54,44,51,57,46,50,53,54,50,57,57,93,44,91,45,49,48,55,46,50,56,50,52,57,44,51,57,46,49,49,56,55,49,56,93,44,91,45,49,48,55,46,48,54,54,51,50,44,51,57,46,49,49,56,56,48,53,93,44,91,45,49,48,54,46,57,48,56,49,57,54,44,51,56,46,57,57,50,53,55,57,93,44,91,45,49,48,54,46,56,48,49,56,55,52,44,51,56,46,57,55,56,51,48,51,93,44,91,45,49,48,54,46,55,52,48,54,57,53,44,51,57,46,48,52,53,57,48,54,93,44,91,45,49,48,54,46,53,57,57,50,49,52,44,51,56,46,57,57,55,57,57,52,93,44,91,45,49,48,54,46,53,55,55,57,54,54,44,51,57,46,48,53,55,57,48,56,93,44,91,45,49,48,54,46,52,57,51,54,52,57,44,51,57,46,49,57,56,51,50,54,93,44,91,45,49,48,54,46,53,48,50,54,57,44,51,57,46,50,57,56,48,54,55,93,44,91,45,49,48,54,46,52,50,54,52,56,55,44,51,57,46,51,54,49,56,55,49,93,44,91,45,49,48,55,46,49,49,51,52,52,54,44,51,57,46,51,54,54,48,54,54,93,44,91,45,49,48,55,46,52,51,48,57,52,57,44,51,57,46,51,54,54,49,55,56,93,44,91,45,49,48,55,46,51,57,52,52,56,54,44,51,57,46,50,53,54,50,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,71,114,97,110,100,32,70,111,114,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,52,48,48,44,34,98,101,100,115,34,58,52,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,48,51,51,49,51,44,52,56,46,49,57,52,56,52,53,93,44,91,45,57,55,46,56,56,50,48,54,53,44,52,56,46,48,50,48,56,52,52,93,44,91,45,57,55,46,56,56,50,50,55,49,44,52,55,46,54,55,50,49,55,57,93,44,91,45,57,55,46,52,55,50,55,52,53,44,52,55,46,54,55,50,48,53,49,93,44,91,45,57,54,46,56,56,54,56,52,54,44,52,55,46,54,55,50,48,54,51,93,44,91,45,57,55,46,48,53,53,53,57,55,44,52,55,46,57,52,57,49,50,57,93,44,91,45,57,55,46,49,52,54,55,48,51,44,52,56,46,49,55,51,50,50,51,93,44,91,45,57,55,46,49,52,49,50,50,49,44,52,56,46,49,57,51,55,49,50,93,44,91,45,57,55,46,57,48,51,51,49,51,44,52,56,46,49,57,52,56,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,76,97,80,111,114,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,53,53,50,44,34,98,101,100,115,34,58,50,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,51,51,51,51,52,44,52,49,46,55,54,49,48,51,53,93,44,91,45,56,54,46,57,51,48,48,55,57,44,52,49,46,50,51,54,55,57,56,93,44,91,45,56,54,46,55,56,51,52,55,51,44,52,49,46,50,56,53,52,54,53,93,44,91,45,56,54,46,55,48,48,54,51,44,52,49,46,52,48,49,57,56,50,93,44,91,45,56,54,46,53,50,52,55,49,49,44,52,49,46,52,51,50,56,56,54,93,44,91,45,56,54,46,52,56,54,52,51,51,44,52,49,46,53,55,48,53,52,53,93,44,91,45,56,54,46,53,50,52,50,49,55,44,52,49,46,55,53,57,54,53,57,93,44,91,45,56,54,46,57,51,51,51,51,52,44,52,49,46,55,54,49,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,48,57,53,44,34,98,101,100,115,34,58,54,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,49,57,48,51,44,52,48,46,50,49,56,57,51,54,93,44,91,45,56,54,46,50,52,50,55,52,51,44,52,48,46,50,49,53,56,51,52,93,44,91,45,56,54,46,50,52,50,51,54,53,44,52,48,46,49,56,48,55,55,56,93,44,91,45,56,54,46,50,51,57,55,51,57,44,51,57,46,57,50,54,48,53,53,93,44,91,45,56,53,46,57,51,55,53,56,55,44,51,57,46,57,50,55,49,51,55,93,44,91,45,56,53,46,56,54,50,52,56,57,44,51,57,46,57,52,51,54,49,56,93,44,91,45,56,53,46,56,54,49,57,48,51,44,52,48,46,50,49,56,57,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,57,53,34,44,34,78,65,77,69,34,58,34,69,109,112,111,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,56,49,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,53,54,51,56,56,56,44,51,54,46,55,48,51,48,54,55,93,44,91,45,55,55,46,53,53,54,53,50,52,44,51,54,46,54,55,52,56,55,52,93,44,91,45,55,55,46,53,48,57,50,52,54,44,51,54,46,54,56,50,57,57,56,93,44,91,45,55,55,46,53,48,57,51,54,53,44,51,54,46,55,49,54,51,57,56,93,44,91,45,55,55,46,53,54,51,56,56,56,44,51,54,46,55,48,51,48,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,56,53,52,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,52,48,53,56,51,44,51,53,46,57,52,49,57,57,49,93,44,91,45,57,55,46,49,52,49,48,54,54,44,51,53,46,55,50,52,52,48,49,93,44,91,45,57,55,46,49,52,49,52,57,44,51,53,46,52,54,51,57,55,55,93,44,91,45,57,54,46,54,50,52,54,56,49,44,51,53,46,52,54,50,55,48,55,93,44,91,45,57,54,46,54,50,48,56,50,56,44,51,53,46,54,51,57,48,48,53,93,44,91,45,57,54,46,54,49,57,54,53,53,44,51,53,46,57,52,49,53,55,49,93,44,91,45,57,55,46,49,52,48,53,56,51,44,51,53,46,57,52,49,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,71,114,101,101,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,48,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,53,48,56,50,44,51,56,46,54,49,53,49,55,50,93,44,91,45,49,48,50,46,48,52,52,52,55,53,44,51,56,46,50,54,56,55,52,57,93,44,91,45,49,48,50,46,48,52,52,52,54,52,44,51,56,46,50,54,50,52,49,50,93,44,91,45,49,48,49,46,53,54,55,52,56,50,44,51,56,46,50,54,51,49,52,53,93,44,91,45,49,48,49,46,53,54,55,48,57,52,44,51,56,46,54,57,57,54,54,57,93,44,91,45,49,48,50,46,48,52,53,50,49,50,44,51,56,46,54,57,55,53,54,55,93,44,91,45,49,48,50,46,48,52,53,48,56,50,44,51,56,46,54,49,53,49,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,51,53,48,51,56,44,51,50,46,55,52,54,53,51,93,44,91,45,56,53,46,48,56,48,55,56,52,44,51,50,46,54,48,56,48,55,50,93,44,91,45,56,52,46,54,57,52,54,48,51,44,51,50,46,53,56,51,57,52,53,93,44,91,45,56,52,46,55,48,48,53,51,56,44,51,50,46,56,52,52,54,52,93,44,91,45,56,52,46,56,54,49,55,54,56,44,51,50,46,56,55,50,52,57,53,93,44,91,45,56,53,46,49,56,52,49,51,49,44,51,50,46,56,55,48,53,50,53,93,44,91,45,56,53,46,49,51,53,48,51,56,44,51,50,46,55,52,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,49,34,44,34,78,65,77,69,34,58,34,83,99,114,101,118,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,52,49,56,51,49,44,51,51,46,48,52,53,54,53,52,93,44,91,45,56,49,46,55,54,55,53,53,51,44,51,50,46,57,48,57,52,49,49,93,44,91,45,56,49,46,56,54,55,57,51,56,44,51,50,46,54,56,49,49,53,93,44,91,45,56,49,46,56,52,49,48,48,53,44,51,50,46,54,52,57,48,57,51,93,44,91,45,56,49,46,54,56,55,57,50,55,44,51,50,46,53,52,54,48,55,93,44,91,45,56,49,46,53,52,56,48,48,54,44,51,50,46,52,56,57,50,56,54,93,44,91,45,56,49,46,51,56,57,50,48,53,44,51,50,46,53,57,53,52,49,54,93,44,91,45,56,49,46,52,48,53,48,53,52,44,51,50,46,55,52,52,57,53,55,93,44,91,45,56,49,46,52,50,54,52,55,53,44,51,50,46,56,52,48,55,55,51,93,44,91,45,56,49,46,53,52,49,56,51,49,44,51,51,46,48,52,53,54,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,117,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,54,48,54,44,34,98,101,100,115,34,58,50,48,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,50,57,52,48,51,44,49,56,46,52,54,53,54,51,50,93,44,91,45,54,54,46,49,48,56,50,56,49,44,49,56,46,52,51,56,57,48,50,93,44,91,45,54,54,46,48,56,48,52,55,53,44,49,56,46,50,57,55,50,57,53,93,44,91,45,54,54,46,48,54,54,49,48,51,44,49,56,46,51,48,51,51,50,49,93,44,91,45,54,54,46,48,52,49,53,51,53,44,49,56,46,51,49,50,51,52,52,93,44,91,45,54,53,46,57,57,57,53,53,54,44,49,56,46,51,56,48,48,54,53,93,44,91,45,54,54,46,48,51,51,57,55,44,49,56,46,53,49,52,50,54,57,93,44,91,45,54,54,46,49,50,56,57,56,54,44,49,56,46,53,50,52,52,48,51,93,44,91,45,54,54,46,49,50,57,52,48,51,44,49,56,46,52,54,53,54,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,51,51,34,44,34,78,65,77,69,34,58,34,83,116,111,110,101,119,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,53,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,49,55,52,52,57,44,51,51,46,51,57,55,56,54,54,93,44,91,45,49,48,48,46,53,49,57,50,48,56,44,51,50,46,57,54,50,57,50,54,93,44,91,45,49,48,48,46,49,52,52,50,50,52,44,51,50,46,57,53,57,57,55,56,93,44,91,45,57,57,46,57,56,56,56,50,55,44,51,50,46,57,54,48,49,50,49,93,44,91,45,57,57,46,57,57,48,57,56,44,51,51,46,51,57,55,52,48,52,93,44,91,45,49,48,48,46,53,49,55,52,52,57,44,51,51,46,51,57,55,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,51,49,54,44,34,98,101,100,115,34,58,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,49,54,54,52,44,52,49,46,52,50,55,53,54,56,93,44,91,45,56,52,46,50,50,56,52,53,52,44,52,49,46,52,50,55,56,49,93,44,91,45,56,52,46,50,50,56,50,50,50,44,52,49,46,49,54,53,56,54,50,93,44,91,45,56,51,46,56,56,49,49,52,57,44,52,49,46,49,54,55,56,50,52,93,44,91,45,56,51,46,56,56,51,50,51,52,44,52,49,46,52,49,52,53,48,51,93,44,91,45,56,51,46,56,56,50,57,52,51,44,52,49,46,52,56,55,53,52,51,93,44,91,45,56,52,46,51,52,49,57,48,50,44,52,49,46,52,56,53,53,49,57,93,44,91,45,56,52,46,51,52,49,54,54,52,44,52,49,46,52,50,55,53,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,71,114,97,102,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,56,49,49,44,34,98,101,100,115,34,58,53,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,48,51,57,56,50,44,52,52,46,49,53,53,55,51,93,44,91,45,55,50,46,48,51,50,51,50,57,44,52,52,46,48,56,48,56,54,57,93,44,91,45,55,50,46,49,49,54,57,53,54,44,52,51,46,57,57,50,54,51,54,93,44,91,45,55,50,46,50,48,53,50,49,57,44,52,51,46,55,55,48,57,54,52,93,44,91,45,55,50,46,51,48,53,49,51,51,44,52,51,46,54,57,53,51,50,49,93,44,91,45,55,50,46,51,50,57,56,57,57,44,52,51,46,54,48,48,50,49,52,93,44,91,45,55,49,46,57,51,53,51,49,44,52,51,46,53,50,56,56,56,93,44,91,45,55,49,46,55,50,55,53,55,51,44,52,51,46,53,54,51,52,49,49,93,44,91,45,55,49,46,54,52,56,51,52,54,44,52,51,46,54,56,52,53,49,49,93,44,91,45,55,49,46,53,51,49,54,53,56,44,52,51,46,55,54,48,57,55,57,93,44,91,45,55,49,46,53,54,52,54,48,51,44,52,51,46,56,57,51,49,55,50,93,44,91,45,55,49,46,51,54,49,57,54,53,44,52,51,46,57,49,53,57,51,56,93,44,91,45,55,49,46,51,54,54,51,53,53,44,52,52,46,48,54,56,53,50,52,93,44,91,45,55,49,46,52,49,53,56,57,56,44,52,52,46,50,49,50,49,54,57,93,44,91,45,55,49,46,53,55,53,56,49,57,44,52,52,46,50,53,52,53,57,54,93,44,91,45,55,49,46,55,54,53,54,56,52,44,52,52,46,52,48,54,50,57,53,93,44,91,45,55,49,46,56,51,55,56,53,51,44,52,52,46,51,52,55,57,57,51,93,44,91,45,55,49,46,57,56,49,52,50,52,44,52,52,46,51,51,55,51,54,54,93,44,91,45,55,50,46,48,54,56,52,55,56,44,52,52,46,50,55,48,56,48,49,93,44,91,45,55,50,46,48,52,50,57,53,54,44,52,52,46,49,53,54,52,57,55,93,44,91,45,55,50,46,48,51,57,56,50,44,52,52,46,49,53,53,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,50,48,50,44,34,98,101,100,115,34,58,54,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,55,57,54,52,44,51,54,46,57,57,56,57,48,53,93,44,91,45,57,52,46,54,49,56,51,48,55,44,51,54,46,55,54,54,53,54,93,44,91,45,57,52,46,48,54,56,56,57,56,44,51,54,46,55,52,55,56,49,56,93,44,91,45,57,52,46,48,54,50,55,52,44,51,54,46,57,51,49,55,55,53,93,44,91,45,57,52,46,48,53,57,50,49,49,44,51,55,46,48,52,56,49,50,55,93,44,91,45,57,52,46,54,49,55,56,52,57,44,51,55,46,48,53,54,55,57,55,93,44,91,45,57,52,46,54,49,55,57,54,52,44,51,54,46,57,57,56,57,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,80,111,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,56,51,55,51,50,44,51,56,46,50,51,48,51,53,52,93,44,91,45,56,55,46,57,49,48,57,50,52,44,51,56,46,49,54,50,53,53,55,93,44,91,45,56,56,46,48,49,51,49,49,56,44,51,56,46,49,48,51,53,50,55,93,44,91,45,56,56,46,48,49,51,51,53,53,44,51,55,46,56,57,52,56,53,52,93,44,91,45,56,56,46,48,57,51,48,52,57,44,51,55,46,56,57,49,54,48,52,93,44,91,45,56,56,46,48,50,56,48,49,54,44,51,55,46,55,57,57,49,56,56,93,44,91,45,56,55,46,57,48,54,57,51,57,44,51,55,46,56,48,55,53,57,51,93,44,91,45,56,55,46,57,50,55,48,54,56,44,51,55,46,57,48,49,54,56,53,93,44,91,45,56,55,46,55,48,48,55,54,50,44,51,55,46,56,57,55,53,53,54,93,44,91,45,56,55,46,54,56,56,51,55,52,44,51,56,46,49,54,56,52,49,57,93,44,91,45,56,55,46,55,57,57,49,54,57,44,51,56,46,50,50,56,53,56,93,44,91,45,56,55,46,57,56,51,55,51,50,44,51,56,46,50,51,48,51,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,49,34,44,34,78,65,77,69,34,58,34,77,99,77,117,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,48,56,52,56,44,50,56,46,54,52,55,51,48,54,93,44,91,45,57,56,46,56,48,51,51,50,53,44,50,56,46,48,53,55,52,56,93,44,91,45,57,56,46,51,51,52,51,50,51,44,50,56,46,48,53,55,56,93,44,91,45,57,56,46,51,51,53,48,51,49,44,50,56,46,54,49,50,54,53,56,93,44,91,45,57,56,46,51,51,53,48,52,55,44,50,56,46,54,52,56,50,55,53,93,44,91,45,57,56,46,56,48,48,56,52,56,44,50,56,46,54,52,55,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,55,48,56,51,44,51,57,46,51,55,52,53,49,53,93,44,91,45,56,56,46,52,55,48,57,48,54,44,51,57,46,50,49,53,48,50,57,93,44,91,45,56,56,46,51,54,48,54,53,52,44,51,57,46,49,55,49,49,49,56,93,44,91,45,56,56,46,48,48,55,55,54,54,44,51,57,46,49,55,51,57,50,53,93,44,91,45,56,56,46,48,49,50,49,50,49,44,51,57,46,51,55,56,57,54,56,93,44,91,45,56,56,46,52,55,48,56,51,44,51,57,46,51,55,52,53,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,55,34,44,34,78,65,77,69,34,58,34,87,97,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,49,51,50,44,34,98,101,100,115,34,58,49,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,56,50,48,51,51,44,51,51,46,55,56,54,48,53,52,93,44,91,45,56,51,46,57,49,52,56,50,51,44,51,51,46,55,52,52,50,48,51,93,44,91,45,56,51,46,54,56,48,56,57,54,44,51,51,46,53,57,54,57,49,57,93,44,91,45,56,51,46,53,48,53,57,50,56,44,51,51,46,56,49,55,55,54,93,44,91,45,56,51,46,54,52,55,48,51,49,44,51,51,46,57,48,54,49,57,56,93,44,91,45,56,51,46,55,57,57,49,48,52,44,51,51,46,57,50,57,56,52,52,93,44,91,45,56,51,46,57,56,50,48,51,51,44,51,51,46,55,56,54,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,80,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,56,48,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,53,56,53,48,56,44,52,53,46,55,53,57,57,51,50,93,44,91,45,57,53,46,55,52,55,52,48,50,44,52,53,46,52,49,50,51,49,51,93,44,91,45,57,53,46,50,53,53,50,49,51,44,52,53,46,52,49,50,55,51,57,93,44,91,45,57,53,46,49,51,49,55,51,44,52,53,46,52,49,50,52,48,50,93,44,91,45,57,53,46,49,51,57,54,55,44,52,53,46,55,53,56,56,57,49,93,44,91,45,57,53,46,55,53,56,53,48,56,44,52,53,46,55,53,57,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,82,97,112,112,97,104,97,110,110,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,51,48,53,55,52,44,51,56,46,56,54,52,56,54,53,93,44,91,45,55,56,46,50,56,52,56,48,53,44,51,56,46,55,53,57,51,49,53,93,44,91,45,55,56,46,51,51,56,49,55,54,44,51,56,46,54,50,55,51,49,50,93,44,91,45,55,56,46,50,51,49,56,48,51,44,51,56,46,53,51,50,53,51,57,93,44,91,45,55,56,46,49,54,56,55,57,50,44,51,56,46,53,50,51,56,48,57,93,44,91,45,55,55,46,57,51,53,51,53,53,44,51,56,46,54,57,53,56,52,93,44,91,45,55,56,46,49,51,48,53,55,52,44,51,56,46,56,54,52,56,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,109,104,101,114,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,56,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,49,55,50,49,51,49,44,51,55,46,56,48,51,48,57,55,93,44,91,45,55,57,46,50,54,52,54,55,52,44,51,55,46,55,57,52,54,57,52,93,44,91,45,55,57,46,51,52,53,50,51,53,44,51,55,46,54,54,48,54,50,53,93,44,91,45,55,57,46,52,51,54,57,52,55,44,51,55,46,54,49,55,48,53,55,93,44,91,45,55,57,46,51,52,49,54,55,44,51,55,46,53,49,56,48,49,53,93,44,91,45,55,57,46,49,56,53,55,48,50,44,51,55,46,52,54,53,56,50,93,44,91,45,55,57,46,48,56,53,49,50,51,44,51,55,46,51,57,52,56,55,53,93,44,91,45,55,57,46,48,50,49,54,56,55,44,51,55,46,52,50,57,50,52,51,93,44,91,45,55,56,46,56,54,57,50,52,53,44,51,55,46,53,52,50,48,57,50,93,44,91,45,55,56,46,57,54,54,57,50,54,44,51,55,46,54,55,55,48,48,52,93,44,91,45,55,57,46,49,55,50,49,51,49,44,51,55,46,56,48,51,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,86,101,110,116,117,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,56,49,49,50,44,34,98,101,100,115,34,58,49,52,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,49,57,46,53,48,48,57,53,51,44,51,52,46,51,50,54,57,50,50,93,44,91,45,49,49,57,46,51,51,53,57,50,54,44,51,52,46,50,51,55,53,50,51,93,44,91,45,49,49,57,46,50,49,55,57,57,51,44,51,52,46,48,54,50,52,57,49,93,44,91,45,49,49,56,46,57,53,49,55,50,49,44,51,51,46,57,57,50,56,53,56,93,44,91,45,49,49,56,46,57,52,48,57,54,53,44,51,52,46,48,55,52,56,51,93,44,91,45,49,49,56,46,55,56,56,56,56,57,44,51,52,46,49,54,56,50,49,52,93,44,91,45,49,49,56,46,54,54,56,49,53,50,44,51,52,46,49,54,56,49,57,53,93,44,91,45,49,49,56,46,54,51,54,55,56,57,44,51,52,46,50,57,49,56,48,52,93,44,91,45,49,49,56,46,56,56,49,51,54,52,44,51,52,46,55,57,48,54,50,57,93,44,91,45,49,49,57,46,50,52,51,54,52,53,44,51,52,46,56,49,52,49,55,56,93,44,91,45,49,49,57,46,50,55,54,57,52,54,44,51,52,46,56,55,57,54,55,53,93,44,91,45,49,49,57,46,52,52,50,51,53,50,44,51,52,46,57,48,49,50,55,52,93,44,91,45,49,49,57,46,52,52,50,50,50,50,44,51,52,46,52,53,53,57,49,93,44,91,45,49,49,57,46,53,48,48,57,53,51,44,51,52,46,51,50,54,57,50,50,93,93,93,44,91,91,91,45,49,49,57,46,54,51,54,48,54,56,44,51,51,46,50,56,48,55,49,51,93,44,91,45,49,49,57,46,53,55,52,49,57,50,44,51,51,46,49,56,54,52,56,52,93,44,91,45,49,49,57,46,52,51,51,55,49,55,44,51,51,46,49,54,54,57,56,55,93,44,91,45,49,49,57,46,51,54,48,57,50,54,44,51,51,46,50,52,50,48,54,93,44,91,45,49,49,57,46,53,50,53,51,49,51,44,51,51,46,51,51,52,56,54,50,93,44,91,45,49,49,57,46,54,51,54,48,54,56,44,51,51,46,50,56,48,55,49,51,93,93,93,44,91,91,91,45,49,49,57,46,52,54,56,48,54,52,44,51,52,46,48,54,51,49,51,57,93,44,91,45,49,49,57,46,52,57,50,50,57,44,51,51,46,57,56,51,50,49,53,93,44,91,45,49,49,57,46,51,56,48,52,53,54,44,51,51,46,57,53,51,54,49,49,93,44,91,45,49,49,57,46,51,52,50,52,54,50,44,51,52,46,48,54,56,57,54,52,93,44,91,45,49,49,57,46,52,54,56,48,54,52,44,51,52,46,48,54,51,49,51,57,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,56,56,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,53,48,51,56,53,44,51,57,46,49,55,52,56,56,50,93,44,91,45,56,55,46,57,52,53,57,49,57,44,51,56,46,56,53,48,49,52,56,93,44,91,45,56,55,46,57,48,56,49,49,51,44,51,56,46,56,53,48,49,48,55,93,44,91,45,56,55,46,53,51,49,49,52,53,44,51,56,46,56,53,50,53,48,55,93,44,91,45,56,55,46,53,50,50,57,51,57,44,51,56,46,57,48,50,51,57,93,44,91,45,56,55,46,54,50,56,55,57,56,44,51,57,46,49,53,55,53,49,51,93,44,91,45,56,55,46,57,53,48,51,56,53,44,51,57,46,49,55,52,56,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,80,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,57,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,49,57,49,48,48,54,44,51,57,46,48,53,54,48,55,51,93,44,91,45,49,48,54,46,49,48,53,55,53,56,44,51,56,46,57,52,48,51,54,52,93,44,91,45,49,48,54,46,48,50,56,49,51,56,44,51,56,46,57,52,50,56,52,57,93,44,91,45,49,48,53,46,57,48,54,53,56,55,44,51,56,46,56,48,54,57,54,50,93,44,91,45,49,48,53,46,57,54,57,55,53,44,51,56,46,54,57,51,53,53,49,93,44,91,45,49,48,53,46,51,50,57,49,51,52,44,51,56,46,54,57,55,50,48,53,93,44,91,45,49,48,53,46,51,51,48,52,52,52,44,51,57,46,49,50,57,54,56,53,93,44,91,45,49,48,53,46,51,57,55,56,55,53,44,51,57,46,49,50,57,53,54,52,93,44,91,45,49,48,53,46,51,57,56,57,52,57,44,51,57,46,53,54,54,48,53,54,93,44,91,45,49,48,53,46,56,50,57,54,54,50,44,51,57,46,53,54,52,56,54,53,93,44,91,45,49,48,53,46,57,53,49,54,57,56,44,51,57,46,52,49,52,54,49,57,93,44,91,45,49,48,54,46,49,51,53,53,50,57,44,51,57,46,51,55,57,53,52,54,93,44,91,45,49,48,54,46,49,56,51,57,55,50,44,51,57,46,51,48,57,51,53,52,93,44,91,45,49,48,54,46,49,57,49,48,48,54,44,51,57,46,48,53,54,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,76,111,115,32,65,110,103,101,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,57,56,48,53,50,44,34,98,101,100,115,34,58,50,52,48,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,49,56,46,56,56,49,51,54,52,44,51,52,46,55,57,48,54,50,57,93,44,91,45,49,49,56,46,54,51,54,55,56,57,44,51,52,46,50,57,49,56,48,52,93,44,91,45,49,49,56,46,54,54,56,49,53,50,44,51,52,46,49,54,56,49,57,53,93,44,91,45,49,49,56,46,55,56,56,56,56,57,44,51,52,46,49,54,56,50,49,52,93,44,91,45,49,49,56,46,57,52,48,57,54,53,44,51,52,46,48,55,52,56,51,93,44,91,45,49,49,56,46,57,53,49,55,50,49,44,51,51,46,57,57,50,56,53,56,93,44,91,45,49,49,56,46,56,50,52,56,57,51,44,51,51,46,57,52,57,48,52,50,93,44,91,45,49,49,56,46,53,53,55,51,53,54,44,51,51,46,57,56,55,54,55,51,93,44,91,45,49,49,56,46,52,52,51,57,54,56,44,51,51,46,56,51,57,48,53,55,93,44,91,45,49,49,56,46,52,54,54,57,54,50,44,51,51,46,55,50,53,53,50,52,93,44,91,45,49,49,56,46,51,52,53,52,49,53,44,51,51,46,54,54,51,52,50,55,93,44,91,45,49,49,56,46,49,50,53,57,44,51,51,46,54,57,55,49,53,49,93,44,91,45,49,49,56,46,48,53,56,57,49,56,44,51,51,46,56,52,54,49,50,49,93,44,91,45,49,49,55,46,57,55,54,52,57,56,44,51,51,46,57,52,54,48,53,93,44,91,45,49,49,55,46,55,56,51,50,56,55,44,51,51,46,57,52,54,52,49,49,93,44,91,45,49,49,55,46,54,55,56,53,48,49,44,51,52,46,49,54,49,57,57,51,93,44,91,45,49,49,55,46,54,52,54,51,55,52,44,51,52,46,50,56,57,49,55,93,44,91,45,49,49,55,46,54,54,55,50,57,50,44,51,52,46,56,50,50,53,50,54,93,44,91,45,49,49,56,46,56,53,52,48,49,44,51,52,46,56,49,55,51,51,57,93,44,91,45,49,49,56,46,56,56,49,51,54,52,44,51,52,46,55,57,48,54,50,57,93,93,93,44,91,91,91,45,49,49,56,46,54,54,56,50,48,51,44,51,51,46,52,56,53,57,51,55,93,44,91,45,49,49,56,46,53,53,51,51,55,54,44,51,51,46,51,56,48,50,50,54,93,44,91,45,49,49,56,46,53,49,56,48,51,55,44,51,51,46,50,57,54,54,53,93,44,91,45,49,49,56,46,51,50,55,57,57,51,44,51,51,46,50,52,56,48,56,51,93,44,91,45,49,49,56,46,50,54,50,55,52,56,44,51,51,46,51,55,48,52,52,93,44,91,45,49,49,56,46,51,53,57,51,57,51,44,51,51,46,52,54,52,57,50,50,93,44,91,45,49,49,56,46,53,50,51,50,51,54,44,51,51,46,53,51,48,49,53,51,93,44,91,45,49,49,56,46,54,54,56,50,48,51,44,51,51,46,52,56,53,57,51,55,93,93,93,44,91,91,91,45,49,49,56,46,54,55,56,50,48,52,44,51,51,46,48,51,57,55,50,54,93,44,91,45,49,49,56,46,53,51,56,49,57,55,44,51,50,46,56,49,50,55,55,93,44,91,45,49,49,56,46,52,51,54,53,51,56,44,51,50,46,55,53,48,48,52,93,44,91,45,49,49,56,46,51,50,51,56,49,57,44,51,50,46,55,55,51,53,49,52,93,44,91,45,49,49,56,46,50,57,55,50,53,44,51,50,46,56,52,53,48,57,52,93,44,91,45,49,49,56,46,52,52,56,56,54,51,44,51,50,46,57,54,49,55,53,93,44,91,45,49,49,56,46,53,52,50,49,48,51,44,51,51,46,48,55,51,55,56,56,93,44,91,45,49,49,56,46,54,55,56,50,48,52,44,51,51,46,48,51,57,55,50,54,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,89,117,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,56,50,57,44,34,98,101,100,115,34,58,52,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,55,49,57,52,57,55,44,51,50,46,55,49,56,55,51,57,93,44,91,45,49,49,52,46,56,48,57,52,51,55,44,51,50,46,54,49,53,57,56,54,93,44,91,45,49,49,52,46,56,49,51,54,57,50,44,51,50,46,52,57,52,48,54,57,93,44,91,45,49,49,51,46,56,51,54,50,50,54,44,51,50,46,49,57,54,48,55,54,93,44,91,45,49,49,51,46,51,51,51,55,54,55,44,51,50,46,48,51,56,57,50,55,93,44,91,45,49,49,51,46,51,51,51,56,57,52,44,51,50,46,53,48,53,49,56,56,93,44,91,45,49,49,51,46,51,51,53,48,52,56,44,51,51,46,51,55,55,52,54,57,93,44,91,45,49,49,51,46,57,53,55,52,56,57,44,51,51,46,51,55,55,51,54,50,93,44,91,45,49,49,51,46,57,53,55,53,49,52,44,51,51,46,52,54,52,52,49,51,93,44,91,45,49,49,52,46,50,54,56,56,48,56,44,51,51,46,52,54,52,52,48,50,93,44,91,45,49,49,52,46,50,54,56,56,44,51,51,46,48,50,57,57,54,49,93,44,91,45,49,49,52,46,53,49,54,56,52,50,44,51,51,46,48,50,55,56,56,54,93,44,91,45,49,49,52,46,52,54,50,57,50,57,44,51,50,46,57,48,55,57,52,52,93,44,91,45,49,49,52,46,53,50,54,56,53,54,44,51,50,46,55,53,55,48,57,52,93,44,91,45,49,49,52,46,55,49,57,52,57,55,44,51,50,46,55,49,56,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,71,111,114,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,55,57,48,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,54,57,49,53,57,44,51,52,46,53,56,55,49,56,52,93,44,91,45,56,53,46,48,56,54,55,54,49,44,51,52,46,52,48,49,50,54,52,93,44,91,45,56,53,46,48,48,53,55,55,53,44,51,52,46,51,57,50,52,52,54,93,44,91,45,56,52,46,54,53,51,50,51,50,44,51,52,46,52,49,50,53,57,93,44,91,45,56,52,46,54,53,52,51,54,54,44,51,52,46,53,52,56,57,52,54,93,44,91,45,56,52,46,54,53,52,53,50,51,44,51,52,46,53,56,51,49,56,55,93,44,91,45,56,52,46,57,49,51,52,53,54,44,51,52,46,54,51,52,49,50,56,93,44,91,45,56,53,46,48,53,48,52,52,54,44,51,52,46,54,50,50,52,56,50,93,44,91,45,56,53,46,48,54,57,49,53,57,44,51,52,46,53,56,55,49,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,49,52,52,56,53,44,52,50,46,53,54,48,51,48,57,93,44,91,45,57,52,46,56,53,54,54,56,57,44,52,50,46,52,55,51,57,57,54,93,44,91,45,57,52,46,56,53,56,52,49,50,44,52,50,46,50,48,57,54,57,50,93,44,91,45,57,52,46,54,50,56,56,48,54,44,52,50,46,50,48,57,51,57,54,93,44,91,45,57,52,46,51,57,55,53,50,54,44,52,50,46,50,48,57,49,54,49,93,44,91,45,57,52,46,51,57,55,54,55,49,44,52,50,46,52,55,51,51,93,44,91,45,57,52,46,52,52,51,48,50,52,44,52,50,46,53,53,56,56,52,51,93,44,91,45,57,52,46,57,49,52,52,56,53,44,52,50,46,53,54,48,51,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,72,105,103,104,108,97,110,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,48,49,44,34,98,101,100,115,34,58,50,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,54,51,53,51,51,44,50,55,46,54,52,54,54,52,53,93,44,91,45,56,49,46,53,54,52,48,54,50,44,50,55,46,51,52,48,54,52,49,93,44,91,45,56,49,46,53,54,50,54,50,52,44,50,55,46,48,51,51,56,51,53,93,44,91,45,56,49,46,53,54,50,53,51,49,44,50,55,46,48,51,51,54,56,55,93,44,91,45,56,49,46,50,54,55,50,49,54,44,50,55,46,48,51,50,52,55,52,93,44,91,45,56,49,46,50,54,55,54,55,55,44,50,55,46,49,50,49,48,57,55,93,44,91,45,56,49,46,49,54,56,50,56,49,44,50,55,46,49,50,49,55,51,52,93,44,91,45,56,49,46,49,54,57,49,51,56,44,50,55,46,50,48,57,53,56,53,93,44,91,45,56,48,46,57,52,48,54,55,54,44,50,55,46,50,48,53,57,51,57,93,44,91,45,56,49,46,50,48,53,51,56,56,44,50,55,46,52,57,48,50,53,52,93,44,91,45,56,49,46,49,52,50,49,54,52,44,50,55,46,54,52,51,50,51,56,93,44,91,45,56,49,46,53,54,51,53,51,51,44,50,55,46,54,52,54,54,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,56,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,56,48,34,44,34,78,65,77,69,34,58,34,67,111,118,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,48,56,57,57,52,44,51,55,46,55,54,50,53,56,55,93,44,91,45,55,57,46,57,55,56,50,49,52,44,51,55,46,55,54,52,57,55,53,93,44,91,45,55,57,46,57,54,55,48,55,49,44,51,55,46,56,48,51,52,48,53,93,44,91,45,55,57,46,57,57,50,48,53,53,44,51,55,46,55,57,57,56,49,93,44,91,45,56,48,46,48,48,56,57,57,52,44,51,55,46,55,54,50,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,51,55,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,51,54,56,51,53,51,44,52,52,46,50,48,52,48,53,55,93,44,91,45,55,50,46,52,52,51,48,51,50,44,52,52,46,49,50,56,54,54,57,93,44,91,45,55,50,46,53,56,57,56,53,53,44,52,52,46,49,53,57,51,52,51,93,44,91,45,55,50,46,55,52,50,51,48,51,44,52,52,46,48,50,57,54,53,53,93,44,91,45,55,50,46,55,57,49,51,51,54,44,52,51,46,57,54,49,56,53,53,93,44,91,45,55,50,46,55,56,51,50,48,56,44,52,51,46,57,50,56,57,54,55,93,44,91,45,55,50,46,50,48,53,50,49,57,44,52,51,46,55,55,48,57,54,52,93,44,91,45,55,50,46,49,49,54,57,53,54,44,52,51,46,57,57,50,54,51,54,93,44,91,45,55,50,46,48,51,50,51,50,57,44,52,52,46,48,56,48,56,54,57,93,44,91,45,55,50,46,48,51,57,56,50,44,52,52,46,49,53,53,55,51,93,44,91,45,55,50,46,48,52,50,57,53,54,44,52,52,46,49,53,54,52,57,55,93,44,91,45,55,50,46,51,54,56,51,53,51,44,52,52,46,50,48,52,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,99,80,104,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,51,48,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,50,52,50,54,57,44,51,56,46,53,50,50,55,53,53,93,44,91,45,57,55,46,57,50,50,49,51,54,44,51,56,46,49,55,51,55,49,51,93,44,91,45,57,55,46,55,48,49,56,52,49,44,51,56,46,49,55,51,56,49,52,93,44,91,45,57,55,46,51,55,49,55,53,44,51,56,46,49,55,51,54,55,51,93,44,91,45,57,55,46,51,55,49,57,49,49,44,51,56,46,54,48,57,51,53,51,93,44,91,45,57,55,46,57,50,52,55,57,53,44,51,56,46,54,48,57,56,56,93,44,91,45,57,55,46,57,50,52,50,54,57,44,51,56,46,53,50,50,55,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,80,105,110,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,57,55,50,49,44,34,98,101,100,115,34,58,52,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,48,51,57,57,55,54,44,51,51,46,52,54,54,48,49,57,93,44,91,45,49,49,49,46,53,56,48,54,51,52,44,51,51,46,52,54,53,56,93,44,91,45,49,49,49,46,53,56,50,54,51,49,44,51,51,46,50,48,53,52,48,56,93,44,91,45,49,49,50,46,48,56,49,57,52,54,44,51,51,46,50,48,52,54,56,54,93,44,91,45,49,49,50,46,49,57,49,54,48,56,44,51,51,46,50,54,52,54,57,56,93,44,91,45,49,49,50,46,50,48,51,54,50,52,44,51,50,46,53,48,54,55,50,49,93,44,91,45,49,49,49,46,53,54,57,50,53,54,44,51,50,46,53,48,54,55,54,57,93,44,91,45,49,49,48,46,52,53,49,53,50,50,44,51,50,46,53,49,51,57,57,53,93,44,91,45,49,49,48,46,52,52,57,48,50,49,44,51,51,46,49,57,52,53,50,54,93,44,91,45,49,49,48,46,54,51,52,52,49,50,44,51,51,46,49,52,50,51,54,54,93,44,91,45,49,49,48,46,55,56,51,49,51,54,44,51,50,46,57,56,52,54,54,93,44,91,45,49,49,48,46,57,52,54,54,56,52,44,51,51,46,50,53,48,48,53,51,93,44,91,45,49,49,49,46,48,51,57,57,55,54,44,51,51,46,52,54,54,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,51,48,53,44,34,98,101,100,115,34,58,49,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,57,57,53,52,54,44,52,49,46,55,48,53,56,49,54,93,44,91,45,56,52,46,51,56,48,55,51,53,44,52,49,46,53,49,51,57,52,50,93,44,91,45,56,52,46,51,52,49,57,48,50,44,52,49,46,52,56,53,53,49,57,93,44,91,45,56,51,46,56,56,50,57,52,51,44,52,49,46,52,56,55,53,52,51,93,44,91,45,56,51,46,56,56,48,51,57,49,44,52,49,46,55,50,48,50,49,50,93,44,91,45,56,52,46,51,54,48,52,49,54,44,52,49,46,55,48,54,53,56,57,93,44,91,45,56,52,46,51,57,57,53,52,54,44,52,49,46,55,48,53,56,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,97,109,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,52,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,51,56,52,49,51,44,51,55,46,55,52,56,51,53,51,93,44,91,45,49,48,54,46,48,51,57,51,51,49,44,51,55,46,52,48,48,56,53,50,93,44,91,45,49,48,54,46,48,51,56,57,49,50,44,51,55,46,51,53,54,57,53,51,93,44,91,45,49,48,53,46,55,52,51,51,51,57,44,51,55,46,51,53,54,55,57,56,93,44,91,45,49,48,53,46,52,56,53,53,49,54,44,51,55,46,53,55,55,56,57,57,93,44,91,45,49,48,53,46,52,53,55,50,53,53,44,51,55,46,55,53,49,52,54,52,93,44,91,45,49,48,54,46,48,51,56,52,49,51,44,51,55,46,55,52,56,51,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,105,116,114,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,48,56,55,44,34,98,101,100,115,34,58,51,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,55,56,52,51,55,44,50,56,46,54,57,52,50,48,54,93,44,91,45,56,50,46,52,49,56,51,53,51,44,50,56,46,54,57,52,56,53,57,93,44,91,45,56,50,46,50,54,51,48,53,50,44,50,56,46,54,54,55,54,51,52,93,44,91,45,56,50,46,49,55,49,52,48,50,44,50,56,46,55,56,57,56,52,56,93,44,91,45,56,50,46,51,49,49,54,57,55,44,50,56,46,57,54,48,51,57,49,93,44,91,45,56,50,46,52,55,55,54,51,57,44,50,57,46,48,53,50,52,56,52,93,44,91,45,56,50,46,53,51,53,53,57,49,44,50,57,46,48,52,52,56,53,53,93,44,91,45,56,50,46,55,49,49,53,51,44,50,57,46,48,51,48,57,56,56,93,44,91,45,56,50,46,56,52,56,50,52,56,44,50,56,46,57,49,52,53,50,57,93,44,91,45,56,50,46,55,55,56,52,51,55,44,50,56,46,54,57,52,50,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,117,108,101,98,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,52,50,50,55,48,54,44,49,56,46,50,57,48,55,50,56,93,44,91,45,54,53,46,50,56,54,54,56,44,49,56,46,50,50,53,57,57,93,44,91,45,54,53,46,49,57,49,49,51,52,44,49,56,46,50,53,56,56,56,52,93,44,91,45,54,53,46,49,56,49,55,54,50,44,49,56,46,51,53,55,55,50,55,93,44,91,45,54,53,46,51,54,50,53,54,54,44,49,56,46,52,49,57,52,55,50,93,44,91,45,54,53,46,52,50,52,52,51,49,44,49,56,46,51,57,48,56,56,93,44,91,45,54,53,46,52,50,50,55,48,54,44,49,56,46,50,57,48,55,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,68,111,114,97,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,48,56,51,49,51,44,49,56,46,53,50,57,55,56,56,93,44,91,45,54,54,46,51,48,51,54,54,51,44,49,56,46,51,56,52,48,55,55,93,44,91,45,54,54,46,50,53,50,53,53,52,44,49,56,46,51,57,52,49,56,55,93,44,91,45,54,54,46,49,56,55,50,55,49,44,49,56,46,53,50,54,50,55,49,93,44,91,45,54,54,46,51,48,56,51,49,51,44,49,56,46,53,50,57,55,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,54,48,49,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,53,57,55,48,54,44,51,54,46,48,56,54,48,50,52,93,44,91,45,56,54,46,48,49,52,56,52,57,44,51,53,46,57,54,49,48,54,93,44,91,45,56,53,46,56,56,53,49,53,54,44,51,53,46,56,51,57,54,53,56,93,44,91,45,56,53,46,54,56,50,48,57,53,44,51,53,46,56,51,49,50,53,52,93,44,91,45,56,53,46,54,52,52,54,48,52,44,51,54,46,48,49,53,48,53,51,93,44,91,45,56,53,46,56,48,55,52,49,53,44,51,54,46,49,51,49,53,56,50,93,44,91,45,56,54,46,48,53,57,55,48,54,44,51,54,46,48,56,54,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,108,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,50,55,44,34,98,101,100,115,34,58,49,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,55,55,56,50,50,44,52,49,46,51,56,54,52,55,57,93,44,91,45,55,57,46,54,57,52,57,56,52,44,52,49,46,49,55,50,56,54,53,93,44,91,45,55,57,46,54,57,48,55,49,49,44,52,49,46,49,55,48,54,57,49,93,44,91,45,55,57,46,54,54,53,55,54,50,44,52,49,46,48,52,57,49,50,51,93,44,91,45,55,57,46,53,57,55,48,49,51,44,52,48,46,57,57,52,51,56,56,93,44,91,45,55,57,46,51,56,53,53,51,55,44,52,48,46,57,56,57,55,54,54,93,44,91,45,55,57,46,50,49,53,50,49,52,44,52,49,46,48,53,48,53,49,53,93,44,91,45,55,57,46,50,48,56,56,55,56,44,52,49,46,51,51,49,56,54,49,93,44,91,45,55,57,46,50,48,55,49,57,54,44,52,49,46,52,51,48,57,50,50,93,44,91,45,55,57,46,52,48,48,50,54,57,44,52,49,46,52,51,54,49,52,53,93,44,91,45,55,57,46,52,55,55,56,50,50,44,52,49,46,51,56,54,52,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,105,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,50,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,52,57,52,57,50,44,52,52,46,49,57,53,50,51,53,93,44,91,45,57,55,46,56,53,49,49,49,44,52,51,46,56,52,57,56,53,55,93,44,91,45,57,55,46,54,48,56,53,49,55,44,52,51,46,56,52,57,48,53,57,93,44,91,45,57,55,46,51,54,57,52,54,51,44,52,51,46,56,52,56,53,50,54,93,44,91,45,57,55,46,51,55,48,49,49,53,44,52,52,46,49,57,52,57,55,49,93,44,91,45,57,55,46,56,52,57,52,57,50,44,52,52,46,49,57,53,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,74,101,114,97,117,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,57,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,51,49,57,49,44,52,52,46,49,57,54,54,56,55,93,44,91,45,57,56,46,55,48,48,52,53,51,44,52,52,46,49,57,54,55,50,55,93,44,91,45,57,56,46,57,50,53,57,53,51,44,52,52,46,49,57,54,53,55,53,93,44,91,45,57,56,46,57,50,54,57,57,55,44,52,51,46,57,51,53,49,52,51,93,44,91,45,57,56,46,56,48,55,55,55,49,44,52,51,46,57,51,53,50,50,51,93,44,91,45,57,56,46,51,51,49,53,48,56,44,52,51,46,57,51,55,55,48,56,93,44,91,45,57,56,46,51,51,49,57,49,44,52,52,46,49,57,54,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,101,99,97,116,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,53,53,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,57,55,53,55,53,44,51,57,46,52,53,51,50,55,53,93,44,91,45,56,53,46,54,50,57,51,50,55,44,51,57,46,52,53,50,55,53,93,44,91,45,56,53,46,54,56,52,53,49,53,44,51,57,46,51,53,48,48,52,57,93,44,91,45,56,53,46,54,56,54,55,56,51,44,51,57,46,49,51,48,56,53,57,93,44,91,45,56,53,46,53,54,54,51,50,44,51,57,46,49,51,50,55,54,49,93,44,91,45,56,53,46,52,52,48,48,53,52,44,51,57,46,49,57,53,54,49,55,93,44,91,45,56,53,46,50,57,54,53,52,44,51,57,46,50,54,56,50,57,49,93,44,91,45,56,53,46,50,57,55,53,55,53,44,51,57,46,52,53,51,50,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,117,98,111,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,52,49,56,44,34,98,101,100,115,34,58,49,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,55,50,51,54,57,44,51,56,46,53,49,52,55,93,44,91,45,56,55,46,48,55,51,48,54,55,44,51,56,46,50,51,50,53,57,54,93,44,91,45,56,55,46,48,49,55,52,57,44,51,56,46,50,48,51,53,56,93,44,91,45,56,54,46,55,57,49,52,57,55,44,51,56,46,50,48,53,49,51,93,44,91,45,56,54,46,54,55,57,53,49,49,44,51,56,46,50,54,51,48,56,54,93,44,91,45,56,54,46,54,56,49,52,50,52,44,51,56,46,51,57,52,55,54,55,93,44,91,45,56,54,46,54,56,50,51,53,57,44,51,56,46,53,50,54,51,55,56,93,44,91,45,56,54,46,57,50,52,49,56,54,44,51,56,46,53,48,53,51,53,56,93,44,91,45,56,55,46,48,55,50,51,54,57,44,51,56,46,53,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,69,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,51,54,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,48,55,48,49,49,53,44,51,55,46,57,54,52,55,55,93,44,91,45,55,55,46,48,51,53,53,49,50,44,51,55,46,56,54,53,56,49,56,93,44,91,45,55,54,46,55,53,49,48,55,50,44,51,55,46,55,50,56,54,48,53,93,44,91,45,55,54,46,54,54,56,49,56,50,44,51,55,46,55,55,56,51,56,54,93,44,91,45,55,54,46,57,48,48,52,57,44,51,55,46,57,56,50,49,52,50,93,44,91,45,55,54,46,57,51,54,57,53,57,44,51,56,46,48,55,55,48,55,52,93,44,91,45,55,55,46,48,54,49,54,57,53,44,51,56,46,49,54,49,54,51,49,93,44,91,45,55,55,46,49,49,53,57,57,55,44,51,56,46,49,52,57,57,51,49,93,44,91,45,55,55,46,49,55,48,49,44,51,56,46,48,55,57,53,52,51,93,44,91,45,55,55,46,48,55,48,49,49,53,44,51,55,46,57,54,52,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,55,57,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,55,53,54,50,44,51,51,46,56,56,53,50,52,53,93,44,91,45,55,57,46,57,57,53,54,51,56,44,51,51,46,55,54,55,57,48,54,93,44,91,45,55,57,46,57,55,52,51,56,50,44,51,51,46,55,50,49,53,57,93,44,91,45,56,48,46,49,48,49,54,57,55,44,51,51,46,52,57,54,56,57,49,93,44,91,45,55,57,46,57,55,49,57,54,51,44,51,51,46,53,48,48,57,51,55,93,44,91,45,55,57,46,54,55,55,48,49,52,44,51,51,46,51,48,52,57,52,52,93,44,91,45,55,57,46,53,57,48,49,49,44,51,51,46,52,52,51,53,52,93,44,91,45,55,57,46,52,51,53,55,51,51,44,51,51,46,53,55,50,55,48,50,93,44,91,45,55,57,46,52,48,57,51,51,50,44,51,51,46,54,56,56,56,57,93,44,91,45,55,57,46,51,49,55,48,52,49,44,51,51,46,55,55,57,56,55,56,93,44,91,45,55,57,46,51,50,52,51,49,55,44,51,51,46,55,57,57,49,50,51,93,44,91,45,55,57,46,52,57,54,52,56,54,44,51,51,46,55,55,53,51,53,55,93,44,91,45,55,57,46,55,57,56,51,55,44,51,51,46,56,51,53,53,54,50,93,44,91,45,55,57,46,56,55,53,54,50,44,51,51,46,56,56,53,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,69,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,55,53,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,51,56,54,51,54,44,52,52,46,53,52,54,56,52,52,93,44,91,45,55,51,46,52,57,55,53,54,55,44,52,52,46,52,56,54,50,51,93,44,91,45,55,51,46,57,48,57,54,56,55,44,52,52,46,52,50,57,54,57,57,93,44,91,45,55,52,46,49,52,49,52,50,52,44,52,52,46,52,48,55,50,54,56,93,44,91,45,55,52,46,48,57,51,52,57,44,52,52,46,49,51,55,54,49,53,93,44,91,45,55,52,46,50,56,49,56,55,44,52,52,46,49,50,48,53,53,50,93,44,91,45,55,52,46,50,53,53,57,57,56,44,52,51,46,57,54,57,55,57,55,93,44,91,45,55,52,46,51,51,54,56,50,54,44,52,51,46,57,50,53,50,50,51,93,44,91,45,55,52,46,50,49,51,55,51,52,44,52,51,46,56,49,48,56,55,53,93,44,91,45,55,52,46,48,53,55,48,48,53,44,52,51,46,55,52,52,53,49,51,93,44,91,45,55,51,46,52,51,56,49,50,44,52,51,46,56,48,51,54,56,55,93,44,91,45,55,51,46,51,55,57,50,56,49,44,52,51,46,56,48,56,52,56,49,93,44,91,45,55,51,46,52,51,55,57,48,53,44,52,52,46,48,52,53,49,50,53,93,44,91,45,55,51,46,51,57,48,54,50,53,44,52,52,46,49,57,49,48,54,56,93,44,91,45,55,51,46,51,49,51,50,56,51,44,52,52,46,50,54,52,49,51,93,44,91,45,55,51,46,50,57,54,48,53,50,44,52,52,46,52,50,56,51,51,52,93,44,91,45,55,51,46,51,51,56,54,51,54,44,52,52,46,53,52,54,56,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,87,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,57,55,51,53,51,44,52,51,46,52,57,57,54,50,50,93,44,91,45,57,51,46,52,57,55,54,51,53,44,52,51,46,50,53,53,52,54,56,93,44,91,45,57,51,46,48,50,52,49,52,51,44,52,51,46,50,53,53,53,51,56,93,44,91,45,57,51,46,48,50,52,51,52,53,44,52,51,46,52,57,57,55,51,51,93,44,91,45,57,51,46,48,52,57,49,57,50,44,52,51,46,52,57,57,55,48,53,93,44,91,45,57,51,46,52,57,55,51,53,51,44,52,51,46,52,57,57,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,117,103,104,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,52,49,51,54,56,44,51,53,46,50,57,48,49,50,50,93,44,91,45,57,54,46,52,57,48,52,51,52,44,51,53,46,49,49,53,56,53,55,93,44,91,45,57,54,46,52,57,48,55,56,54,44,51,52,46,57,49,48,53,56,53,93,44,91,45,57,54,46,52,49,51,55,56,49,44,51,52,46,57,49,53,54,49,57,93,44,91,45,57,54,46,52,48,54,52,56,51,44,51,52,46,55,54,55,51,50,56,93,44,91,45,57,54,46,48,57,50,48,48,49,44,51,52,46,55,54,55,52,55,57,93,44,91,45,57,54,46,48,56,56,55,57,50,44,51,53,46,48,52,57,56,55,53,93,44,91,45,57,53,46,57,56,51,48,55,55,44,51,53,46,49,53,49,54,57,53,93,44,91,45,57,53,46,57,56,49,53,49,49,44,51,53,46,50,56,57,55,56,93,44,91,45,57,54,46,52,52,49,51,54,56,44,51,53,46,50,57,48,49,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,66,117,99,104,97,110,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,51,56,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,49,52,49,57,53,44,51,55,46,50,57,54,48,55,53,93,44,91,45,56,50,46,49,52,57,51,55,53,44,51,55,46,48,52,49,54,52,49,93,44,91,45,56,49,46,57,48,48,56,57,50,44,51,55,46,49,52,50,53,53,51,93,44,91,45,56,49,46,55,52,48,49,50,52,44,51,55,46,50,51,55,55,53,50,93,44,91,45,56,49,46,56,53,51,53,53,51,44,51,55,46,50,56,55,55,48,54,93,44,91,45,56,49,46,57,57,54,53,55,56,44,51,55,46,52,55,54,55,48,53,93,44,91,45,56,49,46,57,50,55,54,56,49,44,51,55,46,53,49,50,49,49,51,93,44,91,45,56,49,46,57,54,56,48,49,50,44,51,55,46,53,51,56,48,51,53,93,44,91,45,56,50,46,51,49,52,49,57,53,44,51,55,46,50,57,54,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,104,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,56,54,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,53,54,48,53,54,44,51,55,46,57,53,49,57,53,57,93,44,91,45,56,48,46,49,54,50,50,48,50,44,51,55,46,56,55,53,49,50,50,93,44,91,45,56,48,46,50,57,54,49,51,56,44,51,55,46,54,57,49,55,56,51,93,44,91,45,56,48,46,50,50,48,57,56,52,44,51,55,46,54,50,55,55,54,55,93,44,91,45,56,48,46,49,52,52,51,57,52,44,51,55,46,53,57,54,54,50,55,93,44,91,45,56,48,46,48,50,48,53,53,52,44,51,55,46,54,52,55,52,52,50,93,44,91,45,55,57,46,56,49,54,54,56,53,44,51,55,46,56,48,48,57,54,52,93,44,91,45,55,57,46,54,55,52,49,54,50,44,51,55,46,55,54,51,48,57,51,93,44,91,45,55,57,46,54,52,55,53,56,57,44,51,55,46,56,55,52,53,51,56,93,44,91,45,55,57,46,56,56,55,51,50,57,44,51,55,46,56,57,50,57,55,49,93,44,91,45,55,57,46,57,51,53,51,54,52,44,51,55,46,57,53,52,51,54,53,93,44,91,45,56,48,46,48,53,54,48,53,54,44,51,55,46,57,53,49,57,53,57,93,93,44,91,91,45,56,48,46,48,48,56,57,57,52,44,51,55,46,55,54,50,53,56,55,93,44,91,45,55,57,46,57,57,50,48,53,53,44,51,55,46,55,57,57,56,49,93,44,91,45,55,57,46,57,54,55,48,55,49,44,51,55,46,56,48,51,52,48,53,93,44,91,45,55,57,46,57,55,56,50,49,52,44,51,55,46,55,54,52,57,55,53,93,44,91,45,56,48,46,48,48,56,57,57,52,44,51,55,46,55,54,50,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,76,111,119,110,100,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,52,51,55,44,34,98,101,100,115,34,58,51,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,52,56,57,49,54,44,51,51,46,55,52,52,57,55,55,93,44,91,45,56,56,46,53,49,51,57,49,55,44,51,51,46,54,53,48,50,48,57,93,44,91,45,56,56,46,52,57,50,53,48,52,44,51,51,46,53,52,51,49,53,52,93,44,91,45,56,56,46,54,55,49,50,53,44,51,51,46,53,48,54,49,54,56,93,44,91,45,56,56,46,54,54,57,48,55,54,44,51,51,46,50,56,54,57,50,50,93,44,91,45,56,56,46,51,48,52,52,51,52,44,51,51,46,50,56,56,51,50,93,44,91,45,56,56,46,50,55,52,54,49,57,44,51,51,46,53,51,52,48,48,56,93,44,91,45,56,56,46,50,52,56,57,49,54,44,51,51,46,55,52,52,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,55,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,56,51,56,51,57,44,51,56,46,56,49,53,52,48,54,93,44,91,45,56,53,46,55,57,53,51,53,55,44,51,56,46,56,48,55,53,48,56,93,44,91,45,56,53,46,56,56,56,51,51,52,44,51,56,46,55,51,52,52,52,51,93,44,91,45,56,53,46,56,52,55,56,57,51,44,51,56,46,53,54,49,50,54,57,93,44,91,45,56,53,46,55,57,51,53,56,52,44,51,56,46,54,48,52,56,49,52,93,44,91,45,56,53,46,53,54,57,57,56,44,51,56,46,54,48,54,49,53,53,93,44,91,45,56,53,46,53,55,48,57,51,44,51,56,46,54,55,56,55,48,54,93,44,91,45,56,53,46,54,56,51,51,51,56,44,51,56,46,55,51,54,55,51,49,93,44,91,45,56,53,46,54,56,51,56,51,57,44,51,56,46,56,49,53,52,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,80,114,111,119,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,53,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,52,52,55,53,44,51,56,46,50,54,56,55,52,57,93,44,91,45,49,48,50,46,55,52,50,51,51,44,51,56,46,50,54,54,57,55,49,93,44,91,45,49,48,50,46,55,52,55,54,49,53,44,51,55,46,54,52,51,54,52,50,93,44,91,45,49,48,50,46,48,52,49,53,56,53,44,51,55,46,54,52,52,50,56,50,93,44,91,45,49,48,50,46,48,52,50,49,53,53,44,51,55,46,55,51,56,53,52,49,93,44,91,45,49,48,50,46,48,52,52,52,54,52,44,51,56,46,50,54,50,52,49,50,93,44,91,45,49,48,50,46,48,52,52,52,55,53,44,51,56,46,50,54,56,55,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,51,53,34,44,34,78,65,77,69,34,58,34,83,117,116,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,54,53,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,54,50,51,52,44,51,48,46,55,49,48,51,54,54,93,44,91,45,49,48,48,46,57,54,48,53,56,55,44,51,48,46,55,48,54,48,55,49,93,44,91,45,49,48,48,46,57,54,48,54,52,51,44,51,48,46,50,56,55,55,55,54,93,44,91,45,49,48,48,46,55,48,48,51,57,51,44,51,48,46,50,56,56,50,55,54,93,44,91,45,49,48,48,46,49,49,54,52,54,49,44,51,48,46,50,57,48,50,57,54,93,44,91,45,49,48,48,46,49,49,54,50,51,52,44,51,48,46,55,49,48,51,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,83,97,98,97,110,97,32,71,114,97,110,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,57,55,55,56,53,53,44,49,56,46,49,52,51,55,57,57,93,44,91,45,54,54,46,57,56,51,51,51,55,44,49,56,46,48,53,50,53,49,56,93,44,91,45,54,54,46,57,53,56,55,52,56,44,49,56,46,48,51,50,52,55,55,93,44,91,45,54,54,46,56,56,52,54,53,51,44,49,56,46,48,50,52,56,49,54,93,44,91,45,54,54,46,57,50,54,53,49,55,44,49,56,46,49,53,49,50,54,55,93,44,91,45,54,54,46,57,55,55,56,53,53,44,49,56,46,49,52,51,55,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,117,115,107,111,103,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,48,56,52,44,34,98,101,100,115,34,58,51,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,49,50,57,53,51,44,51,53,46,53,53,49,55,51,56,93,44,91,45,57,53,46,51,52,52,55,57,57,44,51,53,46,53,53,49,55,53,49,93,44,91,45,57,53,46,51,52,52,55,54,54,44,51,53,46,50,57,51,48,51,53,93,44,91,45,57,53,46,49,55,49,55,54,51,44,51,53,46,51,48,53,53,53,51,93,44,91,45,57,53,46,48,52,57,57,51,51,44,51,53,46,52,53,56,56,57,52,93,44,91,45,57,53,46,49,51,50,50,55,49,44,51,53,46,53,50,54,48,53,53,93,44,91,45,57,53,46,49,50,55,50,49,51,44,51,53,46,54,51,56,56,56,56,93,44,91,45,57,53,46,49,50,55,49,54,51,44,51,53,46,56,49,50,55,53,53,93,44,91,45,57,53,46,50,54,53,54,55,57,44,51,53,46,56,49,51,50,54,54,93,44,91,45,57,53,46,54,51,57,55,55,57,44,51,53,46,55,57,49,56,48,55,93,44,91,45,57,53,46,55,54,54,49,49,52,44,51,53,46,56,53,54,50,56,52,93,44,91,45,57,53,46,55,49,51,48,56,49,44,51,53,46,55,50,53,56,48,55,93,44,91,45,57,53,46,55,49,50,57,53,51,44,51,53,46,53,53,49,55,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,104,114,105,115,116,105,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,50,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,49,48,49,50,54,44,51,54,46,57,57,53,56,49,93,44,91,45,57,51,46,51,51,55,52,53,49,44,51,54,46,57,57,50,52,57,52,93,44,91,45,57,51,46,51,48,52,51,53,57,44,51,54,46,56,49,54,56,54,54,93,44,91,45,57,50,46,57,48,57,51,51,54,44,51,54,46,56,48,57,49,55,56,93,44,91,45,57,50,46,57,48,51,50,55,51,44,51,55,46,48,55,48,54,53,49,93,44,91,45,57,51,46,48,54,53,50,55,52,44,51,55,46,48,56,56,54,57,52,93,44,91,45,57,51,46,54,48,56,56,57,57,44,51,55,46,48,57,56,49,53,51,93,44,91,45,57,51,46,54,49,48,49,50,54,44,51,54,46,57,57,53,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,105,97,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,51,51,54,50,51,44,49,56,46,51,53,49,51,51,51,93,44,91,45,54,54,46,53,57,48,55,56,53,44,49,56,46,51,51,56,48,54,93,44,91,45,54,54,46,54,48,54,57,56,57,44,49,56,46,51,50,56,49,56,54,93,44,91,45,54,54,46,53,54,54,54,50,44,49,56,46,50,57,56,53,52,57,93,44,91,45,54,54,46,53,52,51,49,51,51,44,49,56,46,49,54,51,48,57,56,93,44,91,45,54,54,46,52,53,53,55,48,51,44,49,56,46,50,53,55,55,50,54,93,44,91,45,54,54,46,52,54,51,50,49,49,44,49,56,46,51,55,49,52,55,51,93,44,91,45,54,54,46,53,51,51,54,50,51,44,49,56,46,51,53,49,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,97,109,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,50,50,51,44,34,98,101,100,115,34,58,50,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,53,52,50,49,50,44,51,49,46,52,51,51,56,48,53,93,44,91,45,56,57,46,54,53,52,48,51,56,44,51,49,46,48,48,50,53,48,50,93,44,91,45,56,57,46,52,55,54,48,50,50,44,51,48,46,57,56,50,57,48,49,93,44,91,45,56,57,46,51,52,56,57,53,44,51,49,46,48,49,48,51,55,93,44,91,45,56,57,46,51,52,55,56,54,51,44,51,49,46,51,52,54,55,93,44,91,45,56,57,46,52,53,49,48,55,51,44,51,49,46,51,52,54,51,56,51,93,44,91,45,56,57,46,52,53,49,54,49,54,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,53,56,54,56,49,57,44,51,49,46,52,51,51,54,56,56,93,44,91,45,56,57,46,54,53,52,50,49,50,44,51,49,46,52,51,51,56,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,82,105,112,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,52,48,48,53,52,44,51,57,46,49,57,53,54,49,55,93,44,91,45,56,53,46,52,52,52,56,57,55,44,51,56,46,57,49,50,57,57,56,93,44,91,45,56,53,46,50,48,51,49,54,54,44,51,56,46,57,49,51,56,48,51,93,44,91,45,56,53,46,49,51,53,56,51,50,44,51,56,46,57,50,57,53,55,56,93,44,91,45,56,53,46,49,51,50,53,48,56,44,51,56,46,57,52,56,48,53,53,93,44,91,45,56,53,46,48,54,53,53,55,52,44,51,57,46,51,48,55,50,51,50,93,44,91,45,56,53,46,50,57,54,53,52,44,51,57,46,50,54,56,50,57,49,93,44,91,45,56,53,46,52,52,48,48,53,52,44,51,57,46,49,57,53,54,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,55,48,44,34,98,101,100,115,34,58,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,53,55,48,51,49,44,52,55,46,50,54,52,56,57,53,93,44,91,45,49,48,49,46,51,52,53,55,51,53,44,52,55,46,50,57,49,56,57,55,93,44,91,45,49,48,49,46,52,52,48,49,51,57,44,52,55,46,52,55,55,50,57,57,93,44,91,45,49,48,49,46,52,51,54,53,50,49,44,52,55,46,53,54,52,49,53,55,93,44,91,45,49,48,49,46,56,57,50,48,49,55,44,52,55,46,53,48,53,49,51,51,93,44,91,45,49,48,50,46,48,51,54,54,52,56,44,52,55,46,53,55,50,55,48,53,93,44,91,45,49,48,50,46,50,48,53,51,53,44,52,55,46,53,55,52,53,48,54,93,44,91,45,49,48,50,46,50,48,53,53,53,54,44,52,55,46,51,50,56,48,55,49,93,44,91,45,49,48,50,46,49,52,52,52,53,51,44,52,55,46,51,50,56,48,55,57,93,44,91,45,49,48,50,46,49,52,52,55,55,49,44,52,55,46,48,49,48,51,48,55,93,44,91,45,49,48,50,46,48,57,53,57,48,52,44,52,54,46,57,56,49,51,50,57,93,44,91,45,49,48,49,46,55,54,52,51,57,50,44,52,54,46,57,56,49,51,48,54,93,44,91,45,49,48,49,46,55,54,52,54,52,55,44,52,55,46,50,52,49,53,49,56,93,44,91,45,49,48,49,46,50,53,55,54,51,51,44,52,55,46,50,52,49,51,52,51,93,44,91,45,49,48,49,46,50,53,55,48,51,49,44,52,55,46,50,54,52,56,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,72,97,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,48,53,49,54,51,56,44,51,52,46,52,57,51,55,48,50,93,44,91,45,56,51,46,49,49,51,51,54,44,51,52,46,50,55,51,53,51,93,44,91,45,56,51,46,48,55,56,48,48,52,44,51,52,46,50,50,51,54,48,54,93,44,91,45,56,50,46,57,56,48,57,48,53,44,51,52,46,50,49,49,53,48,53,93,44,91,45,56,50,46,55,55,51,52,49,44,51,52,46,50,56,56,56,54,52,93,44,91,45,56,50,46,56,54,52,52,44,51,52,46,52,53,57,55,56,53,93,44,91,45,56,50,46,57,57,50,50,51,50,44,51,52,46,52,55,57,50,53,56,93,44,91,45,56,51,46,48,53,49,54,51,56,44,51,52,46,52,57,51,55,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,50,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,55,55,49,57,55,44,51,50,46,52,53,51,52,53,53,93,44,91,45,57,50,46,55,55,52,57,51,54,44,51,50,46,50,51,55,48,53,53,93,44,91,45,57,50,46,56,49,52,55,51,55,44,51,50,46,49,52,54,57,48,55,93,44,91,45,57,50,46,51,49,50,50,49,56,44,51,50,46,49,52,54,49,50,51,93,44,91,45,57,50,46,51,49,49,56,53,49,44,51,50,46,50,55,55,52,52,49,93,44,91,45,57,50,46,52,49,53,52,49,56,44,51,50,46,52,48,55,56,49,50,93,44,91,45,57,50,46,52,49,53,51,53,44,51,50,46,52,57,53,52,56,54,93,44,91,45,57,50,46,54,50,50,51,51,53,44,51,50,46,52,57,54,52,48,54,93,44,91,45,57,50,46,55,55,55,49,57,55,44,51,50,46,52,53,51,52,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,51,52,50,51,44,51,55,46,57,54,54,54,51,93,44,91,45,55,54,46,53,48,55,56,50,56,44,51,55,46,56,51,56,56,49,52,93,44,91,45,55,54,46,52,50,48,48,55,49,44,51,55,46,56,50,51,55,54,54,93,44,91,45,55,54,46,51,48,56,51,54,55,44,51,55,46,54,54,57,55,55,51,93,44,91,45,55,54,46,49,55,53,54,56,55,44,51,55,46,54,55,49,54,50,54,93,44,91,45,55,54,46,50,51,54,52,53,56,44,51,55,46,56,56,54,54,48,53,93,44,91,45,55,54,46,50,51,54,49,52,49,44,51,55,46,56,56,56,52,54,56,93,44,91,45,55,54,46,53,49,54,51,54,57,44,51,56,46,48,51,52,55,50,52,93,44,91,45,55,54,46,54,51,52,50,51,44,51,55,46,57,54,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,70,111,114,116,32,66,101,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,57,51,52,50,44,34,98,101,100,115,34,58,49,49,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,51,50,55,49,49,44,50,57,46,55,50,55,57,52,52,93,44,91,45,57,54,46,48,56,56,57,49,50,44,50,57,46,54,48,49,54,53,56,93,44,91,45,57,54,46,48,54,48,54,55,54,44,50,57,46,52,55,54,52,55,51,93,44,91,45,57,53,46,57,53,48,54,52,51,44,50,57,46,51,51,54,53,55,55,93,44,91,45,57,53,46,56,52,55,54,53,54,44,50,57,46,50,54,50,53,57,93,44,91,45,57,53,46,55,53,50,56,54,54,44,50,57,46,51,50,52,53,48,51,93,44,91,45,57,53,46,53,57,48,55,57,51,44,50,57,46,51,50,55,52,56,53,93,44,91,45,57,53,46,53,52,57,57,57,52,44,50,57,46,52,51,56,52,51,57,93,44,91,45,57,53,46,52,54,50,53,48,51,44,50,57,46,52,51,57,50,52,93,44,91,45,57,53,46,52,50,52,49,49,56,44,50,57,46,53,56,48,50,51,51,93,44,91,45,57,53,46,56,50,54,50,50,44,50,57,46,55,56,56,50,56,93,44,91,45,57,54,46,48,51,50,55,49,49,44,50,57,46,55,50,55,57,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,32,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,55,53,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,54,56,54,49,50,44,52,51,46,57,56,50,56,51,52,93,44,91,45,56,57,46,49,54,56,49,50,49,44,52,51,46,56,55,54,52,55,93,44,91,45,56,57,46,50,52,53,51,55,53,44,52,51,46,55,53,57,56,49,51,93,44,91,45,56,57,46,50,52,53,52,51,55,44,52,51,46,54,52,51,48,56,51,93,44,91,45,56,57,46,48,48,54,56,52,56,44,52,51,46,54,51,51,48,52,53,93,44,91,45,56,56,46,56,56,54,48,53,50,44,52,51,46,54,51,51,53,52,93,44,91,45,56,56,46,56,56,53,54,57,55,44,52,51,46,56,57,53,49,56,52,93,44,91,45,56,56,46,56,56,54,49,57,51,44,52,51,46,57,56,51,50,51,51,93,44,91,45,56,57,46,49,54,56,54,49,50,44,52,51,46,57,56,50,56,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,80,111,110,100,101,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,52,52,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,49,56,52,55,56,52,44,52,56,46,52,55,55,53,55,56,93,44,91,45,49,49,50,46,53,55,54,57,56,50,44,52,56,46,52,56,51,51,52,56,93,44,91,45,49,49,50,46,53,56,48,52,56,52,44,52,56,46,51,48,57,57,51,50,93,44,91,45,49,49,51,46,51,52,57,48,52,54,44,52,56,46,51,49,48,50,54,51,93,44,91,45,49,49,51,46,50,51,48,55,50,51,44,52,56,46,49,56,50,48,48,50,93,44,91,45,49,49,51,46,48,49,52,56,49,49,44,52,56,46,49,51,49,48,51,93,44,91,45,49,49,50,46,49,55,55,56,51,51,44,52,56,46,49,51,48,55,49,50,93,44,91,45,49,49,50,46,48,52,55,57,57,57,44,52,56,46,48,56,54,54,49,50,93,44,91,45,49,49,49,46,57,56,52,50,54,51,44,52,55,46,57,56,52,53,57,50,93,44,91,45,49,49,49,46,52,48,56,53,49,52,44,52,55,46,57,56,55,49,55,56,93,44,91,45,49,49,49,46,52,48,57,48,57,55,44,52,56,46,49,51,50,50,49,56,93,44,91,45,49,49,49,46,52,48,57,48,49,56,44,52,56,46,50,49,57,53,52,50,93,44,91,45,49,49,49,46,54,54,53,53,57,57,44,52,56,46,50,49,57,53,52,57,93,44,91,45,49,49,49,46,54,54,53,55,53,54,44,52,56,46,51,52,57,52,53,54,93,44,91,45,49,49,49,46,55,57,53,57,49,44,52,56,46,51,57,51,48,56,49,93,44,91,45,49,49,49,46,57,57,48,56,56,57,44,52,56,46,51,57,52,50,54,53,93,44,91,45,49,49,50,46,48,48,52,52,51,54,44,52,56,46,52,52,56,56,56,54,93,44,91,45,49,49,50,46,49,56,52,55,56,52,44,52,56,46,52,55,55,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,87,97,108,119,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,48,49,51,44,34,98,101,100,115,34,58,49,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,52,49,53,51,53,44,52,50,46,56,52,50,57,57,54,93,44,91,45,56,56,46,55,55,55,48,55,54,44,52,50,46,56,52,50,54,57,52,93,44,91,45,56,56,46,55,55,54,52,57,51,44,52,50,46,52,57,49,57,49,50,93,44,91,45,56,56,46,55,48,55,52,50,49,44,52,50,46,52,57,51,53,57,54,93,44,91,45,56,56,46,51,48,52,54,57,50,44,52,50,46,52,57,52,54,49,56,93,44,91,45,56,56,46,51,48,53,56,57,49,44,52,50,46,54,49,48,56,49,55,93,44,91,45,56,56,46,51,48,54,51,56,52,44,52,50,46,56,52,50,48,57,53,93,44,91,45,56,56,46,53,52,49,53,51,53,44,52,50,46,56,52,50,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,77,105,110,101,114,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,52,56,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,55,53,51,56,51,53,44,51,57,46,48,55,52,54,51,93,44,91,45,49,49,56,46,57,50,57,55,51,55,44,51,57,46,48,55,51,54,57,56,93,44,91,45,49,49,57,46,48,49,52,56,51,55,44,51,56,46,57,52,51,51,50,51,93,44,91,45,49,49,57,46,48,49,52,53,50,56,44,51,56,46,56,53,49,51,93,44,91,45,49,49,56,46,57,48,50,49,50,52,44,51,56,46,56,53,50,49,53,56,93,44,91,45,49,49,56,46,57,48,54,56,54,49,44,51,56,46,52,49,52,54,55,55,93,44,91,45,49,49,57,46,49,53,54,57,55,56,44,51,56,46,52,49,52,55,52,54,93,44,91,45,49,49,56,46,52,50,56,49,52,52,44,51,55,46,56,57,54,50,50,93,44,91,45,49,49,56,46,51,53,49,52,56,52,44,51,55,46,56,57,51,55,48,53,93,44,91,45,49,49,55,46,54,57,49,48,50,49,44,51,56,46,52,55,51,55,57,55,93,44,91,45,49,49,56,46,49,57,54,50,51,53,44,51,56,46,57,49,57,48,53,56,93,44,91,45,49,49,56,46,49,57,54,50,55,52,44,51,56,46,57,57,57,57,50,54,93,44,91,45,49,49,55,46,56,54,53,49,49,54,44,51,57,46,48,55,51,54,53,52,93,44,91,45,49,49,56,46,55,53,51,56,51,53,44,51,57,46,48,55,52,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,52,49,56,44,34,98,101,100,115,34,58,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,52,53,54,50,55,44,52,48,46,54,50,55,54,51,56,93,44,91,45,57,48,46,52,53,48,50,50,55,44,52,48,46,50,55,54,51,51,53,93,44,91,45,57,48,46,52,53,49,57,49,54,44,52,48,46,49,56,56,56,48,51,93,44,91,45,57,48,46,49,57,57,54,51,53,44,52,48,46,49,56,51,56,49,50,93,44,91,45,57,48,46,49,49,56,57,54,54,44,52,48,46,50,51,53,50,54,51,93,44,91,45,57,48,46,48,51,51,48,50,54,44,52,48,46,51,55,55,56,48,54,93,44,91,45,56,57,46,57,50,52,54,56,44,52,48,46,52,51,53,57,50,49,93,44,91,45,56,57,46,56,55,50,52,54,51,44,52,48,46,53,49,51,49,50,55,93,44,91,45,56,57,46,56,55,51,54,56,44,52,48,46,54,50,52,57,55,53,93,44,91,45,56,57,46,57,56,54,48,54,52,44,52,48,46,55,49,50,51,54,49,93,44,91,45,57,48,46,52,52,52,51,51,57,44,52,48,46,55,49,52,56,54,56,93,44,91,45,57,48,46,52,52,53,54,50,55,44,52,48,46,54,50,55,54,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,83,117,102,102,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,55,57,48,49,44,34,98,101,100,115,34,58,51,57,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,53,50,55,57,48,49,44,52,49,46,49,55,55,55,55,52,93,44,91,45,55,50,46,57,57,57,53,52,55,44,52,49,46,48,56,55,49,48,56,93,44,91,45,55,51,46,52,51,49,57,49,57,44,52,48,46,57,56,57,48,48,57,93,44,91,45,55,51,46,52,57,55,52,48,53,44,52,48,46,57,50,51,55,54,54,93,44,91,45,55,51,46,52,50,51,50,54,57,44,52,48,46,54,55,48,56,57,51,93,44,91,45,55,51,46,52,50,53,51,49,44,52,48,46,53,51,52,50,54,53,93,44,91,45,55,51,46,50,55,52,48,50,53,44,52,48,46,53,53,49,51,49,52,93,44,91,45,55,50,46,51,55,52,53,50,57,44,52,48,46,56,49,56,53,57,53,93,44,91,45,55,49,46,56,51,55,48,56,56,44,52,49,46,48,49,48,56,57,50,93,44,91,45,55,49,46,55,55,55,52,57,49,44,52,49,46,48,54,55,50,57,50,93,44,91,45,55,49,46,55,57,48,57,55,50,44,52,49,46,49,56,52,49,48,49,93,44,91,45,55,49,46,57,48,55,50,53,56,44,52,49,46,51,48,52,52,56,51,93,44,91,45,55,50,46,51,51,49,52,53,51,44,52,49,46,50,49,53,48,48,52,93,44,91,45,55,50,46,53,50,55,57,48,49,44,52,49,46,49,55,55,55,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,53,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,51,52,53,55,53,44,51,57,46,55,49,52,55,54,52,93,44,91,45,56,53,46,48,51,54,48,56,55,44,51,57,46,53,50,54,50,49,51,93,44,91,45,56,52,46,56,49,53,51,53,51,44,51,57,46,53,50,49,57,53,93,44,91,45,56,52,46,56,49,52,57,51,52,44,51,57,46,53,54,55,55,49,52,93,44,91,45,56,52,46,56,49,52,51,55,51,44,51,57,46,55,50,54,54,50,93,44,91,45,56,53,46,48,51,52,53,55,53,44,51,57,46,55,49,52,55,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,99,68,111,110,97,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,56,51,48,55,44,51,54,46,55,54,54,53,54,93,44,91,45,57,52,46,54,49,56,48,55,55,44,51,54,46,54,54,55,57,50,49,93,44,91,45,57,52,46,54,49,55,57,49,57,44,51,54,46,52,57,57,52,49,52,93,44,91,45,57,52,46,48,55,55,48,56,57,44,51,54,46,52,57,56,55,51,93,44,91,45,57,52,46,48,54,56,56,57,56,44,51,54,46,55,52,55,56,49,56,93,44,91,45,57,52,46,54,49,56,51,48,55,44,51,54,46,55,54,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,115,32,66,108,117,102,102,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,50,53,53,44,34,98,101,100,115,34,58,49,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,50,54,52,53,44,52,50,46,48,48,49,55,49,56,93,44,91,45,49,48,52,46,48,53,50,54,56,56,44,52,49,46,54,57,55,57,53,52,93,44,91,45,49,48,51,46,51,55,48,51,57,49,44,52,49,46,54,57,57,50,49,93,44,91,45,49,48,51,46,51,54,51,51,51,55,44,52,50,46,48,48,50,57,51,93,44,91,45,49,48,51,46,52,48,49,54,51,57,44,52,50,46,48,48,51,53,52,93,44,91,45,49,48,52,46,48,53,50,54,52,53,44,52,50,46,48,48,49,55,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,83,97,110,32,77,105,103,117,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,48,51,52,44,34,98,101,100,115,34,58,50,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,55,50,48,53,50,57,44,51,53,46,56,55,49,49,56,53,93,44,91,45,49,48,53,46,55,49,52,52,49,57,44,51,53,46,48,52,49,54,48,53,93,44,91,45,49,48,53,46,50,57,48,55,57,49,44,51,53,46,48,52,50,48,51,93,44,91,45,49,48,53,46,50,57,49,49,54,57,44,51,53,46,50,49,54,52,56,57,93,44,91,45,49,48,52,46,49,50,53,49,51,54,44,51,53,46,50,49,53,54,57,54,93,44,91,45,49,48,52,46,49,50,53,49,50,49,44,51,53,46,49,52,50,48,53,56,93,44,91,45,49,48,51,46,56,53,55,53,51,44,51,53,46,50,52,50,52,48,53,93,44,91,45,49,48,51,46,54,51,55,49,51,44,51,53,46,50,52,48,56,49,57,93,44,91,45,49,48,51,46,54,51,55,48,53,51,44,51,53,46,51,56,57,54,54,50,93,44,91,45,49,48,51,46,55,50,51,54,48,57,44,51,53,46,52,50,50,55,56,53,93,44,91,45,49,48,51,46,57,55,54,57,48,49,44,51,53,46,56,48,49,55,52,55,93,44,91,45,49,48,52,46,48,50,49,55,48,50,44,51,53,46,55,56,49,52,57,52,93,44,91,45,49,48,52,46,51,55,48,49,50,44,51,53,46,55,55,57,51,48,50,93,44,91,45,49,48,53,46,48,48,54,52,49,55,44,51,53,46,55,55,49,50,53,54,93,44,91,45,49,48,53,46,51,52,55,56,51,44,51,53,46,56,55,48,54,57,53,93,44,91,45,49,48,53,46,55,50,48,53,50,57,44,51,53,46,56,55,49,49,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,50,56,55,44,34,98,101,100,115,34,58,53,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,51,53,48,51,56,44,51,50,46,55,52,54,53,51,93,44,91,45,56,53,46,53,57,51,49,53,49,44,51,50,46,55,50,56,53,51,93,44,91,45,56,53,46,54,57,54,55,53,53,44,51,50,46,54,57,55,52,50,57,93,44,91,45,56,53,46,54,57,53,56,53,52,44,51,50,46,53,57,53,57,51,51,93,44,91,45,56,53,46,52,56,57,51,52,56,44,51,50,46,52,57,54,57,51,55,93,44,91,45,56,53,46,52,51,52,48,52,53,44,51,50,46,52,48,57,56,52,93,44,91,45,56,53,46,51,51,51,56,52,51,44,51,50,46,52,54,56,54,51,57,93,44,91,45,56,53,46,48,53,57,50,57,52,44,51,50,46,52,55,50,57,48,57,93,44,91,45,56,53,46,48,48,49,48,50,44,51,50,46,53,49,48,49,53,55,93,44,91,45,56,53,46,48,56,48,55,56,52,44,51,50,46,54,48,56,48,55,50,93,44,91,45,56,53,46,49,51,53,48,51,56,44,51,50,46,55,52,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,54,55,34,44,34,78,65,77,69,34,58,34,80,97,114,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,56,48,50,44,34,98,101,100,115,34,58,49,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,53,54,48,57,52,44,51,51,46,48,48,51,51,51,50,93,44,91,45,57,56,46,48,54,54,56,51,54,44,51,50,46,53,53,56,56,50,50,93,44,91,45,57,55,46,54,49,55,48,54,54,44,51,50,46,53,53,53,52,56,52,93,44,91,45,57,55,46,53,53,48,53,56,50,44,51,50,46,53,53,53,51,57,49,93,44,91,45,57,55,46,53,52,52,49,56,49,44,51,50,46,57,57,52,49,55,55,93,44,91,45,57,55,46,57,50,49,54,52,50,44,51,51,46,48,48,49,50,56,52,93,44,91,45,57,56,46,48,53,54,48,57,52,44,51,51,46,48,48,51,51,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,68,105,99,107,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,55,48,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,51,52,53,53,54,44,52,54,46,50,56,50,54,53,55,93,44,91,45,57,57,46,48,48,51,49,49,56,44,52,54,46,50,56,50,56,57,56,93,44,91,45,57,57,46,48,48,53,55,53,56,44,52,53,46,57,51,57,55,51,49,93,44,91,45,57,56,46,55,50,52,51,55,53,44,52,53,46,57,51,56,55,51,49,93,44,91,45,57,56,46,48,48,56,49,48,50,44,52,53,46,57,51,53,56,57,54,93,44,91,45,57,56,46,48,48,54,55,49,53,44,52,54,46,50,56,50,54,50,54,93,44,91,45,57,56,46,48,51,52,53,53,54,44,52,54,46,50,56,50,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,97,114,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,51,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,54,55,48,54,54,44,52,55,46,50,52,48,52,48,52,93,44,91,45,57,56,46,52,51,57,55,51,52,44,52,54,46,57,55,57,54,51,49,93,44,91,45,57,56,46,52,51,57,48,53,54,44,52,54,46,54,51,49,49,50,93,44,91,45,57,56,46,48,51,51,56,54,50,44,52,54,46,54,51,48,55,50,55,93,44,91,45,57,55,46,54,56,50,48,48,54,44,52,54,46,54,50,57,57,50,56,93,44,91,45,57,55,46,54,56,49,53,48,56,44,52,54,46,57,55,56,52,56,49,93,44,91,45,57,55,46,55,48,53,57,51,53,44,52,55,46,50,51,57,57,55,55,93,44,91,45,57,55,46,57,54,49,50,49,49,44,52,55,46,50,52,48,51,50,53,93,44,91,45,57,56,46,52,54,55,48,54,54,44,52,55,46,50,52,48,52,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,83,105,98,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,49,50,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,49,48,52,57,52,44,52,52,46,55,49,55,52,54,52,93,44,91,45,57,52,46,50,53,52,48,55,54,44,52,52,46,55,49,55,56,53,53,93,44,91,45,57,52,46,50,53,52,55,49,57,44,52,52,46,54,51,48,51,49,49,93,44,91,45,57,52,46,52,57,55,56,51,53,44,52,52,46,54,50,57,57,50,49,93,44,91,45,57,52,46,52,57,56,48,55,52,44,52,52,46,55,49,55,49,55,49,93,44,91,45,57,52,46,54,50,57,52,56,57,44,52,52,46,55,49,54,54,54,51,93,44,91,45,57,52,46,54,50,52,50,44,52,52,46,52,53,54,48,51,93,44,91,45,57,51,46,57,50,57,53,53,44,52,52,46,52,53,54,55,49,54,93,44,91,45,57,51,46,57,49,48,52,48,53,44,52,52,46,53,52,51,49,54,51,93,44,91,45,57,51,46,55,54,56,48,51,57,44,52,52,46,54,52,48,51,48,51,93,44,91,45,57,52,46,48,49,48,52,57,52,44,52,52,46,55,49,55,52,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,51,34,44,34,78,65,77,69,34,58,34,85,112,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,49,54,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,57,56,54,54,53,44,51,50,46,57,57,57,54,55,49,93,44,91,45,56,52,46,53,50,55,48,50,44,51,50,46,57,55,48,53,52,56,93,44,91,45,56,52,46,53,48,54,56,56,56,44,51,50,46,56,56,49,55,56,56,93,44,91,45,56,52,46,50,56,54,50,52,54,44,51,50,46,55,52,55,54,50,54,93,44,91,45,56,52,46,50,48,50,54,50,56,44,51,50,46,54,57,48,48,49,56,93,44,91,45,56,52,46,49,50,52,50,55,53,44,51,50,46,56,52,57,53,54,50,93,44,91,45,56,52,46,49,50,51,51,52,44,51,50,46,57,51,50,49,56,52,93,44,91,45,56,52,46,50,55,48,49,52,44,51,50,46,57,57,49,48,49,49,93,44,91,45,56,52,46,50,57,56,54,54,53,44,51,50,46,57,57,57,54,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,83,111,110,111,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,49,51,49,55,44,34,98,101,100,115,34,58,56,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,49,51,52,53,50,51,44,51,56,46,50,57,54,50,54,51,93,44,91,45,49,50,50,46,57,48,49,55,50,54,44,51,56,46,51,49,54,57,52,51,93,44,91,45,49,50,50,46,55,51,57,57,44,51,56,46,50,48,55,48,49,56,93,44,91,45,49,50,50,46,53,55,56,50,48,49,44,51,56,46,49,56,51,53,56,51,93,44,91,45,49,50,50,46,53,48,50,56,50,44,51,56,46,49,49,51,48,48,50,93,44,91,45,49,50,50,46,51,52,55,52,53,52,44,51,56,46,48,55,51,50,54,93,44,91,45,49,50,50,46,52,48,54,55,56,54,44,51,56,46,49,53,53,54,51,50,93,44,91,45,49,50,50,46,51,53,57,57,50,52,44,51,56,46,50,51,48,53,48,49,93,44,91,45,49,50,50,46,53,52,51,56,57,51,44,51,56,46,53,49,57,57,54,54,93,44,91,45,49,50,50,46,54,52,54,50,54,56,44,51,56,46,53,57,57,49,50,93,44,91,45,49,50,50,46,54,50,55,51,57,54,44,51,56,46,54,54,55,53,48,54,93,44,91,45,49,50,50,46,56,50,49,53,57,50,44,51,56,46,56,53,48,49,52,93,44,91,45,49,50,51,46,48,56,48,57,57,55,44,51,56,46,56,53,50,52,51,56,93,44,91,45,49,50,51,46,49,51,54,50,53,51,44,51,56,46,56,48,57,49,51,54,93,44,91,45,49,50,51,46,51,54,56,51,57,52,44,51,56,46,56,48,54,54,52,93,44,91,45,49,50,51,46,54,51,50,52,57,55,44,51,56,46,55,53,56,49,49,57,93,44,91,45,49,50,51,46,53,49,48,53,56,44,51,56,46,54,56,48,56,57,93,44,91,45,49,50,51,46,51,54,48,57,50,57,44,51,56,46,53,49,48,50,48,50,93,44,91,45,49,50,51,46,50,50,48,50,50,44,51,56,46,52,52,49,57,53,52,93,44,91,45,49,50,51,46,49,51,52,53,50,51,44,51,56,46,50,57,54,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,104,105,112,112,101,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,51,52,44,34,98,101,100,115,34,58,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,51,54,56,54,55,44,52,53,46,55,55,51,57,52,52,93,44,91,45,56,51,46,52,51,51,53,53,56,44,52,53,46,57,57,56,56,57,53,93,44,91,45,56,51,46,53,55,49,52,54,55,44,52,54,46,49,48,53,57,57,56,93,44,91,45,56,51,46,56,50,54,50,52,51,44,52,54,46,49,49,57,50,56,56,93,44,91,45,56,51,46,57,53,53,52,50,52,44,52,54,46,48,53,55,49,56,56,93,44,91,45,56,52,46,49,48,56,48,56,57,44,52,54,46,50,52,49,50,51,56,93,44,91,45,56,52,46,49,52,54,49,55,50,44,52,54,46,52,49,56,53,50,93,44,91,45,56,52,46,49,49,49,50,50,53,44,52,54,46,53,48,52,49,49,57,93,44,91,45,56,52,46,52,50,48,50,55,52,44,52,54,46,53,48,49,48,55,55,93,44,91,45,56,52,46,53,53,54,57,55,54,44,52,54,46,52,54,48,54,53,93,44,91,45,56,52,46,55,54,50,57,53,55,44,52,54,46,54,51,52,51,50,52,93,44,91,45,56,52,46,56,53,57,51,51,53,44,52,54,46,56,56,56,56,52,51,93,44,91,45,56,53,46,50,51,52,51,51,44,52,55,46,48,52,55,54,49,93,44,91,45,56,53,46,50,51,55,56,51,57,44,52,54,46,50,52,53,52,51,93,44,91,45,56,53,46,49,49,50,53,49,51,44,52,54,46,49,53,56,50,54,51,93,44,91,45,56,52,46,51,54,51,53,48,51,44,52,54,46,49,53,55,57,56,52,93,44,91,45,56,52,46,51,54,51,48,57,44,52,54,46,48,55,49,53,55,52,93,44,91,45,56,52,46,50,51,57,51,51,50,44,52,53,46,57,56,52,57,49,52,93,44,91,45,56,52,46,49,49,52,49,56,54,44,52,53,46,57,56,53,49,53,50,93,44,91,45,56,52,46,49,50,51,48,57,56,44,52,53,46,55,55,55,54,54,56,93,44,91,45,56,51,46,54,51,54,56,54,55,44,52,53,46,55,55,51,57,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,111,110,110,101,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,51,57,55,44,34,98,101,100,115,34,58,51,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,53,49,57,56,54,49,44,52,51,46,54,50,54,54,50,51,93,44,91,45,49,49,50,46,53,50,48,48,50,52,44,52,51,46,52,50,53,49,55,93,44,91,45,49,49,50,46,49,48,51,50,57,56,44,52,51,46,52,50,53,48,53,55,93,44,91,45,49,49,50,46,48,52,51,56,50,49,44,52,51,46,51,54,54,55,48,56,93,44,91,45,49,49,49,46,56,50,50,52,55,53,44,52,51,46,51,54,54,48,51,53,93,44,91,45,49,49,49,46,56,50,50,52,57,52,44,52,51,46,50,56,50,50,56,54,93,44,91,45,49,49,49,46,53,56,56,48,52,57,44,52,51,46,50,56,49,56,52,49,93,44,91,45,49,49,49,46,53,56,57,52,56,57,44,52,51,46,48,50,48,48,53,50,93,44,91,45,49,49,49,46,48,52,52,48,55,50,44,52,51,46,48,49,57,52,48,55,93,44,91,45,49,49,49,46,48,52,52,56,57,51,44,52,51,46,51,49,53,55,49,57,93,44,91,45,49,49,49,46,48,52,53,52,55,51,44,52,51,46,53,48,49,48,53,49,93,44,91,45,49,49,49,46,50,48,55,53,54,49,44,52,51,46,53,52,51,56,53,55,93,44,91,45,49,49,49,46,50,52,51,56,51,57,44,52,51,46,54,50,49,56,53,51,93,44,91,45,49,49,49,46,51,57,57,55,54,53,44,52,51,46,54,50,49,57,55,54,93,44,91,45,49,49,49,46,54,50,54,48,52,51,44,52,51,46,54,50,54,55,53,54,93,44,91,45,49,49,50,46,53,49,57,56,54,49,44,52,51,46,54,50,54,54,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,97,114,114,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,56,56,55,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,49,55,54,56,50,44,51,52,46,49,50,55,52,57,51,93,44,91,45,56,51,46,56,54,56,57,51,49,44,51,52,46,48,48,52,55,56,54,93,44,91,45,56,51,46,55,57,57,49,48,52,44,51,51,46,57,50,57,56,52,52,93,44,91,45,56,51,46,54,52,55,48,51,49,44,51,51,46,57,48,54,49,57,56,93,44,91,45,56,51,46,53,51,55,51,56,53,44,51,51,46,57,54,53,57,49,50,93,44,91,45,56,51,46,53,54,51,50,49,53,44,51,52,46,48,51,49,55,53,55,93,44,91,45,56,51,46,55,53,49,51,56,49,44,51,52,46,48,54,52,50,48,49,93,44,91,45,56,51,46,56,49,55,54,56,50,44,51,52,46,49,50,55,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,76,111,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,54,57,48,53,50,44,51,49,46,55,56,57,51,50,52,93,44,91,45,56,49,46,56,50,51,57,50,49,44,51,49,46,54,53,49,56,48,57,93,44,91,45,56,49,46,54,54,51,50,48,54,44,51,49,46,53,51,56,54,54,55,93,44,91,45,56,49,46,53,54,54,48,48,57,44,51,49,46,53,55,54,52,54,55,93,44,91,45,56,49,46,52,57,49,55,57,56,44,51,49,46,54,57,57,53,55,53,93,44,91,45,56,49,46,54,52,49,55,54,49,44,51,49,46,55,54,53,52,53,49,93,44,91,45,56,49,46,55,54,53,51,53,55,44,51,49,46,56,55,52,53,52,93,44,91,45,56,49,46,55,53,48,50,53,55,44,51,49,46,57,55,51,50,48,55,93,44,91,45,56,49,46,56,50,52,52,48,53,44,51,50,46,48,49,52,56,56,50,93,44,91,45,56,49,46,57,54,57,48,53,50,44,51,49,46,55,56,57,51,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,49,34,44,34,78,65,77,69,34,58,34,75,105,110,110,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,57,52,54,50,55,44,50,57,46,50,52,49,54,49,50,93,44,91,45,49,48,48,46,54,54,55,53,52,56,44,50,57,46,48,56,52,50,57,50,93,44,91,45,49,48,48,46,49,49,49,52,48,54,44,50,57,46,48,56,54,51,49,56,93,44,91,45,49,48,48,46,49,49,50,48,57,56,44,50,57,46,54,50,51,50,54,51,93,44,91,45,49,48,48,46,54,57,57,57,51,50,44,50,57,46,54,50,51,56,57,55,93,44,91,45,49,48,48,46,54,57,57,49,52,49,44,50,57,46,52,49,57,55,52,55,93,44,91,45,49,48,48,46,55,52,53,51,48,56,44,50,57,46,50,54,52,56,57,56,93,44,91,45,49,48,48,46,55,57,52,54,50,55,44,50,57,46,50,52,49,54,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,79,116,116,97,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,54,54,44,34,98,101,100,115,34,58,49,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,48,55,54,50,44,51,54,46,57,57,57,53,49,52,93,44,91,45,57,52,46,57,57,57,52,48,51,44,51,54,46,54,55,48,54,51,49,93,44,91,45,57,52,46,54,49,56,48,55,55,44,51,54,46,54,54,55,57,50,49,93,44,91,45,57,52,46,54,49,56,51,48,55,44,51,54,46,55,54,54,53,54,93,44,91,45,57,52,46,54,49,55,57,54,52,44,51,54,46,57,57,56,57,48,53,93,44,91,45,57,53,46,48,48,55,54,50,44,51,54,46,57,57,57,53,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,108,101,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,50,49,54,44,34,98,101,100,115,34,58,51,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,55,49,48,50,52,56,44,52,49,46,50,48,49,56,53,57,93,44,91,45,55,56,46,56,48,52,53,51,50,44,52,49,46,49,51,50,49,56,54,93,44,91,45,55,56,46,56,48,53,49,54,55,44,52,48,46,57,48,53,57,56,93,44,91,45,55,56,46,56,48,49,54,57,55,44,52,48,46,55,50,52,53,51,57,93,44,91,45,55,56,46,51,53,48,52,51,44,52,48,46,55,50,52,56,50,55,93,44,91,45,55,56,46,51,53,57,57,49,50,44,52,48,46,55,51,50,53,57,50,93,44,91,45,55,56,46,50,49,57,56,49,51,44,52,48,46,57,49,50,55,52,49,93,44,91,45,55,56,46,48,55,55,55,52,44,52,48,46,57,53,56,56,50,52,93,44,91,45,55,56,46,48,51,56,50,48,51,44,52,49,46,49,53,51,54,51,51,93,44,91,45,55,56,46,48,57,51,51,56,49,44,52,49,46,50,49,54,57,51,49,93,44,91,45,55,56,46,50,51,54,56,49,55,44,52,49,46,50,51,48,52,55,53,93,44,91,45,55,56,46,54,52,54,54,54,54,44,52,49,46,50,53,51,55,55,56,93,44,91,45,55,56,46,55,49,48,50,52,56,44,52,49,46,50,48,49,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,56,57,54,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,44,91,45,56,52,46,56,51,55,48,56,53,44,52,50,46,55,55,48,52,55,57,93,44,91,45,56,52,46,54,48,50,55,54,49,44,52,50,46,55,54,57,56,56,93,44,91,45,56,52,46,51,54,51,54,53,57,44,52,50,46,55,55,53,55,55,56,93,44,91,45,56,52,46,51,54,55,55,54,44,52,51,46,49,49,55,57,52,50,93,44,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,73,115,97,98,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,52,50,54,57,56,57,44,49,56,46,48,52,50,54,50,55,93,44,91,45,54,54,46,52,50,52,53,55,53,44,49,55,46,56,56,49,57,51,56,93,44,91,45,54,54,46,51,50,51,50,50,44,49,55,46,56,55,55,54,54,55,93,44,91,45,54,54,46,51,51,49,50,52,52,44,49,56,46,48,49,53,56,57,49,93,44,91,45,54,54,46,52,50,54,57,56,57,44,49,56,46,48,52,50,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,48,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,48,49,54,54,49,44,51,57,46,53,50,51,51,49,54,93,44,91,45,56,57,46,54,57,56,53,53,53,44,51,56,46,57,57,56,57,55,57,93,44,91,45,56,57,46,54,51,57,50,54,53,44,51,56,46,57,57,57,49,50,57,93,44,91,45,56,57,46,53,56,54,51,52,52,44,51,57,46,48,50,56,51,50,57,93,44,91,45,56,57,46,50,53,48,51,48,57,44,51,57,46,48,50,56,49,56,53,93,44,91,45,56,57,46,50,53,48,53,49,51,44,51,57,46,50,49,55,53,49,50,93,44,91,45,56,57,46,49,51,57,52,54,52,44,51,57,46,50,49,55,55,55,51,93,44,91,45,56,57,46,49,51,57,56,48,55,44,51,57,46,51,52,56,56,56,56,93,44,91,45,56,57,46,53,51,48,56,51,54,44,51,57,46,51,52,56,56,54,52,93,44,91,45,56,57,46,53,51,51,54,53,53,44,51,57,46,53,50,52,53,57,50,93,44,91,45,56,57,46,55,48,49,54,54,49,44,51,57,46,53,50,51,51,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,99,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,49,56,48,44,34,98,101,100,115,34,58,50,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,56,48,53,48,56,44,51,52,46,57,57,53,54,49,93,44,91,45,56,56,46,55,56,54,54,49,50,44,51,52,46,57,57,53,50,53,50,93,44,91,45,56,56,46,56,50,51,48,53,49,44,51,52,46,57,57,53,50,50,49,93,44,91,45,56,56,46,56,50,51,52,55,51,44,51,52,46,56,53,56,54,50,57,93,44,91,45,56,56,46,55,49,56,53,48,56,44,51,52,46,55,53,54,55,56,49,93,44,91,45,56,56,46,51,54,53,52,55,50,44,51,52,46,55,53,53,54,48,52,93,44,91,45,56,56,46,51,54,51,53,51,49,44,51,52,46,57,57,53,52,55,53,93,44,91,45,56,56,46,51,56,48,53,48,56,44,51,52,46,57,57,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,52,53,57,44,34,98,101,100,115,34,58,50,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,52,54,49,51,51,44,51,52,46,52,57,53,54,51,51,93,44,91,45,56,57,46,52,55,54,54,52,50,44,51,52,46,53,53,52,49,54,56,93,44,91,45,56,57,46,54,54,56,52,52,56,44,51,52,46,53,53,52,51,54,55,93,44,91,45,56,57,46,55,50,49,51,52,49,44,51,52,46,53,53,52,50,55,52,93,44,91,45,56,57,46,55,50,49,48,53,44,51,52,46,49,57,50,53,52,53,93,44,91,45,56,57,46,53,48,57,55,52,56,44,51,52,46,49,54,50,48,56,50,93,44,91,45,56,57,46,50,52,53,52,56,53,44,51,52,46,49,54,49,49,56,54,93,44,91,45,56,57,46,50,52,54,51,51,57,44,51,52,46,51,55,57,51,52,52,93,44,91,45,56,57,46,50,52,54,49,51,51,44,51,52,46,52,57,53,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,55,51,53,50,57,44,51,49,46,55,48,56,57,50,50,93,44,91,45,57,50,46,57,48,56,51,49,51,44,51,49,46,54,50,53,49,54,57,93,44,91,45,57,50,46,56,48,54,50,48,54,44,51,49,46,53,57,56,53,52,56,93,44,91,45,57,50,46,55,49,56,57,56,51,44,51,49,46,53,49,55,53,57,52,93,44,91,45,57,50,46,54,51,49,57,52,52,44,51,49,46,51,57,48,52,55,56,93,44,91,45,57,50,46,49,57,54,49,51,49,44,51,49,46,52,55,55,56,55,55,93,44,91,45,57,50,46,50,56,50,48,56,49,44,51,49,46,53,48,51,52,56,54,93,44,91,45,57,50,46,51,55,50,52,55,54,44,51,49,46,55,48,49,53,49,57,93,44,91,45,57,50,46,51,54,50,54,48,56,44,51,49,46,55,57,54,54,51,51,93,44,91,45,57,50,46,54,49,57,50,50,52,44,51,49,46,55,57,55,49,52,57,93,44,91,45,57,50,46,54,49,57,57,55,54,44,51,49,46,55,48,57,53,55,50,93,44,91,45,57,50,46,57,55,51,53,50,57,44,51,49,46,55,48,56,57,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,116,99,104,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,48,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,48,57,57,55,52,44,52,48,46,53,50,51,55,57,56,93,44,91,45,57,53,46,53,53,52,56,49,55,44,52,48,46,50,54,52,52,54,93,44,91,45,57,53,46,49,56,48,54,49,52,44,52,48,46,50,54,49,55,48,54,93,44,91,45,57,53,46,50,48,50,50,54,53,44,52,48,46,53,55,56,52,56,56,93,44,91,45,57,53,46,51,55,51,57,50,51,44,52,48,46,53,56,48,53,48,51,93,44,91,45,57,53,46,55,54,53,54,52,53,44,52,48,46,53,56,53,50,48,56,93,44,91,45,57,53,46,55,48,57,57,55,52,44,52,48,46,53,50,51,55,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,53,49,50,44,34,98,101,100,115,34,58,53,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,49,55,52,55,51,44,51,57,46,56,49,51,54,54,54,93,44,91,45,56,57,46,49,52,49,57,54,55,44,51,57,46,56,48,49,50,55,51,93,44,91,45,56,57,46,49,51,57,49,50,53,44,51,57,46,54,53,53,49,51,49,93,44,91,45,56,57,46,48,50,53,54,56,44,51,57,46,54,53,52,49,56,51,93,44,91,45,56,56,46,56,49,48,53,55,53,44,51,57,46,54,53,51,50,50,50,93,44,91,45,56,56,46,55,52,53,54,55,49,44,51,57,46,55,57,50,49,52,54,93,44,91,45,56,56,46,55,52,53,49,54,52,44,52,48,46,48,53,53,49,57,49,93,44,91,45,56,57,46,49,52,52,55,54,52,44,52,48,46,48,52,56,56,53,51,93,44,91,45,56,57,46,50,49,55,56,52,54,44,51,57,46,57,49,54,57,57,93,44,91,45,56,57,46,50,49,55,52,55,51,44,51,57,46,56,49,51,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,74,111,115,101,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,56,57,55,44,34,98,101,100,115,34,58,49,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,54,50,57,52,51,44,52,50,46,48,54,57,51,50,55,93,44,91,45,56,53,46,55,54,48,49,56,54,44,52,49,46,55,57,56,56,49,52,93,44,91,45,56,53,46,55,57,49,51,51,53,44,52,49,46,55,53,57,48,55,56,93,44,91,45,56,53,46,54,53,57,55,53,44,52,49,46,55,53,57,48,54,56,93,44,91,45,56,53,46,50,57,50,49,55,57,44,52,49,46,55,53,57,56,56,57,93,44,91,45,56,53,46,50,57,51,54,50,54,44,52,50,46,48,55,49,53,53,51,93,44,91,45,56,53,46,55,54,50,57,52,51,44,52,50,46,48,54,57,51,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,49,50,55,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,50,57,54,51,50,44,51,56,46,49,50,52,55,54,55,93,44,91,45,56,57,46,49,55,55,53,57,55,44,51,55,46,57,53,48,51,49,49,93,44,91,45,56,57,46,49,53,49,49,55,54,44,51,55,46,56,54,49,57,57,57,93,44,91,45,56,56,46,55,48,54,55,53,57,44,51,55,46,56,54,51,52,53,55,93,44,91,45,56,56,46,55,48,54,54,50,50,44,51,55,46,57,48,54,55,57,55,93,44,91,45,56,56,46,55,48,52,54,48,54,44,51,56,46,49,50,53,49,57,53,93,44,91,45,56,57,46,49,50,57,54,51,50,44,51,56,46,49,50,52,55,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,49,44,34,98,101,100,115,34,58,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,57,48,57,49,50,44,52,55,46,52,53,48,54,57,50,93,44,91,45,49,48,55,46,57,53,54,54,50,52,44,52,55,46,51,54,48,57,52,51,93,44,91,45,49,48,55,46,57,53,52,51,52,55,44,52,55,46,49,50,48,54,53,50,93,44,91,45,49,48,55,46,56,56,52,55,49,56,44,52,54,46,57,56,52,50,52,57,93,44,91,45,49,48,55,46,56,57,50,50,51,51,44,52,54,46,56,53,49,50,49,53,93,44,91,45,49,48,54,46,55,50,48,49,53,55,44,52,54,46,56,53,57,54,48,51,93,44,91,45,49,48,54,46,48,56,54,52,54,51,44,52,54,46,56,52,53,56,56,49,93,44,91,45,49,48,54,46,48,56,54,53,56,53,44,52,54,46,56,54,48,50,57,93,44,91,45,49,48,54,46,48,56,54,55,55,55,44,52,55,46,49,56,48,57,51,56,93,44,91,45,49,48,54,46,49,55,48,52,50,44,52,55,46,49,56,48,56,50,54,93,44,91,45,49,48,54,46,49,55,48,54,55,53,44,52,55,46,51,53,52,52,57,53,93,44,91,45,49,48,54,46,50,57,56,49,53,56,44,52,55,46,51,53,52,50,57,56,93,44,91,45,49,48,54,46,50,54,49,49,50,49,44,52,55,46,53,50,57,48,53,50,93,44,91,45,49,48,54,46,50,54,48,57,51,50,44,52,55,46,56,54,56,52,51,49,93,44,91,45,49,48,54,46,52,49,56,54,50,44,52,55,46,57,53,55,52,53,55,93,44,91,45,49,48,54,46,53,55,49,48,48,51,44,52,55,46,56,49,50,57,51,51,93,44,91,45,49,48,54,46,56,54,49,54,54,56,44,52,55,46,55,51,55,51,55,50,93,44,91,45,49,48,54,46,56,56,49,49,54,50,44,52,55,46,54,55,56,49,50,56,93,44,91,45,49,48,55,46,50,52,57,44,52,55,46,54,54,49,53,54,54,93,44,91,45,49,48,55,46,52,49,52,56,56,54,44,52,55,46,54,57,49,55,51,52,93,44,91,45,49,48,55,46,53,57,52,50,53,44,52,55,46,54,52,57,55,51,49,93,44,91,45,49,48,55,46,56,54,52,57,50,50,44,52,55,46,53,49,51,55,52,93,44,91,45,49,48,55,46,57,48,57,49,50,44,52,55,46,52,53,48,54,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,56,51,44,34,98,101,100,115,34,58,49,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,50,52,51,56,55,44,52,48,46,54,56,57,55,55,50,93,44,91,45,57,56,46,55,50,51,57,52,56,44,52,48,46,51,53,48,51,57,49,93,44,91,45,57,56,46,50,55,56,48,57,44,52,48,46,51,53,48,51,52,55,93,44,91,45,57,56,46,50,55,56,49,48,51,44,52,48,46,54,57,56,50,57,49,93,44,91,45,57,56,46,50,56,50,56,53,49,44,52,48,46,54,57,56,50,56,52,93,44,91,45,57,56,46,55,50,49,52,51,44,52,48,46,54,57,56,57,48,51,93,44,91,45,57,56,46,55,50,52,51,56,55,44,52,48,46,54,56,57,55,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,79,108,109,115,116,101,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,48,54,53,44,34,98,101,100,115,34,58,50,49,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,48,56,55,49,44,52,52,46,49,57,52,57,49,54,93,44,91,45,57,50,46,54,55,56,55,49,55,44,52,52,46,49,57,53,53,49,54,93,44,91,45,57,50,46,54,56,57,51,57,49,44,52,51,46,56,52,56,53,55,93,44,91,45,57,50,46,52,52,56,57,54,53,44,52,51,46,56,51,52,49,48,53,93,44,91,45,57,50,46,48,55,57,50,57,50,44,52,51,46,56,52,55,48,56,93,44,91,45,57,50,46,48,55,57,52,57,49,44,52,52,46,49,48,54,57,56,56,93,44,91,45,57,50,46,51,49,56,57,55,49,44,52,52,46,49,48,55,55,51,52,93,44,91,45,57,50,46,51,49,56,57,56,54,44,52,52,46,49,57,52,48,53,55,93,44,91,45,57,50,46,53,53,48,56,55,49,44,52,52,46,49,57,52,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,51,48,54,54,44,34,98,101,100,115,34,58,49,51,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,51,55,49,55,51,56,44,52,48,46,55,51,57,54,52,93,44,91,45,55,52,46,52,54,49,48,51,53,44,52,48,46,54,55,51,53,48,52,93,44,91,45,55,52,46,52,54,51,50,57,49,44,52,48,46,53,57,57,49,56,55,93,44,91,45,55,52,46,50,48,51,54,56,56,44,52,48,46,53,57,50,54,57,49,93,44,91,45,55,52,46,49,54,49,52,50,56,44,52,48,46,54,52,52,49,52,56,93,44,91,45,55,52,46,49,51,54,55,48,51,44,52,48,46,54,55,52,52,52,52,93,44,91,45,55,52,46,51,55,49,55,51,56,44,52,48,46,55,51,57,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,84,114,117,106,105,108,108,111,32,65,108,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,55,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,57,57,53,53,54,44,49,56,46,51,56,48,48,54,53,93,44,91,45,54,54,46,48,52,49,53,51,53,44,49,56,46,51,49,50,51,52,52,93,44,91,45,54,54,46,48,50,49,55,52,55,44,49,56,46,51,48,53,48,51,52,93,44,91,45,54,53,46,57,52,50,52,50,57,44,49,56,46,50,57,51,52,54,57,93,44,91,45,54,53,46,57,57,57,53,53,54,44,49,56,46,51,56,48,48,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,111,98,105,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,52,54,53,57,44,34,98,101,100,115,34,58,49,57,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,50,53,52,51,50,44,51,48,46,57,57,56,51,50,51,93,44,91,45,56,56,46,52,49,50,54,49,50,44,51,48,46,55,51,53,53,57,93,44,91,45,56,56,46,51,56,52,52,51,49,44,51,48,46,49,53,56,53,52,51,93,44,91,45,56,56,46,49,54,50,48,50,50,44,51,48,46,50,48,48,48,57,51,93,44,91,45,56,56,46,48,51,55,51,48,57,44,51,48,46,49,52,54,53,54,49,93,44,91,45,56,55,46,57,56,55,56,51,57,44,51,48,46,54,51,55,49,52,57,93,44,91,45,56,56,46,48,50,54,51,49,57,44,51,48,46,55,53,51,51,53,56,93,44,91,45,56,55,46,57,52,49,53,54,49,44,51,49,46,48,54,49,51,52,50,93,44,91,45,56,55,46,57,55,50,56,54,57,44,51,49,46,49,54,50,54,57,52,93,44,91,45,56,56,46,48,50,50,54,52,57,44,51,49,46,49,52,52,50,54,55,93,44,91,45,56,56,46,51,50,57,55,56,50,44,51,49,46,49,52,51,56,50,49,93,44,91,45,56,56,46,52,51,50,48,48,55,44,51,49,46,49,49,52,50,57,56,93,44,91,45,56,56,46,52,50,53,52,51,50,44,51,48,46,57,57,56,51,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,99,67,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,48,56,53,49,55,44,52,51,46,56,52,57,48,53,57,93,44,91,45,57,55,46,54,48,55,48,49,50,44,52,51,46,52,57,57,56,50,54,93,44,91,45,57,55,46,52,48,49,52,53,44,52,51,46,52,57,57,55,56,51,93,44,91,45,57,55,46,49,50,57,52,55,56,44,52,51,46,52,57,57,54,56,51,93,44,91,45,57,55,46,49,50,57,48,56,57,44,52,51,46,56,52,55,57,55,51,93,44,91,45,57,55,46,51,54,57,52,54,51,44,52,51,46,56,52,56,53,50,54,93,44,91,45,57,55,46,54,48,56,53,49,55,44,52,51,46,56,52,57,48,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,53,56,53,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,53,49,55,56,53,44,51,51,46,57,49,57,57,51,93,44,91,45,56,55,46,57,52,54,53,49,57,44,51,51,46,53,50,52,48,54,53,93,44,91,45,56,55,46,56,52,48,54,56,51,44,51,51,46,53,50,52,56,51,57,93,44,91,45,56,55,46,54,54,54,54,54,49,44,51,51,46,53,50,49,54,54,55,93,44,91,45,56,55,46,54,51,49,55,49,56,44,51,51,46,54,48,57,56,51,51,93,44,91,45,56,55,46,52,50,51,55,48,49,44,51,51,46,54,48,50,48,57,54,93,44,91,45,56,55,46,52,50,51,56,52,51,44,51,51,46,54,56,57,49,49,50,93,44,91,45,56,55,46,53,50,56,51,51,56,44,51,51,46,54,57,50,48,52,57,93,44,91,45,56,55,46,53,51,49,54,48,50,44,51,51,46,56,54,55,54,49,56,93,44,91,45,56,55,46,54,51,53,57,51,50,44,51,51,46,57,49,53,50,53,49,93,44,91,45,56,55,46,57,53,49,55,56,53,44,51,51,46,57,49,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,97,109,98,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,50,54,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,57,51,49,55,55,44,51,51,46,49,48,55,51,52,93,44,91,45,56,53,46,53,57,51,49,53,49,44,51,50,46,55,50,56,53,51,93,44,91,45,56,53,46,49,51,53,48,51,56,44,51,50,46,55,52,54,53,51,93,44,91,45,56,53,46,49,56,52,49,51,49,44,51,50,46,56,55,48,53,50,53,93,44,91,45,56,53,46,50,51,50,51,55,56,44,51,51,46,49,48,56,48,55,55,93,44,91,45,56,53,46,53,57,51,49,55,55,44,51,51,46,49,48,55,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,50,57,54,56,55,53,44,51,54,46,53,52,52,56,53,53,93,44,91,45,55,55,46,55,54,55,49,53,44,51,54,46,53,52,53,51,55,52,93,44,91,45,55,55,46,56,57,57,55,55,51,44,51,54,46,53,52,52,53,57,54,93,44,91,45,55,55,46,56,57,57,53,50,52,44,51,54,46,53,48,52,50,53,57,93,44,91,45,55,55,46,54,52,57,56,51,53,44,51,54,46,52,56,49,52,52,51,93,44,91,45,55,55,46,52,52,53,56,56,54,44,51,54,46,51,50,52,56,56,56,93,44,91,45,55,55,46,51,56,54,53,57,53,44,51,54,46,50,49,51,53,52,56,93,44,91,45,55,55,46,50,57,49,53,49,57,44,51,54,46,49,54,56,51,52,50,93,44,91,45,55,55,46,50,48,56,52,54,56,44,51,54,46,50,52,54,53,55,56,93,44,91,45,55,55,46,48,57,51,50,50,52,44,51,54,46,53,49,56,50,49,54,93,44,91,45,55,55,46,49,54,52,51,55,55,44,51,54,46,53,52,54,51,50,57,93,44,91,45,55,55,46,50,57,54,56,55,53,44,51,54,46,53,52,52,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,77,111,102,102,97,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,48,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,56,57,52,52,44,52,48,46,54,54,50,54,48,49,93,44,91,45,49,48,57,46,48,53,48,57,52,57,44,52,48,46,50,50,50,54,52,55,93,44,91,45,49,48,56,46,49,49,51,49,55,57,44,52,48,46,50,50,49,54,55,93,44,91,45,49,48,55,46,52,51,57,51,56,54,44,52,48,46,50,50,51,51,55,57,93,44,91,45,49,48,55,46,52,50,56,56,49,51,44,52,48,46,53,52,50,50,48,55,93,44,91,45,49,48,55,46,51,49,52,49,53,51,44,52,48,46,54,48,48,50,56,49,93,44,91,45,49,48,55,46,51,49,55,55,57,52,44,52,49,46,48,48,50,57,50,93,44,91,45,49,48,55,46,57,49,56,52,50,49,44,52,49,46,48,48,50,48,51,54,93,44,91,45,49,48,57,46,48,53,48,48,50,54,44,52,49,46,48,48,48,54,57,49,93,44,91,45,49,48,57,46,48,52,56,57,52,52,44,52,48,46,54,54,50,54,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,50,51,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,55,51,51,50,44,51,55,46,52,50,49,57,57,54,93,44,91,45,56,53,46,54,57,55,51,50,53,44,51,55,46,51,48,49,56,51,56,93,44,91,45,56,53,46,54,56,54,52,56,50,44,51,55,46,49,56,50,52,50,55,93,44,91,45,56,53,46,53,50,54,56,56,49,44,51,55,46,49,48,57,52,53,93,44,91,45,56,53,46,51,53,50,55,55,49,44,51,55,46,49,57,50,52,51,50,93,44,91,45,56,53,46,53,56,51,52,57,55,44,51,55,46,52,54,57,57,49,55,93,44,91,45,56,53,46,54,53,55,51,51,50,44,51,55,46,52,50,49,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,52,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,57,55,53,55,53,44,51,57,46,52,53,51,50,55,53,93,44,91,45,56,53,46,50,57,54,53,52,44,51,57,46,50,54,56,50,57,49,93,44,91,45,56,53,46,48,54,53,53,55,52,44,51,57,46,51,48,55,50,51,50,93,44,91,45,56,52,46,56,49,57,52,53,44,51,57,46,51,48,53,49,53,51,93,44,91,45,56,52,46,56,49,53,51,53,51,44,51,57,46,53,50,49,57,53,93,44,91,45,56,53,46,48,51,54,48,56,55,44,51,57,46,53,50,54,50,49,51,93,44,91,45,56,53,46,50,57,56,49,49,44,51,57,46,53,50,53,52,55,54,93,44,91,45,56,53,46,50,57,55,53,55,53,44,51,57,46,52,53,51,50,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,101,97,117,102,111,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,50,52,51,44,34,98,101,100,115,34,58,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,55,52,44,51,53,46,55,51,50,56,51,49,93,44,91,45,55,55,46,49,56,57,49,49,53,44,51,53,46,52,49,56,51,54,50,93,44,91,45,55,54,46,56,57,53,57,49,57,44,51,53,46,50,53,51,56,56,57,93,44,91,45,55,54,46,56,52,53,53,48,53,44,51,53,46,50,49,54,48,53,57,93,44,91,45,55,54,46,54,51,50,53,54,49,44,51,53,46,50,51,53,51,50,52,93,44,91,45,55,54,46,54,49,55,52,57,54,44,51,53,46,51,50,56,56,57,51,93,44,91,45,55,54,46,53,50,50,49,51,49,44,51,53,46,51,53,51,54,50,51,93,44,91,45,55,54,46,53,56,53,51,50,44,51,53,46,52,53,53,48,55,53,93,44,91,45,55,54,46,53,56,56,49,57,49,44,51,53,46,54,50,48,54,53,52,93,44,91,45,55,54,46,54,51,55,53,49,51,44,51,53,46,55,48,53,50,49,53,93,44,91,45,55,54,46,56,52,55,50,54,52,44,51,53,46,55,49,57,57,56,50,93,44,91,45,55,54,46,57,56,53,56,52,50,44,51,53,46,54,53,56,56,52,56,93,44,91,45,55,55,46,49,55,52,44,51,53,46,55,51,50,56,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,74,97,121,117,121,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,54,54,54,50,44,49,56,46,50,57,56,53,52,57,93,44,91,45,54,54,46,54,52,57,52,54,55,44,49,56,46,49,53,56,56,53,55,93,44,91,45,54,54,46,53,53,50,55,54,54,44,49,56,46,49,53,50,48,53,55,93,44,91,45,54,54,46,53,52,55,50,50,44,49,56,46,49,53,51,49,51,93,44,91,45,54,54,46,53,52,51,49,51,51,44,49,56,46,49,54,51,48,57,56,93,44,91,45,54,54,46,53,54,54,54,50,44,49,56,46,50,57,56,53,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,117,114,108,101,105,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,55,51,55,44,34,98,101,100,115,34,58,53,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,54,55,51,50,49,44,52,55,46,51,50,55,54,52,54,93,44,91,45,49,48,48,46,55,52,57,51,51,52,44,52,55,46,51,50,55,54,56,53,93,44,91,45,49,48,48,46,55,52,57,51,55,44,52,55,46,49,53,55,50,52,53,93,44,91,45,49,48,48,46,57,54,53,52,52,44,52,55,46,49,53,55,49,51,52,93,44,91,45,49,48,48,46,56,56,50,49,55,50,44,52,55,46,48,49,53,49,49,53,93,44,91,45,49,48,48,46,57,51,53,57,56,51,44,52,54,46,57,56,50,56,52,93,44,91,45,49,48,48,46,55,56,56,55,54,56,44,52,54,46,54,57,49,55,48,49,93,44,91,45,49,48,48,46,54,54,50,48,49,53,44,52,54,46,54,51,52,54,93,44,91,45,49,48,48,46,48,56,49,49,57,56,44,52,54,46,54,51,51,51,57,54,93,44,91,45,49,48,48,46,48,55,53,50,50,57,44,52,54,46,57,56,49,50,56,50,93,44,91,45,49,48,48,46,49,49,52,54,51,55,44,52,54,46,57,56,49,54,54,54,93,44,91,45,49,48,48,46,49,49,51,50,54,49,44,52,55,46,51,50,55,50,54,50,93,44,91,45,49,48,48,46,54,55,51,50,49,44,52,55,46,51,50,55,54,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,82,111,119,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,54,48,53,44,34,98,101,100,115,34,58,50,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,48,55,56,50,54,44,51,53,46,56,53,50,57,50,57,93,44,91,45,56,48,46,55,55,49,53,56,50,44,51,53,46,54,55,50,49,54,51,93,44,91,45,56,48,46,55,51,55,51,55,57,44,51,53,46,53,48,53,56,48,52,93,44,91,45,56,48,46,50,57,53,52,50,49,44,51,53,46,53,48,50,57,50,93,44,91,45,56,48,46,49,56,50,53,53,57,44,51,53,46,53,48,52,49,53,49,93,44,91,45,56,48,46,50,48,57,53,48,57,44,51,53,46,53,56,49,57,53,49,93,44,91,45,56,48,46,52,53,56,56,56,52,44,51,53,46,55,52,51,48,51,49,93,44,91,45,56,48,46,54,51,50,55,50,52,44,51,53,46,56,52,53,56,53,52,93,44,91,45,56,48,46,55,48,55,56,50,54,44,51,53,46,56,53,50,57,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,73,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,49,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,57,49,50,51,54,44,52,54,46,52,49,57,55,48,52,93,44,91,45,56,56,46,57,57,49,48,49,50,44,52,54,46,51,51,50,51,48,56,93,44,91,45,56,56,46,57,57,48,56,54,52,44,52,54,46,48,57,55,51,56,49,93,44,91,45,56,56,46,57,51,50,55,53,55,44,52,54,46,48,55,51,54,54,56,93,44,91,45,56,56,46,54,56,51,51,49,50,44,52,54,46,48,49,52,49,49,51,93,44,91,45,56,56,46,53,48,55,52,56,44,52,54,46,48,49,56,53,49,54,93,44,91,45,56,56,46,49,49,54,56,52,53,44,52,53,46,57,50,49,54,50,55,93,44,91,45,56,56,46,49,49,55,52,48,55,44,52,54,46,50,52,54,54,49,56,93,44,91,45,56,56,46,49,49,54,53,55,49,44,52,54,46,52,49,57,57,53,49,93,44,91,45,56,56,46,54,55,57,51,57,50,44,52,54,46,52,50,48,49,51,57,93,44,91,45,56,56,46,57,57,49,50,51,54,44,52,54,46,52,49,57,55,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,75,97,110,100,105,121,111,104,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,54,53,56,44,34,98,101,100,115,34,58,49,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,50,53,53,50,49,51,44,52,53,46,52,49,50,55,51,57,93,44,91,45,57,53,46,50,52,54,52,56,57,44,52,53,46,49,53,50,52,51,49,93,44,91,45,57,53,46,50,52,56,53,50,44,52,52,46,56,57,49,51,49,93,44,91,45,57,52,46,55,53,56,49,56,57,44,52,52,46,56,57,50,48,57,55,93,44,91,45,57,52,46,55,54,51,48,56,44,52,53,46,51,50,54,49,93,44,91,45,57,52,46,55,54,50,57,51,52,44,52,53,46,52,49,50,56,54,49,93,44,91,45,57,53,46,49,51,49,55,51,44,52,53,46,52,49,50,52,48,50,93,44,91,45,57,53,46,50,53,53,50,49,51,44,52,53,46,52,49,50,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,55,34,44,34,78,65,77,69,34,58,34,87,111,108,102,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,57,53,48,56,44,51,55,46,56,54,49,57,48,54,93,44,91,45,56,51,46,54,51,49,48,54,44,51,55,46,56,50,53,51,55,50,93,44,91,45,56,51,46,55,48,55,57,55,52,44,51,55,46,55,49,54,52,54,51,93,44,91,45,56,51,46,53,50,50,51,48,56,44,51,55,46,54,51,56,53,49,54,93,44,91,45,56,51,46,52,49,56,52,55,52,44,51,55,46,54,57,48,55,50,57,93,44,91,45,56,51,46,50,52,56,54,57,50,44,51,55,46,54,54,57,54,49,54,93,44,91,45,56,51,46,50,54,50,49,55,50,44,51,55,46,55,49,50,54,53,55,93,44,91,45,56,51,46,52,57,53,48,56,44,51,55,46,56,54,49,57,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,54,54,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,50,52,52,54,49,44,51,48,46,48,53,49,52,51,53,93,44,91,45,57,55,46,51,49,53,56,50,51,44,50,57,46,55,56,54,53,52,49,93,44,91,45,57,55,46,51,49,55,56,57,51,44,50,57,46,55,56,52,54,53,56,93,44,91,45,57,55,46,49,52,50,54,52,51,44,50,57,46,54,50,56,49,48,49,93,44,91,45,57,54,46,56,55,52,50,50,50,44,50,57,46,54,51,50,55,48,54,93,44,91,45,57,54,46,53,54,57,56,52,52,44,50,57,46,57,54,49,53,49,54,93,44,91,45,57,54,46,54,50,49,57,56,44,51,48,46,48,52,52,50,56,51,93,44,91,45,57,54,46,54,56,51,51,57,52,44,51,48,46,49,53,49,48,51,56,93,44,91,45,57,54,46,55,57,52,53,53,50,44,51,48,46,49,54,48,53,52,53,93,44,91,45,57,55,46,48,50,52,52,54,49,44,51,48,46,48,53,49,52,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,51,52,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,53,57,52,51,44,52,52,46,53,55,49,48,50,53,93,44,91,45,49,48,52,46,48,53,52,52,56,55,44,52,52,46,49,56,48,51,56,49,93,44,91,45,49,48,52,46,48,53,52,53,56,56,44,52,52,46,49,52,49,48,56,49,93,44,91,45,49,48,51,46,52,53,50,52,53,51,44,52,52,46,49,52,48,55,55,50,93,44,91,45,49,48,51,46,52,53,51,48,49,54,44,52,52,46,50,53,54,54,48,57,93,44,91,45,49,48,51,46,53,55,52,51,57,54,44,52,52,46,50,53,54,48,55,55,93,44,91,45,49,48,51,46,53,54,55,54,53,51,44,52,52,46,54,48,52,48,57,56,93,44,91,45,49,48,51,46,56,50,48,54,51,57,44,52,52,46,54,48,52,55,55,55,93,44,91,45,49,48,52,46,48,53,53,57,52,51,44,52,52,46,53,55,49,48,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,57,52,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,56,46,48,53,52,57,56,53,44,52,53,46,50,53,50,53,55,55,93,44,91,45,54,55,46,57,56,49,56,53,49,44,52,52,46,57,53,53,56,56,53,93,44,91,45,54,56,46,49,48,53,48,49,55,44,52,52,46,57,51,57,48,56,56,93,44,91,45,54,55,46,57,56,49,57,56,56,44,52,52,46,52,55,51,55,53,54,93,44,91,45,54,55,46,57,50,53,49,55,56,44,52,52,46,51,52,49,52,51,52,93,44,91,45,54,55,46,56,48,53,53,54,57,44,52,52,46,51,57,49,48,49,53,93,44,91,45,54,55,46,53,54,55,53,56,53,44,52,52,46,51,57,55,50,48,57,93,44,91,45,54,55,46,52,51,57,54,57,53,44,52,52,46,53,48,53,51,56,52,93,44,91,45,54,55,46,50,52,56,48,53,50,44,52,52,46,53,53,52,56,57,56,93,44,91,45,54,54,46,56,56,53,52,52,52,44,52,52,46,55,57,52,50,48,56,93,44,91,45,54,54,46,57,54,53,51,49,55,44,52,52,46,56,50,56,57,48,53,93,44,91,45,54,55,46,49,53,56,56,55,49,44,52,53,46,49,54,50,48,51,53,93,44,91,45,54,55,46,51,52,48,57,50,52,44,52,53,46,49,50,53,48,57,50,93,44,91,45,54,55,46,52,55,54,51,55,50,44,52,53,46,50,55,53,51,55,49,93,44,91,45,54,55,46,52,50,55,51,50,53,44,52,53,46,51,57,48,55,50,49,93,44,91,45,54,55,46,53,48,48,48,55,50,44,52,53,46,52,57,48,56,52,57,93,44,91,45,54,55,46,52,50,48,55,51,50,44,52,53,46,53,52,57,54,57,53,93,44,91,45,54,55,46,56,48,53,54,56,57,44,52,53,46,54,56,48,48,53,49,93,44,91,45,54,56,46,48,52,56,48,49,50,44,52,53,46,54,51,57,56,57,55,93,44,91,45,54,55,46,57,51,57,55,54,44,52,53,46,50,54,55,56,52,53,93,44,91,45,54,56,46,48,53,52,57,56,53,44,52,53,46,50,53,50,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,66,114,105,115,99,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,57,48,55,52,57,44,51,52,46,55,52,56,50,52,54,93,44,91,45,49,48,49,46,52,55,49,53,54,50,44,51,52,46,55,52,55,52,54,50,93,44,91,45,49,48,49,46,52,55,49,53,56,44,51,52,46,51,49,50,50,57,93,44,91,45,49,48,49,46,48,52,49,52,56,52,44,51,52,46,51,49,50,52,52,52,93,44,91,45,49,48,48,46,57,52,54,49,51,50,44,51,52,46,51,49,50,55,53,57,93,44,91,45,49,48,48,46,57,52,52,57,51,57,44,51,52,46,55,52,56,50,56,49,93,44,91,45,49,48,49,46,48,57,48,55,52,57,44,51,52,46,55,52,56,50,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,79,110,116,111,110,97,103,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,57,49,50,51,54,44,52,54,46,52,49,57,55,48,52,93,44,91,45,56,56,46,57,56,57,53,50,57,44,52,54,46,54,56,48,49,49,57,93,44,91,45,56,56,46,57,51,50,52,56,44,52,54,46,55,54,52,55,56,55,93,44,91,45,56,56,46,57,52,56,56,54,57,44,52,55,46,52,55,55,49,52,53,93,44,91,45,56,57,46,54,56,48,55,51,44,52,55,46,55,49,52,53,53,50,93,44,91,45,56,57,46,57,53,55,49,48,50,44,52,55,46,50,57,49,49,48,51,93,44,91,45,57,48,46,49,49,49,54,56,57,44,52,55,46,48,52,49,57,54,52,93,44,91,45,57,48,46,48,48,48,49,54,49,44,52,54,46,57,57,57,57,51,55,93,44,91,45,57,48,46,48,48,48,49,55,49,44,52,54,46,55,54,53,53,50,57,93,44,91,45,56,57,46,56,54,51,55,57,51,44,52,54,46,55,54,53,52,48,53,93,44,91,45,56,57,46,56,54,52,52,50,44,52,54,46,53,57,50,54,52,51,93,44,91,45,56,57,46,55,52,48,53,54,56,44,52,54,46,53,48,53,54,52,50,93,44,91,45,56,57,46,51,54,53,48,57,52,44,52,54,46,53,48,53,57,52,57,93,44,91,45,56,57,46,51,54,53,53,48,55,44,52,54,46,51,51,51,48,55,56,93,44,91,45,56,56,46,57,57,49,48,49,50,44,52,54,46,51,51,50,51,48,56,93,44,91,45,56,56,46,57,57,49,50,51,54,44,52,54,46,52,49,57,55,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,50,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,56,54,56,57,44,51,51,46,54,55,54,55,50,55,93,44,91,45,57,48,46,49,50,55,55,55,53,44,51,51,46,54,55,54,57,53,54,93,44,91,45,57,48,46,49,48,49,52,48,49,44,51,51,46,52,53,56,57,52,93,44,91,45,57,48,46,49,55,52,54,49,52,44,51,51,46,51,51,51,51,55,56,93,44,91,45,56,57,46,55,52,57,52,52,49,44,51,51,46,50,49,52,52,55,56,93,44,91,45,56,57,46,54,52,53,50,56,44,51,51,46,50,56,53,53,49,53,93,44,91,45,56,57,46,54,52,54,51,49,52,44,51,51,46,52,48,50,53,52,52,93,44,91,45,56,57,46,55,56,53,50,50,55,44,51,51,46,52,49,54,50,55,53,93,44,91,45,56,57,46,55,56,54,56,57,44,51,51,46,54,55,54,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,55,56,48,44,34,98,101,100,115,34,58,49,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,49,52,57,48,50,53,44,52,52,46,55,50,48,50,50,53,93,44,91,45,49,50,51,46,54,48,50,54,48,57,44,52,52,46,55,50,49,49,53,52,93,44,91,45,49,50,51,46,53,57,55,54,55,55,44,52,52,46,52,51,51,49,48,57,93,44,91,45,49,50,51,46,55,50,48,48,55,49,44,52,52,46,52,51,51,51,55,52,93,44,91,45,49,50,51,46,55,55,53,53,57,56,44,52,52,46,50,56,51,53,52,55,93,44,91,45,49,50,51,46,49,56,48,51,56,56,44,52,52,46,50,56,51,55,50,53,93,44,91,45,49,50,51,46,50,52,48,55,52,52,44,52,52,46,51,51,55,55,56,57,93,44,91,45,49,50,51,46,50,49,49,57,54,55,44,52,52,46,53,48,49,50,49,56,93,44,91,45,49,50,51,46,50,54,48,49,53,49,44,52,52,46,53,53,53,49,52,56,93,44,91,45,49,50,51,46,49,52,57,48,50,53,44,52,52,46,55,50,48,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,82,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,49,51,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,53,50,57,56,56,44,52,51,46,56,52,57,53,48,55,93,44,91,45,57,54,46,52,53,51,50,54,44,52,51,46,53,48,48,51,57,93,44,91,45,57,54,46,48,53,51,49,54,50,44,52,51,46,53,48,48,49,53,53,93,44,91,45,57,54,46,48,53,50,51,50,44,52,51,46,56,52,57,48,55,93,44,91,45,57,54,46,48,54,52,54,50,44,52,51,46,56,52,57,48,51,57,93,44,91,45,57,54,46,52,53,50,57,56,56,44,52,51,46,56,52,57,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,55,53,53,44,34,98,101,100,115,34,58,49,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,49,53,51,49,44,52,48,46,57,49,49,51,52,54,93,44,91,45,55,57,46,50,49,53,50,49,53,44,52,48,46,55,55,53,57,52,50,93,44,91,45,55,57,46,52,53,48,49,55,54,44,52,48,46,53,51,48,49,52,57,93,44,91,45,55,57,46,49,50,49,54,51,52,44,52,48,46,51,55,48,53,55,54,93,44,91,45,55,56,46,57,55,52,54,52,57,44,52,48,46,51,57,53,57,55,50,93,44,91,45,55,56,46,56,48,49,54,57,55,44,52,48,46,55,50,52,53,51,57,93,44,91,45,55,56,46,56,48,53,49,54,55,44,52,48,46,57,48,53,57,56,93,44,91,45,55,57,46,50,49,53,51,49,44,52,48,46,57,49,49,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,51,53,54,44,34,98,101,100,115,34,58,50,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,55,55,49,57,55,44,51,50,46,52,53,51,52,53,53,93,44,91,45,57,50,46,54,50,50,51,51,53,44,51,50,46,52,57,54,52,48,54,93,44,91,45,57,50,46,52,49,53,51,53,44,51,50,46,52,57,53,52,56,54,93,44,91,45,57,50,46,52,49,53,48,55,49,44,51,50,46,53,56,50,56,52,53,93,44,91,45,57,50,46,52,49,53,48,53,44,51,50,46,54,55,48,48,53,54,93,44,91,45,57,50,46,54,50,56,50,56,56,44,51,50,46,55,53,57,54,54,57,93,44,91,45,57,50,46,55,50,53,52,51,57,44,51,50,46,55,53,57,53,52,93,44,91,45,57,50,46,56,50,56,53,51,53,44,51,50,46,55,53,56,56,49,52,93,44,91,45,57,50,46,56,56,48,56,48,53,44,51,50,46,53,56,53,50,55,55,93,44,91,45,57,50,46,56,55,57,50,54,56,44,51,50,46,52,53,52,49,49,56,93,44,91,45,57,50,46,55,55,55,49,57,55,44,51,50,46,52,53,51,52,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,57,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,44,91,45,55,55,46,50,56,57,53,57,50,44,52,48,46,53,49,56,52,53,55,93,44,91,45,55,55,46,53,52,48,49,52,49,44,52,48,46,51,57,57,50,50,49,93,44,91,45,55,55,46,54,55,49,55,54,49,44,52,48,46,50,56,57,56,50,53,93,44,91,45,55,55,46,54,49,52,54,54,53,44,52,48,46,49,57,56,53,52,57,93,44,91,45,55,55,46,52,50,54,53,57,53,44,52,48,46,50,56,54,54,49,93,44,91,45,55,55,46,50,55,48,48,53,55,44,52,48,46,50,55,56,54,53,50,93,44,91,45,55,54,46,57,49,52,57,55,44,52,48,46,51,50,56,52,56,52,93,44,91,45,55,55,46,48,50,56,54,52,53,44,52,48,46,51,57,49,49,57,55,93,44,91,45,55,54,46,57,52,57,51,57,55,44,52,48,46,52,54,57,48,51,55,93,44,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,90,105,101,98,97,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,49,52,44,34,98,101,100,115,34,58,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,57,57,57,57,57,44,52,53,46,48,51,56,50,55,52,93,44,91,45,49,48,50,46,48,48,48,52,51,50,44,52,52,46,53,49,49,54,54,51,93,44,91,45,49,48,49,46,55,56,48,55,51,51,44,52,52,46,53,51,54,52,51,54,93,44,91,45,49,48,49,46,55,49,53,48,51,56,44,52,52,46,53,55,57,52,56,51,93,44,91,45,49,48,49,46,53,51,49,48,51,53,44,52,52,46,53,54,55,56,55,53,93,44,91,45,49,48,49,46,51,50,56,50,52,53,44,52,52,46,54,57,48,57,53,54,93,44,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,48,49,46,49,51,54,49,54,50,44,52,52,46,57,57,52,48,55,52,93,44,91,45,49,48,49,46,53,48,49,48,53,51,44,52,52,46,57,57,51,55,57,53,93,44,91,45,49,48,49,46,52,55,48,49,57,44,52,53,46,52,55,50,52,49,54,93,44,91,45,49,48,49,46,57,57,57,55,57,44,52,53,46,52,55,50,52,49,52,93,44,91,45,49,48,49,46,57,57,57,57,57,44,52,53,46,48,51,56,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,51,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,54,52,53,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,48,49,55,57,44,51,50,46,54,53,50,50,48,57,93,44,91,45,57,52,46,55,48,49,57,56,54,44,51,50,46,52,50,49,55,56,50,93,44,91,45,57,52,46,53,55,57,50,49,57,44,51,50,46,51,57,52,57,49,54,93,44,91,45,57,52,46,52,57,49,56,49,56,44,51,50,46,51,57,52,49,51,55,93,44,91,45,57,52,46,51,53,52,50,57,52,44,51,50,46,51,50,57,50,48,57,93,44,91,45,57,52,46,48,52,50,57,48,49,44,51,50,46,51,57,50,50,56,51,93,44,91,45,57,52,46,48,52,51,49,52,55,44,51,50,46,54,57,51,48,51,93,44,91,45,57,52,46,49,55,50,49,51,54,44,51,50,46,54,57,54,57,93,44,91,45,57,52,46,50,56,51,48,50,56,44,51,50,46,55,52,54,55,50,57,93,44,91,45,57,52,46,51,57,48,55,56,51,44,51,50,46,54,57,52,51,55,55,93,44,91,45,57,52,46,53,48,55,51,50,51,44,51,50,46,54,57,51,55,51,56,93,44,91,45,57,52,46,55,48,50,49,52,44,51,50,46,55,57,51,48,56,56,93,44,91,45,57,52,46,55,48,49,55,57,44,51,50,46,54,53,50,50,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,97,114,97,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,48,55,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,52,51,55,51,49,44,52,55,46,48,52,51,57,53,56,93,44,91,45,56,56,46,52,53,49,50,44,52,54,46,57,51,56,57,55,54,93,44,91,45,56,56,46,53,53,49,57,52,51,44,52,54,46,56,53,49,55,57,53,93,44,91,45,56,56,46,54,55,56,57,56,51,44,52,54,46,56,53,49,56,50,50,93,44,91,45,56,56,46,54,55,57,51,57,50,44,52,54,46,52,50,48,49,51,57,93,44,91,45,56,56,46,49,49,54,53,55,49,44,52,54,46,52,49,57,57,53,49,93,44,91,45,56,56,46,49,49,53,56,52,51,44,52,54,46,54,55,56,51,56,49,93,44,91,45,56,56,46,48,52,52,55,48,57,44,52,54,46,55,54,53,51,53,51,93,44,91,45,56,56,46,48,52,51,55,51,49,44,52,55,46,48,52,51,57,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,82,111,103,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,56,49,52,44,34,98,101,100,115,34,58,49,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,51,49,53,55,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,56,48,57,53,52,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,56,49,50,51,52,50,44,51,54,46,52,50,51,53,56,93,44,91,45,57,53,46,56,49,53,52,44,51,54,46,49,54,50,54,51,93,44,91,45,57,53,46,55,54,49,54,53,44,51,54,46,49,54,50,55,53,93,44,91,45,57,53,46,54,49,56,53,50,44,51,54,46,49,54,50,53,49,50,93,44,91,45,57,53,46,53,53,50,53,56,55,44,51,54,46,48,57,49,52,56,54,93,44,91,45,57,53,46,52,51,57,57,55,44,51,54,46,48,55,53,50,93,44,91,45,57,53,46,52,51,53,54,49,44,51,54,46,53,49,48,49,54,93,44,91,45,57,53,46,51,50,56,49,55,44,51,54,46,53,49,48,50,52,93,44,91,45,57,53,46,52,51,49,53,55,44,51,54,46,53,57,55,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,53,49,53,44,34,98,101,100,115,34,58,49,50,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,52,51,48,50,50,57,44,51,57,46,50,52,56,55,57,53,93,44,91,45,57,50,46,53,53,56,48,56,54,44,51,56,46,57,55,48,54,57,50,93,44,91,45,57,50,46,52,57,56,51,55,55,44,51,56,46,57,50,50,48,56,52,93,44,91,45,57,50,46,51,55,57,54,49,52,44,51,56,46,56,48,48,48,55,54,93,44,91,45,57,50,46,51,57,52,56,54,54,44,51,56,46,55,51,57,49,51,93,44,91,45,57,50,46,51,53,55,56,49,51,44,51,56,46,54,55,57,53,49,55,93,44,91,45,57,50,46,50,50,48,54,54,49,44,51,56,46,54,52,51,49,54,55,93,44,91,45,57,50,46,49,51,53,51,57,55,44,51,56,46,56,49,53,53,56,49,93,44,91,45,57,50,46,49,54,53,49,49,55,44,51,56,46,57,48,48,57,52,56,93,44,91,45,57,50,46,49,49,48,51,56,55,44,51,57,46,48,54,52,50,48,52,93,44,91,45,57,50,46,49,48,52,51,55,52,44,51,57,46,50,51,57,56,48,57,93,44,91,45,57,50,46,51,49,52,52,55,49,44,51,57,46,50,52,54,52,53,52,93,44,91,45,57,50,46,52,51,48,50,50,57,44,51,57,46,50,52,56,55,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,97,121,97,103,195,188,101,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,50,53,53,44,34,98,101,100,115,34,58,49,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,54,55,46,57,57,56,54,57,49,44,49,56,46,49,55,48,55,54,93,44,91,45,54,55,46,57,55,54,49,51,54,44,49,56,46,48,51,57,53,57,51,93,44,91,45,54,55,46,56,50,50,52,52,49,44,49,56,46,48,50,54,52,51,49,93,44,91,45,54,55,46,55,57,49,57,56,54,44,49,56,46,49,48,55,52,53,56,93,44,91,45,54,55,46,56,53,50,52,52,51,44,49,56,46,49,55,48,49,49,49,93,44,91,45,54,55,46,57,57,56,54,57,49,44,49,56,46,49,55,48,55,54,93,93,93,44,91,91,91,45,54,55,46,50,50,53,54,54,52,44,49,56,46,49,57,54,49,53,51,93,44,91,45,54,55,46,49,53,57,55,51,51,44,49,56,46,49,53,51,50,50,55,93,44,91,45,54,55,46,48,56,54,51,53,57,44,49,56,46,49,52,57,56,50,57,93,44,91,45,54,55,46,48,53,49,52,54,49,44,49,56,46,49,55,52,48,53,51,93,44,91,45,54,55,46,48,49,57,56,51,54,44,49,56,46,49,57,53,52,55,49,93,44,91,45,54,55,46,48,56,50,48,48,50,44,49,56,46,50,53,52,57,52,54,93,44,91,45,54,55,46,50,52,51,53,53,57,44,49,56,46,50,54,56,57,50,50,93,44,91,45,54,55,46,50,53,52,50,44,49,56,46,50,53,50,54,51,56,93,44,91,45,54,55,46,50,50,53,54,54,52,44,49,56,46,49,57,54,49,53,51,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,100,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,52,50,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,50,51,51,51,54,44,51,53,46,52,54,52,50,50,53,93,44,91,45,57,56,46,54,50,48,54,57,50,44,51,53,46,48,57,55,55,54,53,93,44,91,45,57,56,46,54,49,57,56,49,54,44,51,52,46,56,53,53,51,52,93,44,91,45,57,56,46,48,57,51,49,50,55,44,51,52,46,56,53,52,57,56,56,93,44,91,45,57,56,46,48,57,54,48,49,52,44,51,53,46,51,55,55,55,53,51,93,44,91,45,57,56,46,51,48,54,51,50,54,44,51,53,46,51,55,55,50,51,57,93,44,91,45,57,56,46,51,49,51,50,53,49,44,51,53,46,53,53,49,53,50,51,93,44,91,45,57,56,46,54,50,51,50,52,52,44,51,53,46,53,53,49,53,50,50,93,44,91,45,57,56,46,54,50,51,51,51,54,44,51,53,46,52,54,52,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,48,52,50,55,44,34,98,101,100,115,34,58,54,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,51,57,55,57,52,57,44,51,57,46,55,52,54,48,52,93,44,91,45,49,48,53,46,51,57,56,57,52,57,44,51,57,46,53,54,54,48,53,54,93,44,91,45,49,48,53,46,51,57,55,56,55,53,44,51,57,46,49,50,57,53,54,52,93,44,91,45,49,48,53,46,51,51,48,52,52,52,44,51,57,46,49,50,57,54,56,53,93,44,91,45,49,48,53,46,51,50,57,50,50,44,51,57,46,49,50,57,54,56,57,93,44,91,45,49,48,53,46,50,51,51,57,51,56,44,51,57,46,50,52,54,56,54,56,93,44,91,45,49,48,53,46,48,52,56,55,52,44,51,57,46,53,54,54,48,56,56,93,44,91,45,49,48,53,46,48,53,51,52,51,55,44,51,57,46,54,50,48,57,56,52,93,44,91,45,49,48,53,46,48,57,54,57,48,57,44,51,57,46,54,49,52,52,50,51,93,44,91,45,49,48,53,46,48,53,51,50,53,54,44,51,57,46,54,54,55,55,56,53,93,44,91,45,49,48,53,46,48,53,51,50,52,54,44,51,57,46,55,57,49,48,54,51,93,44,91,45,49,48,53,46,48,53,50,56,57,50,44,51,57,46,57,49,52,50,50,52,93,44,91,45,49,48,53,46,49,52,55,49,52,51,44,51,57,46,57,49,51,56,56,57,93,44,91,45,49,48,53,46,51,57,55,56,52,57,44,51,57,46,57,49,50,56,56,54,93,44,91,45,49,48,53,46,51,57,55,57,52,57,44,51,57,46,55,52,54,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,97,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,51,49,56,44,34,98,101,100,115,34,58,49,48,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,56,55,50,55,44,51,56,46,53,56,50,55,56,51,93,44,91,45,56,50,46,51,50,51,57,57,57,44,51,56,46,52,52,57,50,54,56,93,44,91,45,56,50,46,53,48,56,50,56,44,51,56,46,52,49,49,49,57,56,93,44,91,45,56,50,46,50,54,52,56,52,57,44,51,56,46,50,50,57,49,57,57,93,44,91,45,56,50,46,49,57,53,55,53,49,44,51,56,46,51,50,51,52,57,57,93,44,91,45,56,50,46,48,52,55,49,50,56,44,51,56,46,51,55,52,52,51,50,93,44,91,45,56,50,46,48,53,53,49,50,55,44,51,56,46,52,55,52,53,52,55,93,44,91,45,56,50,46,50,49,56,57,54,55,44,51,56,46,53,57,49,54,56,51,93,44,91,45,56,50,46,50,56,55,50,55,44,51,56,46,53,56,50,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,56,51,34,44,34,78,65,77,69,34,58,34,82,101,97,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,53,50,44,34,98,101,100,115,34,58,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,55,55,53,56,48,50,44,51,49,46,54,53,49,51,49,57,93,44,91,45,49,48,49,46,55,55,54,49,57,49,44,51,49,46,48,55,57,55,56,52,93,44,91,45,49,48,49,46,50,55,52,55,57,57,44,51,49,46,48,55,57,51,55,57,93,44,91,45,49,48,49,46,50,54,55,57,52,55,44,51,49,46,53,50,56,54,56,56,93,44,91,45,49,48,49,46,50,54,55,54,51,44,51,49,46,53,53,54,52,54,50,93,44,91,45,49,48,49,46,50,54,55,49,50,50,44,51,49,46,54,53,48,56,53,52,93,44,91,45,49,48,49,46,55,55,53,56,48,50,44,51,49,46,54,53,49,51,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,86,97,110,32,66,117,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,56,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,48,57,55,54,51,44,51,53,46,55,50,50,52,48,49,93,44,91,45,57,50,46,56,49,51,52,49,55,44,51,53,46,53,52,57,93,44,91,45,57,50,46,56,53,48,54,50,52,44,51,53,46,52,54,50,57,53,93,44,91,45,57,50,46,52,55,57,50,54,56,44,51,53,46,52,53,53,51,53,55,93,44,91,45,57,50,46,52,56,49,52,54,57,44,51,53,46,51,54,56,51,57,50,93,44,91,45,57,50,46,50,53,50,55,53,57,44,51,53,46,51,54,51,55,49,56,93,44,91,45,57,50,46,50,52,48,53,50,44,51,53,46,55,49,50,49,57,93,44,91,45,57,50,46,52,49,56,52,48,56,44,51,53,46,55,49,54,48,52,54,93,44,91,45,57,50,46,52,49,54,56,52,55,44,51,53,46,55,56,56,53,57,49,93,44,91,45,57,50,46,54,50,57,56,51,55,44,51,53,46,55,57,48,56,50,51,93,44,91,45,57,50,46,54,51,49,50,48,55,44,51,53,46,55,49,56,51,54,53,93,44,91,45,57,50,46,56,48,57,55,54,51,44,51,53,46,55,50,50,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,83,117,109,109,105,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,52,50,57,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,51,52,53,48,56,44,51,57,46,57,50,52,57,49,52,93,44,91,45,49,48,54,46,51,56,53,52,55,56,44,51,57,46,55,54,55,49,54,52,93,44,91,45,49,48,54,46,49,55,54,49,49,53,44,51,57,46,54,49,52,50,50,49,93,44,91,45,49,48,54,46,50,52,56,50,57,53,44,51,57,46,53,52,52,50,53,49,93,44,91,45,49,48,54,46,50,48,54,55,51,50,44,51,57,46,51,55,57,54,51,54,93,44,91,45,49,48,54,46,49,51,53,53,50,57,44,51,57,46,51,55,57,53,52,54,93,44,91,45,49,48,53,46,57,53,49,54,57,56,44,51,57,46,52,49,52,54,49,57,93,44,91,45,49,48,53,46,56,50,57,54,54,50,44,51,57,46,53,54,52,56,54,53,93,44,91,45,49,48,53,46,55,56,50,54,55,52,44,51,57,46,54,50,57,48,50,52,93,44,91,45,49,48,53,46,57,50,52,54,49,56,44,51,57,46,54,57,56,57,55,50,93,44,91,45,49,48,54,46,48,50,51,55,56,51,44,51,57,46,54,56,56,52,50,93,44,91,45,49,48,54,46,48,56,51,55,49,49,44,51,57,46,56,48,53,57,54,52,93,44,91,45,49,48,54,46,50,53,50,48,50,55,44,51,57,46,57,49,52,55,49,50,93,44,91,45,49,48,54,46,52,51,52,53,48,56,44,51,57,46,57,50,52,57,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,111,119,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,57,49,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,44,91,45,57,55,46,49,52,55,55,50,49,44,51,54,46,57,57,57,48,51,51,93,44,91,45,57,54,46,55,52,57,56,51,56,44,51,54,46,57,57,56,57,56,56,93,44,91,45,57,54,46,53,50,53,53,56,50,44,51,54,46,57,57,56,55,49,93,44,91,45,57,54,46,53,50,52,56,55,51,44,51,55,46,51,48,50,55,51,93,44,91,45,57,54,46,53,50,53,54,57,44,51,55,46,52,55,54,52,48,53,93,44,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,57,49,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,57,53,57,56,49,44,51,53,46,55,54,56,54,52,57,93,44,91,45,57,51,46,55,49,48,48,55,54,44,51,53,46,51,55,53,50,52,50,93,44,91,45,57,51,46,52,51,48,52,49,44,51,53,46,52,50,51,55,51,55,93,44,91,45,57,51,46,50,57,57,48,49,44,51,53,46,51,50,55,54,52,52,93,44,91,45,57,51,46,50,57,53,57,49,44,51,53,46,52,54,57,57,49,53,93,44,91,45,57,51,46,50,50,51,54,51,51,44,51,53,46,52,54,56,53,57,51,93,44,91,45,57,51,46,49,54,55,56,44,51,53,46,53,57,55,54,57,53,93,44,91,45,57,51,46,49,54,52,52,53,50,44,51,53,46,55,50,56,56,51,49,93,44,91,45,57,51,46,53,49,57,53,55,53,44,51,53,46,55,51,52,52,50,50,93,44,91,45,57,51,46,53,49,57,50,48,52,44,51,53,46,55,54,51,53,50,49,93,44,91,45,57,51,46,54,57,53,57,56,49,44,51,53,46,55,54,56,54,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,56,53,52,49,55,49,44,52,52,46,48,55,48,48,56,57,93,44,91,45,55,52,46,55,55,53,54,49,55,44,52,51,46,52,56,54,54,55,55,93,44,91,45,55,52,46,56,54,55,55,49,50,44,52,51,46,51,51,57,56,50,54,93,44,91,45,55,52,46,55,49,50,54,49,53,44,52,51,46,50,56,54,49,52,51,93,44,91,45,55,52,46,53,51,52,54,53,55,44,52,51,46,50,50,56,49,49,53,93,44,91,45,55,52,46,49,52,48,49,52,55,44,52,51,46,50,53,51,57,55,57,93,44,91,45,55,52,46,49,54,48,49,44,52,51,46,51,55,49,53,51,50,93,44,91,45,55,52,46,50,49,52,54,50,53,44,52,51,46,55,50,56,55,48,51,93,44,91,45,55,52,46,48,53,55,48,48,53,44,52,51,46,55,52,52,53,49,51,93,44,91,45,55,52,46,50,49,51,55,51,52,44,52,51,46,56,49,48,56,55,53,93,44,91,45,55,52,46,51,51,54,56,50,54,44,52,51,46,57,50,53,50,50,51,93,44,91,45,55,52,46,50,53,53,57,57,56,44,52,51,46,57,54,57,55,57,55,93,44,91,45,55,52,46,50,56,49,56,55,44,52,52,46,49,50,48,53,53,50,93,44,91,45,55,52,46,53,51,53,49,53,54,44,52,52,46,48,57,57,50,53,93,44,91,45,55,52,46,56,53,52,49,55,49,44,52,52,46,48,55,48,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,114,97,105,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,52,55,50,55,56,50,44,51,55,46,52,50,51,55,51,93,44,91,45,56,48,46,52,51,48,57,52,51,44,51,55,46,51,49,54,51,55,56,93,44,91,45,56,48,46,50,54,50,49,56,52,44,51,55,46,51,52,49,53,50,54,93,44,91,45,56,48,46,48,55,52,49,49,57,44,51,55,46,52,50,50,52,54,57,93,44,91,45,55,57,46,57,54,57,48,55,49,44,51,55,46,53,52,52,52,48,56,93,44,91,45,56,48,46,48,50,48,53,53,52,44,51,55,46,54,52,55,52,52,50,93,44,91,45,56,48,46,49,52,52,51,57,52,44,51,55,46,53,57,54,54,50,55,93,44,91,45,56,48,46,50,50,48,57,56,52,44,51,55,46,54,50,55,55,54,55,93,44,91,45,56,48,46,50,57,57,55,56,57,44,51,55,46,53,48,56,50,55,49,93,44,91,45,56,48,46,52,55,50,55,56,50,44,51,55,46,52,50,51,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,67,111,108,101,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,57,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,55,49,51,57,55,49,44,51,50,46,48,56,50,48,56,57,93,44,91,45,57,57,46,55,50,49,54,57,56,44,51,49,46,53,55,54,55,53,57,93,44,91,45,57,57,46,54,48,49,56,53,44,51,49,46,52,57,49,57,53,93,44,91,45,57,57,46,51,48,50,54,48,53,44,51,49,46,52,51,50,53,48,52,93,44,91,45,57,57,46,50,48,50,55,54,56,44,51,49,46,52,54,55,50,51,52,93,44,91,45,57,57,46,49,57,53,56,55,49,44,51,50,46,48,55,57,50,51,53,93,44,91,45,57,57,46,54,51,49,52,49,51,44,51,50,46,48,56,49,50,55,52,93,44,91,45,57,57,46,55,49,51,57,55,49,44,51,50,46,48,56,50,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,57,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,48,34,44,34,78,65,77,69,34,58,34,89,117,107,111,110,45,75,111,121,117,107,117,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,49,46,48,48,50,54,57,52,44,54,56,46,52,57,56,51,54,52,93,44,91,45,49,52,51,46,53,50,56,56,50,51,44,54,56,46,53,48,48,48,50,49,93,44,91,45,49,52,54,44,54,56,46,53,93,44,91,45,49,52,54,44,54,56,93,44,91,45,49,52,55,46,55,53,51,49,49,55,44,54,55,46,57,57,57,57,56,56,93,44,91,45,49,52,57,46,51,50,53,52,51,44,54,55,46,57,57,57,57,57,57,93,44,91,45,49,53,48,46,56,57,48,48,50,56,44,54,56,46,48,48,48,48,48,52,93,44,91,45,49,53,49,46,57,48,48,50,55,54,44,54,56,46,48,48,48,48,48,55,93,44,91,45,49,53,51,46,52,48,52,49,53,50,44,54,56,93,44,91,45,49,53,53,46,51,49,56,55,52,52,44,54,56,46,48,48,48,48,51,50,93,44,91,45,49,53,53,46,51,54,56,57,57,57,44,54,55,46,55,55,53,50,49,54,93,44,91,45,49,53,52,46,55,52,56,57,51,57,44,54,55,46,53,49,53,52,57,53,93,44,91,45,49,53,52,46,55,52,56,57,48,52,44,54,55,46,50,53,53,55,53,51,93,44,91,45,49,53,52,46,51,48,51,49,49,44,54,55,46,50,53,53,55,53,57,93,44,91,45,49,53,52,46,49,52,54,51,49,52,44,54,55,46,49,54,57,49,55,56,93,44,91,45,49,53,52,46,49,52,54,50,50,49,44,54,54,46,56,50,50,56,52,51,93,44,91,45,49,53,52,46,50,49,48,51,48,50,44,54,54,46,55,51,54,50,53,53,93,44,91,45,49,53,52,46,56,54,48,52,52,54,44,54,54,46,55,51,54,50,52,50,93,44,91,45,49,53,52,46,56,54,48,52,51,49,44,54,54,46,53,54,51,48,54,52,93,44,91,45,49,53,53,46,53,49,48,53,56,53,44,54,54,46,53,54,51,48,53,49,93,44,91,45,49,53,53,46,53,53,52,57,57,51,44,54,54,46,51,48,51,50,55,52,93,44,91,45,49,53,53,46,57,56,50,52,57,57,44,54,54,46,51,48,51,50,54,56,93,44,91,45,49,53,53,46,57,56,50,53,48,52,44,54,54,46,51,56,57,56,54,93,44,91,45,49,53,54,46,49,57,54,50,50,52,44,54,54,46,52,55,54,53,56,50,93,44,91,45,49,53,54,46,54,50,51,55,55,44,54,54,46,52,55,54,52,52,50,93,44,91,45,49,53,54,46,54,50,51,55,53,55,44,54,54,46,51,48,51,50,53,57,93,44,91,45,49,53,55,46,48,53,49,50,54,54,44,54,54,46,51,48,51,50,53,52,93,44,91,45,49,53,55,46,48,53,49,50,56,52,44,54,54,46,52,55,54,52,51,56,93,44,91,45,49,53,55,46,57,48,54,51,49,44,54,54,46,52,55,54,52,50,52,93,44,91,45,49,53,55,46,57,48,54,50,57,53,44,54,54,46,49,51,48,48,52,57,93,44,91,45,49,53,56,46,57,55,50,49,56,53,44,54,54,46,49,51,48,48,50,55,93,44,91,45,49,53,56,46,57,55,50,49,55,53,44,54,53,46,57,53,54,56,52,57,93,44,91,45,49,53,57,46,54,48,52,56,49,51,44,54,53,46,57,53,54,56,51,93,44,91,45,49,53,57,46,53,57,51,53,48,54,44,54,53,46,53,50,51,56,51,53,93,44,91,45,49,53,57,46,51,56,53,53,55,56,44,54,53,46,53,50,51,56,51,53,93,44,91,45,49,53,57,46,51,55,55,51,54,53,44,54,53,46,50,54,52,48,51,51,93,44,91,45,49,53,57,46,53,56,50,55,51,54,44,54,53,46,50,54,52,48,50,54,93,44,91,45,49,53,57,46,53,55,50,49,55,51,44,54,52,46,57,49,55,53,57,55,93,44,91,45,49,53,57,46,55,55,52,57,50,49,44,54,52,46,57,49,55,53,54,53,93,44,91,45,49,53,57,46,55,55,52,56,57,55,44,54,52,46,55,52,52,51,56,50,93,44,91,45,49,53,57,46,57,54,50,50,57,44,54,52,46,55,52,52,51,55,55,93,44,91,45,49,53,57,46,57,52,55,50,56,56,44,54,52,46,48,53,49,52,53,57,93,44,91,45,49,53,57,46,55,51,55,52,55,53,44,54,52,46,48,53,49,52,53,57,93,44,91,45,49,53,57,46,55,51,55,52,53,49,44,54,51,46,55,57,49,53,57,49,93,44,91,45,49,53,57,46,57,51,50,55,51,49,44,54,51,46,55,57,49,53,56,57,93,44,91,45,49,54,48,46,49,49,49,52,57,56,44,54,51,46,55,48,52,57,55,50,93,44,91,45,49,54,48,46,49,49,49,53,50,50,44,54,51,46,54,49,56,51,53,49,93,44,91,45,49,54,48,46,52,57,55,51,56,49,44,54,51,46,54,49,56,51,52,51,93,44,91,45,49,54,48,46,54,57,48,50,57,52,44,54,51,46,53,51,49,54,56,57,93,44,91,45,49,54,48,46,54,54,55,51,54,49,44,54,51,46,50,55,49,56,52,53,93,44,91,45,49,54,48,46,56,53,56,48,48,52,44,54,51,46,50,55,49,56,51,56,93,44,91,45,49,54,48,46,56,53,55,57,57,44,54,51,46,48,49,49,57,53,51,93,44,91,45,49,54,48,46,57,57,54,50,49,53,44,54,50,46,56,57,56,57,51,54,93,44,91,45,49,54,48,46,57,57,54,50,48,49,44,54,50,46,53,53,50,52,50,52,93,44,91,45,49,54,49,46,48,52,56,49,55,54,44,54,50,46,53,53,50,52,49,93,44,91,45,49,54,49,46,48,52,56,49,54,53,44,54,50,46,50,48,53,56,54,57,93,44,91,45,49,54,48,46,57,49,53,57,54,52,44,54,50,46,50,48,53,56,54,54,93,44,91,45,49,54,48,46,57,49,53,57,53,51,44,54,49,46,57,52,53,57,52,51,93,44,91,45,49,54,48,46,53,51,52,54,55,49,44,54,49,46,57,52,53,57,52,93,44,91,45,49,53,57,46,50,54,53,48,51,55,44,54,49,46,57,52,53,57,53,55,93,44,91,45,49,53,57,46,50,54,53,48,51,53,44,54,50,46,48,51,50,53,57,56,93,44,91,45,49,53,56,46,53,51,49,51,53,49,44,54,50,46,48,51,50,54,50,93,44,91,45,49,53,56,46,53,51,49,51,54,49,44,54,50,46,49,49,57,50,54,52,93,44,91,45,49,53,55,46,48,54,51,56,54,52,44,54,50,46,49,49,57,50,55,49,93,44,91,45,49,53,55,46,48,54,51,56,53,50,44,54,50,46,48,51,50,54,51,52,93,44,91,45,49,53,53,46,52,57,55,54,52,53,44,54,50,46,48,51,50,54,53,57,93,44,91,45,49,53,51,46,55,54,49,56,55,53,44,54,50,46,48,51,50,54,56,57,93,44,91,45,49,53,51,46,55,54,49,56,55,49,44,54,50,46,49,49,57,51,51,53,93,44,91,45,49,53,51,46,51,57,53,48,48,57,44,54,50,46,49,49,57,51,52,55,93,44,91,45,49,53,51,46,51,57,53,48,48,57,44,54,50,46,50,48,53,57,57,93,44,91,45,49,53,51,46,48,55,48,49,50,51,44,54,50,46,50,48,54,48,49,53,93,44,91,45,49,53,50,46,57,57,57,56,51,57,44,54,50,46,50,57,50,54,50,49,93,44,91,45,49,53,50,46,57,57,55,54,52,55,44,54,50,46,55,50,55,52,48,49,93,44,91,45,49,53,50,46,52,50,56,48,56,52,44,54,51,46,49,56,51,49,55,49,93,44,91,45,49,53,50,46,52,50,56,48,57,56,44,54,51,46,51,48,52,50,53,57,93,44,91,45,49,53,50,46,56,49,48,57,51,49,44,54,51,46,51,52,55,53,54,51,93,44,91,45,49,53,50,46,56,55,51,51,57,50,44,54,51,46,52,55,55,53,93,44,91,45,49,53,50,46,56,55,51,52,49,44,54,51,46,54,53,48,55,52,53,93,44,91,45,49,53,50,46,50,50,56,52,51,57,44,54,51,46,54,53,48,55,54,93,44,91,45,49,53,50,46,50,50,57,50,53,54,44,54,51,46,56,50,52,48,48,49,93,44,91,45,49,53,50,46,48,53,53,49,51,50,44,54,51,46,56,50,52,48,48,54,93,44,91,45,49,53,50,46,48,53,53,55,53,56,44,54,51,46,57,57,55,50,52,50,93,44,91,45,49,53,49,46,55,57,51,57,55,54,44,54,52,46,48,54,57,52,51,93,44,91,45,49,53,49,46,50,56,49,57,57,53,44,54,51,46,57,57,55,50,54,53,93,44,91,45,49,53,48,46,55,50,57,51,56,53,44,54,52,46,51,53,56,49,55,51,93,44,91,45,49,52,57,46,49,51,50,54,53,51,44,54,52,46,51,53,56,50,49,52,93,44,91,45,49,52,56,46,48,52,54,54,57,54,44,54,52,46,51,52,51,56,48,50,93,44,91,45,49,52,56,46,53,53,48,55,52,50,44,54,52,46,54,49,55,50,48,56,93,44,91,45,49,52,56,46,54,52,56,50,48,55,44,54,52,46,53,56,53,51,55,49,93,44,91,45,49,52,56,46,54,54,49,49,57,57,44,54,53,46,50,48,57,56,55,53,93,44,91,45,49,52,55,46,53,53,55,55,55,49,44,54,53,46,50,48,57,56,57,53,93,44,91,45,49,52,55,46,51,49,54,56,48,57,44,54,53,46,50,55,53,50,51,50,93,44,91,45,49,52,54,46,57,48,51,49,52,50,44,54,53,46,50,56,51,51,55,53,93,44,91,45,49,52,54,46,53,52,56,54,53,52,44,54,53,46,51,52,53,48,48,51,93,44,91,45,49,52,54,46,50,48,53,55,48,52,44,54,53,46,52,53,50,57,57,54,93,44,91,45,49,52,54,46,48,48,55,56,57,57,44,54,53,46,51,53,57,52,51,52,93,44,91,45,49,52,54,46,48,56,49,48,50,56,44,54,53,46,50,52,57,57,52,50,93,44,91,45,49,52,53,46,54,51,51,55,56,57,44,54,53,46,49,53,51,55,57,49,93,44,91,45,49,52,53,46,53,49,57,52,51,54,44,54,53,46,48,54,50,54,56,50,93,44,91,45,49,52,53,46,50,50,53,57,52,52,44,54,53,46,48,54,57,50,49,54,93,44,91,45,49,52,52,46,57,56,51,53,49,52,44,54,53,46,49,51,54,57,56,56,93,44,91,45,49,52,52,46,52,54,48,48,50,44,54,53,46,48,54,48,55,49,49,93,44,91,45,49,52,52,46,51,51,49,51,55,55,44,54,53,46,49,48,55,55,48,55,93,44,91,45,49,52,51,46,57,55,51,54,51,57,44,54,53,46,49,49,57,51,48,52,93,44,91,45,49,52,51,46,57,50,49,48,57,52,44,54,53,46,48,53,56,55,56,93,44,91,45,49,52,52,46,49,48,52,55,52,52,44,54,52,46,56,52,57,50,51,49,93,44,91,45,49,52,52,46,48,54,57,48,50,57,44,54,52,46,54,56,51,53,54,50,93,44,91,45,49,52,51,46,55,53,50,48,57,49,44,54,52,46,54,52,55,54,49,56,93,44,91,45,49,52,51,46,53,51,51,55,52,56,44,54,52,46,55,55,56,55,53,53,93,44,91,45,49,52,51,46,52,54,57,54,54,55,44,54,52,46,57,56,50,49,56,57,93,44,91,45,49,52,51,46,48,52,52,48,53,53,44,54,53,46,49,51,50,51,50,55,93,44,91,45,49,52,50,46,56,54,52,51,52,52,44,54,53,46,49,52,48,51,56,55,93,44,91,45,49,52,50,46,55,51,49,57,44,54,53,46,50,51,51,54,51,57,93,44,91,45,49,52,50,46,54,54,51,55,55,50,44,54,53,46,51,55,49,56,55,54,93,44,91,45,49,52,50,46,52,56,55,51,48,49,44,54,53,46,51,55,49,56,57,56,93,44,91,45,49,52,50,46,49,52,50,57,50,50,44,54,53,46,52,54,51,49,55,52,93,44,91,45,49,52,49,46,56,53,53,55,54,49,44,54,53,46,52,52,53,55,56,54,93,44,91,45,49,52,49,46,55,56,57,48,53,44,54,53,46,53,48,49,53,52,54,93,44,91,45,49,52,49,46,51,56,55,56,52,50,44,54,53,46,54,49,52,51,57,53,93,44,91,45,49,52,49,46,51,51,54,50,50,52,44,54,53,46,55,49,49,54,49,52,93,44,91,45,49,52,49,46,48,48,50,52,55,50,44,54,53,46,56,51,57,52,50,49,93,44,91,45,49,52,49,46,48,48,50,53,57,54,44,54,54,46,53,49,52,50,55,93,44,91,45,49,52,49,46,48,48,50,54,57,51,44,54,55,46,54,55,49,57,50,57,93,44,91,45,49,52,49,46,48,48,50,54,57,52,44,54,56,46,52,57,56,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,78,97,118,97,106,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,55,48,53,44,34,98,101,100,115,34,58,49,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,55,53,48,54,57,44,51,55,46,48,48,51,48,48,55,93,44,91,45,49,49,48,46,55,53,48,54,57,55,44,51,53,46,56,50,48,53,56,57,93,44,91,45,49,49,48,46,55,53,48,54,57,51,44,51,53,46,49,52,48,51,48,57,93,44,91,45,49,49,48,46,55,53,48,54,55,56,44,51,52,46,50,54,51,51,49,52,93,44,91,45,49,49,48,46,55,53,48,54,55,50,44,51,52,46,48,48,48,48,52,56,93,44,91,45,49,49,48,46,48,48,48,54,54,44,51,52,46,48,48,48,48,52,54,93,44,91,45,49,49,48,46,48,48,48,54,52,57,44,51,51,46,53,55,54,57,51,93,44,91,45,49,48,57,46,56,57,49,54,55,54,44,51,51,46,53,54,55,56,55,52,93,44,91,45,49,48,57,46,56,53,57,50,55,52,44,51,51,46,55,55,55,54,56,51,93,44,91,45,49,48,57,46,56,52,56,50,52,54,44,51,52,46,52,55,51,52,48,49,93,44,91,45,49,48,57,46,56,54,52,57,56,57,44,51,52,46,53,54,54,56,57,51,93,44,91,45,49,48,57,46,56,52,52,54,50,52,44,51,52,46,56,50,50,53,54,50,93,44,91,45,49,48,57,46,56,52,51,55,54,52,44,51,53,46,53,49,55,56,55,53,93,44,91,45,49,48,57,46,56,50,54,57,54,52,44,51,53,46,54,54,50,56,56,55,93,44,91,45,49,49,48,46,48,48,48,54,55,52,44,51,53,46,54,54,51,48,56,55,93,44,91,45,49,49,48,46,48,48,48,54,55,54,44,51,54,46,52,52,53,50,56,52,93,44,91,45,49,49,48,46,48,48,48,54,56,56,44,51,54,46,57,57,56,51,52,57,93,44,91,45,49,49,48,46,55,53,48,54,57,44,51,55,46,48,48,51,48,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,51,50,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,52,53,49,57,49,44,51,49,46,55,49,55,53,50,52,93,44,91,45,57,48,46,50,55,57,57,53,51,44,51,49,46,54,57,57,56,54,53,93,44,91,45,57,48,46,55,51,54,56,50,52,44,51,49,46,54,57,56,52,57,49,93,44,91,45,57,48,46,55,51,55,51,51,44,51,49,46,54,49,49,49,50,52,93,44,91,45,57,48,46,54,51,51,50,51,49,44,51,49,46,54,49,49,52,48,57,93,44,91,45,57,48,46,54,51,51,51,48,50,44,51,49,46,51,52,57,51,48,54,93,44,91,45,57,48,46,53,52,56,49,57,57,44,51,49,46,51,52,57,53,55,52,93,44,91,45,57,48,46,50,54,48,51,57,49,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,50,52,51,56,57,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,50,52,53,49,57,49,44,51,49,46,55,49,55,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,53,55,34,44,34,78,65,77,69,34,58,34,79,99,104,105,108,116,114,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,52,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,56,53,55,49,54,44,51,54,46,48,53,55,53,55,50,93,44,91,45,49,48,48,46,53,52,54,55,50,52,44,51,54,46,48,53,54,53,51,54,93,44,91,45,49,48,48,46,53,52,54,49,52,53,44,51,54,46,52,57,57,51,52,51,93,44,91,45,49,48,48,46,57,53,52,49,53,51,44,51,54,46,52,57,57,57,49,54,93,44,91,45,49,48,49,46,48,56,53,49,53,54,44,51,54,46,52,57,57,50,52,52,93,44,91,45,49,48,49,46,48,56,53,55,49,54,44,51,54,46,48,53,55,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,67,114,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,55,54,55,50,52,54,44,51,49,46,54,53,49,55,49,52,93,44,91,45,49,48,50,46,55,54,55,51,54,53,44,51,49,46,50,57,51,56,48,51,93,44,91,45,49,48,50,46,54,55,51,50,52,52,44,51,49,46,51,50,56,49,48,53,93,44,91,45,49,48,50,46,52,51,48,49,50,51,44,51,49,46,49,57,51,57,49,56,93,44,91,45,49,48,50,46,51,56,56,56,48,52,44,51,49,46,48,56,55,49,53,54,93,44,91,45,49,48,50,46,51,48,49,50,49,50,44,51,49,46,48,56,54,50,49,50,93,44,91,45,49,48,50,46,51,49,56,48,53,44,51,49,46,54,53,49,51,50,55,93,44,91,45,49,48,50,46,55,54,55,50,52,54,44,51,49,46,54,53,49,55,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,105,103,32,72,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,54,50,49,51,49,53,44,52,53,46,48,48,48,51,54,49,93,44,91,45,49,48,56,46,53,57,50,50,57,54,44,52,52,46,56,55,49,52,52,52,93,44,91,45,49,48,56,46,53,53,48,53,54,50,44,52,52,46,49,54,56,52,53,53,93,44,91,45,49,48,55,46,49,52,54,56,48,56,44,52,52,46,49,54,53,54,54,54,93,44,91,45,49,48,55,46,49,52,53,48,48,49,44,52,52,46,51,50,52,48,48,52,93,44,91,45,49,48,55,46,50,48,50,48,51,56,44,52,52,46,52,52,54,51,48,53,93,44,91,45,49,48,55,46,51,54,57,54,50,49,44,52,52,46,53,53,57,56,51,55,93,44,91,45,49,48,55,46,53,50,56,50,55,57,44,52,52,46,54,54,53,53,56,52,93,44,91,45,49,48,55,46,55,52,49,53,52,51,44,52,52,46,55,49,52,51,53,50,93,44,91,45,49,48,55,46,56,51,49,54,50,50,44,52,52,46,55,57,57,55,56,55,93,44,91,45,49,48,55,46,57,49,49,53,50,51,44,52,53,46,48,48,48,54,55,56,93,44,91,45,49,48,56,46,50,52,57,52,49,50,44,52,52,46,57,57,57,57,48,52,93,44,91,45,49,48,56,46,54,50,49,51,49,53,44,52,53,46,48,48,48,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,72,105,99,107,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,54,55,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,49,54,55,54,44,51,53,46,56,51,56,55,53,93,44,91,45,56,55,46,55,52,51,55,53,44,51,53,46,54,54,51,57,53,50,93,44,91,45,56,55,46,54,53,56,49,56,57,44,51,53,46,54,48,57,51,52,57,93,44,91,45,56,55,46,53,54,56,56,51,49,44,51,53,46,54,53,50,50,57,54,93,44,91,45,56,55,46,52,53,57,53,56,55,44,51,53,46,54,49,53,49,50,52,93,44,91,45,56,55,46,51,51,57,50,51,50,44,51,53,46,54,53,57,49,49,93,44,91,45,56,55,46,50,51,52,49,52,51,44,51,53,46,55,50,52,54,57,49,93,44,91,45,56,55,46,50,49,53,48,57,57,44,51,53,46,56,53,48,54,53,49,93,44,91,45,56,55,46,50,48,52,50,52,50,44,51,53,46,57,53,57,49,56,54,93,44,91,45,56,55,46,53,51,52,53,51,44,51,53,46,57,57,51,48,55,52,93,44,91,45,56,55,46,55,48,54,57,54,44,51,53,46,57,48,53,56,56,52,93,44,91,45,56,55,46,55,49,54,55,54,44,51,53,46,56,51,56,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,84,117,110,105,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,55,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,48,55,57,57,49,44,51,52,46,56,51,50,57,55,93,44,91,45,57,48,46,53,49,55,49,54,56,44,51,52,46,54,51,48,57,50,56,93,44,91,45,57,48,46,53,56,51,50,50,52,44,51,52,46,54,52,49,51,56,57,93,44,91,45,57,48,46,53,54,57,51,52,55,44,51,52,46,53,50,52,56,54,55,93,44,91,45,57,48,46,51,57,57,52,57,56,44,51,52,46,52,50,51,56,48,55,93,44,91,45,57,48,46,51,48,52,51,49,55,44,51,52,46,53,48,57,54,50,49,93,44,91,45,57,48,46,49,57,56,53,51,54,44,51,52,46,53,49,49,48,56,56,93,44,91,45,57,48,46,49,57,56,54,51,49,44,51,52,46,53,53,52,52,50,53,93,44,91,45,57,48,46,50,52,51,57,50,52,44,51,52,46,54,48,50,49,53,93,44,91,45,57,48,46,50,48,48,49,57,57,44,51,52,46,55,50,52,52,49,56,93,44,91,45,57,48,46,50,48,50,49,50,54,44,51,52,46,56,54,48,51,55,52,93,44,91,45,57,48,46,51,48,52,53,51,50,44,51,52,46,56,54,48,53,56,56,93,44,91,45,57,48,46,52,48,55,57,57,49,44,51,52,46,56,51,50,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,53,52,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,51,50,50,52,44,52,48,46,53,55,49,57,48,49,93,44,91,45,57,52,46,50,49,52,50,55,56,44,52,48,46,51,56,52,50,53,52,93,44,91,45,57,52,46,50,49,54,54,57,54,44,52,48,46,49,51,54,54,50,54,93,44,91,45,57,51,46,55,54,52,48,50,49,44,52,48,46,49,51,50,57,48,57,93,44,91,45,57,51,46,55,54,51,51,50,52,44,52,48,46,50,54,51,57,56,56,93,44,91,45,57,51,46,55,55,52,51,52,52,44,52,48,46,53,55,55,53,52,56,93,44,91,45,57,52,46,48,49,53,52,57,50,44,52,48,46,53,55,51,57,49,52,93,44,91,45,57,52,46,50,51,50,50,52,44,52,48,46,53,55,49,57,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,97,110,195,179,118,97,110,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,49,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,49,57,50,55,56,44,49,56,46,52,48,50,57,57,51,93,44,91,45,54,53,46,57,49,56,53,51,53,44,49,56,46,50,55,48,49,51,93,44,91,45,54,53,46,56,53,50,54,49,54,44,49,56,46,50,53,52,57,55,50,93,44,91,45,54,53,46,56,51,54,51,56,55,44,49,56,46,50,55,53,50,52,54,93,44,91,45,54,53,46,56,54,55,52,52,55,44,49,56,46,51,55,56,49,57,56,93,44,91,45,54,53,46,57,49,57,50,55,56,44,49,56,46,52,48,50,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,114,116,104,111,108,111,109,101,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,56,57,51,44,34,98,101,100,115,34,58,50,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,56,53,54,48,49,44,51,57,46,51,52,52,49,56,57,93,44,91,45,56,54,46,48,56,48,50,55,50,44,51,57,46,48,53,48,50,55,93,44,91,45,56,53,46,56,54,48,53,55,51,44,51,57,46,48,52,48,57,49,93,44,91,45,56,53,46,55,57,56,56,48,52,44,51,57,46,48,54,56,53,51,54,93,44,91,45,56,53,46,54,56,54,55,56,51,44,51,57,46,49,51,48,56,53,57,93,44,91,45,56,53,46,54,56,52,53,49,53,44,51,57,46,51,53,48,48,52,57,93,44,91,45,56,53,46,57,53,50,48,48,53,44,51,57,46,51,52,55,51,55,51,93,44,91,45,56,54,46,48,56,53,54,48,49,44,51,57,46,51,52,52,49,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,51,34,44,34,78,65,77,69,34,58,34,80,97,117,108,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,56,52,48,44,34,98,101,100,115,34,58,49,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,50,50,55,52,50,44,51,52,46,48,56,50,52,57,55,93,44,91,45,56,52,46,57,55,56,54,56,51,44,51,51,46,57,53,49,51,57,51,93,44,91,45,56,53,46,48,53,48,51,49,44,51,51,46,57,48,52,52,56,56,93,44,91,45,56,53,46,48,51,55,57,50,54,44,51,51,46,56,49,49,57,52,50,93,44,91,45,56,52,46,57,48,49,54,56,56,44,51,51,46,55,56,48,55,48,51,93,44,91,45,56,52,46,55,50,52,49,51,57,44,51,51,46,56,48,54,49,55,93,44,91,45,56,52,46,55,51,55,56,51,54,44,51,52,46,48,55,57,51,57,57,93,44,91,45,56,52,46,57,50,50,55,52,50,44,51,52,46,48,56,50,52,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,54,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,57,51,49,50,44,51,57,46,50,53,52,50,51,53,93,44,91,45,56,52,46,48,53,50,55,48,57,44,51,56,46,55,55,49,50,50,54,93,44,91,45,56,51,46,57,48,51,57,48,49,44,51,56,46,55,54,56,49,56,50,93,44,91,45,56,51,46,55,48,53,51,49,49,44,51,56,46,54,51,57,56,53,51,93,44,91,45,56,51,46,54,55,51,48,49,56,44,51,57,46,48,50,48,52,51,93,44,91,45,56,51,46,56,55,50,50,49,52,44,51,57,46,48,50,49,51,48,52,93,44,91,45,56,51,46,56,54,53,54,55,57,44,51,57,46,50,52,55,51,51,51,93,44,91,45,56,51,46,57,57,51,49,50,44,51,57,46,50,53,52,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,52,52,48,44,34,98,101,100,115,34,58,50,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,57,53,49,50,52,44,51,54,46,51,48,50,50,55,56,93,44,91,45,56,53,46,54,51,52,49,53,56,44,51,54,46,50,49,51,51,52,54,93,44,91,45,56,53,46,55,56,48,49,52,56,44,51,54,46,50,51,56,48,49,49,93,44,91,45,56,53,46,56,48,55,52,49,53,44,51,54,46,49,51,49,53,56,50,93,44,91,45,56,53,46,54,52,52,54,48,52,44,51,54,46,48,49,53,48,53,51,93,44,91,45,56,53,46,53,48,55,54,55,55,44,51,54,46,48,56,50,48,49,50,93,44,91,45,56,53,46,51,53,54,54,49,57,44,51,54,46,48,52,53,56,57,51,93,44,91,45,56,53,46,50,54,52,50,48,54,44,51,53,46,57,55,57,49,53,52,93,44,91,45,56,53,46,50,51,53,55,53,55,44,51,54,46,49,48,53,55,53,50,93,44,91,45,56,53,46,49,48,48,50,49,51,44,51,54,46,49,51,56,53,54,49,93,44,91,45,56,53,46,49,49,57,53,56,51,44,51,54,46,49,52,52,55,49,57,93,44,91,45,56,53,46,52,49,57,52,51,50,44,51,54,46,50,51,54,49,52,53,93,44,91,45,56,53,46,52,57,53,49,50,52,44,51,54,46,51,48,50,50,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,87,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,48,51,52,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,50,51,51,56,57,50,44,52,56,46,53,52,54,51,51,57,93,44,91,45,49,48,49,46,57,55,51,50,56,50,44,52,56,46,53,52,54,52,56,53,93,44,91,45,49,48,49,46,57,50,50,50,51,55,44,52,56,46,51,55,50,51,51,93,44,91,45,49,48,49,46,57,50,50,49,50,51,44,52,56,46,48,50,51,49,55,51,93,44,91,45,49,48,49,46,56,55,49,56,54,50,44,52,55,46,56,52,55,53,56,57,93,44,91,45,49,48,48,46,57,55,49,49,53,56,44,52,55,46,56,52,56,54,57,54,93,44,91,45,49,48,49,46,48,49,53,48,50,52,44,52,56,46,48,50,50,55,51,57,93,44,91,45,49,48,49,46,48,49,52,50,51,50,44,52,56,46,51,55,49,52,51,50,93,44,91,45,49,48,49,46,48,53,57,56,51,51,44,52,56,46,52,53,56,52,52,56,93,44,91,45,49,48,49,46,56,52,50,56,52,49,44,52,56,46,52,53,57,52,51,57,93,44,91,45,49,48,49,46,56,52,50,50,52,52,44,52,56,46,55,50,48,48,54,52,93,44,91,45,49,48,50,46,48,50,49,52,50,56,44,52,56,46,55,50,48,50,56,51,93,44,91,45,49,48,50,46,48,50,49,54,52,51,44,52,56,46,56,48,55,49,48,56,93,44,91,45,49,48,50,46,49,53,50,49,54,52,44,52,56,46,56,48,55,50,93,44,91,45,49,48,50,46,50,51,51,54,44,52,56,46,55,50,48,50,57,93,44,91,45,49,48,50,46,50,51,51,56,57,50,44,52,56,46,53,52,54,51,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,87,111,114,99,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,50,50,56,48,44,34,98,101,100,115,34,58,50,52,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,51,49,52,50,53,51,44,52,50,46,51,52,51,54,56,56,93,44,91,45,55,50,46,50,50,49,50,49,56,44,52,50,46,50,52,53,50,53,50,93,44,91,45,55,50,46,49,51,53,48,49,49,44,52,50,46,49,54,49,55,56,52,93,44,91,45,55,50,46,49,51,53,55,49,53,44,52,50,46,48,51,48,50,50,50,93,44,91,45,55,50,46,49,48,50,49,55,44,52,50,46,48,50,56,56,54,57,93,44,91,45,55,49,46,55,57,57,49,56,56,44,52,50,46,48,48,56,48,53,51,93,44,91,45,55,49,46,52,57,56,50,53,57,44,52,50,46,48,49,55,50,55,50,93,44,91,45,55,49,46,52,55,56,49,49,57,44,52,50,46,49,53,54,55,56,50,93,44,91,45,55,49,46,53,56,50,57,49,44,52,50,46,49,57,53,53,53,57,93,44,91,45,55,49,46,53,56,53,50,49,44,52,50,46,51,49,48,57,53,50,93,44,91,45,55,49,46,53,51,49,51,55,55,44,52,50,46,53,50,48,51,53,50,93,44,91,45,55,49,46,54,54,52,54,48,49,44,52,50,46,54,49,49,53,57,56,93,44,91,45,55,49,46,56,52,52,56,52,51,44,52,50,46,54,51,55,57,56,53,93,44,91,45,55,49,46,56,57,56,55,55,51,44,52,50,46,55,49,49,51,49,50,93,44,91,45,55,49,46,57,50,56,57,57,51,44,52,50,46,55,49,50,49,48,50,93,44,91,45,55,50,46,50,56,51,48,52,53,44,52,50,46,55,50,49,54,49,53,93,44,91,45,55,50,46,50,55,54,52,51,52,44,52,50,46,53,55,55,51,55,52,93,44,91,45,55,50,46,51,49,52,50,53,51,44,52,50,46,51,52,51,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,51,48,55,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,50,48,50,50,55,44,52,48,46,53,48,52,48,55,55,93,44,91,45,56,51,46,56,56,48,48,51,57,44,52,48,46,53,51,56,54,57,52,93,44,91,45,56,52,46,48,48,50,51,55,50,44,52,48,46,52,56,51,49,49,53,93,44,91,45,56,52,46,48,49,52,55,54,51,44,52,48,46,50,55,51,52,53,57,93,44,91,45,56,51,46,53,53,49,51,51,56,44,52,48,46,50,50,57,51,55,93,44,91,45,56,51,46,53,50,48,50,50,55,44,52,48,46,53,48,52,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,75,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,48,55,53,44,34,98,101,100,115,34,58,49,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,53,55,51,49,57,52,44,51,54,46,52,56,56,56,51,53,93,44,91,45,49,49,57,46,54,54,54,50,57,44,51,54,46,52,49,56,57,54,93,44,91,45,49,49,57,46,57,53,57,50,50,55,44,51,54,46,52,48,48,57,55,53,93,44,91,45,49,49,57,46,57,53,57,50,49,44,51,54,46,49,56,49,52,48,51,93,44,91,45,49,50,48,46,51,49,53,48,54,56,44,51,53,46,57,48,55,49,56,54,93,44,91,45,49,50,48,46,50,49,51,57,55,57,44,51,53,46,55,56,57,50,55,54,93,44,91,45,49,50,48,46,49,57,52,49,52,54,44,51,53,46,55,56,57,50,48,52,93,44,91,45,49,49,57,46,53,51,56,49,49,54,44,51,53,46,55,56,57,53,54,55,93,44,91,45,49,49,57,46,53,50,57,51,53,56,44,51,54,46,50,54,57,56,53,93,44,91,45,49,49,57,46,52,55,52,56,57,50,44,51,54,46,52,48,48,57,53,51,93,44,91,45,49,49,57,46,53,55,51,49,57,52,44,51,54,46,52,56,56,56,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,83,97,110,32,68,105,101,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,48,50,56,51,51,44,34,98,101,100,115,34,58,54,56,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,54,49,49,48,56,49,44,51,51,46,51,51,51,57,57,50,93,44,91,45,49,49,55,46,52,51,53,53,54,51,44,51,51,46,49,55,55,53,49,50,93,44,91,45,49,49,55,46,51,50,51,50,55,57,44,51,50,46,57,48,51,48,54,52,93,44,91,45,49,49,55,46,51,50,48,57,51,57,44,51,50,46,54,56,57,56,52,55,93,44,91,45,49,49,55,46,50,50,51,51,48,50,44,51,50,46,54,50,49,50,51,56,93,44,91,45,49,49,55,46,50,48,52,57,49,55,44,51,50,46,53,50,56,56,51,50,93,44,91,45,49,49,54,46,49,48,54,49,54,56,44,51,50,46,54,49,56,52,56,93,44,91,45,49,49,54,46,49,48,51,50,53,50,44,51,51,46,48,55,52,54,55,93,44,91,45,49,49,54,46,48,56,53,49,54,53,44,51,51,46,52,50,53,57,51,50,93,44,91,45,49,49,55,46,48,51,48,56,54,49,44,51,51,46,52,50,54,57,51,49,93,44,91,45,49,49,55,46,50,52,49,50,55,49,44,51,51,46,52,51,49,57,57,51,93,44,91,45,49,49,55,46,51,55,48,57,50,53,44,51,51,46,52,57,48,53,52,57,93,44,91,45,49,49,55,46,53,48,57,55,50,50,44,51,51,46,53,48,53,48,49,57,93,44,91,45,49,49,55,46,53,55,56,52,56,44,51,51,46,52,53,51,57,50,55,93,44,91,45,49,49,55,46,54,49,49,48,56,49,44,51,51,46,51,51,51,57,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,51,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,50,53,55,53,50,55,44,49,56,46,48,55,53,56,56,52,93,44,91,45,54,54,46,51,51,49,50,52,52,44,49,56,46,48,49,53,56,57,49,93,44,91,45,54,54,46,51,50,51,50,50,44,49,55,46,56,55,55,54,54,55,93,44,91,45,54,54,46,49,56,55,51,52,50,44,49,55,46,56,55,55,48,51,54,93,44,91,45,54,54,46,50,50,53,50,55,53,44,49,55,46,57,50,52,54,53,50,93,44,91,45,54,54,46,49,54,54,49,52,53,44,49,56,46,48,53,48,48,54,51,93,44,91,45,54,54,46,50,50,52,52,57,44,49,56,46,48,57,53,51,51,57,93,44,91,45,54,54,46,50,53,55,53,50,55,44,49,56,46,48,55,53,56,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,52,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,48,50,54,50,56,44,51,50,46,54,57,48,48,49,56,93,44,91,45,56,52,46,49,48,52,57,54,54,44,51,50,46,54,55,51,51,56,53,93,44,91,45,56,52,46,48,48,51,51,54,51,44,51,50,46,53,50,57,57,50,55,93,44,91,45,56,51,46,55,54,54,57,54,51,44,51,50,46,54,57,50,52,57,53,93,44,91,45,56,51,46,55,48,49,48,57,44,51,50,46,54,57,49,53,57,56,93,44,91,45,56,51,46,55,48,49,49,53,50,44,51,50,46,54,57,50,49,54,57,93,44,91,45,56,51,46,56,48,56,50,54,55,44,51,50,46,55,50,56,54,56,50,93,44,91,45,56,51,46,56,57,49,57,50,50,44,51,50,46,56,52,56,51,53,49,93,44,91,45,56,52,46,49,50,52,50,55,53,44,51,50,46,56,52,57,53,54,50,93,44,91,45,56,52,46,50,48,50,54,50,56,44,51,50,46,54,57,48,48,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,78,97,103,117,97,98,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,56,50,54,48,54,51,44,49,56,46,50,48,48,52,48,56,93,44,91,45,54,53,46,54,57,57,51,51,53,44,49,56,46,49,49,54,49,49,51,93,44,91,45,54,53,46,54,53,52,55,50,56,44,49,56,46,49,51,51,51,51,53,93,44,91,45,54,53,46,54,55,49,44,49,56,46,50,50,51,48,53,50,93,44,91,45,54,53,46,55,54,54,56,51,49,44,49,56,46,50,56,48,48,48,52,93,44,91,45,54,53,46,56,50,52,50,50,44,49,56,46,50,55,51,48,53,52,93,44,91,45,54,53,46,56,50,54,48,54,51,44,49,56,46,50,48,48,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,54,55,56,44,34,98,101,100,115,34,58,49,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,56,48,51,51,44,51,56,46,56,52,55,50,48,55,93,44,91,45,57,52,46,54,48,57,48,56,44,51,56,46,55,51,56,48,57,57,93,44,91,45,57,52,46,54,49,50,56,56,50,44,51,56,46,52,55,55,53,57,55,93,44,91,45,57,52,46,48,54,53,55,49,51,44,51,56,46,52,52,55,48,56,55,93,44,91,45,57,52,46,48,54,52,51,49,55,44,51,56,46,53,54,55,51,56,93,44,91,45,57,52,46,49,49,57,54,54,52,44,51,56,46,53,54,56,55,49,50,93,44,91,45,57,52,46,49,49,57,48,57,54,44,51,56,46,56,51,51,49,54,55,93,44,91,45,57,52,46,54,48,56,48,51,51,44,51,56,46,56,52,55,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,68,117,116,99,104,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,56,57,52,44,34,98,101,100,115,34,58,57,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,50,57,54,50,54,44,52,50,46,48,55,56,55,55,56,93,44,91,45,55,51,46,57,54,50,50,50,49,44,52,49,46,57,48,49,48,50,93,44,91,45,55,51,46,57,53,51,51,48,55,44,52,49,46,53,56,57,57,55,55,93,44,91,45,55,51,46,57,56,49,52,56,54,44,52,49,46,52,51,56,57,48,53,93,44,91,45,55,51,46,57,51,51,55,55,53,44,52,49,46,52,56,56,50,55,57,93,44,91,45,55,51,46,53,51,48,48,54,55,44,52,49,46,53,50,55,49,57,52,93,44,91,45,55,51,46,53,49,56,48,56,44,52,49,46,54,54,54,55,50,51,93,44,91,45,55,51,46,52,56,55,51,49,57,44,52,50,46,48,52,57,53,50,53,93,44,91,45,55,51,46,52,57,55,48,49,56,44,52,50,46,48,52,57,54,50,52,93,44,91,45,55,51,46,53,50,55,48,55,50,44,52,49,46,57,55,55,57,56,93,44,91,45,55,51,46,55,49,48,57,51,44,52,50,46,48,48,53,52,56,56,93,44,91,45,55,51,46,57,50,57,54,50,54,44,52,50,46,48,55,56,55,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,55,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,55,57,54,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,57,57,49,55,51,44,51,48,46,51,55,57,49,53,50,93,44,91,45,57,54,46,54,52,48,56,56,51,44,51,48,46,50,57,54,55,56,54,93,44,91,45,57,54,46,55,57,52,53,53,50,44,51,48,46,49,54,48,53,52,53,93,44,91,45,57,54,46,54,56,51,51,57,52,44,51,48,46,49,53,49,48,51,56,93,44,91,45,57,54,46,54,50,49,57,56,44,51,48,46,48,52,52,50,56,51,93,44,91,45,57,54,46,50,57,50,56,52,57,44,51,48,46,48,57,54,49,53,93,44,91,45,57,54,46,49,52,54,48,53,50,44,51,48,46,48,55,48,50,50,52,93,44,91,45,57,54,46,49,57,49,52,49,56,44,51,48,46,49,51,52,54,54,57,93,44,91,45,57,54,46,48,57,51,49,54,53,44,51,48,46,50,50,53,49,56,55,93,44,91,45,57,54,46,49,53,52,54,51,44,51,48,46,51,51,48,50,56,56,93,44,91,45,57,54,46,50,57,57,49,55,51,44,51,48,46,51,55,57,49,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,80,117,101,98,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,54,56,53,44,34,98,101,100,115,34,58,49,50,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,52,49,53,51,51,44,51,56,46,53,49,57,53,54,57,93,44,91,45,49,48,52,46,57,52,48,51,54,54,44,51,56,46,50,53,56,50,55,53,93,44,91,45,49,48,53,46,48,52,57,50,49,53,44,51,56,46,50,53,55,57,55,51,93,44,91,45,49,48,53,46,48,52,57,57,49,55,44,51,55,46,57,49,53,52,55,57,93,44,91,45,49,48,53,46,48,49,51,55,50,57,44,51,55,46,56,56,49,50,55,49,93,44,91,45,49,48,52,46,54,52,54,51,56,51,44,51,55,46,57,48,48,53,50,55,93,44,91,45,49,48,52,46,51,53,49,49,48,57,44,51,55,46,56,49,55,52,56,56,93,44,91,45,49,48,52,46,48,54,49,49,51,50,44,51,55,46,55,51,52,55,48,52,93,44,91,45,49,48,52,46,48,53,56,50,52,50,44,51,56,46,49,52,54,52,57,50,93,44,91,45,49,48,52,46,48,53,51,57,50,49,44,51,56,46,53,50,50,51,57,51,93,44,91,45,49,48,52,46,57,52,49,53,51,51,44,51,56,46,53,49,57,53,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,55,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,56,53,56,54,55,44,51,55,46,48,54,55,48,53,49,93,44,91,45,57,50,46,57,48,51,50,55,51,44,51,55,46,48,55,48,54,53,49,93,44,91,45,57,50,46,57,48,57,51,51,54,44,51,54,46,56,48,57,49,55,56,93,44,91,45,57,50,46,55,54,52,56,54,57,44,51,54,46,56,48,54,48,57,55,93,44,91,45,57,50,46,49,49,50,51,52,54,44,51,54,46,55,57,52,50,51,49,93,44,91,45,57,50,46,48,56,56,55,48,56,44,51,55,46,48,53,54,50,52,56,93,44,91,45,57,50,46,50,53,49,51,53,57,44,51,55,46,48,53,57,54,53,51,93,44,91,45,57,50,46,54,56,53,56,54,55,44,51,55,46,48,54,55,48,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,111,116,116,105,110,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,57,54,53,53,50,44,52,56,46,57,57,57,52,50,49,93,44,91,45,49,48,49,46,52,57,54,54,56,52,44,52,56,46,55,50,48,48,55,56,93,44,91,45,49,48,49,46,52,53,49,50,55,53,44,52,56,46,53,52,54,48,55,57,93,44,91,45,49,48,49,46,48,53,57,54,54,51,44,52,56,46,53,52,53,52,49,57,93,44,91,45,49,48,49,46,48,53,57,54,50,52,44,52,56,46,54,51,50,51,54,49,93,44,91,45,49,48,48,46,52,48,54,55,56,44,52,56,46,54,51,49,56,55,56,93,44,91,45,49,48,48,46,50,55,54,54,49,57,44,52,56,46,53,52,52,56,49,51,93,44,91,45,49,48,48,46,49,52,53,56,53,56,44,52,56,46,53,52,53,50,49,49,93,44,91,45,49,48,48,46,49,56,51,48,51,52,44,52,56,46,55,49,56,57,48,57,93,44,91,45,49,48,48,46,49,56,50,54,48,56,44,52,56,46,57,57,57,50,48,52,93,44,91,45,49,48,49,46,52,57,54,53,53,50,44,52,56,46,57,57,57,52,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,50,49,48,54,44,34,98,101,100,115,34,58,56,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,49,55,49,50,55,44,51,53,46,50,52,53,53,55,56,93,44,91,45,55,56,46,55,57,51,52,52,55,44,51,53,46,50,54,53,57,55,54,93,44,91,45,55,57,46,48,57,53,56,48,56,44,51,53,46,49,57,50,48,54,56,93,44,91,45,55,57,46,48,57,55,53,57,49,44,51,53,46,49,55,52,50,50,53,93,44,91,45,55,57,46,48,57,48,50,57,49,44,51,53,46,48,52,50,48,51,49,93,44,91,45,55,57,46,48,51,56,55,52,55,44,51,52,46,57,53,50,55,49,53,93,44,91,45,55,56,46,57,48,49,57,57,56,44,51,52,46,56,51,53,50,54,56,93,44,91,45,55,56,46,52,57,52,55,48,53,44,51,52,46,56,53,54,49,56,50,93,44,91,45,55,56,46,54,52,55,55,51,52,44,51,52,46,57,57,52,55,52,93,44,91,45,55,56,46,54,55,48,54,53,44,51,53,46,48,57,50,53,57,50,93,44,91,45,55,56,46,54,49,55,49,50,55,44,51,53,46,50,52,53,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,72,111,116,32,83,112,114,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,51,49,50,57,52,57,44,52,51,46,56,49,51,50,57,51,93,44,91,45,49,48,57,46,49,55,49,52,52,56,44,52,51,46,54,57,57,49,57,56,93,44,91,45,49,48,57,46,49,55,49,54,51,56,44,52,51,46,54,49,57,55,54,52,93,44,91,45,49,48,56,46,57,51,52,49,52,49,44,52,51,46,54,49,57,49,54,51,93,44,91,45,49,48,56,46,54,57,52,54,55,50,44,52,51,46,53,55,53,55,53,53,93,44,91,45,49,48,56,46,54,57,53,48,55,50,44,52,51,46,53,51,50,50,53,53,93,44,91,45,49,48,56,46,51,51,55,56,54,49,44,52,51,46,52,53,57,55,54,53,93,44,91,45,49,48,55,46,53,57,53,49,51,55,44,52,51,46,52,55,50,50,55,57,93,44,91,45,49,48,55,46,53,57,53,49,48,53,44,52,51,46,53,48,49,51,57,55,93,44,91,45,49,48,55,46,53,57,53,49,53,55,44,52,51,46,54,52,54,52,50,55,93,44,91,45,49,48,55,46,55,49,53,56,55,54,44,52,51,46,55,51,51,51,52,51,93,44,91,45,49,48,55,46,57,53,54,53,55,55,44,52,51,46,55,51,51,52,52,54,93,44,91,45,49,48,55,46,57,53,54,52,52,56,44,52,51,46,56,49,56,54,54,54,93,44,91,45,49,48,56,46,49,55,51,54,49,55,44,52,51,46,56,49,56,57,53,51,93,44,91,45,49,48,56,46,52,50,57,53,54,51,44,52,51,46,57,48,51,51,53,53,93,44,91,45,49,48,56,46,53,53,48,55,53,56,44,52,52,46,48,55,57,52,48,51,93,44,91,45,49,48,56,46,55,57,50,50,55,55,44,52,52,46,48,55,57,54,49,54,93,44,91,45,49,48,56,46,55,57,49,55,55,57,44,52,51,46,57,57,49,48,53,51,93,44,91,45,49,48,56,46,57,49,50,55,56,51,44,52,51,46,57,48,52,55,53,52,93,44,91,45,49,48,57,46,48,57,50,56,55,56,44,52,51,46,57,48,52,52,55,52,93,44,91,45,49,48,57,46,48,57,51,54,48,51,44,52,51,46,56,49,55,54,49,57,93,44,91,45,49,48,57,46,51,49,50,57,52,57,44,52,51,46,56,49,51,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,99,111,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,56,52,56,52,44,52,52,46,56,53,54,52,53,56,93,44,91,45,56,51,46,56,56,54,54,51,52,44,52,52,46,53,48,56,57,55,54,93,44,91,45,56,50,46,51,50,57,53,49,57,44,52,52,46,53,49,50,56,51,52,93,44,91,45,56,50,46,52,48,56,55,49,55,44,52,52,46,56,53,56,49,52,55,93,44,91,45,56,51,46,56,56,56,52,56,52,44,52,52,46,56,53,54,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,80,108,97,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,48,55,55,44,34,98,101,100,115,34,58,55,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,48,54,51,50,51,44,51,57,46,51,49,54,52,57,54,93,44,91,45,49,50,48,46,54,52,53,55,57,53,44,51,57,46,51,49,53,49,53,53,93,44,91,45,49,50,48,46,55,50,55,56,57,51,44,51,57,46,50,56,56,48,56,49,93,44,91,45,49,50,48,46,57,54,54,48,56,44,51,57,46,49,50,55,57,50,56,93,44,91,45,49,50,49,46,48,52,49,54,48,56,44,51,57,46,48,49,51,55,57,49,93,44,91,45,49,50,49,46,50,55,57,53,51,51,44,51,57,46,48,51,52,54,49,56,93,44,91,45,49,50,49,46,52,49,52,55,55,57,44,51,56,46,57,57,54,52,53,50,93,44,91,45,49,50,49,46,52,54,57,51,53,54,44,51,56,46,57,50,53,57,57,50,93,44,91,45,49,50,49,46,52,56,52,51,57,54,44,51,56,46,55,51,52,53,57,56,93,44,91,45,49,50,49,46,49,52,49,53,57,53,44,51,56,46,55,49,49,57,51,57,93,44,91,45,49,50,49,46,48,53,50,57,49,49,44,51,56,46,57,48,48,49,52,52,93,44,91,45,49,50,48,46,57,51,52,54,53,51,44,51,56,46,57,54,51,55,57,49,93,44,91,45,49,50,48,46,55,51,48,49,55,52,44,51,57,46,48,48,51,57,53,56,93,44,91,45,49,50,48,46,53,55,50,51,53,50,44,51,56,46,57,49,52,52,93,44,91,45,49,50,48,46,52,51,53,50,52,44,51,57,46,48,50,56,51,57,55,93,44,91,45,49,50,48,46,49,56,52,48,57,56,44,51,57,46,48,51,49,48,49,52,93,44,91,45,49,50,48,46,48,48,50,52,54,49,44,51,57,46,48,54,55,52,56,57,93,44,91,45,49,50,48,46,48,48,51,52,50,57,44,51,57,46,49,49,50,54,56,55,93,44,91,45,49,50,48,46,48,48,52,50,57,55,44,51,57,46,49,54,53,54,48,51,93,44,91,45,49,50,48,46,48,48,54,51,50,51,44,51,57,46,51,49,54,52,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,83,101,97,114,99,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,52,52,54,54,54,44,51,54,46,49,49,53,49,50,51,93,44,91,45,57,50,46,57,53,49,51,49,53,44,51,53,46,55,50,52,54,54,51,93,44,91,45,57,50,46,56,48,57,55,54,51,44,51,53,46,55,50,50,52,48,49,93,44,91,45,57,50,46,54,51,49,50,48,55,44,51,53,46,55,49,56,51,54,53,93,44,91,45,57,50,46,54,50,57,56,51,55,44,51,53,46,55,57,48,56,50,51,93,44,91,45,57,50,46,52,49,54,56,52,55,44,51,53,46,55,56,56,53,57,49,93,44,91,45,57,50,46,52,49,52,51,57,54,44,51,53,46,57,55,53,55,57,56,93,44,91,45,57,50,46,52,49,49,53,48,50,44,51,54,46,48,54,50,55,53,54,93,44,91,45,57,50,46,56,51,55,55,55,54,44,51,54,46,48,55,48,49,50,52,93,44,91,45,57,50,46,56,57,48,54,57,53,44,51,54,46,49,49,52,49,51,50,93,44,91,45,57,50,46,57,52,52,54,54,54,44,51,54,46,49,49,53,49,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,53,34,44,34,78,65,77,69,34,58,34,76,121,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,48,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,53,54,56,56,52,44,51,51,46,51,57,52,55,54,93,44,91,45,49,48,50,46,48,55,53,57,50,57,44,51,51,46,51,56,57,53,56,54,93,44,91,45,49,48,50,46,48,55,54,50,49,52,44,51,50,46,57,53,57,55,48,50,93,44,91,45,49,48,49,46,54,57,49,50,56,52,44,51,50,46,57,54,49,56,51,56,93,44,91,45,49,48,49,46,53,53,55,52,51,52,44,51,50,46,57,54,49,48,50,53,93,44,91,45,49,48,49,46,53,53,54,56,56,52,44,51,51,46,51,57,52,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,79,116,115,101,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,50,52,52,44,34,98,101,100,115,34,58,50,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,50,57,53,56,55,55,44,52,50,46,55,52,52,49,48,54,93,44,91,45,55,53,46,51,51,50,57,52,57,44,52,50,46,53,54,54,51,49,50,93,44,91,45,55,53,46,52,48,52,52,54,52,44,52,50,46,52,55,57,49,49,55,93,44,91,45,55,53,46,52,49,53,51,49,57,44,52,50,46,51,49,52,49,53,49,93,44,91,45,55,53,46,48,49,57,56,49,56,44,52,50,46,52,50,57,48,52,53,93,44,91,45,55,52,46,56,52,52,49,50,49,44,52,50,46,53,49,50,53,57,49,93,44,91,45,55,52,46,55,49,49,53,56,44,52,50,46,53,49,55,55,57,57,93,44,91,45,55,52,46,54,51,48,54,51,49,44,52,50,46,54,50,54,54,55,52,93,44,91,45,55,52,46,54,52,56,50,57,56,44,52,50,46,56,50,57,53,53,56,93,44,91,45,55,52,46,55,54,51,51,48,51,44,52,50,46,56,54,51,50,51,55,93,44,91,45,55,52,46,57,48,54,55,51,56,44,52,50,46,56,50,52,57,52,51,93,44,91,45,55,53,46,49,48,48,57,57,57,44,52,50,46,57,48,56,51,54,51,93,44,91,45,55,53,46,50,49,50,49,53,56,44,52,50,46,56,55,57,57,55,51,93,44,91,45,55,53,46,50,52,55,57,54,51,44,52,50,46,56,55,49,54,48,52,93,44,91,45,55,53,46,50,57,53,56,55,55,44,52,50,46,55,52,52,49,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,82,105,99,104,109,111,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,49,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,55,53,51,54,53,44,51,53,46,49,52,51,48,56,49,93,44,91,45,55,57,46,57,52,54,49,50,50,44,51,53,46,49,49,56,53,57,51,93,44,91,45,55,57,46,56,52,57,53,51,54,44,51,52,46,57,48,48,48,48,54,93,44,91,45,55,57,46,57,50,55,52,49,50,44,51,52,46,56,48,54,55,51,52,93,44,91,45,55,57,46,54,57,50,57,52,52,44,51,52,46,56,48,53,49,53,53,93,44,91,45,55,57,46,53,54,49,56,53,54,44,51,52,46,57,49,48,51,53,93,44,91,45,55,57,46,53,55,51,52,50,51,44,51,52,46,57,57,50,50,49,93,44,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,44,91,45,55,57,46,53,54,54,52,57,55,44,51,53,46,48,54,52,48,49,49,93,44,91,45,55,57,46,54,49,52,51,48,52,44,51,53,46,49,54,51,54,55,57,93,44,91,45,55,57,46,56,53,49,50,54,56,44,51,53,46,49,56,51,56,53,53,93,44,91,45,56,48,46,48,55,53,51,54,53,44,51,53,46,49,52,51,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,72,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,50,51,57,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,44,91,45,55,57,46,51,53,51,51,49,50,44,51,52,46,57,52,50,53,54,49,93,44,91,45,55,57,46,51,52,55,56,54,56,44,51,52,46,56,51,56,53,53,51,93,44,91,45,55,57,46,49,57,49,51,57,49,44,51,52,46,56,51,51,55,49,55,93,44,91,45,55,57,46,48,51,56,55,52,55,44,51,52,46,57,53,50,55,49,53,93,44,91,45,55,57,46,48,57,48,50,57,49,44,51,53,46,48,52,50,48,51,49,93,44,91,45,55,57,46,48,57,55,53,57,49,44,51,53,46,49,55,52,50,50,53,93,44,91,45,55,57,46,50,50,57,55,49,50,44,51,53,46,50,49,48,54,48,50,93,44,91,45,55,57,46,51,51,53,52,55,55,44,51,53,46,49,54,49,53,56,56,93,44,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,79,116,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,57,54,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,54,51,55,54,52,44,52,48,46,55,56,51,57,54,93,44,91,45,57,54,46,52,54,51,54,51,50,44,52,48,46,53,50,51,48,49,51,93,44,91,45,57,54,46,48,54,55,48,49,50,44,52,48,46,53,50,51,49,52,56,93,44,91,45,57,53,46,55,48,57,57,55,52,44,52,48,46,53,50,51,55,57,56,93,44,91,45,57,53,46,55,54,53,54,52,53,44,52,48,46,53,56,53,50,48,56,93,44,91,45,57,53,46,56,56,49,53,50,57,44,52,48,46,55,53,48,54,49,49,93,44,91,45,57,53,46,56,51,52,49,50,44,52,48,46,55,56,51,55,56,51,93,44,91,45,57,54,46,52,54,51,55,54,52,44,52,48,46,55,56,51,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,97,109,101,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,49,57,49,49,56,44,52,49,46,54,48,50,49,56,56,93,44,91,45,55,56,46,52,50,48,48,50,56,44,52,49,46,52,48,53,48,52,54,93,44,91,45,55,56,46,50,53,51,57,53,57,44,52,49,46,52,48,52,55,50,49,93,44,91,45,55,56,46,50,51,54,56,49,55,44,52,49,46,50,51,48,52,55,53,93,44,91,45,55,56,46,48,57,51,51,56,49,44,52,49,46,50,49,54,57,51,49,93,44,91,45,55,55,46,57,56,56,55,56,54,44,52,49,46,51,54,55,52,53,51,93,44,91,45,55,55,46,57,56,57,49,57,52,44,52,49,46,52,55,52,56,50,50,93,44,91,45,55,56,46,48,53,48,52,52,50,44,52,49,46,52,55,53,52,54,50,93,44,91,45,55,56,46,50,48,51,52,50,50,44,52,49,46,54,49,56,49,53,55,93,44,91,45,55,56,46,52,49,57,49,49,56,44,52,49,46,54,48,50,49,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,68,111,114,99,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,52,55,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,51,54,49,56,53,49,44,51,51,46,50,53,55,52,52,51,93,44,91,45,56,48,46,53,48,50,55,57,44,51,51,46,51,51,52,52,57,54,93,44,91,45,56,48,46,55,57,48,50,57,54,44,51,51,46,49,56,48,56,52,93,44,91,45,56,48,46,54,50,51,56,49,53,44,51,51,46,48,54,54,57,50,55,93,44,91,45,56,48,46,52,48,50,50,50,54,44,51,51,46,48,53,51,50,51,56,93,44,91,45,56,48,46,52,48,49,51,52,44,51,50,46,56,53,56,52,54,54,93,44,91,45,56,48,46,49,53,55,50,54,53,44,51,50,46,56,49,56,49,56,55,93,44,91,45,56,48,46,48,55,57,48,50,56,44,51,50,46,57,50,55,56,49,49,93,44,91,45,56,48,46,49,52,57,50,52,54,44,51,51,46,48,50,49,54,48,49,93,44,91,45,56,48,46,51,51,53,57,52,44,51,51,46,49,52,53,52,54,51,93,44,91,45,56,48,46,51,54,49,56,53,49,44,51,51,46,50,53,55,52,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,87,97,115,101,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,48,57,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,54,55,57,55,49,44,52,52,46,49,57,53,56,51,54,93,44,91,45,57,51,46,55,54,55,55,54,49,44,52,51,46,56,52,55,57,53,54,93,44,91,45,57,51,46,54,52,56,50,57,44,52,51,46,56,52,56,49,51,57,93,44,91,45,57,51,46,52,48,54,54,52,50,44,52,51,46,56,52,56,49,50,93,44,91,45,57,51,46,52,48,54,53,54,53,44,52,52,46,49,57,54,51,55,55,93,44,91,45,57,51,46,53,50,53,50,51,49,44,52,52,46,49,57,54,49,51,52,93,44,91,45,57,51,46,55,54,55,57,55,49,44,52,52,46,49,57,53,56,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,114,117,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,53,53,56,54,52,44,52,51,46,57,51,52,51,55,49,93,44,91,45,57,57,46,51,49,48,56,50,54,44,52,51,46,56,53,53,50,49,54,93,44,91,45,57,57,46,52,49,48,49,53,44,52,51,46,55,55,52,54,49,57,93,44,91,45,57,57,46,52,48,54,57,54,49,44,52,51,46,55,48,53,50,55,55,93,44,91,45,57,57,46,50,57,55,56,56,50,44,52,51,46,52,57,57,56,53,54,93,44,91,45,57,56,46,55,57,52,53,56,56,44,52,51,46,52,57,57,49,56,55,93,44,91,45,57,56,46,56,48,55,55,55,49,44,52,51,46,57,51,53,50,50,51,93,44,91,45,57,56,46,57,50,54,57,57,55,44,52,51,46,57,51,53,49,52,51,93,44,91,45,57,57,46,51,53,53,56,54,52,44,52,51,46,57,51,52,51,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,52,53,52,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,56,53,48,54,50,44,51,53,46,54,54,48,49,48,56,93,44,91,45,56,53,46,56,55,54,57,54,50,44,51,53,46,53,50,52,48,57,53,93,44,91,45,56,53,46,54,48,55,51,50,54,44,51,53,46,53,51,49,54,53,49,93,44,91,45,56,53,46,53,53,55,53,51,53,44,51,53,46,53,51,50,57,55,55,93,44,91,45,56,53,46,53,57,52,54,51,50,44,51,53,46,54,49,55,56,57,56,93,44,91,45,56,53,46,54,48,50,56,55,54,44,51,53,46,55,57,52,57,57,54,93,44,91,45,56,53,46,54,56,50,48,57,53,44,51,53,46,56,51,49,50,53,52,93,44,91,45,56,53,46,56,56,53,49,53,54,44,51,53,46,56,51,57,54,53,56,93,44,91,45,56,53,46,57,56,52,56,57,49,44,51,53,46,55,51,52,53,53,51,93,44,91,45,56,53,46,57,56,53,48,54,50,44,51,53,46,54,54,48,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,49,50,49,50,49,44,51,57,46,51,55,56,57,54,56,93,44,91,45,56,56,46,48,48,55,55,54,54,44,51,57,46,49,55,51,57,50,53,93,44,91,45,56,55,46,57,53,48,51,56,53,44,51,57,46,49,55,52,56,56,50,93,44,91,45,56,55,46,54,50,56,55,57,56,44,51,57,46,49,53,55,53,49,51,93,44,91,45,56,55,46,54,48,52,49,52,49,44,51,57,46,50,53,57,52,53,56,93,44,91,45,56,55,46,53,51,49,54,52,54,44,51,57,46,51,52,55,56,56,56,93,44,91,45,56,55,46,53,51,49,54,52,44,51,57,46,52,55,55,49,48,53,93,44,91,45,56,55,46,57,54,48,49,55,57,44,51,57,46,52,56,49,51,48,57,93,44,91,45,56,56,46,48,49,50,49,50,49,44,51,57,46,51,55,56,57,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,82,111,98,101,114,116,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,54,50,48,51,49,44,51,56,46,53,53,52,49,50,53,93,44,91,45,56,52,46,49,48,50,49,44,51,56,46,52,53,57,51,55,57,93,44,91,45,56,51,46,57,56,48,48,54,56,44,51,56,46,52,51,57,52,52,56,93,44,91,45,56,51,46,57,51,48,51,52,56,44,51,56,46,52,57,50,50,55,56,93,44,91,45,56,51,46,57,57,49,54,48,53,44,51,56,46,53,57,51,55,48,49,93,44,91,45,56,52,46,49,54,50,48,51,49,44,51,56,46,53,53,52,49,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,51,57,50,51,50,44,51,54,46,52,57,55,57,51,52,93,44,91,45,56,57,46,53,52,53,48,48,54,44,51,54,46,51,51,54,56,48,57,93,44,91,45,56,57,46,53,51,54,52,52,49,44,51,54,46,50,55,50,56,50,55,93,44,91,45,56,57,46,54,50,57,52,53,51,44,51,54,46,49,56,53,51,56,50,93,44,91,45,56,57,46,52,56,50,57,55,49,44,51,54,46,50,49,50,54,53,57,93,44,91,45,56,57,46,51,54,48,49,50,44,51,54,46,52,48,57,50,55,55,93,44,91,45,56,57,46,51,52,54,48,54,54,44,51,54,46,53,48,51,50,51,50,93,44,91,45,56,57,46,52,49,55,50,55,53,44,51,54,46,52,57,57,48,49,49,93,44,91,45,56,57,46,52,56,53,52,50,55,44,51,54,46,52,57,55,52,57,49,93,44,91,45,56,57,46,53,51,57,50,51,50,44,51,54,46,52,57,55,57,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,101,114,107,101,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,48,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,51,54,49,56,53,49,44,51,51,46,50,53,55,52,52,51,93,44,91,45,56,48,46,51,51,53,57,52,44,51,51,46,49,52,53,52,54,51,93,44,91,45,56,48,46,49,52,57,50,52,54,44,51,51,46,48,50,49,54,48,49,93,44,91,45,56,48,46,48,53,53,53,57,53,44,51,50,46,57,57,56,55,49,93,44,91,45,55,57,46,57,53,54,52,51,51,44,51,50,46,56,53,57,55,57,49,93,44,91,45,55,57,46,56,52,49,48,54,55,44,51,50,46,57,49,50,52,54,57,93,44,91,45,55,57,46,54,52,51,51,48,49,44,51,51,46,49,50,51,52,53,51,93,44,91,45,55,57,46,53,49,56,56,52,52,44,51,51,46,49,52,56,50,57,55,93,44,91,45,55,57,46,52,52,54,54,57,57,44,51,51,46,50,49,51,52,53,56,93,44,91,45,55,57,46,54,55,55,48,49,52,44,51,51,46,51,48,52,57,52,52,93,44,91,45,55,57,46,57,55,49,57,54,51,44,51,51,46,53,48,48,57,51,55,93,44,91,45,56,48,46,49,48,49,54,57,55,44,51,51,46,52,57,54,56,57,49,93,44,91,45,56,48,46,50,50,50,50,54,55,44,51,51,46,52,52,51,55,49,54,93,44,91,45,56,48,46,50,53,53,54,52,50,44,51,51,46,51,48,48,48,48,50,93,44,91,45,56,48,46,51,54,49,56,53,49,44,51,51,46,50,53,55,52,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,97,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,50,57,54,44,34,98,101,100,115,34,58,53,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,48,55,50,50,49,44,51,52,46,51,57,55,52,52,55,93,44,91,45,57,50,46,57,52,56,48,55,49,44,51,52,46,51,56,57,50,53,53,93,44,91,45,57,50,46,57,49,53,48,55,57,44,51,52,46,53,48,54,49,49,52,93,44,91,45,57,50,46,55,57,51,49,57,55,44,51,52,46,53,48,51,54,48,54,93,44,91,45,57,50,46,56,48,56,48,50,56,44,51,52,46,53,57,48,52,48,54,93,44,91,45,57,50,46,57,55,57,57,48,50,44,51,52,46,54,51,55,50,50,50,93,44,91,45,57,50,46,57,54,57,50,53,44,51,52,46,55,55,50,50,54,54,93,44,91,45,57,51,46,48,55,53,49,55,56,44,51,52,46,55,55,49,56,57,50,93,44,91,45,57,51,46,50,56,55,55,56,53,44,51,52,46,55,55,51,49,57,51,93,44,91,45,57,51,46,51,57,52,50,56,57,44,51,52,46,55,52,51,51,57,51,93,44,91,45,57,51,46,52,48,55,50,50,49,44,51,52,46,51,57,55,52,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,79,115,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,52,53,57,50,52,44,51,56,46,55,51,57,49,49,50,93,44,91,45,57,53,46,57,53,48,50,56,50,44,51,56,46,52,51,52,49,48,53,93,44,91,45,57,53,46,53,48,56,50,54,55,44,51,56,46,52,51,51,57,51,51,93,44,91,45,57,53,46,53,48,48,55,51,56,44,51,56,46,55,51,56,56,48,56,93,44,91,45,57,53,46,53,48,48,55,50,52,44,51,56,46,56,54,57,56,49,53,93,44,91,45,57,53,46,57,52,54,53,56,55,44,51,56,46,56,54,57,57,55,51,93,44,91,45,57,53,46,57,52,53,57,50,52,44,51,56,46,55,51,57,49,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,84,114,117,109,98,117,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,55,57,52,44,34,98,101,100,115,34,58,55,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,48,51,51,49,57,44,52,49,46,51,52,55,56,54,93,44,91,45,56,49,46,48,48,50,50,57,44,52,49,46,49,51,52,49,56,57,93,44,91,45,56,48,46,53,49,57,48,52,56,44,52,49,46,49,51,51,51,57,52,93,44,91,45,56,48,46,53,49,57,50,49,55,44,52,49,46,52,56,57,48,49,51,93,44,91,45,56,48,46,53,49,57,50,50,53,44,52,49,46,52,57,57,57,50,52,93,44,91,45,56,49,46,48,48,51,49,50,53,44,52,49,46,53,48,49,54,56,53,93,44,91,45,56,49,46,48,48,51,51,49,57,44,52,49,46,51,52,55,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,51,51,34,44,34,78,65,77,69,34,58,34,77,105,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,57,49,54,48,56,44,51,49,46,52,56,52,48,55,49,93,44,91,45,57,56,46,57,54,51,53,57,51,44,51,49,46,52,52,54,50,53,49,93,44,91,45,57,56,46,54,57,54,54,51,52,44,51,49,46,52,48,55,50,56,55,93,44,91,45,57,56,46,54,50,53,54,50,56,44,51,49,46,50,54,57,55,57,56,93,44,91,45,57,56,46,53,54,50,55,51,57,44,51,49,46,50,51,48,53,56,50,93,44,91,45,57,56,46,50,55,49,48,55,44,51,49,46,52,49,54,51,57,56,93,44,91,45,57,56,46,52,54,51,55,51,54,44,51,49,46,54,56,51,57,56,57,93,44,91,45,57,56,46,52,57,50,56,48,50,44,51,49,46,55,50,51,54,48,56,93,44,91,45,57,56,46,54,54,56,52,52,49,44,51,49,46,55,48,48,53,49,52,93,44,91,45,57,56,46,57,57,49,54,48,56,44,51,49,46,52,56,52,48,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,53,57,34,44,34,78,65,77,69,34,58,34,79,108,100,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,49,54,50,56,48,57,44,51,53,46,54,50,55,53,49,53,93,44,91,45,49,48,51,46,48,52,49,55,48,54,44,51,53,46,54,50,50,52,56,56,93,44,91,45,49,48,51,46,48,52,50,53,49,49,44,51,53,46,49,56,51,49,53,55,93,44,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,44,91,45,49,48,50,46,49,54,50,55,53,50,44,51,53,46,54,50,48,48,51,53,93,44,91,45,49,48,50,46,49,54,50,56,48,57,44,51,53,46,54,50,55,53,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,53,54,54,44,34,98,101,100,115,34,58,50,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,57,56,50,57,52,44,52,49,46,48,55,49,48,53,52,93,44,91,45,56,48,46,49,54,54,52,55,50,44,52,49,46,48,48,48,57,50,56,93,44,91,45,56,48,46,49,53,56,53,51,44,52,48,46,56,53,53,48,57,54,93,44,91,45,56,48,46,49,52,56,54,56,50,44,52,48,46,54,55,52,50,56,49,93,44,91,45,55,57,46,54,57,50,57,51,44,52,48,46,54,54,57,55,52,52,93,44,91,45,55,57,46,54,57,48,55,49,49,44,52,49,46,49,55,48,54,57,49,93,44,91,45,55,57,46,54,57,52,57,56,52,44,52,49,46,49,55,50,56,54,53,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,49,55,49,56,54,49,93,44,91,45,56,48,46,48,57,56,50,57,52,44,52,49,46,48,55,49,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,51,55,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,44,91,45,49,49,54,46,49,51,51,53,55,44,52,54,46,50,49,53,50,51,49,93,44,91,45,49,49,54,46,51,48,51,55,49,51,44,52,54,46,49,54,54,55,55,56,93,44,91,45,49,49,54,46,52,53,52,49,49,55,44,52,54,46,49,57,50,48,51,50,93,44,91,45,49,49,54,46,53,49,52,55,48,55,44,52,54,46,48,51,56,55,53,55,93,44,91,45,49,49,54,46,55,48,49,56,49,57,44,52,53,46,57,57,54,51,56,49,93,44,91,45,49,49,54,46,55,57,52,53,54,50,44,52,53,46,56,53,54,48,52,57,93,44,91,45,49,49,54,46,53,57,52,50,49,44,52,53,46,55,55,57,48,56,93,44,91,45,49,49,54,46,52,54,51,54,51,53,44,52,53,46,54,48,50,55,56,53,93,44,91,45,49,49,54,46,53,53,55,54,50,49,44,52,53,46,53,48,51,52,57,53,93,44,91,45,49,49,54,46,54,56,55,49,55,55,44,52,53,46,50,54,55,54,52,51,93,44,91,45,49,49,54,46,51,52,50,56,55,54,44,52,53,46,50,54,55,56,55,50,93,44,91,45,49,49,54,46,50,56,53,57,54,57,44,52,53,46,49,50,56,55,51,50,93,44,91,45,49,49,54,46,49,52,52,51,56,54,44,52,53,46,49,48,55,54,53,49,93,44,91,45,49,49,53,46,57,55,53,55,56,55,44,52,53,46,49,57,53,50,56,50,93,44,91,45,49,49,52,46,54,57,52,48,48,49,44,52,53,46,49,57,55,49,56,50,93,44,91,45,49,49,52,46,54,48,51,57,52,44,52,53,46,50,57,53,56,50,54,93,44,91,45,49,49,52,46,55,57,51,50,48,55,44,52,53,46,52,51,54,51,51,52,93,44,91,45,49,49,52,46,54,54,54,50,50,51,44,52,53,46,52,55,49,51,50,53,93,44,91,45,49,49,52,46,53,54,52,57,57,57,44,52,53,46,53,53,55,56,48,51,93,44,91,45,49,49,52,46,52,57,57,54,54,55,44,52,53,46,54,54,56,53,49,51,93,44,91,45,49,49,52,46,53,54,54,51,52,56,44,52,53,46,55,55,50,55,51,57,93,44,91,45,49,49,52,46,52,48,53,57,49,55,44,52,53,46,56,55,48,52,93,44,91,45,49,49,52,46,52,56,48,53,51,55,44,52,54,46,48,51,48,52,51,57,93,44,91,45,49,49,52,46,52,52,53,50,51,52,44,52,54,46,49,54,55,57,52,54,93,44,91,45,49,49,52,46,52,55,48,55,57,53,44,52,54,46,50,54,53,51,55,55,93,44,91,45,49,49,52,46,51,52,50,57,56,53,44,52,54,46,53,49,56,48,52,93,44,91,45,49,49,52,46,51,51,50,55,57,54,44,52,54,46,54,54,48,53,56,49,93,44,91,45,49,49,52,46,53,57,52,54,51,52,44,52,54,46,54,51,51,52,52,56,93,44,91,45,49,49,53,46,54,50,56,57,53,55,44,52,54,46,52,55,51,54,49,56,93,44,91,45,49,49,53,46,55,56,48,56,49,56,44,52,54,46,50,54,55,50,53,93,44,91,45,49,49,53,46,57,53,55,50,54,56,44,52,54,46,50,56,56,57,51,49,93,44,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,55,49,57,49,49,44,51,56,46,54,48,57,51,53,51,93,44,91,45,57,55,46,51,55,49,55,53,44,51,56,46,49,55,51,54,55,51,93,44,91,45,57,55,46,49,53,51,48,57,51,44,51,56,46,49,55,52,54,51,52,93,44,91,45,57,55,46,49,53,50,57,49,51,44,51,56,46,48,56,55,55,48,52,93,44,91,45,57,54,46,56,52,48,55,55,50,44,51,56,46,48,56,53,54,50,50,93,44,91,45,57,54,46,56,49,57,53,48,57,44,51,56,46,53,50,50,52,52,57,93,44,91,45,57,54,46,57,51,48,50,56,54,44,51,56,46,54,48,57,51,54,50,93,44,91,45,57,55,46,51,55,49,57,49,49,44,51,56,46,54,48,57,51,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,66,117,99,107,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,56,50,53,50,51,56,44,51,55,46,53,53,50,53,52,50,93,44,91,45,55,56,46,54,56,51,50,50,52,44,51,55,46,52,50,56,57,55,52,93,44,91,45,55,56,46,53,57,52,52,51,54,44,51,55,46,51,57,55,57,55,52,93,44,91,45,55,56,46,52,54,53,48,56,57,44,51,55,46,51,51,57,54,55,55,93,44,91,45,55,56,46,50,52,57,48,50,49,44,51,55,46,54,51,53,53,52,54,93,44,91,45,55,56,46,50,51,57,55,52,56,44,51,55,46,54,57,48,52,57,53,93,44,91,45,55,56,46,52,48,53,53,57,54,44,51,55,46,55,51,53,50,54,51,93,44,91,45,55,56,46,52,57,49,51,52,53,44,51,55,46,55,57,54,57,53,54,93,44,91,45,55,56,46,54,52,51,57,49,56,44,51,55,46,55,51,51,48,56,52,93,44,91,45,55,56,46,56,50,53,50,51,56,44,51,55,46,53,53,50,53,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,98,97,114,114,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,52,52,56,44,34,98,101,100,115,34,58,52,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,56,52,49,54,55,44,51,53,46,53,48,54,48,49,55,93,44,91,45,56,48,46,54,54,54,52,56,44,51,53,46,50,54,55,57,51,52,93,44,91,45,56,48,46,53,53,48,51,52,57,44,51,53,46,50,48,56,52,49,50,93,44,91,45,56,48,46,53,48,52,57,56,53,44,51,53,46,49,56,52,57,57,56,93,44,91,45,56,48,46,50,57,53,52,50,49,44,51,53,46,53,48,50,57,50,93,44,91,45,56,48,46,55,51,55,51,55,57,44,51,53,46,53,48,53,56,48,52,93,44,91,45,56,48,46,55,56,52,49,54,55,44,51,53,46,53,48,54,48,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,53,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,55,51,51,56,44,51,55,46,52,49,52,57,56,57,93,44,91,45,57,51,46,48,54,53,50,55,52,44,51,55,46,48,56,56,54,57,52,93,44,91,45,57,50,46,57,48,51,50,55,51,44,51,55,46,48,55,48,54,53,49,93,44,91,45,57,50,46,54,56,53,56,54,55,44,51,55,46,48,54,55,48,53,49,93,44,91,45,57,50,46,54,56,54,54,55,49,44,51,55,46,52,56,49,53,52,53,93,44,91,45,57,50,46,56,53,51,52,56,49,44,51,55,46,52,56,51,57,55,93,44,91,45,57,51,46,48,55,49,53,56,52,44,51,55,46,52,56,55,52,52,52,93,44,91,45,57,51,46,48,55,51,51,56,44,51,55,46,52,49,52,57,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,48,54,50,49,44,34,98,101,100,115,34,58,52,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,55,51,56,55,52,52,44,52,48,46,56,54,48,57,57,56,93,44,91,45,49,49,49,46,56,49,53,52,49,52,44,52,48,46,57,53,55,52,51,93,44,91,45,49,49,49,46,56,53,54,50,52,55,44,52,49,46,49,51,57,48,56,51,93,44,91,45,49,49,50,46,49,56,54,54,57,51,44,52,49,46,49,53,51,48,50,56,93,44,91,45,49,49,50,46,52,57,51,53,49,53,44,52,49,46,48,55,54,56,56,56,93,44,91,45,49,49,50,46,50,54,48,50,49,54,44,52,48,46,55,54,57,48,57,51,93,44,91,45,49,49,50,46,48,48,54,53,54,54,44,52,48,46,57,50,49,56,52,54,93,44,91,45,49,49,49,46,57,52,54,50,56,57,44,52,48,46,56,50,49,55,57,93,44,91,45,49,49,49,46,55,51,56,55,52,52,44,52,48,46,56,54,48,57,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,111,116,116,111,110,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,55,50,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,54,50,53,52,55,44,52,52,46,49,57,53,57,52,50,93,44,91,45,57,53,46,52,54,50,52,50,55,44,52,51,46,56,52,55,57,49,49,93,44,91,45,57,53,46,52,53,50,53,48,50,44,52,51,46,56,52,55,57,53,51,93,44,91,45,57,52,46,56,53,57,51,56,56,44,52,51,46,56,52,56,48,57,51,93,44,91,45,57,52,46,56,53,57,56,48,51,44,52,52,46,49,48,56,48,49,54,93,44,91,45,57,53,46,49,48,48,50,50,49,44,52,52,46,49,48,56,48,51,52,93,44,91,45,57,53,46,49,48,56,55,55,55,44,52,52,46,49,57,53,48,52,52,93,44,91,45,57,53,46,52,54,50,53,52,55,44,52,52,46,49,57,53,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,79,107,101,101,99,104,111,98,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,55,50,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,52,50,49,54,52,44,50,55,46,54,52,51,50,51,56,93,44,91,45,56,49,46,50,48,53,51,56,56,44,50,55,46,52,57,48,50,53,52,93,44,91,45,56,48,46,57,52,48,54,55,54,44,50,55,46,50,48,53,57,51,57,93,44,91,45,56,48,46,56,55,49,49,54,57,44,50,55,46,49,53,52,57,53,49,93,44,91,45,56,48,46,56,56,53,54,51,57,44,50,54,46,57,53,56,57,49,57,93,44,91,45,56,48,46,54,55,55,52,50,55,44,50,55,46,49,50,49,54,49,57,93,44,91,45,56,48,46,54,55,55,56,54,50,44,50,55,46,50,48,53,57,56,56,93,44,91,45,56,48,46,54,55,57,56,50,49,44,50,55,46,53,53,56,52,55,93,44,91,45,56,48,46,55,55,55,49,54,54,44,50,55,46,53,53,56,55,51,51,93,44,91,45,56,48,46,56,55,51,49,53,44,50,55,46,54,52,50,50,56,56,93,44,91,45,56,49,46,49,52,50,49,54,52,44,50,55,46,54,52,51,50,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,49,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,55,53,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,50,57,52,52,56,44,51,52,46,57,56,55,53,49,52,93,44,91,45,56,52,46,49,48,51,54,51,44,51,52,46,55,50,55,56,51,55,93,44,91,45,56,52,46,49,53,56,48,51,53,44,51,52,46,54,52,56,50,52,51,93,44,91,45,56,52,46,48,51,54,50,55,54,44,51,52,46,54,52,50,48,56,55,93,44,91,45,56,51,46,57,51,57,48,48,55,44,51,52,46,55,52,48,56,53,57,93,44,91,45,56,51,46,56,53,54,53,48,54,44,51,52,46,55,50,50,49,57,49,93,44,91,45,56,51,46,55,56,48,51,52,54,44,51,52,46,55,57,50,57,48,53,93,44,91,45,56,51,46,56,48,52,57,54,50,44,51,52,46,56,57,53,57,51,52,93,44,91,45,56,51,46,57,51,54,51,57,53,44,51,52,46,57,56,55,53,54,52,93,44,91,45,56,52,46,48,48,53,49,51,50,44,51,52,46,57,56,55,49,55,53,93,44,91,45,56,52,46,49,50,57,52,52,56,44,51,52,46,57,56,55,53,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,108,97,99,107,32,72,97,119,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,48,48,57,44,34,98,101,100,115,34,58,54,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,52,51,44,52,50,46,53,53,53,56,53,52,93,44,91,45,57,50,46,53,51,51,53,49,44,52,50,46,50,57,55,48,48,49,93,44,91,45,57,50,46,50,57,56,55,57,50,44,52,50,46,50,57,55,53,50,55,93,44,91,45,57,50,46,48,54,52,55,54,54,44,52,50,46,50,57,55,50,53,57,93,44,91,45,57,50,46,48,56,49,54,54,49,44,52,50,46,54,52,50,48,53,54,93,44,91,45,57,50,46,53,53,52,52,57,50,44,52,50,46,54,52,50,51,49,52,93,44,91,45,57,50,46,53,53,52,51,44,52,50,46,53,53,53,56,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,48,51,34,44,34,78,65,77,69,34,58,34,83,97,98,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,56,52,52,54,49,44,51,49,46,53,54,57,52,49,57,93,44,91,45,57,51,46,57,56,51,50,51,57,44,51,49,46,52,54,54,49,49,52,93,44,91,45,57,52,46,48,52,52,49,53,52,44,51,49,46,52,48,57,57,55,57,93,44,91,45,57,52,46,48,51,57,48,51,52,44,51,49,46,49,51,52,50,55,49,93,44,91,45,57,51,46,57,49,49,49,50,54,44,51,49,46,49,53,56,48,55,49,93,44,91,45,57,51,46,54,48,48,51,48,56,44,51,49,46,49,55,54,49,53,56,93,44,91,45,57,51,46,54,56,55,53,49,49,44,51,49,46,51,49,48,56,49,51,93,44,91,45,57,51,46,54,57,50,54,51,49,44,51,49,46,52,51,55,49,57,50,93,44,91,45,57,51,46,56,51,52,57,49,56,44,51,49,46,53,56,54,50,49,50,93,44,91,45,57,51,46,57,56,52,52,54,49,44,51,49,46,53,54,57,52,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,50,49,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,56,53,54,51,55,44,51,57,46,48,53,53,49,57,55,93,44,91,45,56,51,46,50,55,48,56,49,55,44,51,57,46,48,49,53,55,57,49,93,44,91,45,56,51,46,50,49,50,49,48,55,44,51,56,46,57,54,48,49,52,56,93,44,91,45,56,50,46,56,48,55,48,57,44,51,56,46,57,52,56,48,55,51,93,44,91,45,56,50,46,55,56,53,56,57,49,44,51,57,46,49,54,56,55,54,57,93,44,91,45,56,51,46,51,53,51,53,51,49,44,51,57,46,49,57,55,53,56,53,93,44,91,45,56,51,46,51,56,53,54,51,55,44,51,57,46,48,53,53,49,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,84,117,115,99,97,108,111,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,50,49,51,44,34,98,101,100,115,34,58,49,48,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,56,51,55,53,50,49,44,51,51,46,49,53,51,54,51,55,93,44,91,45,56,55,46,56,51,50,50,51,51,44,51,51,46,48,49,55,50,53,56,93,44,91,45,56,55,46,55,49,53,55,48,57,44,51,51,46,48,48,54,56,50,52,93,44,91,45,56,55,46,52,50,49,57,51,54,44,51,51,46,48,48,51,51,55,57,93,44,91,45,56,55,46,51,49,56,53,51,57,44,51,51,46,48,48,54,49,55,57,93,44,91,45,56,55,46,50,56,49,57,52,53,44,51,51,46,49,51,51,48,54,93,44,91,45,56,55,46,48,54,53,55,51,56,44,51,51,46,50,52,54,57,48,55,93,44,91,45,56,55,46,49,55,57,54,51,56,44,51,51,46,51,50,49,49,49,50,93,44,91,45,56,55,46,50,56,52,51,54,51,44,51,51,46,52,52,48,53,55,56,93,44,91,45,56,55,46,50,54,54,57,50,51,44,51,51,46,53,49,50,57,50,57,93,44,91,45,56,55,46,51,49,56,53,51,50,44,51,51,46,53,56,55,51,57,51,93,44,91,45,56,55,46,52,50,51,55,48,49,44,51,51,46,54,48,50,48,57,54,93,44,91,45,56,55,46,54,51,49,55,49,56,44,51,51,46,54,48,57,56,51,51,93,44,91,45,56,55,46,54,54,54,54,54,49,44,51,51,46,53,50,49,54,54,55,93,44,91,45,56,55,46,56,52,48,54,56,51,44,51,51,46,53,50,52,56,51,57,93,44,91,45,56,55,46,56,51,55,53,50,49,44,51,51,46,49,53,51,54,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,87,105,108,99,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,57,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,55,50,50,48,54,44,51,50,46,50,54,52,57,49,57,93,44,91,45,56,55,46,53,50,49,57,52,54,44,51,50,46,49,51,50,56,49,54,93,44,91,45,56,55,46,54,50,52,48,48,53,44,51,50,46,49,51,50,51,52,53,93,44,91,45,56,55,46,54,54,55,55,54,57,44,51,49,46,57,57,49,51,53,53,93,44,91,45,56,55,46,54,50,48,49,49,50,44,51,49,46,56,50,55,49,50,51,93,44,91,45,56,55,46,53,48,48,57,51,44,51,49,46,56,50,57,50,53,49,93,44,91,45,56,54,46,57,48,54,56,57,57,44,51,49,46,56,51,48,54,50,56,93,44,91,45,56,54,46,56,53,55,53,56,51,44,51,49,46,57,54,50,49,54,55,93,44,91,45,56,54,46,57,48,54,57,53,54,44,51,50,46,48,52,55,57,55,93,44,91,45,56,55,46,49,55,55,56,54,44,51,50,46,48,52,55,53,49,52,93,44,91,45,56,55,46,51,50,53,54,52,52,44,51,50,46,49,57,54,50,55,50,93,44,91,45,56,55,46,52,55,50,50,48,54,44,51,50,46,50,54,52,57,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,48,54,56,55,50,44,51,51,46,54,55,55,54,48,53,93,44,91,45,56,57,46,55,56,54,56,57,44,51,51,46,54,55,54,55,50,55,93,44,91,45,56,57,46,55,56,53,50,50,55,44,51,51,46,52,49,54,50,55,53,93,44,91,45,56,57,46,54,52,54,51,49,52,44,51,51,46,52,48,50,53,52,52,93,44,91,45,56,57,46,54,52,53,50,56,44,51,51,46,50,56,53,53,49,53,93,44,91,45,56,57,46,52,53,51,56,48,56,44,51,51,46,50,56,53,57,52,50,93,44,91,45,56,57,46,52,53,52,48,53,44,51,51,46,52,51,51,50,93,44,91,45,56,57,46,51,56,49,48,57,50,44,51,51,46,52,54,48,51,48,55,93,44,91,45,56,57,46,53,48,54,52,57,54,44,51,51,46,52,53,57,56,48,54,93,44,91,45,56,57,46,53,48,54,56,55,50,44,51,51,46,54,55,55,54,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,75,101,97,114,110,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,53,50,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,55,57,50,52,56,44,52,48,46,54,54,48,53,52,49,93,44,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,44,91,45,57,56,46,55,50,54,56,50,55,44,52,48,46,51,53,48,51,57,56,93,44,91,45,57,56,46,55,50,51,57,52,56,44,52,48,46,51,53,48,51,57,49,93,44,91,45,57,56,46,55,50,52,51,56,55,44,52,48,46,54,56,57,55,55,50,93,44,91,45,57,56,46,57,48,54,48,57,54,44,52,48,46,54,53,50,55,50,50,93,44,91,45,57,57,46,49,55,57,50,52,56,44,52,48,46,54,54,48,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,72,105,116,99,104,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,51,50,51,51,53,51,44,52,48,46,51,53,48,53,53,51,93,44,91,45,49,48,49,46,51,50,53,53,49,52,44,52,48,46,48,48,50,55,48,50,93,44,91,45,49,48,48,46,55,53,56,56,51,44,52,48,46,48,48,50,51,48,50,93,44,91,45,49,48,48,46,55,53,56,52,51,53,44,52,48,46,51,52,57,53,48,55,93,44,91,45,49,48,48,46,55,55,55,51,55,54,44,52,48,46,51,52,57,52,54,54,93,44,91,45,49,48,49,46,51,50,51,51,53,51,44,52,48,46,51,53,48,53,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,78,101,119,32,67,97,115,116,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,68,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,53,49,51,51,44,34,98,101,100,115,34,58,50,48,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,53,57,52,56,56,44,51,57,46,56,51,55,53,50,53,93,44,91,45,55,53,46,55,56,56,53,57,54,44,51,57,46,55,50,50,49,57,57,93,44,91,45,55,53,46,55,54,54,53,57,52,44,51,57,46,51,55,55,53,54,51,93,44,91,45,55,53,46,55,54,48,48,55,52,44,51,57,46,50,57,54,56,49,57,93,44,91,45,55,53,46,53,55,52,52,50,57,44,51,57,46,51,49,51,54,49,49,93,44,91,45,55,53,46,52,56,49,51,54,44,51,57,46,51,56,55,53,53,53,93,44,91,45,55,53,46,53,54,48,53,51,56,44,51,57,46,52,53,53,54,52,53,93,44,91,45,55,53,46,53,49,50,55,55,44,51,57,46,53,55,56,50,57,93,44,91,45,55,53,46,53,53,56,55,55,51,44,51,57,46,54,50,57,57,56,55,93,44,91,45,55,53,46,52,48,53,52,56,57,44,51,57,46,55,57,54,51,54,56,93,44,91,45,55,53,46,52,49,53,48,54,50,44,51,57,46,56,48,49,57,49,57,93,44,91,45,55,53,46,53,55,57,57,50,54,44,51,57,46,56,51,56,56,54,50,93,44,91,45,55,53,46,53,57,51,48,57,57,44,51,57,46,56,51,55,55,50,51,93,44,91,45,55,53,46,53,57,52,56,56,44,51,57,46,56,51,55,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,84,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,56,48,44,34,98,101,100,115,34,58,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,51,57,56,55,56,49,44,52,51,46,57,50,50,56,57,93,44,91,45,49,49,49,46,51,57,57,55,54,53,44,52,51,46,54,50,49,57,55,54,93,44,91,45,49,49,49,46,50,52,51,56,51,57,44,52,51,46,54,50,49,56,53,51,93,44,91,45,49,49,49,46,50,48,55,53,54,49,44,52,51,46,53,52,51,56,53,55,93,44,91,45,49,49,49,46,48,52,53,52,55,51,44,52,51,46,53,48,49,48,53,49,93,44,91,45,49,49,49,46,48,52,55,49,53,55,44,52,51,46,57,56,51,52,53,57,93,44,91,45,49,49,49,46,49,56,55,50,53,54,44,52,51,46,57,51,50,49,49,52,93,44,91,45,49,49,49,46,51,57,56,55,56,49,44,52,51,46,57,50,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,82,111,99,107,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,50,55,53,44,34,98,101,100,115,34,58,52,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,54,53,54,50,44,52,49,46,55,50,56,57,50,56,93,44,91,45,57,48,46,51,52,51,50,50,56,44,52,49,46,53,56,55,56,51,51,93,44,91,45,57,48,46,52,54,49,52,51,50,44,52,49,46,53,50,51,53,51,51,93,44,91,45,57,48,46,55,56,54,50,56,50,44,52,49,46,52,53,50,56,56,56,93,44,91,45,57,49,46,48,52,56,50,53,57,44,52,49,46,52,48,57,55,52,56,93,44,91,45,57,49,46,48,55,50,48,52,53,44,52,49,46,51,51,51,53,57,57,93,44,91,45,57,49,46,48,55,50,48,55,44,52,49,46,51,51,51,51,54,49,93,44,91,45,57,48,46,52,51,51,55,51,55,44,52,49,46,51,50,54,57,56,57,93,44,91,45,57,48,46,52,51,49,57,51,44,52,49,46,52,53,54,56,51,52,93,44,91,45,57,48,46,49,56,53,53,51,54,44,52,49,46,53,56,52,53,55,52,93,44,91,45,57,48,46,50,52,50,51,56,44,52,49,46,55,56,50,57,54,52,93,44,91,45,57,48,46,51,49,54,53,54,50,44,52,49,46,55,50,56,57,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,108,111,117,99,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,49,54,49,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,49,50,51,48,53,44,51,55,46,52,51,49,51,48,57,93,44,91,45,55,54,46,54,53,56,54,53,49,44,51,55,46,51,56,48,49,51,57,93,44,91,45,55,54,46,53,49,54,48,53,55,44,51,55,46,50,52,56,55,53,50,93,44,91,45,55,54,46,51,48,52,53,44,51,55,46,50,55,56,51,54,49,93,44,91,45,55,54,46,52,52,52,55,51,54,44,51,55,46,52,49,56,53,51,57,93,44,91,45,55,54,46,52,51,55,53,54,49,44,51,55,46,53,49,52,51,54,93,44,91,45,55,54,46,54,53,52,48,55,54,44,51,55,46,54,48,51,49,55,52,93,44,91,45,55,54,46,55,49,50,51,48,53,44,51,55,46,52,51,49,51,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,83,101,118,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,55,48,51,51,49,44,51,52,46,49,57,48,49,56,51,93,44,91,45,57,52,46,52,55,55,50,57,57,44,51,51,46,57,52,48,57,51,50,93,44,91,45,57,52,46,49,56,49,56,49,44,51,51,46,55,56,56,56,53,50,93,44,91,45,57,51,46,57,53,56,56,50,56,44,51,51,46,55,53,48,57,57,52,93,44,91,45,57,52,46,48,53,50,57,52,51,44,51,51,46,56,56,54,48,56,50,93,44,91,45,57,52,46,48,57,56,53,48,49,44,51,52,46,49,57,49,50,48,51,93,44,91,45,57,52,46,50,52,51,55,51,57,44,51,52,46,49,57,50,53,48,49,93,44,91,45,57,52,46,52,55,48,51,51,49,44,51,52,46,49,57,48,49,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,56,52,44,34,98,101,100,115,34,58,49,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,56,49,53,51,50,44,52,48,46,57,49,48,57,50,53,93,44,91,45,56,54,46,53,56,49,55,51,57,44,52,48,46,55,51,53,55,54,53,93,44,91,45,56,54,46,51,55,51,53,50,49,44,52,48,46,54,57,50,52,54,93,44,91,45,56,54,46,51,55,52,52,49,55,44,52,48,46,53,54,49,51,54,49,93,44,91,45,56,54,46,49,54,53,48,50,52,44,52,48,46,53,54,50,54,52,57,93,44,91,45,56,54,46,49,54,57,48,49,50,44,52,48,46,57,48,57,56,51,54,93,44,91,45,56,54,46,52,54,56,53,48,57,44,52,48,46,57,48,57,56,56,57,93,44,91,45,56,54,46,53,56,49,53,51,50,44,52,48,46,57,49,48,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,80,111,119,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,49,51,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,50,51,54,57,54,56,44,52,50,46,54,50,53,50,53,52,93,44,91,45,49,49,51,46,48,48,50,55,57,50,44,52,50,46,53,56,56,48,48,51,93,44,91,45,49,49,50,46,57,57,57,57,54,53,44,52,50,46,51,50,55,52,50,55,93,44,91,45,49,49,50,46,54,53,52,48,50,56,44,52,50,46,51,50,56,56,55,50,93,44,91,45,49,49,50,46,54,53,51,57,56,57,44,52,50,46,52,49,54,49,54,57,93,44,91,45,49,49,50,46,52,57,55,56,52,57,44,52,50,46,52,49,53,57,57,56,93,44,91,45,49,49,50,46,52,49,57,56,50,53,44,52,50,46,53,48,51,48,51,56,93,44,91,45,49,49,50,46,51,56,57,52,49,56,44,52,50,46,54,50,52,51,56,50,93,44,91,45,49,49,50,46,52,57,54,57,49,44,52,50,46,55,51,51,48,49,51,93,44,91,45,49,49,50,46,53,49,53,53,49,57,44,52,50,46,57,48,57,57,55,53,93,44,91,45,49,49,50,46,53,55,57,50,56,55,44,52,50,46,57,55,50,52,53,49,93,44,91,45,49,49,50,46,55,53,48,53,54,50,44,52,50,46,57,53,49,53,50,56,93,44,91,45,49,49,50,46,56,49,54,53,55,56,44,52,50,46,56,54,51,50,51,49,93,44,91,45,49,49,51,46,48,48,55,55,54,44,52,50,46,56,54,51,48,53,49,93,44,91,45,49,49,51,46,48,48,55,55,49,50,44,52,51,46,49,49,48,57,51,51,93,44,91,45,49,49,51,46,50,52,51,52,55,56,44,52,51,46,49,49,48,57,52,54,93,44,91,45,49,49,51,46,50,51,54,57,54,56,44,52,50,46,54,50,53,50,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,55,55,49,50,57,51,44,52,48,46,53,54,50,48,56,50,93,44,91,45,56,54,46,54,57,52,54,54,53,44,52,48,46,52,51,50,49,53,54,93,44,91,45,56,54,46,51,55,53,55,54,50,44,52,48,46,52,51,49,56,53,49,93,44,91,45,56,54,46,51,55,52,52,49,55,44,52,48,46,53,54,49,51,54,49,93,44,91,45,56,54,46,51,55,51,53,50,49,44,52,48,46,54,57,50,52,54,93,44,91,45,56,54,46,53,56,49,55,51,57,44,52,48,46,55,51,53,55,54,53,93,44,91,45,56,54,46,55,52,55,55,54,52,44,52,48,46,55,51,55,53,52,93,44,91,45,56,54,46,55,55,49,50,57,51,44,52,48,46,53,54,50,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,80,104,105,108,97,100,101,108,112,104,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,53,53,50,50,44,34,98,101,100,115,34,58,55,53,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,50,55,54,52,56,50,44,51,57,46,57,55,54,57,53,57,93,44,91,45,55,53,46,50,49,49,52,54,51,44,51,57,46,56,54,55,48,48,52,93,44,91,45,55,53,46,49,51,57,56,51,50,44,51,57,46,56,56,56,51,49,55,93,44,91,45,55,53,46,48,53,57,57,49,51,44,51,57,46,57,57,49,53,50,57,93,44,91,45,55,52,46,57,55,51,57,56,49,44,52,48,46,48,52,56,53,57,53,93,44,91,45,55,53,46,48,49,53,48,54,54,44,52,48,46,49,51,55,57,57,50,93,44,91,45,55,53,46,49,48,57,52,51,49,44,52,48,46,48,52,53,56,55,52,93,44,91,45,55,53,46,50,50,51,54,49,44,52,48,46,48,57,50,57,48,55,93,44,91,45,55,53,46,50,55,54,52,56,50,44,51,57,46,57,55,54,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,97,107,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,50,57,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,53,53,48,55,53,56,44,52,52,46,48,55,57,52,48,51,93,44,91,45,49,48,56,46,52,50,57,53,54,51,44,52,51,46,57,48,51,51,53,53,93,44,91,45,49,48,56,46,49,55,51,54,49,55,44,52,51,46,56,49,56,57,53,51,93,44,91,45,49,48,55,46,57,53,54,52,52,56,44,52,51,46,56,49,56,54,54,54,93,44,91,45,49,48,55,46,57,53,54,53,55,55,44,52,51,46,55,51,51,52,52,54,93,44,91,45,49,48,55,46,55,49,53,56,55,54,44,52,51,46,55,51,51,51,52,51,93,44,91,45,49,48,55,46,53,57,53,49,53,55,44,52,51,46,54,52,54,52,50,55,93,44,91,45,49,48,55,46,53,57,53,49,48,53,44,52,51,46,53,48,49,51,57,55,93,44,91,45,49,48,55,46,53,51,52,56,57,55,44,52,51,46,53,48,49,51,54,50,93,44,91,45,49,48,55,46,49,49,48,55,51,52,44,52,51,46,53,48,48,50,56,54,93,44,91,45,49,48,55,46,49,52,54,56,48,56,44,52,52,46,49,54,53,54,54,54,93,44,91,45,49,48,56,46,53,53,48,53,54,50,44,52,52,46,49,54,56,52,53,53,93,44,91,45,49,48,56,46,53,53,48,55,53,56,44,52,52,46,48,55,57,52,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,97,109,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,52,55,44,34,98,101,100,115,34,58,49,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,57,49,51,51,54,44,51,54,46,53,49,48,54,55,55,93,44,91,45,55,54,46,50,51,56,50,52,52,44,51,54,46,51,55,49,53,56,56,93,44,91,45,55,54,46,48,54,56,54,48,53,44,51,54,46,50,49,54,53,57,93,44,91,45,55,54,46,48,50,50,54,48,55,44,51,54,46,48,57,54,55,50,53,93,44,91,45,55,53,46,57,48,54,50,57,53,44,51,54,46,48,56,53,56,55,55,93,44,91,45,55,53,46,56,56,55,57,56,52,44,51,54,46,49,54,51,51,49,49,93,44,91,45,55,53,46,57,54,57,54,50,53,44,51,54,46,51,48,54,51,49,50,93,44,91,45,55,54,46,49,49,52,48,54,57,44,51,54,46,51,53,55,52,57,56,93,44,91,45,55,54,46,51,49,51,51,48,51,44,51,54,46,53,53,48,53,50,93,44,91,45,55,54,46,52,57,49,52,57,54,44,51,54,46,53,53,48,54,52,56,93,44,91,45,55,54,46,53,52,49,57,54,54,44,51,54,46,53,53,48,54,53,51,93,44,91,45,55,54,46,52,57,49,51,51,54,44,51,54,46,53,49,48,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,84,111,109,112,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,57,54,50,44,34,98,101,100,115,34,58,50,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,54,54,53,52,51,44,52,50,46,54,50,51,52,53,55,93,44,91,45,55,54,46,54,57,54,54,53,53,44,52,50,46,53,52,54,55,57,93,44,91,45,55,54,46,54,57,49,52,48,54,44,52,50,46,50,56,52,51,48,55,93,44,91,45,55,54,46,54,49,57,51,48,51,44,52,50,46,50,56,50,56,53,51,93,44,91,45,55,54,46,53,51,56,51,52,57,44,52,50,46,50,56,49,55,53,53,93,44,91,45,55,54,46,52,49,53,51,48,53,44,52,50,46,51,49,56,51,54,56,93,44,91,45,55,54,46,50,53,48,49,52,57,44,52,50,46,50,57,54,54,55,54,93,44,91,45,55,54,46,50,53,51,51,53,57,44,52,50,46,52,48,55,53,54,56,93,44,91,45,55,54,46,50,54,53,53,56,52,44,52,50,46,54,50,51,53,56,56,93,44,91,45,55,54,46,54,54,54,53,52,51,44,52,50,46,54,50,51,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,52,50,52,44,34,98,101,100,115,34,58,52,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,48,56,48,52,49,44,51,52,46,52,57,50,55,54,53,93,44,91,45,57,50,46,50,51,51,51,55,54,44,51,52,46,48,54,50,51,49,50,93,44,91,45,57,49,46,57,53,51,55,57,57,44,51,52,46,48,54,52,49,52,49,93,44,91,45,57,49,46,55,52,52,57,57,44,51,52,46,48,57,52,48,50,49,93,44,91,45,57,49,46,55,50,55,50,55,54,44,51,52,46,49,55,52,48,57,51,93,44,91,45,57,49,46,52,52,53,54,49,52,44,51,52,46,48,56,48,49,52,55,93,44,91,45,57,49,46,53,52,48,49,55,56,44,51,52,46,50,50,52,53,57,57,93,44,91,45,57,49,46,55,49,49,55,57,53,44,51,52,46,50,51,51,57,49,57,93,44,91,45,57,49,46,55,48,53,49,56,53,44,51,52,46,52,56,50,54,55,93,44,91,45,57,50,46,48,50,57,57,57,54,44,51,52,46,52,56,57,51,53,50,93,44,91,45,57,50,46,50,48,56,48,52,49,44,51,52,46,52,57,50,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,52,53,54,49,52,44,51,52,46,48,56,48,49,52,55,93,44,91,45,57,49,46,55,50,55,50,55,54,44,51,52,46,49,55,52,48,57,51,93,44,91,45,57,49,46,55,52,52,57,57,44,51,52,46,48,57,52,48,50,49,93,44,91,45,57,49,46,57,53,51,55,57,57,44,51,52,46,48,54,52,49,52,49,93,44,91,45,57,49,46,57,55,53,57,55,52,44,51,51,46,55,57,49,55,56,55,93,44,91,45,57,49,46,53,53,55,54,52,56,44,51,51,46,55,56,51,51,56,52,93,44,91,45,57,49,46,53,52,56,54,54,56,44,51,51,46,57,55,54,55,57,57,93,44,91,45,57,49,46,52,50,49,55,49,53,44,51,52,46,48,49,52,52,55,50,93,44,91,45,57,49,46,52,52,53,54,49,52,44,51,52,46,48,56,48,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,86,101,114,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,49,54,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,48,54,53,51,44,52,51,46,55,50,53,51,51,52,93,44,91,45,57,49,46,50,53,55,56,51,57,44,52,51,46,55,50,53,54,54,49,93,44,91,45,57,49,46,50,54,56,55,52,56,44,52,51,46,54,49,53,51,52,56,93,44,91,45,57,49,46,50,49,55,55,48,54,44,52,51,46,53,48,48,53,53,93,44,91,45,57,49,46,50,48,53,53,53,44,52,51,46,52,50,50,57,52,57,93,44,91,45,57,48,46,54,54,56,53,54,49,44,52,51,46,52,50,50,57,57,52,93,44,91,45,57,48,46,54,55,49,54,53,50,44,52,51,46,53,53,50,56,53,54,93,44,91,45,57,48,46,51,49,49,48,54,57,44,52,51,46,53,53,51,57,57,49,93,44,91,45,57,48,46,51,49,50,52,48,52,44,52,51,46,54,52,48,57,56,56,93,44,91,45,57,48,46,51,49,50,49,57,52,44,52,51,46,55,51,49,52,55,57,93,44,91,45,57,48,46,57,49,48,54,53,51,44,52,51,46,55,50,53,51,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,73,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,50,49,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,53,53,48,55,51,44,51,55,46,53,56,56,48,57,50,93,44,91,45,57,48,46,55,54,56,54,57,53,44,51,55,46,54,48,51,48,49,49,93,44,91,45,57,48,46,55,55,50,57,52,57,44,51,55,46,51,55,51,54,53,57,93,44,91,45,57,48,46,55,51,53,52,53,51,44,51,55,46,50,55,49,48,52,93,44,91,45,57,48,46,53,52,57,55,50,57,44,51,55,46,51,49,55,53,57,52,93,44,91,45,57,48,46,53,51,53,48,49,54,44,51,55,46,54,52,51,54,52,49,93,44,91,45,57,48,46,54,52,55,56,55,52,44,51,55,46,54,52,50,56,48,57,93,44,91,45,57,48,46,54,52,53,49,51,53,44,51,55,46,55,51,52,56,49,51,93,44,91,45,57,49,46,49,48,48,48,49,55,44,51,55,46,55,52,48,48,49,50,93,44,91,45,57,49,46,49,53,51,51,52,53,44,51,55,46,54,57,55,51,52,93,44,91,45,57,49,46,49,53,53,48,55,51,44,51,55,46,53,56,56,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,51,34,44,34,78,65,77,69,34,58,34,72,111,112,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,50,52,48,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,48,56,53,57,51,44,51,51,46,51,55,55,49,57,93,44,91,45,57,53,46,53,56,49,49,55,53,44,51,51,46,51,53,56,57,55,55,93,44,91,45,57,53,46,55,50,57,48,57,52,44,51,51,46,51,48,53,52,50,56,93,44,91,45,57,53,46,56,54,49,55,55,56,44,51,51,46,50,49,57,51,51,93,44,91,45,57,53,46,56,54,50,53,50,49,44,51,50,46,57,55,57,53,55,49,93,44,91,45,57,53,46,54,54,53,51,56,57,44,51,50,46,57,54,48,52,51,52,93,44,91,45,57,53,46,51,48,56,57,53,55,44,51,50,46,57,54,50,53,55,50,93,44,91,45,57,53,46,51,48,56,53,57,51,44,51,51,46,51,55,55,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,98,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,55,52,50,54,44,34,98,101,100,115,34,58,49,53,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,56,48,57,51,54,57,44,52,50,46,55,55,56,56,54,57,93,44,91,45,55,52,46,49,56,48,50,55,52,44,52,50,46,55,50,57,57,55,57,93,44,91,45,55,52,46,50,53,52,51,48,51,44,52,50,46,52,48,56,50,48,55,93,44,91,45,55,51,46,55,56,51,55,50,49,44,52,50,46,52,54,52,50,51,49,93,44,91,45,55,51,46,55,54,49,50,54,53,44,52,50,46,54,49,48,51,55,57,93,44,91,45,55,51,46,54,55,54,55,54,50,44,52,50,46,55,56,51,50,55,55,93,44,91,45,55,51,46,56,48,57,51,54,57,44,52,50,46,55,55,56,56,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,53,34,44,34,78,65,77,69,34,58,34,72,111,117,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,57,53,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,51,57,50,55,57,44,51,49,46,53,48,52,48,53,54,93,44,91,45,57,53,46,54,53,53,53,52,53,44,51,49,46,51,50,57,54,52,93,44,91,45,57,53,46,55,50,53,50,50,54,44,51,49,46,50,55,49,48,56,52,93,44,91,45,57,53,46,55,54,52,52,49,44,51,49,46,48,57,52,50,49,49,93,44,91,45,57,53,46,54,53,54,52,56,55,44,51,49,46,48,55,57,51,51,57,93,44,91,45,57,53,46,54,55,50,53,57,55,44,51,48,46,57,55,54,50,55,56,93,44,91,45,57,53,46,54,49,55,56,55,50,44,51,48,46,57,51,48,52,49,56,93,44,91,45,57,53,46,52,51,52,55,56,49,44,51,49,46,48,53,56,48,57,56,93,44,91,45,57,52,46,57,53,56,49,49,44,51,49,46,51,56,54,57,51,93,44,91,45,57,53,46,48,48,51,51,52,53,44,51,49,46,52,50,53,55,49,93,44,91,45,57,53,46,49,52,57,49,57,56,44,51,49,46,53,54,56,56,48,55,93,44,91,45,57,53,46,50,55,51,50,48,51,44,51,49,46,53,57,50,56,56,54,93,44,91,45,57,53,46,54,53,49,55,54,52,44,51,49,46,53,52,49,55,57,49,93,44,91,45,57,53,46,55,51,57,50,55,57,44,51,49,46,53,48,52,48,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,57,48,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,50,49,50,55,57,44,51,57,46,56,52,57,57,56,50,93,44,91,45,56,49,46,50,51,55,51,49,54,44,51,57,46,56,54,55,56,50,56,93,44,91,45,56,49,46,51,49,51,53,57,49,44,51,57,46,56,54,57,52,55,49,93,44,91,45,56,49,46,51,49,57,49,50,53,44,51,57,46,55,48,55,51,54,93,44,91,45,56,49,46,50,56,51,48,55,53,44,51,57,46,54,48,53,55,57,54,93,44,91,45,56,49,46,48,51,56,55,49,50,44,51,57,46,53,51,57,56,56,54,93,44,91,45,56,48,46,57,52,51,55,56,50,44,51,57,46,54,48,54,57,50,54,93,44,91,45,56,48,46,56,51,51,53,49,51,44,51,57,46,55,50,48,56,49,50,93,44,91,45,56,48,46,56,50,49,50,55,57,44,51,57,46,56,52,57,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,82,117,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,48,50,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,56,53,48,56,55,44,51,56,46,54,57,54,53,51,55,93,44,91,45,57,57,46,53,56,52,55,57,52,44,51,56,46,51,52,57,51,56,54,93,44,91,45,57,57,46,48,51,50,52,48,56,44,51,56,46,51,52,56,51,51,52,93,44,91,45,57,57,46,48,51,50,57,55,49,44,51,56,46,54,57,54,55,53,57,93,44,91,45,57,57,46,48,52,50,54,50,54,44,51,56,46,54,57,54,56,48,55,93,44,91,45,57,57,46,53,56,53,48,56,55,44,51,56,46,54,57,54,53,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,50,55,54,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,57,50,53,54,51,44,52,48,46,50,49,52,56,48,54,93,44,91,45,56,55,46,48,57,49,48,48,54,44,51,57,46,57,53,51,48,48,57,93,44,91,45,56,55,46,48,48,57,52,55,55,44,51,57,46,56,54,54,55,48,53,93,44,91,45,56,54,46,54,57,53,49,50,55,44,51,57,46,56,54,52,56,52,53,93,44,91,45,56,54,46,54,57,53,48,55,49,44,51,57,46,57,50,50,55,55,93,44,91,45,56,54,46,54,57,53,56,48,52,44,52,48,46,49,55,56,54,53,55,93,44,91,45,56,54,46,54,57,53,54,51,55,44,52,48,46,50,49,52,51,54,55,93,44,91,45,56,55,46,48,57,50,53,54,51,44,52,48,46,50,49,52,56,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,83,116,97,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,51,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,49,54,52,50,44,51,55,46,51,56,57,49,57,93,44,91,45,49,48,49,46,53,53,54,54,48,54,44,51,55,46,51,56,56,52,56,53,93,44,91,45,49,48,49,46,53,50,53,56,49,44,51,55,46,51,56,56,51,57,50,93,44,91,45,49,48,49,46,53,50,55,48,54,51,44,51,55,46,55,51,54,51,49,52,93,44,91,45,49,48,50,46,48,52,50,49,53,53,44,51,55,46,55,51,56,53,52,49,93,44,91,45,49,48,50,46,48,52,49,53,56,53,44,51,55,46,54,52,52,50,56,50,93,44,91,45,49,48,50,46,48,52,49,54,52,50,44,51,55,46,51,56,57,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,50,50,49,44,51,55,46,55,49,54,52,50,93,44,91,45,56,51,46,56,50,51,48,51,44,51,55,46,54,53,57,56,55,50,93,44,91,45,56,51,46,57,48,53,53,55,44,51,55,46,53,52,50,56,53,54,93,44,91,45,56,51,46,56,56,53,50,54,50,44,51,55,46,53,49,55,54,56,56,93,44,91,45,56,51,46,53,55,57,49,56,54,44,51,55,46,53,48,54,50,52,57,93,44,91,45,56,51,46,53,50,50,51,48,56,44,51,55,46,54,51,56,53,49,54,93,44,91,45,56,51,46,55,48,55,57,55,52,44,51,55,46,55,49,54,52,54,51,93,44,91,45,56,51,46,55,50,50,49,44,51,55,46,55,49,54,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,75,111,111,99,104,105,99,104,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,56,56,52,51,56,44,52,56,46,54,50,55,53,57,55,93,44,91,45,57,51,46,50,48,55,52,50,54,44,52,56,46,54,52,50,52,49,57,93,44,91,45,57,51,46,52,54,53,57,56,50,44,52,56,46,53,56,55,50,56,55,93,44,91,45,57,51,46,52,54,55,53,48,50,44,52,56,46,53,52,53,54,54,49,93,44,91,45,57,51,46,55,57,52,52,53,53,44,52,56,46,53,49,53,57,56,54,93,44,91,45,57,51,46,56,52,52,48,49,51,44,52,56,46,54,50,57,51,56,52,93,44,91,45,57,52,46,50,52,52,51,57,56,44,52,56,46,54,53,51,52,50,49,93,44,91,45,57,52,46,52,51,48,50,55,51,44,52,56,46,55,48,48,57,48,57,93,44,91,45,57,52,46,52,50,56,55,48,50,44,52,56,46,51,54,55,51,51,51,93,44,91,45,57,52,46,52,49,56,53,52,51,44,52,55,46,56,52,53,56,49,54,93,44,91,45,57,51,46,55,55,54,49,55,51,44,52,55,46,56,52,54,52,48,52,93,44,91,45,57,51,46,55,55,53,55,55,50,44,52,55,46,56,57,56,57,53,93,44,91,45,57,51,46,48,56,49,49,53,56,44,52,55,46,56,57,49,56,55,93,44,91,45,57,51,46,48,57,54,52,56,56,44,52,56,46,48,54,55,56,50,54,93,44,91,45,57,51,46,48,56,56,52,51,56,44,52,56,46,54,50,55,53,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,66,101,120,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,53,56,54,53,44,34,98,101,100,115,34,58,55,52,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,54,53,53,50,44,50,57,46,54,57,48,55,48,57,93,44,91,45,57,56,46,56,48,52,55,54,51,44,50,57,46,50,53,48,54,57,51,93,44,91,45,57,56,46,52,48,55,51,51,54,44,50,57,46,49,49,52,52,51,53,93,44,91,45,57,56,46,49,51,52,49,55,49,44,50,57,46,52,52,49,55,53,49,93,44,91,45,57,56,46,51,49,48,57,50,56,44,50,57,46,53,57,52,52,55,51,93,44,91,45,57,56,46,51,56,48,49,54,49,44,50,57,46,55,48,51,57,50,57,93,44,91,45,57,56,46,53,52,51,55,49,56,44,50,57,46,55,53,50,48,53,50,93,44,91,45,57,56,46,54,52,54,49,50,52,44,50,57,46,55,52,53,49,56,49,93,44,91,45,57,56,46,55,55,56,55,56,50,44,50,57,46,55,50,48,49,54,55,93,44,91,45,57,56,46,56,48,54,53,53,50,44,50,57,46,54,57,48,55,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,111,117,108,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,49,48,51,48,44,34,98,101,100,115,34,58,56,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,54,53,51,51,50,49,44,52,48,46,50,54,48,52,53,55,93,44,91,45,49,48,53,46,54,51,56,50,57,50,44,52,48,46,48,52,52,51,50,54,93,44,91,45,49,48,53,46,54,55,53,55,57,56,44,51,57,46,57,51,50,52,52,53,93,44,91,45,49,48,53,46,51,57,55,56,52,57,44,51,57,46,57,49,50,56,56,54,93,44,91,45,49,48,53,46,49,52,55,49,52,51,44,51,57,46,57,49,51,56,56,57,93,44,91,45,49,48,53,46,48,53,50,56,50,51,44,52,48,46,48,48,48,50,54,93,44,91,45,49,48,53,46,48,53,53,48,56,57,44,52,48,46,50,54,49,55,57,51,93,44,91,45,49,48,53,46,54,53,51,51,50,49,44,52,48,46,50,54,48,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,50,52,55,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,54,55,48,57,55,44,51,54,46,49,55,52,54,56,56,93,44,91,45,56,51,46,53,57,55,55,54,54,44,51,54,46,49,54,52,49,56,50,93,44,91,45,56,51,46,54,54,55,52,54,44,51,54,46,48,56,48,53,56,55,93,44,91,45,56,51,46,54,55,51,50,57,55,44,51,54,46,48,51,56,52,56,54,93,44,91,45,56,51,46,52,55,52,57,48,49,44,51,53,46,57,50,50,56,57,51,93,44,91,45,56,51,46,51,49,48,55,56,50,44,51,53,46,56,57,53,56,52,54,93,44,91,45,56,51,46,50,51,52,53,56,53,44,51,54,46,48,56,53,48,57,52,93,44,91,45,56,51,46,50,57,51,54,56,57,44,51,54,46,49,51,56,49,57,51,93,44,91,45,56,51,46,52,54,55,48,57,55,44,51,54,46,49,55,52,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,97,121,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,57,56,48,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,50,56,49,55,44,51,54,46,53,49,48,50,52,93,44,91,45,57,53,46,52,51,53,54,49,44,51,54,46,53,49,48,49,54,93,44,91,45,57,53,46,52,51,57,57,55,44,51,54,46,48,55,53,50,93,44,91,45,57,53,46,50,48,55,57,52,54,44,51,54,46,48,55,52,55,48,56,93,44,91,45,57,53,46,49,49,56,53,44,51,54,46,49,54,49,54,51,93,44,91,45,57,53,46,48,49,49,51,48,57,44,51,54,46,49,54,49,55,54,51,93,44,91,45,57,53,46,48,48,53,55,51,44,51,54,46,53,48,57,56,57,93,44,91,45,57,53,46,51,50,56,49,55,44,51,54,46,53,49,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,87,97,116,111,110,119,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,55,51,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,53,57,56,48,51,44,52,52,46,49,48,56,48,49,54,93,44,91,45,57,52,46,56,53,57,51,56,56,44,52,51,46,56,52,56,48,57,51,93,44,91,45,57,52,46,56,53,52,52,52,52,44,52,51,46,56,52,56,48,57,57,93,44,91,45,57,52,46,51,54,56,57,55,52,44,52,51,46,56,52,56,48,52,55,93,44,91,45,57,52,46,51,54,56,56,53,44,52,52,46,49,48,56,54,57,56,93,44,91,45,57,52,46,56,53,57,56,48,51,44,52,52,46,49,48,56,48,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,108,97,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,57,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,57,56,57,50,53,56,44,52,51,46,56,53,56,53,54,51,93,44,91,45,49,49,52,46,55,48,50,48,53,44,52,51,46,56,48,53,52,49,51,93,44,91,45,49,49,52,46,54,56,51,49,52,44,52,51,46,53,57,51,51,54,55,93,44,91,45,49,49,52,46,53,49,50,52,51,56,44,52,51,46,52,54,48,52,53,52,93,44,91,45,49,49,52,46,53,51,52,52,56,56,44,52,51,46,51,51,51,51,56,51,93,44,91,45,49,49,52,46,51,57,52,54,48,54,44,52,51,46,51,50,54,52,54,55,93,44,91,45,49,49,52,46,51,55,52,57,54,50,44,52,51,46,49,57,57,54,52,93,44,91,45,49,49,51,46,55,49,52,54,52,50,44,52,51,46,49,57,57,55,56,51,93,44,91,45,49,49,51,46,52,49,51,56,54,55,44,52,51,46,49,57,57,56,53,57,93,44,91,45,49,49,51,46,52,49,51,49,51,56,44,52,50,46,56,52,57,49,54,57,93,44,91,45,49,49,51,46,52,55,50,49,53,53,44,52,50,46,56,52,57,50,48,49,93,44,91,45,49,49,51,46,52,55,50,49,55,55,44,52,50,46,54,54,57,51,53,50,93,44,91,45,49,49,51,46,51,55,53,48,54,50,44,52,50,46,54,56,55,56,51,50,93,44,91,45,49,49,51,46,50,51,54,57,54,56,44,52,50,46,54,50,53,50,53,52,93,44,91,45,49,49,51,46,50,52,51,52,55,56,44,52,51,46,49,49,48,57,52,54,93,44,91,45,49,49,51,46,48,48,55,55,49,50,44,52,51,46,49,49,48,57,51,51,93,44,91,45,49,49,51,46,48,48,55,51,49,56,44,52,51,46,50,56,52,55,55,56,93,44,91,45,49,49,51,46,51,54,49,57,53,56,44,52,51,46,50,56,52,54,55,56,93,44,91,45,49,49,51,46,51,54,49,57,49,44,52,51,46,51,54,55,49,54,93,44,91,45,49,49,51,46,54,51,53,50,51,44,52,51,46,51,54,55,53,52,54,93,44,91,45,49,49,51,46,54,51,52,51,51,53,44,52,51,46,52,57,55,51,48,56,93,44,91,45,49,49,51,46,55,48,49,49,53,51,44,52,51,46,53,56,52,53,53,51,93,44,91,45,49,49,51,46,55,57,56,52,52,49,44,52,51,46,53,54,57,50,49,55,93,44,91,45,49,49,51,46,57,56,54,52,57,52,44,52,51,46,55,50,53,51,57,93,44,91,45,49,49,52,46,49,51,50,55,51,50,44,52,51,46,55,53,48,55,53,55,93,44,91,45,49,49,52,46,50,57,50,52,56,52,44,52,51,46,56,56,55,48,54,50,93,44,91,45,49,49,52,46,57,55,49,51,53,49,44,52,51,46,57,51,56,51,48,56,93,44,91,45,49,49,52,46,57,56,57,50,53,56,44,52,51,46,56,53,56,53,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,32,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,52,54,55,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,49,51,49,49,48,57,44,51,48,46,52,48,51,48,53,55,93,44,91,45,57,51,46,48,51,48,57,53,53,44,51,48,46,51,55,57,51,57,93,44,91,45,57,50,46,57,57,54,51,55,49,44,51,48,46,48,51,56,52,55,57,93,44,91,45,57,50,46,55,51,56,54,48,52,44,51,48,46,48,51,55,51,50,51,93,44,91,45,57,50,46,54,50,53,52,56,52,44,51,48,46,48,57,50,51,51,93,44,91,45,57,50,46,54,51,49,57,56,55,44,51,48,46,52,56,49,49,52,55,93,44,91,45,57,50,46,54,51,48,51,52,55,44,51,48,46,52,56,55,56,55,51,93,44,91,45,57,50,46,55,55,53,53,53,52,44,51,48,46,52,51,55,54,53,54,93,44,91,45,57,51,46,49,51,49,49,53,53,44,51,48,46,52,50,51,54,49,50,93,44,91,45,57,51,46,49,51,49,49,48,57,44,51,48,46,52,48,51,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,83,117,108,108,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,55,52,50,53,50,44,52,52,46,56,57,55,53,48,51,93,44,91,45,49,48,48,46,52,48,52,55,53,51,44,52,52,46,56,57,55,54,57,53,93,44,91,45,49,48,48,46,53,52,51,52,56,52,44,52,52,46,55,54,49,48,56,55,93,44,91,45,49,48,48,46,55,49,55,54,52,52,44,52,52,46,55,55,48,57,51,93,44,91,45,49,48,48,46,54,49,51,56,48,53,44,52,52,46,55,48,55,49,51,53,93,44,91,45,49,48,48,46,54,52,48,48,54,49,44,52,52,46,53,56,51,55,50,51,93,44,91,45,49,48,48,46,53,50,54,52,57,56,44,52,52,46,53,52,55,52,50,50,93,44,91,45,57,57,46,54,55,54,51,57,56,44,52,52,46,53,52,56,49,49,49,93,44,91,45,57,57,46,54,55,52,50,53,50,44,52,52,46,56,57,55,53,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,101,110,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,51,52,49,55,44,34,98,101,100,115,34,58,50,54,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,53,51,50,52,54,44,51,57,46,55,57,49,48,54,51,93,44,91,45,49,48,53,46,48,53,51,50,53,54,44,51,57,46,54,54,55,55,56,53,93,44,91,45,49,48,53,46,48,57,54,57,48,57,44,51,57,46,54,49,52,52,50,51,93,44,91,45,49,48,53,46,48,53,51,52,51,55,44,51,57,46,54,50,48,57,56,52,93,44,91,45,49,48,53,46,48,53,51,52,51,57,44,51,57,46,54,50,52,51,56,55,93,44,91,45,49,48,53,46,48,53,51,51,51,44,51,57,46,54,50,55,57,56,57,93,44,91,45,49,48,53,46,48,53,51,52,53,55,44,51,57,46,54,50,57,53,50,54,93,44,91,45,49,48,53,46,48,53,51,52,49,49,44,51,57,46,54,51,49,53,56,54,93,44,91,45,49,48,52,46,56,56,52,54,52,54,44,51,57,46,55,52,48,49,53,54,93,44,91,45,49,48,53,46,48,53,51,50,52,54,44,51,57,46,55,57,49,48,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,49,56,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,48,55,48,55,52,44,51,52,46,52,49,56,51,57,93,44,91,45,57,54,46,49,52,53,52,50,51,44,51,52,46,52,49,56,51,49,51,93,44,91,45,57,54,46,48,57,50,48,49,50,44,51,52,46,53,48,54,48,53,57,93,44,91,45,57,54,46,48,57,50,48,52,51,44,51,52,46,54,56,48,53,53,54,93,44,91,45,57,54,46,48,57,50,48,48,49,44,51,52,46,55,54,55,52,55,57,93,44,91,45,57,54,46,52,48,54,52,56,51,44,51,52,46,55,54,55,51,50,56,93,44,91,45,57,54,46,53,49,50,49,55,49,44,51,52,46,54,56,48,48,54,53,93,44,91,45,57,54,46,53,49,51,55,56,55,44,51,52,46,53,48,53,51,57,54,93,44,91,45,57,54,46,52,48,55,48,55,52,44,51,52,46,52,49,56,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,56,49,57,52,44,52,53,46,55,56,54,57,56,50,93,44,91,45,49,48,52,46,57,56,55,51,49,56,44,52,53,46,51,53,50,48,52,93,44,91,45,49,48,53,46,48,51,56,50,48,53,44,52,53,46,51,53,50,48,51,53,93,44,91,45,49,48,53,46,48,51,56,50,52,57,44,52,53,46,48,48,48,49,48,54,93,44,91,45,49,48,52,46,48,53,55,56,55,57,44,52,52,46,57,57,55,54,48,53,93,44,91,45,49,48,52,46,48,52,48,48,48,52,44,52,53,46,50,49,50,56,57,49,93,44,91,45,49,48,52,46,48,52,52,49,57,52,44,52,53,46,56,56,49,57,55,53,93,44,91,45,49,48,52,46,49,51,52,56,52,50,44,52,53,46,57,54,56,56,51,51,93,44,91,45,49,48,52,46,51,57,48,56,55,54,44,52,53,46,57,55,48,51,54,51,93,44,91,45,49,48,52,46,51,57,48,55,52,52,44,52,54,46,48,53,52,56,50,54,93,44,91,45,49,48,52,46,53,49,54,49,50,54,44,52,54,46,49,51,54,49,57,54,93,44,91,45,49,48,52,46,56,56,53,52,57,53,44,52,54,46,49,51,54,53,57,53,93,44,91,45,49,48,52,46,57,51,57,50,48,53,44,52,54,46,49,51,54,53,55,53,93,44,91,45,49,48,52,46,57,51,57,50,56,57,44,52,53,46,55,56,54,57,54,52,93,44,91,45,49,48,52,46,57,56,49,57,52,44,52,53,46,55,56,54,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,54,49,34,44,34,78,65,77,69,34,58,34,85,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,52,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,51,48,49,50,49,50,44,51,49,46,48,56,54,50,49,50,93,44,91,45,49,48,49,46,55,55,54,49,57,49,44,51,49,46,48,55,57,55,56,52,93,44,91,45,49,48,49,46,55,55,53,56,48,50,44,51,49,46,54,53,49,51,49,57,93,44,91,45,49,48,50,46,50,56,55,51,52,53,44,51,49,46,54,53,49,50,55,54,93,44,91,45,49,48,50,46,51,49,56,48,53,44,51,49,46,54,53,49,51,50,55,93,44,91,45,49,48,50,46,51,48,49,50,49,50,44,51,49,46,48,56,54,50,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,105,98,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,57,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,52,51,54,57,49,44,51,56,46,52,49,52,51,56,55,93,44,91,45,56,55,46,56,53,49,49,51,44,51,56,46,50,55,53,49,50,93,44,91,45,56,55,46,57,56,55,57,49,49,44,51,56,46,50,53,54,57,53,55,93,44,91,45,56,55,46,57,56,51,55,51,50,44,51,56,46,50,51,48,51,53,52,93,44,91,45,56,55,46,55,57,57,49,54,57,44,51,56,46,50,50,56,53,56,93,44,91,45,56,55,46,54,56,56,51,55,52,44,51,56,46,49,54,56,52,49,57,93,44,91,45,56,55,46,52,54,55,50,56,52,44,51,56,46,49,54,53,52,48,51,93,44,91,45,56,55,46,51,49,54,56,57,51,44,51,56,46,50,52,54,48,55,55,93,44,91,45,56,55,46,51,49,53,57,51,44,51,56,46,51,55,53,48,52,56,93,44,91,45,56,55,46,52,48,55,53,56,51,44,51,56,46,51,55,53,53,48,49,93,44,91,45,56,55,46,52,54,50,56,57,50,44,51,56,46,53,51,51,53,49,57,93,44,91,45,56,55,46,55,52,51,54,57,49,44,51,56,46,52,49,52,51,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,75,105,109,98,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,55,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,51,55,55,54,50,44,52,49,46,51,57,52,54,51,51,93,44,91,45,49,48,52,46,48,53,50,50,56,55,44,52,49,46,51,57,51,50,49,52,93,44,91,45,49,48,52,46,48,53,51,50,52,57,44,52,49,46,48,48,49,52,48,54,93,44,91,45,49,48,51,46,53,55,51,55,55,52,44,52,49,46,48,48,49,55,49,54,93,44,91,45,49,48,51,46,51,56,50,52,57,50,44,52,49,46,48,48,50,50,53,50,93,44,91,45,49,48,51,46,51,55,55,54,50,44,52,49,46,51,57,52,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,75,101,110,100,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,54,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,54,49,57,53,50,44,52,49,46,55,50,52,54,53,50,93,44,91,45,56,56,46,54,48,49,57,51,51,44,52,49,46,55,49,57,53,54,51,93,44,91,45,56,56,46,54,48,50,50,52,44,52,49,46,54,51,49,51,56,57,93,44,91,45,56,56,46,53,57,53,57,54,49,44,52,49,46,52,53,55,49,50,57,93,44,91,45,56,56,46,50,53,50,50,51,49,44,52,49,46,52,54,51,48,54,54,93,44,91,45,56,56,46,50,54,49,50,55,53,44,52,49,46,55,50,52,54,53,54,93,44,91,45,56,56,46,50,54,49,57,53,50,44,52,49,46,55,50,52,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,68,105,115,116,114,105,99,116,32,111,102,32,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,68,105,115,116,114,105,99,116,32,111,102,32,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,68,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,52,57,56,44,34,98,101,100,115,34,58,52,49,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,48,48,50,52,51,54,44,51,56,46,57,54,53,54,55,51,93,44,91,45,55,55,46,49,49,57,55,53,57,44,51,56,46,57,51,52,51,52,51,93,44,91,45,55,55,46,48,52,56,48,50,44,51,56,46,56,52,49,50,54,49,93,44,91,45,55,55,46,48,51,57,48,48,54,44,51,56,46,55,57,49,54,52,53,93,44,91,45,55,54,46,57,48,57,51,57,51,44,51,56,46,56,57,50,56,53,50,93,44,91,45,55,55,46,48,48,50,52,51,54,44,51,56,46,57,54,53,54,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,77,111,110,116,114,111,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,54,56,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,51,55,56,54,57,56,44,51,56,46,54,54,56,48,57,55,93,44,91,45,49,48,56,46,51,55,57,49,51,54,44,51,56,46,52,57,57,57,56,55,93,44,91,45,49,48,57,46,48,54,48,49,49,57,44,51,56,46,52,57,57,57,56,57,93,44,91,45,49,48,57,46,48,52,50,53,56,51,44,51,56,46,49,53,51,48,50,56,93,44,91,45,49,48,55,46,57,54,53,55,56,57,44,51,56,46,49,53,50,51,50,56,93,44,91,45,49,48,55,46,57,51,55,53,56,56,44,51,56,46,50,49,56,57,57,50,93,44,91,45,49,48,56,46,48,56,54,54,48,52,44,51,56,46,50,53,53,50,48,50,93,44,91,45,49,48,56,46,49,51,50,51,56,44,51,56,46,51,51,49,53,55,51,93,44,91,45,49,48,55,46,54,51,53,54,57,55,44,51,56,46,51,51,50,49,52,56,93,44,91,45,49,48,55,46,54,51,53,48,52,44,51,56,46,51,48,49,56,57,54,93,44,91,45,49,48,55,46,53,48,48,48,50,44,51,56,46,51,48,49,57,50,54,93,44,91,45,49,48,55,46,53,48,48,54,53,53,44,51,56,46,54,54,56,53,53,51,93,44,91,45,49,48,56,46,51,55,56,54,57,56,44,51,56,46,54,54,56,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,87,114,105,103,104,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,55,52,53,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,54,48,56,50,49,44,52,53,46,50,56,51,57,52,49,93,44,91,45,57,52,46,50,53,54,48,55,52,44,52,52,46,57,55,57,52,54,53,93,44,91,45,57,52,46,48,49,50,50,51,54,44,52,52,46,57,55,56,55,49,50,93,44,91,45,57,51,46,55,54,55,51,54,55,44,52,52,46,57,55,55,57,54,52,93,44,91,45,57,51,46,55,54,54,56,48,56,44,52,53,46,48,53,55,51,49,50,93,44,91,45,57,51,46,54,53,56,57,49,55,44,52,53,46,49,57,51,53,53,49,93,44,91,45,57,51,46,53,50,49,54,53,51,44,52,53,46,50,52,54,54,49,56,93,44,91,45,57,51,46,53,55,57,51,57,44,52,53,46,50,57,50,49,50,50,93,44,91,45,57,51,46,55,53,54,54,49,44,52,53,46,50,57,52,55,50,49,93,44,91,45,57,52,46,48,52,55,51,50,55,44,52,53,46,52,50,50,56,54,49,93,44,91,45,57,52,46,49,49,54,55,54,53,44,52,53,46,51,50,56,48,49,57,93,44,91,45,57,52,46,50,54,48,56,50,49,44,52,53,46,50,56,51,57,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,75,101,110,111,115,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,51,51,48,44,34,98,101,100,115,34,58,51,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,52,51,56,57,57,44,52,50,46,54,54,51,55,50,57,93,44,91,45,56,56,46,49,56,56,51,48,54,44,52,50,46,54,54,57,55,48,57,93,44,91,45,56,56,46,51,48,53,56,57,49,44,52,50,46,54,49,48,56,49,55,93,44,91,45,56,56,46,51,48,52,54,57,50,44,52,50,46,52,57,52,54,49,56,93,44,91,45,56,56,46,49,57,57,51,56,57,44,52,50,46,52,57,53,49,51,51,93,44,91,45,56,55,46,48,49,57,57,51,53,44,52,50,46,52,57,51,52,57,56,93,44,91,45,56,55,46,48,52,51,56,57,57,44,52,50,46,54,54,51,55,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,69,97,103,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,51,53,55,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,48,51,51,57,54,56,44,51,57,46,57,49,56,57,49,51,93,44,91,45,49,48,55,46,49,49,51,54,55,50,44,51,57,46,57,49,57,49,49,50,93,44,91,45,49,48,55,46,49,49,51,52,52,54,44,51,57,46,51,54,54,48,54,54,93,44,91,45,49,48,54,46,52,50,54,52,56,55,44,51,57,46,51,54,49,56,55,49,93,44,91,45,49,48,54,46,50,48,54,55,51,50,44,51,57,46,51,55,57,54,51,54,93,44,91,45,49,48,54,46,50,52,56,50,57,53,44,51,57,46,53,52,52,50,53,49,93,44,91,45,49,48,54,46,49,55,54,49,49,53,44,51,57,46,54,49,52,50,50,49,93,44,91,45,49,48,54,46,51,56,53,52,55,56,44,51,57,46,55,54,55,49,54,52,93,44,91,45,49,48,54,46,52,51,52,53,48,56,44,51,57,46,57,50,52,57,49,52,93,44,91,45,49,48,54,46,54,50,54,53,54,57,44,51,57,46,57,50,52,55,56,53,93,44,91,45,49,48,55,46,48,51,51,57,54,56,44,51,57,46,57,49,56,57,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,83,97,110,32,70,114,97,110,99,105,115,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,48,48,52,52,44,34,98,101,100,115,34,58,51,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,50,50,46,54,49,50,50,56,53,44,51,55,46,56,49,53,50,50,52,93,44,91,45,49,50,50,46,53,55,53,49,56,57,44,51,55,46,55,48,54,55,50,49,93,44,91,45,49,50,50,46,50,56,49,55,56,44,51,55,46,55,48,56,50,51,93,44,91,45,49,50,50,46,51,55,51,55,56,50,44,51,55,46,56,56,51,55,50,53,93,44,91,45,49,50,50,46,52,51,50,50,56,51,44,51,55,46,57,50,57,56,50,52,93,44,91,45,49,50,50,46,52,49,56,54,55,51,44,51,55,46,56,53,50,53,48,53,93,44,91,45,49,50,50,46,54,49,50,50,56,53,44,51,55,46,56,49,53,50,50,52,93,93,93,44,91,91,91,45,49,50,51,46,49,55,51,56,50,53,44,51,55,46,55,55,53,55,50,55,93,44,91,45,49,50,51,46,48,48,48,57,49,50,44,51,55,46,54,51,57,57,51,93,44,91,45,49,50,50,46,57,52,57,57,56,53,44,51,55,46,55,51,50,49,56,55,93,44,91,45,49,50,51,46,48,55,48,52,57,52,44,51,55,46,56,49,51,56,51,93,44,91,45,49,50,51,46,49,55,51,56,50,53,44,51,55,46,55,55,53,55,50,55,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,83,97,110,32,77,105,103,117,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,49,57,57,50,44,51,55,46,56,56,49,48,56,51,93,44,91,45,49,48,56,46,56,49,54,55,49,44,51,55,46,56,57,53,53,51,56,93,44,91,45,49,48,56,46,50,53,54,52,57,56,44,51,55,46,56,57,52,54,48,55,93,44,91,45,49,48,56,46,50,48,57,48,57,51,44,51,55,46,56,50,48,57,51,54,93,44,91,45,49,48,55,46,57,56,57,50,48,56,44,51,55,46,56,53,54,54,52,93,44,91,45,49,48,55,46,56,54,48,56,52,53,44,51,55,46,55,55,53,53,49,55,93,44,91,45,49,48,55,46,55,51,56,50,56,51,44,51,55,46,57,48,53,52,51,50,93,44,91,45,49,48,55,46,55,57,53,52,54,57,44,51,55,46,57,56,56,53,50,93,44,91,45,49,48,55,46,57,48,48,49,57,51,44,51,56,46,48,50,54,50,52,57,93,44,91,45,49,48,55,46,57,54,53,55,56,57,44,51,56,46,49,53,50,51,50,56,93,44,91,45,49,48,57,46,48,52,50,53,56,51,44,51,56,46,49,53,51,48,50,56,93,44,91,45,49,48,57,46,48,52,49,57,57,50,44,51,55,46,56,56,49,48,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,48,34,44,34,78,65,77,69,34,58,34,65,110,99,104,111,114,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,54,49,49,50,44,34,98,101,100,115,34,58,49,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,56,46,52,54,50,52,55,49,44,54,49,46,52,50,54,50,54,55,93,44,91,45,49,52,57,46,49,56,48,48,54,50,44,54,49,46,52,50,54,50,53,93,44,91,45,49,52,57,46,51,53,57,52,52,44,54,49,46,52,56,52,48,50,53,93,44,91,45,49,52,57,46,55,52,56,51,54,57,44,54,49,46,51,57,55,51,55,49,93,44,91,45,49,52,57,46,57,56,55,52,57,53,44,54,49,46,50,50,52,48,54,52,93,44,91,45,49,53,48,46,52,50,52,49,52,56,44,54,49,46,49,54,54,51,48,56,93,44,91,45,49,53,48,46,50,52,55,55,52,54,44,54,49,46,48,55,57,54,51,55,93,44,91,45,49,53,48,46,48,54,57,50,51,56,44,54,49,46,48,55,57,54,51,54,93,44,91,45,49,52,57,46,51,53,57,51,57,57,44,54,48,46,57,48,54,51,51,93,44,91,45,49,52,57,46,48,51,52,48,56,44,54,48,46,56,52,56,53,51,52,93,44,91,45,49,52,57,46,48,51,55,55,52,49,44,54,48,46,55,51,50,57,56,55,93,44,91,45,49,52,56,46,55,52,53,54,49,56,44,54,48,46,55,51,51,48,48,55,93,44,91,45,49,52,56,46,55,51,56,51,54,51,44,54,48,46,56,52,56,53,52,54,93,44,91,45,49,52,56,46,52,55,50,48,54,53,44,54,48,46,56,52,56,53,50,93,44,91,45,49,52,56,46,52,54,50,52,55,49,44,54,49,46,52,50,54,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,74,111,104,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,53,48,51,44,34,98,101,100,115,34,58,51,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,50,48,49,56,53,44,51,48,46,50,53,50,57,50,93,44,91,45,56,49,46,52,51,54,57,50,57,44,51,48,46,50,53,50,51,51,53,93,44,91,45,56,49,46,52,51,51,55,51,55,44,51,48,46,49,48,54,48,50,56,93,44,91,45,56,49,46,54,56,48,50,49,53,44,51,48,46,49,50,49,50,52,93,44,91,45,56,49,46,54,56,56,56,55,54,44,51,48,46,48,50,56,53,54,54,93,44,91,45,56,49,46,54,49,48,49,52,54,44,50,57,46,57,55,48,50,51,53,93,44,91,45,56,49,46,53,56,49,50,48,55,44,50,57,46,56,52,48,49,55,54,93,44,91,45,56,49,46,53,50,53,50,51,44,50,57,46,55,53,57,52,57,55,93,44,91,45,56,49,46,53,50,51,54,54,44,50,57,46,54,50,50,52,51,50,93,44,91,45,56,49,46,51,50,52,48,53,57,44,50,57,46,54,50,53,54,49,93,44,91,45,56,49,46,49,53,48,56,49,55,44,50,57,46,54,55,49,48,56,55,93,44,91,45,56,49,46,50,48,53,49,55,55,44,50,57,46,56,50,50,52,51,51,93,44,91,45,56,49,46,51,50,48,49,56,53,44,51,48,46,50,53,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,104,111,99,116,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,50,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,56,49,48,57,50,44,51,51,46,52,54,48,51,48,55,93,44,91,45,56,57,46,52,53,52,48,53,44,51,51,46,52,51,51,50,93,44,91,45,56,57,46,52,53,51,56,48,56,44,51,51,46,50,56,53,57,52,50,93,44,91,45,56,57,46,51,49,54,52,48,56,44,51,51,46,50,56,53,53,53,54,93,44,91,45,56,57,46,51,49,55,56,53,53,44,51,51,46,49,48,56,56,55,49,93,44,91,45,56,57,46,50,49,51,57,50,49,44,51,51,46,49,48,57,52,48,50,93,44,91,45,56,57,46,50,49,51,52,50,50,44,51,51,46,49,57,55,53,52,51,93,44,91,45,56,57,46,49,48,56,57,44,51,51,46,49,57,56,48,53,57,93,44,91,45,56,57,46,48,56,56,50,53,53,44,51,51,46,50,56,54,48,48,51,93,44,91,45,56,57,46,48,56,56,52,52,54,44,51,51,46,53,51,51,50,48,50,93,44,91,45,56,57,46,50,50,50,48,51,57,44,51,51,46,53,50,55,50,52,53,93,44,91,45,56,57,46,51,56,49,48,57,50,44,51,51,46,52,54,48,51,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,71,114,117,110,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,54,52,48,50,49,44,52,48,46,49,51,50,57,48,57,93,44,91,45,57,51,46,55,54,49,57,55,51,44,51,57,46,57,53,57,53,53,50,93,44,91,45,57,51,46,51,54,49,57,53,55,44,51,57,46,57,54,55,54,48,54,93,44,91,45,57,51,46,51,54,49,57,53,49,44,52,48,46,48,51,51,48,57,56,93,44,91,45,57,51,46,51,54,55,50,49,52,44,52,48,46,50,54,54,51,49,52,93,44,91,45,57,51,46,55,54,51,51,50,52,44,52,48,46,50,54,51,57,56,56,93,44,91,45,57,51,46,55,54,52,48,50,49,44,52,48,46,49,51,50,57,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,52,51,53,48,55,44,52,52,46,49,54,55,48,56,56,93,44,91,45,56,54,46,48,51,55,56,56,52,44,52,51,46,56,49,53,54,49,49,93,44,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,44,91,45,56,53,46,53,54,52,53,53,52,44,52,52,46,49,54,52,56,54,49,93,44,91,45,56,53,46,56,50,49,49,56,54,44,52,52,46,49,54,52,49,57,55,93,44,91,45,56,54,46,48,52,51,53,48,55,44,52,52,46,49,54,55,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,79,116,116,97,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,48,51,52,44,34,98,101,100,115,34,58,51,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,48,54,54,50,44,52,51,46,50,48,53,49,54,55,93,44,91,45,56,53,46,57,48,55,52,51,53,44,52,51,46,49,49,56,57,49,49,93,44,91,45,56,55,46,49,48,55,54,54,57,44,52,51,46,49,49,56,50,52,51,93,44,91,45,56,55,46,48,54,57,52,49,57,44,52,50,46,56,52,50,49,52,54,93,44,91,45,56,55,46,48,53,56,55,49,54,44,52,50,46,55,54,53,50,48,50,93,44,91,45,56,53,46,55,56,50,52,57,56,44,52,50,46,55,54,56,50,93,44,91,45,56,53,46,55,57,48,54,54,50,44,52,51,46,50,48,53,49,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,50,51,55,49,57,44,34,98,101,100,115,34,58,49,56,54,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,51,56,52,52,57,44,52,50,46,49,53,52,50,52,57,93,44,91,45,56,56,46,50,54,50,56,55,53,44,52,49,46,57,56,54,51,55,56,93,44,91,45,56,55,46,57,50,48,52,55,54,44,52,49,46,57,57,51,56,56,54,93,44,91,45,56,55,46,57,49,52,50,54,52,44,52,49,46,55,49,54,53,57,56,93,44,91,45,56,56,46,48,50,56,57,55,51,44,52,49,46,54,56,53,50,52,50,93,44,91,45,56,55,46,55,57,50,55,57,51,44,52,49,46,53,53,56,53,52,93,44,91,45,56,55,46,55,57,48,51,48,51,44,52,49,46,52,54,57,56,52,54,93,44,91,45,56,55,46,53,50,53,55,48,53,44,52,49,46,52,55,48,50,56,51,93,44,91,45,56,55,46,53,50,51,54,54,49,44,52,49,46,55,53,57,57,48,55,93,44,91,45,56,55,46,50,50,49,44,52,49,46,55,54,48,56,56,57,93,44,91,45,56,55,46,50,48,55,55,55,52,44,52,49,46,55,54,48,57,53,54,93,44,91,45,56,55,46,49,49,49,49,54,50,44,52,50,46,49,52,57,52,48,57,93,44,91,45,56,56,46,49,57,57,53,56,52,44,52,50,46,49,53,52,50,54,93,44,91,45,56,56,46,50,51,56,52,52,57,44,52,50,46,49,53,52,50,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,71,97,108,108,97,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,55,52,53,51,44,51,55,46,57,48,55,54,55,56,93,44,91,45,56,56,46,51,55,53,52,51,52,44,51,55,46,53,57,57,53,57,53,93,44,91,45,56,56,46,49,51,51,52,51,52,44,51,55,46,53,55,52,51,51,56,93,44,91,45,56,56,46,49,54,48,51,56,57,44,51,55,46,54,53,54,49,51,49,93,44,91,45,56,56,46,48,50,56,48,49,54,44,51,55,46,55,57,57,49,56,56,93,44,91,45,56,56,46,48,57,51,48,52,57,44,51,55,46,56,57,49,54,48,52,93,44,91,45,56,56,46,51,55,52,53,50,49,44,51,55,46,57,48,56,51,57,49,93,44,91,45,56,56,46,51,55,52,53,51,44,51,55,46,57,48,55,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,50,54,52,44,34,98,101,100,115,34,58,52,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,52,54,51,51,55,44,51,52,46,52,48,57,54,55,54,93,44,91,45,56,50,46,51,51,52,50,51,52,44,51,52,46,51,52,50,54,51,93,44,91,45,56,50,46,50,52,55,55,52,55,44,51,52,46,50,49,57,54,49,57,93,44,91,45,56,50,46,51,50,54,57,52,55,44,51,52,46,48,54,52,49,50,93,44,91,45,56,50,46,50,48,48,50,56,54,44,51,51,46,57,55,56,53,57,55,93,44,91,45,56,50,46,48,52,54,57,55,52,44,51,51,46,57,53,51,50,49,93,44,91,45,56,50,46,48,48,56,50,57,56,44,51,51,46,57,54,49,54,52,54,93,44,91,45,56,49,46,56,55,48,48,56,52,44,51,52,46,49,51,53,51,53,55,93,44,91,45,56,49,46,57,52,53,48,49,57,44,51,52,46,50,48,51,49,52,56,93,44,91,45,56,50,46,49,54,57,50,57,55,44,51,52,46,51,51,48,55,52,54,93,44,91,45,56,50,46,50,52,54,51,51,55,44,51,52,46,52,48,57,54,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,54,51,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,48,48,55,51,56,44,51,56,46,55,51,56,56,48,56,93,44,91,45,57,53,46,53,48,56,50,54,55,44,51,56,46,52,51,51,57,51,51,93,44,91,45,57,53,46,53,48,56,51,50,56,44,51,56,46,51,57,48,50,55,56,93,44,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,44,91,45,57,53,46,48,53,54,52,49,50,44,51,56,46,55,51,56,53,56,55,93,44,91,45,57,53,46,53,48,48,55,51,56,44,51,56,46,55,51,56,56,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,56,48,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,52,48,49,50,50,44,52,55,46,49,53,48,52,55,53,93,44,91,45,57,54,46,56,51,52,56,51,57,44,52,55,46,48,48,55,50,53,52,93,44,91,45,57,54,46,55,54,49,54,57,51,44,52,54,46,57,51,52,53,53,56,93,44,91,45,57,54,46,55,57,56,49,50,56,44,52,54,46,54,51,48,51,50,54,93,44,91,45,57,54,46,55,56,52,51,56,49,44,52,54,46,54,51,48,53,48,52,93,44,91,45,57,54,46,50,56,48,57,55,55,44,52,54,46,54,51,48,55,54,53,93,44,91,45,57,54,46,49,55,52,53,56,55,44,52,54,46,55,49,55,56,53,52,93,44,91,45,57,54,46,49,57,52,54,55,49,44,52,55,46,49,53,49,49,52,57,93,44,91,45,57,54,46,56,52,48,49,50,50,44,52,55,46,49,53,48,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,72,97,121,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,53,54,48,51,51,44,51,53,46,56,49,55,54,51,53,93,44,91,45,56,57,46,52,48,49,56,48,53,44,51,53,46,56,50,50,54,53,55,93,44,91,45,56,57,46,53,48,50,49,49,56,44,51,53,46,53,56,48,54,50,49,93,44,91,45,56,57,46,52,55,52,49,55,49,44,51,53,46,52,48,51,48,51,57,93,44,91,45,56,57,46,49,56,51,57,52,52,44,51,53,46,51,57,55,49,50,54,93,44,91,45,56,57,46,48,55,56,56,55,54,44,51,53,46,52,51,49,52,50,56,93,44,91,45,56,57,46,48,54,57,53,52,52,44,51,53,46,54,57,50,54,55,57,93,44,91,45,56,57,46,50,55,49,50,50,52,44,51,53,46,55,53,52,57,50,50,93,44,91,45,56,57,46,51,53,54,48,51,51,44,51,53,46,56,49,55,54,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,111,120,32,69,108,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,48,48,49,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,56,53,52,52,51,44,52,49,46,52,50,54,51,55,52,93,44,91,45,49,49,49,46,57,49,54,53,51,52,44,52,49,46,53,51,56,53,53,52,93,44,91,45,49,49,49,46,57,57,54,54,48,54,44,52,49,46,53,53,55,53,55,50,93,44,91,45,49,49,50,46,48,53,49,55,51,55,44,52,49,46,54,57,57,53,53,50,93,44,91,45,49,49,50,46,48,51,48,52,56,51,44,52,49,46,56,49,48,48,52,55,93,44,91,45,49,49,50,46,49,53,57,49,56,52,44,52,49,46,57,57,56,51,56,50,93,44,91,45,49,49,51,46,48,48,48,48,52,49,44,52,49,46,57,57,56,50,48,52,93,44,91,45,49,49,51,46,56,49,52,56,56,52,44,52,49,46,57,56,56,54,53,52,93,44,91,45,49,49,52,46,48,52,49,52,55,55,44,52,49,46,57,57,51,56,55,51,93,44,91,45,49,49,52,46,48,52,50,48,50,57,44,52,48,46,57,57,57,56,57,54,93,44,91,45,49,49,50,46,55,57,57,51,53,57,44,52,48,46,57,57,57,57,51,57,93,44,91,45,49,49,50,46,52,57,51,53,49,53,44,52,49,46,48,55,54,56,56,56,93,44,91,45,49,49,50,46,50,51,56,48,54,53,44,52,49,46,51,51,54,53,53,50,93,44,91,45,49,49,50,46,48,50,56,54,55,50,44,52,49,46,51,51,54,53,49,50,93,44,91,45,49,49,49,46,56,56,53,52,52,51,44,52,49,46,52,50,54,51,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,84,105,112,112,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,49,55,49,50,55,44,51,52,46,57,57,52,57,55,49,93,44,91,45,56,57,46,48,49,55,53,53,49,44,51,52,46,56,53,56,55,50,51,93,44,91,45,56,57,46,48,56,56,48,54,53,44,51,52,46,56,49,53,51,48,55,93,44,91,45,56,57,46,48,56,56,52,56,56,44,51,52,46,53,57,56,50,52,55,93,44,91,45,56,56,46,55,51,53,52,52,44,51,52,46,53,57,54,52,56,51,93,44,91,45,56,56,46,55,49,56,53,48,56,44,51,52,46,55,53,54,55,56,49,93,44,91,45,56,56,46,56,50,51,52,55,51,44,51,52,46,56,53,56,54,50,57,93,44,91,45,56,56,46,56,50,51,48,53,49,44,51,52,46,57,57,53,50,50,49,93,44,91,45,56,57,46,48,49,55,49,50,55,44,51,52,46,57,57,52,57,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,52,53,44,34,98,101,100,115,34,58,49,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,51,51,56,48,51,44,52,48,46,48,51,51,52,48,57,93,44,91,45,56,48,46,55,53,54,49,49,51,44,51,57,46,57,49,51,52,48,50,93,44,91,45,56,48,46,56,50,49,50,55,57,44,51,57,46,56,52,57,57,56,50,93,44,91,45,56,48,46,56,51,51,53,49,51,44,51,57,46,55,50,48,56,49,50,93,44,91,45,56,48,46,53,49,57,51,52,50,44,51,57,46,55,50,49,52,48,51,93,44,91,45,56,48,46,53,49,57,48,57,49,44,51,57,46,57,54,50,50,93,44,91,45,56,48,46,53,49,57,49,50,44,52,48,46,48,49,54,52,49,93,44,91,45,56,48,46,55,51,51,56,48,51,44,52,48,46,48,51,51,52,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,49,56,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,52,55,50,53,52,44,51,57,46,48,57,53,51,55,57,93,44,91,45,56,49,46,55,56,49,56,50,44,51,56,46,57,54,52,57,51,53,93,44,91,45,56,49,46,57,48,56,54,52,53,44,51,56,46,56,55,56,52,54,93,44,91,45,56,49,46,55,55,50,56,52,51,44,51,56,46,54,56,48,56,52,51,93,44,91,45,56,49,46,54,57,54,51,52,56,44,51,56,46,54,50,54,52,50,55,93,44,91,45,56,49,46,54,51,50,56,51,54,44,51,56,46,53,53,52,51,55,93,44,91,45,56,49,46,53,50,50,49,54,54,44,51,56,46,54,49,50,55,52,54,93,44,91,45,56,49,46,53,52,54,54,51,49,44,51,56,46,54,55,50,51,56,55,93,44,91,45,56,49,46,53,48,50,54,50,56,44,51,56,46,57,49,55,57,50,50,93,44,91,45,56,49,46,53,56,49,52,52,55,44,51,57,46,48,50,54,49,55,57,93,44,91,45,56,49,46,55,52,55,50,53,52,44,51,57,46,48,57,53,51,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,69,108,109,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,51,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,57,57,48,55,55,55,44,52,51,46,57,52,57,55,50,51,93,44,91,45,49,49,53,46,49,51,54,50,48,57,44,52,51,46,57,56,51,56,53,57,93,44,91,45,49,49,53,46,53,48,56,55,50,50,44,52,51,46,56,56,52,56,53,53,93,44,91,45,49,49,53,46,54,52,53,56,48,50,44,52,51,46,55,48,48,50,54,93,44,91,45,49,49,53,46,56,50,55,57,50,44,52,51,46,54,48,55,54,54,55,93,44,91,45,49,49,53,46,57,55,53,55,49,57,44,52,51,46,53,57,49,52,51,56,93,44,91,45,49,49,53,46,57,55,56,54,53,49,44,52,51,46,49,49,51,52,51,50,93,44,91,45,49,49,54,46,50,54,54,50,48,55,44,52,51,46,49,49,50,50,54,57,93,44,91,45,49,49,54,46,50,48,49,55,52,44,52,51,46,48,52,56,57,51,93,44,91,45,49,49,53,46,57,54,48,57,57,57,44,52,50,46,57,56,57,48,56,52,93,44,91,45,49,49,53,46,52,52,49,53,50,50,44,52,50,46,57,51,49,49,50,55,93,44,91,45,49,49,53,46,52,53,52,50,50,52,44,52,50,46,55,54,55,57,51,54,93,44,91,45,49,49,53,46,48,51,55,54,57,55,44,52,50,46,55,54,56,52,49,52,93,44,91,45,49,49,53,46,48,51,55,55,55,52,44,52,50,46,57,49,49,56,54,52,93,44,91,45,49,49,53,46,48,56,54,56,53,50,44,52,50,46,57,49,52,53,54,93,44,91,45,49,49,53,46,48,56,54,49,53,53,44,52,51,46,49,57,56,48,54,52,93,44,91,45,49,49,53,46,48,56,51,48,56,57,44,52,51,46,54,48,52,50,57,50,93,44,91,45,49,49,52,46,57,56,57,50,53,56,44,52,51,46,56,53,56,53,54,51,93,44,91,45,49,49,52,46,57,55,49,51,53,49,44,52,51,46,57,51,56,51,48,56,93,44,91,45,49,49,52,46,57,57,48,55,55,55,44,52,51,46,57,52,57,55,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,108,116,105,109,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,55,54,50,53,44,34,98,101,100,115,34,58,49,57,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,56,55,48,57,54,44,51,57,46,55,50,48,56,93,44,91,45,55,54,46,56,56,51,50,57,52,44,51,57,46,52,55,52,55,53,49,93,44,91,45,55,54,46,56,56,50,50,55,52,44,51,57,46,51,53,48,49,56,53,93,44,91,45,55,54,46,54,57,55,48,56,53,44,51,57,46,50,49,52,48,57,50,93,44,91,45,55,54,46,54,49,56,54,49,50,44,51,57,46,50,51,55,51,57,56,93,44,91,45,55,54,46,55,49,49,48,53,52,44,51,57,46,50,55,55,56,56,57,93,44,91,45,55,54,46,55,49,49,51,49,51,44,51,57,46,51,55,49,57,51,51,93,44,91,45,55,54,46,53,50,57,55,57,51,44,51,57,46,51,55,50,48,53,56,93,44,91,45,55,54,46,53,50,57,52,56,54,44,51,57,46,50,49,56,52,48,56,93,44,91,45,55,54,46,51,52,57,52,55,57,44,51,57,46,49,53,54,54,50,51,93,44,91,45,55,54,46,50,56,55,54,56,57,44,51,57,46,50,53,52,49,48,52,93,44,91,45,55,54,46,51,57,49,54,56,56,44,51,57,46,52,54,52,53,51,50,93,44,91,45,55,54,46,53,51,50,49,55,52,44,51,57,46,53,52,51,57,55,55,93,44,91,45,55,54,46,53,54,57,52,52,57,44,51,57,46,55,50,49,49,55,56,93,44,91,45,55,54,46,55,56,55,48,57,54,44,51,57,46,55,50,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,101,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,57,50,57,49,57,44,52,56,46,51,55,48,57,52,54,93,44,91,45,57,57,46,56,52,55,48,52,54,44,52,56,46,51,55,49,50,93,44,91,45,57,57,46,56,52,56,50,50,50,44,52,56,46,48,50,49,52,50,52,93,44,91,45,57,57,46,56,49,50,49,54,55,44,52,55,46,56,52,55,50,53,55,93,44,91,45,57,57,46,50,57,55,50,48,50,44,52,55,46,56,52,54,56,51,52,93,44,91,45,57,56,46,53,50,53,53,49,54,44,52,55,46,56,52,54,50,55,54,93,44,91,45,57,56,46,53,50,53,53,53,53,44,52,55,46,57,49,53,48,53,54,93,44,91,45,57,56,46,54,50,53,51,56,52,44,52,55,46,57,49,54,51,57,57,93,44,91,45,57,56,46,56,48,55,53,57,51,44,52,56,46,48,53,57,56,48,49,93,44,91,45,57,56,46,57,56,54,57,48,49,44,52,56,46,48,48,55,52,57,56,93,44,91,45,57,57,46,48,55,48,52,52,51,44,52,56,46,49,48,55,56,53,55,93,44,91,45,57,57,46,49,57,57,57,49,49,44,52,56,46,49,53,53,51,48,57,93,44,91,45,57,57,46,50,48,48,51,48,54,44,52,56,46,51,55,48,54,53,56,93,44,91,45,57,57,46,52,57,50,57,49,57,44,52,56,46,51,55,48,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,55,56,48,49,50,44,51,57,46,53,57,56,49,57,54,93,44,91,45,57,49,46,52,54,48,52,52,50,44,51,57,46,52,53,48,55,50,50,93,44,91,45,57,49,46,52,51,56,50,51,53,44,51,57,46,51,49,56,55,49,54,93,44,91,45,57,49,46,52,48,57,48,51,51,44,51,57,46,49,52,50,53,52,50,93,44,91,45,57,49,46,50,54,48,50,51,50,44,51,57,46,49,51,57,56,52,53,93,44,91,45,57,49,46,49,56,50,57,52,50,44,51,57,46,50,50,55,50,51,51,93,44,91,45,57,48,46,55,50,49,56,51,53,44,51,57,46,50,50,52,49,48,56,93,44,91,45,57,48,46,57,51,54,55,50,56,44,51,57,46,51,57,57,53,49,49,93,44,91,45,57,49,46,48,51,56,50,55,44,51,57,46,52,52,56,52,51,53,93,44,91,45,57,49,46,49,55,56,48,49,50,44,51,57,46,53,57,56,49,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,54,50,50,44,34,98,101,100,115,34,58,52,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,53,48,48,51,57,44,51,56,46,56,52,57,48,55,51,93,44,91,45,56,50,46,54,54,50,56,56,54,44,51,56,46,55,52,55,57,55,55,93,44,91,45,56,50,46,55,52,48,51,56,51,44,51,56,46,53,57,55,49,54,55,93,44,91,45,56,50,46,56,49,53,57,55,57,44,51,56,46,53,55,48,56,48,50,93,44,91,45,56,50,46,54,54,53,52,49,49,44,51,56,46,53,48,53,55,56,55,93,44,91,45,56,50,46,53,57,51,52,56,44,51,56,46,52,50,49,56,50,49,93,44,91,45,56,50,46,53,48,56,50,56,44,51,56,46,52,49,49,49,57,56,93,44,91,45,56,50,46,51,50,51,57,57,57,44,51,56,46,52,52,57,50,54,56,93,44,91,45,56,50,46,50,56,55,50,55,44,51,56,46,53,56,50,55,56,51,93,44,91,45,56,50,46,51,53,52,52,54,56,44,51,56,46,54,55,54,48,55,93,44,91,45,56,50,46,52,55,50,52,55,56,44,51,56,46,54,56,50,50,55,57,93,44,91,45,56,50,46,52,56,51,53,55,57,44,51,56,46,55,55,50,50,55,56,93,44,91,45,56,50,46,53,55,53,53,56,51,44,51,56,46,56,52,52,52,55,56,93,44,91,45,56,50,46,54,53,48,48,51,57,44,51,56,46,56,52,57,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,55,50,57,44,34,98,101,100,115,34,58,49,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,56,56,55,50,44,51,55,46,50,53,49,52,53,55,93,44,91,45,56,57,46,54,50,48,50,53,54,44,51,55,46,50,51,51,48,48,56,93,44,91,45,56,57,46,55,54,53,50,49,49,44,51,55,46,49,50,54,48,54,54,93,44,91,45,56,57,46,55,56,54,56,49,57,44,51,55,46,48,56,55,56,50,52,93,44,91,45,56,57,46,54,56,54,54,50,44,51,54,46,57,50,56,50,57,51,93,44,91,45,56,57,46,54,57,49,54,48,51,44,51,54,46,56,53,57,53,49,55,93,44,91,45,56,57,46,53,49,57,56,48,57,44,51,54,46,56,54,57,54,49,55,93,44,91,45,56,57,46,51,49,50,55,48,52,44,51,55,46,48,48,56,57,55,49,93,44,91,45,56,57,46,51,55,54,54,51,50,44,51,55,46,48,51,56,52,56,50,93,44,91,45,56,57,46,52,56,56,55,50,44,51,55,46,50,53,49,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,55,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,55,51,48,49,56,44,51,57,46,48,50,48,52,51,93,44,91,45,56,51,46,55,48,53,51,49,49,44,51,56,46,54,51,57,56,53,51,93,44,91,45,56,51,46,54,52,52,57,49,51,44,51,56,46,54,51,54,51,52,51,93,44,91,45,56,51,46,53,50,48,55,53,53,44,51,56,46,55,48,51,48,57,52,93,44,91,45,56,51,46,50,54,55,54,49,51,44,51,56,46,54,49,56,52,50,93,44,91,45,56,51,46,50,55,48,56,49,55,44,51,57,46,48,49,53,55,57,49,93,44,91,45,56,51,46,51,56,53,54,51,55,44,51,57,46,48,53,53,49,57,55,93,44,91,45,56,51,46,54,55,51,48,49,56,44,51,57,46,48,50,48,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,69,114,97,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,52,56,50,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,55,53,49,55,55,44,51,50,46,53,49,51,48,51,57,93,44,91,45,57,56,46,52,55,52,54,56,53,44,51,50,46,50,57,57,48,56,52,93,44,91,45,57,56,46,53,53,49,49,53,56,44,51,50,46,50,54,49,52,51,54,93,44,91,45,57,56,46,51,50,55,52,57,57,44,51,49,46,57,52,49,50,54,49,93,44,91,45,57,56,46,50,48,56,51,56,54,44,51,49,46,57,49,55,53,49,49,93,44,91,45,57,56,46,48,48,53,52,54,50,44,51,50,46,48,49,55,56,57,55,93,44,91,45,57,55,46,56,54,52,56,54,52,44,51,50,46,48,56,55,51,50,56,93,44,91,45,57,55,46,57,52,53,54,50,53,44,51,50,46,50,51,51,52,54,56,93,44,91,45,57,56,46,48,54,56,53,52,53,44,51,50,46,53,49,49,54,50,54,93,44,91,45,57,56,46,52,55,53,49,55,55,44,51,50,46,53,49,51,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,72,97,98,101,114,115,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,50,56,57,44,34,98,101,100,115,34,58,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,56,49,53,57,54,44,51,52,46,56,48,48,56,56,50,93,44,91,45,56,51,46,54,50,51,50,57,54,44,51,52,46,55,51,50,49,57,52,93,44,91,45,56,51,46,54,51,50,51,49,55,44,51,52,46,53,50,56,53,56,55,93,44,91,45,56,51,46,54,54,54,52,49,53,44,51,52,46,53,48,51,54,48,50,93,44,91,45,56,51,46,54,49,53,50,53,49,44,51,52,46,52,51,49,55,52,56,93,44,91,45,56,51,46,52,53,57,55,55,44,51,52,46,52,56,49,49,52,50,93,44,91,45,56,51,46,51,51,56,50,51,52,44,51,52,46,54,56,55,49,56,55,93,44,91,45,56,51,46,51,53,50,52,52,56,44,51,52,46,55,49,54,49,50,53,93,44,91,45,56,51,46,53,52,56,57,56,56,44,51,52,46,55,52,57,52,53,49,93,44,91,45,56,51,46,54,53,50,49,57,52,44,51,52,46,56,50,50,57,57,51,93,44,91,45,56,51,46,54,56,49,53,57,54,44,51,52,46,56,48,48,56,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,57,34,44,34,78,65,77,69,34,58,34,87,105,108,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,48,54,57,57,44,51,50,46,56,57,56,50,50,93,44,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,44,91,45,56,50,46,57,53,55,48,54,54,44,51,50,46,55,48,56,51,49,56,93,44,91,45,56,50,46,57,52,54,57,54,54,44,51,50,46,55,53,57,51,53,56,93,44,91,45,56,51,46,48,55,51,54,52,56,44,51,50,46,57,52,54,53,54,50,93,44,91,45,56,51,46,49,51,51,56,52,55,44,51,51,46,48,48,55,50,52,56,93,44,91,45,56,51,46,51,53,55,54,56,53,44,51,50,46,57,50,54,49,52,49,93,44,91,45,56,51,46,52,48,54,57,57,44,51,50,46,56,57,56,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,77,111,110,111,110,103,97,108,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,50,53,50,44,34,98,101,100,115,34,58,57,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,49,54,50,56,44,51,57,46,55,50,48,55,55,55,93,44,91,45,56,48,46,52,50,49,51,56,56,44,51,57,46,55,50,49,49,56,57,93,44,91,45,56,48,46,51,57,53,56,49,44,51,57,46,54,51,55,51,52,55,93,44,91,45,56,48,46,49,53,51,53,51,50,44,51,57,46,54,49,48,52,50,54,93,44,91,45,55,57,46,57,51,56,56,55,56,44,51,57,46,52,53,50,52,54,53,93,44,91,45,55,57,46,56,57,52,54,56,56,44,51,57,46,52,51,53,53,56,56,93,44,91,45,55,57,46,55,54,51,55,55,52,44,51,57,46,55,50,48,55,55,54,93,44,91,45,55,57,46,57,49,54,50,56,44,51,57,46,55,50,48,55,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,48,50,49,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,50,57,53,49,50,44,52,48,46,57,57,54,54,50,52,93,44,91,45,56,51,46,49,49,50,55,51,55,44,52,48,46,57,57,51,52,52,55,93,44,91,45,56,51,46,49,49,49,51,54,44,52,48,46,55,48,50,57,49,53,93,44,91,45,56,50,46,56,53,56,51,48,50,44,52,48,46,55,48,53,48,49,57,93,44,91,45,56,50,46,55,50,55,49,54,52,44,52,48,46,55,49,49,50,48,51,93,44,91,45,56,50,46,55,50,52,55,57,50,44,52,48,46,57,57,53,54,51,56,93,44,91,45,56,50,46,56,50,57,53,49,50,44,52,48,46,57,57,54,54,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,68,101,83,111,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,57,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,54,52,48,54,50,44,50,55,46,51,52,48,54,52,49,93,44,91,45,56,50,46,48,53,53,55,53,51,44,50,55,46,51,51,56,50,54,52,93,44,91,45,56,50,46,48,53,54,52,57,55,44,50,55,46,50,48,55,55,54,57,93,44,91,45,56,50,46,48,53,55,52,54,57,44,50,55,46,48,51,50,49,49,57,93,44,91,45,56,49,46,53,54,50,54,50,52,44,50,55,46,48,51,51,56,51,53,93,44,91,45,56,49,46,53,54,52,48,54,50,44,50,55,46,51,52,48,54,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,78,101,119,32,76,111,110,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,56,56,56,49,44,34,98,101,100,115,34,58,52,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,50,51,57,53,53,57,44,52,49,46,55,49,52,49,57,49,93,44,91,45,55,50,46,52,49,48,51,54,55,44,52,49,46,54,48,50,53,56,49,93,44,91,45,55,50,46,52,54,54,55,51,44,52,49,46,53,56,51,56,57,57,93,44,91,45,55,50,46,51,50,51,51,57,52,44,52,49,46,53,51,52,50,53,93,44,91,45,55,50,46,51,48,53,53,51,49,44,52,49,46,52,51,54,50,56,50,93,44,91,45,55,50,46,51,56,52,56,51,51,44,52,49,46,51,56,53,49,57,93,44,91,45,55,50,46,51,51,49,52,53,51,44,52,49,46,50,49,53,48,48,52,93,44,91,45,55,49,46,57,48,55,50,53,56,44,52,49,46,51,48,52,52,56,51,93,44,91,45,55,49,46,55,57,55,55,52,55,44,52,49,46,52,49,54,56,51,52,93,44,91,45,55,49,46,55,56,57,50,52,55,44,52,49,46,53,57,54,56,52,55,93,44,91,45,55,49,46,55,56,55,54,53,56,44,52,49,46,54,51,57,57,49,56,93,44,91,45,55,49,46,57,53,49,57,51,54,44,52,49,46,54,51,52,51,50,56,93,44,91,45,55,50,46,49,53,49,55,52,55,44,52,49,46,54,54,55,53,49,54,93,44,91,45,55,50,46,50,51,57,53,53,57,44,52,49,46,55,49,52,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,71,117,101,114,110,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,50,55,52,44,34,98,101,100,115,34,58,50,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,50,50,54,56,51,44,52,48,46,50,50,49,51,48,56,93,44,91,45,56,49,46,55,49,54,50,55,54,44,52,48,46,49,53,50,49,54,54,93,44,91,45,56,49,46,55,50,56,54,49,49,44,51,57,46,57,51,49,55,50,56,93,44,91,45,56,49,46,54,57,52,49,52,54,44,51,57,46,56,52,50,54,51,54,93,44,91,45,56,49,46,51,56,54,48,48,54,44,51,57,46,57,53,48,54,57,52,93,44,91,45,56,49,46,50,51,52,48,53,51,44,51,57,46,57,53,49,50,55,93,44,91,45,56,49,46,50,50,53,57,50,52,44,52,48,46,49,55,48,48,55,53,93,44,91,45,56,49,46,51,51,56,48,53,55,44,52,48,46,50,49,52,50,53,51,93,44,91,45,56,49,46,54,50,50,54,56,51,44,52,48,46,50,50,49,51,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,97,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,48,53,55,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,48,57,54,50,54,44,52,50,46,55,54,57,56,55,56,93,44,91,45,56,53,46,53,52,53,53,54,52,44,52,50,46,55,54,56,49,51,57,93,44,91,45,56,53,46,53,52,51,49,57,49,44,52,50,46,52,50,49,52,51,51,93,44,91,45,56,53,46,50,57,56,56,55,57,44,52,50,46,52,49,57,56,52,57,93,44,91,45,56,53,46,48,55,49,54,48,57,44,52,50,46,52,50,49,52,50,56,93,44,91,45,56,53,46,48,55,52,50,52,53,44,52,50,46,55,55,48,55,56,52,93,44,91,45,56,53,46,51,48,57,54,50,54,44,52,50,46,55,54,57,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,57,34,44,34,78,65,77,69,34,58,34,83,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,49,49,48,48,51,44,51,54,46,57,50,50,56,51,49,93,44,91,45,57,51,46,53,55,51,56,44,51,54,46,56,50,48,48,51,50,93,44,91,45,57,51,46,53,56,52,50,54,50,44,51,54,46,52,57,57,49,54,55,93,44,91,45,57,51,46,51,49,53,51,51,50,44,51,54,46,52,57,56,49,52,93,44,91,45,57,51,46,51,48,52,51,53,57,44,51,54,46,56,49,54,56,54,54,93,44,91,45,57,51,46,51,51,55,52,53,49,44,51,54,46,57,57,50,52,57,52,93,44,91,45,57,51,46,54,49,48,49,50,54,44,51,54,46,57,57,53,56,49,93,44,91,45,57,51,46,54,49,49,48,48,51,44,51,54,46,57,50,50,56,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,54,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,54,48,34,44,34,78,65,77,69,34,58,34,82,105,99,104,109,111,110,100,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,55,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,53,57,53,52,54,50,44,51,55,46,53,53,53,55,53,93,44,91,45,55,55,46,52,50,48,56,55,53,44,51,55,46,52,52,55,49,48,49,93,44,91,45,55,55,46,51,57,49,51,48,54,44,51,55,46,53,51,48,49,50,50,93,44,91,45,55,55,46,52,52,55,53,56,49,44,51,55,46,54,48,50,56,49,93,44,91,45,55,55,46,53,57,53,52,54,50,44,51,55,46,53,53,53,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,83,116,111,107,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,57,48,53,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,52,52,48,48,57,56,44,51,54,46,53,53,48,54,53,53,93,44,91,45,56,48,46,52,53,49,54,57,54,44,51,54,46,50,54,49,53,48,50,93,44,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,44,91,45,56,48,46,48,50,55,51,51,57,44,51,54,46,53,52,50,52,56,93,44,91,45,56,48,46,48,53,51,52,53,57,44,51,54,46,53,52,50,53,50,51,93,44,91,45,56,48,46,52,52,48,48,57,56,44,51,54,46,53,53,48,54,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,56,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,49,52,49,56,57,44,52,49,46,49,53,54,55,54,50,93,44,91,45,57,52,46,48,49,52,56,48,51,44,52,48,46,56,57,55,48,51,49,93,44,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,44,91,45,57,51,46,53,53,55,53,53,54,44,52,49,46,49,54,49,50,55,49,93,44,91,45,57,51,46,55,56,57,49,57,54,44,52,49,46,49,54,50,48,51,53,93,44,91,45,57,52,46,48,49,52,49,56,57,44,52,49,46,49,53,54,55,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,50,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,56,49,53,54,56,44,52,50,46,57,48,55,48,49,51,93,44,91,45,57,50,46,48,56,49,54,54,49,44,52,50,46,54,52,50,48,53,54,93,44,91,45,57,49,46,54,48,55,48,53,57,44,52,50,46,54,52,51,57,55,51,93,44,91,45,57,49,46,54,48,53,51,48,55,44,52,51,46,48,56,49,54,53,51,93,44,91,45,57,50,46,48,56,49,49,52,54,44,52,51,46,48,56,50,55,57,52,93,44,91,45,57,50,46,48,56,49,53,54,56,44,52,50,46,57,48,55,48,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,77,97,114,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,50,57,53,44,34,98,101,100,115,34,58,52,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,49,51,52,53,50,51,44,51,56,46,50,57,54,50,54,51,93,44,91,45,49,50,51,46,48,49,52,56,49,55,44,51,56,46,49,52,57,49,51,50,93,44,91,45,49,50,51,46,48,56,51,56,56,44,51,55,46,57,56,51,51,54,54,93,44,91,45,49,50,51,46,48,50,50,53,48,55,44,51,55,46,57,52,50,48,54,53,93,44,91,45,49,50,50,46,56,56,57,50,57,49,44,51,55,46,57,55,52,49,48,57,93,44,91,45,49,50,50,46,55,53,50,52,54,54,44,51,55,46,56,53,55,54,57,57,93,44,91,45,49,50,50,46,54,49,50,50,56,53,44,51,55,46,56,49,53,50,50,52,93,44,91,45,49,50,50,46,52,49,56,54,55,51,44,51,55,46,56,53,50,53,48,53,93,44,91,45,49,50,50,46,52,51,50,50,56,51,44,51,55,46,57,50,57,56,50,52,93,44,91,45,49,50,50,46,51,52,55,52,53,52,44,51,56,46,48,55,51,50,54,93,44,91,45,49,50,50,46,53,48,50,56,50,44,51,56,46,49,49,51,48,48,50,93,44,91,45,49,50,50,46,53,55,56,50,48,49,44,51,56,46,49,56,51,53,56,51,93,44,91,45,49,50,50,46,55,51,57,57,44,51,56,46,50,48,55,48,49,56,93,44,91,45,49,50,50,46,57,48,49,55,50,54,44,51,56,46,51,49,54,57,52,51,93,44,91,45,49,50,51,46,49,51,52,53,50,51,44,51,56,46,50,57,54,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,56,49,34,44,34,78,65,77,69,34,58,34,82,97,110,100,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,52,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,44,91,45,49,48,50,46,49,54,56,56,51,57,44,51,52,46,55,52,55,52,49,55,93,44,91,45,49,48,49,46,57,57,56,52,57,51,44,51,52,46,55,52,56,49,57,93,44,91,45,49,48,49,46,54,50,57,50,53,55,44,51,52,46,55,52,55,54,52,57,93,44,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,44,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,48,49,34,44,34,78,65,77,69,34,58,34,82,117,115,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,53,57,53,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,56,53,52,49,49,44,51,50,46,51,55,48,56,50,93,44,91,45,57,52,46,57,56,53,50,55,50,44,51,50,46,49,51,55,57,56,57,93,44,91,45,57,52,46,57,56,53,48,51,55,44,51,49,46,56,52,54,49,57,51,93,44,91,45,57,52,46,57,51,55,53,51,50,44,51,49,46,56,52,53,53,53,53,93,44,91,45,57,52,46,52,53,50,52,49,54,44,51,49,46,56,52,52,50,56,49,93,44,91,45,57,52,46,53,49,49,52,51,49,44,51,49,46,57,55,51,57,56,52,93,44,91,45,57,52,46,53,57,57,57,55,56,44,51,49,46,57,55,51,49,57,51,93,44,91,45,57,52,46,53,56,48,53,44,51,50,46,50,48,49,51,54,51,93,44,91,45,57,52,46,52,57,49,56,49,56,44,51,50,46,51,57,52,49,51,55,93,44,91,45,57,52,46,53,55,57,50,49,57,44,51,50,46,51,57,52,57,49,54,93,44,91,45,57,52,46,54,51,56,51,52,55,44,51,50,46,51,55,48,53,51,57,93,44,91,45,57,52,46,57,56,53,52,49,49,44,51,50,46,51,55,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,51,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,50,56,52,48,55,44,52,49,46,52,57,48,57,50,49,93,44,91,45,57,51,46,52,50,50,56,53,52,44,52,49,46,53,49,49,52,52,52,93,44,91,45,57,51,46,55,57,48,54,49,50,44,52,49,46,53,49,49,57,49,54,93,44,91,45,57,51,46,55,56,57,49,57,54,44,52,49,46,49,54,50,48,51,53,93,44,91,45,57,51,46,53,53,55,53,53,54,44,52,49,46,49,54,49,50,55,49,93,44,91,45,57,51,46,51,50,55,56,56,54,44,52,49,46,49,54,48,54,53,57,93,44,91,45,57,51,46,51,50,56,52,48,55,44,52,49,46,52,57,48,57,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,86,97,110,32,87,101,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,50,56,49,44,34,98,101,100,115,34,58,49,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,48,50,57,50,50,44,52,48,46,57,50,50,53,54,56,93,44,91,45,56,52,46,56,48,50,50,55,51,44,52,48,46,55,50,56,49,52,54,93,44,91,45,56,52,46,52,53,54,49,55,50,44,52,48,46,55,50,56,51,48,54,93,44,91,45,56,52,46,52,53,54,49,56,44,52,48,46,54,56,52,56,54,50,93,44,91,45,56,52,46,51,57,54,55,55,56,44,52,48,46,54,56,52,57,50,54,93,44,91,45,56,52,46,51,57,55,51,55,52,44,52,48,46,56,49,53,57,52,49,93,44,91,45,56,52,46,51,52,48,53,51,49,44,52,48,46,56,53,57,48,57,57,93,44,91,45,56,52,46,51,57,57,52,56,54,44,52,48,46,57,57,48,51,49,53,93,44,91,45,56,52,46,56,48,51,50,53,49,44,52,48,46,57,56,57,51,57,52,93,44,91,45,56,52,46,56,48,50,57,50,50,44,52,48,46,57,50,50,53,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,71,108,97,100,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,52,48,54,55,54,44,50,55,46,50,48,53,57,51,57,93,44,91,45,56,49,46,49,54,57,49,51,56,44,50,55,46,50,48,57,53,56,53,93,44,91,45,56,49,46,49,54,56,50,56,49,44,50,55,46,49,50,49,55,51,52,93,44,91,45,56,49,46,50,54,55,54,55,55,44,50,55,46,49,50,49,48,57,55,93,44,91,45,56,49,46,50,54,55,50,49,54,44,50,55,46,48,51,50,52,55,52,93,44,91,45,56,49,46,53,54,50,53,51,49,44,50,55,46,48,51,51,54,56,55,93,44,91,45,56,49,46,53,54,53,57,51,49,44,50,54,46,55,54,57,53,53,50,93,44,91,45,56,48,46,57,52,53,51,53,52,44,50,54,46,55,54,57,48,52,57,93,44,91,45,56,48,46,56,56,53,54,51,57,44,50,54,46,57,53,56,57,49,57,93,44,91,45,56,48,46,56,55,49,49,54,57,44,50,55,46,49,53,52,57,53,49,93,44,91,45,56,48,46,57,52,48,54,55,54,44,50,55,46,50,48,53,57,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,77,101,114,105,119,101,116,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,49,51,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,54,50,51,53,57,44,51,51,46,49,57,49,49,55,51,93,44,91,45,56,52,46,56,54,49,55,54,56,44,51,50,46,56,55,50,52,57,53,93,44,91,45,56,52,46,55,48,48,53,51,56,44,51,50,46,56,52,52,54,52,93,44,91,45,56,52,46,53,48,54,56,56,56,44,51,50,46,56,56,49,55,56,56,93,44,91,45,56,52,46,53,50,55,48,50,44,51,50,46,57,55,48,53,52,56,93,44,91,45,56,52,46,52,57,54,55,56,51,44,51,51,46,49,56,51,56,54,54,93,44,91,45,56,52,46,53,48,50,51,53,50,44,51,51,46,50,50,49,48,53,53,93,44,91,45,56,52,46,56,53,50,51,54,44,51,51,46,50,50,51,53,57,93,44,91,45,56,52,46,56,54,50,51,53,57,44,51,51,46,49,57,49,49,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,111,115,116,105,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,55,52,51,51,51,57,44,51,55,46,51,53,54,55,57,56,93,44,91,45,49,48,53,46,55,49,56,52,54,51,44,51,54,46,57,57,53,56,52,49,93,44,91,45,49,48,53,46,50,50,48,53,48,54,44,51,54,46,57,57,52,57,55,52,93,44,91,45,49,48,53,46,49,53,53,48,52,50,44,51,54,46,57,57,53,50,54,50,93,44,91,45,49,48,53,46,49,53,52,49,55,54,44,51,55,46,50,57,51,49,50,57,93,44,91,45,49,48,53,46,49,57,51,50,51,55,44,51,55,46,53,57,50,49,54,56,93,44,91,45,49,48,53,46,50,57,53,53,56,55,44,51,55,46,54,53,52,52,49,54,93,44,91,45,49,48,53,46,52,56,53,53,49,54,44,51,55,46,53,55,55,56,57,57,93,44,91,45,49,48,53,46,55,52,51,51,51,57,44,51,55,46,51,53,54,55,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,67,111,114,121,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,51,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,54,54,52,51,49,44,51,49,46,54,55,50,52,54,49,93,44,91,45,57,56,46,49,56,48,48,48,54,44,51,49,46,52,54,51,55,49,55,93,44,91,45,57,55,46,57,48,55,49,44,51,49,46,48,54,57,51,55,52,93,44,91,45,57,55,46,52,49,56,54,48,54,44,51,49,46,51,50,48,50,48,50,93,44,91,45,57,55,46,54,48,53,50,51,44,51,49,46,53,56,55,55,54,50,93,44,91,45,57,55,46,54,56,57,56,51,52,44,51,49,46,55,49,49,48,49,57,93,44,91,45,57,55,46,55,54,54,52,51,49,44,51,49,46,54,55,50,52,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,48,48,54,50,57,44,52,49,46,53,48,52,49,52,56,93,44,91,45,57,52,46,55,48,48,53,56,57,44,52,49,46,49,53,56,48,56,53,93,44,91,45,57,52,46,52,55,48,54,48,51,44,52,49,46,49,53,55,53,54,54,93,44,91,45,57,52,46,50,52,49,54,51,55,44,52,49,46,49,53,55,49,51,52,93,44,91,45,57,52,46,50,52,49,53,57,51,44,52,49,46,53,48,51,54,55,57,93,44,91,45,57,52,46,55,48,48,54,50,57,44,52,49,46,53,48,52,49,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,67,104,97,116,116,97,104,111,111,99,104,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,54,55,44,34,98,101,100,115,34,58,50,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,55,49,57,54,50,44,51,50,46,51,55,55,54,57,56,93,44,91,45,56,52,46,57,50,51,48,50,55,44,51,50,46,50,51,48,56,53,49,93,44,91,45,56,52,46,54,53,56,57,50,44,51,50,46,50,51,50,56,53,50,93,44,91,45,56,52,46,54,51,55,51,50,51,44,51,50,46,53,51,52,56,53,53,93,44,91,45,56,52,46,54,57,52,53,49,44,51,50,46,53,49,56,55,51,50,93,44,91,45,56,52,46,55,57,50,57,53,49,44,51,50,46,52,49,51,56,52,93,44,91,45,56,52,46,57,55,49,57,54,50,44,51,50,46,51,55,55,54,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,77,97,114,105,112,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,52,48,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,51,56,55,54,55,44,51,55,46,54,51,51,51,54,52,93,44,91,45,49,50,48,46,50,54,54,48,49,44,51,55,46,52,48,48,54,48,55,93,44,91,45,49,50,48,46,49,52,51,56,50,54,44,51,55,46,50,51,57,49,57,50,93,44,91,45,49,50,48,46,48,53,50,48,53,53,44,51,55,46,49,56,51,49,48,56,93,44,91,45,49,49,57,46,55,54,49,56,48,57,44,51,55,46,52,49,55,49,49,52,93,44,91,45,49,49,57,46,54,53,49,49,57,49,44,51,55,46,52,49,55,56,51,50,93,44,91,45,49,49,57,46,53,56,51,53,56,53,44,51,55,46,53,54,48,51,51,53,93,44,91,45,49,49,57,46,51,48,56,57,57,53,44,51,55,46,55,55,55,57,56,54,93,44,91,45,49,49,57,46,53,51,51,57,57,57,44,51,55,46,57,48,50,57,50,50,93,44,91,45,49,49,57,46,54,54,55,50,48,51,44,51,55,46,56,48,49,50,50,52,93,44,91,45,49,49,57,46,56,48,53,52,57,56,44,51,55,46,55,53,57,54,49,56,93,44,91,45,49,49,57,46,57,51,56,52,49,52,44,51,55,46,55,54,51,48,50,54,93,44,91,45,49,50,48,46,48,50,54,53,57,51,44,51,55,46,56,49,49,56,55,55,93,44,91,45,49,50,48,46,51,52,53,52,51,55,44,51,55,46,55,50,52,55,56,55,93,44,91,45,49,50,48,46,51,56,55,54,49,51,44,51,55,46,54,51,51,55,48,52,93,44,91,45,49,50,48,46,51,56,55,54,55,44,51,55,46,54,51,51,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,52,57,50,50,52,44,51,57,46,50,50,54,50,49,56,93,44,91,45,57,50,46,57,51,52,53,54,57,44,51,57,46,48,54,52,53,52,55,93,44,91,45,57,50,46,56,52,49,54,49,55,44,51,56,46,57,55,57,56,50,49,93,44,91,45,57,50,46,53,53,56,48,56,54,44,51,56,46,57,55,48,54,57,50,93,44,91,45,57,50,46,52,51,48,50,50,57,44,51,57,46,50,52,56,55,57,53,93,44,91,45,57,50,46,55,48,55,51,54,55,44,51,57,46,51,50,49,54,49,52,93,44,91,45,57,50,46,55,57,48,51,54,57,44,51,57,46,51,52,51,53,56,54,93,44,91,45,57,50,46,56,52,57,50,50,52,44,51,57,46,50,50,54,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,53,53,51,44,34,98,101,100,115,34,58,49,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,56,52,57,57,50,53,44,52,53,46,50,53,57,54,57,55,93,44,91,45,49,50,51,46,48,48,48,55,56,56,44,52,53,46,50,53,57,51,52,55,93,44,91,45,49,50,51,46,48,54,56,54,54,55,44,52,53,46,48,55,52,56,54,93,44,91,45,49,50,51,46,48,52,52,57,48,51,44,52,52,46,57,52,52,48,50,56,93,44,91,45,49,50,51,46,49,55,57,51,56,55,44,52,52,46,56,51,53,55,50,57,93,44,91,45,49,50,51,46,49,52,51,56,52,51,44,52,52,46,55,52,56,57,49,52,93,44,91,45,49,50,51,46,48,48,55,55,52,51,44,52,52,46,54,56,56,48,55,49,93,44,91,45,49,50,50,46,56,48,50,52,53,55,44,52,52,46,55,57,48,56,54,52,93,44,91,45,49,50,50,46,50,55,54,54,55,53,44,52,52,46,55,52,54,49,51,53,93,44,91,45,49,50,50,46,48,51,51,48,48,54,44,52,52,46,54,56,53,54,57,49,93,44,91,45,49,50,49,46,56,48,48,48,49,53,44,52,52,46,54,56,51,52,50,53,93,44,91,45,49,50,49,46,55,53,50,57,57,52,44,52,52,46,56,50,57,57,49,57,93,44,91,45,49,50,49,46,55,51,52,50,50,51,44,52,52,46,56,56,53,55,50,93,44,91,45,49,50,50,46,52,48,49,48,50,49,44,52,52,46,56,56,53,55,50,93,44,91,45,49,50,50,46,53,48,56,49,48,54,44,52,52,46,57,49,57,53,57,57,93,44,91,45,49,50,50,46,53,57,53,53,50,51,44,52,53,46,48,49,57,54,55,57,93,44,91,45,49,50,50,46,55,56,56,53,53,52,44,52,53,46,49,51,48,49,55,54,93,44,91,45,49,50,50,46,55,52,57,55,57,51,44,52,53,46,49,57,53,50,52,50,93,44,91,45,49,50,50,46,56,52,57,57,50,53,44,52,53,46,50,53,57,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,77,105,108,119,97,117,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,52,50,48,57,44,34,98,101,100,115,34,58,51,56,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,49,57,48,48,56,44,52,51,46,49,57,48,56,49,54,93,44,91,45,56,56,46,48,54,51,51,53,51,44,52,51,46,49,57,50,49,49,55,93,44,91,45,56,56,46,48,54,57,57,50,52,44,52,50,46,56,52,51,51,50,51,93,44,91,45,56,55,46,48,54,57,52,49,57,44,52,50,46,56,52,50,49,52,54,93,44,91,45,56,55,46,49,48,55,54,54,57,44,52,51,46,49,49,56,50,52,51,93,44,91,45,56,55,46,49,49,57,48,48,56,44,52,51,46,49,57,48,56,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,51,55,50,44,34,98,101,100,115,34,58,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,50,48,52,51,49,44,52,52,46,56,48,52,50,54,51,93,44,91,45,57,51,46,55,54,56,48,51,57,44,52,52,46,54,52,48,51,48,51,93,44,91,45,57,51,46,57,49,48,52,48,53,44,52,52,46,53,52,51,49,54,51,93,44,91,45,57,51,46,53,50,52,51,50,55,44,52,52,46,53,52,51,54,49,56,93,44,91,45,57,51,46,50,56,49,53,50,49,44,52,52,46,53,52,51,57,53,55,93,44,91,45,57,51,46,51,50,57,54,49,53,44,52,52,46,55,57,49,48,56,54,93,44,91,45,57,51,46,53,50,48,52,51,49,44,52,52,46,56,48,52,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,80,105,99,107,97,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,52,50,48,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,50,52,50,53,52,44,51,57,46,55,57,52,57,57,54,93,44,91,45,56,51,46,50,52,51,55,48,50,44,51,57,46,56,49,50,53,48,51,93,44,91,45,56,51,46,50,53,50,52,51,53,44,51,57,46,54,57,53,52,51,56,93,44,91,45,56,51,46,50,54,54,55,51,55,44,51,57,46,53,49,54,50,52,57,93,44,91,45,56,50,46,57,56,52,53,54,44,51,57,46,53,48,54,55,53,52,93,44,91,45,56,50,46,55,52,48,55,50,57,44,51,57,46,52,54,56,51,53,93,44,91,45,56,50,46,55,51,49,53,49,56,44,51,57,46,53,53,52,52,52,53,93,44,91,45,56,50,46,56,52,50,57,53,51,44,51,57,46,53,54,49,52,56,93,44,91,45,56,50,46,56,50,52,50,53,52,44,51,57,46,55,57,52,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,80,111,119,104,97,116,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,53,55,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,44,91,45,55,55,46,56,57,55,50,57,50,44,51,55,46,54,54,56,49,56,49,93,44,91,45,55,56,46,48,55,50,49,55,52,44,51,55,46,54,53,55,51,56,53,93,44,91,45,55,56,46,49,51,50,48,52,56,44,51,55,46,52,53,52,54,56,54,93,44,91,45,55,55,46,57,56,54,49,57,44,51,55,46,52,56,54,50,54,57,93,44,91,45,55,55,46,56,53,53,49,52,56,44,51,55,46,52,49,56,51,54,51,93,44,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,52,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,52,34,44,34,78,65,77,69,34,58,34,66,114,111,111,109,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,49,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,49,52,55,49,52,51,44,51,57,46,57,49,51,56,56,57,93,44,91,45,49,48,53,46,48,53,50,56,57,50,44,51,57,46,57,49,52,50,50,52,93,44,91,45,49,48,52,46,57,54,49,52,48,53,44,52,48,46,48,48,48,51,51,55,93,44,91,45,49,48,53,46,48,53,50,56,50,51,44,52,48,46,48,48,48,50,54,93,44,91,45,49,48,53,46,49,52,55,49,52,51,44,51,57,46,57,49,51,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,57,51,55,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,57,52,53,51,52,44,51,53,46,52,52,52,54,55,54,93,44,91,45,56,55,46,53,55,53,51,53,50,44,51,53,46,51,57,56,52,53,52,93,44,91,45,56,55,46,53,55,55,55,57,54,44,51,53,46,49,53,57,52,93,44,91,45,56,55,46,54,48,54,48,51,49,44,51,53,46,48,48,51,52,50,53,93,44,91,45,56,55,46,50,50,52,48,53,50,44,51,52,46,57,57,57,51,55,55,93,44,91,45,56,55,46,50,48,54,53,55,56,44,51,53,46,52,51,51,50,48,55,93,44,91,45,56,55,46,50,57,52,53,51,52,44,51,53,46,52,52,52,54,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,110,116,114,105,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,53,55,52,53,50,44,52,53,46,49,49,54,55,48,55,93,44,91,45,56,53,46,50,50,51,54,56,49,44,52,53,46,49,49,55,56,54,49,93,44,91,45,56,53,46,50,50,50,55,48,55,44,52,53,46,50,48,53,53,54,93,44,91,45,56,53,46,52,53,56,56,57,54,44,52,53,46,50,48,54,53,55,52,93,44,91,45,56,53,46,52,56,48,54,55,52,44,52,53,46,49,50,48,51,50,54,93,44,91,45,56,53,46,52,50,55,54,56,56,44,52,52,46,57,54,53,50,55,51,93,44,91,45,56,53,46,52,55,51,56,52,49,44,52,52,46,56,53,57,52,52,57,93,44,91,45,56,53,46,51,51,50,56,51,54,44,52,52,46,56,49,50,51,55,50,93,44,91,45,56,53,46,50,57,49,55,49,54,44,52,52,46,56,53,57,54,48,56,93,44,91,45,56,52,46,56,52,55,51,48,57,44,52,52,46,56,53,56,48,51,55,93,44,91,45,56,52,46,56,53,55,52,53,50,44,52,53,46,49,49,54,55,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,77,97,114,108,98,111,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,49,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,50,55,52,49,50,44,51,52,46,56,48,54,55,51,52,93,44,91,45,55,57,46,56,48,51,56,55,55,44,51,52,46,54,48,57,48,53,51,93,44,91,45,55,57,46,56,50,57,57,56,49,44,51,52,46,53,51,49,57,50,53,93,44,91,45,55,57,46,54,56,53,50,50,55,44,51,52,46,52,48,48,54,54,57,93,44,91,45,55,57,46,54,53,55,55,54,52,44,51,52,46,51,48,53,49,57,93,44,91,45,55,57,46,54,51,51,52,49,51,44,51,52,46,50,57,55,57,57,52,93,44,91,45,55,57,46,52,53,48,48,50,52,44,51,52,46,54,50,49,48,53,51,93,44,91,45,55,57,46,52,54,49,53,48,54,44,51,52,46,54,51,48,51,55,57,93,44,91,45,55,57,46,54,57,50,57,52,52,44,51,52,46,56,48,53,49,53,53,93,44,91,45,55,57,46,57,50,55,52,49,50,44,51,52,46,56,48,54,55,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,101,110,101,119,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,56,54,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,51,57,56,55,56,44,52,55,46,50,53,57,50,55,50,93,44,91,45,49,49,55,46,48,51,57,55,53,50,44,52,55,46,49,50,55,50,54,57,93,44,91,45,49,49,54,46,56,51,53,50,54,57,44,52,55,46,48,51,50,52,53,50,93,44,91,45,49,49,54,46,51,50,57,52,49,56,44,52,55,46,48,50,49,57,49,53,93,44,91,45,49,49,54,46,51,50,57,52,48,54,44,52,55,46,52,49,52,48,49,49,93,44,91,45,49,49,54,46,53,56,54,53,52,57,44,52,55,46,52,49,52,54,57,53,93,44,91,45,49,49,54,46,54,50,57,48,53,57,44,52,55,46,51,55,49,52,51,56,93,44,91,45,49,49,55,46,48,51,57,56,48,56,44,52,55,46,51,54,54,48,51,49,93,44,91,45,49,49,55,46,48,51,57,56,55,56,44,52,55,46,50,53,57,50,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,53,50,55,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,50,57,51,51,44,52,49,46,57,48,49,54,49,55,93,44,91,45,56,57,46,54,51,49,52,57,52,44,52,49,46,53,56,52,57,52,57,93,44,91,45,56,57,46,49,54,54,53,54,49,44,52,49,46,53,56,53,50,56,57,93,44,91,45,56,56,46,57,51,56,54,55,57,44,52,49,46,54,50,56,51,49,54,93,44,91,45,56,56,46,57,52,49,50,55,57,44,52,49,46,56,57,49,55,53,50,93,44,91,45,56,57,46,51,54,48,53,55,56,44,52,49,46,56,56,56,48,49,56,93,44,91,45,56,57,46,54,50,57,51,51,44,52,49,46,57,48,49,54,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,78,101,109,97,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,48,52,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,54,55,48,49,50,44,52,48,46,53,50,51,49,52,56,93,44,91,45,57,54,46,48,54,54,55,51,54,44,52,48,46,50,54,50,48,51,56,93,44,91,45,57,54,46,48,49,48,49,55,54,44,52,48,46,50,54,49,52,56,50,93,44,91,45,57,53,46,53,53,50,52,55,51,44,52,48,46,50,54,49,57,48,52,93,44,91,45,57,53,46,53,53,52,56,49,55,44,52,48,46,50,54,52,52,54,93,44,91,45,57,53,46,55,48,57,57,55,52,44,52,48,46,53,50,51,55,57,56,93,44,91,45,57,54,46,48,54,55,48,49,50,44,52,48,46,53,50,51,49,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,57,50,48,44,34,98,101,100,115,34,58,49,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,49,49,53,56,44,51,52,46,57,56,49,55,54,56,93,44,91,45,55,54,46,54,57,51,48,49,56,44,51,52,46,56,54,57,49,56,93,44,91,45,55,55,46,48,55,56,50,54,51,44,51,52,46,56,49,49,51,50,50,93,44,91,45,55,55,46,49,54,53,57,56,54,44,51,52,46,55,56,53,48,51,50,93,44,91,45,55,55,46,48,57,54,57,55,50,44,51,52,46,54,55,50,52,48,49,93,44,91,45,55,55,46,49,49,55,49,57,56,44,51,52,46,53,56,52,51,54,55,93,44,91,45,55,54,46,56,49,56,57,51,55,44,51,52,46,54,52,51,50,53,51,93,44,91,45,55,54,46,54,49,52,55,50,50,44,51,52,46,54,49,56,50,55,56,93,44,91,45,55,54,46,52,57,49,57,57,49,44,51,52,46,53,52,54,53,51,50,93,44,91,45,55,54,46,51,55,52,54,51,56,44,51,52,46,55,49,53,57,57,49,93,44,91,45,55,54,46,50,52,57,54,51,50,44,51,52,46,56,51,52,54,51,49,93,44,91,45,55,54,46,48,48,54,57,51,54,44,51,53,46,48,48,54,48,51,49,93,44,91,45,55,54,46,48,54,53,55,55,52,44,51,53,46,49,50,52,57,51,55,93,44,91,45,55,54,46,51,48,52,49,51,54,44,51,53,46,50,48,49,52,53,51,93,44,91,45,55,54,46,55,49,49,53,56,44,51,52,46,57,56,49,55,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,80,111,116,116,97,119,97,116,111,109,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,52,53,44,34,98,101,100,115,34,58,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,56,48,51,54,50,44,51,57,46,53,54,54,51,51,50,93,44,91,45,57,54,46,55,49,57,49,53,56,44,51,57,46,51,57,52,51,51,56,93,44,91,45,57,54,46,53,49,54,55,44,51,57,46,49,55,49,49,51,93,44,91,45,57,54,46,51,56,57,48,52,54,44,51,57,46,49,55,50,56,55,56,93,44,91,45,57,54,46,50,51,51,54,55,49,44,51,57,46,50,49,50,50,55,57,93,44,91,45,57,54,46,48,56,51,53,53,55,44,51,57,46,49,57,51,53,48,52,93,44,91,45,57,54,46,48,51,57,48,54,44,51,57,46,49,50,54,53,50,55,93,44,91,45,57,54,46,48,51,53,53,55,51,44,51,57,46,50,49,54,53,50,93,44,91,45,57,54,46,48,51,53,57,53,50,44,51,57,46,53,54,54,49,93,44,91,45,57,54,46,50,51,56,57,54,57,44,51,57,46,53,54,54,50,50,93,44,91,45,57,54,46,53,56,48,51,54,50,44,51,57,46,53,54,54,51,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,57,49,51,44,34,98,101,100,115,34,58,53,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,49,56,52,57,51,44,52,50,46,52,50,49,53,50,93,44,91,45,56,52,46,55,48,57,53,53,54,44,52,50,46,48,55,48,51,54,54,93,44,91,45,56,52,46,51,54,51,50,57,55,44,52,50,46,48,55,51,52,53,54,93,44,91,45,56,52,46,49,51,49,57,54,51,44,52,50,46,48,55,49,53,55,55,93,44,91,45,56,52,46,49,51,49,49,51,54,44,52,50,46,52,50,52,53,54,55,93,44,91,45,56,52,46,49,52,48,55,49,51,44,52,50,46,52,50,52,54,49,49,93,44,91,45,56,52,46,54,48,48,52,48,51,44,52,50,46,52,50,49,57,56,52,93,44,91,45,56,52,46,55,49,56,52,57,51,44,52,50,46,52,50,49,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,67,111,109,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,48,57,55,44,34,98,101,100,115,34,58,50,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,52,54,49,50,52,44,50,57,46,55,52,53,49,56,49,93,44,91,45,57,56,46,53,52,51,55,49,56,44,50,57,46,55,53,50,48,53,50,93,44,91,45,57,56,46,51,56,48,49,54,49,44,50,57,46,55,48,51,57,50,57,93,44,91,45,57,56,46,51,49,48,57,50,56,44,50,57,46,53,57,52,52,55,51,93,44,91,45,57,56,46,48,56,57,50,55,55,44,50,57,46,54,56,51,57,51,49,93,44,91,45,57,55,46,57,57,57,50,55,49,44,50,57,46,55,53,50,52,52,52,93,44,91,45,57,56,46,48,51,48,53,50,51,44,50,57,46,56,52,56,53,51,57,93,44,91,45,57,56,46,50,57,55,54,44,51,48,46,48,51,55,57,57,52,93,44,91,45,57,56,46,52,49,52,48,49,56,44,50,57,46,57,51,55,53,53,55,93,44,91,45,57,56,46,54,52,54,49,50,52,44,50,57,46,55,52,53,49,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,78,97,110,116,117,99,107,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,48,49,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,52,57,51,51,48,56,44,52,49,46,50,55,57,57,55,53,93,44,91,45,55,48,46,51,52,52,48,56,51,44,52,49,46,50,55,54,49,52,54,93,44,91,45,55,48,46,49,48,57,54,56,52,44,52,49,46,49,56,57,56,48,51,93,44,91,45,54,57,46,57,49,48,51,49,57,44,52,49,46,50,50,54,56,52,57,93,44,91,45,54,57,46,57,49,48,48,57,51,44,52,49,46,51,49,55,50,54,51,93,44,91,45,55,48,46,48,48,54,52,54,55,44,52,49,46,52,51,51,56,57,56,93,44,91,45,55,48,46,50,51,52,51,51,44,52,49,46,51,56,51,50,50,57,93,44,91,45,55,48,46,51,50,56,49,56,50,44,52,49,46,51,56,48,49,53,57,93,44,91,45,55,48,46,52,57,51,51,48,56,44,52,49,46,50,55,57,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,109,98,101,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,54,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,50,50,54,55,51,44,51,51,46,52,52,93,44,91,45,56,49,46,50,50,55,55,55,56,44,51,51,46,49,54,50,54,50,50,93,44,91,45,56,49,46,49,57,51,48,57,57,44,51,51,46,49,49,56,54,54,56,93,44,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,44,91,45,56,48,46,55,57,55,57,49,50,44,51,51,46,49,55,54,57,52,52,93,44,91,45,56,48,46,57,52,56,55,53,54,44,51,51,46,51,48,56,48,52,55,93,44,91,45,56,49,46,50,50,50,54,55,51,44,51,51,46,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,114,97,110,115,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,55,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,55,57,48,53,49,50,44,50,56,46,51,49,57,50,51,56,93,44,91,45,57,55,46,49,50,51,48,55,50,44,50,56,46,50,55,50,56,49,55,93,44,91,45,57,55,46,48,50,51,53,56,54,44,50,56,46,49,56,55,54,53,55,93,44,91,45,57,55,46,49,52,52,57,49,54,44,50,56,46,49,48,50,54,50,50,93,44,91,45,57,55,46,50,54,48,56,49,56,44,50,56,46,48,55,53,55,53,57,93,44,91,45,57,55,46,49,51,54,51,49,50,44,50,55,46,57,48,52,51,57,93,44,91,45,57,54,46,57,56,52,50,56,49,44,50,55,46,56,48,51,55,56,51,93,44,91,45,57,54,46,57,53,57,52,57,53,44,50,55,46,56,55,53,51,48,50,93,44,91,45,57,54,46,56,49,53,57,48,53,44,50,56,46,48,50,50,56,51,53,93,44,91,45,57,54,46,56,51,48,56,54,49,44,50,56,46,49,48,56,93,44,91,45,57,54,46,55,57,48,53,49,50,44,50,56,46,51,49,57,50,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,101,114,114,105,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,50,53,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,51,52,52,57,50,44,51,49,46,51,53,48,51,54,49,93,44,91,45,56,51,46,51,51,53,57,52,57,44,51,49,46,50,52,52,53,55,57,93,44,91,45,56,51,46,50,57,53,48,53,50,44,51,49,46,48,50,55,50,55,56,93,44,91,45,56,51,46,49,57,55,57,55,49,44,51,49,46,48,50,53,52,48,53,93,44,91,45,56,51,46,49,54,53,48,55,50,44,51,49,46,49,52,55,49,57,56,93,44,91,45,56,51,46,48,52,54,56,56,53,44,51,49,46,49,56,51,54,56,93,44,91,45,56,51,46,48,52,54,57,56,56,44,51,49,46,50,56,50,57,54,54,93,44,91,45,56,51,46,49,52,48,52,56,51,44,51,49,46,52,50,48,51,57,53,93,44,91,45,56,51,46,49,52,53,53,56,55,44,51,49,46,52,55,50,50,55,54,93,44,91,45,56,51,46,51,51,56,55,50,56,44,51,49,46,52,55,53,57,57,49,93,44,91,45,56,51,46,52,51,52,52,57,50,44,51,49,46,51,53,48,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,86,101,114,109,105,108,108,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,51,49,52,52,57,44,52,48,46,49,52,56,49,50,55,93,44,91,45,56,55,46,53,51,51,50,50,56,44,51,57,46,56,56,51,93,44,91,45,56,55,46,53,51,50,49,57,52,44,51,57,46,54,48,55,51,48,54,93,44,91,45,56,55,46,51,56,50,52,49,56,44,51,57,46,54,48,55,57,51,55,93,44,91,45,56,55,46,51,54,56,56,54,51,44,51,57,46,56,57,48,52,55,49,93,44,91,45,56,55,46,52,50,48,50,50,49,44,51,57,46,57,53,50,52,53,50,93,44,91,45,56,55,46,52,48,54,54,54,55,44,52,48,46,49,50,55,53,48,56,93,44,91,45,56,55,46,53,51,49,52,52,57,44,52,48,46,49,52,56,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,82,111,115,99,111,109,109,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,55,48,54,52,51,44,52,52,46,53,48,55,50,50,51,93,44,91,45,56,52,46,56,53,48,57,50,57,44,52,52,46,53,49,49,48,54,57,93,44,91,45,56,52,46,56,53,49,55,48,53,44,52,52,46,49,54,49,51,55,53,93,44,91,45,56,52,46,54,48,56,49,48,52,44,52,52,46,49,54,48,52,56,50,93,44,91,45,56,52,46,51,54,56,48,51,57,44,52,52,46,49,54,48,53,51,56,93,44,91,45,56,52,46,51,55,48,54,52,51,44,52,52,46,53,48,55,50,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,104,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,55,51,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,53,51,50,53,57,44,51,54,46,53,55,52,54,57,50,93,44,91,45,56,49,46,50,53,51,54,52,57,44,51,54,46,51,54,54,54,48,49,93,44,91,45,56,49,46,48,57,53,49,49,50,44,51,54,46,52,52,48,55,55,51,93,44,91,45,56,48,46,57,54,55,49,53,51,44,51,54,46,52,48,50,48,50,93,44,91,45,56,48,46,57,48,49,54,52,49,44,51,54,46,53,54,49,55,54,54,93,44,91,45,56,49,46,51,53,51,50,53,57,44,51,54,46,53,55,52,54,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,76,97,115,115,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,49,56,53,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,51,51,49,55,56,54,44,52,49,46,49,56,51,56,56,54,93,44,91,45,49,50,49,46,51,50,49,49,56,54,44,52,48,46,56,56,56,55,48,50,93,44,91,45,49,50,49,46,51,50,55,56,50,54,44,52,48,46,52,52,53,51,54,55,93,44,91,45,49,50,49,46,48,54,49,52,49,55,44,52,48,46,52,52,54,53,51,54,93,44,91,45,49,50,49,46,48,54,49,52,57,51,44,52,48,46,50,53,54,52,49,55,93,44,91,45,49,50,48,46,56,55,49,55,56,50,44,52,48,46,50,52,49,54,52,93,44,91,45,49,50,48,46,55,54,52,52,48,51,44,52,48,46,51,49,54,48,49,93,44,91,45,49,50,48,46,53,55,54,56,50,53,44,52,48,46,50,56,53,52,51,93,44,91,45,49,50,48,46,51,52,49,51,56,53,44,52,48,46,49,49,53,50,52,51,93,44,91,45,49,50,48,46,50,48,57,54,52,49,44,52,48,46,48,56,54,48,48,56,93,44,91,45,49,50,48,46,49,48,56,55,54,49,44,51,57,46,57,51,57,53,49,93,44,91,45,49,50,48,46,49,49,48,54,50,55,44,51,57,46,55,54,53,55,55,57,93,44,91,45,49,50,48,46,49,52,55,49,52,57,44,51,57,46,55,48,55,54,53,56,93,44,91,45,49,50,48,46,48,48,49,48,54,50,44,51,57,46,55,50,50,52,49,56,93,44,91,45,49,49,57,46,57,57,53,55,48,53,44,52,48,46,51,55,53,56,51,93,44,91,45,49,49,57,46,57,57,57,56,54,54,44,52,49,46,49,56,51,57,55,52,93,44,91,45,49,50,49,46,51,51,49,55,56,54,44,52,49,46,49,56,51,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,49,48,34,44,34,78,65,77,69,34,58,34,70,97,108,108,115,32,67,104,117,114,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,55,50,50,55,54,44,51,56,46,56,57,51,50,52,53,93,44,91,45,55,55,46,49,56,57,55,53,52,44,51,56,46,56,55,56,49,51,54,93,44,91,45,55,55,46,49,52,57,55,48,49,44,51,56,46,56,55,53,54,55,93,44,91,45,55,55,46,49,55,50,50,55,54,44,51,56,46,56,57,51,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,77,97,110,97,116,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,56,53,51,44,34,98,101,100,115,34,58,56,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,44,91,45,56,50,46,53,53,51,54,54,54,44,50,55,46,54,52,53,52,54,53,93,44,91,45,56,50,46,55,52,53,49,51,55,44,50,55,46,53,55,48,53,53,93,44,91,45,56,50,46,56,50,51,48,50,57,44,50,55,46,53,55,48,53,53,93,44,91,45,56,50,46,55,48,53,52,51,56,44,50,55,46,51,56,57,54,54,56,93,44,91,45,56,50,46,50,53,50,50,54,52,44,50,55,46,51,56,54,50,52,51,93,44,91,45,56,50,46,50,53,51,53,57,54,44,50,55,46,50,48,56,57,49,54,93,44,91,45,56,50,46,48,53,54,52,57,55,44,50,55,46,50,48,55,55,54,57,93,44,91,45,56,50,46,48,53,53,55,53,51,44,50,55,46,51,51,56,50,54,52,93,44,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,117,115,107,105,110,103,117,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,48,55,54,44,34,98,101,100,115,34,58,51,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,56,55,49,48,53,44,52,48,46,49,54,54,56,56,93,44,91,45,56,50,46,49,57,56,55,55,50,44,51,57,46,57,53,48,49,52,93,44,91,45,56,50,46,50,51,51,57,55,52,44,51,57,46,57,49,51,50,54,93,44,91,45,56,50,46,48,55,54,54,51,57,44,51,57,46,55,55,48,57,54,93,44,91,45,56,49,46,54,57,55,52,52,50,44,51,57,46,55,53,53,53,55,50,93,44,91,45,56,49,46,54,57,52,49,52,54,44,51,57,46,56,52,50,54,51,54,93,44,91,45,56,49,46,55,50,56,54,49,49,44,51,57,46,57,51,49,55,50,56,93,44,91,45,56,49,46,55,49,54,50,55,54,44,52,48,46,49,53,50,49,54,54,93,44,91,45,56,50,46,49,56,55,49,48,53,44,52,48,46,49,54,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,104,97,102,102,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,53,57,57,50,49,52,44,51,56,46,57,57,55,57,57,52,93,44,91,45,49,48,54,46,52,54,53,48,51,50,44,51,56,46,57,49,48,51,53,52,93,44,91,45,49,48,54,46,52,49,54,50,54,51,44,51,56,46,56,50,51,56,53,93,44,91,45,49,48,54,46,52,51,48,49,53,57,44,51,56,46,54,53,51,52,54,56,93,44,91,45,49,48,54,46,51,52,56,49,48,56,44,51,56,46,53,49,50,52,57,57,93,44,91,45,49,48,54,46,50,52,54,57,52,44,51,56,46,52,50,50,55,54,56,93,44,91,45,49,48,54,46,48,49,48,55,53,49,44,51,56,46,52,52,54,53,54,54,93,44,91,45,49,48,53,46,57,48,56,55,49,55,44,51,56,46,53,48,53,54,51,49,93,44,91,45,49,48,53,46,56,55,57,49,55,54,44,51,56,46,54,48,55,51,49,50,93,44,91,45,49,48,53,46,57,54,57,55,53,44,51,56,46,54,57,51,53,53,49,93,44,91,45,49,48,53,46,57,48,54,53,56,55,44,51,56,46,56,48,54,57,54,50,93,44,91,45,49,48,54,46,48,50,56,49,51,56,44,51,56,46,57,52,50,56,52,57,93,44,91,45,49,48,54,46,49,48,53,55,53,56,44,51,56,46,57,52,48,51,54,52,93,44,91,45,49,48,54,46,49,57,49,48,48,54,44,51,57,46,48,53,54,48,55,51,93,44,91,45,49,48,54,46,53,55,55,57,54,54,44,51,57,46,48,53,55,57,48,56,93,44,91,45,49,48,54,46,53,57,57,50,49,52,44,51,56,46,57,57,55,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,114,111,119,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,48,52,54,54,54,44,51,56,46,53,49,54,52,48,57,93,44,91,45,49,48,52,46,48,53,51,57,50,49,44,51,56,46,53,50,50,51,57,51,93,44,91,45,49,48,52,46,48,53,56,50,52,50,44,51,56,46,49,52,54,52,57,50,93,44,91,45,49,48,51,46,56,51,53,54,49,54,44,51,56,46,49,49,51,51,52,93,44,91,45,49,48,51,46,54,49,57,49,55,50,44,51,56,46,49,49,51,51,53,53,93,44,91,45,49,48,51,46,53,48,57,51,54,52,44,51,56,46,49,55,50,53,49,52,93,44,91,45,49,48,51,46,53,48,49,55,54,52,44,51,56,46,50,54,53,48,49,54,93,44,91,45,49,48,51,46,53,48,52,54,54,54,44,51,56,46,53,49,54,52,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,70,114,101,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,48,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,52,50,52,50,54,44,51,56,46,54,52,57,56,56,50,93,44,91,45,49,48,53,46,50,52,48,51,54,50,44,51,56,46,54,52,55,53,57,53,93,44,91,45,49,48,53,46,51,50,57,49,51,52,44,51,56,46,54,57,55,50,48,53,93,44,91,45,49,48,53,46,57,54,57,55,53,44,51,56,46,54,57,51,53,53,49,93,44,91,45,49,48,53,46,56,55,57,49,55,54,44,51,56,46,54,48,55,51,49,50,93,44,91,45,49,48,53,46,57,48,56,55,49,55,44,51,56,46,53,48,53,54,51,49,93,44,91,45,49,48,54,46,48,49,48,55,53,49,44,51,56,46,52,52,54,53,54,54,93,44,91,45,49,48,53,46,55,57,54,56,57,55,44,51,56,46,50,54,53,48,52,55,93,44,91,45,49,48,53,46,48,52,57,50,49,53,44,51,56,46,50,53,55,57,55,51,93,44,91,45,49,48,52,46,57,52,48,51,54,54,44,51,56,46,50,53,56,50,55,53,93,44,91,45,49,48,52,46,57,52,49,53,51,51,44,51,56,46,53,49,57,53,54,57,93,44,91,45,49,48,52,46,57,52,50,52,50,54,44,51,56,46,54,52,57,56,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,80,101,97,114,108,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,49,52,57,44,34,98,101,100,115,34,58,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,52,56,57,53,44,51,49,46,48,49,48,51,55,93,44,91,45,56,57,46,52,55,54,48,50,50,44,51,48,46,57,56,50,57,48,49,93,44,91,45,56,57,46,54,53,52,48,51,56,44,51,49,46,48,48,50,53,48,50,93,44,91,45,56,57,46,55,50,56,49,49,57,44,51,49,46,48,48,50,51,93,44,91,45,56,57,46,56,52,50,51,51,44,51,48,46,54,54,54,48,49,53,93,44,91,45,56,57,46,55,53,50,56,48,55,44,51,48,46,53,48,50,57,54,50,93,44,91,45,56,57,46,54,57,48,48,51,53,44,51,48,46,52,53,57,51,51,51,93,44,91,45,56,57,46,53,52,52,53,49,44,51,48,46,53,49,54,56,54,50,93,44,91,45,56,57,46,53,52,52,50,51,50,44,51,48,46,54,52,56,51,54,56,93,44,91,45,56,57,46,51,52,49,52,52,54,44,51,48,46,54,52,55,55,50,93,44,91,45,56,57,46,51,52,48,56,48,54,44,51,48,46,57,48,57,57,49,50,93,44,91,45,56,57,46,51,52,56,57,53,44,51,49,46,48,49,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,50,56,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,52,51,52,54,56,44,51,49,46,52,51,51,52,53,56,93,44,91,45,56,57,46,49,52,54,48,57,50,44,51,49,46,52,51,52,48,53,50,93,44,91,45,56,57,46,49,51,55,57,54,55,44,51,48,46,57,48,57,56,55,55,93,44,91,45,56,56,46,56,56,53,48,51,56,44,51,48,46,57,49,48,55,56,56,93,44,91,45,56,56,46,56,51,52,51,51,57,44,51,48,46,57,57,55,57,56,51,93,44,91,45,56,56,46,56,52,49,55,48,55,44,51,49,46,52,51,51,55,48,51,93,44,91,45,56,56,46,57,52,51,52,54,56,44,51,49,46,52,51,51,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,51,48,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,56,54,56,51,52,44,52,49,46,55,52,48,51,50,54,93,44,91,45,49,48,48,46,50,53,49,50,50,52,44,52,49,46,55,51,57,56,49,55,93,44,91,45,49,48,48,46,50,53,49,48,57,56,44,52,49,46,51,57,51,50,57,56,93,44,91,45,49,48,48,46,50,50,52,50,51,53,44,52,49,46,48,52,54,53,57,55,93,44,91,45,57,57,46,52,50,53,57,56,54,44,52,49,46,48,52,54,52,55,49,93,44,91,45,57,57,46,50,48,55,53,54,52,44,52,49,46,48,52,55,48,48,51,93,44,91,45,57,57,46,50,48,51,50,54,49,44,52,49,46,51,57,52,49,52,93,44,91,45,57,57,46,50,49,50,48,49,54,44,52,49,46,55,52,48,54,49,51,93,44,91,45,57,57,46,50,50,49,56,51,44,52,49,46,55,52,48,55,57,50,93,44,91,45,57,57,46,54,56,54,56,51,52,44,52,49,46,55,52,48,51,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,44,91,45,56,53,46,49,54,52,55,52,52,44,51,48,46,54,48,56,48,55,57,93,44,91,45,56,53,46,49,55,49,56,57,49,44,51,48,46,53,54,52,51,51,54,93,44,91,45,56,53,46,51,56,51,57,52,56,44,51,48,46,53,54,54,56,53,54,93,44,91,45,56,53,46,51,56,57,54,55,57,44,51,48,46,50,48,48,57,55,51,93,44,91,45,56,53,46,49,49,53,54,54,44,51,48,46,49,57,57,57,55,54,93,44,91,45,56,53,46,48,53,50,55,55,55,44,51,48,46,50,56,55,52,48,54,93,44,91,45,56,53,46,48,51,50,57,51,49,44,51,48,46,52,50,48,50,57,57,93,44,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,75,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,54,56,56,44,34,98,101,100,115,34,58,55,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,50,51,52,56,56,44,51,57,46,48,55,52,50,56,50,93,44,91,45,56,52,46,54,49,53,54,54,52,44,51,56,46,56,48,50,50,55,55,93,44,91,45,56,52,46,53,51,50,50,56,56,44,51,56,46,55,57,49,57,51,55,93,44,91,45,56,52,46,52,49,56,49,48,55,44,51,56,46,56,48,54,53,57,54,93,44,91,45,56,52,46,52,50,55,50,56,53,44,51,56,46,57,56,48,56,54,51,93,44,91,45,56,52,46,53,48,54,49,54,49,44,51,57,46,48,57,53,49,55,55,93,44,91,45,56,52,46,54,50,51,52,56,56,44,51,57,46,48,55,52,50,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,104,105,99,107,97,115,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,57,57,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,52,51,56,49,44,52,51,46,50,49,50,56,49,51,93,44,91,45,57,50,46,53,53,52,50,49,49,44,52,50,46,57,48,55,49,49,50,93,44,91,45,57,50,46,48,56,49,53,54,56,44,52,50,46,57,48,55,48,49,51,93,44,91,45,57,50,46,48,56,49,49,52,54,44,52,51,46,48,56,50,55,57,52,93,44,91,45,57,50,46,48,56,48,57,55,54,44,52,51,46,50,49,50,57,52,55,93,44,91,45,57,50,46,53,53,52,51,56,49,44,52,51,46,50,49,50,56,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,50,48,48,44,34,98,101,100,115,34,58,49,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,51,57,55,51,50,44,52,50,46,49,53,50,51,50,93,44,91,45,56,56,46,57,52,49,50,55,57,44,52,49,46,56,57,49,55,53,50,93,44,91,45,56,56,46,57,51,56,54,55,57,44,52,49,46,54,50,56,51,49,54,93,44,91,45,56,56,46,54,48,50,50,52,44,52,49,46,54,51,49,51,56,57,93,44,91,45,56,56,46,54,48,49,57,51,51,44,52,49,46,55,49,57,53,54,51,93,44,91,45,56,56,46,53,56,56,54,53,55,44,52,50,46,49,53,51,53,57,93,44,91,45,56,56,46,55,48,53,53,56,53,44,52,50,46,49,53,51,53,51,55,93,44,91,45,56,56,46,57,51,57,55,51,50,44,52,50,46,49,53,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,56,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,55,48,52,49,53,44,52,51,46,50,53,53,51,53,56,93,44,91,45,57,51,46,57,55,49,50,51,56,44,52,50,46,57,48,55,55,54,50,93,44,91,45,57,51,46,52,57,56,54,49,55,44,52,50,46,57,48,56,53,49,50,93,44,91,45,57,51,46,52,57,55,54,51,53,44,52,51,46,50,53,53,52,54,56,93,44,91,45,57,51,46,57,55,48,52,49,53,44,52,51,46,50,53,53,51,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,116,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,49,52,52,55,55,49,44,52,55,46,48,49,48,51,48,55,93,44,91,45,49,48,50,46,53,50,53,51,54,52,44,52,54,46,57,56,49,50,56,56,93,44,91,45,49,48,51,46,48,51,50,54,56,49,44,52,54,46,57,56,48,53,56,93,44,91,45,49,48,51,46,50,51,49,48,53,54,44,52,54,46,57,56,48,50,57,54,93,44,91,45,49,48,51,46,50,51,49,54,53,54,44,52,54,46,54,50,57,55,54,52,93,44,91,45,49,48,50,46,57,50,55,52,53,49,44,52,54,46,54,51,48,48,50,93,44,91,45,49,48,50,46,48,57,54,55,52,52,44,52,54,46,54,51,49,48,50,54,93,44,91,45,49,48,50,46,48,57,54,50,52,44,52,54,46,55,49,55,55,55,50,93,44,91,45,49,48,50,46,48,57,53,57,48,52,44,52,54,46,57,56,49,51,50,57,93,44,91,45,49,48,50,46,49,52,52,55,55,49,44,52,55,46,48,49,48,51,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,76,117,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,53,52,56,54,50,44,52,55,46,51,48,53,52,56,50,93,44,91,45,56,53,46,56,54,52,57,51,50,44,52,54,46,53,48,52,55,53,56,93,44,91,45,56,53,46,56,54,53,48,50,53,44,52,54,46,50,52,52,54,51,49,93,44,91,45,56,53,46,50,51,55,56,51,57,44,52,54,46,50,52,53,52,51,93,44,91,45,56,53,46,50,51,52,51,51,44,52,55,46,48,52,55,54,49,93,44,91,45,56,53,46,56,53,52,56,54,50,44,52,55,46,51,48,53,52,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,48,54,44,34,98,101,100,115,34,58,50,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,53,54,50,53,49,50,44,51,52,46,50,56,57,49,56,51,93,44,91,45,57,55,46,53,54,48,55,54,49,44,51,52,46,48,55,49,49,53,93,44,91,45,57,54,46,57,54,57,54,50,55,44,51,52,46,48,55,49,48,50,93,44,91,45,57,54,46,57,51,51,53,48,51,44,51,52,46,49,55,50,55,52,56,93,44,91,45,57,54,46,57,51,51,51,48,53,44,51,52,46,51,51,50,53,54,49,93,44,91,45,57,55,46,48,51,56,50,51,57,44,51,52,46,51,55,53,55,48,55,93,44,91,45,57,55,46,51,53,50,49,49,53,44,51,52,46,51,55,54,49,56,56,93,44,91,45,57,55,46,51,53,50,49,56,51,44,51,52,46,53,48,54,55,57,54,93,44,91,45,57,55,46,53,54,50,51,50,51,44,51,52,46,53,48,55,48,51,54,93,44,91,45,57,55,46,53,54,50,53,49,50,44,51,52,46,50,56,57,49,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,80,97,115,113,117,111,116,97,110,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,53,51,55,49,49,44,51,54,46,51,55,56,48,57,50,93,44,91,45,55,54,46,49,53,55,57,53,51,44,51,54,46,48,53,57,53,49,55,93,44,91,45,55,54,46,48,50,50,54,48,55,44,51,54,46,48,57,54,55,50,53,93,44,91,45,55,54,46,48,54,56,54,48,53,44,51,54,46,50,49,54,53,57,93,44,91,45,55,54,46,50,51,56,50,52,52,44,51,54,46,51,55,49,53,56,56,93,44,91,45,55,54,46,52,57,49,51,51,54,44,51,54,46,53,49,48,54,55,55,93,44,91,45,55,54,46,52,53,51,55,49,49,44,51,54,46,51,55,56,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,84,97,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,56,56,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,48,54,51,49,54,44,51,54,46,57,57,53,50,54,55,93,44,91,45,49,48,53,46,57,55,49,56,56,57,44,51,54,46,56,56,54,50,52,55,93,44,91,45,49,48,53,46,57,55,49,56,51,54,44,51,54,46,54,51,50,52,52,52,93,44,91,45,49,48,53,46,57,51,56,55,53,52,44,51,54,46,52,54,50,52,48,50,93,44,91,45,49,48,53,46,57,54,49,52,49,52,44,51,54,46,51,53,51,48,54,54,93,44,91,45,49,48,54,46,48,53,56,51,54,52,44,51,54,46,50,57,54,57,55,56,93,44,91,45,49,48,53,46,56,53,54,57,52,55,44,51,54,46,50,51,48,52,51,52,93,44,91,45,49,48,53,46,55,51,53,56,56,51,44,51,54,46,49,48,48,49,51,51,93,44,91,45,49,48,53,46,53,51,48,51,56,44,51,54,46,48,49,51,48,49,52,93,44,91,45,49,48,53,46,51,52,49,50,54,52,44,51,54,46,50,54,49,56,54,51,93,44,91,45,49,48,53,46,51,50,54,54,55,52,44,51,54,46,53,48,48,48,51,49,93,44,91,45,49,48,53,46,51,55,48,54,51,56,44,51,54,46,54,56,49,48,51,50,93,44,91,45,49,48,53,46,50,51,48,54,51,50,44,51,54,46,55,50,51,55,56,52,93,44,91,45,49,48,53,46,50,48,48,49,49,55,44,51,54,46,57,49,53,54,50,56,93,44,91,45,49,48,53,46,50,50,48,53,48,54,44,51,54,46,57,57,52,57,55,52,93,44,91,45,49,48,53,46,55,49,56,52,54,51,44,51,54,46,57,57,53,56,52,49,93,44,91,45,49,48,54,46,48,48,54,51,49,54,44,51,54,46,57,57,53,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,111,108,105,118,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,57,50,44,34,98,101,100,115,34,58,49,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,53,55,48,48,50,44,51,51,46,57,56,55,53,56,54,93,44,91,45,57,48,46,54,53,57,52,53,55,44,51,52,46,49,49,56,56,54,55,93,44,91,45,57,48,46,57,53,53,57,55,52,44,51,52,46,49,50,48,49,50,53,93,44,91,45,57,48,46,57,53,53,49,55,44,51,52,46,49,49,56,56,51,51,93,44,91,45,57,49,46,48,49,49,53,49,44,51,51,46,57,50,52,55,51,51,93,44,91,45,57,49,46,48,55,51,48,49,49,44,51,51,46,56,53,55,52,52,57,93,44,91,45,57,49,46,48,54,56,50,57,44,51,51,46,55,49,54,52,55,55,93,44,91,45,57,49,46,49,51,48,52,52,53,44,51,51,46,54,48,54,48,51,52,93,44,91,45,57,49,46,50,51,48,56,57,55,44,51,51,46,53,54,49,52,93,44,91,45,57,49,46,50,49,53,54,55,49,44,51,51,46,53,50,57,52,50,51,93,44,91,45,57,48,46,55,54,51,53,48,57,44,51,51,46,53,50,57,51,56,57,93,44,91,45,57,48,46,54,53,56,54,44,51,51,46,54,49,54,50,55,50,93,44,91,45,57,48,46,54,53,55,48,48,50,44,51,51,46,57,56,55,53,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,78,121,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,55,48,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,54,48,48,57,52,54,44,51,57,46,49,54,49,52,54,51,93,44,91,45,49,49,55,46,51,51,49,56,53,55,44,51,57,46,49,54,51,52,51,93,44,91,45,49,49,55,46,55,55,53,52,54,56,44,51,57,46,48,57,51,52,50,53,93,44,91,45,49,49,55,46,56,54,53,49,49,54,44,51,57,46,48,55,51,54,53,52,93,44,91,45,49,49,56,46,49,57,54,50,55,52,44,51,56,46,57,57,57,57,50,54,93,44,91,45,49,49,56,46,49,57,54,50,51,53,44,51,56,46,57,49,57,48,53,56,93,44,91,45,49,49,55,46,54,57,49,48,50,49,44,51,56,46,52,55,51,55,57,55,93,44,91,45,49,49,55,46,49,54,53,54,49,50,44,51,56,46,48,48,49,54,57,50,93,44,91,45,49,49,55,46,49,54,54,48,48,49,44,51,54,46,57,55,49,49,49,49,93,44,91,45,49,49,54,46,51,56,48,51,52,55,44,51,54,46,51,55,52,57,54,49,93,44,91,45,49,49,53,46,56,52,53,57,57,52,44,51,53,46,57,54,51,55,48,55,93,44,91,45,49,49,53,46,56,52,53,55,54,50,44,51,54,46,49,55,48,55,54,52,93,44,91,45,49,49,53,46,56,57,53,55,53,51,44,51,54,46,49,55,50,50,50,55,93,44,91,45,49,49,53,46,56,57,54,57,50,53,44,51,54,46,56,52,50,48,56,53,93,44,91,45,49,49,53,46,56,57,51,56,53,55,44,51,56,46,48,53,48,53,51,49,93,44,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,48,53,48,55,53,55,93,44,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,54,55,55,51,50,50,93,44,91,45,49,49,53,46,57,48,55,48,55,49,44,51,57,46,49,54,49,56,52,56,93,44,91,45,49,49,54,46,54,48,48,57,52,54,44,51,57,46,49,54,49,52,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,72,97,119,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,52,48,50,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,51,48,52,51,51,44,51,54,46,53,57,51,55,54,49,93,44,91,45,56,51,46,49,49,57,51,57,51,44,51,54,46,53,49,52,50,57,93,44,91,45,56,51,46,50,56,48,53,57,53,44,51,54,46,51,57,52,54,56,57,93,44,91,45,56,51,46,50,53,53,50,57,50,44,51,54,46,50,56,57,48,57,50,93,44,91,45,56,51,46,49,53,49,54,56,57,44,51,54,46,51,49,56,49,57,50,93,44,91,45,56,51,46,48,56,50,51,49,50,44,51,54,46,50,52,50,50,57,54,93,44,91,45,56,50,46,56,52,48,52,56,49,44,51,54,46,51,55,48,54,57,56,93,44,91,45,56,50,46,55,48,50,53,54,54,44,51,54,46,52,49,48,52,49,50,93,44,91,45,56,50,46,54,56,48,54,55,55,44,51,54,46,52,51,49,56,93,44,91,45,56,50,46,54,48,57,49,55,54,44,51,54,46,53,57,52,48,57,57,93,44,91,45,56,50,46,56,51,48,52,51,51,44,51,54,46,53,57,51,55,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,111,119,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,57,53,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,53,53,53,57,44,52,54,46,50,56,48,48,56,49,93,44,91,45,49,48,52,46,48,52,53,53,52,55,44,52,53,46,57,52,53,51,48,56,93,44,91,45,49,48,50,46,57,57,53,50,52,56,44,52,53,46,57,52,53,49,54,55,93,44,91,45,49,48,50,46,57,57,53,50,52,53,44,52,54,46,50,56,48,54,53,49,93,44,91,45,49,48,52,46,48,52,53,53,53,57,44,52,54,46,50,56,48,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,48,54,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,51,52,56,54,51,44,52,48,46,49,54,53,49,51,49,93,44,91,45,55,56,46,50,57,57,48,48,51,44,51,57,46,56,50,53,53,93,44,91,45,55,56,46,51,56,48,53,57,57,44,51,57,46,55,50,50,53,57,57,93,44,91,45,55,56,46,51,52,50,56,51,52,44,51,57,46,55,50,50,50,54,51,93,44,91,45,55,56,46,48,57,57,52,48,51,44,51,57,46,55,50,50,48,57,57,93,44,91,45,55,56,46,48,48,50,55,44,51,57,46,56,50,54,53,57,57,93,44,91,45,55,55,46,56,54,52,52,56,57,44,52,48,46,48,54,49,53,54,56,93,44,91,45,55,56,46,49,51,52,56,54,51,44,52,48,46,49,54,53,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,48,57,49,44,34,98,101,100,115,34,58,49,52,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,56,52,54,55,53,44,51,48,46,49,52,55,52,52,51,93,44,91,45,57,50,46,50,48,50,55,50,50,44,51,48,46,49,52,50,56,54,93,44,91,45,57,49,46,57,54,52,52,53,56,44,51,48,46,48,51,54,57,49,56,93,44,91,45,57,49,46,57,53,48,57,57,56,44,51,48,46,48,55,51,50,49,51,93,44,91,45,57,49,46,57,55,57,57,51,50,44,51,48,46,49,56,50,53,56,53,93,44,91,45,57,49,46,57,52,57,48,52,55,44,51,48,46,50,55,54,55,55,49,93,44,91,45,57,49,46,57,56,56,55,49,56,44,51,48,46,51,54,56,53,57,56,93,44,91,45,57,50,46,49,52,50,49,56,52,44,51,48,46,50,57,56,56,49,55,93,44,91,45,57,50,46,50,56,52,54,55,53,44,51,48,46,49,52,55,52,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,52,50,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,50,48,54,54,54,44,51,51,46,51,57,54,49,57,53,93,44,91,45,57,56,46,52,50,54,53,53,51,44,51,51,46,48,48,55,57,49,51,93,44,91,45,57,56,46,48,53,54,48,57,52,44,51,51,46,48,48,51,51,51,50,93,44,91,45,57,55,46,57,50,49,54,52,50,44,51,51,46,48,48,49,50,56,52,93,44,91,45,57,55,46,57,49,56,49,56,57,44,51,51,46,52,51,51,56,55,51,93,44,91,45,57,55,46,57,55,56,57,49,57,44,51,51,46,52,54,55,49,50,57,93,44,91,45,57,56,46,52,50,49,52,49,57,44,51,51,46,52,54,54,55,57,55,93,44,91,45,57,56,46,52,50,48,54,54,54,44,51,51,46,51,57,54,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,83,116,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,56,52,53,53,57,44,52,49,46,49,52,57,51,57,52,93,44,91,45,56,57,46,57,56,53,52,55,57,44,52,48,46,57,55,52,52,57,53,93,44,91,45,56,57,46,54,51,56,55,50,55,44,52,48,46,57,55,51,55,48,55,93,44,91,45,56,57,46,54,51,56,53,51,54,44,52,49,46,49,52,56,53,52,53,93,44,91,45,56,57,46,54,51,56,55,48,56,44,52,49,46,50,51,51,56,54,50,93,44,91,45,56,57,46,56,53,55,54,49,54,44,52,49,46,50,51,52,52,55,57,93,44,91,45,56,57,46,56,54,56,49,53,50,44,52,49,46,49,52,57,52,57,51,93,44,91,45,56,57,46,57,56,52,53,53,57,44,52,49,46,49,52,57,51,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,52,51,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,56,56,56,52,52,52,44,51,53,46,48,50,57,56,56,57,93,44,91,45,57,57,46,56,56,56,50,50,50,44,51,52,46,57,52,51,56,57,55,93,44,91,45,57,57,46,55,51,49,48,57,50,44,51,52,46,57,52,52,48,53,56,93,44,91,45,57,57,46,55,49,57,55,57,55,44,51,52,46,55,54,56,52,53,49,93,44,91,45,57,57,46,54,54,54,56,52,57,44,51,52,46,55,50,52,53,53,53,93,44,91,45,57,57,46,52,50,51,50,48,49,44,51,52,46,55,50,53,48,50,93,44,91,45,57,57,46,52,48,53,56,50,49,44,51,52,46,56,49,51,48,51,56,93,44,91,45,57,57,46,50,52,54,52,54,50,44,51,52,46,56,50,50,49,49,52,93,44,91,45,57,57,46,51,48,54,50,50,44,51,52,46,56,53,55,54,51,50,93,44,91,45,57,57,46,51,50,54,55,53,55,44,51,53,46,48,49,56,57,49,50,93,44,91,45,57,57,46,52,48,57,50,57,49,44,51,53,46,49,49,52,53,48,57,93,44,91,45,57,57,46,55,56,50,55,50,55,44,51,53,46,49,49,54,57,52,93,44,91,45,57,57,46,56,56,56,52,52,52,44,51,53,46,48,50,57,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,49,34,44,34,78,65,77,69,34,58,34,72,101,109,112,104,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,54,49,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,52,48,50,50,49,44,51,54,46,48,53,54,52,57,49,93,44,91,45,49,48,48,46,53,52,48,49,53,56,44,51,53,46,54,49,57,50,57,54,93,44,91,45,49,48,48,46,48,48,48,51,57,50,44,51,53,46,54,49,57,49,49,53,93,44,91,45,49,48,48,46,48,48,48,51,57,54,44,51,53,46,56,56,49,50,51,51,93,44,91,45,49,48,48,46,48,48,48,51,57,57,44,51,54,46,48,53,53,54,55,55,93,44,91,45,49,48,48,46,53,52,48,50,50,49,44,51,54,46,48,53,54,52,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,78,101,122,32,80,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,49,53,53,44,34,98,101,100,115,34,58,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,52,53,54,48,57,56,44,52,54,46,54,50,57,48,57,55,93,44,91,45,49,49,54,46,54,49,49,55,52,44,52,54,46,54,51,49,50,52,53,93,44,91,45,49,49,54,46,55,49,57,48,56,53,44,52,54,46,53,52,50,56,55,52,93,44,91,45,49,49,55,46,48,51,57,54,57,52,44,52,54,46,53,52,49,55,48,57,93,44,91,45,49,49,55,46,48,51,57,55,54,54,44,52,54,46,52,50,53,56,56,55,93,44,91,45,49,49,54,46,57,50,49,51,53,44,52,54,46,49,54,52,53,49,52,93,44,91,45,49,49,54,46,57,49,54,48,55,49,44,52,53,46,57,57,53,51,53,55,93,44,91,45,49,49,54,46,55,57,52,53,54,50,44,52,53,46,56,53,54,48,52,57,93,44,91,45,49,49,54,46,55,48,49,56,49,57,44,52,53,46,57,57,54,51,56,49,93,44,91,45,49,49,54,46,55,49,51,52,57,54,44,52,54,46,51,50,53,53,50,55,93,44,91,45,49,49,54,46,51,54,56,56,48,49,44,52,54,46,51,52,51,50,49,55,93,44,91,45,49,49,54,46,51,54,57,49,50,50,44,52,54,46,52,54,54,57,50,51,93,44,91,45,49,49,54,46,52,53,49,55,57,50,44,52,54,46,53,48,48,54,57,56,93,44,91,45,49,49,54,46,52,53,54,48,57,56,44,52,54,46,54,50,57,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,87,97,108,119,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,54,48,50,50,51,44,52,53,46,50,52,54,56,49,93,44,91,45,57,57,46,55,48,56,57,56,55,44,52,53,46,50,52,53,56,54,54,93,44,91,45,57,57,46,55,48,55,55,48,53,44,52,53,46,53,57,51,51,57,49,93,44,91,45,57,57,46,55,49,55,52,54,54,44,52,53,46,53,57,51,52,50,56,93,44,91,45,49,48,48,46,52,51,48,48,55,57,44,52,53,46,53,57,52,56,50,51,93,44,91,45,49,48,48,46,52,56,54,53,54,49,44,52,53,46,53,51,54,53,50,49,93,44,91,45,49,48,48,46,51,52,49,57,50,52,44,52,53,46,52,55,50,57,48,52,93,44,91,45,49,48,48,46,50,55,52,49,55,54,44,52,53,46,51,56,49,56,52,53,93,44,91,45,49,48,48,46,50,54,48,50,50,51,44,52,53,46,50,52,54,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,78,97,112,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,53,51,48,44,34,98,101,100,115,34,58,52,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,51,57,53,48,53,54,44,51,56,46,56,54,52,50,52,53,93,44,91,45,49,50,50,46,52,54,51,56,57,44,51,56,46,55,48,53,50,48,51,93,44,91,45,49,50,50,46,54,50,55,51,57,54,44,51,56,46,54,54,55,53,48,54,93,44,91,45,49,50,50,46,54,52,54,50,54,56,44,51,56,46,53,57,57,49,50,93,44,91,45,49,50,50,46,53,52,51,56,57,51,44,51,56,46,53,49,57,57,54,54,93,44,91,45,49,50,50,46,51,53,57,57,50,52,44,51,56,46,50,51,48,53,48,49,93,44,91,45,49,50,50,46,52,48,54,55,56,54,44,51,56,46,49,53,53,54,51,50,93,44,91,45,49,50,50,46,49,57,53,51,56,44,51,56,46,49,53,53,48,49,55,93,44,91,45,49,50,50,46,50,48,53,57,56,50,44,51,56,46,51,49,53,55,49,51,93,44,91,45,49,50,50,46,48,54,52,55,55,57,44,51,56,46,51,49,53,57,49,50,93,44,91,45,49,50,50,46,49,50,54,51,56,57,44,51,56,46,52,50,56,57,49,56,93,44,91,45,49,50,50,46,49,48,51,50,56,49,44,51,56,46,53,49,51,51,52,56,93,44,91,45,49,50,50,46,50,56,55,57,57,56,44,51,56,46,56,51,57,57,51,49,93,44,91,45,49,50,50,46,51,57,53,48,53,54,44,51,56,46,56,54,52,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,111,116,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,50,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,54,49,57,53,54,44,51,52,46,52,48,53,57,52,56,93,44,91,45,57,56,46,54,48,57,54,54,44,51,52,46,51,51,51,55,50,93,44,91,45,57,56,46,54,48,57,57,56,55,44,51,52,46,49,53,55,49,53,52,93,44,91,45,57,56,46,52,56,54,51,50,56,44,51,52,46,48,54,50,53,57,56,93,44,91,45,57,56,46,52,50,51,53,51,51,44,51,52,46,48,56,50,56,52,51,93,44,91,45,57,56,46,51,54,52,48,50,51,44,51,52,46,49,53,55,49,48,57,93,44,91,45,57,56,46,49,51,57,48,55,50,44,51,52,46,49,52,49,56,55,93,44,91,45,57,56,46,49,51,57,50,50,55,44,51,52,46,50,56,57,56,50,52,93,44,91,45,57,56,46,49,52,50,49,52,56,44,51,52,46,53,48,54,57,57,52,93,44,91,45,57,56,46,50,57,53,57,50,56,44,51,52,46,52,52,57,48,52,51,93,44,91,45,57,56,46,53,48,52,57,53,56,44,51,52,46,52,52,57,52,49,52,93,44,91,45,57,56,46,54,54,49,57,53,54,44,51,52,46,52,48,53,57,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,57,53,55,54,53,44,51,56,46,50,48,52,48,56,51,93,44,91,45,57,49,46,49,48,48,48,49,55,44,51,55,46,55,52,48,48,49,50,93,44,91,45,57,48,46,54,52,53,49,51,53,44,51,55,46,55,51,52,56,49,51,93,44,91,45,57,48,46,54,51,57,57,56,44,51,56,46,48,55,54,53,52,56,93,44,91,45,57,48,46,55,56,48,49,56,53,44,51,56,46,50,48,52,49,49,50,93,44,91,45,57,49,46,48,57,53,55,54,53,44,51,56,46,50,48,52,48,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,97,121,117,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,56,54,56,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,49,51,56,48,54,44,52,51,46,48,50,52,48,51,53,93,44,91,45,55,54,46,55,51,51,52,53,52,44,52,50,46,55,50,55,56,57,53,93,44,91,45,55,54,46,54,54,54,53,52,51,44,52,50,46,54,50,51,52,53,55,93,44,91,45,55,54,46,50,54,53,53,56,52,44,52,50,46,54,50,51,53,56,56,93,44,91,45,55,54,46,50,55,52,54,55,51,44,52,50,46,55,55,49,50,53,55,93,44,91,45,55,54,46,51,53,54,57,55,52,44,52,50,46,56,52,57,52,53,93,44,91,45,55,54,46,52,53,48,55,51,56,44,52,50,46,56,52,53,55,54,93,44,91,45,55,54,46,52,55,57,50,50,52,44,52,51,46,50,50,55,53,49,57,93,44,91,45,55,54,46,54,48,53,48,49,50,44,52,51,46,50,53,51,53,55,93,44,91,45,55,54,46,54,52,52,55,49,50,44,52,51,46,55,48,51,52,54,54,93,44,91,45,55,54,46,55,51,52,55,50,53,44,52,51,46,55,48,56,49,50,49,93,44,91,45,55,54,46,55,53,51,53,51,56,44,52,51,46,54,56,52,50,55,53,93,44,91,45,55,54,46,55,48,50,51,50,53,44,52,51,46,48,56,48,51,57,51,93,44,91,45,55,54,46,55,49,51,56,48,54,44,52,51,46,48,50,52,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,49,55,34,44,34,78,65,77,69,34,58,34,83,104,97,99,107,101,108,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,57,54,48,53,44,51,50,46,53,49,52,55,54,56,93,44,91,45,57,57,46,48,57,54,48,49,54,44,51,50,46,57,53,55,48,51,55,93,44,91,45,57,57,46,52,55,49,50,53,56,44,51,50,46,57,53,55,48,50,53,93,44,91,45,57,57,46,54,49,50,48,48,49,44,51,50,46,57,53,54,57,54,50,93,44,91,45,57,57,46,54,49,50,48,50,54,44,51,50,46,53,49,52,54,53,52,93,44,91,45,57,57,46,49,49,52,50,57,51,44,51,50,46,53,49,52,56,49,49,93,44,91,45,57,57,46,48,57,54,48,53,44,51,50,46,53,49,52,55,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,48,55,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,97,99,105,110,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,50,55,52,56,44,51,48,46,56,53,57,53,52,55,93,44,91,45,57,53,46,51,53,57,49,53,54,44,51,48,46,53,48,52,51,54,57,93,44,91,45,57,53,46,51,48,56,51,57,53,44,51,48,46,52,48,53,55,53,93,44,91,45,57,53,46,49,54,53,56,57,55,44,51,48,46,51,52,52,57,55,54,93,44,91,45,57,52,46,56,52,57,52,49,52,44,51,48,46,52,57,51,53,53,51,93,44,91,45,57,53,46,48,50,52,52,52,51,44,51,48,46,54,54,48,53,48,51,93,44,91,45,57,53,46,49,52,53,52,50,54,44,51,48,46,55,49,51,55,57,57,93,44,91,45,57,53,46,50,48,48,49,56,44,51,48,46,56,50,52,53,54,54,93,44,91,45,57,53,46,51,50,55,52,56,44,51,48,46,56,53,57,53,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,68,117,98,117,113,117,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,56,48,50,44,34,98,101,100,115,34,58,52,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,51,50,55,54,54,44,52,50,46,54,52,53,56,52,52,93,44,91,45,57,49,46,49,51,48,48,55,57,44,52,50,46,50,57,53,55,54,49,93,44,91,45,57,48,46,56,57,56,48,50,44,52,50,46,50,57,53,50,51,54,93,44,91,45,57,48,46,54,54,53,53,53,49,44,52,50,46,50,57,52,54,57,57,93,44,91,45,57,48,46,54,54,53,48,50,57,44,52,50,46,51,56,50,49,53,53,93,44,91,45,57,48,46,52,55,51,55,57,56,44,52,50,46,51,56,49,52,53,56,93,44,91,45,57,48,46,54,52,50,56,52,51,44,52,50,46,53,48,56,52,56,49,93,44,91,45,57,48,46,55,50,48,50,48,57,44,52,50,46,54,52,48,55,53,56,93,44,91,45,57,48,46,56,57,54,57,53,49,44,52,50,46,54,55,53,48,56,50,93,44,91,45,57,49,46,49,51,50,55,54,54,44,52,50,46,54,52,53,56,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,71,111,111,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,53,57,51,50,54,44,51,55,46,55,52,56,53,50,56,93,44,91,45,55,56,46,48,55,50,49,55,52,44,51,55,46,54,53,55,51,56,53,93,44,91,45,55,55,46,56,57,55,50,57,50,44,51,55,46,54,54,56,49,56,49,93,44,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,44,91,45,55,55,46,54,51,48,54,55,44,51,55,46,55,48,53,54,55,51,93,44,91,45,55,55,46,55,57,55,51,48,54,44,51,55,46,55,50,57,51,53,56,93,44,91,45,55,56,46,48,54,50,52,56,49,44,51,55,46,57,48,52,54,56,53,93,44,91,45,55,56,46,49,53,57,51,50,54,44,51,55,46,55,52,56,53,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,83,104,101,114,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,54,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,57,55,54,52,44,51,57,46,53,54,56,49,56,93,44,91,45,49,48,50,46,48,52,55,49,54,49,44,51,57,46,49,51,51,49,52,55,93,44,91,45,49,48,49,46,52,55,56,49,57,53,44,51,57,46,49,51,52,55,54,49,93,44,91,45,49,48,49,46,51,57,49,55,49,55,44,51,57,46,49,51,53,49,49,55,93,44,91,45,49,48,49,46,51,56,57,48,54,56,44,51,57,46,53,54,56,51,54,57,93,44,91,45,49,48,49,46,52,49,51,57,49,51,44,51,57,46,53,54,56,51,54,49,93,44,91,45,49,48,50,46,48,52,57,55,54,52,44,51,57,46,53,54,56,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,51,50,52,44,34,98,101,100,115,34,58,52,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,50,52,55,57,50,44,52,48,46,57,57,53,54,51,56,93,44,91,45,56,50,46,55,50,55,49,54,52,44,52,48,46,55,49,49,50,48,51,93,44,91,45,56,50,46,54,50,55,55,54,55,44,52,48,46,55,48,57,51,53,50,93,44,91,45,56,50,46,54,50,51,54,48,57,44,52,48,46,53,52,57,56,55,57,93,44,91,45,56,50,46,51,51,54,57,54,50,44,52,48,46,53,53,53,48,48,49,93,44,91,45,56,50,46,51,51,57,50,49,49,44,52,48,46,55,50,54,54,56,51,93,44,91,45,56,50,46,52,49,54,56,52,55,44,52,48,46,56,49,52,53,54,55,93,44,91,45,56,50,46,52,51,50,56,53,50,44,52,48,46,57,57,50,57,52,52,93,44,91,45,56,50,46,55,50,52,55,57,50,44,52,48,46,57,57,53,54,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,52,50,55,44,34,98,101,100,115,34,58,51,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,51,53,53,49,55,44,51,57,46,57,52,53,50,50,50,93,44,91,45,57,49,46,52,51,51,55,57,56,44,51,57,46,56,52,49,56,54,53,93,44,91,45,57,49,46,51,54,53,49,50,53,44,51,57,46,55,53,56,55,50,51,93,44,91,45,57,48,46,57,49,53,57,54,49,44,51,57,46,55,53,55,50,93,44,91,45,57,48,46,57,49,54,54,54,57,44,51,57,46,56,52,52,57,50,55,93,44,91,45,57,48,46,57,49,51,52,54,57,44,52,48,46,49,48,52,52,53,53,93,44,91,45,57,48,46,57,49,49,57,54,57,44,52,48,46,49,57,51,48,56,56,93,44,91,45,57,49,46,53,48,53,48,54,49,44,52,48,46,49,57,57,57,50,53,93,44,91,45,57,49,46,52,57,52,56,55,56,44,52,48,46,48,51,54,52,53,51,93,44,91,45,57,49,46,52,51,53,53,49,55,44,51,57,46,57,52,53,50,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,97,109,112,97,105,103,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,49,52,55,54,51,44,52,48,46,50,55,51,52,53,57,93,44,91,45,56,52,46,48,50,50,57,49,57,44,52,48,46,49,56,51,57,52,53,93,44,91,45,56,52,46,48,51,54,48,54,57,44,52,48,46,48,52,48,49,56,50,93,44,91,45,56,51,46,53,49,54,49,53,53,44,52,48,46,48,49,48,49,56,56,93,44,91,45,56,51,46,53,48,51,55,49,52,44,52,48,46,49,49,49,52,54,56,93,44,91,45,56,51,46,53,53,49,51,51,56,44,52,48,46,50,50,57,51,55,93,44,91,45,56,52,46,48,49,52,55,54,51,44,52,48,46,50,55,51,52,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,49,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,51,50,57,56,57,57,44,52,51,46,54,48,48,50,49,52,93,44,91,45,55,50,46,51,55,51,56,44,52,51,46,53,55,57,49,49,57,93,44,91,45,55,50,46,52,51,52,54,52,53,44,52,51,46,50,51,51,51,49,49,93,44,91,45,55,50,46,52,53,50,50,53,49,44,52,51,46,49,54,49,51,53,52,93,44,91,45,55,50,46,49,53,54,54,54,49,44,52,51,46,49,56,49,57,54,56,93,44,91,45,55,50,46,48,51,56,49,52,57,44,52,51,46,49,50,56,56,48,55,93,44,91,45,55,50,46,48,48,57,48,55,52,44,52,51,46,49,56,55,56,56,50,93,44,91,45,55,50,46,48,57,48,49,52,54,44,52,51,46,51,50,50,53,53,51,93,44,91,45,55,49,46,57,51,53,51,49,44,52,51,46,53,50,56,56,56,93,44,91,45,55,50,46,51,50,57,56,57,57,44,52,51,46,54,48,48,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,73,114,111,113,117,111,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,49,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,51,49,57,51,53,44,52,48,46,57,57,55,55,55,55,93,44,91,45,56,56,46,49,49,55,55,56,57,44,52,48,46,52,56,55,56,54,93,44,91,45,56,55,46,57,51,53,51,48,57,44,52,48,46,52,56,53,57,50,51,93,44,91,45,56,55,46,53,50,54,51,54,54,44,52,48,46,52,57,49,50,51,55,93,44,91,45,56,55,46,53,50,54,48,51,49,44,52,48,46,55,51,54,56,56,53,93,44,91,45,56,55,46,53,50,54,50,48,56,44,52,49,46,48,49,48,51,52,49,93,44,91,45,56,56,46,49,51,49,57,51,53,44,52,48,46,57,57,55,55,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,80,111,119,101,115,104,105,101,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,48,53,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,54,53,57,57,57,44,52,49,46,56,54,50,51,55,51,93,44,91,45,57,50,46,55,53,54,53,48,56,44,52,49,46,53,48,56,55,57,52,93,44,91,45,57,50,46,52,49,49,57,57,53,44,52,49,46,53,48,57,53,52,56,93,44,91,45,57,50,46,50,57,55,52,57,52,44,52,49,46,53,48,57,55,57,93,44,91,45,57,50,46,50,57,56,49,54,52,44,52,49,46,56,54,50,55,55,57,93,44,91,45,57,50,46,55,54,53,57,57,57,44,52,49,46,56,54,50,51,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,50,48,56,44,34,98,101,100,115,34,58,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,52,55,55,51,53,44,52,48,46,57,49,52,48,49,54,93,44,91,45,56,49,46,54,56,56,52,57,49,44,52,48,46,57,56,56,53,57,93,44,91,45,56,50,46,49,50,57,51,51,52,44,52,48,46,57,57,49,56,48,55,93,44,91,45,56,50,46,49,50,54,49,57,57,44,52,48,46,54,54,56,50,50,57,93,44,91,45,56,49,46,54,53,48,48,52,53,44,52,48,46,54,54,56,49,49,55,93,44,91,45,56,49,46,54,52,55,55,51,53,44,52,48,46,57,49,52,48,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,51,54,57,44,34,98,101,100,115,34,58,50,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,53,56,54,54,53,44,51,51,46,53,53,48,57,51,51,93,44,91,45,56,52,46,54,48,57,53,52,44,51,51,46,53,48,50,53,49,49,93,44,91,45,56,52,46,53,56,54,48,52,55,44,51,51,46,51,53,55,56,56,53,93,44,91,45,56,52,46,52,57,55,53,50,55,44,51,51,46,50,53,55,52,50,50,93,44,91,45,56,52,46,51,56,56,49,49,56,44,51,51,46,51,53,50,52,54,53,93,44,91,45,56,52,46,51,56,55,55,48,56,44,51,51,46,52,55,55,49,51,57,93,44,91,45,56,52,46,52,53,56,54,54,53,44,51,51,46,53,53,48,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,54,52,50,48,55,44,51,51,46,51,53,53,48,51,93,44,91,45,56,51,46,50,55,52,49,48,56,44,51,51,46,49,56,55,50,51,56,93,44,91,45,56,51,46,48,57,55,54,52,57,44,51,51,46,49,53,49,53,51,54,93,44,91,45,56,51,46,48,53,50,49,57,55,44,51,51,46,48,56,48,54,56,50,93,44,91,45,56,50,46,56,56,56,56,54,54,44,51,51,46,49,51,56,54,48,51,93,44,91,45,56,50,46,55,52,56,51,49,49,44,51,51,46,50,51,56,51,52,56,93,44,91,45,56,50,46,55,53,53,56,52,54,44,51,51,46,50,53,51,52,52,93,44,91,45,56,50,46,56,53,49,57,53,52,44,51,51,46,52,52,51,53,52,51,93,44,91,45,56,51,46,48,49,50,56,53,51,44,51,51,46,52,54,57,49,55,56,93,44,91,45,56,51,46,49,54,52,50,48,55,44,51,51,46,51,53,53,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,57,34,44,34,78,65,77,69,34,58,34,75,101,110,100,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,57,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,50,48,49,52,55,44,51,48,46,49,51,56,50,57,93,44,91,45,57,56,46,57,49,55,55,50,53,44,50,57,46,55,56,49,51,57,56,93,44,91,45,57,56,46,55,55,56,55,56,50,44,50,57,46,55,50,48,49,54,55,93,44,91,45,57,56,46,54,52,54,49,50,52,44,50,57,46,55,52,53,49,56,49,93,44,91,45,57,56,46,52,49,52,48,49,56,44,50,57,46,57,51,55,53,53,55,93,44,91,45,57,56,46,53,56,55,56,57,55,44,51,48,46,49,51,56,57,53,52,93,44,91,45,57,56,46,57,50,48,49,52,55,44,51,48,46,49,51,56,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,54,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,52,52,51,53,48,54,44,52,50,46,51,53,53,48,49,55,93,44,91,45,55,52,46,53,51,55,51,49,44,52,50,46,50,48,49,52,50,52,93,44,91,45,55,52,46,52,53,49,55,49,51,44,52,50,46,49,54,57,50,50,53,93,44,91,45,55,52,46,51,48,55,53,55,49,44,52,50,46,49,49,52,51,52,54,93,44,91,45,55,52,46,48,55,52,55,57,55,44,52,50,46,48,57,54,53,56,57,93,44,91,45,55,52,46,48,48,50,52,53,44,52,50,46,49,55,54,57,57,50,93,44,91,45,55,51,46,57,49,48,54,55,53,44,52,50,46,49,50,55,50,57,51,93,44,91,45,55,51,46,55,56,57,53,48,50,44,52,50,46,50,54,55,55,51,56,93,44,91,45,55,51,46,55,56,51,55,50,49,44,52,50,46,52,54,52,50,51,49,93,44,91,45,55,52,46,50,53,52,51,48,51,44,52,50,46,52,48,56,50,48,55,93,44,91,45,55,52,46,52,52,51,53,48,54,44,52,50,46,51,53,53,48,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,54,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,57,52,52,57,56,44,51,56,46,51,49,49,50,52,50,93,44,91,45,55,56,46,50,50,49,49,48,52,44,51,56,46,50,51,48,48,56,57,93,44,91,45,55,56,46,50,56,56,56,51,55,44,51,56,46,50,55,50,54,53,54,93,44,91,45,55,56,46,51,54,56,55,52,51,44,51,56,46,49,56,52,48,55,52,93,44,91,45,55,56,46,50,48,57,51,56,52,44,51,56,46,49,51,49,49,50,56,93,44,91,45,55,56,46,49,48,49,55,52,56,44,51,56,46,49,53,50,53,54,55,93,44,91,45,55,55,46,57,53,51,54,51,57,44,51,56,46,49,49,56,53,48,49,93,44,91,45,55,55,46,55,48,50,56,52,51,44,51,56,46,51,54,48,56,52,93,44,91,45,55,55,46,57,48,56,57,55,57,44,51,56,46,51,56,49,53,48,51,93,44,91,45,55,56,46,48,57,52,52,57,56,44,51,56,46,51,49,49,50,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,99,67,117,114,116,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,54,54,44,34,98,101,100,115,34,58,55,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,51,55,54,48,52,44,51,52,46,53,48,55,50,57,54,93,44,91,45,57,53,46,48,52,54,55,52,54,44,51,52,46,53,48,55,50,55,54,93,44,91,45,57,53,46,48,52,54,53,56,53,44,51,52,46,50,52,51,55,55,54,93,44,91,45,57,53,46,49,53,49,51,50,51,44,51,52,46,50,52,51,55,51,55,93,44,91,45,57,53,46,49,53,54,53,50,49,44,51,52,46,49,53,54,57,54,53,93,44,91,45,57,53,46,49,53,53,56,56,50,44,51,51,46,57,51,54,53,55,50,93,44,91,45,57,52,46,57,57,56,48,49,57,44,51,51,46,56,54,48,53,48,52,93,44,91,45,57,52,46,56,54,48,54,56,55,44,51,51,46,55,52,49,57,52,53,93,44,91,45,57,52,46,55,52,54,48,57,54,44,51,51,46,55,48,51,48,49,54,93,44,91,45,57,52,46,53,54,52,48,55,54,44,51,51,46,54,50,54,50,54,53,93,44,91,45,57,52,46,52,56,53,56,55,56,44,51,51,46,54,51,55,56,54,53,93,44,91,45,57,52,46,52,55,55,50,57,57,44,51,51,46,57,52,48,57,51,50,93,44,91,45,57,52,46,52,55,48,51,51,49,44,51,52,46,49,57,48,49,56,51,93,44,91,45,57,52,46,52,54,49,49,52,57,44,51,52,46,53,48,55,52,53,55,93,44,91,45,57,52,46,57,51,55,54,48,52,44,51,52,46,53,48,55,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,55,34,44,34,78,65,77,69,34,58,34,84,105,102,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,49,48,44,34,98,101,100,115,34,58,49,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,52,57,51,56,52,44,51,49,46,53,54,55,57,55,55,93,44,91,45,56,51,46,54,53,52,48,57,44,51,49,46,51,51,48,54,54,49,93,44,91,45,56,51,46,53,49,50,54,48,55,44,51,49,46,51,50,55,52,48,53,93,44,91,45,56,51,46,52,51,52,52,57,50,44,51,49,46,51,53,48,51,54,49,93,44,91,45,56,51,46,51,51,56,55,50,56,44,51,49,46,52,55,53,57,57,49,93,44,91,45,56,51,46,53,48,48,55,48,50,44,51,49,46,53,57,51,57,57,93,44,91,45,56,51,46,54,52,57,51,56,52,44,51,49,46,53,54,55,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,55,57,52,56,55,44,52,49,46,48,53,51,50,57,57,93,44,91,45,57,54,46,48,53,54,50,53,54,44,52,49,46,48,54,53,51,53,54,93,44,91,45,57,54,46,50,48,55,54,52,56,44,52,48,46,57,57,53,54,50,56,93,44,91,45,57,54,46,51,49,57,49,57,49,44,52,49,46,48,52,52,57,57,56,93,44,91,45,57,54,46,52,54,51,56,54,49,44,52,49,46,48,49,54,48,54,57,93,44,91,45,57,54,46,52,54,51,55,54,52,44,52,48,46,55,56,51,57,54,93,44,91,45,57,53,46,56,51,52,49,50,44,52,48,46,55,56,51,55,56,51,93,44,91,45,57,53,46,56,49,51,52,54,53,44,52,48,46,57,48,49,54,57,51,93,44,91,45,57,53,46,56,55,57,52,56,55,44,52,49,46,48,53,51,50,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,75,105,110,103,115,98,117,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,54,55,44,34,98,101,100,115,34,58,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,53,51,48,50,56,44,52,52,46,53,52,52,51,57,56,93,44,91,45,57,55,46,56,53,51,54,54,44,52,52,46,49,57,53,50,51,51,93,44,91,45,57,55,46,56,52,57,52,57,50,44,52,52,46,49,57,53,50,51,53,93,44,91,45,57,55,46,51,55,48,49,49,53,44,52,52,46,49,57,52,57,55,49,93,44,91,45,57,55,46,49,50,57,54,55,49,44,52,52,46,49,57,53,57,51,51,93,44,91,45,57,55,46,49,50,56,48,50,52,44,52,52,46,53,52,51,49,50,54,93,44,91,45,57,55,46,52,57,50,50,54,54,44,52,52,46,53,52,51,56,56,52,93,44,91,45,57,55,46,56,53,51,48,50,56,44,52,52,46,53,52,52,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,111,110,118,101,114,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,57,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,55,51,52,48,51,44,52,50,46,52,51,51,50,51,54,93,44,91,45,49,48,53,46,53,53,54,48,52,50,44,52,50,46,52,51,48,53,56,51,93,44,91,45,49,48,53,46,54,49,51,56,54,53,44,52,50,46,51,48,52,52,53,53,93,44,91,45,49,48,53,46,51,55,53,53,52,49,44,52,50,46,50,57,48,49,51,57,93,44,91,45,49,48,53,46,50,56,51,57,49,44,52,50,46,52,51,49,52,48,50,93,44,91,45,49,48,53,46,50,56,54,53,49,49,44,52,50,46,54,48,53,56,50,54,93,44,91,45,49,48,52,46,56,57,50,52,51,55,44,52,50,46,54,48,56,57,51,57,93,44,91,45,49,48,52,46,56,57,57,57,52,49,44,52,51,46,52,57,57,54,52,93,44,91,45,49,48,53,46,48,55,57,55,57,55,44,52,51,46,52,57,56,52,52,53,93,44,91,45,49,48,54,46,48,49,55,51,54,54,44,52,51,46,52,57,52,57,54,57,93,44,91,45,49,48,54,46,48,55,56,48,54,56,44,52,51,46,52,57,52,52,55,49,93,44,91,45,49,48,54,46,48,55,53,56,53,50,44,52,50,46,52,51,51,50,49,56,93,44,91,45,49,48,54,46,48,55,51,52,48,51,44,52,50,46,52,51,51,50,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,72,101,114,107,105,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,53,48,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,49,49,48,49,54,44,52,51,46,54,49,53,50,50,57,93,44,91,45,55,53,46,48,54,57,49,54,53,44,52,51,46,50,50,55,51,51,51,93,44,91,45,55,53,46,50,49,57,49,48,54,44,52,51,46,48,53,50,52,54,57,93,44,91,45,55,53,46,50,49,50,49,53,56,44,52,50,46,56,55,57,57,55,51,93,44,91,45,55,53,46,49,48,48,57,57,57,44,52,50,46,57,48,56,51,54,51,93,44,91,45,55,52,46,57,48,54,55,51,56,44,52,50,46,56,50,52,57,52,51,93,44,91,45,55,52,46,55,54,51,51,48,51,44,52,50,46,56,54,51,50,51,55,93,44,91,45,55,52,46,55,53,57,56,57,53,44,52,51,46,48,52,55,52,50,51,93,44,91,45,55,52,46,54,57,54,55,56,55,44,52,51,46,49,56,51,49,49,54,93,44,91,45,55,52,46,55,49,50,54,49,53,44,52,51,46,50,56,54,49,52,51,93,44,91,45,55,52,46,56,54,55,55,49,50,44,52,51,46,51,51,57,56,50,54,93,44,91,45,55,52,46,55,55,53,54,49,55,44,52,51,46,52,56,54,54,55,55,93,44,91,45,55,52,46,56,53,52,49,55,49,44,52,52,46,48,55,48,48,56,57,93,44,91,45,55,53,46,48,54,50,55,55,57,44,52,52,46,48,53,48,52,93,44,91,45,55,53,46,49,55,48,49,53,57,44,52,52,46,48,57,54,57,53,57,93,44,91,45,55,53,46,49,49,48,49,54,44,52,51,46,54,49,53,50,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,52,57,55,50,44,52,54,46,54,51,49,54,51,93,44,91,45,57,57,46,57,49,53,53,56,54,44,52,54,46,54,51,50,57,50,54,93,44,91,45,57,57,46,57,49,54,55,53,56,44,52,54,46,50,56,51,49,55,49,93,44,91,45,57,57,46,56,55,56,51,53,52,44,52,54,46,50,56,50,56,50,57,93,44,91,45,57,57,46,48,51,55,50,56,57,44,52,54,46,50,56,50,56,55,49,93,44,91,45,57,57,46,48,51,54,54,50,53,44,52,54,46,54,51,48,50,49,49,93,44,91,45,57,57,46,52,52,57,55,50,44,52,54,46,54,51,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,111,103,101,98,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,49,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,54,57,54,50,50,44,52,54,46,55,57,56,49,56,50,93,44,91,45,57,48,46,52,49,56,51,57,50,44,52,54,46,53,54,54,48,57,57,93,44,91,45,57,48,46,50,49,54,49,55,50,44,52,54,46,53,48,49,50,55,50,93,44,91,45,57,48,46,49,50,48,53,55,50,44,52,54,46,51,51,55,48,51,57,93,44,91,45,56,57,46,57,50,57,49,53,56,44,52,54,46,50,57,57,55,52,56,93,44,91,45,56,57,46,48,57,49,54,51,56,44,52,54,46,49,51,56,52,52,55,93,44,91,45,56,56,46,57,57,48,56,54,52,44,52,54,46,48,57,55,51,56,49,93,44,91,45,56,56,46,57,57,49,48,49,50,44,52,54,46,51,51,50,51,48,56,93,44,91,45,56,57,46,51,54,53,53,48,55,44,52,54,46,51,51,51,48,55,56,93,44,91,45,56,57,46,51,54,53,48,57,52,44,52,54,46,53,48,53,57,52,57,93,44,91,45,56,57,46,55,52,48,53,54,56,44,52,54,46,53,48,53,54,52,50,93,44,91,45,56,57,46,56,54,52,52,50,44,52,54,46,53,57,50,54,52,51,93,44,91,45,56,57,46,56,54,51,55,57,51,44,52,54,46,55,54,53,52,48,53,93,44,91,45,57,48,46,48,48,48,49,55,49,44,52,54,46,55,54,53,53,50,57,93,44,91,45,57,48,46,48,48,48,49,54,49,44,52,54,46,57,57,57,57,51,55,93,44,91,45,57,48,46,49,49,49,54,56,57,44,52,55,46,48,52,49,57,54,52,93,44,91,45,57,48,46,50,54,57,54,50,50,44,52,54,46,55,57,56,49,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,101,99,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,55,55,51,44,34,98,101,100,115,34,58,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,49,57,52,54,55,49,44,52,55,46,49,53,49,49,52,57,93,44,91,45,57,54,46,49,55,52,53,56,55,44,52,54,46,55,49,55,56,53,52,93,44,91,45,57,53,46,49,54,51,55,49,44,52,54,46,55,49,55,54,52,93,44,91,45,57,53,46,49,54,51,48,49,44,52,54,46,56,48,52,55,50,93,44,91,45,57,53,46,49,54,57,49,55,50,44,52,55,46,49,53,50,53,49,53,93,44,91,45,57,53,46,53,53,49,49,56,54,44,52,55,46,49,53,49,52,53,51,93,44,91,45,57,54,46,48,54,55,48,54,57,44,52,55,46,49,53,49,56,49,51,93,44,91,45,57,54,46,49,57,52,54,55,49,44,52,55,46,49,53,49,49,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,49,52,53,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,53,48,49,54,54,44,51,52,46,53,52,53,57,54,51,93,44,91,45,56,54,46,53,56,49,57,51,54,44,51,52,46,51,48,52,54,57,52,93,44,91,45,56,54,46,52,53,51,48,50,44,51,52,46,50,53,57,51,49,55,93,44,91,45,56,54,46,51,48,51,53,49,54,44,51,52,46,48,57,57,48,55,51,93,44,91,45,56,54,46,49,48,54,48,56,54,44,51,52,46,50,48,48,55,53,54,93,44,91,45,56,54,46,49,49,48,51,54,50,44,51,52,46,52,50,55,55,57,55,93,44,91,45,56,54,46,48,53,55,55,49,50,44,51,52,46,52,55,53,57,57,52,93,44,91,45,56,54,46,49,52,57,56,48,54,44,51,52,46,53,51,51,54,51,51,93,44,91,45,56,54,46,49,52,56,52,54,52,44,51,52,46,53,57,57,48,54,57,93,44,91,45,56,54,46,51,50,54,56,53,51,44,51,52,46,53,57,57,52,48,51,93,44,91,45,56,54,46,51,49,49,49,56,55,44,51,52,46,53,51,57,50,55,55,93,44,91,45,56,54,46,52,50,53,52,56,50,44,51,52,46,52,55,57,50,55,55,93,44,91,45,56,54,46,53,53,48,49,54,54,44,51,52,46,53,52,53,57,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,48,52,51,49,55,44,51,54,46,50,55,48,51,55,56,93,44,91,45,56,51,46,57,52,49,55,49,49,44,51,54,46,49,56,54,51,55,56,93,44,91,45,56,51,46,55,51,50,55,48,52,44,51,54,46,49,54,52,53,56,51,93,44,91,45,56,51,46,54,54,55,52,48,56,44,51,54,46,51,52,52,51,56,49,93,44,91,45,56,51,46,57,48,53,54,51,56,44,51,54,46,52,49,57,57,55,57,93,44,91,45,56,52,46,48,48,52,51,49,55,44,51,54,46,50,55,48,51,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,77,105,110,101,114,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,55,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,53,55,48,55,51,44,51,57,46,53,51,53,49,52,49,93,44,91,45,55,56,46,55,57,53,50,54,56,44,51,57,46,54,49,48,55,93,44,91,45,55,56,46,57,53,55,51,48,49,44,51,57,46,52,52,48,48,57,53,93,44,91,45,55,57,46,48,54,55,53,53,57,44,51,57,46,52,55,57,52,52,51,93,44,91,45,55,57,46,50,55,49,54,57,53,44,51,57,46,51,50,55,57,57,57,93,44,91,45,55,57,46,49,51,52,52,53,54,44,51,57,46,51,49,50,53,48,49,93,44,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,44,91,45,55,56,46,56,53,48,55,50,51,44,51,57,46,51,51,49,48,57,51,93,44,91,45,55,56,46,54,53,55,48,55,51,44,51,57,46,53,51,53,49,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,115,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,49,50,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,56,54,55,51,49,56,44,52,55,46,50,49,48,57,54,50,93,44,91,45,57,48,46,55,51,51,55,53,54,44,52,54,46,56,56,54,56,57,53,93,44,91,45,57,48,46,56,51,56,50,55,54,44,52,54,46,55,51,57,57,57,50,93,44,91,45,57,48,46,56,51,48,50,49,54,44,52,54,46,54,54,51,52,55,50,93,44,91,45,57,48,46,57,50,55,48,53,55,44,52,54,46,53,56,53,52,49,53,93,44,91,45,57,48,46,57,50,52,53,56,51,44,52,54,46,49,53,52,54,49,54,93,44,91,45,57,48,46,57,50,53,49,55,52,44,52,53,46,57,56,49,48,53,53,93,44,91,45,57,48,46,54,55,54,57,54,56,44,52,53,46,57,56,49,53,53,52,93,44,91,45,57,48,46,51,48,50,48,54,51,44,52,53,46,57,56,49,51,52,57,93,44,91,45,57,48,46,51,48,51,48,55,50,44,52,54,46,49,53,52,56,52,57,93,44,91,45,57,48,46,52,50,53,57,55,56,44,52,54,46,50,52,48,52,53,93,44,91,45,57,48,46,53,53,50,50,50,55,44,52,54,46,50,52,48,56,53,49,93,44,91,45,57,48,46,53,52,57,56,56,44,52,54,46,53,56,51,53,53,50,93,44,91,45,57,48,46,52,52,56,57,53,54,44,52,54,46,55,57,55,52,48,49,93,44,91,45,57,48,46,50,54,57,54,50,50,44,52,54,46,55,57,56,49,56,50,93,44,91,45,57,48,46,49,49,49,54,56,57,44,52,55,46,48,52,49,57,54,52,93,44,91,45,56,57,46,57,53,55,49,48,50,44,52,55,46,50,57,49,49,48,51,93,44,91,45,57,48,46,54,53,52,54,54,44,52,55,46,51,48,57,56,50,50,93,44,91,45,57,48,46,55,57,53,49,56,57,44,52,55,46,50,52,52,50,57,57,93,44,91,45,57,48,46,56,54,55,51,49,56,44,52,55,46,50,49,48,57,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,70,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,57,56,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,52,55,51,44,52,48,46,57,57,52,53,54,93,44,91,45,56,56,46,50,51,52,57,53,44,52,48,46,54,49,56,50,48,56,93,44,91,45,56,56,46,52,53,57,52,55,53,44,52,48,46,54,49,55,51,52,53,93,44,91,45,56,56,46,52,53,57,57,53,55,44,52,48,46,51,57,56,56,53,93,44,91,45,56,55,46,57,51,50,51,56,55,44,52,48,46,51,57,57,52,93,44,91,45,56,55,46,57,51,53,51,48,57,44,52,48,46,52,56,53,57,50,51,93,44,91,45,56,56,46,49,49,55,55,56,57,44,52,48,46,52,56,55,56,54,93,44,91,45,56,56,46,49,51,49,57,51,53,44,52,48,46,57,57,55,55,55,55,93,44,91,45,56,56,46,50,52,55,51,44,52,48,46,57,57,52,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,69,109,109,111,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,50,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,57,48,49,57,57,44,52,54,46,52,50,55,56,57,52,93,44,91,45,49,48,48,46,53,53,56,53,52,57,44,52,54,46,50,52,57,57,57,51,93,44,91,45,49,48,48,46,54,50,57,49,52,53,44,52,54,46,49,52,53,54,48,56,93,44,91,45,49,48,48,46,53,49,49,57,52,57,44,52,53,46,57,52,51,55,49,50,93,44,91,45,49,48,48,46,52,57,57,51,55,49,44,52,53,46,57,52,51,54,53,51,93,44,91,45,57,57,46,56,56,48,48,54,44,52,53,46,57,52,49,52,50,51,93,44,91,45,57,57,46,56,55,56,51,53,52,44,52,54,46,50,56,50,56,50,57,93,44,91,45,57,57,46,57,49,54,55,53,56,44,52,54,46,50,56,51,49,55,49,93,44,91,45,57,57,46,57,49,53,53,56,54,44,52,54,46,54,51,50,57,50,54,93,44,91,45,49,48,48,46,48,56,49,49,57,56,44,52,54,46,54,51,51,51,57,54,93,44,91,45,49,48,48,46,54,54,50,48,49,53,44,52,54,46,54,51,52,54,93,44,91,45,49,48,48,46,53,52,52,53,53,53,44,52,54,46,53,51,51,55,54,54,93,44,91,45,49,48,48,46,53,57,48,49,57,57,44,52,54,46,52,50,55,56,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,104,97,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,48,56,53,44,34,98,101,100,115,34,58,53,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,52,57,56,51,55,54,44,52,49,46,49,56,50,54,55,53,93,44,91,45,49,50,50,46,53,50,55,55,53,51,44,52,49,46,48,49,52,51,57,53,93,44,91,45,49,50,50,46,53,57,56,53,50,56,44,52,48,46,57,55,53,56,52,55,93,44,91,45,49,50,50,46,54,54,57,56,51,57,44,52,48,46,55,55,51,53,54,55,93,44,91,45,49,50,50,46,55,53,50,48,50,51,44,52,48,46,54,56,57,56,56,50,93,44,91,45,49,50,50,46,54,57,51,48,57,57,44,52,48,46,53,56,48,55,52,55,93,44,91,45,49,50,50,46,57,51,49,50,54,55,44,52,48,46,52,52,53,53,53,55,93,44,91,45,49,50,51,46,48,54,53,52,50,54,44,52,48,46,50,56,54,57,55,49,93,44,91,45,49,50,50,46,55,52,56,54,48,56,44,52,48,46,51,54,53,54,57,52,93,44,91,45,49,50,50,46,54,53,48,50,54,51,44,52,48,46,51,50,56,54,51,93,44,91,45,49,50,50,46,53,49,57,57,56,56,44,52,48,46,51,57,51,54,55,53,93,44,91,45,49,50,50,46,51,49,48,52,49,50,44,52,48,46,51,55,49,48,54,52,93,44,91,45,49,50,50,46,48,49,48,51,49,54,44,52,48,46,52,50,54,53,53,56,93,44,91,45,49,50,49,46,54,56,53,54,55,57,44,52,48,46,52,53,51,49,50,49,93,44,91,45,49,50,49,46,52,57,55,54,51,53,44,52,48,46,52,52,53,53,57,49,93,44,91,45,49,50,49,46,51,50,55,56,50,54,44,52,48,46,52,52,53,51,54,55,93,44,91,45,49,50,49,46,51,50,49,49,56,54,44,52,48,46,56,56,56,55,48,50,93,44,91,45,49,50,49,46,51,51,49,55,56,54,44,52,49,46,49,56,51,56,56,54,93,44,91,45,49,50,49,46,52,52,54,52,57,53,44,52,49,46,49,56,51,52,56,52,93,44,91,45,49,50,50,46,52,57,56,51,55,54,44,52,49,46,49,56,50,54,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,86,101,114,109,105,108,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,56,54,55,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,56,52,54,55,53,44,51,48,46,49,52,55,52,52,51,93,44,91,45,57,50,46,52,50,54,48,51,57,44,51,48,46,48,52,57,51,54,57,93,44,91,45,57,50,46,53,51,52,54,51,56,44,51,48,46,49,48,55,56,53,50,93,44,91,45,57,50,46,54,50,53,52,56,52,44,51,48,46,48,57,50,51,51,93,44,91,45,57,50,46,55,51,56,54,48,52,44,51,48,46,48,51,55,51,50,51,93,44,91,45,57,50,46,54,49,53,54,49,44,51,48,46,48,51,56,49,54,56,93,44,91,45,57,50,46,54,49,55,51,48,54,44,50,57,46,53,50,55,49,50,57,93,44,91,45,57,50,46,50,57,51,54,55,44,50,57,46,52,56,49,52,57,54,93,44,91,45,57,50,46,49,52,54,54,54,54,44,50,57,46,53,51,50,48,51,55,93,44,91,45,57,50,46,48,52,53,54,49,54,44,50,57,46,53,48,53,56,48,54,93,44,91,45,57,49,46,57,55,57,57,48,56,44,50,57,46,54,53,48,49,50,56,93,44,91,45,57,49,46,57,57,48,51,57,54,44,50,57,46,57,55,48,51,50,54,93,44,91,45,57,49,46,57,54,52,52,53,56,44,51,48,46,48,51,54,57,49,56,93,44,91,45,57,50,46,50,48,50,55,50,50,44,51,48,46,49,52,50,56,54,93,44,91,45,57,50,46,50,56,52,54,55,53,44,51,48,46,49,52,55,52,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,48,51,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,48,55,49,51,56,44,51,54,46,52,57,55,48,56,49,93,44,91,45,57,49,46,50,55,52,57,52,44,51,54,46,51,55,52,49,50,93,44,91,45,57,49,46,50,53,56,57,50,44,51,54,46,50,53,55,56,56,93,44,91,45,57,49,46,49,49,57,54,50,53,44,51,54,46,49,53,51,54,55,49,93,44,91,45,57,48,46,56,48,57,56,49,54,44,51,54,46,49,52,57,53,54,55,93,44,91,45,57,48,46,56,48,54,54,49,53,44,51,54,46,50,54,54,56,54,53,93,44,91,45,57,48,46,55,53,49,56,49,44,51,54,46,50,56,51,56,51,54,93,44,91,45,57,48,46,55,56,52,52,50,52,44,51,54,46,52,57,56,53,51,52,93,44,91,45,57,49,46,49,50,54,53,50,57,44,51,54,46,52,57,55,55,49,50,93,44,91,45,57,49,46,52,48,55,49,51,56,44,51,54,46,52,57,55,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,79,110,101,105,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,52,53,44,34,98,101,100,115,34,58,49,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,52,51,52,49,52,44,52,53,46,53,53,53,48,56,50,93,44,91,45,56,57,46,52,50,56,50,53,56,44,52,53,46,53,53,53,51,53,51,93,44,91,45,56,57,46,52,50,52,56,50,52,44,52,53,46,52,54,55,49,54,54,93,44,91,45,56,57,46,48,52,54,52,57,44,52,53,46,52,54,52,52,51,57,93,44,91,45,56,57,46,48,52,55,54,48,49,44,52,53,46,56,57,53,51,53,53,93,44,91,45,57,48,46,48,52,50,56,53,55,44,52,53,46,56,57,55,50,54,51,93,44,91,45,57,48,46,48,52,51,52,49,52,44,52,53,46,53,53,53,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,69,97,115,116,32,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,53,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,54,53,48,49,56,44,51,51,46,48,48,53,48,56,51,93,44,91,45,57,49,46,51,51,53,52,54,51,44,51,50,46,56,54,54,49,48,52,93,44,91,45,57,49,46,51,52,52,56,52,53,44,51,50,46,55,53,54,54,53,57,93,44,91,45,57,49,46,52,52,53,50,57,57,44,51,50,46,53,56,49,57,53,54,93,44,91,45,57,49,46,52,53,55,54,52,51,44,51,50,46,53,51,55,56,48,55,93,44,91,45,57,49,46,49,51,51,55,49,51,44,51,50,46,53,51,55,57,49,50,93,44,91,45,57,49,46,48,54,57,55,57,50,44,51,50,46,53,54,50,56,48,51,93,44,91,45,57,49,46,48,52,51,53,53,50,44,51,50,46,53,55,54,50,55,49,93,44,91,45,57,49,46,49,53,50,54,57,57,44,51,50,46,54,52,48,55,53,55,93,44,91,45,57,49,46,49,52,51,53,53,57,44,51,50,46,56,52,52,55,51,56,93,44,91,45,57,49,46,50,49,50,56,51,55,44,51,50,46,57,50,50,49,48,51,93,44,91,45,57,49,46,49,54,54,48,55,51,44,51,51,46,48,48,52,49,48,54,93,44,91,45,57,49,46,50,54,53,48,49,56,44,51,51,46,48,48,53,48,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,69,97,115,116,32,70,101,108,105,99,105,97,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,57,57,44,34,98,101,100,115,34,58,54,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,55,54,49,52,44,51,48,46,57,57,57,48,56,93,44,91,45,57,49,46,50,52,48,52,57,52,44,51,48,46,55,56,55,49,54,51,93,44,91,45,57,49,46,51,49,48,48,54,49,44,51,48,46,54,53,51,57,54,49,93,44,91,45,57,49,46,50,57,55,54,53,56,44,51,48,46,54,52,57,53,52,56,93,44,91,45,57,49,46,50,53,52,52,49,57,44,51,48,46,55,48,53,50,57,52,93,44,91,45,57,48,46,56,52,57,48,52,49,44,51,48,46,55,49,57,51,49,49,93,44,91,45,57,48,46,56,54,49,48,49,57,44,51,48,46,57,51,53,51,55,51,93,44,91,45,57,48,46,56,50,53,56,50,57,44,51,48,46,57,57,57,51,54,49,93,44,91,45,57,49,46,48,54,48,50,49,57,44,51,48,46,57,57,56,57,50,55,93,44,91,45,57,49,46,49,55,54,49,52,44,51,48,46,57,57,57,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,66,101,114,110,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,57,52,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,50,53,48,53,52,44,51,48,46,49,53,51,52,57,51,93,44,91,45,56,57,46,54,56,51,50,51,44,51,48,46,48,55,54,52,48,54,93,44,91,45,56,57,46,56,56,49,53,57,57,44,50,57,46,57,56,54,50,93,44,91,45,56,57,46,57,49,48,55,48,56,44,50,57,46,56,54,55,56,54,53,93,44,91,45,56,57,46,56,54,57,55,50,44,50,57,46,55,57,53,52,53,49,93,44,91,45,56,57,46,55,50,49,48,52,53,44,50,57,46,55,53,55,54,53,50,93,44,91,45,56,57,46,52,56,52,53,57,49,44,50,57,46,54,49,55,53,53,49,93,44,91,45,56,56,46,56,55,57,50,51,53,44,50,57,46,54,52,55,52,48,57,93,44,91,45,56,56,46,56,48,49,56,49,55,44,50,57,46,55,53,48,49,57,55,93,44,91,45,56,56,46,55,53,56,51,56,56,44,50,57,46,57,49,56,50,55,49,93,44,91,45,56,56,46,55,56,51,54,54,54,44,51,48,46,48,50,54,54,56,53,93,44,91,45,56,56,46,56,56,57,48,51,44,51,48,46,49,51,57,56,52,53,93,44,91,45,56,57,46,48,57,54,52,55,54,44,51,48,46,49,54,53,56,50,57,93,44,91,45,56,57,46,49,56,51,54,54,57,44,51,48,46,50,49,50,49,53,53,93,44,91,45,56,57,46,51,48,54,49,51,53,44,51,48,46,49,55,55,57,52,49,93,44,91,45,56,57,46,52,57,52,57,55,51,44,51,48,46,49,54,48,55,53,93,44,91,45,56,57,46,54,50,53,48,53,52,44,51,48,46,49,53,51,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,56,49,34,44,34,78,65,77,69,34,58,34,87,104,97,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,53,53,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,49,55,53,52,50,50,44,50,57,46,54,51,51,56,48,54,93,44,91,45,57,54,46,51,48,55,54,55,50,44,50,57,46,53,49,52,53,50,51,93,44,91,45,57,54,46,51,52,57,50,49,55,44,50,57,46,52,48,54,48,53,50,93,44,91,45,57,54,46,54,52,48,51,49,53,44,50,57,46,50,52,55,56,48,52,93,44,91,45,57,54,46,51,48,57,49,55,56,44,50,56,46,57,54,51,50,57,49,93,44,91,45,57,53,46,57,54,53,49,57,54,44,50,57,46,49,52,54,56,54,53,93,44,91,45,57,53,46,56,55,52,48,50,56,44,50,57,46,50,50,57,55,48,50,93,44,91,45,57,53,46,56,52,55,54,53,54,44,50,57,46,50,54,50,53,57,93,44,91,45,57,53,46,57,53,48,54,52,51,44,50,57,46,51,51,54,53,55,55,93,44,91,45,57,54,46,48,54,48,54,55,54,44,50,57,46,52,55,54,52,55,51,93,44,91,45,57,54,46,48,56,56,57,49,50,44,50,57,46,54,48,49,54,53,56,93,44,91,45,57,54,46,49,55,53,52,50,50,44,50,57,46,54,51,51,56,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,57,56,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,56,34,44,34,78,65,77,69,34,58,34,80,114,105,110,99,101,32,111,102,32,87,97,108,101,115,45,72,121,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,55,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,51,49,46,55,54,50,51,51,57,44,53,52,46,54,56,54,56,52,93,44,91,45,49,51,49,46,55,57,52,50,56,55,44,53,52,46,57,52,52,48,49,55,93,44,91,45,49,51,49,46,53,49,48,54,54,44,53,53,46,48,49,54,51,54,54,93,44,91,45,49,51,49,46,51,51,54,57,56,51,44,53,52,46,57,57,53,53,51,52,93,44,91,45,49,51,49,46,50,51,57,53,53,52,44,53,53,46,49,54,57,54,56,51,93,44,91,45,49,51,49,46,52,56,54,55,53,54,44,53,53,46,50,55,54,49,56,51,93,44,91,45,49,51,49,46,54,48,57,50,53,51,44,53,53,46,50,56,50,48,49,51,93,44,91,45,49,51,49,46,54,56,53,51,55,55,44,53,53,46,49,49,52,52,53,56,93,44,91,45,49,51,49,46,56,53,53,48,48,51,44,53,53,46,48,56,56,54,49,53,93,44,91,45,49,51,49,46,57,52,49,51,54,52,44,53,53,46,51,49,50,56,50,54,93,44,91,45,49,51,50,46,48,51,55,48,48,54,44,53,53,46,52,54,53,50,52,54,93,44,91,45,49,51,50,46,50,50,53,57,55,57,44,53,53,46,53,54,53,56,49,50,93,44,91,45,49,51,50,46,49,57,57,55,52,57,44,53,53,46,54,51,51,56,51,52,93,44,91,45,49,51,50,46,51,53,53,56,54,52,44,53,53,46,55,57,53,55,56,49,93,44,91,45,49,51,51,46,48,48,55,55,50,55,44,53,54,46,49,51,52,56,55,51,93,44,91,45,49,51,51,46,48,52,50,54,57,44,53,54,46,50,52,57,54,54,93,44,91,45,49,51,51,46,49,54,57,48,55,57,44,53,54,46,51,53,53,48,57,51,93,44,91,45,49,51,51,46,52,49,55,52,54,49,44,53,54,46,51,57,52,54,48,54,93,44,91,45,49,51,51,46,52,50,54,56,57,44,53,54,46,54,49,56,53,51,56,93,44,91,45,49,51,51,46,52,56,51,56,54,54,44,53,54,46,54,53,49,54,48,50,93,44,91,45,49,51,51,46,52,56,54,54,49,53,44,53,54,46,56,54,54,51,57,56,93,44,91,45,49,51,51,46,50,55,52,48,49,50,44,53,54,46,57,50,49,56,49,53,93,44,91,45,49,51,51,46,51,50,52,57,57,57,44,53,55,46,48,54,51,54,49,49,93,44,91,45,49,51,51,46,54,53,56,50,50,50,44,53,55,46,49,54,50,52,57,51,93,44,91,45,49,51,52,46,48,54,51,49,52,53,44,53,55,46,49,53,54,50,56,54,93,44,91,45,49,51,52,46,51,51,53,51,49,57,44,53,54,46,57,54,55,53,51,57,93,44,91,45,49,51,52,46,53,54,57,50,56,57,44,53,54,46,56,54,51,48,53,50,93,44,91,45,49,51,52,46,52,57,54,50,49,54,44,53,54,46,54,57,57,54,51,49,93,44,91,45,49,51,52,46,52,50,57,50,52,55,44,53,54,46,50,56,50,55,51,55,93,44,91,45,49,51,52,46,54,54,54,54,54,56,44,53,54,46,50,56,51,51,51,52,93,44,91,45,49,51,52,46,54,54,54,51,57,54,44,53,54,46,49,52,55,53,56,54,93,44,91,45,49,51,52,46,52,57,52,49,55,51,44,53,53,46,57,57,57,54,51,56,93,44,91,45,49,51,52,46,54,52,53,54,56,53,44,53,53,46,56,55,49,52,55,50,93,44,91,45,49,51,52,46,53,54,57,51,55,44,53,53,46,56,48,52,48,49,93,44,91,45,49,51,52,46,49,57,50,48,50,55,44,53,53,46,54,57,51,48,53,51,93,44,91,45,49,51,52,46,48,52,54,54,48,57,44,53,53,46,56,53,48,52,55,55,93,44,91,45,49,51,51,46,56,56,53,57,44,53,53,46,55,56,48,50,51,53,93,44,91,45,49,51,51,46,55,57,56,50,52,54,44,53,53,46,54,51,51,50,51,49,93,44,91,45,49,51,51,46,56,55,51,57,49,55,44,53,53,46,51,57,56,56,52,93,44,91,45,49,51,51,46,54,49,51,54,54,44,53,53,46,49,55,48,50,54,53,93,44,91,45,49,51,51,46,55,57,48,53,50,56,44,53,53,46,48,48,48,53,56,49,93,44,91,45,49,51,51,46,54,52,56,57,48,51,44,53,52,46,54,51,50,48,52,53,93,44,91,45,49,51,49,46,55,54,50,51,51,57,44,53,52,46,54,56,54,56,52,93,93,93,44,91,91,91,45,49,51,48,46,50,52,54,55,54,55,44,53,54,46,48,57,54,53,56,49,93,44,91,45,49,51,48,46,51,56,56,54,48,54,44,53,53,46,57,52,51,49,55,57,93,44,91,45,49,51,48,46,49,53,49,53,55,55,44,53,53,46,55,54,55,52,50,56,93,44,91,45,49,51,48,46,48,49,55,54,55,57,44,53,53,46,57,49,49,57,52,53,93,44,91,45,49,51,48,46,48,48,51,52,56,53,44,53,54,46,48,48,56,48,55,53,93,44,91,45,49,51,48,46,49,48,51,55,57,56,44,53,54,46,49,50,50,55,57,56,93,44,91,45,49,51,48,46,50,52,54,55,54,55,44,53,54,46,48,57,54,53,56,49,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,80,101,116,101,114,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,53,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,44,91,45,49,51,51,46,55,51,56,54,49,49,44,53,55,46,49,56,54,51,52,56,93,44,91,45,49,51,51,46,54,53,56,50,50,50,44,53,55,46,49,54,50,52,57,51,93,44,91,45,49,51,51,46,51,50,52,57,57,57,44,53,55,46,48,54,51,54,49,49,93,44,91,45,49,51,51,46,50,55,52,48,49,50,44,53,54,46,57,50,49,56,49,53,93,44,91,45,49,51,51,46,52,56,54,54,49,53,44,53,54,46,56,54,54,51,57,56,93,44,91,45,49,51,51,46,52,56,51,56,54,54,44,53,54,46,54,53,49,54,48,50,93,44,91,45,49,51,51,46,52,50,54,56,57,44,53,54,46,54,49,56,53,51,56,93,44,91,45,49,51,51,46,52,49,55,52,54,49,44,53,54,46,51,57,52,54,48,54,93,44,91,45,49,51,51,46,49,54,57,48,55,57,44,53,54,46,51,53,53,48,57,51,93,44,91,45,49,51,50,46,57,56,48,57,51,44,53,54,46,52,54,55,54,54,55,93,44,91,45,49,51,50,46,55,53,54,54,53,57,44,53,54,46,52,56,52,51,56,56,93,44,91,45,49,51,50,46,53,49,56,50,55,52,44,53,54,46,53,56,54,50,49,51,93,44,91,45,49,51,50,46,53,57,49,55,52,56,44,53,54,46,54,54,54,50,53,51,93,44,91,45,49,51,50,46,52,51,57,53,57,57,44,53,54,46,55,55,48,52,48,57,93,44,91,45,49,51,50,46,49,49,53,57,51,53,44,53,54,46,56,57,48,51,52,93,44,91,45,49,51,50,46,48,52,53,49,57,49,44,53,55,46,48,52,53,48,53,57,93,44,91,45,49,51,50,46,51,54,56,57,56,51,44,53,55,46,48,57,49,53,49,51,93,44,91,45,49,51,50,46,50,52,55,57,50,49,44,53,55,46,50,49,49,50,53,51,93,44,91,45,49,51,50,46,54,53,50,52,53,54,44,53,55,46,54,48,55,51,53,55,93,44,91,45,49,51,50,46,56,56,55,56,53,44,53,55,46,54,49,51,55,51,57,93,44,91,45,49,51,50,46,56,55,49,56,57,56,44,53,55,46,55,49,50,55,57,54,93,44,91,45,49,51,51,46,52,53,50,50,52,50,44,53,55,46,56,49,52,48,54,50,93,44,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,55,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,54,52,56,53,54,44,51,52,46,51,49,50,52,57,51,93,44,91,45,49,48,49,46,53,54,51,53,56,44,51,51,46,56,51,48,52,53,49,93,44,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,44,91,45,49,48,49,46,48,52,49,52,56,52,44,51,52,46,51,49,50,52,52,52,93,44,91,45,49,48,49,46,52,55,49,53,56,44,51,52,46,51,49,50,50,57,93,44,91,45,49,48,49,46,53,54,52,56,53,54,44,51,52,46,51,49,50,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,53,34,44,34,78,65,77,69,34,58,34,87,114,97,110,103,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,52,44,34,98,101,100,115,34,58,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,50,46,49,49,53,57,51,53,44,53,54,46,56,57,48,51,52,93,44,91,45,49,51,50,46,52,51,57,53,57,57,44,53,54,46,55,55,48,52,48,57,93,44,91,45,49,51,50,46,53,57,49,55,52,56,44,53,54,46,54,54,54,50,53,51,93,44,91,45,49,51,50,46,53,49,56,50,55,52,44,53,54,46,53,56,54,50,49,51,93,44,91,45,49,51,50,46,55,53,54,54,53,57,44,53,54,46,52,56,52,51,56,56,93,44,91,45,49,51,50,46,57,56,48,57,51,44,53,54,46,52,54,55,54,54,55,93,44,91,45,49,51,51,46,49,54,57,48,55,57,44,53,54,46,51,53,53,48,57,51,93,44,91,45,49,51,51,46,48,52,50,54,57,44,53,54,46,50,52,57,54,54,93,44,91,45,49,51,51,46,48,48,55,55,50,55,44,53,54,46,49,51,52,56,55,51,93,44,91,45,49,51,50,46,51,53,53,56,54,52,44,53,53,46,55,57,53,55,56,49,93,44,91,45,49,51,50,46,49,57,57,55,52,57,44,53,53,46,54,51,51,56,51,52,93,44,91,45,49,51,50,46,48,57,49,49,55,56,44,53,53,46,54,54,48,55,48,51,93,44,91,45,49,51,49,46,57,51,53,54,51,53,44,53,53,46,55,57,56,52,51,49,93,44,91,45,49,51,49,46,56,51,51,49,56,50,44,53,54,46,48,53,51,53,49,50,93,44,91,45,49,51,49,46,51,55,57,57,56,55,44,53,54,46,48,49,51,52,49,57,93,44,91,45,49,51,49,46,52,51,57,57,53,55,44,53,54,46,49,51,49,48,56,51,93,44,91,45,49,51,49,46,50,53,51,51,53,56,44,53,54,46,50,48,54,56,53,93,44,91,45,49,51,49,46,48,49,53,57,55,49,44,53,54,46,50,52,57,56,54,49,93,44,91,45,49,51,49,46,48,56,55,51,52,57,44,53,54,46,52,48,54,48,48,53,93,44,91,45,49,51,49,46,53,56,49,48,54,55,44,53,54,46,54,49,50,50,51,50,93,44,91,45,49,51,49,46,56,51,53,51,50,55,44,53,54,46,53,57,57,50,48,51,93,44,91,45,49,51,49,46,56,55,50,56,55,54,44,53,54,46,56,48,53,57,57,53,93,44,91,45,49,51,50,46,49,49,53,57,51,53,44,53,54,46,56,57,48,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,55,48,48,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,50,53,54,52,51,44,51,55,46,55,54,57,52,57,55,93,44,91,45,56,52,46,51,52,55,56,48,53,44,51,55,46,53,51,57,48,54,52,93,44,91,45,56,52,46,49,57,57,52,56,57,44,51,55,46,53,50,50,56,53,56,93,44,91,45,56,52,46,48,57,48,51,54,52,44,51,55,46,53,54,54,50,50,55,93,44,91,45,56,52,46,49,50,54,57,52,56,44,51,55,46,54,52,50,52,50,49,93,44,91,45,56,52,46,48,56,48,51,51,55,44,51,55,46,56,53,51,48,54,54,93,44,91,45,56,52,46,51,51,55,51,57,51,44,51,55,46,56,57,50,48,48,55,93,44,91,45,56,52,46,52,51,53,55,50,44,51,55,46,56,52,55,50,48,50,93,44,91,45,56,52,46,53,50,53,54,52,51,44,51,55,46,55,54,57,52,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,108,111,117,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,52,52,51,44,34,98,101,100,115,34,58,51,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,57,52,50,55,53,44,51,53,46,56,56,55,49,50,53,93,44,91,45,56,51,46,57,53,48,52,56,49,44,51,53,46,56,55,53,51,54,50,93,44,91,45,56,52,46,49,54,54,50,54,55,44,51,53,46,56,48,53,49,48,54,93,44,91,45,56,52,46,49,56,56,51,49,57,44,51,53,46,54,49,48,53,52,57,93,44,91,45,56,51,46,57,54,49,49,48,50,44,51,53,46,52,54,51,55,53,52,93,44,91,45,56,51,46,57,53,50,57,55,50,44,51,53,46,52,54,48,53,53,50,93,44,91,45,56,51,46,55,55,48,53,56,55,44,51,53,46,53,54,49,55,52,51,93,44,91,45,56,51,46,54,54,50,57,57,57,44,51,53,46,53,54,57,52,54,56,93,44,91,45,56,51,46,55,57,52,50,55,53,44,51,53,46,56,56,55,49,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,71,97,108,108,97,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,55,50,57,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,48,53,50,53,57,44,52,53,46,55,57,56,51,48,54,93,44,91,45,49,49,49,46,54,53,57,55,51,56,44,52,53,46,55,52,51,51,52,52,93,44,91,45,49,49,49,46,53,51,54,50,52,49,44,52,53,46,54,52,50,50,53,55,93,44,91,45,49,49,49,46,51,53,49,51,56,44,52,53,46,54,52,49,57,51,56,93,44,91,45,49,49,49,46,51,55,51,48,51,44,52,53,46,51,53,48,53,50,49,93,44,91,45,49,49,49,46,51,55,55,48,49,53,44,52,52,46,55,53,49,52,52,51,93,44,91,45,49,49,49,46,50,49,57,51,49,57,44,52,52,46,54,50,50,53,50,49,93,44,91,45,49,49,49,46,49,51,48,54,53,57,44,52,52,46,53,48,48,49,51,49,93,44,91,45,49,49,49,46,48,53,50,52,51,52,44,52,52,46,52,55,56,52,49,49,93,44,91,45,49,49,49,46,48,53,51,52,52,55,44,52,52,46,54,54,54,50,54,56,93,44,91,45,49,49,49,46,48,52,53,48,54,54,44,52,53,46,48,48,48,57,53,93,44,91,45,49,49,49,46,48,51,56,49,54,57,44,52,53,46,51,53,49,51,57,49,93,44,91,45,49,49,48,46,57,49,55,56,57,57,44,52,53,46,51,53,49,50,55,51,93,44,91,45,49,49,48,46,57,49,57,50,50,50,44,52,53,46,53,50,52,56,54,49,93,44,91,45,49,49,48,46,55,57,52,55,55,52,44,52,53,46,53,57,48,54,56,50,93,44,91,45,49,49,48,46,55,56,51,56,51,51,44,52,54,46,49,57,50,54,57,57,93,44,91,45,49,49,49,46,48,54,49,57,53,54,44,52,54,46,49,57,50,56,51,52,93,44,91,45,49,49,49,46,51,52,54,54,53,50,44,52,54,46,49,56,55,55,56,53,93,44,91,45,49,49,49,46,52,49,57,54,49,56,44,52,53,46,57,57,54,51,50,50,93,44,91,45,49,49,49,46,54,54,48,48,53,55,44,52,53,46,56,51,51,53,93,44,91,45,49,49,49,46,56,48,53,50,53,57,44,52,53,46,55,57,56,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,97,114,108,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,50,53,51,44,34,98,101,100,115,34,58,49,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,50,57,57,56,49,44,51,52,46,53,51,49,57,50,53,93,44,91,45,55,57,46,56,56,52,53,52,50,44,51,52,46,52,57,49,50,49,56,93,44,91,45,56,48,46,48,52,53,52,51,57,44,51,52,46,52,57,50,54,51,49,93,44,91,45,56,48,46,50,56,56,53,57,54,44,51,52,46,51,54,54,50,48,55,93,44,91,45,56,48,46,50,56,56,54,57,50,44,51,52,46,51,54,52,49,51,57,93,44,91,45,56,48,46,49,51,53,52,49,51,44,51,52,46,50,56,52,53,53,50,93,44,91,45,56,48,46,48,54,57,56,55,56,44,51,52,46,48,56,54,49,57,49,93,44,91,45,55,57,46,55,50,57,53,54,54,44,51,52,46,50,57,53,49,57,93,44,91,45,55,57,46,54,53,55,55,54,52,44,51,52,46,51,48,53,49,57,93,44,91,45,55,57,46,54,56,53,50,50,55,44,51,52,46,52,48,48,54,54,57,93,44,91,45,55,57,46,56,50,57,57,56,49,44,51,52,46,53,51,49,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,69,115,99,97,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,50,56,44,34,98,101,100,115,34,58,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,49,53,56,57,44,51,49,46,50,52,52,52,53,56,93,44,91,45,56,55,46,53,57,56,56,50,57,44,51,48,46,57,57,55,52,53,53,93,44,91,45,56,55,46,49,54,51,54,53,51,44,51,48,46,57,57,57,48,50,57,93,44,91,45,56,54,46,55,56,53,54,57,50,44,51,48,46,57,57,54,57,56,93,44,91,45,56,54,46,54,56,56,51,49,55,44,51,48,46,57,57,52,53,48,55,93,44,91,45,56,54,46,55,48,48,50,56,50,44,51,49,46,49,57,50,50,49,55,93,44,91,45,56,54,46,55,54,51,57,54,49,44,51,49,46,50,54,49,50,57,51,93,44,91,45,56,55,46,52,50,55,52,53,53,44,51,49,46,50,54,48,51,56,54,93,44,91,45,56,55,46,54,49,53,56,57,44,51,49,46,50,52,52,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,72,97,114,97,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,53,48,51,49,44,51,51,46,57,48,52,52,56,56,93,44,91,45,56,53,46,51,56,54,53,56,49,44,51,51,46,57,48,49,55,49,57,93,44,91,45,56,53,46,51,51,56,50,51,44,51,51,46,54,53,51,49,49,55,93,44,91,45,56,53,46,48,53,48,56,56,57,44,51,51,46,55,49,52,54,51,50,93,44,91,45,56,53,46,48,51,55,57,50,54,44,51,51,46,56,49,49,57,52,50,93,44,91,45,56,53,46,48,53,48,51,49,44,51,51,46,57,48,52,52,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,49,56,57,55,44,51,56,46,48,51,56,50,51,93,44,91,45,57,53,46,53,50,53,52,57,57,44,51,55,46,55,51,50,55,53,57,93,44,91,45,57,53,46,48,56,56,48,56,50,44,51,55,46,55,51,50,52,55,54,93,44,91,45,57,53,46,48,55,55,56,55,54,44,51,56,46,48,51,55,55,48,54,93,44,91,45,57,53,46,53,49,56,57,55,44,51,56,46,48,51,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,44,91,45,56,56,46,52,54,50,50,48,55,44,51,57,46,56,55,57,48,57,50,93,44,91,45,56,56,46,52,55,51,49,56,50,44,51,57,46,55,57,49,56,51,55,93,44,91,45,56,56,46,52,55,50,48,55,51,44,51,57,46,54,53,49,53,56,56,93,44,91,45,56,56,46,48,54,51,53,49,56,44,51,57,46,54,53,50,54,53,55,93,44,91,45,56,55,46,57,54,54,51,52,55,44,51,57,46,54,56,53,57,55,51,93,44,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,54,51,49,52,53,44,51,56,46,50,55,55,57,51,51,93,44,91,45,55,56,46,51,54,56,55,52,51,44,51,56,46,49,56,52,48,55,52,93,44,91,45,55,56,46,50,56,56,56,51,55,44,51,56,46,50,55,50,54,53,54,93,44,91,45,55,56,46,52,50,57,54,50,54,44,51,56,46,51,54,54,55,48,52,93,44,91,45,55,56,46,52,53,50,56,48,49,44,51,56,46,52,55,53,53,50,55,93,44,91,45,55,56,46,52,56,53,55,52,44,51,56,46,52,50,49,53,55,57,93,44,91,45,55,56,46,54,54,51,49,52,53,44,51,56,46,50,55,55,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,87,97,117,115,104,97,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,57,55,57,56,44,52,52,46,50,52,53,55,50,53,93,44,91,45,56,57,46,53,57,55,57,53,44,52,51,46,57,56,50,49,93,44,91,45,56,57,46,49,54,56,54,49,50,44,52,51,46,57,56,50,56,51,52,93,44,91,45,56,56,46,56,56,54,49,57,51,44,52,51,46,57,56,51,50,51,51,93,44,91,45,56,56,46,56,56,54,54,55,51,44,52,52,46,50,52,50,54,50,50,93,44,91,45,56,57,46,50,50,52,56,49,51,44,52,52,46,50,52,51,51,57,51,93,44,91,45,56,57,46,53,57,55,57,56,44,52,52,46,50,52,53,55,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,73,122,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,53,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,57,53,52,51,44,51,54,46,49,51,50,55,57,56,93,44,91,45,57,50,46,49,51,57,49,48,52,44,51,54,46,49,49,50,50,50,49,93,44,91,45,57,50,46,48,56,53,52,56,53,44,51,53,46,57,54,53,57,52,51,93,44,91,45,57,49,46,56,52,57,52,52,56,44,51,53,46,56,54,55,52,49,49,93,44,91,45,57,49,46,55,49,48,52,56,51,44,51,53,46,57,52,49,55,53,56,93,44,91,45,57,49,46,54,56,50,50,55,55,44,51,54,46,48,48,48,53,51,53,93,44,91,45,57,49,46,54,57,49,52,51,53,44,51,54,46,50,53,51,51,48,49,93,44,91,45,57,50,46,49,53,54,57,57,44,51,54,46,50,54,49,50,52,56,93,44,91,45,57,50,46,49,57,53,52,51,44,51,54,46,49,51,50,55,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,101,114,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,51,50,49,50,44,34,98,101,100,115,34,58,55,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,48,53,49,56,55,56,44,51,54,46,56,49,57,54,93,44,91,45,49,50,50,46,48,48,49,49,50,52,44,51,54,46,54,52,55,55,48,52,93,44,91,45,49,50,50,46,48,52,50,55,52,56,44,51,54,46,53,57,54,54,50,55,93,44,91,45,49,50,49,46,57,53,57,48,53,51,44,51,54,46,50,56,55,49,48,56,93,44,91,45,49,50,49,46,55,55,48,54,57,51,44,51,54,46,49,54,50,48,49,52,93,44,91,45,49,50,49,46,54,52,56,49,56,44,51,53,46,57,57,56,54,49,55,93,44,91,45,49,50,49,46,53,54,49,52,54,49,44,51,53,46,57,52,51,56,49,56,93,44,91,45,49,50,49,46,52,51,56,49,55,54,44,51,53,46,55,57,54,54,53,53,93,44,91,45,49,50,48,46,50,49,51,57,55,57,44,51,53,46,55,56,57,50,55,54,93,44,91,45,49,50,48,46,51,49,53,48,54,56,44,51,53,46,57,48,55,49,56,54,93,44,91,45,49,50,48,46,54,52,56,55,56,52,44,51,54,46,49,48,55,57,57,93,44,91,45,49,50,48,46,54,55,56,53,56,50,44,51,54,46,50,54,55,51,49,57,93,44,91,45,49,50,48,46,55,54,49,52,56,51,44,51,54,46,50,48,51,53,56,93,44,91,45,49,50,48,46,56,54,51,57,56,55,44,51,54,46,50,57,49,57,51,49,93,44,91,45,49,50,49,46,48,52,48,55,57,55,44,51,54,46,51,50,51,57,54,57,93,44,91,45,49,50,49,46,51,50,56,54,57,55,44,51,54,46,53,53,52,55,52,93,44,91,45,49,50,49,46,51,49,56,54,56,57,44,51,54,46,54,49,48,51,50,56,93,44,91,45,49,50,49,46,54,52,52,48,48,49,44,51,54,46,56,57,51,57,57,54,93,44,91,45,49,50,50,46,48,53,49,56,55,56,44,51,54,46,56,49,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,48,54,49,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,55,54,52,51,44,51,50,46,55,55,55,56,48,50,93,44,91,45,49,48,56,46,56,53,52,53,56,49,44,51,50,46,55,55,55,50,55,54,93,44,91,45,49,48,56,46,56,53,50,57,49,57,44,51,50,46,54,48,51,51,55,52,93,44,91,45,49,48,56,46,54,52,54,53,50,51,44,51,50,46,54,48,51,55,51,93,44,91,45,49,48,56,46,54,52,54,55,55,44,51,50,46,53,49,54,53,50,49,93,44,91,45,49,48,56,46,53,51,55,48,49,49,44,51,50,46,53,49,54,54,49,56,93,44,91,45,49,48,56,46,53,51,55,54,55,54,44,51,50,46,48,55,57,56,51,50,93,44,91,45,49,48,56,46,53,50,52,53,51,56,44,51,49,46,56,54,51,54,49,52,93,44,91,45,49,48,56,46,50,49,55,49,52,51,44,51,49,46,56,54,52,49,51,57,93,44,91,45,49,48,56,46,50,50,57,57,53,49,44,51,50,46,48,55,57,56,55,93,44,91,45,49,48,56,46,50,50,57,51,52,51,44,51,50,46,53,49,54,56,51,55,93,44,91,45,49,48,55,46,57,50,51,55,54,54,44,51,50,46,53,49,55,52,49,54,93,44,91,45,49,48,55,46,57,50,51,57,57,55,44,51,50,46,54,48,52,51,55,57,93,44,91,45,49,48,55,46,54,48,56,52,56,53,44,51,50,46,54,48,53,52,52,57,93,44,91,45,49,48,55,46,55,51,50,50,56,50,44,51,50,46,54,50,55,51,53,51,93,44,91,45,49,48,55,46,55,50,49,51,56,55,44,51,50,46,55,55,56,48,55,55,93,44,91,45,49,48,55,46,55,56,48,53,52,56,44,51,50,46,57,53,50,55,55,54,93,44,91,45,49,48,55,46,56,53,54,54,55,50,44,51,51,46,48,48,50,53,51,57,93,44,91,45,49,48,55,46,56,54,53,48,48,57,44,51,51,46,49,57,57,57,55,52,93,44,91,45,49,48,56,46,48,48,48,53,57,56,44,51,51,46,50,48,49,50,53,51,93,44,91,45,49,48,57,46,48,52,55,53,55,56,44,51,51,46,50,48,56,56,57,56,93,44,91,45,49,48,57,46,48,52,55,54,52,51,44,51,50,46,55,55,55,56,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,77,105,108,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,50,53,49,56,57,44,51,56,46,52,51,48,55,55,56,93,44,91,45,57,50,46,54,56,57,56,51,52,44,51,56,46,51,52,56,52,55,50,93,44,91,45,57,50,46,54,57,53,56,56,54,44,51,56,46,50,50,50,48,51,49,93,44,91,45,57,50,46,54,52,48,48,56,53,44,51,56,46,50,49,51,48,51,50,93,44,91,45,57,50,46,53,55,48,50,56,49,44,51,56,46,48,54,54,54,51,53,93,44,91,45,57,50,46,52,48,54,50,55,53,44,51,56,46,48,50,49,49,55,57,93,44,91,45,57,50,46,49,56,53,51,55,44,51,56,46,48,49,54,51,51,56,93,44,91,45,57,50,46,49,57,53,54,55,53,44,51,56,46,50,57,50,50,51,55,93,44,91,45,57,50,46,49,57,52,52,55,54,44,51,56,46,51,51,53,53,51,54,93,44,91,45,57,50,46,52,48,56,52,48,55,44,51,56,46,51,52,49,51,52,52,93,44,91,45,57,50,46,52,57,53,49,56,53,44,51,56,46,52,50,55,56,50,57,93,44,91,45,57,50,46,54,50,53,49,56,57,44,51,56,46,52,51,48,55,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,87,105,108,107,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,54,48,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,53,51,54,52,57,44,51,54,46,51,54,54,54,48,49,93,44,91,45,56,49,46,52,55,55,53,49,54,44,51,54,46,50,52,48,50,53,93,44,91,45,56,49,46,53,52,53,52,56,56,44,51,54,46,49,49,55,52,55,53,93,44,91,45,56,49,46,51,50,56,51,50,52,44,51,53,46,57,57,54,53,56,51,93,44,91,45,56,49,46,48,50,56,56,51,51,44,51,54,46,48,52,53,54,53,50,93,44,91,45,56,48,46,56,56,49,53,57,49,44,51,54,46,48,53,53,55,49,56,93,44,91,45,56,48,46,56,55,51,50,48,53,44,51,54,46,50,51,54,51,48,53,93,44,91,45,56,48,46,56,54,56,55,52,54,44,51,54,46,51,50,54,52,52,55,93,44,91,45,56,48,46,57,54,55,49,53,51,44,51,54,46,52,48,50,48,50,93,44,91,45,56,49,46,48,57,53,49,49,50,44,51,54,46,52,52,48,55,55,51,93,44,91,45,56,49,46,50,53,51,54,52,57,44,51,54,46,51,54,54,54,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,48,34,44,34,78,65,77,69,34,58,34,74,117,110,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,51,51,48,44,34,98,101,100,115,34,58,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,52,46,51,50,49,52,52,54,44,53,56,46,57,54,51,54,50,57,93,44,91,45,49,51,53,46,50,49,57,49,50,56,44,53,56,46,57,55,52,57,55,50,93,44,91,45,49,51,53,46,48,55,48,52,53,44,53,56,46,52,57,57,56,57,55,93,44,91,45,49,51,52,46,54,57,52,56,51,54,44,53,56,46,50,55,54,53,50,50,93,44,91,45,49,51,52,46,55,55,54,56,54,50,44,53,56,46,48,57,57,48,52,53,93,44,91,45,49,51,52,46,54,57,55,55,54,54,44,53,56,46,48,51,50,48,51,54,93,44,91,45,49,51,52,46,53,51,56,52,49,51,44,53,56,46,48,57,56,49,55,50,93,44,91,45,49,51,52,46,49,55,54,57,57,44,53,56,46,49,53,56,51,50,93,44,91,45,49,51,51,46,56,49,51,48,53,49,44,53,55,46,56,51,55,54,50,52,93,44,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,44,91,45,49,51,51,46,49,55,54,57,51,55,44,53,56,46,49,53,48,53,54,55,93,44,91,45,49,51,51,46,52,54,49,53,48,52,44,53,56,46,51,56,55,55,50,51,93,44,91,45,49,51,51,46,51,55,55,51,48,51,44,53,56,46,52,51,48,53,52,56,93,44,91,45,49,51,51,46,55,48,55,49,49,56,44,53,56,46,54,49,50,50,55,52,93,44,91,45,49,51,51,46,56,52,48,53,48,55,44,53,56,46,55,50,57,52,52,52,93,44,91,45,49,51,52,46,50,53,56,48,55,52,44,53,56,46,56,54,49,48,51,54,93,44,91,45,49,51,52,46,51,50,49,52,52,54,44,53,56,46,57,54,51,54,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,80,108,97,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,56,50,52,44,34,98,101,100,115,34,58,49,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,54,56,57,55,51,44,51,57,46,52,49,56,56,55,57,93,44,91,45,57,52,46,56,57,56,53,49,54,44,51,57,46,50,57,56,52,53,93,44,91,45,57,52,46,55,55,53,53,51,50,44,51,57,46,50,48,48,54,48,54,93,44,91,45,57,52,46,54,48,49,55,51,51,44,51,57,46,49,53,57,54,48,51,93,44,91,45,57,52,46,54,48,48,56,49,57,44,51,57,46,52,53,54,49,53,53,93,44,91,45,57,52,46,54,48,49,50,49,53,44,51,57,46,53,51,48,49,55,93,44,91,45,57,53,46,49,48,50,56,56,56,44,51,57,46,53,51,51,51,52,55,93,44,91,45,57,52,46,57,54,56,57,55,51,44,51,57,46,52,49,56,56,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,117,99,104,97,110,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,48,55,54,44,34,98,101,100,115,34,58,53,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,55,54,53,53,56,44,51,57,46,56,50,48,56,56,51,93,44,91,45,57,53,46,48,53,51,53,56,54,44,51,57,46,54,49,53,50,54,57,93,44,91,45,57,53,46,49,48,50,56,56,56,44,51,57,46,53,51,51,51,52,55,93,44,91,45,57,52,46,54,48,49,50,49,53,44,51,57,46,53,51,48,49,55,93,44,91,45,57,52,46,54,48,50,50,53,55,44,51,57,46,55,52,55,49,57,53,93,44,91,45,57,52,46,54,48,50,56,51,44,51,57,46,56,49,57,57,48,54,93,44,91,45,57,52,46,56,55,54,53,53,56,44,51,57,46,56,50,48,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,105,109,101,115,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,48,53,50,44,34,98,101,100,115,34,58,49,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,49,48,55,53,57,44,51,52,46,57,57,57,48,50,52,93,44,91,45,56,55,46,50,49,52,57,49,52,44,51,52,46,56,49,54,48,49,49,93,44,91,45,56,55,46,50,54,48,54,55,54,44,51,52,46,55,53,56,54,50,54,93,44,91,45,56,55,46,49,48,53,48,55,51,44,51,52,46,54,56,54,48,51,55,93,44,91,45,56,54,46,57,48,55,50,48,53,44,51,52,46,53,55,57,55,57,50,93,44,91,45,56,54,46,55,57,48,48,53,54,44,51,52,46,53,53,48,55,57,93,44,91,45,56,54,46,55,56,51,54,50,56,44,51,52,46,57,57,49,57,52,56,93,44,91,45,56,54,46,56,51,54,51,48,54,44,51,52,46,57,57,49,56,57,57,93,44,91,45,56,55,46,50,49,48,55,53,57,44,51,52,46,57,57,57,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,56,51,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,55,54,49,57,55,44,52,48,46,48,55,55,49,52,51,93,44,91,45,56,53,46,53,55,54,49,57,50,44,51,57,46,57,52,53,55,53,54,93,44,91,45,56,53,46,53,57,54,57,49,54,44,51,57,46,55,56,54,53,49,57,93,44,91,45,56,53,46,51,48,49,53,56,52,44,51,57,46,55,56,55,53,55,57,93,44,91,45,56,53,46,50,50,49,49,49,56,44,51,57,46,55,56,56,52,52,57,93,44,91,45,56,53,46,50,48,49,52,55,51,44,52,48,46,48,48,52,53,50,49,93,44,91,45,56,53,46,50,49,52,51,56,54,44,52,48,46,48,55,54,56,56,57,93,44,91,45,56,53,46,53,55,54,49,57,55,44,52,48,46,48,55,55,49,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,53,53,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,53,57,56,50,53,51,44,52,49,46,51,51,51,49,49,57,93,44,91,45,57,55,46,56,50,56,50,53,54,44,52,49,46,49,55,51,52,51,57,93,44,91,45,57,55,46,56,50,54,50,56,55,44,52,49,46,48,52,54,53,56,49,93,44,91,45,57,55,46,51,54,56,49,49,56,44,52,49,46,48,52,54,57,52,55,93,44,91,45,57,55,46,51,54,56,49,56,54,44,52,49,46,51,57,54,52,49,54,93,44,91,45,57,55,46,53,57,56,50,53,51,44,52,49,46,51,51,51,49,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,79,116,116,97,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,55,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,49,53,57,52,49,44,52,49,46,54,49,57,49,49,93,44,91,45,56,51,46,52,49,52,54,50,54,44,52,49,46,53,48,48,50,50,56,93,44,91,45,56,51,46,51,51,56,49,57,54,44,52,49,46,52,53,55,53,48,56,93,44,91,45,56,50,46,57,53,50,50,50,52,44,52,49,46,52,53,56,50,51,57,93,44,91,45,56,50,46,55,49,57,50,51,54,44,52,49,46,52,56,50,52,50,51,93,44,91,45,56,50,46,55,56,55,52,48,50,44,52,49,46,53,56,55,55,51,56,93,44,91,45,56,50,46,55,50,54,52,50,55,44,52,49,46,54,57,56,51,48,56,93,44,91,45,56,50,46,57,57,53,53,55,50,44,52,49,46,56,50,56,57,54,57,93,44,91,45,56,51,46,49,54,52,53,49,49,44,52,49,46,54,50,51,50,52,55,93,44,91,45,56,51,46,52,49,53,57,52,49,44,52,49,46,54,49,57,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,78,111,114,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,53,57,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,52,56,57,50,51,44,52,55,46,52,57,56,57,57,49,93,44,91,45,57,54,46,56,51,51,51,57,51,44,52,55,46,50,51,56,48,52,49,93,44,91,45,57,54,46,56,52,48,49,50,50,44,52,55,46,49,53,48,52,55,53,93,44,91,45,57,54,46,49,57,52,54,55,49,44,52,55,46,49,53,49,49,52,57,93,44,91,45,57,54,46,48,54,55,48,54,57,44,52,55,46,49,53,49,56,49,51,93,44,91,45,57,54,46,48,54,55,54,50,49,44,52,55,46,52,57,57,49,51,54,93,44,91,45,57,54,46,56,52,56,57,50,51,44,52,55,46,52,57,56,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,57,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,44,91,45,57,53,46,53,53,55,50,55,55,44,52,49,46,56,54,51,52,52,57,93,44,91,45,57,53,46,53,53,56,49,52,51,44,52,49,46,54,48,50,51,56,51,93,44,91,45,57,53,46,52,57,55,57,57,55,44,52,49,46,53,48,54,48,55,52,93,44,91,45,57,53,46,49,53,52,55,50,50,44,52,49,46,53,48,53,50,49,49,93,44,91,45,57,53,46,48,52,48,55,55,44,52,49,46,53,48,52,54,57,93,44,91,45,57,53,46,48,57,50,53,50,44,52,49,46,54,48,50,48,53,53,93,44,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,53,50,50,44,34,98,101,100,115,34,58,54,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,50,49,55,48,50,52,44,51,57,46,55,49,57,56,54,49,93,44,91,45,55,55,46,50,57,57,55,55,44,51,57,46,54,49,50,50,56,52,93,44,91,45,55,55,46,49,48,54,56,51,57,44,51,57,46,52,57,49,54,54,49,93,44,91,45,55,55,46,49,54,56,48,56,44,51,57,46,51,53,51,57,53,55,93,44,91,45,55,54,46,56,56,50,50,55,52,44,51,57,46,51,53,48,49,56,53,93,44,91,45,55,54,46,56,56,51,50,57,52,44,51,57,46,52,55,52,55,53,49,93,44,91,45,55,54,46,55,56,55,48,57,54,44,51,57,46,55,50,48,56,93,44,91,45,55,54,46,57,57,57,51,49,56,44,51,57,46,55,50,48,49,48,54,93,44,91,45,55,55,46,50,49,55,48,50,52,44,51,57,46,55,49,57,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,50,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,57,56,55,57,50,44,52,50,46,50,57,55,53,50,55,93,44,91,45,57,50,46,50,57,56,49,54,52,44,52,49,46,56,54,50,55,55,57,93,44,91,45,57,49,46,56,51,49,51,55,57,44,52,49,46,56,54,49,56,53,49,93,44,91,45,57,49,46,56,51,49,48,56,57,44,52,50,46,50,57,57,48,54,51,93,44,91,45,57,50,46,48,54,52,55,54,54,44,52,50,46,50,57,55,50,53,57,93,44,91,45,57,50,46,50,57,56,55,57,50,44,52,50,46,50,57,55,53,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,49,52,55,53,55,44,51,55,46,56,53,53,53,48,57,93,44,91,45,56,50,46,52,57,55,55,57,54,44,51,55,46,57,52,53,52,56,56,93,44,91,45,56,50,46,54,49,50,51,57,51,44,51,55,46,56,55,57,50,55,50,93,44,91,45,56,50,46,54,52,48,55,53,44,51,55,46,55,50,48,49,56,50,93,44,91,45,56,50,46,53,54,51,53,54,49,44,51,55,46,54,56,52,56,52,52,93,44,91,45,56,50,46,52,53,54,49,51,52,44,51,55,46,54,54,56,55,57,53,93,44,91,45,56,50,46,51,51,51,49,51,54,44,51,55,46,55,52,48,56,52,56,93,44,91,45,56,50,46,52,49,52,55,53,55,44,51,55,46,56,53,53,53,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,104,105,115,97,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,55,50,55,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,49,52,49,55,57,51,44,52,53,46,55,51,48,54,53,55,93,44,91,45,57,51,46,49,52,49,57,55,52,44,52,53,46,53,53,56,49,48,57,93,44,91,45,57,51,46,48,50,50,50,55,52,44,52,53,46,53,53,55,49,53,52,93,44,91,45,57,51,46,48,49,57,53,54,51,44,52,53,46,52,49,49,55,55,93,44,91,45,57,51,46,48,49,57,52,52,44,52,53,46,50,57,54,57,50,57,93,44,91,45,57,50,46,55,52,53,54,56,51,44,52,53,46,50,57,54,48,52,50,93,44,91,45,57,50,46,54,52,54,54,48,50,44,52,53,46,52,52,49,54,51,53,93,44,91,45,57,50,46,56,56,55,48,54,55,44,52,53,46,54,52,52,49,52,56,93,44,91,45,57,50,46,56,52,49,48,53,49,44,52,53,46,55,51,48,48,50,52,93,44,91,45,57,51,46,49,52,49,55,57,51,44,52,53,46,55,51,48,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,79,119,115,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,55,57,49,56,54,44,51,55,46,53,48,54,50,52,57,93,44,91,45,56,51,46,56,56,53,50,54,50,44,51,55,46,53,49,55,54,56,56,93,44,91,45,56,51,46,55,56,52,57,55,53,44,51,55,46,51,52,56,55,49,55,93,44,91,45,56,51,46,54,51,56,53,55,50,44,51,55,46,51,52,52,49,54,54,93,44,91,45,56,51,46,53,50,54,57,48,55,44,51,55,46,50,53,56,53,50,57,93,44,91,45,56,51,46,53,52,55,54,50,56,44,51,55,46,51,51,52,52,49,56,93,44,91,45,56,51,46,53,55,57,49,56,54,44,51,55,46,53,48,54,50,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,114,97,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,51,48,52,44,34,98,101,100,115,34,58,51,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,50,55,48,56,52,44,52,50,46,48,48,49,54,55,52,93,44,91,45,55,54,46,56,55,52,55,49,52,44,52,49,46,53,57,54,57,49,57,93,44,91,45,55,54,46,56,49,51,55,51,49,44,52,49,46,53,57,48,48,51,52,93,44,91,45,55,54,46,50,50,48,49,51,57,44,52,49,46,53,52,49,50,56,53,93,44,91,45,55,54,46,49,49,53,49,55,50,44,52,49,46,54,53,49,56,50,53,93,44,91,45,55,54,46,49,52,53,53,49,57,44,52,49,46,57,57,56,56,52,50,93,44,91,45,55,54,46,53,53,55,54,50,52,44,52,50,46,48,48,48,49,54,93,44,91,45,55,54,46,57,50,55,48,56,52,44,52,50,46,48,48,49,54,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,54,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,54,55,57,53,55,44,52,48,46,53,56,50,52,57,54,93,44,91,45,56,48,46,53,57,52,54,54,52,44,52,48,46,52,55,49,51,56,57,93,44,91,45,56,48,46,54,50,57,54,56,52,44,52,48,46,51,57,52,57,55,56,93,44,91,45,56,48,46,53,49,55,57,57,49,44,52,48,46,51,57,57,54,52,52,93,44,91,45,56,48,46,53,49,57,48,51,56,44,52,48,46,52,55,55,51,54,51,93,44,91,45,56,48,46,53,49,56,57,57,49,44,52,48,46,54,51,56,56,48,49,93,44,91,45,56,48,46,54,54,55,57,53,55,44,52,48,46,53,56,50,52,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,67,111,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,55,52,48,44,34,98,101,100,115,34,58,50,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,57,52,56,54,54,44,51,56,46,55,51,57,49,51,93,44,91,45,57,50,46,52,57,53,49,56,53,44,51,56,46,52,50,55,56,50,57,93,44,91,45,57,50,46,52,48,56,52,48,55,44,51,56,46,51,52,49,51,52,52,93,44,91,45,57,50,46,49,57,52,52,55,54,44,51,56,46,51,51,53,53,51,54,93,44,91,45,57,50,46,49,52,57,50,57,49,44,51,56,46,52,51,49,49,53,50,93,44,91,45,57,50,46,48,48,56,55,44,51,56,46,53,48,48,48,51,56,93,44,91,45,57,50,46,48,48,56,57,56,51,44,51,56,46,53,55,48,57,93,44,91,45,57,50,46,49,48,57,50,56,50,44,51,56,46,53,54,49,52,51,93,44,91,45,57,50,46,50,50,48,54,54,49,44,51,56,46,54,52,51,49,54,55,93,44,91,45,57,50,46,51,53,55,56,49,51,44,51,56,46,54,55,57,53,49,55,93,44,91,45,57,50,46,51,57,52,56,54,54,44,51,56,46,55,51,57,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,101,114,114,105,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,56,48,55,44,34,98,101,100,115,34,58,50,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,50,50,57,52,44,52,50,46,48,55,49,52,56,52,93,44,91,45,56,54,46,50,50,51,53,54,51,44,52,50,46,50,52,51,51,55,57,93,44,91,45,56,55,46,48,56,56,51,51,56,44,52,50,46,50,51,53,51,51,52,93,44,91,45,56,55,46,49,49,49,49,54,50,44,52,50,46,49,52,57,52,48,57,93,44,91,45,56,55,46,50,48,55,55,55,52,44,52,49,46,55,54,48,57,53,54,93,44,91,45,56,54,46,57,51,51,51,51,52,44,52,49,46,55,54,49,48,51,53,93,44,91,45,56,54,46,53,50,52,50,49,55,44,52,49,46,55,53,57,54,53,57,93,44,91,45,56,54,46,50,50,54,48,57,53,44,52,49,46,55,54,48,52,48,54,93,44,91,45,56,54,46,50,50,50,57,52,44,52,50,46,48,55,49,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,117,110,116,105,110,103,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,52,50,49,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,49,54,53,50,49,44,52,48,46,55,51,57,49,50,55,93,44,91,45,55,56,46,50,50,49,57,55,44,52,48,46,54,55,52,53,51,57,93,44,91,45,55,56,46,49,51,48,48,56,49,44,52,48,46,52,56,49,57,57,93,44,91,45,55,56,46,50,53,55,51,48,53,44,52,48,46,50,57,55,56,56,51,93,44,91,45,55,56,46,49,51,52,56,54,51,44,52,48,46,49,54,53,49,51,49,93,44,91,45,55,55,46,56,54,52,52,56,57,44,52,48,46,48,54,49,53,54,56,93,44,91,45,55,55,46,55,48,51,48,51,44,52,48,46,50,54,51,53,55,54,93,44,91,45,55,55,46,55,53,50,49,50,44,52,48,46,51,55,56,53,52,53,93,44,91,45,55,55,46,57,49,51,56,52,52,44,52,48,46,51,57,56,54,55,57,93,44,91,45,55,55,46,56,49,54,53,49,51,44,52,48,46,53,48,48,48,55,52,93,44,91,45,55,55,46,56,52,49,56,50,55,44,52,48,46,53,53,48,48,51,53,93,44,91,45,55,55,46,54,56,55,48,56,44,52,48,46,54,55,54,55,53,93,44,91,45,55,55,46,54,56,49,51,51,52,44,52,48,46,55,50,57,55,53,56,93,44,91,45,55,55,46,56,50,52,53,48,54,44,52,48,46,55,52,51,54,56,49,93,44,91,45,55,55,46,57,52,52,50,53,44,52,48,46,54,57,49,53,53,55,93,44,91,45,55,56,46,49,49,54,53,50,49,44,52,48,46,55,51,57,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,68,97,119,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,57,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,48,53,49,44,52,51,46,48,48,48,55,55,93,44,91,45,49,48,51,46,52,56,48,52,48,51,44,52,50,46,55,56,52,57,54,54,93,44,91,45,49,48,51,46,52,56,48,48,56,50,44,52,50,46,52,51,55,50,54,55,93,44,91,45,49,48,51,46,52,52,52,53,51,50,44,52,50,46,52,51,55,51,53,52,93,44,91,45,49,48,50,46,55,55,51,51,54,54,44,52,50,46,52,51,57,57,50,50,93,44,91,45,49,48,50,46,55,55,51,51,54,57,44,52,50,46,55,56,53,50,54,53,93,44,91,45,49,48,50,46,55,57,50,49,49,49,44,52,50,46,57,57,57,57,56,93,44,91,45,49,48,51,46,48,48,48,54,48,57,44,52,51,46,48,48,48,55,53,49,93,44,91,45,49,48,51,46,53,48,53,49,44,52,51,46,48,48,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,80,97,116,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,50,51,53,52,53,53,44,51,54,46,56,55,50,49,51,93,44,91,45,56,48,46,51,56,53,51,55,51,44,51,54,46,55,57,56,54,53,56,93,44,91,45,56,48,46,52,54,52,49,56,44,51,54,46,55,48,56,55,49,56,93,44,91,45,56,48,46,54,49,50,48,53,55,44,51,54,46,53,53,55,56,57,56,93,44,91,45,56,48,46,52,52,48,48,57,56,44,51,54,46,53,53,48,54,53,53,93,44,91,45,56,48,46,48,53,51,52,53,57,44,51,54,46,53,52,50,53,50,51,93,44,91,45,56,48,46,48,57,52,51,56,57,44,51,54,46,55,55,57,53,53,50,93,44,91,45,56,48,46,48,52,49,52,57,51,44,51,54,46,55,57,52,51,54,53,93,44,91,45,56,48,46,48,54,54,52,52,57,44,51,54,46,56,52,49,48,53,55,93,44,91,45,56,48,46,50,51,53,52,53,53,44,51,54,46,56,55,50,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,111,110,116,109,111,114,101,110,99,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,54,54,49,52,44,52,53,46,49,57,56,55,51,55,93,44,91,45,56,52,46,51,55,49,55,51,55,44,52,52,46,56,53,53,48,51,57,93,44,91,45,56,51,46,56,56,56,52,56,50,44,52,52,46,56,53,54,54,51,53,93,44,91,45,56,51,46,56,56,49,50,50,51,44,52,53,46,50,48,50,48,55,49,93,44,91,45,56,52,46,50,52,54,54,51,52,44,52,53,46,49,57,56,55,50,55,93,44,91,45,56,52,46,51,54,54,54,49,52,44,52,53,46,49,57,56,55,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,79,115,99,111,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,56,52,56,50,44,52,52,46,56,53,54,54,51,53,93,44,91,45,56,52,46,51,55,49,55,51,55,44,52,52,46,56,53,53,48,51,57,93,44,91,45,56,52,46,51,55,48,54,52,51,44,52,52,46,53,48,55,50,50,51,93,44,91,45,56,51,46,56,56,54,54,51,52,44,52,52,46,53,48,56,57,55,54,93,44,91,45,56,51,46,56,56,56,52,56,52,44,52,52,46,56,53,54,52,53,56,93,44,91,45,56,51,46,56,56,56,52,56,50,44,52,52,46,56,53,54,54,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,111,108,102,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,48,55,56,53,49,44,51,54,46,57,57,54,49,51,52,93,44,91,45,49,48,53,46,49,53,53,48,52,50,44,51,54,46,57,57,53,50,54,50,93,44,91,45,49,48,53,46,50,50,48,53,48,54,44,51,54,46,57,57,52,57,55,52,93,44,91,45,49,48,53,46,50,48,48,49,49,55,44,51,54,46,57,49,53,54,50,56,93,44,91,45,49,48,53,46,50,51,48,54,51,50,44,51,54,46,55,50,51,55,56,52,93,44,91,45,49,48,53,46,51,55,48,54,51,56,44,51,54,46,54,56,49,48,51,50,93,44,91,45,49,48,53,46,51,50,54,54,55,52,44,51,54,46,53,48,48,48,51,49,93,44,91,45,49,48,53,46,51,52,49,50,54,52,44,51,54,46,50,54,49,56,54,51,93,44,91,45,49,48,52,46,56,54,53,50,52,52,44,51,54,46,50,54,49,52,49,57,93,44,91,45,49,48,52,46,56,54,53,52,48,50,44,51,54,46,50,49,55,56,54,57,93,44,91,45,49,48,52,46,52,51,54,48,53,54,44,51,54,46,50,49,56,53,51,52,93,44,91,45,49,48,52,46,48,48,56,56,50,51,44,51,54,46,50,49,56,49,49,53,93,44,91,45,49,48,52,46,48,48,55,56,53,49,44,51,54,46,57,57,54,49,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,108,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,51,52,54,51,44,34,98,101,100,115,34,58,55,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,56,49,53,52,51,44,51,56,46,54,54,48,48,54,50,93,44,91,45,57,48,46,50,53,55,52,49,51,44,51,56,46,53,51,49,56,53,50,93,44,91,45,57,48,46,50,54,52,49,50,51,44,51,56,46,53,50,48,55,50,56,93,44,91,45,57,48,46,48,51,54,49,49,51,44,51,56,46,51,50,51,51,55,55,93,44,91,45,56,57,46,57,49,51,50,50,55,44,51,56,46,51,48,56,50,54,57,93,44,91,45,56,57,46,56,57,57,48,52,51,44,51,56,46,50,50,48,55,53,53,93,44,91,45,56,57,46,55,48,51,50,53,54,44,51,56,46,50,49,57,52,48,52,93,44,91,45,56,57,46,55,48,52,50,52,53,44,51,56,46,52,49,53,55,55,57,93,44,91,45,56,57,46,55,48,54,57,52,57,44,51,56,46,54,53,53,48,49,57,93,44,91,45,57,48,46,49,56,49,53,52,51,44,51,56,46,54,54,48,48,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,53,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,48,52,50,52,53,44,51,56,46,52,49,53,55,55,57,93,44,91,45,56,57,46,55,48,51,50,53,54,44,51,56,46,50,49,57,52,48,52,93,44,91,45,56,57,46,53,57,50,55,57,55,44,51,56,46,50,49,57,50,55,49,93,44,91,45,56,57,46,49,52,55,53,57,55,44,51,56,46,50,49,50,56,57,53,93,44,91,45,56,57,46,49,52,52,51,56,56,44,51,56,46,52,55,51,56,55,56,93,44,91,45,56,57,46,49,52,51,56,54,54,44,51,56,46,53,48,51,48,56,57,93,44,91,45,56,57,46,51,50,57,52,54,57,44,51,56,46,53,49,48,50,49,51,93,44,91,45,56,57,46,53,55,57,51,50,53,44,51,56,46,52,56,48,49,56,52,93,44,91,45,56,57,46,55,48,52,50,52,53,44,51,56,46,52,49,53,55,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,101,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,54,49,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,53,56,52,48,57,44,52,48,46,50,52,50,57,51,51,93,44,91,45,55,56,46,55,54,51,50,48,54,44,52,48,46,48,53,55,48,48,53,93,44,91,45,55,56,46,55,53,55,50,52,49,44,51,57,46,56,50,51,52,56,52,93,44,91,45,55,56,46,56,48,56,51,56,55,44,51,57,46,55,50,50,57,49,49,93,44,91,45,55,56,46,51,56,48,53,57,57,44,51,57,46,55,50,50,53,57,57,93,44,91,45,55,56,46,50,57,57,48,48,51,44,51,57,46,56,50,53,53,93,44,91,45,55,56,46,49,51,52,56,54,51,44,52,48,46,49,54,53,49,51,49,93,44,91,45,55,56,46,50,53,55,51,48,53,44,52,48,46,50,57,55,56,56,51,93,44,91,45,55,56,46,54,50,48,51,56,51,44,52,48,46,51,50,55,48,50,53,93,44,91,45,55,56,46,54,53,56,52,48,57,44,52,48,46,50,52,50,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,52,50,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,49,52,48,53,55,49,44,51,53,46,48,57,57,54,55,56,93,44,91,45,57,52,46,50,50,56,50,50,54,44,51,53,46,48,55,49,57,53,53,93,44,91,45,57,52,46,50,51,48,53,50,52,44,51,52,46,57,54,56,53,50,55,93,44,91,45,57,52,46,52,52,55,55,55,52,44,51,52,46,57,51,51,57,51,55,93,44,91,45,57,52,46,52,53,52,53,54,52,44,51,52,46,55,50,56,57,54,50,93,44,91,45,57,52,46,51,49,55,54,53,57,44,51,52,46,54,57,55,52,48,56,93,44,91,45,57,52,46,48,49,56,49,54,56,44,51,52,46,54,57,50,52,54,57,93,44,91,45,57,51,46,57,51,48,53,48,57,44,51,52,46,54,54,53,54,48,56,93,44,91,45,57,51,46,55,49,48,50,57,55,44,51,52,46,55,52,53,50,57,54,93,44,91,45,57,51,46,55,48,52,56,56,53,44,51,53,46,48,49,57,55,49,53,93,44,91,45,57,52,46,48,55,52,52,52,57,44,51,53,46,48,50,54,52,51,50,93,44,91,45,57,52,46,49,52,48,53,55,49,44,51,53,46,48,57,57,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,76,97,98,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,54,55,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,50,49,49,51,44,51,55,46,51,56,51,57,57,93,44,91,45,57,53,46,53,50,50,52,49,53,44,51,54,46,57,57,57,50,56,93,44,91,45,57,53,46,52,48,55,55,51,51,44,51,54,46,57,57,57,51,49,49,93,44,91,45,57,53,46,48,55,51,53,48,52,44,51,54,46,57,57,57,53,53,50,93,44,91,45,57,53,46,48,55,53,49,54,54,44,51,55,46,51,51,57,57,51,55,93,44,91,45,57,53,46,48,56,56,49,56,57,44,51,55,46,51,56,51,56,51,55,93,44,91,45,57,53,46,53,50,49,49,51,44,51,55,46,51,56,51,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,51,56,50,44,34,98,101,100,115,34,58,50,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,48,51,55,44,52,49,46,49,50,53,48,57,51,93,44,91,45,56,48,46,53,49,57,49,53,44,52,48,46,57,48,48,51,50,54,93,44,91,45,56,48,46,53,49,57,48,52,52,44,52,48,46,56,53,49,51,51,57,93,44,91,45,56,48,46,49,53,56,53,51,44,52,48,46,56,53,53,48,57,54,93,44,91,45,56,48,46,49,54,54,52,55,50,44,52,49,46,48,48,48,57,50,56,93,44,91,45,56,48,46,48,57,56,50,57,52,44,52,49,46,48,55,49,48,53,52,93,44,91,45,56,48,46,50,53,55,57,51,51,44,52,49,46,49,50,56,49,54,53,93,44,91,45,56,48,46,53,49,57,48,51,55,44,52,49,46,49,50,53,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,54,57,57,53,49,44,52,48,46,52,51,51,52,56,54,93,44,91,45,56,49,46,50,55,53,51,49,57,44,52,48,46,51,48,51,52,51,52,93,44,91,45,56,49,46,51,51,56,48,53,55,44,52,48,46,50,49,52,50,53,51,93,44,91,45,56,49,46,50,50,53,57,50,52,44,52,48,46,49,55,48,48,55,53,93,44,91,45,56,48,46,56,56,50,56,57,50,44,52,48,46,49,53,57,52,57,53,93,44,91,45,56,48,46,56,54,53,53,48,52,44,52,48,46,52,50,50,57,50,57,93,44,91,45,56,48,46,57,52,49,57,49,49,44,52,48,46,52,50,52,55,93,44,91,45,56,49,46,50,54,57,57,53,49,44,52,48,46,52,51,51,52,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,101,120,97,110,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,49,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,50,56,51,50,52,44,51,53,46,57,57,54,53,56,51,93,44,91,45,56,49,46,51,51,52,50,55,50,44,51,53,46,55,57,54,50,56,49,93,44,91,45,56,49,46,49,52,50,51,51,56,44,51,53,46,56,50,55,52,51,52,93,44,91,45,56,49,46,49,48,57,53,48,55,44,51,53,46,55,55,54,53,57,52,93,44,91,45,56,49,46,48,48,53,53,52,49,44,51,53,46,57,53,56,50,56,55,93,44,91,45,56,49,46,48,50,56,56,51,51,44,51,54,46,48,52,53,54,53,50,93,44,91,45,56,49,46,51,50,56,51,50,52,44,51,53,46,57,57,54,53,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,97,112,101,32,77,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,55,48,53,44,34,98,101,100,115,34,58,50,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,52,54,52,57,51,44,51,57,46,50,57,56,50,51,93,44,91,45,55,52,46,55,53,50,49,54,53,44,51,57,46,50,57,53,48,48,53,93,44,91,45,55,52,46,56,54,49,50,57,52,44,51,57,46,51,50,51,56,49,53,93,44,91,45,55,52,46,57,49,53,54,56,57,44,51,57,46,49,55,53,55,53,53,93,44,91,45,55,53,46,49,54,56,52,54,50,44,51,57,46,48,53,54,49,55,57,93,44,91,45,55,53,46,49,51,56,52,54,49,44,51,57,46,48,48,50,54,57,55,93,44,91,45,55,53,46,48,49,53,49,50,51,44,51,56,46,55,56,56,54,53,55,93,44,91,45,55,52,46,55,50,56,52,48,50,44,51,56,46,57,55,52,50,52,57,93,44,91,45,55,52,46,54,52,52,50,55,57,44,51,57,46,49,49,52,56,50,52,93,44,91,45,55,52,46,52,54,52,57,51,44,51,57,46,50,57,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,104,101,115,104,105,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,50,54,51,44,34,98,101,100,115,34,58,49,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,52,53,50,50,53,49,44,52,51,46,49,54,49,51,53,52,93,44,91,45,55,50,46,52,55,51,48,55,54,44,52,50,46,57,55,50,53,50,56,93,44,91,45,55,50,46,53,51,50,48,50,50,44,52,50,46,57,53,52,57,52,51,93,44,91,45,55,50,46,53,52,49,53,49,51,44,52,50,46,56,48,55,48,57,52,93,44,91,45,55,50,46,52,53,56,52,49,50,44,52,50,46,55,50,54,57,51,51,93,44,91,45,55,50,46,50,56,51,48,52,53,44,52,50,46,55,50,49,54,49,53,93,44,91,45,55,49,46,57,50,56,57,57,51,44,52,50,46,55,49,50,49,48,50,93,44,91,45,55,50,46,48,48,54,49,57,44,52,50,46,57,52,51,55,56,57,93,44,91,45,55,50,46,48,51,56,49,52,57,44,52,51,46,49,50,56,56,48,55,93,44,91,45,55,50,46,49,53,54,54,54,49,44,52,51,46,49,56,49,57,54,56,93,44,91,45,55,50,46,52,53,50,50,53,49,44,52,51,46,49,54,49,51,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,57,50,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,54,49,51,57,51,44,52,56,46,53,52,50,51,52,56,93,44,91,45,57,55,46,49,49,54,53,55,44,52,56,46,50,55,57,54,54,49,93,44,91,45,57,55,46,49,52,49,50,50,49,44,52,56,46,49,57,51,55,49,50,93,44,91,45,57,55,46,49,52,54,55,48,51,44,52,56,46,49,55,51,50,50,51,93,44,91,45,57,54,46,53,48,48,56,52,51,44,52,56,46,49,55,52,49,48,56,93,44,91,45,57,53,46,53,57,51,55,56,56,44,52,56,46,49,55,50,57,49,54,93,44,91,45,57,53,46,54,48,50,51,49,53,44,52,56,46,53,51,56,56,56,55,93,44,91,45,57,54,46,51,56,55,56,51,53,44,52,56,46,53,52,52,51,48,56,93,44,91,45,57,55,46,49,54,51,51,53,53,44,52,56,46,53,52,51,57,54,55,93,44,91,45,57,55,46,49,54,49,51,57,51,44,52,56,46,53,52,50,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,75,105,110,103,32,87,105,108,108,105,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,52,53,50,49,53,44,51,55,46,55,56,57,49,55,53,93,44,91,45,55,55,46,49,50,51,54,55,53,44,51,55,46,54,50,54,56,56,49,93,44,91,45,55,54,46,55,57,50,49,56,52,44,51,55,46,53,49,55,53,57,52,93,44,91,45,55,54,46,55,55,55,55,50,57,44,51,55,46,53,53,52,52,52,54,93,44,91,45,55,54,46,57,50,55,53,44,51,55,46,54,57,48,52,56,53,93,44,91,45,55,55,46,48,51,51,50,55,51,44,51,55,46,55,50,48,56,48,57,93,44,91,45,55,55,46,49,56,49,52,49,56,44,51,55,46,56,57,49,54,53,52,93,44,91,45,55,55,46,51,52,53,50,49,53,44,51,55,46,55,56,57,49,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,72,117,101,114,102,97,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,56,51,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,52,56,53,53,49,54,44,51,55,46,53,55,55,56,57,57,93,44,91,45,49,48,53,46,50,57,53,53,56,55,44,51,55,46,54,53,52,52,49,54,93,44,91,45,49,48,53,46,49,57,51,50,51,55,44,51,55,46,53,57,50,49,54,56,93,44,91,45,49,48,53,46,49,53,52,49,55,54,44,51,55,46,50,57,51,49,50,57,93,44,91,45,49,48,52,46,57,57,53,53,48,53,44,51,55,46,51,55,53,53,53,49,93,44,91,45,49,48,52,46,55,52,56,52,52,55,44,51,55,46,52,48,55,52,51,55,93,44,91,45,49,48,52,46,53,52,56,54,53,50,44,51,55,46,53,55,52,55,93,44,91,45,49,48,52,46,52,53,52,57,51,44,51,55,46,55,52,48,56,51,57,93,44,91,45,49,48,52,46,51,53,49,49,48,57,44,51,55,46,56,49,55,52,56,56,93,44,91,45,49,48,52,46,54,52,54,51,56,51,44,51,55,46,57,48,48,53,50,55,93,44,91,45,49,48,53,46,48,49,51,55,50,57,44,51,55,46,56,56,49,50,55,49,93,44,91,45,49,48,53,46,48,52,57,57,49,55,44,51,55,46,57,49,53,52,55,57,93,44,91,45,49,48,53,46,49,54,56,54,53,50,44,51,56,46,48,49,56,57,52,54,93,44,91,45,49,48,53,46,52,49,51,54,51,53,44,51,55,46,56,57,48,53,50,55,93,44,91,45,49,48,53,46,52,55,51,50,48,52,44,51,55,46,56,57,53,57,55,93,44,91,45,49,48,53,46,52,53,55,50,53,53,44,51,55,46,55,53,49,52,54,52,93,44,91,45,49,48,53,46,52,56,53,53,49,54,44,51,55,46,53,55,55,56,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,53,34,44,34,78,65,77,69,34,58,34,75,97,114,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,56,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,50,56,52,52,51,44,50,57,46,50,50,49,55,52,56,93,44,91,45,57,56,46,49,57,48,57,57,49,44,50,56,46,56,56,50,51,51,51,93,44,91,45,57,56,46,48,57,56,51,49,53,44,50,56,46,55,56,54,57,52,57,93,44,91,45,57,56,46,48,48,53,50,53,50,44,50,56,46,54,57,48,50,51,57,93,44,91,45,57,55,46,57,49,53,49,48,54,44,50,56,46,55,49,57,54,52,56,93,44,91,45,57,55,46,55,55,56,53,51,44,50,56,46,54,54,56,48,50,55,93,44,91,45,57,55,46,53,55,52,54,51,57,44,50,56,46,56,49,51,51,93,44,91,45,57,55,46,55,53,53,49,49,44,50,57,46,48,48,55,49,49,51,93,44,91,45,57,55,46,54,49,51,49,51,50,44,50,57,46,49,48,57,55,54,53,93,44,91,45,57,55,46,55,50,56,52,52,51,44,50,57,46,50,50,49,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,53,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,49,51,54,49,49,44,51,53,46,53,56,56,48,56,57,93,44,91,45,56,56,46,54,55,53,56,54,55,44,51,53,46,52,56,57,49,54,51,93,44,91,45,56,56,46,56,52,49,54,48,55,44,51,53,46,52,50,55,56,50,54,93,44,91,45,56,56,46,55,56,49,55,54,56,44,51,53,46,50,52,55,53,56,55,93,44,91,45,56,56,46,55,49,57,55,54,49,44,51,53,46,50,52,55,53,53,93,44,91,45,56,56,46,54,52,48,57,51,52,44,51,53,46,51,54,49,48,49,55,93,44,91,45,56,56,46,51,54,50,53,55,50,44,51,53,46,51,56,48,57,57,52,93,44,91,45,56,56,46,51,54,48,56,50,57,44,51,53,46,52,49,56,57,55,50,93,44,91,45,56,56,46,52,49,52,53,56,50,44,51,53,46,52,56,50,51,51,57,93,44,91,45,56,56,46,54,49,51,54,49,49,44,51,53,46,53,56,56,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,52,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,57,57,49,48,53,44,51,57,46,55,57,48,48,54,93,44,91,45,57,48,46,54,52,53,57,57,44,51,57,46,55,48,51,51,54,56,93,44,91,45,57,48,46,53,56,49,48,53,53,44,51,57,46,53,50,49,55,50,56,93,44,91,45,57,48,46,51,48,49,56,51,49,44,51,57,46,53,50,48,51,52,52,93,44,91,45,57,48,46,51,48,48,54,54,54,44,51,57,46,54,51,54,53,52,49,93,44,91,45,57,48,46,51,55,49,50,53,54,44,51,57,46,55,53,51,49,50,50,93,44,91,45,57,48,46,53,57,57,49,48,53,44,51,57,46,55,57,48,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,77,105,108,108,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,51,51,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,48,49,54,48,48,51,44,51,57,46,51,49,52,53,54,49,93,44,91,45,49,49,50,46,49,56,56,57,50,50,44,51,57,46,51,50,57,51,57,50,93,44,91,45,49,49,50,46,50,49,50,48,52,53,44,51,57,46,53,53,51,57,56,55,93,44,91,45,49,49,51,46,49,48,55,52,55,53,44,51,57,46,53,53,50,53,49,51,93,44,91,45,49,49,51,46,56,49,53,55,52,51,44,51,57,46,53,53,50,54,52,52,93,44,91,45,49,49,52,46,48,52,55,54,52,57,44,51,57,46,53,52,50,55,52,50,93,44,91,45,49,49,52,46,48,52,57,56,48,55,44,51,56,46,54,55,55,51,54,53,93,44,91,45,49,49,52,46,48,52,57,57,55,55,44,51,56,46,53,55,50,57,55,52,93,44,91,45,49,49,50,46,53,49,53,51,57,52,44,51,56,46,53,55,50,56,52,53,93,44,91,45,49,49,50,46,52,52,55,53,49,55,44,51,56,46,54,56,49,50,55,93,44,91,45,49,49,50,46,51,48,57,57,53,51,44,51,56,46,54,55,54,50,57,93,44,91,45,49,49,50,46,50,49,56,51,53,54,44,51,56,46,55,50,55,51,54,49,93,44,91,45,49,49,50,46,50,50,52,52,54,49,44,51,56,46,56,54,52,56,48,51,93,44,91,45,49,49,50,46,48,49,52,48,56,51,44,51,57,46,48,52,53,53,49,56,93,44,91,45,49,49,50,46,48,49,54,48,48,51,44,51,57,46,51,49,52,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,57,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,53,54,50,52,55,44,52,49,46,49,51,57,48,56,51,93,44,91,45,49,49,49,46,56,49,53,52,49,52,44,52,48,46,57,53,55,52,51,93,44,91,45,49,49,49,46,55,51,56,55,52,52,44,52,48,46,56,54,48,57,57,56,93,44,91,45,49,49,49,46,54,52,49,48,53,50,44,52,48,46,55,57,56,57,50,53,93,44,91,45,49,49,49,46,53,50,55,52,54,53,44,52,48,46,55,56,53,55,53,50,93,44,91,45,49,49,49,46,52,56,54,49,53,57,44,52,48,46,56,55,51,49,50,52,93,44,91,45,49,49,49,46,53,48,55,53,49,44,52,49,46,48,54,51,50,51,52,93,44,91,45,49,49,49,46,50,54,52,57,55,52,44,52,49,46,49,52,52,48,52,52,93,44,91,45,49,49,49,46,50,50,53,56,50,51,44,52,49,46,49,57,49,48,49,55,93,44,91,45,49,49,49,46,50,57,52,56,56,54,44,52,49,46,51,50,57,57,54,57,93,44,91,45,49,49,49,46,52,50,48,55,50,56,44,52,49,46,51,54,49,51,48,56,93,44,91,45,49,49,49,46,52,57,54,56,49,53,44,52,49,46,50,51,48,54,49,93,44,91,45,49,49,49,46,54,53,56,54,51,54,44,52,49,46,49,56,53,55,49,56,93,44,91,45,49,49,49,46,56,53,55,55,57,57,44,52,49,46,49,57,55,55,53,51,93,44,91,45,49,49,49,46,56,53,54,50,52,55,44,52,49,46,49,51,57,48,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,55,34,44,34,78,65,77,69,34,58,34,75,97,117,102,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,57,49,48,44,34,98,101,100,115,34,58,51,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,49,56,57,55,44,51,50,46,56,49,51,54,49,54,93,44,91,45,57,54,46,53,50,57,57,56,55,44,51,50,46,53,52,53,50,56,50,93,44,91,45,57,54,46,52,51,53,50,51,51,44,51,50,46,52,48,56,57,56,54,93,44,91,45,57,54,46,52,53,50,49,51,56,44,51,50,46,51,53,56,54,51,49,93,44,91,45,57,54,46,48,55,53,56,57,57,44,51,50,46,51,53,55,53,48,53,93,44,91,45,57,54,46,48,55,54,56,48,49,44,51,50,46,56,51,56,52,56,57,93,44,91,45,57,54,46,50,57,55,51,50,50,44,51,50,46,56,52,49,55,50,51,93,44,91,45,57,54,46,53,49,56,57,55,44,51,50,46,56,49,51,54,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,108,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,52,57,53,52,52,44,51,51,46,54,53,50,54,57,55,93,44,91,45,49,48,57,46,52,57,53,55,52,44,51,51,46,48,55,56,52,48,57,93,44,91,45,49,48,57,46,50,52,53,48,48,53,44,51,50,46,55,52,49,57,56,53,93,44,91,45,49,48,57,46,50,48,54,50,52,57,44,51,50,46,54,51,53,56,48,51,93,44,91,45,49,48,57,46,50,50,54,48,55,44,51,50,46,53,50,57,48,57,54,93,44,91,45,49,48,57,46,49,49,52,49,56,44,51,50,46,52,50,54,51,53,51,93,44,91,45,49,48,57,46,48,52,55,57,49,56,44,51,50,46,52,50,54,51,55,54,93,44,91,45,49,48,57,46,48,52,55,54,52,51,44,51,50,46,55,55,55,56,48,50,93,44,91,45,49,48,57,46,48,52,55,53,55,56,44,51,51,46,50,48,56,56,57,56,93,44,91,45,49,48,57,46,48,52,54,55,49,55,44,51,51,46,55,55,55,52,48,55,93,44,91,45,49,48,57,46,51,52,56,53,56,49,44,51,51,46,55,55,56,49,50,51,93,44,91,45,49,48,57,46,52,57,53,52,52,44,51,51,46,54,53,50,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,77,97,114,105,99,111,112,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,53,51,57,49,51,44,34,98,101,100,115,34,58,49,48,57,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,52,57,52,55,55,56,44,51,51,46,57,57,57,56,49,55,93,44,91,45,49,49,49,46,55,50,53,51,49,44,51,51,46,57,57,57,56,52,57,93,44,91,45,49,49,50,46,49,54,51,50,53,51,44,51,52,46,48,52,55,52,55,49,93,44,91,45,49,49,50,46,50,55,54,48,52,44,51,51,46,56,56,50,51,49,50,93,44,91,45,49,49,50,46,55,52,51,57,53,49,44,51,51,46,57,57,57,56,57,56,93,44,91,45,49,49,51,46,51,51,51,55,53,51,44,51,51,46,57,57,57,50,50,55,93,44,91,45,49,49,51,46,51,51,53,48,52,56,44,51,51,46,51,55,55,52,54,57,93,44,91,45,49,49,51,46,51,51,51,56,57,52,44,51,50,46,53,48,53,49,56,56,93,44,91,45,49,49,50,46,50,48,51,54,50,52,44,51,50,46,53,48,54,55,50,49,93,44,91,45,49,49,50,46,49,57,49,54,48,56,44,51,51,46,50,54,52,54,57,56,93,44,91,45,49,49,50,46,48,56,49,57,52,54,44,51,51,46,50,48,52,54,56,54,93,44,91,45,49,49,49,46,53,56,50,54,51,49,44,51,51,46,50,48,53,52,48,56,93,44,91,45,49,49,49,46,53,56,48,54,51,52,44,51,51,46,52,54,53,56,93,44,91,45,49,49,49,46,48,51,57,57,55,54,44,51,51,46,52,54,54,48,49,57,93,44,91,45,49,49,49,46,49,53,51,51,53,52,44,51,51,46,54,55,55,54,48,54,93,44,91,45,49,49,49,46,50,54,49,55,51,44,51,51,46,54,50,50,53,55,49,93,44,91,45,49,49,49,46,51,56,54,56,49,50,44,51,51,46,55,53,48,48,52,52,93,44,91,45,49,49,49,46,51,55,50,51,49,55,44,51,51,46,56,50,51,57,50,52,93,44,91,45,49,49,49,46,52,57,52,55,55,56,44,51,51,46,57,57,57,56,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,79,103,101,109,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,50,56,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,54,54,51,52,44,52,52,46,53,48,56,57,55,54,93,44,91,45,56,52,46,51,55,48,54,52,51,44,52,52,46,53,48,55,50,50,51,93,44,91,45,56,52,46,51,54,56,48,51,57,44,52,52,46,49,54,48,53,51,56,93,44,91,45,56,52,46,49,54,54,49,48,55,44,52,52,46,49,54,49,55,56,56,93,44,91,45,56,51,46,56,56,51,57,55,55,44,52,52,46,49,54,49,55,56,54,93,44,91,45,56,51,46,56,56,54,54,51,52,44,52,52,46,53,48,56,57,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,50,56,48,50,54,44,51,54,46,52,49,49,56,51,54,93,44,91,45,56,53,46,56,52,54,52,56,51,44,51,54,46,50,56,56,49,54,55,93,44,91,45,56,53,46,55,56,48,49,52,56,44,51,54,46,50,51,56,48,49,49,93,44,91,45,56,53,46,54,51,52,49,53,56,44,51,54,46,50,49,51,51,52,54,93,44,91,45,56,53,46,52,57,53,49,50,52,44,51,54,46,51,48,50,50,55,56,93,44,91,45,56,53,46,52,57,53,52,50,50,44,51,54,46,52,48,51,48,55,52,93,44,91,45,56,53,46,55,48,52,48,55,53,44,51,54,46,53,50,50,51,57,53,93,44,91,45,56,53,46,56,49,51,56,56,53,44,51,54,46,52,57,57,52,55,51,93,44,91,45,56,53,46,56,50,56,48,50,54,44,51,54,46,52,49,49,56,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,56,49,44,34,98,101,100,115,34,58,49,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,52,53,57,49,57,44,51,56,46,56,53,48,49,52,56,93,44,91,45,56,56,46,50,53,56,53,56,51,44,51,56,46,56,52,55,53,50,57,93,44,91,45,56,56,46,50,53,51,57,55,56,44,51,56,46,53,57,57,53,48,50,93,44,91,45,56,56,46,49,52,55,56,48,51,44,51,56,46,53,54,57,48,51,55,93,44,91,45,56,55,46,57,53,52,54,55,53,44,51,56,46,53,55,48,50,51,93,44,91,45,56,55,46,57,49,50,50,56,54,44,51,56,46,53,55,48,49,48,52,93,44,91,45,56,55,46,57,48,56,49,49,51,44,51,56,46,56,53,48,49,48,55,93,44,91,45,56,55,46,57,52,53,57,49,57,44,51,56,46,56,53,48,49,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,108,111,117,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,54,52,53,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,53,51,48,50,44,51,52,46,50,53,57,51,49,55,93,44,91,45,56,54,46,53,49,57,54,48,51,44,51,52,46,50,53,49,55,54,54,93,44,91,45,56,54,46,53,57,57,55,56,53,44,51,52,46,49,50,49,55,50,93,44,91,45,56,54,46,54,56,55,54,57,55,44,51,52,46,48,56,48,55,51,53,93,44,91,45,56,54,46,55,54,51,57,57,57,44,51,51,46,57,55,52,49,56,55,93,44,91,45,56,54,46,57,54,51,51,53,56,44,51,51,46,56,53,56,50,50,49,93,44,91,45,56,54,46,57,53,51,54,54,52,44,51,51,46,56,49,53,50,57,55,93,44,91,45,56,54,46,55,53,57,49,52,52,44,51,51,46,56,52,48,54,49,55,93,44,91,45,56,54,46,53,55,55,55,57,57,44,51,51,46,55,54,53,51,49,54,93,44,91,45,56,54,46,52,48,53,57,56,49,44,51,51,46,56,51,53,56,57,54,93,44,91,45,56,54,46,51,50,53,54,50,50,44,51,51,46,57,52,48,49,52,55,93,44,91,45,56,54,46,51,48,51,53,49,54,44,51,52,46,48,57,57,48,55,51,93,44,91,45,56,54,46,52,53,51,48,50,44,51,52,46,50,53,57,51,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,76,105,98,101,114,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,55,52,51,48,54,52,44,52,56,46,57,57,56,54,48,54,93,44,91,45,49,49,49,46,50,54,57,56,54,50,44,52,56,46,57,57,55,50,51,93,44,91,45,49,49,49,46,50,55,53,51,48,54,44,52,56,46,50,49,57,53,51,49,93,44,91,45,49,49,49,46,52,48,57,48,49,56,44,52,56,46,50,49,57,53,52,50,93,44,91,45,49,49,49,46,52,48,57,48,57,55,44,52,56,46,49,51,50,50,49,56,93,44,91,45,49,49,48,46,56,50,55,49,54,56,44,52,56,46,49,51,51,50,48,53,93,44,91,45,49,49,48,46,55,53,53,56,55,51,44,52,56,46,50,49,57,54,48,49,93,44,91,45,49,49,48,46,55,52,51,48,54,52,44,52,56,46,57,57,56,54,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,68,117,118,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,51,51,50,53,44,50,56,46,48,53,55,52,56,93,44,91,45,57,56,46,55,57,56,51,50,51,44,50,55,46,51,53,52,48,50,57,93,44,91,45,57,56,46,53,53,50,54,49,55,44,50,55,46,51,53,57,49,48,49,93,44,91,45,57,56,46,53,50,51,50,56,52,44,50,55,46,50,54,53,49,53,93,44,91,45,57,56,46,50,51,50,52,54,52,44,50,55,46,50,54,50,52,56,55,93,44,91,45,57,56,46,50,51,53,52,57,55,44,50,56,46,48,53,55,57,54,54,93,44,91,45,57,56,46,51,51,52,51,50,51,44,50,56,46,48,53,55,56,93,44,91,45,57,56,46,56,48,51,51,50,53,44,50,56,46,48,53,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,82,97,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,49,53,50,52,55,44,51,57,46,54,53,55,54,52,52,93,44,91,45,57,49,46,55,49,55,57,54,56,44,51,57,46,51,51,57,49,50,50,93,44,91,45,57,49,46,52,51,56,50,51,53,44,51,57,46,51,49,56,55,49,54,93,44,91,45,57,49,46,52,54,48,52,52,50,44,51,57,46,52,53,48,55,50,50,93,44,91,45,57,49,46,49,55,56,48,49,50,44,51,57,46,53,57,56,49,57,54,93,44,91,45,57,49,46,51,48,54,54,57,51,44,51,57,46,54,56,52,56,54,53,93,44,91,45,57,49,46,55,49,53,52,57,55,44,51,57,46,54,56,54,52,57,50,93,44,91,45,57,49,46,55,49,53,50,52,55,44,51,57,46,54,53,55,54,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,52,55,53,44,34,98,101,100,115,34,58,49,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,56,54,56,51,52,44,51,50,46,53,52,57,52,50,56,93,44,91,45,57,55,46,53,53,48,53,56,50,44,51,50,46,53,53,53,51,57,49,93,44,91,45,57,55,46,54,49,55,48,54,54,44,51,50,46,53,53,53,52,56,52,93,44,91,45,57,55,46,54,49,53,50,56,54,44,51,50,46,51,49,56,54,49,56,93,44,91,45,57,55,46,54,49,53,48,53,53,44,51,50,46,50,48,51,53,56,49,93,44,91,45,57,55,46,52,55,54,48,56,54,44,51,50,46,49,55,51,52,54,93,44,91,45,57,55,46,48,56,54,49,57,49,44,51,50,46,50,54,53,52,53,49,93,44,91,45,57,55,46,48,56,54,56,51,52,44,51,50,46,53,52,57,52,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,50,55,51,50,57,44,51,49,46,55,54,50,53,54,51,93,44,91,45,56,53,46,48,52,53,52,57,53,44,51,49,46,53,49,55,49,50,57,93,44,91,45,56,52,46,56,49,57,56,48,55,44,51,49,46,53,48,49,49,57,50,93,44,91,45,56,52,46,56,49,55,56,52,51,44,51,49,46,54,49,57,55,55,49,93,44,91,45,56,52,46,57,52,50,51,53,51,44,51,49,46,54,49,56,54,54,57,93,44,91,45,56,52,46,57,53,56,54,52,44,51,49,46,55,55,55,56,53,52,93,44,91,45,56,53,46,49,52,49,49,51,44,51,49,46,55,56,48,52,54,51,93,44,91,45,56,53,46,49,50,55,51,50,57,44,51,49,46,55,54,50,53,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,56,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,54,55,50,50,50,56,44,52,52,46,57,57,53,49,49,55,93,44,91,45,49,49,57,46,54,53,50,52,51,49,44,52,52,46,56,50,51,50,57,57,93,44,91,45,49,49,57,46,54,53,53,53,49,55,44,52,52,46,51,48,55,48,52,53,93,44,91,45,49,49,57,46,54,53,55,49,56,51,44,52,51,46,57,53,56,57,50,93,44,91,45,49,49,56,46,56,49,54,57,51,49,44,52,51,46,57,54,48,55,51,51,93,44,91,45,49,49,56,46,56,49,54,56,57,44,52,52,46,48,52,55,56,50,56,93,44,91,45,49,49,56,46,50,50,55,54,52,53,44,52,52,46,48,51,57,56,54,50,93,44,91,45,49,49,56,46,50,51,50,50,49,52,44,52,52,46,50,53,54,49,50,57,93,44,91,45,49,49,56,46,52,57,55,52,57,57,44,52,52,46,50,53,53,50,52,56,93,44,91,45,49,49,56,46,52,48,57,55,55,52,44,52,52,46,51,55,56,54,49,57,93,44,91,45,49,49,56,46,52,50,50,49,55,51,44,52,52,46,52,52,56,57,56,52,93,44,91,45,49,49,56,46,51,48,53,55,55,56,44,52,52,46,53,56,56,56,49,93,44,91,45,49,49,56,46,53,49,54,52,53,50,44,52,52,46,55,48,50,52,54,50,93,44,91,45,49,49,56,46,50,56,53,52,51,57,44,52,52,46,55,53,48,57,55,53,93,44,91,45,49,49,56,46,51,49,56,55,50,53,44,52,52,46,56,51,54,50,55,57,93,44,91,45,49,49,56,46,50,52,52,54,54,50,44,52,52,46,57,53,56,51,57,54,93,44,91,45,49,49,56,46,53,49,56,54,56,57,44,52,52,46,57,57,53,56,55,55,93,44,91,45,49,49,57,46,49,54,50,57,54,54,44,52,52,46,57,57,54,50,52,49,93,44,91,45,49,49,57,46,54,55,50,50,50,56,44,52,52,46,57,57,53,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,111,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,51,48,56,44,34,98,101,100,115,34,58,50,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,50,57,48,50,51,54,44,52,51,46,54,49,48,57,53,57,93,44,91,45,49,50,52,46,51,56,48,50,55,52,44,52,51,46,52,48,50,56,52,54,93,44,91,45,49,50,52,46,52,55,54,57,52,56,44,52,51,46,51,50,57,51,55,49,93,44,91,45,49,50,52,46,52,54,53,50,51,53,44,52,51,46,50,48,48,51,48,56,93,44,91,45,49,50,52,46,53,53,50,51,55,51,44,52,50,46,57,53,52,51,49,49,93,44,91,45,49,50,52,46,50,53,56,51,56,56,44,52,50,46,57,53,52,57,52,54,93,44,91,45,49,50,52,46,49,54,49,51,48,56,44,52,50,46,56,56,51,52,57,57,93,44,91,45,49,50,52,46,49,51,56,55,52,56,44,52,50,46,54,55,49,49,49,53,93,44,91,45,49,50,51,46,57,57,54,50,57,49,44,52,50,46,54,56,53,54,53,49,93,44,91,45,49,50,51,46,57,50,53,55,49,55,44,52,50,46,55,55,52,53,49,52,93,44,91,45,49,50,51,46,56,49,49,53,53,51,44,52,50,46,55,56,56,56,51,55,93,44,91,45,49,50,51,46,56,50,49,49,49,56,44,52,50,46,57,57,54,50,57,49,93,44,91,45,49,50,51,46,55,48,50,49,52,52,44,52,51,46,48,56,55,48,56,51,93,44,91,45,49,50,51,46,55,48,52,55,53,50,44,52,51,46,50,53,55,55,52,49,93,44,91,45,49,50,51,46,55,54,49,53,50,56,44,52,51,46,52,50,50,50,57,52,93,44,91,45,49,50,51,46,56,55,53,54,50,56,44,52,51,46,53,49,53,57,52,55,93,44,91,45,49,50,51,46,56,55,53,54,57,56,44,52,51,46,54,48,56,52,48,55,93,44,91,45,49,50,52,46,50,57,48,50,51,54,44,52,51,46,54,49,48,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,48,56,53,57,51,44,51,51,46,51,55,55,49,57,93,44,91,45,57,53,46,51,48,56,57,53,55,44,51,50,46,57,54,50,53,55,50,93,44,91,45,57,53,46,49,53,50,50,48,54,44,51,51,46,48,49,51,52,53,93,44,91,45,57,53,46,49,50,54,49,51,44,51,51,46,48,51,52,53,56,49,93,44,91,45,57,53,46,49,50,53,52,53,49,44,51,51,46,51,56,57,52,53,52,93,44,91,45,57,53,46,51,48,54,54,52,44,51,51,46,51,55,56,48,50,55,93,44,91,45,57,53,46,51,48,56,53,57,51,44,51,51,46,51,55,55,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,52,56,48,44,34,98,101,100,115,34,58,52,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,48,53,55,48,48,53,44,52,51,46,55,52,52,53,49,51,93,44,91,45,55,52,46,50,49,52,54,50,53,44,52,51,46,55,50,56,55,48,51,93,44,91,45,55,52,46,49,54,48,49,44,52,51,46,51,55,49,53,51,50,93,44,91,45,55,51,46,56,56,52,49,51,57,44,52,51,46,51,57,56,48,52,49,93,44,91,45,55,51,46,55,56,57,55,51,49,44,52,51,46,50,52,52,52,50,49,93,44,91,45,55,51,46,53,57,52,57,54,44,52,51,46,51,48,54,49,49,56,93,44,91,45,55,51,46,54,50,56,57,52,44,52,51,46,52,56,54,51,57,49,93,44,91,45,55,51,46,52,57,52,51,49,52,44,52,51,46,54,53,51,57,54,54,93,44,91,45,55,51,46,52,51,56,49,50,44,52,51,46,56,48,51,54,56,55,93,44,91,45,55,52,46,48,53,55,48,48,53,44,52,51,46,55,52,52,53,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,51,56,49,55,54,44,51,56,46,54,50,55,51,49,50,93,44,91,45,55,56,46,52,53,50,56,48,49,44,51,56,46,52,55,53,53,50,55,93,44,91,45,55,56,46,52,50,57,54,50,54,44,51,56,46,51,54,54,55,48,52,93,44,91,45,55,56,46,50,56,56,56,51,55,44,51,56,46,50,55,50,54,53,54,93,44,91,45,55,56,46,50,50,49,49,48,52,44,51,56,46,50,51,48,48,56,57,93,44,91,45,55,56,46,48,57,52,52,57,56,44,51,56,46,51,49,49,50,52,50,93,44,91,45,55,56,46,48,57,54,48,56,51,44,51,56,46,52,48,52,51,52,51,93,44,91,45,55,56,46,50,51,49,56,48,51,44,51,56,46,53,51,50,53,51,57,93,44,91,45,55,56,46,51,51,56,49,55,54,44,51,56,46,54,50,55,51,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,116,111,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,57,50,48,52,51,44,51,52,46,54,56,48,53,53,54,93,44,91,45,57,54,46,48,57,50,48,49,50,44,51,52,46,53,48,54,48,53,57,93,44,91,45,57,54,46,49,52,53,52,50,51,44,51,52,46,52,49,56,51,49,51,93,44,91,45,57,54,46,52,48,55,48,55,52,44,51,52,46,52,49,56,51,57,93,44,91,45,57,54,46,52,48,55,53,49,55,44,51,52,46,49,53,55,51,49,55,93,44,91,45,57,53,46,57,57,49,53,55,56,44,51,52,46,49,53,54,56,48,53,93,44,91,45,57,53,46,55,55,57,51,55,54,44,51,52,46,49,53,54,54,57,57,93,44,91,45,57,53,46,55,55,57,49,51,52,44,51,52,46,53,48,54,54,52,52,93,44,91,45,57,53,46,54,55,49,55,53,44,51,52,46,53,48,54,55,57,52,93,44,91,45,57,53,46,54,55,49,56,49,44,51,52,46,53,57,51,55,51,50,93,44,91,45,57,53,46,56,56,49,57,56,55,44,51,52,46,53,57,51,53,50,56,93,44,91,45,57,53,46,56,56,50,49,57,54,44,51,52,46,54,56,48,53,51,52,93,44,91,45,57,54,46,48,57,50,48,52,51,44,51,52,46,54,56,48,53,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,77,101,110,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,57,53,48,57,44,52,48,46,49,48,56,57,48,56,93,44,91,45,56,57,46,57,57,52,53,48,54,44,51,57,46,57,48,49,57,50,53,93,44,91,45,56,57,46,55,54,57,49,54,56,44,51,57,46,57,48,50,51,53,93,44,91,45,56,57,46,54,57,56,50,53,57,44,51,57,46,57,55,53,51,48,57,93,44,91,45,56,57,46,53,55,56,50,56,57,44,51,57,46,57,55,54,49,50,55,93,44,91,45,56,57,46,54,48,49,54,56,56,44,52,48,46,49,50,50,51,55,56,93,44,91,45,56,57,46,57,55,52,54,48,52,44,52,48,46,49,51,53,55,48,53,93,44,91,45,56,57,46,57,57,53,48,57,44,52,48,46,49,48,56,57,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,97,114,116,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,54,50,48,44,34,98,101,100,115,34,58,49,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,48,53,55,55,53,44,51,52,46,51,57,50,52,52,54,93,44,91,45,56,53,46,48,52,54,56,55,49,44,51,52,46,48,57,54,52,49,50,93,44,91,45,56,52,46,57,50,50,55,52,50,44,51,52,46,48,56,50,52,57,55,93,44,91,45,56,52,46,55,51,55,56,51,54,44,51,52,46,48,55,57,51,57,57,93,44,91,45,56,52,46,54,53,57,50,52,49,44,51,52,46,48,55,56,50,52,93,44,91,45,56,52,46,54,53,51,50,51,50,44,51,52,46,52,49,50,53,57,93,44,91,45,56,53,46,48,48,53,55,55,53,44,51,52,46,51,57,50,52,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,51,54,50,44,34,98,101,100,115,34,58,56,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,53,52,49,57,44,50,56,46,57,54,48,48,53,51,93,44,91,45,56,49,46,57,53,55,54,52,49,44,50,56,46,51,52,53,49,56,93,44,91,45,56,49,46,54,53,55,50,54,56,44,50,56,46,51,52,55,48,57,56,93,44,91,45,56,49,46,54,53,56,53,57,55,44,50,56,46,55,54,54,56,55,93,44,91,45,56,49,46,52,49,52,52,52,54,44,50,56,46,55,56,52,57,53,53,93,44,91,45,56,49,46,51,54,54,57,52,44,50,56,46,56,55,57,50,50,55,93,44,91,45,56,49,46,51,53,52,53,53,52,44,50,56,46,57,56,52,51,55,53,93,44,91,45,56,49,46,53,48,50,48,53,53,44,50,57,46,48,57,55,56,48,50,93,44,91,45,56,49,46,53,51,50,53,55,54,44,50,57,46,49,55,55,54,49,53,93,44,91,45,56,49,46,54,52,49,57,49,54,44,50,57,46,50,55,54,55,54,54,93,44,91,45,56,49,46,54,53,56,54,57,56,44,50,56,46,57,54,48,51,52,53,93,44,91,45,56,49,46,57,53,52,49,57,44,50,56,46,57,54,48,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,79,107,109,117,108,103,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,56,57,44,34,98,101,100,115,34,58,49,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,51,51,49,49,56,44,51,53,46,56,53,54,56,50,52,93,44,91,45,57,54,46,49,57,50,52,48,51,44,51,53,46,56,53,54,57,57,51,93,44,91,45,57,54,46,49,57,50,53,54,51,44,51,53,46,54,51,57,48,56,55,93,44,91,45,57,54,46,48,56,55,55,55,55,44,51,53,46,53,53,50,48,48,51,93,44,91,45,57,54,46,48,56,55,53,51,44,51,53,46,51,55,54,56,55,55,93,44,91,45,57,53,46,57,56,49,52,54,53,44,51,53,46,51,55,54,55,56,56,93,44,91,45,57,53,46,56,55,53,52,48,53,44,51,53,46,51,55,54,54,57,93,44,91,45,57,53,46,56,50,50,51,54,49,44,51,53,46,53,53,49,54,57,51,93,44,91,45,57,53,46,55,49,50,57,53,51,44,51,53,46,53,53,49,55,51,56,93,44,91,45,57,53,46,55,49,51,48,56,49,44,51,53,46,55,50,53,56,48,55,93,44,91,45,57,53,46,55,54,54,49,49,52,44,51,53,46,56,53,54,50,56,52,93,44,91,45,57,53,46,56,49,57,52,53,57,44,51,53,46,56,53,54,50,53,53,93,44,91,45,57,54,46,48,51,51,49,49,56,44,51,53,46,56,53,54,56,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,83,104,101,114,105,100,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,56,53,49,55,57,44,52,55,46,56,52,55,55,54,49,93,44,91,45,49,48,48,46,53,56,53,48,54,50,44,52,55,46,54,55,52,48,56,56,93,44,91,45,49,48,48,46,54,55,50,50,54,50,44,52,55,46,54,55,52,49,50,56,93,44,91,45,49,48,48,46,54,55,51,50,49,44,52,55,46,51,50,55,54,52,54,93,44,91,45,49,48,48,46,49,49,51,50,54,49,44,52,55,46,51,50,55,50,54,50,93,44,91,45,49,48,48,46,48,51,51,50,57,50,44,52,55,46,51,50,55,49,54,53,93,44,91,45,49,48,48,46,48,51,50,56,48,55,44,52,55,46,54,55,51,54,54,57,93,44,91,45,49,48,48,46,48,54,57,51,49,49,44,52,55,46,56,52,55,52,51,49,93,44,91,45,49,48,48,46,49,57,55,57,57,54,44,52,55,46,56,52,55,54,53,50,93,44,91,45,49,48,48,46,53,56,53,49,55,57,44,52,55,46,56,52,55,55,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,49,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,52,53,53,54,49,44,52,49,46,48,52,50,56,55,54,93,44,91,45,56,54,46,48,55,53,57,51,57,44,52,49,46,48,56,52,56,55,56,93,44,91,45,56,54,46,48,55,55,53,53,49,44,52,49,46,49,55,50,56,54,56,93,44,91,45,56,54,46,52,54,55,48,52,54,44,52,49,46,49,55,49,52,52,50,93,44,91,45,56,54,46,52,54,56,53,48,57,44,52,48,46,57,48,57,56,56,57,93,44,91,45,56,54,46,49,54,57,48,49,50,44,52,48,46,57,48,57,56,51,54,93,44,91,45,56,54,46,49,54,56,52,53,57,44,52,48,46,57,57,54,48,57,55,93,44,91,45,56,53,46,57,52,54,52,51,54,44,52,48,46,57,57,57,49,57,53,93,44,91,45,56,53,46,57,52,53,53,54,49,44,52,49,46,48,52,50,56,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,53,53,48,50,44,34,98,101,100,115,34,58,49,56,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,55,51,56,50,44,51,57,46,48,52,52,48,56,54,93,44,91,45,57,52,46,56,55,50,52,52,50,44,51,57,46,48,53,57,48,56,56,93,44,91,45,57,52,46,57,48,56,55,54,53,44,51,56,46,57,57,49,52,48,49,93,44,91,45,57,53,46,48,53,54,50,53,56,44,51,56,46,57,56,50,49,50,93,44,91,45,57,53,46,48,53,54,52,49,50,44,51,56,46,55,51,56,53,56,55,93,44,91,45,57,52,46,54,48,57,48,56,44,51,56,46,55,51,56,48,57,57,93,44,91,45,57,52,46,54,48,56,48,51,51,44,51,56,46,56,52,55,50,48,55,93,44,91,45,57,52,46,54,48,55,51,56,50,44,51,57,46,48,52,52,48,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,97,108,118,101,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,48,56,50,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,56,54,51,53,56,44,51,56,46,55,52,56,52,55,53,93,44,91,45,55,54,46,54,55,53,52,53,55,44,51,56,46,53,51,53,56,55,54,93,44,91,45,55,54,46,54,55,52,49,49,56,44,51,56,46,52,57,57,54,50,50,93,44,91,45,55,54,46,52,52,53,51,51,52,44,51,56,46,51,48,53,50,49,93,44,91,45,55,54,46,51,50,49,57,48,56,44,51,56,46,51,50,55,50,56,52,93,44,91,45,55,54,46,52,51,56,56,49,52,44,51,56,46,53,55,53,51,51,54,93,44,91,45,55,54,46,52,54,51,54,51,54,44,51,56,46,55,49,49,48,57,57,93,44,91,45,55,54,46,54,56,54,51,53,56,44,51,56,46,55,52,56,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,98,117,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,56,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,52,57,54,51,54,44,52,54,46,49,53,55,53,57,55,93,44,91,45,57,50,46,48,51,49,52,49,55,44,52,53,46,54,51,57,57,50,56,93,44,91,45,57,49,46,53,52,48,50,57,52,44,52,53,46,54,51,55,54,48,53,93,44,91,45,57,49,46,53,53,49,50,56,50,44,52,54,46,49,53,55,48,52,53,93,44,91,45,57,50,46,48,52,57,54,51,54,44,52,54,46,49,53,55,53,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,57,53,50,51,56,54,44,52,56,46,51,52,57,55,48,54,93,44,91,45,49,50,50,46,57,52,57,49,54,55,44,52,55,46,56,54,54,56,50,50,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,56,56,49,48,56,93,44,91,45,49,50,52,46,55,49,53,48,49,54,44,52,55,46,56,55,57,56,53,57,93,44,91,45,49,50,52,46,52,54,49,52,48,50,44,52,55,46,54,50,52,57,54,93,44,91,45,49,50,52,46,52,50,57,53,53,51,44,52,55,46,53,51,50,57,52,57,93,44,91,45,49,50,52,46,48,52,54,55,52,44,52,55,46,53,49,56,53,50,53,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,53,49,55,55,49,54,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,54,48,52,54,49,53,93,44,91,45,49,50,50,46,57,53,48,54,50,49,44,52,55,46,54,48,54,51,48,56,93,44,91,45,49,50,50,46,55,56,51,50,51,55,44,52,55,46,54,55,50,55,53,52,93,44,91,45,49,50,50,46,55,50,49,57,55,49,44,52,55,46,55,56,55,54,54,53,93,44,91,45,49,50,50,46,53,57,57,51,54,52,44,52,55,46,56,55,52,56,49,53,93,44,91,45,49,50,50,46,54,48,54,55,54,44,52,55,46,57,55,50,57,53,51,93,44,91,45,49,50,50,46,54,52,50,50,53,54,44,52,56,46,48,57,51,55,55,93,44,91,45,49,50,50,46,56,54,50,54,56,52,44,52,56,46,50,52,51,54,53,56,93,44,91,45,49,50,50,46,56,54,51,48,55,56,44,52,56,46,51,55,48,51,54,49,93,44,91,45,49,50,50,46,57,53,50,51,56,54,44,52,56,46,51,52,57,55,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,103,117,97,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,54,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,50,52,57,51,56,52,44,49,56,46,52,49,56,57,50,52,93,44,91,45,54,55,46,49,56,50,56,53,50,44,49,56,46,51,49,51,48,50,54,93,44,91,45,54,55,46,49,51,48,49,54,55,44,49,56,46,51,49,55,57,50,55,93,44,91,45,54,55,46,49,51,50,50,49,44,49,56,46,51,56,57,51,57,49,93,44,91,45,54,55,46,50,48,55,57,51,55,44,49,56,46,52,52,50,50,56,93,44,91,45,54,55,46,50,52,57,51,56,52,44,49,56,46,52,49,56,57,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,87,105,110,111,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,56,52,55,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,55,57,52,57,49,44,52,52,46,49,48,54,57,56,56,93,44,91,45,57,50,46,48,55,57,50,57,50,44,52,51,46,56,52,55,48,56,93,44,91,45,57,49,46,55,51,48,52,50,52,44,52,51,46,56,52,54,57,51,53,93,44,91,45,57,49,46,50,56,52,49,51,56,44,52,51,46,56,52,55,48,54,53,93,44,91,45,57,49,46,52,50,53,49,56,56,44,52,51,46,57,56,52,51,50,50,93,44,91,45,57,49,46,53,53,57,48,48,52,44,52,52,46,48,50,53,51,49,53,93,44,91,45,57,49,46,56,53,56,50,52,53,44,52,52,46,49,57,51,48,48,52,93,44,91,45,57,50,46,48,55,56,53,51,50,44,52,52,46,49,57,50,57,55,57,93,44,91,45,57,50,46,48,55,57,52,57,49,44,52,52,46,49,48,54,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,48,55,53,44,34,98,101,100,115,34,58,51,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,54,57,55,57,50,44,51,50,46,53,54,50,56,48,51,93,44,91,45,57,49,46,49,49,54,55,48,56,44,51,50,46,53,48,48,49,51,56,93,44,91,45,57,48,46,57,56,54,54,55,50,44,51,50,46,51,53,49,55,54,93,44,91,45,57,48,46,57,56,51,51,56,49,44,51,50,46,50,49,49,55,54,55,93,44,91,45,57,49,46,49,50,52,48,52,51,44,51,50,46,50,49,49,49,48,52,93,44,91,45,57,49,46,48,53,51,53,53,53,44,51,50,46,49,50,52,52,49,50,93,44,91,45,57,49,46,48,51,48,56,49,44,51,50,46,49,50,48,54,53,93,44,91,45,57,49,46,48,51,48,50,48,55,44,51,50,46,49,49,52,51,53,51,93,44,91,45,57,48,46,57,53,54,55,56,55,44,51,50,46,48,56,51,53,57,55,93,44,91,45,57,48,46,55,55,52,56,50,44,51,50,46,49,53,51,57,57,51,93,44,91,45,57,48,46,55,50,56,54,50,50,44,51,50,46,50,50,53,49,49,57,93,44,91,45,57,48,46,54,56,51,53,55,49,44,51,50,46,51,53,50,55,56,52,93,44,91,45,57,48,46,53,53,51,56,50,49,44,51,50,46,53,48,55,53,55,52,93,44,91,45,57,48,46,55,50,48,49,48,50,44,51,50,46,54,49,56,56,53,56,93,44,91,45,57,48,46,56,54,48,53,54,54,44,51,50,46,53,55,53,49,55,51,93,44,91,45,57,48,46,56,54,49,51,54,52,44,51,50,46,52,52,50,49,49,53,93,44,91,45,57,48,46,57,53,49,50,52,44,51,50,46,52,52,52,51,56,57,93,44,91,45,57,48,46,57,54,52,48,52,51,44,51,50,46,53,55,53,54,48,53,93,44,91,45,57,49,46,48,52,51,53,53,50,44,51,50,46,53,55,54,50,55,49,93,44,91,45,57,49,46,48,54,57,55,57,50,44,51,50,46,53,54,50,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,100,114,101,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,52,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,53,57,52,50,44,52,48,46,49,50,54,49,50,55,93,44,91,45,57,53,46,48,52,51,48,56,44,52,48,46,49,51,48,48,57,54,93,44,91,45,57,52,46,57,57,51,51,56,50,44,51,57,46,56,57,55,57,48,54,93,44,91,45,57,52,46,56,55,54,53,53,56,44,51,57,46,56,50,48,56,56,51,93,44,91,45,57,52,46,54,48,50,56,51,44,51,57,46,56,49,57,57,48,54,93,44,91,45,57,52,46,54,48,53,51,55,55,44,52,48,46,48,51,57,50,49,55,93,44,91,45,57,52,46,54,48,53,57,52,50,44,52,48,46,49,50,54,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,51,51,57,57,56,44,51,57,46,48,53,57,48,53,55,93,44,91,45,57,49,46,54,52,55,49,55,49,44,51,56,46,55,48,51,51,57,54,93,44,91,45,57,49,46,54,52,48,51,55,50,44,51,56,46,55,48,51,55,57,50,93,44,91,45,57,49,46,53,52,53,51,49,51,44,51,56,46,54,55,54,56,56,50,93,44,91,45,57,49,46,52,49,56,54,51,55,44,51,56,46,55,48,57,55,55,56,93,44,91,45,57,49,46,52,49,53,56,51,50,44,51,56,46,56,52,53,51,93,44,91,45,57,49,46,50,54,52,57,50,55,44,51,56,46,56,52,51,56,51,51,93,44,91,45,57,49,46,50,54,52,50,56,55,44,51,56,46,57,57,50,55,54,50,93,44,91,45,57,49,46,50,54,48,50,51,50,44,51,57,46,49,51,57,56,52,53,93,44,91,45,57,49,46,52,48,57,48,51,51,44,51,57,46,49,52,50,53,52,50,93,44,91,45,57,49,46,54,50,57,53,57,56,44,51,57,46,49,52,55,56,53,51,93,44,91,45,57,49,46,54,51,51,57,57,56,44,51,57,46,48,53,57,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,51,49,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,55,53,49,54,54,44,51,55,46,51,51,57,57,51,55,93,44,91,45,57,53,46,48,55,51,53,48,52,44,51,54,46,57,57,57,53,53,50,93,44,91,45,57,53,46,48,48,55,54,50,44,51,54,46,57,57,57,53,49,52,93,44,91,45,57,52,46,54,49,55,57,54,52,44,51,54,46,57,57,56,57,48,53,93,44,91,45,57,52,46,54,49,55,56,52,57,44,51,55,46,48,53,54,55,57,55,93,44,91,45,57,52,46,54,49,55,55,50,50,44,51,55,46,51,51,56,52,49,56,93,44,91,45,57,53,46,48,55,53,49,54,54,44,51,55,46,51,51,57,57,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,97,108,105,102,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,51,55,44,34,98,101,100,115,34,58,50,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,57,57,53,50,52,44,51,54,46,53,48,52,50,53,57,93,44,91,45,55,55,46,57,49,49,57,54,51,44,51,54,46,51,56,50,52,52,54,93,44,91,45,55,56,46,48,48,54,53,53,49,44,51,54,46,50,48,50,54,51,51,93,44,91,45,55,55,46,56,56,55,50,52,44,51,54,46,49,52,51,56,52,93,44,91,45,55,55,46,54,57,55,57,53,54,44,51,54,46,49,53,51,49,53,93,44,91,45,55,55,46,53,51,51,49,54,49,44,51,54,46,48,57,48,54,53,57,93,44,91,45,55,55,46,52,48,50,54,49,52,44,51,54,46,48,48,52,57,54,54,93,44,91,45,55,55,46,51,50,55,53,54,57,44,51,54,46,48,55,49,51,54,49,93,44,91,45,55,55,46,50,57,49,53,49,57,44,51,54,46,49,54,56,51,52,50,93,44,91,45,55,55,46,51,56,54,53,57,53,44,51,54,46,50,49,51,53,52,56,93,44,91,45,55,55,46,52,52,53,56,56,54,44,51,54,46,51,50,52,56,56,56,93,44,91,45,55,55,46,54,52,57,56,51,53,44,51,54,46,52,56,49,52,52,51,93,44,91,45,55,55,46,56,57,57,53,50,52,44,51,54,46,53,48,52,50,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,83,97,110,100,111,118,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,55,54,57,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,49,57,55,50,52,52,44,51,53,46,50,49,57,52,53,57,93,44,91,45,49,48,54,46,50,52,52,50,49,54,44,51,53,46,50,49,53,54,53,55,93,44,91,45,49,48,54,46,50,53,48,52,57,57,44,51,53,46,55,53,53,56,49,56,93,44,91,45,49,48,54,46,52,48,48,55,44,51,53,46,56,48,55,53,54,55,93,44,91,45,49,48,54,46,51,57,57,55,49,51,44,51,53,46,57,54,48,48,57,53,93,44,91,45,49,48,54,46,50,52,56,49,54,49,44,51,53,46,57,54,54,51,50,55,93,44,91,45,49,48,54,46,50,52,55,49,54,52,44,51,54,46,48,48,49,52,51,52,93,44,91,45,49,48,54,46,56,56,53,51,49,55,44,51,53,46,57,57,56,57,54,57,93,44,91,45,49,48,54,46,56,56,53,48,53,51,44,51,54,46,50,49,54,53,55,93,44,91,45,49,48,55,46,54,50,52,50,56,51,44,51,54,46,50,49,57,56,48,57,93,44,91,45,49,48,55,46,54,50,54,53,49,49,44,51,54,46,48,48,48,50,56,56,93,44,91,45,49,48,55,46,51,48,56,54,54,55,44,51,53,46,57,57,56,53,53,54,93,44,91,45,49,48,55,46,51,48,57,51,56,54,44,51,53,46,51,48,53,54,56,55,93,44,91,45,49,48,55,46,49,57,55,50,52,52,44,51,53,46,50,49,57,52,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,50,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,52,51,55,49,56,44,51,55,46,50,53,48,53,53,49,93,44,91,45,56,51,46,57,54,56,57,57,44,51,55,46,49,55,52,55,57,52,93,44,91,45,56,51,46,56,55,49,51,49,53,44,51,55,46,48,53,52,57,49,57,93,44,91,45,56,51,46,53,56,57,53,50,49,44,51,54,46,57,53,53,55,56,54,93,44,91,45,56,51,46,53,48,57,48,56,51,44,51,54,46,57,51,56,53,48,57,93,44,91,45,56,51,46,53,53,49,51,48,51,44,51,55,46,49,54,55,53,49,93,44,91,45,56,51,46,53,48,55,56,56,54,44,51,55,46,50,51,53,56,55,55,93,44,91,45,56,51,46,53,50,54,57,48,55,44,51,55,46,50,53,56,53,50,57,93,44,91,45,56,51,46,54,51,56,53,55,50,44,51,55,46,51,52,52,49,54,54,93,44,91,45,56,51,46,55,56,52,57,55,53,44,51,55,46,51,52,56,55,49,55,93,44,91,45,56,51,46,57,52,51,55,49,56,44,51,55,46,50,53,48,53,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,48,55,52,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,51,56,50,48,51,44,52,49,46,49,53,51,54,51,51,93,44,91,45,55,55,46,55,57,56,53,54,44,52,49,46,49,56,49,57,53,93,44,91,45,55,55,46,55,52,49,57,49,49,44,52,49,46,49,48,55,54,49,52,93,44,91,45,55,55,46,54,50,49,55,53,57,44,52,49,46,48,57,49,49,56,53,93,44,91,45,55,55,46,53,48,56,53,57,54,44,52,48,46,57,54,50,57,51,56,93,44,91,45,55,55,46,49,52,52,49,54,44,52,49,46,48,52,52,51,51,56,93,44,91,45,55,55,46,49,52,52,49,49,49,44,52,49,46,48,54,56,56,52,93,44,91,45,55,55,46,53,50,54,53,51,55,44,52,49,46,51,53,56,53,50,56,93,44,91,45,55,55,46,53,57,56,49,50,57,44,52,49,46,52,55,56,53,55,54,93,44,91,45,55,55,46,57,56,57,49,57,52,44,52,49,46,52,55,52,56,50,50,93,44,91,45,55,55,46,57,56,56,55,56,54,44,52,49,46,51,54,55,52,53,51,93,44,91,45,55,56,46,48,57,51,51,56,49,44,52,49,46,50,49,54,57,51,49,93,44,91,45,55,56,46,48,51,56,50,48,51,44,52,49,46,49,53,51,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,76,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,56,55,48,44,34,98,101,100,115,34,58,49,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,49,52,57,48,50,53,44,52,52,46,55,50,48,50,50,53,93,44,91,45,49,50,51,46,50,54,48,49,53,49,44,52,52,46,53,53,53,49,52,56,93,44,91,45,49,50,51,46,50,49,49,57,54,55,44,52,52,46,53,48,49,50,49,56,93,44,91,45,49,50,51,46,50,52,48,55,52,52,44,52,52,46,51,51,55,55,56,57,93,44,91,45,49,50,51,46,49,56,48,51,56,56,44,52,52,46,50,56,51,55,50,53,93,44,91,45,49,50,51,46,49,54,53,52,50,56,44,52,52,46,50,48,48,48,55,49,93,44,91,45,49,50,50,46,57,48,53,55,53,53,44,52,52,46,50,48,48,55,51,54,93,44,91,45,49,50,50,46,56,54,53,52,55,56,44,52,52,46,50,56,55,49,51,52,93,44,91,45,49,50,50,46,55,54,50,55,51,53,44,52,52,46,50,57,48,53,51,55,93,44,91,45,49,50,50,46,53,48,55,50,48,51,44,52,52,46,50,50,51,52,52,56,93,44,91,45,49,50,50,46,51,50,55,49,53,44,52,52,46,50,53,50,56,52,49,93,44,91,45,49,50,49,46,56,49,57,52,50,57,44,52,52,46,50,54,50,51,57,52,93,44,91,45,49,50,49,46,56,52,51,49,51,56,44,52,52,46,51,57,50,54,51,93,44,91,45,49,50,49,46,56,48,48,48,49,53,44,52,52,46,54,56,51,52,50,53,93,44,91,45,49,50,50,46,48,51,51,48,48,54,44,52,52,46,54,56,53,54,57,49,93,44,91,45,49,50,50,46,50,55,54,54,55,53,44,52,52,46,55,52,54,49,51,53,93,44,91,45,49,50,50,46,56,48,50,52,53,55,44,52,52,46,55,57,48,56,54,52,93,44,91,45,49,50,51,46,48,48,55,55,52,51,44,52,52,46,54,56,56,48,55,49,93,44,91,45,49,50,51,46,49,52,51,56,52,51,44,52,52,46,55,52,56,57,49,52,93,44,91,45,49,50,51,46,49,52,57,48,50,53,44,52,52,46,55,50,48,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,51,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,50,54,57,48,50,44,52,50,46,56,49,50,56,54,50,93,44,91,45,57,48,46,52,50,54,51,55,55,44,52,50,46,53,48,55,49,55,51,93,44,91,45,56,57,46,57,50,54,52,54,54,44,52,50,46,53,48,53,55,55,50,93,44,91,45,56,57,46,56,51,55,53,56,55,44,52,50,46,53,48,53,55,49,93,44,91,45,56,57,46,56,51,56,52,49,44,52,50,46,56,49,51,55,57,57,93,44,91,45,57,48,46,52,50,54,57,48,50,44,52,50,46,56,49,50,56,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,48,48,49,44,34,98,101,100,115,34,58,49,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,48,48,56,49,44,51,54,46,57,57,56,56,54,93,44,91,45,57,54,46,48,48,49,49,55,49,44,51,54,46,52,50,51,54,56,54,93,44,91,45,57,53,46,56,49,50,51,52,50,44,51,54,46,52,50,51,53,56,93,44,91,45,57,53,46,56,48,57,53,52,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,56,48,57,56,50,44,51,54,46,57,52,49,57,51,93,44,91,45,57,53,46,55,56,54,55,54,50,44,51,54,46,57,57,57,51,49,93,44,91,45,57,53,46,57,54,52,50,55,44,51,54,46,57,57,57,49,48,52,93,44,91,45,57,54,46,48,48,48,56,49,44,51,54,46,57,57,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,80,114,101,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,51,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,55,54,51,55,55,52,44,51,57,46,55,50,48,55,55,54,93,44,91,45,55,57,46,56,57,52,54,56,56,44,51,57,46,52,51,53,53,56,56,93,44,91,45,55,57,46,56,57,53,53,51,54,44,51,57,46,50,57,57,53,56,52,93,44,91,45,55,57,46,56,48,57,55,50,57,44,51,57,46,50,51,48,53,50,54,93,44,91,45,55,57,46,54,56,55,50,56,51,44,51,57,46,50,55,49,51,57,56,93,44,91,45,55,57,46,52,56,55,49,55,53,44,51,57,46,49,57,52,57,48,54,93,44,91,45,55,57,46,52,56,54,56,55,53,44,51,57,46,50,48,53,56,57,54,93,44,91,45,55,57,46,52,55,54,54,54,50,44,51,57,46,55,50,49,48,55,56,93,44,91,45,55,57,46,55,54,51,55,55,52,44,51,57,46,55,50,48,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,87,97,117,112,97,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,52,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,50,51,55,52,53,44,52,52,46,54,56,49,51,54,53,93,44,91,45,56,57,46,50,50,52,56,49,51,44,52,52,46,50,52,51,51,57,51,93,44,91,45,56,56,46,56,56,54,54,55,51,44,52,52,46,50,52,50,54,50,50,93,44,91,45,56,56,46,55,51,57,55,55,44,52,52,46,50,52,51,51,48,51,93,44,91,45,56,56,46,55,51,54,56,48,50,44,52,52,46,53,57,48,54,48,53,93,44,91,45,56,56,46,54,48,54,48,56,51,44,52,52,46,53,57,48,53,49,53,93,44,91,45,56,56,46,54,48,53,49,53,57,44,52,52,46,54,55,56,51,51,49,93,44,91,45,56,57,46,50,50,51,55,52,53,44,52,52,46,54,56,49,51,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,69,100,119,97,114,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,54,52,54,49,44,51,48,46,50,57,48,50,57,54,93,44,91,45,49,48,48,46,55,48,48,51,57,51,44,51,48,46,50,56,56,50,55,54,93,44,91,45,49,48,48,46,54,57,57,57,51,50,44,50,57,46,54,50,51,56,57,55,93,44,91,45,49,48,48,46,49,49,50,48,57,56,44,50,57,46,54,50,51,50,54,51,93,44,91,45,49,48,48,46,48,49,52,49,56,56,44,50,57,46,54,50,51,52,57,53,93,44,91,45,49,48,48,46,48,52,53,55,57,49,44,50,57,46,54,57,52,57,50,52,93,44,91,45,57,57,46,57,54,55,54,50,54,44,51,48,46,48,56,50,51,53,54,93,44,91,45,57,57,46,55,53,55,54,50,49,44,51,48,46,48,55,52,49,51,50,93,44,91,45,57,57,46,55,53,52,49,52,50,44,51,48,46,50,57,48,54,57,56,93,44,91,45,49,48,48,46,49,49,54,52,54,49,44,51,48,46,50,57,48,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,52,51,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,51,51,50,57,54,57,44,52,51,46,54,49,54,54,52,53,93,44,91,45,49,50,49,46,51,52,56,52,55,49,44,52,51,46,51,53,54,55,53,51,93,44,91,45,49,50,49,46,51,52,57,54,55,57,44,52,50,46,55,52,54,54,52,52,93,44,91,45,49,50,48,46,56,56,51,51,50,55,44,52,50,46,55,52,52,50,49,52,93,44,91,45,49,50,48,46,56,55,57,57,50,54,44,52,49,46,57,57,51,55,54,52,93,44,91,45,49,49,57,46,57,57,57,50,51,52,44,52,49,46,57,57,52,57,52,52,93,44,91,45,49,49,57,46,51,54,48,49,50,50,44,52,49,46,57,57,52,50,55,56,93,44,91,45,49,49,57,46,51,54,53,51,51,55,44,52,50,46,55,52,56,57,53,56,93,44,91,45,49,49,57,46,57,52,51,55,55,57,44,52,50,46,55,52,54,51,55,49,93,44,91,45,49,49,57,46,57,51,50,54,49,49,44,52,51,46,49,55,56,57,54,51,93,44,91,45,49,49,57,46,56,57,54,57,54,57,44,52,51,46,49,55,57,48,49,55,93,44,91,45,49,49,57,46,56,57,54,53,56,49,44,52,51,46,54,49,49,49,54,52,93,44,91,45,49,50,49,46,51,51,50,57,54,57,44,52,51,46,54,49,54,54,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,79,122,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,49,50,51,52,54,44,51,54,46,55,57,52,50,51,49,93,44,91,45,57,50,46,55,54,52,56,54,57,44,51,54,46,56,48,54,48,57,55,93,44,91,45,57,50,46,55,55,50,51,52,51,44,51,54,46,52,57,55,54,54,50,93,44,91,45,57,50,46,53,50,57,49,50,56,44,51,54,46,52,57,56,53,57,57,93,44,91,45,57,50,46,49,53,48,50,57,53,44,51,54,46,52,57,56,54,49,93,44,91,45,57,50,46,49,50,48,52,51,44,51,54,46,52,57,56,55,93,44,91,45,57,50,46,49,49,50,51,52,54,44,51,54,46,55,57,52,50,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,55,51,34,44,34,78,65,77,69,34,58,34,87,97,108,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,57,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,48,52,51,48,54,44,51,48,46,50,52,53,53,55,93,44,91,45,57,54,46,48,57,51,49,54,53,44,51,48,46,50,50,53,49,56,55,93,44,91,45,57,54,46,49,57,49,52,49,56,44,51,48,46,49,51,52,54,54,57,93,44,91,45,57,54,46,49,52,54,48,53,50,44,51,48,46,48,55,48,50,50,52,93,44,91,45,57,54,46,48,56,52,53,52,49,44,51,48,46,48,48,53,49,51,55,93,44,91,45,57,54,46,49,51,49,54,53,44,50,57,46,57,51,55,53,48,52,93,44,91,45,57,54,46,49,48,50,52,57,54,44,50,57,46,56,48,57,54,54,53,93,44,91,45,57,54,46,48,51,50,55,49,49,44,50,57,46,55,50,55,57,52,52,93,44,91,45,57,53,46,56,50,54,50,50,44,50,57,46,55,56,56,50,56,93,44,91,45,57,53,46,57,54,48,55,51,51,44,51,48,46,49,54,51,52,49,53,93,44,91,45,57,53,46,56,48,51,51,51,44,51,48,46,48,57,48,48,57,54,93,44,91,45,57,53,46,56,48,52,51,48,54,44,51,48,46,50,52,53,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,49,50,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,48,48,57,51,44,51,49,46,56,50,57,50,53,49,93,44,91,45,56,55,46,53,54,54,56,52,49,44,51,49,46,54,57,55,49,49,53,93,44,91,45,56,55,46,53,54,53,55,48,56,44,51,49,46,52,56,49,54,56,51,93,44,91,45,56,55,46,54,48,51,49,51,55,44,51,49,46,52,48,57,53,53,54,93,44,91,45,56,55,46,55,48,54,48,52,53,44,51,49,46,52,48,48,57,53,55,93,44,91,45,56,55,46,55,54,53,49,53,50,44,51,49,46,50,57,55,51,52,54,93,44,91,45,56,55,46,54,49,53,56,57,44,51,49,46,50,52,52,52,53,56,93,44,91,45,56,55,46,52,50,55,52,53,53,44,51,49,46,50,54,48,51,56,54,93,44,91,45,56,55,46,49,54,54,53,56,49,44,51,49,46,53,49,57,53,54,49,93,44,91,45,56,55,46,49,51,53,48,53,49,44,51,49,46,54,52,50,52,49,55,93,44,91,45,56,54,46,57,48,53,56,57,57,44,51,49,46,55,53,51,48,51,53,93,44,91,45,56,54,46,57,48,54,56,57,57,44,51,49,46,56,51,48,54,50,56,93,44,91,45,56,55,46,53,48,48,57,51,44,51,49,46,56,50,57,50,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,69,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,56,57,55,54,48,56,44,52,53,46,48,48,56,51,53,93,44,91,45,55,49,46,56,55,52,52,51,51,44,52,52,46,56,55,54,51,56,50,93,44,91,45,55,49,46,57,51,57,57,51,54,44,52,52,46,55,54,57,48,51,50,93,44,91,45,55,49,46,57,49,48,48,56,53,44,52,52,46,54,52,55,49,56,93,44,91,45,55,49,46,57,51,51,50,56,56,44,52,52,46,52,52,49,49,55,52,93,44,91,45,55,49,46,56,51,55,56,53,51,44,52,52,46,51,52,55,57,57,51,93,44,91,45,55,49,46,55,54,53,54,56,52,44,52,52,46,52,48,54,50,57,53,93,44,91,45,55,49,46,54,48,48,49,53,55,44,52,52,46,52,56,53,56,51,51,93,44,91,45,55,49,46,53,53,51,55,53,54,44,52,52,46,54,51,48,52,50,54,93,44,91,45,55,49,46,54,50,57,57,49,57,44,52,52,46,55,53,51,53,55,56,93,44,91,45,55,49,46,52,57,54,48,57,51,44,52,52,46,57,48,55,56,52,57,93,44,91,45,55,49,46,53,48,49,48,56,50,44,52,53,46,48,49,51,51,53,53,93,44,91,45,55,49,46,56,57,55,54,48,56,44,52,53,46,48,48,56,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,76,117,110,101,110,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,51,57,51,53,52,44,51,55,46,49,50,48,48,56,57,93,44,91,45,55,56,46,52,52,51,54,52,52,44,51,55,46,48,55,57,51,55,49,93,44,91,45,55,56,46,52,57,51,48,50,56,44,51,54,46,56,57,49,50,50,93,44,91,45,55,56,46,50,52,49,53,48,57,44,51,54,46,56,48,55,57,53,56,93,44,91,45,55,56,46,48,50,55,52,49,49,44,51,54,46,55,55,55,56,53,56,93,44,91,45,55,56,46,48,48,51,54,51,57,44,51,55,46,48,50,50,55,53,54,93,44,91,45,55,56,46,49,55,48,56,57,53,44,51,55,46,48,53,51,57,52,57,93,44,91,45,55,56,46,50,51,57,51,53,52,44,51,55,46,49,50,48,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,84,114,97,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,49,57,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,55,50,55,52,53,44,52,55,46,54,55,50,48,53,49,93,44,91,45,57,55,46,52,55,52,50,50,56,44,52,55,46,51,50,52,54,50,49,93,44,91,45,57,55,46,52,53,49,53,49,50,44,52,55,46,50,51,57,48,54,49,93,44,91,45,57,54,46,56,51,51,51,57,51,44,52,55,46,50,51,56,48,52,49,93,44,91,45,57,54,46,56,52,56,57,50,51,44,52,55,46,52,57,56,57,57,49,93,44,91,45,57,54,46,56,56,54,56,52,54,44,52,55,46,54,55,50,48,54,51,93,44,91,45,57,55,46,52,55,50,55,52,53,44,52,55,46,54,55,50,48,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,72,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,57,54,49,44,34,98,101,100,115,34,58,54,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,52,51,52,48,53,44,51,52,46,53,48,53,52,57,52,93,44,91,45,56,51,46,57,56,48,54,52,57,44,51,52,46,52,49,56,51,56,57,93,44,91,45,56,51,46,57,53,55,48,55,55,44,51,52,46,51,51,52,48,49,49,93,44,91,45,56,51,46,57,50,55,50,56,52,44,51,52,46,50,55,57,51,57,57,93,44,91,45,56,52,46,48,54,50,56,52,49,44,51,52,46,49,54,55,56,55,51,93,44,91,45,56,51,46,56,54,56,48,51,44,51,52,46,48,57,56,50,56,49,93,44,91,45,56,51,46,56,49,55,54,56,50,44,51,52,46,49,50,55,52,57,51,93,44,91,45,56,51,46,54,50,48,49,49,53,44,51,52,46,50,57,53,50,55,54,93,44,91,45,56,51,46,54,49,53,50,53,49,44,51,52,46,52,51,49,55,52,56,93,44,91,45,56,51,46,54,54,54,52,49,53,44,51,52,46,53,48,51,54,48,50,93,44,91,45,56,51,46,56,52,51,52,48,53,44,51,52,46,53,48,53,52,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,51,34,44,34,78,65,77,69,34,58,34,84,114,101,117,116,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,52,55,55,51,51,44,51,50,46,53,49,50,53,48,55,93,44,91,45,56,50,46,55,50,49,57,54,52,44,51,50,46,51,48,57,50,56,51,93,44,91,45,56,50,46,54,53,53,52,56,54,44,51,50,46,50,57,55,53,54,49,93,44,91,45,56,50,46,52,48,57,49,51,44,51,50,46,51,53,51,55,51,56,93,44,91,45,56,50,46,52,48,57,49,49,56,44,51,50,46,51,53,51,56,51,93,44,91,45,56,50,46,51,56,54,49,48,54,44,51,50,46,52,52,48,51,55,93,44,91,45,56,50,46,52,57,57,57,55,49,44,51,50,46,52,57,56,51,55,56,93,44,91,45,56,50,46,54,52,55,55,51,51,44,51,50,46,53,49,50,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,49,55,56,52,51,44,51,49,46,54,49,57,55,55,49,93,44,91,45,56,52,46,56,49,57,56,48,55,44,51,49,46,53,48,49,49,57,50,93,44,91,45,56,52,46,55,56,57,48,51,50,44,51,49,46,52,51,54,51,53,54,93,44,91,45,56,52,46,54,51,55,53,55,57,44,51,49,46,52,51,51,57,50,54,93,44,91,45,56,52,46,52,50,57,56,55,54,44,51,49,46,52,51,54,54,54,49,93,44,91,45,56,52,46,52,53,48,51,57,56,44,51,49,46,54,50,49,56,54,56,93,44,91,45,56,52,46,53,52,54,56,53,52,44,51,49,46,54,50,49,49,57,57,93,44,91,45,56,52,46,56,49,55,56,52,51,44,51,49,46,54,49,57,55,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,86,105,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,57,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,50,57,49,53,56,44,52,54,46,50,57,57,55,52,56,93,44,91,45,56,57,46,57,50,56,56,51,55,44,52,53,46,57,56,49,57,54,55,93,44,91,45,57,48,46,48,52,51,57,53,56,44,52,53,46,57,56,49,57,52,56,93,44,91,45,57,48,46,48,52,50,56,53,55,44,52,53,46,56,57,55,50,54,51,93,44,91,45,56,57,46,48,52,55,54,48,49,44,52,53,46,56,57,53,51,53,53,93,44,91,45,56,56,46,57,51,51,50,50,50,44,52,53,46,57,56,50,50,55,54,93,44,91,45,56,56,46,57,51,50,55,53,55,44,52,54,46,48,55,51,54,54,56,93,44,91,45,56,56,46,57,57,48,56,54,52,44,52,54,46,48,57,55,51,56,49,93,44,91,45,56,57,46,48,57,49,54,51,56,44,52,54,46,49,51,56,52,52,55,93,44,91,45,56,57,46,57,50,57,49,53,56,44,52,54,46,50,57,57,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,108,116,114,97,109,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,49,49,55,44,34,98,101,100,115,34,58,49,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,54,48,50,51,49,53,44,52,56,46,53,51,56,56,56,55,93,44,91,45,57,53,46,53,57,51,55,56,56,44,52,56,46,49,55,50,57,49,54,93,44,91,45,57,53,46,53,56,50,56,56,55,44,52,56,46,48,50,48,53,53,55,93,44,91,45,57,53,46,50,50,57,49,51,51,44,52,56,46,48,49,57,57,53,56,93,44,91,45,57,53,46,50,55,55,56,51,52,44,52,55,46,57,50,53,51,52,54,93,44,91,45,57,53,46,49,57,51,55,48,53,44,52,55,46,56,55,50,53,52,52,93,44,91,45,57,53,46,49,56,51,50,49,54,44,52,55,46,52,49,50,55,55,51,93,44,91,45,57,52,46,54,55,48,50,49,52,44,52,55,46,52,49,48,49,53,49,93,44,91,45,57,52,46,52,49,54,50,55,57,44,52,55,46,52,52,52,56,50,56,93,44,91,45,57,52,46,52,49,56,53,52,51,44,52,55,46,56,52,53,56,49,54,93,44,91,45,57,52,46,52,50,56,55,48,50,44,52,56,46,51,54,55,51,51,51,93,44,91,45,57,53,46,50,49,48,57,53,51,44,52,56,46,51,54,53,57,55,49,93,44,91,45,57,53,46,50,49,49,57,54,54,44,52,56,46,53,51,57,57,54,49,93,44,91,45,57,53,46,51,52,50,53,52,44,52,56,46,53,52,48,50,49,49,93,44,91,45,57,53,46,54,48,50,51,49,53,44,52,56,46,53,51,56,56,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,111,97,109,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,50,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,52,52,52,53,54,44,49,56,46,49,55,54,54,55,52,93,44,91,45,54,54,46,52,51,48,51,49,52,44,49,56,46,48,56,50,48,53,51,93,44,91,45,54,54,46,52,50,54,57,56,57,44,49,56,46,48,52,50,54,50,55,93,44,91,45,54,54,46,51,51,49,50,52,52,44,49,56,46,48,49,53,56,57,49,93,44,91,45,54,54,46,50,53,55,53,50,55,44,49,56,46,48,55,53,56,56,52,93,44,91,45,54,54,46,51,49,52,56,52,56,44,49,56,46,49,53,50,48,56,56,93,44,91,45,54,54,46,51,55,51,55,54,56,44,49,56,46,49,55,51,54,57,52,93,44,91,45,54,54,46,52,52,52,53,54,44,49,56,46,49,55,54,54,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,117,195,161,110,105,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,56,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,57,53,56,55,52,56,44,49,56,46,48,51,50,52,55,55,93,44,91,45,54,54,46,57,57,57,54,49,57,44,49,55,46,56,56,51,57,93,44,91,45,54,54,46,56,51,57,57,50,57,44,49,55,46,56,57,56,57,57,51,93,44,91,45,54,54,46,56,53,56,50,51,51,44,49,55,46,57,53,48,56,50,53,93,44,91,45,54,54,46,56,56,52,54,53,51,44,49,56,46,48,50,52,56,49,54,93,44,91,45,54,54,46,57,53,56,55,52,56,44,49,56,46,48,51,50,52,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,68,111,114,99,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,54,49,44,34,98,101,100,115,34,58,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,57,52,53,50,52,56,44,51,56,46,54,55,52,49,48,57,93,44,91,45,55,54,46,48,50,51,52,52,53,44,51,56,46,53,55,51,56,55,53,93,44,91,45,55,54,46,50,52,48,49,53,44,51,56,46,54,54,51,50,48,52,93,44,91,45,55,54,46,52,51,56,56,49,52,44,51,56,46,53,55,53,51,51,54,93,44,91,45,55,54,46,51,50,49,57,48,56,44,51,56,46,51,50,55,50,56,52,93,44,91,45,55,54,46,50,48,52,55,49,57,44,51,56,46,48,53,56,52,49,93,44,91,45,55,54,46,48,55,56,53,55,53,44,51,56,46,48,54,48,57,50,93,44,91,45,55,53,46,57,52,56,52,53,52,44,51,56,46,50,49,53,57,54,93,44,91,45,55,53,46,56,50,51,55,48,54,44,51,56,46,52,56,49,48,50,50,93,44,91,45,55,53,46,55,48,49,53,54,57,44,51,56,46,53,54,48,55,51,54,93,44,91,45,55,53,46,55,48,55,52,52,55,44,51,56,46,54,51,53,51,57,54,93,44,91,45,55,53,46,56,51,55,57,55,52,44,51,56,46,55,48,51,57,57,93,44,91,45,55,53,46,57,52,53,50,52,56,44,51,56,46,54,55,52,49,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,50,50,48,44,34,98,101,100,115,34,58,49,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,52,55,53,57,55,44,52,49,46,50,55,53,54,50,57,93,44,91,45,55,54,46,54,52,48,55,54,55,44,52,49,46,49,53,53,55,49,56,93,44,91,45,55,54,46,54,49,56,57,55,49,44,52,49,46,48,54,51,55,53,57,93,44,91,45,55,54,46,53,49,50,52,50,49,44,52,48,46,57,52,54,49,48,50,93,44,91,45,55,54,46,53,50,56,48,51,52,44,52,48,46,56,56,50,53,49,53,93,44,91,45,55,54,46,51,56,48,49,53,50,44,52,48,46,55,55,53,53,49,49,93,44,91,45,55,54,46,50,48,55,56,50,55,44,52,48,46,57,52,57,55,52,93,44,91,45,55,54,46,51,49,57,50,51,54,44,52,49,46,50,48,56,48,57,50,93,44,91,45,55,54,46,51,49,48,49,51,51,44,52,49,46,51,49,48,49,57,57,93,44,91,45,55,54,46,52,52,55,53,57,55,44,52,49,46,50,55,53,54,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,49,57,56,44,34,98,101,100,115,34,58,50,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,51,54,48,54,57,44,52,48,46,48,52,48,49,56,50,93,44,91,45,56,52,46,48,53,49,48,49,50,44,51,57,46,56,55,57,56,49,93,44,91,45,56,52,46,48,53,51,55,51,54,44,51,57,46,56,53,48,52,53,56,93,44,91,45,56,51,46,56,50,55,52,50,53,44,51,57,46,56,50,50,54,53,49,93,44,91,45,56,51,46,54,52,55,49,54,57,44,51,57,46,55,55,51,48,50,57,93,44,91,45,56,51,46,53,56,56,48,52,49,44,51,57,46,55,54,56,55,55,56,93,44,91,45,56,51,46,53,49,54,49,53,53,44,52,48,46,48,49,48,49,56,56,93,44,91,45,56,52,46,48,51,54,48,54,57,44,52,48,46,48,52,48,49,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,51,34,44,34,78,65,77,69,34,58,34,77,97,118,101,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,57,55,48,44,34,98,101,100,115,34,58,49,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,54,54,55,53,52,56,44,50,57,46,48,56,52,50,57,50,93,44,91,45,49,48,48,46,54,51,49,54,49,49,44,50,56,46,57,48,50,56,51,57,93,44,91,45,49,48,48,46,53,52,54,53,55,54,44,50,56,46,56,50,52,57,50,51,93,44,91,45,49,48,48,46,53,48,48,51,53,52,44,50,56,46,54,54,49,57,54,93,44,91,45,49,48,48,46,51,51,54,49,56,55,44,50,56,46,52,51,48,49,56,49,93,44,91,45,49,48,48,46,50,57,52,50,57,54,44,50,56,46,50,56,52,51,56,93,44,91,45,49,48,48,46,50,49,50,49,56,57,44,50,56,46,49,57,54,56,51,55,93,44,91,45,49,48,48,46,49,49,51,55,49,57,44,50,56,46,49,57,55,56,49,57,93,44,91,45,49,48,48,46,49,49,52,51,51,54,44,50,56,46,54,52,56,49,50,50,93,44,91,45,49,48,48,46,49,49,49,52,48,54,44,50,57,46,48,56,54,51,49,56,93,44,91,45,49,48,48,46,54,54,55,53,52,56,44,50,57,46,48,56,52,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,80,105,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,57,55,50,50,44,34,98,101,100,115,34,58,51,50,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,52,53,49,53,50,50,44,51,50,46,53,49,51,57,57,53,93,44,91,45,49,49,49,46,53,54,57,50,53,54,44,51,50,46,53,48,54,55,54,57,93,44,91,45,49,49,50,46,50,48,51,54,50,52,44,51,50,46,53,48,54,55,50,49,93,44,91,45,49,49,51,46,51,51,51,56,57,52,44,51,50,46,53,48,53,49,56,56,93,44,91,45,49,49,51,46,51,51,51,55,54,55,44,51,50,46,48,51,56,57,50,55,93,44,91,45,49,49,50,46,49,52,57,55,49,50,44,51,49,46,54,55,51,56,55,49,93,44,91,45,49,49,49,46,51,54,54,51,55,50,44,51,49,46,52,50,54,48,54,49,93,44,91,45,49,49,49,46,51,54,54,57,50,50,44,51,49,46,53,50,49,51,54,49,93,44,91,45,49,49,49,46,49,54,51,55,49,55,44,51,49,46,53,50,49,55,50,52,93,44,91,45,49,49,49,46,49,54,52,49,56,51,44,51,49,46,55,50,53,56,57,93,44,91,45,49,49,48,46,52,53,50,51,44,51,49,46,55,51,49,50,49,57,93,44,91,45,49,49,48,46,52,53,49,48,48,50,44,51,50,46,52,50,55,53,52,54,93,44,91,45,49,49,48,46,52,53,49,53,50,50,44,51,50,46,53,49,51,57,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,54,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,54,34,44,34,78,65,77,69,34,58,34,67,105,98,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,55,56,44,34,98,101,100,115,34,58,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,51,48,57,51,56,54,44,51,53,46,51,48,53,54,56,55,93,44,91,45,49,48,56,46,52,54,56,55,49,53,44,51,53,46,51,48,54,54,53,56,93,44,91,45,49,48,56,46,52,54,57,52,48,50,44,51,52,46,57,53,57,48,56,49,93,44,91,45,49,48,57,46,48,52,53,57,57,54,44,51,52,46,57,53,57,56,49,57,93,44,91,45,49,48,57,46,48,52,54,49,50,50,44,51,52,46,53,55,57,50,57,49,93,44,91,45,49,48,55,46,55,50,52,55,57,52,44,51,52,46,53,55,56,49,51,50,93,44,91,45,49,48,55,46,50,48,49,55,52,51,44,51,52,46,53,55,56,55,53,55,93,44,91,45,49,48,55,46,50,48,50,56,56,50,44,51,52,46,57,53,55,53,55,50,93,44,91,45,49,48,55,46,48,54,54,53,54,50,44,51,52,46,57,53,55,49,57,93,44,91,45,49,48,55,46,49,57,55,50,52,52,44,51,53,46,50,49,57,52,53,57,93,44,91,45,49,48,55,46,51,48,57,51,56,54,44,51,53,46,51,48,53,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,117,114,108,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,54,51,54,55,44,34,98,101,100,115,34,58,57,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,50,50,48,52,56,44,52,48,46,49,53,48,51,49,49,93,44,91,45,55,52,46,57,55,51,57,56,49,44,52,48,46,48,52,56,53,57,53,93,44,91,45,55,53,46,48,53,57,57,49,51,44,51,57,46,57,57,49,53,50,57,93,44,91,45,55,52,46,57,51,48,55,52,53,44,51,57,46,56,56,53,57,48,56,93,44,91,45,55,52,46,57,48,50,57,54,51,44,51,57,46,55,57,49,49,48,56,93,44,91,45,55,52,46,55,51,54,50,49,54,44,51,57,46,55,50,57,55,55,53,93,44,91,45,55,52,46,54,53,57,50,57,53,44,51,57,46,54,51,49,50,51,51,93,44,91,45,55,52,46,52,49,55,51,57,51,44,51,57,46,53,53,55,50,53,53,93,44,91,45,55,52,46,51,56,57,55,48,56,44,51,57,46,55,55,51,50,56,51,93,44,91,45,55,52,46,53,53,51,49,48,53,44,52,48,46,48,55,57,49,51,93,44,91,45,55,52,46,53,56,55,56,51,53,44,52,48,46,49,51,56,50,53,52,93,44,91,45,55,52,46,55,50,50,48,52,56,44,52,48,46,49,53,48,51,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,82,117,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,50,55,51,44,34,98,101,100,115,34,58,49,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,54,50,56,50,51,44,52,51,46,55,53,51,48,56,52,93,44,91,45,55,51,46,52,50,55,57,49,44,52,51,46,54,51,52,52,50,56,93,44,91,45,55,51,46,51,48,50,53,53,51,44,52,51,46,54,50,53,55,48,57,93,44,91,45,55,51,46,50,52,54,56,52,52,44,52,51,46,53,49,55,50,53,50,93,44,91,45,55,51,46,50,53,52,54,51,51,44,52,51,46,51,49,52,54,55,53,93,44,91,45,55,50,46,56,54,55,57,48,50,44,52,51,46,51,48,48,55,52,50,93,44,91,45,55,50,46,55,53,57,55,57,57,44,52,51,46,51,53,52,49,52,52,93,44,91,45,55,50,46,55,56,56,57,56,55,44,52,51,46,53,48,48,48,55,93,44,91,45,55,50,46,55,48,48,57,52,53,44,52,51,46,54,56,50,56,51,49,93,44,91,45,55,50,46,56,50,48,48,52,51,44,52,51,46,55,49,54,56,51,52,93,44,91,45,55,50,46,55,56,50,56,49,50,44,52,51,46,56,48,52,51,51,56,93,44,91,45,55,50,46,57,53,56,56,53,51,44,52,51,46,56,50,54,53,52,50,93,44,91,45,55,51,46,50,49,56,57,53,54,44,52,51,46,56,51,55,50,57,49,93,44,91,45,55,51,46,50,48,54,51,50,50,44,52,51,46,55,54,54,55,55,53,93,44,91,45,55,51,46,51,54,50,56,50,51,44,52,51,46,55,53,51,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,69,97,114,108,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,52,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,51,55,53,55,57,44,51,49,46,52,51,51,57,50,54,93,44,91,45,56,52,46,55,56,57,48,51,50,44,51,49,46,52,51,54,51,53,54,93,44,91,45,56,52,46,56,49,57,56,48,55,44,51,49,46,53,48,49,49,57,50,93,44,91,45,56,53,46,48,52,53,52,57,53,44,51,49,46,53,49,55,49,50,57,93,44,91,45,56,53,46,48,56,55,54,53,49,44,51,49,46,51,48,56,54,55,55,93,44,91,45,56,53,46,48,57,57,54,52,55,44,51,49,46,49,54,52,57,52,50,93,44,91,45,56,53,46,48,50,56,53,54,52,44,51,49,46,48,55,53,53,50,51,93,44,91,45,56,52,46,57,50,50,52,50,51,44,51,49,46,48,55,50,53,57,93,44,91,45,56,52,46,57,49,55,52,50,49,44,51,49,46,50,53,53,57,57,93,44,91,45,56,52,46,54,52,49,54,55,51,44,51,49,46,50,53,56,57,54,55,93,44,91,45,56,52,46,54,51,55,53,55,57,44,51,49,46,52,51,51,57,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,68,117,107,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,48,53,49,56,53,52,44,52,49,46,52,49,54,55,50,57,93,44,91,45,55,48,46,57,48,49,56,54,54,44,52,49,46,51,54,49,55,55,93,44,91,45,55,48,46,56,55,55,51,50,55,44,52,49,46,50,50,52,49,52,52,93,44,91,45,55,48,46,56,48,53,57,53,44,52,49,46,49,57,56,55,52,50,93,44,91,45,55,48,46,54,56,53,48,50,44,52,49,46,50,57,51,49,55,54,93,44,91,45,55,48,46,52,57,51,51,48,56,44,52,49,46,50,55,57,57,55,53,93,44,91,45,55,48,46,51,50,56,49,56,50,44,52,49,46,51,56,48,49,53,57,93,44,91,45,55,48,46,50,51,52,51,51,44,52,49,46,51,56,51,50,50,57,93,44,91,45,55,48,46,51,50,51,53,57,51,44,52,49,46,51,57,49,54,48,55,93,44,91,45,55,48,46,53,48,50,56,51,50,44,52,49,46,53,48,48,54,51,53,93,44,91,45,55,48,46,55,53,56,52,54,52,44,52,49,46,53,54,48,57,51,49,93,44,91,45,55,49,46,48,53,49,56,53,52,44,52,49,46,52,49,54,55,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,77,99,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,53,57,56,51,51,44,52,56,46,52,53,56,52,52,56,93,44,91,45,49,48,49,46,48,49,52,50,51,50,44,52,56,46,51,55,49,52,51,50,93,44,91,45,49,48,49,46,48,49,53,48,50,52,44,52,56,46,48,50,50,55,51,57,93,44,91,45,49,48,48,46,57,55,49,49,53,56,44,52,55,46,56,52,56,54,57,54,93,44,91,45,49,48,48,46,53,56,53,49,55,57,44,52,55,46,56,52,55,55,54,49,93,44,91,45,49,48,48,46,49,57,55,57,57,54,44,52,55,46,56,52,55,54,53,50,93,44,91,45,49,48,48,46,50,51,55,48,50,50,44,52,56,46,48,50,49,56,54,54,93,44,91,45,49,48,48,46,50,51,55,48,57,57,44,52,56,46,51,55,49,50,52,52,93,44,91,45,49,48,48,46,50,55,54,54,49,57,44,52,56,46,53,52,52,56,49,51,93,44,91,45,49,48,48,46,52,48,54,55,56,44,52,56,46,54,51,49,56,55,56,93,44,91,45,49,48,49,46,48,53,57,54,50,52,44,52,56,46,54,51,50,51,54,49,93,44,91,45,49,48,49,46,48,53,57,54,54,51,44,52,56,46,53,52,53,52,49,57,93,44,91,45,49,48,49,46,48,53,57,56,51,51,44,52,56,46,52,53,56,52,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,54,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,55,55,50,52,44,52,50,46,51,53,49,56,54,49,93,44,91,45,57,55,46,51,54,56,52,48,52,44,52,50,46,48,57,48,57,50,50,93,44,91,45,57,55,46,48,49,57,51,53,57,44,52,50,46,48,57,48,53,55,55,93,44,91,45,57,54,46,56,50,51,54,55,44,52,50,46,48,57,48,52,49,49,93,44,91,45,57,54,46,56,50,50,52,57,55,44,52,50,46,50,54,52,50,57,50,93,44,91,45,57,55,46,48,49,55,55,51,44,52,50,46,50,54,52,52,53,51,93,44,91,45,57,55,46,48,49,55,55,56,57,44,52,50,46,51,53,49,51,52,55,93,44,91,45,57,55,46,51,54,55,55,50,52,44,52,50,46,51,53,49,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,76,97,77,111,117,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,51,54,54,50,53,44,52,54,46,54,51,48,50,49,49,93,44,91,45,57,57,46,48,51,55,50,56,57,44,52,54,46,50,56,50,56,55,49,93,44,91,45,57,57,46,48,48,51,49,49,56,44,52,54,46,50,56,50,56,57,56,93,44,91,45,57,56,46,48,51,52,53,53,54,44,52,54,46,50,56,50,54,53,55,93,44,91,45,57,56,46,48,51,51,56,54,50,44,52,54,46,54,51,48,55,50,55,93,44,91,45,57,56,46,52,51,57,48,53,54,44,52,54,46,54,51,49,49,50,93,44,91,45,57,57,46,48,51,54,54,50,53,44,52,54,46,54,51,48,50,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,117,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,50,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,51,50,48,54,48,57,44,52,52,46,50,51,51,49,54,52,93,44,91,45,49,49,51,46,52,49,54,53,50,53,44,52,52,46,50,51,51,51,54,52,93,44,91,45,49,49,51,46,52,52,52,56,57,49,44,52,51,46,57,49,56,53,52,50,93,44,91,45,49,49,51,46,51,55,55,56,55,55,44,52,51,46,56,48,57,55,93,44,91,45,49,49,51,46,53,50,55,56,48,52,44,52,51,46,55,49,57,49,51,53,93,44,91,45,49,49,51,46,55,54,49,49,55,44,52,51,46,54,50,49,49,57,52,93,44,91,45,49,49,51,46,55,57,56,52,52,49,44,52,51,46,53,54,57,50,49,55,93,44,91,45,49,49,51,46,55,48,49,49,53,51,44,52,51,46,53,56,52,53,53,51,93,44,91,45,49,49,51,46,54,51,52,51,51,53,44,52,51,46,52,57,55,51,48,56,93,44,91,45,49,49,51,46,54,51,53,50,51,44,52,51,46,51,54,55,53,52,54,93,44,91,45,49,49,51,46,51,54,49,57,49,44,52,51,46,51,54,55,49,54,93,44,91,45,49,49,51,46,51,54,49,57,53,56,44,52,51,46,50,56,52,54,55,56,93,44,91,45,49,49,51,46,48,48,55,51,49,56,44,52,51,46,50,56,52,55,55,56,93,44,91,45,49,49,50,46,57,51,54,56,51,53,44,52,51,46,52,52,57,51,56,54,93,44,91,45,49,49,50,46,54,57,55,49,50,50,44,52,51,46,54,50,51,49,52,93,44,91,45,49,49,50,46,54,57,53,50,52,50,44,52,51,46,57,55,49,57,52,49,93,44,91,45,49,49,50,46,57,57,52,51,50,51,44,52,51,46,57,55,50,51,54,50,93,44,91,45,49,49,50,46,57,57,53,48,57,49,44,52,52,46,50,51,52,49,50,54,93,44,91,45,49,49,51,46,51,50,48,54,48,57,44,52,52,46,50,51,51,49,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,111,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,48,51,56,44,34,98,101,100,115,34,58,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,53,48,49,48,56,50,44,52,53,46,48,49,51,51,53,53,93,44,91,45,55,49,46,52,57,54,48,57,51,44,52,52,46,57,48,55,56,52,57,93,44,91,45,55,49,46,54,50,57,57,49,57,44,52,52,46,55,53,51,53,55,56,93,44,91,45,55,49,46,53,53,51,55,53,54,44,52,52,46,54,51,48,52,50,54,93,44,91,45,55,49,46,54,48,48,49,53,55,44,52,52,46,52,56,53,56,51,51,93,44,91,45,55,49,46,55,54,53,54,56,52,44,52,52,46,52,48,54,50,57,53,93,44,91,45,55,49,46,53,55,53,56,49,57,44,52,52,46,50,53,52,53,57,54,93,44,91,45,55,49,46,52,49,53,56,57,56,44,52,52,46,50,49,50,49,54,57,93,44,91,45,55,49,46,51,48,54,48,51,54,44,52,52,46,49,51,55,50,55,50,93,44,91,45,55,49,46,50,53,49,57,53,55,44,52,52,46,50,52,52,50,54,54,93,44,91,45,55,49,46,48,52,50,50,56,44,52,52,46,50,51,55,53,49,52,93,44,91,45,55,49,46,48,48,57,57,55,54,44,52,52,46,50,56,52,56,57,57,93,44,91,45,55,49,46,48,51,51,53,50,52,44,52,52,46,54,57,55,54,51,55,93,44,91,45,55,49,46,48,56,51,57,50,56,44,52,53,46,51,48,53,52,56,52,93,44,91,45,55,49,46,49,51,50,57,49,44,52,53,46,50,52,52,53,49,50,93,44,91,45,55,49,46,50,56,55,57,49,51,44,52,53,46,51,48,48,57,48,56,93,44,91,45,55,49,46,51,57,55,54,54,44,52,53,46,50,48,53,51,50,55,93,44,91,45,55,49,46,53,48,49,48,56,50,44,52,53,46,48,49,51,51,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,75,105,100,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,51,50,54,49,44,52,55,46,51,50,55,50,54,50,93,44,91,45,49,48,48,46,49,49,52,54,51,55,44,52,54,46,57,56,49,54,54,54,93,44,91,45,49,48,48,46,48,55,53,50,50,57,44,52,54,46,57,56,49,50,56,50,93,44,91,45,49,48,48,46,48,56,49,49,57,56,44,52,54,46,54,51,51,51,57,54,93,44,91,45,57,57,46,57,49,53,53,56,54,44,52,54,46,54,51,50,57,50,54,93,44,91,45,57,57,46,52,52,57,55,50,44,52,54,46,54,51,49,54,51,93,44,91,45,57,57,46,52,52,53,56,57,49,44,52,54,46,57,56,48,49,56,57,93,44,91,45,57,57,46,52,56,49,48,50,44,52,54,46,57,56,48,51,54,57,93,44,91,45,57,57,46,52,56,49,48,57,53,44,52,55,46,51,50,55,48,50,55,93,44,91,45,49,48,48,46,48,51,51,50,57,50,44,52,55,46,51,50,55,49,54,53,93,44,91,45,49,48,48,46,49,49,51,50,54,49,44,52,55,46,51,50,55,50,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,51,34,44,34,78,65,77,69,34,58,34,75,108,101,98,101,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,52,50,53,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,52,50,49,52,54,44,50,55,46,54,51,53,57,51,50,93,44,91,45,57,56,46,48,53,57,56,44,50,55,46,54,51,53,56,54,57,93,44,91,45,57,56,46,48,53,56,48,55,56,44,50,55,46,50,54,48,57,56,49,93,44,91,45,57,55,46,57,56,53,56,56,55,44,50,55,46,50,48,57,51,48,56,93,44,91,45,57,55,46,56,49,52,57,51,52,44,50,55,46,50,55,49,56,57,51,93,44,91,45,57,55,46,50,56,56,51,51,55,44,50,55,46,50,55,55,53,56,52,93,44,91,45,57,55,46,49,54,53,48,57,55,44,50,55,46,53,54,56,51,93,44,91,45,57,55,46,56,52,48,54,55,56,44,50,55,46,53,53,56,51,53,56,93,44,91,45,57,55,46,57,52,50,49,52,54,44,50,55,46,54,51,53,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,80,111,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,48,52,49,44,34,98,101,100,115,34,58,50,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,50,49,44,52,49,46,55,54,48,56,56,57,93,44,91,45,56,55,46,50,49,56,56,54,50,44,52,49,46,50,52,50,48,50,55,93,44,91,45,56,55,46,49,51,49,54,53,51,44,52,49,46,50,56,54,49,53,53,93,44,91,45,56,54,46,57,51,48,48,55,57,44,52,49,46,50,51,54,55,57,56,93,44,91,45,56,54,46,57,51,51,51,51,52,44,52,49,46,55,54,49,48,51,53,93,44,91,45,56,55,46,50,48,55,55,55,52,44,52,49,46,55,54,48,57,53,54,93,44,91,45,56,55,46,50,50,49,44,52,49,46,55,54,48,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,50,50,53,57,56,44,51,50,46,53,55,54,52,51,51,93,44,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,44,91,45,56,56,46,57,49,51,56,52,55,44,51,50,46,50,50,52,49,56,54,93,44,91,45,56,56,46,57,49,52,53,49,54,44,51,50,46,53,55,54,57,53,53,93,44,91,45,56,57,46,51,49,55,53,56,56,44,51,50,46,53,55,54,52,53,56,93,44,91,45,56,57,46,51,50,50,53,57,56,44,51,50,46,53,55,54,52,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,83,97,109,112,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,53,54,49,44,34,98,101,100,115,34,58,49,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,49,55,49,50,55,44,51,53,46,50,52,53,53,55,56,93,44,91,45,55,56,46,54,55,48,54,53,44,51,53,46,48,57,50,53,57,50,93,44,91,45,55,56,46,54,52,55,55,51,52,44,51,52,46,57,57,52,55,52,93,44,91,45,55,56,46,52,57,52,55,48,53,44,51,52,46,56,53,54,49,56,50,93,44,91,45,55,56,46,51,50,52,53,50,44,51,52,46,54,54,54,48,57,53,93,44,91,45,55,56,46,50,53,52,52,52,49,44,51,52,46,53,53,51,53,57,53,93,44,91,45,55,56,46,49,49,52,48,48,55,44,51,52,46,55,50,49,55,57,53,93,44,91,45,55,56,46,49,57,56,54,52,50,44,51,52,46,55,52,49,54,51,55,93,44,91,45,55,56,46,49,52,55,49,50,57,44,51,52,46,57,48,50,53,48,54,93,44,91,45,55,56,46,49,54,51,52,50,44,51,53,46,49,56,57,55,49,54,93,44,91,45,55,56,46,51,48,54,53,56,44,51,53,46,50,56,55,54,48,52,93,44,91,45,55,56,46,52,49,49,55,51,52,44,51,53,46,50,53,52,54,54,51,93,44,91,45,55,56,46,53,51,56,51,52,57,44,51,53,46,51,49,54,52,49,93,44,91,45,55,56,46,54,49,55,49,50,55,44,51,53,46,50,52,53,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,77,111,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,53,55,53,57,44,51,53,46,52,49,50,52,55,54,93,44,91,45,56,54,46,52,50,49,54,55,50,44,51,53,46,51,49,57,50,54,55,93,44,91,45,56,54,46,53,50,53,51,48,54,44,51,53,46,51,53,52,55,49,56,93,44,91,45,56,54,46,51,49,56,49,54,56,44,51,53,46,49,50,54,57,56,54,93,44,91,45,56,54,46,50,54,49,52,56,57,44,51,53,46,51,51,51,53,55,57,93,44,91,45,56,54,46,50,53,55,53,57,44,51,53,46,52,49,50,52,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,80,105,110,101,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,55,56,55,53,44,34,98,101,100,115,34,58,51,56,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,48,52,54,49,53,44,50,56,46,49,55,49,56,55,50,93,44,91,45,56,50,46,56,55,56,49,48,53,44,50,56,46,48,52,50,56,50,93,44,91,45,56,50,46,57,48,49,51,51,55,44,50,55,46,56,51,57,49,48,55,93,44,91,45,56,50,46,56,48,53,55,44,50,55,46,55,48,57,51,56,52,93,44,91,45,56,50,46,56,49,51,51,54,50,44,50,55,46,54,52,53,55,52,56,93,44,91,45,56,50,46,54,48,54,49,51,57,44,50,55,46,54,52,51,54,51,56,93,44,91,45,56,50,46,53,52,49,53,49,56,44,50,55,46,55,56,50,50,48,52,93,44,91,45,56,50,46,53,57,55,50,49,57,44,50,55,46,57,51,53,49,57,57,93,44,91,45,56,50,46,54,52,56,51,50,44,50,55,46,57,52,55,51,57,56,93,44,91,45,56,50,46,54,53,49,49,54,53,44,50,56,46,49,55,51,50,54,54,93,44,91,45,56,50,46,57,48,52,54,49,53,44,50,56,46,49,55,49,56,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,97,114,114,97,110,113,117,105,116,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,55,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,53,48,55,57,51,44,49,56,46,50,52,49,50,51,53,93,44,91,45,54,54,46,51,55,51,55,54,56,44,49,56,46,49,55,51,54,57,52,93,44,91,45,54,54,46,51,49,52,56,52,56,44,49,56,46,49,53,50,48,56,56,93,44,91,45,54,54,46,50,52,50,55,51,53,44,49,56,46,49,56,48,50,52,56,93,44,91,45,54,54,46,50,52,48,52,54,44,49,56,46,49,56,52,55,57,52,93,44,91,45,54,54,46,50,54,54,52,54,54,44,49,56,46,50,52,53,50,55,93,44,91,45,54,54,46,51,49,51,50,57,57,44,49,56,46,50,52,57,51,50,52,93,44,91,45,54,54,46,51,53,48,55,57,51,44,49,56,46,50,52,49,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,50,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,48,52,54,48,54,44,51,56,46,49,50,53,49,57,53,93,44,91,45,56,56,46,55,48,54,54,50,50,44,51,55,46,57,48,54,55,57,55,93,44,91,45,56,56,46,51,55,52,53,51,44,51,55,46,57,48,55,54,55,56,93,44,91,45,56,56,46,51,55,52,53,50,49,44,51,55,46,57,48,56,51,57,49,93,44,91,45,56,56,46,51,55,48,51,55,53,44,51,56,46,50,53,53,51,49,57,93,44,91,45,56,56,46,55,48,50,51,57,49,44,51,56,46,50,53,54,54,54,49,93,44,91,45,56,56,46,55,48,52,54,48,54,44,51,56,46,49,50,53,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,52,54,56,53,44,51,53,46,49,49,51,50,55,55,93,44,91,45,57,50,46,55,49,54,51,51,49,44,51,53,46,48,55,49,55,52,50,93,44,91,45,57,51,46,48,52,48,53,50,53,44,51,53,46,48,55,54,57,50,51,93,44,91,45,57,51,46,50,56,56,50,56,52,44,51,52,46,56,54,48,57,57,50,93,44,91,45,57,51,46,50,56,55,55,56,53,44,51,52,46,55,55,51,49,57,51,93,44,91,45,57,51,46,48,55,53,49,55,56,44,51,52,46,55,55,49,56,57,50,93,44,91,45,57,51,46,48,55,51,56,55,55,44,51,52,46,56,53,56,48,57,49,93,44,91,45,57,50,46,55,51,57,55,55,57,44,51,52,46,56,53,51,52,53,57,93,44,91,45,57,50,46,55,53,51,54,50,54,44,51,52,46,57,49,49,50,52,56,93,44,91,45,57,50,46,53,52,52,51,52,49,44,51,52,46,57,53,51,51,49,57,93,44,91,45,57,50,46,53,57,51,53,56,53,44,51,53,46,48,49,49,55,54,49,93,44,91,45,57,50,46,53,53,52,54,56,53,44,51,53,46,49,49,51,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,101,121,101,110,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,55,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,53,49,55,52,52,44,52,48,46,48,48,51,48,55,56,93,44,91,45,49,48,50,46,48,52,57,56,48,54,44,51,57,46,53,55,52,48,53,56,93,44,91,45,49,48,50,46,48,52,57,55,54,52,44,51,57,46,53,54,56,49,56,93,44,91,45,49,48,49,46,52,49,51,57,49,51,44,51,57,46,53,54,56,51,54,49,93,44,91,45,49,48,49,46,52,49,49,48,50,57,44,52,48,46,48,48,50,53,50,50,93,44,91,45,49,48,50,46,48,53,49,55,52,52,44,52,48,46,48,48,51,48,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,68,101,108,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,51,52,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,53,48,48,54,48,54,44,51,57,46,50,49,55,57,49,54,93,44,91,45,49,48,55,46,55,54,53,48,53,57,44,51,57,46,48,52,52,54,56,51,93,44,91,45,49,48,55,46,57,56,50,49,55,51,44,51,57,46,48,53,57,56,55,56,93,44,91,45,49,48,56,46,49,53,50,52,55,56,44,51,56,46,57,48,49,50,54,56,93,44,91,45,49,48,56,46,51,55,56,57,53,51,44,51,56,46,56,50,57,49,48,56,93,44,91,45,49,48,56,46,51,55,56,54,57,56,44,51,56,46,54,54,56,48,57,55,93,44,91,45,49,48,55,46,53,48,48,54,53,53,44,51,56,46,54,54,56,53,53,51,93,44,91,45,49,48,55,46,53,48,48,54,48,54,44,51,57,46,50,49,55,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,44,91,45,57,51,46,53,53,54,56,57,57,44,52,48,46,53,56,48,50,51,53,93,44,91,45,57,51,46,51,55,52,51,56,54,44,52,48,46,53,56,48,51,51,51,93,44,91,45,57,51,46,48,57,55,50,57,54,44,52,48,46,53,56,52,48,49,52,93,44,91,45,57,51,46,48,57,55,53,57,53,44,52,48,46,56,57,56,52,53,49,93,44,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,71,97,105,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,50,49,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,53,57,53,48,50,51,44,51,50,46,57,53,56,56,51,49,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,57,53,57,48,57,57,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,53,50,50,49,57,51,93,44,91,45,49,48,50,46,50,49,49,48,51,55,44,51,50,46,53,50,51,50,52,52,93,44,91,45,49,48,50,46,50,48,50,55,48,51,44,51,50,46,53,50,51,50,55,49,93,44,91,45,49,48,50,46,50,48,56,53,50,44,51,50,46,57,53,56,57,53,54,93,44,91,45,49,48,50,46,53,57,53,48,50,51,44,51,50,46,57,53,56,56,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,57,54,53,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,48,51,56,54,52,44,51,52,46,48,56,54,53,54,52,93,44,91,45,56,56,46,50,48,55,50,50,57,44,51,52,46,48,53,56,51,51,51,93,44,91,45,56,55,46,57,56,54,57,51,44,51,52,46,48,53,50,49,48,50,93,44,91,45,56,55,46,57,53,49,55,56,53,44,51,51,46,57,49,57,57,51,93,44,91,45,56,55,46,54,51,53,57,51,50,44,51,51,46,57,49,53,50,53,49,93,44,91,45,56,55,46,54,51,54,49,49,56,44,51,52,46,48,48,50,50,48,51,93,44,91,45,56,55,46,54,51,52,55,50,53,44,51,52,46,51,48,54,57,57,55,93,44,91,45,56,56,46,49,55,51,54,51,50,44,51,52,46,51,50,49,48,53,52,93,44,91,45,56,56,46,50,48,51,56,54,52,44,51,52,46,48,56,54,53,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,87,97,116,97,117,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,49,55,44,34,98,101,100,115,34,58,49,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,49,56,49,49,57,44,51,54,46,50,56,55,49,50,57,93,44,91,45,56,49,46,56,49,48,53,49,54,44,51,54,46,49,49,49,53,49,49,93,44,91,45,56,49,46,53,52,53,52,56,56,44,51,54,46,49,49,55,52,55,53,93,44,91,45,56,49,46,52,55,55,53,49,54,44,51,54,46,50,52,48,50,53,93,44,91,45,56,49,46,55,50,56,55,56,49,44,51,54,46,51,57,49,51,48,57,93,44,91,45,56,49,46,57,49,56,49,49,57,44,51,54,46,50,56,55,49,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,55,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,55,48,34,44,34,78,65,77,69,34,58,34,82,111,97,110,111,107,101,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,54,50,49,44,34,98,101,100,115,34,58,54,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,51,51,52,54,52,44,51,55,46,50,54,50,56,57,93,44,91,45,55,57,46,57,52,54,56,49,55,44,51,55,46,50,49,51,48,51,55,93,44,91,45,55,57,46,57,48,53,52,54,44,51,55,46,51,50,49,56,51,53,93,44,91,45,56,48,46,48,50,50,50,50,54,44,51,55,46,51,48,56,51,51,56,93,44,91,45,56,48,46,48,51,51,52,54,52,44,51,55,46,50,54,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,55,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,49,52,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,57,53,48,49,49,44,51,50,46,48,56,55,53,51,50,93,44,91,45,49,48,49,46,54,56,56,55,52,44,51,50,46,53,50,53,50,50,50,93,44,91,45,49,48,50,46,50,48,50,55,48,51,44,51,50,46,53,50,51,50,55,49,93,44,91,45,49,48,50,46,50,49,49,48,51,55,44,51,50,46,53,50,51,50,52,52,93,44,91,45,49,48,50,46,50,49,49,50,52,57,44,51,50,46,48,56,54,56,93,44,91,45,49,48,49,46,55,55,54,48,56,53,44,51,50,46,48,56,54,57,50,53,93,44,91,45,49,48,49,46,54,57,53,48,49,49,44,51,50,46,48,56,55,53,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,66,111,119,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,56,53,56,44,34,98,101,100,115,34,58,56,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,52,54,48,57,54,44,51,51,46,55,48,51,48,49,54,93,44,91,45,57,52,46,55,52,54,57,50,53,44,51,51,46,51,50,56,57,51,56,93,44,91,45,57,52,46,54,53,50,50,54,44,51,51,46,50,54,56,56,54,49,93,44,91,45,57,52,46,52,54,56,52,52,50,44,51,51,46,50,57,52,51,49,51,93,44,91,45,57,52,46,50,51,49,51,51,51,44,51,51,46,50,52,49,48,55,51,93,44,91,45,57,52,46,50,49,56,55,55,55,44,51,51,46,50,57,54,52,48,50,93,44,91,45,57,52,46,48,52,50,57,56,55,44,51,51,46,50,55,49,50,52,50,93,44,91,45,57,52,46,48,52,51,52,53,44,51,51,46,53,53,50,50,53,51,93,44,91,45,57,52,46,50,57,49,50,49,50,44,51,51,46,53,56,49,52,55,56,93,44,91,45,57,52,46,51,56,57,53,51,44,51,51,46,53,52,54,55,51,57,93,44,91,45,57,52,46,52,56,53,56,55,56,44,51,51,46,54,51,55,56,54,53,93,44,91,45,57,52,46,53,54,52,48,55,54,44,51,51,46,54,50,54,50,54,53,93,44,91,45,57,52,46,55,52,54,48,57,54,44,51,51,46,55,48,51,48,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,87,101,98,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,55,55,51,49,44,34,98,101,100,115,34,58,53,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,56,53,52,52,51,44,52,49,46,52,50,54,51,55,52,93,44,91,45,49,49,50,46,48,50,56,54,55,50,44,52,49,46,51,51,54,53,49,50,93,44,91,45,49,49,50,46,50,51,56,48,54,53,44,52,49,46,51,51,54,53,53,50,93,44,91,45,49,49,50,46,52,57,51,53,49,53,44,52,49,46,48,55,54,56,56,56,93,44,91,45,49,49,50,46,49,56,54,54,57,51,44,52,49,46,49,53,51,48,50,56,93,44,91,45,49,49,49,46,56,53,54,50,52,55,44,52,49,46,49,51,57,48,56,51,93,44,91,45,49,49,49,46,56,53,55,55,57,57,44,52,49,46,49,57,55,55,53,51,93,44,91,45,49,49,49,46,54,53,56,54,51,54,44,52,49,46,49,56,53,55,49,56,93,44,91,45,49,49,49,46,52,57,54,56,49,53,44,52,49,46,50,51,48,54,49,93,44,91,45,49,49,49,46,52,50,48,55,50,56,44,52,49,46,51,54,49,51,48,56,93,44,91,45,49,49,49,46,53,49,48,56,51,57,44,52,49,46,52,50,51,49,93,44,91,45,49,49,49,46,54,54,54,53,55,54,44,52,49,46,52,50,56,56,51,93,44,91,45,49,49,49,46,55,50,54,49,56,49,44,52,49,46,51,55,53,57,56,54,93,44,91,45,49,49,49,46,56,56,53,52,52,51,44,52,49,46,52,50,54,51,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,55,50,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,52,48,51,53,51,44,51,57,46,57,52,56,50,51,53,93,44,91,45,57,49,46,56,52,54,55,52,51,44,51,57,46,54,53,56,53,49,51,93,44,91,45,57,49,46,55,49,53,50,52,55,44,51,57,46,54,53,55,54,52,52,93,44,91,45,57,49,46,55,49,53,52,57,55,44,51,57,46,54,56,54,52,57,50,93,44,91,45,57,49,46,51,48,54,54,57,51,44,51,57,46,54,56,52,56,54,53,93,44,91,45,57,49,46,51,54,53,49,50,53,44,51,57,46,55,53,56,55,50,51,93,44,91,45,57,49,46,52,51,51,55,57,56,44,51,57,46,56,52,49,56,54,53,93,44,91,45,57,49,46,52,51,53,53,49,55,44,51,57,46,57,52,53,50,50,50,93,44,91,45,57,49,46,56,52,48,51,53,51,44,51,57,46,57,52,56,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,52,52,56,44,34,98,101,100,115,34,58,51,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,54,48,48,52,54,44,52,52,46,52,48,51,50,54,51,93,44,91,45,55,54,46,49,54,49,56,50,53,44,52,52,46,50,56,48,55,55,54,93,44,91,45,55,54,46,52,51,56,50,56,55,44,52,52,46,48,57,52,49,55,50,93,44,91,45,55,54,46,55,51,52,55,50,53,44,52,51,46,55,48,56,49,50,49,93,44,91,45,55,54,46,54,52,52,55,49,50,44,52,51,46,55,48,51,52,54,54,93,44,91,45,55,54,46,48,50,50,48,48,51,44,52,51,46,54,54,56,49,52,51,93,44,91,45,55,53,46,55,55,52,53,53,51,44,52,51,46,54,56,56,56,56,52,93,44,91,45,55,53,46,55,53,56,49,53,55,44,52,51,46,56,55,56,55,56,53,93,44,91,45,55,53,46,52,56,52,53,50,56,44,52,52,46,48,55,52,49,55,50,93,44,91,45,55,53,46,52,52,54,49,50,52,44,52,52,46,50,49,55,54,53,53,93,44,91,45,55,53,46,56,54,48,48,52,54,44,52,52,46,52,48,51,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,51,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,55,51,55,57,56,44,52,50,46,51,56,49,52,53,56,93,44,91,45,57,48,46,54,54,53,48,50,57,44,52,50,46,51,56,50,49,53,53,93,44,91,45,57,48,46,54,54,53,53,53,49,44,52,50,46,50,57,52,54,57,57,93,44,91,45,57,48,46,56,57,56,48,50,44,52,50,46,50,57,53,50,51,54,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,50,46,48,51,51,53,52,56,93,44,91,45,57,48,46,49,53,52,50,50,49,44,52,50,46,48,51,51,48,55,51,93,44,91,45,57,48,46,49,54,50,56,57,53,44,52,50,46,49,49,54,55,49,56,93,44,91,45,57,48,46,51,49,55,51,57,53,44,52,50,46,49,57,51,54,52,53,93,44,91,45,57,48,46,51,57,49,49,48,56,44,52,50,46,50,50,53,52,55,51,93,44,91,45,57,48,46,52,55,51,55,57,56,44,52,50,46,51,56,49,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,78,101,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,50,48,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,57,50,49,56,52,44,52,56,46,49,57,53,49,55,55,93,44,91,45,57,56,46,52,50,50,48,53,55,44,52,56,46,49,57,52,55,56,50,93,44,91,45,57,56,46,52,50,50,52,55,52,44,52,56,46,48,50,49,48,56,93,44,91,45,57,56,46,53,50,53,53,53,53,44,52,55,46,57,49,53,48,53,54,93,44,91,45,57,56,46,53,50,53,53,49,54,44,52,55,46,56,52,54,50,55,54,93,44,91,45,57,56,46,53,48,48,49,56,49,44,52,55,46,54,55,50,52,49,51,93,44,91,45,57,55,46,57,56,52,50,52,56,44,52,55,46,54,55,50,51,48,51,93,44,91,45,57,55,46,56,56,50,50,55,49,44,52,55,46,54,55,50,49,55,57,93,44,91,45,57,55,46,56,56,50,48,54,53,44,52,56,46,48,50,48,56,52,52,93,44,91,45,57,55,46,57,48,51,51,49,51,44,52,56,46,49,57,52,56,52,53,93,44,91,45,57,56,46,50,57,50,49,56,52,44,52,56,46,49,57,53,49,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,55,57,52,44,34,98,101,100,115,34,58,51,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,48,50,55,51,56,57,44,52,52,46,57,57,53,54,56,53,93,44,91,45,55,51,46,57,56,54,51,56,50,44,52,52,46,55,48,55,55,55,51,93,44,91,45,55,51,46,57,48,57,54,56,55,44,52,52,46,52,50,57,54,57,57,93,44,91,45,55,51,46,52,57,55,53,54,55,44,52,52,46,52,56,54,50,51,93,44,91,45,55,51,46,51,51,56,54,51,54,44,52,52,46,53,52,54,56,52,52,93,44,91,45,55,51,46,51,54,49,52,53,53,44,52,52,46,53,54,51,53,54,51,93,44,91,45,55,51,46,51,56,57,56,50,44,52,52,46,54,49,55,50,49,49,93,44,91,45,55,51,46,51,51,53,48,52,52,44,52,52,46,56,48,52,49,48,57,93,44,91,45,55,51,46,51,52,51,49,50,52,44,52,53,46,48,49,48,56,52,93,44,91,45,55,52,46,48,50,55,51,56,57,44,52,52,46,57,57,53,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,53,51,56,44,34,98,101,100,115,34,58,49,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,48,51,55,51,54,51,44,52,48,46,48,57,49,53,51,56,93,44,91,45,49,48,55,46,51,49,54,57,57,51,44,52,48,46,48,57,48,55,54,53,93,44,91,45,49,48,55,46,51,49,56,55,53,49,44,51,57,46,57,49,52,57,54,56,93,44,91,45,49,48,55,46,52,51,49,55,55,44,51,57,46,56,50,56,51,55,55,93,44,91,45,49,48,55,46,57,51,56,53,48,50,44,51,57,46,56,50,52,57,57,54,93,44,91,45,49,48,55,46,57,51,56,53,52,54,44,51,57,46,54,57,52,52,54,52,93,44,91,45,49,48,56,46,53,53,52,55,50,50,44,51,57,46,54,57,51,54,52,93,44,91,45,49,48,56,46,53,53,52,54,50,55,44,51,57,46,54,53,48,49,54,52,93,44,91,45,49,48,57,46,48,53,49,50,50,55,44,51,57,46,54,54,48,52,54,54,93,44,91,45,49,48,57,46,48,53,49,50,50,54,44,51,57,46,52,57,55,55,51,57,93,44,91,45,49,48,57,46,48,53,48,55,54,53,44,51,57,46,51,54,54,54,55,55,93,44,91,45,49,48,56,46,52,48,57,54,48,55,44,51,57,46,51,54,53,57,56,51,93,44,91,45,49,48,55,46,52,51,48,57,52,57,44,51,57,46,51,54,54,49,55,56,93,44,91,45,49,48,55,46,49,49,51,52,52,54,44,51,57,46,51,54,54,48,54,54,93,44,91,45,49,48,55,46,49,49,51,54,55,50,44,51,57,46,57,49,57,49,49,50,93,44,91,45,49,48,55,46,48,51,51,57,54,56,44,51,57,46,57,49,56,57,49,51,93,44,91,45,49,48,55,46,48,51,55,51,54,51,44,52,48,46,48,57,49,53,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,82,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,50,53,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,49,48,54,52,50,44,51,57,46,52,53,52,54,56,50,93,44,91,45,57,52,46,50,49,50,53,49,53,44,51,57,46,50,48,55,48,56,54,93,44,91,45,57,52,46,49,48,52,56,50,51,44,51,57,46,49,52,51,53,48,55,93,44,91,45,57,52,46,48,50,56,56,50,50,44,51,57,46,49,57,49,53,57,53,93,44,91,45,57,51,46,55,53,56,52,54,51,44,51,57,46,50,48,55,48,50,49,93,44,91,45,57,51,46,55,53,57,49,56,51,44,51,57,46,53,50,52,53,53,56,93,44,91,45,57,52,46,50,48,56,52,50,51,44,51,57,46,53,50,55,50,93,44,91,45,57,52,46,50,49,48,54,52,50,44,51,57,46,52,53,52,54,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,72,111,99,107,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,55,52,53,51,49,44,51,57,46,54,53,52,57,53,57,93,44,91,45,56,50,46,52,57,54,49,50,51,44,51,57,46,54,48,50,56,52,57,93,44,91,45,56,50,46,55,51,49,53,49,56,44,51,57,46,53,53,52,52,52,53,93,44,91,45,56,50,46,55,52,48,55,50,57,44,51,57,46,52,54,56,51,53,93,44,91,45,56,50,46,55,52,56,53,57,49,44,51,57,46,51,54,56,49,54,53,93,44,91,45,56,50,46,50,56,57,54,54,51,44,51,57,46,51,56,52,49,57,53,93,44,91,45,56,50,46,50,56,48,52,49,44,51,57,46,52,55,50,57,48,54,93,44,91,45,56,50,46,49,54,55,51,55,57,44,51,57,46,52,54,54,51,48,55,93,44,91,45,56,50,46,49,53,57,49,54,49,44,51,57,46,53,53,54,53,55,52,93,44,91,45,56,50,46,51,55,57,56,57,44,51,57,46,53,57,54,55,51,56,93,44,91,45,56,50,46,51,55,52,53,51,49,44,51,57,46,54,53,52,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,111,119,110,100,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,57,54,55,55,52,44,51,50,46,51,52,52,52,51,55,93,44,91,45,56,54,46,54,53,51,52,49,57,44,51,50,46,51,57,55,50,52,55,93,44,91,45,56,54,46,56,49,52,57,49,50,44,51,50,46,51,52,48,56,48,51,93,44,91,45,56,54,46,57,48,56,51,48,50,44,51,50,46,50,50,53,48,50,56,93,44,91,45,56,54,46,57,48,54,57,53,54,44,51,50,46,48,52,55,57,55,93,44,91,45,56,54,46,56,53,55,53,56,51,44,51,49,46,57,54,50,49,54,55,93,44,91,45,56,54,46,52,52,56,49,57,56,44,51,49,46,57,54,52,54,50,57,93,44,91,45,56,54,46,52,48,54,50,55,54,44,51,50,46,48,53,48,55,51,49,93,44,91,45,56,54,46,52,48,56,55,55,49,44,51,50,46,50,52,52,51,48,57,93,44,91,45,56,54,46,52,57,54,55,55,52,44,51,50,46,51,52,52,52,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,97,110,100,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,51,48,50,51,51,44,51,50,46,53,51,56,55,55,93,44,91,45,56,50,46,49,52,56,51,51,56,44,51,50,46,53,50,48,52,50,57,93,44,91,45,56,50,46,50,53,50,55,53,55,44,51,50,46,51,53,51,51,49,93,44,91,45,56,50,46,50,51,50,55,56,56,44,51,50,46,51,49,56,56,51,56,93,44,91,45,56,50,46,48,50,53,51,51,57,44,51,50,46,50,55,56,56,56,51,93,44,91,45,56,49,46,57,54,57,48,54,57,44,51,50,46,50,54,56,55,56,51,93,44,91,45,56,49,46,57,49,56,54,53,50,44,51,50,46,52,49,53,48,55,51,93,44,91,45,56,50,46,48,51,48,50,51,51,44,51,50,46,53,51,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,76,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,50,49,50,49,44,34,98,101,100,115,34,58,57,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,51,49,48,56,57,44,52,50,46,50,57,57,48,54,51,93,44,91,45,57,49,46,56,51,49,51,55,57,44,52,49,46,56,54,49,56,53,49,93,44,91,45,57,49,46,51,54,54,50,50,49,44,52,49,46,56,54,48,48,54,57,93,44,91,45,57,49,46,51,54,53,56,55,55,44,52,49,46,57,52,55,52,49,93,44,91,45,57,49,46,51,54,51,50,54,51,44,52,50,46,50,57,54,52,52,53,93,44,91,45,57,49,46,53,57,54,57,56,49,44,52,50,46,50,57,54,52,48,56,93,44,91,45,57,49,46,56,51,49,48,56,57,44,52,50,46,50,57,57,48,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,84,114,105,110,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,54,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,52,48,56,50,57,49,44,52,49,46,49,55,57,57,52,52,93,44,91,45,49,50,51,46,52,52,55,57,53,54,44,52,48,46,57,52,51,55,53,56,93,44,91,45,49,50,51,46,54,49,53,56,50,55,44,52,48,46,57,49,52,48,54,56,93,44,91,45,49,50,51,46,53,52,51,55,52,57,44,52,48,46,55,51,57,48,49,53,93,44,91,45,49,50,51,46,53,52,52,52,53,56,44,52,48,46,48,48,49,57,50,51,93,44,91,45,49,50,51,46,53,52,52,53,54,51,44,51,57,46,57,55,55,48,49,53,93,44,91,45,49,50,50,46,57,51,52,48,49,51,44,51,57,46,57,55,56,49,51,49,93,44,91,45,49,50,50,46,57,56,57,48,49,53,44,52,48,46,50,53,48,49,52,53,93,44,91,45,49,50,51,46,48,54,53,52,50,54,44,52,48,46,50,56,54,57,55,49,93,44,91,45,49,50,50,46,57,51,49,50,54,55,44,52,48,46,52,52,53,53,53,55,93,44,91,45,49,50,50,46,54,57,51,48,57,57,44,52,48,46,53,56,48,55,52,55,93,44,91,45,49,50,50,46,55,53,50,48,50,51,44,52,48,46,54,56,57,56,56,50,93,44,91,45,49,50,50,46,54,54,57,56,51,57,44,52,48,46,55,55,51,53,54,55,93,44,91,45,49,50,50,46,53,57,56,53,50,56,44,52,48,46,57,55,53,56,52,55,93,44,91,45,49,50,50,46,53,50,55,55,53,51,44,52,49,46,48,49,52,51,57,53,93,44,91,45,49,50,50,46,52,57,56,51,55,54,44,52,49,46,49,56,50,54,55,53,93,44,91,45,49,50,50,46,53,48,52,50,53,52,44,52,49,46,51,51,52,55,49,93,44,91,45,49,50,50,46,53,57,48,56,48,56,44,52,49,46,51,50,53,57,49,93,44,91,45,49,50,50,46,56,49,49,51,52,50,44,52,49,46,50,48,50,52,53,49,93,44,91,45,49,50,50,46,56,57,55,48,54,54,44,52,49,46,50,48,49,48,48,54,93,44,91,45,49,50,51,46,48,51,54,56,48,56,44,52,49,46,48,48,52,48,53,56,93,44,91,45,49,50,51,46,49,48,57,48,55,55,44,52,49,46,48,55,53,52,50,57,93,44,91,45,49,50,51,46,50,52,53,50,50,50,44,52,49,46,48,55,55,57,56,55,93,44,91,45,49,50,51,46,52,48,56,50,57,49,44,52,49,46,49,55,57,57,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,53,34,44,34,78,65,77,69,34,58,34,77,117,115,99,111,103,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,54,54,55,48,44,34,98,101,100,115,34,58,49,49,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,56,48,55,56,52,44,51,50,46,54,48,56,48,55,50,93,44,91,45,56,53,46,48,48,49,48,50,44,51,50,46,53,49,48,49,53,55,93,44,91,45,56,52,46,57,55,49,57,54,50,44,51,50,46,51,55,55,54,57,56,93,44,91,45,56,52,46,55,57,50,57,53,49,44,51,50,46,52,49,51,56,52,93,44,91,45,56,52,46,54,57,52,53,49,44,51,50,46,53,49,56,55,51,50,93,44,91,45,56,52,46,54,57,52,54,48,51,44,51,50,46,53,56,51,57,52,53,93,44,91,45,56,53,46,48,56,48,55,56,52,44,51,50,46,54,48,56,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,84,97,108,108,97,104,97,116,99,104,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,54,49,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,51,53,52,53,54,44,51,52,46,49,54,48,48,55,52,93,44,91,45,57,48,46,49,51,53,54,57,53,44,51,52,46,48,55,50,57,93,44,91,45,57,48,46,52,53,48,57,56,49,44,51,52,46,48,55,50,57,51,50,93,44,91,45,57,48,46,52,53,49,48,49,50,44,51,51,46,57,56,53,54,56,57,93,44,91,45,57,48,46,52,53,49,54,52,51,44,51,51,46,56,49,49,51,57,93,44,91,45,57,48,46,49,56,50,53,56,52,44,51,51,46,56,48,57,51,50,50,93,44,91,45,57,48,46,49,51,54,55,56,55,44,51,51,46,55,50,49,54,52,56,93,44,91,45,57,48,46,49,51,54,52,57,49,44,51,51,46,56,48,57,51,49,57,93,44,91,45,56,57,46,57,50,54,50,57,52,44,51,51,46,56,50,51,56,53,52,93,44,91,45,56,57,46,57,50,54,48,57,57,44,51,51,46,56,57,55,57,53,55,93,44,91,45,56,57,46,57,51,49,52,56,53,44,51,52,46,49,54,52,51,48,51,93,44,91,45,57,48,46,49,51,53,52,53,54,44,51,52,46,49,54,48,48,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,116,99,104,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,54,52,49,50,54,44,51,57,46,54,53,50,56,55,50,93,44,91,45,57,53,46,53,55,48,51,53,49,44,51,57,46,52,49,57,48,53,93,44,91,45,57,53,46,49,56,48,56,57,49,44,51,57,46,52,49,57,50,49,56,93,44,91,45,57,52,46,57,54,56,57,55,51,44,51,57,46,52,49,56,56,55,57,93,44,91,45,57,53,46,49,48,50,56,56,56,44,51,57,46,53,51,51,51,52,55,93,44,91,45,57,53,46,48,53,51,53,56,54,44,51,57,46,54,49,53,50,54,57,93,44,91,45,57,53,46,49,49,53,49,56,57,44,51,57,46,54,53,50,53,52,57,93,44,91,45,57,53,46,51,51,57,55,52,44,51,57,46,54,53,50,57,56,93,44,91,45,57,53,46,53,54,52,49,50,54,44,51,57,46,54,53,50,56,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,97,114,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,56,57,51,51,51,57,44,49,56,46,51,54,55,48,56,57,93,44,91,45,54,54,46,57,48,55,50,51,54,44,49,56,46,50,53,51,48,57,93,44,91,45,54,54,46,56,57,55,57,54,52,44,49,56,46,49,56,55,55,52,52,93,44,91,45,54,54,46,56,51,54,55,54,44,49,56,46,49,55,48,53,53,51,93,44,91,45,54,54,46,56,50,55,51,50,55,44,49,56,46,49,55,49,50,52,50,93,44,91,45,54,54,46,56,49,55,50,55,49,44,49,56,46,50,51,48,51,51,54,93,44,91,45,54,54,46,56,50,54,49,50,56,44,49,56,46,51,50,51,51,56,50,93,44,91,45,54,54,46,56,50,52,50,50,51,44,49,56,46,51,52,50,57,57,56,93,44,91,45,54,54,46,56,57,51,51,51,57,44,49,56,46,51,54,55,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,100,114,101,119,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,49,56,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,54,52,53,49,54,44,51,50,46,48,56,55,48,53,49,93,44,91,45,49,48,50,46,55,57,57,48,56,54,44,51,50,46,48,56,53,55,57,53,93,44,91,45,49,48,50,46,50,56,55,48,52,56,44,51,50,46,48,56,54,57,57,49,93,44,91,45,49,48,50,46,50,49,49,50,52,57,44,51,50,46,48,56,54,56,93,44,91,45,49,48,50,46,50,49,49,48,51,55,44,51,50,46,53,50,51,50,52,52,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,53,50,50,49,57,51,93,44,91,45,49,48,51,46,48,54,52,53,49,54,44,51,50,46,48,56,55,48,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,77,105,97,109,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,56,48,48,44,34,98,101,100,115,34,58,49,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,51,50,53,55,53,44,52,48,46,49,57,55,48,51,55,93,44,91,45,56,52,46,52,50,53,57,48,50,44,51,57,46,57,49,57,54,50,50,93,44,91,45,56,52,46,49,53,55,54,55,49,44,51,57,46,57,50,50,57,55,93,44,91,45,56,52,46,48,53,49,48,49,50,44,51,57,46,56,55,57,56,49,93,44,91,45,56,52,46,48,51,54,48,54,57,44,52,48,46,48,52,48,49,56,50,93,44,91,45,56,52,46,48,50,50,57,49,57,44,52,48,46,49,56,51,57,52,53,93,44,91,45,56,52,46,52,51,50,53,55,53,44,52,48,46,49,57,55,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,55,53,34,44,34,78,65,77,69,34,58,34,80,111,116,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,56,57,57,44,34,98,101,100,115,34,58,57,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,44,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,44,91,45,49,48,49,46,54,50,50,56,44,51,53,46,54,50,48,49,57,54,93,44,91,45,49,48,50,46,49,54,50,55,53,50,44,51,53,46,54,50,48,48,51,53,93,44,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,83,101,109,105,110,111,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,55,49,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,50,51,54,57,57,44,51,53,46,52,48,48,55,50,50,93,44,91,45,57,54,46,55,55,54,54,57,52,44,51,53,46,52,48,53,52,49,55,93,44,91,45,57,54,46,55,55,53,54,56,49,44,51,52,46,56,57,57,57,53,56,93,44,91,45,57,54,46,54,54,55,54,57,50,44,51,52,46,57,50,57,53,56,51,93,44,91,45,57,54,46,52,57,48,55,56,54,44,51,52,46,57,49,48,53,56,53,93,44,91,45,57,54,46,52,57,48,52,51,52,44,51,53,46,49,49,53,56,53,55,93,44,91,45,57,54,46,52,52,49,51,54,56,44,51,53,46,50,57,48,49,50,50,93,44,91,45,57,54,46,52,52,53,53,56,52,44,51,53,46,52,53,56,55,55,49,93,44,91,45,57,54,46,54,50,51,54,57,57,44,51,53,46,52,48,48,55,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,105,107,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,57,50,54,44,34,98,101,100,115,34,58,50,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,53,49,55,53,57,44,51,51,46,56,49,52,53,49,93,44,91,45,56,50,46,48,49,50,52,55,44,51,51,46,53,51,50,49,49,54,93,44,91,45,56,49,46,57,51,52,49,51,54,44,51,51,46,52,54,56,51,51,55,93,44,91,45,56,49,46,57,49,56,51,51,55,44,51,51,46,51,51,50,56,52,50,93,44,91,45,56,49,46,56,53,50,48,55,54,44,51,51,46,50,52,55,50,56,56,93,44,91,45,56,49,46,55,53,55,48,51,53,44,51,51,46,49,57,56,49,52,56,93,44,91,45,56,49,46,51,55,50,57,51,49,44,51,51,46,52,57,48,52,49,55,93,44,91,45,56,49,46,49,56,55,50,55,49,44,51,51,46,54,53,50,57,51,55,93,44,91,45,56,49,46,52,49,53,51,48,56,44,51,51,46,55,51,50,49,54,49,93,44,91,45,56,49,46,53,55,49,52,56,55,44,51,51,46,56,55,55,51,49,56,93,44,91,45,56,49,46,54,53,49,55,53,57,44,51,51,46,56,49,52,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,77,101,110,100,111,99,105,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,52,50,50,44,34,98,101,100,115,34,58,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,49,51,52,56,56,57,44,52,48,46,48,48,50,52,55,93,44,91,45,49,50,51,46,57,51,56,53,57,49,44,51,57,46,56,49,52,57,52,52,93,44,91,45,49,50,51,46,56,53,55,49,56,51,44,51,57,46,54,55,52,54,57,51,93,44,91,45,49,50,51,46,56,51,52,54,52,57,44,51,57,46,53,52,57,49,57,52,93,44,91,45,49,50,51,46,56,57,51,48,56,53,44,51,57,46,51,51,55,52,57,52,93,44,91,45,49,50,51,46,55,54,49,57,54,53,44,51,57,46,48,52,49,48,57,49,93,44,91,45,49,50,51,46,55,56,52,54,55,54,44,51,56,46,56,57,51,55,50,56,93,44,91,45,49,50,51,46,54,51,50,52,57,55,44,51,56,46,55,53,56,49,49,57,93,44,91,45,49,50,51,46,51,54,56,51,57,52,44,51,56,46,56,48,54,54,52,93,44,91,45,49,50,51,46,49,51,54,50,53,51,44,51,56,46,56,48,57,49,51,54,93,44,91,45,49,50,51,46,48,56,48,57,57,55,44,51,56,46,56,53,50,52,51,56,93,44,91,45,49,50,50,46,56,50,49,53,57,50,44,51,56,46,56,53,48,49,52,93,44,91,45,49,50,50,46,57,52,56,56,54,53,44,51,56,46,57,48,48,50,50,93,44,91,45,49,50,50,46,57,56,54,54,52,44,51,56,46,57,57,55,50,56,51,93,44,91,45,49,50,51,46,48,57,51,48,49,51,44,51,57,46,48,55,49,57,57,52,93,44,91,45,49,50,51,46,48,49,50,55,49,44,51,57,46,50,51,54,49,56,56,93,44,91,45,49,50,51,46,48,55,53,49,49,52,44,51,57,46,52,48,55,54,56,51,93,44,91,45,49,50,51,46,48,54,51,49,56,49,44,51,57,46,53,48,51,53,51,57,93,44,91,45,49,50,50,46,56,57,48,51,49,44,51,57,46,53,50,57,48,49,52,93,44,91,45,49,50,50,46,56,56,53,51,53,50,44,51,57,46,53,56,48,49,48,56,93,44,91,45,49,50,50,46,57,51,55,54,53,52,44,51,57,46,55,57,56,49,53,54,93,44,91,45,49,50,50,46,57,51,52,48,49,51,44,51,57,46,57,55,56,49,51,49,93,44,91,45,49,50,51,46,53,52,52,53,54,51,44,51,57,46,57,55,55,48,49,53,93,44,91,45,49,50,51,46,53,52,52,52,53,56,44,52,48,46,48,48,49,57,50,51,93,44,91,45,49,50,52,46,49,51,52,56,56,57,44,52,48,46,48,48,50,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,53,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,53,48,34,44,34,78,65,77,69,34,58,34,67,104,101,115,97,112,101,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,55,56,50,48,44,34,98,101,100,115,34,58,51,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,50,48,51,54,56,44,51,54,46,56,54,54,51,52,56,93,44,91,45,55,54,46,52,53,55,52,54,57,44,51,54,46,56,49,52,56,52,49,93,44,91,45,55,54,46,52,57,49,52,57,54,44,51,54,46,53,53,48,54,52,56,93,44,91,45,55,54,46,51,49,51,51,48,51,44,51,54,46,53,53,48,53,50,93,44,91,45,55,54,46,49,50,50,51,52,57,44,51,54,46,53,53,48,53,50,51,93,44,91,45,55,54,46,49,50,49,57,53,53,44,51,54,46,54,54,53,55,53,93,44,91,45,55,54,46,50,50,54,48,54,44,51,54,46,56,51,57,57,52,55,93,44,91,45,55,54,46,50,56,57,57,54,50,44,51,54,46,56,50,50,48,52,56,93,44,91,45,55,54,46,52,50,48,51,54,56,44,51,54,46,56,54,54,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,89,97,117,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,52,51,57,44,34,98,101,100,115,34,58,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,57,50,54,53,49,55,44,49,56,46,49,53,49,50,54,55,93,44,91,45,54,54,46,56,56,52,54,53,51,44,49,56,46,48,50,52,56,49,54,93,44,91,45,54,54,46,56,53,56,50,51,51,44,49,55,46,57,53,48,56,50,53,93,44,91,45,54,54,46,55,57,55,53,53,55,44,49,56,46,49,51,51,52,52,53,93,44,91,45,54,54,46,56,50,55,51,50,55,44,49,56,46,49,55,49,50,52,50,93,44,91,45,54,54,46,56,51,54,55,54,44,49,56,46,49,55,48,53,53,51,93,44,91,45,54,54,46,57,50,54,53,49,55,44,49,56,46,49,53,49,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,83,119,101,101,116,119,97,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,49,49,55,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,51,56,54,52,44,52,50,46,50,54,51,54,56,52,93,44,91,45,49,49,48,46,48,53,51,55,48,56,44,52,50,46,50,55,48,55,52,52,93,44,91,45,49,49,48,46,48,52,56,44,52,49,46,53,55,56,48,49,53,93,44,91,45,49,49,48,46,48,52,56,52,56,51,44,52,48,46,57,57,55,50,57,53,93,44,91,45,49,49,48,46,48,48,48,55,49,55,44,52,48,46,57,57,55,52,53,93,44,91,45,49,48,57,46,48,53,48,48,50,54,44,52,49,46,48,48,48,54,57,49,93,44,91,45,49,48,55,46,57,49,56,52,50,49,44,52,49,46,48,48,50,48,51,54,93,44,91,45,49,48,55,46,57,50,57,55,51,54,44,52,49,46,54,53,57,53,57,54,93,44,91,45,49,48,55,46,53,48,57,55,50,44,52,49,46,54,53,55,52,53,50,93,44,91,45,49,48,55,46,53,48,51,56,50,49,44,52,50,46,48,56,55,57,53,55,93,44,91,45,49,48,55,46,53,50,50,55,50,50,44,52,50,46,50,54,49,55,53,54,93,44,91,45,49,48,57,46,48,52,51,56,54,52,44,52,50,46,50,54,51,54,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,71,97,114,122,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,44,91,45,49,48,49,46,53,53,54,56,56,52,44,51,51,46,51,57,52,55,54,93,44,91,45,49,48,49,46,53,53,55,52,51,52,44,51,50,46,57,54,49,48,50,53,93,44,91,45,49,48,49,46,49,55,51,51,55,56,44,51,50,46,57,54,51,53,57,55,93,44,91,45,49,48,49,46,48,51,56,54,54,44,51,50,46,57,55,48,50,50,53,93,44,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,72,97,114,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,52,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,44,91,45,55,57,46,48,56,57,54,53,53,44,51,57,46,48,51,56,50,48,56,93,44,91,45,55,57,46,48,52,53,57,53,51,44,51,56,46,57,50,56,55,49,93,44,91,45,55,57,46,49,51,52,50,57,54,44,51,56,46,56,49,51,51,52,93,44,91,45,55,57,46,48,53,55,50,53,51,44,51,56,46,55,54,49,52,49,51,93,44,91,45,55,56,46,57,57,51,55,54,49,44,51,56,46,56,53,48,48,50,49,93,44,91,45,55,56,46,56,54,57,50,54,49,44,51,56,46,55,54,50,57,56,93,44,91,45,55,56,46,55,56,56,48,51,49,44,51,56,46,56,56,53,49,50,51,93,44,91,45,55,56,46,54,56,48,52,53,54,44,51,56,46,57,50,53,51,49,51,93,44,91,45,55,56,46,53,52,52,49,56,50,44,51,57,46,48,53,54,53,53,57,93,44,91,45,55,56,46,53,48,56,49,51,50,44,51,57,46,48,56,56,54,51,93,44,91,45,55,56,46,56,57,57,54,57,53,44,51,57,46,49,57,57,49,51,55,93,44,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,106,117,110,116,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,56,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,56,49,55,50,55,49,44,49,56,46,50,51,48,51,51,54,93,44,91,45,54,54,46,56,50,55,51,50,55,44,49,56,46,49,55,49,50,52,50,93,44,91,45,54,54,46,55,57,55,53,53,55,44,49,56,46,49,51,51,52,52,53,93,44,91,45,54,54,46,55,54,57,48,52,57,44,49,56,46,49,51,52,57,56,51,93,44,91,45,54,54,46,54,57,52,48,55,44,49,56,46,49,51,48,53,51,52,93,44,91,45,54,54,46,54,55,48,52,57,52,44,49,56,46,49,53,50,56,51,49,93,44,91,45,54,54,46,54,57,50,53,55,50,44,49,56,46,50,49,53,56,56,51,93,44,91,45,54,54,46,56,49,55,50,55,49,44,49,56,46,50,51,48,51,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,79,122,97,117,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,50,56,52,44,34,98,101,100,115,34,58,51,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,52,48,53,50,56,44,52,51,46,53,52,50,51,54,49,93,44,91,45,56,56,46,48,54,51,51,53,51,44,52,51,46,49,57,50,49,49,55,93,44,91,45,56,55,46,49,49,57,48,48,56,44,52,51,46,49,57,48,56,49,54,93,44,91,45,56,55,46,49,52,48,51,51,49,44,52,51,46,52,55,49,52,51,54,93,44,91,45,56,55,46,49,51,52,55,55,56,44,52,51,46,53,52,49,52,51,51,93,44,91,45,56,56,46,48,52,48,53,50,56,44,52,51,46,53,52,50,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,55,51,52,44,34,98,101,100,115,34,58,49,50,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,57,52,49,51,52,44,51,54,46,53,57,53,54,57,55,93,44,91,45,56,50,46,54,48,57,49,55,54,44,51,54,46,53,57,52,48,57,57,93,44,91,45,56,50,46,54,56,48,54,55,55,44,51,54,46,52,51,49,56,93,44,91,45,56,50,46,52,51,56,51,53,53,44,51,54,46,52,52,53,54,51,57,93,44,91,45,56,50,46,50,57,57,56,53,57,44,51,54,46,51,57,54,53,48,53,93,44,91,45,56,50,46,49,56,56,48,53,51,44,51,54,46,52,48,48,54,48,56,93,44,91,45,56,49,46,57,56,51,56,52,51,44,51,54,46,53,48,56,51,49,52,93,44,91,45,56,49,46,56,50,54,55,52,50,44,51,54,46,54,49,52,50,49,53,93,44,91,45,56,50,46,49,52,53,53,55,51,44,51,54,46,53,57,52,55,50,53,93,44,91,45,56,50,46,50,52,51,51,56,50,44,51,54,46,53,57,53,54,53,49,93,44,91,45,56,50,46,50,57,52,49,51,52,44,51,54,46,53,57,53,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,76,97,117,114,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,55,49,48,44,34,98,101,100,115,34,58,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,52,54,55,57,50,44,51,52,46,55,56,53,53,53,52,93,44,91,45,56,50,46,50,51,56,48,53,52,44,51,52,46,53,56,54,57,53,54,93,44,91,45,56,50,46,51,49,51,57,57,54,44,51,52,46,52,56,52,48,48,50,93,44,91,45,56,50,46,50,52,54,51,51,55,44,51,52,46,52,48,57,54,55,54,93,44,91,45,56,50,46,49,54,57,50,57,55,44,51,52,46,51,51,48,55,52,54,93,44,91,45,56,49,46,57,52,53,48,49,57,44,51,52,46,50,48,51,49,52,56,93,44,91,45,56,49,46,56,56,51,48,55,54,44,51,52,46,51,49,49,57,54,52,93,44,91,45,56,49,46,55,56,50,54,50,55,44,51,52,46,51,54,53,48,56,57,93,44,91,45,56,49,46,54,52,51,53,53,50,44,51,52,46,53,51,51,54,53,50,93,44,91,45,56,49,46,56,53,52,48,48,50,44,51,52,46,53,57,52,53,52,57,93,44,91,45,56,50,46,48,55,49,51,49,53,44,51,52,46,55,48,51,55,93,44,91,45,56,50,46,49,52,54,55,57,50,44,51,52,46,55,56,53,53,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,114,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,49,48,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,55,54,54,48,49,44,52,52,46,57,57,57,57,50,54,93,44,91,45,49,48,53,46,48,56,53,52,53,49,44,52,52,46,55,56,54,56,48,49,93,44,91,45,49,48,53,46,48,55,57,50,56,49,44,52,52,46,49,55,54,49,56,50,93,44,91,45,49,48,52,46,48,53,52,52,56,55,44,52,52,46,49,56,48,51,56,49,93,44,91,45,49,48,52,46,48,53,53,57,52,51,44,52,52,46,53,55,49,48,50,53,93,44,91,45,49,48,52,46,48,53,55,56,55,57,44,52,52,46,57,57,55,54,48,53,93,44,91,45,49,48,53,46,48,51,56,50,52,57,44,52,53,46,48,48,48,49,48,54,93,44,91,45,49,48,53,46,48,55,54,54,48,49,44,52,52,46,57,57,57,57,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,83,104,101,98,111,121,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,50,48,53,44,34,98,101,100,115,34,58,51,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,54,50,50,55,52,44,52,51,46,56,57,49,53,49,49,93,44,91,45,56,56,46,49,54,48,56,55,51,44,52,51,46,53,52,50,57,52,51,93,44,91,45,56,56,46,48,52,48,53,50,56,44,52,51,46,53,52,50,51,54,49,93,44,91,45,56,55,46,49,51,52,55,55,56,44,52,51,46,53,52,49,52,51,51,93,44,91,45,56,55,46,48,57,51,49,48,57,44,52,51,46,56,50,48,49,49,51,93,44,91,45,56,55,46,48,55,53,51,51,53,44,52,51,46,56,57,52,55,55,52,93,44,91,45,56,56,46,48,52,49,55,57,52,44,52,51,46,56,57,49,54,57,50,93,44,91,45,56,56,46,49,54,50,50,55,52,44,52,51,46,56,57,49,53,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,72,97,109,112,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,57,49,49,54,44,34,98,101,100,115,34,58,49,53,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,48,48,48,49,55,51,44,52,50,46,51,49,50,54,55,56,93,44,91,45,55,51,46,48,53,51,50,56,56,44,52,50,46,48,51,57,56,54,53,93,44,91,45,55,51,46,48,48,56,55,54,54,44,52,50,46,48,51,56,55,56,53,93,44,91,45,55,50,46,53,48,57,50,51,51,44,52,50,46,48,51,52,51,55,54,93,44,91,45,55,50,46,49,51,53,55,49,53,44,52,50,46,48,51,48,50,50,50,93,44,91,45,55,50,46,49,51,53,48,49,49,44,52,50,46,49,54,49,55,56,52,93,44,91,45,55,50,46,50,50,49,50,49,56,44,52,50,46,50,52,53,50,53,50,93,44,91,45,55,50,46,55,56,49,48,51,57,44,52,50,46,49,57,57,55,52,57,93,44,91,45,55,51,46,48,48,48,49,55,51,44,52,50,46,51,49,50,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,67,97,108,100,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,52,48,49,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,49,48,50,49,53,44,51,48,46,48,50,52,52,57,57,93,44,91,45,57,55,46,56,55,53,50,53,57,44,50,57,46,56,53,56,50,48,56,93,44,91,45,57,55,46,55,51,53,55,50,44,50,57,46,54,57,49,49,57,56,93,44,91,45,57,55,46,54,51,51,49,55,54,44,50,57,46,54,52,57,56,54,51,93,44,91,45,57,55,46,53,57,55,55,52,51,44,50,57,46,54,51,48,55,49,56,93,44,91,45,57,55,46,51,49,55,56,57,51,44,50,57,46,55,56,52,54,53,56,93,44,91,45,57,55,46,51,49,53,56,50,51,44,50,57,46,55,56,54,53,52,49,93,44,91,45,57,55,46,54,52,57,51,55,44,51,48,46,48,54,55,57,52,52,93,44,91,45,57,55,46,55,49,48,50,49,53,44,51,48,46,48,50,52,52,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,108,111,117,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,51,49,56,52,52,44,51,57,46,53,54,54,57,50,49,93,44,91,45,57,55,46,57,50,57,48,57,55,44,51,57,46,51,48,54,51,57,55,93,44,91,45,57,55,46,51,54,57,56,51,57,44,51,57,46,51,48,54,48,49,49,93,44,91,45,57,55,46,51,54,56,53,55,52,44,51,57,46,53,54,55,48,49,56,93,44,91,45,57,55,46,51,54,56,54,55,44,51,57,46,54,53,52,48,52,51,93,44,91,45,57,55,46,57,51,49,52,56,50,44,51,57,46,54,53,51,55,54,55,93,44,91,45,57,55,46,57,51,49,56,52,52,44,51,57,46,53,54,54,57,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,73,110,121,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,56,53,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,51,54,48,53,56,54,44,51,54,46,55,52,52,55,55,51,93,44,91,45,49,49,56,46,50,52,56,57,50,44,51,54,46,52,56,54,53,51,53,93,44,91,45,49,49,56,46,49,48,48,49,49,54,44,51,54,46,51,50,56,56,50,51,93,44,91,45,49,49,56,46,49,50,55,54,48,49,44,51,54,46,50,56,48,51,52,56,93,44,91,45,49,49,55,46,57,56,50,52,55,51,44,51,53,46,56,57,53,55,57,54,93,44,91,45,49,49,56,46,48,48,56,48,52,51,44,51,53,46,55,56,57,49,54,49,93,44,91,45,49,49,55,46,54,51,50,57,57,54,44,51,53,46,55,57,55,50,53,49,93,44,91,45,49,49,54,46,56,55,48,54,51,50,44,51,53,46,55,57,53,51,55,54,93,44,91,45,49,49,53,46,55,51,53,56,57,49,44,51,53,46,55,57,51,54,50,93,44,91,45,49,49,53,46,54,52,56,51,53,55,44,51,53,46,56,48,57,50,49,49,93,44,91,45,49,49,53,46,56,52,53,57,57,52,44,51,53,46,57,54,51,55,48,55,93,44,91,45,49,49,54,46,51,56,48,51,52,55,44,51,54,46,51,55,52,57,54,49,93,44,91,45,49,49,55,46,49,54,54,48,48,49,44,51,54,46,57,55,49,49,49,49,93,44,91,45,49,49,55,46,56,51,50,55,50,54,44,51,55,46,52,54,52,57,50,57,93,44,91,45,49,49,56,46,55,55,53,48,49,52,44,51,55,46,52,54,51,48,53,50,93,44,91,45,49,49,56,46,55,56,54,55,51,54,44,51,55,46,51,52,51,51,56,93,44,91,45,49,49,56,46,55,49,54,48,49,54,44,51,55,46,51,50,56,50,48,56,93,44,91,45,49,49,56,46,54,53,52,53,57,51,44,51,55,46,49,52,49,56,50,54,93,44,91,45,49,49,56,46,53,48,51,49,48,51,44,51,55,46,48,57,53,50,50,49,93,44,91,45,49,49,56,46,52,50,50,53,57,53,44,51,55,46,48,50,52,51,54,93,44,91,45,49,49,56,46,51,54,48,56,51,49,44,51,54,46,56,56,55,55,51,52,93,44,91,45,49,49,56,46,51,54,48,53,56,54,44,51,54,46,55,52,52,55,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,111,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,48,57,49,55,44,51,51,46,48,57,48,50,54,93,44,91,45,56,54,46,49,55,52,51,55,44,51,51,46,49,48,52,51,57,52,93,44,91,45,56,54,46,52,57,49,48,50,57,44,51,51,46,49,48,50,57,52,52,93,44,91,45,56,54,46,53,49,55,51,52,52,44,51,51,46,48,50,48,53,54,54,93,44,91,45,56,54,46,52,53,55,48,49,53,44,51,50,46,56,49,51,56,57,57,93,44,91,45,56,54,46,51,55,52,57,55,52,44,51,50,46,55,53,51,53,56,93,44,91,45,56,54,46,48,48,55,49,56,55,44,51,50,46,55,53,52,57,56,52,93,44,91,45,56,54,46,48,48,57,49,55,44,51,51,46,48,57,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,68,105,99,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,53,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,56,55,55,56,55,44,52,51,46,53,48,48,50,50,54,93,44,91,45,57,53,46,51,56,56,48,55,56,44,52,51,46,50,53,53,50,50,49,93,44,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,44,91,45,57,52,46,57,49,52,53,56,50,44,52,51,46,53,48,48,56,53,51,93,44,91,45,57,53,46,51,56,55,55,56,55,44,52,51,46,53,48,48,50,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,72,97,114,108,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,49,51,52,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,56,57,56,49,51,44,51,54,46,56,57,53,52,49,51,93,44,91,45,56,51,46,53,48,48,56,57,49,44,51,54,46,55,51,51,50,53,52,93,44,91,45,56,51,46,52,54,49,48,49,54,44,51,54,46,54,54,52,56,54,93,44,91,45,56,51,46,49,57,52,50,53,50,44,51,54,46,55,51,57,53,49,57,93,44,91,45,56,51,46,48,55,50,56,51,54,44,51,54,46,56,53,52,52,53,55,93,44,91,45,56,50,46,56,55,56,52,44,51,54,46,56,57,50,57,53,51,93,44,91,45,56,50,46,56,54,57,49,57,50,44,51,54,46,57,55,52,49,56,54,93,44,91,45,56,50,46,57,51,57,52,54,54,44,51,55,46,48,49,53,53,50,93,44,91,45,56,51,46,49,50,50,48,57,44,51,55,46,48,48,48,57,57,55,93,44,91,45,56,51,46,49,56,50,49,48,52,44,51,55,46,48,50,49,49,49,53,93,44,91,45,56,51,46,50,54,48,48,50,44,51,54,46,57,54,56,57,53,49,93,44,91,45,56,51,46,52,56,57,56,49,51,44,51,54,46,56,57,53,52,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,71,101,97,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,56,57,53,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,54,51,49,55,55,44,51,57,46,49,51,50,51,93,44,91,45,57,54,46,57,54,51,52,55,44,51,56,46,57,54,52,57,48,49,93,44,91,45,57,54,46,56,57,48,50,52,53,44,51,56,46,56,55,48,48,54,55,93,44,91,45,57,54,46,53,48,49,53,53,54,44,51,56,46,56,54,57,55,48,52,93,44,91,45,57,54,46,53,48,49,49,54,54,44,51,57,46,48,52,51,54,54,54,93,44,91,45,57,54,46,53,48,48,57,54,50,44,51,57,46,48,55,50,54,56,49,93,44,91,45,57,54,46,56,53,49,52,48,57,44,51,57,46,48,56,56,49,55,54,93,44,91,45,57,54,46,56,52,57,56,55,57,44,51,57,46,50,49,57,48,49,50,93,44,91,45,57,54,46,57,54,49,54,57,51,44,51,57,46,50,50,48,48,55,54,93,44,91,45,57,54,46,57,54,51,49,55,55,44,51,57,46,49,51,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,101,114,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,54,52,50,44,34,98,101,100,115,34,58,49,51,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,57,49,52,55,51,44,52,48,46,54,55,55,50,55,93,44,91,45,55,54,46,49,55,49,54,50,52,44,52,48,46,53,51,52,57,52,55,93,44,91,45,55,54,46,52,52,48,49,56,49,44,52,48,46,52,57,53,57,53,50,93,44,91,45,55,54,46,49,53,49,50,49,53,44,52,48,46,51,49,53,57,55,49,93,44,91,45,55,53,46,56,55,51,51,55,53,44,52,48,46,49,51,55,49,48,55,93,44,91,45,55,53,46,54,57,54,55,56,50,44,52,48,46,50,52,49,56,54,51,93,44,91,45,55,53,46,53,50,57,54,57,52,44,52,48,46,52,52,54,57,57,53,93,44,91,45,55,53,46,56,57,49,52,55,51,44,52,48,46,54,55,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,57,49,44,34,98,101,100,115,34,58,49,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,57,57,56,53,57,44,51,54,46,51,57,54,53,48,53,93,44,91,45,56,50,46,51,52,48,52,54,44,51,54,46,50,53,50,56,48,55,93,44,91,45,56,50,46,50,50,50,48,54,52,44,51,54,46,49,53,54,57,54,93,44,91,45,56,50,46,48,56,49,48,55,57,44,51,54,46,49,48,51,49,55,93,44,91,45,56,49,46,57,51,51,48,54,53,44,51,54,46,50,54,52,56,55,51,93,44,91,45,56,50,46,48,52,52,49,52,53,44,51,54,46,51,54,51,55,49,54,93,44,91,45,56,49,46,57,56,51,56,52,51,44,51,54,46,53,48,56,51,49,52,93,44,91,45,56,50,46,49,56,56,48,53,51,44,51,54,46,52,48,48,54,48,56,93,44,91,45,56,50,46,50,57,57,56,53,57,44,51,54,46,51,57,54,53,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,51,57,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,57,52,56,49,55,44,52,52,46,53,52,50,51,48,53,93,44,91,45,57,53,46,54,48,52,48,48,49,44,52,52,46,54,50,57,57,52,53,93,44,91,45,57,54,46,48,57,50,57,53,44,52,52,46,54,51,48,52,56,54,93,44,91,45,57,54,46,48,55,56,53,56,44,52,52,46,49,57,54,54,50,93,44,91,45,57,54,46,48,54,51,55,55,56,44,52,52,46,49,57,54,52,50,53,93,44,91,45,57,53,46,53,57,51,53,55,44,52,52,46,49,57,53,53,51,93,44,91,45,57,53,46,53,57,52,56,49,55,44,52,52,46,53,52,50,51,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,111,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,56,50,52,50,48,57,44,51,55,46,50,48,53,51,54,49,93,44,91,45,55,56,46,57,48,52,53,56,55,44,51,55,46,48,50,50,50,56,56,93,44,91,45,55,56,46,55,55,52,55,49,53,44,51,54,46,57,56,48,57,55,54,93,44,91,45,55,56,46,54,55,49,52,54,51,44,51,54,46,56,53,55,57,53,49,93,44,91,45,55,56,46,54,52,56,53,52,49,44,51,54,46,54,57,55,57,48,57,93,44,91,45,55,56,46,52,57,51,48,50,56,44,51,54,46,56,57,49,50,50,93,44,91,45,55,56,46,52,52,51,54,52,52,44,51,55,46,48,55,57,51,55,49,93,44,91,45,55,56,46,54,57,50,52,55,50,44,51,55,46,50,48,52,55,56,54,93,44,91,45,55,56,46,54,56,49,53,55,51,44,51,55,46,50,52,56,55,53,57,93,44,91,45,55,56,46,56,50,52,50,48,57,44,51,55,46,50,48,53,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,48,53,53,44,34,98,101,100,115,34,58,54,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,57,57,56,53,57,44,51,54,46,51,57,54,53,48,53,93,44,91,45,56,50,46,52,51,56,51,53,53,44,51,54,46,52,52,53,54,51,57,93,44,91,45,56,50,46,54,56,48,54,55,55,44,51,54,46,52,51,49,56,93,44,91,45,56,50,46,55,48,50,53,54,54,44,51,54,46,52,49,48,52,49,50,93,44,91,45,56,50,46,54,50,57,54,52,49,44,51,54,46,52,49,49,53,52,93,44,91,45,56,50,46,54,52,55,55,54,57,44,51,54,46,49,52,54,52,48,52,93,44,91,45,56,50,46,53,57,53,48,54,53,44,51,54,46,48,57,54,50,48,53,93,44,91,45,56,50,46,52,51,55,50,53,49,44,51,54,46,49,53,52,55,48,57,93,44,91,45,56,50,46,51,52,48,52,54,44,51,54,46,50,53,50,56,48,55,93,44,91,45,56,50,46,50,57,57,56,53,57,44,51,54,46,51,57,54,53,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,78,101,119,98,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,54,56,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,52,51,53,53,50,44,51,52,46,53,51,51,54,53,50,93,44,91,45,56,49,46,55,56,50,54,50,55,44,51,52,46,51,54,53,48,56,57,93,44,91,45,56,49,46,56,56,51,48,55,54,44,51,52,46,51,49,49,57,54,52,93,44,91,45,56,49,46,57,52,53,48,49,57,44,51,52,46,50,48,51,49,52,56,93,44,91,45,56,49,46,56,55,48,48,56,52,44,51,52,46,49,51,53,51,53,55,93,44,91,45,56,49,46,55,51,49,54,49,52,44,51,52,46,49,56,55,54,49,51,93,44,91,45,56,49,46,53,51,56,56,57,57,44,51,52,46,48,56,49,55,52,52,93,44,91,45,56,49,46,52,55,49,57,55,50,44,51,52,46,48,55,54,53,53,50,93,44,91,45,56,49,46,51,51,56,57,54,49,44,51,52,46,49,57,55,53,56,55,93,44,91,45,56,49,46,51,49,54,57,49,49,44,51,52,46,50,51,57,52,53,56,93,44,91,45,56,49,46,52,50,51,50,52,49,44,51,52,46,52,57,52,51,55,57,93,44,91,45,56,49,46,53,53,51,50,48,52,44,51,52,46,52,55,55,49,49,52,93,44,91,45,56,49,46,54,52,51,53,53,50,44,51,52,46,53,51,51,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,73,115,108,101,32,111,102,32,87,105,103,104,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,55,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,44,91,45,55,54,46,55,49,49,55,55,53,44,51,55,46,48,53,53,51,56,93,44,91,45,55,54,46,56,52,57,54,56,52,44,51,54,46,57,57,54,50,49,49,93,44,91,45,55,54,46,56,49,52,57,52,49,44,51,54,46,57,48,48,52,54,53,93,44,91,45,55,54,46,57,50,52,54,50,57,44,51,54,46,55,48,55,55,50,57,93,44,91,45,55,54,46,57,48,57,54,55,50,44,51,54,46,54,52,56,49,55,53,93,44,91,45,55,54,46,56,57,55,53,57,50,44,51,54,46,54,52,52,48,53,93,44,91,45,55,54,46,53,51,51,53,50,44,51,54,46,57,49,53,53,54,51,93,44,91,45,55,54,46,52,52,53,51,48,49,44,51,54,46,57,52,49,56,57,49,93,44,91,45,55,54,46,54,50,56,50,48,53,44,51,55,46,48,57,50,55,53,53,93,44,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,87,104,101,101,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,51,55,49,52,52,49,44,52,52,46,56,50,49,55,54,57,93,44,91,45,49,50,48,46,51,56,54,53,54,49,44,52,52,46,53,54,52,48,48,57,93,44,91,45,49,50,48,46,51,56,54,48,55,52,44,52,52,46,52,51,54,48,56,51,93,44,91,45,49,50,48,46,48,50,49,54,50,49,44,52,52,46,52,51,56,55,57,51,93,44,91,45,49,49,57,46,56,57,57,50,56,51,44,52,52,46,51,56,57,53,55,53,93,44,91,45,49,49,57,46,56,57,57,48,48,50,44,52,52,46,51,48,54,54,50,93,44,91,45,49,49,57,46,54,53,53,53,49,55,44,52,52,46,51,48,55,48,52,53,93,44,91,45,49,49,57,46,54,53,50,52,51,49,44,52,52,46,56,50,51,50,57,57,93,44,91,45,49,49,57,46,54,55,50,50,50,56,44,52,52,46,57,57,53,49,49,55,93,44,91,45,49,49,57,46,55,57,48,54,57,57,44,52,53,46,48,54,55,56,50,51,93,44,91,45,49,50,48,46,52,57,53,49,54,44,52,53,46,48,54,56,50,55,57,93,44,91,45,49,50,48,46,52,53,53,51,56,57,44,52,52,46,56,54,54,48,52,54,93,44,91,45,49,50,48,46,51,55,49,52,52,49,44,52,52,46,56,50,49,55,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,55,51,51,44,34,98,101,100,115,34,58,52,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,55,56,53,54,50,44,51,54,46,57,50,54,52,57,93,44,91,45,57,48,46,54,54,50,54,49,55,44,51,54,46,56,49,49,52,53,51,93,44,91,45,57,48,46,53,57,50,49,54,54,44,51,54,46,54,55,57,51,54,56,93,44,91,45,57,48,46,53,55,54,49,55,57,44,51,54,46,52,57,56,53,52,55,93,44,91,45,57,48,46,50,50,48,55,51,50,44,51,54,46,52,57,55,56,53,57,93,44,91,45,57,48,46,49,52,56,51,57,56,44,51,54,46,54,51,48,54,53,54,93,44,91,45,57,48,46,49,53,56,48,53,44,51,54,46,55,50,50,57,55,54,93,44,91,45,57,48,46,50,53,56,53,54,51,44,51,54,46,57,50,50,48,52,51,93,44,91,45,57,48,46,54,55,56,53,54,50,44,51,54,46,57,50,54,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,73,98,101,114,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,53,54,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,48,48,57,51,51,44,51,48,46,52,57,55,52,51,51,93,44,91,45,57,49,46,54,52,48,48,57,57,44,51,48,46,52,52,50,55,50,56,93,44,91,45,57,49,46,54,50,49,48,53,53,44,51,48,46,51,48,57,57,51,56,93,44,91,45,57,49,46,53,48,56,50,54,56,44,51,48,46,50,52,48,50,57,55,93,44,91,45,57,49,46,52,54,51,56,51,51,44,51,48,46,49,48,50,52,57,51,93,44,91,45,57,49,46,51,54,56,56,51,53,44,51,48,46,48,53,56,56,50,52,93,44,91,45,57,49,46,50,50,52,51,53,54,44,51,48,46,48,50,53,51,51,54,93,44,91,45,57,49,46,49,48,53,57,53,49,44,51,48,46,48,54,50,52,55,56,93,44,91,45,57,49,46,48,50,49,48,49,52,44,51,48,46,51,50,49,52,56,57,93,44,91,45,57,49,46,49,52,50,49,48,53,44,51,48,46,51,50,51,50,57,51,93,44,91,45,57,49,46,51,49,49,54,54,44,51,48,46,51,50,50,52,55,49,93,44,91,45,57,49,46,52,56,53,48,56,57,44,51,48,46,52,57,55,49,51,56,93,44,91,45,57,49,46,55,48,48,57,51,51,44,51,48,46,52,57,55,52,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,83,104,97,114,107,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,49,49,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,52,51,51,55,44,51,51,46,48,48,55,54,57,55,93,44,91,45,57,48,46,57,54,51,55,53,51,44,51,50,46,56,51,56,49,51,51,93,44,91,45,57,48,46,57,54,52,56,54,52,44,51,50,46,54,54,50,55,57,56,93,44,91,45,57,48,46,55,50,51,49,53,57,44,51,50,46,54,54,50,49,50,56,93,44,91,45,57,48,46,54,57,51,48,54,49,44,51,50,46,55,53,52,50,57,55,93,44,91,45,57,48,46,55,53,57,55,53,51,44,51,50,46,56,51,53,55,54,51,93,44,91,45,57,48,46,54,53,54,54,51,50,44,51,50,46,57,50,50,53,49,93,44,91,45,57,48,46,55,48,49,56,52,53,44,51,51,46,48,57,54,50,57,52,93,44,91,45,57,48,46,57,49,52,52,54,53,44,51,51,46,48,57,55,52,49,55,93,44,91,45,57,48,46,57,49,52,51,51,55,44,51,51,46,48,48,55,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,70,97,117,113,117,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,49,53,44,34,98,101,100,115,34,58,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,53,53,49,54,57,44,51,56,46,57,52,50,54,53,54,93,44,91,45,55,55,46,57,54,50,50,48,51,44,51,57,46,48,49,51,55,51,51,93,44,91,45,55,56,46,48,48,52,51,49,51,44,51,56,46,57,55,57,52,51,56,93,44,91,45,55,56,46,49,51,48,53,55,52,44,51,56,46,56,54,52,56,54,53,93,44,91,45,55,55,46,57,51,53,51,53,53,44,51,56,46,54,57,53,56,52,93,44,91,45,55,55,46,55,51,53,57,48,49,44,51,56,46,52,49,51,52,53,56,93,44,91,45,55,55,46,54,51,52,57,52,44,51,56,46,52,49,48,50,49,56,93,44,91,45,55,55,46,53,51,49,51,50,56,44,51,56,46,53,53,54,53,53,93,44,91,45,55,55,46,55,49,53,55,49,53,44,51,56,46,56,51,50,49,51,54,93,44,91,45,55,55,46,54,53,53,49,54,57,44,51,56,46,57,52,50,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,53,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,53,48,34,44,34,78,65,77,69,34,58,34,82,97,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,50,57,55,54,50,44,51,55,46,49,51,51,56,52,50,93,44,91,45,56,48,46,53,57,54,52,48,57,44,51,55,46,49,49,56,56,56,57,93,44,91,45,56,48,46,53,56,48,52,54,57,44,51,55,46,48,56,57,54,54,50,93,44,91,45,56,48,46,53,50,57,55,54,50,44,51,55,46,49,51,51,56,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,56,50,56,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,57,48,52,51,49,53,44,51,56,46,57,51,51,51,50,52,93,44,91,45,49,49,57,46,53,56,53,52,51,55,44,51,56,46,55,49,51,50,49,50,93,44,91,45,49,49,57,46,51,50,56,51,57,56,44,51,56,46,53,51,52,55,57,50,93,44,91,45,49,49,57,46,51,52,57,56,56,52,44,51,56,46,55,50,57,49,57,51,93,44,91,45,49,49,57,46,52,48,54,50,55,57,44,51,56,46,55,51,51,51,54,50,93,44,91,45,49,49,57,46,52,50,48,56,51,55,44,51,56,46,57,53,52,55,49,53,93,44,91,45,49,49,57,46,51,49,48,55,48,50,44,51,56,46,57,57,48,55,49,57,93,44,91,45,49,49,57,46,51,49,49,55,49,52,44,51,57,46,48,56,51,54,49,53,93,44,91,45,49,49,57,46,53,53,49,48,50,44,51,57,46,48,56,53,55,57,49,93,44,91,45,49,49,57,46,55,54,49,50,49,51,44,51,57,46,49,49,52,48,48,57,93,44,91,45,49,50,48,46,48,48,51,52,50,57,44,51,57,46,49,49,50,54,56,55,93,44,91,45,49,50,48,46,48,48,50,52,54,49,44,51,57,46,48,54,55,52,56,57,93,44,91,45,49,49,57,46,57,48,52,51,49,53,44,51,56,46,57,51,51,51,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,51,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,52,52,52,53,44,51,48,46,48,49,49,48,51,93,44,91,45,56,53,46,48,48,55,54,50,54,44,51,48,46,48,49,51,56,56,51,93,44,91,45,56,53,46,48,50,53,52,51,57,44,50,57,46,57,55,49,51,57,57,93,44,91,45,56,53,46,48,50,48,53,51,52,44,50,57,46,56,48,55,51,55,51,93,44,91,45,56,53,46,50,48,54,50,50,54,44,50,57,46,55,49,49,49,56,56,93,44,91,45,56,53,46,50,52,54,51,49,54,44,50,57,46,54,50,53,48,48,50,93,44,91,45,56,53,46,48,51,49,49,54,56,44,50,57,46,53,51,57,48,56,56,93,44,91,45,56,52,46,55,51,53,55,53,44,50,57,46,54,53,54,51,55,53,93,44,91,45,56,52,46,53,52,50,50,56,54,44,50,57,46,55,54,57,55,57,55,93,44,91,45,56,52,46,52,52,54,56,54,44,50,57,46,56,53,56,55,51,50,93,44,91,45,56,52,46,50,57,56,55,57,54,44,50,57,46,56,54,55,49,50,54,93,44,91,45,56,52,46,50,54,52,55,51,53,44,50,57,46,57,55,56,48,54,49,93,44,91,45,56,52,46,51,50,53,49,57,56,44,50,57,46,57,53,56,48,53,93,44,91,45,56,52,46,53,52,52,52,53,44,51,48,46,48,49,49,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,52,48,55,51,55,44,51,57,46,49,55,49,55,55,51,93,44,91,45,56,55,46,50,52,49,48,50,55,44,51,56,46,57,48,55,56,55,52,93,44,91,45,56,55,46,48,57,56,55,55,49,44,51,56,46,57,48,51,57,55,52,93,44,91,45,56,54,46,57,48,52,50,53,50,44,51,56,46,57,48,52,50,48,52,93,44,91,45,56,54,46,54,56,50,56,53,51,44,51,56,46,57,48,52,54,57,55,93,44,91,45,56,54,46,54,56,50,50,55,55,44,51,56,46,57,57,50,52,48,52,93,44,91,45,56,54,46,54,56,51,48,48,50,44,51,57,46,49,54,53,55,52,54,93,44,91,45,56,55,46,48,53,52,53,55,56,44,51,57,46,49,54,56,48,56,54,93,44,91,45,56,55,46,50,52,48,55,51,55,44,51,57,46,49,55,49,55,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,82,117,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,48,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,51,51,50,50,56,44,51,57,46,54,57,56,52,54,50,93,44,91,45,56,53,46,54,50,57,51,50,55,44,51,57,46,52,53,50,55,53,93,44,91,45,56,53,46,50,57,55,53,55,53,44,51,57,46,52,53,51,50,55,53,93,44,91,45,56,53,46,50,57,56,49,49,44,51,57,46,53,50,53,52,55,54,93,44,91,45,56,53,46,51,48,49,53,56,52,44,51,57,46,55,56,55,53,55,57,93,44,91,45,56,53,46,53,57,54,57,49,54,44,51,57,46,55,56,54,53,49,57,93,44,91,45,56,53,46,54,51,51,50,50,56,44,51,57,46,54,57,56,52,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,53,51,53,44,34,98,101,100,115,34,58,49,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,54,51,51,53,51,44,52,51,46,49,57,50,49,49,55,93,44,91,45,56,56,46,48,52,48,53,50,56,44,52,51,46,53,52,50,51,54,49,93,44,91,45,56,56,46,49,54,48,56,55,51,44,52,51,46,53,52,50,57,52,51,93,44,91,45,56,56,46,52,48,48,52,50,54,44,52,51,46,53,52,51,53,51,50,93,44,91,45,56,56,46,52,49,55,57,56,55,44,52,51,46,49,57,52,54,57,55,93,44,91,45,56,56,46,48,54,51,51,53,51,44,52,51,46,49,57,50,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,97,99,108,101,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,48,55,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,53,53,51,56,52,44,51,55,46,56,57,53,55,51,54,93,44,91,45,57,50,46,56,53,51,52,56,49,44,51,55,46,52,56,51,57,55,93,44,91,45,57,50,46,54,56,54,54,55,49,44,51,55,46,52,56,49,53,52,53,93,44,91,45,57,50,46,50,53,50,50,54,49,44,51,55,46,52,55,50,57,52,52,93,44,91,45,57,50,46,50,52,57,52,54,51,44,51,55,46,54,48,52,53,52,51,93,44,91,45,57,50,46,52,49,51,54,54,57,44,51,55,46,55,49,51,57,52,49,93,44,91,45,57,50,46,52,48,57,50,51,49,44,51,55,46,56,53,57,49,56,93,44,91,45,57,50,46,53,52,56,57,51,52,44,51,55,46,56,48,48,52,55,93,44,91,45,57,50,46,54,50,48,49,56,49,44,51,55,46,56,57,50,53,50,49,93,44,91,45,57,50,46,56,53,53,51,56,52,44,51,55,46,56,57,53,55,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,54,51,48,44,34,98,101,100,115,34,58,52,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,50,49,55,44,52,49,46,52,56,57,48,49,51,93,44,91,45,56,48,46,53,49,57,48,52,56,44,52,49,46,49,51,51,51,57,52,93,44,91,45,56,48,46,53,49,57,48,51,55,44,52,49,46,49,50,53,48,57,51,93,44,91,45,56,48,46,50,53,55,57,51,51,44,52,49,46,49,50,56,49,54,53,93,44,91,45,56,48,46,48,57,56,50,57,52,44,52,49,46,48,55,49,48,53,52,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,49,55,49,56,54,49,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,52,57,48,48,52,57,93,44,91,45,56,48,46,53,49,57,50,49,55,44,52,49,46,52,56,57,48,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,114,97,105,103,104,101,97,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,55,48,49,44,34,98,101,100,115,34,58,55,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,55,55,56,57,44,51,53,46,57,57,53,54,56,51,93,44,91,45,57,48,46,51,56,55,51,55,56,44,51,53,46,57,54,52,55,48,56,93,44,91,45,57,48,46,56,53,50,48,54,52,44,51,53,46,57,54,56,48,57,50,93,44,91,45,57,48,46,56,55,50,55,56,53,44,51,53,46,56,56,48,56,55,93,44,91,45,57,49,46,48,51,50,52,57,57,44,51,53,46,56,56,53,48,55,93,44,91,45,57,49,46,48,51,54,57,54,55,44,51,53,46,55,48,56,52,49,56,93,44,91,45,57,48,46,50,56,54,55,51,54,44,51,53,46,54,57,57,57,49,52,93,44,91,45,57,48,46,50,56,56,57,52,55,44,51,53,46,57,57,54,52,49,93,44,91,45,57,48,46,51,55,55,56,57,44,51,53,46,57,57,53,54,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,48,50,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,55,55,50,51,51,44,51,57,46,50,57,50,55,57,54,93,44,91,45,57,51,46,52,57,54,51,55,55,44,51,56,46,57,52,50,56,51,55,93,44,91,45,57,51,46,48,53,48,52,53,51,44,51,56,46,57,50,56,50,52,52,93,44,91,45,57,50,46,57,51,52,53,54,57,44,51,57,46,48,54,52,53,52,55,93,44,91,45,57,50,46,56,52,57,50,50,52,44,51,57,46,50,50,54,50,49,56,93,44,91,45,57,51,46,48,55,50,57,49,53,44,51,57,46,51,51,53,53,50,93,44,91,45,57,51,46,49,48,52,52,56,53,44,51,57,46,51,56,51,54,53,54,93,44,91,45,57,51,46,50,50,49,50,48,52,44,51,57,46,51,51,49,54,53,54,93,44,91,45,57,51,46,52,55,55,50,51,51,44,51,57,46,50,57,50,55,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,50,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,53,48,56,57,49,44,51,56,46,50,53,54,49,53,54,93,44,91,45,56,56,46,51,55,48,51,55,53,44,51,56,46,50,53,53,51,49,57,93,44,91,45,56,56,46,51,55,52,53,50,49,44,51,55,46,57,48,56,51,57,49,93,44,91,45,56,56,46,48,57,51,48,52,57,44,51,55,46,56,57,49,54,48,52,93,44,91,45,56,56,46,48,49,51,51,53,53,44,51,55,46,56,57,52,56,53,52,93,44,91,45,56,56,46,48,49,51,49,49,56,44,51,56,46,49,48,51,53,50,55,93,44,91,45,56,55,46,57,49,48,57,50,52,44,51,56,46,49,54,50,53,53,55,93,44,91,45,56,55,46,57,56,51,55,51,50,44,51,56,46,50,51,48,51,53,52,93,44,91,45,56,55,46,57,56,55,57,49,49,44,51,56,46,50,53,54,57,53,55,93,44,91,45,56,55,46,57,57,48,54,50,56,44,51,56,46,50,53,57,54,50,57,93,44,91,45,56,56,46,49,53,48,56,57,49,44,51,56,46,50,53,54,49,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,101,32,87,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,52,56,55,54,52,44,52,48,46,50,56,50,48,51,56,93,44,91,45,56,57,46,49,52,52,55,54,52,44,52,48,46,48,52,56,56,53,51,93,44,91,45,56,56,46,55,52,53,49,54,52,44,52,48,46,48,53,53,49,57,49,93,44,91,45,56,56,46,53,55,52,56,56,53,44,52,48,46,50,56,49,53,48,49,93,44,91,45,56,57,46,49,52,56,55,54,52,44,52,48,46,50,56,50,48,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,32,80,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,51,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,56,51,52,57,54,57,44,52,48,46,49,50,55,56,52,50,93,44,91,45,49,49,53,46,55,57,52,56,54,52,44,51,57,46,56,53,51,49,48,52,93,44,91,45,49,49,53,46,56,51,51,49,48,49,44,51,57,46,55,50,57,52,49,50,93,44,91,45,49,49,53,46,56,49,51,52,55,54,44,51,57,46,53,57,51,53,50,49,93,44,91,45,49,49,53,46,57,48,55,54,53,57,44,51,57,46,52,54,52,52,51,50,93,44,91,45,49,49,53,46,57,48,55,48,55,49,44,51,57,46,49,54,49,56,52,56,93,44,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,54,55,55,51,50,50,93,44,91,45,49,49,52,46,48,52,57,56,48,55,44,51,56,46,54,55,55,51,54,53,93,44,91,45,49,49,52,46,48,52,55,54,52,57,44,51,57,46,53,52,50,55,52,50,93,44,91,45,49,49,52,46,48,52,55,48,50,54,44,51,57,46,57,48,54,48,57,55,93,44,91,45,49,49,52,46,48,52,54,54,49,52,44,52,48,46,49,49,54,57,51,54,93,44,91,45,49,49,52,46,57,48,49,56,50,53,44,52,48,46,49,50,50,48,56,50,93,44,91,45,49,49,53,46,56,51,52,57,54,57,44,52,48,46,49,50,55,56,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,71,111,111,100,104,117,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,50,49,55,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,51,50,48,52,51,44,52,52,46,55,49,52,51,52,53,93,44,91,45,57,50,46,55,57,50,55,49,53,44,52,52,46,53,52,51,50,52,93,44,91,45,57,50,46,57,49,56,57,55,55,44,52,52,46,53,52,51,50,53,93,44,91,45,57,51,46,48,51,57,52,56,53,44,52,52,46,52,55,49,56,55,49,93,44,91,45,57,51,46,48,52,49,49,53,57,44,52,52,46,49,57,54,55,50,54,93,44,91,45,57,50,46,54,55,56,55,49,55,44,52,52,46,49,57,53,53,49,54,93,44,91,45,57,50,46,53,53,48,56,55,49,44,52,52,46,49,57,52,57,49,54,93,44,91,45,57,50,46,53,53,48,55,51,51,44,52,52,46,51,54,56,53,50,49,93,44,91,45,57,50,46,52,51,48,50,55,55,44,52,52,46,52,53,53,51,50,49,93,44,91,45,57,50,46,50,52,50,48,49,44,52,52,46,52,53,52,50,53,52,93,44,91,45,57,50,46,51,49,54,49,54,57,44,52,52,46,53,52,49,48,48,57,93,44,91,45,57,50,46,54,50,50,53,51,55,44,52,52,46,54,49,54,48,53,52,93,44,91,45,57,50,46,55,51,50,48,52,51,44,52,52,46,55,49,52,51,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,83,119,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,53,52,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,53,52,50,53,55,44,51,53,46,54,57,53,53,57,51,93,44,91,45,56,51,46,52,56,53,56,51,52,44,51,53,46,53,54,56,49,57,93,44,91,45,56,51,46,54,54,50,57,57,57,44,51,53,46,53,54,57,52,54,56,93,44,91,45,56,51,46,55,55,48,53,56,55,44,51,53,46,53,54,49,55,52,51,93,44,91,45,56,51,46,57,53,50,57,55,50,44,51,53,46,52,54,48,53,53,50,93,44,91,45,56,51,46,53,56,50,53,53,56,44,51,53,46,52,49,48,52,56,57,93,44,91,45,56,51,46,54,56,48,49,49,52,44,51,53,46,50,55,57,53,93,44,91,45,56,51,46,51,51,57,54,48,57,44,51,53,46,51,51,48,57,57,51,93,44,91,45,56,51,46,51,54,51,55,54,54,44,51,53,46,52,50,54,57,50,51,93,44,91,45,56,51,46,49,56,54,51,50,50,44,51,53,46,53,49,52,51,54,56,93,44,91,45,56,51,46,49,56,50,57,57,57,44,51,53,46,54,55,48,54,50,53,93,44,91,45,56,51,46,50,53,52,50,53,55,44,51,53,46,54,57,53,53,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,80,97,115,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,48,53,57,51,44,34,98,101,100,115,34,58,49,51,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,52,54,57,52,44,50,56,46,52,55,56,51,57,55,93,44,91,45,56,50,46,50,53,51,52,51,57,44,50,56,46,52,51,52,56,50,52,93,44,91,45,56,50,46,55,53,51,57,55,55,44,50,56,46,52,51,51,50,57,93,44,91,45,56,50,46,55,57,53,50,55,54,44,50,56,46,50,57,57,55,54,52,93,44,91,45,56,50,46,56,55,56,57,50,53,44,50,56,46,50,53,53,53,50,56,93,44,91,45,56,50,46,57,48,52,54,49,53,44,50,56,46,49,55,49,56,55,50,93,44,91,45,56,50,46,54,53,49,49,54,53,44,50,56,46,49,55,51,50,54,54,93,44,91,45,56,50,46,49,48,53,56,53,51,44,50,56,46,49,55,49,54,53,93,44,91,45,56,50,46,48,53,53,56,49,57,44,50,56,46,51,49,50,55,57,52,93,44,91,45,56,50,46,48,53,52,54,57,52,44,50,56,46,52,55,56,51,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,83,117,109,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,57,57,57,44,34,98,101,100,115,34,58,51,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,49,49,54,57,55,44,50,56,46,57,54,48,51,57,49,93,44,91,45,56,50,46,49,55,49,52,48,50,44,50,56,46,55,56,57,56,52,56,93,44,91,45,56,50,46,50,54,51,48,53,50,44,50,56,46,54,54,55,54,51,52,93,44,91,45,56,50,46,48,53,52,54,57,52,44,50,56,46,52,55,56,51,57,55,93,44,91,45,56,50,46,48,53,53,56,49,57,44,50,56,46,51,49,50,55,57,52,93,44,91,45,56,49,46,57,53,55,54,52,49,44,50,56,46,51,52,53,49,56,93,44,91,45,56,49,46,57,53,52,49,57,44,50,56,46,57,54,48,48,53,51,93,44,91,45,56,50,46,51,49,49,54,57,55,44,50,56,46,57,54,48,51,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,78,97,115,115,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,54,53,54,52,44,34,98,101,100,115,34,58,52,55,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,54,49,50,56,56,53,44,52,48,46,57,53,48,57,52,51,93,44,91,45,55,51,46,55,52,56,48,54,44,52,48,46,56,55,49,55,50,49,93,44,91,45,55,51,46,55,55,56,57,53,56,44,52,48,46,56,49,49,55,49,51,93,44,91,45,55,51,46,55,48,49,54,51,51,44,52,48,46,55,53,50,52,57,51,93,44,91,45,55,51,46,55,54,56,55,56,49,44,52,48,46,53,51,51,55,52,55,93,44,91,45,55,51,46,52,50,53,51,49,44,52,48,46,53,51,52,50,54,53,93,44,91,45,55,51,46,52,50,51,50,54,57,44,52,48,46,54,55,48,56,57,51,93,44,91,45,55,51,46,52,57,55,52,48,53,44,52,48,46,57,50,51,55,54,54,93,44,91,45,55,51,46,52,51,49,57,49,57,44,52,48,46,57,56,57,48,48,57,93,44,91,45,55,51,46,54,49,50,56,56,53,44,52,48,46,57,53,48,57,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,83,116,101,101,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,56,52,50,52,56,44,52,55,46,54,55,50,51,48,51,93,44,91,45,57,55,46,57,56,54,52,50,56,44,52,55,46,51,50,54,50,48,49,93,44,91,45,57,55,46,57,54,49,50,49,49,44,52,55,46,50,52,48,51,50,53,93,44,91,45,57,55,46,55,48,53,57,51,53,44,52,55,46,50,51,57,57,55,55,93,44,91,45,57,55,46,52,53,49,53,49,50,44,52,55,46,50,51,57,48,54,49,93,44,91,45,57,55,46,52,55,52,50,50,56,44,52,55,46,51,50,52,54,50,49,93,44,91,45,57,55,46,52,55,50,55,52,53,44,52,55,46,54,55,50,48,53,49,93,44,91,45,57,55,46,56,56,50,50,55,49,44,52,55,46,54,55,50,49,55,57,93,44,91,45,57,55,46,57,56,52,50,52,56,44,52,55,46,54,55,50,51,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,86,97,110,100,101,114,98,117,114,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,51,49,51,44,34,98,101,100,115,34,58,57,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,56,56,51,55,52,44,51,56,46,49,54,56,52,49,57,93,44,91,45,56,55,46,55,48,48,55,54,50,44,51,55,46,56,57,55,53,53,54,93,44,91,45,56,55,46,52,53,49,49,57,57,44,51,55,46,57,52,48,57,53,52,93,44,91,45,56,55,46,52,54,55,50,56,52,44,51,56,46,49,54,53,52,48,51,93,44,91,45,56,55,46,54,56,56,51,55,52,44,51,56,46,49,54,56,52,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,55,56,49,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,54,57,49,57,50,44,51,56,46,54,57,57,51,50,52,93,44,91,45,57,49,46,51,54,55,52,56,50,44,51,56,46,50,48,57,55,52,49,93,44,91,45,57,49,46,48,57,53,55,54,53,44,51,56,46,50,48,52,48,56,51,93,44,91,45,57,48,46,55,56,48,49,56,53,44,51,56,46,50,48,52,49,49,50,93,44,91,45,57,48,46,55,51,54,51,49,49,44,51,56,46,52,54,54,54,52,51,93,44,91,45,57,48,46,55,51,50,51,50,56,44,51,56,46,54,51,57,51,48,50,93,44,91,45,57,48,46,57,49,54,53,53,52,44,51,56,46,53,51,52,55,50,53,93,44,91,45,57,48,46,57,54,52,52,54,49,44,51,56,46,53,52,55,53,52,53,93,44,91,45,57,49,46,49,51,50,53,51,53,44,51,56,46,53,57,56,50,55,57,93,44,91,45,57,49,46,51,49,51,48,57,51,44,51,56,46,55,48,54,55,49,53,93,44,91,45,57,49,46,51,54,57,49,57,50,44,51,56,46,54,57,57,51,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,118,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,48,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,51,51,48,54,53,44,51,54,46,50,54,52,56,55,51,93,44,91,45,56,50,46,48,56,49,48,55,57,44,51,54,46,49,48,51,49,55,93,44,91,45,56,50,46,48,51,52,49,48,52,44,51,53,46,57,52,50,48,53,55,93,44,91,45,56,49,46,57,56,49,57,53,52,44,51,53,46,57,49,49,51,54,49,93,44,91,45,56,49,46,57,52,51,49,56,56,44,51,53,46,57,54,48,48,53,93,44,91,45,56,49,46,56,48,55,49,54,50,44,51,53,46,57,54,49,57,53,53,93,44,91,45,56,49,46,55,51,53,54,55,51,44,51,54,46,48,54,55,53,56,52,93,44,91,45,56,49,46,56,49,48,53,49,54,44,51,54,46,49,49,49,53,49,49,93,44,91,45,56,49,46,57,49,56,49,49,57,44,51,54,46,50,56,55,49,50,57,93,44,91,45,56,49,46,57,51,51,48,54,53,44,51,54,46,50,54,52,56,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,87,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,53,53,54,44,34,98,101,100,115,34,58,51,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,55,49,50,54,44,51,57,46,51,52,49,57,50,52,93,44,91,45,56,49,46,52,53,54,49,52,51,44,51,57,46,52,48,57,50,55,52,93,44,91,45,56,49,46,54,55,55,53,57,53,44,51,57,46,50,55,52,49,55,49,93,44,91,45,56,49,46,55,50,53,54,50,50,44,51,57,46,50,49,53,57,48,53,93,44,91,45,56,49,46,55,53,54,48,56,44,51,57,46,49,56,48,53,54,93,44,91,45,56,49,46,55,52,55,50,53,52,44,51,57,46,48,57,53,51,55,57,93,44,91,45,56,49,46,53,56,49,52,52,55,44,51,57,46,48,50,54,49,55,57,93,44,91,45,56,49,46,52,50,52,57,48,54,44,51,57,46,49,51,53,54,55,57,93,44,91,45,56,49,46,50,57,56,48,49,55,44,51,57,46,49,56,53,53,55,50,93,44,91,45,56,49,46,50,51,57,52,55,55,44,51,57,46,50,54,56,51,50,56,93,44,91,45,56,49,46,51,55,49,50,54,44,51,57,46,51,52,49,57,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,97,121,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,57,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,50,52,53,56,51,44,52,54,46,49,53,52,54,49,54,93,44,91,45,57,48,46,57,50,55,48,53,55,44,52,54,46,53,56,53,52,49,53,93,44,91,45,57,48,46,56,51,48,50,49,54,44,52,54,46,54,54,51,52,55,50,93,44,91,45,57,48,46,56,51,56,50,55,54,44,52,54,46,55,51,57,57,57,50,93,44,91,45,57,48,46,55,51,51,55,53,54,44,52,54,46,56,56,54,56,57,53,93,44,91,45,57,48,46,56,54,55,51,49,56,44,52,55,46,50,49,48,57,54,50,93,44,91,45,57,49,46,53,52,57,51,56,53,44,52,54,46,56,57,51,50,49,51,93,44,91,45,57,49,46,53,53,49,50,56,50,44,52,54,46,49,53,55,48,52,53,93,44,91,45,57,48,46,57,50,52,53,56,51,44,52,54,46,49,53,52,54,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,83,116,101,119,97,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,48,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,53,51,50,57,51,44,51,54,46,52,57,55,48,53,56,93,44,91,45,56,55,46,57,57,48,57,50,44,51,54,46,51,54,48,49,51,51,93,44,91,45,56,55,46,57,56,48,55,52,44,51,54,46,51,53,51,51,48,55,93,44,91,45,56,55,46,56,50,49,56,49,54,44,51,54,46,51,50,56,55,50,52,93,44,91,45,56,55,46,53,57,50,51,53,56,44,51,54,46,51,54,55,54,54,51,93,44,91,45,56,55,46,54,52,49,49,53,55,44,51,54,46,54,51,56,49,48,57,93,44,91,45,56,55,46,54,57,52,49,57,50,44,51,54,46,54,51,55,49,48,56,93,44,91,45,56,56,46,48,55,48,53,52,49,44,51,54,46,54,55,56,50,53,53,93,44,91,45,56,56,46,48,53,51,50,57,51,44,51,54,46,52,57,55,48,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,80,111,114,116,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,53,57,57,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,52,52,57,51,49,44,52,52,46,54,56,52,57,52,53,93,44,91,45,56,57,46,56,52,52,53,52,54,44,52,52,46,53,49,49,53,48,51,93,44,91,45,56,57,46,55,50,54,55,50,53,44,52,52,46,53,49,49,49,57,50,93,44,91,45,56,57,46,55,50,52,55,52,54,44,52,52,46,50,52,55,54,55,56,93,44,91,45,56,57,46,53,57,55,57,56,44,52,52,46,50,52,53,55,50,53,93,44,91,45,56,57,46,50,50,52,56,49,51,44,52,52,46,50,52,51,51,57,51,93,44,91,45,56,57,46,50,50,51,55,52,53,44,52,52,46,54,56,49,51,54,53,93,44,91,45,56,57,46,56,52,52,57,51,49,44,52,52,46,54,56,52,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,76,101,120,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,51,49,54,44,34,98,101,100,115,34,58,53,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,51,56,57,54,49,44,51,52,46,49,57,55,53,56,55,93,44,91,45,56,49,46,52,55,49,57,55,50,44,51,52,46,48,55,54,53,53,50,93,44,91,45,56,49,46,53,55,49,52,56,55,44,51,51,46,56,55,55,51,49,56,93,44,91,45,56,49,46,52,49,53,51,48,56,44,51,51,46,55,51,50,49,54,49,93,44,91,45,56,49,46,49,56,55,50,55,49,44,51,51,46,54,53,50,57,51,55,93,44,91,45,56,49,46,48,52,50,56,53,52,44,51,51,46,55,48,55,49,51,49,93,44,91,45,56,49,46,48,49,50,51,51,44,51,51,46,56,56,48,48,56,93,44,91,45,56,49,46,48,54,55,54,49,53,44,51,52,46,48,48,56,57,53,51,93,44,91,45,56,49,46,50,48,49,56,51,57,44,51,52,46,48,57,55,49,54,56,93,44,91,45,56,49,46,50,55,53,56,52,53,44,51,52,46,48,57,55,51,56,49,93,44,91,45,56,49,46,51,51,56,57,54,49,44,51,52,46,49,57,55,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,110,101,32,65,114,117,110,100,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,55,54,57,54,44,34,98,101,100,115,34,58,54,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,57,55,48,56,53,44,51,57,46,50,49,52,48,57,50,93,44,91,45,55,54,46,56,52,48,51,54,50,44,51,57,46,49,48,51,49,52,50,93,44,91,45,55,54,46,54,57,56,50,54,56,44,51,56,46,57,56,51,54,52,55,93,44,91,45,55,54,46,54,56,54,51,53,56,44,51,56,46,55,52,56,52,55,53,93,44,91,45,55,54,46,52,54,51,54,51,54,44,51,56,46,55,49,49,48,57,57,93,44,91,45,55,54,46,52,51,54,52,57,50,44,51,56,46,56,48,55,51,57,55,93,44,91,45,55,54,46,51,53,49,55,51,44,51,57,46,48,53,54,50,51,50,93,44,91,45,55,54,46,51,52,57,52,55,57,44,51,57,46,49,53,54,54,50,51,93,44,91,45,55,54,46,53,50,57,52,56,54,44,51,57,46,50,49,56,52,48,56,93,44,91,45,55,54,46,54,49,56,54,49,50,44,51,57,46,50,51,55,51,57,56,93,44,91,45,55,54,46,54,57,55,48,56,53,44,51,57,46,50,49,52,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,70,111,110,100,32,100,117,32,76,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,51,49,53,44,34,98,101,100,115,34,58,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,56,53,54,57,55,44,52,51,46,56,57,53,49,56,52,93,44,91,45,56,56,46,56,56,54,48,53,50,44,52,51,46,54,51,51,53,52,93,44,91,45,56,56,46,52,48,49,48,52,49,44,52,51,46,54,51,48,57,51,51,93,44,91,45,56,56,46,52,48,48,52,50,54,44,52,51,46,53,52,51,53,51,50,93,44,91,45,56,56,46,49,54,48,56,55,51,44,52,51,46,53,52,50,57,52,51,93,44,91,45,56,56,46,49,54,50,50,55,52,44,52,51,46,56,57,49,53,49,49,93,44,91,45,56,56,46,49,54,49,54,53,52,44,52,51,46,57,51,55,54,56,51,93,44,91,45,56,56,46,52,48,52,49,56,55,44,52,51,46,57,51,56,50,93,44,91,45,56,56,46,52,48,51,49,57,53,44,52,51,46,56,57,50,57,55,55,93,44,91,45,56,56,46,56,56,53,54,57,55,44,52,51,46,56,57,53,49,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,52,53,55,51,51,50,44,51,56,46,55,51,57,49,54,57,93,44,91,45,56,48,46,53,48,56,54,53,53,44,51,56,46,54,52,53,53,53,51,93,44,91,45,56,48,46,54,53,48,55,56,54,44,51,56,46,53,50,54,53,57,93,44,91,45,56,48,46,54,48,57,51,55,56,44,51,56,46,51,53,56,54,48,54,93,44,91,45,56,48,46,52,51,54,53,49,52,44,51,56,46,50,54,55,51,51,52,93,44,91,45,56,48,46,51,54,48,48,52,56,44,51,56,46,50,50,53,56,52,53,93,44,91,45,56,48,46,51,51,48,50,54,55,44,51,56,46,51,51,53,55,53,56,93,44,91,45,56,48,46,50,52,53,53,49,56,44,51,56,46,51,56,56,52,53,55,93,44,91,45,56,48,46,49,56,51,57,51,49,44,51,56,46,53,50,53,51,56,54,93,44,91,45,56,48,46,50,56,48,48,53,57,44,51,56,46,54,57,52,56,54,55,93,44,91,45,56,48,46,51,57,51,48,54,51,44,51,56,46,55,50,55,53,55,49,93,44,91,45,56,48,46,52,53,55,51,51,50,44,51,56,46,55,51,57,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,75,101,119,97,117,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,53,56,48,52,56,44,52,52,46,54,55,55,48,53,52,93,44,91,45,56,55,46,55,54,54,48,50,54,44,52,52,46,51,50,55,49,56,52,93,44,91,45,56,54,46,57,50,51,52,48,51,44,52,52,46,51,50,56,56,50,53,93,44,91,45,56,54,46,56,52,54,57,50,56,44,52,52,46,53,49,57,52,50,57,93,44,91,45,56,54,46,55,55,56,51,57,56,44,52,52,46,54,55,53,50,49,57,93,44,91,45,56,55,46,55,53,56,48,52,56,44,52,52,46,54,55,55,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,54,57,34,44,34,78,65,77,69,34,58,34,80,97,114,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,53,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,52,50,57,56,50,44,51,52,46,55,52,55,51,54,49,93,44,91,45,49,48,51,46,48,52,51,55,54,50,44,51,52,46,51,49,50,55,53,93,44,91,45,49,48,50,46,54,49,53,49,53,44,51,52,46,51,49,50,56,57,49,93,44,91,45,49,48,50,46,53,50,53,54,51,49,44,51,52,46,51,49,51,48,51,52,93,44,91,45,49,48,50,46,53,50,53,49,56,52,44,51,52,46,55,52,54,57,51,49,93,44,91,45,49,48,51,46,48,52,50,57,56,50,44,51,52,46,55,52,55,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,87,111,111,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,48,48,51,48,49,44,51,54,46,57,57,57,52,54,55,93,44,91,45,57,57,46,52,53,54,50,48,51,44,51,54,46,57,57,57,52,55,49,93,44,91,45,57,57,46,50,57,53,49,56,54,44,51,54,46,56,49,57,53,54,54,93,44,91,45,57,57,46,49,51,57,56,53,53,44,51,54,46,55,56,51,48,52,93,44,91,45,57,56,46,57,53,57,57,55,51,44,51,54,46,53,57,56,57,57,49,93,44,91,45,57,56,46,57,54,48,51,51,52,44,51,54,46,53,48,54,57,49,52,93,44,91,45,57,56,46,54,50,53,51,54,49,44,51,54,46,51,57,50,53,57,53,93,44,91,45,57,56,46,53,51,51,54,49,55,44,51,54,46,52,54,51,50,51,93,44,91,45,57,56,46,53,52,52,54,54,49,44,51,54,46,57,57,56,55,53,57,93,44,91,45,57,57,46,48,48,48,51,48,49,44,51,54,46,57,57,57,52,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,69,108,108,105,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,50,52,56,48,53,44,51,56,46,49,55,53,49,49,52,93,44,91,45,56,51,46,49,51,53,48,48,56,44,51,56,46,50,52,50,48,51,55,93,44,91,45,56,51,46,50,52,52,51,48,54,44,51,56,46,49,57,50,51,56,93,44,91,45,56,51,46,50,54,51,50,56,57,44,51,56,46,49,49,53,51,56,54,93,44,91,45,56,51,46,49,57,52,52,52,53,44,51,56,46,48,49,48,54,52,57,93,44,91,45,56,51,46,48,50,50,49,49,53,44,51,56,46,48,48,55,48,52,55,93,44,91,45,56,50,46,56,56,57,48,53,57,44,51,56,46,49,49,49,53,56,55,93,44,91,45,56,50,46,57,50,52,56,48,53,44,51,56,46,49,55,53,49,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,114,107,115,104,105,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,51,50,56,44,34,98,101,100,115,34,58,51,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,53,50,52,50,57,44,52,50,46,53,49,48,48,49,55,93,44,91,45,55,51,46,53,48,56,50,49,44,52,50,46,48,56,54,49,51,52,93,44,91,45,55,51,46,52,57,55,48,49,56,44,52,50,46,48,52,57,54,50,52,93,44,91,45,55,51,46,52,56,55,51,49,57,44,52,50,46,48,52,57,53,50,53,93,44,91,45,55,51,46,48,53,51,50,56,56,44,52,50,46,48,51,57,56,54,53,93,44,91,45,55,51,46,48,48,48,49,55,51,44,52,50,46,51,49,50,54,55,56,93,44,91,45,55,50,46,57,55,53,52,48,57,44,52,50,46,53,53,54,48,51,55,93,44,91,45,55,50,46,57,53,49,48,51,57,44,52,50,46,54,52,49,48,48,54,93,44,91,45,55,51,46,48,50,51,48,49,53,44,52,50,46,55,52,49,49,51,53,93,44,91,45,55,51,46,50,54,52,56,50,55,44,52,50,46,55,52,53,56,53,49,93,44,91,45,55,51,46,51,53,50,52,50,57,44,52,50,46,53,49,48,48,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,104,97,114,105,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,55,56,48,57,56,44,51,57,46,54,49,53,54,51,50,93,44,91,45,57,51,46,50,55,53,57,51,50,44,51,57,46,52,56,52,51,55,49,93,44,91,45,57,51,46,49,48,52,52,56,53,44,51,57,46,51,56,51,54,53,54,93,44,91,45,57,51,46,48,55,50,57,49,53,44,51,57,46,51,51,53,53,50,93,44,91,45,57,50,46,56,52,57,50,50,52,44,51,57,46,50,50,54,50,49,56,93,44,91,45,57,50,46,55,57,48,51,54,57,44,51,57,46,51,52,51,53,56,54,93,44,91,45,57,50,46,55,48,55,51,54,55,44,51,57,46,51,50,49,54,49,52,93,44,91,45,57,50,46,54,57,50,49,52,57,44,51,57,46,54,49,48,50,54,53,93,44,91,45,57,50,46,54,56,57,51,51,49,44,51,57,46,54,57,56,48,57,52,93,44,91,45,57,50,46,56,53,55,57,50,44,51,57,46,54,57,57,57,56,53,93,44,91,45,57,51,46,50,54,54,57,54,56,44,51,57,46,55,48,51,53,54,50,93,44,91,45,57,51,46,50,55,56,48,57,56,44,51,57,46,54,49,53,54,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,82,105,111,32,66,108,97,110,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,54,53,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,52,51,57,51,56,54,44,52,48,46,50,50,51,51,55,57,93,44,91,45,49,48,56,46,49,49,51,49,55,57,44,52,48,46,50,50,49,54,55,93,44,91,45,49,48,57,46,48,53,48,57,52,57,44,52,48,46,50,50,50,54,52,55,93,44,91,45,49,48,57,46,48,53,49,50,50,55,44,51,57,46,54,54,48,52,54,54,93,44,91,45,49,48,56,46,53,53,52,54,50,55,44,51,57,46,54,53,48,49,54,52,93,44,91,45,49,48,56,46,53,53,52,55,50,50,44,51,57,46,54,57,51,54,52,93,44,91,45,49,48,55,46,57,51,56,53,52,54,44,51,57,46,54,57,52,52,54,52,93,44,91,45,49,48,55,46,57,51,56,53,48,50,44,51,57,46,56,50,52,57,57,54,93,44,91,45,49,48,55,46,52,51,49,55,55,44,51,57,46,56,50,56,51,55,55,93,44,91,45,49,48,55,46,51,49,56,55,53,49,44,51,57,46,57,49,52,57,54,56,93,44,91,45,49,48,55,46,51,49,54,57,57,51,44,52,48,46,48,57,48,55,54,53,93,44,91,45,49,48,55,46,48,51,55,51,54,51,44,52,48,46,48,57,49,53,51,56,93,44,91,45,49,48,55,46,48,51,55,57,50,56,44,52,48,46,50,50,53,51,55,50,93,44,91,45,49,48,55,46,52,51,57,51,56,54,44,52,48,46,50,50,51,51,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,50,53,55,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,56,49,56,52,52,44,52,48,46,53,50,51,51,56,51,93,44,91,45,49,48,52,46,49,52,55,55,49,52,44,52,48,46,53,50,52,51,56,57,93,44,91,45,49,48,52,46,49,53,48,51,51,50,44,52,48,46,48,48,48,56,53,54,93,44,91,45,49,48,51,46,55,48,53,55,48,49,44,52,48,46,48,48,49,51,54,54,93,44,91,45,49,48,51,46,52,55,49,57,57,44,52,48,46,48,48,49,53,48,50,93,44,91,45,49,48,51,46,52,54,53,51,55,55,44,52,48,46,52,51,54,51,52,54,93,44,91,45,49,48,51,46,53,56,49,56,52,52,44,52,48,46,53,50,51,51,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,77,97,108,104,101,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,52,51,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,50,50,55,54,52,53,44,52,52,46,48,51,57,56,54,50,93,44,91,45,49,49,56,46,50,50,56,55,57,51,44,52,50,46,57,49,52,54,50,53,93,44,91,45,49,49,56,46,50,49,52,54,57,56,44,52,50,46,50,55,53,56,57,49,93,44,91,45,49,49,56,46,49,57,55,51,55,49,44,52,49,46,57,57,55,51,52,52,93,44,91,45,49,49,55,46,48,50,54,50,44,52,50,46,48,48,48,49,57,53,93,44,91,45,49,49,55,46,48,50,54,56,55,52,44,52,51,46,49,50,55,48,48,53,93,44,91,45,49,49,55,46,48,50,54,53,51,56,44,52,51,46,54,56,48,56,48,50,93,44,91,45,49,49,55,46,48,51,50,50,56,57,44,52,51,46,56,50,56,55,54,55,93,44,91,45,49,49,54,46,57,56,51,56,50,55,44,52,51,46,56,56,48,48,52,54,93,44,91,45,49,49,54,46,56,57,55,55,57,44,52,52,46,49,53,50,53,57,93,44,91,45,49,49,55,46,49,49,57,56,54,49,44,52,52,46,50,55,56,50,55,50,93,44,91,45,49,49,55,46,50,50,48,48,52,56,44,52,52,46,51,48,49,52,48,52,93,44,91,45,49,49,55,46,52,56,55,48,49,52,44,52,52,46,51,48,48,51,49,55,93,44,91,45,49,49,55,46,52,56,54,55,52,52,44,52,52,46,51,56,55,50,52,54,93,44,91,45,49,49,55,46,53,57,48,56,52,57,44,52,52,46,52,52,52,53,55,51,93,44,91,45,49,49,55,46,57,55,49,55,56,55,44,52,52,46,52,52,51,56,52,57,93,44,91,45,49,49,56,46,49,53,50,57,52,53,44,52,52,46,50,55,48,54,56,52,93,44,91,45,49,49,56,46,50,51,50,50,49,52,44,52,52,46,50,53,54,49,50,57,93,44,91,45,49,49,56,46,50,50,55,54,52,53,44,52,52,46,48,51,57,56,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,77,105,100,100,108,101,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,54,54,57,56,44,34,98,101,100,115,34,58,50,49,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,52,54,51,50,57,49,44,52,48,46,53,57,57,49,56,55,93,44,91,45,55,52,46,52,53,57,56,54,51,44,52,48,46,52,57,49,48,52,54,93,44,91,45,55,52,46,54,50,48,50,52,44,52,48,46,51,55,51,55,52,57,93,44,91,45,55,52,46,52,56,52,57,54,50,44,52,48,46,50,53,51,51,50,53,93,44,91,45,55,52,46,51,57,51,52,51,56,44,52,48,46,50,55,57,53,52,56,93,44,91,45,55,52,46,50,52,55,56,57,52,44,52,48,46,52,48,54,54,48,53,93,44,91,45,55,52,46,50,50,56,49,53,51,44,52,48,46,52,55,55,51,57,57,93,44,91,45,55,52,46,50,48,51,54,56,56,44,52,48,46,53,57,50,54,57,49,93,44,91,45,55,52,46,52,54,51,50,57,49,44,52,48,46,53,57,57,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,82,117,115,115,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,55,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,51,55,53,44,51,57,46,49,51,51,49,50,49,93,44,91,45,57,57,46,48,52,50,54,50,54,44,51,56,46,54,57,54,56,48,55,93,44,91,45,57,57,46,48,51,50,57,55,49,44,51,56,46,54,57,54,55,53,57,93,44,91,45,57,56,46,52,56,54,49,48,56,44,51,56,46,54,57,54,56,55,56,93,44,91,45,57,56,46,52,56,52,56,54,49,44,51,56,46,56,55,48,55,57,49,93,44,91,45,57,56,46,52,56,57,57,57,55,44,51,57,46,49,51,50,54,57,55,93,44,91,45,57,57,46,48,51,55,53,44,51,57,46,49,51,51,49,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,54,54,49,48,49,44,52,49,46,49,52,56,53,50,52,93,44,91,45,56,57,46,51,53,56,52,51,55,44,52,49,46,49,48,51,56,52,57,93,44,91,45,56,57,46,49,54,50,50,51,55,44,52,49,46,49,48,52,48,48,56,93,44,91,45,56,57,46,49,54,51,55,48,53,44,52,49,46,51,49,48,49,56,55,93,44,91,45,56,57,46,51,51,52,57,48,49,44,52,49,46,51,48,48,56,55,55,93,44,91,45,56,57,46,52,54,54,51,56,57,44,52,49,46,50,51,51,56,55,50,93,44,91,45,56,57,46,52,54,54,49,48,49,44,52,49,46,49,52,56,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,72,97,97,107,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,56,50,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,48,49,46,51,50,56,50,52,53,44,52,52,46,54,57,48,57,53,54,93,44,91,45,49,48,49,46,53,51,49,48,51,53,44,52,52,46,53,54,55,56,55,53,93,44,91,45,49,48,49,46,55,49,53,48,51,56,44,52,52,46,53,55,57,52,56,51,93,44,91,45,49,48,49,46,55,56,48,55,51,51,44,52,52,46,53,51,54,52,51,54,93,44,91,45,49,48,50,46,48,48,48,52,51,50,44,52,52,46,53,49,49,54,54,51,93,44,91,45,49,48,50,46,48,48,49,48,54,56,44,52,52,46,53,49,48,57,50,54,93,44,91,45,49,48,50,46,48,48,55,51,51,54,44,52,51,46,57,57,52,53,51,93,44,91,45,49,48,49,46,48,54,52,48,54,56,44,52,51,46,57,57,52,57,50,57,93,44,91,45,49,48,49,46,48,52,54,57,49,54,44,52,52,46,49,54,56,52,56,52,93,44,91,45,49,48,49,46,49,54,54,55,53,51,44,52,52,46,49,54,56,48,56,53,93,44,91,45,49,48,49,46,49,53,52,53,49,54,44,52,52,46,54,56,57,57,52,55,93,44,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,52,56,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,48,53,51,56,56,44,51,54,46,54,52,48,49,56,52,93,44,91,45,56,54,46,50,50,56,52,51,52,44,51,54,46,52,56,55,52,55,50,93,44,91,45,56,54,46,49,54,56,50,54,49,44,51,54,46,52,52,52,50,57,51,93,44,91,45,56,53,46,57,55,56,56,57,51,44,51,54,46,52,50,54,48,55,51,93,44,91,45,56,53,46,56,50,56,48,50,54,44,51,54,46,52,49,49,56,51,54,93,44,91,45,56,53,46,56,49,51,56,56,53,44,51,54,46,52,57,57,52,55,51,93,44,91,45,56,53,46,55,56,56,55,50,54,44,51,54,46,54,50,50,48,52,56,93,44,91,45,56,53,46,57,55,54,52,49,56,44,51,54,46,54,50,56,52,57,51,93,44,91,45,56,54,46,50,48,53,51,56,56,44,51,54,46,54,52,48,49,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,108,101,98,117,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,52,48,53,50,44,51,53,46,55,49,50,49,57,93,44,91,45,57,50,46,50,53,50,55,53,57,44,51,53,46,51,54,51,55,49,56,93,44,91,45,57,50,46,49,49,49,52,54,51,44,51,53,46,51,54,50,55,50,53,93,44,91,45,57,49,46,56,53,49,57,53,56,44,51,53,46,51,53,56,50,56,55,93,44,91,45,57,49,46,55,57,51,57,53,56,44,51,53,46,53,51,52,49,49,52,93,44,91,45,57,49,46,56,51,55,49,55,57,44,51,53,46,55,48,52,57,51,50,93,44,91,45,57,50,46,50,52,48,53,50,44,51,53,46,55,49,50,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,52,48,51,44,34,98,101,100,115,34,58,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,57,54,56,53,51,44,51,50,46,48,53,49,48,52,57,93,44,91,45,56,53,46,57,57,53,53,54,51,44,51,49,46,57,54,55,53,53,52,93,44,91,45,56,54,46,49,57,49,51,55,57,44,51,49,46,57,54,54,52,53,51,93,44,91,45,56,54,46,49,52,56,51,51,57,44,51,49,46,55,57,48,57,53,49,93,44,91,45,56,54,46,49,52,53,56,57,53,44,51,49,46,54,49,55,55,52,49,93,44,91,45,56,53,46,55,56,57,49,52,50,44,51,49,46,54,49,55,57,54,52,93,44,91,45,56,53,46,55,52,56,50,53,49,44,51,49,46,54,49,56,48,52,56,93,44,91,45,56,53,46,54,54,50,54,57,50,44,51,49,46,55,56,51,51,49,57,93,44,91,45,56,53,46,54,53,55,54,54,56,44,51,49,46,56,56,48,50,55,53,93,44,91,45,56,53,46,55,57,49,48,52,55,44,51,49,46,56,56,48,51,53,55,93,44,91,45,56,53,46,55,57,48,48,52,56,44,51,49,46,57,54,55,50,53,52,93,44,91,45,56,53,46,56,57,51,54,53,50,44,51,50,46,48,52,55,51,53,49,93,44,91,45,56,53,46,57,57,54,56,53,51,44,51,50,46,48,53,49,48,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,52,52,51,56,54,44,52,53,46,49,48,55,54,53,49,93,44,91,45,49,49,54,46,50,56,53,57,54,57,44,52,53,46,49,50,56,55,51,50,93,44,91,45,49,49,54,46,51,52,50,56,55,54,44,52,53,46,50,54,55,56,55,50,93,44,91,45,49,49,54,46,54,56,55,49,55,55,44,52,53,46,50,54,55,54,52,51,93,44,91,45,49,49,54,46,55,56,51,56,50,57,44,52,53,46,48,55,56,50,54,51,93,44,91,45,49,49,54,46,56,57,57,55,49,49,44,52,52,46,56,52,48,54,48,57,93,44,91,45,49,49,54,46,54,50,53,48,51,52,44,52,52,46,56,51,56,57,53,50,93,44,91,45,49,49,54,46,54,50,52,49,53,51,44,52,52,46,54,54,51,50,54,57,93,44,91,45,49,49,54,46,53,50,57,49,54,55,44,52,52,46,54,49,53,49,53,52,93,44,91,45,49,49,54,46,53,50,56,56,57,56,44,52,52,46,52,57,49,53,52,53,93,44,91,45,49,49,54,46,50,57,57,56,55,54,44,52,52,46,52,52,52,53,55,54,93,44,91,45,49,49,54,46,49,53,55,48,50,50,44,52,52,46,52,57,56,57,50,56,93,44,91,45,49,49,54,46,49,53,55,54,48,50,44,52,52,46,55,48,51,55,52,51,93,44,91,45,49,49,54,46,49,57,55,48,49,49,44,52,52,46,56,54,52,50,49,54,93,44,91,45,49,49,54,46,48,57,48,49,52,51,44,52,53,46,48,54,52,48,49,51,93,44,91,45,49,49,54,46,49,52,52,51,56,54,44,52,53,46,49,48,55,54,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,114,105,115,116,111,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,56,57,48,53,44,34,98,101,100,115,34,58,49,49,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,51,56,49,50,57,57,44,52,49,46,57,56,53,48,56,52,93,44,91,45,55,49,46,51,49,55,56,55,51,44,52,49,46,55,55,54,49,57,57,93,44,91,45,55,49,46,50,48,56,51,55,49,44,52,49,46,54,57,48,53,57,56,93,44,91,45,55,49,46,49,51,50,53,53,55,44,52,49,46,54,54,48,51,54,51,93,44,91,45,55,49,46,48,56,56,53,55,49,44,52,49,46,52,51,49,51,49,53,93,44,91,45,55,49,46,48,53,49,56,53,52,44,52,49,46,52,49,54,55,50,57,93,44,91,45,55,48,46,55,53,56,52,54,52,44,52,49,46,53,54,48,57,51,49,93,44,91,45,55,48,46,55,53,50,52,50,52,44,52,49,46,53,54,53,56,53,49,93,44,91,45,55,48,46,56,51,57,49,55,53,44,52,49,46,54,49,52,55,54,49,93,44,91,45,55,48,46,56,56,54,52,51,57,44,52,49,46,55,54,48,50,51,50,93,44,91,45,55,49,46,48,52,57,52,56,53,44,52,49,46,57,54,51,48,57,52,93,44,91,45,55,49,46,48,56,48,52,56,51,44,52,50,46,48,57,53,53,51,57,93,44,91,45,55,49,46,51,56,49,50,57,57,44,52,49,46,57,56,53,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,83,99,104,117,121,108,107,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,53,53,53,44,34,98,101,100,115,34,58,51,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,50,48,55,56,50,55,44,52,48,46,57,52,57,55,52,93,44,91,45,55,54,46,51,56,48,49,53,50,44,52,48,46,55,55,53,53,49,49,93,44,91,45,55,54,46,55,48,49,54,50,52,44,52,48,46,54,53,56,48,56,50,93,44,91,45,55,54,46,53,51,53,52,49,52,44,52,48,46,53,53,53,49,53,55,93,44,91,45,55,54,46,52,52,48,49,56,49,44,52,48,46,52,57,53,57,53,50,93,44,91,45,55,54,46,49,55,49,54,50,52,44,52,48,46,53,51,52,57,52,55,93,44,91,45,55,53,46,56,57,49,52,55,51,44,52,48,46,54,55,55,50,55,93,44,91,45,55,53,46,55,53,55,56,48,55,44,52,48,46,55,51,53,52,49,52,93,44,91,45,55,53,46,57,57,55,51,52,56,44,52,48,46,57,49,50,57,56,53,93,44,91,45,55,54,46,50,48,55,56,50,55,44,52,48,46,57,52,57,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,87,101,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,48,54,57,51,49,49,44,52,55,46,56,52,55,52,51,49,93,44,91,45,49,48,48,46,48,51,50,56,48,55,44,52,55,46,54,55,51,54,54,57,93,44,91,45,49,48,48,46,48,51,51,50,57,50,44,52,55,46,51,50,55,49,54,53,93,44,91,45,57,57,46,52,56,49,48,57,53,44,52,55,46,51,50,55,48,50,55,93,44,91,45,57,57,46,50,54,54,50,49,53,44,52,55,46,51,50,54,57,57,57,93,44,91,45,57,57,46,50,54,53,55,57,56,44,52,55,46,53,56,55,54,93,44,91,45,57,57,46,50,57,55,50,48,50,44,52,55,46,56,52,54,56,51,52,93,44,91,45,57,57,46,56,49,50,49,54,55,44,52,55,46,56,52,55,50,53,55,93,44,91,45,49,48,48,46,48,54,57,51,49,49,44,52,55,46,56,52,55,52,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,108,101,118,101,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,49,53,57,44,34,98,101,100,115,34,58,51,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,54,56,49,48,50,44,51,53,46,49,56,48,54,49,49,93,44,91,45,56,49,46,51,54,54,54,44,51,53,46,49,54,52,56,56,51,93,44,91,45,56,49,46,51,50,56,48,51,55,44,51,53,46,49,54,51,52,54,55,93,44,91,45,56,49,46,51,53,54,54,56,50,44,51,53,46,51,51,48,54,48,52,93,44,91,45,56,49,46,52,53,53,54,44,51,53,46,52,49,57,56,49,49,93,44,91,45,56,49,46,53,51,55,53,57,57,44,51,53,46,53,54,52,50,50,56,93,44,91,45,56,49,46,54,57,49,57,56,57,44,51,53,46,53,56,48,48,52,49,93,44,91,45,56,49,46,55,48,50,56,53,51,44,51,53,46,51,53,55,51,48,52,93,44,91,45,56,49,46,55,54,56,49,48,50,44,51,53,46,49,56,48,54,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,111,116,32,83,112,114,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,50,48,44,34,98,101,100,115,34,58,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,57,51,49,57,55,44,51,52,46,53,48,51,54,48,54,93,44,91,45,57,50,46,57,49,53,48,55,57,44,51,52,46,53,48,54,49,49,52,93,44,91,45,57,50,46,57,52,56,48,55,49,44,51,52,46,51,56,57,50,53,53,93,44,91,45,57,51,46,52,48,55,50,50,49,44,51,52,46,51,57,55,52,52,55,93,44,91,45,57,51,46,52,48,56,49,50,52,44,51,52,46,51,51,57,53,50,55,93,44,91,45,57,51,46,51,53,54,56,52,44,51,52,46,50,56,48,51,48,54,93,44,91,45,57,51,46,48,51,53,48,51,57,44,51,52,46,50,51,54,54,54,52,93,44,91,45,57,51,46,48,52,50,48,50,53,44,51,52,46,49,53,57,56,53,50,93,44,91,45,57,50,46,56,56,54,50,56,53,44,51,52,46,49,53,53,56,55,55,93,44,91,45,57,50,46,54,55,56,51,56,51,44,51,52,46,49,52,57,54,50,50,93,44,91,45,57,50,46,54,54,56,55,49,49,44,51,52,46,52,49,52,50,51,55,93,44,91,45,57,50,46,55,57,51,49,57,55,44,51,52,46,53,48,51,54,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,70,114,101,100,101,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,52,55,50,44,34,98,101,100,115,34,58,50,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,54,57,49,52,53,44,51,57,46,55,50,48,48,49,56,93,44,91,45,55,55,46,53,55,48,49,56,50,44,51,57,46,54,49,57,57,57,56,93,44,91,45,55,55,46,54,55,55,49,54,52,44,51,57,46,51,50,52,53,51,52,93,44,91,45,55,55,46,53,54,56,55,53,51,44,51,57,46,51,48,54,52,52,55,93,44,91,45,55,55,46,52,53,56,56,48,56,44,51,57,46,50,50,48,50,55,93,44,91,45,55,55,46,49,54,56,56,48,49,44,51,57,46,51,53,51,53,48,50,93,44,91,45,55,55,46,49,54,56,48,56,44,51,57,46,51,53,51,57,53,55,93,44,91,45,55,55,46,49,48,54,56,51,57,44,51,57,46,52,57,49,54,54,49,93,44,91,45,55,55,46,50,57,57,55,55,44,51,57,46,54,49,50,50,56,52,93,44,91,45,55,55,46,50,49,55,48,50,52,44,51,57,46,55,49,57,56,54,49,93,44,91,45,55,55,46,52,53,57,49,51,52,44,51,57,46,55,49,57,57,56,52,93,44,91,45,55,55,46,52,54,57,49,52,53,44,51,57,46,55,50,48,48,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,83,99,104,117,121,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,54,52,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,57,57,54,51,53,44,52,48,46,49,56,51,56,49,50,93,44,91,45,57,48,46,52,53,49,57,49,54,44,52,48,46,49,56,56,56,48,51,93,44,91,45,57,48,46,52,53,48,50,50,55,44,52,48,46,50,55,54,51,51,53,93,44,91,45,57,48,46,57,48,57,55,53,54,44,52,48,46,50,56,52,51,57,52,93,44,91,45,57,48,46,57,49,49,57,54,57,44,52,48,46,49,57,51,48,56,56,93,44,91,45,57,48,46,57,49,51,52,54,57,44,52,48,46,49,48,52,52,53,53,93,44,91,45,57,48,46,54,57,54,51,53,55,44,52,48,46,49,48,51,57,53,93,44,91,45,57,48,46,54,48,55,49,51,52,44,51,57,46,57,56,49,54,53,56,93,44,91,45,57,48,46,53,49,51,55,52,55,44,51,57,46,57,56,55,56,57,49,93,44,91,45,57,48,46,51,53,52,53,50,52,44,52,48,46,49,50,52,50,49,55,93,44,91,45,57,48,46,49,57,57,54,51,53,44,52,48,46,49,56,51,56,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,77,111,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,55,52,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,54,51,57,50,48,53,44,51,56,46,51,50,54,56,56,93,44,91,45,49,49,57,46,53,55,54,52,57,54,44,51,56,46,49,53,55,54,54,49,93,44,91,45,49,49,57,46,51,52,57,56,52,53,44,51,56,46,48,56,53,53,54,54,93,44,91,45,49,49,57,46,51,48,56,51,56,57,44,51,55,46,57,52,54,56,50,52,93,44,91,45,49,49,57,46,50,48,48,48,56,51,44,51,55,46,56,56,52,53,50,55,93,44,91,45,49,49,57,46,50,54,56,57,55,57,44,51,55,46,55,51,57,50,51,93,44,91,45,49,49,57,46,49,50,52,51,49,50,44,51,55,46,55,51,51,57,52,52,93,44,91,45,49,49,57,46,48,50,50,51,54,51,44,51,55,46,53,56,53,55,51,55,93,44,91,45,49,49,56,46,55,55,53,48,49,52,44,51,55,46,52,54,51,48,53,50,93,44,91,45,49,49,55,46,56,51,50,55,50,54,44,51,55,46,52,54,52,57,50,57,93,44,91,45,49,49,56,46,52,50,56,49,52,52,44,51,55,46,56,57,54,50,50,93,44,91,45,49,49,57,46,49,53,54,57,55,56,44,51,56,46,52,49,52,55,52,54,93,44,91,45,49,49,57,46,51,50,56,51,57,56,44,51,56,46,53,51,52,55,57,50,93,44,91,45,49,49,57,46,53,56,53,52,51,55,44,51,56,46,55,49,51,50,49,50,93,44,91,45,49,49,57,46,54,49,57,48,54,54,44,51,56,46,54,48,51,53,50,57,93,44,91,45,49,49,57,46,53,52,54,48,57,50,44,51,56,46,52,57,57,51,53,93,44,91,45,49,49,57,46,54,51,57,50,48,53,44,51,56,46,51,50,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,84,117,111,108,117,109,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,57,51,50,44,34,98,101,100,115,34,58,49,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,49,57,57,53,49,44,51,56,46,52,51,51,53,50,49,93,44,91,45,49,50,48,46,49,55,54,54,49,51,44,51,56,46,51,55,51,53,49,93,44,91,45,49,50,48,46,53,49,52,57,53,50,44,51,55,46,57,53,51,51,57,93,44,91,45,49,50,48,46,54,53,51,50,55,52,44,51,55,46,56,51,49,56,53,56,93,44,91,45,49,50,48,46,51,56,55,54,49,51,44,51,55,46,54,51,51,55,48,52,93,44,91,45,49,50,48,46,51,52,53,52,51,55,44,51,55,46,55,50,52,55,56,55,93,44,91,45,49,50,48,46,48,50,54,53,57,51,44,51,55,46,56,49,49,56,55,55,93,44,91,45,49,49,57,46,57,51,56,52,49,52,44,51,55,46,55,54,51,48,50,54,93,44,91,45,49,49,57,46,56,48,53,52,57,56,44,51,55,46,55,53,57,54,49,56,93,44,91,45,49,49,57,46,54,54,55,50,48,51,44,51,55,46,56,48,49,50,50,52,93,44,91,45,49,49,57,46,53,51,51,57,57,57,44,51,55,46,57,48,50,57,50,50,93,44,91,45,49,49,57,46,51,48,56,57,57,53,44,51,55,46,55,55,55,57,56,54,93,44,91,45,49,49,57,46,50,54,56,57,55,57,44,51,55,46,55,51,57,50,51,93,44,91,45,49,49,57,46,50,48,48,48,56,51,44,51,55,46,56,56,52,53,50,55,93,44,91,45,49,49,57,46,51,48,56,51,56,57,44,51,55,46,57,52,54,56,50,52,93,44,91,45,49,49,57,46,51,52,57,56,52,53,44,51,56,46,48,56,53,53,54,54,93,44,91,45,49,49,57,46,53,55,54,52,57,54,44,51,56,46,49,53,55,54,54,49,93,44,91,45,49,49,57,46,54,51,57,50,48,53,44,51,56,46,51,50,54,56,56,93,44,91,45,49,49,57,46,55,53,51,52,56,49,44,51,56,46,52,49,54,55,53,57,93,44,91,45,49,49,57,46,56,56,52,55,52,57,44,51,56,46,51,53,54,49,56,53,93,44,91,45,49,50,48,46,48,49,57,57,53,49,44,51,56,46,52,51,51,53,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,68,111,195,177,97,32,65,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,51,51,56,44,34,98,101,100,115,34,58,54,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,50,57,57,54,51,49,44,51,50,46,54,48,53,51,55,93,44,91,45,49,48,55,46,50,57,54,55,57,51,44,51,49,46,55,56,51,54,52,49,93,44,91,45,49,48,54,46,53,50,56,48,52,55,44,51,49,46,55,56,51,56,57,49,93,44,91,45,49,48,54,46,54,51,53,57,50,44,51,49,46,56,54,54,50,51,51,93,44,91,45,49,48,54,46,54,49,56,52,56,54,44,51,50,46,48,48,48,52,57,53,93,44,91,45,49,48,54,46,51,55,55,49,55,52,44,51,50,46,48,48,49,53,48,51,93,44,91,45,49,48,54,46,51,55,54,53,56,53,44,51,50,46,57,53,56,48,53,93,44,91,45,49,48,54,46,51,52,48,53,49,53,44,51,51,46,48,53,50,55,55,55,93,44,91,45,49,48,54,46,56,56,55,56,57,49,44,51,50,46,56,50,50,55,56,49,93,44,91,45,49,48,54,46,56,56,55,55,51,51,44,51,50,46,55,55,57,50,55,51,93,44,91,45,49,48,55,46,50,57,57,52,55,53,44,51,50,46,55,56,48,49,54,54,93,44,91,45,49,48,55,46,50,57,57,54,51,49,44,51,50,46,54,48,53,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,67,114,105,115,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,52,54,44,34,98,101,100,115,34,58,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,48,50,55,50,51,44,51,49,46,56,48,51,53,55,57,93,44,91,45,56,51,46,54,49,50,54,52,50,44,51,49,46,56,48,52,49,50,56,93,44,91,45,56,51,46,54,49,50,50,53,54,44,51,49,46,56,53,52,48,56,57,93,44,91,45,56,51,46,54,48,57,54,54,51,44,51,50,46,48,50,55,57,51,56,93,44,91,45,56,51,46,57,54,49,50,55,56,44,51,50,46,48,51,48,53,57,53,93,44,91,45,56,51,46,57,50,50,52,57,52,44,51,49,46,57,48,57,54,53,51,93,44,91,45,56,51,46,57,51,57,52,51,55,44,51,49,46,56,52,55,57,50,57,93,44,91,45,56,51,46,56,48,50,55,50,51,44,51,49,46,56,48,51,53,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,57,50,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,54,53,53,56,53,44,51,51,46,52,52,52,52,53,57,93,44,91,45,57,51,46,52,56,49,55,54,44,51,51,46,50,53,57,57,57,49,93,44,91,45,57,51,46,52,57,48,53,50,44,51,51,46,48,49,56,52,52,50,93,44,91,45,57,51,46,50,51,56,54,48,55,44,51,51,46,48,49,55,57,57,50,93,44,91,45,57,50,46,57,56,56,55,48,55,44,51,51,46,48,49,55,52,51,51,93,44,91,45,57,50,46,57,55,56,52,54,57,44,51,51,46,51,55,55,50,56,93,44,91,45,57,51,46,49,49,57,48,49,52,44,51,51,46,51,56,48,50,57,51,93,44,91,45,57,51,46,49,49,54,51,54,49,44,51,51,46,52,53,50,57,48,57,93,44,91,45,57,51,46,51,54,53,53,56,53,44,51,51,46,52,52,52,52,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,71,114,105,103,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,54,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,48,48,48,56,53,44,52,55,46,53,56,55,50,50,56,93,44,91,45,57,56,46,52,57,57,50,52,54,44,52,55,46,51,50,54,53,51,56,93,44,91,45,57,56,46,52,54,55,48,54,54,44,52,55,46,50,52,48,52,48,52,93,44,91,45,57,55,46,57,54,49,50,49,49,44,52,55,46,50,52,48,51,50,53,93,44,91,45,57,55,46,57,56,54,52,50,56,44,52,55,46,51,50,54,50,48,49,93,44,91,45,57,55,46,57,56,52,50,52,56,44,52,55,46,54,55,50,51,48,51,93,44,91,45,57,56,46,53,48,48,49,56,49,44,52,55,46,54,55,50,52,49,51,93,44,91,45,57,56,46,53,48,48,48,56,53,44,52,55,46,53,56,55,50,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,83,111,108,97,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,56,53,51,48,44,34,98,101,100,115,34,58,49,48,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,49,48,51,50,56,49,44,51,56,46,53,49,51,51,52,56,93,44,91,45,49,50,50,46,49,50,54,51,56,57,44,51,56,46,52,50,56,57,49,56,93,44,91,45,49,50,50,46,48,54,52,55,55,57,44,51,56,46,51,49,53,57,49,50,93,44,91,45,49,50,50,46,50,48,53,57,56,50,44,51,56,46,51,49,53,55,49,51,93,44,91,45,49,50,50,46,49,57,53,51,56,44,51,56,46,49,53,53,48,49,55,93,44,91,45,49,50,50,46,52,48,54,55,56,54,44,51,56,46,49,53,53,54,51,50,93,44,91,45,49,50,50,46,51,52,55,52,53,52,44,51,56,46,48,55,51,50,54,93,44,91,45,49,50,50,46,49,50,51,57,55,51,44,51,56,46,48,51,53,55,49,55,93,44,91,45,49,50,49,46,56,54,50,52,54,50,44,51,56,46,48,54,54,48,51,93,44,91,45,49,50,49,46,55,49,51,57,50,54,44,51,56,46,48,56,52,53,52,50,93,44,91,45,49,50,49,46,54,49,53,52,49,51,44,51,56,46,49,57,53,54,57,54,93,44,91,45,49,50,49,46,53,57,51,50,55,51,44,51,56,46,51,49,51,48,56,57,93,44,91,45,49,50,49,46,54,57,52,48,49,52,44,51,56,46,51,49,52,56,53,54,93,44,91,45,49,50,49,46,54,57,53,49,52,55,44,51,56,46,53,50,51,49,53,54,93,44,91,45,49,50,49,46,57,52,48,50,56,53,44,51,56,46,53,51,51,51,56,52,93,44,91,45,49,50,50,46,49,48,51,50,56,49,44,51,56,46,53,49,51,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,108,97,121,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,55,50,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,48,53,51,48,55,44,52,51,46,48,56,49,54,53,51,93,44,91,45,57,49,46,54,48,55,48,53,57,44,52,50,46,54,52,51,57,55,51,93,44,91,45,57,49,46,49,51,50,55,54,54,44,52,50,46,54,52,53,56,52,52,93,44,91,45,57,48,46,56,57,54,57,53,49,44,52,50,46,54,55,53,48,56,50,93,44,91,45,57,49,46,48,53,49,50,55,53,44,52,50,46,55,51,55,48,48,49,93,44,91,45,57,49,46,49,53,54,56,49,50,44,52,50,46,57,56,56,49,55,93,44,91,45,57,49,46,49,55,55,50,50,50,44,52,51,46,48,56,48,50,52,55,93,44,91,45,57,49,46,54,48,53,51,48,55,44,52,51,46,48,56,49,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,52,57,34,44,34,78,65,77,69,34,58,34,84,105,116,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,55,51,48,44,34,98,101,100,115,34,58,49,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,50,54,49,51,44,51,51,46,48,51,52,53,56,49,93,44,91,45,57,52,46,57,50,55,55,50,55,44,51,51,46,48,55,48,51,48,52,93,44,91,45,57,52,46,56,49,57,56,50,56,44,51,50,46,57,56,50,56,56,54,93,44,91,45,57,52,46,56,48,56,55,56,51,44,51,51,46,51,54,51,54,51,54,93,44,91,45,57,53,46,49,50,53,52,53,49,44,51,51,46,51,56,57,52,53,52,93,44,91,45,57,53,46,49,50,54,49,51,44,51,51,46,48,51,52,53,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,51,54,51,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,53,55,48,55,51,44,51,57,46,53,51,53,49,52,49,93,44,91,45,55,56,46,56,53,48,55,50,51,44,51,57,46,51,51,49,48,57,51,93,44,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,44,91,45,55,56,46,56,57,57,54,57,53,44,51,57,46,49,57,57,49,51,55,93,44,91,45,55,56,46,53,48,56,49,51,50,44,51,57,46,48,56,56,54,51,93,44,91,45,55,56,46,52,48,51,57,48,55,44,51,57,46,49,54,55,55,51,56,93,44,91,45,55,56,46,52,49,57,52,50,50,44,51,57,46,50,53,55,52,55,54,93,44,91,45,55,56,46,51,52,48,52,49,53,44,51,57,46,51,53,51,54,50,56,93,44,91,45,55,56,46,51,52,55,48,56,55,44,51,57,46,52,54,54,48,49,50,93,44,91,45,55,56,46,52,54,56,53,56,49,44,51,57,46,53,49,54,54,49,57,93,44,91,45,55,56,46,54,53,55,48,55,51,44,51,57,46,53,51,53,49,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,111,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,54,50,57,44,34,98,101,100,115,34,58,52,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,53,53,53,56,48,52,44,51,53,46,53,49,53,48,51,57,93,44,91,45,55,57,46,55,54,55,57,53,55,44,51,53,46,53,49,49,52,56,52,93,44,91,45,55,57,46,54,57,55,55,55,51,44,51,53,46,50,53,49,51,55,57,93,44,91,45,55,57,46,54,49,52,51,48,52,44,51,53,46,49,54,51,54,55,57,93,44,91,45,55,57,46,53,54,54,52,57,55,44,51,53,46,48,54,52,48,49,49,93,44,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,44,91,45,55,57,46,51,51,53,52,55,55,44,51,53,46,49,54,49,53,56,56,93,44,91,45,55,57,46,50,50,57,55,49,50,44,51,53,46,50,49,48,54,48,50,93,44,91,45,55,57,46,48,57,55,53,57,49,44,51,53,46,49,55,52,50,50,53,93,44,91,45,55,57,46,48,57,53,56,48,56,44,51,53,46,49,57,50,48,54,56,93,44,91,45,55,57,46,49,56,51,53,53,54,44,51,53,46,51,48,55,49,54,49,93,44,91,45,55,57,46,50,54,53,55,49,51,44,51,53,46,51,52,53,50,55,57,93,44,91,45,55,57,46,51,53,48,48,55,51,44,51,53,46,53,49,56,48,48,50,93,44,91,45,55,57,46,53,53,53,56,48,52,44,51,53,46,53,49,53,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,57,49,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,51,50,57,55,49,44,51,56,46,54,57,54,55,53,57,93,44,91,45,57,57,46,48,51,50,52,48,56,44,51,56,46,51,52,56,51,51,52,93,44,91,45,57,57,46,48,51,50,51,48,57,44,51,56,46,50,54,49,50,50,55,93,44,91,45,57,56,46,57,49,50,53,56,51,44,51,56,46,50,54,49,48,56,56,93,44,91,45,57,56,46,52,55,57,56,52,49,44,51,56,46,50,54,48,55,57,93,44,91,45,57,56,46,52,56,48,51,55,55,44,51,56,46,53,50,49,56,52,49,93,44,91,45,57,56,46,52,56,54,49,48,56,44,51,56,46,54,57,54,56,55,56,93,44,91,45,57,57,46,48,51,50,57,55,49,44,51,56,46,54,57,54,55,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,83,108,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,53,50,49,49,44,52,54,46,53,52,48,56,54,49,93,44,91,45,49,48,52,46,48,52,53,53,53,57,44,52,54,46,50,56,48,48,56,49,93,44,91,45,49,48,50,46,57,57,53,50,52,53,44,52,54,46,50,56,48,54,53,49,93,44,91,45,49,48,50,46,57,50,52,53,52,55,44,52,54,46,50,56,49,53,49,56,93,44,91,45,49,48,50,46,57,50,55,52,53,49,44,52,54,46,54,51,48,48,50,93,44,91,45,49,48,51,46,50,51,49,54,53,54,44,52,54,46,54,50,57,55,54,52,93,44,91,45,49,48,51,46,54,48,57,50,55,51,44,52,54,46,54,50,57,56,50,50,93,44,91,45,49,48,51,46,56,48,48,56,55,51,44,52,54,46,54,50,57,55,51,49,93,44,91,45,49,48,51,46,56,48,48,56,56,44,52,54,46,53,52,48,54,55,49,93,44,91,45,49,48,52,46,48,52,53,50,49,49,44,52,54,46,53,52,48,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,55,52,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,51,55,53,56,55,44,51,50,46,54,54,55,51,52,49,93,44,91,45,57,49,46,55,51,57,54,53,49,44,51,50,46,53,54,49,50,57,57,93,44,91,45,57,49,46,57,49,51,48,53,55,44,51,50,46,53,48,53,57,48,50,93,44,91,45,57,50,46,48,48,52,51,52,44,51,50,46,51,56,48,52,57,57,93,44,91,45,57,50,46,48,51,52,51,57,55,44,51,50,46,50,55,55,48,54,56,93,44,91,45,57,49,46,57,55,50,56,56,44,51,50,46,49,54,54,55,52,50,93,44,91,45,57,49,46,56,57,52,55,50,57,44,51,50,46,49,53,49,53,53,93,44,91,45,57,49,46,55,55,54,53,56,55,44,51,50,46,50,51,57,49,48,54,93,44,91,45,57,49,46,55,53,57,48,57,56,44,51,50,46,51,49,55,55,49,52,93,44,91,45,57,49,46,54,50,53,49,50,49,44,51,50,46,52,48,53,51,52,52,93,44,91,45,57,49,46,52,55,54,55,51,57,44,51,50,46,52,48,53,56,48,56,93,44,91,45,57,49,46,52,53,55,54,52,51,44,51,50,46,53,51,55,56,48,55,93,44,91,45,57,49,46,52,52,53,50,57,57,44,51,50,46,53,56,49,57,53,54,93,44,91,45,57,49,46,53,57,54,48,50,55,44,51,50,46,53,56,50,49,57,50,93,44,91,45,57,49,46,54,51,55,53,56,55,44,51,50,46,54,54,55,51,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,50,50,55,51,51,44,52,50,46,48,56,55,57,49,54,93,44,91,45,57,57,46,50,50,49,56,51,44,52,49,46,55,52,48,55,57,50,93,44,91,45,57,57,46,50,49,50,48,49,54,44,52,49,46,55,52,48,54,49,51,93,44,91,45,57,56,46,55,53,57,49,51,51,44,52,49,46,55,52,48,51,56,50,93,44,91,45,57,56,46,55,54,49,49,53,53,44,52,50,46,48,56,56,53,49,56,93,44,91,45,57,57,46,50,50,50,55,51,51,44,52,50,46,48,56,55,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,55,53,50,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,57,49,46,57,56,56,55,49,56,44,51,48,46,51,54,56,53,57,56,93,44,91,45,57,49,46,57,52,57,48,52,55,44,51,48,46,50,55,54,55,55,49,93,44,91,45,57,49,46,57,55,57,57,51,50,44,51,48,46,49,56,50,53,56,53,93,44,91,45,57,49,46,57,53,48,57,57,56,44,51,48,46,48,55,51,50,49,51,93,44,91,45,57,49,46,56,49,57,50,49,54,44,51,48,46,48,52,52,48,49,51,93,44,91,45,57,49,46,55,54,53,49,54,56,44,51,48,46,49,48,56,52,57,53,93,44,91,45,57,49,46,54,53,56,56,56,54,44,51,48,46,49,48,56,50,50,54,93,44,91,45,57,49,46,54,48,48,51,53,52,44,51,48,46,48,51,51,49,54,57,93,44,91,45,57,49,46,51,54,56,56,51,53,44,51,48,46,48,53,56,56,50,52,93,44,91,45,57,49,46,52,54,51,56,51,51,44,51,48,46,49,48,50,52,57,51,93,44,91,45,57,49,46,53,48,56,50,54,56,44,51,48,46,50,52,48,50,57,55,93,44,91,45,57,49,46,54,50,49,48,53,53,44,51,48,46,51,48,57,57,51,56,93,44,91,45,57,49,46,54,52,48,48,57,57,44,51,48,46,52,52,50,55,50,56,93,44,91,45,57,49,46,55,48,48,57,51,51,44,51,48,46,52,57,55,52,51,51,93,44,91,45,57,49,46,55,53,54,49,57,51,44,51,48,46,52,57,55,55,51,56,93,44,91,45,57,49,46,54,57,52,51,44,51,48,46,52,48,49,55,52,56,93,44,91,45,57,49,46,56,54,57,50,55,51,44,51,48,46,52,49,55,50,51,53,93,44,91,45,57,49,46,57,56,56,55,49,56,44,51,48,46,51,54,56,53,57,56,93,93,93,44,91,91,91,45,57,49,46,52,55,49,57,53,49,44,50,57,46,57,53,53,57,56,57,93,44,91,45,57,49,46,51,55,51,54,52,50,44,50,57,46,56,51,52,52,48,49,93,44,91,45,57,49,46,51,56,54,52,57,49,44,50,57,46,55,56,51,54,56,49,93,44,91,45,57,49,46,49,48,48,48,49,44,50,57,46,54,57,57,52,48,50,93,44,91,45,57,49,46,48,57,50,55,52,56,44,50,57,46,56,48,49,53,55,52,93,44,91,45,57,49,46,49,56,50,56,49,55,44,50,57,46,56,52,54,49,55,50,93,44,91,45,57,49,46,50,53,53,50,50,57,44,50,57,46,57,55,49,52,53,55,93,44,91,45,57,49,46,52,55,49,57,53,49,44,50,57,46,57,53,53,57,56,57,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,83,117,109,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,56,53,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,52,55,56,56,55,44,51,50,46,57,50,57,48,56,50,93,44,91,45,56,56,46,51,56,56,55,57,55,44,51,50,46,53,55,56,49,50,51,93,44,91,45,56,56,46,52,50,49,52,53,51,44,51,50,46,51,48,56,54,56,93,44,91,45,56,55,46,57,51,48,54,54,49,44,51,50,46,51,49,48,53,55,52,93,44,91,45,56,56,46,48,52,54,51,51,53,44,51,50,46,51,55,55,48,56,55,93,44,91,45,56,56,46,48,51,49,54,50,51,44,51,50,46,52,51,51,54,49,93,44,91,45,56,55,46,56,53,51,52,50,44,51,50,46,53,51,50,48,56,54,93,44,91,45,56,55,46,57,50,56,54,56,57,44,51,50,46,54,51,50,50,56,52,93,44,91,45,56,56,46,48,53,53,48,48,52,44,51,50,46,54,52,54,52,56,50,93,44,91,45,56,56,46,49,51,50,54,56,53,44,51,50,46,56,51,50,56,53,51,93,44,91,45,56,56,46,50,48,55,51,49,54,44,51,50,46,57,50,52,55,56,50,93,44,91,45,56,56,46,49,55,49,56,53,50,44,51,50,46,57,57,53,56,54,93,44,91,45,56,56,46,51,52,48,52,51,50,44,51,50,46,57,57,49,49,57,57,93,44,91,45,56,56,46,51,52,55,56,56,55,44,51,50,46,57,50,57,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,87,105,110,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,55,53,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,51,52,55,50,53,44,51,52,46,51,48,54,57,57,55,93,44,91,45,56,55,46,54,51,54,49,49,56,44,51,52,46,48,48,50,50,48,51,93,44,91,45,56,55,46,49,53,49,48,51,54,44,51,51,46,57,57,51,50,50,53,93,44,91,45,56,55,46,49,49,49,57,57,50,44,51,51,46,57,57,50,51,56,53,93,44,91,45,56,55,46,49,48,57,57,49,49,44,51,52,46,50,57,57,50,57,57,93,44,91,45,56,55,46,53,50,57,55,50,50,44,51,52,46,51,48,52,53,57,56,93,44,91,45,56,55,46,54,51,52,55,50,53,44,51,52,46,51,48,54,57,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,83,101,109,105,110,111,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,53,48,56,54,44,34,98,101,100,115,34,58,51,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,49,52,52,52,54,44,50,56,46,55,56,52,57,53,53,93,44,91,45,56,49,46,52,53,57,55,50,56,44,50,56,46,54,52,48,49,57,54,93,44,91,45,56,49,46,51,50,55,56,57,44,50,56,46,54,49,48,50,55,55,93,44,91,45,56,48,46,57,56,55,50,53,44,50,56,46,54,49,50,57,57,55,93,44,91,45,56,49,46,49,48,53,55,53,44,50,56,46,56,50,56,53,52,49,93,44,91,45,56,49,46,51,50,48,52,55,51,44,50,56,46,56,51,52,53,51,93,44,91,45,56,49,46,51,54,54,57,52,44,50,56,46,56,55,57,50,50,55,93,44,91,45,56,49,46,52,49,52,52,52,54,44,50,56,46,55,56,52,57,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,70,111,114,114,101,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,53,49,55,44,34,98,101,100,115,34,58,53,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,53,49,54,49,54,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,52,53,49,48,55,51,44,51,49,46,51,52,54,51,56,51,93,44,91,45,56,57,46,51,52,55,56,54,51,44,51,49,46,51,52,54,55,93,44,91,45,56,57,46,51,52,56,57,53,44,51,49,46,48,49,48,51,55,93,44,91,45,56,57,46,51,52,48,56,48,54,44,51,48,46,57,48,57,57,49,50,93,44,91,45,56,57,46,49,51,55,57,54,55,44,51,48,46,57,48,57,56,55,55,93,44,91,45,56,57,46,49,52,54,48,57,50,44,51,49,46,52,51,52,48,53,50,93,44,91,45,56,57,46,51,57,57,49,55,56,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,52,53,49,54,49,54,44,51,49,46,52,51,52,48,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,73,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,53,54,52,44,34,98,101,100,115,34,58,57,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,48,50,55,54,49,44,52,50,46,55,54,57,56,56,93,44,91,45,56,52,46,54,48,48,52,48,51,44,52,50,46,52,50,49,57,56,52,93,44,91,45,56,52,46,49,52,48,55,49,51,44,52,50,46,52,50,52,54,49,49,93,44,91,45,56,52,46,49,53,56,49,56,57,44,52,50,46,55,55,54,54,51,57,93,44,91,45,56,52,46,51,54,51,54,53,57,44,52,50,46,55,55,53,55,55,56,93,44,91,45,56,52,46,54,48,50,55,54,49,44,52,50,46,55,54,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,83,104,97,119,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,50,56,52,44,34,98,101,100,115,34,58,49,48,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,51,57,48,54,44,51,57,46,49,50,54,53,50,55,93,44,91,45,57,53,46,57,52,54,55,53,52,44,51,57,46,48,57,56,54,56,53,93,44,91,45,57,53,46,57,52,54,53,56,55,44,51,56,46,56,54,57,57,55,51,93,44,91,45,57,53,46,53,48,48,55,50,52,44,51,56,46,56,54,57,56,49,53,93,44,91,45,57,53,46,53,48,48,50,53,52,44,51,57,46,48,53,54,54,53,54,93,44,91,45,57,53,46,53,57,54,55,53,57,44,51,57,46,48,54,52,54,55,50,93,44,91,45,57,53,46,53,56,57,52,55,50,44,51,57,46,50,49,54,48,56,49,93,44,91,45,57,54,46,48,51,53,53,55,51,44,51,57,46,50,49,54,53,50,93,44,91,45,57,54,46,48,51,57,48,54,44,51,57,46,49,50,54,53,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,97,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,54,55,50,55,57,44,52,51,46,56,53,48,54,56,54,93,44,91,45,57,55,46,57,54,52,53,56,54,44,52,51,46,52,57,57,48,52,49,93,44,91,45,57,55,46,54,48,55,48,49,50,44,52,51,46,52,57,57,56,50,54,93,44,91,45,57,55,46,54,48,56,53,49,55,44,52,51,46,56,52,57,48,53,57,93,44,91,45,57,55,46,56,53,49,49,49,44,52,51,46,56,52,57,56,53,55,93,44,91,45,57,55,46,57,54,55,50,55,57,44,52,51,46,56,53,48,54,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,73,116,97,115,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,50,48,51,44,34,98,101,100,115,34,58,49,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,49,54,50,55,57,44,52,55,46,52,52,52,56,50,56,93,44,91,45,57,52,46,51,50,55,53,51,49,44,52,55,46,52,49,53,56,52,52,93,44,91,45,57,52,46,49,49,55,57,57,57,44,52,55,46,52,56,48,55,52,52,93,44,91,45,57,52,46,48,50,53,57,56,49,44,52,55,46,51,53,49,51,56,56,93,44,91,45,57,51,46,55,55,54,48,55,52,44,52,55,46,50,55,55,57,56,54,93,44,91,45,57,51,46,55,55,53,50,53,55,44,52,55,46,48,51,48,52,49,56,93,44,91,45,57,51,46,48,53,53,57,52,51,44,52,55,46,48,50,54,52,49,53,93,44,91,45,57,51,46,48,54,57,53,44,52,55,46,51,57,51,57,49,53,93,44,91,45,57,51,46,48,54,49,50,53,51,44,52,55,46,55,50,48,49,56,55,93,44,91,45,57,51,46,48,56,49,49,53,56,44,52,55,46,56,57,49,56,55,93,44,91,45,57,51,46,55,55,53,55,55,50,44,52,55,46,56,57,56,57,53,93,44,91,45,57,51,46,55,55,54,49,55,51,44,52,55,46,56,52,54,52,48,52,93,44,91,45,57,52,46,52,49,56,53,52,51,44,52,55,46,56,52,53,56,49,54,93,44,91,45,57,52,46,52,49,54,50,55,57,44,52,55,46,52,52,52,56,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,56,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,55,49,52,51,53,53,44,51,57,46,53,54,54,51,51,49,93,44,91,45,49,48,51,46,55,49,57,54,54,52,44,51,56,46,56,54,54,56,50,55,93,44,91,45,49,48,52,46,48,53,53,53,50,56,44,51,56,46,56,54,56,56,54,56,93,44,91,45,49,48,52,46,48,53,51,57,50,49,44,51,56,46,53,50,50,51,57,51,93,44,91,45,49,48,51,46,53,48,52,54,54,54,44,51,56,46,53,49,54,52,48,57,93,44,91,45,49,48,51,46,49,55,50,56,55,56,44,51,56,46,53,50,53,51,49,53,93,44,91,45,49,48,51,46,49,55,50,57,52,51,44,51,56,46,54,49,50,52,53,93,44,91,45,49,48,51,46,49,54,51,48,50,53,44,51,57,46,48,51,55,54,49,93,44,91,45,49,48,51,46,49,53,52,51,55,54,44,51,57,46,53,54,53,54,53,52,93,44,91,45,49,48,51,46,55,48,55,48,55,50,44,51,57,46,53,54,54,50,57,53,93,44,91,45,49,48,51,46,55,49,52,51,53,53,44,51,57,46,53,54,54,51,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,51,53,57,44,34,98,101,100,115,34,58,49,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,57,57,51,51,57,52,44,52,51,46,49,56,51,51,55,54,93,44,91,45,55,53,46,57,49,55,49,56,57,44,52,51,46,48,56,53,55,55,57,93,44,91,45,55,53,46,56,57,54,48,55,57,44,52,50,46,55,57,48,57,54,52,93,44,91,45,55,53,46,56,56,57,56,51,50,44,52,50,46,55,50,51,56,52,52,93,44,91,45,55,53,46,50,57,53,56,55,55,44,52,50,46,55,52,52,49,48,54,93,44,91,45,55,53,46,50,52,55,57,54,51,44,52,50,46,56,55,49,54,48,52,93,44,91,45,55,53,46,52,51,55,49,54,55,44,52,50,46,56,54,51,51,49,57,93,44,91,45,55,53,46,53,52,50,56,48,51,44,52,50,46,57,51,49,55,55,52,93,44,91,45,55,53,46,53,53,50,55,55,52,44,52,51,46,48,51,55,53,53,52,93,44,91,45,55,53,46,55,51,56,51,57,54,44,52,51,46,49,54,52,55,54,54,93,44,91,45,55,53,46,56,56,52,50,55,53,44,52,51,46,49,53,53,53,54,50,93,44,91,45,55,53,46,57,57,51,51,57,52,44,52,51,46,49,56,51,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,56,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,52,51,56,49,50,44,52,51,46,56,48,51,54,56,55,93,44,91,45,55,51,46,52,57,52,51,49,52,44,52,51,46,54,53,51,57,54,54,93,44,91,45,55,51,46,54,50,56,57,52,44,52,51,46,52,56,54,51,57,49,93,44,91,45,55,51,46,53,57,52,57,54,44,52,51,46,51,48,54,49,49,56,93,44,91,45,55,51,46,53,55,51,51,52,50,44,52,51,46,49,48,48,53,52,53,93,44,91,45,55,51,46,54,51,53,52,54,51,44,52,50,46,57,52,49,50,57,93,44,91,45,55,51,46,50,55,52,50,57,52,44,52,50,46,57,52,51,54,53,50,93,44,91,45,55,51,46,50,53,52,54,51,51,44,52,51,46,51,49,52,54,55,53,93,44,91,45,55,51,46,50,52,54,56,52,52,44,52,51,46,53,49,55,50,53,50,93,44,91,45,55,51,46,51,48,50,53,53,51,44,52,51,46,54,50,53,55,48,57,93,44,91,45,55,51,46,52,50,55,57,49,44,52,51,46,54,51,52,52,50,56,93,44,91,45,55,51,46,51,54,50,56,50,51,44,52,51,46,55,53,51,48,56,52,93,44,91,45,55,51,46,51,55,57,50,56,49,44,52,51,46,56,48,56,52,56,49,93,44,91,45,55,51,46,52,51,56,49,50,44,52,51,46,56,48,51,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,53,54,52,44,34,98,101,100,115,34,58,49,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,53,50,48,56,44,51,57,46,54,51,56,51,52,53,93,44,91,45,56,54,46,50,52,57,56,56,53,44,51,57,46,54,51,51,54,52,53,93,44,91,45,56,54,46,50,53,49,54,56,52,44,51,57,46,51,52,49,54,55,50,93,44,91,45,56,54,46,48,56,53,54,48,49,44,51,57,46,51,52,52,49,56,57,93,44,91,45,56,53,46,57,53,50,48,48,53,44,51,57,46,51,52,55,51,55,51,93,44,91,45,56,53,46,57,53,50,48,56,44,51,57,46,54,51,56,51,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,52,53,34,44,34,78,65,77,69,34,58,34,84,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,49,53,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,53,57,52,56,51,54,44,51,51,46,51,56,56,52,56,57,93,44,91,45,49,48,50,46,53,57,53,48,50,51,44,51,50,46,57,53,56,56,51,49,93,44,91,45,49,48,50,46,50,48,56,53,50,44,51,50,46,57,53,56,57,53,54,93,44,91,45,49,48,50,46,48,55,54,50,49,52,44,51,50,46,57,53,57,55,48,50,93,44,91,45,49,48,50,46,48,55,53,57,50,57,44,51,51,46,51,56,57,53,56,54,93,44,91,45,49,48,50,46,53,57,52,56,51,54,44,51,51,46,51,56,56,52,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,51,55,48,49,50,44,51,53,46,55,55,57,51,48,50,93,44,91,45,49,48,52,46,48,50,49,55,48,50,44,51,53,46,55,56,49,52,57,52,93,44,91,45,49,48,51,46,57,55,54,57,48,49,44,51,53,46,56,48,49,55,52,55,93,44,91,45,49,48,51,46,55,50,51,54,48,57,44,51,53,46,52,50,50,55,56,53,93,44,91,45,49,48,51,46,54,51,55,48,53,51,44,51,53,46,51,56,57,54,54,50,93,44,91,45,49,48,51,46,51,55,57,55,51,44,51,53,46,51,57,54,55,57,54,93,44,91,45,49,48,51,46,51,55,53,49,49,55,44,51,53,46,55,51,57,53,49,54,93,44,91,45,49,48,51,46,51,54,52,57,55,55,44,51,54,46,48,56,54,48,53,93,44,91,45,49,48,51,46,55,57,52,53,50,53,44,51,54,46,48,56,53,55,51,56,93,44,91,45,49,48,51,46,55,57,51,57,57,49,44,51,54,46,49,55,51,57,55,50,93,44,91,45,49,48,52,46,48,48,56,56,50,51,44,51,54,46,50,49,56,49,49,53,93,44,91,45,49,48,52,46,52,51,54,48,53,54,44,51,54,46,50,49,56,53,51,52,93,44,91,45,49,48,52,46,51,54,53,55,50,52,44,51,54,46,48,52,52,50,57,93,44,91,45,49,48,52,46,51,55,48,49,50,44,51,53,46,55,55,57,51,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,84,97,108,108,97,100,101,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,53,54,53,44,34,98,101,100,115,34,58,50,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,52,53,53,54,50,44,51,51,46,54,55,57,48,57,56,93,44,91,45,56,54,46,49,56,57,56,49,50,44,51,51,46,53,52,55,50,51,56,93,44,91,45,56,54,46,51,55,56,54,54,53,44,51,51,46,51,57,48,57,56,51,93,44,91,45,56,54,46,51,53,55,51,52,44,51,51,46,50,57,54,57,49,55,93,44,91,45,56,54,46,53,48,51,49,50,55,44,51,51,46,49,55,57,49,52,52,93,44,91,45,56,54,46,52,57,49,48,50,57,44,51,51,46,49,48,50,57,52,52,93,44,91,45,56,54,46,49,55,52,51,55,44,51,51,46,49,48,52,51,57,52,93,44,91,45,56,54,46,49,49,56,49,57,56,44,51,51,46,50,57,54,51,50,93,44,91,45,56,53,46,57,56,48,50,57,51,44,51,51,46,50,57,52,49,57,93,44,91,45,56,53,46,56,53,49,56,57,44,51,51,46,52,57,56,55,52,50,93,44,91,45,56,53,46,55,57,54,48,53,52,44,51,51,46,53,53,54,50,50,93,44,91,45,56,53,46,57,57,52,57,51,53,44,51,51,46,53,56,54,52,55,53,93,44,91,45,56,54,46,48,53,48,54,54,57,44,51,51,46,54,55,52,53,57,93,44,91,45,56,54,46,49,52,53,53,54,50,44,51,51,46,54,55,57,48,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,76,97,110,103,108,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,50,52,56,50,52,44,52,53,46,52,54,55,49,54,54,93,44,91,45,56,57,46,52,50,53,57,55,49,44,52,53,46,49,49,57,48,57,56,93,44,91,45,56,57,46,50,50,52,50,49,52,44,52,53,46,49,49,56,53,54,55,93,44,91,45,56,57,46,50,50,51,56,49,52,44,52,53,46,48,50,57,50,52,54,93,44,91,45,56,56,46,57,56,49,54,56,44,52,53,46,48,50,56,57,49,55,93,44,91,45,56,56,46,57,56,50,49,53,57,44,52,53,46,49,49,56,48,50,54,93,44,91,45,56,56,46,54,52,49,49,53,57,44,52,53,46,49,49,55,51,52,54,93,44,91,45,56,56,46,54,56,48,48,54,54,44,52,53,46,50,48,52,57,57,52,93,44,91,45,56,56,46,54,55,55,57,57,54,44,52,53,46,51,55,56,54,56,51,93,44,91,45,56,56,46,57,50,54,48,50,53,44,52,53,46,51,55,56,54,51,55,93,44,91,45,56,57,46,48,52,54,52,57,44,52,53,46,52,54,52,52,51,57,93,44,91,45,56,57,46,52,50,52,56,50,52,44,52,53,46,52,54,55,49,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,70,111,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,57,54,52,51,52,44,51,51,46,56,51,53,57,54,55,93,44,91,45,57,57,46,54,57,52,55,56,49,44,51,51,46,56,50,55,49,53,56,93,44,91,45,57,57,46,53,52,50,48,48,56,44,51,51,46,55,57,51,50,52,52,93,44,91,45,57,57,46,52,55,52,52,57,56,44,51,51,46,55,51,51,56,52,57,93,44,91,45,57,57,46,52,55,53,54,53,44,51,51,46,56,51,52,48,48,53,93,44,91,45,57,57,46,52,55,53,50,57,52,44,51,52,46,48,56,53,54,49,56,93,44,91,45,57,57,46,53,55,51,49,54,49,44,51,52,46,48,54,51,54,48,56,93,44,91,45,57,57,46,55,55,50,48,52,51,44,51,52,46,48,57,51,50,56,54,93,44,91,45,57,57,46,57,57,55,54,50,49,44,51,52,46,50,50,52,51,53,53,93,44,91,45,49,48,48,46,48,52,55,48,50,56,44,51,52,46,50,50,57,55,56,93,44,91,45,49,48,48,46,48,52,56,52,56,44,51,51,46,56,51,53,57,55,52,93,44,91,45,57,57,46,57,57,54,52,51,52,44,51,51,46,56,51,53,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,117,101,110,97,32,86,105,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,54,48,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,56,56,49,56,50,44,52,50,46,57,48,57,56,57,55,93,44,91,45,57,53,46,51,56,56,48,49,44,52,50,46,53,54,49,55,52,50,93,44,91,45,57,52,46,57,49,52,52,56,53,44,52,50,46,53,54,48,51,48,57,93,44,91,45,57,52,46,57,49,51,56,57,44,52,50,46,57,48,57,55,93,44,91,45,57,53,46,51,56,56,49,56,50,44,52,50,46,57,48,57,56,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,77,105,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,55,57,52,56,55,44,52,49,46,48,53,51,50,57,57,93,44,91,45,57,53,46,56,49,51,52,54,53,44,52,48,46,57,48,49,54,57,51,93,44,91,45,57,53,46,51,56,52,57,54,52,44,52,48,46,57,48,49,53,53,93,44,91,45,57,53,46,51,56,52,51,52,57,44,52,49,46,49,54,48,48,49,49,93,44,91,45,57,53,46,56,56,48,53,50,49,44,52,49,46,49,53,57,56,55,52,93,44,91,45,57,53,46,56,55,57,52,56,55,44,52,49,46,48,53,51,50,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,56,53,34,44,34,78,65,77,69,34,58,34,82,101,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,55,53,55,54,50,49,44,51,48,46,48,55,52,49,51,50,93,44,91,45,57,57,46,57,54,55,54,50,54,44,51,48,46,48,56,50,51,53,54,93,44,91,45,49,48,48,46,48,52,53,55,57,49,44,50,57,46,54,57,52,57,50,52,93,44,91,45,49,48,48,46,48,49,52,49,56,56,44,50,57,46,54,50,51,52,57,53,93,44,91,45,57,57,46,54,48,51,49,51,44,50,57,46,54,50,55,49,56,49,93,44,91,45,57,57,46,54,48,50,55,55,54,44,50,57,46,57,48,55,54,55,57,93,44,91,45,57,57,46,54,57,49,50,49,53,44,50,57,46,57,48,56,53,56,50,93,44,91,45,57,57,46,54,56,57,56,55,57,44,51,48,46,48,55,51,57,52,56,93,44,91,45,57,57,46,55,53,55,54,50,49,44,51,48,46,48,55,52,49,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,48,48,56,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,52,56,53,57,53,44,52,48,46,52,52,51,57,56,57,93,44,91,45,56,51,46,50,52,56,52,50,56,44,52,48,46,50,52,52,52,54,54,93,44,91,45,56,51,46,49,54,57,57,56,49,44,52,48,46,49,52,51,48,56,55,93,44,91,45,56,50,46,55,54,49,56,50,55,44,52,48,46,49,50,53,56,53,53,93,44,91,45,56,50,46,55,53,48,55,52,55,44,52,48,46,50,55,54,57,57,54,93,44,91,45,56,50,46,55,52,52,57,51,49,44,52,48,46,51,52,57,54,48,51,93,44,91,45,56,50,46,57,50,57,53,56,56,44,52,48,46,51,53,56,49,50,51,93,44,91,45,56,51,46,48,50,48,55,57,56,44,52,48,46,52,51,51,55,57,53,93,44,91,45,56,51,46,50,52,56,53,57,53,44,52,48,46,52,52,51,57,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,70,111,114,115,121,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,49,53,55,51,44,34,98,101,100,115,34,58,50,49,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,44,91,45,56,48,46,52,53,49,54,57,54,44,51,54,46,50,54,49,53,48,50,93,44,91,45,56,48,46,52,53,50,51,50,50,44,51,54,46,50,52,49,52,49,57,93,44,91,45,56,48,46,52,51,57,49,48,52,44,51,54,46,49,51,57,57,52,57,93,44,91,45,56,48,46,52,57,54,50,56,51,44,51,54,46,48,52,54,53,52,53,93,44,91,45,56,48,46,51,57,52,51,48,55,44,51,53,46,57,55,50,55,54,50,93,44,91,45,56,48,46,50,49,51,55,51,44,51,54,46,48,50,54,56,48,56,93,44,91,45,56,48,46,48,52,51,50,51,56,44,51,54,46,48,49,48,55,53,56,93,44,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,53,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,49,48,34,44,34,78,65,77,69,34,58,34,67,97,114,115,111,110,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,52,54,55,44,34,98,101,100,115,34,58,50,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,48,52,50,57,55,44,51,57,46,49,54,53,54,48,51,93,44,91,45,49,50,48,46,48,48,51,52,50,57,44,51,57,46,49,49,50,54,56,55,93,44,91,45,49,49,57,46,55,54,49,50,49,51,44,51,57,46,49,49,52,48,48,57,93,44,91,45,49,49,57,46,53,53,49,48,50,44,51,57,46,48,56,53,55,57,49,93,44,91,45,49,49,57,46,53,54,51,54,56,44,51,57,46,49,57,53,52,49,53,93,44,91,45,49,49,57,46,55,49,50,54,52,53,44,51,57,46,50,53,48,56,55,49,93,44,91,45,49,49,57,46,56,56,48,55,56,55,44,51,57,46,49,54,53,53,48,57,93,44,91,45,49,50,48,46,48,48,52,50,57,55,44,51,57,46,49,54,53,54,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,48,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,56,48,51,52,44,52,49,46,56,54,50,57,57,57,93,44,91,45,57,52,46,50,56,48,48,53,55,44,52,49,46,54,48,49,51,49,50,93,44,91,45,57,52,46,50,52,49,53,57,51,44,52,49,46,53,48,51,54,55,57,93,44,91,45,57,51,46,55,57,48,54,49,50,44,52,49,46,53,49,49,57,49,54,93,44,91,45,57,51,46,56,49,52,50,56,50,44,52,49,46,54,48,48,52,53,54,93,44,91,45,57,51,46,56,49,53,55,50,49,44,52,49,46,56,54,51,52,49,57,93,44,91,45,57,52,46,49,54,52,49,51,56,44,52,49,46,56,54,51,50,52,52,93,44,91,45,57,52,46,50,56,48,51,52,44,52,49,46,56,54,50,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,67,97,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,44,91,45,49,48,49,46,48,56,54,50,56,49,44,51,53,46,49,56,50,49,52,93,44,91,45,49,48,49,46,48,56,53,57,51,53,44,51,53,46,54,49,57,49,48,50,93,44,91,45,49,48,49,46,48,56,54,48,54,56,44,51,53,46,54,50,53,50,54,55,93,44,91,45,49,48,49,46,54,50,50,56,51,49,44,51,53,46,54,50,52,48,53,55,93,44,91,45,49,48,49,46,54,50,50,56,44,51,53,46,54,50,48,49,57,54,93,44,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,49,34,44,34,78,65,77,69,34,58,34,83,117,109,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,51,53,50,44,34,98,101,100,115,34,58,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,56,49,54,53,55,44,51,50,46,50,50,57,55,48,51,93,44,91,45,56,52,46,49,56,51,53,54,57,44,51,50,46,49,53,56,52,57,51,93,44,91,45,56,52,46,52,51,48,50,49,56,44,51,50,46,49,54,54,50,53,55,93,44,91,45,56,52,46,52,51,49,50,49,52,44,51,50,46,49,51,52,48,53,56,93,44,91,45,56,52,46,52,52,51,56,48,55,44,51,49,46,57,54,55,52,53,54,93,44,91,45,56,52,46,51,51,56,50,52,53,44,51,49,46,56,55,51,53,57,49,93,44,91,45,56,52,46,51,51,56,49,52,51,44,51,49,46,57,49,54,49,57,93,44,91,45,56,51,46,57,50,50,52,57,52,44,51,49,46,57,48,57,54,53,51,93,44,91,45,56,51,46,57,54,49,50,55,56,44,51,50,46,48,51,48,53,57,53,93,44,91,45,56,52,46,48,50,55,54,44,51,50,46,49,55,49,49,54,53,93,44,91,45,56,52,46,49,56,49,54,53,55,44,51,50,46,50,50,57,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,51,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,52,57,55,50,57,44,51,55,46,51,49,55,53,57,52,93,44,91,45,57,48,46,55,51,53,52,53,51,44,51,55,46,50,55,49,48,52,93,44,91,45,57,48,46,55,55,57,53,53,51,44,51,55,46,48,53,48,51,50,52,93,44,91,45,57,48,46,54,55,56,53,54,50,44,51,54,46,57,50,54,52,57,93,44,91,45,57,48,46,50,53,56,53,54,51,44,51,54,46,57,50,50,48,52,51,93,44,91,45,57,48,46,49,49,49,50,52,55,44,51,55,46,48,52,49,50,48,53,93,44,91,45,57,48,46,50,50,51,50,51,44,51,55,46,48,56,54,53,51,52,93,44,91,45,57,48,46,50,49,55,54,53,55,44,51,55,46,51,49,52,57,54,55,93,44,91,45,57,48,46,53,52,57,55,50,57,44,51,55,46,51,49,55,53,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,57,57,53,44,34,98,101,100,115,34,58,55,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,56,55,50,48,51,44,51,52,46,56,49,56,56,49,49,93,44,91,45,56,50,46,55,56,55,55,53,49,44,51,52,46,54,55,50,53,57,52,93,44,91,45,56,50,46,56,52,48,49,53,53,44,51,52,46,54,50,51,49,50,93,44,91,45,56,50,46,56,52,52,56,49,55,44,51,52,46,54,49,56,55,49,57,93,44,91,45,56,50,46,56,53,53,49,48,51,44,51,52,46,54,48,57,48,48,55,93,44,91,45,56,50,46,57,57,50,50,51,50,44,51,52,46,52,55,57,50,53,56,93,44,91,45,56,50,46,56,54,52,52,44,51,52,46,52,53,57,55,56,53,93,44,91,45,56,50,46,55,55,51,52,49,44,51,52,46,50,56,56,56,54,52,93,44,91,45,56,50,46,55,52,50,49,48,51,44,51,52,46,50,49,49,57,48,51,93,44,91,45,56,50,46,51,49,51,57,57,54,44,51,52,46,52,56,52,48,48,50,93,44,91,45,56,50,46,52,54,54,53,48,51,44,51,52,46,54,54,53,49,56,52,93,44,91,45,56,50,46,52,56,55,50,48,51,44,51,52,46,56,49,56,56,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,97,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,55,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,55,53,56,53,50,44,52,50,46,52,51,51,50,49,56,93,44,91,45,49,48,54,46,54,53,52,55,56,49,44,52,50,46,52,51,49,48,57,52,93,44,91,45,49,48,55,46,53,50,50,57,50,51,44,52,50,46,52,51,52,51,53,54,93,44,91,45,49,48,55,46,53,50,50,55,50,50,44,52,50,46,50,54,49,55,53,54,93,44,91,45,49,48,55,46,53,48,51,56,50,49,44,52,50,46,48,56,55,57,53,55,93,44,91,45,49,48,55,46,53,48,57,55,50,44,52,49,46,54,53,55,52,53,50,93,44,91,45,49,48,55,46,57,50,57,55,51,54,44,52,49,46,54,53,57,53,57,54,93,44,91,45,49,48,55,46,57,49,56,52,50,49,44,52,49,46,48,48,50,48,51,54,93,44,91,45,49,48,55,46,51,49,55,55,57,52,44,52,49,46,48,48,50,57,50,93,44,91,45,49,48,54,46,56,53,55,55,55,51,44,52,49,46,48,48,50,54,54,51,93,44,91,45,49,48,54,46,51,50,49,49,54,53,44,52,48,46,57,57,57,49,50,51,93,44,91,45,49,48,54,46,51,50,50,56,56,53,44,52,49,46,51,57,53,49,52,49,93,44,91,45,49,48,54,46,48,54,56,52,48,54,44,52,49,46,51,57,53,48,50,56,93,44,91,45,49,48,54,46,48,55,51,52,48,51,44,52,50,46,52,51,51,50,51,54,93,44,91,45,49,48,54,46,48,55,53,56,53,50,44,52,50,46,52,51,51,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,83,105,108,118,101,114,32,66,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,56,49,52,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,53,55,55,49,48,54,44,52,54,46,49,55,56,57,56,49,93,44,91,45,49,49,50,46,55,55,55,49,50,44,52,54,46,49,51,53,56,50,54,93,44,91,45,49,49,50,46,57,50,52,53,53,50,44,52,53,46,57,51,54,52,52,51,93,44,91,45,49,49,51,46,48,56,53,53,49,55,44,52,53,46,56,54,48,54,52,56,93,44,91,45,49,49,51,46,48,48,48,49,53,53,44,52,53,46,56,48,55,55,52,55,93,44,91,45,49,49,50,46,55,53,57,51,51,57,44,52,53,46,55,52,56,50,48,57,93,44,91,45,49,49,50,46,54,56,55,48,53,52,44,52,53,46,54,50,52,56,53,52,93,44,91,45,49,49,50,46,53,49,53,52,53,51,44,52,53,46,55,52,54,55,48,50,93,44,91,45,49,49,50,46,49,57,48,50,54,57,44,52,53,46,55,52,56,53,48,51,93,44,91,45,49,49,50,46,52,48,49,52,52,49,44,52,53,46,56,51,49,56,53,49,93,44,91,45,49,49,50,46,52,54,54,51,50,57,44,52,54,46,48,57,50,57,55,57,93,44,91,45,49,49,50,46,53,55,55,49,48,54,44,52,54,46,49,55,56,57,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,83,116,101,112,104,101,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,52,51,51,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,50,54,52,54,54,44,52,50,46,53,48,53,55,55,50,93,44,91,45,56,57,46,57,49,57,55,55,50,44,52,50,46,49,57,54,56,56,49,93,44,91,45,56,57,46,54,56,56,52,56,54,44,52,50,46,49,57,57,49,49,50,93,44,91,45,56,57,46,51,57,54,49,57,50,44,52,50,46,50,48,49,57,49,54,93,44,91,45,56,57,46,52,48,49,52,50,51,44,52,50,46,53,48,48,53,53,52,93,44,91,45,56,57,46,56,51,55,53,56,55,44,52,50,46,53,48,53,55,49,93,44,91,45,56,57,46,57,50,54,52,54,54,44,52,50,46,53,48,53,55,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,76,97,112,101,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,50,48,50,44,34,98,101,100,115,34,58,49,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,54,48,55,51,51,44,52,51,46,50,50,51,49,51,49,93,44,91,45,56,51,46,52,53,51,51,54,52,44,52,50,46,56,56,48,52,51,50,93,44,91,45,56,51,46,49,48,50,56,57,49,44,52,50,46,56,56,56,54,52,55,93,44,91,45,56,50,46,57,56,51,54,52,55,44,52,50,46,56,57,51,55,52,49,93,44,91,45,56,50,46,57,57,54,50,53,55,44,52,51,46,49,53,52,48,57,57,93,44,91,45,56,51,46,48,48,48,52,51,44,52,51,46,50,56,52,57,49,51,93,44,91,45,56,51,46,49,50,48,51,57,54,44,52,51,46,51,50,55,48,52,57,93,44,91,45,56,51,46,51,53,52,52,49,56,44,52,51,46,51,50,50,50,53,55,93,44,91,45,56,51,46,52,54,48,55,51,51,44,52,51,46,50,50,51,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,105,98,111,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,53,51,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,56,56,55,48,55,44,51,51,46,48,49,55,52,51,51,93,44,91,45,57,51,46,50,51,56,54,48,55,44,51,51,46,48,49,55,57,57,50,93,44,91,45,57,51,46,50,51,55,51,56,49,44,51,50,46,55,49,54,50,53,93,44,91,45,57,51,46,49,55,56,55,54,55,44,51,50,46,53,56,52,57,49,54,93,44,91,45,57,50,46,56,56,48,56,48,53,44,51,50,46,53,56,53,50,55,55,93,44,91,45,57,50,46,56,50,56,53,51,53,44,51,50,46,55,53,56,56,49,52,93,44,91,45,57,50,46,55,50,53,52,51,57,44,51,50,46,55,53,57,53,52,93,44,91,45,57,50,46,55,50,52,55,52,44,51,51,46,48,49,52,51,57,93,44,91,45,57,50,46,57,56,56,55,48,55,44,51,51,46,48,49,55,52,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,89,97,108,111,98,117,115,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,50,49,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,50,49,48,53,44,51,52,46,49,57,50,53,52,53,93,44,91,45,56,57,46,57,51,49,52,56,53,44,51,52,46,49,54,52,51,48,51,93,44,91,45,56,57,46,57,50,54,48,57,57,44,51,51,46,56,57,55,57,53,55,93,44,91,45,56,57,46,55,54,57,48,53,44,51,51,46,56,54,55,51,51,52,93,44,91,45,56,57,46,53,48,55,51,53,51,44,51,51,46,56,54,55,52,54,57,93,44,91,45,56,57,46,53,48,57,55,52,56,44,51,52,46,49,54,50,48,56,50,93,44,91,45,56,57,46,55,50,49,48,53,44,51,52,46,49,57,50,53,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,97,114,105,99,97,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,48,53,49,52,54,49,44,49,56,46,49,55,52,48,53,51,93,44,91,45,54,54,46,57,55,55,56,53,53,44,49,56,46,49,52,51,55,57,57,93,44,91,45,54,54,46,57,50,54,53,49,55,44,49,56,46,49,53,49,50,54,55,93,44,91,45,54,54,46,56,51,54,55,54,44,49,56,46,49,55,48,53,53,51,93,44,91,45,54,54,46,56,57,55,57,54,52,44,49,56,46,49,56,55,55,52,52,93,44,91,45,54,55,46,48,49,57,56,51,54,44,49,56,46,49,57,53,52,55,49,93,44,91,45,54,55,46,48,53,49,52,54,49,44,49,56,46,49,55,52,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,75,97,108,107,97,115,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,52,54,51,44,34,98,101,100,115,34,58,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,51,50,56,51,54,44,52,52,46,56,49,50,51,55,50,93,44,91,45,56,53,46,51,51,52,44,52,52,46,53,49,50,51,48,51,93,44,91,45,56,52,46,56,53,48,57,50,57,44,52,52,46,53,49,49,48,54,57,93,44,91,45,56,52,46,56,52,55,51,48,57,44,52,52,46,56,53,56,48,51,55,93,44,91,45,56,53,46,50,57,49,55,49,54,44,52,52,46,56,53,57,54,48,56,93,44,91,45,56,53,46,51,51,50,56,51,54,44,52,52,46,56,49,50,51,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,103,117,97,100,105,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,54,54,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,50,48,55,57,51,55,44,49,56,46,52,52,50,50,56,93,44,91,45,54,55,46,49,51,50,50,49,44,49,56,46,51,56,57,51,57,49,93,44,91,45,54,55,46,48,53,54,53,48,55,44,49,56,46,52,54,48,57,53,52,93,44,91,45,54,55,46,49,48,52,57,54,53,44,49,56,46,53,54,54,53,54,93,44,91,45,54,55,46,50,48,53,55,52,52,44,49,56,46,53,49,55,49,50,56,93,44,91,45,54,55,46,50,48,55,57,51,55,44,49,56,46,52,52,50,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,69,118,97,110,103,101,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,54,51,54,44,34,98,101,100,115,34,58,50,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,57,55,55,52,49,44,51,48,46,56,57,54,49,48,49,93,44,91,45,57,50,46,53,57,55,51,53,51,44,51,48,46,53,56,49,54,50,51,93,44,91,45,57,50,46,54,51,48,51,52,55,44,51,48,46,52,56,55,56,55,51,93,44,91,45,57,50,46,54,51,49,57,56,55,44,51,48,46,52,56,49,49,52,55,93,44,91,45,57,50,46,52,57,51,50,53,57,44,51,48,46,52,56,48,52,57,57,93,44,91,45,57,50,46,52,50,48,55,56,44,51,48,46,53,51,56,56,50,93,44,91,45,57,50,46,50,49,49,50,52,51,44,51,48,46,53,54,56,49,50,53,93,44,91,45,57,50,46,49,55,50,52,49,53,44,51,48,46,55,54,55,57,51,53,93,44,91,45,57,50,46,50,49,50,55,49,49,44,51,48,46,56,52,56,54,48,55,93,44,91,45,57,50,46,50,56,48,55,51,56,44,51,48,46,57,54,53,48,55,49,93,44,91,45,57,50,46,51,56,48,56,52,51,44,51,49,46,48,48,48,57,50,57,93,44,91,45,57,50,46,53,50,52,54,52,54,44,51,48,46,56,57,51,51,50,56,93,44,91,45,57,50,46,53,57,55,55,52,49,44,51,48,46,56,57,54,49,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,97,114,100,101,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,54,50,44,34,98,101,100,115,34,58,50,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,56,51,57,52,52,44,51,53,46,51,57,55,49,50,54,93,44,91,45,56,57,46,49,57,56,50,56,56,44,51,52,46,57,57,52,52,56,52,93,44,91,45,56,57,46,48,49,55,49,50,55,44,51,52,46,57,57,52,57,55,49,93,44,91,45,56,56,46,56,50,51,48,53,49,44,51,52,46,57,57,53,50,50,49,93,44,91,45,56,56,46,55,56,54,54,49,50,44,51,52,46,57,57,53,50,53,50,93,44,91,45,56,56,46,55,56,49,55,54,56,44,51,53,46,50,52,55,53,56,55,93,44,91,45,56,56,46,56,52,49,54,48,55,44,51,53,46,52,50,55,56,50,54,93,44,91,45,56,57,46,48,55,56,56,55,54,44,51,53,46,52,51,49,52,50,56,93,44,91,45,56,57,46,49,56,51,57,52,52,44,51,53,46,51,57,55,49,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,67,111,99,104,105,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,50,55,57,44,34,98,101,100,115,34,58,49,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,52,53,49,48,48,50,44,51,50,46,52,50,55,53,52,54,93,44,91,45,49,49,48,46,52,53,50,51,44,51,49,46,55,51,49,50,49,57,93,44,91,45,49,49,48,46,52,53,57,55,53,49,44,51,49,46,51,51,50,57,49,52,93,44,91,45,49,48,57,46,48,53,48,48,51,51,44,51,49,46,51,51,50,51,52,56,93,44,91,45,49,48,57,46,48,52,55,57,49,56,44,51,50,46,52,50,54,51,55,54,93,44,91,45,49,48,57,46,49,49,52,49,56,44,51,50,46,52,50,54,51,53,51,93,44,91,45,49,49,48,46,52,53,49,48,48,50,44,51,50,46,52,50,55,53,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,72,105,100,97,108,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,55,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,55,57,49,56,44,51,50,46,52,50,54,51,55,54,93,44,91,45,49,48,57,46,48,53,48,48,51,51,44,51,49,46,51,51,50,51,52,56,93,44,91,45,49,48,56,46,50,48,56,52,55,44,51,49,46,51,51,51,51,55,51,93,44,91,45,49,48,56,46,50,48,56,52,56,52,44,51,49,46,55,56,51,54,57,56,93,44,91,45,49,48,56,46,50,49,55,49,52,51,44,51,49,46,56,54,52,49,51,57,93,44,91,45,49,48,56,46,53,50,52,53,51,56,44,51,49,46,56,54,51,54,49,52,93,44,91,45,49,48,56,46,53,51,55,54,55,54,44,51,50,46,48,55,57,56,51,50,93,44,91,45,49,48,56,46,53,51,55,48,49,49,44,51,50,46,53,49,54,54,49,56,93,44,91,45,49,48,56,46,54,52,54,55,55,44,51,50,46,53,49,54,53,50,49,93,44,91,45,49,48,56,46,54,52,54,53,50,51,44,51,50,46,54,48,51,55,51,93,44,91,45,49,48,56,46,56,53,50,57,49,57,44,51,50,46,54,48,51,51,55,52,93,44,91,45,49,48,56,46,56,53,52,53,56,49,44,51,50,46,55,55,55,50,55,54,93,44,91,45,49,48,57,46,48,52,55,54,52,51,44,51,50,46,55,55,55,56,48,50,93,44,91,45,49,48,57,46,48,52,55,57,49,56,44,51,50,46,52,50,54,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,68,105,118,105,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,54,57,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,56,54,56,57,44,52,56,46,57,57,57,53,57,51,93,44,91,45,49,48,52,46,48,52,55,57,50,52,44,52,56,46,54,51,51,57,49,49,93,44,91,45,49,48,50,46,56,56,53,55,55,53,44,52,56,46,54,51,51,50,57,56,93,44,91,45,49,48,50,46,57,51,57,57,51,50,44,52,56,46,55,50,48,52,54,57,93,44,91,45,49,48,50,46,57,51,56,57,53,55,44,52,56,46,57,57,57,51,51,93,44,91,45,49,48,52,46,48,52,56,54,56,57,44,52,56,46,57,57,57,53,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,83,97,110,32,66,101,114,110,97,114,100,105,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,53,52,49,51,44,34,98,101,100,115,34,58,54,50,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,54,54,55,50,57,50,44,51,52,46,56,50,50,53,50,54,93,44,91,45,49,49,55,46,54,52,54,51,55,52,44,51,52,46,50,56,57,49,55,93,44,91,45,49,49,55,46,54,55,56,53,48,49,44,51,52,46,49,54,49,57,57,51,93,44,91,45,49,49,55,46,55,56,51,50,56,55,44,51,51,46,57,52,54,52,49,49,93,44,91,45,49,49,55,46,54,55,51,49,51,52,44,51,51,46,56,55,49,48,48,53,93,44,91,45,49,49,55,46,53,53,56,51,49,50,44,51,52,46,48,51,51,52,53,49,93,44,91,45,49,49,55,46,50,50,53,51,55,50,44,51,52,46,48,48,52,51,49,52,93,44,91,45,49,49,54,46,57,50,57,53,53,56,44,51,52,46,48,51,52,49,49,51,93,44,91,45,49,49,54,46,51,48,48,54,51,49,44,51,52,46,48,51,50,53,52,52,93,44,91,45,49,49,53,46,51,49,54,50,49,50,44,51,52,46,48,51,52,49,49,93,44,91,45,49,49,53,46,51,49,54,48,54,53,44,51,52,46,48,55,55,56,52,51,93,44,91,45,49,49,52,46,52,51,53,52,50,57,44,51,52,46,48,55,57,55,50,55,93,44,91,45,49,49,52,46,50,53,52,49,52,49,44,51,52,46,49,55,51,56,51,93,44,91,45,49,49,52,46,49,51,56,50,56,50,44,51,52,46,51,48,51,50,51,93,44,91,45,49,49,52,46,51,51,57,54,50,55,44,51,52,46,52,53,49,52,51,53,93,44,91,45,49,49,52,46,52,51,53,54,55,49,44,51,52,46,53,57,51,56,52,49,93,44,91,45,49,49,52,46,52,55,49,54,50,44,51,52,46,55,49,50,57,54,54,93,44,91,45,49,49,52,46,54,50,56,50,55,54,44,51,52,46,56,54,51,53,57,54,93,44,91,45,49,49,52,46,54,51,51,52,56,55,44,51,53,46,48,48,49,56,53,55,93,44,91,45,49,49,53,46,54,52,56,51,53,55,44,51,53,46,56,48,57,50,49,49,93,44,91,45,49,49,53,46,55,51,53,56,57,49,44,51,53,46,55,57,51,54,50,93,44,91,45,49,49,54,46,56,55,48,54,51,50,44,51,53,46,55,57,53,51,55,54,93,44,91,45,49,49,55,46,54,51,50,57,57,54,44,51,53,46,55,57,55,50,53,49,93,44,91,45,49,49,55,46,54,51,50,48,49,49,44,51,52,46,56,50,50,50,55,93,44,91,45,49,49,55,46,54,54,55,50,57,50,44,51,52,46,56,50,50,53,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,101,122,117,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,57,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,44,91,45,49,48,56,46,57,49,55,48,56,49,44,51,55,46,54,51,49,57,48,50,93,44,91,45,49,48,57,46,48,52,51,51,54,54,44,51,55,46,52,56,52,56,49,56,93,44,91,45,49,48,57,46,48,52,53,49,55,50,44,51,54,46,57,57,56,57,55,55,93,44,91,45,49,48,56,46,51,55,57,51,48,51,44,51,54,46,57,57,57,54,48,56,93,44,91,45,49,48,56,46,50,57,48,52,53,57,44,51,55,46,49,52,53,57,55,53,93,44,91,45,49,48,56,46,50,57,49,54,55,54,44,51,55,46,50,50,50,48,48,51,93,44,91,45,49,48,56,46,50,48,52,56,51,54,44,51,55,46,51,52,52,48,56,93,44,91,45,49,48,56,46,48,51,51,49,52,54,44,51,55,46,52,54,52,57,52,93,44,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,51,49,51,55,57,44,51,50,46,50,50,55,54,54,54,93,44,91,45,56,56,46,57,49,51,56,52,55,44,51,50,46,50,50,52,49,56,54,93,44,91,45,56,56,46,57,49,48,52,53,57,44,51,49,46,56,50,54,54,52,57,93,44,91,45,56,56,46,54,50,50,51,57,52,44,51,49,46,56,53,55,49,57,51,93,44,91,45,56,56,46,52,55,51,50,50,55,44,51,49,46,56,57,51,56,53,54,93,44,91,45,56,56,46,52,51,49,51,55,57,44,51,50,46,50,50,55,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,50,48,55,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,50,56,52,48,55,44,52,49,46,52,57,48,57,50,49,93,44,91,45,57,51,46,51,50,55,56,56,54,44,52,49,46,49,54,48,54,53,57,93,44,91,45,57,51,46,48,57,57,50,49,55,44,52,49,46,49,54,48,56,54,55,93,44,91,45,57,50,46,56,54,57,55,55,49,44,52,49,46,49,54,49,48,54,54,93,44,91,45,57,50,46,56,55,49,52,50,49,44,52,49,46,53,48,56,53,50,50,93,44,91,45,57,51,46,51,50,56,54,49,52,44,52,49,46,53,48,55,56,50,52,93,44,91,45,57,51,46,51,50,56,52,48,55,44,52,49,46,52,57,48,57,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,57,57,50,44,34,98,101,100,115,34,58,50,54,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,55,48,55,50,44,52,49,46,51,57,51,50,51,57,93,44,91,45,57,54,46,51,50,55,51,57,57,44,52,49,46,49,56,57,57,57,57,93,44,91,45,57,53,46,57,50,51,53,52,56,44,52,49,46,49,57,48,56,53,93,44,91,45,57,53,46,57,51,55,55,57,49,44,52,49,46,51,57,48,55,53,50,93,44,91,45,57,54,46,51,50,57,48,49,50,44,52,49,46,51,57,51,49,51,54,93,44,91,45,57,54,46,52,55,48,55,50,44,52,49,46,51,57,51,50,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,48,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,48,48,34,44,34,78,65,77,69,34,58,34,70,97,105,114,102,97,120,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,51,52,56,53,50,44,51,56,46,56,53,51,55,51,55,93,44,91,45,55,55,46,51,49,54,50,50,52,44,51,56,46,56,51,54,52,48,56,93,44,91,45,55,55,46,50,55,48,53,50,44,51,56,46,56,52,48,57,48,50,93,44,91,45,55,55,46,50,55,48,53,57,55,44,51,56,46,56,54,54,48,55,53,93,44,91,45,55,55,46,51,48,51,49,51,57,44,51,56,46,56,54,57,50,48,56,93,44,91,45,55,55,46,51,51,52,56,53,50,44,51,56,46,56,53,51,55,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,97,114,109,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,57,55,53,48,49,44,51,52,46,53,54,48,53,55,52,93,44,91,45,57,57,46,56,52,52,53,56,53,44,51,52,46,53,48,54,57,49,53,93,44,91,45,57,57,46,54,54,54,53,49,50,44,51,52,46,53,48,55,49,50,49,93,44,91,45,57,57,46,54,54,54,56,52,57,44,51,52,46,55,50,52,53,53,53,93,44,91,45,57,57,46,55,49,57,55,57,55,44,51,52,46,55,54,56,52,53,49,93,44,91,45,57,57,46,55,51,49,48,57,50,44,51,52,46,57,52,52,48,53,56,93,44,91,45,57,57,46,56,56,56,50,50,50,44,51,52,46,57,52,51,56,57,55,93,44,91,45,57,57,46,56,56,56,52,52,52,44,51,53,46,48,50,57,56,56,57,93,44,91,45,49,48,48,46,48,48,48,51,56,52,44,51,53,46,48,50,57,57,51,93,44,91,45,49,48,48,46,48,48,48,51,56,49,44,51,52,46,55,52,54,51,53,56,93,44,91,45,57,57,46,57,57,55,53,48,49,44,51,52,46,53,54,48,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,101,100,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,51,56,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,54,53,54,55,53,44,51,55,46,57,48,48,57,56,55,93,44,91,45,57,52,46,48,55,51,53,50,52,44,51,55,46,54,51,57,55,50,50,93,44,91,45,57,52,46,48,55,53,51,56,53,44,51,55,46,53,56,49,53,55,93,44,91,45,57,51,46,54,49,54,48,51,51,44,51,55,46,53,55,50,54,56,57,93,44,91,45,57,51,46,54,50,56,52,48,52,44,51,55,46,56,50,57,52,51,53,93,44,91,45,57,51,46,56,49,49,52,48,50,44,51,55,46,56,51,52,53,55,49,93,44,91,45,57,51,46,56,48,56,54,52,56,44,51,55,46,56,57,50,55,55,53,93,44,91,45,57,52,46,48,54,53,54,55,53,44,51,55,46,57,48,48,57,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,54,48,50,44,34,98,101,100,115,34,58,53,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,54,48,48,50,56,44,51,52,46,48,52,48,53,55,50,93,44,91,45,56,51,46,53,51,55,51,56,53,44,51,51,46,57,54,53,57,49,50,93,44,91,45,56,51,46,50,55,53,57,51,51,44,51,51,46,56,52,55,57,55,55,93,44,91,45,56,51,46,50,53,56,52,49,51,44,51,51,46,57,57,57,48,57,56,93,44,91,45,56,51,46,51,54,48,48,50,56,44,51,52,46,48,52,48,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,86,97,108,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,52,52,51,56,54,44,52,53,46,49,48,55,54,53,49,93,44,91,45,49,49,54,46,48,57,48,49,52,51,44,52,53,46,48,54,52,48,49,51,93,44,91,45,49,49,54,46,49,57,55,48,49,49,44,52,52,46,56,54,52,50,49,54,93,44,91,45,49,49,54,46,49,53,55,54,48,50,44,52,52,46,55,48,51,55,52,51,93,44,91,45,49,49,54,46,49,53,55,48,50,50,44,52,52,46,52,57,56,57,50,56,93,44,91,45,49,49,54,46,50,49,50,57,49,44,52,52,46,51,50,52,51,55,51,93,44,91,45,49,49,54,46,50,49,51,56,55,49,44,52,52,46,49,53,49,51,56,55,93,44,91,45,49,49,54,46,49,48,51,48,55,50,44,52,52,46,50,51,54,52,48,57,93,44,91,45,49,49,53,46,52,53,55,51,48,53,44,52,52,46,50,52,50,57,53,51,93,44,91,45,49,49,53,46,50,57,52,54,49,52,44,52,52,46,51,51,57,52,52,53,93,44,91,45,49,49,53,46,50,50,56,50,50,50,44,52,52,46,52,50,51,53,50,49,93,44,91,45,49,49,53,46,51,48,52,57,57,52,44,52,52,46,53,55,57,56,53,55,93,44,91,45,49,49,53,46,49,54,53,54,48,53,44,52,52,46,54,53,48,51,48,54,93,44,91,45,49,49,53,46,48,57,49,57,50,50,44,52,52,46,55,54,54,55,50,54,93,44,91,45,49,49,52,46,57,53,54,49,49,54,44,52,52,46,55,50,48,57,56,50,93,44,91,45,49,49,52,46,56,49,50,52,48,55,44,52,52,46,56,48,56,51,52,54,93,44,91,45,49,49,52,46,55,51,49,57,54,44,52,52,46,56,56,48,57,52,54,93,44,91,45,49,49,52,46,55,51,50,50,55,44,52,53,46,49,53,49,49,53,53,93,44,91,45,49,49,52,46,54,57,52,48,48,49,44,52,53,46,49,57,55,49,56,50,93,44,91,45,49,49,53,46,57,55,53,55,56,55,44,52,53,46,49,57,53,50,56,50,93,44,91,45,49,49,54,46,49,52,52,51,56,54,44,52,53,46,49,48,55,54,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,53,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,51,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,57,54,52,51,52,44,51,51,46,56,51,53,57,54,55,93,44,91,45,57,57,46,57,57,48,57,56,44,51,51,46,51,57,55,52,48,52,93,44,91,45,57,57,46,52,55,50,52,52,52,44,51,51,46,51,57,57,48,50,51,93,44,91,45,57,57,46,52,55,52,52,57,56,44,51,51,46,55,51,51,56,52,57,93,44,91,45,57,57,46,53,52,50,48,48,56,44,51,51,46,55,57,51,50,52,52,93,44,91,45,57,57,46,54,57,52,55,56,49,44,51,51,46,56,50,55,49,53,56,93,44,91,45,57,57,46,57,57,54,52,51,52,44,51,51,46,56,51,53,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,79,117,97,99,104,105,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,48,54,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,56,51,48,53,52,44,51,51,46,56,48,50,49,57,56,93,44,91,45,57,50,46,56,57,51,53,51,52,44,51,51,46,56,48,57,57,52,51,93,44,91,45,57,51,46,49,48,52,50,57,44,51,51,46,55,55,55,48,49,49,93,44,91,45,57,51,46,49,49,54,51,54,49,44,51,51,46,52,53,50,57,48,57,93,44,91,45,57,51,46,49,49,57,48,49,52,44,51,51,46,51,56,48,50,57,51,93,44,91,45,57,50,46,57,55,56,52,54,57,44,51,51,46,51,55,55,50,56,93,44,91,45,57,50,46,53,54,55,49,53,54,44,51,51,46,51,54,55,50,93,44,91,45,57,50,46,55,48,53,48,57,51,44,51,51,46,52,51,49,50,49,53,93,44,91,45,57,50,46,55,53,57,48,51,53,44,51,51,46,53,51,48,57,53,52,93,44,91,45,57,50,46,53,56,54,56,56,54,44,51,51,46,55,51,49,50,51,52,93,44,91,45,57,50,46,53,56,51,48,53,52,44,51,51,46,56,48,50,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,51,52,44,34,98,101,100,115,34,58,49,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,48,51,54,55,50,44,52,48,46,51,49,48,48,57,51,93,44,91,45,56,52,46,56,49,48,56,50,53,44,52,48,46,48,48,53,48,55,55,93,44,91,45,56,52,46,56,49,50,52,49,44,51,57,46,57,49,54,57,49,53,93,44,91,45,56,52,46,52,56,53,51,54,55,44,51,57,46,57,49,56,52,57,49,93,44,91,45,56,52,46,52,50,53,57,48,50,44,51,57,46,57,49,57,54,50,50,93,44,91,45,56,52,46,52,51,50,53,55,53,44,52,48,46,49,57,55,48,51,55,93,44,91,45,56,52,46,52,51,52,54,51,49,44,52,48,46,51,53,52,50,53,57,93,44,91,45,56,52,46,56,48,51,56,57,52,44,52,48,46,51,53,50,55,53,56,93,44,91,45,56,52,46,56,48,51,54,55,50,44,52,48,46,51,49,48,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,75,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,56,56,48,44,34,98,101,100,115,34,58,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,54,50,51,52,54,44,51,54,46,57,57,56,55,48,49,93,44,91,45,57,55,46,52,54,50,52,53,57,44,51,54,46,53,57,51,54,50,55,93,44,91,45,57,55,46,52,54,49,54,48,51,44,51,54,46,53,57,51,54,51,55,93,44,91,45,57,55,46,48,53,55,53,53,54,44,51,54,46,53,57,51,56,55,50,93,44,91,45,57,55,46,48,54,52,49,48,55,44,51,54,46,54,56,52,50,48,55,93,44,91,45,57,54,46,57,51,49,57,52,51,44,51,54,46,54,56,54,48,57,55,93,44,91,45,57,54,46,56,56,57,52,55,53,44,51,54,46,55,53,49,50,51,93,44,91,45,57,54,46,55,53,50,51,55,53,44,51,54,46,55,56,50,48,57,50,93,44,91,45,57,54,46,55,52,57,56,51,56,44,51,54,46,57,57,56,57,56,56,93,44,91,45,57,55,46,49,52,55,55,50,49,44,51,54,46,57,57,57,48,51,51,93,44,91,45,57,55,46,52,54,50,51,52,54,44,51,54,46,57,57,56,55,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,119,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,55,48,49,57,44,52,53,46,52,55,50,52,49,54,93,44,91,45,49,48,49,46,53,48,49,48,53,51,44,52,52,46,57,57,51,55,57,53,93,44,91,45,49,48,49,46,49,51,54,49,54,50,44,52,52,46,57,57,52,48,55,52,93,44,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,48,49,46,48,50,50,54,49,49,44,52,52,46,55,50,52,49,53,51,93,44,91,45,49,48,48,46,56,50,57,55,57,53,44,52,52,46,55,56,51,50,52,56,93,44,91,45,49,48,48,46,55,49,55,54,52,52,44,52,52,46,55,55,48,57,51,93,44,91,45,49,48,48,46,53,52,51,52,56,52,44,52,52,46,55,54,49,48,56,55,93,44,91,45,49,48,48,46,52,48,52,55,53,51,44,52,52,46,56,57,55,54,57,53,93,44,91,45,49,48,48,46,52,50,51,57,49,56,44,52,52,46,57,57,48,48,48,54,93,44,91,45,49,48,48,46,51,50,53,52,53,49,44,52,53,46,48,57,57,51,51,55,93,44,91,45,49,48,48,46,50,54,48,50,50,51,44,52,53,46,50,52,54,56,49,93,44,91,45,49,48,48,46,50,55,52,49,55,54,44,52,53,46,51,56,49,56,52,53,93,44,91,45,49,48,48,46,51,52,49,57,50,52,44,52,53,46,52,55,50,57,48,52,93,44,91,45,49,48,49,46,52,55,48,49,57,44,52,53,46,52,55,50,52,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,84,105,108,108,97,109,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,55,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,48,54,53,52,52,56,44,52,53,46,55,56,51,48,53,52,93,44,91,45,49,50,52,46,48,49,48,56,48,53,44,52,53,46,55,48,56,50,56,53,93,44,91,45,49,50,52,46,48,55,54,57,55,55,44,52,53,46,51,52,49,56,52,54,93,44,91,45,49,50,52,46,48,52,48,50,53,55,44,52,53,46,50,54,56,56,50,56,93,44,91,45,49,50,52,46,48,57,53,56,51,51,44,52,53,46,48,52,51,57,56,54,93,44,91,45,49,50,51,46,55,50,52,54,54,51,44,52,53,46,48,52,52,52,51,50,93,44,91,45,49,50,51,46,55,50,52,51,54,56,44,52,53,46,48,55,54,50,50,54,93,44,91,45,49,50,51,46,55,56,52,53,52,44,52,53,46,50,49,54,50,57,52,93,44,91,45,49,50,51,46,52,54,51,53,49,56,44,52,53,46,50,49,54,51,49,50,93,44,91,45,49,50,51,46,52,54,52,56,56,44,52,53,46,52,51,51,51,51,50,93,44,91,45,49,50,51,46,51,54,49,49,51,49,44,52,53,46,53,55,56,55,55,57,93,44,91,45,49,50,51,46,52,56,52,55,50,54,44,52,53,46,55,48,56,55,54,52,93,44,91,45,49,50,51,46,51,54,49,54,50,50,44,52,53,46,55,55,57,53,55,57,93,44,91,45,49,50,52,46,48,54,53,52,52,56,44,52,53,46,55,56,51,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,67,111,119,101,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,53,49,54,44,34,98,101,100,115,34,58,50,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,49,53,51,53,56,44,51,51,46,52,50,53,53,48,54,93,44,91,45,56,52,46,57,51,57,48,49,53,44,51,51,46,50,50,52,54,57,51,93,44,91,45,56,52,46,56,54,50,51,53,57,44,51,51,46,49,57,49,49,55,51,93,44,91,45,56,52,46,56,53,50,51,54,44,51,51,46,50,50,51,53,57,93,44,91,45,56,52,46,53,48,50,51,53,50,44,51,51,46,50,50,49,48,53,53,93,44,91,45,56,52,46,52,57,55,53,50,55,44,51,51,46,50,53,55,52,50,50,93,44,91,45,56,52,46,53,56,54,48,52,55,44,51,51,46,51,53,55,56,56,53,93,44,91,45,56,52,46,54,48,57,53,52,44,51,51,46,53,48,50,53,49,49,93,44,91,45,56,52,46,56,53,48,55,49,51,44,51,51,46,53,49,49,52,53,55,93,44,91,45,56,53,46,48,49,53,51,53,56,44,51,51,46,52,50,53,53,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,83,105,109,112,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,48,55,51,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,51,48,48,54,54,44,51,50,46,48,52,55,48,55,50,93,44,91,45,57,48,46,50,51,48,51,51,49,44,51,50,46,48,52,57,55,50,56,93,44,91,45,57,48,46,49,51,50,53,53,50,44,51,49,46,56,53,54,57,50,51,93,44,91,45,57,48,46,49,50,50,53,54,53,44,51,49,46,55,53,50,54,56,93,44,91,45,56,57,46,57,55,52,53,56,54,44,51,49,46,55,54,49,54,53,53,93,44,91,45,56,57,46,55,53,53,49,48,51,44,51,49,46,55,55,52,54,53,52,93,44,91,45,56,57,46,54,53,51,48,50,53,44,51,49,46,55,56,48,54,53,51,93,44,91,45,56,57,46,54,53,52,52,50,54,44,51,50,46,48,49,51,54,55,56,93,44,91,45,56,57,46,55,51,48,48,54,54,44,51,50,46,48,52,55,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,83,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,51,55,57,54,55,44,51,48,46,57,48,57,56,55,55,93,44,91,45,56,57,46,51,52,48,56,48,54,44,51,48,46,57,48,57,57,49,50,93,44,91,45,56,57,46,51,52,49,52,52,54,44,51,48,46,54,52,55,55,50,93,44,91,45,56,57,46,50,52,48,48,55,51,44,51,48,46,54,55,55,49,54,93,44,91,45,56,56,46,56,56,52,53,51,51,44,51,48,46,54,55,55,50,57,50,93,44,91,45,56,56,46,56,56,52,53,51,52,44,51,48,46,55,51,53,53,57,49,93,44,91,45,56,56,46,56,56,53,48,51,56,44,51,48,46,57,49,48,55,56,56,93,44,91,45,56,57,46,49,51,55,57,54,55,44,51,48,46,57,48,57,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,111,110,116,114,97,32,67,111,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,51,50,52,55,44,34,98,101,100,115,34,58,49,54,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,51,55,51,55,56,50,44,51,55,46,56,56,51,55,50,53,93,44,91,45,49,50,50,46,50,54,52,48,50,55,44,51,55,46,57,48,51,55,55,53,93,44,91,45,49,50,50,46,49,52,48,53,53,49,44,51,55,46,56,48,52,53,57,52,93,44,91,45,49,50,50,46,48,52,53,52,55,51,44,51,55,46,55,57,56,49,50,54,93,44,91,45,49,50,49,46,57,54,48,55,55,44,51,55,46,55,49,56,54,50,57,93,44,91,45,49,50,49,46,53,53,54,57,57,55,44,51,55,46,56,49,54,52,56,56,93,44,91,45,49,50,49,46,53,56,48,48,50,50,44,51,56,46,48,57,52,52,49,52,93,44,91,45,49,50,49,46,55,51,55,56,50,52,44,51,56,46,48,50,54,54,51,93,44,91,45,49,50,49,46,56,54,50,52,54,50,44,51,56,46,48,54,54,48,51,93,44,91,45,49,50,50,46,49,50,51,57,55,51,44,51,56,46,48,51,53,55,49,55,93,44,91,45,49,50,50,46,51,52,55,52,53,52,44,51,56,46,48,55,51,50,54,93,44,91,45,49,50,50,46,52,51,50,50,56,51,44,51,55,46,57,50,57,56,50,52,93,44,91,45,49,50,50,46,51,55,51,55,56,50,44,51,55,46,56,56,51,55,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,48,49,56,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,51,48,51,50,50,44,51,54,46,49,53,50,48,50,51,93,44,91,45,56,56,46,54,57,50,55,48,57,44,51,54,46,48,54,50,55,52,54,93,44,91,45,56,56,46,55,48,54,56,49,49,44,51,53,46,55,57,49,48,55,53,93,44,91,45,56,56,46,54,48,54,56,54,50,44,51,53,46,55,56,57,51,53,52,93,44,91,45,56,56,46,53,54,57,48,52,55,44,51,53,46,56,50,52,56,50,57,93,44,91,45,56,56,46,49,55,57,49,55,55,44,51,53,46,56,49,54,55,56,53,93,44,91,45,56,56,46,49,55,55,56,53,57,44,51,53,46,56,52,53,56,52,49,93,44,91,45,56,56,46,50,49,55,52,51,54,44,51,53,46,56,52,54,53,56,50,93,44,91,45,56,56,46,50,49,50,53,53,57,44,51,54,46,49,50,48,50,57,93,44,91,45,56,56,46,53,51,48,51,50,50,44,51,54,46,49,53,50,48,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,72,101,110,114,105,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,54,52,50,44,34,98,101,100,115,34,58,49,49,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,51,48,54,55,44,51,55,46,55,48,53,54,55,51,93,44,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,44,91,45,55,55,46,53,57,53,52,54,50,44,51,55,46,53,53,53,55,53,93,44,91,45,55,55,46,52,52,55,53,56,49,44,51,55,46,54,48,50,56,49,93,44,91,45,55,55,46,51,57,49,51,48,54,44,51,55,46,53,51,48,49,50,50,93,44,91,45,55,55,46,52,50,48,56,55,53,44,51,55,46,52,52,55,49,48,49,93,44,91,45,55,55,46,51,52,57,50,51,53,44,51,55,46,51,55,56,52,54,54,93,44,91,45,55,55,46,50,52,57,54,54,53,44,51,55,46,51,56,50,93,44,91,45,55,55,46,49,55,55,51,50,52,44,51,55,46,52,57,48,54,93,44,91,45,55,55,46,50,52,48,57,56,56,44,51,55,46,53,51,56,48,56,56,93,44,91,45,55,55,46,51,56,49,55,53,53,44,51,55,46,53,57,52,53,49,51,93,44,91,45,55,55,46,52,57,51,57,57,44,51,55,46,55,48,49,48,48,56,93,44,91,45,55,55,46,54,51,48,54,55,44,51,55,46,55,48,53,54,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,79,119,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,56,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,51,57,57,56,49,44,51,57,46,52,55,51,51,52,53,93,44,91,45,56,54,46,57,52,50,52,55,51,44,51,57,46,51,52,50,48,52,51,93,44,91,45,56,55,46,48,53,51,54,52,54,44,51,57,46,51,52,50,54,50,49,93,44,91,45,56,55,46,48,53,52,53,55,56,44,51,57,46,49,54,56,48,56,54,93,44,91,45,56,54,46,54,56,51,48,48,50,44,51,57,46,49,54,53,55,52,54,93,44,91,45,56,54,46,54,56,53,54,49,44,51,57,46,51,51,54,48,52,51,93,44,91,45,56,54,46,54,51,48,56,49,56,44,51,57,46,51,52,54,57,52,56,93,44,91,45,56,54,46,54,56,53,55,49,44,51,57,46,52,55,48,48,54,51,93,44,91,45,56,54,46,57,51,57,57,56,49,44,51,57,46,52,55,51,51,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,87,101,115,116,99,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,56,56,49,53,44,34,98,101,100,115,34,58,51,49,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,56,50,53,56,52,44,52,49,46,51,50,49,54,57,51,93,44,91,45,55,51,46,56,56,57,52,56,44,52,49,46,49,52,53,48,57,53,93,44,91,45,55,51,46,56,57,51,57,55,57,44,52,48,46,57,57,55,50,48,53,93,44,91,45,55,51,46,57,49,55,57,48,53,44,52,48,46,57,49,55,53,55,55,93,44,91,45,55,51,46,55,52,56,48,54,44,52,48,46,56,55,49,55,50,49,93,44,91,45,55,51,46,54,49,50,56,56,53,44,52,48,46,57,53,48,57,52,51,93,44,91,45,55,51,46,55,50,55,55,55,53,44,52,49,46,49,48,48,54,57,54,93,44,91,45,55,51,46,52,56,50,54,57,53,44,52,49,46,50,49,50,55,55,50,93,44,91,45,55,51,46,53,52,52,55,50,56,44,52,49,46,51,54,54,51,55,53,93,44,91,45,55,51,46,57,56,50,53,56,52,44,52,49,46,51,50,49,54,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,111,108,108,105,110,103,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,56,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,52,54,55,54,51,44,51,55,46,53,57,55,52,51,52,93,44,91,45,57,48,46,49,52,53,54,57,57,44,51,55,46,51,49,50,48,57,49,93,44,91,45,57,48,46,50,49,55,54,53,55,44,51,55,46,51,49,52,57,54,55,93,44,91,45,57,48,46,50,50,51,50,51,44,51,55,46,48,56,54,53,51,52,93,44,91,45,57,48,46,49,49,49,50,52,55,44,51,55,46,48,52,49,50,48,53,93,44,91,45,56,57,46,57,53,57,49,57,54,44,51,55,46,48,53,52,51,56,93,44,91,45,56,57,46,56,54,54,54,50,55,44,51,55,46,49,50,54,50,50,55,93,44,91,45,56,57,46,56,54,49,49,50,51,44,51,55,46,53,57,57,50,56,54,93,44,91,45,57,48,46,49,52,54,55,54,51,44,51,55,46,53,57,55,52,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,77,99,68,111,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,49,55,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,49,49,50,48,49,44,51,55,46,52,50,52,53,48,57,93,44,91,45,56,49,46,54,53,52,52,51,49,44,51,55,46,53,50,51,51,49,50,93,44,91,45,56,49,46,55,50,57,52,51,51,44,51,55,46,52,57,52,53,56,53,93,44,91,45,56,49,46,56,53,53,57,51,57,44,51,55,46,53,52,56,57,49,93,44,91,45,56,49,46,57,50,55,54,56,49,44,51,55,46,53,49,50,49,49,51,93,44,91,45,56,49,46,57,57,54,53,55,56,44,51,55,46,52,55,54,55,48,53,93,44,91,45,56,49,46,56,53,51,53,53,51,44,51,55,46,50,56,55,55,48,54,93,44,91,45,56,49,46,55,52,48,49,50,52,44,51,55,46,50,51,55,55,53,50,93,44,91,45,56,49,46,53,54,48,54,51,49,44,51,55,46,50,48,54,54,54,51,93,44,91,45,56,49,46,51,54,50,49,53,54,44,51,55,46,51,51,55,54,56,55,93,44,91,45,56,49,46,51,49,49,50,48,49,44,51,55,46,52,50,52,53,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,50,48,57,44,34,98,101,100,115,34,58,52,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,52,52,53,50,49,44,51,57,46,52,50,57,49,50,93,44,91,45,56,48,46,54,48,52,51,48,49,44,51,57,46,50,56,54,48,52,55,93,44,91,45,56,48,46,53,57,54,49,50,54,44,51,57,46,49,54,55,48,54,57,93,44,91,45,56,48,46,51,48,48,50,48,57,44,51,57,46,49,48,51,56,53,55,93,44,91,45,56,48,46,50,50,55,49,55,51,44,51,57,46,49,49,50,55,57,50,93,44,91,45,56,48,46,49,54,54,51,56,55,44,51,57,46,50,52,50,50,56,51,93,44,91,45,56,48,46,49,57,55,50,56,54,44,51,57,46,51,57,51,49,56,54,93,44,91,45,56,48,46,52,57,52,48,56,53,44,51,57,46,52,54,57,53,57,57,93,44,91,45,56,48,46,53,52,52,53,50,49,44,51,57,46,52,50,57,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,114,97,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,56,55,52,44,34,98,101,100,115,34,58,49,52,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,55,57,54,50,55,52,44,51,54,46,53,52,49,55,52,49,93,44,91,45,55,56,46,56,48,50,51,51,53,44,51,54,46,50,51,53,55,57,52,93,44,91,45,55,56,46,56,48,52,54,57,44,51,54,46,48,57,52,53,53,49,93,44,91,45,55,56,46,55,53,49,50,55,51,44,51,54,46,48,55,48,56,51,52,93,44,91,45,55,56,46,53,52,54,52,49,52,44,51,54,46,48,50,49,56,50,54,93,44,91,45,55,56,46,52,57,54,54,49,52,44,51,54,46,49,55,53,49,57,57,93,44,91,45,55,56,46,53,49,49,50,50,52,44,51,54,46,52,53,52,56,48,56,93,44,91,45,55,56,46,52,53,54,57,49,51,44,51,54,46,53,52,50,53,52,49,93,44,91,45,55,56,46,55,51,52,49,50,50,44,51,54,46,53,52,49,57,51,57,93,44,91,45,55,56,46,55,57,54,50,55,52,44,51,54,46,53,52,49,55,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,78,101,119,32,72,97,118,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,57,51,51,57,44,34,98,101,100,115,34,58,49,54,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,49,48,52,55,51,44,52,49,46,52,54,56,56,49,53,93,44,91,45,55,51,46,48,54,55,56,53,49,44,52,49,46,51,48,48,57,57,54,93,44,91,45,55,51,46,49,48,55,52,53,50,44,52,49,46,49,54,56,51,57,55,93,44,91,45,55,50,46,57,57,57,53,52,55,44,52,49,46,48,56,55,49,48,56,93,44,91,45,55,50,46,53,50,55,57,48,49,44,52,49,46,49,55,55,55,55,52,93,44,91,45,55,50,46,53,50,55,57,48,50,44,52,49,46,50,53,48,49,49,53,93,44,91,45,55,50,46,54,53,52,49,57,51,44,52,49,46,52,51,56,50,53,54,93,44,91,45,55,50,46,55,51,57,49,50,44,52,49,46,52,51,56,50,57,52,93,44,91,45,55,50,46,55,53,50,49,56,49,44,52,49,46,53,55,56,56,57,52,93,44,91,45,55,50,46,57,52,54,51,53,44,52,49,46,53,53,54,55,57,55,93,44,91,45,55,50,46,57,56,51,50,53,44,52,49,46,54,51,57,53,57,56,93,44,91,45,55,51,46,49,53,53,52,57,50,44,52,49,46,53,49,52,51,48,52,93,44,91,45,55,51,46,51,49,48,52,55,51,44,52,49,46,52,54,56,56,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,80,105,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,53,55,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,55,55,50,52,44,52,50,46,51,53,49,56,54,49,93,44,91,45,57,55,46,52,56,53,50,57,56,44,52,50,46,52,51,56,53,55,56,93,44,91,45,57,55,46,56,51,52,52,51,49,44,52,50,46,52,51,55,54,56,52,93,44,91,45,57,55,46,56,51,52,53,51,54,44,52,50,46,48,56,57,55,53,93,44,91,45,57,55,46,51,54,56,52,48,52,44,52,50,46,48,57,48,57,50,50,93,44,91,45,57,55,46,51,54,55,55,50,52,44,52,50,46,51,53,49,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,108,101,99,107,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,44,91,45,56,51,46,52,57,55,57,50,51,44,51,50,46,52,53,50,49,57,56,93,44,91,45,56,51,46,52,57,56,48,51,57,44,51,50,46,52,48,49,55,49,53,93,44,91,45,56,51,46,51,52,54,53,50,56,44,51,50,46,50,55,50,52,56,57,93,44,91,45,56,51,46,49,55,51,50,53,50,44,51,50,46,52,53,50,53,51,51,93,44,91,45,56,51,46,49,51,56,57,57,49,44,51,50,46,52,50,51,48,54,57,93,44,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,66,117,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,53,48,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,54,55,53,56,44,51,51,46,50,54,55,51,57,55,93,44,91,45,56,50,46,50,51,51,48,54,50,44,51,51,46,50,50,55,55,52,93,44,91,45,56,50,46,50,57,49,49,56,44,51,51,46,48,54,50,56,50,55,93,44,91,45,56,50,46,50,55,50,51,53,51,44,51,50,46,57,51,55,55,57,54,93,44,91,45,56,50,46,51,49,54,53,49,50,44,51,50,46,56,51,53,55,55,50,93,44,91,45,56,50,46,49,52,52,57,55,55,44,51,50,46,56,49,50,55,52,49,93,44,91,45,56,50,46,48,56,49,51,51,55,44,51,50,46,57,49,54,55,55,54,93,44,91,45,56,49,46,56,53,55,57,56,53,44,51,50,46,57,53,51,56,56,50,93,44,91,45,56,49,46,55,54,55,53,53,51,44,51,50,46,57,48,57,52,49,49,93,44,91,45,56,49,46,53,52,49,56,51,49,44,51,51,46,48,52,53,54,53,52,93,44,91,45,56,49,46,54,49,52,48,51,51,44,51,51,46,48,57,53,50,53,49,93,44,91,45,56,49,46,55,48,52,54,51,52,44,51,51,46,49,49,54,52,53,93,44,91,45,56,49,46,55,53,55,48,51,53,44,51,51,46,49,57,56,49,52,56,93,44,91,45,56,49,46,56,53,50,48,55,54,44,51,51,46,50,52,55,50,56,56,93,44,91,45,56,50,46,48,57,50,53,57,50,44,51,51,46,50,51,48,48,56,52,93,44,91,45,56,50,46,49,55,52,50,52,44,51,51,46,50,57,54,55,55,49,93,44,91,45,56,50,46,50,54,55,53,56,44,51,51,46,50,54,55,51,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,50,55,44,34,98,101,100,115,34,58,49,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,53,51,54,49,55,44,51,55,46,54,48,48,50,51,55,93,44,91,45,56,57,46,52,52,56,53,57,56,44,51,55,46,53,57,56,56,50,49,93,44,91,45,56,57,46,53,50,49,53,54,52,44,51,55,46,53,55,50,49,53,54,93,44,91,45,56,57,46,53,50,49,56,53,53,44,51,55,46,53,54,54,50,49,52,93,44,91,45,56,57,46,52,50,48,57,51,57,44,51,55,46,51,57,51,57,53,50,93,44,91,45,56,57,46,52,56,54,54,56,57,44,51,55,46,51,51,52,53,53,52,93,44,91,45,56,57,46,50,52,56,53,54,54,44,51,55,46,51,51,53,50,57,56,93,44,91,45,56,57,46,48,52,52,55,57,57,44,51,55,46,51,50,57,55,49,55,93,44,91,45,56,57,46,48,52,49,52,48,49,44,51,55,46,53,57,54,53,55,54,93,44,91,45,56,57,46,49,53,51,54,49,55,44,51,55,46,54,48,48,50,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,75,97,110,107,97,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,48,54,49,44,34,98,101,100,115,34,58,53,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,50,54,55,51,49,44,52,49,46,50,57,56,48,53,50,93,44,91,45,56,56,46,48,49,51,57,49,57,44,52,49,46,50,57,50,52,52,55,93,44,91,45,56,56,46,48,49,49,56,49,44,52,49,46,50,48,53,53,48,56,93,44,91,45,56,56,46,50,52,52,49,52,52,44,52,49,46,50,48,49,53,54,54,93,44,91,45,56,56,46,50,53,49,53,48,49,44,52,49,46,49,49,52,50,49,56,93,44,91,45,56,56,46,50,52,55,51,44,52,48,46,57,57,52,53,54,93,44,91,45,56,56,46,49,51,49,57,51,53,44,52,48,46,57,57,55,55,55,55,93,44,91,45,56,55,46,53,50,54,50,48,56,44,52,49,46,48,49,48,51,52,49,93,44,91,45,56,55,46,53,50,54,53,56,55,44,52,49,46,49,54,54,48,57,93,44,91,45,56,55,46,53,50,54,55,51,49,44,52,49,46,50,57,56,48,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,77,99,73,110,116,111,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,53,52,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,51,55,50,56,57,44,52,54,46,50,56,50,56,55,49,93,44,91,45,57,57,46,56,55,56,51,53,52,44,52,54,46,50,56,50,56,50,57,93,44,91,45,57,57,46,56,56,48,48,54,44,52,53,46,57,52,49,52,50,51,93,44,91,45,57,57,46,55,49,56,48,55,49,44,52,53,46,57,52,48,56,56,51,93,44,91,45,57,57,46,48,48,53,55,53,56,44,52,53,46,57,51,57,55,51,49,93,44,91,45,57,57,46,48,48,51,49,49,56,44,52,54,46,50,56,50,56,57,56,93,44,91,45,57,57,46,48,51,55,50,56,57,44,52,54,46,50,56,50,56,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,80,108,97,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,48,54,51,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,48,55,44,52,49,46,55,52,51,50,48,55,93,44,91,45,57,55,46,56,51,48,52,57,51,44,52,49,46,55,52,50,50,51,56,93,44,91,45,57,55,46,56,50,57,56,52,54,44,52,49,46,53,50,54,49,55,52,93,44,91,45,57,55,46,55,48,51,54,50,55,44,52,49,46,53,50,54,55,57,54,93,44,91,45,57,55,46,55,48,51,55,54,53,44,52,49,46,51,57,52,56,55,54,93,44,91,45,57,55,46,53,57,56,50,53,51,44,52,49,46,51,51,51,49,49,57,93,44,91,45,57,55,46,51,54,56,49,56,54,44,52,49,46,51,57,54,52,49,54,93,44,91,45,57,55,46,50,53,51,53,49,57,44,52,49,46,51,56,52,50,49,50,93,44,91,45,57,55,46,50,53,50,52,50,53,44,52,49,46,55,52,51,48,56,53,93,44,91,45,57,55,46,51,54,56,48,55,44,52,49,46,55,52,51,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,51,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,52,54,50,55,49,44,51,54,46,53,52,51,53,53,49,93,44,91,45,55,56,46,51,50,51,57,57,49,44,51,54,46,53,52,51,56,50,50,93,44,91,45,55,56,46,50,55,55,49,54,53,44,51,54,46,51,48,54,49,51,50,93,44,91,45,55,56,46,51,48,54,57,54,53,44,51,54,46,50,54,54,49,57,49,93,44,91,45,55,56,46,48,48,54,53,53,49,44,51,54,46,50,48,50,54,51,51,93,44,91,45,55,55,46,57,49,49,57,54,51,44,51,54,46,51,56,50,52,52,54,93,44,91,45,55,55,46,56,57,57,53,50,52,44,51,54,46,53,48,52,50,53,57,93,44,91,45,55,55,46,56,57,57,55,55,51,44,51,54,46,53,52,52,53,57,54,93,44,91,45,55,56,46,48,52,54,50,55,49,44,51,54,46,53,52,51,53,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,105,98,111,110,105,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,52,53,55,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,50,52,50,55,51,53,44,49,56,46,49,56,48,50,52,56,93,44,91,45,54,54,46,51,49,52,56,52,56,44,49,56,46,49,53,50,48,56,56,93,44,91,45,54,54,46,50,53,55,53,50,55,44,49,56,46,48,55,53,56,56,52,93,44,91,45,54,54,46,50,50,52,52,57,44,49,56,46,48,57,53,51,51,57,93,44,91,45,54,54,46,50,49,54,56,57,57,44,49,56,46,49,52,51,50,50,93,44,91,45,54,54,46,50,52,50,55,51,53,44,49,56,46,49,56,48,50,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,51,55,51,50,51,44,51,50,46,53,51,52,56,53,53,93,44,91,45,56,52,46,54,53,56,57,50,44,51,50,46,50,51,50,56,53,50,93,44,91,45,56,52,46,54,52,57,51,49,57,44,51,50,46,50,51,50,57,53,51,93,44,91,45,56,52,46,53,50,55,49,49,55,44,51,50,46,49,51,52,53,53,54,93,44,91,45,56,52,46,52,51,49,50,49,52,44,51,50,46,49,51,52,48,53,56,93,44,91,45,56,52,46,52,51,48,50,49,56,44,51,50,46,49,54,54,50,53,55,93,44,91,45,56,52,46,51,57,50,51,49,54,44,51,50,46,52,49,52,48,52,54,93,44,91,45,56,52,46,52,52,52,51,53,51,44,51,50,46,53,54,50,48,56,51,93,44,91,45,56,52,46,54,51,55,51,50,51,44,51,50,46,53,51,52,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,54,48,53,52,51,44,52,51,46,48,56,51,49,52,53,93,44,91,45,57,55,46,49,54,48,51,53,51,44,52,50,46,55,57,57,55,48,49,93,44,91,45,57,55,46,48,49,53,56,52,57,44,52,50,46,55,54,49,51,51,56,93,44,91,45,57,54,46,56,48,54,50,49,51,44,52,50,46,55,48,52,49,53,52,93,44,91,45,57,54,46,56,48,53,54,56,50,44,52,51,46,48,56,51,54,55,93,44,91,45,57,54,46,57,50,52,49,52,50,44,52,51,46,48,56,51,55,51,51,93,44,91,45,57,55,46,49,54,48,53,52,51,44,52,51,46,48,56,51,49,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,83,117,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,68,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,53,52,48,44,34,98,101,100,115,34,58,53,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,49,51,56,52,54,49,44,51,57,46,48,48,50,54,57,55,93,44,91,45,55,53,46,51,55,50,49,51,49,44,51,56,46,57,54,49,52,51,54,93,44,91,45,55,53,46,53,53,53,48,49,51,44,51,56,46,56,51,53,54,52,57,93,44,91,45,55,53,46,55,50,50,55,57,55,44,51,56,46,56,50,57,56,53,49,93,44,91,45,55,53,46,55,48,55,52,52,55,44,51,56,46,54,51,53,51,57,54,93,44,91,45,55,53,46,55,48,49,53,54,57,44,51,56,46,53,54,48,55,51,54,93,44,91,45,55,53,46,54,57,51,54,55,44,51,56,46,52,54,48,48,56,93,44,91,45,55,53,46,51,52,49,50,57,49,44,51,56,46,52,53,50,48,51,52,93,44,91,45,55,52,46,57,56,54,50,56,50,44,51,56,46,52,53,49,54,51,50,93,44,91,45,55,53,46,48,49,53,49,50,51,44,51,56,46,55,56,56,54,53,55,93,44,91,45,55,53,46,49,51,56,52,54,49,44,51,57,46,48,48,50,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,56,52,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,56,50,49,57,54,44,51,51,46,53,50,54,50,50,93,44,91,45,56,51,46,56,54,51,48,53,56,44,51,51,46,51,54,56,50,55,56,93,44,91,45,56,51,46,56,50,50,50,54,49,44,51,51,46,49,56,48,50,51,56,93,44,91,45,56,51,46,56,49,54,48,52,56,44,51,51,46,49,51,49,56,49,54,93,44,91,45,56,51,46,53,52,53,56,55,54,44,51,51,46,49,55,49,57,52,52,93,44,91,45,56,51,46,53,51,51,55,51,54,44,51,51,46,52,51,52,52,55,50,93,44,91,45,56,51,46,54,56,50,49,57,54,44,51,51,46,53,50,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,52,53,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,57,50,49,52,57,44,51,57,46,54,49,48,50,54,53,93,44,91,45,57,50,46,55,48,55,51,54,55,44,51,57,46,51,50,49,54,49,52,93,44,91,45,57,50,46,52,51,48,50,50,57,44,51,57,46,50,52,56,55,57,53,93,44,91,45,57,50,46,51,49,52,52,55,49,44,51,57,46,50,52,54,52,53,52,93,44,91,45,57,50,46,51,49,48,48,50,56,44,51,57,46,51,52,55,55,57,53,93,44,91,45,57,50,46,51,48,48,56,55,49,44,51,57,46,54,48,53,51,52,56,93,44,91,45,57,50,46,54,57,50,49,52,57,44,51,57,46,54,49,48,50,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,52,54,56,44,34,98,101,100,115,34,58,49,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,53,50,52,55,54,44,51,55,46,57,49,50,55,51,51,93,44,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,44,91,45,57,54,46,53,50,53,54,57,44,51,55,46,52,55,54,52,48,53,93,44,91,45,57,54,46,53,50,53,51,44,51,55,46,54,48,55,48,49,53,93,44,91,45,57,54,46,53,50,50,55,56,50,44,51,56,46,48,56,54,51,55,93,44,91,45,57,54,46,56,52,48,55,55,50,44,51,56,46,48,56,53,54,50,50,93,44,91,45,57,55,46,49,53,50,57,49,51,44,51,56,46,48,56,55,55,48,52,93,44,91,45,57,55,46,49,53,50,52,55,54,44,51,55,46,57,49,50,55,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,57,34,44,34,78,65,77,69,34,58,34,72,97,121,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,49,53,48,44,34,98,101,100,115,34,58,52,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,57,55,54,44,51,48,46,48,51,55,57,57,52,93,44,91,45,57,56,46,48,51,48,53,50,51,44,50,57,46,56,52,56,53,51,57,93,44,91,45,57,55,46,57,57,57,50,55,49,44,50,57,46,55,53,50,52,52,52,93,44,91,45,57,55,46,56,55,53,50,53,57,44,50,57,46,56,53,56,50,48,56,93,44,91,45,57,55,46,55,49,48,50,49,53,44,51,48,46,48,50,52,52,57,57,93,44,91,45,57,56,46,49,55,50,57,55,55,44,51,48,46,51,53,54,51,49,50,93,44,91,45,57,56,46,50,57,55,54,44,51,48,46,48,51,55,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,53,34,44,34,78,65,77,69,34,58,34,77,101,100,105,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,51,51,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,49,51,56,56,44,50,57,46,48,57,49,51,51,53,93,44,91,45,57,56,46,56,48,52,57,44,50,57,46,48,57,48,52,51,52,93,44,91,45,57,56,46,56,48,52,55,54,51,44,50,57,46,50,53,48,54,57,51,93,44,91,45,57,56,46,56,48,54,53,53,50,44,50,57,46,54,57,48,55,48,57,93,44,91,45,57,56,46,57,50,55,49,54,49,44,50,57,46,53,54,50,50,53,93,44,91,45,57,56,46,57,56,51,55,56,55,44,50,57,46,54,50,51,52,53,93,44,91,45,57,57,46,52,49,49,56,49,55,44,50,57,46,54,50,55,53,49,52,93,44,91,45,57,57,46,52,49,51,56,56,44,50,57,46,48,57,49,51,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,56,56,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,52,51,53,48,55,44,52,52,46,49,54,55,48,56,56,93,44,91,45,56,54,46,57,56,55,57,57,56,44,52,52,46,49,56,50,54,52,57,93,44,91,45,56,55,46,48,55,53,51,51,53,44,52,51,46,56,57,52,55,55,52,93,44,91,45,56,55,46,48,57,51,49,48,57,44,52,51,46,56,50,48,49,49,51,93,44,91,45,56,54,46,48,51,55,56,56,52,44,52,51,46,56,49,53,54,49,49,93,44,91,45,56,54,46,48,52,51,53,48,55,44,52,52,46,49,54,55,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,101,97,117,102,111,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,54,53,56,44,34,98,101,100,115,34,58,51,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,54,57,55,48,53,44,51,50,46,54,54,48,57,51,53,93,44,91,45,56,48,46,56,50,48,50,50,56,44,51,50,46,52,57,48,55,56,56,93,44,91,45,56,48,46,56,52,49,52,53,56,44,51,50,46,51,56,53,48,54,52,93,44,91,45,56,48,46,57,50,49,56,56,51,44,51,50,46,51,53,49,56,51,52,93,44,91,45,56,49,46,48,48,56,53,52,44,51,50,46,50,49,50,49,50,56,93,44,91,45,56,48,46,57,48,48,53,55,51,44,51,50,46,49,49,49,54,49,55,93,44,91,45,56,48,46,55,52,53,53,51,54,44,51,50,46,48,55,56,54,54,55,93,44,91,45,56,48,46,53,56,52,57,56,53,44,51,50,46,49,54,50,53,56,57,93,44,91,45,56,48,46,53,50,51,56,50,52,44,51,50,46,50,51,52,53,57,50,93,44,91,45,56,48,46,51,57,50,51,50,55,44,51,50,46,50,56,48,51,49,55,93,44,91,45,56,48,46,51,48,53,55,49,49,44,51,50,46,51,57,55,53,56,57,93,44,91,45,56,48,46,53,48,50,57,52,52,44,51,50,46,52,57,53,54,53,50,93,44,91,45,56,48,46,54,56,52,56,53,51,44,51,50,46,54,53,54,48,57,55,93,44,91,45,56,48,46,56,50,54,51,48,57,44,51,50,46,55,48,52,51,50,49,93,44,91,45,56,48,46,56,54,57,55,48,53,44,51,50,46,54,54,48,57,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,89,97,110,107,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,49,55,44,34,98,101,100,115,34,58,50,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,57,57,49,57,49,44,52,51,46,49,54,57,52,49,57,93,44,91,45,57,55,46,54,51,55,52,57,54,44,52,51,46,49,54,56,55,55,93,44,91,45,57,55,46,54,51,53,52,52,44,52,50,46,56,53,49,53,51,50,93,44,91,45,57,55,46,52,56,52,57,50,49,44,52,50,46,56,53,48,51,54,56,93,44,91,45,57,55,46,50,49,56,48,52,54,44,52,50,46,56,52,53,49,49,51,93,44,91,45,57,55,46,49,54,48,51,53,51,44,52,50,46,55,57,57,55,48,49,93,44,91,45,57,55,46,49,54,48,53,52,51,44,52,51,46,48,56,51,49,52,53,93,44,91,45,57,55,46,49,54,48,53,52,52,44,52,51,46,49,54,57,57,55,56,93,44,91,45,57,55,46,51,57,57,49,57,49,44,52,51,46,49,54,57,52,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,82,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,55,54,57,44,34,98,101,100,115,34,58,53,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,54,57,49,50,56,44,52,50,46,56,52,53,48,51,54,93,44,91,45,56,57,46,51,54,53,55,57,56,44,52,50,46,53,48,48,48,55,56,93,44,91,45,56,56,46,57,52,48,51,56,56,44,52,50,46,52,57,53,48,52,53,93,44,91,45,56,56,46,55,55,54,52,57,51,44,52,50,46,52,57,49,57,49,50,93,44,91,45,56,56,46,55,55,55,48,55,54,44,52,50,46,56,52,50,54,57,52,93,44,91,45,56,57,46,48,49,51,53,56,50,44,52,50,46,56,52,55,54,51,93,44,91,45,56,57,46,51,54,57,49,50,56,44,52,50,46,56,52,53,48,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,80,105,99,107,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,55,52,54,44,34,98,101,100,115,34,58,49,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,57,55,51,55,51,44,51,53,46,48,53,54,50,49,52,93,44,91,45,56,50,46,56,57,54,48,50,53,44,51,52,46,55,51,54,53,52,55,93,44,91,45,56,50,46,56,52,48,49,53,53,44,51,52,46,54,50,51,49,50,93,44,91,45,56,50,46,55,56,55,55,53,49,44,51,52,46,54,55,50,53,57,52,93,44,91,45,56,50,46,52,56,55,50,48,51,44,51,52,46,56,49,56,56,49,49,93,44,91,45,56,50,46,52,57,52,48,48,55,44,51,52,46,56,57,54,50,49,53,93,44,91,45,56,50,46,54,50,53,53,57,57,44,51,53,46,48,54,52,54,56,54,93,44,91,45,56,50,46,55,54,52,53,55,53,44,51,53,46,48,54,56,51,56,93,44,91,45,56,50,46,56,57,55,51,55,51,44,51,53,46,48,53,54,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,50,50,56,54,51,53,44,52,54,46,53,57,51,51,54,50,93,44,91,45,49,49,56,46,50,52,49,56,55,50,44,52,54,46,50,57,53,48,54,52,93,44,91,45,49,49,56,46,49,49,54,54,50,52,44,52,54,46,50,48,56,48,53,93,44,91,45,49,49,55,46,57,57,49,52,56,49,44,52,54,46,50,48,55,55,48,50,93,44,91,45,49,49,55,46,57,57,54,57,55,44,52,54,46,48,48,48,53,54,93,44,91,45,49,49,55,46,57,55,55,54,54,52,44,52,54,46,48,48,48,53,50,50,93,44,91,45,49,49,55,46,54,48,51,52,50,52,44,52,53,46,57,57,56,57,53,93,44,91,45,49,49,55,46,54,49,49,57,48,51,44,52,54,46,51,51,56,52,55,56,93,44,91,45,49,49,55,46,55,51,55,51,48,51,44,52,54,46,52,55,49,52,53,52,93,44,91,45,49,49,55,46,56,54,51,51,52,55,44,52,54,46,52,55,48,54,54,55,93,44,91,45,49,49,55,46,56,53,49,56,53,44,52,54,46,54,50,52,54,55,93,44,91,45,49,49,56,46,49,55,50,53,53,50,44,52,54,46,53,53,54,57,52,55,93,44,91,45,49,49,56,46,50,49,53,54,54,44,52,54,46,53,56,56,57,50,52,93,44,91,45,49,49,56,46,50,50,56,54,51,53,44,52,54,46,53,57,51,51,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,51,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,57,52,54,54,53,44,52,48,46,52,51,50,49,53,54,93,44,91,45,56,54,46,54,57,53,54,51,55,44,52,48,46,50,49,52,51,54,55,93,44,91,45,56,54,46,54,57,53,56,48,52,44,52,48,46,49,55,56,54,53,55,93,44,91,45,56,54,46,50,52,50,51,54,53,44,52,48,46,49,56,48,55,55,56,93,44,91,45,56,54,46,50,52,50,55,52,51,44,52,48,46,50,49,53,56,51,52,93,44,91,45,56,54,46,50,52,50,57,57,50,44,52,48,46,51,55,51,54,54,49,93,44,91,45,56,54,46,51,55,53,55,54,50,44,52,48,46,52,51,49,56,53,49,93,44,91,45,56,54,46,54,57,52,54,54,53,44,52,48,46,52,51,50,49,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,54,50,56,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,48,54,57,52,57,44,51,56,46,54,53,53,48,49,57,93,44,91,45,56,57,46,55,48,52,50,52,53,44,51,56,46,52,49,53,55,55,57,93,44,91,45,56,57,46,53,55,57,51,50,53,44,51,56,46,52,56,48,49,56,52,93,44,91,45,56,57,46,51,50,57,52,54,57,44,51,56,46,53,49,48,50,49,51,93,44,91,45,56,57,46,49,52,51,56,54,54,44,51,56,46,53,48,51,48,56,57,93,44,91,45,56,57,46,49,51,56,51,57,51,44,51,56,46,55,51,54,51,51,49,93,44,91,45,56,57,46,50,53,52,49,56,53,44,51,56,46,55,52,50,48,49,56,93,44,91,45,56,57,46,53,57,55,51,50,49,44,51,56,46,55,52,51,50,51,54,93,44,91,45,56,57,46,55,48,54,57,52,57,44,51,56,46,54,53,53,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,77,105,110,105,100,111,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,57,51,49,54,56,55,44,52,50,46,55,54,53,48,50,54,93,44,91,45,49,49,51,46,57,51,49,55,57,57,44,52,50,46,53,51,53,50,52,51,93,44,91,45,49,49,51,46,54,53,52,49,52,57,44,52,50,46,53,51,54,49,53,53,93,44,91,45,49,49,51,46,53,53,55,49,57,51,44,52,50,46,54,53,54,55,57,57,93,44,91,45,49,49,51,46,52,55,50,49,55,55,44,52,50,46,54,54,57,51,53,50,93,44,91,45,49,49,51,46,52,55,50,49,53,53,44,52,50,46,56,52,57,50,48,49,93,44,91,45,49,49,51,46,52,49,51,49,51,56,44,52,50,46,56,52,57,49,54,57,93,44,91,45,49,49,51,46,52,49,51,56,54,55,44,52,51,46,49,57,57,56,53,57,93,44,91,45,49,49,51,46,55,49,52,54,52,50,44,52,51,46,49,57,57,55,56,51,93,44,91,45,49,49,51,46,55,49,52,48,52,52,44,52,50,46,56,52,57,55,51,52,93,44,91,45,49,49,51,46,55,54,51,56,54,50,44,52,50,46,55,54,52,53,48,56,93,44,91,45,49,49,51,46,57,51,49,54,56,55,44,52,50,46,55,54,53,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,56,49,51,55,51,49,44,52,49,46,53,57,48,48,51,52,93,44,91,45,55,54,46,55,52,57,52,57,55,44,52,49,46,52,48,53,53,55,50,93,44,91,45,55,54,46,53,57,50,53,51,50,44,52,49,46,51,48,52,51,51,50,93,44,91,45,55,54,46,52,52,55,53,57,55,44,52,49,46,50,55,53,54,50,57,93,44,91,45,55,54,46,51,49,48,49,51,51,44,52,49,46,51,49,48,49,57,57,93,44,91,45,55,54,46,50,56,51,49,44,52,49,46,51,55,54,53,49,55,93,44,91,45,55,54,46,50,50,48,49,51,57,44,52,49,46,53,52,49,50,56,53,93,44,91,45,55,54,46,56,49,51,55,51,49,44,52,49,46,53,57,48,48,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,82,97,110,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,50,52,48,44,34,98,101,100,115,34,58,50,48,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,54,53,54,57,55,44,51,50,46,51,57,57,53,50,57,93,44,91,45,57,48,46,50,52,53,51,56,44,51,50,46,49,55,49,51,57,54,93,44,91,45,57,48,46,50,51,48,51,51,49,44,51,50,46,48,52,57,55,50,56,93,44,91,45,56,57,46,55,51,48,48,54,54,44,51,50,46,48,52,55,48,55,50,93,44,91,45,56,57,46,55,51,48,52,50,52,44,51,50,46,50,50,50,48,51,57,93,44,91,45,56,57,46,55,51,48,48,54,51,44,51,50,46,51,53,50,55,51,51,93,44,91,45,56,57,46,55,56,52,49,50,51,44,51,50,46,53,56,54,56,57,49,93,44,91,45,56,57,46,56,54,49,49,53,57,44,51,50,46,53,56,51,49,54,50,93,44,91,45,57,48,46,48,54,53,54,57,55,44,51,50,46,51,57,57,53,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,52,53,34,44,34,78,65,77,69,34,58,34,77,111,116,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,52,49,52,56,52,44,51,52,46,51,49,50,52,52,52,93,44,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,44,91,45,49,48,48,46,53,49,56,54,57,49,44,51,51,46,56,51,53,54,53,93,44,91,45,49,48,48,46,53,49,55,51,52,44,51,52,46,51,49,52,49,48,50,93,44,91,45,49,48,48,46,57,52,54,49,51,50,44,51,52,46,51,49,50,55,53,57,93,44,91,45,49,48,49,46,48,52,49,52,56,52,44,51,52,46,51,49,50,52,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,76,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,56,56,50,44,34,98,101,100,115,34,58,55,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,50,51,48,49,55,56,44,52,51,46,56,54,51,55,50,51,93,44,91,45,49,50,51,46,57,52,54,50,57,49,44,52,51,46,56,54,50,54,56,50,93,44,91,45,49,50,51,46,56,50,55,48,48,52,44,52,51,46,57,52,52,56,51,55,93,44,91,45,49,50,51,46,54,49,57,48,49,50,44,52,51,46,57,50,49,49,49,55,93,44,91,45,49,50,51,46,53,50,57,49,53,51,44,52,51,46,56,51,48,48,54,49,93,44,91,45,49,50,51,46,51,52,56,50,52,54,44,52,51,46,55,56,48,49,55,93,44,91,45,49,50,51,46,49,51,55,51,49,57,44,52,51,46,55,55,57,54,55,93,44,91,45,49,50,51,46,49,48,55,54,56,54,44,52,51,46,53,52,48,48,49,93,44,91,45,49,50,50,46,55,52,49,56,52,53,44,52,51,46,53,52,52,54,53,52,93,44,91,45,49,50,50,46,55,52,49,55,49,54,44,52,51,46,52,51,55,51,57,53,93,44,91,45,49,50,50,46,49,51,50,48,51,52,44,52,51,46,52,52,48,50,50,49,93,44,91,45,49,50,50,46,49,51,48,54,56,57,44,52,51,46,53,53,55,49,52,51,93,44,91,45,49,50,50,46,48,48,50,51,54,50,44,52,51,46,54,49,53,52,57,56,93,44,91,45,49,50,49,46,57,55,50,57,51,49,44,52,51,46,56,54,49,49,53,54,93,44,91,45,49,50,49,46,56,53,55,48,54,51,44,52,51,46,57,54,53,50,52,56,93,44,91,45,49,50,49,46,55,54,56,48,55,44,52,52,46,49,49,53,50,52,53,93,44,91,45,49,50,49,46,56,49,57,52,50,57,44,52,52,46,50,54,50,51,57,52,93,44,91,45,49,50,50,46,51,50,55,49,53,44,52,52,46,50,53,50,56,52,49,93,44,91,45,49,50,50,46,53,48,55,50,48,51,44,52,52,46,50,50,51,52,52,56,93,44,91,45,49,50,50,46,55,54,50,55,51,53,44,52,52,46,50,57,48,53,51,55,93,44,91,45,49,50,50,46,56,54,53,52,55,56,44,52,52,46,50,56,55,49,51,52,93,44,91,45,49,50,50,46,57,48,53,55,53,53,44,52,52,46,50,48,48,55,51,54,93,44,91,45,49,50,51,46,49,54,53,52,50,56,44,52,52,46,50,48,48,48,55,49,93,44,91,45,49,50,51,46,49,56,48,51,56,56,44,52,52,46,50,56,51,55,50,53,93,44,91,45,49,50,51,46,55,55,53,53,57,56,44,52,52,46,50,56,51,53,52,55,93,44,91,45,49,50,52,46,49,56,55,52,48,57,44,52,52,46,50,55,54,56,55,49,93,44,91,45,49,50,52,46,50,51,48,49,55,56,44,52,51,46,56,54,51,55,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,56,53,34,44,34,78,65,77,69,34,58,34,87,105,99,104,105,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,56,49,56,44,34,98,101,100,115,34,58,56,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,50,51,53,55,55,44,51,51,46,56,51,54,48,52,55,93,44,91,45,57,56,46,52,50,51,53,51,51,44,51,52,46,48,56,50,56,52,51,93,44,91,45,57,56,46,52,56,54,51,50,56,44,51,52,46,48,54,50,53,57,56,93,44,91,45,57,56,46,54,48,57,57,56,55,44,51,52,46,49,53,55,49,53,52,93,44,91,45,57,56,46,54,57,48,48,55,50,44,51,52,46,49,51,51,49,53,53,93,44,91,45,57,56,46,56,56,55,49,49,50,44,51,52,46,49,54,56,50,54,93,44,91,45,57,56,46,57,53,50,51,57,53,44,51,52,46,50,49,50,52,57,55,93,44,91,45,57,56,46,57,53,51,50,48,50,44,51,51,46,56,51,52,48,50,53,93,44,91,45,57,56,46,52,50,51,53,55,55,44,51,51,46,56,51,54,48,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,83,104,105,97,119,97,115,115,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,57,51,44,34,98,101,100,115,34,58,49,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,55,55,54,44,52,51,46,49,49,55,57,52,50,93,44,91,45,56,52,46,51,54,51,54,53,57,44,52,50,46,55,55,53,55,55,56,93,44,91,45,56,52,46,49,53,56,49,56,57,44,52,50,46,55,55,54,54,51,57,93,44,91,45,56,51,46,57,50,50,53,49,54,44,52,50,46,55,56,48,56,50,49,93,44,91,45,56,51,46,57,50,57,48,55,57,44,52,51,46,49,51,50,55,56,50,93,44,91,45,56,52,46,51,54,55,56,57,49,44,52,51,46,49,50,56,52,53,50,93,44,91,45,56,52,46,51,54,55,55,54,44,52,51,46,49,49,55,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,74,101,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,48,52,52,53,53,44,52,48,46,48,48,50,50,57,49,93,44,91,45,57,56,46,53,48,53,50,54,54,44,51,57,46,53,54,55,54,48,51,93,44,91,45,57,56,46,52,56,55,51,56,52,44,51,57,46,53,54,55,52,57,50,93,44,91,45,57,55,46,57,51,49,56,52,52,44,51,57,46,53,54,54,57,50,49,93,44,91,45,57,55,46,57,51,49,52,56,50,44,51,57,46,54,53,51,55,54,55,93,44,91,45,57,55,46,57,51,49,56,50,53,44,52,48,46,48,48,50,48,55,50,93,44,91,45,57,56,46,50,55,52,48,49,55,44,52,48,46,48,48,50,54,54,50,93,44,91,45,57,56,46,53,48,52,52,53,53,44,52,48,46,48,48,50,50,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,105,116,99,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,50,50,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,56,55,51,56,52,44,51,57,46,53,54,55,52,57,50,93,44,91,45,57,56,46,52,57,48,49,52,57,44,51,57,46,50,49,57,55,56,93,44,91,45,57,55,46,57,50,57,55,52,54,44,51,57,46,50,49,57,50,55,51,93,44,91,45,57,55,46,57,50,57,48,57,55,44,51,57,46,51,48,54,51,57,55,93,44,91,45,57,55,46,57,51,49,56,52,52,44,51,57,46,53,54,54,57,50,49,93,44,91,45,57,56,46,52,56,55,51,56,52,44,51,57,46,53,54,55,52,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,114,97,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,55,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,52,50,53,55,56,44,51,48,46,49,52,51,49,49,55,93,44,91,45,56,50,46,51,49,51,51,56,53,44,50,57,46,57,53,52,55,48,52,93,44,91,45,56,50,46,52,49,56,55,50,56,44,50,57,46,57,50,51,48,57,51,93,44,91,45,56,50,46,50,56,49,56,51,55,44,50,57,46,56,52,52,52,52,56,93,44,91,45,56,50,46,49,51,51,49,50,54,44,50,57,46,56,51,53,57,52,57,93,44,91,45,56,50,46,48,53,53,54,50,53,44,50,57,46,55,49,56,50,51,50,93,44,91,45,56,50,46,48,52,57,50,52,52,44,50,57,46,55,49,56,54,55,93,44,91,45,56,50,46,48,52,57,52,50,53,44,51,48,46,49,52,51,49,51,54,93,44,91,45,56,50,46,49,52,50,53,55,56,44,51,48,46,49,52,51,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,48,50,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,52,48,52,54,54,44,51,49,46,51,51,54,48,49,52,93,44,91,45,57,48,46,48,51,49,56,57,54,44,51,49,46,49,55,53,55,50,55,93,44,91,45,56,57,46,56,51,53,56,55,51,44,51,49,46,48,55,52,57,50,54,93,44,91,45,56,57,46,56,51,53,57,48,56,44,51,49,46,48,48,50,48,52,55,93,44,91,45,56,57,46,55,50,56,49,49,57,44,51,49,46,48,48,50,51,93,44,91,45,56,57,46,54,53,52,48,51,56,44,51,49,46,48,48,50,53,48,50,93,44,91,45,56,57,46,54,53,52,50,49,50,44,51,49,46,52,51,51,56,48,53,93,44,91,45,56,57,46,56,50,52,50,51,54,44,51,49,46,52,51,52,48,57,51,93,44,91,45,56,57,46,57,53,56,57,52,44,51,49,46,51,57,48,52,56,57,93,44,91,45,57,48,46,48,52,48,52,54,54,44,51,49,46,51,51,54,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,71,101,111,114,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,55,49,48,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,51,52,51,51,57,44,51,48,46,57,57,55,57,56,51,93,44,91,45,56,56,46,56,56,53,48,51,56,44,51,48,46,57,49,48,55,56,56,93,44,91,45,56,56,46,56,56,52,53,51,52,44,51,48,46,55,51,53,53,57,49,93,44,91,45,56,56,46,52,49,50,54,49,50,44,51,48,46,55,51,53,53,57,93,44,91,45,56,56,46,52,50,53,52,51,50,44,51,48,46,57,57,56,51,50,51,93,44,91,45,56,56,46,56,51,52,51,51,57,44,51,48,46,57,57,55,57,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,74,111,32,68,97,118,105,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,51,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,52,50,56,52,51,44,52,50,46,53,48,56,52,56,49,93,44,91,45,57,48,46,52,55,51,55,57,56,44,52,50,46,51,56,49,52,53,56,93,44,91,45,57,48,46,51,57,49,49,48,56,44,52,50,46,50,50,53,52,55,51,93,44,91,45,57,48,46,51,49,55,51,57,53,44,52,50,46,49,57,51,54,52,53,93,44,91,45,56,57,46,57,49,57,55,55,50,44,52,50,46,49,57,54,56,56,49,93,44,91,45,56,57,46,57,50,54,52,54,54,44,52,50,46,53,48,53,55,55,50,93,44,91,45,57,48,46,52,50,54,51,55,55,44,52,50,46,53,48,55,49,55,51,93,44,91,45,57,48,46,54,52,50,56,52,51,44,52,50,46,53,48,56,52,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,56,51,48,44,34,98,101,100,115,34,58,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,55,54,49,57,50,44,51,57,46,57,52,53,55,53,54,93,44,91,45,56,53,46,56,54,50,52,56,57,44,51,57,46,57,52,51,54,49,56,93,44,91,45,56,53,46,57,51,55,53,56,55,44,51,57,46,57,50,55,49,51,55,93,44,91,45,56,53,46,57,53,49,55,50,49,44,51,57,46,54,57,55,49,51,54,93,44,91,45,56,53,46,54,51,51,50,50,56,44,51,57,46,54,57,56,52,54,50,93,44,91,45,56,53,46,53,57,54,57,49,54,44,51,57,46,55,56,54,53,49,57,93,44,91,45,56,53,46,53,55,54,49,57,50,44,51,57,46,57,52,53,55,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,50,48,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,49,49,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,50,52,54,50,57,44,51,54,46,55,48,55,55,50,57,93,44,91,45,55,54,46,57,53,53,52,50,52,44,51,54,46,54,54,52,53,56,55,93,44,91,45,55,54,46,57,48,57,54,55,50,44,51,54,46,54,52,56,49,55,53,93,44,91,45,55,54,46,57,50,52,54,50,57,44,51,54,46,55,48,55,55,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,57,34,44,34,78,65,77,69,34,58,34,77,105,100,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,49,57,52,44,34,98,101,100,115,34,58,54,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,50,56,55,48,52,56,44,51,50,46,48,56,54,57,57,49,93,44,91,45,49,48,50,46,50,56,55,51,52,53,44,51,49,46,54,53,49,50,55,54,93,44,91,45,49,48,49,46,55,55,53,56,48,50,44,51,49,46,54,53,49,51,49,57,93,44,91,45,49,48,49,46,55,55,54,48,56,53,44,51,50,46,48,56,54,57,50,53,93,44,91,45,49,48,50,46,50,49,49,50,52,57,44,51,50,46,48,56,54,56,93,44,91,45,49,48,50,46,50,56,55,48,52,56,44,51,50,46,48,56,54,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,49,50,56,51,55,57,44,51,56,46,55,48,48,54,48,51,93,44,91,45,49,48,49,46,49,50,53,52,51,56,44,51,56,46,50,54,52,53,48,57,93,44,91,45,49,48,49,46,49,48,51,50,54,56,44,51,56,46,50,54,52,53,53,55,93,44,91,45,49,48,48,46,54,56,52,54,57,57,44,51,56,46,50,54,52,49,51,55,93,44,91,45,49,48,48,46,54,56,56,48,48,54,44,51,56,46,55,48,48,48,50,49,93,44,91,45,49,48,48,46,56,49,56,54,57,56,44,51,56,46,54,57,57,56,54,49,93,44,91,45,49,48,49,46,49,50,56,51,55,57,44,51,56,46,55,48,48,54,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,115,99,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,55,52,54,44,34,98,101,100,115,34,58,53,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,48,52,55,55,56,49,44,52,55,46,53,49,54,48,51,52,93,44,91,45,49,49,50,46,48,52,52,56,50,57,44,52,55,46,49,57,50,55,49,49,93,44,91,45,49,49,49,46,55,56,57,50,55,56,44,52,55,46,49,50,56,57,50,50,93,44,91,45,49,49,49,46,55,57,48,50,51,54,44,52,54,46,57,49,51,55,54,52,93,44,91,45,49,49,49,46,54,53,56,49,51,50,44,52,54,46,57,49,51,52,50,51,93,44,91,45,49,49,49,46,53,51,57,51,55,51,44,52,55,46,48,48,48,53,53,57,93,44,91,45,49,49,49,46,48,56,52,50,56,53,44,52,55,46,48,49,48,54,49,51,93,44,91,45,49,49,48,46,57,49,51,48,51,53,44,52,54,46,57,56,48,53,53,57,93,44,91,45,49,49,48,46,54,53,50,56,55,55,44,52,54,46,56,50,51,54,50,54,93,44,91,45,49,49,48,46,54,52,53,50,49,50,44,52,55,46,48,57,53,56,55,93,44,91,45,49,49,48,46,55,55,48,54,57,56,44,52,55,46,48,57,54,53,52,54,93,44,91,45,49,49,48,46,55,54,55,49,50,53,44,52,55,46,51,53,57,49,50,56,93,44,91,45,49,49,48,46,54,51,57,53,53,57,44,52,55,46,52,49,54,52,56,54,93,44,91,45,49,49,48,46,55,54,57,49,50,57,44,52,55,46,52,52,54,48,57,54,93,44,91,45,49,49,48,46,56,54,52,54,51,44,52,55,46,53,50,52,55,49,52,93,44,91,45,49,49,49,46,48,52,51,56,56,49,44,52,55,46,53,57,49,53,56,51,93,44,91,45,49,49,48,46,57,55,54,54,54,56,44,52,55,46,54,57,56,55,51,93,44,91,45,49,49,49,46,52,48,56,56,53,44,52,55,46,54,57,56,49,50,51,93,44,91,45,49,49,49,46,54,54,54,52,56,50,44,52,55,46,54,57,55,55,54,49,93,44,91,45,49,49,49,46,54,54,54,50,54,44,52,55,46,54,49,49,50,53,51,93,44,91,45,49,49,49,46,57,50,50,57,51,54,44,52,55,46,54,49,49,50,51,49,93,44,91,45,49,49,49,46,57,50,50,55,57,53,44,52,55,46,53,48,53,48,54,52,93,44,91,45,49,49,50,46,48,52,55,55,56,49,44,52,55,46,53,49,54,48,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,54,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,54,48,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,51,57,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,49,55,56,55,49,44,51,56,46,51,57,52,49,53,51,93,44,91,45,55,56,46,56,50,52,51,50,44,51,56,46,52,51,53,48,55,57,93,44,91,45,55,56,46,57,48,48,53,56,57,44,51,56,46,52,53,57,50,49,55,93,44,91,45,55,56,46,57,49,55,56,55,49,44,51,56,46,51,57,52,49,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,50,57,57,44,34,98,101,100,115,34,58,51,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,53,49,49,55,54,44,51,55,46,56,54,49,57,57,57,93,44,91,45,56,57,46,49,53,51,54,49,55,44,51,55,46,54,48,48,50,51,55,93,44,91,45,56,57,46,48,52,49,52,48,49,44,51,55,46,53,57,54,53,55,54,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,50,55,55,93,44,91,45,56,56,46,55,48,54,55,53,57,44,51,55,46,56,54,51,52,53,55,93,44,91,45,56,57,46,49,53,49,49,55,54,44,51,55,46,56,54,49,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,70,108,97,116,104,101,97,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,48,56,50,44,34,98,101,100,115,34,58,50,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,55,50,55,48,52,53,44,52,57,46,48,48,48,53,48,56,93,44,91,45,49,49,52,46,54,52,56,49,51,52,44,52,56,46,55,55,57,51,51,50,93,44,91,45,49,49,52,46,54,57,50,52,53,44,52,56,46,54,56,48,49,51,54,93,44,91,45,49,49,52,46,56,56,56,53,57,44,52,56,46,54,53,56,55,54,53,93,44,91,45,49,49,52,46,56,52,57,56,48,51,44,52,56,46,53,55,51,53,48,50,93,44,91,45,49,49,52,46,56,52,56,48,57,56,44,52,56,46,50,50,54,49,50,53,93,44,91,45,49,49,53,46,48,50,48,48,55,57,44,52,56,46,50,50,53,57,53,52,93,44,91,45,49,49,53,46,48,49,48,54,55,50,44,52,56,46,48,49,55,54,50,49,93,44,91,45,49,49,52,46,57,56,57,51,52,52,44,52,55,46,56,55,50,56,48,55,93,44,91,45,49,49,52,46,54,48,52,53,56,52,44,52,55,46,56,55,53,54,48,53,93,44,91,45,49,49,52,46,54,48,52,52,54,50,44,52,55,46,55,56,57,56,55,49,93,44,91,45,49,49,52,46,52,55,55,50,57,44,52,55,46,55,56,57,57,52,49,93,44,91,45,49,49,52,46,52,57,50,49,57,44,52,55,46,57,54,49,57,56,57,93,44,91,45,49,49,52,46,48,51,56,53,52,53,44,52,55,46,57,54,50,53,53,93,44,91,45,49,49,52,46,48,50,57,48,52,50,44,52,56,46,48,53,49,54,53,51,93,44,91,45,49,49,51,46,56,56,52,53,52,49,44,52,56,46,48,53,49,57,93,44,91,45,49,49,51,46,56,51,50,53,53,54,44,52,55,46,57,55,54,52,51,52,93,44,91,45,49,49,51,46,54,55,50,51,51,53,44,52,55,46,56,57,54,52,57,49,93,44,91,45,49,49,51,46,54,51,52,48,55,57,44,52,55,46,54,48,48,48,50,55,93,44,91,45,49,49,51,46,52,54,54,52,56,53,44,52,55,46,54,48,48,48,53,55,93,44,91,45,49,49,51,46,49,52,52,51,54,56,44,52,55,46,53,57,53,53,48,55,93,44,91,45,49,49,51,46,49,54,53,56,49,49,44,52,55,46,55,49,57,55,54,52,93,44,91,45,49,49,51,46,48,56,48,57,57,55,44,52,55,46,55,52,57,57,49,55,93,44,91,45,49,49,51,46,48,54,50,56,55,54,44,52,55,46,56,56,53,53,54,51,93,44,91,45,49,49,50,46,57,56,52,55,51,52,44,52,55,46,57,53,51,57,49,56,93,44,91,45,49,49,50,46,56,56,52,56,56,51,44,52,55,46,57,56,53,52,49,52,93,44,91,45,49,49,51,46,48,49,52,56,49,49,44,52,56,46,49,51,49,48,51,93,44,91,45,49,49,51,46,50,51,48,55,50,51,44,52,56,46,49,56,50,48,48,50,93,44,91,45,49,49,51,46,51,52,57,48,52,54,44,52,56,46,51,49,48,50,54,51,93,44,91,45,49,49,51,46,51,53,53,57,55,54,44,52,56,46,52,50,51,57,49,50,93,44,91,45,49,49,51,46,52,56,48,56,51,57,44,52,56,46,52,53,57,54,54,50,93,44,91,45,49,49,51,46,52,54,55,51,55,50,44,52,56,46,53,52,55,53,53,53,93,44,91,45,49,49,51,46,55,53,48,52,53,52,44,52,56,46,54,49,52,51,51,53,93,44,91,45,49,49,51,46,55,48,50,57,51,56,44,52,56,46,55,49,57,56,54,53,93,44,91,45,49,49,51,46,56,49,56,51,55,51,44,52,56,46,56,52,56,50,49,56,93,44,91,45,49,49,51,46,57,53,54,56,54,52,44,52,56,46,56,49,55,52,55,52,93,44,91,45,49,49,52,46,48,54,56,49,56,44,52,56,46,57,57,56,56,53,55,93,44,91,45,49,49,52,46,55,50,55,48,52,53,44,52,57,46,48,48,48,53,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,80,101,195,177,117,101,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,55,54,57,48,52,57,44,49,56,46,49,51,52,57,56,51,93,44,91,45,54,54,46,55,55,52,49,50,51,44,49,55,46,57,49,52,55,57,54,93,44,91,45,54,54,46,55,49,53,50,52,52,44,49,55,46,57,49,50,54,56,50,93,44,91,45,54,54,46,54,57,52,48,55,44,49,56,46,49,51,48,53,51,52,93,44,91,45,54,54,46,55,54,57,48,52,57,44,49,56,46,49,51,52,57,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,83,116,101,118,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,56,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,53,54,54,48,54,44,51,55,46,51,56,56,52,56,53,93,44,91,45,49,48,49,46,53,53,53,50,53,57,44,51,54,46,57,57,53,51,50,52,93,44,91,45,49,48,49,46,48,54,54,52,53,49,44,51,54,46,57,57,55,57,50,50,93,44,91,45,49,48,49,46,48,54,56,49,48,54,44,51,55,46,51,56,55,55,55,57,93,44,91,45,49,48,49,46,48,56,57,54,53,51,44,51,55,46,51,56,55,55,50,49,93,44,91,45,49,48,49,46,53,50,53,56,49,44,51,55,46,51,56,56,51,57,50,93,44,91,45,49,48,49,46,53,53,54,54,48,54,44,51,55,46,51,56,56,52,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,56,55,51,52,44,34,98,101,100,115,34,58,50,49,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,48,49,56,52,55,44,51,56,46,50,48,55,56,56,57,93,44,91,45,56,52,46,54,50,53,48,55,57,44,51,56,46,49,49,54,51,57,55,93,44,91,45,56,52,46,54,54,48,51,52,44,51,56,46,48,48,51,56,51,54,93,44,91,45,56,52,46,52,55,57,54,50,57,44,51,55,46,57,52,48,50,49,57,93,44,91,45,56,52,46,52,51,53,55,50,44,51,55,46,56,52,55,50,48,50,93,44,91,45,56,52,46,51,51,55,51,57,51,44,51,55,46,56,57,50,48,48,55,93,44,91,45,56,52,46,50,56,54,52,54,49,44,51,56,46,48,54,55,48,50,56,93,44,91,45,56,52,46,51,56,48,55,56,56,44,51,56,46,49,49,51,57,54,93,44,91,45,56,52,46,52,48,49,56,52,55,44,51,56,46,50,48,55,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,55,56,56,51,55,44,51,55,46,57,51,48,50,52,52,93,44,91,45,56,54,46,56,49,55,49,44,51,55,46,55,57,49,53,56,57,93,44,91,45,56,54,46,56,50,51,52,50,57,44,51,55,46,55,51,55,55,53,52,93,44,91,45,56,54,46,54,51,56,57,51,53,44,51,55,46,54,54,49,56,55,55,93,44,91,45,56,54,46,54,53,53,50,55,50,44,51,55,46,56,52,50,53,50,49,93,44,91,45,56,54,46,56,49,52,55,52,52,44,51,55,46,57,57,56,55,48,52,93,44,91,45,56,54,46,57,55,56,56,51,55,44,51,55,46,57,51,48,50,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,52,48,44,34,98,101,100,115,34,58,49,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,50,53,48,48,50,44,52,53,46,53,57,49,50,53,50,93,44,91,45,57,56,46,55,50,50,52,56,49,44,52,53,46,50,52,51,55,54,52,93,44,91,45,57,56,46,55,49,55,55,53,57,44,52,53,46,50,52,51,55,51,50,93,44,91,45,57,55,46,57,56,49,52,53,55,44,52,53,46,50,52,48,52,49,53,93,44,91,45,57,55,46,57,55,57,53,57,50,44,52,53,46,53,56,56,52,56,51,93,44,91,45,57,55,46,57,55,56,55,55,56,44,52,53,46,57,51,53,56,54,51,93,44,91,45,57,56,46,48,48,56,49,48,50,44,52,53,46,57,51,53,56,57,54,93,44,91,45,57,56,46,55,50,52,51,55,53,44,52,53,46,57,51,56,55,51,49,93,44,91,45,57,56,46,55,50,53,48,48,50,44,52,53,46,53,57,49,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,97,114,98,111,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,51,48,44,34,98,101,100,115,34,58,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,57,53,53,51,54,44,51,57,46,50,57,57,53,56,52,93,44,91,45,56,48,46,48,50,51,52,49,49,44,51,57,46,50,52,55,56,57,50,93,44,91,45,56,48,46,49,54,54,51,56,55,44,51,57,46,50,52,50,50,56,51,93,44,91,45,56,48,46,50,50,55,49,55,51,44,51,57,46,49,49,50,55,57,50,93,44,91,45,56,48,46,48,52,52,54,57,53,44,51,57,46,48,49,48,49,56,54,93,44,91,45,56,48,46,48,56,53,48,54,50,44,51,56,46,57,52,55,50,51,54,93,44,91,45,55,57,46,56,57,54,48,57,52,44,51,56,46,57,55,51,52,48,52,93,44,91,45,55,57,46,56,50,53,48,57,50,44,51,57,46,49,49,53,56,48,51,93,44,91,45,55,57,46,56,48,57,55,50,57,44,51,57,46,50,51,48,53,50,54,93,44,91,45,55,57,46,56,57,53,53,51,54,44,51,57,46,50,57,57,53,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,52,57,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,50,52,55,52,49,44,51,53,46,51,57,50,51,48,55,93,44,91,45,56,55,46,57,56,49,53,56,53,44,51,53,46,50,57,53,54,55,56,93,44,91,45,56,55,46,57,56,52,57,49,54,44,51,53,46,48,48,53,57,51,51,93,44,91,45,56,55,46,54,48,54,48,51,49,44,51,53,46,48,48,51,52,50,53,93,44,91,45,56,55,46,53,55,55,55,57,54,44,51,53,46,49,53,57,52,93,44,91,45,56,55,46,53,55,53,51,53,50,44,51,53,46,51,57,56,52,53,52,93,44,91,45,56,55,46,55,49,55,53,53,57,44,51,53,46,52,56,51,51,52,55,93,44,91,45,56,55,46,57,55,51,49,56,44,51,53,46,52,53,57,57,54,56,93,44,91,45,56,56,46,48,48,55,55,48,57,44,51,53,46,52,50,51,51,56,49,93,44,91,45,56,56,46,48,50,52,55,52,49,44,51,53,46,51,57,50,51,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,111,120,32,66,117,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,52,52,52,53,51,50,44,52,50,46,52,51,55,51,53,52,93,44,91,45,49,48,51,46,52,52,52,49,48,56,44,52,50,46,48,57,48,55,48,56,93,44,91,45,49,48,51,46,52,48,49,54,51,57,44,52,50,46,48,48,51,53,52,93,44,91,45,49,48,51,46,51,54,51,51,51,55,44,52,50,46,48,48,50,57,51,93,44,91,45,49,48,50,46,54,57,55,56,51,53,44,52,50,46,48,48,52,56,52,51,93,44,91,45,49,48,50,46,55,52,50,50,54,57,44,52,50,46,48,57,50,51,56,56,93,44,91,45,49,48,50,46,55,55,51,51,54,54,44,52,50,46,52,51,57,57,50,50,93,44,91,45,49,48,51,46,52,52,52,53,51,50,44,52,50,46,52,51,55,51,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,51,50,53,44,34,98,101,100,115,34,58,49,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,56,57,54,49,49,52,44,52,49,46,49,51,57,48,55,93,44,91,45,55,54,46,56,56,50,50,56,44,52,48,46,57,55,49,51,51,52,93,44,91,45,55,54,46,56,48,48,50,52,50,44,52,48,46,56,56,49,57,57,52,93,44,91,45,55,54,46,56,53,53,51,54,50,44,52,48,46,55,50,56,56,50,49,93,44,91,45,55,54,46,57,51,57,55,52,57,44,52,48,46,54,51,56,51,55,56,93,44,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,44,91,45,55,54,46,55,48,49,54,50,52,44,52,48,46,54,53,56,48,56,50,93,44,91,45,55,54,46,51,56,48,49,53,50,44,52,48,46,55,55,53,53,49,49,93,44,91,45,55,54,46,53,50,56,48,51,52,44,52,48,46,56,56,50,53,49,53,93,44,91,45,55,54,46,54,54,49,51,52,56,44,52,48,46,57,54,55,57,57,54,93,44,91,45,55,54,46,55,57,50,54,49,44,52,48,46,57,52,54,54,52,55,93,44,91,45,55,54,46,55,51,50,54,55,50,44,52,49,46,49,55,50,48,52,93,44,91,45,55,54,46,56,57,54,49,49,52,44,52,49,46,49,51,57,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,54,57,34,44,34,78,65,77,69,34,58,34,86,105,99,116,111,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,57,55,48,44,34,98,101,100,115,34,58,54,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,55,54,51,55,56,44,50,57,46,49,48,52,48,52,54,93,44,91,45,57,55,46,51,48,53,57,49,54,44,50,56,46,56,54,52,48,51,55,93,44,91,45,57,55,46,50,48,52,57,57,56,44,50,56,46,56,53,53,48,52,93,44,91,45,57,55,46,49,53,56,57,51,51,44,50,56,46,55,55,54,49,53,54,93,44,91,45,57,55,46,49,54,48,55,53,49,44,50,56,46,53,53,51,52,55,53,93,44,91,45,57,54,46,56,57,48,57,53,49,44,50,56,46,53,48,55,49,55,56,93,44,91,45,57,54,46,56,53,51,55,53,55,44,50,56,46,54,51,53,49,57,57,93,44,91,45,57,54,46,54,52,51,52,52,50,44,50,56,46,55,49,50,49,48,53,93,44,91,45,57,54,46,55,57,50,49,51,51,44,50,56,46,57,49,56,56,48,51,93,44,91,45,57,54,46,56,51,56,55,57,53,44,50,57,46,48,50,53,51,50,55,93,44,91,45,57,54,46,57,51,56,53,56,55,44,50,57,46,48,54,51,50,52,52,93,44,91,45,57,54,46,57,55,54,51,55,56,44,50,57,46,49,48,52,48,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,51,48,34,44,34,78,65,77,69,34,58,34,66,117,101,110,97,32,86,105,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,51,56,49,53,48,57,44,51,55,46,55,52,50,49,52,57,93,44,91,45,55,57,46,51,54,48,55,54,50,44,51,55,46,55,48,50,54,54,54,93,44,91,45,55,57,46,51,51,49,50,53,50,44,51,55,46,55,52,52,51,51,54,93,44,91,45,55,57,46,51,56,49,53,48,57,44,51,55,46,55,52,50,49,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,108,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,53,54,54,44,34,98,101,100,115,34,58,50,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,51,52,48,55,51,44,52,51,46,49,55,48,52,49,51,93,44,91,45,56,50,46,57,57,54,50,53,55,44,52,51,46,49,53,52,48,57,57,93,44,91,45,56,50,46,57,56,51,54,52,55,44,52,50,46,56,57,51,55,52,49,93,44,91,45,56,50,46,55,51,57,48,49,44,52,50,46,56,57,55,53,52,49,93,44,91,45,56,50,46,55,50,51,49,55,44,52,50,46,52,55,55,55,55,56,93,44,91,45,56,50,46,53,50,52,56,51,51,44,52,50,46,54,48,53,57,55,54,93,44,91,45,56,50,46,52,54,55,54,54,55,44,52,50,46,55,54,49,57,48,54,93,44,91,45,56,50,46,52,53,54,50,52,57,44,52,50,46,57,50,53,49,55,55,93,44,91,45,56,50,46,51,51,52,48,55,51,44,52,51,46,49,55,48,52,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,84,104,117,114,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,52,48,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,50,50,52,57,55,44,52,50,46,50,54,52,50,57,50,93,44,91,45,57,54,46,56,50,51,54,55,44,52,50,46,48,57,48,52,49,49,93,44,91,45,57,54,46,53,53,53,53,49,49,44,52,50,46,48,56,57,57,53,55,93,44,91,45,57,54,46,53,53,52,56,54,54,44,52,50,46,48,49,53,56,55,53,93,44,91,45,57,54,46,51,48,57,54,52,53,44,52,50,46,48,49,53,49,56,55,93,44,91,45,57,54,46,50,55,51,49,50,44,52,50,46,48,52,55,49,53,56,93,44,91,45,57,54,46,51,53,54,53,54,44,52,50,46,50,49,53,48,48,50,93,44,91,45,57,54,46,51,53,54,51,57,53,44,52,50,46,50,55,54,52,57,52,93,44,91,45,57,54,46,55,50,54,54,54,49,44,52,50,46,50,55,56,48,48,53,93,44,91,45,57,54,46,56,50,50,52,57,55,44,52,50,46,50,54,52,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,76,97,109,111,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,54,56,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,53,55,56,49,54,49,44,52,52,46,55,56,49,53,55,56,93,44,91,45,55,50,46,55,52,55,51,54,44,52,52,46,55,56,54,49,55,93,44,91,45,55,50,46,57,50,52,49,49,50,44,52,52,46,54,51,51,48,53,49,93,44,91,45,55,50,46,56,50,57,48,55,51,44,52,52,46,53,53,50,50,55,51,93,44,91,45,55,50,46,56,48,52,57,57,53,44,52,52,46,52,53,49,54,55,54,93,44,91,45,55,50,46,54,53,52,51,57,56,44,52,52,46,51,57,56,50,50,52,93,44,91,45,55,50,46,52,57,50,57,49,52,44,52,52,46,52,50,51,48,51,93,44,91,45,55,50,46,52,51,52,51,49,53,44,52,52,46,53,48,54,48,57,56,93,44,91,45,55,50,46,51,55,52,55,56,54,44,52,52,46,53,56,52,49,50,53,93,44,91,45,55,50,46,52,56,50,51,48,50,44,52,52,46,54,51,51,57,50,56,93,44,91,45,55,50,46,52,49,55,51,49,53,44,52,52,46,55,50,50,56,57,51,93,44,91,45,55,50,46,53,55,56,49,54,49,44,52,52,46,55,56,49,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,50,51,51,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,49,50,56,54,55,52,44,51,55,46,49,50,50,57,48,49,93,44,91,45,56,48,46,49,52,53,56,52,52,44,51,54,46,57,52,57,53,55,56,93,44,91,45,56,48,46,50,51,53,52,53,53,44,51,54,46,56,55,50,49,51,93,44,91,45,56,48,46,48,54,54,52,52,57,44,51,54,46,56,52,49,48,53,55,93,44,91,45,56,48,46,48,52,49,52,57,51,44,51,54,46,55,57,52,51,54,53,93,44,91,45,55,57,46,57,57,57,55,55,49,44,51,54,46,56,51,48,55,51,56,93,44,91,45,55,57,46,56,48,50,48,53,54,44,51,54,46,55,57,50,49,51,55,93,44,91,45,55,57,46,54,52,48,54,53,50,44,51,54,46,56,53,54,49,51,57,93,44,91,45,55,57,46,53,57,52,48,54,57,44,51,55,46,48,52,50,50,48,54,93,44,91,45,55,57,46,54,55,56,48,50,56,44,51,55,46,49,53,53,49,54,53,93,44,91,45,55,57,46,56,52,55,50,49,55,44,51,55,46,50,50,53,52,48,54,93,44,91,45,55,57,46,57,54,49,56,57,44,51,55,46,49,51,55,51,52,57,93,44,91,45,56,48,46,49,50,56,54,55,52,44,51,55,46,49,50,50,57,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,108,97,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,51,52,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,51,54,56,57,57,44,51,54,46,49,54,52,56,57,52,93,44,91,45,57,56,46,54,51,49,57,56,53,44,51,53,46,56,49,50,52,48,50,93,44,91,45,57,56,46,54,50,51,50,52,52,44,51,53,46,53,53,49,53,50,50,93,44,91,45,57,56,46,51,49,51,50,53,49,44,51,53,46,53,53,49,53,50,51,93,44,91,45,57,56,46,51,49,51,49,53,51,44,51,53,46,55,50,53,49,54,49,93,44,91,45,57,56,46,50,48,55,49,48,52,44,51,53,46,55,50,53,49,56,55,93,44,91,45,57,56,46,50,49,48,52,48,53,44,51,54,46,49,54,52,56,56,57,93,44,91,45,57,56,46,54,51,54,56,57,57,44,51,54,46,49,54,52,56,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,75,105,116,116,105,116,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,56,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,49,49,51,53,54,57,44,52,55,46,53,57,55,50,56,56,93,44,91,45,49,50,49,46,49,55,50,49,57,50,44,52,55,46,53,57,48,50,51,51,93,44,91,45,49,50,49,46,52,54,51,57,53,49,44,52,55,46,51,55,48,53,55,56,93,44,91,45,49,50,49,46,51,52,49,50,48,51,44,52,55,46,50,56,49,50,54,49,93,44,91,45,49,50,49,46,51,49,53,53,51,52,44,52,55,46,49,51,51,56,52,52,93,44,91,45,49,50,49,46,51,55,57,54,56,50,44,52,55,46,48,56,55,52,57,53,93,44,91,45,49,50,49,46,50,53,54,52,52,44,52,55,46,48,56,49,55,55,50,93,44,91,45,49,50,49,46,48,57,48,48,53,52,44,52,54,46,57,57,49,48,48,55,93,44,91,45,49,50,49,46,48,50,54,54,50,44,52,54,46,57,49,49,51,48,56,93,44,91,45,49,50,48,46,54,51,52,53,54,50,44,52,54,46,57,49,50,49,51,93,44,91,45,49,50,48,46,54,51,51,57,56,49,44,52,54,46,56,50,53,55,55,54,93,44,91,45,49,50,48,46,53,49,44,52,54,46,55,51,55,57,52,54,93,44,91,45,49,49,57,46,57,55,51,48,51,54,44,52,54,46,55,51,55,49,50,54,93,44,91,45,49,49,57,46,57,50,55,53,51,55,44,52,54,46,56,49,55,48,57,50,93,44,91,45,49,50,48,46,48,52,50,56,54,54,44,52,55,46,48,55,51,52,53,51,93,44,91,45,49,50,48,46,48,48,55,48,55,52,44,52,55,46,50,50,48,49,51,51,93,44,91,45,49,50,48,46,48,57,52,52,54,44,52,55,46,50,54,50,49,53,57,93,44,91,45,49,50,48,46,51,56,57,49,57,55,44,52,55,46,50,54,48,57,51,53,93,44,91,45,49,50,48,46,57,50,52,50,48,55,44,52,55,46,52,51,51,53,56,50,93,44,91,45,49,50,49,46,49,49,51,53,54,57,44,52,55,46,53,57,55,50,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,48,51,54,55,50,44,52,48,46,51,49,48,48,57,51,93,44,91,45,56,53,46,50,49,56,55,53,56,44,52,48,46,51,48,54,55,48,54,93,44,91,45,56,53,46,50,49,52,51,56,54,44,52,48,46,48,55,54,56,56,57,93,44,91,45,56,53,46,50,48,49,52,55,51,44,52,48,46,48,48,52,53,50,49,93,44,91,45,56,52,46,56,49,48,56,50,53,44,52,48,46,48,48,53,48,55,55,93,44,91,45,56,52,46,56,48,51,54,55,50,44,52,48,46,51,49,48,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,75,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,53,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,57,48,48,57,57,51,44,51,55,46,53,48,48,48,50,49,93,44,91,45,49,49,50,46,56,57,57,49,57,49,44,51,55,46,48,48,48,51,56,53,93,44,91,45,49,49,50,46,53,51,56,53,55,49,44,51,55,46,48,48,48,55,53,56,93,44,91,45,49,49,49,46,52,49,50,55,56,52,44,51,55,46,48,48,49,53,48,51,93,44,91,45,49,49,49,46,49,55,56,51,52,57,44,51,55,46,49,48,50,54,49,51,93,44,91,45,49,49,48,46,57,57,50,52,48,52,44,51,55,46,49,49,49,48,57,51,93,44,91,45,49,49,48,46,56,57,57,53,49,55,44,51,55,46,49,55,54,49,53,51,93,44,91,45,49,49,48,46,56,49,50,53,48,49,44,51,55,46,51,50,52,57,57,50,93,44,91,45,49,49,48,46,55,52,50,49,57,56,44,51,55,46,51,52,52,51,57,50,93,44,91,45,49,49,48,46,54,52,54,51,57,52,44,51,55,46,53,52,49,48,54,51,93,44,91,45,49,49,49,46,56,52,48,56,48,57,44,51,55,46,53,51,53,55,56,57,93,44,91,45,49,49,50,46,54,56,51,55,53,44,51,55,46,53,52,51,54,57,50,93,44,91,45,49,49,50,46,57,48,48,57,57,51,44,51,55,46,53,48,48,48,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,84,117,99,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,50,53,48,57,50,44,51,57,46,49,49,53,56,48,51,93,44,91,45,55,57,46,55,56,53,54,56,53,44,51,57,46,48,51,55,52,48,52,93,44,91,45,55,57,46,53,48,56,55,54,53,44,51,56,46,57,55,53,49,55,51,93,44,91,45,55,57,46,51,53,55,54,54,54,44,51,56,46,57,54,52,53,48,57,93,44,91,45,55,57,46,50,57,54,54,54,51,44,51,57,46,49,57,56,52,48,54,93,44,91,45,55,57,46,52,56,55,49,55,53,44,51,57,46,49,57,52,57,48,54,93,44,91,45,55,57,46,54,56,55,50,56,51,44,51,57,46,50,55,49,51,57,56,93,44,91,45,55,57,46,56,48,57,55,50,57,44,51,57,46,50,51,48,53,50,54,93,44,91,45,55,57,46,56,50,53,48,57,50,44,51,57,46,49,49,53,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,80,111,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,57,50,54,44,34,98,101,100,115,34,58,55,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,53,50,55,54,54,44,49,56,46,49,53,50,48,53,55,93,44,91,45,54,54,46,54,52,57,52,54,55,44,49,56,46,49,53,56,56,53,55,93,44,91,45,54,54,46,54,55,48,52,57,52,44,49,56,46,49,53,50,56,51,49,93,44,91,45,54,54,46,54,57,52,48,55,44,49,56,46,49,51,48,53,51,52,93,44,91,45,54,54,46,55,49,53,50,52,52,44,49,55,46,57,49,50,54,56,50,93,44,91,45,54,54,46,53,56,48,54,56,44,49,55,46,57,49,48,52,54,53,93,44,91,45,54,54,46,52,57,57,54,49,51,44,49,55,46,56,52,49,53,53,56,93,44,91,45,54,54,46,53,52,57,55,48,55,44,49,55,46,57,52,49,57,51,56,93,44,91,45,54,54,46,53,53,50,55,54,54,44,49,56,46,49,53,50,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,56,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,48,53,53,53,44,52,51,46,52,50,50,57,52,57,93,44,91,45,57,49,46,50,48,49,56,52,55,44,52,51,46,51,52,57,49,48,51,93,44,91,45,57,49,46,48,53,55,57,49,44,52,51,46,50,53,51,57,54,56,93,44,91,45,57,49,46,49,55,55,50,50,50,44,52,51,46,48,56,48,50,52,55,93,44,91,45,57,49,46,49,53,54,56,49,50,44,52,50,46,57,56,56,49,55,93,44,91,45,57,49,46,48,54,53,50,55,44,52,50,46,57,57,50,48,55,52,93,44,91,45,57,48,46,54,54,54,55,56,54,44,52,51,46,49,55,49,55,55,55,93,44,91,45,57,48,46,54,54,56,53,54,49,44,52,51,46,52,50,50,57,57,52,93,44,91,45,57,49,46,50,48,53,53,53,44,52,51,46,52,50,50,57,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,48,57,52,44,34,98,101,100,115,34,58,49,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,48,53,49,54,53,44,51,52,46,57,56,52,54,55,56,93,44,91,45,56,53,46,56,54,51,57,51,53,44,51,52,46,57,56,56,50,53,51,93,44,91,45,56,54,46,51,49,49,50,55,52,44,51,52,46,57,57,49,48,57,56,93,44,91,45,56,54,46,51,53,49,49,50,51,44,51,52,46,56,55,51,50,54,53,93,44,91,45,56,54,46,51,53,57,48,51,52,44,51,52,46,54,51,50,54,49,93,44,91,45,56,54,46,51,50,54,56,53,51,44,51,52,46,53,57,57,52,48,51,93,44,91,45,56,54,46,49,52,56,52,54,52,44,51,52,46,53,57,57,48,54,57,93,44,91,45,56,54,46,49,52,57,56,48,54,44,51,52,46,53,51,51,54,51,51,93,44,91,45,56,54,46,48,53,55,55,49,50,44,51,52,46,52,55,53,57,57,52,93,44,91,45,56,54,46,48,48,51,56,52,44,51,52,46,52,56,48,48,51,49,93,44,91,45,56,53,46,55,56,53,52,55,49,44,51,52,46,54,50,52,53,56,52,93,44,91,45,56,53,46,53,56,51,49,52,53,44,51,52,46,56,54,48,51,55,49,93,44,91,45,56,53,46,54,48,53,49,54,53,44,51,52,46,57,56,52,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,97,104,97,115,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,50,48,56,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,55,49,52,50,49,44,52,49,46,53,48,56,53,50,50,93,44,91,45,57,50,46,56,54,57,55,55,49,44,52,49,46,49,54,49,48,54,54,93,44,91,45,57,50,46,54,52,48,51,54,49,44,52,49,46,49,54,49,50,57,56,93,44,91,45,57,50,46,52,49,48,50,51,51,44,52,49,46,49,54,49,57,52,50,93,44,91,45,57,50,46,52,49,49,57,57,53,44,52,49,46,53,48,57,53,52,56,93,44,91,45,57,50,46,55,53,54,53,48,56,44,52,49,46,53,48,56,55,57,52,93,44,91,45,57,50,46,56,55,49,52,50,49,44,52,49,46,53,48,56,53,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,51,49,57,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,48,48,50,53,52,44,51,57,46,48,53,54,54,53,54,93,44,91,45,57,53,46,53,48,48,55,50,52,44,51,56,46,56,54,57,56,49,53,93,44,91,45,57,53,46,53,48,48,55,51,56,44,51,56,46,55,51,56,56,48,56,93,44,91,45,57,53,46,48,53,54,52,49,50,44,51,56,46,55,51,56,53,56,55,93,44,91,45,57,53,46,48,53,54,50,53,56,44,51,56,46,57,56,50,49,50,93,44,91,45,57,53,46,49,56,55,49,48,51,44,51,57,46,48,52,52,49,48,57,93,44,91,45,57,53,46,53,48,48,50,53,52,44,51,57,46,48,53,54,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,68,97,118,105,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,57,51,55,44,34,98,101,100,115,34,58,53,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,55,56,56,51,55,44,51,55,46,57,51,48,50,52,52,93,44,91,45,56,55,46,48,54,57,54,55,53,44,51,55,46,56,48,49,53,49,51,93,44,91,45,56,55,46,50,54,56,57,57,53,44,51,55,46,56,55,56,48,50,54,93,44,91,45,56,55,46,51,48,50,57,51,50,44,51,55,46,56,57,55,55,53,93,44,91,45,56,55,46,50,56,57,55,56,52,44,51,55,46,55,54,49,48,55,56,93,44,91,45,56,55,46,52,48,56,53,52,55,44,51,55,46,54,56,51,53,54,51,93,44,91,45,56,55,46,48,51,56,50,54,44,51,55,46,53,54,48,56,48,51,93,44,91,45,56,54,46,56,49,55,53,49,52,44,51,55,46,54,55,51,56,49,52,93,44,91,45,56,54,46,56,50,51,52,50,57,44,51,55,46,55,51,55,55,53,52,93,44,91,45,56,54,46,56,49,55,49,44,51,55,46,55,57,49,53,56,57,93,44,91,45,56,54,46,57,55,56,56,51,55,44,51,55,46,57,51,48,50,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,80,111,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,50,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,48,49,57,54,55,44,51,55,46,56,51,55,53,57,50,93,44,91,45,56,51,46,57,48,54,50,53,49,44,51,55,46,55,53,57,51,54,51,93,44,91,45,56,51,46,55,50,50,49,44,51,55,46,55,49,54,52,50,93,44,91,45,56,51,46,55,48,55,57,55,52,44,51,55,46,55,49,54,52,54,51,93,44,91,45,56,51,46,54,51,49,48,54,44,51,55,46,56,50,53,51,55,50,93,44,91,45,56,51,46,55,54,56,55,56,51,44,51,55,46,57,49,56,51,55,49,93,44,91,45,56,51,46,57,54,54,51,49,44,51,55,46,57,51,48,55,54,56,93,44,91,45,56,52,46,48,48,49,57,54,55,44,51,55,46,56,51,55,53,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,50,51,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,55,55,50,50,44,51,55,46,51,51,56,52,49,56,93,44,91,45,57,52,46,54,49,55,56,52,57,44,51,55,46,48,53,54,55,57,55,93,44,91,45,57,52,46,48,53,57,50,49,49,44,51,55,46,48,52,56,49,50,55,93,44,91,45,57,52,46,48,53,50,51,49,51,44,51,55,46,50,57,48,48,55,56,93,44,91,45,57,52,46,48,56,50,48,56,51,44,51,55,46,51,52,57,50,57,49,93,44,91,45,57,52,46,54,49,55,53,55,44,51,55,46,51,54,52,49,55,93,44,91,45,57,52,46,54,49,55,55,50,50,44,51,55,46,51,51,56,52,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,57,55,50,57,56,44,52,53,46,56,54,48,53,57,53,93,44,91,45,49,49,56,46,49,49,55,49,57,52,44,52,53,46,54,56,56,54,48,55,93,44,91,45,49,49,56,46,49,49,54,52,54,49,44,52,53,46,52,55,48,55,51,50,93,44,91,45,49,49,56,46,49,57,55,56,55,54,44,52,53,46,52,50,55,50,48,52,93,44,91,45,49,49,56,46,52,50,56,53,51,57,44,52,53,46,52,50,57,48,55,54,93,44,91,45,49,49,56,46,52,50,56,51,50,57,44,52,53,46,51,53,53,49,57,93,44,91,45,49,49,56,46,54,57,55,55,54,54,44,52,53,46,51,52,53,54,52,55,93,44,91,45,49,49,56,46,54,53,53,57,57,50,44,52,53,46,49,57,54,57,50,56,93,44,91,45,49,49,56,46,53,52,54,54,51,50,44,52,53,46,49,57,54,56,57,56,93,44,91,45,49,49,56,46,53,49,56,54,56,57,44,52,52,46,57,57,53,56,55,55,93,44,91,45,49,49,56,46,50,52,52,54,54,50,44,52,52,46,57,53,56,51,57,54,93,44,91,45,49,49,56,46,49,51,49,51,55,49,44,52,53,46,48,52,52,54,57,93,44,91,45,49,49,55,46,57,54,56,51,57,52,44,52,52,46,57,57,54,48,48,50,93,44,91,45,49,49,55,46,56,52,51,52,51,44,52,53,46,48,53,56,52,55,55,93,44,91,45,49,49,55,46,55,55,55,53,48,52,44,52,52,46,57,57,50,49,54,49,93,44,91,45,49,49,55,46,53,54,52,48,51,51,44,52,52,46,57,57,50,56,54,54,93,44,91,45,49,49,55,46,53,54,51,52,56,54,44,52,53,46,48,55,57,52,52,54,93,44,91,45,49,49,55,46,50,54,54,48,48,53,44,52,53,46,48,56,48,53,55,93,44,91,45,49,49,55,46,50,54,54,48,48,54,44,52,53,46,49,54,54,53,51,57,93,44,91,45,49,49,55,46,52,55,54,54,56,52,44,52,53,46,49,54,54,53,51,57,93,44,91,45,49,49,55,46,53,50,50,50,52,57,44,52,53,46,50,54,55,55,51,49,93,44,91,45,49,49,55,46,54,52,51,52,57,52,44,52,53,46,51,51,54,56,55,93,44,91,45,49,49,55,46,55,56,55,54,50,51,44,52,53,46,54,56,57,53,54,55,93,44,91,45,49,49,55,46,55,52,55,51,50,55,44,52,53,46,56,54,49,48,55,50,93,44,91,45,49,49,55,46,57,55,50,57,56,44,52,53,46,56,54,48,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,51,48,55,44,34,98,101,100,115,34,58,50,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,56,49,50,55,51,44,51,51,46,54,52,55,52,49,49,93,44,91,45,56,52,46,50,57,52,54,56,44,51,51,46,52,51,53,55,49,53,93,44,91,45,56,52,46,51,53,52,52,44,51,51,46,51,53,50,53,49,52,93,44,91,45,56,52,46,49,53,48,53,56,49,44,51,51,46,51,51,53,54,51,57,93,44,91,45,56,52,46,49,48,50,53,56,50,44,51,51,46,50,57,56,49,57,49,93,44,91,45,56,51,46,57,50,51,57,49,51,44,51,51,46,52,52,52,49,57,52,93,44,91,45,56,52,46,48,52,52,52,57,51,44,51,51,46,53,50,53,55,55,54,93,44,91,45,56,52,46,49,56,52,49,52,51,44,51,51,46,54,52,54,49,53,55,93,44,91,45,56,52,46,50,56,49,50,55,51,44,51,51,46,54,52,55,52,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,57,57,53,50,52,53,44,52,54,46,50,56,48,54,53,49,93,44,91,45,49,48,50,46,57,57,53,50,52,56,44,52,53,46,57,52,53,49,54,55,93,44,91,45,49,48,50,46,57,52,50,48,55,44,52,53,46,57,52,53,93,44,91,45,49,48,50,46,48,48,48,54,56,49,44,52,53,46,57,52,52,53,54,51,93,44,91,45,49,48,49,46,57,57,56,55,51,51,44,52,53,46,57,52,52,54,53,51,93,44,91,45,49,48,49,46,57,57,56,51,50,55,44,52,54,46,48,53,51,50,55,52,93,44,91,45,49,48,49,46,57,57,55,57,51,44,52,54,46,50,48,53,51,50,52,93,44,91,45,49,48,50,46,52,57,55,49,51,55,44,52,54,46,50,48,53,57,48,52,93,44,91,45,49,48,50,46,52,57,55,54,52,50,44,52,54,46,50,56,51,49,57,53,93,44,91,45,49,48,50,46,57,50,52,53,52,55,44,52,54,46,50,56,49,53,49,56,93,44,91,45,49,48,50,46,57,57,53,50,52,53,44,52,54,46,50,56,48,54,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,80,97,109,108,105,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,52,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,50,50,49,51,49,44,51,53,46,51,53,51,54,50,51,93,44,91,45,55,54,46,54,49,55,52,57,54,44,51,53,46,51,50,56,56,57,51,93,44,91,45,55,54,46,54,51,50,53,54,49,44,51,53,46,50,51,53,51,50,52,93,44,91,45,55,54,46,56,52,53,53,48,53,44,51,53,46,50,49,54,48,53,57,93,44,91,45,55,54,46,56,57,53,57,49,57,44,51,53,46,50,53,51,56,56,57,93,44,91,45,55,54,46,57,56,55,50,54,54,44,51,53,46,49,53,52,57,53,93,44,91,45,55,54,46,57,54,55,50,57,55,44,51,53,46,48,52,48,54,53,53,93,44,91,45,55,54,46,55,56,48,53,56,54,44,51,52,46,57,53,48,52,51,52,93,44,91,45,55,54,46,55,49,49,53,56,44,51,52,46,57,56,49,55,54,56,93,44,91,45,55,54,46,51,48,52,49,51,54,44,51,53,46,50,48,49,52,53,51,93,44,91,45,55,54,46,52,52,53,52,49,56,44,51,53,46,51,50,57,50,54,52,93,44,91,45,55,54,46,53,50,50,49,51,49,44,51,53,46,51,53,51,54,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,71,114,97,118,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,57,52,44,34,98,101,100,115,34,58,49,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,49,51,50,50,57,44,51,54,46,55,55,51,49,49,53,93,44,91,45,56,56,46,56,49,54,55,54,51,44,51,54,46,53,48,50,54,54,53,93,44,91,45,56,56,46,53,49,54,52,48,51,44,51,54,46,53,48,49,53,56,51,93,44,91,45,56,56,46,52,56,57,48,55,53,44,51,54,46,53,48,49,49,53,55,93,44,91,45,56,56,46,52,56,53,54,57,55,44,51,54,46,55,53,48,51,50,56,93,44,91,45,56,56,46,52,56,52,49,48,51,44,51,54,46,57,52,50,48,57,54,93,44,91,45,56,56,46,56,49,50,56,57,55,44,51,54,46,57,52,54,56,54,52,93,44,91,45,56,56,46,56,49,51,50,50,57,44,51,54,46,55,55,51,49,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,97,109,98,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,53,53,48,44,34,98,101,100,115,34,58,53,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,53,48,52,51,44,52,48,46,55,50,52,56,50,55,93,44,91,45,55,56,46,56,48,49,54,57,55,44,52,48,46,55,50,52,53,51,57,93,44,91,45,55,56,46,57,55,52,54,52,57,44,52,48,46,51,57,53,57,55,50,93,44,91,45,55,57,46,48,53,53,57,56,51,44,52,48,46,50,56,53,48,56,57,93,44,91,45,55,56,46,56,57,48,56,51,54,44,52,48,46,50,52,57,53,51,57,93,44,91,45,55,56,46,54,53,56,52,48,57,44,52,48,46,50,52,50,57,51,51,93,44,91,45,55,56,46,54,50,48,51,56,51,44,52,48,46,51,50,55,48,50,53,93,44,91,45,55,56,46,53,54,52,48,56,53,44,52,48,46,51,55,48,54,48,57,93,44,91,45,55,56,46,53,51,57,56,52,44,52,48,46,53,48,54,49,53,52,93,44,91,45,55,56,46,51,53,48,52,51,44,52,48,46,55,50,52,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,77,99,77,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,55,51,44,34,98,101,100,115,34,58,49,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,49,57,56,54,53,44,51,53,46,54,52,52,54,53,49,93,44,91,45,56,52,46,56,48,53,53,52,52,44,51,53,46,52,52,56,53,55,49,93,44,91,45,56,52,46,56,54,48,49,54,52,44,51,53,46,51,53,48,48,55,52,93,44,91,45,56,52,46,55,48,51,54,48,55,44,51,53,46,50,52,49,48,52,51,93,44,91,45,56,52,46,52,57,53,53,50,57,44,51,53,46,50,56,53,52,55,50,93,44,91,45,56,52,46,52,48,57,50,50,54,44,51,53,46,51,57,56,51,55,56,93,44,91,45,56,52,46,53,50,50,55,49,44,51,53,46,54,48,55,55,56,51,93,44,91,45,56,52,46,53,50,50,51,55,51,44,51,53,46,54,49,56,54,50,53,93,44,91,45,56,52,46,53,50,53,56,53,44,51,53,46,54,50,52,49,56,54,93,44,91,45,56,52,46,53,56,52,52,55,50,44,51,53,46,54,52,52,52,50,52,93,44,91,45,56,52,46,54,49,57,56,54,53,44,51,53,46,54,52,52,54,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,52,56,50,44,34,98,101,100,115,34,58,50,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,53,56,49,56,57,44,52,50,46,55,55,54,54,51,57,93,44,91,45,56,52,46,49,52,48,55,49,51,44,52,50,46,52,50,52,54,49,49,93,44,91,45,56,52,46,49,51,49,49,51,54,44,52,50,46,52,50,52,53,54,55,93,44,91,45,56,51,46,54,54,52,56,48,56,44,52,50,46,52,51,49,49,55,57,93,44,91,45,56,51,46,54,56,54,52,57,51,44,52,50,46,55,56,51,50,54,51,93,44,91,45,56,51,46,57,50,50,53,49,54,44,52,50,46,55,56,48,56,50,49,93,44,91,45,56,52,46,49,53,56,49,56,57,44,52,50,46,55,55,54,54,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,55,49,49,53,44,34,98,101,100,115,34,58,49,53,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,53,51,50,52,54,44,51,57,46,55,57,49,48,54,51,93,44,91,45,49,48,52,46,56,56,52,54,52,54,44,51,57,46,55,52,48,49,53,54,93,44,91,45,49,48,51,46,55,48,54,53,52,55,44,51,57,46,55,51,57,56,57,52,93,44,91,45,49,48,51,46,55,48,53,55,48,49,44,52,48,46,48,48,49,51,54,54,93,44,91,45,49,48,52,46,49,53,48,51,51,50,44,52,48,46,48,48,48,56,53,54,93,44,91,45,49,48,52,46,57,54,49,52,48,53,44,52,48,46,48,48,48,51,51,55,93,44,91,45,49,48,53,46,48,53,50,56,57,50,44,51,57,46,57,49,52,50,50,52,93,44,91,45,49,48,53,46,48,53,51,50,52,54,44,51,57,46,55,57,49,48,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,76,97,99,107,97,119,97,110,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,52,53,52,44,34,98,101,100,115,34,58,57,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,49,57,56,56,55,44,52,49,46,54,52,50,50,54,51,93,44,91,45,55,53,46,56,51,52,54,57,53,44,52,49,46,52,50,55,50,52,54,93,44,91,45,55,53,46,54,56,55,50,52,52,44,52,49,46,51,51,57,50,49,54,93,44,91,45,55,53,46,54,48,48,55,51,54,44,52,49,46,49,54,49,52,57,55,93,44,91,45,55,53,46,53,48,53,54,48,55,44,52,49,46,50,51,50,53,51,57,93,44,91,45,55,53,46,52,52,49,52,50,49,44,52,49,46,50,54,48,48,53,51,93,44,91,45,55,53,46,52,54,50,52,49,49,44,52,49,46,54,52,49,53,56,55,93,44,91,45,55,53,46,55,49,57,56,56,55,44,52,49,46,54,52,50,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,80,111,110,116,111,116,111,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,51,53,56,44,34,98,101,100,115,34,58,50,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,51,50,52,51,54,44,51,52,46,56,53,52,52,57,54,93,44,91,45,57,54,46,57,51,50,52,53,50,44,51,52,46,54,51,54,56,49,50,93,44,91,45,57,54,46,56,50,55,49,52,52,44,51,52,46,53,57,51,50,50,93,44,91,45,57,54,46,56,50,55,51,52,51,44,51,52,46,53,48,54,48,54,50,93,44,91,45,57,54,46,53,49,51,55,56,55,44,51,52,46,53,48,53,51,57,54,93,44,91,45,57,54,46,53,49,50,49,55,49,44,51,52,46,54,56,48,48,54,53,93,44,91,45,57,54,46,52,48,54,52,56,51,44,51,52,46,55,54,55,51,50,56,93,44,91,45,57,54,46,52,49,51,55,56,49,44,51,52,46,57,49,53,54,49,57,93,44,91,45,57,54,46,52,57,48,55,56,54,44,51,52,46,57,49,48,53,56,53,93,44,91,45,57,54,46,54,54,55,54,57,50,44,51,52,46,57,50,57,53,56,51,93,44,91,45,57,54,46,55,55,53,54,56,49,44,51,52,46,56,57,57,57,53,56,93,44,91,45,57,54,46,57,51,48,53,56,54,44,51,52,46,57,54,52,51,54,52,93,44,91,45,57,54,46,57,51,50,52,51,54,44,51,52,46,56,53,52,52,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,114,101,101,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,49,54,48,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,50,50,49,50,44,51,54,46,49,53,57,57,48,51,93,44,91,45,57,54,46,54,49,57,54,53,53,44,51,53,46,57,52,49,53,55,49,93,44,91,45,57,54,46,54,50,48,56,50,56,44,51,53,46,54,51,57,48,48,53,93,44,91,45,57,54,46,49,57,50,53,54,51,44,51,53,46,54,51,57,48,56,55,93,44,91,45,57,54,46,49,57,50,52,48,51,44,51,53,46,56,53,54,57,57,51,93,44,91,45,57,54,46,48,51,51,49,49,56,44,51,53,46,56,53,54,56,50,52,93,44,91,45,57,54,46,48,50,57,53,56,51,44,51,54,46,48,55,53,51,54,54,93,44,91,45,57,54,46,50,57,55,57,48,53,44,51,54,46,48,55,53,55,54,54,93,44,91,45,57,54,46,50,57,55,56,56,56,44,51,54,46,49,54,50,50,55,57,93,44,91,45,57,54,46,54,50,50,49,50,44,51,54,46,49,53,57,57,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,53,55,34,44,34,78,65,77,69,34,58,34,84,121,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,57,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,53,54,49,57,52,51,44,51,49,46,48,53,56,57,53,50,93,44,91,45,57,52,46,54,53,55,57,57,50,44,51,49,46,48,49,50,48,48,55,93,44,91,45,57,52,46,53,52,53,55,49,55,44,51,48,46,53,50,54,57,55,55,93,44,91,45,57,52,46,48,55,49,54,56,57,44,51,48,46,53,50,54,48,51,51,93,44,91,45,57,52,46,48,53,48,57,54,44,51,48,46,54,51,56,53,54,56,93,44,91,45,57,52,46,49,50,53,56,50,52,44,51,48,46,54,56,52,48,53,50,93,44,91,45,57,52,46,50,53,50,50,57,56,44,51,49,46,48,49,56,57,51,49,93,44,91,45,57,52,46,52,53,55,56,49,54,44,51,49,46,48,51,51,51,50,53,93,44,91,45,57,52,46,53,54,49,57,52,51,44,51,49,46,48,53,56,57,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,86,97,110,32,66,117,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,48,50,56,55,54,44,51,53,46,55,57,52,57,57,54,93,44,91,45,56,53,46,53,57,52,54,51,50,44,51,53,46,54,49,55,56,57,56,93,44,91,45,56,53,46,53,53,55,53,51,53,44,51,53,46,53,51,50,57,55,55,93,44,91,45,56,53,46,52,50,51,56,48,52,44,51,53,46,53,54,55,52,50,50,93,44,91,45,56,53,46,50,53,52,48,54,50,44,51,53,46,55,54,53,54,49,49,93,44,91,45,56,53,46,50,53,51,53,49,56,44,51,53,46,55,54,54,57,50,55,93,44,91,45,56,53,46,50,55,50,54,54,52,44,51,53,46,55,56,55,55,49,56,93,44,91,45,56,53,46,50,54,57,51,53,57,44,51,53,46,55,57,51,51,56,56,93,44,91,45,56,53,46,52,52,57,51,54,44,51,53,46,56,50,49,53,53,57,93,44,91,45,56,53,46,54,48,50,56,55,54,44,51,53,46,55,57,52,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,80,111,116,116,97,119,97,116,111,109,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,48,48,48,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,52,50,49,49,52,44,51,53,46,51,55,54,56,54,93,44,91,45,57,55,46,49,52,50,51,52,57,44,51,52,46,57,50,56,49,55,54,93,44,91,45,57,55,46,48,49,53,57,51,44,51,52,46,57,48,55,51,52,56,93,44,91,45,57,54,46,57,51,48,53,56,54,44,51,52,46,57,54,52,51,54,52,93,44,91,45,57,54,46,55,55,53,54,56,49,44,51,52,46,56,57,57,57,53,56,93,44,91,45,57,54,46,55,55,54,54,57,52,44,51,53,46,52,48,53,52,49,55,93,44,91,45,57,54,46,54,50,51,54,57,57,44,51,53,46,52,48,48,55,50,50,93,44,91,45,57,54,46,54,50,52,54,56,49,44,51,53,46,52,54,50,55,48,55,93,44,91,45,57,55,46,49,52,49,52,57,44,51,53,46,52,54,51,57,55,55,93,44,91,45,57,55,46,49,52,50,49,49,52,44,51,53,46,51,55,54,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,84,111,108,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,50,54,57,44,34,98,101,100,115,34,58,50,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,53,48,57,50,51,51,44,52,50,46,48,51,52,51,55,54,93,44,91,45,55,50,46,53,49,56,51,51,44,52,49,46,56,53,54,56,57,57,93,44,91,45,55,50,46,52,49,48,51,54,55,44,52,49,46,54,48,50,53,56,49,93,44,91,45,55,50,46,50,51,57,53,53,57,44,52,49,46,55,49,52,49,57,49,93,44,91,45,55,50,46,50,49,54,57,56,44,52,49,46,57,53,56,49,54,49,93,44,91,45,55,50,46,49,48,50,49,55,44,52,50,46,48,50,56,56,54,57,93,44,91,45,55,50,46,49,51,53,55,49,53,44,52,50,46,48,51,48,50,50,50,93,44,91,45,55,50,46,53,48,57,50,51,51,44,52,50,46,48,51,52,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,83,111,99,111,114,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,48,48,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,55,49,50,55,53,52,44,51,51,46,52,55,54,56,51,50,93,44,91,45,49,48,54,46,52,55,52,50,57,53,44,51,51,46,52,55,53,55,56,54,93,44,91,45,49,48,54,46,51,55,50,55,57,55,44,51,51,46,52,55,57,56,55,53,93,44,91,45,49,48,54,46,51,55,51,54,54,44,51,51,46,54,54,48,53,48,52,93,44,91,45,49,48,54,46,48,53,50,55,49,56,44,51,51,46,54,53,48,50,57,55,93,44,91,45,49,48,54,46,48,53,50,54,54,50,44,51,51,46,56,50,53,54,48,54,93,44,91,45,49,48,53,46,57,50,52,54,56,53,44,51,51,46,56,50,53,54,50,52,93,44,91,45,49,48,53,46,57,50,53,57,54,56,44,51,52,46,50,53,57,57,57,93,44,91,45,49,48,54,46,52,49,53,57,55,50,44,51,52,46,50,53,57,56,50,50,93,44,91,45,49,48,54,46,52,49,54,57,50,52,44,51,52,46,52,51,57,54,56,55,93,44,91,45,49,48,54,46,55,54,56,50,56,49,44,51,52,46,53,51,49,50,54,50,93,44,91,45,49,48,54,46,56,56,50,56,49,51,44,51,52,46,53,55,57,54,50,56,93,44,91,45,49,48,55,46,50,48,49,55,52,51,44,51,52,46,53,55,56,55,53,55,93,44,91,45,49,48,55,46,55,50,52,55,57,52,44,51,52,46,53,55,56,49,51,50,93,44,91,45,49,48,55,46,55,49,54,51,48,49,44,51,52,46,50,53,57,56,53,54,93,44,91,45,49,48,55,46,55,49,50,55,53,52,44,51,51,46,52,55,54,56,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,116,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,55,49,50,52,55,44,51,49,46,49,56,51,57,56,56,93,44,91,45,56,50,46,54,55,49,54,54,57,44,51,49,46,49,56,51,55,51,57,93,44,91,45,56,50,46,54,50,56,57,55,53,44,51,49,46,51,54,51,57,51,93,44,91,45,56,50,46,56,49,55,53,52,52,44,51,49,46,51,54,52,52,56,54,93,44,91,45,56,50,46,56,52,52,48,57,51,44,51,49,46,52,48,51,51,50,56,93,44,91,45,56,51,46,49,52,48,52,56,51,44,51,49,46,52,50,48,51,57,53,93,44,91,45,56,51,46,48,52,54,57,56,56,44,51,49,46,50,56,50,57,54,54,93,44,91,45,56,51,46,48,52,54,56,56,53,44,51,49,46,49,56,51,54,56,93,44,91,45,56,50,46,57,55,49,50,52,55,44,51,49,46,49,56,51,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,117,118,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,52,50,50,57,44,34,98,101,100,115,34,58,51,52,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,53,56,55,57,51,44,51,48,46,53,48,49,53,48,52,93,44,91,45,56,49,46,53,52,51,48,49,56,44,51,48,46,53,50,51,56,56,57,93,44,91,45,56,49,46,54,50,52,53,49,51,44,51,48,46,53,56,54,50,51,50,93,44,91,45,56,49,46,56,51,49,50,50,55,44,51,48,46,52,54,55,52,51,55,93,44,91,45,56,50,46,48,52,57,50,51,54,44,51,48,46,50,55,51,52,51,50,93,44,91,45,56,50,46,48,52,57,52,49,49,44,51,48,46,49,56,54,57,51,51,93,44,91,45,56,49,46,54,55,57,54,50,54,44,51,48,46,49,57,48,52,57,53,93,44,91,45,56,49,46,54,56,48,50,49,53,44,51,48,46,49,50,49,50,52,93,44,91,45,56,49,46,52,51,51,55,51,55,44,51,48,46,49,48,54,48,50,56,93,44,91,45,56,49,46,52,51,54,57,50,57,44,51,48,46,50,53,50,51,51,53,93,44,91,45,56,49,46,51,50,48,49,56,53,44,51,48,46,50,53,50,57,50,93,44,91,45,56,49,46,51,50,52,56,55,55,44,51,48,46,52,50,52,55,51,53,93,44,91,45,56,49,46,51,53,56,55,57,51,44,51,48,46,53,48,49,53,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,70,97,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,57,57,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,48,49,49,50,51,44,51,49,46,53,50,50,50,54,57,93,44,91,45,57,55,46,50,55,56,49,49,51,44,51,49,46,50,55,57,55,57,57,93,44,91,45,57,55,46,48,55,48,49,56,56,44,51,48,46,57,56,54,50,50,93,44,91,45,57,54,46,56,50,57,49,50,49,44,51,49,46,49,48,53,56,55,49,93,44,91,45,57,54,46,53,57,54,56,54,50,44,51,49,46,50,50,48,57,93,44,91,45,57,54,46,56,48,49,49,50,51,44,51,49,46,53,50,50,50,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,89,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,55,51,44,34,98,101,100,115,34,58,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,55,56,49,51,54,44,51,53,46,51,49,55,53,48,51,93,44,91,45,57,51,46,50,55,57,57,50,57,44,51,53,46,50,49,50,53,53,54,93,44,91,45,57,51,46,52,53,55,48,50,50,44,51,53,46,50,49,53,55,56,50,93,44,91,45,57,51,46,53,50,57,55,51,57,44,51,53,46,49,52,53,52,51,51,93,44,91,45,57,51,46,55,48,54,56,52,50,44,51,53,46,49,51,52,57,52,51,93,44,91,45,57,51,46,55,48,52,56,56,53,44,51,53,46,48,49,57,55,49,53,93,44,91,45,57,51,46,55,49,48,50,57,55,44,51,52,46,55,52,53,50,57,54,93,44,91,45,57,51,46,51,57,52,50,56,57,44,51,52,46,55,52,51,51,57,51,93,44,91,45,57,51,46,50,56,55,55,56,53,44,51,52,46,55,55,51,49,57,51,93,44,91,45,57,51,46,50,56,56,50,56,52,44,51,52,46,56,54,48,57,57,50,93,44,91,45,57,51,46,48,52,48,53,50,53,44,51,53,46,48,55,54,57,50,51,93,44,91,45,57,50,46,56,57,54,49,48,57,44,51,53,46,49,55,48,54,55,56,93,44,91,45,57,51,46,48,56,52,54,55,56,44,51,53,46,49,50,55,51,57,93,44,91,45,57,51,46,49,53,54,48,55,56,44,51,53,46,50,51,53,51,48,55,93,44,91,45,57,51,46,50,55,56,49,51,54,44,51,53,46,51,49,55,53,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,111,109,97,110,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,48,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,53,54,50,48,51,44,51,54,46,57,57,57,52,55,49,93,44,91,45,57,57,46,48,48,48,51,48,49,44,51,54,46,57,57,57,52,54,55,93,44,91,45,57,57,46,48,49,49,52,57,57,44,51,55,46,51,56,52,50,54,51,93,44,91,45,57,57,46,53,52,51,49,56,57,44,51,55,46,51,56,49,49,50,52,93,44,91,45,57,57,46,53,52,49,49,49,54,44,51,54,46,57,57,57,54,49,93,44,91,45,57,57,46,52,53,54,50,48,51,44,51,54,46,57,57,57,52,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,74,101,115,115,97,109,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,52,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,54,48,51,52,44,51,56,46,48,48,51,56,51,54,93,44,91,45,56,52,46,55,48,57,57,49,56,44,51,55,46,56,54,49,57,53,50,93,44,91,45,56,52,46,55,49,54,57,50,53,44,51,55,46,56,49,53,51,56,57,93,44,91,45,56,52,46,53,50,53,54,52,51,44,51,55,46,55,54,57,52,57,55,93,44,91,45,56,52,46,52,51,53,55,50,44,51,55,46,56,52,55,50,48,50,93,44,91,45,56,52,46,52,55,57,54,50,57,44,51,55,46,57,52,48,50,49,57,93,44,91,45,56,52,46,54,54,48,51,52,44,51,56,46,48,48,51,56,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,51,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,51,57,50,53,53,44,51,54,46,56,52,49,52,55,54,93,44,91,45,56,53,46,57,55,54,57,49,44,51,54,46,55,50,50,55,50,50,93,44,91,45,56,53,46,57,55,54,52,49,56,44,51,54,46,54,50,56,52,57,51,93,44,91,45,56,53,46,55,56,56,55,50,54,44,51,54,46,54,50,50,48,52,56,93,44,91,45,56,53,46,52,51,54,52,52,50,44,51,54,46,54,49,56,54,53,53,93,44,91,45,56,53,46,53,57,54,50,49,52,44,51,54,46,56,49,56,48,51,57,93,44,91,45,56,53,46,55,51,57,50,53,53,44,51,54,46,56,52,49,52,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,75,105,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,48,49,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,50,48,54,57,50,44,51,53,46,48,57,55,55,54,53,93,44,91,45,57,56,46,55,52,57,49,53,56,44,51,53,46,49,49,54,51,52,54,93,44,91,45,57,57,46,51,54,48,50,50,54,44,51,53,46,49,49,54,55,51,56,93,44,91,45,57,57,46,52,48,57,50,57,49,44,51,53,46,49,49,52,53,48,57,93,44,91,45,57,57,46,51,50,54,55,53,55,44,51,53,46,48,49,56,57,49,50,93,44,91,45,57,57,46,51,48,54,50,50,44,51,52,46,56,53,55,54,51,50,93,44,91,45,57,57,46,50,52,54,52,54,50,44,51,52,46,56,50,50,49,49,52,93,44,91,45,57,57,46,49,48,51,49,53,44,51,52,46,54,51,55,57,53,93,44,91,45,57,57,46,48,48,49,49,48,55,44,51,52,46,53,57,52,51,54,54,93,44,91,45,57,56,46,56,50,54,48,48,56,44,51,52,46,53,57,52,52,49,51,93,44,91,45,57,56,46,56,50,54,48,57,49,44,51,52,46,56,53,53,52,50,56,93,44,91,45,57,56,46,54,49,57,56,49,54,44,51,52,46,56,53,53,51,52,93,44,91,45,57,56,46,54,50,48,54,57,50,44,51,53,46,48,57,55,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,55,52,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,55,48,49,49,53,44,52,52,46,49,57,52,57,55,49,93,44,91,45,57,55,46,51,54,57,52,54,51,44,52,51,46,56,52,56,53,50,54,93,44,91,45,57,55,46,49,50,57,48,56,57,44,52,51,46,56,52,55,57,55,51,93,44,91,45,57,54,46,56,56,56,54,54,52,44,52,51,46,56,52,56,51,56,53,93,44,91,45,57,54,46,56,56,57,50,49,54,44,52,52,46,49,57,53,55,48,53,93,44,91,45,57,55,46,49,50,57,54,55,49,44,52,52,46,49,57,53,57,51,51,93,44,91,45,57,55,46,51,55,48,49,49,53,44,52,52,46,49,57,52,57,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,97,115,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,49,56,52,53,54,44,51,54,46,53,52,49,54,53,51,93,44,91,45,55,57,46,51,52,51,49,49,55,44,51,54,46,53,52,49,53,57,93,44,91,45,55,57,46,52,55,48,48,53,55,44,51,54,46,53,52,48,57,55,49,93,44,91,45,55,57,46,53,49,51,54,51,56,44,51,54,46,53,52,48,57,48,50,93,44,91,45,55,57,46,53,51,49,56,54,53,44,51,54,46,50,52,57,54,55,51,93,44,91,45,55,57,46,50,53,55,57,53,50,44,51,54,46,50,52,51,52,52,53,93,44,91,45,55,57,46,49,53,51,57,57,55,44,51,54,46,50,52,49,56,55,53,93,44,91,45,55,57,46,49,51,56,51,50,44,51,54,46,53,52,49,57,55,53,93,44,91,45,55,57,46,50,49,56,52,53,54,44,51,54,46,53,52,49,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,55,55,34,44,34,78,65,77,69,34,58,34,80,114,101,115,105,100,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,55,57,56,48,49,44,51,48,46,54,50,57,50,53,56,93,44,91,45,49,48,52,46,56,57,57,48,53,50,44,51,48,46,53,55,48,55,54,57,93,44,91,45,49,48,52,46,56,53,57,51,57,55,44,51,48,46,51,57,49,49,50,53,93,44,91,45,49,48,52,46,54,56,55,48,55,54,44,51,48,46,49,55,57,51,52,50,93,44,91,45,49,48,52,46,55,48,55,50,52,57,44,51,48,46,48,53,48,49,51,52,93,44,91,45,49,48,52,46,54,55,53,56,54,49,44,50,57,46,57,49,53,53,51,55,93,44,91,45,49,48,52,46,53,52,57,55,57,54,44,50,57,46,55,52,48,54,52,49,93,44,91,45,49,48,52,46,53,49,52,48,51,49,44,50,57,46,54,51,56,54,51,93,44,91,45,49,48,52,46,51,51,56,50,48,49,44,50,57,46,53,50,48,49,56,50,93,44,91,45,49,48,52,46,50,48,57,49,53,51,44,50,57,46,52,56,49,52,54,56,93,44,91,45,49,48,52,46,49,54,56,51,56,44,50,57,46,51,57,54,49,51,54,93,44,91,45,49,48,51,46,57,55,50,48,53,57,44,50,57,46,50,57,54,48,53,53,93,44,91,45,49,48,51,46,55,57,50,55,48,51,44,50,57,46,50,54,50,52,57,57,93,44,91,45,49,48,51,46,56,48,48,54,56,44,51,48,46,52,49,50,53,50,55,93,44,91,45,49,48,51,46,57,48,49,48,49,44,51,48,46,52,49,50,49,57,93,44,91,45,49,48,52,46,57,55,57,56,48,49,44,51,48,46,54,50,57,50,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,53,56,49,49,44,34,98,101,100,115,34,58,50,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,53,51,55,51,54,44,51,57,46,56,53,48,52,53,56,93,44,91,45,56,52,46,48,57,50,57,51,56,44,51,57,46,56,51,56,51,52,53,93,44,91,45,56,52,46,49,49,52,49,57,53,44,51,57,46,53,55,55,57,56,51,93,44,91,45,56,51,46,57,55,55,48,48,53,44,51,57,46,53,54,57,49,54,57,93,44,91,45,56,51,46,54,55,48,49,57,54,44,51,57,46,53,53,48,50,53,52,93,44,91,45,56,51,46,54,53,51,51,51,44,51,57,46,55,49,54,56,55,54,93,44,91,45,56,51,46,54,52,55,49,54,57,44,51,57,46,55,55,51,48,50,57,93,44,91,45,56,51,46,56,50,55,52,50,53,44,51,57,46,56,50,50,54,53,49,93,44,91,45,56,52,46,48,53,51,55,51,54,44,51,57,46,56,53,48,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,56,57,34,44,34,78,65,77,69,34,58,34,87,105,108,108,97,99,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,53,55,52,48,53,44,50,54,46,54,49,49,55,54,57,93,44,91,45,57,56,46,48,48,52,49,56,57,44,50,54,46,52,52,56,55,56,52,93,44,91,45,57,55,46,56,54,49,57,50,44,50,54,46,52,51,51,53,55,57,93,44,91,45,57,55,46,56,54,49,56,55,53,44,50,54,46,51,52,56,49,53,54,93,44,91,45,57,55,46,53,50,55,53,56,50,44,50,54,46,50,57,57,51,48,52,93,44,91,45,57,55,46,51,56,54,53,48,53,44,50,54,46,52,49,48,52,51,55,93,44,91,45,57,55,46,49,54,55,50,53,53,44,50,54,46,52,49,50,55,49,53,93,44,91,45,57,55,46,50,50,53,51,55,52,44,50,54,46,54,48,48,50,50,55,93,44,91,45,57,55,46,56,54,49,54,56,56,44,50,54,46,53,57,55,57,57,53,93,44,91,45,57,55,46,57,53,55,52,48,53,44,50,54,46,54,49,49,55,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,97,121,97,109,195,179,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,57,53,53,44,34,98,101,100,115,34,58,53,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,57,54,57,56,44,49,56,46,51,56,57,50,56,57,93,44,91,45,54,54,46,50,48,52,55,51,52,44,49,56,46,51,49,54,48,51,53,93,44,91,45,54,54,46,50,48,54,49,51,53,44,49,56,46,50,55,54,54,54,93,44,91,45,54,54,46,49,57,48,54,55,54,44,49,56,46,50,53,56,56,52,93,44,91,45,54,54,46,49,52,51,56,54,49,44,49,56,46,50,55,57,53,57,93,44,91,45,54,54,46,49,51,49,53,56,44,49,56,46,52,50,52,54,53,54,93,44,91,45,54,54,46,49,54,57,53,49,54,44,49,56,46,52,51,48,57,57,56,93,44,91,45,54,54,46,49,57,54,57,56,44,49,56,46,51,56,57,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,56,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,56,34,44,34,78,65,77,69,34,58,34,76,111,115,32,65,108,97,109,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,53,54,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,50,52,56,49,54,49,44,51,53,46,57,54,54,51,50,55,93,44,91,45,49,48,54,46,51,57,57,55,49,51,44,51,53,46,57,54,48,48,57,53,93,44,91,45,49,48,54,46,52,48,48,55,44,51,53,46,56,48,55,53,54,55,93,44,91,45,49,48,54,46,50,53,48,52,57,57,44,51,53,46,55,53,53,56,49,56,93,44,91,45,49,48,54,46,50,52,56,50,53,55,44,51,53,46,56,51,57,49,55,56,93,44,91,45,49,48,54,46,50,52,56,51,52,53,44,51,53,46,56,53,53,54,53,50,93,44,91,45,49,48,54,46,50,52,53,54,52,57,44,51,53,46,57,51,48,55,52,50,93,44,91,45,49,48,54,46,50,52,56,49,54,49,44,51,53,46,57,54,54,51,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,50,34,44,34,78,65,77,69,34,58,34,75,101,110,97,105,32,80,101,110,105,110,115,117,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,50,50,48,44,34,98,101,100,115,34,58,55,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,56,46,55,52,53,54,49,56,44,54,48,46,55,51,51,48,48,55,93,44,91,45,49,52,57,46,48,51,55,55,52,49,44,54,48,46,55,51,50,57,56,55,93,44,91,45,49,52,57,46,48,51,52,48,56,44,54,48,46,56,52,56,53,51,52,93,44,91,45,49,52,57,46,51,53,57,51,57,57,44,54,48,46,57,48,54,51,51,93,44,91,45,49,53,48,46,48,54,57,50,51,56,44,54,49,46,48,55,57,54,51,54,93,44,91,45,49,53,48,46,50,52,55,55,52,54,44,54,49,46,48,55,57,54,51,55,93,44,91,45,49,53,48,46,52,50,52,49,52,56,44,54,49,46,49,54,54,51,48,56,93,44,91,45,49,53,48,46,55,55,53,56,54,51,44,54,49,46,48,55,57,52,54,54,93,44,91,45,49,53,48,46,57,55,52,48,49,55,44,54,49,46,49,54,54,50,56,55,93,44,91,45,49,53,48,46,57,55,52,48,49,52,44,54,49,46,50,53,50,57,52,93,44,91,45,49,53,49,46,51,51,50,56,48,50,44,54,49,46,50,53,50,57,51,54,93,44,91,45,49,53,49,46,51,51,50,55,56,52,44,54,49,46,52,50,54,50,51,57,93,44,91,45,49,53,50,46,57,57,57,56,56,50,44,54,49,46,52,50,54,49,55,50,93,44,91,45,49,53,51,46,52,56,53,53,55,53,44,54,49,46,52,50,54,49,53,51,93,44,91,45,49,53,51,46,52,52,48,56,55,55,44,54,49,46,49,54,54,49,57,54,93,44,91,45,49,53,51,46,52,52,48,56,56,52,44,54,48,46,57,48,54,50,51,54,93,44,91,45,49,53,51,46,51,57,55,50,56,52,44,54,48,46,56,49,57,53,56,49,93,44,91,45,49,53,51,46,51,57,55,50,55,54,44,54,48,46,52,55,50,57,52,56,93,44,91,45,49,53,51,46,53,50,56,52,52,49,44,54,48,46,52,55,50,57,51,57,93,44,91,45,49,53,51,46,53,50,56,51,57,50,44,54,48,46,49,50,54,50,56,49,93,44,91,45,49,53,51,46,54,53,54,57,56,44,54,48,46,49,50,54,50,55,55,93,44,91,45,49,53,51,46,54,53,54,57,55,55,44,53,57,46,55,55,57,54,48,55,93,44,91,45,49,53,51,46,55,56,51,48,54,56,44,53,57,46,54,57,50,57,50,54,93,44,91,45,49,53,51,46,57,53,51,49,57,56,44,53,57,46,54,57,50,57,49,56,93,44,91,45,49,53,51,46,57,53,51,49,56,49,44,53,57,46,53,49,57,53,54,57,93,44,91,45,49,53,52,46,49,50,51,51,50,49,44,53,57,46,52,51,50,56,56,55,93,44,91,45,49,53,52,46,52,49,50,48,50,56,44,53,57,46,52,51,50,56,56,50,93,44,91,45,49,53,52,46,52,49,50,48,49,51,44,53,57,46,50,53,57,53,50,52,93,44,91,45,49,53,52,46,55,52,56,56,54,49,44,53,57,46,50,53,57,53,49,56,93,44,91,45,49,53,52,46,54,57,53,49,48,53,44,53,57,46,48,56,54,49,53,57,93,44,91,45,49,53,52,46,54,57,53,48,51,54,44,53,56,46,55,51,57,52,51,49,93,44,91,45,49,53,52,46,54,52,50,53,52,53,44,53,56,46,54,53,50,55,52,55,93,44,91,45,49,53,52,46,51,48,53,54,57,49,44,53,56,46,54,53,50,55,53,49,93,44,91,45,49,53,51,46,56,49,55,48,55,54,44,53,56,46,54,53,50,55,54,93,44,91,45,49,53,51,46,56,49,55,48,55,54,44,53,56,46,55,51,57,52,52,54,93,44,91,45,49,53,51,46,54,51,57,48,50,55,44,53,56,46,55,51,57,52,53,93,44,91,45,49,53,51,46,54,51,57,52,48,51,44,53,56,46,56,53,53,48,50,57,93,44,91,45,49,53,51,46,50,53,51,54,49,51,44,53,56,46,56,53,53,48,51,54,93,44,91,45,49,53,51,46,49,56,52,48,56,54,44,53,56,46,57,48,53,55,50,57,93,44,91,45,49,53,51,46,48,50,49,49,56,44,53,57,46,48,48,50,52,53,50,93,44,91,45,49,53,49,46,52,52,52,49,55,51,44,53,57,46,48,57,57,54,56,55,93,44,91,45,49,53,48,46,57,57,50,49,57,52,44,53,57,46,49,56,48,56,51,55,93,44,91,45,49,53,48,46,52,53,54,52,53,54,44,53,57,46,51,48,56,54,56,56,93,44,91,45,49,52,57,46,54,50,49,51,44,53,57,46,53,50,55,53,49,54,93,44,91,45,49,52,57,46,52,54,55,53,48,52,44,53,57,46,55,51,51,55,54,55,93,44,91,45,49,52,57,46,50,54,57,54,50,53,44,53,57,46,56,52,53,52,50,93,44,91,45,49,52,56,46,57,52,56,55,54,50,44,53,57,46,56,57,50,55,49,56,93,44,91,45,49,52,56,46,53,56,54,49,56,44,53,57,46,57,51,56,53,56,53,93,44,91,45,49,52,56,46,53,54,51,55,49,53,44,54,48,46,52,49,53,49,55,50,93,44,91,45,49,52,56,46,54,54,52,52,55,44,54,48,46,52,49,53,49,56,51,93,44,91,45,49,52,56,46,54,53,55,49,49,57,44,54,48,46,55,51,50,57,55,54,93,44,91,45,49,52,56,46,55,52,53,54,49,56,44,54,48,46,55,51,51,48,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,97,108,100,119,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,56,49,48,55,44,34,98,101,100,115,34,58,52,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,55,50,56,54,57,44,51,49,46,49,54,50,54,57,52,93,44,91,45,56,55,46,57,52,49,53,54,49,44,51,49,46,48,54,49,51,52,50,93,44,91,45,56,56,46,48,50,54,51,49,57,44,51,48,46,55,53,51,51,53,56,93,44,91,45,56,55,46,57,56,55,56,51,57,44,51,48,46,54,51,55,49,52,57,93,44,91,45,56,56,46,48,51,55,51,48,57,44,51,48,46,49,52,54,53,54,49,93,44,91,45,56,55,46,53,49,56,51,52,54,44,51,48,46,50,50,57,53,48,54,93,44,91,45,56,55,46,52,57,57,57,56,44,51,48,46,51,50,56,57,53,55,93,44,91,45,56,55,46,51,54,57,51,56,51,44,51,48,46,52,51,49,57,52,56,93,44,91,45,56,55,46,52,52,53,49,48,51,44,51,48,46,53,50,56,57,48,57,93,44,91,45,56,55,46,51,57,51,50,57,52,44,51,48,46,54,50,55,50,49,56,93,44,91,45,56,55,46,54,50,54,50,50,52,44,51,48,46,56,52,54,54,54,52,93,44,91,45,56,55,46,53,57,56,56,50,57,44,51,48,46,57,57,55,52,53,53,93,44,91,45,56,55,46,54,49,53,56,57,44,51,49,46,50,52,52,52,53,56,93,44,91,45,56,55,46,55,54,53,49,53,50,44,51,49,46,50,57,55,51,52,54,93,44,91,45,56,55,46,56,55,51,56,56,55,44,51,49,46,50,48,49,52,57,54,93,44,91,45,56,55,46,57,52,54,53,56,56,44,51,49,46,49,57,50,57,51,93,44,91,45,56,55,46,57,55,50,56,54,57,44,51,49,46,49,54,50,54,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,112,112,97,110,111,111,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,49,48,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,51,57,48,57,49,44,52,48,46,56,57,56,56,56,54,93,44,91,45,57,51,46,48,57,55,53,57,53,44,52,48,46,56,57,56,52,53,49,93,44,91,45,57,51,46,48,57,55,50,57,54,44,52,48,46,53,56,52,48,49,52,93,44,91,45,57,50,46,55,49,52,53,57,54,44,52,48,46,53,56,57,52,50,55,93,44,91,45,57,50,46,54,51,55,56,57,56,44,52,48,46,53,57,48,56,53,51,93,44,91,45,57,50,46,54,51,57,48,57,49,44,52,48,46,56,57,56,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,78,101,119,32,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,48,51,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,50,51,54,55,53,44,51,55,46,54,50,54,56,56,49,93,44,91,45,55,55,46,50,52,48,57,56,56,44,51,55,46,53,51,56,48,56,56,93,44,91,45,55,55,46,49,55,55,51,50,52,44,51,55,46,52,57,48,54,93,44,91,45,55,54,46,57,48,52,52,55,49,44,51,55,46,51,55,55,54,54,53,93,44,91,45,55,54,46,55,52,49,57,56,52,44,51,55,46,52,54,55,48,55,54,93,44,91,45,55,54,46,55,57,50,49,56,52,44,51,55,46,53,49,55,53,57,52,93,44,91,45,55,55,46,49,50,51,54,55,53,44,51,55,46,54,50,54,56,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,51,34,44,34,78,65,77,69,34,58,34,84,97,108,98,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,48,48,53,51,56,44,51,50,46,56,52,52,54,52,93,44,91,45,56,52,46,54,57,52,54,48,51,44,51,50,46,53,56,51,57,52,53,93,44,91,45,56,52,46,54,57,52,53,49,44,51,50,46,53,49,56,55,51,50,93,44,91,45,56,52,46,54,51,55,51,50,51,44,51,50,46,53,51,52,56,53,53,93,44,91,45,56,52,46,52,52,52,51,53,51,44,51,50,46,53,54,50,48,56,51,93,44,91,45,56,52,46,50,56,54,50,52,54,44,51,50,46,55,52,55,54,50,54,93,44,91,45,56,52,46,53,48,54,56,56,56,44,51,50,46,56,56,49,55,56,56,93,44,91,45,56,52,46,55,48,48,53,51,56,44,51,50,46,56,52,52,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,49,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,52,52,54,49,50,52,44,52,52,46,50,49,55,54,53,53,93,44,91,45,55,53,46,52,56,52,53,50,56,44,52,52,46,48,55,52,49,55,50,93,44,91,45,55,53,46,55,53,56,49,53,55,44,52,51,46,56,55,56,55,56,53,93,44,91,45,55,53,46,55,55,52,53,53,51,44,52,51,46,54,56,56,56,56,52,93,44,91,45,55,53,46,55,53,54,50,49,51,44,52,51,46,52,55,48,51,56,56,93,44,91,45,55,53,46,53,51,51,53,44,52,51,46,52,49,57,55,53,54,93,44,91,45,55,53,46,49,49,48,49,54,44,52,51,46,54,49,53,50,50,57,93,44,91,45,55,53,46,49,55,48,49,53,57,44,52,52,46,48,57,54,57,53,57,93,44,91,45,55,53,46,52,52,54,49,50,52,44,52,52,46,50,49,55,54,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,56,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,56,51,55,49,44,51,56,46,54,49,49,57,56,50,93,44,91,45,56,49,46,49,57,52,49,49,51,44,51,56,46,53,50,55,54,51,52,93,44,91,45,56,49,46,50,56,51,56,55,50,44,51,56,46,52,55,50,48,50,57,93,44,91,45,56,49,46,50,51,49,52,51,52,44,51,56,46,50,54,51,55,49,54,93,44,91,45,56,48,46,57,49,49,51,54,49,44,51,56,46,52,49,52,55,56,53,93,44,91,45,56,48,46,56,56,49,50,51,50,44,51,56,46,53,48,55,48,52,53,93,44,91,45,56,49,46,48,51,49,54,55,55,44,51,56,46,54,54,55,56,51,57,93,44,91,45,56,49,46,48,56,51,55,49,44,51,56,46,54,49,49,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,51,55,44,34,98,101,100,115,34,58,50,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,52,52,56,57,55,44,51,56,46,57,49,50,57,57,56,93,44,91,45,56,53,46,54,56,51,56,51,57,44,51,56,46,56,49,53,52,48,54,93,44,91,45,56,53,46,54,56,51,51,51,56,44,51,56,46,55,51,54,55,51,49,93,44,91,45,56,53,46,53,55,48,57,51,44,51,56,46,54,55,56,55,48,54,93,44,91,45,56,53,46,53,54,57,57,56,44,51,56,46,54,48,54,49,53,53,93,44,91,45,56,53,46,52,50,56,50,56,51,44,51,56,46,53,56,54,51,50,53,93,44,91,45,56,53,46,52,53,50,48,56,55,44,51,56,46,55,48,57,55,56,53,93,44,91,45,56,53,46,51,51,51,48,57,57,44,51,56,46,55,51,54,50,50,56,93,44,91,45,56,53,46,50,48,49,52,55,52,44,51,56,46,54,57,49,51,49,56,93,44,91,45,56,53,46,50,48,51,49,54,54,44,51,56,46,57,49,51,56,48,51,93,44,91,45,56,53,46,52,52,52,56,57,55,44,51,56,46,57,49,50,57,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,101,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,57,48,56,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,57,56,54,57,57,44,51,55,46,53,51,50,55,57,55,93,44,91,45,55,57,46,53,57,51,55,48,55,44,51,55,46,52,52,56,56,54,52,93,44,91,45,55,57,46,54,57,48,48,54,44,51,55,46,52,55,54,51,55,52,93,44,91,45,55,57,46,56,52,55,52,55,54,44,51,55,46,51,48,57,51,53,50,93,44,91,45,55,57,46,56,52,55,50,49,55,44,51,55,46,50,50,53,52,48,54,93,44,91,45,55,57,46,54,55,56,48,50,56,44,51,55,46,49,53,53,49,54,53,93,44,91,45,55,57,46,53,57,52,48,54,57,44,51,55,46,48,52,50,50,48,54,93,44,91,45,55,57,46,52,52,50,56,53,57,44,51,55,46,48,53,53,56,54,55,93,44,91,45,55,57,46,50,53,55,57,53,53,44,51,55,46,51,53,53,56,49,54,93,44,91,45,55,57,46,49,56,53,55,48,50,44,51,55,46,52,54,53,56,50,93,44,91,45,55,57,46,51,52,49,54,55,44,51,55,46,53,49,56,48,49,53,93,44,91,45,55,57,46,52,51,54,57,52,55,44,51,55,46,54,49,55,48,53,55,93,44,91,45,55,57,46,52,57,56,54,57,57,44,51,55,46,53,51,50,55,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,77,111,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,55,50,48,53,50,57,44,51,53,46,56,55,49,49,56,53,93,44,91,45,49,48,53,46,51,52,55,56,51,44,51,53,46,56,55,48,54,57,53,93,44,91,45,49,48,53,46,48,48,54,52,49,55,44,51,53,46,55,55,49,50,53,54,93,44,91,45,49,48,52,46,51,55,48,49,50,44,51,53,46,55,55,57,51,48,50,93,44,91,45,49,48,52,46,51,54,53,55,50,52,44,51,54,46,48,52,52,50,57,93,44,91,45,49,48,52,46,52,51,54,48,53,54,44,51,54,46,50,49,56,53,51,52,93,44,91,45,49,48,52,46,56,54,53,52,48,50,44,51,54,46,50,49,55,56,54,57,93,44,91,45,49,48,52,46,56,54,53,50,52,52,44,51,54,46,50,54,49,52,49,57,93,44,91,45,49,48,53,46,51,52,49,50,54,52,44,51,54,46,50,54,49,56,54,51,93,44,91,45,49,48,53,46,53,51,48,51,56,44,51,54,46,48,49,51,48,49,52,93,44,91,45,49,48,53,46,55,49,55,52,55,55,44,51,53,46,57,55,56,55,52,49,93,44,91,45,49,48,53,46,55,50,48,53,50,57,44,51,53,46,56,55,49,49,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,51,51,50,56,56,44,52,49,46,57,49,54,50,56,54,93,44,91,45,57,56,46,50,57,53,54,48,50,44,52,49,46,57,49,52,57,53,52,93,44,91,45,57,56,46,50,57,53,55,54,44,52,49,46,55,52,49,49,55,56,93,44,91,45,57,56,46,50,57,49,51,52,52,44,52,49,46,52,56,48,55,50,55,93,44,91,45,57,56,46,48,57,57,53,50,51,44,52,49,46,52,56,48,55,55,55,93,44,91,45,57,55,46,56,50,57,56,52,54,44,52,49,46,53,50,54,49,55,52,93,44,91,45,57,55,46,56,51,48,52,57,51,44,52,49,46,55,52,50,50,51,56,93,44,91,45,57,55,46,56,51,51,50,56,56,44,52,49,46,57,49,54,50,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,50,50,56,51,44,51,54,46,56,56,51,56,53,55,93,44,91,45,57,49,46,54,53,56,49,49,49,44,51,54,46,56,56,56,55,50,52,93,44,91,45,57,49,46,54,55,50,51,52,51,44,51,54,46,52,57,57,52,54,51,93,44,91,45,57,49,46,52,53,48,48,48,50,44,51,54,46,52,57,55,54,53,93,44,91,45,57,49,46,52,48,55,49,51,56,44,51,54,46,52,57,55,48,56,49,93,44,91,45,57,49,46,49,50,54,53,50,57,44,51,54,46,52,57,55,55,49,50,93,44,91,45,57,49,46,49,49,53,57,50,54,44,51,54,46,56,50,51,54,55,50,93,44,91,45,57,49,46,50,50,50,56,51,44,51,54,46,56,56,51,56,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,111,117,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,57,50,51,53,56,44,51,54,46,51,54,55,54,54,51,93,44,91,45,56,55,46,56,50,49,56,49,54,44,51,54,46,51,50,56,55,50,52,93,44,91,45,56,55,46,57,56,48,55,52,44,51,54,46,51,53,51,51,48,55,93,44,91,45,56,55,46,57,52,57,54,48,51,44,51,54,46,50,52,51,49,54,93,44,91,45,56,55,46,55,57,56,53,48,56,44,51,54,46,50,52,52,55,53,52,93,44,91,45,56,55,46,53,54,54,55,57,56,44,51,54,46,49,55,55,56,53,55,93,44,91,45,56,55,46,53,49,51,53,51,51,44,51,54,46,51,51,52,55,49,51,93,44,91,45,56,55,46,53,57,50,51,53,56,44,51,54,46,51,54,55,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,53,56,56,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,49,49,53,49,55,50,44,52,49,46,54,53,49,56,50,53,93,44,91,45,55,54,46,50,50,48,49,51,57,44,52,49,46,53,52,49,50,56,53,93,44,91,45,55,54,46,50,56,51,49,44,52,49,46,51,55,54,53,49,55,93,44,91,45,55,54,46,48,48,53,48,55,44,52,49,46,51,56,52,53,53,49,93,44,91,45,55,53,46,56,51,52,54,57,53,44,52,49,46,52,50,55,50,52,54,93,44,91,45,55,53,46,55,49,57,56,56,55,44,52,49,46,54,52,50,50,54,51,93,44,91,45,55,54,46,49,49,53,49,55,50,44,52,49,46,54,53,49,56,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,76,101,110,111,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,50,50,55,44,34,98,101,100,115,34,58,49,48,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,48,54,50,52,56,44,51,53,46,51,54,56,55,53,52,93,44,91,45,55,55,46,56,51,52,50,52,57,44,51,53,46,49,55,55,56,52,54,93,44,91,45,55,55,46,55,54,57,49,55,55,44,51,53,46,49,52,53,53,55,54,93,44,91,45,55,55,46,55,51,49,48,50,54,44,51,53,46,48,48,56,49,51,56,93,44,91,45,55,55,46,54,48,49,50,56,50,44,51,53,46,48,55,49,51,54,56,93,44,91,45,55,55,46,52,55,51,54,57,50,44,51,53,46,50,50,56,57,56,53,93,44,91,45,55,55,46,51,57,49,48,50,54,44,51,53,46,51,51,57,53,51,51,93,44,91,45,55,55,46,52,55,53,53,49,53,44,51,53,46,52,50,54,54,53,53,93,44,91,45,55,55,46,54,51,57,49,48,49,44,51,53,46,51,53,52,48,56,54,93,44,91,45,55,55,46,56,48,54,50,52,56,44,51,53,46,51,54,56,55,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,86,105,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,54,57,51,44,34,98,101,100,115,34,58,52,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,51,50,49,57,52,44,51,57,46,54,48,55,51,48,54,93,44,91,45,56,55,46,53,51,49,54,52,44,51,57,46,52,55,55,49,48,53,93,44,91,45,56,55,46,53,51,49,54,52,54,44,51,57,46,51,52,55,56,56,56,93,44,91,45,56,55,46,54,48,52,49,52,49,44,51,57,46,50,53,57,52,53,56,93,44,91,45,56,55,46,50,52,48,51,55,57,44,51,57,46,50,53,57,48,54,52,93,44,91,45,56,55,46,50,51,56,57,54,52,44,51,57,46,53,50,48,54,50,93,44,91,45,56,55,46,49,57,57,48,49,50,44,51,57,46,54,48,55,49,51,55,93,44,91,45,56,55,46,51,56,50,52,49,56,44,51,57,46,54,48,55,57,51,55,93,44,91,45,56,55,46,53,51,50,49,57,52,44,51,57,46,54,48,55,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,69,108,107,104,97,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,54,48,52,44,34,98,101,100,115,34,58,51,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,54,50,53,55,53,44,52,49,46,55,54,48,53,49,51,93,44,91,45,56,54,46,48,53,57,52,53,49,44,52,49,46,52,55,57,49,53,52,93,44,91,45,56,54,46,48,53,57,50,51,44,52,49,46,52,51,53,56,49,50,93,44,91,45,56,53,46,54,53,51,53,48,55,44,52,49,46,52,51,54,56,53,54,93,44,91,45,56,53,46,54,53,52,55,52,55,44,52,49,46,53,50,51,51,52,55,93,44,91,45,56,53,46,54,53,57,55,53,44,52,49,46,55,53,57,48,54,56,93,44,91,45,56,53,46,55,57,49,51,51,53,44,52,49,46,55,53,57,48,55,56,93,44,91,45,56,54,46,48,54,50,53,55,53,44,52,49,46,55,54,48,53,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,114,97,121,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,53,51,50,53,57,44,51,54,46,53,55,52,54,57,50,93,44,91,45,56,48,46,57,48,49,54,52,49,44,51,54,46,53,54,49,55,54,54,93,44,91,45,56,48,46,56,51,55,57,53,52,44,51,54,46,53,53,57,49,52,51,93,44,91,45,56,48,46,57,49,52,49,55,51,44,51,54,46,54,53,48,50,52,54,93,44,91,45,56,48,46,57,51,50,50,55,49,44,51,54,46,54,55,49,53,57,51,93,44,91,45,56,49,46,48,52,50,52,50,56,44,51,54,46,56,48,54,52,52,56,93,44,91,45,56,49,46,48,56,56,53,49,44,51,54,46,55,54,55,52,50,50,93,44,91,45,56,49,46,50,54,49,57,56,55,44,51,54,46,55,54,51,48,51,51,93,44,91,45,56,49,46,53,50,52,56,48,56,44,51,54,46,55,48,55,53,52,93,44,91,45,56,49,46,54,48,53,56,54,53,44,51,54,46,54,51,56,48,55,57,93,44,91,45,56,49,46,54,52,54,57,44,51,54,46,54,49,49,57,49,56,93,44,91,45,56,49,46,54,55,55,52,57,44,51,54,46,53,56,56,49,51,55,93,44,91,45,56,49,46,51,53,51,50,53,57,44,51,54,46,53,55,52,54,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,51,34,44,34,78,65,77,69,34,58,34,76,117,98,98,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,49,52,53,52,44,34,98,101,100,115,34,58,50,49,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,54,51,53,56,44,51,51,46,56,51,48,52,53,49,93,44,91,45,49,48,50,46,48,56,53,55,51,51,44,51,51,46,56,50,52,54,55,53,93,44,91,45,49,48,50,46,48,55,53,57,50,57,44,51,51,46,51,56,57,53,56,54,93,44,91,45,49,48,49,46,53,53,54,56,56,52,44,51,51,46,51,57,52,55,54,93,44,91,45,49,48,49,46,53,54,51,53,56,44,51,51,46,56,51,48,52,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,101,101,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,55,57,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,54,51,48,56,44,52,53,46,51,50,54,49,93,44,91,45,57,52,46,55,53,56,49,56,57,44,52,52,46,56,57,50,48,57,55,93,44,91,45,57,52,46,53,48,50,51,57,53,44,52,52,46,56,57,50,50,57,53,93,44,91,45,57,52,46,53,48,49,56,56,53,44,52,52,46,57,55,57,54,57,53,93,44,91,45,57,52,46,50,53,54,48,55,52,44,52,52,46,57,55,57,52,54,53,93,44,91,45,57,52,46,50,54,48,56,50,49,44,52,53,46,50,56,51,57,52,49,93,44,91,45,57,52,46,51,56,51,53,53,54,44,52,53,46,51,50,54,55,48,53,93,44,91,45,57,52,46,55,54,51,48,56,44,52,53,46,51,50,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,115,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,52,55,55,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,50,56,53,50,44,52,48,46,57,57,50,57,52,52,93,44,91,45,56,50,46,52,49,54,56,52,55,44,52,48,46,56,49,52,53,54,55,93,44,91,45,56,50,46,51,51,57,50,49,49,44,52,48,46,55,50,54,54,56,51,93,44,91,45,56,50,46,51,51,54,57,54,50,44,52,48,46,53,53,53,48,48,49,93,44,91,45,56,50,46,50,50,48,49,49,44,52,48,46,53,54,56,50,48,54,93,44,91,45,56,50,46,49,50,54,49,57,57,44,52,48,46,54,54,56,50,50,57,93,44,91,45,56,50,46,49,50,57,51,51,52,44,52,48,46,57,57,49,56,48,55,93,44,91,45,56,50,46,49,55,49,52,57,50,44,52,49,46,48,54,51,53,51,55,93,44,91,45,56,50,46,51,51,54,52,57,54,44,52,49,46,48,54,53,55,54,49,93,44,91,45,56,50,46,52,51,50,56,53,50,44,52,48,46,57,57,50,57,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,49,54,52,44,34,98,101,100,115,34,58,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,51,52,53,51,54,44,52,50,46,48,56,57,55,53,93,44,91,45,57,55,46,56,51,51,50,56,56,44,52,49,46,57,49,54,50,56,54,93,44,91,45,57,55,46,56,51,48,52,57,51,44,52,49,46,55,52,50,50,51,56,93,44,91,45,57,55,46,51,54,56,48,55,44,52,49,46,55,52,51,50,48,55,93,44,91,45,57,55,46,51,54,56,52,48,52,44,52,50,46,48,57,48,57,50,50,93,44,91,45,57,55,46,56,51,52,53,51,54,44,52,50,46,48,56,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,53,56,49,44,34,98,101,100,115,34,58,51,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,49,51,56,48,52,57,44,50,55,46,50,54,50,56,55,57,93,44,91,45,56,48,46,50,56,53,53,49,44,50,55,46,50,48,54,48,50,53,93,44,91,45,56,48,46,54,55,55,56,54,50,44,50,55,46,50,48,53,57,56,56,93,44,91,45,56,48,46,54,55,55,52,50,55,44,50,55,46,49,50,49,54,49,57,93,44,91,45,56,48,46,56,56,53,54,51,57,44,50,54,46,57,53,56,57,49,57,93,44,91,45,56,48,46,49,52,50,48,48,55,44,50,54,46,57,53,54,54,52,93,44,91,45,56,48,46,48,50,50,55,53,52,44,50,54,46,57,55,48,51,57,50,93,44,91,45,56,48,46,49,51,56,48,52,57,44,50,55,46,50,54,50,56,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,77,105,110,101,114,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,48,48,48,54,48,50,44,51,55,46,57,53,54,48,52,49,93,44,91,45,49,48,55,46,49,51,56,49,57,49,44,51,55,46,57,51,56,56,52,56,93,44,91,45,49,48,55,46,49,52,53,49,51,56,44,51,55,46,54,55,53,52,57,55,93,44,91,45,49,48,55,46,49,50,56,54,56,44,51,55,46,52,50,50,57,52,50,93,44,91,45,49,48,55,46,49,50,56,55,51,55,44,51,55,46,51,57,50,52,48,57,93,44,91,45,49,48,54,46,55,49,48,55,55,53,44,51,55,46,52,48,52,50,50,56,93,44,91,45,49,48,54,46,54,57,51,56,52,53,44,51,55,46,56,51,53,50,52,52,93,44,91,45,49,48,54,46,56,57,55,56,51,52,44,51,55,46,57,54,55,56,57,49,93,44,91,45,49,48,55,46,48,48,48,54,48,50,44,51,55,46,57,53,54,48,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,68,97,119,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,53,53,53,51,44,51,52,46,53,54,50,55,51,53,93,44,91,45,56,52,46,50,53,55,53,56,54,44,51,52,46,51,56,48,57,57,50,93,44,91,45,56,52,46,50,53,56,48,55,53,44,51,52,46,51,51,53,49,53,54,93,44,91,45,56,51,46,57,53,55,48,55,55,44,51,52,46,51,51,52,48,49,49,93,44,91,45,56,51,46,57,56,48,54,52,57,44,51,52,46,52,49,56,51,56,57,93,44,91,45,56,52,46,49,57,49,48,52,44,51,52,46,53,51,57,49,56,49,93,44,91,45,56,52,46,49,56,56,53,53,55,44,51,52,46,54,48,50,54,57,50,93,44,91,45,56,52,46,49,57,54,55,53,52,44,51,52,46,54,49,55,57,50,52,93,44,91,45,56,52,46,51,52,53,53,53,51,44,51,52,46,53,54,50,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,53,50,49,48,53,50,44,51,50,46,56,50,50,51,53,54,93,44,91,45,56,50,46,55,54,56,51,54,53,44,51,50,46,55,54,57,49,48,56,93,44,91,45,56,50,46,57,52,54,57,54,54,44,51,50,46,55,53,57,51,53,56,93,44,91,45,56,50,46,57,53,55,48,54,54,44,51,50,46,55,48,56,51,49,56,93,44,91,45,56,50,46,56,54,50,55,54,51,44,51,50,46,55,49,53,55,54,93,44,91,45,56,50,46,54,54,56,53,53,55,44,51,50,46,54,49,50,49,54,52,93,44,91,45,56,50,46,54,52,55,55,51,51,44,51,50,46,53,49,50,53,48,55,93,44,91,45,56,50,46,52,54,57,56,50,51,44,51,50,46,54,53,48,56,56,50,93,44,91,45,56,50,46,52,51,52,49,52,57,44,51,50,46,55,54,50,50,53,56,93,44,91,45,56,50,46,53,50,49,48,53,50,44,51,50,46,56,50,50,51,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,54,56,53,54,44,51,52,46,57,49,50,55,51,53,93,44,91,45,57,49,46,51,55,55,56,50,44,51,52,46,53,54,51,52,56,93,44,91,45,57,49,46,50,54,51,54,48,54,44,51,52,46,53,48,49,56,54,55,93,44,91,45,57,49,46,48,53,54,50,55,54,44,51,52,46,51,51,54,54,48,53,93,44,91,45,57,49,46,48,53,49,57,49,56,44,51,52,46,54,52,53,55,50,49,93,44,91,45,57,49,46,49,48,50,53,52,50,44,51,52,46,55,51,52,56,54,52,93,44,91,45,57,49,46,48,57,57,57,54,49,44,51,52,46,56,54,55,49,50,93,44,91,45,57,49,46,49,52,57,56,52,50,44,51,53,46,48,48,50,52,55,93,44,91,45,57,49,46,50,57,51,49,49,49,44,51,52,46,57,56,53,48,57,49,93,44,91,45,57,49,46,51,54,56,53,54,44,51,52,46,57,49,50,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,55,50,52,52,55,44,51,55,46,57,48,50,54,50,55,93,44,91,45,57,51,46,49,56,50,55,48,54,44,51,55,46,57,48,52,49,52,52,93,44,91,45,57,51,46,49,56,55,57,49,53,44,51,55,46,56,48,50,55,51,55,93,44,91,45,57,51,46,49,56,50,52,56,57,44,51,55,46,52,49,55,50,48,52,93,44,91,45,57,51,46,48,55,51,51,56,44,51,55,46,52,49,52,57,56,57,93,44,91,45,57,51,46,48,55,49,53,56,52,44,51,55,46,52,56,55,52,52,52,93,44,91,45,57,50,46,56,53,51,52,56,49,44,51,55,46,52,56,51,57,55,93,44,91,45,57,50,46,56,53,53,51,56,52,44,51,55,46,56,57,53,55,51,54,93,44,91,45,57,51,46,48,55,50,52,52,55,44,51,55,46,57,48,50,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,80,105,116,116,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,54,55,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,55,48,48,53,55,44,51,54,46,53,52,48,57,55,49,93,44,91,45,55,57,46,51,57,56,48,57,52,44,51,54,46,54,52,52,48,51,55,93,44,91,45,55,57,46,51,52,51,49,49,55,44,51,54,46,53,52,49,53,57,93,44,91,45,55,57,46,50,49,56,52,53,54,44,51,54,46,53,52,49,54,53,51,93,44,91,45,55,57,46,48,57,50,50,54,52,44,51,55,46,48,54,49,52,57,56,93,44,91,45,55,57,46,51,51,50,49,54,49,44,51,55,46,49,50,53,53,54,56,93,44,91,45,55,57,46,52,52,50,56,53,57,44,51,55,46,48,53,53,56,54,55,93,44,91,45,55,57,46,53,57,52,48,54,57,44,51,55,46,48,52,50,50,48,54,93,44,91,45,55,57,46,54,52,48,54,53,50,44,51,54,46,56,53,54,49,51,57,93,44,91,45,55,57,46,55,49,52,56,52,57,44,51,54,46,53,52,49,57,54,53,93,44,91,45,55,57,46,53,49,51,54,51,56,44,51,54,46,53,52,48,57,48,50,93,44,91,45,55,57,46,52,55,48,48,53,55,44,51,54,46,53,52,48,57,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,54,56,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,56,34,44,34,78,65,77,69,34,58,34,68,101,110,97,108,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,50,46,57,57,55,54,52,55,44,54,50,46,55,50,55,52,48,49,93,44,91,45,49,53,49,46,56,57,51,55,56,52,44,54,50,46,55,50,53,56,54,52,93,44,91,45,49,53,49,46,56,57,52,48,49,53,44,54,50,46,55,57,56,48,53,56,93,44,91,45,49,53,48,46,55,50,48,57,49,54,44,54,51,46,48,54,51,49,56,52,93,44,91,45,49,52,57,46,53,50,54,49,52,56,44,54,51,46,51,51,51,50,49,55,93,44,91,45,49,52,56,46,48,50,53,54,49,56,44,54,51,46,51,51,51,50,51,51,93,44,91,45,49,52,56,46,48,50,53,54,50,55,44,54,51,46,52,55,55,54,48,57,93,44,91,45,49,52,54,46,57,57,57,57,54,54,44,54,51,46,52,55,57,54,52,53,93,44,91,45,49,52,54,46,57,57,57,57,48,57,44,54,52,46,50,53,55,49,57,54,93,44,91,45,49,52,55,46,55,53,57,50,44,54,52,46,50,53,55,50,93,44,91,45,49,52,56,46,48,52,54,54,57,54,44,54,52,46,51,52,51,56,48,50,93,44,91,45,49,52,57,46,49,51,50,54,53,51,44,54,52,46,51,53,56,50,49,52,93,44,91,45,49,53,48,46,55,50,57,51,56,53,44,54,52,46,51,53,56,49,55,51,93,44,91,45,49,53,49,46,50,56,49,57,57,53,44,54,51,46,57,57,55,50,54,53,93,44,91,45,49,53,49,46,55,57,51,57,55,54,44,54,52,46,48,54,57,52,51,93,44,91,45,49,53,50,46,48,53,53,55,53,56,44,54,51,46,57,57,55,50,52,50,93,44,91,45,49,53,50,46,48,53,53,49,51,50,44,54,51,46,56,50,52,48,48,54,93,44,91,45,49,53,50,46,50,50,57,50,53,54,44,54,51,46,56,50,52,48,48,49,93,44,91,45,49,53,50,46,50,50,56,52,51,57,44,54,51,46,54,53,48,55,54,93,44,91,45,49,53,50,46,56,55,51,52,49,44,54,51,46,54,53,48,55,52,53,93,44,91,45,49,53,50,46,56,55,51,51,57,50,44,54,51,46,52,55,55,53,93,44,91,45,49,53,50,46,56,49,48,57,51,49,44,54,51,46,51,52,55,53,54,51,93,44,91,45,49,53,50,46,52,50,56,48,57,56,44,54,51,46,51,48,52,50,53,57,93,44,91,45,49,53,50,46,52,50,56,48,56,52,44,54,51,46,49,56,51,49,55,49,93,44,91,45,49,53,50,46,57,57,55,54,52,55,44,54,50,46,55,50,55,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,80,97,119,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,48,57,44,34,98,101,100,115,34,58,54,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,56,52,50,48,55,44,51,56,46,50,54,50,49,55,57,93,44,91,45,57,57,46,53,54,57,53,51,51,44,51,56,46,48,56,55,51,55,50,93,44,91,45,57,57,46,51,53,48,51,53,57,44,51,56,46,48,56,55,53,57,52,93,44,91,45,57,57,46,51,53,48,50,56,57,44,51,56,46,48,48,48,55,52,53,93,44,91,45,57,57,46,48,50,50,49,51,54,44,51,56,46,48,48,48,50,51,54,93,44,91,45,57,56,46,57,49,51,49,51,54,44,51,56,46,48,48,48,52,53,49,93,44,91,45,57,56,46,57,49,50,53,56,51,44,51,56,46,50,54,49,48,56,56,93,44,91,45,57,57,46,48,51,50,51,48,57,44,51,56,46,50,54,49,50,50,55,93,44,91,45,57,57,46,48,51,50,52,48,56,44,51,56,46,51,52,56,51,51,52,93,44,91,45,57,57,46,53,56,52,55,57,52,44,51,56,46,51,52,57,51,56,54,93,44,91,45,57,57,46,53,56,52,50,48,55,44,51,56,46,50,54,50,49,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,57,34,44,34,78,65,77,69,34,58,34,87,121,97,110,100,111,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,51,52,53,44,34,98,101,100,115,34,58,49,51,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,48,56,55,54,53,44,51,56,46,57,57,49,52,48,49,93,44,91,45,57,52,46,56,55,50,52,52,50,44,51,57,46,48,53,57,48,56,56,93,44,91,45,57,52,46,54,48,55,51,56,50,44,51,57,46,48,52,52,48,56,54,93,44,91,45,57,52,46,54,48,55,51,53,52,44,51,57,46,49,49,51,52,52,52,93,44,91,45,57,52,46,54,48,49,55,51,51,44,51,57,46,49,53,57,54,48,51,93,44,91,45,57,52,46,55,55,53,53,51,50,44,51,57,46,50,48,48,54,48,54,93,44,91,45,57,52,46,57,48,48,49,57,49,44,51,57,46,50,48,50,57,49,49,93,44,91,45,57,52,46,57,48,56,55,54,53,44,51,56,46,57,57,49,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,68,105,120,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,49,56,56,53,57,44,50,57,46,56,50,50,54,50,51,93,44,91,45,56,51,46,51,54,54,51,57,56,44,50,57,46,54,54,53,55,48,49,93,44,91,45,56,51,46,52,56,49,50,54,52,44,50,57,46,54,51,48,51,50,57,93,44,91,45,56,51,46,52,52,57,52,53,54,44,50,57,46,52,56,51,51,53,49,93,44,91,45,56,51,46,50,51,56,54,55,57,44,50,57,46,51,48,56,54,49,93,44,91,45,56,51,46,50,51,57,56,53,57,44,50,57,46,50,53,48,57,57,93,44,91,45,56,51,46,48,54,56,53,50,50,44,50,57,46,51,52,51,57,53,51,93,44,91,45,56,50,46,57,51,55,51,50,57,44,50,57,46,53,57,49,49,57,54,93,44,91,45,56,50,46,57,50,48,54,48,56,44,50,57,46,56,50,52,49,52,51,93,44,91,45,56,51,46,51,49,56,56,53,57,44,50,57,46,56,50,50,54,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,84,117,115,99,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,50,53,48,44,34,98,101,100,115,34,58,49,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,57,56,56,49,54,44,52,51,46,52,55,56,57,53,55,93,44,91,45,56,51,46,54,57,53,54,50,49,44,52,51,46,50,50,49,52,50,50,93,44,91,45,56,51,46,52,54,48,55,51,51,44,52,51,46,50,50,51,49,51,49,93,44,91,45,56,51,46,51,53,52,52,49,56,44,52,51,46,51,50,50,50,53,55,93,44,91,45,56,51,46,49,50,48,51,57,54,44,52,51,46,51,50,55,48,52,57,93,44,91,45,56,51,46,49,49,55,56,52,52,44,52,51,46,54,55,53,52,57,51,93,44,91,45,56,51,46,52,54,54,53,57,50,44,52,51,46,54,54,55,54,50,49,93,44,91,45,56,51,46,52,54,55,52,48,51,44,52,51,46,55,50,56,57,48,57,93,44,91,45,56,51,46,55,48,56,51,49,55,44,52,51,46,56,50,56,55,50,49,93,44,91,45,56,51,46,54,57,56,56,49,54,44,52,51,46,52,55,56,57,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,52,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,48,34,44,34,78,65,77,69,34,58,34,83,111,117,116,104,101,97,115,116,32,70,97,105,114,98,97,110,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,55,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,54,46,57,57,57,57,48,57,44,54,52,46,50,53,55,49,57,54,93,44,91,45,49,52,54,46,57,57,57,57,54,54,44,54,51,46,52,55,57,54,52,53,93,44,91,45,49,52,54,46,52,56,57,53,52,49,44,54,51,46,52,56,50,57,49,51,93,44,91,45,49,52,54,46,52,57,52,51,49,49,44,54,51,46,49,54,56,57,55,53,93,44,91,45,49,52,54,46,49,49,49,52,56,54,44,54,51,46,50,49,55,55,54,50,93,44,91,45,49,52,53,46,49,53,52,51,57,53,44,54,51,46,50,49,55,55,56,49,93,44,91,45,49,52,53,46,49,53,52,51,56,53,44,54,51,46,49,51,49,49,52,57,93,44,91,45,49,52,52,46,53,56,48,49,53,57,44,54,51,46,49,49,54,57,51,49,93,44,91,45,49,52,51,46,49,51,50,51,51,55,44,54,51,46,49,49,54,57,55,56,93,44,91,45,49,52,51,46,48,51,50,50,51,56,44,54,50,46,57,51,49,55,57,49,93,44,91,45,49,52,51,46,49,54,52,51,53,44,54,50,46,56,51,52,53,54,57,93,44,91,45,49,52,51,46,48,53,55,56,51,52,44,54,50,46,55,55,48,53,52,93,44,91,45,49,52,51,46,49,48,52,57,57,54,44,54,50,46,54,49,52,57,48,53,93,44,91,45,49,52,50,46,56,52,56,53,55,57,44,54,50,46,54,48,48,53,52,55,93,44,91,45,49,52,50,46,55,51,49,50,51,51,44,54,50,46,55,48,56,50,56,50,93,44,91,45,49,52,50,46,51,49,51,53,54,52,44,54,50,46,54,56,51,56,50,56,93,44,91,45,49,52,49,46,57,55,55,51,53,51,44,54,50,46,53,49,48,53,53,57,93,44,91,45,49,52,49,46,57,55,55,51,51,54,44,54,50,46,49,54,51,57,56,51,93,44,91,45,49,52,49,46,56,51,49,56,49,50,44,54,50,46,49,49,55,49,55,56,93,44,91,45,49,52,49,46,56,51,49,56,48,52,44,54,49,46,57,48,52,48,53,51,93,44,91,45,49,52,49,46,48,48,50,50,54,55,44,54,49,46,57,48,52,48,52,55,93,44,91,45,49,52,49,46,48,48,49,52,55,44,54,50,46,53,53,53,53,53,57,93,44,91,45,49,52,49,46,48,48,49,52,48,54,44,54,51,46,50,54,56,55,48,52,93,44,91,45,49,52,49,46,48,48,49,51,50,54,44,54,52,46,52,50,51,53,50,57,93,44,91,45,49,52,49,46,48,48,49,55,51,51,44,54,53,46,50,57,55,49,49,51,93,44,91,45,49,52,49,46,48,48,50,52,55,50,44,54,53,46,56,51,57,52,50,49,93,44,91,45,49,52,49,46,51,51,54,50,50,52,44,54,53,46,55,49,49,54,49,52,93,44,91,45,49,52,49,46,51,56,55,56,52,50,44,54,53,46,54,49,52,51,57,53,93,44,91,45,49,52,49,46,55,56,57,48,53,44,54,53,46,53,48,49,53,52,54,93,44,91,45,49,52,49,46,56,53,53,55,54,49,44,54,53,46,52,52,53,55,56,54,93,44,91,45,49,52,50,46,49,52,50,57,50,50,44,54,53,46,52,54,51,49,55,52,93,44,91,45,49,52,50,46,52,56,55,51,48,49,44,54,53,46,51,55,49,56,57,56,93,44,91,45,49,52,50,46,54,54,51,55,55,50,44,54,53,46,51,55,49,56,55,54,93,44,91,45,49,52,50,46,55,51,49,57,44,54,53,46,50,51,51,54,51,57,93,44,91,45,49,52,50,46,56,54,52,51,52,52,44,54,53,46,49,52,48,51,56,55,93,44,91,45,49,52,51,46,48,52,52,48,53,53,44,54,53,46,49,51,50,51,50,55,93,44,91,45,49,52,51,46,52,54,57,54,54,55,44,54,52,46,57,56,50,49,56,57,93,44,91,45,49,52,51,46,53,51,51,55,52,56,44,54,52,46,55,55,56,55,53,53,93,44,91,45,49,52,51,46,55,53,50,48,57,49,44,54,52,46,54,52,55,54,49,56,93,44,91,45,49,52,52,46,48,54,57,48,50,57,44,54,52,46,54,56,51,53,54,50,93,44,91,45,49,52,52,46,53,53,50,53,50,54,44,54,52,46,54,48,48,54,52,53,93,44,91,45,49,52,52,46,57,56,53,51,51,49,44,54,52,46,53,54,56,54,48,57,93,44,91,45,49,52,53,46,48,56,50,55,56,55,44,54,52,46,53,48,55,51,52,57,93,44,91,45,49,52,53,46,51,55,51,57,50,57,44,54,52,46,52,56,51,56,51,54,93,44,91,45,49,52,53,46,52,57,56,48,56,57,44,54,52,46,52,50,51,49,53,53,93,44,91,45,49,52,53,46,55,52,48,48,48,50,44,54,52,46,52,54,48,49,51,50,93,44,91,45,49,52,54,46,48,48,51,55,55,50,44,54,52,46,51,56,49,48,57,49,93,44,91,45,49,52,54,46,49,53,55,53,57,50,44,54,52,46,51,56,50,55,51,93,44,91,45,49,52,54,46,51,52,52,54,55,51,44,54,52,46,50,55,54,51,54,52,93,44,91,45,49,52,54,46,57,57,57,57,48,57,44,54,52,46,50,53,55,49,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,71,114,97,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,52,53,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,54,49,54,54,55,44,51,57,46,53,54,55,50,55,55,93,44,91,45,49,48,48,46,49,54,52,50,44,51,57,46,49,51,50,48,55,49,93,44,91,45,49,48,48,46,49,52,55,57,52,44,51,57,46,49,51,50,49,55,57,93,44,91,45,57,57,46,54,48,53,49,56,55,44,51,57,46,49,51,50,52,56,49,93,44,91,45,57,57,46,54,48,50,49,55,54,44,51,57,46,53,54,55,51,50,56,93,44,91,45,57,57,46,54,50,55,57,53,51,44,51,57,46,53,54,55,52,51,55,93,44,91,45,49,48,48,46,49,54,49,54,54,55,44,51,57,46,53,54,55,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,97,110,100,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,52,52,57,44,34,98,101,100,115,34,58,50,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,49,50,55,49,49,44,51,48,46,56,52,56,54,48,55,93,44,91,45,57,50,46,49,55,50,52,49,53,44,51,48,46,55,54,55,57,51,53,93,44,91,45,57,50,46,50,49,49,50,52,51,44,51,48,46,53,54,56,49,50,53,93,44,91,45,57,50,46,52,50,48,55,56,44,51,48,46,53,51,56,56,50,93,44,91,45,57,50,46,52,57,51,50,53,57,44,51,48,46,52,56,48,52,57,57,93,44,91,45,57,50,46,50,52,52,55,57,53,44,51,48,46,52,56,48,49,57,51,93,44,91,45,57,50,46,49,55,54,52,52,52,44,51,48,46,52,51,54,56,53,50,93,44,91,45,57,50,46,49,52,50,49,56,52,44,51,48,46,50,57,56,56,49,55,93,44,91,45,57,49,46,57,56,56,55,49,56,44,51,48,46,51,54,56,53,57,56,93,44,91,45,57,49,46,56,54,57,50,55,51,44,51,48,46,52,49,55,50,51,53,93,44,91,45,57,49,46,54,57,52,51,44,51,48,46,52,48,49,55,52,56,93,44,91,45,57,49,46,55,53,54,49,57,51,44,51,48,46,52,57,55,55,51,56,93,44,91,45,57,49,46,55,51,51,54,55,51,44,51,48,46,55,48,49,55,51,93,44,91,45,57,49,46,56,49,53,50,53,56,44,51,48,46,56,52,56,49,48,55,93,44,91,45,57,50,46,50,49,50,55,49,49,44,51,48,46,56,52,56,54,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,105,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,49,54,55,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,48,54,53,55,56,44,51,53,46,52,51,51,50,48,55,93,44,91,45,56,55,46,50,50,52,48,53,50,44,51,52,46,57,57,57,51,55,55,93,44,91,45,56,55,46,50,49,48,55,53,57,44,51,52,46,57,57,57,48,50,52,93,44,91,45,56,54,46,56,51,54,51,48,54,44,51,52,46,57,57,49,56,57,57,93,44,91,45,56,54,46,56,50,56,51,48,49,44,51,53,46,50,54,51,54,55,55,93,44,91,45,56,54,46,57,54,48,56,48,52,44,51,53,46,52,49,55,48,50,49,93,44,91,45,56,55,46,49,50,48,56,56,51,44,51,53,46,52,53,53,54,54,93,44,91,45,56,55,46,50,48,54,53,55,56,44,51,53,46,52,51,51,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,76,117,99,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,50,51,55,57,44,34,98,101,100,115,34,58,51,52,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,49,50,52,54,44,52,49,46,57,53,57,52,49,93,44,91,45,56,51,46,52,49,53,56,53,49,44,52,49,46,55,51,51,55,57,52,93,44,91,45,56,51,46,55,54,51,49,53,44,52,49,46,55,50,51,53,53,50,93,44,91,45,56,51,46,56,56,48,51,57,49,44,52,49,46,55,50,48,50,49,50,93,44,91,45,56,51,46,56,56,50,57,52,51,44,52,49,46,52,56,55,53,52,51,93,44,91,45,56,51,46,56,56,51,50,51,52,44,52,49,46,52,49,52,53,48,51,93,44,91,45,56,51,46,55,52,55,50,49,55,44,52,49,46,52,54,54,50,49,54,93,44,91,45,56,51,46,53,54,57,57,51,52,44,52,49,46,54,49,55,49,53,93,44,91,45,56,51,46,52,49,53,57,52,49,44,52,49,46,54,49,57,49,49,93,44,91,45,56,51,46,49,54,52,53,49,49,44,52,49,46,54,50,51,50,52,55,93,44,91,45,56,50,46,57,57,53,53,55,50,44,52,49,46,56,50,56,57,54,57,93,44,91,45,56,51,46,49,49,50,52,54,44,52,49,46,57,53,57,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,56,51,49,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,53,57,51,55,54,44,51,53,46,57,57,57,49,51,49,93,44,91,45,57,48,46,50,56,56,57,52,55,44,51,53,46,57,57,54,52,49,93,44,91,45,57,48,46,50,56,54,55,51,54,44,51,53,46,54,57,57,57,49,52,93,44,91,45,57,48,46,50,56,54,56,57,57,44,51,53,46,52,51,56,53,55,51,93,44,91,45,57,48,46,49,52,48,50,53,55,44,51,53,46,52,51,54,54,51,54,93,44,91,45,57,48,46,48,53,52,51,50,50,44,51,53,46,51,56,57,50,55,55,93,44,91,45,57,48,46,48,52,49,53,54,51,44,51,53,46,51,57,54,54,50,93,44,91,45,57,48,46,48,53,48,52,51,55,44,51,53,46,53,49,53,56,57,52,93,44,91,45,56,57,46,57,48,57,55,57,55,44,51,53,46,53,51,55,57,49,52,93,44,91,45,56,57,46,57,53,48,50,55,55,44,51,53,46,55,51,56,52,57,52,93,44,91,45,56,57,46,56,50,48,56,55,54,44,51,53,46,55,53,54,56,54,56,93,44,91,45,56,57,46,55,52,50,54,48,54,44,51,53,46,57,48,54,54,53,51,93,44,91,45,56,57,46,54,52,52,56,51,56,44,51,53,46,57,48,52,51,53,49,93,44,91,45,56,57,46,55,51,51,48,57,53,44,51,54,46,48,48,48,54,48,56,93,44,91,45,56,57,46,57,53,57,51,55,54,44,51,53,46,57,57,57,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,82,105,110,99,195,179,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,56,50,56,53,50,44,49,56,46,51,49,51,48,50,54,93,44,91,45,54,55,46,50,52,57,51,56,52,44,49,56,46,52,49,56,57,50,52,93,44,91,45,54,55,46,51,49,57,57,49,49,44,49,56,46,51,52,51,49,56,55,93,44,91,45,54,55,46,50,53,52,50,44,49,56,46,50,53,50,54,51,56,93,44,91,45,54,55,46,50,52,51,53,53,57,44,49,56,46,50,54,56,57,50,50,93,44,91,45,54,55,46,49,56,50,56,53,50,44,49,56,46,51,49,51,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,56,48,57,44,34,98,101,100,115,34,58,50,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,51,50,56,49,55,44,51,56,46,52,49,55,56,57,56,93,44,91,45,56,54,46,48,51,50,53,53,57,44,51,56,46,51,51,48,54,54,93,44,91,45,56,53,46,56,57,57,55,54,44,51,56,46,49,56,48,52,52,52,93,44,91,45,56,53,46,55,57,50,51,49,54,44,51,56,46,50,56,55,52,51,51,93,44,91,45,56,53,46,56,48,55,55,48,52,44,51,56,46,52,48,52,52,52,51,93,44,91,45,56,53,46,57,57,52,54,50,44,51,56,46,52,49,56,51,52,53,93,44,91,45,56,54,46,48,51,50,56,49,55,44,51,56,46,52,49,55,56,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,77,111,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,56,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,49,54,52,50,44,51,55,46,51,56,57,49,57,93,44,91,45,49,48,50,46,48,52,50,48,56,57,44,51,54,46,57,57,51,48,49,54,93,44,91,45,49,48,50,46,48,50,56,50,48,52,44,51,54,46,57,57,51,49,48,50,93,44,91,45,49,48,49,46,53,53,53,50,53,57,44,51,54,46,57,57,53,51,50,52,93,44,91,45,49,48,49,46,53,53,54,54,48,54,44,51,55,46,51,56,56,52,56,53,93,44,91,45,49,48,50,46,48,52,49,54,52,50,44,51,55,46,51,56,57,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,54,48,49,48,55,44,51,56,46,55,55,55,50,57,51,93,44,91,45,56,52,46,55,56,53,55,56,56,44,51,56,46,55,50,48,52,53,57,93,44,91,45,56,52,46,55,55,52,51,50,50,44,51,56,46,54,49,56,53,57,52,93,44,91,45,56,52,46,53,56,48,53,51,57,44,51,56,46,52,55,51,48,51,57,93,44,91,45,56,52,46,53,53,55,51,55,53,44,51,56,46,52,57,50,57,49,55,93,44,91,45,56,52,46,52,55,54,50,57,57,44,51,56,46,53,52,50,55,50,51,93,44,91,45,56,52,46,53,51,50,50,56,56,44,51,56,46,55,57,49,57,51,55,93,44,91,45,56,52,46,54,49,53,54,54,52,44,51,56,46,56,48,50,50,55,55,93,44,91,45,56,52,46,54,54,48,49,48,55,44,51,56,46,55,55,55,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,55,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,48,48,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,56,51,52,57,55,44,51,55,46,52,54,57,57,49,55,93,44,91,45,56,53,46,51,53,50,55,55,49,44,51,55,46,49,57,50,52,51,50,93,44,91,45,56,53,46,49,54,53,49,55,52,44,51,55,46,51,49,48,51,57,54,93,44,91,45,56,53,46,48,55,51,55,55,50,44,51,55,46,52,49,51,54,54,57,93,44,91,45,56,53,46,49,54,57,53,54,53,44,51,55,46,52,54,52,48,48,52,93,44,91,45,56,53,46,50,52,54,55,53,57,44,51,55,46,52,50,48,50,48,53,93,44,91,45,56,53,46,51,52,49,50,50,44,51,55,46,52,54,57,52,53,56,93,44,91,45,56,53,46,52,54,54,50,53,44,51,55,46,52,54,53,53,57,53,93,44,91,45,56,53,46,53,56,51,52,57,55,44,51,55,46,52,54,57,57,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,71,114,97,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,54,49,49,48,50,44,51,53,46,52,54,51,55,53,52,93,44,91,45,56,52,46,48,50,49,52,53,50,44,51,53,46,52,48,52,50,50,51,93,44,91,45,56,52,46,48,50,57,48,54,55,44,51,53,46,50,57,50,50,52,56,93,44,91,45,56,51,46,57,53,56,54,53,50,44,51,53,46,50,49,55,48,52,93,44,91,45,56,51,46,56,51,49,52,50,57,44,51,53,46,50,53,54,49,49,55,93,44,91,45,56,51,46,55,48,50,55,55,50,44,51,53,46,50,52,56,53,50,93,44,91,45,56,51,46,54,56,48,49,49,52,44,51,53,46,50,55,57,53,93,44,91,45,56,51,46,53,56,50,53,53,56,44,51,53,46,52,49,48,52,56,57,93,44,91,45,56,51,46,57,53,50,57,55,50,44,51,53,46,52,54,48,53,53,50,93,44,91,45,56,51,46,57,54,49,49,48,50,44,51,53,46,52,54,51,55,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,48,49,44,34,98,101,100,115,34,58,49,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,51,50,53,48,55,44,51,56,46,48,50,53,51,53,54,93,44,91,45,56,50,46,49,57,48,54,53,56,44,51,55,46,57,55,52,55,55,56,93,44,91,45,56,50,46,48,55,57,57,52,49,44,51,55,46,55,48,48,49,50,50,93,44,91,45,56,49,46,56,48,50,57,51,55,44,51,55,46,54,54,48,53,48,56,93,44,91,45,56,49,46,55,54,52,55,51,55,44,51,55,46,55,53,50,49,48,56,93,44,91,45,56,49,46,54,48,55,53,51,50,44,51,55,46,55,56,56,55,48,57,93,44,91,45,56,49,46,55,50,50,49,51,54,44,51,55,46,56,48,57,53,48,55,93,44,91,45,56,49,46,55,56,53,54,52,49,44,51,55,46,57,51,54,52,48,52,93,44,91,45,56,49,46,57,51,50,53,48,55,44,51,56,46,48,50,53,51,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,80,108,101,97,115,97,110,116,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,50,49,53,51,51,44,51,57,46,52,53,55,55,55,53,93,44,91,45,56,49,46,51,55,49,50,54,44,51,57,46,51,52,49,57,50,52,93,44,91,45,56,49,46,50,51,57,52,55,55,44,51,57,46,50,54,56,51,50,56,93,44,91,45,56,49,46,50,50,49,51,51,53,44,51,57,46,51,48,55,52,55,53,93,44,91,45,56,49,46,48,48,55,56,51,54,44,51,57,46,51,53,48,57,50,51,93,44,91,45,56,49,46,48,50,53,55,48,52,44,51,57,46,52,54,50,51,49,55,93,44,91,45,56,49,46,49,50,49,53,51,51,44,51,57,46,52,53,55,55,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,71,105,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,49,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,52,55,50,55,56,50,44,51,55,46,52,50,51,55,51,93,44,91,45,56,48,46,53,49,49,51,57,49,44,51,55,46,52,56,49,54,55,50,93,44,91,45,56,48,46,55,55,48,48,56,50,44,51,55,46,51,55,50,51,54,51,93,44,91,45,56,48,46,56,53,56,52,54,54,44,51,55,46,52,50,56,51,48,55,93,44,91,45,56,48,46,56,53,57,52,53,55,44,51,55,46,52,50,57,52,57,49,93,44,91,45,56,48,46,56,52,57,52,53,49,44,51,55,46,51,52,54,57,48,57,93,44,91,45,56,48,46,57,56,48,49,52,54,44,51,55,46,50,57,50,55,52,51,93,44,91,45,56,48,46,56,53,52,54,50,55,44,51,55,46,49,52,55,52,56,50,93,44,91,45,56,48,46,54,48,54,57,54,50,44,51,55,46,50,52,52,56,55,49,93,44,91,45,56,48,46,52,51,48,57,52,51,44,51,55,46,51,49,54,51,55,56,93,44,91,45,56,48,46,52,55,50,55,56,50,44,51,55,46,52,50,51,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,49,50,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,56,48,56,50,57,44,51,55,46,57,54,57,49,48,57,93,44,91,45,56,49,46,50,57,53,49,50,55,44,51,55,46,56,56,57,51,49,49,93,44,91,45,56,49,46,48,55,51,50,52,57,44,51,55,46,56,55,53,56,54,53,93,44,91,45,56,48,46,57,52,53,48,57,44,51,55,46,56,49,57,49,50,49,93,44,91,45,56,48,46,56,48,54,51,49,54,44,51,55,46,56,54,56,57,49,53,93,44,91,45,56,48,46,55,54,57,56,54,54,44,51,55,46,57,56,53,50,55,93,44,91,45,56,48,46,56,56,50,49,56,55,44,51,56,46,49,48,51,52,53,55,93,44,91,45,56,48,46,57,56,51,52,55,50,44,51,56,46,50,50,50,53,52,93,44,91,45,56,49,46,48,55,53,48,51,57,44,51,56,46,49,57,54,49,51,54,93,44,91,45,56,49,46,50,51,49,54,51,54,44,51,56,46,50,54,51,53,49,52,93,44,91,45,56,49,46,51,51,49,53,48,51,44,51,56,46,49,54,55,53,55,56,93,44,91,45,56,49,46,51,56,48,56,50,57,44,51,55,46,57,54,57,49,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,83,110,111,104,111,109,105,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,54,54,50,48,44,34,98,101,100,115,34,58,56,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,52,53,56,53,57,54,44,52,56,46,50,57,55,55,48,51,93,44,91,45,49,50,50,46,51,53,48,50,56,57,44,52,56,46,48,56,48,51,49,50,93,44,91,45,49,50,50,46,51,50,56,52,54,51,44,52,55,46,57,54,51,55,54,51,93,44,91,45,49,50,50,46,52,50,57,54,50,53,44,52,55,46,56,50,56,48,57,56,93,44,91,45,49,50,50,46,52,51,56,48,57,51,44,52,55,46,55,55,55,56,49,52,93,44,91,45,49,50,49,46,57,57,49,55,55,53,44,52,55,46,55,55,53,51,52,57,93,44,91,45,49,50,49,46,49,49,57,49,55,57,44,52,55,46,55,55,57,57,51,51,93,44,91,45,49,50,49,46,49,56,48,55,55,54,44,52,55,46,56,57,56,55,54,57,93,44,91,45,49,50,49,46,49,49,56,49,56,51,44,52,55,46,57,57,55,49,48,51,93,44,91,45,49,50,48,46,57,48,55,52,50,53,44,52,56,46,49,54,51,49,56,52,93,44,91,45,49,50,49,46,48,48,49,54,53,56,44,52,56,46,50,57,54,48,48,57,93,44,91,45,49,50,50,46,52,53,56,53,57,54,44,52,56,46,50,57,55,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,69,100,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,52,51,55,44,34,98,101,100,115,34,58,49,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,56,49,52,53,48,55,44,51,50,46,57,54,53,49,49,52,93,44,91,45,49,48,52,46,56,52,49,53,55,54,44,51,50,46,57,54,51,50,49,51,93,44,91,45,49,48,52,46,56,53,49,53,50,52,44,51,50,46,53,50,48,53,52,49,93,44,91,45,49,48,52,46,56,52,55,55,52,44,51,50,46,48,48,48,52,49,53,93,44,91,45,49,48,52,46,48,50,52,53,49,50,44,51,50,46,48,48,48,49,48,50,93,44,91,45,49,48,51,46,57,56,48,49,55,57,44,51,50,46,48,48,48,49,50,53,93,44,91,45,49,48,51,46,55,50,50,56,56,50,44,51,50,46,48,48,48,50,48,54,93,44,91,45,49,48,51,46,55,50,50,57,51,56,44,51,50,46,53,50,50,51,52,52,93,44,91,45,49,48,51,46,56,49,52,50,49,54,44,51,50,46,53,50,50,51,54,56,93,44,91,45,49,48,51,46,56,49,52,53,48,55,44,51,50,46,57,54,53,49,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,99,80,104,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,48,54,52,54,54,44,52,49,46,55,52,51,50,93,44,91,45,49,48,49,46,52,48,55,50,54,44,52,49,46,51,57,53,52,49,54,93,44,91,45,49,48,49,46,50,54,57,54,57,53,44,52,49,46,51,57,52,57,51,52,93,44,91,45,49,48,48,46,55,49,51,50,52,51,44,52,49,46,51,57,51,53,49,49,93,44,91,45,49,48,48,46,55,49,49,55,49,49,44,52,49,46,55,51,57,55,54,49,93,44,91,45,49,48,48,46,56,52,50,52,53,57,44,52,49,46,55,52,48,52,48,52,93,44,91,45,49,48,49,46,52,48,54,52,54,54,44,52,49,46,55,52,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,82,101,100,32,87,105,108,108,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,53,56,52,51,53,44,52,48,46,51,52,57,53,48,55,93,44,91,45,49,48,48,46,55,53,56,56,51,44,52,48,46,48,48,50,51,48,50,93,44,91,45,49,48,48,46,55,51,56,56,50,53,44,52,48,46,48,48,50,49,49,54,93,44,91,45,49,48,48,46,49,57,51,53,57,57,44,52,48,46,48,48,49,54,54,51,93,44,91,45,49,48,48,46,49,57,55,56,48,55,44,52,48,46,51,53,48,48,50,55,93,44,91,45,49,48,48,46,55,53,56,52,51,53,44,52,48,46,51,52,57,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,82,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,48,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,55,55,54,56,52,44,52,50,46,55,51,48,57,48,51,93,44,91,45,57,57,46,54,54,50,51,55,57,44,52,50,46,48,56,54,48,48,57,93,44,91,45,57,57,46,50,51,52,54,50,57,44,52,50,46,48,56,55,57,57,53,93,44,91,45,57,57,46,50,52,53,56,48,51,44,52,50,46,55,56,50,52,57,57,93,44,91,45,57,57,46,50,53,55,48,51,57,44,52,50,46,56,48,52,50,57,54,93,44,91,45,57,57,46,53,51,55,52,57,49,44,52,50,46,55,49,55,54,50,54,93,44,91,45,57,57,46,54,55,55,54,56,52,44,52,50,46,55,51,48,57,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,117,109,112,104,114,101,121,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,52,57,54,48,51,44,51,54,46,50,52,51,49,54,93,44,91,45,56,55,46,57,49,57,48,52,51,44,51,54,46,49,51,48,48,52,57,93,44,91,45,56,56,46,48,48,48,56,48,57,44,51,54,46,48,50,56,48,56,57,93,44,91,45,56,55,46,57,50,53,56,51,53,44,51,53,46,57,51,48,52,51,50,93,44,91,45,56,55,46,57,54,50,55,52,44,51,53,46,56,52,48,57,50,49,93,44,91,45,56,55,46,56,55,52,49,56,50,44,51,53,46,56,49,51,48,50,49,93,44,91,45,56,55,46,55,49,54,55,54,44,51,53,46,56,51,56,55,53,93,44,91,45,56,55,46,55,48,54,57,54,44,51,53,46,57,48,53,56,56,52,93,44,91,45,56,55,46,53,51,52,53,51,44,51,53,46,57,57,51,48,55,52,93,44,91,45,56,55,46,53,54,54,55,57,56,44,51,54,46,49,55,55,56,53,55,93,44,91,45,56,55,46,55,57,56,53,48,56,44,51,54,46,50,52,52,55,53,52,93,44,91,45,56,55,46,57,52,57,54,48,51,44,51,54,46,50,52,51,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,55,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,50,52,54,56,44,52,48,46,52,51,53,57,50,49,93,44,91,45,57,48,46,48,51,51,48,50,54,44,52,48,46,51,55,55,56,48,54,93,44,91,45,57,48,46,49,49,56,57,54,54,44,52,48,46,50,51,53,50,54,51,93,44,91,45,57,48,46,49,57,57,54,51,53,44,52,48,46,49,56,51,56,49,50,93,44,91,45,57,48,46,51,53,52,53,50,52,44,52,48,46,49,50,52,50,49,55,93,44,91,45,57,48,46,50,56,55,56,51,55,44,52,48,46,48,54,51,55,56,52,93,44,91,45,57,48,46,49,51,52,50,56,49,44,52,48,46,48,54,50,53,50,52,93,44,91,45,56,57,46,57,57,53,48,57,44,52,48,46,49,48,56,57,48,56,93,44,91,45,56,57,46,57,55,52,54,48,52,44,52,48,46,49,51,53,55,48,53,93,44,91,45,56,57,46,54,48,49,54,56,56,44,52,48,46,49,50,50,51,55,56,93,44,91,45,56,57,46,54,48,50,57,55,57,44,52,48,46,51,50,48,49,50,57,93,44,91,45,56,57,46,55,49,52,57,50,55,44,52,48,46,51,49,57,50,49,56,93,44,91,45,56,57,46,55,49,55,49,48,52,44,52,48,46,52,51,53,54,53,53,93,44,91,45,56,57,46,57,50,52,54,56,44,52,48,46,52,51,53,57,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,87,121,116,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,52,48,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,49,50,54,55,52,44,51,55,46,48,55,51,51,52,57,93,44,91,45,56,49,46,49,49,52,51,49,57,44,51,55,46,48,50,50,54,49,50,93,44,91,45,56,49,46,50,50,52,54,50,52,44,51,55,46,48,52,55,56,51,53,93,44,91,45,56,49,46,51,55,57,52,48,50,44,51,54,46,57,53,50,52,52,50,93,44,91,45,56,49,46,50,54,49,57,56,55,44,51,54,46,55,54,51,48,51,51,93,44,91,45,56,49,46,48,56,56,53,49,44,51,54,46,55,54,55,52,50,50,93,44,91,45,56,49,46,48,52,50,52,50,56,44,51,54,46,56,48,54,52,52,56,93,44,91,45,56,48,46,55,52,48,52,56,51,44,51,54,46,56,55,57,48,48,49,93,44,91,45,56,48,46,57,49,50,54,55,52,44,51,55,46,48,55,51,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,54,49,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,52,56,51,49,49,44,51,51,46,50,51,56,51,52,56,93,44,91,45,56,50,46,56,56,56,56,54,54,44,51,51,46,49,51,56,54,48,51,93,44,91,45,56,51,46,48,53,50,49,57,55,44,51,51,46,48,56,48,54,56,50,93,44,91,45,56,51,46,48,55,51,54,52,56,44,51,50,46,57,52,54,53,54,50,93,44,91,45,56,50,46,57,52,54,57,54,54,44,51,50,46,55,53,57,51,53,56,93,44,91,45,56,50,46,55,54,56,51,54,53,44,51,50,46,55,54,57,49,48,56,93,44,91,45,56,50,46,53,50,49,48,53,50,44,51,50,46,56,50,50,51,53,54,93,44,91,45,56,50,46,53,52,55,57,49,51,44,51,51,46,48,48,56,53,51,51,93,44,91,45,56,50,46,54,54,49,57,49,55,44,51,51,46,49,50,54,51,51,49,93,44,91,45,56,50,46,55,52,56,51,49,49,44,51,51,46,50,51,56,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,89,97,107,105,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,51,50,53,44,34,98,101,100,115,34,58,50,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,52,53,53,50,49,56,44,52,54,46,55,56,51,55,57,55,93,44,91,45,49,50,49,46,51,55,54,55,53,55,44,52,54,46,55,48,52,54,53,56,93,44,91,45,49,50,49,46,52,53,49,50,53,54,44,52,54,46,53,51,51,56,57,52,93,44,91,45,49,50,49,46,51,57,55,48,49,54,44,52,54,46,51,56,56,48,56,51,93,44,91,45,49,50,49,46,53,50,50,51,50,52,44,52,54,46,51,56,56,50,50,52,93,44,91,45,49,50,49,46,53,50,50,51,50,49,44,52,54,46,48,52,52,48,48,54,93,44,91,45,49,50,48,46,56,48,49,50,57,53,44,52,54,46,48,52,49,48,49,52,93,44,91,45,49,49,57,46,56,54,53,56,50,57,44,52,54,46,48,52,48,56,53,56,93,44,91,45,49,49,57,46,56,55,52,48,52,50,44,52,54,46,54,50,56,50,56,51,93,44,91,45,49,49,57,46,57,55,51,48,51,54,44,52,54,46,55,51,55,49,50,54,93,44,91,45,49,50,48,46,53,49,44,52,54,46,55,51,55,57,52,54,93,44,91,45,49,50,48,46,54,51,51,57,56,49,44,52,54,46,56,50,53,55,55,54,93,44,91,45,49,50,48,46,54,51,52,53,54,50,44,52,54,46,57,49,50,49,51,93,44,91,45,49,50,49,46,48,50,54,54,50,44,52,54,46,57,49,49,51,48,56,93,44,91,45,49,50,49,46,48,57,48,48,53,52,44,52,54,46,57,57,49,48,48,55,93,44,91,45,49,50,49,46,50,53,54,52,52,44,52,55,46,48,56,49,55,55,50,93,44,91,45,49,50,49,46,51,55,57,54,56,50,44,52,55,46,48,56,55,52,57,53,93,44,91,45,49,50,49,46,51,55,57,57,54,49,44,52,55,46,48,56,55,50,52,56,93,44,91,45,49,50,49,46,52,57,55,51,52,53,44,52,54,46,56,54,50,56,54,54,93,44,91,45,49,50,49,46,52,53,53,50,49,56,44,52,54,46,55,56,51,55,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,53,50,57,44,34,98,101,100,115,34,58,49,48,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,53,53,50,49,55,50,44,51,54,46,49,48,50,49,50,56,93,44,91,45,57,52,46,52,57,51,49,51,44,51,53,46,55,53,57,49,54,55,93,44,91,45,57,51,46,57,54,50,56,57,50,44,51,53,46,55,54,48,57,51,93,44,91,45,57,51,46,57,52,52,49,55,55,44,51,54,46,48,57,49,49,48,51,93,44,91,45,57,51,46,56,56,55,55,55,53,44,51,54,46,50,51,53,48,52,54,93,44,91,45,57,52,46,48,49,55,53,48,57,44,51,54,46,50,48,56,49,52,57,93,44,91,45,57,52,46,51,51,51,53,54,53,44,51,54,46,50,49,52,55,50,55,93,44,91,45,57,52,46,51,57,49,49,50,53,44,51,54,46,48,57,57,51,57,54,93,44,91,45,57,52,46,53,53,50,49,55,50,44,51,54,46,49,48,50,49,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,51,34,44,34,78,65,77,69,34,58,34,72,101,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,52,54,48,44,34,98,101,100,115,34,58,49,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,52,57,49,54,53,44,51,50,46,51,53,53,50,51,51,93,44,91,45,57,54,46,48,55,53,56,57,57,44,51,50,46,51,53,55,53,48,53,93,44,91,45,57,54,46,52,53,50,49,51,56,44,51,50,46,51,53,56,54,51,49,93,44,91,45,57,54,46,51,56,51,48,56,50,44,51,50,46,51,50,56,56,53,49,93,44,91,45,57,54,46,50,51,52,50,53,49,44,51,50,46,50,53,48,51,57,57,93,44,91,45,57,54,46,48,53,52,55,56,44,51,50,46,48,49,50,53,50,54,93,44,91,45,57,54,46,48,53,50,55,56,54,44,51,50,46,48,48,53,56,57,53,93,44,91,45,57,53,46,52,50,56,53,49,50,44,51,50,46,48,56,52,52,55,53,93,44,91,45,57,53,46,52,53,57,57,48,56,44,51,50,46,49,51,53,53,53,57,93,44,91,45,57,53,46,52,56,56,44,51,50,46,50,51,53,52,56,52,93,44,91,45,57,53,46,52,52,57,49,54,53,44,51,50,46,51,53,53,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,69,97,117,32,67,108,97,105,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,57,57,49,44,34,98,101,100,115,34,58,55,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,53,48,52,53,53,44,52,52,46,56,53,53,57,53,49,93,44,91,45,57,49,46,54,53,48,51,54,49,44,52,52,46,54,56,51,54,51,51,93,44,91,45,57,49,46,54,53,48,50,52,56,44,52,52,46,53,57,54,54,52,57,93,44,91,45,57,49,46,53,50,57,49,48,49,44,52,52,46,53,57,54,49,57,55,93,44,91,45,57,49,46,49,54,53,54,49,57,44,52,52,46,53,57,54,57,56,55,93,44,91,45,57,48,46,57,50,50,51,53,44,52,52,46,53,57,54,50,57,51,93,44,91,45,57,48,46,57,50,50,50,52,55,44,52,52,46,56,53,55,51,48,57,93,44,91,45,57,49,46,54,53,48,52,53,53,44,52,52,46,56,53,53,57,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,83,101,113,117,97,116,99,104,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,50,51,56,48,52,44,51,53,46,53,54,55,52,50,50,93,44,91,45,56,53,46,53,53,55,53,51,53,44,51,53,46,53,51,50,57,55,55,93,44,91,45,56,53,46,54,48,55,51,50,54,44,51,53,46,53,51,49,54,53,49,93,44,91,45,56,53,46,52,56,53,54,51,53,44,51,53,46,52,48,54,52,51,51,93,44,91,45,56,53,46,53,53,56,53,53,49,44,51,53,46,51,49,57,50,57,50,93,44,91,45,56,53,46,52,52,52,49,52,52,44,51,53,46,50,54,50,54,52,54,93,44,91,45,56,53,46,51,56,55,48,56,57,44,51,53,46,49,52,55,49,54,57,93,44,91,45,56,53,46,50,50,53,56,55,55,44,51,53,46,51,53,52,50,55,54,93,44,91,45,56,53,46,52,48,51,50,57,56,44,51,53,46,52,57,50,50,56,93,44,91,45,56,53,46,52,50,51,56,48,52,44,51,53,46,53,54,55,52,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,55,49,34,44,34,78,65,77,69,34,58,34,87,97,108,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,53,51,57,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,54,49,55,56,55,50,44,51,48,46,57,51,48,52,49,56,93,44,91,45,57,53,46,56,54,51,48,53,57,44,51,48,46,56,54,52,49,50,53,93,44,91,45,57,53,46,56,51,48,50,52,44,51,48,46,54,51,48,50,56,52,93,44,91,45,57,53,46,53,57,56,57,55,49,44,51,48,46,53,48,57,48,48,50,93,44,91,45,57,53,46,51,53,57,49,53,54,44,51,48,46,53,48,52,51,54,57,93,44,91,45,57,53,46,51,50,55,52,56,44,51,48,46,56,53,57,53,52,55,93,44,91,45,57,53,46,52,51,52,51,51,53,44,51,48,46,57,51,55,52,48,53,93,44,91,45,57,53,46,52,51,52,55,56,49,44,51,49,46,48,53,56,48,57,56,93,44,91,45,57,53,46,54,49,55,56,55,50,44,51,48,46,57,51,48,52,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,111,99,111,110,105,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,50,49,55,44,34,98,101,100,115,34,58,52,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,55,53,48,54,55,56,44,51,52,46,50,54,51,51,49,52,93,44,91,45,49,49,48,46,55,53,48,54,57,51,44,51,53,46,49,52,48,51,48,57,93,44,91,45,49,49,48,46,55,53,48,54,57,55,44,51,53,46,56,50,48,53,56,57,93,44,91,45,49,49,48,46,55,53,48,54,57,44,51,55,46,48,48,51,48,48,55,93,44,91,45,49,49,49,46,52,49,50,55,56,52,44,51,55,46,48,48,49,53,48,51,93,44,91,45,49,49,50,46,53,51,56,53,55,49,44,51,55,46,48,48,48,55,53,56,93,44,91,45,49,49,50,46,54,49,57,55,50,56,44,51,54,46,55,56,50,55,52,52,93,44,91,45,49,49,50,46,54,53,54,51,54,53,44,51,54,46,53,53,51,57,49,53,93,44,91,45,49,49,50,46,54,50,57,52,57,44,51,54,46,51,57,49,54,49,49,93,44,91,45,49,49,50,46,54,56,49,53,55,49,44,51,54,46,51,52,49,54,54,50,93,44,91,45,49,49,50,46,57,48,50,57,52,57,44,51,54,46,50,53,51,55,54,49,93,44,91,45,49,49,51,46,48,48,54,51,52,51,44,51,54,46,50,51,56,55,53,52,93,44,91,45,49,49,51,46,51,49,51,52,50,56,44,51,54,46,49,48,48,48,48,49,93,44,91,45,49,49,51,46,51,51,52,49,54,49,44,51,53,46,53,50,56,48,51,55,93,44,91,45,49,49,51,46,49,55,52,52,53,56,44,51,53,46,53,48,54,52,52,53,93,44,91,45,49,49,50,46,57,52,52,55,56,57,44,51,53,46,51,53,50,54,48,51,93,44,91,45,49,49,50,46,54,57,52,56,52,54,44,51,53,46,51,49,49,53,56,54,93,44,91,45,49,49,50,46,53,55,55,51,57,57,44,51,53,46,50,52,51,51,57,52,93,44,91,45,49,49,50,46,52,55,50,55,44,51,53,46,50,51,56,51,49,50,93,44,91,45,49,49,50,46,52,52,50,51,44,51,53,46,49,52,57,52,48,56,93,44,91,45,49,49,50,46,51,51,53,55,49,54,44,51,53,46,49,52,56,50,55,57,93,44,91,45,49,49,50,46,51,51,52,53,51,54,44,51,52,46,57,55,51,48,50,52,93,44,91,45,49,49,49,46,55,55,56,50,57,55,44,51,52,46,57,56,49,48,48,55,93,44,91,45,49,49,49,46,55,55,56,50,48,52,44,51,52,46,56,48,51,54,56,53,93,44,91,45,49,49,49,46,53,53,49,57,53,57,44,51,52,46,56,48,50,53,50,93,44,91,45,49,49,49,46,53,53,52,54,56,49,44,51,52,46,52,55,49,55,51,51,93,44,91,45,49,49,49,46,52,57,49,56,54,54,44,51,52,46,52,50,50,55,52,51,93,44,91,45,49,49,49,46,50,52,54,54,54,49,44,51,52,46,52,53,48,56,48,56,93,44,91,45,49,49,49,46,48,56,55,53,48,52,44,51,52,46,51,57,52,57,57,54,93,44,91,45,49,49,48,46,56,52,56,48,53,57,44,51,52,46,50,54,55,50,48,53,93,44,91,45,49,49,48,46,55,53,48,54,55,56,44,51,52,46,50,54,51,51,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,83,117,109,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,48,56,44,34,98,101,100,115,34,58,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,48,55,48,53,55,44,51,55,46,51,56,54,50,57,51,93,44,91,45,57,55,46,56,48,50,51,49,51,44,51,54,46,57,57,56,55,49,56,93,44,91,45,57,55,46,52,54,50,51,52,54,44,51,54,46,57,57,56,55,48,49,93,44,91,45,57,55,46,49,52,55,55,50,49,44,51,54,46,57,57,57,48,51,51,93,44,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,44,91,45,57,55,46,56,48,55,54,44,51,55,46,52,55,52,49,56,52,93,44,91,45,57,55,46,56,48,55,48,53,55,44,51,55,46,51,56,54,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,79,99,101,97,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,49,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,51,55,56,56,52,44,52,51,46,56,49,53,54,49,49,93,44,91,45,56,55,46,48,57,51,49,48,57,44,52,51,46,56,50,48,49,49,51,93,44,91,45,56,55,46,49,51,52,55,55,56,44,52,51,46,53,52,49,52,51,51,93,44,91,45,56,55,46,49,52,48,51,51,49,44,52,51,46,52,55,49,52,51,54,93,44,91,45,56,54,46,48,51,57,52,57,49,44,52,51,46,52,54,55,52,52,55,93,44,91,45,56,54,46,48,51,55,56,56,52,44,52,51,46,56,49,53,54,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,75,97,110,97,98,101,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,48,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,51,49,56,51,49,44,52,54,46,49,53,51,57,57,49,93,44,91,45,57,51,46,52,51,50,52,57,50,44,52,53,46,57,56,49,51,57,56,93,44,91,45,57,51,46,53,49,56,48,56,44,52,53,46,57,56,49,55,56,57,93,44,91,45,57,51,46,53,49,51,54,56,51,44,52,53,46,55,51,52,51,49,56,93,44,91,45,57,51,46,49,52,49,55,57,51,44,52,53,46,55,51,48,54,53,55,93,44,91,45,57,51,46,49,52,50,56,54,57,44,52,53,46,57,56,49,48,48,53,93,44,91,45,57,51,46,48,53,53,48,56,49,44,52,53,46,57,56,49,50,51,51,93,44,91,45,57,51,46,48,53,51,56,55,49,44,52,54,46,49,53,56,49,50,93,44,91,45,57,51,46,52,51,49,56,51,49,44,52,54,46,49,53,51,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,115,104,116,97,98,117,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,49,51,54,44,34,98,101,100,115,34,58,52,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,48,51,54,51,49,44,52,49,46,55,49,53,49,51,55,93,44,91,45,56,49,46,48,48,51,49,50,53,44,52,49,46,53,48,49,54,56,53,93,44,91,45,56,48,46,53,49,57,50,50,53,44,52,49,46,52,57,57,57,50,52,93,44,91,45,56,48,46,53,49,57,51,53,52,44,52,49,46,56,52,57,53,54,51,93,44,91,45,56,48,46,53,49,57,56,53,49,44,52,50,46,51,50,55,49,51,50,93,44,91,45,56,49,46,48,48,57,56,50,55,44,52,50,46,50,53,49,54,48,50,93,44,91,45,56,49,46,48,48,51,54,51,49,44,52,49,46,55,49,53,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,112,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,55,50,51,57,50,44,51,56,46,55,48,50,55,54,55,93,44,91,45,49,50,48,46,48,55,50,52,56,52,44,51,56,46,53,48,57,56,54,57,93,44,91,45,49,50,48,46,48,49,57,57,53,49,44,51,56,46,52,51,51,53,50,49,93,44,91,45,49,49,57,46,56,56,52,55,52,57,44,51,56,46,51,53,54,49,56,53,93,44,91,45,49,49,57,46,55,53,51,52,56,49,44,51,56,46,52,49,54,55,53,57,93,44,91,45,49,49,57,46,54,51,57,50,48,53,44,51,56,46,51,50,54,56,56,93,44,91,45,49,49,57,46,53,52,54,48,57,50,44,51,56,46,52,57,57,51,53,93,44,91,45,49,49,57,46,54,49,57,48,54,54,44,51,56,46,54,48,51,53,50,57,93,44,91,45,49,49,57,46,53,56,53,52,51,55,44,51,56,46,55,49,51,50,49,50,93,44,91,45,49,49,57,46,57,48,52,51,49,53,44,51,56,46,57,51,51,51,50,52,93,44,91,45,49,49,57,46,56,55,55,55,53,44,51,56,46,56,54,56,51,49,49,93,44,91,45,49,50,48,46,48,55,50,51,57,50,44,51,56,46,55,48,50,55,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,71,97,108,118,101,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,55,48,56,57,44,34,98,101,100,115,34,58,55,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,50,49,54,52,50,50,44,50,57,46,53,53,54,48,56,93,44,91,45,57,53,46,50,51,51,48,56,49,44,50,57,46,52,54,53,53,54,54,93,44,91,45,57,53,46,48,53,54,53,55,53,44,50,57,46,49,57,57,56,53,54,93,44,91,45,57,53,46,48,57,49,54,50,50,44,50,57,46,48,54,50,55,51,57,93,44,91,45,57,52,46,54,54,54,50,50,44,50,57,46,50,56,49,48,52,55,93,44,91,45,57,52,46,54,53,48,51,49,49,44,50,57,46,51,56,50,56,50,93,44,91,45,57,52,46,51,54,57,51,54,49,44,50,57,46,53,48,48,54,50,93,44,91,45,57,52,46,51,55,49,54,50,44,50,57,46,53,57,55,50,48,57,93,44,91,45,57,52,46,57,49,52,51,57,55,44,50,57,46,52,57,54,53,48,53,93,44,91,45,57,53,46,48,49,56,50,48,53,44,50,57,46,53,53,52,53,57,55,93,44,91,45,57,53,46,49,53,49,53,48,53,44,50,57,46,53,48,48,51,56,56,93,44,91,45,57,53,46,50,49,54,52,50,50,44,50,57,46,53,53,54,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,117,108,108,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,53,50,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,57,54,56,53,51,44,51,50,46,48,53,49,48,52,57,93,44,91,45,56,53,46,56,57,51,54,53,50,44,51,50,46,48,52,55,51,53,49,93,44,91,45,56,53,46,55,57,48,48,52,56,44,51,49,46,57,54,55,50,53,52,93,44,91,45,56,53,46,55,57,49,48,52,55,44,51,49,46,56,56,48,51,53,55,93,44,91,45,56,53,46,54,53,55,54,54,56,44,51,49,46,56,56,48,50,55,53,93,44,91,45,56,53,46,53,56,55,51,52,52,44,51,49,46,57,57,55,51,53,53,93,44,91,45,56,53,46,52,50,56,52,55,54,44,51,50,46,48,49,52,57,53,49,93,44,91,45,56,53,46,52,49,48,50,52,49,44,51,50,46,49,52,54,54,53,49,93,44,91,45,56,53,46,52,51,51,53,52,51,44,51,50,46,50,51,52,54,52,56,93,44,91,45,56,53,46,56,53,54,50,49,56,44,51,50,46,50,51,49,57,55,53,93,44,91,45,56,53,46,57,49,57,50,57,51,44,51,50,46,50,55,52,51,56,50,93,44,91,45,56,53,46,57,57,57,49,53,55,44,51,50,46,50,53,48,53,52,51,93,44,91,45,56,53,46,57,57,54,56,53,51,44,51,50,46,48,53,49,48,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,50,52,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,51,49,51,57,44,52,48,46,57,50,55,55,52,93,44,91,45,56,56,46,57,50,57,51,51,49,44,52,48,46,55,53,51,51,51,55,93,44,91,45,56,56,46,53,56,52,50,55,50,44,52,48,46,55,53,55,54,48,56,93,44,91,45,56,56,46,53,55,52,53,48,50,44,52,48,46,54,49,54,53,53,93,44,91,45,56,56,46,52,53,57,52,55,53,44,52,48,46,54,49,55,51,52,53,93,44,91,45,56,56,46,50,51,52,57,53,44,52,48,46,54,49,56,50,48,56,93,44,91,45,56,56,46,50,52,55,51,44,52,48,46,57,57,52,53,54,93,44,91,45,56,56,46,50,53,49,53,48,49,44,52,49,46,49,49,52,50,49,56,93,44,91,45,56,56,46,53,56,54,50,52,44,52,49,46,49,48,56,50,57,51,93,44,91,45,56,56,46,57,51,48,56,56,49,44,52,49,46,49,48,53,57,93,44,91,45,56,56,46,57,51,49,51,57,44,52,48,46,57,50,55,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,80,114,101,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,49,50,52,49,44,51,57,46,57,49,54,57,49,53,93,44,91,45,56,52,46,56,49,52,51,55,51,44,51,57,46,55,50,54,54,50,93,44,91,45,56,52,46,56,49,52,57,51,52,44,51,57,46,53,54,55,55,49,52,93,44,91,45,56,52,46,52,55,57,50,49,51,44,51,57,46,53,57,49,48,50,52,93,44,91,45,56,52,46,52,56,53,51,54,55,44,51,57,46,57,49,56,52,57,49,93,44,91,45,56,52,46,56,49,50,52,49,44,51,57,46,57,49,54,57,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,56,53,56,57,49,44,51,57,46,49,54,56,55,54,57,93,44,91,45,56,50,46,56,48,55,48,57,44,51,56,46,57,52,56,48,55,51,93,44,91,45,56,50,46,55,54,48,54,57,44,51,56,46,56,53,52,56,55,53,93,44,91,45,56,50,46,54,53,48,48,51,57,44,51,56,46,56,52,57,48,55,51,93,44,91,45,56,50,46,53,55,53,53,56,51,44,51,56,46,56,52,52,52,55,56,93,44,91,45,56,50,46,52,53,53,49,55,57,44,51,56,46,56,52,52,53,55,55,93,44,91,45,56,50,46,52,51,53,51,48,57,44,51,57,46,48,51,53,48,55,57,93,44,91,45,56,50,46,52,50,52,54,55,55,44,51,57,46,49,51,55,57,55,50,93,44,91,45,56,50,46,53,51,54,51,48,54,44,51,57,46,49,56,48,55,53,55,93,44,91,45,56,50,46,55,54,50,56,57,50,44,51,57,46,50,48,55,57,54,55,93,44,91,45,56,50,46,55,56,53,56,57,49,44,51,57,46,49,54,56,55,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,48,50,53,50,51,44,34,98,101,100,115,34,58,49,52,56,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,48,51,51,51,44,51,48,46,48,57,48,48,57,54,93,44,91,45,57,53,46,57,54,48,55,51,51,44,51,48,46,49,54,51,52,49,53,93,44,91,45,57,53,46,56,50,54,50,50,44,50,57,46,55,56,56,50,56,93,44,91,45,57,53,46,52,50,52,49,49,56,44,50,57,46,53,56,48,50,51,51,93,44,91,45,57,53,46,50,54,49,52,54,53,44,50,57,46,53,57,51,48,52,52,93,44,91,45,57,53,46,50,49,54,52,50,50,44,50,57,46,53,53,54,48,56,93,44,91,45,57,53,46,49,53,49,53,48,53,44,50,57,46,53,48,48,51,56,56,93,44,91,45,57,53,46,48,49,56,50,48,53,44,50,57,46,53,53,52,53,57,55,93,44,91,45,57,53,46,48,48,49,54,52,50,44,50,57,46,54,54,52,51,56,56,93,44,91,45,57,52,46,57,49,57,54,55,49,44,50,57,46,54,56,56,52,53,52,93,44,91,45,57,52,46,57,48,56,54,53,52,44,50,57,46,56,50,53,49,56,49,93,44,91,45,57,52,46,57,56,49,52,54,44,50,57,46,56,56,52,50,55,54,93,44,91,45,57,53,46,48,57,54,55,48,56,44,51,48,46,49,54,55,50,49,52,93,44,91,45,57,53,46,50,54,52,49,51,56,44,51,48,46,48,51,50,48,54,57,93,44,91,45,57,53,46,52,50,52,50,49,54,44,51,48,46,49,49,53,52,57,49,93,44,91,45,57,53,46,54,48,49,49,51,50,44,51,48,46,49,51,50,55,56,93,44,91,45,57,53,46,56,48,51,51,51,44,51,48,46,48,57,48,48,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,77,105,100,100,108,101,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,53,49,57,50,44,34,98,101,100,115,34,58,52,48,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,56,57,56,55,55,51,44,52,50,46,55,49,49,51,49,50,93,44,91,45,55,49,46,56,52,52,56,52,51,44,52,50,46,54,51,55,57,56,53,93,44,91,45,55,49,46,54,54,52,54,48,49,44,52,50,46,54,49,49,53,57,56,93,44,91,45,55,49,46,53,51,49,51,55,55,44,52,50,46,53,50,48,51,53,50,93,44,91,45,55,49,46,53,56,53,50,49,44,52,50,46,51,49,48,57,53,50,93,44,91,45,55,49,46,53,56,50,57,49,44,52,50,46,49,57,53,53,53,57,93,44,91,45,55,49,46,52,55,56,49,49,57,44,52,50,46,49,53,54,55,56,50,93,44,91,45,55,49,46,49,57,49,49,53,53,44,52,50,46,50,56,51,48,53,57,93,44,91,45,55,49,46,49,54,52,55,48,50,44,52,50,46,51,48,51,56,51,93,44,91,45,55,49,46,49,53,55,48,51,54,44,52,50,46,51,51,48,51,57,93,44,91,45,55,49,46,48,50,53,56,51,54,44,52,50,46,52,52,52,55,48,57,93,44,91,45,55,49,46,49,51,53,52,48,53,44,52,50,46,53,57,57,48,56,93,44,91,45,55,49,46,50,53,54,49,56,56,44,52,50,46,54,53,55,49,52,53,93,44,91,45,55,49,46,50,53,53,49,52,55,44,52,50,46,55,51,54,53,53,52,93,44,91,45,55,49,46,50,57,52,54,51,55,44,52,50,46,54,57,55,48,52,50,93,44,91,45,55,49,46,56,57,56,55,55,51,44,52,50,46,55,49,49,51,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,86,101,103,97,32,66,97,106,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,51,55,49,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,52,51,54,55,53,50,44,49,56,46,53,52,48,56,48,53,93,44,91,45,54,54,46,52,52,51,56,44,49,56,46,51,55,49,48,50,55,93,44,91,45,54,54,46,51,55,55,48,53,56,44,49,56,46,51,52,52,50,52,54,93,44,91,45,54,54,46,51,53,48,48,57,51,44,49,56,46,53,52,49,48,49,52,93,44,91,45,54,54,46,52,51,54,55,53,50,44,49,56,46,53,52,48,56,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,68,97,119,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,54,52,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,57,49,50,56,52,44,51,50,46,57,54,49,56,51,56,93,44,91,45,49,48,50,46,48,55,54,50,49,52,44,51,50,46,57,53,57,55,48,50,93,44,91,45,49,48,50,46,50,48,56,53,50,44,51,50,46,57,53,56,57,53,54,93,44,91,45,49,48,50,46,50,48,50,55,48,51,44,51,50,46,53,50,51,50,55,49,93,44,91,45,49,48,49,46,54,56,56,55,52,44,51,50,46,53,50,53,50,50,50,93,44,91,45,49,48,49,46,54,57,49,50,56,52,44,51,50,46,57,54,49,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,79,110,116,97,114,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,52,55,50,44,34,98,101,100,115,34,58,51,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,55,49,52,55,56,44,52,51,46,48,51,52,54,57,54,93,44,91,45,55,55,46,52,56,53,52,49,56,44,52,51,46,48,51,52,53,54,52,93,44,91,45,55,55,46,53,56,48,51,55,55,44,52,50,46,57,52,51,57,54,51,93,44,91,45,55,55,46,53,57,56,56,49,53,44,52,50,46,54,55,49,57,54,53,93,44,91,45,55,55,46,52,57,48,56,56,57,44,52,50,46,53,55,55,50,56,56,93,44,91,45,55,55,46,51,54,54,53,48,53,44,52,50,46,53,55,54,51,54,56,93,44,91,45,55,55,46,51,49,51,48,48,52,44,52,50,46,55,54,49,50,54,53,93,44,91,45,55,54,46,57,55,49,51,57,50,44,52,50,46,55,54,52,50,50,51,93,44,91,45,55,54,46,57,54,51,57,50,54,44,52,51,46,48,49,51,49,53,55,93,44,91,45,55,55,46,49,51,52,51,51,53,44,52,51,46,48,51,57,57,50,54,93,44,91,45,55,55,46,51,55,49,52,55,56,44,52,51,46,48,51,52,54,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,49,34,44,34,78,65,77,69,34,58,34,86,97,108,100,101,122,45,67,111,114,100,111,118,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,48,49,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,52,54,46,52,57,52,51,49,49,44,54,51,46,49,54,56,57,55,53,93,44,91,45,49,52,54,46,52,57,52,50,57,54,44,54,50,46,57,53,55,56,54,52,93,44,91,45,49,52,54,46,52,51,54,56,57,57,44,54,50,46,56,53,54,57,57,49,93,44,91,45,49,52,54,46,52,50,51,57,56,52,44,54,50,46,50,53,48,53,49,49,93,44,91,45,49,52,54,46,57,55,57,56,48,55,44,54,50,46,50,53,48,52,57,55,93,44,91,45,49,52,54,46,57,52,50,54,48,49,44,54,49,46,56,49,55,50,55,50,93,44,91,45,49,52,54,46,57,52,50,53,53,57,44,54,49,46,52,55,48,54,55,53,93,44,91,45,49,52,55,46,50,48,54,53,57,55,44,54,49,46,52,50,54,50,54,53,93,44,91,45,49,52,56,46,52,54,50,52,55,49,44,54,49,46,52,50,54,50,54,55,93,44,91,45,49,52,56,46,52,55,50,48,54,53,44,54,48,46,56,52,56,53,50,93,44,91,45,49,52,56,46,55,51,56,51,54,51,44,54,48,46,56,52,56,53,52,54,93,44,91,45,49,52,56,46,55,52,53,54,49,56,44,54,48,46,55,51,51,48,48,55,93,44,91,45,49,52,56,46,54,53,55,49,49,57,44,54,48,46,55,51,50,57,55,54,93,44,91,45,49,52,56,46,54,54,52,52,55,44,54,48,46,52,49,53,49,56,51,93,44,91,45,49,52,56,46,53,54,51,55,49,53,44,54,48,46,52,49,53,49,55,50,93,44,91,45,49,52,56,46,53,56,54,49,56,44,53,57,46,57,51,56,53,56,53,93,44,91,45,49,52,56,46,57,52,56,55,54,50,44,53,57,46,56,57,50,55,49,56,93,44,91,45,49,52,56,46,50,49,56,53,48,54,44,53,57,46,56,55,53,54,52,93,44,91,45,49,52,55,46,57,53,54,52,51,57,44,53,57,46,55,52,52,49,51,49,93,44,91,45,49,52,55,46,54,56,55,50,52,44,53,57,46,55,52,49,54,56,93,44,91,45,49,52,55,46,51,51,52,56,50,55,44,53,57,46,56,51,51,56,55,52,93,44,91,45,49,52,55,46,50,52,49,55,52,44,53,57,46,57,57,56,51,49,55,93,44,91,45,49,52,55,46,49,48,49,57,52,44,54,48,46,48,56,49,51,51,55,93,44,91,45,49,52,54,46,57,51,57,50,55,57,44,54,48,46,49,48,51,56,52,56,93,44,91,45,49,52,54,46,49,55,57,51,48,57,44,54,48,46,50,56,48,48,53,54,93,44,91,45,49,52,53,46,56,50,52,51,50,51,44,54,48,46,51,49,53,49,49,55,93,44,91,45,49,52,53,46,51,49,55,54,56,55,44,54,48,46,49,55,57,54,57,49,93,44,91,45,49,52,52,46,55,55,54,48,49,53,44,54,48,46,49,50,57,53,57,50,93,44,91,45,49,52,52,46,53,51,57,54,56,52,44,54,48,46,48,49,48,49,52,57,93,44,91,45,49,52,52,46,55,55,55,55,57,56,44,53,57,46,56,50,57,57,51,53,93,44,91,45,49,52,52,46,54,55,54,55,55,44,53,57,46,55,50,55,51,57,53,93,44,91,45,49,52,52,46,52,49,48,53,48,57,44,53,57,46,55,52,54,50,55,52,93,44,91,45,49,52,52,46,49,52,52,48,55,56,44,53,57,46,57,49,57,52,53,50,93,44,91,45,49,52,51,46,56,57,53,50,49,44,53,57,46,57,52,50,54,52,55,93,44,91,45,49,52,51,46,56,57,51,51,50,53,44,54,48,46,48,50,52,49,54,54,93,44,91,45,49,52,51,46,49,57,51,53,49,57,44,54,48,46,53,50,49,56,50,56,93,44,91,45,49,52,49,46,55,57,48,54,49,57,44,54,48,46,53,50,49,56,57,57,93,44,91,45,49,52,49,46,55,57,48,54,48,49,44,54,48,46,52,51,53,50,51,56,93,44,91,45,49,52,49,46,50,49,51,52,53,49,44,54,48,46,52,51,53,50,54,56,93,44,91,45,49,52,49,46,48,48,49,57,53,53,44,54,48,46,51,57,49,54,56,56,93,44,91,45,49,52,49,46,48,48,49,57,57,53,44,54,49,46,51,48,51,53,54,56,93,44,91,45,49,52,49,46,48,48,50,50,54,55,44,54,49,46,57,48,52,48,52,55,93,44,91,45,49,52,49,46,56,51,49,56,48,52,44,54,49,46,57,48,52,48,53,51,93,44,91,45,49,52,49,46,56,51,49,56,49,50,44,54,50,46,49,49,55,49,55,56,93,44,91,45,49,52,49,46,57,55,55,51,51,54,44,54,50,46,49,54,51,57,56,51,93,44,91,45,49,52,49,46,57,55,55,51,53,51,44,54,50,46,53,49,48,53,53,57,93,44,91,45,49,52,50,46,51,49,51,53,54,52,44,54,50,46,54,56,51,56,50,56,93,44,91,45,49,52,50,46,55,51,49,50,51,51,44,54,50,46,55,48,56,50,56,50,93,44,91,45,49,52,50,46,56,52,56,53,55,57,44,54,50,46,54,48,48,53,52,55,93,44,91,45,49,52,51,46,49,48,52,57,57,54,44,54,50,46,54,49,52,57,48,53,93,44,91,45,49,52,51,46,48,53,55,56,51,52,44,54,50,46,55,55,48,53,52,93,44,91,45,49,52,51,46,49,54,52,51,53,44,54,50,46,56,51,52,53,54,57,93,44,91,45,49,52,51,46,48,51,50,50,51,56,44,54,50,46,57,51,49,55,57,49,93,44,91,45,49,52,51,46,49,51,50,51,51,55,44,54,51,46,49,49,54,57,55,56,93,44,91,45,49,52,52,46,53,56,48,49,53,57,44,54,51,46,49,49,54,57,51,49,93,44,91,45,49,52,53,46,49,53,52,51,56,53,44,54,51,46,49,51,49,49,52,57,93,44,91,45,49,52,53,46,49,53,52,51,57,53,44,54,51,46,50,49,55,55,56,49,93,44,91,45,49,52,54,46,49,49,49,52,56,54,44,54,51,46,50,49,55,55,54,50,93,44,91,45,49,52,54,46,52,57,52,51,49,49,44,54,51,46,49,54,56,57,55,53,93,93,93,44,91,91,91,45,49,52,54,46,53,48,56,50,56,44,53,57,46,51,57,48,55,50,55,93,44,91,45,49,52,54,46,52,48,50,52,55,57,44,53,57,46,51,51,52,55,54,50,93,44,91,45,49,52,54,46,49,52,57,53,51,53,44,53,57,46,52,49,55,49,55,53,93,44,91,45,49,52,54,46,50,57,55,56,54,51,44,53,57,46,53,56,51,57,48,51,93,44,91,45,49,52,54,46,52,50,51,55,53,57,44,53,57,46,53,53,56,55,49,52,93,44,91,45,49,52,54,46,53,48,56,50,56,44,53,57,46,51,57,48,55,50,55,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,117,116,97,117,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,50,48,48,44,34,98,101,100,115,34,58,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,49,55,53,57,53,44,51,50,46,54,54,52,49,54,57,93,44,91,45,56,54,46,57,48,54,55,52,50,44,51,50,46,53,51,54,57,55,55,93,44,91,45,56,54,46,56,49,52,57,49,50,44,51,50,46,51,52,48,56,48,51,93,44,91,45,56,54,46,54,53,51,52,49,57,44,51,50,46,51,57,55,50,52,55,93,44,91,45,56,54,46,52,57,54,55,55,52,44,51,50,46,51,52,52,52,51,55,93,44,91,45,56,54,46,52,49,49,49,55,50,44,51,50,46,52,48,57,57,51,55,93,44,91,45,56,54,46,52,49,51,49,49,54,44,51,50,46,55,48,55,51,56,54,93,44,91,45,56,54,46,55,49,52,50,49,57,44,51,50,46,55,48,53,54,57,52,93,44,91,45,56,54,46,57,49,55,53,57,53,44,51,50,46,54,54,52,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,105,97,109,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,49,50,55,44,34,98,101,100,115,34,58,50,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,53,54,52,49,50,44,51,56,46,55,51,56,53,56,55,93,44,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,44,91,45,57,52,46,54,49,51,50,51,50,44,51,56,46,51,56,56,55,49,56,93,44,91,45,57,52,46,54,49,50,56,56,50,44,51,56,46,52,55,55,53,57,55,93,44,91,45,57,52,46,54,48,57,48,56,44,51,56,46,55,51,56,48,57,57,93,44,91,45,57,53,46,48,53,54,52,49,50,44,51,56,46,55,51,56,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,68,111,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,49,57,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,52,54,53,50,56,44,51,50,46,50,55,50,52,56,57,93,44,91,45,56,51,46,50,57,49,49,48,54,44,51,50,46,49,55,56,56,50,53,93,44,91,45,56,51,46,51,51,55,51,49,51,44,51,50,46,49,48,53,56,56,53,93,44,91,45,56,51,46,50,48,53,55,51,57,44,51,49,46,57,48,48,51,50,53,93,44,91,45,56,50,46,57,50,55,56,54,53,44,51,50,46,49,51,53,50,55,52,93,44,91,45,56,50,46,56,56,52,56,48,51,44,51,50,46,49,57,54,48,55,50,93,44,91,45,56,50,46,57,57,48,57,54,55,44,51,50,46,49,52,55,50,55,52,93,44,91,45,56,51,46,49,51,56,57,57,49,44,51,50,46,52,50,51,48,54,57,93,44,91,45,56,51,46,49,55,51,50,53,50,44,51,50,46,52,53,50,53,51,51,93,44,91,45,56,51,46,51,52,54,53,50,56,44,51,50,46,50,55,50,52,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,111,114,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,49,50,51,44,34,98,101,100,115,34,58,49,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,50,55,52,54,55,51,44,52,50,46,55,55,49,50,53,55,93,44,91,45,55,54,46,50,54,53,53,56,52,44,52,50,46,54,50,51,53,56,56,93,44,91,45,55,54,46,50,53,51,51,53,57,44,52,50,46,52,48,55,53,54,56,93,44,91,45,55,54,46,49,51,48,49,56,49,44,52,50,46,52,49,48,51,51,55,93,44,91,45,55,53,46,56,54,52,48,50,44,52,50,46,52,49,53,55,48,50,93,44,91,45,55,53,46,56,56,57,56,51,50,44,52,50,46,55,50,51,56,52,52,93,44,91,45,55,53,46,56,57,54,48,55,57,44,52,50,46,55,57,48,57,54,52,93,44,91,45,55,54,46,50,55,52,54,55,51,44,52,50,46,55,55,49,50,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,97,109,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,49,52,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,51,54,48,48,54,44,51,49,46,48,52,55,57,57,51,93,44,91,45,56,49,46,57,48,52,56,53,53,44,51,48,46,56,50,56,51,52,93,44,91,45,56,49,46,55,49,56,49,48,57,44,51,48,46,55,52,52,56,48,54,93,44,91,45,56,49,46,51,52,55,48,49,53,44,51,48,46,55,49,50,52,52,52,93,44,91,45,56,49,46,52,48,48,52,56,50,44,51,48,46,55,54,54,52,50,54,93,44,91,45,56,49,46,51,48,54,52,51,53,44,51,48,46,57,57,48,54,52,52,93,44,91,45,56,49,46,52,50,51,55,55,53,44,51,48,46,57,57,48,56,57,50,93,44,91,45,56,49,46,53,54,53,49,49,54,44,51,49,46,48,57,49,57,52,93,44,91,45,56,49,46,55,54,54,51,50,50,44,51,49,46,49,54,57,53,57,53,93,44,91,45,56,49,46,57,51,54,48,48,54,44,51,49,46,48,52,55,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,116,101,110,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,53,57,54,49,44,34,98,101,100,115,34,58,49,57,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,51,49,49,51,54,44,52,50,46,52,50,52,53,54,55,93,44,91,45,56,52,46,49,51,49,57,54,51,44,52,50,46,48,55,49,53,55,55,93,44,91,45,56,51,46,55,55,51,57,50,50,44,52,50,46,48,56,50,52,51,93,44,91,45,56,51,46,53,51,57,51,57,54,44,52,50,46,48,56,53,53,57,56,93,44,91,45,56,51,46,53,53,49,57,48,55,44,52,50,46,52,51,53,49,54,54,93,44,91,45,56,51,46,54,54,52,56,48,56,44,52,50,46,52,51,49,49,55,57,93,44,91,45,56,52,46,49,51,49,49,51,54,44,52,50,46,52,50,52,53,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,76,97,71,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,57,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,57,55,53,44,52,49,46,55,53,57,48,54,56,93,44,91,45,56,53,46,54,53,52,55,52,55,44,52,49,46,53,50,51,51,52,55,93,44,91,45,56,53,46,49,57,52,48,56,52,44,52,49,46,53,50,54,52,51,55,93,44,91,45,56,53,46,49,57,54,55,55,52,44,52,49,46,55,53,57,54,52,52,93,44,91,45,56,53,46,50,57,50,49,55,57,44,52,49,46,55,53,57,56,56,57,93,44,91,45,56,53,46,54,53,57,55,53,44,52,49,46,55,53,57,48,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,55,49,34,44,34,78,65,77,69,34,58,34,80,101,99,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,57,55,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,49,49,48,52,44,51,49,46,51,55,49,51,48,54,93,44,91,45,49,48,51,46,53,56,53,48,56,52,44,51,48,46,55,54,54,52,55,93,44,91,45,49,48,51,46,52,51,57,57,55,54,44,51,48,46,54,54,53,57,51,57,93,44,91,45,49,48,50,46,53,54,55,48,52,57,44,51,48,46,48,53,50,56,48,56,93,44,91,45,49,48,50,46,53,54,54,57,51,55,44,51,48,46,50,56,51,50,54,57,93,44,91,45,49,48,50,46,51,52,51,48,56,53,44,51,48,46,50,56,52,49,49,54,93,44,91,45,49,48,50,46,51,52,50,57,56,54,44,51,48,46,53,57,56,55,53,57,93,44,91,45,49,48,50,46,49,51,56,52,48,54,44,51,48,46,53,57,55,53,50,49,93,44,91,45,49,48,50,46,49,51,55,55,55,56,44,51,48,46,54,53,53,57,56,50,93,44,91,45,49,48,49,46,55,54,56,52,50,44,51,48,46,54,53,51,48,55,55,93,44,91,45,49,48,49,46,56,51,52,53,50,56,44,51,48,46,55,53,55,57,52,57,93,44,91,45,49,48,49,46,56,55,52,50,55,54,44,51,48,46,57,49,50,50,51,54,93,44,91,45,49,48,49,46,57,56,52,53,50,55,44,51,48,46,57,56,55,52,52,53,93,44,91,45,49,48,50,46,50,57,50,54,56,49,44,51,49,46,48,51,54,54,55,55,93,44,91,45,49,48,50,46,51,56,56,56,48,52,44,51,49,46,48,56,55,49,53,54,93,44,91,45,49,48,50,46,52,51,48,49,50,51,44,51,49,46,49,57,51,57,49,56,93,44,91,45,49,48,50,46,54,55,51,50,52,52,44,51,49,46,51,50,56,49,48,53,93,44,91,45,49,48,50,46,55,54,55,51,54,53,44,51,49,46,50,57,51,56,48,51,93,44,91,45,49,48,50,46,56,50,53,49,49,54,44,51,49,46,50,54,54,57,49,52,93,44,91,45,49,48,51,46,48,49,49,48,52,44,51,49,46,51,55,49,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,53,34,44,34,78,65,77,69,34,58,34,80,101,97,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,54,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,48,49,48,57,44,51,50,46,54,57,49,53,57,56,93,44,91,45,56,51,46,55,54,54,57,54,51,44,51,50,46,54,57,50,52,57,53,93,44,91,45,56,52,46,48,48,51,51,54,51,44,51,50,46,53,50,57,57,50,55,93,44,91,45,56,52,46,48,48,56,52,57,44,51,50,46,53,50,49,55,54,57,93,44,91,45,56,52,46,48,49,56,49,52,55,44,51,50,46,53,48,54,52,48,54,93,44,91,45,56,51,46,56,52,54,54,55,54,44,51,50,46,52,54,56,53,49,52,93,44,91,45,56,51,46,55,49,57,56,53,57,44,51,50,46,53,51,49,55,54,93,44,91,45,56,51,46,55,48,49,48,57,44,51,50,46,54,57,49,53,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,49,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,56,48,51,52,54,44,51,52,46,55,57,50,57,48,53,93,44,91,45,56,51,46,56,53,54,53,48,54,44,51,52,46,55,50,50,49,57,49,93,44,91,45,56,51,46,56,52,51,52,48,53,44,51,52,46,53,48,53,52,57,52,93,44,91,45,56,51,46,54,54,54,52,49,53,44,51,52,46,53,48,51,54,48,50,93,44,91,45,56,51,46,54,51,50,51,49,55,44,51,52,46,53,50,56,53,56,55,93,44,91,45,56,51,46,54,50,51,50,57,54,44,51,52,46,55,51,50,49,57,52,93,44,91,45,56,51,46,54,56,49,53,57,54,44,51,52,46,56,48,48,56,56,50,93,44,91,45,56,51,46,55,56,48,51,52,54,44,51,52,46,55,57,50,57,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,55,50,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,49,57,53,55,44,51,51,46,50,55,52,56,51,93,44,91,45,56,50,46,54,54,49,57,49,55,44,51,51,46,49,50,54,51,51,49,93,44,91,45,56,50,46,53,52,55,57,49,51,44,51,51,46,48,48,56,53,51,51,93,44,91,45,56,50,46,53,50,49,48,53,50,44,51,50,46,56,50,50,51,53,54,93,44,91,45,56,50,46,52,51,52,49,52,57,44,51,50,46,55,54,50,50,53,56,93,44,91,45,56,50,46,51,49,54,53,49,50,44,51,50,46,56,51,53,55,55,50,93,44,91,45,56,50,46,50,55,50,51,53,51,44,51,50,46,57,51,55,55,57,54,93,44,91,45,56,50,46,50,57,49,49,56,44,51,51,46,48,54,50,56,50,55,93,44,91,45,56,50,46,50,51,51,48,54,50,44,51,51,46,50,50,55,55,52,93,44,91,45,56,50,46,50,54,55,53,56,44,51,51,46,50,54,55,51,57,55,93,44,91,45,56,50,46,51,53,51,52,57,56,44,51,51,46,51,49,50,51,49,56,93,44,91,45,56,50,46,51,56,51,56,50,57,44,51,51,46,51,49,50,49,48,54,93,44,91,45,56,50,46,52,51,49,57,53,55,44,51,51,46,50,55,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,79,99,111,110,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,53,53,54,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,55,55,57,57,54,44,52,53,46,51,55,56,54,56,51,93,44,91,45,56,56,46,54,56,48,48,54,54,44,52,53,46,50,48,52,57,57,52,93,44,91,45,56,56,46,54,52,49,49,53,57,44,52,53,46,49,49,55,51,52,54,93,44,91,45,56,56,46,52,56,51,55,51,50,44,52,53,46,49,49,54,56,56,55,93,44,91,45,56,56,46,52,56,57,49,52,57,44,52,52,46,56,53,53,52,52,53,93,44,91,45,56,56,46,50,52,56,50,49,51,44,52,52,46,56,53,50,55,51,57,93,44,91,45,56,56,46,50,52,50,54,56,55,44,52,52,46,54,55,57,54,51,49,93,44,91,45,56,55,46,55,54,50,51,51,57,44,52,52,46,54,55,55,48,49,53,93,44,91,45,56,55,46,55,54,50,52,54,52,44,52,52,46,55,54,52,51,54,55,93,44,91,45,56,55,46,55,54,48,48,55,49,44,52,52,46,57,57,48,53,51,93,44,91,45,56,56,46,49,50,49,49,53,50,44,52,53,46,48,50,51,53,56,49,93,44,91,45,56,56,46,49,56,54,51,53,53,44,52,53,46,49,57,55,57,55,52,93,44,91,45,56,56,46,51,48,57,48,54,51,44,52,53,46,50,48,49,53,56,93,44,91,45,56,56,46,51,48,53,56,49,49,44,52,53,46,51,55,52,54,49,93,44,91,45,56,56,46,52,50,56,49,48,50,44,52,53,46,51,55,55,48,49,93,44,91,45,56,56,46,54,55,55,57,57,54,44,52,53,46,51,55,56,54,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,52,55,34,44,34,78,65,77,69,34,58,34,78,97,99,111,103,100,111,99,104,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,53,53,56,44,34,98,101,100,115,34,58,51,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,51,55,53,51,50,44,51,49,46,56,52,53,53,53,53,93,44,91,45,57,52,46,57,54,53,50,50,51,44,51,49,46,54,57,51,56,56,53,93,44,91,45,57,52,46,56,54,53,56,53,55,44,51,49,46,53,50,54,57,49,54,93,44,91,45,57,52,46,55,50,56,52,53,54,44,51,49,46,52,53,55,49,52,55,93,44,91,45,57,52,46,53,53,52,56,51,56,44,51,49,46,52,51,53,49,50,51,93,44,91,45,57,52,46,52,54,54,54,55,54,44,51,49,46,51,55,56,48,48,57,93,44,91,45,57,52,46,51,50,54,54,49,54,44,51,49,46,50,50,52,55,53,52,93,44,91,45,57,52,46,51,49,49,49,44,51,49,46,53,56,56,52,56,50,93,44,91,45,57,52,46,51,57,57,48,57,49,44,51,49,46,54,53,51,53,57,54,93,44,91,45,57,52,46,52,53,50,52,49,54,44,51,49,46,56,52,52,50,56,49,93,44,91,45,57,52,46,57,51,55,53,51,50,44,51,49,46,56,52,53,53,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,52,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,82,104,111,100,101,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,82,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,50,52,50,44,34,98,101,100,115,34,58,50,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,55,49,46,51,56,48,53,52,50,44,52,49,46,54,53,48,51,50,54,93,44,91,45,55,49,46,52,56,52,52,50,55,44,52,49,46,54,48,50,53,57,49,93,44,91,45,55,49,46,55,56,57,50,52,55,44,52,49,46,53,57,54,56,52,55,93,44,91,45,55,49,46,55,57,55,55,52,55,44,52,49,46,52,49,54,56,51,52,93,44,91,45,55,49,46,57,48,55,50,53,56,44,52,49,46,51,48,52,52,56,51,93,44,91,45,55,49,46,55,57,48,57,55,50,44,52,49,46,49,56,52,49,48,49,93,44,91,45,55,49,46,55,57,49,52,56,44,52,49,46,50,55,50,49,54,53,93,44,91,45,55,49,46,53,48,57,52,52,50,44,52,49,46,51,48,55,55,51,50,93,44,91,45,55,49,46,52,48,57,48,57,57,44,52,49,46,52,54,56,50,48,50,93,44,91,45,55,49,46,51,56,48,53,52,50,44,52,49,46,54,53,48,51,50,54,93,93,93,44,91,91,91,45,55,49,46,54,55,56,56,48,55,44,52,49,46,49,53,56,57,49,50,93,44,91,45,55,49,46,54,49,49,54,55,51,44,52,49,46,48,57,55,52,49,51,93,44,91,45,55,49,46,52,55,54,57,50,53,44,52,49,46,49,54,56,49,53,55,93,44,91,45,55,49,46,52,57,50,49,57,54,44,52,49,46,50,52,48,56,55,54,93,44,91,45,55,49,46,54,50,52,53,48,52,44,52,49,46,50,55,52,49,50,57,93,44,91,45,55,49,46,54,55,56,56,48,55,44,52,49,46,49,53,56,57,49,50,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,79,107,97,110,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,51,56,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,55,48,50,48,54,57,44,52,56,46,53,51,49,53,56,57,93,44,91,45,49,50,48,46,54,52,57,57,51,51,44,52,56,46,51,57,56,49,51,57,93,44,91,45,49,50,48,46,51,52,54,50,56,52,44,52,56,46,49,57,57,57,56,54,93,44,91,45,49,50,48,46,51,54,49,50,56,56,44,52,56,46,49,53,55,53,54,57,93,44,91,45,49,50,48,46,49,52,51,57,51,49,44,52,56,46,48,54,53,52,52,52,93,44,91,45,49,50,48,46,48,52,56,54,52,54,44,52,55,46,57,54,48,54,50,56,93,44,91,45,49,49,57,46,56,55,48,53,57,53,44,52,55,46,57,54,48,52,53,53,93,44,91,45,49,49,57,46,56,57,53,51,53,44,52,56,46,48,53,48,48,52,52,93,44,91,45,49,49,57,46,54,56,50,57,56,49,44,52,56,46,48,57,50,53,49,51,93,44,91,45,49,49,57,46,54,53,50,52,54,56,44,52,56,46,48,48,48,50,50,49,93,44,91,45,49,49,57,46,52,51,54,50,53,55,44,52,56,46,48,55,54,54,56,56,93,44,91,45,49,49,57,46,51,52,51,53,50,51,44,52,56,46,48,52,57,52,51,50,93,44,91,45,49,49,57,46,49,53,48,57,56,51,44,52,56,46,49,52,54,48,54,55,93,44,91,45,49,49,57,46,48,53,54,57,55,44,52,56,46,49,51,54,57,55,52,93,44,91,45,49,49,56,46,57,56,50,50,51,52,44,52,55,46,57,54,50,48,50,53,93,44,91,45,49,49,56,46,57,55,51,53,48,52,44,52,55,46,57,52,51,52,49,52,93,44,91,45,49,49,56,46,56,53,49,57,54,44,52,55,46,57,53,55,57,48,54,93,44,91,45,49,49,56,46,56,51,54,54,49,52,44,52,57,46,48,48,48,48,56,51,93,44,91,45,49,50,48,46,48,51,55,53,53,52,44,52,56,46,57,57,57,52,52,52,93,44,91,45,49,50,48,46,56,53,49,53,50,56,44,52,57,46,48,48,48,51,48,49,93,44,91,45,49,50,48,46,55,54,56,53,49,53,44,52,56,46,57,53,52,52,57,93,44,91,45,49,50,48,46,55,51,53,52,50,55,44,52,56,46,55,56,54,52,56,55,93,44,91,45,49,50,48,46,55,53,49,57,48,52,44,52,56,46,54,53,55,48,48,50,93,44,91,45,49,50,48,46,55,48,50,48,54,57,44,52,56,46,53,51,49,53,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,83,112,111,107,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,55,56,55,53,44,34,98,101,100,115,34,58,49,56,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,52,51,54,57,57,51,44,52,56,46,48,52,55,50,48,55,93,44,91,45,49,49,55,46,53,51,53,50,54,50,44,52,56,46,48,52,55,55,55,57,93,44,91,45,49,49,55,46,53,51,53,50,54,50,44,52,55,46,55,57,52,52,53,56,93,44,91,45,49,49,55,46,54,57,55,55,55,52,44,52,55,46,56,53,54,50,55,56,93,44,91,45,49,49,55,46,56,50,48,57,52,55,44,52,55,46,56,50,53,55,55,53,93,44,91,45,49,49,55,46,56,50,51,54,50,57,44,52,55,46,50,54,48,50,50,93,44,91,45,49,49,55,46,48,51,57,56,55,56,44,52,55,46,50,53,57,50,55,50,93,44,91,45,49,49,55,46,48,51,57,56,48,56,44,52,55,46,51,54,54,48,51,49,93,44,91,45,49,49,55,46,48,52,50,48,56,57,44,52,55,46,57,55,55,52,53,93,44,91,45,49,49,55,46,48,52,49,56,55,55,44,52,56,46,48,52,53,52,54,54,93,44,91,45,49,49,55,46,52,51,54,57,57,51,44,52,56,46,48,52,55,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,70,111,114,101,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,52,55,54,48,49,44,52,53,46,56,57,53,51,53,53,93,44,91,45,56,57,46,48,52,54,52,57,44,52,53,46,52,54,52,52,51,57,93,44,91,45,56,56,46,57,50,54,48,50,53,44,52,53,46,51,55,56,54,51,55,93,44,91,45,56,56,46,54,55,55,57,57,54,44,52,53,46,51,55,56,54,56,51,93,44,91,45,56,56,46,52,50,56,49,48,50,44,52,53,46,51,55,55,48,49,93,44,91,45,56,56,46,52,50,53,51,48,50,44,52,53,46,55,50,50,52,50,54,93,44,91,45,56,56,46,54,55,53,56,50,49,44,52,53,46,55,50,50,57,93,44,91,45,56,56,46,54,56,51,51,49,50,44,52,54,46,48,49,52,49,49,51,93,44,91,45,56,56,46,57,51,50,55,53,55,44,52,54,46,48,55,51,54,54,56,93,44,91,45,56,56,46,57,51,51,50,50,50,44,52,53,46,57,56,50,50,55,54,93,44,91,45,56,57,46,48,52,55,54,48,49,44,52,53,46,56,57,53,51,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,83,97,119,121,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,55,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,53,49,50,56,50,44,52,54,46,49,53,55,48,52,53,93,44,91,45,57,49,46,53,52,48,50,57,52,44,52,53,46,54,51,55,54,48,53,93,44,91,45,57,48,46,54,55,56,55,52,57,44,52,53,46,54,51,56,50,54,52,93,44,91,45,57,48,46,54,55,54,57,54,56,44,52,53,46,57,56,49,53,53,52,93,44,91,45,57,48,46,57,50,53,49,55,52,44,52,53,46,57,56,49,48,53,53,93,44,91,45,57,48,46,57,50,52,53,56,51,44,52,54,46,49,53,52,54,49,54,93,44,91,45,57,49,46,53,53,49,50,56,50,44,52,54,46,49,53,55,48,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,72,117,100,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,56,54,51,49,44,34,98,101,100,115,34,58,49,56,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,56,52,55,57,52,44,52,48,46,55,57,55,54,56,55,93,44,91,45,55,52,46,49,52,55,53,50,57,44,52,48,46,55,56,54,52,57,49,93,44,91,45,55,52,46,49,51,54,55,48,51,44,52,48,46,54,55,52,52,52,52,93,44,91,45,55,52,46,49,54,49,52,50,56,44,52,48,46,54,52,52,49,52,56,93,44,91,45,55,52,46,48,53,53,55,51,57,44,52,48,46,54,53,49,55,54,93,44,91,45,55,52,46,48,51,52,53,55,51,44,52,48,46,54,56,52,56,54,54,93,44,91,45,55,51,46,57,56,52,55,57,52,44,52,48,46,55,57,55,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,116,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,52,55,53,44,34,98,101,100,115,34,58,49,54,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,57,51,50,52,57,44,52,48,46,57,56,56,53,51,49,93,44,91,45,56,49,46,52,50,48,51,54,51,44,52,48,46,57,48,54,53,48,50,93,44,91,45,56,49,46,54,52,55,55,51,53,44,52,48,46,57,49,52,48,49,54,93,44,91,45,56,49,46,54,53,48,48,52,53,44,52,48,46,54,54,56,49,49,55,93,44,91,45,56,49,46,54,52,57,49,57,57,44,52,48,46,54,51,53,49,48,54,93,44,91,45,56,49,46,51,49,55,55,51,57,44,52,48,46,54,53,49,53,55,57,93,44,91,45,56,49,46,50,51,55,50,50,55,44,52,48,46,55,50,51,53,52,50,93,44,91,45,56,49,46,48,56,55,50,56,57,44,52,48,46,55,50,55,56,49,54,93,44,91,45,56,49,46,48,56,54,54,55,57,44,52,48,46,57,48,49,54,48,57,93,44,91,45,56,49,46,48,56,54,51,49,50,44,52,48,46,57,56,56,48,51,49,93,44,91,45,56,49,46,51,57,51,50,52,57,44,52,48,46,57,56,56,53,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,71,117,97,100,97,108,117,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,49,51,55,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,55,53,50,53,57,44,50,57,46,56,53,56,50,48,56,93,44,91,45,57,55,46,57,57,57,50,55,49,44,50,57,46,55,53,50,52,52,52,93,44,91,45,57,56,46,48,56,57,50,55,55,44,50,57,46,54,56,51,57,51,49,93,44,91,45,57,56,46,51,49,48,57,50,56,44,50,57,46,53,57,52,52,55,51,93,44,91,45,57,56,46,49,51,52,49,55,49,44,50,57,46,52,52,49,55,53,49,93,44,91,45,57,56,46,49,50,50,53,55,52,44,50,57,46,51,55,56,53,52,57,93,44,91,45,57,55,46,56,52,48,51,56,51,44,50,57,46,51,55,54,55,57,49,93,44,91,45,57,55,46,54,51,51,49,55,54,44,50,57,46,54,52,57,56,54,51,93,44,91,45,57,55,46,55,51,53,55,50,44,50,57,46,54,57,49,49,57,56,93,44,91,45,57,55,46,56,55,53,50,53,57,44,50,57,46,56,53,56,50,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,54,51,54,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,56,54,51,48,55,56,44,52,56,46,51,55,48,51,54,49,93,44,91,45,49,50,50,46,56,54,50,54,56,52,44,52,56,46,50,52,51,54,53,56,93,44,91,45,49,50,50,46,54,52,50,50,53,54,44,52,56,46,48,57,51,55,55,93,44,91,45,49,50,50,46,54,48,54,55,54,44,52,55,46,57,55,50,57,53,51,93,44,91,45,49,50,50,46,52,50,57,54,50,53,44,52,55,46,56,50,56,48,57,56,93,44,91,45,49,50,50,46,51,50,56,52,54,51,44,52,55,46,57,54,51,55,54,51,93,44,91,45,49,50,50,46,51,53,48,50,56,57,44,52,56,46,48,56,48,51,49,50,93,44,91,45,49,50,50,46,52,53,56,53,57,54,44,52,56,46,50,57,55,55,48,51,93,44,91,45,49,50,50,46,53,57,49,57,52,52,44,52,56,46,52,49,55,55,53,56,93,44,91,45,49,50,50,46,55,51,53,50,51,49,44,52,56,46,52,48,53,57,51,50,93,44,91,45,49,50,50,46,56,54,51,48,55,56,44,52,56,46,51,55,48,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,49,55,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,50,53,53,55,50,44,51,57,46,52,57,51,50,56,57,93,44,91,45,55,56,46,48,51,51,49,57,49,44,51,57,46,50,54,52,54,49,50,93,44,91,45,55,55,46,56,50,56,50,57,57,44,51,57,46,49,51,50,52,50,54,93,44,91,45,55,55,46,55,49,57,53,49,57,44,51,57,46,51,50,49,51,49,52,93,44,91,45,55,55,46,56,50,53,53,55,50,44,51,57,46,52,57,51,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,80,114,105,110,99,101,32,87,105,108,108,105,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,55,52,57,44,34,98,101,100,115,34,58,50,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,53,53,49,54,57,44,51,56,46,57,52,50,54,53,54,93,44,91,45,55,55,46,55,49,53,55,49,53,44,51,56,46,56,51,50,49,51,54,93,44,91,45,55,55,46,53,51,49,51,50,56,44,51,56,46,53,53,54,53,53,93,44,91,45,55,55,46,52,55,54,56,52,55,44,51,56,46,53,57,50,50,56,54,93,44,91,45,55,55,46,50,57,53,52,48,54,44,51,56,46,53,48,57,50,51,57,93,44,91,45,55,55,46,50,50,55,51,51,54,44,51,56,46,54,48,52,53,55,93,44,91,45,55,55,46,50,50,51,54,56,51,44,51,56,46,54,53,50,48,54,52,93,44,91,45,55,55,46,53,51,53,57,57,49,44,51,56,46,56,52,55,51,54,56,93,44,91,45,55,55,46,54,53,53,49,54,57,44,51,56,46,57,52,50,54,53,54,93,93,44,91,91,45,55,55,46,52,53,56,54,57,53,44,51,56,46,55,55,50,51,49,57,93,44,91,45,55,55,46,52,53,49,54,52,50,44,51,56,46,55,51,56,51,51,55,93,44,91,45,55,55,46,52,57,57,52,51,44,51,56,46,55,51,55,49,51,55,93,44,91,45,55,55,46,52,55,53,55,54,44,51,56,46,55,56,49,49,55,49,93,44,91,45,55,55,46,52,50,48,53,56,49,44,51,56,46,55,54,50,50,56,55,93,44,91,45,55,55,46,52,50,55,51,51,50,44,51,56,46,55,53,51,53,57,56,93,44,91,45,55,55,46,52,53,56,54,57,53,44,51,56,46,55,55,50,51,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,49,53,54,44,34,98,101,100,115,34,58,49,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,54,57,54,55,56,50,44,52,48,46,50,52,49,56,54,51,93,44,91,45,55,53,46,56,55,51,51,55,53,44,52,48,46,49,51,55,49,48,55,93,44,91,45,55,53,46,57,57,52,54,50,57,44,51,57,46,57,53,50,52,50,57,93,44,91,45,55,53,46,57,56,54,56,50,51,44,51,57,46,56,57,50,49,57,50,93,44,91,45,55,54,46,49,51,53,52,56,52,44,51,57,46,55,50,49,49,52,55,93,44,91,45,55,53,46,55,56,56,53,57,54,44,51,57,46,55,50,50,49,57,57,93,44,91,45,55,53,46,53,57,52,56,56,44,51,57,46,56,51,55,53,50,53,93,44,91,45,55,53,46,53,50,51,56,49,54,44,51,57,46,57,52,52,49,50,52,93,44,91,45,55,53,46,51,54,49,48,54,54,44,52,48,46,48,54,53,53,52,51,93,44,91,45,55,53,46,53,55,51,51,51,56,44,52,48,46,49,57,53,51,48,51,93,44,91,45,55,53,46,54,57,54,55,56,50,44,52,48,46,50,52,49,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,52,56,54,44,34,98,101,100,115,34,58,52,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,49,49,50,48,49,44,51,55,46,52,50,52,53,48,57,93,44,91,45,56,49,46,51,54,50,49,53,54,44,51,55,46,51,51,55,54,56,55,93,44,91,45,56,49,46,50,50,53,49,48,52,44,51,55,46,50,51,52,56,55,52,93,44,91,45,56,48,46,57,56,48,49,52,54,44,51,55,46,50,57,50,55,52,51,93,44,91,45,56,48,46,56,52,57,52,53,49,44,51,55,46,51,52,54,57,48,57,93,44,91,45,56,48,46,56,53,57,52,53,55,44,51,55,46,52,50,57,52,57,49,93,44,91,45,56,49,46,48,57,52,54,51,44,51,55,46,53,56,56,54,53,56,93,44,91,45,56,49,46,50,50,50,49,50,49,44,51,55,46,53,49,48,52,49,54,93,44,91,45,56,49,46,51,49,49,50,48,49,44,51,55,46,52,50,52,53,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,82,111,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,56,57,55,44,34,98,101,100,115,34,58,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,49,56,49,50,44,51,54,46,48,52,56,57,55,55,93,44,91,45,56,52,46,52,52,54,48,53,52,44,51,53,46,57,56,53,57,56,52,93,44,91,45,56,52,46,54,56,48,54,51,51,44,51,53,46,57,48,56,52,53,52,93,44,91,45,56,52,46,55,56,49,57,48,49,44,51,53,46,56,50,53,93,44,91,45,56,52,46,55,50,51,56,53,51,44,51,53,46,55,53,50,56,57,54,93,44,91,45,56,52,46,54,49,57,56,54,53,44,51,53,46,54,52,52,54,53,49,93,44,91,45,56,52,46,53,56,52,52,55,50,44,51,53,46,54,52,52,52,50,52,93,44,91,45,56,52,46,53,51,57,57,54,51,44,51,53,46,54,55,48,52,54,53,93,44,91,45,56,52,46,50,54,51,51,56,51,44,51,53,46,56,57,54,57,52,93,44,91,45,56,52,46,50,55,49,53,56,55,44,51,53,46,57,49,48,49,54,53,93,44,91,45,56,52,46,51,52,49,56,49,50,44,51,54,46,48,52,56,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,108,97,108,108,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,52,56,55,44,34,98,101,100,115,34,58,49,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,55,49,53,48,49,54,44,52,55,46,56,55,57,56,53,57,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,56,56,49,48,56,93,44,91,45,49,50,50,46,57,52,57,49,54,55,44,52,55,46,56,54,54,56,50,50,93,44,91,45,49,50,50,46,57,53,50,51,56,54,44,52,56,46,51,52,57,55,48,54,93,44,91,45,49,50,51,46,50,52,55,57,49,57,44,52,56,46,50,56,52,53,53,56,93,44,91,45,49,50,51,46,53,52,49,50,49,54,44,52,56,46,50,50,52,53,53,51,93,44,91,45,49,50,52,46,48,49,50,48,53,54,44,52,56,46,50,57,54,54,55,49,93,44,91,45,49,50,52,46,55,52,57,55,52,44,52,56,46,52,57,57,55,56,51,93,44,91,45,49,50,52,46,56,49,54,57,57,51,44,52,56,46,51,56,53,52,55,53,93,44,91,45,49,50,52,46,55,54,49,51,56,55,44,52,56,46,50,57,53,54,56,56,93,44,91,45,49,50,52,46,56,52,56,53,51,55,44,52,56,46,49,55,52,48,48,53,93,44,91,45,49,50,52,46,55,56,53,49,56,55,44,52,56,46,48,56,55,49,49,53,93,44,91,45,49,50,52,46,55,57,49,49,54,50,44,52,55,46,57,54,49,55,48,53,93,44,91,45,49,50,52,46,55,49,53,48,49,54,44,52,55,46,56,55,57,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,83,116,101,118,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,50,49,52,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,49,57,55,51,55,53,44,52,57,46,48,48,48,48,54,56,93,44,91,45,49,49,56,46,50,49,52,52,56,51,44,52,56,46,56,56,56,49,54,49,93,44,91,45,49,49,56,46,49,48,52,57,54,44,52,56,46,54,53,51,53,48,51,93,44,91,45,49,49,56,46,50,48,54,53,48,55,44,52,56,46,52,55,48,50,57,54,93,44,91,45,49,49,56,46,49,51,57,55,57,49,44,52,56,46,50,54,55,51,48,56,93,44,91,45,49,49,56,46,50,52,56,54,48,54,44,52,56,46,49,51,52,50,53,53,93,44,91,45,49,49,56,46,50,51,51,52,57,56,44,52,56,46,48,54,51,52,56,53,93,44,91,45,49,49,56,46,52,48,48,56,48,55,44,52,56,46,48,50,56,54,56,50,93,44,91,45,49,49,56,46,51,52,48,57,51,56,44,52,55,46,56,57,52,51,49,54,93,44,91,45,49,49,56,46,50,49,50,51,50,51,44,52,55,46,57,52,53,52,57,51,93,44,91,45,49,49,56,46,48,55,56,49,56,50,44,52,55,46,56,48,48,48,54,50,93,44,91,45,49,49,55,46,56,50,48,57,52,55,44,52,55,46,56,50,53,55,55,53,93,44,91,45,49,49,55,46,54,57,55,55,55,52,44,52,55,46,56,53,54,50,55,56,93,44,91,45,49,49,55,46,53,51,53,50,54,50,44,52,55,46,55,57,52,52,53,56,93,44,91,45,49,49,55,46,53,51,53,50,54,50,44,52,56,46,48,52,55,55,55,57,93,44,91,45,49,49,55,46,52,51,54,57,57,51,44,52,56,46,48,52,55,50,48,55,93,44,91,45,49,49,55,46,53,48,50,51,55,49,44,52,56,46,49,51,52,55,48,56,93,44,91,45,49,49,55,46,52,57,57,57,55,53,44,52,56,46,54,53,54,49,56,55,93,44,91,45,49,49,55,46,53,54,51,56,53,56,44,52,56,46,56,51,54,54,55,49,93,44,91,45,49,49,55,46,52,50,57,57,54,56,44,52,57,46,48,48,48,52,54,54,93,44,91,45,49,49,56,46,49,57,55,51,55,53,44,52,57,46,48,48,48,48,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,86,97,110,32,66,117,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,44,91,45,57,50,46,49,55,57,55,56,44,52,48,46,54,48,48,53,50,57,93,44,91,45,57,49,46,57,52,51,49,49,50,44,52,48,46,54,48,53,56,50,55,93,44,91,45,57,49,46,55,49,54,55,54,57,44,52,48,46,53,57,56,53,51,93,44,91,45,57,49,46,55,49,56,55,56,55,44,52,48,46,56,49,51,53,52,52,93,44,91,45,57,49,46,55,49,56,49,56,44,52,48,46,57,48,49,48,56,55,93,44,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,111,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,56,49,55,52,51,44,52,48,46,55,48,48,48,48,51,93,44,91,45,57,57,46,57,56,49,49,57,51,44,52,48,46,52,51,56,50,57,49,93,44,91,45,49,48,48,46,48,57,52,55,57,56,44,52,48,46,51,53,49,50,52,53,93,44,91,45,57,57,46,54,52,50,50,48,57,44,52,48,46,51,53,49,50,93,44,91,45,57,57,46,54,52,51,52,54,50,44,52,48,46,54,56,52,57,49,49,93,44,91,45,57,57,46,57,56,49,55,52,51,44,52,48,46,55,48,48,48,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,56,52,48,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,52,51,51,53,50,44,51,52,46,48,56,57,48,52,52,93,44,91,45,56,56,46,55,49,56,57,54,52,44,51,52,46,48,55,52,53,50,49,93,44,91,45,56,56,46,55,49,57,57,55,57,44,51,51,46,56,49,49,51,51,93,44,91,45,56,56,46,55,49,57,54,50,54,44,51,51,46,54,56,48,50,53,51,93,44,91,45,56,56,46,53,49,51,57,49,55,44,51,51,46,54,53,48,50,48,57,93,44,91,45,56,56,46,50,52,56,57,49,54,44,51,51,46,55,52,52,57,55,55,93,44,91,45,56,56,46,50,48,55,50,50,57,44,51,52,46,48,53,56,51,51,51,93,44,91,45,56,56,46,50,48,51,56,54,52,44,51,52,46,48,56,54,53,54,52,93,44,91,45,56,56,46,53,52,51,51,53,50,44,51,52,46,48,56,57,48,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,69,115,99,97,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,49,53,50,50,44,34,98,101,100,115,34,58,49,54,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,57,56,56,50,57,44,51,48,46,57,57,55,52,53,53,93,44,91,45,56,55,46,54,50,54,50,50,52,44,51,48,46,56,52,54,54,54,52,93,44,91,45,56,55,46,51,57,51,50,57,52,44,51,48,46,54,50,55,50,49,56,93,44,91,45,56,55,46,52,52,53,49,48,51,44,51,48,46,53,50,56,57,48,57,93,44,91,45,56,55,46,51,54,57,51,56,51,44,51,48,46,52,51,49,57,52,56,93,44,91,45,56,55,46,52,57,57,57,56,44,51,48,46,51,50,56,57,53,55,93,44,91,45,56,55,46,53,49,56,51,52,54,44,51,48,46,50,50,57,53,48,54,93,44,91,45,56,55,46,50,57,54,52,53,55,44,51,48,46,50,55,50,54,57,93,44,91,45,56,54,46,57,49,54,54,48,55,44,51,48,46,51,49,56,55,50,52,93,44,91,45,56,54,46,57,50,48,49,49,51,44,51,48,46,51,56,54,53,54,55,93,44,91,45,56,55,46,49,55,56,57,54,56,44,51,48,46,51,51,52,53,57,57,93,44,91,45,56,55,46,49,50,52,57,54,56,44,51,48,46,53,48,48,49,57,54,93,44,91,45,56,55,46,50,54,48,54,55,55,44,51,48,46,54,50,49,51,54,51,93,44,91,45,56,55,46,51,49,50,52,48,57,44,51,48,46,55,51,52,55,55,93,44,91,45,56,55,46,50,56,50,50,57,44,51,48,46,57,50,52,56,50,57,93,44,91,45,56,55,46,49,54,51,54,53,51,44,51,48,46,57,57,57,48,50,57,93,44,91,45,56,55,46,53,57,56,56,50,57,44,51,48,46,57,57,55,52,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,51,57,34,44,34,78,65,77,69,34,58,34,84,97,114,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,57,57,55,55,44,34,98,101,100,115,34,58,54,57,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,51,50,50,56,55,44,51,50,46,57,56,57,51,50,52,93,44,91,45,57,55,46,51,57,56,52,56,44,51,50,46,57,57,48,56,51,57,93,44,91,45,57,55,46,53,52,52,49,56,49,44,51,50,46,57,57,52,49,55,55,93,44,91,45,57,55,46,53,53,48,53,56,50,44,51,50,46,53,53,53,51,57,49,93,44,91,45,57,55,46,48,56,54,56,51,52,44,51,50,46,53,52,57,52,50,56,93,44,91,45,57,55,46,48,51,56,51,56,53,44,51,50,46,53,52,56,54,54,50,93,44,91,45,57,55,46,48,51,50,50,56,55,44,51,50,46,57,56,57,51,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,80,114,105,110,99,101,32,71,101,111,114,103,101,39,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,54,50,48,50,44,34,98,101,100,115,34,58,54,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,48,48,50,52,51,54,44,51,56,46,57,54,53,54,55,51,93,44,91,45,55,54,46,57,48,57,51,57,51,44,51,56,46,56,57,50,56,53,50,93,44,91,45,55,55,46,48,51,57,48,48,54,44,51,56,46,55,57,49,54,52,53,93,44,91,45,55,55,46,48,52,49,51,54,50,44,51,56,46,55,56,53,52,49,53,93,44,91,45,55,55,46,48,56,54,51,57,49,44,51,56,46,55,48,54,50,50,55,93,44,91,45,55,54,46,55,52,55,53,55,44,51,56,46,54,49,55,51,51,53,93,44,91,45,55,54,46,54,55,53,52,53,55,44,51,56,46,53,51,53,56,55,54,93,44,91,45,55,54,46,54,56,54,51,53,56,44,51,56,46,55,52,56,52,55,53,93,44,91,45,55,54,46,54,57,56,50,54,56,44,51,56,46,57,56,51,54,52,55,93,44,91,45,55,54,46,56,52,48,51,54,50,44,51,57,46,49,48,51,49,52,50,93,44,91,45,55,54,46,56,56,56,53,48,53,44,51,57,46,49,51,48,57,54,55,93,44,91,45,55,55,46,48,48,50,52,51,54,44,51,56,46,57,54,53,54,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,55,49,53,57,53,44,51,54,46,56,48,48,48,51,49,93,44,91,45,56,50,46,57,52,55,54,52,55,44,51,54,46,54,55,53,55,53,49,93,44,91,45,56,50,46,57,56,53,49,50,52,44,51,54,46,53,57,51,55,50,57,93,44,91,45,56,50,46,56,51,48,52,51,51,44,51,54,46,53,57,51,55,54,49,93,44,91,45,56,50,46,54,48,57,49,55,54,44,51,54,46,53,57,52,48,57,57,93,44,91,45,56,50,46,50,57,52,49,51,52,44,51,54,46,53,57,53,54,57,55,93,44,91,45,56,50,46,51,51,50,48,55,56,44,51,54,46,55,48,56,57,54,57,93,44,91,45,56,50,46,52,48,54,54,51,51,44,51,54,46,56,55,54,51,53,54,93,44,91,45,56,50,46,54,49,55,55,52,44,51,54,46,56,56,48,55,55,51,93,44,91,45,56,50,46,55,55,49,53,57,53,44,51,54,46,56,48,48,48,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,50,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,53,56,52,54,54,44,50,57,46,50,54,51,56,55,54,93,44,91,45,57,54,46,57,51,56,53,56,55,44,50,57,46,48,54,51,50,52,52,93,44,91,45,57,54,46,56,51,56,55,57,53,44,50,57,46,48,50,53,51,50,55,93,44,91,45,57,54,46,55,57,50,49,51,51,44,50,56,46,57,49,56,56,48,51,93,44,91,45,57,54,46,54,52,51,52,52,50,44,50,56,46,55,49,50,49,48,53,93,44,91,45,57,54,46,51,50,51,53,50,50,44,50,56,46,54,55,53,53,57,55,93,44,91,45,57,54,46,51,48,57,49,55,56,44,50,56,46,57,54,51,50,57,49,93,44,91,45,57,54,46,54,52,48,51,49,53,44,50,57,46,50,52,55,56,48,52,93,44,91,45,57,54,46,54,53,56,52,54,54,44,50,57,46,50,54,51,56,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,111,118,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,51,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,56,52,49,54,51,44,51,51,46,57,49,53,53,49,93,44,91,45,57,55,46,51,55,52,54,57,44,51,51,46,56,49,56,53,53,50,93,44,91,45,57,55,46,50,53,53,54,51,57,44,51,51,46,56,54,51,55,48,50,93,44,91,45,57,55,46,49,53,52,51,54,55,44,51,51,46,55,50,52,48,57,52,93,44,91,45,57,55,46,48,57,53,54,52,52,44,51,51,46,55,50,57,50,50,50,93,44,91,45,57,54,46,57,52,52,54,49,49,44,51,51,46,57,52,57,50,49,55,93,44,91,45,57,54,46,57,51,52,56,52,44,51,51,46,57,53,52,52,53,51,93,44,91,45,57,54,46,57,54,57,54,50,55,44,51,52,46,48,55,49,48,50,93,44,91,45,57,55,46,53,54,48,55,54,49,44,51,52,46,48,55,49,49,53,93,44,91,45,57,55,46,53,54,48,56,53,56,44,51,51,46,56,57,57,54,52,53,93,44,91,45,57,55,46,52,56,52,49,54,51,44,51,51,46,57,49,53,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,57,34,44,34,78,65,77,69,34,58,34,84,119,105,103,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,49,51,53,49,49,44,51,50,46,56,52,52,56,54,56,93,44,91,45,56,51,46,53,57,55,54,53,54,44,51,50,46,54,54,52,51,51,56,93,44,91,45,56,51,46,52,57,55,57,50,51,44,51,50,46,52,53,50,49,57,56,93,44,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,44,91,45,56,51,46,52,48,54,57,57,44,51,50,46,56,57,56,50,50,93,44,91,45,56,51,46,53,49,51,53,49,49,44,51,50,46,56,52,52,56,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,97,104,111,110,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,48,54,52,44,34,98,101,100,115,34,58,49,48,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,48,50,50,57,44,52,49,46,49,51,52,49,56,57,93,44,91,45,56,49,46,48,48,49,54,57,53,44,52,48,46,57,56,55,55,56,51,93,44,91,45,56,49,46,48,56,54,51,49,50,44,52,48,46,57,56,56,48,51,49,93,44,91,45,56,49,46,48,56,54,54,55,57,44,52,48,46,57,48,49,54,48,57,93,44,91,45,56,48,46,53,49,57,49,53,44,52,48,46,57,48,48,51,50,54,93,44,91,45,56,48,46,53,49,57,48,51,55,44,52,49,46,49,50,53,48,57,51,93,44,91,45,56,48,46,53,49,57,48,52,56,44,52,49,46,49,51,51,51,57,52,93,44,91,45,56,49,46,48,48,50,50,57,44,52,49,46,49,51,52,49,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,53,52,44,34,98,101,100,115,34,58,49,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,56,54,49,52,56,44,51,50,46,52,57,51,48,53,51,93,44,91,45,56,54,46,48,50,51,48,49,50,44,51,50,46,52,49,57,57,55,56,93,44,91,45,56,53,46,57,49,57,50,57,51,44,51,50,46,50,55,52,51,56,50,93,44,91,45,56,53,46,56,53,54,50,49,56,44,51,50,46,50,51,49,57,55,53,93,44,91,45,56,53,46,52,51,51,53,52,51,44,51,50,46,50,51,52,54,52,56,93,44,91,45,56,53,46,52,51,52,48,52,53,44,51,50,46,52,48,57,56,52,93,44,91,45,56,53,46,52,56,57,51,52,56,44,51,50,46,52,57,54,57,51,55,93,44,91,45,56,53,46,54,57,53,56,53,52,44,51,50,46,53,57,53,57,51,51,93,44,91,45,56,53,46,55,57,56,53,56,53,44,51,50,46,53,56,49,48,56,57,93,44,91,45,56,53,46,56,56,54,49,52,56,44,51,50,46,52,57,51,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,56,55,44,34,98,101,100,115,34,58,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,57,56,52,53,57,44,51,56,46,54,48,54,48,54,50,93,44,91,45,56,56,46,54,57,56,57,54,49,44,51,56,46,52,55,52,57,49,52,93,44,91,45,56,56,46,55,48,50,51,57,49,44,51,56,46,50,53,54,54,54,49,93,44,91,45,56,56,46,51,55,48,51,55,53,44,51,56,46,50,53,53,51,49,57,93,44,91,45,56,56,46,49,53,48,56,57,49,44,51,56,46,50,53,54,49,53,54,93,44,91,45,56,56,46,49,52,55,56,48,51,44,51,56,46,53,54,57,48,51,55,93,44,91,45,56,56,46,50,53,51,57,55,56,44,51,56,46,53,57,57,53,48,50,93,44,91,45,56,56,46,54,57,56,52,53,57,44,51,56,46,54,48,54,48,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,51,55,34,44,34,78,65,77,69,34,58,34,83,119,105,115,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,56,52,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,57,57,56,52,57,51,44,51,52,46,55,52,56,49,57,93,44,91,45,49,48,49,46,57,57,56,48,50,44,51,52,46,51,49,51,48,51,57,93,44,91,45,49,48,49,46,53,54,52,56,53,54,44,51,52,46,51,49,50,52,57,51,93,44,91,45,49,48,49,46,52,55,49,53,56,44,51,52,46,51,49,50,50,57,93,44,91,45,49,48,49,46,52,55,49,53,54,50,44,51,52,46,55,52,55,52,54,50,93,44,91,45,49,48,49,46,54,50,57,50,53,55,44,51,52,46,55,52,55,54,52,57,93,44,91,45,49,48,49,46,57,57,56,52,57,51,44,51,52,46,55,52,56,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,79,115,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,48,56,57,56,51,44,51,56,46,53,55,48,57,93,44,91,45,57,50,46,48,48,56,55,44,51,56,46,53,48,48,48,51,56,93,44,91,45,57,50,46,49,52,57,50,57,49,44,51,56,46,52,51,49,49,53,50,93,44,91,45,57,50,46,49,57,52,52,55,54,44,51,56,46,51,51,53,53,51,54,93,44,91,45,57,50,46,49,57,53,54,55,53,44,51,56,46,50,57,50,50,51,55,93,44,91,45,57,49,46,54,52,52,55,50,57,44,51,56,46,50,56,56,53,49,93,44,91,45,57,49,46,54,52,48,51,55,50,44,51,56,46,55,48,51,55,57,50,93,44,91,45,57,49,46,54,52,55,49,55,49,44,51,56,46,55,48,51,51,57,54,93,44,91,45,57,49,46,56,54,57,52,56,57,44,51,56,46,54,54,51,57,52,93,44,91,45,57,50,46,48,48,56,57,56,51,44,51,56,46,53,55,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,75,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,48,56,51,57,44,34,98,101,100,115,34,58,49,52,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,56,56,54,53,55,44,52,50,46,49,53,51,53,57,93,44,91,45,56,56,46,54,48,49,57,51,51,44,52,49,46,55,49,57,53,54,51,93,44,91,45,56,56,46,50,54,49,57,53,50,44,52,49,46,55,50,52,54,53,50,93,44,91,45,56,56,46,50,54,50,56,55,53,44,52,49,46,57,56,54,51,55,56,93,44,91,45,56,56,46,50,51,56,52,52,57,44,52,50,46,49,53,52,50,52,57,93,44,91,45,56,56,46,53,56,56,54,53,55,44,52,50,46,49,53,51,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,69,108,32,68,111,114,97,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,54,54,49,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,49,52,49,53,57,53,44,51,56,46,55,49,49,57,51,57,93,44,91,45,49,50,49,46,48,50,55,53,48,55,44,51,56,46,53,48,56,50,57,50,93,44,91,45,49,50,48,46,56,50,51,50,56,51,44,51,56,46,53,53,57,54,56,55,93,44,91,45,49,50,48,46,54,50,56,52,50,56,44,51,56,46,53,48,51,50,48,52,93,44,91,45,49,50,48,46,50,55,52,53,50,50,44,51,56,46,53,53,57,52,53,50,93,44,91,45,49,50,48,46,48,55,50,51,57,50,44,51,56,46,55,48,50,55,54,55,93,44,91,45,49,49,57,46,56,55,55,55,53,44,51,56,46,56,54,56,51,49,49,93,44,91,45,49,49,57,46,57,48,52,51,49,53,44,51,56,46,57,51,51,51,50,52,93,44,91,45,49,50,48,46,48,48,50,52,54,49,44,51,57,46,48,54,55,52,56,57,93,44,91,45,49,50,48,46,49,56,52,48,57,56,44,51,57,46,48,51,49,48,49,52,93,44,91,45,49,50,48,46,52,51,53,50,52,44,51,57,46,48,50,56,51,57,55,93,44,91,45,49,50,48,46,53,55,50,51,53,50,44,51,56,46,57,49,52,52,93,44,91,45,49,50,48,46,55,51,48,49,55,52,44,51,57,46,48,48,51,57,53,56,93,44,91,45,49,50,48,46,57,51,52,54,53,51,44,51,56,46,57,54,51,55,57,49,93,44,91,45,49,50,49,46,48,53,50,57,49,49,44,51,56,46,57,48,48,49,52,52,93,44,91,45,49,50,49,46,49,52,49,53,57,53,44,51,56,46,55,49,49,57,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,75,101,114,115,104,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,51,54,49,44,34,98,101,100,115,34,58,49,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,55,57,50,50,55,44,51,52,46,52,53,55,55,55,54,93,44,91,45,56,48,46,55,54,57,57,50,54,44,51,52,46,51,55,55,49,49,49,93,44,91,45,56,48,46,56,50,53,57,50,49,44,51,52,46,50,54,56,55,54,93,44,91,45,56,48,46,56,54,57,53,50,52,44,51,52,46,49,56,50,50,55,49,93,44,91,45,56,48,46,55,49,57,51,49,56,44,51,52,46,48,54,56,57,55,50,93,44,91,45,56,48,46,54,49,54,49,56,54,44,51,52,46,48,57,57,54,48,53,93,44,91,45,56,48,46,52,55,57,56,53,55,44,51,52,46,49,54,56,54,57,54,93,44,91,45,56,48,46,52,50,48,52,56,52,44,51,52,46,50,57,51,48,55,52,93,44,91,45,56,48,46,50,56,56,54,57,50,44,51,52,46,51,54,52,49,51,57,93,44,91,45,56,48,46,50,56,56,53,57,54,44,51,52,46,51,54,54,50,48,55,93,44,91,45,56,48,46,51,50,55,53,57,44,51,52,46,52,57,55,55,54,93,44,91,45,56,48,46,52,48,56,51,55,51,44,51,52,46,54,49,52,55,54,53,93,44,91,45,56,48,46,53,53,48,53,53,50,44,51,52,46,53,54,48,49,49,54,93,44,91,45,56,48,46,54,53,56,52,49,55,44,51,52,46,52,55,56,54,49,50,93,44,91,45,56,48,46,55,52,51,51,52,53,44,51,52,46,53,51,57,57,49,54,93,44,91,45,56,48,46,56,55,57,50,50,55,44,51,52,46,52,53,55,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,97,116,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,49,53,57,55,55,44,51,54,46,53,52,51,56,56,52,93,44,91,45,55,54,46,57,51,51,52,55,44,51,54,46,52,48,49,56,55,93,44,91,45,55,54,46,55,55,57,52,54,55,44,51,54,46,51,54,50,52,54,57,93,44,91,45,55,54,46,54,57,54,53,55,49,44,51,54,46,50,57,54,49,51,56,93,44,91,45,55,54,46,53,53,57,54,52,54,44,51,54,46,51,53,49,48,53,54,93,44,91,45,55,54,46,52,53,51,55,49,49,44,51,54,46,51,55,56,48,57,50,93,44,91,45,55,54,46,52,57,49,51,51,54,44,51,54,46,53,49,48,54,55,55,93,44,91,45,55,54,46,53,52,49,57,54,54,44,51,54,46,53,53,48,54,53,51,93,44,91,45,55,54,46,57,49,53,56,57,57,44,51,54,46,53,53,50,49,52,57,93,44,91,45,55,54,46,57,49,53,57,55,55,44,51,54,46,53,52,51,56,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,79,116,101,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,48,49,55,54,52,44,51,56,46,50,54,53,48,49,54,93,44,91,45,49,48,51,46,53,48,57,51,54,52,44,51,56,46,49,55,50,53,49,52,93,44,91,45,49,48,51,46,54,49,57,49,55,50,44,51,56,46,49,49,51,51,53,53,93,44,91,45,49,48,51,46,56,51,53,54,49,54,44,51,56,46,49,49,51,51,52,93,44,91,45,49,48,52,46,48,53,56,50,52,50,44,51,56,46,49,52,54,52,57,50,93,44,91,45,49,48,52,46,48,54,49,49,51,50,44,51,55,46,55,51,52,55,48,52,93,44,91,45,49,48,52,46,48,53,56,49,57,54,44,51,55,46,54,52,52,48,52,57,93,44,91,45,49,48,51,46,52,48,52,51,51,57,44,51,55,46,54,52,51,53,55,54,93,44,91,45,49,48,51,46,51,57,57,57,51,56,44,51,56,46,50,54,53,52,51,53,93,44,91,45,49,48,51,46,53,48,49,55,54,52,44,51,56,46,50,54,53,48,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,51,50,51,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,50,57,48,50,51,54,44,52,51,46,54,49,48,57,53,57,93,44,91,45,49,50,51,46,56,55,53,54,57,56,44,52,51,46,54,48,56,52,48,55,93,44,91,45,49,50,51,46,56,55,53,54,50,56,44,52,51,46,53,49,53,57,52,55,93,44,91,45,49,50,51,46,55,54,49,53,50,56,44,52,51,46,52,50,50,50,57,52,93,44,91,45,49,50,51,46,55,48,52,55,53,50,44,52,51,46,50,53,55,55,52,49,93,44,91,45,49,50,51,46,55,48,50,49,52,52,44,52,51,46,48,56,55,48,56,51,93,44,91,45,49,50,51,46,56,50,49,49,49,56,44,52,50,46,57,57,54,50,57,49,93,44,91,45,49,50,51,46,56,49,49,53,53,51,44,52,50,46,55,56,56,56,51,55,93,44,91,45,49,50,51,46,55,49,54,52,57,50,44,52,50,46,55,56,52,48,54,49,93,44,91,45,49,50,51,46,52,52,53,52,53,54,44,52,50,46,55,48,51,48,50,53,93,44,91,45,49,50,51,46,50,50,57,54,49,57,44,52,50,46,55,48,50,54,49,93,44,91,45,49,50,51,46,49,53,50,50,51,51,44,52,50,46,55,53,53,56,51,53,93,44,91,45,49,50,50,46,55,57,52,55,55,54,44,52,50,46,55,55,56,50,50,49,93,44,91,45,49,50,50,46,53,54,48,50,55,51,44,52,50,46,57,51,57,49,56,53,93,44,91,45,49,50,50,46,52,48,49,48,50,53,44,52,50,46,57,57,54,54,51,50,93,44,91,45,49,50,50,46,50,56,50,55,51,44,52,50,46,57,57,54,52,57,57,93,44,91,45,49,50,50,46,50,56,50,53,56,53,44,52,51,46,48,54,55,55,49,57,93,44,91,45,49,50,50,46,48,57,51,55,55,54,44,52,51,46,48,55,54,50,53,55,93,44,91,45,49,50,49,46,57,56,48,53,53,52,44,52,51,46,50,54,53,49,56,93,44,91,45,49,50,50,46,48,50,50,54,54,50,44,52,51,46,51,54,50,51,48,52,93,44,91,45,49,50,50,46,49,51,50,48,51,52,44,52,51,46,52,52,48,50,50,49,93,44,91,45,49,50,50,46,55,52,49,55,49,54,44,52,51,46,52,51,55,51,57,53,93,44,91,45,49,50,50,46,55,52,49,56,52,53,44,52,51,46,53,52,52,54,53,52,93,44,91,45,49,50,51,46,49,48,55,54,56,54,44,52,51,46,53,52,48,48,49,93,44,91,45,49,50,51,46,49,51,55,51,49,57,44,52,51,46,55,55,57,54,55,93,44,91,45,49,50,51,46,51,52,56,50,52,54,44,52,51,46,55,56,48,49,55,93,44,91,45,49,50,51,46,53,50,57,49,53,51,44,52,51,46,56,51,48,48,54,49,93,44,91,45,49,50,51,46,54,49,57,48,49,50,44,52,51,46,57,50,49,49,49,55,93,44,91,45,49,50,51,46,56,50,55,48,48,52,44,52,51,46,57,52,52,56,51,55,93,44,91,45,49,50,51,46,57,52,54,50,57,49,44,52,51,46,56,54,50,54,56,50,93,44,91,45,49,50,52,46,50,51,48,49,55,56,44,52,51,46,56,54,51,55,50,51,93,44,91,45,49,50,52,46,50,57,48,50,51,54,44,52,51,46,54,49,48,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,53,56,54,44,34,98,101,100,115,34,58,51,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,53,48,53,54,48,55,44,52,49,46,50,51,50,53,51,57,93,44,91,45,55,53,46,54,48,48,55,51,54,44,52,49,46,49,54,49,52,57,55,93,44,91,45,55,53,46,54,52,57,54,51,55,44,52,49,46,49,50,50,51,52,52,93,44,91,45,55,53,46,52,57,53,57,57,44,52,48,46,57,56,55,49,56,49,93,44,91,45,55,53,46,53,55,52,53,57,44,52,48,46,57,53,49,51,50,51,93,44,91,45,55,53,46,52,55,52,49,57,51,44,52,48,46,56,49,52,55,52,54,93,44,91,45,55,53,46,51,48,48,53,57,52,44,52,48,46,56,53,57,53,54,51,93,44,91,45,55,53,46,49,50,48,50,51,50,44,52,48,46,57,54,56,55,48,50,93,44,91,45,55,52,46,57,54,54,57,48,54,44,52,49,46,48,57,52,52,49,93,44,91,45,55,52,46,57,57,49,55,49,56,44,52,49,46,48,57,50,50,56,52,93,44,91,45,55,53,46,49,53,54,53,48,55,44,52,49,46,49,53,48,51,52,49,93,44,91,45,55,53,46,49,50,57,55,50,49,44,52,49,46,50,53,50,49,48,49,93,44,91,45,55,53,46,51,53,57,49,56,52,44,52,49,46,50,51,57,50,48,54,93,44,91,45,55,53,46,53,48,53,54,48,55,44,52,49,46,50,51,50,53,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,55,57,53,50,56,44,51,54,46,49,50,53,48,55,50,93,44,91,45,57,51,46,52,53,48,55,49,53,44,51,53,46,57,54,55,52,57,51,93,44,91,45,57,51,46,53,50,51,54,51,57,44,51,53,46,56,56,49,53,57,50,93,44,91,45,57,51,46,53,49,57,50,48,52,44,51,53,46,55,54,51,53,50,49,93,44,91,45,57,51,46,53,49,57,53,55,53,44,51,53,46,55,51,52,52,50,50,93,44,91,45,57,51,46,49,54,52,52,53,50,44,51,53,46,55,50,56,56,51,49,93,44,91,45,57,50,46,57,53,49,51,49,53,44,51,53,46,55,50,52,54,54,51,93,44,91,45,57,50,46,57,52,52,54,54,54,44,51,54,46,49,49,53,49,50,51,93,44,91,45,57,51,46,51,48,48,56,50,44,51,54,46,49,50,49,53,53,93,44,91,45,57,51,46,52,55,57,53,50,56,44,51,54,46,49,50,53,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,118,97,108,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,50,52,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,57,57,56,48,50,44,52,57,46,48,48,48,48,48,54,93,44,91,45,57,56,46,57,57,57,56,57,44,52,56,46,55,49,56,49,50,57,93,44,91,45,57,56,46,57,55,48,51,57,50,44,52,56,46,53,52,52,50,51,50,93,44,91,45,57,56,46,51,49,56,48,51,54,44,52,56,46,53,52,51,55,55,51,93,44,91,45,57,55,46,57,50,55,48,54,57,44,52,56,46,53,52,51,49,50,52,93,44,91,45,57,55,46,57,53,48,48,49,50,44,52,57,46,48,48,48,52,57,50,93,44,91,45,57,56,46,57,57,57,56,48,50,44,52,57,46,48,48,48,48,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,78,111,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,49,49,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,54,49,54,48,51,44,51,54,46,53,57,51,54,51,55,93,44,91,45,57,55,46,52,54,48,55,57,50,44,51,54,46,49,54,52,52,54,50,93,44,91,45,57,55,46,51,53,52,49,51,50,44,51,54,46,49,53,57,48,55,50,93,44,91,45,57,55,46,49,52,48,54,54,56,44,51,54,46,49,53,57,50,51,49,93,44,91,45,57,55,46,49,52,48,57,54,56,44,51,54,46,50,52,54,52,51,53,93,44,91,45,57,54,46,57,50,53,48,54,57,44,51,54,46,50,52,54,52,55,52,93,44,91,45,57,55,46,48,51,50,49,48,54,44,51,54,46,51,51,51,51,53,52,93,44,91,45,57,55,46,48,48,57,55,56,53,44,51,54,46,53,48,54,57,51,53,93,44,91,45,57,55,46,48,53,55,53,53,54,44,51,54,46,53,57,51,56,55,50,93,44,91,45,57,55,46,52,54,49,54,48,51,44,51,54,46,53,57,51,54,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,71,111,118,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,49,57,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,56,49,49,56,53,56,44,51,57,46,49,51,51,51,54,93,44,91,45,49,48,48,46,56,49,56,54,57,56,44,51,56,46,54,57,57,56,54,49,93,44,91,45,49,48,48,46,54,56,56,48,48,54,44,51,56,46,55,48,48,48,50,49,93,44,91,45,49,48,48,46,50,52,55,50,44,51,56,46,54,57,56,49,54,53,93,44,91,45,49,48,48,46,49,53,51,56,50,51,44,51,56,46,54,57,55,51,52,49,93,44,91,45,49,48,48,46,49,52,55,57,52,44,51,57,46,49,51,50,49,55,57,93,44,91,45,49,48,48,46,49,54,52,50,44,51,57,46,49,51,50,48,55,49,93,44,91,45,49,48,48,46,55,50,49,50,57,54,44,51,57,46,49,51,51,51,56,49,93,44,91,45,49,48,48,46,56,49,49,56,53,56,44,51,57,46,49,51,51,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,80,111,105,110,116,101,32,67,111,117,112,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,53,56,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,51,48,56,55,44,51,48,46,54,53,56,54,55,55,93,44,91,45,57,49,46,51,56,48,54,50,44,51,48,46,55,53,56,56,48,52,93,44,91,45,57,49,46,53,53,51,48,49,57,44,51,48,46,55,51,48,55,57,56,93,44,91,45,57,49,46,53,49,53,54,50,54,44,51,48,46,56,54,49,51,55,56,93,44,91,45,57,49,46,54,54,49,51,55,50,44,51,48,46,56,53,55,48,57,57,93,44,91,45,57,49,46,54,54,50,53,48,54,44,51,48,46,57,55,48,51,54,50,93,44,91,45,57,49,46,54,53,56,51,50,49,44,51,48,46,57,57,52,51,54,53,93,44,91,45,57,49,46,55,53,48,49,49,57,44,51,49,46,48,49,56,56,49,52,93,44,91,45,57,49,46,56,48,53,57,54,51,44,51,48,46,57,55,50,53,53,56,93,44,91,45,57,49,46,56,49,53,50,53,56,44,51,48,46,56,52,56,49,48,55,93,44,91,45,57,49,46,55,51,51,54,55,51,44,51,48,46,55,48,49,55,51,93,44,91,45,57,49,46,55,53,54,49,57,51,44,51,48,46,52,57,55,55,51,56,93,44,91,45,57,49,46,55,48,48,57,51,51,44,51,48,46,52,57,55,52,51,51,93,44,91,45,57,49,46,52,56,53,48,56,57,44,51,48,46,52,57,55,49,51,56,93,44,91,45,57,49,46,52,49,52,55,54,44,51,48,46,53,49,49,53,49,54,93,44,91,45,57,49,46,51,51,48,56,55,44,51,48,46,54,53,56,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,71,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,49,54,48,53,53,44,52,48,46,51,52,57,55,50,55,93,44,91,45,57,54,46,57,49,54,52,48,55,44,52,48,46,48,48,49,53,49,49,93,44,91,45,57,54,46,56,48,53,55,54,56,44,52,48,46,48,48,49,52,57,53,93,44,91,45,57,54,46,52,54,51,55,49,50,44,52,48,46,48,48,49,48,50,51,93,44,91,45,57,54,46,52,54,51,54,54,55,44,52,48,46,50,54,50,49,55,51,93,44,91,45,57,54,46,52,54,51,54,51,50,44,52,48,46,53,50,51,48,49,51,93,44,91,45,57,54,46,57,49,50,54,51,55,44,52,48,46,53,50,51,54,50,53,93,44,91,45,57,54,46,57,49,54,48,53,53,44,52,48,46,51,52,57,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,108,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,51,48,54,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,50,53,54,50,50,44,51,51,46,57,52,48,49,52,55,93,44,91,45,56,54,46,52,48,53,57,56,49,44,51,51,46,56,51,53,56,57,54,93,44,91,45,56,54,46,53,55,55,55,57,57,44,51,51,46,55,54,53,51,49,54,93,44,91,45,56,54,46,53,50,53,48,55,51,44,51,51,46,55,50,49,50,51,54,93,44,91,45,56,54,46,53,49,54,55,56,51,44,51,51,46,53,52,53,56,57,54,93,44,91,45,56,54,46,51,55,56,50,50,50,44,51,51,46,53,48,50,52,49,49,93,44,91,45,56,54,46,51,55,56,54,54,53,44,51,51,46,51,57,48,57,56,51,93,44,91,45,56,54,46,49,56,57,56,49,50,44,51,51,46,53,52,55,50,51,56,93,44,91,45,56,54,46,49,52,53,53,54,50,44,51,51,46,54,55,57,48,57,56,93,44,91,45,56,54,46,48,52,51,57,57,51,44,51,51,46,55,54,51,53,57,53,93,44,91,45,56,54,46,48,54,53,50,55,50,44,51,51,46,56,52,50,49,57,56,93,44,91,45,56,54,46,50,49,53,53,50,53,44,51,51,46,57,56,55,52,50,49,93,44,91,45,56,54,46,51,50,53,54,50,50,44,51,51,46,57,52,48,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,49,53,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,56,52,49,50,51,44,51,50,46,53,56,54,56,57,49,93,44,91,45,56,57,46,55,51,48,48,54,51,44,51,50,46,51,53,50,55,51,51,93,44,91,45,56,57,46,55,51,48,52,50,52,44,51,50,46,50,50,50,48,51,57,93,44,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,44,91,45,56,57,46,51,50,50,53,57,56,44,51,50,46,53,55,54,52,51,51,93,44,91,45,56,57,46,55,51,48,49,53,50,44,51,50,46,53,55,55,50,52,56,93,44,91,45,56,57,46,55,51,48,51,48,52,44,51,50,46,54,51,52,50,50,56,93,44,91,45,56,57,46,55,56,52,49,50,51,44,51,50,46,53,56,54,56,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,68,111,117,103,104,101,114,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,48,52,57,44,34,98,101,100,115,34,58,54,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,49,56,52,48,52,44,51,49,46,54,53,48,50,55,52,93,44,91,45,56,52,46,48,52,51,50,49,51,44,51,49,46,54,50,51,53,55,51,93,44,91,45,56,52,46,50,57,55,56,48,49,44,51,49,46,54,50,49,57,53,49,93,44,91,45,56,52,46,52,53,48,51,57,56,44,51,49,46,54,50,49,56,54,56,93,44,91,45,56,52,46,52,50,57,56,55,54,44,51,49,46,52,51,54,54,54,49,93,44,91,45,56,52,46,49,52,49,49,50,52,44,51,49,46,52,52,48,49,55,57,93,44,91,45,56,51,46,57,57,55,55,57,54,44,51,49,46,52,52,51,55,53,51,93,44,91,45,56,52,46,48,49,56,52,48,52,44,51,49,46,54,53,48,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,55,49,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,53,53,48,52,53,44,51,56,46,52,50,50,54,56,53,93,44,91,45,56,54,46,50,55,54,57,53,54,44,51,56,46,50,50,55,49,50,54,93,44,91,45,56,54,46,51,50,57,54,44,51,56,46,49,56,49,56,48,53,93,44,91,45,56,54,46,50,54,55,55,54,57,44,51,56,46,48,53,55,49,55,49,93,44,91,45,56,54,46,49,55,56,57,51,44,51,56,46,48,49,48,56,49,93,44,91,45,56,53,46,57,57,56,57,53,50,44,51,55,46,57,57,57,54,53,52,93,44,91,45,56,53,46,57,52,55,49,49,52,44,51,56,46,48,48,53,48,56,53,93,44,91,45,56,53,46,56,57,57,55,54,44,51,56,46,49,56,48,52,52,52,93,44,91,45,56,54,46,48,51,50,53,53,57,44,51,56,46,51,51,48,54,54,93,44,91,45,56,54,46,48,51,50,56,49,55,44,51,56,46,52,49,55,56,57,56,93,44,91,45,56,54,46,50,53,53,48,52,53,44,51,56,46,52,50,50,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,111,110,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,55,49,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,51,50,52,52,49,44,52,56,46,56,52,54,54,54,54,93,44,91,45,49,49,55,46,48,52,49,56,55,55,44,52,56,46,48,52,53,52,54,54,93,44,91,45,49,49,55,46,48,52,50,48,56,57,44,52,55,46,57,55,55,52,53,93,44,91,45,49,49,54,46,53,48,52,51,50,57,44,52,55,46,57,57,49,51,56,54,93,44,91,45,49,49,54,46,53,48,53,49,48,52,44,52,55,46,56,57,48,49,52,50,93,44,91,45,49,49,54,46,51,50,57,53,51,56,44,52,55,46,56,57,48,51,57,51,93,44,91,45,49,49,54,46,51,50,57,54,48,49,44,52,56,46,48,49,55,55,50,50,93,44,91,45,49,49,54,46,50,51,51,49,49,51,44,52,56,46,48,54,56,56,57,93,44,91,45,49,49,54,46,48,52,57,49,48,56,44,52,55,46,57,55,55,51,51,52,93,44,91,45,49,49,54,46,48,52,56,54,54,57,44,52,56,46,50,49,54,49,50,56,93,44,91,45,49,49,54,46,48,52,57,48,53,56,44,52,56,46,53,48,50,48,54,50,93,44,91,45,49,49,54,46,55,56,52,56,55,56,44,52,56,46,53,48,48,52,55,50,93,44,91,45,49,49,54,46,55,56,53,49,55,52,44,52,56,46,56,52,55,52,48,50,93,44,91,45,49,49,55,46,48,51,50,52,52,49,44,52,56,46,56,52,54,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,97,116,111,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,50,57,57,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,54,53,48,53,53,44,51,52,46,57,56,53,48,55,53,93,44,91,45,56,53,46,50,54,52,55,54,50,44,51,52,46,56,53,52,50,55,55,93,44,91,45,56,53,46,49,52,52,55,56,57,44,51,52,46,55,54,55,54,51,57,93,44,91,45,56,53,46,48,54,49,54,52,56,44,51,52,46,56,49,57,52,55,56,93,44,91,45,56,52,46,57,55,57,56,54,44,51,52,46,57,56,55,54,52,55,93,44,91,45,56,53,46,50,54,53,48,53,53,44,51,52,46,57,56,53,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,76,97,83,97,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,49,50,54,50,51,44,51,49,46,57,50,55,51,56,50,93,44,91,45,57,50,46,51,54,50,54,48,56,44,51,49,46,55,57,54,54,51,51,93,44,91,45,57,50,46,51,55,50,52,55,54,44,51,49,46,55,48,49,53,49,57,93,44,91,45,57,50,46,50,56,50,48,56,49,44,51,49,46,53,48,51,52,56,54,93,44,91,45,57,50,46,49,57,54,49,51,49,44,51,49,46,52,55,55,56,55,55,93,44,91,45,57,50,46,48,56,54,55,49,56,44,51,49,46,51,51,53,51,55,52,93,44,91,45,57,50,46,48,48,56,49,50,49,44,51,49,46,51,50,53,55,57,55,93,44,91,45,57,50,46,48,48,53,52,51,52,44,51,49,46,57,50,55,50,57,54,93,44,91,45,57,50,46,51,49,50,54,50,51,44,51,49,46,57,50,55,51,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,87,97,108,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,57,46,52,55,49,55,49,50,44,52,52,46,54,57,50,56,57,57,93,44,91,45,54,57,46,51,57,51,49,50,51,44,52,52,46,54,52,48,51,55,53,93,44,91,45,54,57,46,53,48,54,51,56,50,44,52,52,46,51,52,50,56,55,93,44,91,45,54,57,46,52,48,57,54,51,53,44,52,52,46,51,50,55,57,57,56,93,44,91,45,54,57,46,50,54,56,56,56,50,44,52,52,46,51,54,52,54,53,51,93,44,91,45,54,56,46,57,57,57,52,53,53,44,52,52,46,50,48,50,55,50,49,93,44,91,45,54,56,46,56,57,54,51,56,52,44,52,52,46,50,48,57,57,51,53,93,44,91,45,54,56,46,56,48,52,54,49,53,44,52,52,46,52,53,56,52,49,49,93,44,91,45,54,56,46,56,49,53,55,57,51,44,52,52,46,54,56,51,55,53,52,93,44,91,45,54,57,46,49,56,51,55,51,50,44,52,52,46,54,52,52,48,50,51,93,44,91,45,54,57,46,50,54,54,55,56,53,44,52,52,46,55,50,49,57,50,56,93,44,91,45,54,57,46,52,55,49,55,49,50,44,52,52,46,54,57,50,56,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,51,50,55,44,34,98,101,100,115,34,58,50,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,54,56,56,48,49,44,51,57,46,51,53,51,53,48,50,93,44,91,45,55,54,46,57,52,56,53,55,57,44,51,57,46,49,50,57,53,57,55,93,44,91,45,55,54,46,56,56,56,53,48,53,44,51,57,46,49,51,48,57,54,55,93,44,91,45,55,54,46,56,52,48,51,54,50,44,51,57,46,49,48,51,49,52,50,93,44,91,45,55,54,46,54,57,55,48,56,53,44,51,57,46,50,49,52,48,57,50,93,44,91,45,55,54,46,56,56,50,50,55,52,44,51,57,46,51,53,48,49,56,53,93,44,91,45,55,55,46,49,54,56,48,56,44,51,57,46,51,53,51,57,53,55,93,44,91,45,55,55,46,49,54,56,56,48,49,44,51,57,46,51,53,51,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,83,97,108,116,32,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,48,56,48,53,44,34,98,101,100,115,34,58,51,51,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,50,54,48,50,49,54,44,52,48,46,55,54,57,48,57,51,93,44,91,45,49,49,50,46,49,55,53,51,51,55,44,52,48,46,54,48,51,57,56,49,93,44,91,45,49,49,50,46,49,55,50,56,54,50,44,52,48,46,52,54,55,48,54,53,93,44,91,45,49,49,49,46,57,52,54,52,53,52,44,52,48,46,52,50,52,53,57,52,93,44,91,45,49,49,49,46,53,57,51,57,52,50,44,52,48,46,53,55,55,48,54,54,93,44,91,45,49,49,49,46,53,53,51,50,54,54,44,52,48,46,54,48,57,51,49,51,93,44,91,45,49,49,49,46,54,52,49,48,53,50,44,52,48,46,55,57,56,57,50,53,93,44,91,45,49,49,49,46,55,51,56,55,52,52,44,52,48,46,56,54,48,57,57,56,93,44,91,45,49,49,49,46,57,52,54,50,56,57,44,52,48,46,56,50,49,55,57,93,44,91,45,49,49,50,46,48,48,54,53,54,54,44,52,48,46,57,50,49,56,52,54,93,44,91,45,49,49,50,46,50,54,48,50,49,54,44,52,48,46,55,54,57,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,72,97,114,116,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,52,55,51,48,44,34,98,101,100,115,34,58,51,48,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,48,48,56,55,54,54,44,52,50,46,48,51,56,55,56,53,93,44,91,45,55,50,46,56,56,55,48,54,44,52,49,46,57,55,51,49,50,49,93,44,91,45,55,51,46,48,49,54,54,55,53,44,52,49,46,55,57,56,49,56,51,93,44,91,45,55,50,46,57,56,51,50,53,44,52,49,46,54,51,57,53,57,56,93,44,91,45,55,50,46,57,52,54,51,53,44,52,49,46,53,53,54,55,57,55,93,44,91,45,55,50,46,55,53,50,49,56,49,44,52,49,46,53,55,56,56,57,52,93,44,91,45,55,50,46,55,49,51,56,57,55,44,52,49,46,54,50,55,55,48,53,93,44,91,45,55,50,46,53,48,53,52,51,49,44,52,49,46,54,52,54,57,57,57,93,44,91,45,55,50,46,52,54,54,55,51,44,52,49,46,53,56,51,56,57,57,93,44,91,45,55,50,46,52,49,48,51,54,55,44,52,49,46,54,48,50,53,56,49,93,44,91,45,55,50,46,53,49,56,51,51,44,52,49,46,56,53,54,56,57,57,93,44,91,45,55,50,46,53,48,57,50,51,51,44,52,50,46,48,51,52,51,55,54,93,44,91,45,55,51,46,48,48,56,55,54,54,44,52,50,46,48,51,56,55,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,87,105,110,100,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,53,51,56,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,49,48,50,49,55,44,52,50,46,48,50,56,56,54,57,93,44,91,45,55,50,46,50,49,54,57,56,44,52,49,46,57,53,56,49,54,49,93,44,91,45,55,50,46,50,51,57,53,53,57,44,52,49,46,55,49,52,49,57,49,93,44,91,45,55,50,46,49,53,49,55,52,55,44,52,49,46,54,54,55,53,49,54,93,44,91,45,55,49,46,57,53,49,57,51,54,44,52,49,46,54,51,52,51,50,56,93,44,91,45,55,49,46,55,56,55,54,53,56,44,52,49,46,54,51,57,57,49,56,93,44,91,45,55,49,46,55,56,57,55,48,52,44,52,49,46,55,50,53,49,57,56,93,44,91,45,55,49,46,55,57,57,49,56,56,44,52,50,46,48,48,56,48,53,51,93,44,91,45,55,50,46,49,48,50,49,55,44,52,50,46,48,50,56,56,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,51,50,53,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,56,49,46,53,55,48,57,54,55,44,50,53,46,56,48,50,48,51,57,93,44,91,45,56,49,46,52,52,53,49,52,51,44,50,53,46,55,51,55,53,55,54,93,44,91,45,56,49,46,51,52,55,50,51,49,44,50,53,46,54,51,54,55,50,55,93,44,91,45,56,49,46,50,48,53,55,48,57,44,50,53,46,52,49,48,55,53,49,93,44,91,45,56,49,46,50,51,52,48,52,52,44,50,53,46,50,51,52,53,50,50,93,44,91,45,56,49,46,49,56,52,52,48,57,44,50,53,46,49,50,53,48,48,49,93,44,91,45,56,49,46,48,57,56,52,56,57,44,50,53,46,48,54,54,52,55,49,93,44,91,45,56,48,46,57,54,52,50,56,56,44,50,52,46,56,49,57,57,48,55,93,44,91,45,56,49,46,48,54,52,52,55,44,50,52,46,55,57,49,49,49,54,93,44,91,45,56,49,46,50,48,50,51,50,50,44,50,52,46,56,54,56,51,53,50,93,44,91,45,56,49,46,52,48,50,52,55,51,44,50,52,46,56,56,49,56,50,55,93,44,91,45,56,49,46,55,50,51,53,50,56,44,50,52,46,55,50,53,53,50,52,93,44,91,45,56,50,46,48,50,54,54,52,51,44,50,52,46,54,48,55,54,54,54,93,44,91,45,56,50,46,49,54,52,54,57,50,44,50,52,46,54,50,57,52,55,51,93,44,91,45,56,50,46,49,55,53,48,57,56,44,50,52,46,52,57,57,54,49,55,93,44,91,45,56,50,46,48,54,55,49,55,49,44,50,52,46,53,50,51,55,49,53,93,44,91,45,56,49,46,57,52,54,52,52,49,44,50,52,46,51,57,57,51,52,56,93,44,91,45,56,49,46,55,49,49,56,51,49,44,50,52,46,52,50,57,55,51,51,93,44,91,45,56,49,46,53,51,57,57,50,52,44,50,52,46,52,56,54,48,51,52,93,44,91,45,56,49,46,52,55,52,55,51,51,44,50,52,46,53,53,51,52,53,53,93,44,91,45,56,49,46,50,55,49,54,57,44,50,52,46,53,57,55,48,57,54,93,44,91,45,56,49,46,49,52,55,54,56,54,44,50,52,46,54,52,57,48,54,52,93,44,91,45,56,49,46,48,52,55,54,52,56,44,50,52,46,54,52,48,50,52,93,44,91,45,56,48,46,55,56,51,51,55,53,44,50,52,46,55,54,49,50,54,93,44,91,45,56,48,46,52,53,51,51,54,53,44,50,52,46,57,54,51,54,57,56,93,44,91,45,56,48,46,51,57,48,52,51,53,44,50,53,46,48,53,55,49,56,57,93,44,91,45,56,48,46,50,52,57,55,55,51,44,50,53,46,49,55,57,52,55,57,93,44,91,45,56,48,46,50,49,55,56,54,50,44,50,53,46,50,57,53,50,52,55,93,44,91,45,56,48,46,49,53,48,50,52,55,44,50,53,46,51,49,52,49,52,57,93,44,91,45,56,48,46,50,54,53,52,55,50,44,50,53,46,51,53,52,50,57,54,93,44,91,45,56,48,46,51,55,50,49,50,49,44,50,53,46,51,49,48,50,49,53,93,44,91,45,56,48,46,52,50,57,51,48,54,44,50,53,46,50,51,53,54,54,49,93,44,91,45,56,48,46,54,53,49,50,55,57,44,50,53,46,49,57,50,53,57,54,93,44,91,45,56,48,46,55,48,53,51,55,57,44,50,53,46,49,52,57,48,49,55,93,44,91,45,56,48,46,56,53,56,49,54,55,44,50,53,46,49,55,54,54,48,55,93,44,91,45,56,48,46,56,55,51,49,57,44,50,53,46,51,54,51,57,57,51,93,44,91,45,56,48,46,56,55,51,48,57,54,44,50,53,46,56,48,53,51,55,55,93,44,91,45,56,49,46,53,55,48,57,54,55,44,50,53,46,56,48,50,48,51,57,93,93,93,44,91,91,91,45,56,50,46,57,56,55,52,55,55,44,50,52,46,54,50,53,51,55,57,93,44,91,45,56,50,46,56,52,57,48,53,51,44,50,52,46,53,55,54,55,52,56,93,44,91,45,56,50,46,55,54,54,54,56,49,44,50,52,46,54,54,55,57,52,93,44,91,45,56,50,46,56,57,57,57,50,56,44,50,52,46,55,49,55,55,55,56,93,44,91,45,56,50,46,57,56,55,52,55,55,44,50,52,46,54,50,53,51,55,57,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,84,117,115,99,97,114,97,119,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,53,50,54,44,34,98,101,100,115,34,58,49,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,52,57,49,57,57,44,52,48,46,54,51,53,49,48,54,93,44,91,45,56,49,46,55,48,57,49,51,50,44,52,48,46,52,52,52,55,55,53,93,44,91,45,56,49,46,54,49,54,48,51,44,52,48,46,51,54,56,49,49,56,93,44,91,45,56,49,46,54,50,50,54,56,51,44,52,48,46,50,50,49,51,48,56,93,44,91,45,56,49,46,51,51,56,48,53,55,44,52,48,46,50,49,52,50,53,51,93,44,91,45,56,49,46,50,55,53,51,49,57,44,52,48,46,51,48,51,52,51,52,93,44,91,45,56,49,46,50,54,57,57,53,49,44,52,48,46,52,51,51,52,56,54,93,44,91,45,56,49,46,50,54,52,55,52,52,44,52,48,46,53,54,53,48,52,50,93,44,91,45,56,49,46,51,49,55,55,51,57,44,52,48,46,54,53,49,53,55,57,93,44,91,45,56,49,46,54,52,57,49,57,57,44,52,48,46,54,51,53,49,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,82,105,99,104,109,111,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,52,49,48,49,44,34,98,101,100,115,34,58,49,50,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,50,48,51,54,56,56,44,52,48,46,53,57,50,54,57,49,93,44,91,45,55,52,46,50,50,56,49,53,51,44,52,48,46,52,55,55,51,57,57,93,44,91,45,55,52,46,48,52,50,49,49,50,44,52,48,46,53,48,57,50,57,57,93,44,91,45,55,52,46,48,51,54,50,57,51,44,52,48,46,53,53,49,48,52,50,93,44,91,45,55,52,46,48,53,53,55,51,57,44,52,48,46,54,53,49,55,54,93,44,91,45,55,52,46,49,54,49,52,50,56,44,52,48,46,54,52,52,49,52,56,93,44,91,45,55,52,46,50,48,51,54,56,56,44,52,48,46,53,57,50,54,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,72,105,103,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,48,48,55,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,57,48,56,55,56,44,51,57,46,51,55,56,55,51,54,93,44,91,45,56,51,46,55,56,52,55,57,51,44,51,57,46,50,54,50,56,56,56,93,44,91,45,56,51,46,56,54,53,54,55,57,44,51,57,46,50,52,55,51,51,51,93,44,91,45,56,51,46,56,55,50,50,49,52,44,51,57,46,48,50,49,51,48,52,93,44,91,45,56,51,46,54,55,51,48,49,56,44,51,57,46,48,50,48,52,51,93,44,91,45,56,51,46,51,56,53,54,51,55,44,51,57,46,48,53,53,49,57,55,93,44,91,45,56,51,46,51,53,51,53,51,49,44,51,57,46,49,57,55,53,56,53,93,44,91,45,56,51,46,51,55,50,55,49,52,44,51,57,46,51,55,55,52,49,54,93,44,91,45,56,51,46,53,57,48,56,55,56,44,51,57,46,51,55,56,55,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,97,107,101,32,111,102,32,116,104,101,32,87,111,111,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,57,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,49,57,56,57,53,44,52,56,46,57,57,56,55,55,93,44,91,45,57,53,46,50,51,53,54,48,54,44,52,56,46,56,56,49,52,53,93,44,91,45,57,53,46,48,57,49,50,56,50,44,52,56,46,57,49,57,49,55,51,93,44,91,45,57,53,46,48,56,57,56,54,51,44,52,56,46,55,49,51,48,54,50,93,44,91,45,57,53,46,51,52,50,55,51,44,52,56,46,55,49,51,48,50,56,93,44,91,45,57,53,46,51,52,50,53,52,44,52,56,46,53,52,48,50,49,49,93,44,91,45,57,53,46,50,49,49,57,54,54,44,52,56,46,53,51,57,57,54,49,93,44,91,45,57,53,46,50,49,48,57,53,51,44,52,56,46,51,54,53,57,55,49,93,44,91,45,57,52,46,52,50,56,55,48,50,44,52,56,46,51,54,55,51,51,51,93,44,91,45,57,52,46,52,51,48,50,55,51,44,52,56,46,55,48,48,57,48,57,93,44,91,45,57,52,46,53,57,50,48,57,57,44,52,56,46,55,49,57,49,50,93,44,91,45,57,52,46,54,57,48,57,48,50,44,52,56,46,55,55,55,57,57,57,93,44,91,45,57,52,46,54,56,52,51,52,55,44,52,56,46,56,56,51,57,53,56,93,44,91,45,57,52,46,56,50,53,53,51,53,44,52,57,46,50,57,52,51,53,52,93,44,91,45,57,52,46,57,53,50,48,54,57,44,52,57,46,51,54,56,55,51,51,93,44,91,45,57,53,46,49,53,51,51,57,53,44,52,57,46,51,56,52,52,55,57,93,44,91,45,57,53,46,49,53,51,49,57,49,44,52,56,46,57,57,56,56,55,93,44,91,45,57,53,46,51,49,57,56,57,53,44,52,56,46,57,57,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,53,53,49,44,34,98,101,100,115,34,58,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,48,48,55,55,49,50,44,52,51,46,49,49,48,57,51,51,93,44,91,45,49,49,51,46,48,48,55,55,54,44,52,50,46,56,54,51,48,53,49,93,44,91,45,49,49,50,46,56,49,54,53,55,56,44,52,50,46,56,54,51,50,51,49,93,44,91,45,49,49,50,46,55,53,48,53,54,50,44,52,50,46,57,53,49,53,50,56,93,44,91,45,49,49,50,46,54,53,54,53,53,50,44,52,51,46,48,50,49,57,52,52,93,44,91,45,49,49,50,46,48,54,51,48,50,51,44,52,51,46,48,50,50,51,54,52,93,44,91,45,49,49,49,46,53,56,57,52,56,57,44,52,51,46,48,50,48,48,53,50,93,44,91,45,49,49,49,46,53,56,56,48,52,57,44,52,51,46,50,56,49,56,52,49,93,44,91,45,49,49,49,46,56,50,50,52,57,52,44,52,51,46,50,56,50,50,56,54,93,44,91,45,49,49,49,46,56,50,50,52,55,53,44,52,51,46,51,54,54,48,51,53,93,44,91,45,49,49,50,46,48,52,51,56,50,49,44,52,51,46,51,54,54,55,48,56,93,44,91,45,49,49,50,46,49,48,51,50,57,56,44,52,51,46,52,50,53,48,53,55,93,44,91,45,49,49,50,46,53,50,48,48,50,52,44,52,51,46,52,50,53,49,55,93,44,91,45,49,49,50,46,53,49,57,56,54,49,44,52,51,46,54,50,54,54,50,51,93,44,91,45,49,49,50,46,54,57,55,49,50,50,44,52,51,46,54,50,51,49,52,93,44,91,45,49,49,50,46,57,51,54,56,51,53,44,52,51,46,52,52,57,51,56,54,93,44,91,45,49,49,51,46,48,48,55,51,49,56,44,52,51,46,50,56,52,55,55,56,93,44,91,45,49,49,51,46,48,48,55,55,49,50,44,52,51,46,49,49,48,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,97,98,111,32,82,111,106,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,48,53,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,53,57,55,51,51,44,49,56,46,49,53,51,50,50,55,93,44,91,45,54,55,46,50,50,53,54,54,52,44,49,56,46,49,57,54,49,53,51,93,44,91,45,54,55,46,50,54,48,54,56,44,49,55,46,57,50,56,53,52,93,44,91,45,54,55,46,49,48,56,54,51,53,44,49,55,46,56,57,53,52,48,55,93,44,91,45,54,55,46,49,48,57,48,52,52,44,49,56,46,48,53,54,48,56,53,93,44,91,45,54,55,46,49,48,48,52,57,50,44,49,56,46,49,48,54,51,57,53,93,44,91,45,54,55,46,49,53,57,55,51,51,44,49,56,46,49,53,51,50,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,117,109,97,99,97,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,52,54,54,44,34,98,101,100,115,34,58,50,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,56,50,54,48,54,51,44,49,56,46,50,48,48,52,48,56,93,44,91,45,54,53,46,56,55,55,54,49,53,44,49,56,46,49,49,56,49,54,55,93,44,91,45,54,53,46,55,51,57,49,49,50,44,49,56,46,48,55,48,55,55,56,93,44,91,45,54,53,46,54,57,57,51,51,53,44,49,56,46,49,49,54,49,49,51,93,44,91,45,54,53,46,56,50,54,48,54,51,44,49,56,46,50,48,48,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,74,117,110,99,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,49,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,49,56,53,51,53,44,49,56,46,50,55,48,49,51,93,44,91,45,54,53,46,57,53,49,48,49,57,44,49,56,46,50,50,57,50,57,50,93,44,91,45,54,53,46,57,50,56,51,52,49,44,49,56,46,49,52,50,56,52,53,93,44,91,45,54,53,46,56,53,50,54,49,54,44,49,56,46,50,53,52,57,55,50,93,44,91,45,54,53,46,57,49,56,53,51,53,44,49,56,46,50,55,48,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,56,52,48,50,44,34,98,101,100,115,34,58,49,54,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,54,52,53,55,53,44,51,53,46,48,54,56,51,56,93,44,91,45,56,50,46,54,50,53,53,57,57,44,51,53,46,48,54,52,54,56,54,93,44,91,45,56,50,46,52,57,52,48,48,55,44,51,52,46,56,57,54,50,49,53,93,44,91,45,56,50,46,52,56,55,50,48,51,44,51,52,46,56,49,56,56,49,49,93,44,91,45,56,50,46,52,54,54,53,48,51,44,51,52,46,54,54,53,49,56,52,93,44,91,45,56,50,46,51,49,51,57,57,54,44,51,52,46,52,56,52,48,48,50,93,44,91,45,56,50,46,50,51,56,48,53,52,44,51,52,46,53,56,54,57,53,54,93,44,91,45,56,50,46,49,52,54,55,57,50,44,51,52,46,55,56,53,53,53,52,93,44,91,45,56,50,46,50,50,54,51,50,53,44,51,52,46,56,53,50,52,56,56,93,44,91,45,56,50,46,50,49,53,57,52,55,44,51,53,46,49,57,54,50,50,50,93,44,91,45,56,50,46,51,53,51,55,53,52,44,51,53,46,49,57,48,57,54,55,93,44,91,45,56,50,46,53,55,52,56,51,57,44,51,53,46,49,52,53,52,52,57,93,44,91,45,56,50,46,55,54,52,53,55,53,44,51,53,46,48,54,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,121,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,51,48,56,52,53,44,52,51,46,55,49,51,56,53,54,93,44,91,45,57,57,46,56,51,55,56,50,53,44,52,51,46,54,56,57,48,55,49,93,44,91,45,57,57,46,54,50,51,53,56,55,44,52,51,46,55,52,50,52,49,52,93,44,91,45,57,57,46,54,50,51,53,55,56,44,52,51,46,52,57,57,56,53,57,93,44,91,45,57,57,46,53,51,52,52,56,49,44,52,51,46,52,57,57,56,48,49,93,44,91,45,57,57,46,50,57,55,57,57,56,44,52,51,46,52,57,57,54,54,57,93,44,91,45,57,57,46,50,57,55,56,56,50,44,52,51,46,52,57,57,56,53,54,93,44,91,45,57,57,46,52,48,54,57,54,49,44,52,51,46,55,48,53,50,55,55,93,44,91,45,57,57,46,52,49,48,49,53,44,52,51,46,55,55,52,54,49,57,93,44,91,45,57,57,46,51,49,48,56,50,54,44,52,51,46,56,53,53,50,49,54,93,44,91,45,57,57,46,51,53,53,56,54,52,44,52,51,46,57,51,52,51,55,49,93,44,91,45,57,57,46,51,53,51,55,50,44,52,51,46,57,57,53,51,50,57,93,44,91,45,57,57,46,53,54,50,53,51,54,44,52,52,46,49,48,49,53,49,57,93,44,91,45,57,57,46,53,55,54,53,55,49,44,52,52,46,49,57,50,52,50,49,93,44,91,45,57,57,46,54,54,51,53,48,56,44,52,52,46,50,49,55,53,49,55,93,44,91,45,57,57,46,54,53,52,53,51,54,44,52,52,46,49,48,49,54,56,57,93,44,91,45,57,57,46,56,56,52,52,56,53,44,52,52,46,49,50,57,53,56,50,93,44,91,45,57,57,46,57,51,56,50,49,55,44,52,52,46,49,57,53,49,57,53,93,44,91,45,49,48,48,46,51,54,55,50,52,55,44,52,52,46,49,57,52,54,50,49,93,44,91,45,49,48,48,46,51,54,55,50,48,55,44,52,52,46,49,54,56,54,57,52,93,44,91,45,49,48,48,46,51,54,54,49,55,52,44,52,51,46,56,52,54,57,55,56,93,44,91,45,49,48,48,46,51,51,56,57,55,44,52,51,46,55,49,54,57,52,50,93,44,91,45,49,48,48,46,50,51,48,56,52,53,44,52,51,46,55,49,51,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,84,114,101,109,112,101,97,108,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,52,51,56,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,50,57,49,48,49,44,52,52,46,53,57,54,49,57,55,93,44,91,45,57,49,46,53,50,57,55,52,49,44,52,52,46,50,52,54,55,55,55,93,44,91,45,57,49,46,54,49,50,51,51,49,44,52,52,46,49,54,56,56,48,57,93,44,91,45,57,49,46,53,53,57,48,48,52,44,52,52,46,48,50,53,51,49,53,93,44,91,45,57,49,46,52,50,53,49,56,56,44,52,51,46,57,56,52,51,50,50,93,44,91,45,57,49,46,51,48,55,52,55,56,44,52,52,46,48,54,52,56,55,54,93,44,91,45,57,49,46,49,53,49,57,51,50,44,52,52,46,48,55,57,54,54,53,93,44,91,45,57,49,46,49,54,53,54,49,57,44,52,52,46,53,57,54,57,56,55,93,44,91,45,57,49,46,53,50,57,49,48,49,44,52,52,46,53,57,54,49,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,89,111,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,57,55,55,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,51,57,53,48,53,54,44,51,56,46,56,54,52,50,52,53,93,44,91,45,49,50,50,46,50,56,55,57,57,56,44,51,56,46,56,51,57,57,51,49,93,44,91,45,49,50,50,46,49,48,51,50,56,49,44,51,56,46,53,49,51,51,52,56,93,44,91,45,49,50,49,46,57,52,48,50,56,53,44,51,56,46,53,51,51,51,56,52,93,44,91,45,49,50,49,46,54,57,53,49,52,55,44,51,56,46,53,50,51,49,53,54,93,44,91,45,49,50,49,46,54,57,52,48,49,52,44,51,56,46,51,49,52,56,53,54,93,44,91,45,49,50,49,46,53,57,51,50,55,51,44,51,56,46,51,49,51,48,56,57,93,44,91,45,49,50,49,46,53,48,50,57,56,50,44,51,56,46,52,52,48,55,49,56,93,44,91,45,49,50,49,46,54,48,50,56,57,52,44,51,56,46,55,51,53,56,51,56,93,44,91,45,49,50,49,46,55,50,51,51,52,54,44,51,56,46,56,48,51,55,53,57,93,44,91,45,49,50,49,46,56,51,53,52,56,56,44,51,56,46,57,50,52,52,56,49,93,44,91,45,49,50,50,46,51,52,48,49,55,50,44,51,56,46,57,50,52,50,52,54,93,44,91,45,49,50,50,46,51,57,53,48,53,54,44,51,56,46,56,54,52,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,51,49,34,44,34,78,65,77,69,34,58,34,83,116,101,114,108,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,54,55,49,50,50,44,51,49,46,54,53,48,56,53,52,93,44,91,45,49,48,49,46,50,54,55,54,51,44,51,49,46,53,53,54,52,54,50,93,44,91,45,49,48,48,46,56,54,53,50,53,54,44,51,49,46,53,54,50,50,57,52,93,44,91,45,49,48,48,46,56,50,53,51,55,44,51,49,46,54,57,54,49,53,53,93,44,91,45,49,48,48,46,56,50,49,53,57,52,44,51,50,46,48,56,54,54,49,93,44,91,45,49,48,49,46,49,56,51,57,57,55,44,51,50,46,48,56,55,50,48,56,93,44,91,45,49,48,49,46,50,54,52,50,49,54,44,51,50,46,48,56,55,49,51,54,93,44,91,45,49,48,49,46,50,54,55,49,50,50,44,51,49,46,54,53,48,56,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,57,53,34,44,34,78,65,77,69,34,58,34,87,105,110,107,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,48,50,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,51,50,55,53,51,56,44,51,49,46,54,53,49,52,50,93,44,91,45,49,48,50,46,55,57,56,57,51,57,44,51,49,46,54,53,49,55,56,51,93,44,91,45,49,48,50,46,55,57,57,48,56,54,44,51,50,46,48,56,53,55,57,53,93,44,91,45,49,48,51,46,48,54,52,53,49,54,44,51,50,46,48,56,55,48,53,49,93,44,91,45,49,48,51,46,48,54,52,53,49,44,51,50,46,48,48,48,52,50,52,93,44,91,45,49,48,51,46,51,50,54,53,48,49,44,51,50,46,48,48,48,51,54,57,93,44,91,45,49,48,51,46,51,50,55,53,51,56,44,51,49,46,54,53,49,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,48,55,51,51,54,44,52,51,46,57,57,52,53,51,93,44,91,45,49,48,50,46,48,49,56,56,56,55,44,52,51,46,55,48,56,54,49,56,93,44,91,45,49,48,50,46,49,51,57,49,53,56,44,52,51,46,55,48,48,57,52,56,93,44,91,45,49,48,50,46,49,51,57,48,53,49,44,52,51,46,52,55,54,54,55,54,93,44,91,45,49,48,50,46,49,49,48,56,49,57,44,52,51,46,51,56,57,57,48,50,93,44,91,45,49,48,49,46,50,50,56,50,51,52,44,52,51,46,51,56,57,49,56,53,93,44,91,45,49,48,49,46,50,50,56,51,51,49,44,52,51,46,55,57,53,48,52,57,93,44,91,45,49,48,49,46,48,54,52,51,50,54,44,52,51,46,56,52,49,48,57,93,44,91,45,49,48,49,46,48,54,52,48,54,56,44,52,51,46,57,57,52,57,50,57,93,44,91,45,49,48,50,46,48,48,55,51,51,54,44,52,51,46,57,57,52,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,83,101,118,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,49,56,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,48,49,52,48,56,51,44,51,57,46,48,52,53,53,49,56,93,44,91,45,49,49,50,46,50,50,52,52,54,49,44,51,56,46,56,54,52,56,48,51,93,44,91,45,49,49,50,46,50,49,56,51,53,54,44,51,56,46,55,50,55,51,54,49,93,44,91,45,49,49,50,46,51,48,57,57,53,51,44,51,56,46,54,55,54,50,57,93,44,91,45,49,49,50,46,52,52,55,53,49,55,44,51,56,46,54,56,49,50,55,93,44,91,45,49,49,50,46,53,49,53,51,57,52,44,51,56,46,53,55,50,56,52,53,93,44,91,45,49,49,50,46,53,49,56,52,57,53,44,51,56,46,53,49,48,52,49,51,93,44,91,45,49,49,49,46,55,54,54,51,57,51,44,51,56,46,53,48,50,50,52,51,93,44,91,45,49,49,49,46,51,48,53,54,54,53,44,51,56,46,53,49,48,49,54,57,93,44,91,45,49,49,49,46,50,57,57,51,54,44,51,57,46,48,51,50,50,54,52,93,44,91,45,49,49,49,46,56,53,51,50,57,55,44,51,57,46,48,51,50,57,56,52,93,44,91,45,49,49,50,46,48,49,52,48,56,51,44,51,57,46,48,52,53,53,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,54,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,54,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,101,115,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,50,55,48,54,55,53,44,51,55,46,51,50,48,55,53,54,93,44,91,45,55,54,46,57,55,50,52,51,57,44,51,55,46,50,52,56,53,48,49,93,44,91,45,55,54,46,56,56,51,49,53,54,44,51,55,46,50,50,51,48,53,55,93,44,91,45,55,54,46,57,48,52,52,55,49,44,51,55,46,51,55,55,54,54,53,93,44,91,45,55,55,46,49,55,55,51,50,52,44,51,55,46,52,57,48,54,93,44,91,45,55,55,46,50,52,57,54,54,53,44,51,55,46,51,56,50,93,44,91,45,55,55,46,50,55,48,54,55,53,44,51,55,46,51,50,48,55,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,111,99,116,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,48,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,51,49,51,55,57,44,51,50,46,50,50,55,54,54,54,93,44,91,45,56,56,46,52,55,51,50,50,55,44,51,49,46,56,57,51,56,53,54,93,44,91,45,56,56,46,52,54,52,52,51,44,51,49,46,54,57,55,57,53,50,93,44,91,45,56,56,46,48,56,56,50,56,56,44,51,49,46,54,57,57,51,48,51,93,44,91,45,56,56,46,49,56,48,51,56,52,44,51,49,46,56,49,52,53,52,54,93,44,91,45,56,56,46,48,55,51,52,57,44,51,49,46,57,57,48,49,56,50,93,44,91,45,56,56,46,48,48,55,48,55,55,44,51,50,46,49,56,53,51,49,51,93,44,91,45,56,56,46,48,49,57,49,52,53,44,51,50,46,50,56,53,50,52,93,44,91,45,56,55,46,57,51,48,54,54,49,44,51,50,46,51,49,48,53,55,52,93,44,91,45,56,56,46,52,50,49,52,53,51,44,51,50,46,51,48,56,54,56,93,44,91,45,56,56,46,52,51,49,51,55,57,44,51,50,46,50,50,55,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,52,48,57,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,51,49,49,52,53,44,51,56,46,56,53,50,53,48,55,93,44,91,45,56,55,46,53,49,57,54,49,44,51,56,46,54,57,55,49,57,56,93,44,91,45,56,55,46,54,53,49,53,50,57,44,51,56,46,53,54,56,49,54,54,93,44,91,45,56,55,46,55,52,51,54,57,49,44,51,56,46,52,49,52,51,56,55,93,44,91,45,56,55,46,52,54,50,56,57,50,44,51,56,46,53,51,51,53,49,57,93,44,91,45,56,55,46,50,52,50,48,57,55,44,51,56,46,53,52,52,57,51,93,44,91,45,56,55,46,50,55,56,53,53,51,44,51,56,46,54,57,49,51,52,51,93,44,91,45,56,55,46,50,52,54,54,44,51,56,46,56,48,55,55,48,49,93,44,91,45,56,55,46,48,57,56,55,55,49,44,51,56,46,57,48,51,57,55,52,93,44,91,45,56,55,46,50,52,49,48,50,55,44,51,56,46,57,48,55,56,55,52,93,44,91,45,56,55,46,53,50,50,57,51,57,44,51,56,46,57,48,50,51,57,93,44,91,45,56,55,46,53,51,49,49,52,53,44,51,56,46,56,53,50,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,68,97,119,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,48,52,44,34,98,101,100,115,34,58,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,50,52,50,51,53,44,52,49,46,48,52,54,53,57,55,93,44,91,45,49,48,48,46,50,50,51,51,49,49,44,52,48,46,55,48,48,50,53,52,93,44,91,45,57,57,46,57,56,49,55,52,51,44,52,48,46,55,48,48,48,48,51,93,44,91,45,57,57,46,54,52,51,52,54,50,44,52,48,46,54,56,52,57,49,49,93,44,91,45,57,57,46,52,49,55,51,49,54,44,52,48,46,54,55,48,56,50,53,93,44,91,45,57,57,46,52,50,53,57,56,54,44,52,49,46,48,52,54,52,55,49,93,44,91,45,49,48,48,46,50,50,52,50,51,53,44,52,49,46,48,52,54,53,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,70,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,56,52,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,50,55,48,57,44,51,55,46,57,49,52,48,49,56,93,44,91,45,49,48,48,46,50,49,54,50,50,57,44,51,55,46,52,55,53,49,57,93,44,91,45,49,48,48,46,49,48,55,50,52,56,44,51,55,46,52,55,52,56,51,54,93,44,91,45,57,57,46,53,53,54,49,49,57,44,51,55,46,52,54,55,55,50,50,93,44,91,45,57,57,46,53,53,57,53,56,44,51,55,46,55,51,52,56,56,56,93,44,91,45,57,57,46,53,54,57,56,55,57,44,51,55,46,57,49,51,48,49,54,93,44,91,45,49,48,48,46,50,50,55,48,57,44,51,55,46,57,49,52,48,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,48,54,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,54,55,54,54,44,52,56,46,51,56,57,50,57,56,93,44,91,45,49,48,52,46,48,52,52,48,52,52,44,52,55,46,57,57,54,48,56,50,93,44,91,45,49,48,51,46,57,49,57,55,56,57,44,52,55,46,57,53,53,57,53,93,44,91,45,49,48,51,46,55,56,52,51,57,52,44,52,56,46,48,53,57,52,57,49,93,44,91,45,49,48,51,46,54,48,56,49,55,52,44,52,56,46,49,49,52,49,50,52,93,44,91,45,49,48,51,46,52,56,53,48,55,50,44,52,56,46,48,48,54,55,50,53,93,44,91,45,49,48,51,46,50,55,55,50,54,54,44,52,56,46,48,53,56,48,50,51,93,44,91,45,49,48,51,46,50,48,49,56,57,44,52,56,46,49,51,53,50,48,56,93,44,91,45,49,48,50,46,56,50,56,52,55,55,44,52,56,46,49,50,51,54,54,52,93,44,91,45,49,48,50,46,56,50,56,49,54,51,44,52,56,46,51,55,50,54,52,49,93,44,91,45,49,48,50,46,56,56,53,55,54,51,44,52,56,46,53,52,54,51,57,93,44,91,45,49,48,50,46,56,56,53,55,55,53,44,52,56,46,54,51,51,50,57,56,93,44,91,45,49,48,52,46,48,52,55,57,50,52,44,52,56,46,54,51,51,57,49,49,93,44,91,45,49,48,52,46,48,52,54,55,54,54,44,52,56,46,51,56,57,50,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,52,50,48,50,44,34,98,101,100,115,34,58,49,51,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,48,53,57,51,53,44,52,55,46,50,51,57,57,55,55,93,44,91,45,57,55,46,54,56,49,53,48,56,44,52,54,46,57,55,56,52,56,49,93,44,91,45,57,55,46,54,56,50,48,48,54,44,52,54,46,54,50,57,57,50,56,93,44,91,45,57,55,46,50,55,57,57,52,56,44,52,54,46,54,50,57,51,52,56,93,44,91,45,57,54,46,55,57,56,49,50,56,44,52,54,46,54,51,48,51,50,54,93,44,91,45,57,54,46,55,54,49,54,57,51,44,52,54,46,57,51,52,53,53,56,93,44,91,45,57,54,46,56,51,52,56,51,57,44,52,55,46,48,48,55,50,53,52,93,44,91,45,57,54,46,56,52,48,49,50,50,44,52,55,46,49,53,48,52,55,53,93,44,91,45,57,54,46,56,51,51,51,57,51,44,52,55,46,50,51,56,48,52,49,93,44,91,45,57,55,46,52,53,49,53,49,50,44,52,55,46,50,51,57,48,54,49,93,44,91,45,57,55,46,55,48,53,57,51,53,44,52,55,46,50,51,57,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,49,50,54,57,55,44,51,55,46,53,57,57,54,50,53,93,44,91,45,56,56,46,52,49,53,52,48,54,44,51,55,46,52,50,51,57,55,50,93,44,91,45,56,56,46,51,53,56,52,54,54,44,51,55,46,52,48,52,55,53,50,93,44,91,45,56,56,46,50,55,57,50,48,55,44,51,55,46,52,53,51,50,57,50,93,44,91,45,56,56,46,48,54,49,51,51,50,44,51,55,46,53,48,53,51,51,50,93,44,91,45,56,56,46,49,51,51,52,51,52,44,51,55,46,53,55,52,51,51,56,93,44,91,45,56,56,46,51,55,53,52,51,52,44,51,55,46,53,57,57,53,57,53,93,44,91,45,56,56,46,52,49,50,54,57,55,44,51,55,46,53,57,57,54,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,114,116,104,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,57,56,53,53,50,51,44,52,49,46,55,52,50,50,57,93,44,91,45,49,48,49,46,57,56,52,54,51,44,52,49,46,51,57,52,55,49,50,93,44,91,45,49,48,49,46,52,48,55,50,54,44,52,49,46,51,57,53,52,49,54,93,44,91,45,49,48,49,46,52,48,54,52,54,54,44,52,49,46,55,52,51,50,93,44,91,45,49,48,49,46,52,50,53,57,50,44,52,49,46,55,52,51,48,53,57,93,44,91,45,49,48,49,46,57,56,53,53,50,51,44,52,49,46,55,52,50,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,70,114,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,51,57,52,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,52,57,44,50,57,46,48,57,48,52,51,52,93,44,91,45,57,57,46,52,49,51,56,56,44,50,57,46,48,57,49,51,51,53,93,44,91,45,57,57,46,52,48,57,48,50,49,44,50,56,46,54,52,48,53,54,54,93,44,91,45,57,57,46,51,57,53,55,51,54,44,50,56,46,54,52,48,55,56,52,93,44,91,45,57,56,46,56,48,48,56,52,49,44,50,56,46,54,52,55,52,56,55,93,44,91,45,57,56,46,56,48,52,57,44,50,57,46,48,57,48,52,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,48,48,49,44,34,98,101,100,115,34,58,49,51,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,51,49,51,55,57,44,52,49,46,56,54,49,56,53,49,93,44,91,45,57,49,46,56,50,57,50,51,49,44,52,49,46,53,49,49,52,53,55,93,44,91,45,57,49,46,53,50,50,52,56,44,52,49,46,53,49,49,48,51,53,93,44,91,45,57,49,46,52,56,51,57,57,53,44,52,49,46,52,50,51,56,52,56,93,44,91,45,57,49,46,51,54,56,53,50,49,44,52,49,46,52,50,51,49,55,56,93,44,91,45,57,49,46,51,54,54,52,52,56,44,52,49,46,53,57,56,51,55,51,93,44,91,45,57,49,46,51,54,54,50,50,49,44,52,49,46,56,54,48,48,54,57,93,44,91,45,57,49,46,56,51,49,51,55,57,44,52,49,46,56,54,49,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,78,101,111,115,104,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,56,56,48,56,50,44,51,55,46,55,51,50,52,55,54,93,44,91,45,57,53,46,53,50,53,52,57,57,44,51,55,46,55,51,50,55,53,57,93,44,91,45,57,53,46,53,50,53,53,54,44,51,55,46,51,56,51,57,55,57,93,44,91,45,57,53,46,53,50,49,49,51,44,51,55,46,51,56,51,57,57,93,44,91,45,57,53,46,48,56,56,49,56,57,44,51,55,46,51,56,51,56,51,55,93,44,91,45,57,53,46,48,56,56,48,49,50,44,51,55,46,54,55,52,53,49,57,93,44,91,45,57,53,46,48,56,56,48,56,50,44,51,55,46,55,51,50,52,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,117,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,54,53,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,48,51,48,56,53,56,44,51,56,46,55,50,53,53,50,52,93,44,91,45,56,51,46,48,55,51,54,51,51,44,51,56,46,53,57,48,52,51,56,93,44,91,45,56,51,46,49,54,54,52,49,57,44,51,56,46,53,48,51,57,54,53,93,44,91,45,56,50,46,57,54,55,54,51,53,44,51,56,46,51,57,52,49,51,56,93,44,91,45,56,50,46,56,49,55,52,53,52,44,51,56,46,51,55,51,57,51,53,93,44,91,45,56,50,46,54,54,53,52,49,49,44,51,56,46,53,48,53,55,56,55,93,44,91,45,56,50,46,56,49,53,57,55,57,44,51,56,46,53,55,48,56,48,50,93,44,91,45,56,50,46,56,57,55,49,56,57,44,51,56,46,55,53,54,50,49,52,93,44,91,45,56,51,46,48,51,48,56,53,56,44,51,56,46,55,50,53,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,76,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,44,91,45,57,53,46,48,55,55,56,55,54,44,51,56,46,48,51,55,55,48,54,93,44,91,45,57,52,46,54,49,52,48,56,57,44,51,56,46,48,51,55,48,53,55,93,44,91,45,57,52,46,54,49,52,48,54,49,44,51,56,46,48,54,48,48,53,54,93,44,91,45,57,52,46,54,49,51,50,51,50,44,51,56,46,51,56,56,55,49,56,93,44,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,49,55,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,52,51,50,49,53,44,51,56,46,49,53,49,50,56,93,44,91,45,49,49,50,46,52,52,52,50,49,52,44,51,56,46,49,53,48,48,48,49,93,44,91,45,49,49,50,46,52,55,56,54,56,44,51,56,46,49,52,55,52,49,57,93,44,91,45,49,49,50,46,52,54,56,49,55,55,44,51,55,46,56,57,48,52,54,52,93,44,91,45,49,49,50,46,53,55,56,51,57,55,44,51,55,46,56,56,50,49,52,55,93,44,91,45,49,49,50,46,54,56,57,50,50,49,44,51,55,46,56,48,53,53,57,93,44,91,45,49,49,50,46,54,56,51,55,53,44,51,55,46,53,52,51,54,57,50,93,44,91,45,49,49,49,46,56,52,48,56,48,57,44,51,55,46,53,51,53,55,56,57,93,44,91,45,49,49,48,46,54,52,54,51,57,52,44,51,55,46,53,52,49,48,54,51,93,44,91,45,49,49,48,46,53,48,49,53,57,52,44,51,55,46,54,53,93,44,91,45,49,49,48,46,52,51,55,53,51,56,44,51,55,46,56,48,54,57,50,93,44,91,45,49,49,48,46,51,54,52,49,52,54,44,51,55,46,56,57,50,49,56,53,93,44,91,45,49,49,48,46,50,49,52,57,52,57,44,51,55,46,56,57,50,53,53,53,93,44,91,45,49,49,48,46,48,48,57,52,57,52,44,51,56,46,49,48,57,54,53,54,93,44,91,45,49,48,57,46,57,50,55,57,57,53,44,51,56,46,49,53,49,56,56,52,93,44,91,45,49,49,48,46,54,56,55,52,48,54,44,51,56,46,49,53,49,51,56,53,93,44,91,45,49,49,49,46,56,52,51,50,49,53,44,51,56,46,49,53,49,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,69,117,114,101,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,53,56,54,55,56,54,44,52,49,46,48,48,48,51,57,56,93,44,91,45,49,49,54,46,53,57,54,56,49,53,44,52,48,46,57,52,54,52,54,93,44,91,45,49,49,54,46,53,57,48,51,57,54,44,52,48,46,48,55,50,50,55,55,93,44,91,45,49,49,54,46,54,48,48,57,52,54,44,51,57,46,49,54,49,52,54,51,93,44,91,45,49,49,53,46,57,48,55,48,55,49,44,51,57,46,49,54,49,56,52,56,93,44,91,45,49,49,53,46,57,48,55,54,53,57,44,51,57,46,52,54,52,52,51,50,93,44,91,45,49,49,53,46,56,49,51,52,55,54,44,51,57,46,53,57,51,53,50,49,93,44,91,45,49,49,53,46,56,51,51,49,48,49,44,51,57,46,55,50,57,52,49,50,93,44,91,45,49,49,53,46,55,57,52,56,54,52,44,51,57,46,56,53,51,49,48,52,93,44,91,45,49,49,53,46,56,51,52,57,54,57,44,52,48,46,49,50,55,56,52,50,93,44,91,45,49,49,54,46,48,48,48,56,57,55,44,52,48,46,49,50,55,51,55,54,93,44,91,45,49,49,54,46,49,53,55,56,51,52,44,52,48,46,54,54,54,51,56,57,93,44,91,45,49,49,54,46,49,53,56,49,53,53,44,52,48,46,57,57,57,57,49,50,93,44,91,45,49,49,54,46,53,56,54,55,56,54,44,52,49,46,48,48,48,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,97,121,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,51,52,53,51,54,53,44,52,48,46,54,57,56,48,57,51,93,44,91,45,49,48,49,46,51,52,50,55,56,56,44,52,48,46,51,53,48,52,52,52,93,44,91,45,49,48,49,46,51,50,51,51,53,51,44,52,48,46,51,53,48,53,53,51,93,44,91,45,49,48,48,46,55,55,55,51,55,54,44,52,48,46,51,52,57,52,54,54,93,44,91,45,49,48,48,46,55,55,55,56,51,51,44,52,48,46,55,48,48,49,51,53,93,44,91,45,49,48,49,46,50,52,55,57,54,51,44,52,48,46,54,57,55,56,48,50,93,44,91,45,49,48,49,46,51,52,53,51,54,53,44,52,48,46,54,57,56,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,80,104,105,108,108,105,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,49,56,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,53,49,52,49,54,44,52,48,46,55,52,57,53,56,54,93,44,91,45,49,48,50,46,54,53,49,51,49,44,52,48,46,55,52,57,52,48,50,93,44,91,45,49,48,50,46,54,54,52,56,48,52,44,52,48,46,52,51,56,52,55,51,93,44,91,45,49,48,50,46,48,53,49,52,54,53,44,52,48,46,52,52,48,48,48,56,93,44,91,45,49,48,50,46,48,53,49,52,53,55,44,52,48,46,54,57,55,53,51,57,93,44,91,45,49,48,50,46,48,53,49,52,49,54,44,52,48,46,55,52,57,53,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,56,51,48,53,52,44,51,51,46,56,48,50,49,57,56,93,44,91,45,57,50,46,53,56,54,56,56,54,44,51,51,46,55,51,49,50,51,52,93,44,91,45,57,50,46,55,53,57,48,51,53,44,51,51,46,53,51,48,57,53,52,93,44,91,45,57,50,46,55,48,53,48,57,51,44,51,51,46,52,51,49,50,49,53,93,44,91,45,57,50,46,53,54,55,49,53,54,44,51,51,46,51,54,55,50,93,44,91,45,57,50,46,52,52,49,54,55,55,44,51,51,46,50,55,51,54,52,55,93,44,91,45,57,50,46,51,53,48,52,51,50,44,51,51,46,50,57,56,57,52,49,93,44,91,45,57,50,46,51,56,50,48,54,44,51,51,46,51,52,53,57,55,49,93,44,91,45,57,50,46,51,49,49,48,55,57,44,51,51,46,52,57,57,55,56,50,93,44,91,45,57,50,46,51,51,48,56,51,57,44,51,51,46,55,48,55,56,48,54,93,44,91,45,57,50,46,51,51,52,50,52,57,44,51,51,46,55,57,53,48,54,53,93,44,91,45,57,50,46,53,56,51,48,53,52,44,51,51,46,56,48,50,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,57,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,48,34,44,34,78,65,77,69,34,58,34,70,97,105,114,98,97,110,107,115,32,78,111,114,116,104,32,83,116,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,54,53,51,44,34,98,101,100,115,34,58,49,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,52,46,48,54,57,48,50,57,44,54,52,46,54,56,51,53,54,50,93,44,91,45,49,52,52,46,49,48,52,55,52,52,44,54,52,46,56,52,57,50,51,49,93,44,91,45,49,52,51,46,57,50,49,48,57,52,44,54,53,46,48,53,56,55,56,93,44,91,45,49,52,51,46,57,55,51,54,51,57,44,54,53,46,49,49,57,51,48,52,93,44,91,45,49,52,52,46,51,51,49,51,55,55,44,54,53,46,49,48,55,55,48,55,93,44,91,45,49,52,52,46,52,54,48,48,50,44,54,53,46,48,54,48,55,49,49,93,44,91,45,49,52,52,46,57,56,51,53,49,52,44,54,53,46,49,51,54,57,56,56,93,44,91,45,49,52,53,46,50,50,53,57,52,52,44,54,53,46,48,54,57,50,49,54,93,44,91,45,49,52,53,46,53,49,57,52,51,54,44,54,53,46,48,54,50,54,56,50,93,44,91,45,49,52,53,46,54,51,51,55,56,57,44,54,53,46,49,53,51,55,57,49,93,44,91,45,49,52,54,46,48,56,49,48,50,56,44,54,53,46,50,52,57,57,52,50,93,44,91,45,49,52,54,46,48,48,55,56,57,57,44,54,53,46,51,53,57,52,51,52,93,44,91,45,49,52,54,46,50,48,53,55,48,52,44,54,53,46,52,53,50,57,57,54,93,44,91,45,49,52,54,46,53,52,56,54,53,52,44,54,53,46,51,52,53,48,48,51,93,44,91,45,49,52,54,46,57,48,51,49,52,50,44,54,53,46,50,56,51,51,55,53,93,44,91,45,49,52,55,46,51,49,54,56,48,57,44,54,53,46,50,55,53,50,51,50,93,44,91,45,49,52,55,46,53,53,55,55,55,49,44,54,53,46,50,48,57,56,57,53,93,44,91,45,49,52,56,46,54,54,49,49,57,57,44,54,53,46,50,48,57,56,55,53,93,44,91,45,49,52,56,46,54,52,56,50,48,55,44,54,52,46,53,56,53,51,55,49,93,44,91,45,49,52,56,46,53,53,48,55,52,50,44,54,52,46,54,49,55,50,48,56,93,44,91,45,49,52,56,46,48,52,54,54,57,54,44,54,52,46,51,52,51,56,48,50,93,44,91,45,49,52,55,46,55,53,57,50,44,54,52,46,50,53,55,50,93,44,91,45,49,52,54,46,57,57,57,57,48,57,44,54,52,46,50,53,55,49,57,54,93,44,91,45,49,52,54,46,51,52,52,54,55,51,44,54,52,46,50,55,54,51,54,52,93,44,91,45,49,52,54,46,49,53,55,53,57,50,44,54,52,46,51,56,50,55,51,93,44,91,45,49,52,54,46,48,48,51,55,55,50,44,54,52,46,51,56,49,48,57,49,93,44,91,45,49,52,53,46,55,52,48,48,48,50,44,54,52,46,52,54,48,49,51,50,93,44,91,45,49,52,53,46,52,57,56,48,56,57,44,54,52,46,52,50,51,49,53,53,93,44,91,45,49,52,53,46,51,55,51,57,50,57,44,54,52,46,52,56,51,56,51,54,93,44,91,45,49,52,53,46,48,56,50,55,56,55,44,54,52,46,53,48,55,51,52,57,93,44,91,45,49,52,52,46,57,56,53,51,51,49,44,54,52,46,53,54,56,54,48,57,93,44,91,45,49,52,52,46,53,53,50,53,50,54,44,54,52,46,54,48,48,54,52,53,93,44,91,45,49,52,52,46,48,54,57,48,50,57,44,54,52,46,54,56,51,53,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,72,101,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,49,51,55,44,34,98,101,100,115,34,58,49,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,53,49,49,57,57,44,51,55,46,57,52,48,57,53,52,93,44,91,45,56,55,46,55,48,48,55,54,50,44,51,55,46,56,57,55,53,53,54,93,44,91,45,56,55,46,57,50,55,48,54,56,44,51,55,46,57,48,49,54,56,53,93,44,91,45,56,55,46,55,51,52,53,52,53,44,51,55,46,54,51,56,51,55,54,93,44,91,45,56,55,46,52,57,53,51,51,49,44,51,55,46,54,52,55,53,52,55,93,44,91,45,56,55,46,52,48,56,53,52,55,44,51,55,46,54,56,51,53,54,51,93,44,91,45,56,55,46,50,56,57,55,56,52,44,51,55,46,55,54,49,48,55,56,93,44,91,45,56,55,46,51,48,50,57,51,50,44,51,55,46,56,57,55,55,53,93,44,91,45,56,55,46,52,53,49,49,57,57,44,51,55,46,57,52,48,57,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,72,111,108,109,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,51,49,53,56,57,44,51,51,46,51,48,50,56,50,53,93,44,91,45,57,48,46,51,51,48,51,49,50,44,51,51,46,49,51,55,56,49,56,93,44,91,45,57,48,46,52,50,56,55,55,52,44,51,51,46,49,48,55,57,51,50,93,44,91,45,57,48,46,51,54,52,48,51,49,44,51,51,46,48,49,48,53,57,54,93,44,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,44,91,45,56,57,46,57,48,50,53,48,49,44,51,50,46,57,50,55,57,52,93,44,91,45,56,57,46,55,52,57,52,52,49,44,51,51,46,50,49,52,52,55,56,93,44,91,45,57,48,46,49,55,52,54,49,52,44,51,51,46,51,51,51,51,55,56,93,44,91,45,57,48,46,50,57,53,48,50,57,44,51,51,46,51,54,49,55,56,52,93,44,91,45,57,48,46,51,51,49,53,56,57,44,51,51,46,51,48,50,56,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,79,107,116,105,98,98,101,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,52,56,49,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,56,56,52,52,54,44,51,51,46,53,51,51,50,48,50,93,44,91,45,56,57,46,48,56,56,50,53,53,44,51,51,46,50,56,54,48,48,51,93,44,91,45,56,56,46,56,49,51,48,53,51,44,51,51,46,50,56,54,52,50,52,93,44,91,45,56,56,46,54,54,57,48,55,54,44,51,51,46,50,56,54,57,50,50,93,44,91,45,56,56,46,54,55,49,50,53,44,51,51,46,53,48,54,49,54,56,93,44,91,45,56,56,46,54,55,49,53,50,54,44,51,51,46,53,54,53,49,51,53,93,44,91,45,56,57,46,48,49,56,54,49,51,44,51,51,46,53,54,50,49,49,52,93,44,91,45,56,57,46,48,56,56,52,52,54,44,51,51,46,53,51,51,50,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,101,105,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,53,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,55,54,54,56,51,49,44,49,56,46,50,56,48,48,48,52,93,44,91,45,54,53,46,54,55,49,44,49,56,46,50,50,51,48,53,50,93,44,91,45,54,53,46,54,53,52,55,50,56,44,49,56,46,49,51,51,51,51,53,93,44,91,45,54,53,46,54,49,56,48,53,44,49,56,46,49,53,52,49,56,93,44,91,45,54,53,46,53,53,52,54,52,51,44,49,56,46,49,56,52,55,54,55,93,44,91,45,54,53,46,52,50,50,55,48,54,44,49,56,46,50,57,48,55,50,56,93,44,91,45,54,53,46,52,50,52,52,51,49,44,49,56,46,51,57,48,56,56,93,44,91,45,54,53,46,52,54,57,49,51,50,44,49,56,46,51,57,54,52,49,93,44,91,45,54,53,46,54,50,52,54,48,53,44,49,56,46,50,56,55,55,52,53,93,44,91,45,54,53,46,55,53,51,53,57,49,44,49,56,46,50,57,54,55,53,53,93,44,91,45,54,53,46,55,53,56,56,54,49,44,49,56,46,50,57,48,54,48,52,93,44,91,45,54,53,46,55,54,54,56,51,49,44,49,56,46,50,56,48,48,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,111,114,111,122,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,49,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,54,53,50,55,50,44,49,56,46,51,51,51,50,50,57,93,44,91,45,54,54,46,51,55,55,55,49,50,44,49,56,46,50,57,51,57,55,54,93,44,91,45,54,54,46,51,53,48,55,57,51,44,49,56,46,50,52,49,50,51,53,93,44,91,45,54,54,46,51,49,51,50,57,57,44,49,56,46,50,52,57,51,50,52,93,44,91,45,54,54,46,50,55,56,48,55,54,44,49,56,46,51,50,57,57,55,53,93,44,91,45,54,54,46,51,49,56,55,54,52,44,49,56,46,51,54,55,52,49,49,93,44,91,45,54,54,46,51,54,53,50,55,50,44,49,56,46,51,51,51,50,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,70,101,114,103,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,55,51,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,50,49,51,53,57,54,44,52,55,46,52,49,54,54,53,55,93,44,91,45,49,49,48,46,49,50,55,54,57,57,44,52,55,46,50,55,49,57,49,93,44,91,45,49,48,57,46,55,53,54,53,54,56,44,52,55,46,49,56,53,54,57,52,93,44,91,45,49,48,57,46,55,53,53,52,50,51,44,52,54,46,56,57,54,48,50,51,93,44,91,45,49,48,57,46,55,57,55,52,54,57,44,52,54,46,56,54,55,48,51,56,93,44,91,45,49,48,57,46,55,52,53,55,52,53,44,52,54,46,54,57,52,48,57,55,93,44,91,45,49,48,57,46,51,56,57,49,54,51,44,52,54,46,54,57,51,54,50,53,93,44,91,45,49,48,57,46,51,56,57,50,48,56,44,52,54,46,55,53,49,51,53,49,93,44,91,45,49,48,57,46,48,48,57,53,55,44,52,54,46,55,53,48,55,48,50,93,44,91,45,49,48,56,46,54,51,49,52,54,50,44,52,54,46,55,52,57,51,57,50,93,44,91,45,49,48,56,46,54,48,56,57,53,52,44,52,55,46,48,57,56,49,50,54,93,44,91,45,49,48,56,46,55,51,54,56,51,56,44,52,55,46,48,57,56,50,49,56,93,44,91,45,49,48,56,46,55,49,57,49,56,57,44,52,55,46,50,55,48,51,52,50,93,44,91,45,49,48,56,46,53,57,48,56,51,53,44,52,55,46,51,48,54,53,49,54,93,44,91,45,49,48,56,46,51,49,53,52,56,49,44,52,55,46,51,49,53,49,53,50,93,44,91,45,49,48,56,46,51,49,51,48,52,56,44,52,55,46,53,56,51,54,53,93,44,91,45,49,48,56,46,54,55,49,52,44,52,55,46,54,49,57,53,53,54,93,44,91,45,49,48,56,46,56,57,49,49,49,53,44,52,55,46,55,51,52,52,53,54,93,44,91,45,49,48,56,46,57,52,50,55,52,53,44,52,55,46,55,57,49,56,50,52,93,44,91,45,49,48,57,46,50,55,55,51,56,50,44,52,55,46,55,57,50,52,51,53,93,44,91,45,49,48,57,46,52,49,49,53,48,54,44,52,55,46,55,50,52,54,49,55,93,44,91,45,49,48,57,46,53,51,56,54,55,55,44,52,55,46,55,51,56,56,54,52,93,44,91,45,49,48,57,46,56,50,51,52,48,49,44,52,55,46,55,49,53,53,55,57,93,44,91,45,49,48,57,46,56,52,53,50,50,49,44,52,55,46,53,52,54,55,57,53,93,44,91,45,49,49,48,46,50,49,51,53,57,54,44,52,55,46,52,49,54,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,71,97,114,114,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,55,54,44,34,98,101,100,115,34,58,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,55,54,54,54,50,44,51,57,46,55,50,49,48,55,56,93,44,91,45,55,57,46,52,56,54,56,55,53,44,51,57,46,50,48,53,56,57,54,93,44,91,45,55,57,46,50,55,49,54,57,53,44,51,57,46,51,50,55,57,57,57,93,44,91,45,55,57,46,48,54,55,53,53,57,44,51,57,46,52,55,57,52,52,51,93,44,91,45,55,56,46,57,50,56,52,49,54,44,51,57,46,55,50,50,55,56,51,93,44,91,45,55,57,46,51,57,50,52,53,57,44,51,57,46,55,50,49,53,55,56,93,44,91,45,55,57,46,52,55,54,54,54,50,44,51,57,46,55,50,49,48,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,51,49,44,34,98,101,100,115,34,58,50,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,50,48,57,57,52,44,51,51,46,48,49,56,54,49,54,93,44,91,45,57,51,46,52,53,51,49,50,49,44,51,50,46,56,53,57,57,51,53,93,44,91,45,57,51,46,52,52,49,50,49,50,44,51,50,46,52,49,48,52,51,49,93,44,91,45,57,51,46,51,55,50,55,56,49,44,51,50,46,52,49,48,49,53,51,93,44,91,45,57,51,46,50,51,54,54,53,54,44,51,50,46,52,49,48,48,55,49,93,44,91,45,57,51,46,49,52,55,49,57,51,44,51,50,46,52,53,53,49,55,51,93,44,91,45,57,51,46,49,55,56,55,54,55,44,51,50,46,53,56,52,57,49,54,93,44,91,45,57,51,46,50,51,55,51,56,49,44,51,50,46,55,49,54,50,53,93,44,91,45,57,51,46,50,51,56,54,48,55,44,51,51,46,48,49,55,57,57,50,93,44,91,45,57,51,46,52,57,48,53,50,44,51,51,46,48,49,56,52,52,50,93,44,91,45,57,51,46,53,50,48,57,57,52,44,51,51,46,48,49,56,54,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,105,108,108,115,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,56,51,48,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,50,54,52,57,49,44,52,50,46,48,55,50,52,54,56,93,44,91,45,56,52,46,56,50,53,49,51,44,52,49,46,55,53,57,57,57,57,93,44,91,45,56,52,46,56,48,53,57,55,50,44,52,49,46,54,57,54,49,49,56,93,44,91,45,56,52,46,51,57,57,53,52,54,44,52,49,46,55,48,53,56,49,54,93,44,91,45,56,52,46,51,54,48,52,49,54,44,52,49,46,55,48,54,53,56,57,93,44,91,45,56,52,46,51,54,51,50,57,55,44,52,50,46,48,55,51,52,53,54,93,44,91,45,56,52,46,55,48,57,53,53,54,44,52,50,46,48,55,48,51,54,54,93,44,91,45,56,52,46,56,50,54,52,57,49,44,52,50,46,48,55,50,52,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,56,52,57,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,53,51,49,54,52,44,51,55,46,48,54,49,48,49,57,93,44,91,45,56,55,46,48,54,48,56,52,57,44,51,54,46,54,52,50,57,54,51,93,44,91,45,56,54,46,55,54,51,50,57,54,44,51,54,46,54,52,56,57,53,52,93,44,91,45,56,54,46,54,57,48,55,49,57,44,51,54,46,56,52,52,51,93,44,91,45,56,54,46,54,49,49,53,56,54,44,51,54,46,56,56,51,48,53,55,93,44,91,45,56,54,46,54,55,52,52,54,50,44,51,54,46,57,57,57,55,54,54,93,44,91,45,56,54,46,57,52,49,51,57,49,44,51,55,46,48,54,56,57,56,49,93,44,91,45,56,55,46,48,53,51,49,54,52,44,51,55,46,48,54,49,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,55,51,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,52,56,48,51,44,52,51,46,52,55,55,56,49,53,93,44,91,45,49,48,51,46,48,48,48,57,49,51,44,52,51,46,52,55,54,56,52,56,93,44,91,45,49,48,51,46,48,48,49,48,49,55,44,52,51,46,54,48,53,56,49,54,93,44,91,45,49,48,50,46,56,48,57,51,57,56,44,52,51,46,54,56,55,53,54,93,44,91,45,49,48,50,46,54,56,55,49,57,49,44,52,51,46,56,53,53,53,57,57,93,44,91,45,49,48,52,46,48,53,53,52,56,55,44,52,51,46,56,53,51,52,55,54,93,44,91,45,49,48,52,46,48,53,52,55,56,54,44,52,51,46,53,48,51,51,50,56,93,44,91,45,49,48,52,46,48,53,52,56,48,51,44,52,51,46,52,55,55,56,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,77,101,114,114,105,109,97,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,52,53,50,44,34,98,101,100,115,34,58,53,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,57,51,53,51,49,44,52,51,46,53,50,56,56,56,93,44,91,45,55,50,46,48,57,48,49,52,54,44,52,51,46,51,50,50,53,53,51,93,44,91,45,55,50,46,48,48,57,48,55,52,44,52,51,46,49,56,55,56,56,50,93,44,91,45,55,49,46,57,49,51,50,49,53,44,52,51,46,50,48,55,48,57,57,93,44,91,45,55,49,46,56,53,54,49,44,52,51,46,49,49,53,49,51,53,93,44,91,45,55,49,46,54,54,55,55,55,49,44,52,51,46,49,53,50,53,51,52,93,44,91,45,55,49,46,54,52,49,50,57,49,44,52,51,46,48,53,52,49,54,56,93,44,91,45,55,49,46,53,49,55,52,54,55,44,52,51,46,48,54,56,57,48,57,93,44,91,45,55,49,46,51,57,50,51,56,56,44,52,51,46,48,48,57,51,48,57,93,44,91,45,55,49,46,50,52,55,51,51,54,44,52,51,46,50,55,53,50,51,50,93,44,91,45,55,49,46,50,51,54,48,49,49,44,52,51,46,50,56,52,57,57,52,93,44,91,45,55,49,46,53,53,48,48,51,44,52,51,46,52,53,50,55,48,49,93,44,91,45,55,49,46,54,49,50,52,50,54,44,52,51,46,52,51,55,56,57,51,93,44,91,45,55,49,46,55,50,55,53,55,51,44,52,51,46,53,54,51,52,49,49,93,44,91,45,55,49,46,57,51,53,51,49,44,52,51,46,53,50,56,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,52,48,49,52,44,34,98,101,100,115,34,58,57,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,51,55,52,50,53,44,52,48,46,48,54,57,57,52,53,93,44,91,45,55,55,46,48,49,56,54,52,56,44,52,48,46,48,49,51,57,52,55,93,44,91,45,55,54,46,57,53,52,57,51,50,44,51,57,46,56,53,54,56,53,93,44,91,45,55,54,46,57,57,57,51,49,56,44,51,57,46,55,50,48,49,48,54,93,44,91,45,55,54,46,55,56,55,48,57,54,44,51,57,46,55,50,48,56,93,44,91,45,55,54,46,53,54,57,52,52,57,44,51,57,46,55,50,49,49,55,56,93,44,91,45,55,54,46,50,51,57,56,48,53,44,51,57,46,55,50,49,51,51,53,93,44,91,45,55,54,46,52,55,51,53,56,44,51,57,46,57,52,55,51,53,50,93,44,91,45,55,54,46,53,51,52,53,50,52,44,52,48,46,48,53,49,51,52,56,93,44,91,45,55,54,46,55,50,49,54,50,44,52,48,46,49,50,48,48,55,93,44,91,45,55,54,46,56,53,57,48,50,51,44,52,48,46,50,50,54,51,50,56,93,44,91,45,55,55,46,49,51,55,52,50,53,44,52,48,46,48,54,57,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,82,117,116,104,101,114,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,53,51,50,44,34,98,101,100,115,34,58,49,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,54,49,51,48,53,44,51,53,46,51,57,51,49,57,56,93,44,91,45,56,50,46,49,53,49,53,51,53,44,51,53,46,52,48,55,53,56,49,93,44,91,45,56,49,46,57,54,56,55,56,56,44,51,53,46,50,53,55,55,54,52,93,44,91,45,56,49,46,57,54,57,51,52,56,44,51,53,46,49,56,55,50,49,55,93,44,91,45,56,49,46,56,55,52,54,56,57,44,51,53,46,49,56,52,48,51,54,93,44,91,45,56,49,46,55,54,56,49,48,50,44,51,53,46,49,56,48,54,49,49,93,44,91,45,56,49,46,55,48,50,56,53,51,44,51,53,46,51,53,55,51,48,52,93,44,91,45,56,49,46,54,57,49,57,56,57,44,51,53,46,53,56,48,48,52,49,93,44,91,45,56,49,46,56,50,52,49,50,50,44,51,53,46,53,55,52,57,56,51,93,44,91,45,56,49,46,57,54,55,54,49,57,44,51,53,46,53,50,54,48,48,55,93,44,91,45,56,50,46,49,54,57,48,52,57,44,51,53,46,53,50,55,56,49,49,93,44,91,45,56,50,46,50,54,53,55,57,53,44,51,53,46,52,54,55,56,49,56,93,44,91,45,56,50,46,50,54,49,51,48,53,44,51,53,46,51,57,51,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,101,97,100,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,48,53,55,54,50,44,52,52,46,54,51,52,49,53,57,93,44,91,45,57,56,46,55,48,48,52,53,51,44,52,52,46,49,57,54,55,50,55,93,44,91,45,57,56,46,51,51,49,57,49,44,52,52,46,49,57,54,54,56,55,93,44,91,45,57,55,46,56,53,51,54,54,44,52,52,46,49,57,53,50,51,51,93,44,91,45,57,55,46,56,53,51,48,50,56,44,52,52,46,53,52,52,51,57,56,93,44,91,45,57,55,46,57,55,55,55,57,49,44,52,52,46,54,51,49,54,48,50,93,44,91,45,57,56,46,55,48,53,55,54,50,44,52,52,46,54,51,52,49,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,117,108,108,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,51,49,51,44,34,98,101,100,115,34,58,49,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,56,49,57,51,54,44,51,52,46,51,48,52,54,57,52,93,44,91,45,56,55,46,49,49,48,49,49,49,44,51,52,46,51,49,51,55,57,57,93,44,91,45,56,55,46,49,48,57,57,49,49,44,51,52,46,50,57,57,50,57,57,93,44,91,45,56,55,46,49,49,49,57,57,50,44,51,51,46,57,57,50,51,56,53,93,44,91,45,56,55,46,49,53,49,48,51,54,44,51,51,46,57,57,51,50,50,53,93,44,91,45,56,54,46,57,54,51,51,53,56,44,51,51,46,56,53,56,50,50,49,93,44,91,45,56,54,46,55,54,51,57,57,57,44,51,51,46,57,55,52,49,56,55,93,44,91,45,56,54,46,54,56,55,54,57,55,44,51,52,46,48,56,48,55,51,53,93,44,91,45,56,54,46,53,57,57,55,56,53,44,51,52,46,49,50,49,55,50,93,44,91,45,56,54,46,53,49,57,54,48,51,44,51,52,46,50,53,49,55,54,54,93,44,91,45,56,54,46,52,53,51,48,50,44,51,52,46,50,53,57,51,49,55,93,44,91,45,56,54,46,53,56,49,57,51,54,44,51,52,46,51,48,52,54,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,56,52,48,44,34,98,101,100,115,34,58,49,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,48,49,54,56,56,44,51,51,46,55,56,48,55,48,51,93,44,91,45,56,52,46,57,48,53,55,56,56,44,51,51,46,53,55,51,51,55,56,93,44,91,45,56,52,46,56,48,56,57,51,52,44,51,51,46,53,55,52,48,56,53,93,44,91,45,56,52,46,54,53,54,52,51,51,44,51,51,46,54,53,57,52,48,57,93,44,91,45,56,52,46,53,55,56,49,51,50,44,51,51,46,55,52,51,53,48,55,93,44,91,45,56,52,46,55,50,52,49,51,57,44,51,51,46,56,48,54,49,55,93,44,91,45,56,52,46,57,48,49,54,56,56,44,51,51,46,55,56,48,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,57,55,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,54,51,54,51,50,44,52,48,46,53,50,51,48,49,51,93,44,91,45,57,54,46,52,54,51,54,54,55,44,52,48,46,50,54,50,49,55,51,93,44,91,45,57,54,46,48,54,54,55,51,54,44,52,48,46,50,54,50,48,51,56,93,44,91,45,57,54,46,48,54,55,48,49,50,44,52,48,46,53,50,51,49,52,56,93,44,91,45,57,54,46,52,54,51,54,51,50,44,52,48,46,53,50,51,48,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,56,52,55,50,54,52,44,51,53,46,55,49,57,57,56,50,93,44,91,45,55,54,46,54,51,55,53,49,51,44,51,53,46,55,48,53,50,49,53,93,44,91,45,55,54,46,52,48,53,57,55,49,44,51,53,46,54,57,55,53,55,57,93,44,91,45,55,54,46,51,53,51,54,54,57,44,51,53,46,56,54,49,51,54,53,93,44,91,45,55,54,46,51,53,56,51,57,51,44,51,54,46,48,50,48,48,49,57,93,44,91,45,55,54,46,51,57,54,55,57,52,44,51,54,46,48,50,54,52,52,51,93,44,91,45,55,54,46,54,48,54,50,49,52,44,51,53,46,57,55,56,48,53,49,93,44,91,45,55,54,46,55,54,48,53,57,56,44,51,53,46,56,54,52,56,56,55,93,44,91,45,55,54,46,56,52,55,50,54,52,44,51,53,46,55,49,57,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,52,54,57,49,54,44,52,52,46,49,54,56,52,56,52,93,44,91,45,49,48,49,46,48,54,52,48,54,56,44,52,51,46,57,57,52,57,50,57,93,44,91,45,49,48,49,46,48,54,52,51,50,54,44,52,51,46,56,52,49,48,57,93,44,91,45,49,48,48,46,57,56,55,48,50,55,44,52,51,46,56,52,57,49,51,50,93,44,91,45,49,48,48,46,54,55,57,51,50,50,44,52,51,46,55,49,49,54,51,54,93,44,91,45,49,48,48,46,53,53,52,54,56,55,44,52,51,46,55,51,55,50,52,55,93,44,91,45,49,48,48,46,51,51,56,57,55,44,52,51,46,55,49,54,57,52,50,93,44,91,45,49,48,48,46,51,54,54,49,55,52,44,52,51,46,56,52,54,57,55,56,93,44,91,45,49,48,48,46,51,54,55,50,48,55,44,52,52,46,49,54,56,54,57,52,93,44,91,45,49,48,49,46,48,52,54,57,49,54,44,52,52,46,49,54,56,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,48,54,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,50,55,54,56,50,57,44,51,53,46,49,57,53,55,50,50,93,44,91,45,56,48,46,51,50,48,56,50,56,44,51,52,46,56,49,51,57,48,54,93,44,91,45,55,57,46,57,50,55,52,49,50,44,51,52,46,56,48,54,55,51,52,93,44,91,45,55,57,46,56,52,57,53,51,54,44,51,52,46,57,48,48,48,48,54,93,44,91,45,55,57,46,57,52,54,49,50,50,44,51,53,46,49,49,56,53,57,51,93,44,91,45,56,48,46,48,55,53,51,54,53,44,51,53,46,49,52,51,48,56,49,93,44,91,45,56,48,46,50,55,54,56,50,57,44,51,53,46,49,57,53,55,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,48,34,44,34,78,65,77,69,34,58,34,72,97,105,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,53,46,55,49,55,51,48,55,44,53,57,46,55,51,48,48,52,51,93,44,91,45,49,51,53,46,57,53,50,54,52,53,44,53,57,46,54,54,50,49,54,54,93,44,91,45,49,51,54,46,49,57,50,57,48,52,44,53,57,46,54,52,48,48,50,55,93,44,91,45,49,51,54,46,51,48,53,48,50,50,44,53,57,46,52,54,52,53,49,56,93,44,91,45,49,51,54,46,52,55,55,49,53,54,44,53,57,46,52,54,53,56,50,52,93,44,91,45,49,51,54,46,52,56,56,52,48,50,44,53,57,46,50,53,57,50,57,93,44,91,45,49,51,53,46,57,54,57,56,52,55,44,53,57,46,49,55,57,55,52,93,44,91,45,49,51,53,46,55,49,48,51,56,51,44,53,57,46,49,48,49,52,57,49,93,44,91,45,49,51,53,46,53,54,54,56,54,53,44,53,56,46,57,54,51,56,50,93,44,91,45,49,51,53,46,55,53,53,51,50,51,44,53,56,46,55,52,53,57,53,52,93,44,91,45,49,51,53,46,52,50,50,54,56,55,44,53,56,46,54,51,49,52,49,54,93,44,91,45,49,51,53,46,52,55,54,49,51,57,44,53,56,46,52,55,53,51,52,55,93,44,91,45,49,51,53,46,52,52,57,54,56,55,44,53,56,46,51,49,55,48,55,51,93,44,91,45,49,51,53,46,50,53,48,48,50,44,53,56,46,49,54,54,55,93,44,91,45,49,51,53,46,48,48,48,52,51,50,44,53,56,46,49,49,56,48,54,52,93,44,91,45,49,51,53,46,48,55,48,52,53,44,53,56,46,52,57,57,56,57,55,93,44,91,45,49,51,53,46,50,49,57,49,50,56,44,53,56,46,57,55,52,57,55,50,93,44,91,45,49,51,52,46,51,50,49,52,52,54,44,53,56,46,57,54,51,54,50,57,93,44,91,45,49,51,52,46,52,56,51,51,57,53,44,53,57,46,49,51,49,54,48,51,93,44,91,45,49,51,52,46,55,48,48,55,49,54,44,53,57,46,50,52,57,48,49,49,93,44,91,45,49,51,52,46,57,53,57,57,48,53,44,53,57,46,50,56,48,57,50,54,93,44,91,45,49,51,53,46,48,51,48,53,50,53,44,53,57,46,51,52,54,51,52,56,93,44,91,45,49,51,53,46,51,55,53,48,50,44,53,57,46,51,53,48,48,51,51,93,44,91,45,49,51,53,46,55,49,55,51,48,55,44,53,57,46,55,51,48,48,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,105,108,108,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,54,54,54,54,55,53,44,52,55,46,51,50,57,50,53,54,93,44,91,45,49,48,51,46,54,54,55,48,55,51,44,52,54,46,57,55,57,55,55,53,93,44,91,45,49,48,51,46,54,48,57,53,57,50,44,52,54,46,57,55,57,56,53,52,93,44,91,45,49,48,51,46,54,48,57,50,55,51,44,52,54,46,54,50,57,56,50,50,93,44,91,45,49,48,51,46,50,51,49,54,53,54,44,52,54,46,54,50,57,55,54,52,93,44,91,45,49,48,51,46,50,51,49,48,53,54,44,52,54,46,57,56,48,50,57,54,93,44,91,45,49,48,51,46,48,51,50,54,56,49,44,52,54,46,57,56,48,53,56,93,44,91,45,49,48,51,46,48,51,50,51,54,54,44,52,55,46,51,50,56,54,56,54,93,44,91,45,49,48,51,46,48,57,57,49,57,55,44,52,55,46,51,50,56,55,49,52,93,44,91,45,49,48,51,46,54,54,54,54,55,53,44,52,55,46,51,50,57,50,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,116,101,108,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,55,50,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,48,48,50,51,53,44,52,50,46,52,51,54,57,49,51,93,44,91,45,57,56,46,51,48,48,53,57,50,44,52,50,46,48,56,56,56,53,51,93,44,91,45,57,56,46,50,57,53,54,48,50,44,52,49,46,57,49,52,57,53,52,93,44,91,45,57,55,46,56,51,51,50,56,56,44,52,49,46,57,49,54,50,56,54,93,44,91,45,57,55,46,56,51,52,53,51,54,44,52,50,46,48,56,57,55,53,93,44,91,45,57,55,46,56,51,52,52,51,49,44,52,50,46,52,51,55,54,56,52,93,44,91,45,57,56,46,51,48,48,50,51,53,44,52,50,46,52,51,54,57,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,97,115,99,111,110,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,52,54,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,49,56,54,51,55,44,51,56,46,55,48,57,55,55,56,93,44,91,45,57,49,46,53,52,53,51,49,51,44,51,56,46,54,55,54,56,56,50,93,44,91,45,57,49,46,54,52,48,51,55,50,44,51,56,46,55,48,51,55,57,50,93,44,91,45,57,49,46,54,52,52,55,50,57,44,51,56,46,50,56,56,53,49,93,44,91,45,57,49,46,54,51,48,53,53,52,44,51,56,46,49,53,51,53,49,57,93,44,91,45,57,49,46,53,51,52,51,56,52,44,51,56,46,49,53,50,53,57,51,93,44,91,45,57,49,46,51,54,55,52,56,50,44,51,56,46,50,48,57,55,52,49,93,44,91,45,57,49,46,51,54,57,49,57,50,44,51,56,46,54,57,57,51,50,52,93,44,91,45,57,49,46,52,49,56,54,51,55,44,51,56,46,55,48,57,55,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,49,50,48,57,53,44,51,55,46,51,57,53,49,50,51,93,44,91,45,56,54,46,56,50,57,51,55,49,44,51,55,46,50,56,49,51,54,53,93,44,91,45,56,54,46,56,57,57,50,54,56,44,51,55,46,50,49,50,51,49,51,93,44,91,45,56,54,46,57,52,49,51,57,49,44,51,55,46,48,54,56,57,56,49,93,44,91,45,56,54,46,54,55,52,52,54,50,44,51,54,46,57,57,57,55,54,54,93,44,91,45,56,54,46,54,49,56,49,53,56,44,51,55,46,49,56,51,57,48,54,93,44,91,45,56,54,46,51,57,57,49,54,53,44,51,55,46,49,54,57,56,57,54,93,44,91,45,56,54,46,52,54,57,49,50,54,44,51,55,46,51,50,49,48,57,57,93,44,91,45,56,54,46,54,49,50,48,57,53,44,51,55,46,51,57,53,49,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,97,109,112,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,55,48,56,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,48,57,54,55,54,44,52,52,46,53,54,51,57,56,49,93,44,91,45,49,48,54,46,48,49,55,51,54,54,44,52,51,46,52,57,52,57,54,57,93,44,91,45,49,48,53,46,48,55,57,55,57,55,44,52,51,46,52,57,56,52,52,53,93,44,91,45,49,48,53,46,48,55,57,50,56,49,44,52,52,46,49,55,54,49,56,50,93,44,91,45,49,48,53,46,48,56,53,52,53,49,44,52,52,46,55,56,54,56,48,49,93,44,91,45,49,48,53,46,48,55,54,54,48,49,44,52,52,46,57,57,57,57,50,54,93,44,91,45,49,48,54,46,48,50,52,56,49,53,44,52,52,46,57,57,51,52,57,53,93,44,91,45,49,48,54,46,48,48,57,54,55,54,44,52,52,46,53,54,51,57,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,49,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,51,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,48,53,57,50,56,44,51,51,46,56,49,55,55,54,93,44,91,45,56,51,46,54,56,48,56,57,54,44,51,51,46,53,57,54,57,49,57,93,44,91,45,56,51,46,54,56,50,49,57,54,44,51,51,46,53,50,54,50,50,93,44,91,45,56,51,46,53,51,51,55,51,54,44,51,51,46,52,51,52,52,55,50,93,44,91,45,56,51,46,50,55,57,57,51,49,44,51,51,46,52,56,51,52,51,56,93,44,91,45,56,51,46,50,55,55,54,49,49,44,51,51,46,53,50,55,54,51,93,44,91,45,56,51,46,52,48,54,49,56,57,44,51,51,46,54,57,56,51,48,55,93,44,91,45,56,51,46,53,48,53,57,50,56,44,51,51,46,56,49,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,114,111,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,48,50,52,50,57,44,51,53,46,52,52,49,55,50,54,93,44,91,45,57,49,46,48,51,57,50,51,44,51,53,46,52,52,52,55,49,55,93,44,91,45,57,49,46,48,51,57,55,56,51,44,51,53,46,51,53,52,50,53,54,93,44,91,45,57,49,46,48,52,50,54,55,44,51,53,46,49,52,56,49,56,57,93,44,91,45,57,48,46,53,48,50,57,57,51,44,51,53,46,49,52,52,50,49,52,93,44,91,45,57,48,46,53,48,50,52,50,57,44,51,53,46,52,52,49,55,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,80,104,105,108,108,105,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,51,52,44,34,98,101,100,115,34,58,49,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,53,49,57,49,56,44,51,52,46,54,52,53,55,50,49,93,44,91,45,57,49,46,48,53,54,50,55,54,44,51,52,46,51,51,54,54,48,53,93,44,91,45,57,49,46,49,49,55,57,48,53,44,51,52,46,49,49,57,49,48,53,93,44,91,45,57,48,46,57,53,53,49,55,44,51,52,46,49,49,56,56,51,51,93,44,91,45,57,48,46,57,53,53,57,55,52,44,51,52,46,49,50,48,49,50,53,93,44,91,45,57,48,46,56,51,51,51,51,53,44,51,52,46,50,54,52,50,54,52,93,44,91,45,57,48,46,53,56,48,54,56,49,44,51,52,46,52,49,48,53,53,49,93,44,91,45,57,48,46,53,54,57,51,52,55,44,51,52,46,53,50,52,56,54,55,93,44,91,45,57,48,46,53,56,51,50,50,52,44,51,52,46,54,52,49,51,56,57,93,44,91,45,57,49,46,48,53,49,57,49,56,44,51,52,46,54,52,53,55,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,83,116,46,32,74,97,109,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,53,55,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,52,49,57,57,56,44,51,48,46,49,54,54,52,51,93,44,91,45,57,48,46,57,49,53,53,54,53,44,51,48,46,49,49,51,50,56,53,93,44,91,45,57,48,46,57,54,51,54,57,51,44,51,48,46,48,54,54,52,53,93,44,91,45,57,48,46,57,53,57,56,54,57,44,50,57,46,57,55,55,57,50,52,93,44,91,45,57,48,46,56,56,53,53,56,57,44,50,57,46,57,48,53,51,53,51,93,44,91,45,57,48,46,54,53,54,51,49,50,44,50,57,46,56,56,57,50,52,54,93,44,91,45,57,48,46,54,52,49,57,57,56,44,51,48,46,49,54,54,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,89,117,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,52,57,51,44,34,98,101,100,115,34,58,50,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,54,50,51,55,54,44,51,57,46,50,57,53,54,50,49,93,44,91,45,49,50,49,46,54,50,57,48,56,57,44,51,57,46,50,48,52,54,55,56,93,44,91,45,49,50,49,46,53,52,51,51,48,54,44,51,56,46,57,55,50,52,48,52,93,44,91,45,49,50,49,46,52,49,52,55,55,57,44,51,56,46,57,57,54,52,53,50,93,44,91,45,49,50,49,46,50,55,57,53,51,51,44,51,57,46,48,51,52,54,49,56,93,44,91,45,49,50,49,46,50,54,54,57,49,49,44,51,57,46,50,55,49,54,48,57,93,44,91,45,49,50,49,46,49,50,50,51,49,53,44,51,57,46,51,55,56,56,50,54,93,44,91,45,49,50,49,46,48,50,50,48,56,53,44,51,57,46,51,57,49,53,53,56,93,44,91,45,49,50,49,46,48,48,57,52,55,55,44,51,57,46,54,51,57,52,53,57,93,44,91,45,49,50,49,46,48,55,54,54,57,53,44,51,57,46,53,57,55,50,54,52,93,44,91,45,49,50,49,46,49,52,57,57,48,55,44,51,57,46,53,50,54,52,52,54,93,44,91,45,49,50,49,46,51,48,53,49,50,50,44,51,57,46,53,49,57,53,56,53,93,44,91,45,49,50,49,46,52,48,55,53,50,55,44,51,57,46,51,51,57,55,53,52,93,44,91,45,49,50,49,46,54,50,51,55,54,44,51,57,46,50,57,53,54,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,50,54,49,44,34,98,101,100,115,34,58,50,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,50,54,56,52,54,44,51,51,46,50,52,54,52,53,57,93,44,91,45,56,55,46,48,50,53,53,57,54,44,51,51,46,49,54,53,55,57,53,93,44,91,45,56,54,46,56,56,49,49,56,50,44,51,51,46,48,52,57,57,48,49,93,44,91,45,56,54,46,54,49,48,48,48,51,44,51,51,46,48,55,48,48,48,51,93,44,91,45,56,54,46,53,49,55,51,52,52,44,51,51,46,48,50,48,53,54,54,93,44,91,45,56,54,46,52,57,49,48,50,57,44,51,51,46,49,48,50,57,52,52,93,44,91,45,56,54,46,53,48,51,49,50,55,44,51,51,46,49,55,57,49,52,52,93,44,91,45,56,54,46,51,53,55,51,52,44,51,51,46,50,57,54,57,49,55,93,44,91,45,56,54,46,51,55,56,54,54,53,44,51,51,46,51,57,48,57,56,51,93,44,91,45,56,54,46,51,55,56,50,50,50,44,51,51,46,53,48,50,52,49,49,93,44,91,45,56,54,46,53,49,54,55,56,51,44,51,51,46,53,52,53,56,57,54,93,44,91,45,56,54,46,54,55,52,52,49,56,44,51,51,46,52,54,54,53,50,49,93,44,91,45,56,55,46,48,50,54,56,52,54,44,51,51,46,50,52,54,52,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,79,117,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,54,51,53,48,52,44,51,56,46,51,48,49,56,57,54,93,44,91,45,49,48,55,46,54,51,53,54,57,55,44,51,56,46,51,51,50,49,52,56,93,44,91,45,49,48,56,46,49,51,50,51,56,44,51,56,46,51,51,49,53,55,51,93,44,91,45,49,48,56,46,48,56,54,54,48,52,44,51,56,46,50,53,53,50,48,50,93,44,91,45,49,48,55,46,57,51,55,53,56,56,44,51,56,46,50,49,56,57,57,50,93,44,91,45,49,48,55,46,57,54,53,55,56,57,44,51,56,46,49,53,50,51,50,56,93,44,91,45,49,48,55,46,57,48,48,49,57,51,44,51,56,46,48,50,54,50,52,57,93,44,91,45,49,48,55,46,55,57,53,52,54,57,44,51,55,46,57,56,56,53,50,93,44,91,45,49,48,55,46,55,51,56,50,56,51,44,51,55,46,57,48,53,52,51,50,93,44,91,45,49,48,55,46,53,54,56,56,55,53,44,51,55,46,57,54,53,48,49,53,93,44,91,45,49,48,55,46,53,49,54,56,51,44,51,56,46,48,54,57,55,52,49,93,44,91,45,49,48,55,46,53,54,56,54,50,44,51,56,46,49,52,55,50,54,55,93,44,91,45,49,48,55,46,54,51,53,48,52,44,51,56,46,51,48,49,56,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,117,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,49,57,57,44,34,98,101,100,115,34,58,49,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,52,50,55,48,49,44,51,52,46,57,53,52,49,52,50,93,44,91,45,49,48,51,46,50,56,52,49,52,57,44,51,52,46,57,53,52,49,55,50,93,44,91,45,49,48,51,46,50,56,52,51,49,55,44,51,52,46,56,54,52,57,57,93,44,91,45,49,48,51,46,52,57,53,54,53,51,44,51,52,46,54,57,49,51,57,51,93,44,91,45,49,48,51,46,55,48,53,55,56,56,44,51,52,46,54,57,50,52,52,54,93,44,91,45,49,48,51,46,55,51,56,49,54,54,44,51,52,46,54,48,52,54,55,93,44,91,45,49,48,51,46,55,52,48,48,54,54,44,51,52,46,51,48,51,48,53,54,93,44,91,45,49,48,51,46,48,52,51,55,54,55,44,51,52,46,51,48,50,54,52,56,93,44,91,45,49,48,51,46,48,52,51,55,54,50,44,51,52,46,51,49,50,55,53,93,44,91,45,49,48,51,46,48,52,50,57,56,50,44,51,52,46,55,52,55,51,54,49,93,44,91,45,49,48,51,46,48,52,50,55,48,49,44,51,52,46,57,53,52,49,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,51,50,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,54,52,50,49,55,44,51,53,46,52,54,53,51,50,56,93,44,91,45,57,57,46,51,54,48,50,50,54,44,51,53,46,49,49,54,55,51,56,93,44,91,45,57,56,46,55,52,57,49,53,56,44,51,53,46,49,49,54,51,52,54,93,44,91,45,57,56,46,54,50,48,54,57,50,44,51,53,46,48,57,55,55,54,53,93,44,91,45,57,56,46,54,50,51,51,51,54,44,51,53,46,52,54,52,50,50,53,93,44,91,45,57,57,46,51,54,52,50,49,55,44,51,53,46,52,54,53,51,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,57,51,56,44,34,98,101,100,115,34,58,57,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,53,55,57,53,50,44,51,54,46,50,52,51,52,52,53,93,44,91,45,55,57,46,50,52,57,53,51,56,44,51,53,46,56,55,54,56,49,93,44,91,45,55,57,46,48,49,54,51,48,53,44,51,53,46,56,54,51,50,49,93,44,91,45,55,56,46,57,53,48,53,57,55,44,51,54,46,50,51,57,51,50,93,44,91,45,55,57,46,49,53,51,57,57,55,44,51,54,46,50,52,49,56,55,53,93,44,91,45,55,57,46,50,53,55,57,53,50,44,51,54,46,50,52,51,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,51,48,49,55,44,52,49,46,49,55,50,51,49,56,93,44,91,45,56,54,46,57,51,48,55,53,57,44,52,48,46,57,49,50,52,49,56,93,44,91,45,56,54,46,53,56,49,53,51,50,44,52,48,46,57,49,48,57,50,53,93,44,91,45,56,54,46,52,54,56,53,48,57,44,52,48,46,57,48,57,56,56,57,93,44,91,45,56,54,46,52,54,55,48,52,54,44,52,49,46,49,55,49,52,52,50,93,44,91,45,56,54,46,57,51,48,49,55,44,52,49,46,49,55,50,51,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,101,110,122,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,53,50,44,34,98,101,100,115,34,58,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,56,52,54,57,50,56,44,52,52,46,53,49,57,52,50,57,93,44,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,44,91,45,56,53,46,56,49,53,49,49,57,44,52,52,46,55,55,52,53,51,52,93,44,91,45,56,54,46,55,51,52,53,50,57,44,52,52,46,55,55,51,48,55,52,93,44,91,45,56,54,46,55,55,56,51,57,56,44,52,52,46,54,55,53,50,49,57,93,44,91,45,56,54,46,56,52,54,57,50,56,44,52,52,46,53,49,57,52,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,69,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,57,56,54,54,44,34,98,101,100,115,34,58,50,54,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,49,57,50,50,56,44,52,51,46,48,54,55,57,53,56,93,44,91,45,55,57,46,48,49,49,53,54,51,44,52,50,46,57,56,53,50,53,54,93,44,91,45,55,56,46,57,48,53,54,53,57,44,52,50,46,57,50,51,51,53,55,93,44,91,45,55,56,46,57,57,57,55,54,44,52,50,46,56,48,52,51,54,56,93,44,91,45,55,57,46,51,49,50,49,51,54,44,52,50,46,54,56,54,56,48,53,93,44,91,45,55,57,46,48,54,48,55,55,55,44,52,50,46,53,51,55,56,53,51,93,44,91,45,55,56,46,56,57,53,57,57,57,44,52,50,46,52,52,48,56,48,55,93,44,91,45,55,56,46,52,54,51,57,52,44,52,50,46,53,51,54,51,51,50,93,44,91,45,55,56,46,52,54,52,51,56,49,44,52,50,46,56,54,55,52,54,49,93,44,91,45,55,56,46,52,54,52,52,52,57,44,52,51,46,48,56,56,55,48,51,93,44,91,45,55,56,46,56,48,50,48,53,49,44,52,51,46,48,54,53,55,56,49,93,44,91,45,55,56,46,56,51,57,51,53,44,52,51,46,48,49,57,52,53,51,93,44,91,45,55,57,46,48,49,57,50,50,56,44,52,51,46,48,54,55,57,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,48,49,51,51,44,34,98,101,100,115,34,58,50,48,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,54,56,56,48,49,44,51,57,46,51,53,51,53,48,50,93,44,91,45,55,55,46,52,53,56,56,48,56,44,51,57,46,50,50,48,50,55,93,44,91,45,55,55,46,53,50,55,51,50,50,44,51,57,46,49,52,54,57,54,49,93,44,91,45,55,55,46,52,54,48,54,48,50,44,51,57,46,48,55,52,56,52,51,93,44,91,45,55,55,46,51,50,56,51,49,56,44,51,57,46,48,53,55,54,55,56,93,44,91,45,55,55,46,49,49,57,55,57,50,44,51,56,46,57,51,52,51,55,52,93,44,91,45,55,55,46,49,49,57,55,53,57,44,51,56,46,57,51,52,51,52,51,93,44,91,45,55,55,46,48,48,50,52,51,54,44,51,56,46,57,54,53,54,55,51,93,44,91,45,55,54,46,56,56,56,53,48,53,44,51,57,46,49,51,48,57,54,55,93,44,91,45,55,54,46,57,52,56,53,55,57,44,51,57,46,49,50,57,53,57,55,93,44,91,45,55,55,46,49,54,56,56,48,49,44,51,57,46,51,53,51,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,56,53,34,44,34,78,65,77,69,34,58,34,77,97,110,97,115,115,97,115,32,80,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,53,56,54,57,53,44,51,56,46,55,55,50,51,49,57,93,44,91,45,55,55,46,52,50,55,51,51,50,44,51,56,46,55,53,51,53,57,56,93,44,91,45,55,55,46,52,50,48,53,56,49,44,51,56,46,55,54,50,50,56,55,93,44,91,45,55,55,46,52,55,53,55,54,44,51,56,46,55,56,49,49,55,49,93,44,91,45,55,55,46,52,53,56,54,57,53,44,51,56,46,55,55,50,51,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,65,114,108,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,56,48,51,44,34,98,101,100,115,34,58,51,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,55,50,50,55,54,44,51,56,46,56,57,51,50,52,53,93,44,91,45,55,55,46,49,52,57,55,48,49,44,51,56,46,56,55,53,54,55,93,44,91,45,55,55,46,49,49,48,55,57,57,44,51,56,46,56,52,51,52,52,54,93,44,91,45,55,55,46,48,52,56,48,50,44,51,56,46,56,52,49,50,54,49,93,44,91,45,55,55,46,49,49,57,55,53,57,44,51,56,46,57,51,52,51,52,51,93,44,91,45,55,55,46,49,49,57,55,57,50,44,51,56,46,57,51,52,51,55,52,93,44,91,45,55,55,46,49,55,50,50,55,54,44,51,56,46,56,57,51,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,55,51,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,52,48,52,56,51,44,51,54,46,56,55,57,48,48,49,93,44,91,45,56,49,46,48,52,50,52,50,56,44,51,54,46,56,48,54,52,52,56,93,44,91,45,56,48,46,57,51,50,50,55,49,44,51,54,46,54,55,49,53,57,51,93,44,91,45,56,48,46,57,49,54,49,54,54,44,51,54,46,54,57,52,54,52,93,44,91,45,56,48,46,56,55,55,50,55,52,44,51,54,46,54,57,50,50,49,53,93,44,91,45,56,48,46,57,49,52,49,55,51,44,51,54,46,54,53,48,50,52,54,93,44,91,45,56,48,46,56,51,55,57,53,52,44,51,54,46,53,53,57,49,52,51,93,44,91,45,56,48,46,54,49,50,48,53,55,44,51,54,46,53,53,55,56,57,56,93,44,91,45,56,48,46,52,54,52,49,56,44,51,54,46,55,48,56,55,49,56,93,44,91,45,56,48,46,54,51,51,57,56,55,44,51,54,46,57,51,49,55,56,93,44,91,45,56,48,46,55,52,48,52,56,51,44,51,54,46,56,55,57,48,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,104,97,114,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,57,57,56,53,44,34,98,101,100,115,34,58,57,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,53,56,53,51,54,44,51,56,46,56,55,48,56,54,53,93,44,91,45,57,48,46,57,54,52,52,54,49,44,51,56,46,53,52,55,53,52,53,93,44,91,45,57,48,46,57,49,54,53,53,52,44,51,56,46,53,51,52,55,50,53,93,44,91,45,57,48,46,55,51,50,51,50,56,44,51,56,46,54,51,57,51,48,50,93,44,91,45,57,48,46,53,52,49,54,49,50,44,51,56,46,54,56,53,50,54,55,93,44,91,45,57,48,46,52,52,48,54,49,55,44,51,56,46,56,50,55,54,53,93,44,91,45,57,48,46,50,57,56,55,52,51,44,51,56,46,56,56,55,55,53,57,93,44,91,45,57,48,46,49,49,55,55,48,55,44,51,56,46,56,48,53,55,52,56,93,44,91,45,57,48,46,50,55,53,55,48,50,44,51,56,46,57,50,51,53,50,57,93,44,91,45,57,48,46,52,53,48,56,49,51,44,51,56,46,57,54,55,55,54,57,93,44,91,45,57,48,46,53,52,54,56,51,49,44,51,56,46,56,55,52,48,48,57,93,44,91,45,57,48,46,54,54,51,49,56,49,44,51,56,46,57,51,52,50,50,52,93,44,91,45,57,48,46,56,50,50,55,50,52,44,51,56,46,56,55,54,51,57,50,93,44,91,45,57,48,46,57,53,56,53,51,54,44,51,56,46,56,55,48,56,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,83,97,110,32,66,101,110,105,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,52,49,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,54,52,52,48,48,49,44,51,54,46,56,57,51,57,57,54,93,44,91,45,49,50,49,46,51,49,56,54,56,57,44,51,54,46,54,49,48,51,50,56,93,44,91,45,49,50,49,46,51,50,56,54,57,55,44,51,54,46,53,53,52,55,52,93,44,91,45,49,50,49,46,48,52,48,55,57,55,44,51,54,46,51,50,51,57,54,57,93,44,91,45,49,50,48,46,56,54,51,57,56,55,44,51,54,46,50,57,49,57,51,49,93,44,91,45,49,50,48,46,55,54,49,52,56,51,44,51,54,46,50,48,51,53,56,93,44,91,45,49,50,48,46,54,55,56,53,56,50,44,51,54,46,50,54,55,51,49,57,93,44,91,45,49,50,48,46,53,57,54,53,54,50,44,51,54,46,51,50,56,52,56,56,93,44,91,45,49,50,48,46,54,48,51,55,48,54,44,51,54,46,52,56,56,50,52,50,93,44,91,45,49,50,48,46,57,49,56,55,51,49,44,51,54,46,55,52,48,51,56,49,93,44,91,45,49,50,49,46,49,52,49,53,50,51,44,51,54,46,56,51,54,54,53,54,93,44,91,45,49,50,49,46,50,49,53,52,48,54,44,51,54,46,57,54,49,50,52,56,93,44,91,45,49,50,49,46,52,56,56,57,52,57,44,51,54,46,57,56,51,49,52,56,93,44,91,45,49,50,49,46,53,56,49,51,53,52,44,51,54,46,56,57,57,49,53,50,93,44,91,45,49,50,49,46,54,52,52,48,48,49,44,51,54,46,56,57,51,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,81,117,101,101,110,32,65,110,110,101,39,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,51,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,53,54,48,48,52,44,51,57,46,50,52,54,48,54,54,93,44,91,45,55,54,46,48,49,48,50,57,50,44,51,57,46,50,51,57,53,49,55,93,44,91,45,55,54,46,49,49,55,48,53,56,44,51,57,46,49,48,55,48,57,56,93,44,91,45,55,54,46,50,53,55,57,57,53,44,51,57,46,48,49,49,56,49,56,93,44,91,45,55,54,46,51,53,49,55,51,44,51,57,46,48,53,54,50,51,50,93,44,91,45,55,54,46,52,51,54,52,57,50,44,51,56,46,56,48,55,51,57,55,93,44,91,45,55,53,46,57,52,57,51,51,53,44,51,56,46,57,49,56,51,51,51,93,44,91,45,55,53,46,56,51,52,57,52,56,44,51,57,46,49,48,56,52,51,55,93,44,91,45,55,53,46,55,52,55,55,54,49,44,51,57,46,49,52,51,51,51,56,93,44,91,45,55,53,46,55,53,54,48,48,52,44,51,57,46,50,52,54,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,56,56,49,49,49,44,52,48,46,48,48,48,52,54,50,93,44,91,45,57,53,46,55,56,56,57,52,49,44,51,57,46,54,53,51,48,48,49,93,44,91,45,57,53,46,53,54,52,49,50,54,44,51,57,46,54,53,50,56,55,50,93,44,91,45,57,53,46,51,51,57,55,52,44,51,57,46,54,53,50,57,56,93,44,91,45,57,53,46,51,51,57,56,57,54,44,51,57,46,57,57,57,57,57,57,93,44,91,45,57,53,46,55,56,56,49,49,49,44,52,48,46,48,48,48,52,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,66,117,108,108,111,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,55,56,50,44,34,98,101,100,115,34,58,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,51,48,50,51,51,44,51,50,46,53,51,56,55,55,93,44,91,45,56,49,46,57,49,56,54,53,50,44,51,50,46,52,49,53,48,55,51,93,44,91,45,56,49,46,57,54,57,48,54,57,44,51,50,46,50,54,56,55,56,51,93,44,91,45,56,49,46,56,49,54,50,56,44,51,50,46,50,51,55,52,55,93,44,91,45,56,49,46,55,56,48,56,53,56,44,51,50,46,49,53,50,56,57,93,44,91,45,56,49,46,52,51,53,56,51,44,51,50,46,50,52,49,50,56,57,93,44,91,45,56,49,46,53,51,48,57,50,49,44,51,50,46,51,57,48,51,56,53,93,44,91,45,56,49,46,53,52,56,48,48,54,44,51,50,46,52,56,57,50,56,54,93,44,91,45,56,49,46,54,56,55,57,50,55,44,51,50,46,53,52,54,48,55,93,44,91,45,56,49,46,56,52,49,48,48,53,44,51,50,46,54,52,57,48,57,51,93,44,91,45,56,50,46,48,48,49,50,51,54,44,51,50,46,54,48,54,57,49,93,44,91,45,56,50,46,48,51,48,50,51,51,44,51,50,46,53,51,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,57,50,54,44,34,98,101,100,115,34,58,49,55,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,52,48,55,54,51,44,51,55,46,55,49,54,51,51,56,93,44,91,45,56,50,46,56,57,49,54,48,53,44,51,55,46,53,49,57,48,56,51,93,44,91,45,56,50,46,57,50,53,52,54,44,51,55,46,52,56,54,53,50,53,93,44,91,45,56,50,46,56,51,49,52,55,51,44,51,55,46,52,54,54,57,57,93,44,91,45,56,50,46,55,49,48,56,48,53,44,51,55,46,50,56,53,51,50,51,93,44,91,45,56,50,46,53,56,56,54,50,55,44,51,55,46,52,52,54,50,53,57,93,44,91,45,56,50,46,54,50,52,48,57,49,44,51,55,46,53,48,54,50,55,53,93,44,91,45,56,50,46,53,54,51,53,54,49,44,51,55,46,54,56,52,56,52,52,93,44,91,45,56,50,46,54,52,48,55,53,44,51,55,46,55,50,48,49,56,50,93,44,91,45,56,50,46,55,54,50,49,57,44,51,55,46,55,53,53,56,53,54,93,44,91,45,56,50,46,57,52,48,55,54,51,44,51,55,46,55,49,54,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,114,111,97,100,119,97,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,51,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,52,57,56,48,57,53,44,52,54,46,55,54,50,53,48,50,93,44,91,45,49,49,49,46,54,51,57,50,54,49,44,52,54,46,55,51,56,49,56,93,44,91,45,49,49,49,46,54,52,48,48,57,53,44,52,54,46,53,56,50,52,54,51,93,44,91,45,49,49,49,46,55,56,55,57,52,57,44,52,54,46,53,54,57,52,54,53,93,44,91,45,49,49,49,46,55,56,52,53,54,53,44,52,54,46,48,52,57,56,49,51,93,44,91,45,49,49,49,46,54,54,48,52,50,50,44,52,54,46,48,52,57,49,57,50,93,44,91,45,49,49,49,46,54,54,48,48,53,55,44,52,53,46,56,51,51,53,93,44,91,45,49,49,49,46,52,49,57,54,49,56,44,52,53,46,57,57,54,51,50,50,93,44,91,45,49,49,49,46,51,52,54,54,53,50,44,52,54,46,49,56,55,55,56,53,93,44,91,45,49,49,49,46,48,54,49,57,53,54,44,52,54,46,49,57,50,56,51,52,93,44,91,45,49,49,49,46,49,49,56,49,50,51,44,52,54,46,51,49,54,57,55,93,44,91,45,49,49,49,46,48,53,54,57,57,54,44,52,54,46,51,57,56,49,50,50,93,44,91,45,49,49,49,46,50,52,54,53,49,57,44,52,54,46,52,51,56,49,48,57,93,44,91,45,49,49,49,46,51,50,48,49,56,49,44,52,54,46,53,54,57,52,48,49,93,44,91,45,49,49,49,46,52,57,56,48,57,53,44,52,54,46,55,54,50,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,57,34,44,34,78,65,77,69,34,58,34,87,104,101,101,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,50,55,56,54,53,44,51,50,46,49,51,53,50,55,52,93,44,91,45,56,50,46,56,56,55,54,53,55,44,51,50,46,48,55,57,56,57,49,93,44,91,45,56,50,46,55,50,56,56,48,54,44,51,50,46,48,48,54,55,48,52,93,44,91,45,56,50,46,54,52,53,54,53,57,44,51,49,46,57,49,56,56,56,51,93,44,91,45,56,50,46,53,52,51,54,53,53,44,51,49,46,57,53,56,57,49,52,93,44,91,45,56,50,46,53,57,55,54,55,49,44,51,50,46,48,49,51,57,55,57,93,44,91,45,56,50,46,54,53,53,52,56,54,44,51,50,46,50,57,55,53,54,49,93,44,91,45,56,50,46,55,50,49,57,54,52,44,51,50,46,51,48,57,50,56,51,93,44,91,45,56,50,46,56,56,52,56,48,51,44,51,50,46,49,57,54,48,55,50,93,44,91,45,56,50,46,57,50,55,56,54,53,44,51,50,46,49,51,53,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,114,97,118,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,48,56,50,44,34,98,101,100,115,34,58,51,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,55,51,54,57,50,44,51,53,46,50,50,56,57,56,53,93,44,91,45,55,55,46,49,56,55,54,55,57,44,51,53,46,48,56,49,48,56,54,93,44,91,45,55,55,46,49,48,57,49,56,57,44,51,53,46,48,54,55,50,48,54,93,44,91,45,55,55,46,49,48,56,56,53,49,44,51,52,46,56,51,48,55,56,93,44,91,45,55,55,46,48,55,56,50,54,51,44,51,52,46,56,49,49,51,50,50,93,44,91,45,55,54,46,54,57,51,48,49,56,44,51,52,46,56,54,57,49,56,93,44,91,45,55,54,46,55,49,49,53,56,44,51,52,46,57,56,49,55,54,56,93,44,91,45,55,54,46,55,56,48,53,56,54,44,51,52,46,57,53,48,52,51,52,93,44,91,45,55,54,46,57,54,55,50,57,55,44,51,53,46,48,52,48,54,53,53,93,44,91,45,55,54,46,57,56,55,50,54,54,44,51,53,46,49,53,52,57,53,93,44,91,45,55,54,46,56,57,53,57,49,57,44,51,53,46,50,53,51,56,56,57,93,44,91,45,55,55,46,49,56,57,49,49,53,44,51,53,46,52,49,56,51,54,50,93,44,91,45,55,55,46,51,57,49,48,50,54,44,51,53,46,51,51,57,53,51,51,93,44,91,45,55,55,46,52,55,51,54,57,50,44,51,53,46,50,50,56,57,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,72,111,108,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,53,50,52,55,51,44,52,48,46,50,54,49,57,48,52,93,44,91,45,57,53,46,51,57,54,53,52,57,44,52,48,46,49,50,52,55,48,49,93,44,91,45,57,53,46,52,49,57,57,57,57,44,52,48,46,48,53,48,52,52,93,44,91,45,57,53,46,51,48,56,50,57,44,51,57,46,57,57,57,57,57,56,93,44,91,45,57,53,46,48,56,53,48,48,51,44,51,57,46,56,54,49,56,56,51,93,44,91,45,57,52,46,57,57,51,51,56,50,44,51,57,46,56,57,55,57,48,54,93,44,91,45,57,53,46,48,52,51,48,56,44,52,48,46,49,51,48,48,57,54,93,44,91,45,57,53,46,48,55,49,55,48,51,44,52,48,46,50,54,48,56,53,57,93,44,91,45,57,53,46,49,56,48,54,49,52,44,52,48,46,50,54,49,55,48,54,93,44,91,45,57,53,46,53,53,52,56,49,55,44,52,48,46,50,54,52,52,54,93,44,91,45,57,53,46,53,53,50,52,55,51,44,52,48,46,50,54,49,57,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,53,34,44,34,78,65,77,69,34,58,34,76,105,112,115,99,111,109,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,48,48,51,55,54,50,44,51,54,46,52,57,57,56,52,57,93,44,91,45,49,48,48,46,53,52,54,49,52,53,44,51,54,46,52,57,57,51,52,51,93,44,91,45,49,48,48,46,53,52,54,55,50,52,44,51,54,46,48,53,54,53,51,54,93,44,91,45,49,48,48,46,53,52,48,50,50,49,44,51,54,46,48,53,54,52,57,49,93,44,91,45,49,48,48,46,48,48,48,51,57,57,44,51,54,46,48,53,53,54,55,55,93,44,91,45,49,48,48,46,48,48,51,55,54,50,44,51,54,46,52,57,57,56,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,56,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,51,54,51,55,52,51,44,52,54,46,49,52,54,51,51,51,93,44,91,45,49,50,51,46,51,54,49,54,50,50,44,52,53,46,55,55,57,53,55,57,93,44,91,45,49,50,51,46,48,51,48,56,55,51,44,52,53,46,55,55,57,49,53,57,93,44,91,45,49,50,50,46,57,50,57,49,52,54,44,52,53,46,55,50,49,52,56,50,93,44,91,45,49,50,50,46,55,54,50,52,51,55,44,52,53,46,55,50,56,54,54,53,93,44,91,45,49,50,50,46,55,56,53,53,49,53,44,52,53,46,56,53,48,53,51,54,93,44,91,45,49,50,50,46,57,48,52,49,49,57,44,52,54,46,48,56,51,55,51,52,93,44,91,45,49,50,51,46,49,49,53,57,48,52,44,52,54,46,49,56,53,50,54,56,93,44,91,45,49,50,51,46,50,49,51,48,53,52,44,52,54,46,49,55,50,53,52,49,93,44,91,45,49,50,51,46,51,54,51,55,52,51,44,52,54,46,49,52,54,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,70,108,111,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,53,54,49,44,34,98,101,100,115,34,58,49,48,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,54,53,55,55,54,52,44,51,52,46,51,48,53,49,57,93,44,91,45,55,57,46,55,50,57,53,54,54,44,51,52,46,50,57,53,49,57,93,44,91,45,56,48,46,48,54,57,56,55,56,44,51,52,46,48,56,54,49,57,49,93,44,91,45,56,48,46,48,48,48,53,57,52,44,51,52,46,48,52,55,56,55,55,93,44,91,45,55,57,46,57,55,52,54,48,49,44,51,51,46,57,52,54,53,50,55,93,44,91,45,55,57,46,56,55,53,54,50,44,51,51,46,56,56,53,50,52,53,93,44,91,45,55,57,46,55,57,56,51,55,44,51,51,46,56,51,53,53,54,50,93,44,91,45,55,57,46,52,57,54,52,56,54,44,51,51,46,55,55,53,51,53,55,93,44,91,45,55,57,46,51,50,52,51,49,55,44,51,51,46,55,57,57,49,50,51,93,44,91,45,55,57,46,52,57,49,55,49,52,44,51,51,46,57,52,54,53,50,50,93,44,91,45,55,57,46,53,52,55,57,51,44,51,52,46,50,51,48,57,49,51,93,44,91,45,55,57,46,54,51,51,52,49,51,44,51,52,46,50,57,55,57,57,52,93,44,91,45,55,57,46,54,53,55,55,54,52,44,51,52,46,51,48,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,77,111,117,110,116,114,97,105,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,53,50,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,56,56,53,55,54,51,44,52,56,46,53,52,54,51,57,93,44,91,45,49,48,50,46,56,50,56,49,54,51,44,52,56,46,51,55,50,54,52,49,93,44,91,45,49,48,50,46,56,50,56,52,55,55,44,52,56,46,49,50,51,54,54,52,93,44,91,45,49,48,50,46,54,48,56,51,54,44,52,56,46,48,52,54,51,53,49,93,44,91,45,49,48,50,46,53,54,53,57,48,50,44,52,55,46,57,54,57,48,50,56,93,44,91,45,49,48,50,46,54,52,50,50,54,54,44,52,55,46,56,50,51,55,49,51,93,44,91,45,49,48,50,46,51,56,53,55,53,56,44,52,55,46,55,53,56,48,48,56,93,44,91,45,49,48,50,46,51,56,53,54,52,55,44,52,55,46,56,52,55,55,55,50,93,44,91,45,49,48,49,46,56,55,49,56,54,50,44,52,55,46,56,52,55,53,56,57,93,44,91,45,49,48,49,46,57,50,50,49,50,51,44,52,56,46,48,50,51,49,55,51,93,44,91,45,49,48,49,46,57,50,50,50,51,55,44,52,56,46,51,55,50,51,51,93,44,91,45,49,48,49,46,57,55,51,50,56,50,44,52,56,46,53,52,54,52,56,53,93,44,91,45,49,48,50,46,50,51,51,56,57,50,44,52,56,46,53,52,54,51,51,57,93,44,91,45,49,48,50,46,56,56,53,55,54,51,44,52,56,46,53,52,54,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,53,51,55,44,34,98,101,100,115,34,58,50,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,48,53,50,51,53,44,51,55,46,54,48,52,55,55,54,93,44,91,45,49,49,52,46,48,53,48,48,53,50,44,51,55,46,48,48,48,49,57,49,93,44,91,45,49,49,50,46,56,57,57,49,57,49,44,51,55,46,48,48,48,51,56,53,93,44,91,45,49,49,50,46,57,48,48,57,57,51,44,51,55,46,53,48,48,48,50,49,93,44,91,45,49,49,51,46,48,51,55,48,52,56,44,51,55,46,52,55,52,52,55,52,93,44,91,45,49,49,51,46,50,53,51,52,57,44,51,55,46,52,56,50,49,54,55,93,44,91,45,49,49,51,46,50,53,51,51,52,44,51,55,46,53,50,56,57,56,51,93,44,91,45,49,49,51,46,52,55,52,48,50,57,44,51,55,46,53,50,57,48,56,53,93,44,91,45,49,49,51,46,53,56,55,55,57,55,44,51,55,46,54,48,52,54,49,49,93,44,91,45,49,49,52,46,48,53,50,51,53,44,51,55,46,54,48,52,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,105,103,32,72,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,55,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,53,49,49,53,51,52,44,52,54,46,48,52,51,52,48,51,93,44,91,45,49,48,55,46,54,55,52,52,53,52,44,52,54,46,48,52,51,54,49,93,44,91,45,49,48,55,46,56,56,49,56,52,54,44,52,53,46,56,57,57,50,51,51,93,44,91,45,49,48,56,46,48,52,55,51,53,50,44,52,53,46,56,57,57,52,55,57,93,44,91,45,49,48,56,46,48,54,57,55,53,50,44,52,53,46,53,49,56,53,51,53,93,44,91,45,49,48,56,46,49,57,51,50,48,53,44,52,53,46,53,49,56,53,51,56,93,44,91,45,49,48,56,46,51,49,54,51,55,52,44,52,53,46,52,54,48,53,48,57,93,44,91,45,49,48,56,46,54,52,53,51,50,53,44,52,53,46,52,54,52,48,55,51,93,44,91,45,49,48,56,46,54,56,50,50,50,51,44,52,53,46,52,51,51,49,51,50,93,44,91,45,49,48,56,46,54,57,57,54,49,54,44,52,53,46,50,49,55,55,48,57,93,44,91,45,49,48,56,46,49,50,50,49,56,52,44,52,53,46,50,49,54,51,49,55,93,44,91,45,49,48,56,46,50,52,57,52,49,50,44,52,52,46,57,57,57,57,48,52,93,44,91,45,49,48,55,46,57,49,49,53,50,51,44,52,53,46,48,48,48,54,55,56,93,44,91,45,49,48,55,46,48,56,52,56,56,54,44,52,52,46,57,57,54,54,93,44,91,45,49,48,54,46,50,54,51,55,49,53,44,52,52,46,57,57,51,56,49,54,93,44,91,45,49,48,54,46,50,55,57,55,48,57,44,52,53,46,49,55,57,55,50,56,93,44,91,45,49,48,54,46,55,54,56,48,49,52,44,52,53,46,49,55,57,55,50,56,93,44,91,45,49,48,54,46,55,50,57,53,52,51,44,52,53,46,51,53,49,52,56,93,44,91,45,49,48,54,46,55,50,57,53,55,49,44,52,53,46,54,55,50,56,53,93,44,91,45,49,48,54,46,57,49,50,57,53,57,44,52,53,46,54,56,51,57,49,53,93,44,91,45,49,48,54,46,57,51,57,48,57,53,44,52,53,46,56,55,48,48,52,49,93,44,91,45,49,48,55,46,49,55,54,51,53,56,44,52,53,46,57,53,54,55,54,49,93,44,91,45,49,48,55,46,52,50,53,49,50,56,44,52,53,46,57,53,54,54,55,52,93,44,91,45,49,48,55,46,53,49,49,53,51,52,44,52,54,46,48,52,51,52,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,69,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,54,48,56,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,53,54,48,52,50,44,52,49,46,54,50,51,52,48,50,93,44,91,45,55,56,46,57,55,54,54,53,56,44,52,49,46,52,53,49,55,54,49,93,44,91,45,55,57,46,48,57,51,53,56,56,44,52,49,46,52,50,51,50,56,54,93,44,91,45,55,57,46,48,57,53,48,57,54,44,52,49,46,51,52,48,54,53,56,93,44,91,45,55,56,46,57,53,57,49,53,55,44,52,49,46,51,54,50,49,54,49,93,44,91,45,55,56,46,55,51,53,50,56,44,52,49,46,50,54,50,57,49,53,93,44,91,45,55,56,46,55,49,48,50,52,56,44,52,49,46,50,48,49,56,53,57,93,44,91,45,55,56,46,54,52,54,54,54,54,44,52,49,46,50,53,51,55,55,56,93,44,91,45,55,56,46,50,51,54,56,49,55,44,52,49,46,50,51,48,52,55,53,93,44,91,45,55,56,46,50,53,51,57,53,57,44,52,49,46,52,48,52,55,50,49,93,44,91,45,55,56,46,52,50,48,48,50,56,44,52,49,46,52,48,53,48,52,54,93,44,91,45,55,56,46,52,49,57,49,49,56,44,52,49,46,54,48,50,49,56,56,93,44,91,45,55,56,46,52,56,51,52,48,57,44,52,49,46,54,50,57,56,57,56,93,44,91,45,55,56,46,57,53,54,48,53,54,44,52,49,46,54,50,51,56,54,51,93,44,91,45,55,56,46,57,53,54,48,52,50,44,52,49,46,54,50,51,52,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,83,105,111,117,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,50,56,51,56,44,52,50,46,54,49,49,55,54,55,93,44,91,45,49,48,52,46,48,53,50,54,52,53,44,52,50,46,48,48,49,55,49,56,93,44,91,45,49,48,51,46,52,48,49,54,51,57,44,52,50,46,48,48,51,53,52,93,44,91,45,49,48,51,46,52,52,52,49,48,56,44,52,50,46,48,57,48,55,48,56,93,44,91,45,49,48,51,46,52,52,52,53,51,50,44,52,50,46,52,51,55,51,53,52,93,44,91,45,49,48,51,46,52,56,48,48,56,50,44,52,50,46,52,51,55,50,54,55,93,44,91,45,49,48,51,46,52,56,48,52,48,51,44,52,50,46,55,56,52,57,54,54,93,44,91,45,49,48,51,46,53,48,53,49,44,52,51,46,48,48,48,55,55,93,44,91,45,49,48,52,46,48,53,51,48,50,56,44,52,51,46,48,48,48,53,56,53,93,44,91,45,49,48,52,46,48,53,50,56,51,56,44,52,50,46,54,49,49,55,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,118,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,57,49,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,48,49,50,50,55,44,51,49,46,55,57,54,56,54,51,93,44,91,45,56,57,46,54,53,51,48,50,53,44,51,49,46,55,56,48,54,53,51,93,44,91,45,56,57,46,55,53,53,49,48,51,44,51,49,46,55,55,52,54,53,52,93,44,91,45,56,57,46,55,53,53,54,49,52,44,51,49,46,54,48,57,55,53,49,93,44,91,45,56,57,46,54,48,50,56,56,57,44,51,49,46,53,51,56,56,51,54,93,44,91,45,56,57,46,53,56,54,56,49,57,44,51,49,46,52,51,51,54,56,56,93,44,91,45,56,57,46,52,53,49,54,49,54,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,51,57,57,49,55,56,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,52,48,49,50,50,55,44,51,49,46,55,57,54,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,111,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,55,50,44,34,98,101,100,115,34,58,49,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,48,53,54,53,48,55,44,49,56,46,52,54,48,57,53,52,93,44,91,45,54,55,46,49,51,50,50,49,44,49,56,46,51,56,57,51,57,49,93,44,91,45,54,55,46,49,51,48,49,54,55,44,49,56,46,51,49,55,57,50,55,93,44,91,45,54,55,46,48,53,50,53,56,51,44,49,56,46,51,48,54,54,53,53,93,44,91,45,54,55,46,48,50,55,49,55,51,44,49,56,46,51,57,51,51,55,54,93,44,91,45,54,55,46,48,53,54,53,48,55,44,49,56,46,52,54,48,57,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,51,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,56,49,51,57,53,44,51,57,46,51,51,57,55,53,50,93,44,91,45,56,54,46,51,55,48,48,54,54,44,51,57,46,48,52,56,51,55,53,93,44,91,45,56,54,46,51,49,56,49,51,51,44,51,57,46,48,52,56,56,49,93,44,91,45,56,54,46,48,56,48,50,55,50,44,51,57,46,48,53,48,50,55,93,44,91,45,56,54,46,48,56,53,54,48,49,44,51,57,46,51,52,52,49,56,57,93,44,91,45,56,54,46,50,53,49,54,56,52,44,51,57,46,51,52,49,54,55,50,93,44,91,45,56,54,46,51,56,49,51,57,53,44,51,57,46,51,51,57,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,55,48,50,44,34,98,101,100,115,34,58,50,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,52,55,56,57,51,44,51,56,46,53,54,49,50,54,57,93,44,91,45,56,53,46,57,57,51,51,49,55,44,51,56,46,52,56,56,53,52,93,44,91,45,56,53,46,57,57,52,54,50,44,51,56,46,52,49,56,51,52,53,93,44,91,45,56,53,46,56,48,55,55,48,52,44,51,56,46,52,48,52,52,52,51,93,44,91,45,56,53,46,55,57,50,51,49,54,44,51,56,46,50,56,55,52,51,51,93,44,91,45,56,53,46,54,51,55,56,54,49,44,51,56,46,51,56,48,50,54,51,93,44,91,45,56,53,46,53,56,54,48,51,51,44,51,56,46,52,53,48,48,57,50,93,44,91,45,56,53,46,52,51,51,49,56,57,44,51,56,46,53,50,52,51,55,53,93,44,91,45,56,53,46,52,50,56,50,56,51,44,51,56,46,53,56,54,51,50,53,93,44,91,45,56,53,46,53,54,57,57,56,44,51,56,46,54,48,54,49,53,53,93,44,91,45,56,53,46,55,57,51,53,56,52,44,51,56,46,54,48,52,56,49,52,93,44,91,45,56,53,46,56,52,55,56,57,51,44,51,56,46,53,54,49,50,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,111,121,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,57,49,51,44,34,98,101,100,115,34,58,49,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,52,52,56,56,56,44,51,55,46,55,49,51,48,55,53,93,44,91,45,56,53,46,48,50,53,48,50,49,44,51,55,46,54,55,56,56,53,52,93,44,91,45,56,53,46,48,51,48,49,55,50,44,51,55,46,54,51,49,50,55,93,44,91,45,56,53,46,48,51,57,54,55,52,44,51,55,46,53,52,53,50,51,50,93,44,91,45,56,52,46,56,52,55,52,51,52,44,51,55,46,53,52,56,51,52,51,93,44,91,45,56,52,46,54,53,56,50,57,54,44,51,55,46,54,51,52,53,48,49,93,44,91,45,56,52,46,55,52,52,56,56,56,44,51,55,46,55,49,51,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,69,115,116,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,56,48,51,51,55,44,51,55,46,56,53,51,48,54,54,93,44,91,45,56,52,46,49,50,54,57,52,56,44,51,55,46,54,52,50,52,50,49,93,44,91,45,56,52,46,48,57,48,51,54,52,44,51,55,46,53,54,54,50,50,55,93,44,91,45,56,51,46,57,48,53,53,55,44,51,55,46,53,52,50,56,53,54,93,44,91,45,56,51,46,56,50,51,48,51,44,51,55,46,54,53,57,56,55,50,93,44,91,45,56,51,46,55,50,50,49,44,51,55,46,55,49,54,52,50,93,44,91,45,56,51,46,57,48,54,50,53,49,44,51,55,46,55,53,57,51,54,51,93,44,91,45,56,52,46,48,48,49,57,54,55,44,51,55,46,56,51,55,53,57,50,93,44,91,45,56,52,46,48,56,48,51,51,55,44,51,55,46,56,53,51,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,67,111,108,108,105,110,103,115,119,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,57,54,44,34,98,101,100,115,34,58,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,51,56,57,55,56,44,51,53,46,49,56,51,49,52,52,93,44,91,45,49,48,48,46,53,52,48,55,48,51,44,51,52,46,55,52,55,55,50,51,93,44,91,45,49,48,48,46,52,49,53,56,57,53,44,51,52,46,55,52,55,53,50,53,93,44,91,45,49,48,48,46,48,48,48,51,56,49,44,51,52,46,55,52,54,51,53,56,93,44,91,45,49,48,48,46,48,48,48,51,56,52,44,51,53,46,48,50,57,57,51,93,44,91,45,49,48,48,46,48,48,48,51,56,53,44,51,53,46,49,56,50,55,48,50,93,44,91,45,49,48,48,46,53,51,56,57,55,56,44,51,53,46,49,56,51,49,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,48,50,50,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,55,52,50,50,50,44,50,57,46,54,51,50,55,48,54,93,44,91,45,57,54,46,55,57,51,49,51,50,44,50,57,46,53,55,55,51,55,56,93,44,91,45,57,54,46,53,54,48,53,53,53,44,50,57,46,51,51,53,52,51,57,93,44,91,45,57,54,46,54,53,56,52,54,54,44,50,57,46,50,54,51,56,55,54,93,44,91,45,57,54,46,54,52,48,51,49,53,44,50,57,46,50,52,55,56,48,52,93,44,91,45,57,54,46,51,52,57,50,49,55,44,50,57,46,52,48,54,48,53,50,93,44,91,45,57,54,46,51,48,55,54,55,50,44,50,57,46,53,49,52,53,50,51,93,44,91,45,57,54,46,49,55,53,52,50,50,44,50,57,46,54,51,51,56,48,54,93,44,91,45,57,54,46,50,53,54,54,57,54,44,50,57,46,54,54,55,48,54,49,93,44,91,45,57,54,46,51,51,48,56,54,57,44,50,57,46,56,49,52,52,52,57,93,44,91,45,57,54,46,52,49,51,50,56,51,44,50,57,46,56,50,52,57,56,53,93,44,91,45,57,54,46,53,54,57,56,52,52,44,50,57,46,57,54,49,53,49,54,93,44,91,45,57,54,46,56,55,52,50,50,50,44,50,57,46,54,51,50,55,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,71,114,117,110,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,53,48,57,44,34,98,101,100,115,34,58,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,53,50,50,51,49,44,52,49,46,52,54,51,48,54,54,93,44,91,45,56,56,46,53,57,53,57,54,49,44,52,49,46,52,53,55,49,50,57,93,44,91,45,56,56,46,53,56,54,50,52,44,52,49,46,49,48,56,50,57,51,93,44,91,45,56,56,46,50,53,49,53,48,49,44,52,49,46,49,49,52,50,49,56,93,44,91,45,56,56,46,50,52,52,49,52,52,44,52,49,46,50,48,49,53,54,54,93,44,91,45,56,56,46,50,53,50,50,51,49,44,52,49,46,52,54,51,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,48,55,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,53,49,56,50,44,52,52,46,53,52,51,54,53,50,93,44,91,45,57,54,46,52,53,50,55,55,51,44,52,52,46,49,57,54,55,56,93,44,91,45,57,54,46,48,55,56,53,56,44,52,52,46,49,57,54,54,50,93,44,91,45,57,54,46,48,57,50,57,53,44,52,52,46,54,51,48,52,56,54,93,44,91,45,57,54,46,52,53,49,53,54,54,44,52,52,46,54,51,49,51,52,57,93,44,91,45,57,54,46,52,53,49,56,50,44,52,52,46,53,52,51,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,69,118,97,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,50,55,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,50,53,51,51,57,44,51,50,46,50,55,56,56,56,51,93,44,91,45,56,49,46,57,56,48,48,52,49,44,51,50,46,48,56,49,53,48,50,93,44,91,45,56,49,46,55,54,49,55,51,53,44,51,50,46,48,52,55,57,93,44,91,45,56,49,46,55,49,56,54,53,56,44,51,50,46,48,56,57,51,53,49,93,44,91,45,56,49,46,55,56,48,56,53,56,44,51,50,46,49,53,50,56,57,93,44,91,45,56,49,46,56,49,54,50,56,44,51,50,46,50,51,55,52,55,93,44,91,45,56,49,46,57,54,57,48,54,57,44,51,50,46,50,54,56,55,56,51,93,44,91,45,56,50,46,48,50,53,51,51,57,44,51,50,46,50,55,56,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,57,55,34,44,34,78,65,77,69,34,58,34,87,105,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,54,51,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,56,55,48,54,53,44,51,51,46,52,51,51,54,56,49,93,44,91,45,57,55,46,57,49,56,49,56,57,44,51,51,46,52,51,51,56,55,51,93,44,91,45,57,55,46,57,50,49,54,52,50,44,51,51,46,48,48,49,50,56,52,93,44,91,45,57,55,46,53,52,52,49,56,49,44,51,50,46,57,57,52,49,55,55,93,44,91,45,57,55,46,51,57,56,52,56,44,51,50,46,57,57,48,56,51,57,93,44,91,45,57,55,46,51,56,51,48,57,53,44,51,51,46,52,51,48,52,53,93,44,91,45,57,55,46,52,56,55,48,54,53,44,51,51,46,52,51,51,54,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,53,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,48,34,44,34,78,65,77,69,34,58,34,66,101,116,104,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,52,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,54,48,46,53,51,52,54,55,49,44,54,49,46,57,52,53,57,52,93,44,91,45,49,54,48,46,51,53,48,49,52,44,54,49,46,56,49,57,48,55,49,93,44,91,45,49,54,48,46,55,55,53,50,52,52,44,54,49,46,55,51,56,53,50,55,93,44,91,45,49,54,49,46,49,50,54,56,49,50,44,54,49,46,53,57,57,53,52,93,44,91,45,49,54,49,46,52,52,57,54,49,49,44,54,49,46,53,54,56,56,51,56,93,44,91,45,49,54,50,46,48,49,51,52,51,56,44,54,49,46,52,55,55,48,53,55,93,44,91,45,49,54,50,46,53,48,53,55,54,49,44,54,49,46,53,53,54,52,50,54,93,44,91,45,49,54,51,46,49,55,49,51,53,52,44,54,49,46,52,52,57,48,55,49,93,44,91,45,49,54,51,46,52,50,56,56,54,54,44,54,49,46,52,54,50,50,56,93,44,91,45,49,54,51,46,54,53,53,51,57,44,54,49,46,51,51,53,56,50,55,93,44,91,45,49,54,51,46,57,56,53,49,51,56,44,54,49,46,51,55,50,48,48,51,93,44,91,45,49,54,51,46,57,50,48,56,55,52,44,54,49,46,50,49,48,54,57,50,93,44,91,45,49,54,52,46,50,49,49,55,56,49,44,54,49,46,48,56,50,50,54,50,93,44,91,45,49,54,52,46,50,51,57,55,50,55,44,54,48,46,57,56,55,49,49,57,93,44,91,45,49,54,52,46,53,50,57,57,49,49,44,54,48,46,57,52,48,55,57,54,93,44,91,45,49,54,52,46,54,49,54,53,56,53,44,54,48,46,57,55,57,48,52,57,93,44,91,45,49,54,53,46,48,48,48,53,49,52,44,54,48,46,57,54,51,54,51,53,93,44,91,45,49,54,53,46,50,53,52,49,54,50,44,54,48,46,57,49,55,49,48,56,93,44,91,45,49,54,53,46,49,50,51,51,54,57,44,54,48,46,55,51,54,54,50,55,93,44,91,45,49,54,53,46,53,49,56,50,54,51,44,54,48,46,53,54,54,48,49,54,93,44,91,45,49,54,53,46,52,50,54,53,51,44,54,48,46,52,55,52,51,56,51,93,44,91,45,49,54,53,46,50,51,53,52,49,49,44,54,48,46,52,50,53,49,53,93,44,91,45,49,54,52,46,57,55,49,57,49,54,44,54,48,46,50,55,55,48,49,57,93,44,91,45,49,54,52,46,55,52,56,56,49,44,54,48,46,50,52,48,51,49,51,93,44,91,45,49,54,52,46,51,54,52,51,51,50,44,53,57,46,57,57,57,50,50,51,93,44,91,45,49,54,52,46,52,49,53,54,57,54,44,53,57,46,56,56,52,56,54,55,93,44,91,45,49,54,52,46,48,49,51,51,44,53,57,46,54,51,55,55,53,57,93,44,91,45,49,54,51,46,55,54,48,57,54,49,44,53,57,46,54,51,57,55,49,54,93,44,91,45,49,54,51,46,55,56,52,51,55,51,44,53,57,46,55,52,48,53,54,57,93,44,91,45,49,54,51,46,49,52,53,56,54,51,44,53,57,46,55,57,53,54,52,50,93,44,91,45,49,54,50,46,56,54,56,54,54,49,44,53,57,46,55,56,48,51,56,49,93,44,91,45,49,54,50,46,55,48,55,53,53,57,44,53,57,46,56,56,48,49,55,53,93,44,91,45,49,54,50,46,52,52,57,56,52,56,44,53,57,46,56,56,52,54,49,54,93,44,91,45,49,54,50,46,51,54,52,51,52,49,44,53,57,46,56,49,48,56,54,57,93,44,91,45,49,54,50,46,49,55,56,51,50,57,44,53,57,46,56,49,52,56,52,50,93,44,91,45,49,54,49,46,56,55,49,50,54,54,44,53,57,46,53,50,52,55,57,49,93,44,91,45,49,54,50,46,48,53,51,54,49,50,44,53,57,46,52,48,56,57,57,93,44,91,45,49,54,50,46,49,54,54,54,48,52,44,53,57,46,50,55,53,48,55,53,93,44,91,45,49,54,50,46,49,48,50,49,57,56,44,53,57,46,49,50,56,55,53,50,93,44,91,45,49,54,49,46,56,56,49,55,54,53,44,53,56,46,57,52,52,49,52,54,93,44,91,45,49,54,49,46,56,53,49,50,48,49,44,53,56,46,56,48,55,57,56,51,93,44,91,45,49,54,49,46,57,54,51,48,50,56,44,53,56,46,55,50,54,50,51,51,93,44,91,45,49,54,50,46,49,54,56,53,50,50,44,53,56,46,55,49,48,50,55,54,93,44,91,45,49,54,50,46,50,55,48,52,49,49,44,53,56,46,54,50,50,49,50,54,93,44,91,45,49,54,50,46,49,51,50,50,49,55,44,53,56,46,53,55,49,51,55,54,93,44,91,45,49,54,49,46,56,54,53,48,53,50,44,53,56,46,53,54,54,48,56,55,93,44,91,45,49,54,49,46,54,52,48,50,52,57,44,53,56,46,53,48,50,51,50,54,93,44,91,45,49,54,49,46,51,52,49,56,52,44,53,56,46,54,48,55,48,57,49,93,44,91,45,49,54,49,46,49,57,56,49,56,51,44,53,56,46,55,51,57,51,51,55,93,44,91,45,49,54,49,46,51,54,52,57,51,49,44,53,56,46,56,50,54,48,50,49,93,44,91,45,49,54,49,46,48,51,49,52,52,49,44,53,56,46,56,51,57,55,53,50,93,44,91,45,49,54,49,46,48,51,49,52,52,56,44,53,56,46,57,57,57,51,57,51,93,44,91,45,49,54,48,46,56,54,52,55,48,51,44,53,56,46,57,57,57,51,57,52,93,44,91,45,49,54,48,46,56,49,50,49,51,51,44,53,57,46,48,56,54,48,55,55,93,44,91,45,49,54,48,46,56,49,50,49,52,44,53,57,46,50,53,57,52,51,56,93,44,91,45,49,54,48,46,54,52,51,55,49,54,44,53,57,46,50,53,57,52,52,93,44,91,45,49,54,48,46,52,55,53,50,57,54,44,53,57,46,51,52,54,49,50,50,93,44,91,45,49,54,48,46,52,49,56,54,52,44,53,57,46,52,51,50,56,93,44,91,45,49,54,48,46,52,49,56,54,52,55,44,53,57,46,54,48,54,49,53,50,93,44,91,45,49,54,48,46,50,52,56,53,48,51,44,53,57,46,54,48,54,49,53,52,93,44,91,45,49,54,48,46,50,52,56,53,49,44,53,57,46,55,55,57,53,48,49,93,44,91,45,49,54,48,46,48,49,55,52,50,51,44,53,57,46,55,55,57,53,48,52,93,44,91,45,49,54,48,46,48,49,55,52,51,44,53,57,46,57,53,50,56,52,54,93,44,91,45,49,53,57,46,56,52,53,53,50,52,44,53,57,46,57,53,50,56,52,56,93,44,91,45,49,53,57,46,56,52,53,53,51,51,44,54,48,46,49,50,54,49,56,54,93,44,91,45,49,53,57,46,55,56,49,57,48,54,44,54,48,46,50,49,50,56,53,52,93,44,91,45,49,53,57,46,54,48,56,49,57,54,44,54,48,46,50,49,50,56,53,54,93,44,91,45,49,53,57,46,54,48,56,50,48,52,44,54,48,46,51,56,54,49,56,56,93,44,91,45,49,53,57,46,52,51,52,52,57,55,44,54,48,46,51,56,54,49,57,93,44,91,45,49,53,57,46,51,54,54,50,48,54,44,54,48,46,52,55,50,56,53,54,93,44,91,45,49,53,57,46,51,54,54,50,49,53,44,54,48,46,54,52,54,49,55,57,93,44,91,45,49,53,57,46,49,57,48,54,53,55,44,54,48,46,54,52,54,49,56,49,93,44,91,45,49,53,57,46,48,49,53,49,48,52,44,54,48,46,55,51,50,56,52,51,93,44,91,45,49,53,56,46,57,52,49,57,50,54,44,54,48,46,57,48,54,49,54,50,93,44,91,45,49,53,55,46,56,55,55,50,50,52,44,54,48,46,57,48,54,49,55,50,93,44,91,45,49,53,55,46,53,50,50,51,51,50,44,54,48,46,57,57,50,56,51,52,93,44,91,45,49,53,55,46,49,54,55,52,50,56,44,54,48,46,57,57,50,56,51,57,93,44,91,45,49,53,55,46,49,54,55,52,50,44,54,48,46,57,48,54,49,56,51,93,44,91,45,49,53,54,46,48,48,48,48,56,54,44,54,48,46,57,48,54,49,57,93,44,91,45,49,53,52,46,54,49,52,50,49,53,44,54,48,46,57,48,54,50,48,52,93,44,91,45,49,53,51,46,52,52,48,56,56,52,44,54,48,46,57,48,54,50,51,54,93,44,91,45,49,53,51,46,52,52,48,56,55,55,44,54,49,46,49,54,54,49,57,54,93,44,91,45,49,53,51,46,52,56,53,53,55,53,44,54,49,46,52,50,54,49,53,51,93,44,91,45,49,53,50,46,57,57,57,56,56,50,44,54,49,46,52,50,54,49,55,50,93,44,91,45,49,53,50,46,57,57,57,56,51,57,44,54,50,46,50,57,50,54,50,49,93,44,91,45,49,53,51,46,48,55,48,49,50,51,44,54,50,46,50,48,54,48,49,53,93,44,91,45,49,53,51,46,51,57,53,48,48,57,44,54,50,46,50,48,53,57,57,93,44,91,45,49,53,51,46,51,57,53,48,48,57,44,54,50,46,49,49,57,51,52,55,93,44,91,45,49,53,51,46,55,54,49,56,55,49,44,54,50,46,49,49,57,51,51,53,93,44,91,45,49,53,51,46,55,54,49,56,55,53,44,54,50,46,48,51,50,54,56,57,93,44,91,45,49,53,53,46,52,57,55,54,52,53,44,54,50,46,48,51,50,54,53,57,93,44,91,45,49,53,55,46,48,54,51,56,53,50,44,54,50,46,48,51,50,54,51,52,93,44,91,45,49,53,55,46,48,54,51,56,54,52,44,54,50,46,49,49,57,50,55,49,93,44,91,45,49,53,56,46,53,51,49,51,54,49,44,54,50,46,49,49,57,50,54,52,93,44,91,45,49,53,56,46,53,51,49,51,53,49,44,54,50,46,48,51,50,54,50,93,44,91,45,49,53,57,46,50,54,53,48,51,53,44,54,50,46,48,51,50,53,57,56,93,44,91,45,49,53,57,46,50,54,53,48,51,55,44,54,49,46,57,52,53,57,53,55,93,44,91,45,49,54,48,46,53,51,52,54,55,49,44,54,49,46,57,52,53,57,52,93,93,93,44,91,91,91,45,49,54,55,46,53,53,56,50,50,56,44,54,48,46,50,50,52,51,53,55,93,44,91,45,49,54,55,46,51,56,53,53,56,44,54,48,46,48,50,49,50,48,55,93,44,91,45,49,54,54,46,57,52,48,54,50,50,44,53,57,46,57,49,49,57,48,56,93,44,91,45,49,54,54,46,54,50,54,49,50,54,44,53,57,46,55,57,55,48,54,49,93,44,91,45,49,54,54,46,52,50,57,54,55,49,44,53,57,46,56,48,49,54,51,54,93,44,91,45,49,54,54,46,49,57,54,54,49,51,44,53,57,46,55,48,51,51,56,52,93,44,91,45,49,54,54,46,48,53,55,56,57,51,44,53,57,46,54,57,53,53,51,53,93,44,91,45,49,54,53,46,56,50,52,56,53,57,44,53,57,46,56,48,54,55,52,54,93,44,91,45,49,54,53,46,52,57,53,52,55,44,53,57,46,56,55,48,49,56,52,93,44,91,45,49,54,53,46,52,48,50,52,53,56,44,53,57,46,57,55,48,52,52,56,93,44,91,45,49,54,53,46,53,55,51,49,55,51,44,54,48,46,48,55,53,48,54,51,93,44,91,45,49,54,53,46,53,54,49,53,49,57,44,54,48,46,51,48,49,55,50,54,93,44,91,45,49,54,53,46,55,51,56,52,54,53,44,54,48,46,52,48,53,54,48,57,93,44,91,45,49,54,54,46,48,48,53,55,57,56,44,54,48,46,52,49,57,53,55,51,93,44,91,45,49,54,54,46,49,53,50,52,51,50,44,54,48,46,53,49,48,55,52,55,93,44,91,45,49,54,54,46,51,52,57,56,50,51,44,54,48,46,52,49,55,55,52,53,93,44,91,45,49,54,54,46,53,50,56,56,51,57,44,54,48,46,52,52,52,50,55,93,44,91,45,49,54,54,46,55,51,57,51,51,55,44,54,48,46,51,56,55,56,54,49,93,44,91,45,49,54,54,46,57,52,51,55,55,56,44,54,48,46,50,55,56,49,48,51,93,44,91,45,49,54,55,46,51,48,57,56,51,44,54,48,46,50,57,48,55,49,56,93,44,91,45,49,54,55,46,53,53,56,50,50,56,44,54,48,46,50,50,52,51,53,55,93,93,93,44,91,91,91,45,49,55,51,46,50,51,50,50,51,49,44,54,48,46,54,53,52,51,52,93,44,91,45,49,55,51,46,49,52,48,50,50,51,44,54,48,46,53,55,53,53,51,51,93,44,91,45,49,55,51,46,49,54,55,56,49,56,44,54,48,46,52,56,49,48,56,93,44,91,45,49,55,50,46,57,49,48,50,50,56,44,54,48,46,51,51,57,54,50,51,93,44,91,45,49,55,50,46,53,57,54,49,50,53,44,54,48,46,50,53,56,54,50,50,93,44,91,45,49,55,50,46,52,48,55,53,50,54,44,54,48,46,50,55,56,55,54,52,93,44,91,45,49,55,50,46,49,56,57,52,56,56,44,54,48,46,50,53,48,56,49,54,93,44,91,45,49,55,50,46,49,48,57,48,57,44,54,48,46,51,49,52,48,49,50,93,44,91,45,49,55,50,46,51,57,51,53,55,44,54,48,46,52,51,54,53,48,54,93,44,91,45,49,55,50,46,54,56,55,56,52,44,54,48,46,52,56,48,49,50,93,44,91,45,49,55,50,46,57,52,51,56,52,57,44,54,48,46,54,53,48,55,93,44,91,45,49,55,50,46,57,56,57,55,54,50,44,54,48,46,55,51,49,56,49,49,93,44,91,45,49,55,51,46,49,53,56,54,51,50,44,54,48,46,55,50,56,55,55,93,44,91,45,49,55,51,46,50,51,50,50,51,49,44,54,48,46,54,53,52,51,52,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,55,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,52,57,51,49,57,44,51,50,46,50,51,50,57,53,51,93,44,91,45,56,52,46,54,53,53,56,50,44,51,49,46,57,50,48,51,48,56,93,44,91,45,56,52,46,53,57,57,55,55,54,44,51,49,46,57,50,48,49,55,49,93,44,91,45,56,52,46,52,52,51,56,48,55,44,51,49,46,57,54,55,52,53,54,93,44,91,45,56,52,46,52,51,49,50,49,52,44,51,50,46,49,51,52,48,53,56,93,44,91,45,56,52,46,53,50,55,49,49,55,44,51,50,46,49,51,52,53,53,54,93,44,91,45,56,52,46,54,52,57,51,49,57,44,51,50,46,50,51,50,57,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,53,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,49,54,48,52,56,44,51,51,46,49,51,49,56,49,54,93,44,91,45,56,51,46,55,49,48,54,56,53,44,51,50,46,57,53,50,55,57,50,93,44,91,45,56,51,46,54,53,56,50,49,49,44,51,50,46,56,56,55,57,49,51,93,44,91,45,56,51,46,53,49,51,53,49,49,44,51,50,46,56,52,52,56,54,56,93,44,91,45,56,51,46,52,48,54,57,57,44,51,50,46,56,57,56,50,50,93,44,91,45,56,51,46,51,53,55,54,56,53,44,51,50,46,57,50,54,49,52,49,93,44,91,45,56,51,46,52,50,57,48,57,44,51,51,46,49,56,53,51,53,50,93,44,91,45,56,51,46,53,52,53,56,55,54,44,51,51,46,49,55,49,57,52,52,93,44,91,45,56,51,46,56,49,54,48,52,56,44,51,51,46,49,51,49,56,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,71,119,105,110,110,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,50,50,57,56,44,34,98,101,100,115,34,58,49,48,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,57,55,54,57,51,44,51,52,46,48,53,48,55,48,56,93,44,91,45,56,52,46,50,55,55,48,57,51,44,51,51,46,57,53,55,54,49,52,93,44,91,45,56,52,46,50,53,57,56,50,50,44,51,51,46,57,49,56,57,48,49,93,44,91,45,56,52,46,48,50,51,55,49,51,44,51,51,46,55,53,50,56,48,56,93,44,91,45,56,51,46,57,56,50,48,51,51,44,51,51,46,55,56,54,48,53,52,93,44,91,45,56,51,46,55,57,57,49,48,52,44,51,51,46,57,50,57,56,52,52,93,44,91,45,56,51,46,56,54,56,57,51,49,44,51,52,46,48,48,52,55,56,54,93,44,91,45,56,51,46,56,49,55,54,56,50,44,51,52,46,49,50,55,52,57,51,93,44,91,45,56,51,46,56,54,56,48,51,44,51,52,46,48,57,56,50,56,49,93,44,91,45,56,52,46,48,54,50,56,52,49,44,51,52,46,49,54,55,56,55,51,93,44,91,45,56,52,46,48,57,55,54,57,51,44,51,52,46,48,53,48,55,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,51,52,57,44,34,98,101,100,115,34,58,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,56,55,48,54,55,44,52,53,46,54,52,52,49,52,56,93,44,91,45,57,50,46,54,52,54,54,48,50,44,52,53,46,52,52,49,54,51,53,93,44,91,45,57,50,46,55,52,53,54,56,51,44,52,53,46,50,57,54,48,52,50,93,44,91,45,57,50,46,55,53,56,48,48,56,44,52,53,46,50,48,57,53,54,54,93,44,91,45,57,50,46,49,53,54,52,54,53,44,52,53,46,50,48,57,53,53,52,93,44,91,45,57,50,46,49,53,52,56,56,56,44,52,53,46,54,51,57,55,52,50,93,44,91,45,57,50,46,49,53,52,52,52,51,44,52,53,46,55,50,53,54,49,54,93,44,91,45,57,50,46,53,50,56,49,57,56,44,52,53,46,55,50,56,54,56,93,44,91,45,57,50,46,53,50,57,49,48,55,44,52,53,46,54,52,50,48,55,54,93,44,91,45,57,50,46,56,56,55,48,54,55,44,52,53,46,54,52,52,49,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,54,52,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,51,56,52,49,44,52,50,46,56,49,51,55,57,57,93,44,91,45,56,57,46,56,51,55,53,56,55,44,52,50,46,53,48,53,55,49,93,44,91,45,56,57,46,52,48,49,52,50,51,44,52,50,46,53,48,48,53,53,52,93,44,91,45,56,57,46,51,54,53,55,57,56,44,52,50,46,53,48,48,48,55,56,93,44,91,45,56,57,46,51,54,57,49,50,56,44,52,50,46,56,52,53,48,51,54,93,44,91,45,56,57,46,56,51,56,49,54,55,44,52,50,46,56,53,55,51,57,55,93,44,91,45,56,57,46,56,51,56,52,49,44,52,50,46,56,49,51,55,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,79,114,111,99,111,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,55,55,55,49,50,44,49,56,46,50,57,51,57,55,54,93,44,91,45,54,54,46,52,53,53,55,48,51,44,49,56,46,50,53,55,55,50,54,93,44,91,45,54,54,46,53,52,51,49,51,51,44,49,56,46,49,54,51,48,57,56,93,44,91,45,54,54,46,53,52,55,50,50,44,49,56,46,49,53,51,49,51,93,44,91,45,54,54,46,53,50,49,56,57,57,44,49,56,46,49,53,49,57,53,52,93,44,91,45,54,54,46,52,52,52,53,54,44,49,56,46,49,55,54,54,55,52,93,44,91,45,54,54,46,51,55,51,55,54,56,44,49,56,46,49,55,51,54,57,52,93,44,91,45,54,54,46,51,53,48,55,57,51,44,49,56,46,50,52,49,50,51,53,93,44,91,45,54,54,46,51,55,55,55,49,50,44,49,56,46,50,57,51,57,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,48,55,48,44,34,98,101,100,115,34,58,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,53,51,48,48,54,55,44,52,49,46,53,50,55,49,57,52,93,44,91,45,55,51,46,57,51,51,55,55,53,44,52,49,46,52,56,56,50,55,57,93,44,91,45,55,51,46,57,56,49,52,56,54,44,52,49,46,52,51,56,57,48,53,93,44,91,45,55,51,46,57,56,49,51,56,52,44,52,49,46,51,50,52,54,57,51,93,44,91,45,55,51,46,57,56,50,53,56,52,44,52,49,46,51,50,49,54,57,51,93,44,91,45,55,51,46,53,52,52,55,50,56,44,52,49,46,51,54,54,51,55,53,93,44,91,45,55,51,46,53,51,48,48,54,55,44,52,49,46,53,50,55,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,48,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,48,48,34,44,34,78,65,77,69,34,58,34,78,101,119,112,111,114,116,32,78,101,119,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,49,52,53,44,34,98,101,100,115,34,58,54,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,44,91,45,55,54,46,54,50,56,50,48,53,44,51,55,46,48,57,50,55,53,53,93,44,91,45,55,54,46,52,52,53,51,48,49,44,51,54,46,57,52,49,56,57,49,93,44,91,45,55,54,46,51,57,57,53,54,55,44,51,54,46,57,51,48,57,52,55,93,44,91,45,55,54,46,51,56,52,52,49,57,44,51,54,46,57,53,49,48,53,57,93,44,91,45,55,54,46,52,51,56,48,50,54,44,51,55,46,48,57,52,51,52,56,93,44,91,45,55,54,46,53,57,49,51,48,50,44,51,55,46,50,49,51,50,48,53,93,44,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,55,52,50,51,51,44,51,56,46,50,54,54,57,55,49,93,44,91,45,49,48,51,46,51,57,57,57,51,56,44,51,56,46,50,54,53,52,51,53,93,44,91,45,49,48,51,46,52,48,52,51,51,57,44,51,55,46,54,52,51,53,55,54,93,44,91,45,49,48,51,46,48,55,53,57,51,56,44,51,55,46,54,52,51,52,50,93,44,91,45,49,48,50,46,55,52,55,54,49,53,44,51,55,46,54,52,51,54,52,50,93,44,91,45,49,48,50,46,55,52,50,51,51,44,51,56,46,50,54,54,57,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,56,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,52,54,52,54,50,44,51,52,46,56,50,50,49,49,52,93,44,91,45,57,57,46,52,48,53,56,50,49,44,51,52,46,56,49,51,48,51,56,93,44,91,45,57,57,46,52,50,51,50,48,49,44,51,52,46,55,50,53,48,50,93,44,91,45,57,57,46,54,54,54,56,52,57,44,51,52,46,55,50,52,53,53,53,93,44,91,45,57,57,46,54,54,54,53,49,50,44,51,52,46,53,48,55,49,50,49,93,44,91,45,57,57,46,56,52,52,53,56,53,44,51,52,46,53,48,54,57,49,53,93,44,91,45,57,57,46,54,57,52,53,50,56,44,51,52,46,51,55,56,50,49,56,93,44,91,45,57,57,46,53,54,57,54,57,54,44,51,52,46,52,49,56,52,49,56,93,44,91,45,57,57,46,52,55,53,49,49,53,44,51,52,46,51,57,53,57,51,93,44,91,45,57,57,46,50,54,49,50,55,53,44,51,52,46,52,48,51,53,48,56,93,44,91,45,57,57,46,50,48,54,57,48,53,44,51,52,46,51,51,56,50,55,55,93,44,91,45,57,57,46,50,51,56,48,54,44,51,52,46,52,50,53,48,48,57,93,44,91,45,57,57,46,49,57,54,56,48,49,44,51,52,46,53,52,50,51,56,54,93,44,91,45,57,57,46,49,48,51,49,53,44,51,52,46,54,51,55,57,53,93,44,91,45,57,57,46,50,52,54,52,54,50,44,51,52,46,56,50,50,49,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,97,110,100,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,50,49,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,54,50,57,52,56,56,44,52,55,46,52,55,57,54,49,93,44,91,45,49,49,53,46,50,56,51,56,53,54,44,52,55,46,52,56,54,54,51,56,93,44,91,45,49,49,52,46,57,56,50,50,54,53,44,52,55,46,51,57,54,56,48,52,93,44,91,45,49,49,52,46,57,54,56,57,55,56,44,52,55,46,51,49,50,54,50,53,93,44,91,45,49,49,52,46,55,57,55,50,48,52,44,52,55,46,50,54,56,57,49,54,93,44,91,45,49,49,52,46,54,56,55,50,57,53,44,52,55,46,50,55,52,51,49,93,44,91,45,49,49,52,46,52,50,51,56,53,56,44,52,55,46,50,49,48,48,57,49,93,44,91,45,49,49,52,46,50,53,51,53,56,52,44,52,55,46,49,50,49,48,48,55,93,44,91,45,49,49,52,46,49,56,55,49,55,44,52,55,46,49,51,56,49,57,49,93,44,91,45,49,49,52,46,50,48,51,48,50,54,44,52,55,46,51,53,53,55,52,54,93,44,91,45,49,49,52,46,51,53,51,48,56,44,52,55,46,51,56,57,56,53,93,44,91,45,49,49,52,46,51,53,48,51,54,52,44,52,55,46,54,48,50,49,52,50,93,44,91,45,49,49,52,46,53,56,51,55,54,44,52,55,46,54,48,49,55,49,56,93,44,91,45,49,49,52,46,54,48,52,52,54,50,44,52,55,46,55,56,57,56,55,49,93,44,91,45,49,49,52,46,54,48,52,53,56,52,44,52,55,46,56,55,53,54,48,53,93,44,91,45,49,49,52,46,57,56,57,51,52,52,44,52,55,46,56,55,50,56,48,55,93,44,91,45,49,49,53,46,48,49,48,54,55,50,44,52,56,46,48,49,55,54,50,49,93,44,91,45,49,49,53,46,49,53,52,53,50,55,44,52,56,46,48,49,55,54,57,50,93,44,91,45,49,49,53,46,49,56,53,49,57,54,44,52,55,46,57,49,57,48,48,52,93,44,91,45,49,49,53,46,53,50,52,54,57,53,44,52,55,46,57,48,56,53,57,52,93,44,91,45,49,49,53,46,54,51,55,48,51,54,44,52,56,46,48,55,52,54,52,54,93,44,91,45,49,49,53,46,54,57,56,55,54,52,44,52,56,46,50,51,56,52,57,56,93,44,91,45,49,49,54,46,48,48,57,50,51,55,44,52,56,46,49,53,57,54,54,57,93,44,91,45,49,49,54,46,48,52,56,54,54,57,44,52,56,46,50,49,54,49,50,56,93,44,91,45,49,49,54,46,48,52,57,49,48,56,44,52,55,46,57,55,55,51,51,52,93,44,91,45,49,49,53,46,56,50,51,55,55,52,44,52,55,46,55,53,50,54,49,49,93,44,91,45,49,49,53,46,55,50,50,55,49,52,44,52,55,46,54,57,52,56,53,53,93,44,91,45,49,49,53,46,54,50,57,52,56,56,44,52,55,46,52,55,57,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,71,108,97,115,115,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,55,55,54,48,56,53,44,51,50,46,48,56,54,57,50,53,93,44,91,45,49,48,49,46,55,55,53,56,48,50,44,51,49,46,54,53,49,51,49,57,93,44,91,45,49,48,49,46,50,54,55,49,50,50,44,51,49,46,54,53,48,56,53,52,93,44,91,45,49,48,49,46,50,54,52,50,49,54,44,51,50,46,48,56,55,49,51,54,93,44,91,45,49,48,49,46,54,57,53,48,49,49,44,51,50,46,48,56,55,53,51,50,93,44,91,45,49,48,49,46,55,55,54,48,56,53,44,51,50,46,48,56,54,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,49,48,56,51,54,44,51,53,46,55,53,57,55,53,50,93,44,91,45,57,51,46,57,56,52,50,48,52,44,51,53,46,54,54,48,55,56,51,93,44,91,45,57,52,46,48,55,51,57,53,56,44,51,53,46,54,54,50,52,54,51,93,44,91,45,57,52,46,48,50,56,57,57,55,44,51,53,46,53,48,56,48,51,53,93,44,91,45,57,52,46,48,55,52,56,57,53,44,51,53,46,52,52,53,52,48,51,93,44,91,45,57,52,46,48,56,50,55,57,56,44,51,53,46,50,49,53,57,49,51,93,44,91,45,57,52,46,48,50,56,56,56,54,44,51,53,46,50,49,51,56,52,49,93,44,91,45,57,51,46,57,50,48,49,53,55,44,51,53,46,50,50,57,53,56,53,93,44,91,45,57,51,46,55,49,48,48,55,54,44,51,53,46,51,55,53,50,52,50,93,44,91,45,57,51,46,54,57,53,57,56,49,44,51,53,46,55,54,56,54,52,57,93,44,91,45,57,51,46,57,49,48,56,51,54,44,51,53,46,55,53,57,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,97,106,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,51,51,54,49,55,44,51,54,46,52,54,51,50,51,93,44,91,45,57,56,46,54,50,53,51,54,49,44,51,54,46,51,57,50,53,57,53,93,44,91,45,57,56,46,57,54,48,51,51,52,44,51,54,46,53,48,54,57,49,52,93,44,91,45,57,56,46,57,53,53,56,52,57,44,51,54,46,49,54,49,53,55,55,93,44,91,45,57,56,46,54,51,54,56,57,57,44,51,54,46,49,54,52,56,57,52,93,44,91,45,57,56,46,50,49,48,52,48,53,44,51,54,46,49,54,52,56,56,57,93,44,91,45,57,56,46,49,48,51,57,48,52,44,51,54,46,49,54,52,56,55,55,93,44,91,45,57,56,46,49,48,52,52,50,55,44,51,54,46,52,54,51,49,48,53,93,44,91,45,57,56,46,53,51,51,54,49,55,44,51,54,46,52,54,51,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,54,51,56,55,44,34,98,101,100,115,34,58,51,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,51,53,57,56,44,51,54,46,54,52,49,54,53,57,93,44,91,45,56,55,46,54,52,49,49,53,55,44,51,54,46,54,51,56,49,48,57,93,44,91,45,56,55,46,53,57,50,51,53,56,44,51,54,46,51,54,55,54,54,51,93,44,91,45,56,55,46,53,49,51,53,51,51,44,51,54,46,51,51,52,55,49,51,93,44,91,45,56,55,46,50,56,54,53,48,49,44,51,54,46,51,50,49,57,51,51,93,44,91,45,56,55,46,49,50,48,52,52,51,44,51,54,46,52,53,53,52,54,93,44,91,45,56,55,46,49,49,52,57,56,51,44,51,54,46,54,52,50,51,55,49,93,44,91,45,56,55,46,51,51,53,57,56,44,51,54,46,54,52,49,54,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,80,101,110,100,32,79,114,101,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,49,57,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,52,50,57,57,54,56,44,52,57,46,48,48,48,52,54,54,93,44,91,45,49,49,55,46,53,54,51,56,53,56,44,52,56,46,56,51,54,54,55,49,93,44,91,45,49,49,55,46,52,57,57,57,55,53,44,52,56,46,54,53,54,49,56,55,93,44,91,45,49,49,55,46,53,48,50,51,55,49,44,52,56,46,49,51,52,55,48,56,93,44,91,45,49,49,55,46,52,51,54,57,57,51,44,52,56,46,48,52,55,50,48,55,93,44,91,45,49,49,55,46,48,52,49,56,55,55,44,52,56,46,48,52,53,52,54,54,93,44,91,45,49,49,55,46,48,51,50,52,52,49,44,52,56,46,56,52,54,54,54,54,93,44,91,45,49,49,55,46,48,51,50,51,52,53,44,52,56,46,57,57,57,50,48,49,93,44,91,45,49,49,55,46,52,50,57,57,54,56,44,52,57,46,48,48,48,52,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,77,99,76,101,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,48,56,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,57,55,49,49,53,56,44,52,55,46,56,52,56,54,57,54,93,44,91,45,49,48,49,46,56,55,49,56,54,50,44,52,55,46,56,52,55,53,56,57,93,44,91,45,49,48,50,46,51,56,53,54,52,55,44,52,55,46,56,52,55,55,55,50,93,44,91,45,49,48,50,46,51,56,53,55,53,56,44,52,55,46,55,53,56,48,48,56,93,44,91,45,49,48,50,46,50,54,48,57,53,49,44,52,55,46,55,56,49,52,48,57,93,44,91,45,49,48,50,46,50,54,53,52,53,50,44,52,55,46,54,50,52,51,48,55,93,44,91,45,49,48,50,46,50,48,53,51,53,44,52,55,46,53,55,52,53,48,54,93,44,91,45,49,48,50,46,48,51,54,54,52,56,44,52,55,46,53,55,50,55,48,53,93,44,91,45,49,48,49,46,56,57,50,48,49,55,44,52,55,46,53,48,53,49,51,51,93,44,91,45,49,48,49,46,52,51,54,53,50,49,44,52,55,46,53,54,52,49,53,55,93,44,91,45,49,48,49,46,52,52,48,49,51,57,44,52,55,46,52,55,55,50,57,57,93,44,91,45,49,48,49,46,51,52,53,55,51,53,44,52,55,46,50,57,49,56,57,55,93,44,91,45,49,48,49,46,50,53,55,48,51,49,44,52,55,46,50,54,52,56,57,53,93,44,91,45,49,48,49,46,48,54,48,52,50,52,44,52,55,46,50,57,51,50,57,51,93,44,91,45,49,48,48,46,57,54,53,52,52,44,52,55,46,49,53,55,49,51,52,93,44,91,45,49,48,48,46,55,52,57,51,55,44,52,55,46,49,53,55,50,52,53,93,44,91,45,49,48,48,46,55,52,57,51,51,52,44,52,55,46,51,50,55,54,56,53,93,44,91,45,49,48,48,46,54,55,51,50,49,44,52,55,46,51,50,55,54,52,54,93,44,91,45,49,48,48,46,54,55,50,50,54,50,44,52,55,46,54,55,52,49,50,56,93,44,91,45,49,48,48,46,53,56,53,48,54,50,44,52,55,46,54,55,52,48,56,56,93,44,91,45,49,48,48,46,53,56,53,49,55,57,44,52,55,46,56,52,55,55,54,49,93,44,91,45,49,48,48,46,57,55,49,49,53,56,44,52,55,46,56,52,56,54,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,72,111,111,100,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,53,50,51,54,56,49,44,52,53,46,55,50,52,57,51,93,44,91,45,49,50,49,46,56,54,55,48,50,49,44,52,53,46,54,57,51,51,57,49,93,44,91,45,49,50,49,46,57,50,50,48,50,56,44,52,53,46,54,52,57,50,48,53,93,44,91,45,49,50,49,46,57,48,54,54,50,56,44,52,53,46,53,50,49,49,52,55,93,44,91,45,49,50,49,46,56,49,57,53,56,55,44,52,53,46,52,54,49,54,55,53,93,44,91,45,49,50,49,46,55,48,48,52,55,51,44,52,53,46,51,55,56,53,51,49,93,44,91,45,49,50,49,46,54,57,54,52,55,57,44,52,53,46,50,53,55,57,50,93,44,91,45,49,50,49,46,52,56,49,56,56,56,44,52,53,46,50,53,56,49,50,56,93,44,91,45,49,50,49,46,52,56,50,49,54,56,44,52,53,46,53,49,57,54,48,52,93,44,91,45,49,50,49,46,52,52,49,50,50,57,44,52,53,46,54,57,55,50,56,93,44,91,45,49,50,49,46,53,50,51,54,56,49,44,52,53,46,55,50,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,87,114,105,103,104,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,48,52,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,55,49,50,51,56,44,52,50,46,57,48,55,55,54,50,93,44,91,45,57,51,46,57,55,49,55,49,52,44,52,50,46,54,52,52,55,48,55,93,44,91,45,57,51,46,57,55,49,53,56,51,44,52,50,46,53,53,56,49,51,57,93,44,91,45,57,51,46,52,57,57,52,56,53,44,52,50,46,53,53,55,55,93,44,91,45,57,51,46,52,57,56,54,49,55,44,52,50,46,57,48,56,53,49,50,93,44,91,45,57,51,46,57,55,49,50,51,56,44,52,50,46,57,48,55,55,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,49,57,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,52,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,49,53,54,51,44,51,49,46,57,55,57,56,53,54,93,44,91,45,57,52,46,53,49,49,52,51,49,44,51,49,46,57,55,51,57,56,52,93,44,91,45,57,52,46,52,53,50,52,49,54,44,51,49,46,56,52,52,50,56,49,93,44,91,45,57,52,46,51,57,57,48,57,49,44,51,49,46,54,53,51,53,57,54,93,44,91,45,57,52,46,48,57,48,55,49,55,44,51,49,46,54,50,48,54,48,57,93,44,91,45,57,51,46,57,56,52,52,54,49,44,51,49,46,53,54,57,52,49,57,93,44,91,45,57,51,46,56,51,52,57,49,56,44,51,49,46,53,56,54,50,49,50,93,44,91,45,57,51,46,55,57,52,53,52,56,44,51,49,46,55,48,50,48,55,54,93,44,91,45,57,51,46,56,55,57,48,54,49,44,51,49,46,56,52,52,50,56,55,93,44,91,45,57,52,46,48,49,53,54,51,44,51,49,46,57,55,57,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,50,56,48,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,51,52,51,56,52,44,51,56,46,49,53,50,53,57,51,93,44,91,45,57,49,46,53,50,56,55,57,55,44,51,55,46,55,56,56,57,56,57,93,44,91,45,57,49,46,51,48,56,51,49,49,44,51,55,46,55,56,55,49,56,54,93,44,91,45,57,49,46,51,49,48,54,53,53,44,51,55,46,55,48,48,48,52,56,93,44,91,45,57,49,46,49,53,51,51,52,53,44,51,55,46,54,57,55,51,52,93,44,91,45,57,49,46,49,48,48,48,49,55,44,51,55,46,55,52,48,48,49,50,93,44,91,45,57,49,46,48,57,53,55,54,53,44,51,56,46,50,48,52,48,56,51,93,44,91,45,57,49,46,51,54,55,52,56,50,44,51,56,46,50,48,57,55,52,49,93,44,91,45,57,49,46,53,51,52,51,56,52,44,51,56,46,49,53,50,53,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,97,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,51,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,53,54,48,53,54,44,51,55,46,57,53,49,57,53,57,93,44,91,45,55,57,46,57,51,53,51,54,52,44,51,55,46,57,53,52,51,54,53,93,44,91,45,55,57,46,56,56,55,51,50,57,44,51,55,46,56,57,50,57,55,49,93,44,91,45,55,57,46,54,52,55,53,56,57,44,51,55,46,56,55,52,53,51,56,93,44,91,45,55,57,46,52,56,50,54,54,56,44,51,56,46,48,56,54,48,53,52,93,44,91,45,55,57,46,53,49,50,49,53,56,44,51,56,46,49,56,48,52,49,57,93,44,91,45,55,57,46,55,57,53,57,50,49,44,51,56,46,50,54,53,53,53,50,93,44,91,45,55,57,46,56,57,55,51,51,53,44,51,56,46,49,57,51,51,56,49,93,44,91,45,55,57,46,57,53,57,56,52,52,44,51,56,46,48,54,51,54,57,55,93,44,91,45,56,48,46,48,53,54,48,53,54,44,51,55,46,57,53,49,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,79,116,116,101,114,32,84,97,105,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,57,57,50,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,56,48,57,55,55,44,52,54,46,54,51,48,55,54,53,93,44,91,45,57,54,46,50,54,53,51,54,54,44,52,54,46,49,48,56,54,49,93,44,91,45,57,53,46,55,54,57,55,53,44,52,54,46,49,48,55,52,53,93,44,91,45,57,53,46,49,52,53,56,56,44,52,54,46,49,48,54,55,54,49,93,44,91,45,57,53,46,49,53,53,53,55,44,52,54,46,51,54,56,56,56,93,44,91,45,57,53,46,49,54,51,55,49,44,52,54,46,55,49,55,54,52,93,44,91,45,57,54,46,49,55,52,53,56,55,44,52,54,46,55,49,55,56,53,52,93,44,91,45,57,54,46,50,56,48,57,55,55,44,52,54,46,54,51,48,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,80,108,97,113,117,101,109,105,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,51,55,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,48,56,48,53,54,44,50,57,46,56,57,53,53,50,56,93,44,91,45,57,48,46,48,54,55,50,52,50,44,50,57,46,55,51,56,54,54,52,93,44,91,45,56,57,46,57,56,48,56,49,50,44,50,57,46,53,56,48,49,53,53,93,44,91,45,56,57,46,57,55,55,52,55,44,50,57,46,52,52,57,51,55,49,93,44,91,45,56,57,46,57,48,50,50,54,55,44,50,57,46,50,57,50,50,56,52,93,44,91,45,56,57,46,56,57,57,54,54,52,44,50,57,46,49,53,53,48,48,57,93,44,91,45,56,57,46,54,49,48,52,50,55,44,50,57,46,49,57,56,54,51,53,93,44,91,45,56,57,46,53,48,50,51,49,57,44,50,57,46,49,53,56,51,55,54,93,44,91,45,56,57,46,52,54,51,52,50,52,44,50,57,46,48,56,50,56,50,93,44,91,45,56,57,46,52,56,55,54,52,44,50,56,46,56,56,55,51,55,49,93,44,91,45,56,57,46,51,56,52,55,50,55,44,50,56,46,56,55,49,53,48,51,93,44,91,45,56,57,46,50,55,57,54,48,52,44,50,56,46,57,55,55,55,56,51,93,44,91,45,56,57,46,49,51,51,50,56,52,44,50,56,46,57,49,57,55,50,56,93,44,91,45,56,56,46,57,50,55,56,48,57,44,50,57,46,49,49,55,50,55,53,93,44,91,45,56,56,46,57,52,50,48,53,52,44,50,57,46,50,53,51,55,52,50,93,44,91,45,56,57,46,48,54,57,52,50,54,44,50,57,46,50,57,52,50,57,55,93,44,91,45,56,57,46,49,51,55,54,49,50,44,50,57,46,51,56,49,52,50,57,93,44,91,45,56,56,46,56,55,57,50,51,53,44,50,57,46,54,52,55,52,48,57,93,44,91,45,56,57,46,52,56,52,53,57,49,44,50,57,46,54,49,55,53,53,49,93,44,91,45,56,57,46,55,50,49,48,52,53,44,50,57,46,55,53,55,54,53,50,93,44,91,45,56,57,46,56,54,57,55,50,44,50,57,46,55,57,53,52,53,49,93,44,91,45,56,57,46,57,49,48,55,48,56,44,50,57,46,56,54,55,56,54,53,93,44,91,45,57,48,46,48,48,56,48,53,54,44,50,57,46,56,57,53,53,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,80,111,110,116,111,116,111,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,51,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,50,52,57,54,54,44,51,52,46,51,54,52,55,53,57,93,44,91,45,56,57,46,50,52,54,51,51,57,44,51,52,46,51,55,57,51,52,52,93,44,91,45,56,57,46,50,52,53,52,56,53,44,51,52,46,49,54,49,49,56,54,93,44,91,45,56,57,46,49,51,57,49,53,56,44,51,52,46,48,55,52,49,49,54,93,44,91,45,56,56,46,56,50,52,53,50,51,44,51,52,46,48,55,52,57,52,56,93,44,91,45,56,56,46,56,50,52,57,54,54,44,51,52,46,51,54,52,55,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,77,111,114,101,104,111,117,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,57,57,50,44,34,98,101,100,115,34,58,49,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,54,57,49,48,53,44,51,51,46,48,48,56,49,54,51,93,44,91,45,57,50,46,48,54,53,49,55,57,44,51,50,46,55,50,51,48,48,51,93,44,91,45,57,49,46,57,55,53,48,50,54,44,51,50,46,55,49,49,52,50,56,93,44,91,45,57,49,46,57,49,51,48,53,55,44,51,50,46,53,48,53,57,48,50,93,44,91,45,57,49,46,55,51,57,54,53,49,44,51,50,46,53,54,49,50,57,57,93,44,91,45,57,49,46,54,51,55,53,56,55,44,51,50,46,54,54,55,51,52,49,93,44,91,45,57,49,46,53,54,54,51,54,51,44,51,50,46,56,53,53,53,54,49,93,44,91,45,57,49,46,52,51,53,55,56,50,44,51,51,46,48,48,54,48,57,57,93,44,91,45,57,49,46,52,54,48,52,44,51,51,46,48,48,53,57,49,53,93,44,91,45,57,50,46,48,54,57,49,48,53,44,51,51,46,48,48,56,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,66,117,108,108,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,52,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,50,56,56,51,44,51,56,46,49,49,56,51,56,51,93,44,91,45,56,53,46,53,53,55,50,55,44,51,56,46,48,55,51,56,52,49,93,44,91,45,56,53,46,55,49,50,53,55,56,44,51,56,46,48,56,55,51,49,49,93,44,91,45,56,53,46,57,51,56,51,50,49,44,51,55,46,57,57,56,55,53,54,93,44,91,45,56,53,46,55,51,55,55,55,55,44,51,55,46,56,49,49,55,57,93,44,91,45,56,53,46,54,52,51,50,53,52,44,51,55,46,56,51,52,48,51,51,93,44,91,45,56,53,46,52,56,57,50,48,50,44,51,55,46,57,57,48,54,53,52,93,44,91,45,56,53,46,52,50,56,56,51,44,51,56,46,49,49,56,51,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,50,57,44,34,98,101,100,115,34,58,49,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,49,55,55,54,50,44,51,50,46,55,50,57,53,51,50,93,44,91,45,56,55,46,49,49,50,51,54,50,44,51,50,46,52,56,56,54,53,93,44,91,45,56,55,46,52,50,51,49,53,51,44,51,50,46,52,56,50,57,54,53,93,44,91,45,56,55,46,52,55,51,48,56,44,51,50,46,51,48,55,54,49,52,93,44,91,45,56,55,46,52,55,50,50,48,54,44,51,50,46,50,54,52,57,49,57,93,44,91,45,56,55,46,51,50,53,54,52,52,44,51,50,46,49,57,54,50,55,50,93,44,91,45,56,55,46,49,55,55,56,54,44,51,50,46,48,52,55,53,49,52,93,44,91,45,56,54,46,57,48,54,57,53,54,44,51,50,46,48,52,55,57,55,93,44,91,45,56,54,46,57,48,56,51,48,50,44,51,50,46,50,50,53,48,50,56,93,44,91,45,56,54,46,56,49,52,57,49,50,44,51,50,46,51,52,48,56,48,51,93,44,91,45,56,54,46,57,48,54,55,52,50,44,51,50,46,53,51,54,57,55,55,93,44,91,45,56,54,46,57,49,55,53,57,53,44,51,50,46,54,54,52,49,54,57,93,44,91,45,56,55,46,48,49,55,55,54,50,44,51,50,46,55,50,57,53,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,67,111,109,97,110,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,53,49,49,53,56,44,51,50,46,50,54,49,52,51,54,93,44,91,45,57,56,46,57,50,52,52,48,49,44,51,50,46,48,55,56,48,49,56,93,44,91,45,57,56,46,54,54,56,52,52,49,44,51,49,46,55,48,48,53,49,52,93,44,91,45,57,56,46,52,57,50,56,48,50,44,51,49,46,55,50,51,54,48,56,93,44,91,45,57,56,46,52,54,51,55,51,54,44,51,49,46,54,56,51,57,56,57,93,44,91,45,57,56,46,49,53,54,53,54,56,44,51,49,46,56,52,49,55,49,51,93,44,91,45,57,56,46,50,48,56,51,56,54,44,51,49,46,57,49,55,53,49,49,93,44,91,45,57,56,46,51,50,55,52,57,57,44,51,49,46,57,52,49,50,54,49,93,44,91,45,57,56,46,53,53,49,49,53,56,44,51,50,46,50,54,49,52,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,51,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,55,50,55,48,52,53,44,52,57,46,48,48,48,53,48,56,93,44,91,45,49,49,54,46,48,52,57,48,56,54,44,52,57,46,48,48,48,56,52,54,93,44,91,45,49,49,54,46,48,52,57,48,53,56,44,52,56,46,53,48,50,48,54,50,93,44,91,45,49,49,54,46,48,52,56,54,54,57,44,52,56,46,50,49,54,49,50,56,93,44,91,45,49,49,54,46,48,48,57,50,51,55,44,52,56,46,49,53,57,54,54,57,93,44,91,45,49,49,53,46,54,57,56,55,54,52,44,52,56,46,50,51,56,52,57,56,93,44,91,45,49,49,53,46,54,51,55,48,51,54,44,52,56,46,48,55,52,54,52,54,93,44,91,45,49,49,53,46,53,50,52,54,57,53,44,52,55,46,57,48,56,53,57,52,93,44,91,45,49,49,53,46,49,56,53,49,57,54,44,52,55,46,57,49,57,48,48,52,93,44,91,45,49,49,53,46,49,53,52,53,50,55,44,52,56,46,48,49,55,54,57,50,93,44,91,45,49,49,53,46,48,49,48,54,55,50,44,52,56,46,48,49,55,54,50,49,93,44,91,45,49,49,53,46,48,50,48,48,55,57,44,52,56,46,50,50,53,57,53,52,93,44,91,45,49,49,52,46,56,52,56,48,57,56,44,52,56,46,50,50,54,49,50,53,93,44,91,45,49,49,52,46,56,52,57,56,48,51,44,52,56,46,53,55,51,53,48,50,93,44,91,45,49,49,52,46,56,56,56,53,57,44,52,56,46,54,53,56,55,54,53,93,44,91,45,49,49,52,46,54,57,50,52,53,44,52,56,46,54,56,48,49,51,54,93,44,91,45,49,49,52,46,54,52,56,49,51,52,44,52,56,46,55,55,57,51,51,50,93,44,91,45,49,49,52,46,55,50,55,48,52,53,44,52,57,46,48,48,48,53,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,83,97,110,32,76,111,114,101,110,122,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,55,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,57,55,54,53,44,49,56,46,50,48,54,57,57,50,93,44,91,45,54,54,46,48,53,50,53,53,53,44,49,56,46,49,49,51,48,54,57,93,44,91,45,54,54,46,48,53,49,55,56,56,44,49,56,46,49,48,57,56,55,56,93,44,91,45,54,54,46,48,49,48,50,52,53,44,49,56,46,48,55,53,53,54,53,93,44,91,45,54,53,46,57,50,54,50,50,55,44,49,56,46,49,49,57,57,54,51,93,44,91,45,54,53,46,57,50,56,51,52,49,44,49,56,46,49,52,50,56,52,53,93,44,91,45,54,53,46,57,53,49,48,49,57,44,49,56,46,50,50,57,50,57,50,93,44,91,45,54,53,46,57,57,55,54,53,44,49,56,46,50,48,54,57,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,84,111,97,32,65,108,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,52,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,49,56,55,54,52,44,49,56,46,51,54,55,52,49,49,93,44,91,45,54,54,46,50,55,56,48,55,54,44,49,56,46,51,50,57,57,55,53,93,44,91,45,54,54,46,50,48,52,55,51,52,44,49,56,46,51,49,54,48,51,53,93,44,91,45,54,54,46,49,57,54,57,56,44,49,56,46,51,56,57,50,56,57,93,44,91,45,54,54,46,50,53,50,53,53,52,44,49,56,46,51,57,52,49,56,55,93,44,91,45,54,54,46,51,48,51,54,54,51,44,49,56,46,51,56,52,48,55,55,93,44,91,45,54,54,46,51,49,56,55,54,52,44,49,56,46,51,54,55,52,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,50,50,44,34,98,101,100,115,34,58,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,55,48,50,49,52,44,52,55,46,52,49,48,49,53,49,93,44,91,45,57,52,46,54,53,57,57,52,50,44,52,54,46,56,48,51,55,49,54,93,44,91,45,57,52,46,55,56,55,49,50,54,44,52,54,46,56,48,51,57,52,51,93,44,91,45,57,52,46,55,55,57,49,50,49,44,52,54,46,51,57,52,50,49,53,93,44,91,45,57,52,46,55,51,49,52,52,50,44,52,54,46,51,54,56,54,48,53,93,44,91,45,57,52,46,54,53,51,52,54,50,44,52,54,46,51,52,56,54,55,56,93,44,91,45,57,52,46,51,52,49,54,55,57,44,52,54,46,50,55,55,55,48,53,93,44,91,45,57,52,46,51,50,55,50,56,54,44,52,54,46,50,56,57,56,49,55,93,44,91,45,57,52,46,51,52,50,57,49,44,52,54,46,56,48,53,53,50,57,93,44,91,45,57,51,46,55,55,54,48,50,52,44,52,54,46,56,48,50,56,57,49,93,44,91,45,57,51,46,55,55,53,50,53,55,44,52,55,46,48,51,48,52,49,56,93,44,91,45,57,51,46,55,55,54,48,55,52,44,52,55,46,50,55,55,57,56,54,93,44,91,45,57,52,46,48,50,53,57,56,49,44,52,55,46,51,53,49,51,56,56,93,44,91,45,57,52,46,49,49,55,57,57,57,44,52,55,46,52,56,48,55,52,52,93,44,91,45,57,52,46,51,50,55,53,51,49,44,52,55,46,52,49,53,56,52,52,93,44,91,45,57,52,46,52,49,54,50,55,57,44,52,55,46,52,52,52,56,50,56,93,44,91,45,57,52,46,54,55,48,50,49,52,44,52,55,46,52,49,48,49,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,114,99,104,117,108,101,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,48,56,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,52,50,49,50,50,51,44,51,55,46,48,48,48,50,50,51,93,44,91,45,49,48,54,46,52,55,54,48,57,44,51,54,46,57,57,51,53,52,56,93,44,91,45,49,48,54,46,54,55,56,51,53,52,44,51,55,46,50,50,56,53,54,54,93,44,91,45,49,48,54,46,54,55,56,51,55,51,44,51,55,46,52,48,51,53,57,54,93,44,91,45,49,48,54,46,55,49,48,55,55,53,44,51,55,46,52,48,52,50,50,56,93,44,91,45,49,48,55,46,49,50,56,55,51,55,44,51,55,46,51,57,50,52,48,57,93,44,91,45,49,48,55,46,49,50,56,54,56,44,51,55,46,52,50,50,57,52,50,93,44,91,45,49,48,55,46,52,56,50,49,51,49,44,51,55,46,52,50,50,54,55,51,93,44,91,45,49,48,55,46,52,56,49,55,51,55,44,51,55,46,48,48,48,49,50,55,93,44,91,45,49,48,55,46,52,50,49,50,50,51,44,51,55,46,48,48,48,50,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,89,97,122,111,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,44,91,45,57,48,46,51,54,52,48,51,49,44,51,51,46,48,49,48,53,57,54,93,44,91,45,57,48,46,52,52,57,56,57,51,44,51,50,46,57,50,51,50,57,93,44,91,45,57,48,46,54,53,54,54,51,50,44,51,50,46,57,50,50,53,49,93,44,91,45,57,48,46,55,53,57,55,53,51,44,51,50,46,56,51,53,55,54,51,93,44,91,45,57,48,46,54,57,51,48,54,49,44,51,50,46,55,53,52,50,57,55,93,44,91,45,57,48,46,55,50,51,49,53,57,44,51,50,46,54,54,50,49,50,56,93,44,91,45,57,48,46,55,50,48,49,48,50,44,51,50,46,54,49,56,56,53,56,93,44,91,45,57,48,46,53,53,51,56,50,49,44,51,50,46,53,48,55,53,55,52,93,44,91,45,57,48,46,52,53,48,48,51,55,44,51,50,46,53,55,51,55,56,51,93,44,91,45,57,48,46,48,52,57,49,50,57,44,51,50,46,55,51,53,54,55,52,93,44,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,79,117,116,97,103,97,109,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,55,53,52,44,34,98,101,100,115,34,58,53,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,48,54,48,56,51,44,52,52,46,53,57,48,53,49,53,93,44,91,45,56,56,46,55,51,54,56,48,50,44,52,52,46,53,57,48,54,48,53,93,44,91,45,56,56,46,55,51,57,55,55,44,52,52,46,50,52,51,51,48,51,93,44,91,45,56,56,46,52,48,52,48,55,44,52,52,46,50,52,52,49,48,50,93,44,91,45,56,56,46,49,57,50,54,49,49,44,52,52,46,50,52,49,57,52,55,93,44,91,45,56,56,46,49,57,48,52,54,53,44,52,52,46,53,56,54,55,57,57,93,44,91,45,56,56,46,50,52,53,50,48,52,44,52,52,46,53,56,52,55,52,54,93,44,91,45,56,56,46,54,48,54,48,56,51,44,52,52,46,53,57,48,53,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,56,57,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,49,48,52,56,50,51,44,51,57,46,49,52,51,53,48,55,93,44,91,45,57,52,46,49,49,52,49,55,53,44,51,56,46,57,49,55,51,48,52,93,44,91,45,57,51,46,56,51,52,55,49,57,44,51,56,46,57,51,55,57,48,57,93,44,91,45,57,51,46,52,57,55,50,55,56,44,51,56,46,57,50,56,52,51,93,44,91,45,57,51,46,52,57,54,51,55,55,44,51,56,46,57,52,50,56,51,55,93,44,91,45,57,51,46,52,55,55,50,51,51,44,51,57,46,50,57,50,55,57,54,93,44,91,45,57,51,46,52,56,55,56,56,53,44,51,57,46,50,50,56,56,55,53,93,44,91,45,57,51,46,54,53,48,53,50,54,44,51,57,46,50,52,56,50,49,52,93,44,91,45,57,51,46,55,53,56,52,54,51,44,51,57,46,50,48,55,48,50,49,93,44,91,45,57,52,46,48,50,56,56,50,50,44,51,57,46,49,57,49,53,57,53,93,44,91,45,57,52,46,49,48,52,56,50,51,44,51,57,46,49,52,51,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,87,105,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,51,51,54,44,34,98,101,100,115,34,58,50,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,50,56,52,52,52,44,51,53,46,56,54,55,50,48,56,93,44,91,45,55,56,46,49,57,50,49,49,55,44,51,53,46,55,51,48,53,52,53,93,44,91,45,55,56,46,49,50,53,53,51,57,44,51,53,46,54,48,51,49,48,55,93,44,91,45,55,56,46,48,54,52,55,56,52,44,51,53,46,53,56,53,50,54,51,93,44,91,45,55,55,46,56,50,50,53,49,49,44,51,53,46,53,56,53,51,56,51,93,44,91,45,55,55,46,55,48,48,54,57,50,44,51,53,46,54,53,50,50,57,53,93,44,91,45,55,55,46,54,54,53,49,51,49,44,51,53,46,54,55,52,57,51,53,93,44,91,45,55,55,46,55,53,49,51,51,57,44,51,53,46,56,50,55,55,57,52,93,44,91,45,55,55,46,56,50,56,52,52,52,44,51,53,46,56,54,55,50,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,111,114,114,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,57,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,50,55,49,54,52,44,52,48,46,55,49,49,50,48,51,93,44,91,45,56,50,46,56,53,56,51,48,50,44,52,48,46,55,48,53,48,49,57,93,44,91,45,56,50,46,57,53,55,56,49,55,44,52,48,46,54,52,53,49,52,56,93,44,91,45,56,50,46,57,53,56,52,48,49,44,52,48,46,52,57,48,54,54,52,93,44,91,45,56,51,46,48,50,48,55,57,56,44,52,48,46,52,51,51,55,57,53,93,44,91,45,56,50,46,57,50,57,53,56,56,44,52,48,46,51,53,56,49,50,51,93,44,91,45,56,50,46,55,52,52,57,51,49,44,52,48,46,51,52,57,54,48,51,93,44,91,45,56,50,46,54,52,54,53,48,51,44,52,48,46,51,52,53,48,55,54,93,44,91,45,56,50,46,54,50,51,54,48,57,44,52,48,46,53,52,57,56,55,57,93,44,91,45,56,50,46,54,50,55,55,54,55,44,52,48,46,55,48,57,51,53,50,93,44,91,45,56,50,46,55,50,55,49,54,52,44,52,48,46,55,49,49,50,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,71,114,97,110,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,56,50,55,55,52,51,44,52,54,46,54,54,48,56,57,54,93,44,91,45,49,49,51,46,56,55,52,54,53,49,44,52,54,46,53,48,56,51,50,57,93,44,91,45,49,49,51,46,55,56,50,48,51,50,44,52,54,46,51,53,57,53,49,56,93,44,91,45,49,49,51,46,55,53,51,50,52,54,44,52,54,46,49,49,50,56,93,44,91,45,49,49,51,46,54,52,56,51,53,56,44,52,53,46,57,54,53,48,51,56,93,44,91,45,49,49,51,46,53,49,55,52,48,57,44,52,53,46,57,52,48,48,56,57,93,44,91,45,49,49,51,46,50,55,56,48,49,50,44,52,54,46,48,52,53,50,54,56,93,44,91,45,49,49,51,46,50,56,52,53,51,50,44,52,54,46,50,50,50,55,56,51,93,44,91,45,49,49,51,46,48,51,54,56,50,53,44,52,54,46,50,54,54,56,50,54,93,44,91,45,49,49,51,46,48,51,56,55,48,50,44,52,54,46,55,51,53,53,52,93,44,91,45,49,49,51,46,49,49,53,54,49,52,44,52,54,46,55,49,51,51,56,55,93,44,91,45,49,49,51,46,51,48,50,57,48,51,44,52,54,46,56,51,50,49,53,57,93,44,91,45,49,49,51,46,52,49,54,53,57,57,44,52,54,46,56,51,50,49,49,51,93,44,91,45,49,49,51,46,52,55,57,56,53,54,44,52,54,46,55,52,52,55,49,52,93,44,91,45,49,49,51,46,56,50,55,55,52,51,44,52,54,46,54,54,48,56,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,70,111,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,48,48,48,56,53,44,52,55,46,53,56,55,50,50,56,93,44,91,45,57,57,46,50,54,53,55,57,56,44,52,55,46,53,56,55,54,93,44,91,45,57,57,46,50,54,54,50,49,53,44,52,55,46,51,50,54,57,57,57,93,44,91,45,57,56,46,52,57,57,50,52,54,44,52,55,46,51,50,54,53,51,56,93,44,91,45,57,56,46,53,48,48,48,56,53,44,52,55,46,53,56,55,50,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,52,55,50,44,34,98,101,100,115,34,58,49,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,55,50,54,52,55,44,51,53,46,54,51,56,53,53,54,93,44,91,45,57,52,46,52,51,49,48,52,53,44,51,53,46,51,57,51,55,51,53,93,44,91,45,57,52,46,50,56,57,51,51,50,44,51,53,46,51,52,53,50,49,49,93,44,91,45,57,52,46,48,55,52,56,57,53,44,51,53,46,52,52,53,52,48,51,93,44,91,45,57,52,46,48,50,56,57,57,55,44,51,53,46,53,48,56,48,51,53,93,44,91,45,57,52,46,48,55,51,57,53,56,44,51,53,46,54,54,50,52,54,51,93,44,91,45,57,51,46,57,56,52,50,48,52,44,51,53,46,54,54,48,55,56,51,93,44,91,45,57,51,46,57,49,48,56,51,54,44,51,53,46,55,53,57,55,53,50,93,44,91,45,57,51,46,57,54,50,56,57,50,44,51,53,46,55,54,48,57,51,93,44,91,45,57,52,46,52,57,51,49,51,44,51,53,46,55,53,57,49,54,55,93,44,91,45,57,52,46,52,55,50,54,52,55,44,51,53,46,54,51,56,53,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,66,117,114,110,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,53,48,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,52,53,55,56,50,44,51,48,46,57,50,49,52,51,57,93,44,91,45,57,56,46,51,57,51,54,52,54,44,51,48,46,56,52,50,57,54,93,44,91,45,57,56,46,52,49,56,53,57,52,44,51,48,46,54,52,53,57,50,54,93,44,91,45,57,56,46,51,53,49,48,52,49,44,51,48,46,52,56,54,48,57,54,93,44,91,45,57,56,46,49,50,53,53,53,54,44,51,48,46,52,50,54,49,56,54,93,44,91,45,57,56,46,48,52,57,56,56,54,44,51,48,46,54,50,52,49,53,53,93,44,91,45,57,55,46,57,54,50,56,54,44,51,48,46,55,56,53,54,52,49,93,44,91,45,57,55,46,56,50,56,53,49,50,44,51,48,46,57,48,54,49,56,56,93,44,91,45,57,55,46,57,49,49,54,56,52,44,51,49,46,48,51,52,57,49,57,93,44,91,45,57,56,46,52,51,57,54,56,55,44,51,49,46,48,50,57,53,51,55,93,44,91,45,57,56,46,52,52,53,55,56,50,44,51,48,46,57,50,49,52,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,54,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,54,34,44,34,78,65,77,69,34,58,34,83,116,101,46,32,71,101,110,101,118,105,101,118,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,55,49,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,49,54,48,50,50,44,51,56,46,48,52,50,51,49,53,93,44,91,45,57,48,46,51,50,50,56,55,44,51,55,46,57,56,49,55,51,49,93,44,91,45,57,48,46,52,53,57,49,51,51,44,51,55,46,56,55,56,57,50,52,93,44,91,45,57,48,46,50,48,48,50,48,56,44,51,55,46,54,54,57,54,50,56,93,44,91,45,57,48,46,49,49,48,53,51,55,44,51,55,46,54,55,49,51,52,93,44,91,45,56,57,46,57,51,56,54,48,56,44,51,55,46,56,55,52,51,48,52,93,44,91,45,56,57,46,57,56,56,49,48,56,44,51,55,46,57,54,49,55,52,57,93,44,91,45,57,48,46,50,48,53,50,48,53,44,51,56,46,48,56,54,57,48,55,93,44,91,45,57,48,46,50,53,50,54,54,54,44,51,56,46,49,50,55,56,49,50,93,44,91,45,57,48,46,52,49,54,48,50,50,44,51,56,46,48,52,50,51,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,71,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,56,53,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,56,54,50,56,49,44,51,53,46,49,56,50,49,52,93,44,91,45,49,48,48,46,53,51,56,57,55,56,44,51,53,46,49,56,51,49,52,52,93,44,91,45,49,48,48,46,53,52,48,49,53,56,44,51,53,46,54,49,57,50,57,54,93,44,91,45,49,48,49,46,48,56,53,57,51,53,44,51,53,46,54,49,57,49,48,50,93,44,91,45,49,48,49,46,48,56,54,50,56,49,44,51,53,46,49,56,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,77,99,68,111,110,111,117,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,55,53,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,48,52,50,49,54,44,52,48,46,54,51,57,50,48,49,93,44,91,45,57,48,46,57,48,57,55,53,54,44,52,48,46,50,56,52,51,57,52,93,44,91,45,57,48,46,52,53,48,50,50,55,44,52,48,46,50,55,54,51,51,53,93,44,91,45,57,48,46,52,52,53,54,50,55,44,52,48,46,54,50,55,54,51,56,93,44,91,45,57,48,46,55,56,57,54,53,50,44,52,48,46,54,51,53,55,53,93,44,91,45,57,48,46,57,48,52,50,49,54,44,52,48,46,54,51,57,50,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,53,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,56,52,51,52,57,44,52,49,46,49,54,48,48,49,49,93,44,91,45,57,53,46,51,56,52,57,54,52,44,52,48,46,57,48,49,53,53,93,44,91,45,57,52,46,57,50,56,52,53,57,44,52,48,46,57,48,48,54,53,51,93,44,91,45,57,52,46,57,50,55,53,56,55,44,52,49,46,49,53,56,53,48,56,93,44,91,45,57,53,46,49,53,53,56,53,49,44,52,49,46,49,53,57,50,51,54,93,44,91,45,57,53,46,51,56,52,51,52,57,44,52,49,46,49,54,48,48,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,50,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,57,56,53,53,54,44,51,53,46,56,57,48,48,50,52,93,44,91,45,57,49,46,51,53,54,50,52,54,44,51,53,46,55,48,49,49,48,55,93,44,91,45,57,49,46,51,54,57,53,55,44,51,53,46,53,50,54,51,54,50,93,44,91,45,57,49,46,53,56,49,56,56,44,51,53,46,53,51,48,52,52,55,93,44,91,45,57,49,46,53,56,52,54,56,55,44,51,53,46,52,52,50,51,49,49,93,44,91,45,57,49,46,51,52,55,50,53,55,44,51,53,46,52,51,57,49,48,54,93,44,91,45,57,49,46,50,53,49,53,53,53,44,51,53,46,51,53,55,53,54,49,93,44,91,45,57,49,46,48,51,57,55,56,51,44,51,53,46,51,53,52,50,53,54,93,44,91,45,57,49,46,48,51,57,50,51,44,51,53,46,52,52,52,55,49,55,93,44,91,45,57,49,46,48,51,54,57,54,55,44,51,53,46,55,48,56,52,49,56,93,44,91,45,57,49,46,48,51,50,52,57,57,44,51,53,46,56,56,53,48,55,93,44,91,45,57,49,46,49,57,56,53,53,54,44,51,53,46,56,57,48,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,57,34,44,34,78,65,77,69,34,58,34,72,117,100,115,112,101,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,57,57,56,48,49,50,44,51,50,46,48,48,50,51,55,55,93,44,91,45,49,48,53,46,57,57,55,49,53,50,44,51,49,46,51,56,55,50,51,93,44,91,45,49,48,53,46,56,54,57,50,57,52,44,51,49,46,50,56,56,57,53,53,93,44,91,45,49,48,53,46,55,55,52,48,50,56,44,51,49,46,49,54,56,52,55,52,93,44,91,45,49,48,53,46,54,52,56,56,51,57,44,51,49,46,49,49,53,56,55,55,93,44,91,45,49,48,53,46,53,53,55,50,50,54,44,51,48,46,57,56,57,54,55,51,93,44,91,45,49,48,53,46,51,56,54,55,50,52,44,51,48,46,56,53,51,51,48,54,93,44,91,45,49,48,53,46,50,49,55,55,56,51,44,51,48,46,56,48,53,57,52,54,93,44,91,45,49,48,52,46,57,55,57,56,48,49,44,51,48,46,54,50,57,50,53,56,93,44,91,45,49,48,52,46,57,49,55,49,54,51,44,51,48,46,54,54,51,54,50,54,93,44,91,45,49,48,52,46,57,48,57,49,50,52,44,51,49,46,50,52,54,54,48,57,93,44,91,45,49,48,52,46,57,49,56,51,53,55,44,51,50,46,48,48,48,52,49,56,93,44,91,45,49,48,53,46,57,57,56,48,49,50,44,51,50,46,48,48,50,51,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,82,97,112,105,100,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,53,52,54,44,34,98,101,100,115,34,58,49,49,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,57,54,49,51,49,44,51,49,46,52,55,55,56,55,55,93,44,91,45,57,50,46,54,51,49,57,52,52,44,51,49,46,51,57,48,52,55,56,93,44,91,45,57,50,46,55,49,56,57,56,51,44,51,49,46,53,49,55,53,57,52,93,44,91,45,57,50,46,57,49,51,48,49,57,44,51,49,46,51,54,56,50,51,54,93,44,91,45,57,50,46,57,56,49,52,54,52,44,51,49,46,51,52,54,54,52,52,93,44,91,45,57,50,46,56,50,57,54,53,49,44,51,49,46,50,53,50,50,56,49,93,44,91,45,57,50,46,56,50,51,57,51,50,44,51,48,46,56,57,93,44,91,45,57,50,46,53,57,55,55,52,49,44,51,48,46,56,57,54,49,48,49,93,44,91,45,57,50,46,53,50,52,54,52,54,44,51,48,46,56,57,51,51,50,56,93,44,91,45,57,50,46,51,56,48,56,52,51,44,51,49,46,48,48,48,57,50,57,93,44,91,45,57,50,46,50,56,48,55,51,56,44,51,48,46,57,54,53,48,55,49,93,44,91,45,57,50,46,50,48,56,55,56,53,44,51,48,46,57,54,52,55,51,52,93,44,91,45,57,50,46,50,51,51,50,51,44,51,49,46,51,50,49,53,52,53,93,44,91,45,57,50,46,48,56,54,55,49,56,44,51,49,46,51,51,53,51,55,52,93,44,91,45,57,50,46,49,57,54,49,51,49,44,51,49,46,52,55,55,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,52,51,51,44,34,98,101,100,115,34,58,49,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,52,57,57,55,53,44,52,49,46,48,48,51,57,53,93,44,91,45,49,48,49,46,50,52,55,57,54,51,44,52,48,46,54,57,55,56,48,50,93,44,91,45,49,48,48,46,55,55,55,56,51,51,44,52,48,46,55,48,48,49,51,53,93,44,91,45,49,48,48,46,50,50,51,51,49,49,44,52,48,46,55,48,48,50,53,52,93,44,91,45,49,48,48,46,50,50,52,50,51,53,44,52,49,46,48,52,54,53,57,55,93,44,91,45,49,48,48,46,50,53,49,48,57,56,44,52,49,46,51,57,51,50,57,56,93,44,91,45,49,48,48,46,55,49,51,50,52,51,44,52,49,46,51,57,51,53,49,49,93,44,91,45,49,48,49,46,50,54,57,54,57,53,44,52,49,46,51,57,52,57,51,52,93,44,91,45,49,48,49,46,50,55,48,51,56,49,44,52,49,46,48,52,55,51,57,50,93,44,91,45,49,48,49,46,50,52,57,57,55,53,44,52,49,46,48,48,51,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,53,50,50,54,44,51,51,46,50,54,56,56,54,49,93,44,91,45,57,52,46,54,53,51,57,57,52,44,51,50,46,56,55,57,53,48,54,93,44,91,45,57,52,46,48,52,51,48,55,56,44,51,50,46,56,56,49,48,56,57,93,44,91,45,57,52,46,48,52,50,57,54,52,44,51,51,46,48,49,57,50,49,57,93,44,91,45,57,52,46,48,52,50,57,56,55,44,51,51,46,50,55,49,50,52,50,93,44,91,45,57,52,46,50,49,56,55,55,55,44,51,51,46,50,57,54,52,48,50,93,44,91,45,57,52,46,50,51,49,51,51,51,44,51,51,46,50,52,49,48,55,51,93,44,91,45,57,52,46,52,54,56,52,52,50,44,51,51,46,50,57,52,51,49,51,93,44,91,45,57,52,46,54,53,50,50,54,44,51,51,46,50,54,56,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,55,57,44,34,98,101,100,115,34,58,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,49,54,52,48,51,44,51,54,46,53,48,49,53,56,51,93,44,91,45,56,56,46,53,51,48,51,50,50,44,51,54,46,49,53,50,48,50,51,93,44,91,45,56,56,46,50,49,50,53,53,57,44,51,54,46,49,50,48,50,57,93,44,91,45,56,55,46,57,57,48,57,50,44,51,54,46,51,54,48,49,51,51,93,44,91,45,56,56,46,48,53,51,50,57,51,44,51,54,46,52,57,55,48,53,56,93,44,91,45,56,56,46,52,56,57,48,55,53,44,51,54,46,53,48,49,49,53,55,93,44,91,45,56,56,46,53,49,54,52,48,51,44,51,54,46,53,48,49,53,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,56,52,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,56,52,48,34,44,34,78,65,77,69,34,58,34,87,105,110,99,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,55,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,48,48,52,57,55,44,51,57,46,49,56,48,49,54,51,93,44,91,45,55,56,46,49,55,49,54,50,44,51,57,46,49,52,51,49,55,52,93,44,91,45,55,56,46,49,52,56,56,57,53,44,51,57,46,49,55,53,51,53,50,93,44,91,45,55,56,46,50,48,48,52,57,55,44,51,57,46,49,56,48,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,68,117,112,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,48,54,50,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,54,51,52,50,44,51,53,46,49,56,57,55,49,54,93,44,91,45,55,56,46,49,52,55,49,50,57,44,51,52,46,57,48,50,53,48,54,93,44,91,45,55,56,46,49,57,56,54,52,50,44,51,52,46,55,52,49,54,51,55,93,44,91,45,55,56,46,49,49,52,48,48,55,44,51,52,46,55,50,49,55,57,53,93,44,91,45,55,55,46,54,56,48,49,50,55,44,51,52,46,55,50,48,53,57,53,93,44,91,45,55,55,46,54,53,49,48,52,53,44,51,52,46,57,50,51,51,52,49,93,44,91,45,55,55,46,54,55,52,56,48,53,44,51,52,46,57,55,51,57,93,44,91,45,55,55,46,55,51,49,48,50,54,44,51,53,46,48,48,56,49,51,56,93,44,91,45,55,55,46,55,54,57,49,55,55,44,51,53,46,49,52,53,53,55,54,93,44,91,45,55,55,46,56,51,52,50,52,57,44,51,53,46,49,55,55,56,52,54,93,44,91,45,55,56,46,49,54,51,52,50,44,51,53,46,49,56,57,55,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,72,97,121,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,52,51,51,44,34,98,101,100,115,34,58,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,53,52,50,53,55,44,51,53,46,54,57,53,53,57,51,93,44,91,45,56,51,46,49,56,50,57,57,57,44,51,53,46,54,55,48,54,50,53,93,44,91,45,56,51,46,49,56,54,51,50,50,44,51,53,46,53,49,52,51,54,56,93,44,91,45,56,50,46,57,50,48,56,56,49,44,51,53,46,50,57,50,48,51,55,93,44,91,45,56,50,46,56,51,50,50,52,52,44,51,53,46,51,49,56,51,50,52,93,44,91,45,56,50,46,55,52,53,49,51,57,44,51,53,46,52,50,50,57,54,55,93,44,91,45,56,50,46,55,54,53,56,57,51,44,51,53,46,53,54,55,52,57,53,93,44,91,45,56,50,46,56,56,51,57,48,57,44,51,53,46,54,55,56,50,51,53,93,44,91,45,56,50,46,57,54,49,55,53,52,44,51,53,46,55,57,48,57,53,57,93,44,91,45,56,51,46,48,55,51,57,49,56,44,51,53,46,55,57,48,48,53,53,93,44,91,45,56,51,46,50,53,53,51,52,51,44,51,53,46,55,49,53,48,56,52,93,44,91,45,56,51,46,50,53,52,50,53,55,44,51,53,46,54,57,53,53,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,56,50,48,49,44,34,98,101,100,115,34,58,50,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,50,57,54,49,53,44,52,52,46,55,57,49,48,56,54,93,44,91,45,57,51,46,50,56,49,53,50,49,44,52,52,46,53,52,51,57,53,55,93,44,91,45,57,51,46,50,56,49,54,56,54,44,52,52,46,52,55,49,57,57,56,93,44,91,45,57,51,46,48,51,57,52,56,53,44,52,52,46,52,55,49,56,55,49,93,44,91,45,57,50,46,57,49,56,57,55,55,44,52,52,46,53,52,51,50,53,93,44,91,45,57,50,46,55,57,50,55,49,53,44,52,52,46,53,52,51,50,52,93,44,91,45,57,50,46,55,51,50,48,52,51,44,52,52,46,55,49,52,51,52,53,93,44,91,45,57,50,46,56,48,50,48,49,55,44,52,52,46,55,52,53,54,55,51,93,44,91,45,57,51,46,48,48,53,57,55,56,44,52,52,46,55,55,49,54,56,53,93,44,91,45,57,51,46,48,50,48,48,52,52,44,52,52,46,56,57,48,55,53,93,44,91,45,57,51,46,49,55,56,53,51,57,44,52,52,46,56,56,56,51,51,56,93,44,91,45,57,51,46,51,50,57,54,49,53,44,52,52,46,55,57,49,48,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,72,97,114,110,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,56,57,54,53,56,49,44,52,51,46,54,49,49,49,54,52,93,44,91,45,49,49,57,46,56,57,54,57,54,57,44,52,51,46,49,55,57,48,49,55,93,44,91,45,49,49,57,46,57,51,50,54,49,49,44,52,51,46,49,55,56,57,54,51,93,44,91,45,49,49,57,46,57,52,51,55,55,57,44,52,50,46,55,52,54,51,55,49,93,44,91,45,49,49,57,46,51,54,53,51,51,55,44,52,50,46,55,52,56,57,53,56,93,44,91,45,49,49,57,46,51,54,48,49,50,50,44,52,49,46,57,57,52,50,55,56,93,44,91,45,49,49,57,46,51,50,52,49,56,52,44,52,49,46,57,57,51,57,50,51,93,44,91,45,49,49,56,46,49,57,55,51,55,49,44,52,49,46,57,57,55,51,52,52,93,44,91,45,49,49,56,46,50,49,52,54,57,56,44,52,50,46,50,55,53,56,57,49,93,44,91,45,49,49,56,46,50,50,56,55,57,51,44,52,50,46,57,49,52,54,50,53,93,44,91,45,49,49,56,46,50,50,55,54,52,53,44,52,52,46,48,51,57,56,54,50,93,44,91,45,49,49,56,46,56,49,54,56,57,44,52,52,46,48,52,55,56,50,56,93,44,91,45,49,49,56,46,56,49,54,57,51,49,44,52,51,46,57,54,48,55,51,51,93,44,91,45,49,49,57,46,54,53,55,49,56,51,44,52,51,46,57,53,56,57,50,93,44,91,45,49,49,57,46,55,55,53,52,48,50,44,52,51,46,57,53,57,48,56,54,93,44,91,45,49,49,57,46,55,55,55,53,50,56,44,52,51,46,54,57,55,57,53,55,93,44,91,45,49,49,57,46,56,57,55,52,51,52,44,52,51,46,54,57,56,50,93,44,91,45,49,49,57,46,56,57,54,53,56,49,44,52,51,46,54,49,49,49,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,97,117,110,97,98,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,56,56,53,50,51,44,49,56,46,48,53,56,57,52,49,93,44,91,45,54,53,46,56,55,51,50,57,57,44,49,55,46,57,51,55,57,53,53,93,44,91,45,54,53,46,56,49,54,52,52,57,44,49,55,46,57,54,53,53,48,52,93,44,91,45,54,53,46,56,54,55,56,48,50,44,49,56,46,48,50,54,48,48,55,93,44,91,45,54,53,46,57,56,56,53,50,51,44,49,56,46,48,53,56,57,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,48,50,55,56,51,44,52,52,46,50,52,57,52,55,51,93,44,91,45,57,48,46,48,50,53,57,53,51,44,52,52,46,48,57,49,55,52,56,93,44,91,45,56,57,46,57,54,50,54,48,49,44,52,51,46,57,55,57,50,51,54,93,44,91,45,56,57,46,57,54,49,50,50,49,44,52,51,46,56,54,52,48,50,55,93,44,91,45,56,57,46,56,54,53,49,51,50,44,52,51,46,55,56,51,52,49,52,93,44,91,45,56,57,46,55,56,52,57,48,49,44,52,51,46,54,52,49,48,53,49,93,44,91,45,56,57,46,53,57,57,53,52,55,44,52,51,46,54,52,50,54,51,54,93,44,91,45,56,57,46,53,57,55,57,53,44,52,51,46,57,56,50,49,93,44,91,45,56,57,46,53,57,55,57,56,44,52,52,46,50,52,53,55,50,53,93,44,91,45,56,57,46,55,50,52,55,52,54,44,52,52,46,50,52,55,54,55,56,93,44,91,45,56,57,46,57,48,50,55,56,51,44,52,52,46,50,52,57,52,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,52,51,49,49,50,44,52,48,46,54,48,53,56,50,55,93,44,91,45,57,49,46,57,52,57,55,52,55,44,52,48,46,51,48,48,56,51,50,93,44,91,45,57,49,46,57,53,48,56,49,50,44,52,48,46,50,53,55,50,49,93,44,91,45,57,49,46,52,57,55,50,54,54,44,52,48,46,50,52,56,55,54,51,93,44,91,45,57,49,46,52,49,57,52,50,50,44,52,48,46,51,55,56,50,54,52,93,44,91,45,57,49,46,52,56,51,49,53,51,44,52,48,46,51,56,50,52,57,50,93,44,91,45,57,49,46,55,49,54,55,54,57,44,52,48,46,53,57,56,53,51,93,44,91,45,57,49,46,57,52,51,49,49,50,44,52,48,46,54,48,53,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,48,57,53,44,34,98,101,100,115,34,58,50,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,50,48,49,53,55,44,51,57,46,49,48,53,52,56,57,93,44,91,45,56,52,46,56,55,55,54,50,52,44,51,57,46,48,51,49,50,49,51,93,44,91,45,56,52,46,56,55,48,55,52,57,44,51,56,46,57,48,48,57,48,53,93,44,91,45,56,52,46,55,57,53,48,51,57,44,51,56,46,56,53,55,50,55,93,44,91,45,56,52,46,54,54,48,49,48,55,44,51,56,46,55,55,55,50,57,51,93,44,91,45,56,52,46,54,49,53,54,54,52,44,51,56,46,56,48,50,50,55,55,93,44,91,45,56,52,46,54,50,51,52,56,56,44,51,57,46,48,55,52,50,56,50,93,44,91,45,56,52,46,55,53,48,51,52,53,44,51,57,46,49,52,55,54,50,50,93,44,91,45,56,52,46,56,50,48,49,53,55,44,51,57,46,49,48,53,52,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,53,50,55,57,55,44,51,55,46,56,57,55,54,54,49,93,44,91,45,56,53,46,50,57,48,50,56,52,44,51,55,46,56,51,49,49,56,50,93,44,91,45,56,53,46,52,48,49,55,56,52,44,51,55,46,55,51,48,54,53,56,93,44,91,45,56,53,46,50,53,55,50,57,56,44,51,55,46,54,51,48,57,48,51,93,44,91,45,56,53,46,48,51,48,49,55,50,44,51,55,46,54,51,49,50,55,93,44,91,45,56,53,46,48,50,53,48,50,49,44,51,55,46,54,55,56,56,53,52,93,44,91,45,56,53,46,48,51,48,53,50,56,44,51,55,46,56,57,49,53,51,56,93,44,91,45,56,53,46,49,53,50,55,57,55,44,51,55,46,56,57,55,54,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,118,111,121,101,108,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,56,56,50,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,56,54,55,49,56,44,51,49,46,51,51,53,51,55,52,93,44,91,45,57,50,46,50,51,51,50,51,44,51,49,46,51,50,49,53,52,53,93,44,91,45,57,50,46,50,48,56,55,56,53,44,51,48,46,57,54,52,55,51,52,93,44,91,45,57,50,46,50,56,48,55,51,56,44,51,48,46,57,54,53,48,55,49,93,44,91,45,57,50,46,50,49,50,55,49,49,44,51,48,46,56,52,56,54,48,55,93,44,91,45,57,49,46,56,49,53,50,53,56,44,51,48,46,56,52,56,49,48,55,93,44,91,45,57,49,46,56,48,53,57,54,51,44,51,48,46,57,55,50,53,53,56,93,44,91,45,57,49,46,55,53,48,49,49,57,44,51,49,46,48,49,56,56,49,52,93,44,91,45,57,49,46,55,50,51,56,48,52,44,51,49,46,48,52,52,50,53,52,93,44,91,45,57,49,46,54,55,55,51,48,50,44,51,49,46,49,56,56,48,52,55,93,44,91,45,57,49,46,56,51,52,50,56,44,51,49,46,50,54,54,51,52,52,93,44,91,45,57,50,46,48,48,56,49,50,49,44,51,49,46,51,50,53,55,57,55,93,44,91,45,57,50,46,48,56,54,55,49,56,44,51,49,46,51,51,53,51,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,84,97,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,50,51,52,52,50,44,51,52,46,55,55,50,51,49,49,93,44,91,45,56,57,46,57,48,56,53,56,55,44,51,52,46,55,55,50,54,52,49,93,44,91,45,57,48,46,48,50,57,49,52,52,44,51,52,46,55,48,56,49,55,54,93,44,91,45,57,48,46,50,48,48,49,57,57,44,51,52,46,55,50,52,52,49,56,93,44,91,45,57,48,46,50,52,51,57,50,52,44,51,52,46,54,48,50,49,53,93,44,91,45,57,48,46,49,57,56,54,51,49,44,51,52,46,53,53,52,52,50,53,93,44,91,45,56,57,46,55,50,49,51,52,49,44,51,52,46,53,53,52,50,55,52,93,44,91,45,56,57,46,54,54,56,52,52,56,44,51,52,46,53,53,52,51,54,55,93,44,91,45,56,57,46,54,54,57,49,54,44,51,52,46,54,56,53,55,56,54,93,44,91,45,56,57,46,55,50,51,52,52,50,44,51,52,46,55,55,50,51,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,55,34,44,34,78,65,77,69,34,58,34,87,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,51,50,50,52,44,52,48,46,53,55,49,57,48,49,93,44,91,45,57,52,46,52,55,49,50,49,51,44,52,48,46,53,55,48,56,50,53,93,44,91,45,57,52,46,54,51,50,48,51,44,52,48,46,53,55,49,51,54,55,93,44,91,45,57,52,46,53,57,56,52,56,55,44,52,48,46,51,56,54,55,49,52,93,44,91,45,57,52,46,50,49,52,50,55,56,44,52,48,46,51,56,52,50,53,52,93,44,91,45,57,52,46,50,51,50,50,52,44,52,48,46,53,55,49,57,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,83,104,101,114,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,52,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,53,49,53,53,56,44,52,49,46,51,57,52,48,56,52,93,44,91,45,57,57,46,50,48,51,50,54,49,44,52,49,46,51,57,52,49,52,93,44,91,45,57,57,46,50,48,55,53,54,52,44,52,49,46,48,52,55,48,48,51,93,44,91,45,57,56,46,55,52,56,53,50,54,44,52,49,46,48,52,54,54,52,93,44,91,45,57,56,46,55,52,52,51,51,44,52,49,46,51,57,52,49,55,56,93,44,91,45,57,56,46,55,53,49,53,53,56,44,52,49,46,51,57,52,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,97,109,112,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,52,57,57,51,55,49,44,52,53,46,57,52,51,54,53,51,93,44,91,45,49,48,48,46,51,56,55,48,51,54,44,52,53,46,56,54,57,49,52,50,93,44,91,45,49,48,48,46,51,48,57,48,49,51,44,52,53,46,55,48,55,56,52,50,93,44,91,45,49,48,48,46,52,51,48,48,55,57,44,52,53,46,53,57,52,56,50,51,93,44,91,45,57,57,46,55,49,55,52,54,54,44,52,53,46,53,57,51,52,50,56,93,44,91,45,57,57,46,55,49,56,48,55,49,44,52,53,46,57,52,48,56,56,51,93,44,91,45,57,57,46,56,56,48,48,54,44,52,53,46,57,52,49,52,50,51,93,44,91,45,49,48,48,46,52,57,57,51,55,49,44,52,53,46,57,52,51,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,52,49,57,52,44,52,53,46,56,56,49,57,55,53,93,44,91,45,49,48,52,46,48,52,48,48,48,52,44,52,53,46,50,49,50,56,57,49,93,44,91,45,49,48,50,46,57,53,55,50,56,49,44,52,53,46,50,49,50,56,53,49,93,44,91,45,49,48,50,46,57,52,50,48,55,44,52,53,46,57,52,53,93,44,91,45,49,48,50,46,57,57,53,50,52,56,44,52,53,46,57,52,53,49,54,55,93,44,91,45,49,48,52,46,48,52,53,53,52,55,44,52,53,46,57,52,53,51,48,56,93,44,91,45,49,48,52,46,48,52,52,49,57,52,44,52,53,46,56,56,49,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,71,114,97,116,105,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,48,54,55,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,52,53,57,54,50,44,52,51,46,52,54,54,49,53,56,93,44,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,44,91,45,56,52,46,51,54,55,55,54,44,52,51,46,49,49,55,57,52,50,93,44,91,45,56,52,46,51,54,55,56,57,49,44,52,51,46,49,50,56,52,53,50,93,44,91,45,56,52,46,51,54,57,56,55,54,44,52,51,46,52,54,54,48,52,52,93,44,91,45,56,52,46,54,48,55,53,52,44,52,51,46,52,54,54,48,48,54,93,44,91,45,56,52,46,56,52,53,57,54,50,44,52,51,46,52,54,54,49,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,55,48,54,48,51,44,52,49,46,49,53,55,53,54,54,93,44,91,45,57,52,46,52,55,48,55,55,57,44,52,48,46,56,57,57,53,48,50,93,44,91,45,57,52,46,48,49,52,56,48,51,44,52,48,46,56,57,55,48,51,49,93,44,91,45,57,52,46,48,49,52,49,56,57,44,52,49,46,49,53,54,55,54,50,93,44,91,45,57,52,46,50,52,49,54,51,55,44,52,49,46,49,53,55,49,51,52,93,44,91,45,57,52,46,52,55,48,54,48,51,44,52,49,46,49,53,55,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,77,97,115,115,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,49,48,55,51,56,44,51,55,46,51,51,55,48,56,49,93,44,91,45,56,56,46,57,50,56,55,53,55,44,51,55,46,51,48,50,56,52,56,93,44,91,45,56,56,46,57,50,55,56,57,44,51,55,46,50,50,54,51,52,50,93,44,91,45,56,56,46,53,54,54,48,54,49,44,51,55,46,48,55,53,50,48,52,93,44,91,45,56,56,46,52,57,48,52,49,49,44,51,55,46,48,54,56,53,55,57,93,44,91,45,56,56,46,52,57,48,51,51,44,51,55,46,49,53,57,52,54,50,93,44,91,45,56,56,46,55,49,48,55,51,56,44,51,55,46,51,51,55,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,49,51,50,52,51,44,52,49,46,51,57,51,53,49,49,93,44,91,45,49,48,48,46,50,53,49,48,57,56,44,52,49,46,51,57,51,50,57,56,93,44,91,45,49,48,48,46,50,53,49,50,50,52,44,52,49,46,55,51,57,56,49,55,93,44,91,45,49,48,48,46,50,54,53,52,55,52,44,52,49,46,55,51,57,56,53,54,93,44,91,45,49,48,48,46,55,49,49,55,49,49,44,52,49,46,55,51,57,55,54,49,93,44,91,45,49,48,48,46,55,49,51,50,52,51,44,52,49,46,51,57,51,53,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,101,114,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,48,51,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,56,54,53,56,52,44,52,49,46,51,57,51,56,57,56,93,44,91,45,57,56,46,50,56,55,49,54,56,44,52,49,46,48,52,54,51,54,51,93,44,91,45,57,56,46,50,56,50,53,55,56,44,52,48,46,56,54,56,54,55,55,93,44,91,45,57,56,46,48,49,48,53,52,56,44,52,49,46,48,55,50,55,54,49,93,44,91,45,57,55,46,56,50,56,50,53,54,44,52,49,46,49,55,51,52,51,57,93,44,91,45,57,55,46,53,57,56,50,53,51,44,52,49,46,51,51,51,49,49,57,93,44,91,45,57,55,46,55,48,51,55,54,53,44,52,49,46,51,57,52,56,55,54,93,44,91,45,57,55,46,55,48,53,52,57,55,44,52,49,46,51,48,57,49,51,52,93,44,91,45,57,56,46,48,53,51,49,51,55,44,52,49,46,50,57,51,49,50,51,93,44,91,45,57,56,46,50,55,53,52,48,56,44,52,49,46,50,54,52,51,52,49,93,44,91,45,57,56,46,50,56,54,53,56,52,44,52,49,46,51,57,51,56,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,83,104,101,114,105,100,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,51,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,56,50,53,52,54,44,52,50,46,57,57,57,51,53,54,93,44,91,45,49,48,50,46,55,57,50,49,49,49,44,52,50,46,57,57,57,57,56,93,44,91,45,49,48,50,46,55,55,51,51,54,57,44,52,50,46,55,56,53,50,54,53,93,44,91,45,49,48,50,46,55,55,51,51,54,54,44,52,50,46,52,51,57,57,50,50,93,44,91,45,49,48,50,46,55,52,50,50,54,57,44,52,50,46,48,57,50,51,56,56,93,44,91,45,49,48,50,46,54,57,55,56,51,53,44,52,50,46,48,48,52,56,52,51,93,44,91,45,49,48,50,46,54,55,55,53,56,50,44,52,50,46,48,48,53,50,56,50,93,44,91,45,49,48,50,46,48,54,54,54,53,44,52,50,46,48,48,57,49,57,53,93,44,91,45,49,48,50,46,48,48,54,50,48,52,44,52,50,46,48,57,54,51,51,56,93,44,91,45,49,48,50,46,48,52,48,50,56,44,52,50,46,48,57,54,55,52,52,93,44,91,45,49,48,50,46,48,54,54,54,56,57,44,52,50,46,52,52,51,52,54,51,93,44,91,45,49,48,50,46,48,56,50,53,52,54,44,52,50,46,57,57,57,51,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,97,114,108,105,115,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,49,53,57,53,50,44,51,54,46,57,53,52,49,93,44,91,45,56,56,46,57,56,57,55,57,55,44,51,54,46,57,49,57,51,51,93,44,91,45,56,57,46,49,48,48,56,54,52,44,51,54,46,57,52,52,48,49,54,93,44,91,45,56,57,46,49,50,51,53,51,49,44,51,54,46,55,56,53,50,49,55,93,44,91,45,56,56,46,56,49,51,50,50,57,44,51,54,46,55,55,51,49,49,53,93,44,91,45,56,56,46,56,49,50,56,57,55,44,51,54,46,57,52,54,56,54,52,93,44,91,45,56,56,46,56,49,53,57,53,50,44,51,54,46,57,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,78,97,116,114,111,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,54,49,48,44,34,98,101,100,115,34,58,51,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,53,50,50,57,50,51,44,52,50,46,52,51,52,51,53,54,93,44,91,45,49,48,54,46,54,53,52,55,56,49,44,52,50,46,52,51,49,48,57,52,93,44,91,45,49,48,54,46,48,55,53,56,53,50,44,52,50,46,52,51,51,50,49,56,93,44,91,45,49,48,54,46,48,55,56,48,54,56,44,52,51,46,52,57,52,52,55,49,93,44,91,45,49,48,54,46,53,57,52,56,57,55,44,52,51,46,52,57,49,52,55,93,44,91,45,49,48,55,46,49,49,48,55,51,52,44,52,51,46,53,48,48,50,56,54,93,44,91,45,49,48,55,46,53,51,52,56,57,55,44,52,51,46,53,48,49,51,54,50,93,44,91,45,49,48,55,46,53,49,55,48,51,49,44,52,51,46,52,55,50,54,53,57,93,44,91,45,49,48,55,46,53,48,49,52,50,53,44,52,50,46,55,56,49,52,53,56,93,44,91,45,49,48,55,46,53,52,51,53,50,54,44,52,50,46,55,56,49,53,53,56,93,44,91,45,49,48,55,46,53,50,50,57,50,51,44,52,50,46,52,51,52,51,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,49,34,44,34,78,65,77,69,34,58,34,87,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,49,56,52,48,52,44,51,49,46,54,53,48,50,55,52,93,44,91,45,56,51,46,57,57,55,55,57,54,44,51,49,46,52,52,51,55,53,51,93,44,91,45,56,51,46,57,57,57,52,51,44,51,49,46,51,51,52,57,54,54,93,44,91,45,56,51,46,54,53,52,48,57,44,51,49,46,51,51,48,54,54,49,93,44,91,45,56,51,46,54,52,57,51,56,52,44,51,49,46,53,54,55,57,55,55,93,44,91,45,56,51,46,55,57,54,56,52,54,44,51,49,46,54,50,50,57,50,57,93,44,91,45,56,51,46,56,48,50,55,50,51,44,51,49,46,56,48,51,53,55,57,93,44,91,45,56,51,46,57,51,57,52,51,55,44,51,49,46,56,52,55,57,50,57,93,44,91,45,56,52,46,48,50,53,54,50,51,44,51,49,46,55,49,48,48,50,50,93,44,91,45,56,52,46,48,49,56,52,48,52,44,51,49,46,54,53,48,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,55,50,55,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,53,54,54,53,44,51,57,46,54,48,49,51,57,53,93,44,91,45,56,54,46,54,56,53,55,49,44,51,57,46,52,55,48,48,54,51,93,44,91,45,56,54,46,54,51,48,56,49,56,44,51,57,46,51,52,54,57,52,56,93,44,91,45,56,54,46,51,56,49,51,57,53,44,51,57,46,51,51,57,55,53,50,93,44,91,45,56,54,46,50,53,49,54,56,52,44,51,57,46,51,52,49,54,55,50,93,44,91,45,56,54,46,50,52,57,56,56,53,44,51,57,46,54,51,51,54,52,53,93,44,91,45,56,54,46,51,50,54,51,52,49,44,51,57,46,54,51,50,49,55,55,93,44,91,45,56,54,46,52,54,53,54,48,53,44,51,57,46,54,48,48,55,54,57,93,44,91,45,56,54,46,54,53,54,54,53,44,51,57,46,54,48,49,51,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,69,108,108,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,56,51,56,44,34,98,101,100,115,34,58,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,50,57,57,56,55,44,51,50,46,53,52,53,50,56,50,93,44,91,45,57,55,46,48,51,56,51,56,53,44,51,50,46,53,52,56,54,54,50,93,44,91,45,57,55,46,48,56,54,56,51,52,44,51,50,46,53,52,57,52,50,56,93,44,91,45,57,55,46,48,56,54,49,57,49,44,51,50,46,50,54,53,52,53,49,93,44,91,45,57,54,46,57,52,48,54,53,54,44,51,50,46,48,53,50,48,56,55,93,44,91,45,57,54,46,56,57,54,50,48,57,44,51,50,46,48,55,51,57,55,55,93,44,91,45,57,54,46,51,56,51,48,56,50,44,51,50,46,51,50,56,56,53,49,93,44,91,45,57,54,46,52,53,50,49,51,56,44,51,50,46,51,53,56,54,51,49,93,44,91,45,57,54,46,52,51,53,50,51,51,44,51,50,46,52,48,56,57,56,54,93,44,91,45,57,54,46,53,50,57,57,56,55,44,51,50,46,53,52,53,50,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,57,34,44,34,78,65,77,69,34,58,34,80,105,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,50,54,53,56,53,44,51,49,46,53,51,48,54,57,57,93,44,91,45,56,50,46,51,52,52,56,52,51,44,51,49,46,52,51,48,49,51,93,44,91,45,56,50,46,52,49,55,50,52,54,44,51,49,46,52,49,55,49,49,57,93,44,91,45,56,50,46,51,56,51,55,48,53,44,51,49,46,50,57,49,49,52,51,93,44,91,45,56,50,46,50,56,52,53,54,49,44,51,49,46,50,50,52,52,52,57,93,44,91,45,56,50,46,49,57,52,56,50,52,44,51,49,46,50,48,55,53,57,93,44,91,45,56,50,46,48,57,50,55,50,44,51,49,46,50,55,54,49,49,57,93,44,91,45,56,50,46,48,52,49,49,50,57,44,51,49,46,51,55,51,55,50,49,93,44,91,45,56,50,46,49,51,50,55,57,52,44,51,49,46,52,55,49,50,54,50,93,44,91,45,56,50,46,50,50,54,53,56,53,44,51,49,46,53,51,48,54,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,57,52,52,44,34,98,101,100,115,34,58,51,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,51,54,52,49,44,52,48,46,53,54,53,53,50,53,93,44,91,45,56,53,46,56,54,50,49,49,55,44,52,48,46,52,48,54,56,56,57,93,44,91,45,56,53,46,56,54,50,50,57,54,44,52,48,46,51,55,56,51,54,55,93,44,91,45,56,53,46,53,55,56,53,56,57,44,52,48,46,51,55,57,53,50,52,93,44,91,45,56,53,46,52,52,52,51,51,44,52,48,46,51,55,57,49,52,93,44,91,45,56,53,46,52,52,55,48,49,52,44,52,48,46,53,54,54,57,50,57,93,44,91,45,56,53,46,52,52,56,56,50,53,44,52,48,46,54,53,51,54,48,55,93,44,91,45,56,53,46,54,51,56,53,56,55,44,52,48,46,54,53,51,49,50,57,93,44,91,45,56,53,46,56,54,52,55,57,49,44,52,48,46,54,53,49,54,57,51,93,44,91,45,56,53,46,56,54,51,54,52,49,44,52,48,46,53,54,53,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,70,108,97,103,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,49,51,57,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,53,48,56,49,55,44,50,57,46,54,55,49,48,56,55,93,44,91,45,56,49,46,51,50,52,48,53,57,44,50,57,46,54,50,53,54,49,93,44,91,45,56,49,46,53,50,51,54,54,44,50,57,46,54,50,50,52,51,50,93,44,91,45,56,49,46,53,50,48,53,57,54,44,50,57,46,53,48,48,50,52,57,93,44,91,45,56,49,46,52,51,51,57,57,50,44,50,57,46,51,57,56,53,53,50,93,44,91,45,56,49,46,52,49,55,50,57,44,50,57,46,50,54,49,49,53,54,93,44,91,45,56,49,46,49,53,48,48,56,49,44,50,57,46,50,54,53,57,53,55,93,44,91,45,56,49,46,49,53,53,56,56,49,44,50,57,46,52,49,48,57,53,52,93,44,91,45,56,49,46,48,52,53,55,48,54,44,50,57,46,52,51,50,52,54,50,93,44,91,45,56,49,46,49,53,48,56,49,55,44,50,57,46,54,55,49,48,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,52,53,49,57,49,44,51,49,46,55,49,55,53,50,52,93,44,91,45,57,48,46,50,52,51,56,57,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,48,52,48,52,54,54,44,51,49,46,51,51,54,48,49,52,93,44,91,45,56,57,46,57,53,56,57,52,44,51,49,46,51,57,48,52,56,57,93,44,91,45,56,57,46,57,55,52,53,56,54,44,51,49,46,55,54,49,54,53,53,93,44,91,45,57,48,46,49,50,50,53,54,53,44,51,49,46,55,53,50,54,56,93,44,91,45,57,48,46,50,52,53,49,57,49,44,51,49,46,55,49,55,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,87,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,57,52,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,51,57,48,56,44,51,50,46,49,52,55,57,52,50,93,44,91,45,57,50,46,56,56,50,57,57,56,44,51,49,46,57,51,57,57,55,93,44,91,45,57,50,46,57,52,50,50,52,53,44,51,49,46,56,53,52,50,54,56,93,44,91,45,57,50,46,57,55,51,53,50,57,44,51,49,46,55,48,56,57,50,50,93,44,91,45,57,50,46,54,49,57,57,55,54,44,51,49,46,55,48,57,53,55,50,93,44,91,45,57,50,46,54,49,57,50,50,52,44,51,49,46,55,57,55,49,52,57,93,44,91,45,57,50,46,51,54,50,54,48,56,44,51,49,46,55,57,54,54,51,51,93,44,91,45,57,50,46,51,49,50,54,50,51,44,51,49,46,57,50,55,51,56,50,93,44,91,45,57,50,46,51,49,50,50,49,56,44,51,50,46,49,52,54,49,50,51,93,44,91,45,57,50,46,56,49,52,55,51,55,44,51,50,46,49,52,54,57,48,55,93,44,91,45,57,50,46,57,51,57,48,56,44,51,50,46,49,52,55,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,52,54,52,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,56,53,53,51,54,44,52,49,46,53,56,52,53,55,52,93,44,91,45,57,48,46,52,51,49,57,51,44,52,49,46,52,53,54,56,51,52,93,44,91,45,57,48,46,52,51,51,55,51,55,44,52,49,46,51,50,54,57,56,57,93,44,91,45,57,48,46,52,51,55,54,53,50,44,52,49,46,49,53,49,52,54,51,93,44,91,45,56,57,46,57,56,52,53,53,57,44,52,49,46,49,52,57,51,57,52,93,44,91,45,56,57,46,56,54,56,49,53,50,44,52,49,46,49,52,57,52,57,51,93,44,91,45,56,57,46,56,53,55,54,49,54,44,52,49,46,50,51,52,52,55,57,93,44,91,45,56,57,46,56,54,50,51,53,49,44,52,49,46,53,56,52,48,48,53,93,44,91,45,57,48,46,49,56,53,53,51,54,44,52,49,46,53,56,52,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,56,56,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,48,57,53,56,51,51,44,52,53,46,48,52,51,57,56,54,93,44,91,45,49,50,52,46,49,52,55,54,51,56,44,52,52,46,55,54,57,49,49,51,93,44,91,45,49,50,52,46,49,53,51,52,50,56,44,52,52,46,52,54,53,48,51,54,93,44,91,45,49,50,52,46,49,56,55,52,48,57,44,52,52,46,50,55,54,56,55,49,93,44,91,45,49,50,51,46,55,55,53,53,57,56,44,52,52,46,50,56,51,53,52,55,93,44,91,45,49,50,51,46,55,50,48,48,55,49,44,52,52,46,52,51,51,51,55,52,93,44,91,45,49,50,51,46,53,57,55,54,55,55,44,52,52,46,52,51,51,49,48,57,93,44,91,45,49,50,51,46,54,48,50,54,48,57,44,52,52,46,55,50,49,49,53,52,93,44,91,45,49,50,51,46,55,50,53,48,48,49,44,52,52,46,55,51,57,48,52,54,93,44,91,45,49,50,51,46,55,50,52,54,54,51,44,52,53,46,48,52,52,52,51,50,93,44,91,45,49,50,52,46,48,57,53,56,51,51,44,52,53,46,48,52,51,57,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,49,48,50,44,34,98,101,100,115,34,58,50,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,57,54,50,49,53,52,44,52,51,46,53,52,49,48,56,55,93,44,91,45,55,48,46,57,55,56,49,49,53,44,52,51,46,51,53,56,57,49,52,93,44,91,45,55,48,46,56,49,56,49,57,53,44,52,51,46,50,51,56,51,51,93,44,91,45,55,48,46,56,50,48,48,49,57,44,52,51,46,49,50,50,53,52,53,93,44,91,45,55,48,46,53,55,53,48,57,52,44,52,50,46,57,49,55,49,50,54,93,44,91,45,55,48,46,53,50,56,56,56,50,44,52,51,46,48,48,53,55,54,57,93,44,91,45,55,48,46,52,48,54,50,52,51,44,52,51,46,49,48,50,48,57,50,93,44,91,45,55,48,46,53,49,57,54,54,54,44,52,51,46,49,57,49,48,49,53,93,44,91,45,55,48,46,52,57,51,50,51,44,52,51,46,50,56,54,56,50,57,93,44,91,45,55,48,46,51,54,57,50,49,57,44,52,51,46,51,50,50,50,50,93,44,91,45,55,48,46,50,50,50,48,57,44,52,51,46,52,54,54,56,55,56,93,44,91,45,55,48,46,52,57,50,48,48,57,44,52,51,46,54,48,54,55,54,57,93,44,91,45,55,48,46,53,52,57,57,54,53,44,52,51,46,55,49,53,55,57,54,93,44,91,45,55,48,46,54,53,57,51,54,57,44,52,51,46,55,57,48,51,56,54,93,44,91,45,55,48,46,55,56,50,57,56,52,44,52,51,46,56,49,52,49,52,55,93,44,91,45,55,48,46,57,56,57,49,50,50,44,52,51,46,55,57,50,49,49,51,93,44,91,45,55,48,46,57,54,50,49,53,52,44,52,51,46,53,52,49,48,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,100,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,57,51,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,57,52,50,53,52,44,52,53,46,49,53,49,54,51,49,93,44,91,45,57,55,46,52,57,49,51,52,54,44,52,52,46,56,48,52,48,51,53,93,44,91,45,57,54,46,56,56,52,53,55,44,52,52,46,56,48,52,52,51,54,93,44,91,45,57,54,46,56,56,50,51,52,53,44,52,52,46,57,55,54,56,55,93,44,91,45,57,54,46,56,56,51,57,52,56,44,52,53,46,49,53,48,50,50,52,93,44,91,45,57,55,46,50,50,54,50,56,49,44,52,53,46,49,53,49,56,50,54,93,44,91,45,57,55,46,52,57,52,50,53,52,44,52,53,46,49,53,49,54,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,49,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,57,54,55,56,51,44,51,51,46,49,56,51,56,54,54,93,44,91,45,56,52,46,53,50,55,48,50,44,51,50,46,57,55,48,53,52,56,93,44,91,45,56,52,46,50,57,56,54,54,53,44,51,50,46,57,57,57,54,55,49,93,44,91,45,56,52,46,50,55,48,49,52,44,51,50,46,57,57,49,48,49,49,93,44,91,45,56,52,46,50,52,56,49,56,53,44,51,51,46,49,56,57,48,49,57,93,44,91,45,56,52,46,52,57,54,55,56,51,44,51,51,46,49,56,51,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,57,34,44,34,78,65,77,69,34,58,34,83,116,101,119,97,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,52,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,50,51,48,50,55,44,51,50,46,50,51,48,56,53,49,93,44,91,45,56,53,46,48,54,50,48,54,44,51,50,46,49,51,50,52,56,54,93,44,91,45,56,53,46,48,53,54,48,50,57,44,51,50,46,48,54,51,48,53,53,93,44,91,45,56,53,46,48,54,56,50,51,44,51,49,46,57,57,49,56,53,55,93,44,91,45,56,52,46,57,48,55,48,48,54,44,51,49,46,57,50,52,52,54,53,93,44,91,45,56,52,46,54,53,53,56,50,44,51,49,46,57,50,48,51,48,56,93,44,91,45,56,52,46,54,52,57,51,49,57,44,51,50,46,50,51,50,57,53,51,93,44,91,45,56,52,46,54,53,56,57,50,44,51,50,46,50,51,50,56,53,50,93,44,91,45,56,52,46,57,50,51,48,50,55,44,51,50,46,50,51,48,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,77,111,110,109,111,117,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,51,51,56,55,44,34,98,101,100,115,34,58,50,49,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,50,50,56,49,53,51,44,52,48,46,52,55,55,51,57,57,93,44,91,45,55,52,46,50,52,55,56,57,52,44,52,48,46,52,48,54,54,48,53,93,44,91,45,55,52,46,51,57,51,52,51,56,44,52,48,46,50,55,57,53,52,56,93,44,91,45,55,52,46,52,56,52,57,54,50,44,52,48,46,50,53,51,51,50,53,93,44,91,45,55,52,46,53,56,55,56,51,53,44,52,48,46,49,51,56,50,53,52,93,44,91,45,55,52,46,53,53,51,49,48,53,44,52,48,46,48,55,57,49,51,93,44,91,45,55,52,46,52,48,54,55,49,44,52,48,46,49,55,50,52,48,50,93,44,91,45,55,52,46,50,54,49,52,53,53,44,52,48,46,49,54,55,48,51,51,93,44,91,45,55,52,46,50,51,48,54,51,52,44,52,48,46,49,48,57,53,54,49,93,44,91,45,55,51,46,57,54,53,52,49,52,44,52,48,46,48,57,55,54,52,50,93,44,91,45,55,51,46,56,57,56,50,48,56,44,52,48,46,50,55,52,51,53,51,93,44,91,45,55,51,46,56,56,54,54,53,50,44,52,48,46,52,56,57,55,57,52,93,44,91,45,55,52,46,48,52,50,49,49,50,44,52,48,46,53,48,57,50,57,57,93,44,91,45,55,52,46,50,50,56,49,53,51,44,52,48,46,52,55,55,51,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,54,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,50,48,55,51,50,44,51,54,46,52,57,55,56,53,57,93,44,91,45,57,48,46,53,55,54,49,55,57,44,51,54,46,52,57,56,53,52,55,93,44,91,45,57,48,46,55,56,52,52,50,52,44,51,54,46,52,57,56,53,51,52,93,44,91,45,57,48,46,55,53,49,56,49,44,51,54,46,50,56,51,56,51,54,93,44,91,45,57,48,46,56,48,54,54,49,53,44,51,54,46,50,54,54,56,54,53,93,44,91,45,57,48,46,51,49,57,56,50,44,51,54,46,50,53,57,49,52,52,93,44,91,45,57,48,46,49,57,48,50,48,55,44,51,54,46,50,48,49,51,54,49,93,44,91,45,57,48,46,49,50,53,52,56,55,44,51,54,46,50,51,49,50,51,50,93,44,91,45,57,48,46,48,54,51,53,57,52,44,51,54,46,51,56,52,50,51,53,93,44,91,45,57,48,46,50,50,48,55,51,50,44,51,54,46,52,57,55,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,70,97,117,108,107,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,52,49,54,44,34,98,101,100,115,34,58,51,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,52,56,49,52,54,57,44,51,53,46,51,54,56,51,57,50,93,44,91,45,57,50,46,52,57,57,57,56,53,44,51,53,46,49,54,57,53,55,53,93,44,91,45,57,50,46,53,53,52,54,56,53,44,51,53,46,49,49,51,50,55,55,93,44,91,45,57,50,46,53,57,51,53,56,53,44,51,53,46,48,49,49,55,54,49,93,44,91,45,57,50,46,53,52,52,51,52,49,44,51,52,46,57,53,51,51,49,57,93,44,91,45,57,50,46,50,50,57,56,57,51,44,51,52,46,57,50,55,53,53,56,93,44,91,45,57,50,46,49,50,49,51,51,54,44,51,53,46,48,49,50,50,49,93,44,91,45,57,50,46,49,49,57,55,49,57,44,51,53,46,48,54,54,52,57,51,93,44,91,45,57,50,46,49,49,49,52,54,51,44,51,53,46,51,54,50,55,50,53,93,44,91,45,57,50,46,50,53,50,55,53,57,44,51,53,46,51,54,51,55,49,56,93,44,91,45,57,50,46,52,56,49,52,54,57,44,51,53,46,51,54,56,51,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,49,49,50,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,48,53,55,51,44,51,54,46,53,48,57,56,57,93,44,91,45,57,53,46,48,49,49,51,48,57,44,51,54,46,49,54,49,55,54,51,93,44,91,45,57,52,46,55,57,55,52,48,57,44,51,54,46,49,54,49,54,53,50,93,44,91,45,57,52,46,53,54,50,55,50,55,44,51,54,46,49,54,49,56,57,51,93,44,91,45,57,52,46,54,49,55,57,49,57,44,51,54,46,52,57,57,52,49,52,93,44,91,45,57,52,46,54,49,56,48,55,55,44,51,54,46,54,54,55,57,50,49,93,44,91,45,57,52,46,57,57,57,52,48,51,44,51,54,46,54,55,48,54,51,49,93,44,91,45,57,53,46,48,48,53,55,51,44,51,54,46,53,48,57,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,75,101,111,107,117,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,48,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,52,54,48,52,51,44,52,49,46,53,49,48,55,52,57,93,44,91,45,57,50,46,50,57,55,52,57,52,44,52,49,46,53,48,57,55,57,93,44,91,45,57,50,46,52,49,49,57,57,53,44,52,49,46,53,48,57,53,52,56,93,44,91,45,57,50,46,52,49,48,50,51,51,44,52,49,46,49,54,49,57,52,50,93,44,91,45,57,50,46,49,55,57,57,55,52,44,52,49,46,49,54,50,54,54,50,93,44,91,45,57,49,46,57,52,53,53,55,49,44,52,49,46,49,54,51,53,55,56,93,44,91,45,57,49,46,57,52,54,48,52,51,44,52,49,46,53,49,48,55,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,49,51,55,55,53,44,51,57,46,51,57,53,52,49,54,93,44,91,45,57,48,46,54,48,51,53,54,57,44,51,57,46,49,49,55,53,57,50,93,44,91,45,57,48,46,53,54,48,48,55,49,44,51,57,46,49,56,55,52,51,93,44,91,45,57,48,46,51,49,51,50,56,57,44,51,57,46,49,55,52,50,56,57,93,44,91,45,57,48,46,49,52,56,49,50,49,44,51,57,46,50,54,49,57,52,55,93,44,91,45,57,48,46,49,53,51,55,56,50,44,51,57,46,53,50,48,51,49,53,93,44,91,45,57,48,46,51,48,49,56,51,49,44,51,57,46,53,50,48,51,52,52,93,44,91,45,57,48,46,53,56,49,48,53,53,44,51,57,46,53,50,49,55,50,56,93,44,91,45,57,48,46,54,49,51,55,55,53,44,51,57,46,51,57,53,52,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,57,56,50,53,50,44,52,56,46,50,48,50,56,53,56,93,44,91,45,57,49,46,55,56,55,57,50,56,44,52,55,46,53,52,54,56,49,55,93,44,91,45,57,49,46,55,57,54,51,51,44,52,54,46,55,57,52,56,51,56,93,44,91,45,57,49,46,53,52,57,51,56,53,44,52,54,46,56,57,51,50,49,51,93,44,91,45,57,48,46,56,54,55,51,49,56,44,52,55,46,50,49,48,57,54,50,93,44,91,45,57,48,46,55,57,53,49,56,57,44,52,55,46,50,52,52,50,57,57,93,44,91,45,57,49,46,48,50,51,49,50,54,44,52,55,46,52,54,52,57,56,50,93,44,91,45,57,49,46,48,51,49,55,54,49,44,52,56,46,49,56,56,52,56,54,93,44,91,45,57,49,46,50,53,48,49,49,50,44,52,56,46,48,56,52,48,56,55,93,44,91,45,57,49,46,52,50,57,54,52,50,44,52,56,46,48,52,56,54,48,56,93,44,91,45,57,49,46,55,49,49,56,52,52,44,52,56,46,49,49,52,54,48,53,93,44,91,45,57,49,46,55,57,56,50,53,50,44,52,56,46,50,48,50,56,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,53,34,44,34,78,65,77,69,34,58,34,84,114,111,117,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,55,55,52,44,34,98,101,100,115,34,58,50,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,51,57,48,49,53,44,51,51,46,50,50,52,54,57,51,93,44,91,45,56,53,46,50,51,54,53,49,56,44,51,51,46,49,50,57,53,53,57,93,44,91,45,56,53,46,50,51,50,51,55,56,44,51,51,46,49,48,56,48,55,55,93,44,91,45,56,53,46,49,56,52,49,51,49,44,51,50,46,56,55,48,53,50,53,93,44,91,45,56,52,46,56,54,49,55,54,56,44,51,50,46,56,55,50,52,57,53,93,44,91,45,56,52,46,56,54,50,51,53,57,44,51,51,46,49,57,49,49,55,51,93,44,91,45,56,52,46,57,51,57,48,49,53,44,51,51,46,50,50,52,54,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,72,117,109,98,111,108,100,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,55,54,56,44,34,98,101,100,115,34,58,50,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,49,51,54,53,54,49,44,52,49,46,52,54,52,52,53,50,93,44,91,45,49,50,52,46,49,54,48,55,48,52,44,52,49,46,50,56,57,50,57,51,93,44,91,45,49,50,52,46,50,52,55,52,51,44,52,49,46,48,57,50,50,50,52,93,44,91,45,49,50,52,46,49,56,50,54,57,52,44,52,49,46,48,48,49,51,49,51,93,44,91,45,49,50,52,46,50,51,50,54,50,50,44,52,48,46,56,54,57,50,56,54,93,44,91,45,49,50,52,46,52,52,55,54,55,55,44,52,48,46,53,50,57,55,48,57,93,44,91,45,49,50,52,46,52,55,56,54,50,53,44,52,48,46,52,50,50,49,48,50,93,44,91,45,49,50,52,46,51,57,50,55,55,55,44,52,48,46,50,48,57,55,57,57,93,44,91,45,49,50,52,46,49,51,52,56,56,57,44,52,48,46,48,48,50,52,55,93,44,91,45,49,50,51,46,53,52,52,52,53,56,44,52,48,46,48,48,49,57,50,51,93,44,91,45,49,50,51,46,53,52,51,55,52,57,44,52,48,46,55,51,57,48,49,53,93,44,91,45,49,50,51,46,54,49,53,56,50,55,44,52,48,46,57,49,52,48,54,56,93,44,91,45,49,50,51,46,52,52,55,57,53,54,44,52,48,46,57,52,51,55,53,56,93,44,91,45,49,50,51,46,52,48,56,50,57,49,44,52,49,46,49,55,57,57,52,52,93,44,91,45,49,50,51,46,52,55,52,48,56,53,44,52,49,46,51,54,54,49,57,51,93,44,91,45,49,50,51,46,54,54,49,51,54,51,44,52,49,46,51,56,50,48,57,93,44,91,45,49,50,51,46,55,55,48,53,53,49,44,52,49,46,52,54,52,49,57,51,93,44,91,45,49,50,52,46,49,51,54,53,54,49,44,52,49,46,52,54,52,52,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,105,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,57,56,56,44,34,98,101,100,115,34,58,49,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,54,54,55,57,56,44,51,54,46,49,55,55,56,53,55,93,44,91,45,56,55,46,53,51,52,53,51,44,51,53,46,57,57,51,48,55,52,93,44,91,45,56,55,46,50,48,52,50,52,50,44,51,53,46,57,53,57,49,56,54,93,44,91,45,56,55,46,49,56,50,53,55,51,44,51,54,46,48,52,57,55,50,54,93,44,91,45,56,55,46,49,53,54,53,56,57,44,51,54,46,51,48,55,55,48,54,93,44,91,45,56,55,46,50,56,54,53,48,49,44,51,54,46,51,50,49,57,51,51,93,44,91,45,56,55,46,53,49,51,53,51,51,44,51,54,46,51,51,52,55,49,51,93,44,91,45,56,55,46,53,54,54,55,57,56,44,51,54,46,49,55,55,56,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,111,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,55,52,51,49,44,34,98,101,100,115,34,58,55,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,49,48,48,55,44,52,53,46,52,49,52,55,57,56,93,44,91,45,57,51,46,53,49,50,49,57,44,52,53,46,50,52,53,54,56,51,93,44,91,45,57,51,46,51,49,49,53,52,52,44,52,53,46,49,52,51,55,55,56,93,44,91,45,57,51,46,50,50,54,57,50,57,44,52,53,46,48,51,53,54,55,49,93,44,91,45,57,51,46,50,50,55,54,57,54,44,52,53,46,49,50,52,53,51,51,93,44,91,45,57,51,46,48,50,48,53,49,56,44,52,53,46,49,50,51,56,54,54,93,44,91,45,57,51,46,48,49,57,52,52,44,52,53,46,50,57,54,57,50,57,93,44,91,45,57,51,46,48,49,57,53,54,51,44,52,53,46,52,49,49,55,55,93,44,91,45,57,51,46,53,49,48,48,55,44,52,53,46,52,49,52,55,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,111,110,32,72,111,109,109,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,54,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,51,55,52,57,54,44,52,51,46,49,54,56,55,55,93,44,91,45,57,56,46,48,55,55,49,48,56,44,52,51,46,49,54,56,51,51,93,44,91,45,57,56,46,48,57,50,55,56,50,44,52,50,46,57,55,51,57,50,49,93,44,91,45,57,56,46,49,53,51,49,48,55,44,52,50,46,56,51,56,57,56,54,93,44,91,45,57,56,46,48,49,51,48,55,50,44,52,50,46,55,54,50,50,49,57,93,44,91,45,57,55,46,56,55,53,53,51,49,44,52,50,46,56,53,56,54,53,54,93,44,91,45,57,55,46,54,51,53,52,52,44,52,50,46,56,53,49,53,51,50,93,44,91,45,57,55,46,54,51,55,52,57,54,44,52,51,46,49,54,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,54,54,57,44,34,98,101,100,115,34,58,50,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,54,54,48,56,53,44,51,54,46,49,56,48,56,57,52,93,44,91,45,56,50,46,56,57,56,51,49,55,44,51,53,46,57,52,52,57,54,55,93,44,91,45,56,50,46,54,51,55,50,51,44,51,54,46,48,54,53,56,50,93,44,91,45,56,50,46,54,48,50,57,56,44,51,54,46,48,51,57,54,55,55,93,44,91,45,56,50,46,53,57,53,48,54,53,44,51,54,46,48,57,54,50,48,53,93,44,91,45,56,50,46,54,52,55,55,54,57,44,51,54,46,49,52,54,52,48,52,93,44,91,45,56,50,46,54,50,57,54,52,49,44,51,54,46,52,49,49,53,52,93,44,91,45,56,50,46,55,48,50,53,54,54,44,51,54,46,52,49,48,52,49,50,93,44,91,45,56,50,46,56,52,48,52,56,49,44,51,54,46,51,55,48,54,57,56,93,44,91,45,56,51,46,48,56,50,51,49,50,44,51,54,46,50,52,50,50,57,54,93,44,91,45,56,51,46,49,54,54,48,56,53,44,51,54,46,49,56,48,56,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,83,117,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,53,51,53,52,54,44,51,54,46,57,52,52,52,53,93,44,91,45,55,54,46,57,56,54,54,49,44,51,55,46,48,52,57,54,57,55,93,44,91,45,55,55,46,49,53,53,52,49,53,44,51,55,46,49,49,50,48,51,52,93,44,91,45,55,55,46,51,57,56,52,57,56,44,51,54,46,57,57,50,57,56,53,93,44,91,45,55,55,46,54,49,57,48,50,57,44,51,54,46,56,55,55,56,52,52,93,44,91,45,55,55,46,53,49,48,51,54,44,51,54,46,56,52,53,48,56,50,93,44,91,45,55,55,46,52,51,48,49,50,55,44,51,54,46,55,48,55,54,53,56,93,44,91,45,55,54,46,57,53,51,53,52,54,44,51,54,46,57,52,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,83,116,46,32,74,111,115,101,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,50,52,48,44,34,98,101,100,115,34,58,56,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,50,54,48,57,53,44,52,49,46,55,54,48,52,48,54,93,44,91,45,56,54,46,53,50,52,50,49,55,44,52,49,46,55,53,57,54,53,57,93,44,91,45,56,54,46,52,56,54,52,51,51,44,52,49,46,53,55,48,53,52,53,93,44,91,45,56,54,46,53,50,52,55,49,49,44,52,49,46,52,51,50,56,56,54,93,44,91,45,56,54,46,52,54,54,54,48,51,44,52,49,46,52,51,50,57,54,56,93,44,91,45,56,54,46,52,54,55,49,48,56,44,52,49,46,52,55,54,52,53,57,93,44,91,45,56,54,46,48,53,57,52,53,49,44,52,49,46,52,55,57,49,53,52,93,44,91,45,56,54,46,48,54,50,53,55,53,44,52,49,46,55,54,48,53,49,51,93,44,91,45,56,54,46,50,50,54,48,57,53,44,52,49,46,55,54,48,52,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,80,101,109,98,105,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,49,54,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,53,48,48,49,50,44,52,57,46,48,48,48,52,57,50,93,44,91,45,57,55,46,57,50,55,48,54,57,44,52,56,46,53,52,51,49,50,52,93,44,91,45,57,55,46,49,54,49,51,57,51,44,52,56,46,53,52,50,51,52,56,93,44,91,45,57,55,46,49,54,51,51,53,53,44,52,56,46,53,52,51,57,54,55,93,44,91,45,57,55,46,49,48,53,52,52,50,44,52,56,46,54,56,57,54,52,56,93,44,91,45,57,55,46,50,51,52,49,50,56,44,52,56,46,57,52,55,56,57,56,93,44,91,45,57,55,46,50,50,56,55,50,50,44,52,57,46,48,48,48,53,54,50,93,44,91,45,57,55,46,57,53,48,48,49,50,44,52,57,46,48,48,48,52,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,110,110,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,51,55,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,56,50,52,56,54,44,52,50,46,57,57,57,51,53,53,93,44,91,45,49,48,49,46,50,50,56,48,49,51,44,52,50,46,57,57,56,49,51,54,93,44,91,45,49,48,49,46,50,50,56,50,51,52,44,52,51,46,51,56,57,49,56,53,93,44,91,45,49,48,50,46,49,49,48,56,49,57,44,52,51,46,51,56,57,57,48,50,93,44,91,45,49,48,50,46,49,48,56,56,57,50,44,52,51,46,49,50,57,50,53,56,93,44,91,45,49,48,50,46,48,56,50,52,56,54,44,52,50,46,57,57,57,51,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,86,101,114,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,48,48,55,44,34,98,101,100,115,34,58,49,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,51,54,49,48,52,44,51,49,46,51,54,52,53,48,55,93,44,91,45,57,51,46,51,57,48,52,57,53,44,51,49,46,51,54,52,49,52,55,93,44,91,45,57,51,46,52,52,50,53,53,52,44,51,49,46,50,55,54,55,49,54,93,44,91,45,57,51,46,53,51,52,57,49,57,44,51,49,46,50,55,54,53,55,57,93,44,91,45,57,51,46,53,53,50,53,50,52,44,51,49,46,49,56,53,52,48,53,93,44,91,45,57,51,46,53,50,52,55,51,57,44,51,49,46,48,51,57,48,48,55,93,44,91,45,57,51,46,53,53,56,53,57,54,44,51,48,46,56,54,56,56,50,50,93,44,91,45,57,51,46,52,50,49,49,48,50,44,51,48,46,56,56,51,49,51,56,93,44,91,45,57,50,46,57,55,56,52,53,51,44,51,48,46,56,55,56,49,55,53,93,44,91,45,57,50,46,56,50,51,57,51,50,44,51,48,46,56,57,93,44,91,45,57,50,46,56,50,57,54,53,49,44,51,49,46,50,53,50,50,56,49,93,44,91,45,57,50,46,57,56,49,52,54,52,44,51,49,46,51,52,54,54,52,52,93,44,91,45,57,51,46,50,51,54,49,48,52,44,51,49,46,51,54,52,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,80,101,110,111,98,115,99,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,55,52,56,44,34,98,101,100,115,34,58,55,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,56,46,56,49,57,52,48,49,44,52,54,46,51,57,53,55,56,50,93,44,91,45,54,56,46,56,50,55,48,51,57,44,52,53,46,54,56,52,56,50,54,93,44,91,45,54,56,46,57,53,56,57,49,44,52,53,46,54,54,50,49,57,53,93,44,91,45,54,56,46,57,54,52,54,53,51,44,52,53,46,53,49,50,51,54,55,93,44,91,45,54,56,46,56,53,55,50,57,55,44,52,53,46,53,50,55,51,48,49,93,44,91,45,54,56,46,55,55,54,48,54,49,44,52,53,46,50,52,48,51,49,55,93,44,91,45,54,56,46,56,53,54,53,56,55,44,52,53,46,49,52,50,55,56,51,93,44,91,45,54,57,46,51,53,53,54,54,55,44,52,53,46,48,55,51,52,54,57,93,44,91,45,54,57,46,50,54,54,55,56,53,44,52,52,46,55,50,49,57,50,56,93,44,91,45,54,57,46,49,56,51,55,51,50,44,52,52,46,54,52,52,48,50,51,93,44,91,45,54,56,46,56,49,53,55,57,51,44,52,52,46,54,56,51,55,53,52,93,44,91,45,54,56,46,52,52,53,50,49,57,44,52,52,46,55,54,51,48,49,52,93,44,91,45,54,56,46,53,48,49,48,57,53,44,52,52,46,57,56,48,55,49,56,93,44,91,45,54,56,46,51,55,53,56,57,50,44,52,52,46,57,57,55,51,55,51,93,44,91,45,54,56,46,51,57,54,57,48,51,44,52,53,46,48,56,51,50,57,54,93,44,91,45,54,56,46,50,55,48,52,57,55,44,52,53,46,49,48,48,49,50,49,93,44,91,45,54,56,46,51,48,51,55,49,52,44,52,53,46,50,50,49,53,51,49,93,44,91,45,54,56,46,48,53,52,57,56,53,44,52,53,46,50,53,50,53,55,55,93,44,91,45,54,55,46,57,51,57,55,54,44,52,53,46,50,54,55,56,52,53,93,44,91,45,54,56,46,48,52,56,48,49,50,44,52,53,46,54,51,57,56,57,55,93,44,91,45,54,56,46,52,51,51,48,50,56,44,52,53,46,53,55,56,52,56,50,93,44,91,45,54,56,46,52,50,54,49,54,57,44,52,53,46,56,55,48,56,50,57,93,44,91,45,54,56,46,52,51,54,52,52,51,44,52,54,46,51,56,50,49,50,49,93,44,91,45,54,56,46,56,49,57,52,48,49,44,52,54,46,51,57,53,55,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,84,97,108,98,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,49,49,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,57,52,57,51,51,53,44,51,56,46,57,49,56,51,51,51,93,44,91,45,55,54,46,52,51,54,52,57,50,44,51,56,46,56,48,55,51,57,55,93,44,91,45,55,54,46,52,54,51,54,51,54,44,51,56,46,55,49,49,48,57,57,93,44,91,45,55,54,46,52,51,56,56,49,52,44,51,56,46,53,55,53,51,51,54,93,44,91,45,55,54,46,50,52,48,49,53,44,51,56,46,54,54,51,50,48,52,93,44,91,45,55,54,46,48,50,51,52,52,53,44,51,56,46,53,55,51,56,55,53,93,44,91,45,55,53,46,57,52,53,50,52,56,44,51,56,46,54,55,52,49,48,57,93,44,91,45,55,54,46,48,49,53,48,52,53,44,51,56,46,55,50,56,54,56,55,93,44,91,45,55,53,46,56,57,54,55,55,52,44,51,56,46,56,49,53,49,48,57,93,44,91,45,55,53,46,57,52,57,51,51,53,44,51,56,46,57,49,56,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,55,34,44,34,78,65,77,69,34,58,34,83,116,101,112,104,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,55,54,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,51,56,50,51,52,44,51,52,46,54,56,55,49,56,55,93,44,91,45,56,51,46,52,53,57,55,55,44,51,52,46,52,56,49,49,52,50,93,44,91,45,56,51,46,51,57,56,51,57,54,44,51,52,46,52,54,48,56,56,51,93,44,91,45,56,51,46,49,55,55,56,51,56,44,51,52,46,52,55,55,48,49,55,93,44,91,45,56,51,46,49,48,51,54,55,51,44,51,52,46,53,51,54,54,49,55,93,44,91,45,56,51,46,51,51,56,50,51,52,44,51,52,46,54,56,55,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,82,105,118,101,114,115,105,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,51,50,56,54,44,34,98,101,100,115,34,58,51,54,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,54,55,51,49,51,52,44,51,51,46,56,55,49,48,48,53,93,44,91,45,49,49,55,46,53,51,51,57,57,57,44,51,51,46,55,49,48,51,53,53,93,44,91,45,49,49,55,46,52,49,50,57,56,55,44,51,51,46,54,53,57,48,52,53,93,44,91,45,49,49,55,46,53,48,57,55,50,50,44,51,51,46,53,48,53,48,49,57,93,44,91,45,49,49,55,46,51,55,48,57,50,53,44,51,51,46,52,57,48,53,52,57,93,44,91,45,49,49,55,46,50,52,49,50,55,49,44,51,51,46,52,51,49,57,57,51,93,44,91,45,49,49,55,46,48,51,48,56,54,49,44,51,51,46,52,50,54,57,51,49,93,44,91,45,49,49,54,46,48,56,53,49,54,53,44,51,51,46,52,50,53,57,51,50,93,44,91,45,49,49,53,46,54,48,57,54,53,53,44,51,51,46,52,50,54,56,55,51,93,44,91,45,49,49,52,46,54,50,55,49,50,53,44,51,51,46,52,51,51,53,53,52,93,44,91,45,49,49,52,46,53,50,52,50,49,53,44,51,51,46,53,53,51,48,54,56,93,44,91,45,49,49,52,46,52,57,54,52,56,57,44,51,51,46,54,57,54,57,48,49,93,44,91,45,49,49,52,46,53,51,52,49,52,54,44,51,51,46,57,50,53,49,56,55,93,44,91,45,49,49,52,46,52,51,53,52,50,57,44,51,52,46,48,55,57,55,50,55,93,44,91,45,49,49,53,46,51,49,54,48,54,53,44,51,52,46,48,55,55,56,52,51,93,44,91,45,49,49,53,46,51,49,54,50,49,50,44,51,52,46,48,51,52,49,49,93,44,91,45,49,49,54,46,51,48,48,54,51,49,44,51,52,46,48,51,50,53,52,52,93,44,91,45,49,49,54,46,57,50,57,53,53,56,44,51,52,46,48,51,52,49,49,51,93,44,91,45,49,49,55,46,50,50,53,51,55,50,44,51,52,46,48,48,52,51,49,52,93,44,91,45,49,49,55,46,53,53,56,51,49,50,44,51,52,46,48,51,51,52,53,49,93,44,91,45,49,49,55,46,54,55,51,49,51,52,44,51,51,46,56,55,49,48,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,120,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,49,57,44,34,98,101,100,115,34,58,50,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,50,57,49,50,56,44,51,54,46,52,57,56,53,57,57,93,44,91,45,57,50,46,53,50,48,53,56,49,44,51,54,46,50,54,56,56,50,52,93,44,91,45,57,50,46,52,48,57,49,55,53,44,51,54,46,49,51,52,54,56,52,93,44,91,45,57,50,46,52,49,49,53,48,50,44,51,54,46,48,54,50,55,53,54,93,44,91,45,57,50,46,52,49,52,51,57,54,44,51,53,46,57,55,53,55,57,56,93,44,91,45,57,50,46,49,57,53,52,51,44,51,54,46,49,51,50,55,57,56,93,44,91,45,57,50,46,49,53,54,57,57,44,51,54,46,50,54,49,50,52,56,93,44,91,45,57,50,46,49,53,48,50,57,53,44,51,54,46,52,57,56,54,49,93,44,91,45,57,50,46,53,50,57,49,50,56,44,51,54,46,52,57,56,53,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,116,116,97,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,56,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,53,51,56,48,56,44,51,51,46,50,56,53,57,52,50,93,44,91,45,56,57,46,54,52,53,50,56,44,51,51,46,50,56,53,53,49,53,93,44,91,45,56,57,46,55,52,57,52,52,49,44,51,51,46,50,49,52,52,55,56,93,44,91,45,56,57,46,57,48,50,53,48,49,44,51,50,46,57,50,55,57,52,93,44,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,44,91,45,56,57,46,55,51,48,48,49,54,44,51,50,46,56,56,53,48,55,50,93,44,91,45,56,57,46,55,51,48,49,53,52,44,51,50,46,57,50,57,57,50,52,93,44,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,44,91,45,56,57,46,51,49,55,56,53,53,44,51,51,46,49,48,56,56,55,49,93,44,91,45,56,57,46,51,49,54,52,48,56,44,51,51,46,50,56,53,53,53,54,93,44,91,45,56,57,46,52,53,51,56,48,56,44,51,51,46,50,56,53,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,83,116,111,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,57,50,50,44,34,98,101,100,115,34,58,50,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,57,56,51,57,44,52,50,46,50,48,57,51,51,57,93,44,91,45,57,51,46,54,57,56,48,51,50,44,52,49,46,56,54,51,51,55,93,44,91,45,57,51,46,51,52,55,57,51,51,44,52,49,46,56,54,51,49,48,52,93,44,91,45,57,51,46,50,51,49,56,53,56,44,52,49,46,56,54,50,55,49,49,93,44,91,45,57,51,46,50,51,49,55,50,50,44,52,50,46,50,48,56,56,56,54,93,44,91,45,57,51,46,52,54,51,48,52,51,44,52,50,46,50,48,57,51,48,50,93,44,91,45,57,51,46,54,57,56,51,57,44,52,50,46,50,48,57,51,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,111,117,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,55,55,56,55,54,44,51,56,46,48,51,55,55,48,54,93,44,91,45,57,53,46,48,56,56,48,56,50,44,51,55,46,55,51,50,52,55,54,93,44,91,45,57,53,46,48,56,56,48,49,50,44,51,55,46,54,55,52,53,49,57,93,44,91,45,57,52,46,54,49,55,55,55,57,44,51,55,46,54,55,51,49,48,53,93,44,91,45,57,52,46,54,49,52,48,56,57,44,51,56,46,48,51,55,48,53,55,93,44,91,45,57,53,46,48,55,55,56,55,54,44,51,56,46,48,51,55,55,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,51,57,55,52,56,44,51,55,46,54,57,48,52,57,53,93,44,91,45,55,56,46,50,52,57,48,50,49,44,51,55,46,54,51,53,53,52,54,93,44,91,45,55,56,46,52,54,53,48,56,57,44,51,55,46,51,51,57,54,55,55,93,44,91,45,55,56,46,51,50,49,56,52,44,51,55,46,51,48,57,50,57,50,93,44,91,45,55,56,46,50,51,53,48,51,57,44,51,55,46,51,54,56,49,48,50,93,44,91,45,55,56,46,49,51,50,48,52,56,44,51,55,46,52,53,52,54,56,54,93,44,91,45,55,56,46,48,55,50,49,55,52,44,51,55,46,54,53,55,51,56,53,93,44,91,45,55,56,46,49,53,57,51,50,54,44,51,55,46,55,52,56,53,50,56,93,44,91,45,55,56,46,50,51,57,55,52,56,44,51,55,46,54,57,48,52,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,83,117,109,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,57,57,53,44,34,98,101,100,115,34,58,50,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,49,54,49,56,54,44,51,52,46,48,57,57,54,48,53,93,44,91,45,56,48,46,54,52,48,57,56,54,44,51,51,46,57,57,57,52,51,51,93,44,91,45,56,48,46,53,57,55,55,49,53,44,51,51,46,55,55,55,53,49,50,93,44,91,45,56,48,46,54,50,48,49,48,55,44,51,51,46,55,52,51,50,51,55,93,44,91,45,56,48,46,53,51,52,48,56,53,44,51,51,46,54,52,51,57,49,49,93,44,91,45,56,48,46,51,57,55,49,51,49,44,51,51,46,55,54,55,56,50,49,93,44,91,45,56,48,46,50,53,53,57,48,52,44,51,51,46,56,48,51,55,48,56,93,44,91,45,55,57,46,57,55,52,54,48,49,44,51,51,46,57,52,54,53,50,55,93,44,91,45,56,48,46,48,48,48,53,57,52,44,51,52,46,48,52,55,56,55,55,93,44,91,45,56,48,46,49,56,48,51,55,49,44,51,51,46,57,53,50,48,48,50,93,44,91,45,56,48,46,51,50,49,55,50,49,44,51,52,46,48,56,48,51,53,54,93,44,91,45,56,48,46,52,56,49,51,49,56,44,51,52,46,49,49,50,54,50,50,93,44,91,45,56,48,46,52,55,57,56,53,55,44,51,52,46,49,54,56,54,57,54,93,44,91,45,56,48,46,54,49,54,49,56,54,44,51,52,46,48,57,57,54,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,54,52,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,52,34,44,34,78,65,77,69,34,58,34,76,97,107,101,32,97,110,100,32,80,101,110,105,110,115,117,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,56,46,56,57,51,53,56,53,44,53,54,46,57,52,53,48,53,57,93,44,91,45,49,53,56,46,56,57,51,54,48,55,44,53,54,46,55,53,52,52,48,52,93,44,91,45,49,53,57,46,48,53,49,48,56,57,44,53,54,46,54,54,55,54,56,55,93,44,91,45,49,53,57,46,50,55,53,57,51,50,44,53,54,46,54,54,55,54,56,50,93,44,91,45,49,53,57,46,50,55,53,57,50,56,44,53,54,46,53,56,48,57,54,55,93,44,91,45,49,53,57,46,53,56,56,48,52,49,44,53,54,46,53,56,48,57,54,49,93,44,91,45,49,53,57,46,53,56,56,48,51,54,44,53,54,46,52,57,52,50,52,53,93,44,91,45,49,53,57,46,57,48,48,49,52,57,44,53,54,46,52,57,52,50,51,57,93,44,91,45,49,53,57,46,57,48,48,49,51,51,44,53,54,46,51,50,48,56,48,51,93,44,91,45,49,53,57,46,56,48,54,51,56,57,44,53,54,46,51,50,48,56,48,53,93,44,91,45,49,53,57,46,56,48,54,52,48,54,44,53,53,46,57,55,51,57,49,57,93,44,91,45,49,53,57,46,56,54,55,57,55,49,44,53,53,46,56,56,55,49,57,51,93,44,91,45,49,53,57,46,53,54,49,51,54,44,53,53,46,56,56,55,49,57,55,93,44,91,45,49,53,57,46,53,54,49,52,53,49,44,53,53,46,54,51,56,52,52,51,93,44,91,45,49,53,57,46,52,52,54,56,54,56,44,53,53,46,54,51,56,53,51,49,93,44,91,45,49,53,56,44,53,53,46,54,51,57,52,52,52,93,44,91,45,49,53,55,46,48,49,49,51,56,57,44,53,54,46,50,57,54,51,50,56,93,44,91,45,49,53,54,46,51,50,56,54,49,49,44,53,54,46,55,53,93,44,91,45,49,53,54,46,51,50,56,48,50,51,44,53,55,46,48,53,51,50,56,56,93,44,91,45,49,53,54,46,51,53,53,51,57,50,44,53,55,46,49,53,57,57,51,49,93,44,91,45,49,53,54,46,55,53,48,56,49,53,44,53,55,46,49,54,50,56,55,56,93,44,91,45,49,53,54,46,55,53,48,55,56,44,53,55,46,50,51,53,55,57,53,93,44,91,45,49,53,54,46,51,55,48,50,51,53,44,53,55,46,53,50,50,51,54,56,93,44,91,45,49,53,54,46,50,48,56,48,50,49,44,53,55,46,53,50,50,57,54,51,93,44,91,45,49,53,53,46,55,54,56,48,50,50,44,53,55,46,54,54,56,50,54,49,93,44,91,45,49,53,53,46,54,57,51,55,55,51,44,53,55,46,55,57,55,57,56,55,93,44,91,45,49,53,53,46,53,51,56,56,51,44,53,55,46,55,57,57,56,48,54,93,44,91,45,49,53,53,46,51,51,48,50,52,53,44,53,55,46,56,55,54,51,52,51,93,44,91,45,49,53,53,46,51,51,49,57,52,53,44,53,56,46,49,57,51,50,56,51,93,44,91,45,49,53,53,46,48,53,55,55,52,49,44,53,56,46,50,51,54,50,48,57,93,44,91,45,49,53,53,46,48,48,56,49,51,50,44,53,56,46,50,57,48,57,48,53,93,44,91,45,49,53,52,46,55,51,48,51,54,57,44,53,56,46,51,48,52,54,54,57,93,44,91,45,49,53,52,46,52,54,53,55,52,49,44,53,56,46,51,54,49,51,53,54,93,44,91,45,49,53,52,46,51,48,51,52,52,55,44,53,56,46,52,54,48,51,56,53,93,44,91,45,49,53,52,46,51,48,53,54,57,49,44,53,56,46,54,53,50,55,53,49,93,44,91,45,49,53,52,46,54,52,50,53,52,53,44,53,56,46,54,53,50,55,52,55,93,44,91,45,49,53,52,46,54,57,53,48,51,54,44,53,56,46,55,51,57,52,51,49,93,44,91,45,49,53,52,46,54,57,53,49,48,53,44,53,57,46,48,56,54,49,53,57,93,44,91,45,49,53,52,46,55,52,56,56,54,49,44,53,57,46,50,53,57,53,49,56,93,44,91,45,49,53,52,46,52,49,50,48,49,51,44,53,57,46,50,53,57,53,50,52,93,44,91,45,49,53,52,46,52,49,50,48,50,56,44,53,57,46,52,51,50,56,56,50,93,44,91,45,49,53,52,46,49,50,51,51,50,49,44,53,57,46,52,51,50,56,56,55,93,44,91,45,49,53,51,46,57,53,51,49,56,49,44,53,57,46,53,49,57,53,54,57,93,44,91,45,49,53,51,46,57,53,51,49,57,56,44,53,57,46,54,57,50,57,49,56,93,44,91,45,49,53,51,46,55,56,51,48,54,56,44,53,57,46,54,57,50,57,50,54,93,44,91,45,49,53,51,46,54,53,54,57,55,55,44,53,57,46,55,55,57,54,48,55,93,44,91,45,49,53,51,46,54,53,54,57,56,44,54,48,46,49,50,54,50,55,55,93,44,91,45,49,53,51,46,53,50,56,51,57,50,44,54,48,46,49,50,54,50,56,49,93,44,91,45,49,53,51,46,53,50,56,52,52,49,44,54,48,46,52,55,50,57,51,57,93,44,91,45,49,53,51,46,51,57,55,50,55,54,44,54,48,46,52,55,50,57,52,56,93,44,91,45,49,53,51,46,51,57,55,50,56,52,44,54,48,46,56,49,57,53,56,49,93,44,91,45,49,53,51,46,52,52,48,56,56,52,44,54,48,46,57,48,54,50,51,54,93,44,91,45,49,53,52,46,54,49,52,50,49,53,44,54,48,46,57,48,54,50,48,52,93,44,91,45,49,53,54,46,48,48,48,48,56,54,44,54,48,46,57,48,54,49,57,93,44,91,45,49,53,54,46,48,48,48,49,52,53,44,53,57,46,54,57,50,56,55,57,93,44,91,45,49,53,54,46,49,54,53,48,54,54,44,53,57,46,54,48,54,50,48,50,93,44,91,45,49,53,54,46,53,48,53,51,52,57,44,53,57,46,54,48,54,49,57,57,93,44,91,45,49,53,54,46,54,55,53,52,56,57,44,53,57,46,53,49,57,53,50,49,93,44,91,45,49,53,54,46,55,54,57,57,54,53,44,53,57,46,51,52,54,49,54,54,93,44,91,45,49,53,55,46,49,48,54,56,49,52,44,53,57,46,51,52,54,49,54,50,93,44,91,45,49,53,55,46,50,55,53,50,51,51,44,53,57,46,50,53,57,52,56,50,93,44,91,45,49,53,55,46,49,57,54,51,48,54,44,53,57,46,48,56,54,49,50,50,93,44,91,45,49,53,55,46,49,57,54,50,57,50,44,53,56,46,56,52,54,50,52,57,93,44,91,45,49,53,55,46,48,52,53,52,57,54,44,53,56,46,56,56,53,56,51,51,93,44,91,45,49,53,54,46,51,49,51,56,56,57,44,53,56,46,56,56,53,56,51,51,93,44,91,45,49,53,54,46,51,49,51,56,56,57,44,53,56,46,54,49,54,54,54,54,93,44,91,45,49,53,56,44,53,56,46,54,49,54,54,54,55,93,44,91,45,49,53,56,46,48,54,57,56,50,50,44,53,56,46,52,57,48,51,49,55,93,44,91,45,49,53,56,46,51,54,49,52,44,53,55,46,57,54,50,54,56,54,93,44,91,45,49,53,56,46,56,57,51,52,56,50,44,53,54,46,57,57,57,56,52,49,93,44,91,45,49,53,56,46,56,57,51,53,56,53,44,53,54,46,57,52,53,48,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,48,50,57,51,55,44,51,55,46,54,54,48,53,48,56,93,44,91,45,56,49,46,56,53,53,57,51,57,44,51,55,46,53,52,56,57,49,93,44,91,45,56,49,46,55,50,57,52,51,51,44,51,55,46,52,57,52,53,56,53,93,44,91,45,56,49,46,54,53,52,52,51,49,44,51,55,46,53,50,51,51,49,50,93,44,91,45,56,49,46,51,49,49,50,48,49,44,51,55,46,52,50,52,53,48,57,93,44,91,45,56,49,46,50,50,50,49,50,49,44,51,55,46,53,49,48,52,49,54,93,44,91,45,56,49,46,51,48,52,49,51,44,51,55,46,53,52,54,53,54,52,93,44,91,45,56,49,46,52,50,55,55,56,49,44,51,55,46,55,52,57,51,53,50,93,44,91,45,56,49,46,53,49,52,50,50,56,44,51,55,46,55,57,49,50,49,49,93,44,91,45,56,49,46,54,48,55,53,51,50,44,51,55,46,55,56,56,55,48,57,93,44,91,45,56,49,46,55,54,52,55,51,55,44,51,55,46,55,53,50,49,48,56,93,44,91,45,56,49,46,56,48,50,57,51,55,44,51,55,46,54,54,48,53,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,75,101,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,51,48,53,51,44,34,98,101,100,115,34,58,49,53,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,49,57,52,49,52,54,44,51,53,46,55,56,57,50,48,52,93,44,91,45,49,50,48,46,49,57,51,57,49,56,44,51,53,46,54,49,52,51,53,57,93,44,91,45,49,50,48,46,48,56,54,54,55,52,44,51,53,46,53,50,54,53,53,52,93,44,91,45,49,49,57,46,56,56,48,48,52,53,44,51,53,46,52,51,57,49,51,51,93,44,91,45,49,49,57,46,56,56,48,49,55,50,44,51,53,46,51,53,49,50,49,49,93,44,91,45,49,49,57,46,56,48,57,52,52,57,44,51,53,46,50,54,51,53,56,52,93,44,91,45,49,49,57,46,54,54,54,54,54,51,44,51,53,46,50,54,50,53,50,55,93,44,91,45,49,49,57,46,54,54,55,48,53,54,44,51,53,46,49,55,52,56,48,57,93,44,91,45,49,49,57,46,53,53,51,54,52,49,44,51,53,46,49,55,57,57,55,53,93,44,91,45,49,49,57,46,52,55,50,55,49,57,44,51,53,46,48,55,54,56,56,53,93,44,91,45,49,49,57,46,52,55,50,55,53,52,44,51,52,46,57,48,49,49,55,52,93,44,91,45,49,49,57,46,52,52,50,51,53,50,44,51,52,46,57,48,49,50,55,52,93,44,91,45,49,49,57,46,50,55,54,57,52,54,44,51,52,46,56,55,57,54,55,53,93,44,91,45,49,49,57,46,50,52,51,54,52,53,44,51,52,46,56,49,52,49,55,56,93,44,91,45,49,49,56,46,56,56,49,51,54,52,44,51,52,46,55,57,48,54,50,57,93,44,91,45,49,49,56,46,56,53,52,48,49,44,51,52,46,56,49,55,51,51,57,93,44,91,45,49,49,55,46,54,54,55,50,57,50,44,51,52,46,56,50,50,53,50,54,93,44,91,45,49,49,55,46,54,51,50,48,49,49,44,51,52,46,56,50,50,50,55,93,44,91,45,49,49,55,46,54,51,50,57,57,54,44,51,53,46,55,57,55,50,53,49,93,44,91,45,49,49,56,46,48,48,56,48,52,51,44,51,53,46,55,56,57,49,54,49,93,44,91,45,49,49,56,46,54,50,57,57,55,53,44,51,53,46,55,56,57,53,56,93,44,91,45,49,49,57,46,53,51,56,49,49,54,44,51,53,46,55,56,57,53,54,55,93,44,91,45,49,50,48,46,49,57,52,49,52,54,44,51,53,46,55,56,57,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,67,111,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,53,55,49,44,34,98,101,100,115,34,58,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,52,52,54,49,49,44,51,51,46,57,52,57,50,49,55,93,44,91,45,57,55,46,48,57,53,54,52,52,44,51,51,46,55,50,57,50,50,50,93,44,91,45,57,55,46,49,53,52,51,54,55,44,51,51,46,55,50,52,48,57,52,93,44,91,45,57,55,46,50,53,53,54,51,57,44,51,51,46,56,54,51,55,48,50,93,44,91,45,57,55,46,51,55,52,54,57,44,51,51,46,56,49,56,53,53,50,93,44,91,45,57,55,46,52,56,52,49,54,51,44,51,51,46,57,49,53,53,49,93,44,91,45,57,55,46,52,56,55,48,54,53,44,51,51,46,52,51,51,54,56,49,93,44,91,45,57,55,46,51,56,51,48,57,53,44,51,51,46,52,51,48,52,53,93,44,91,45,57,54,46,57,52,51,56,54,44,51,51,46,52,49,54,52,49,93,44,91,45,57,54,46,57,52,52,54,49,49,44,51,51,46,57,52,57,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,52,53,52,44,34,98,101,100,115,34,58,51,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,50,50,54,55,51,44,51,51,46,52,52,93,44,91,45,56,48,46,57,52,56,55,53,54,44,51,51,46,51,48,56,48,52,55,93,44,91,45,56,48,46,55,57,55,57,49,50,44,51,51,46,49,55,54,57,52,52,93,44,91,45,56,48,46,55,57,48,50,57,54,44,51,51,46,49,56,48,56,52,93,44,91,45,56,48,46,53,48,50,55,57,44,51,51,46,51,51,52,52,57,54,93,44,91,45,56,48,46,51,54,49,56,53,49,44,51,51,46,50,53,55,52,52,51,93,44,91,45,56,48,46,50,53,53,54,52,50,44,51,51,46,51,48,48,48,48,50,93,44,91,45,56,48,46,50,50,50,50,54,55,44,51,51,46,52,52,51,55,49,54,93,44,91,45,56,48,46,51,53,52,53,51,57,44,51,51,46,52,51,48,52,48,56,93,44,91,45,56,48,46,52,57,54,50,55,51,44,51,51,46,53,53,56,52,56,49,93,44,91,45,56,48,46,54,53,57,48,50,44,51,51,46,52,55,48,57,56,50,93,44,91,45,56,48,46,56,48,55,54,51,49,44,51,51,46,54,48,52,48,56,49,93,44,91,45,56,48,46,57,54,53,52,56,57,44,51,51,46,54,50,53,50,56,50,93,44,91,45,56,49,46,48,52,50,56,53,52,44,51,51,46,55,48,55,49,51,49,93,44,91,45,56,49,46,49,56,55,50,55,49,44,51,51,46,54,53,50,57,51,55,93,44,91,45,56,49,46,51,55,50,57,51,49,44,51,51,46,52,57,48,52,49,55,93,44,91,45,56,49,46,50,50,50,54,55,51,44,51,51,46,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,50,53,50,50,50,44,52,53,46,50,57,50,48,54,49,93,44,91,45,57,48,46,57,50,51,51,54,50,44,52,53,46,48,51,49,49,52,51,93,44,91,45,57,48,46,51,49,53,48,51,56,44,52,53,46,48,51,51,56,50,57,93,44,91,45,57,48,46,49,57,55,55,54,53,44,52,53,46,49,50,48,54,48,52,93,44,91,45,57,48,46,48,52,51,54,56,53,44,52,53,46,49,50,48,50,49,52,93,44,91,45,57,48,46,48,52,50,50,55,51,44,52,53,46,51,56,49,56,54,54,93,44,91,45,57,48,46,54,55,56,55,55,51,44,52,53,46,51,55,55,57,48,55,93,44,91,45,57,48,46,57,50,53,51,52,51,44,52,53,46,51,55,57,51,53,93,44,91,45,57,48,46,57,50,53,50,50,50,44,52,53,46,50,57,50,48,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,111,119,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,52,57,53,50,52,44,52,51,46,56,52,56,52,52,51,93,44,91,45,57,51,46,48,52,57,49,57,50,44,52,51,46,52,57,57,55,48,53,93,44,91,45,57,51,46,48,50,52,51,52,53,44,52,51,46,52,57,57,55,51,51,93,44,91,45,57,50,46,53,53,51,49,50,56,44,52,51,46,53,48,48,50,49,56,93,44,91,45,57,50,46,52,52,56,57,52,56,44,52,51,46,53,48,48,52,53,57,93,44,91,45,57,50,46,52,52,56,57,54,53,44,52,51,46,56,51,52,49,48,53,93,44,91,45,57,50,46,54,56,57,51,57,49,44,52,51,46,56,52,56,53,55,93,44,91,45,57,51,46,48,52,53,57,54,54,44,52,51,46,56,52,56,52,54,55,93,44,91,45,57,51,46,48,52,57,53,50,52,44,52,51,46,56,52,56,52,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,117,114,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,54,51,55,55,56,44,52,52,46,49,57,54,52,50,53,93,44,91,45,57,54,46,48,54,52,54,50,44,52,51,46,56,52,57,48,51,57,93,44,91,45,57,54,46,48,53,50,51,50,44,52,51,46,56,52,57,48,55,93,44,91,45,57,53,46,52,54,50,52,50,55,44,52,51,46,56,52,55,57,49,49,93,44,91,45,57,53,46,52,54,50,53,52,55,44,52,52,46,49,57,53,57,52,50,93,44,91,45,57,53,46,53,57,51,53,55,44,52,52,46,49,57,53,53,51,93,44,91,45,57,54,46,48,54,51,55,55,56,44,52,52,46,49,57,54,52,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,52,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,80,114,111,118,105,100,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,82,104,111,100,101,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,82,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,52,53,51,51,44,34,98,101,100,115,34,58,50,56,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,55,57,57,49,56,56,44,52,50,46,48,48,56,48,53,51,93,44,91,45,55,49,46,55,56,57,55,48,52,44,52,49,46,55,50,53,49,57,56,93,44,91,45,55,49,46,51,54,53,50,48,55,44,52,49,46,55,51,53,54,52,57,93,44,91,45,55,49,46,51,49,55,56,55,51,44,52,49,46,55,55,54,49,57,57,93,44,91,45,55,49,46,51,56,49,50,57,57,44,52,49,46,57,56,53,48,56,52,93,44,91,45,55,49,46,52,57,56,50,53,57,44,52,50,46,48,49,55,50,55,50,93,44,91,45,55,49,46,55,57,57,49,56,56,44,52,50,46,48,48,56,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,80,104,101,108,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,55,56,57,44,34,98,101,100,115,34,58,50,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,51,48,53,53,52,44,51,56,46,49,53,51,53,49,57,93,44,91,45,57,49,46,54,51,50,52,51,49,44,51,56,46,48,53,48,57,53,49,93,44,91,45,57,49,46,56,57,53,51,52,55,44,51,56,46,48,53,49,49,57,57,93,44,91,45,57,50,46,48,50,49,49,54,53,44,51,56,46,48,49,48,54,51,57,93,44,91,45,57,50,46,48,50,57,50,53,56,44,51,55,46,54,48,50,53,52,50,93,44,91,45,57,49,46,56,48,57,49,48,53,44,51,55,46,53,57,56,56,54,51,93,44,91,45,57,49,46,56,48,54,50,49,57,44,51,55,46,55,57,49,50,56,54,93,44,91,45,57,49,46,53,50,56,55,57,55,44,51,55,46,55,56,56,57,56,57,93,44,91,45,57,49,46,53,51,52,51,56,52,44,51,56,46,49,53,50,53,57,51,93,44,91,45,57,49,46,54,51,48,53,53,52,44,51,56,46,49,53,51,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,80,114,101,110,116,105,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,54,48,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,49,56,53,48,56,44,51,52,46,55,53,54,55,56,49,93,44,91,45,56,56,46,55,51,53,52,52,44,51,52,46,53,57,54,52,56,51,93,44,91,45,56,56,46,55,51,54,52,54,53,44,51,52,46,53,48,56,57,49,93,44,91,45,56,56,46,53,52,50,48,55,57,44,51,52,46,52,54,53,50,55,54,93,44,91,45,56,56,46,51,50,57,49,57,51,44,51,52,46,52,54,51,53,55,49,93,44,91,45,56,56,46,51,51,48,54,57,57,44,51,52,46,55,52,48,55,50,49,93,44,91,45,56,56,46,51,54,53,52,55,50,44,51,52,46,55,53,53,54,48,52,93,44,91,45,56,56,46,55,49,56,53,48,56,44,51,52,46,55,53,54,55,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,53,34,44,34,78,65,77,69,34,58,34,87,104,105,116,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,48,56,57,44,34,98,101,100,115,34,58,51,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,57,55,52,49,54,44,51,54,46,57,52,53,57,51,49,93,44,91,45,56,52,46,51,53,48,48,48,54,44,51,54,46,55,56,48,54,56,49,93,44,91,45,56,52,46,50,50,55,50,57,50,44,51,54,46,53,57,50,48,52,53,93,44,91,45,56,51,46,57,56,55,54,49,53,44,51,54,46,53,56,57,52,55,49,93,44,91,45,56,51,46,57,51,48,55,54,50,44,51,54,46,53,56,55,54,57,49,93,44,91,45,56,51,46,56,55,55,53,48,51,44,51,54,46,54,56,55,50,53,57,93,44,91,45,56,51,46,57,53,56,53,51,52,44,51,54,46,55,50,55,50,52,53,93,44,91,45,56,52,46,48,54,53,55,53,53,44,51,54,46,56,53,51,57,54,49,93,44,91,45,56,52,46,48,57,49,56,53,51,44,51,54,46,57,53,53,57,57,50,93,44,91,45,56,52,46,50,57,55,52,49,54,44,51,54,46,57,52,53,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,83,116,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,57,52,49,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,50,52,55,49,49,44,52,49,46,52,51,50,56,56,54,93,44,91,45,56,54,46,55,48,48,54,51,44,52,49,46,52,48,49,57,56,50,93,44,91,45,56,54,46,55,56,51,52,55,51,44,52,49,46,50,56,53,52,54,53,93,44,91,45,56,54,46,57,51,48,48,55,57,44,52,49,46,50,51,54,55,57,56,93,44,91,45,56,54,46,57,51,48,49,55,44,52,49,46,49,55,50,51,49,56,93,44,91,45,56,54,46,52,54,55,48,52,54,44,52,49,46,49,55,49,52,52,50,93,44,91,45,56,54,46,52,54,54,54,48,51,44,52,49,46,52,51,50,57,54,56,93,44,91,45,56,54,46,53,50,52,55,49,49,44,52,49,46,52,51,50,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,57,49,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,48,53,55,44,34,98,101,100,115,34,58,57,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,50,56,53,49,50,44,51,48,46,57,48,54,49,56,56,93,44,91,45,57,55,46,57,54,50,56,54,44,51,48,46,55,56,53,54,52,49,93,44,91,45,57,56,46,48,52,57,56,56,54,44,51,48,46,54,50,52,49,53,53,93,44,91,45,57,55,46,57,53,54,55,51,52,44,51,48,46,54,50,56,50,52,57,93,44,91,45,57,55,46,56,49,49,56,54,51,44,51,48,46,52,52,55,48,49,56,93,44,91,45,57,55,46,53,57,54,50,51,54,44,51,48,46,53,48,49,53,49,51,93,44,91,45,57,55,46,51,54,57,53,51,57,44,51,48,46,52,49,57,53,54,51,93,44,91,45,57,55,46,51,51,52,52,54,51,44,51,48,46,52,48,50,56,52,51,93,44,91,45,57,55,46,49,53,53,50,49,57,44,51,48,46,52,53,55,51,52,52,93,44,91,45,57,55,46,50,55,49,52,49,56,44,51,48,46,55,51,53,54,57,50,93,44,91,45,57,55,46,51,49,53,53,48,55,44,51,48,46,55,53,50,51,55,49,93,44,91,45,57,55,46,54,50,53,50,56,56,44,51,48,46,56,55,48,52,51,93,44,91,45,57,55,46,56,50,56,53,49,50,44,51,48,46,57,48,54,49,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,80,97,116,105,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,51,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,56,50,50,54,51,44,49,56,46,48,51,50,57,53,56,93,44,91,45,54,53,46,57,56,55,53,53,49,44,49,55,46,57,48,56,57,50,51,93,44,91,45,54,53,46,56,55,51,50,57,57,44,49,55,46,57,51,55,57,53,53,93,44,91,45,54,53,46,57,56,56,53,50,51,44,49,56,46,48,53,56,57,52,49,93,44,91,45,54,54,46,48,49,48,50,52,53,44,49,56,46,48,55,53,53,54,53,93,44,91,45,54,54,46,48,53,49,55,56,56,44,49,56,46,49,48,57,56,55,56,93,44,91,45,54,54,46,48,53,51,49,52,54,44,49,56,46,49,48,55,50,57,51,93,44,91,45,54,54,46,48,56,50,50,54,51,44,49,56,46,48,51,50,57,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,77,105,116,99,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,51,49,50,56,44,52,51,46,53,48,48,50,49,56,93,44,91,45,57,51,46,48,50,52,51,52,53,44,52,51,46,52,57,57,55,51,51,93,44,91,45,57,51,46,48,50,52,49,52,51,44,52,51,46,50,53,53,53,51,56,93,44,91,45,57,51,46,48,50,52,48,57,50,44,52,51,46,50,49,50,56,49,50,93,44,91,45,57,50,46,53,53,52,51,56,49,44,52,51,46,50,49,50,56,49,51,93,44,91,45,57,50,46,53,53,51,49,50,56,44,52,51,46,53,48,48,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,69,109,97,110,117,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,57,57,44,34,98,101,100,115,34,58,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,52,49,52,57,44,51,50,46,55,54,50,50,53,56,93,44,91,45,56,50,46,52,54,57,56,50,51,44,51,50,46,54,53,48,56,56,50,93,44,91,45,56,50,46,54,52,55,55,51,51,44,51,50,46,53,49,50,53,48,55,93,44,91,45,56,50,46,52,57,57,57,55,49,44,51,50,46,52,57,56,51,55,56,93,44,91,45,56,50,46,51,56,54,49,48,54,44,51,50,46,52,52,48,51,55,93,44,91,45,56,50,46,52,48,57,49,49,56,44,51,50,46,51,53,51,56,51,93,44,91,45,56,50,46,51,53,52,53,52,54,44,51,50,46,50,57,50,49,57,52,93,44,91,45,56,50,46,50,51,50,55,56,56,44,51,50,46,51,49,56,56,51,56,93,44,91,45,56,50,46,50,53,50,55,53,55,44,51,50,46,51,53,51,51,49,93,44,91,45,56,50,46,49,52,56,51,51,56,44,51,50,46,53,50,48,52,50,57,93,44,91,45,56,50,46,48,51,48,50,51,51,44,51,50,46,53,51,56,55,55,93,44,91,45,56,50,46,48,48,49,50,51,54,44,51,50,46,54,48,54,57,49,93,44,91,45,56,50,46,48,56,50,52,52,44,51,50,46,54,54,51,48,54,49,93,44,91,45,56,50,46,49,52,52,57,55,55,44,51,50,46,56,49,50,55,52,49,93,44,91,45,56,50,46,51,49,54,53,49,50,44,51,50,46,56,51,53,55,55,50,93,44,91,45,56,50,46,52,51,52,49,52,57,44,51,50,46,55,54,50,50,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,116,97,104,111,117,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,55,53,55,50,49,44,51,49,46,56,56,50,53,54,93,44,91,45,57,49,46,54,52,54,48,52,44,51,49,46,57,54,49,49,52,49,93,44,91,45,57,49,46,55,55,57,57,50,56,44,51,49,46,56,56,49,52,56,49,93,44,91,45,57,49,46,56,56,57,54,56,55,44,51,49,46,57,55,49,52,55,52,93,44,91,45,57,50,46,48,48,53,52,51,52,44,51,49,46,57,50,55,50,57,54,93,44,91,45,57,50,46,48,48,56,49,50,49,44,51,49,46,51,50,53,55,57,55,93,44,91,45,57,49,46,56,51,52,50,56,44,51,49,46,50,54,54,51,52,52,93,44,91,45,57,49,46,56,53,53,57,48,56,44,51,49,46,52,57,54,48,49,93,44,91,45,57,49,46,56,50,54,57,50,54,44,51,49,46,53,57,49,54,55,49,93,44,91,45,57,49,46,55,48,53,57,52,56,44,51,49,46,54,52,50,56,54,51,93,44,91,45,57,49,46,54,57,52,52,54,57,44,51,49,46,55,51,53,50,56,54,93,44,91,45,57,49,46,53,52,52,55,57,49,44,51,49,46,55,53,49,55,51,49,93,44,91,45,57,49,46,53,55,53,55,50,49,44,51,49,46,56,56,50,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,57,51,49,44,34,98,101,100,115,34,58,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,54,52,57,54,51,55,44,52,49,46,49,50,50,51,52,52,93,44,91,45,55,53,46,55,55,49,51,48,54,44,52,49,46,48,55,55,56,49,54,93,44,91,45,55,53,46,55,51,49,57,51,44,52,49,46,48,48,56,50,50,93,44,91,45,55,53,46,57,57,55,51,52,56,44,52,48,46,57,49,50,57,56,53,93,44,91,45,55,53,46,55,53,55,56,48,55,44,52,48,46,55,51,53,52,49,52,93,44,91,45,55,53,46,54,48,56,57,56,53,44,52,48,46,55,56,55,51,56,55,93,44,91,45,55,53,46,52,55,52,49,57,51,44,52,48,46,56,49,52,55,52,54,93,44,91,45,55,53,46,53,55,52,53,57,44,52,48,46,57,53,49,51,50,51,93,44,91,45,55,53,46,52,57,53,57,57,44,52,48,46,57,56,55,49,56,49,93,44,91,45,55,53,46,54,52,57,54,51,55,44,52,49,46,49,50,50,51,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,80,97,119,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,54,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,54,51,54,54,55,44,52,48,46,50,54,50,49,55,51,93,44,91,45,57,54,46,52,54,51,55,49,50,44,52,48,46,48,48,49,48,50,51,93,44,91,45,57,54,46,50,51,57,50,44,52,48,46,48,48,48,56,56,49,93,44,91,45,57,54,46,48,49,48,54,56,44,52,48,46,48,48,48,54,53,49,93,44,91,45,57,54,46,48,49,48,49,55,54,44,52,48,46,50,54,49,52,56,50,93,44,91,45,57,54,46,48,54,54,55,51,54,44,52,48,46,50,54,50,48,51,56,93,44,91,45,57,54,46,52,54,51,54,54,55,44,52,48,46,50,54,50,49,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,85,110,105,99,111,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,56,48,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,52,48,52,54,44,51,54,46,50,53,50,56,48,55,93,44,91,45,56,50,46,52,51,55,50,53,49,44,51,54,46,49,53,52,55,48,57,93,44,91,45,56,50,46,53,57,53,48,54,53,44,51,54,46,48,57,54,50,48,53,93,44,91,45,56,50,46,54,48,50,57,56,44,51,54,46,48,51,57,54,55,55,93,44,91,45,56,50,46,53,48,53,52,50,53,44,51,53,46,57,55,55,52,51,50,93,44,91,45,56,50,46,52,49,54,55,51,56,44,51,54,46,48,55,50,56,50,55,93,44,91,45,56,50,46,50,50,50,48,54,52,44,51,54,46,49,53,54,57,54,93,44,91,45,56,50,46,51,52,48,52,54,44,51,54,46,50,53,50,56,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,83,112,97,114,116,97,110,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,50,49,57,53,44,34,98,101,100,115,34,58,57,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,54,57,51,52,56,44,51,53,46,49,56,55,50,49,55,93,44,91,45,56,50,46,50,49,53,57,52,55,44,51,53,46,49,57,54,50,50,50,93,44,91,45,56,50,46,50,50,54,51,50,53,44,51,52,46,56,53,50,52,56,56,93,44,91,45,56,50,46,49,52,54,55,57,50,44,51,52,46,55,56,53,53,53,52,93,44,91,45,56,50,46,48,55,49,51,49,53,44,51,52,46,55,48,51,55,93,44,91,45,56,49,46,56,53,52,48,48,50,44,51,52,46,53,57,52,53,52,57,93,44,91,45,56,49,46,55,56,51,51,57,44,51,52,46,56,51,55,49,50,53,93,44,91,45,56,49,46,55,49,49,54,57,52,44,51,52,46,57,49,50,53,55,55,93,44,91,45,56,49,46,55,53,53,48,56,51,44,51,52,46,57,51,48,50,56,93,44,91,45,56,49,46,56,55,52,54,56,57,44,51,53,46,49,56,52,48,51,54,93,44,91,45,56,49,46,57,54,57,51,52,56,44,51,53,46,49,56,55,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,77,97,114,97,116,104,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,50,54,52,44,34,98,101,100,115,34,58,52,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,53,48,51,56,44,52,53,46,48,51,51,56,50,57,93,44,91,45,57,48,46,51,49,54,50,53,51,44,52,52,46,54,56,53,49,53,52,93,44,91,45,56,57,46,56,52,52,57,51,49,44,52,52,46,54,56,52,57,52,53,93,44,91,45,56,57,46,50,50,51,55,52,53,44,52,52,46,54,56,49,51,54,53,93,44,91,45,56,57,46,50,50,51,56,49,52,44,52,53,46,48,50,57,50,52,54,93,44,91,45,56,57,46,50,50,52,50,49,52,44,52,53,46,49,49,56,53,54,55,93,44,91,45,56,57,46,52,50,53,57,55,49,44,52,53,46,49,49,57,48,57,56,93,44,91,45,57,48,46,48,52,51,54,56,53,44,52,53,46,49,50,48,50,49,52,93,44,91,45,57,48,46,49,57,55,55,54,53,44,52,53,46,49,50,48,54,48,52,93,44,91,45,57,48,46,51,49,53,48,51,56,44,52,53,46,48,51,51,56,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,69,108,107,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,50,53,50,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,53,56,54,55,56,54,44,52,49,46,48,48,48,51,57,56,93,44,91,45,49,49,54,46,49,53,56,49,53,53,44,52,48,46,57,57,57,57,49,50,93,44,91,45,49,49,54,46,49,53,55,56,51,52,44,52,48,46,54,54,54,51,56,57,93,44,91,45,49,49,54,46,48,48,48,56,57,55,44,52,48,46,49,50,55,51,55,54,93,44,91,45,49,49,53,46,56,51,52,57,54,57,44,52,48,46,49,50,55,56,52,50,93,44,91,45,49,49,52,46,57,48,49,56,50,53,44,52,48,46,49,50,50,48,56,50,93,44,91,45,49,49,52,46,48,52,54,54,49,52,44,52,48,46,49,49,54,57,51,54,93,44,91,45,49,49,52,46,48,52,50,48,50,57,44,52,48,46,57,57,57,56,57,54,93,44,91,45,49,49,52,46,48,52,49,52,55,55,44,52,49,46,57,57,51,56,55,51,93,44,91,45,49,49,52,46,50,56,49,55,57,57,44,52,49,46,57,57,52,52,52,49,93,44,91,45,49,49,53,46,48,51,56,49,53,55,44,52,49,46,57,57,54,50,55,57,93,44,91,45,49,49,54,46,48,52,53,51,55,51,44,52,49,46,57,57,54,51,51,49,93,44,91,45,49,49,55,46,48,49,56,50,48,52,44,52,49,46,57,57,57,55,49,53,93,44,91,45,49,49,55,46,48,49,56,52,49,57,44,52,49,46,48,48,48,50,53,52,93,44,91,45,49,49,54,46,53,56,54,55,56,54,44,52,49,46,48,48,48,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,114,97,120,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,56,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,48,53,55,57,57,44,51,56,46,57,48,52,49,54,55,93,44,91,45,56,48,46,55,48,49,53,50,50,44,51,56,46,56,55,57,48,52,53,93,44,91,45,56,48,46,57,56,52,57,53,44,51,56,46,55,49,55,56,57,56,93,44,91,45,56,49,46,48,51,49,54,55,55,44,51,56,46,54,54,55,56,51,57,93,44,91,45,56,48,46,56,56,49,50,51,50,44,51,56,46,53,48,55,48,52,53,93,44,91,45,56,48,46,55,56,53,49,55,55,44,51,56,46,53,53,55,54,52,57,93,44,91,45,56,48,46,54,53,48,55,56,54,44,51,56,46,53,50,54,53,57,93,44,91,45,56,48,46,53,48,56,54,53,53,44,51,56,46,54,52,53,53,53,51,93,44,91,45,56,48,46,52,53,55,51,51,50,44,51,56,46,55,51,57,49,54,57,93,44,91,45,56,48,46,52,55,51,55,54,56,44,51,56,46,56,50,57,48,57,56,93,44,91,45,56,48,46,54,48,53,55,57,57,44,51,56,46,57,48,52,49,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,87,101,120,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,49,49,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,44,91,45,56,53,46,56,50,49,49,56,54,44,52,52,46,49,54,52,49,57,55,93,44,91,45,56,53,46,53,54,52,53,53,52,44,52,52,46,49,54,52,56,54,49,93,44,91,45,56,53,46,51,51,52,55,55,55,44,52,52,46,49,54,53,49,49,56,93,44,91,45,56,53,46,51,51,52,44,52,52,46,53,49,50,51,48,51,93,44,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,67,111,99,104,114,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,52,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,53,54,52,56,53,44,51,51,46,51,56,56,52,49,52,93,44,91,45,49,48,50,46,53,57,52,56,51,54,44,51,51,46,51,56,56,52,56,57,93,44,91,45,49,48,50,46,54,49,53,52,52,55,44,51,51,46,56,50,53,49,50,49,93,44,91,45,49,48,51,46,48,52,55,52,48,57,44,51,51,46,56,50,52,54,55,52,93,44,91,45,49,48,51,46,48,53,50,54,50,49,44,51,51,46,53,55,48,53,55,53,93,44,91,45,49,48,51,46,48,53,54,52,56,53,44,51,51,46,51,56,56,52,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,108,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,56,52,50,44,34,98,101,100,115,34,58,53,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,53,48,52,51,44,52,48,46,55,50,52,56,50,55,93,44,91,45,55,56,46,53,51,57,56,52,44,52,48,46,53,48,54,49,53,52,93,44,91,45,55,56,46,53,54,52,48,56,53,44,52,48,46,51,55,48,54,48,57,93,44,91,45,55,56,46,54,50,48,51,56,51,44,52,48,46,51,50,55,48,50,53,93,44,91,45,55,56,46,50,53,55,51,48,53,44,52,48,46,50,57,55,56,56,51,93,44,91,45,55,56,46,49,51,48,48,56,49,44,52,48,46,52,56,49,57,57,93,44,91,45,55,56,46,50,50,49,57,55,44,52,48,46,54,55,52,53,51,57,93,44,91,45,55,56,46,49,49,54,53,50,49,44,52,48,46,55,51,57,49,50,55,93,44,91,45,55,56,46,51,53,57,57,49,50,44,52,48,46,55,51,50,53,57,50,93,44,91,45,55,56,46,51,53,48,52,51,44,52,48,46,55,50,52,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,105,99,107,111,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,54,53,49,57,57,44,51,56,46,48,54,50,52,55,57,93,44,91,45,57,51,46,53,48,51,57,52,54,44,51,56,46,48,55,51,49,50,51,93,44,91,45,57,51,46,53,49,50,49,48,51,44,51,55,46,57,49,51,53,51,53,93,44,91,45,57,51,46,53,55,51,50,48,50,44,51,55,46,56,50,56,48,51,53,93,44,91,45,57,51,46,49,56,55,57,49,53,44,51,55,46,56,48,50,55,51,55,93,44,91,45,57,51,46,49,56,50,55,48,54,44,51,55,46,57,48,52,49,52,52,93,44,91,45,57,51,46,48,55,50,52,52,55,44,51,55,46,57,48,50,54,50,55,93,44,91,45,57,51,46,48,54,53,49,57,57,44,51,56,46,48,54,50,52,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,52,57,51,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,54,50,55,52,44,51,54,46,57,51,49,55,55,53,93,44,91,45,57,52,46,48,54,56,56,57,56,44,51,54,46,55,52,55,56,49,56,93,44,91,45,57,52,46,48,55,55,48,56,57,44,51,54,46,52,57,56,55,51,93,44,91,45,57,51,46,56,54,54,54,56,57,44,51,54,46,52,57,56,55,51,53,93,44,91,45,57,51,46,53,56,52,50,54,50,44,51,54,46,52,57,57,49,54,55,93,44,91,45,57,51,46,53,55,51,56,44,51,54,46,56,50,48,48,51,50,93,44,91,45,57,51,46,54,49,49,48,48,51,44,51,54,46,57,50,50,56,51,49,93,44,91,45,57,52,46,48,54,50,55,52,44,51,54,46,57,51,49,55,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,82,97,109,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,52,57,51,44,34,98,101,100,115,34,58,49,57,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,48,53,49,56,44,52,53,46,49,50,51,56,54,54,93,44,91,45,57,51,46,50,50,55,54,57,54,44,52,53,46,49,50,52,53,51,51,93,44,91,45,57,51,46,50,50,54,57,50,57,44,52,53,46,48,51,53,54,55,49,93,44,91,45,57,51,46,49,55,56,53,51,57,44,52,52,46,56,56,56,51,51,56,93,44,91,45,57,51,46,48,50,48,48,52,52,44,52,52,46,56,57,48,55,53,93,44,91,45,57,51,46,48,50,48,53,49,56,44,52,53,46,49,50,51,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,105,116,116,108,101,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,55,55,50,57,57,44,51,51,46,57,52,48,57,51,50,93,44,91,45,57,52,46,52,56,53,56,55,56,44,51,51,46,54,51,55,56,54,53,93,44,91,45,57,52,46,51,56,57,53,51,44,51,51,46,53,52,54,55,51,57,93,44,91,45,57,52,46,50,57,49,50,49,50,44,51,51,46,53,56,49,52,55,56,93,44,91,45,57,52,46,48,52,51,52,53,44,51,51,46,53,53,50,50,53,51,93,44,91,45,57,51,46,57,51,53,54,48,54,44,51,51,46,53,53,48,49,55,54,93,44,91,45,57,51,46,56,50,53,56,56,52,44,51,51,46,54,48,57,56,53,51,93,44,91,45,57,51,46,57,54,53,54,51,55,44,51,51,46,54,54,57,55,51,54,93,44,91,45,57,51,46,57,53,55,51,49,53,44,51,51,46,55,53,48,57,52,93,44,91,45,57,51,46,57,53,56,56,50,56,44,51,51,46,55,53,48,57,57,52,93,44,91,45,57,52,46,49,56,49,56,49,44,51,51,46,55,56,56,56,53,50,93,44,91,45,57,52,46,52,55,55,50,57,57,44,51,51,46,57,52,48,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,76,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,49,53,53,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,50,56,51,54,51,55,44,51,57,46,54,50,49,53,54,49,93,44,91,45,49,49,57,46,52,55,56,56,48,54,44,51,57,46,51,51,55,52,49,54,93,44,91,45,49,49,57,46,55,49,50,54,52,53,44,51,57,46,50,53,48,56,55,49,93,44,91,45,49,49,57,46,53,54,51,54,56,44,51,57,46,49,57,53,52,49,53,93,44,91,45,49,49,57,46,53,53,49,48,50,44,51,57,46,48,56,53,55,57,49,93,44,91,45,49,49,57,46,51,49,49,55,49,52,44,51,57,46,48,56,51,54,49,53,93,44,91,45,49,49,57,46,51,49,48,55,48,50,44,51,56,46,57,57,48,55,49,57,93,44,91,45,49,49,57,46,52,50,48,56,51,55,44,51,56,46,57,53,52,55,49,53,93,44,91,45,49,49,57,46,52,48,54,50,55,57,44,51,56,46,55,51,51,51,54,50,93,44,91,45,49,49,57,46,51,52,57,56,56,52,44,51,56,46,55,50,57,49,57,51,93,44,91,45,49,49,57,46,51,50,56,51,57,56,44,51,56,46,53,51,52,55,57,50,93,44,91,45,49,49,57,46,49,53,54,57,55,56,44,51,56,46,52,49,52,55,52,54,93,44,91,45,49,49,56,46,57,48,54,56,54,49,44,51,56,46,52,49,52,54,55,55,93,44,91,45,49,49,56,46,57,48,50,49,50,52,44,51,56,46,56,53,50,49,53,56,93,44,91,45,49,49,57,46,48,49,52,53,50,56,44,51,56,46,56,53,49,51,93,44,91,45,49,49,57,46,48,49,52,56,51,55,44,51,56,46,57,52,51,51,50,51,93,44,91,45,49,49,56,46,57,50,57,55,51,55,44,51,57,46,48,55,51,54,57,56,93,44,91,45,49,49,56,46,55,53,51,56,51,53,44,51,57,46,48,55,52,54,51,93,44,91,45,49,49,56,46,55,53,52,48,49,52,44,51,57,46,49,49,50,48,50,51,93,44,91,45,49,49,57,46,49,49,56,49,57,51,44,51,57,46,51,56,56,53,49,54,93,44,91,45,49,49,57,46,48,55,55,57,56,56,44,51,57,46,55,50,50,52,52,49,93,44,91,45,49,49,57,46,49,56,57,51,52,50,44,51,57,46,54,53,48,56,55,93,44,91,45,49,49,57,46,50,56,51,54,51,55,44,51,57,46,54,50,49,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,56,54,55,57,44,34,98,101,100,115,34,58,49,51,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,54,53,57,51,49,44,50,54,46,55,54,57,53,53,50,93,44,91,45,56,50,46,49,57,56,54,50,54,44,50,54,46,55,55,48,56,57,50,93,44,91,45,56,50,46,51,51,53,48,52,44,50,54,46,55,56,55,57,52,54,93,44,91,45,56,50,46,51,50,49,57,49,44,50,54,46,54,54,53,48,55,57,93,44,91,45,56,50,46,50,51,54,52,53,51,44,50,54,46,52,55,55,51,93,44,91,45,56,50,46,49,49,50,50,50,49,44,50,54,46,51,55,55,55,53,53,93,44,91,45,56,49,46,57,55,56,49,50,54,44,50,54,46,51,57,57,54,57,50,93,44,91,45,56,49,46,57,48,53,53,48,49,44,50,54,46,51,51,48,48,56,56,93,44,91,45,56,49,46,54,53,55,57,44,50,54,46,51,49,55,53,54,51,93,44,91,45,56,49,46,54,53,57,53,48,54,44,50,54,46,52,50,49,48,55,55,93,44,91,45,56,49,46,53,54,50,49,56,44,50,54,46,52,50,50,54,50,53,93,44,91,45,56,49,46,53,54,51,55,54,51,44,50,54,46,53,49,51,51,50,52,93,44,91,45,56,49,46,53,54,53,57,51,49,44,50,54,46,55,54,57,53,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,74,111,115,101,112,104,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,52,56,49,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,55,49,54,52,57,50,44,52,50,46,55,56,52,48,54,49,93,44,91,45,49,50,51,46,56,57,48,54,53,55,44,52,50,46,53,48,48,53,51,56,93,44,91,45,49,50,51,46,57,57,56,55,56,44,52,50,46,52,57,57,57,54,50,93,44,91,45,49,50,52,46,48,50,53,57,56,52,44,52,50,46,51,53,57,52,48,57,93,44,91,45,49,50,51,46,56,57,50,54,53,49,44,52,50,46,51,53,51,50,57,51,93,44,91,45,49,50,51,46,55,57,50,56,51,52,44,52,50,46,50,50,52,51,49,52,93,44,91,45,49,50,51,46,56,53,56,53,52,57,44,52,50,46,49,51,53,49,49,54,93,44,91,45,49,50,51,46,56,50,50,48,52,49,44,52,49,46,57,57,53,53,56,93,44,91,45,49,50,51,46,53,49,55,57,49,49,44,52,50,46,48,48,48,55,53,54,93,44,91,45,49,50,51,46,50,51,49,49,49,51,44,52,50,46,48,48,51,57,52,51,93,44,91,45,49,50,51,46,50,50,57,54,49,57,44,52,50,46,55,48,50,54,49,93,44,91,45,49,50,51,46,52,52,53,52,53,54,44,52,50,46,55,48,51,48,50,53,93,44,91,45,49,50,51,46,55,49,54,52,57,50,44,52,50,46,55,56,52,48,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,97,110,97,116,195,173,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,57,50,44,34,98,101,100,115,34,58,53,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,51,50,53,50,49,44,49,56,46,53,51,53,52,55,56,93,44,91,45,54,54,46,53,52,51,48,55,57,44,49,56,46,52,48,53,52,50,50,93,44,91,45,54,54,46,53,51,51,54,50,51,44,49,56,46,51,53,49,51,51,51,93,44,91,45,54,54,46,52,54,51,50,49,49,44,49,56,46,51,55,49,52,55,51,93,44,91,45,54,54,46,52,52,51,56,44,49,56,46,51,55,49,48,50,55,93,44,91,45,54,54,46,52,51,54,55,53,50,44,49,56,46,53,52,48,56,48,53,93,44,91,45,54,54,46,53,51,50,53,50,49,44,49,56,46,53,51,53,52,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,55,51,55,44,34,98,101,100,115,34,58,49,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,52,56,49,57,57,44,51,49,46,51,52,57,53,55,52,93,44,91,45,57,48,46,53,52,55,54,49,54,44,51,48,46,57,57,57,55,50,93,44,91,45,57,48,46,51,52,55,50,53,53,44,51,49,46,48,48,48,53,51,93,44,91,45,57,48,46,50,53,57,53,53,53,44,51,49,46,48,48,48,54,55,57,93,44,91,45,57,48,46,50,54,48,51,57,49,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,53,52,56,49,57,57,44,51,49,46,51,52,57,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,102,102,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,53,51,49,44,34,98,101,100,115,34,58,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,52,53,49,54,53,44,51,53,46,54,51,49,57,49,51,93,44,91,45,56,54,46,50,53,55,53,57,44,51,53,46,52,49,50,52,55,54,93,44,91,45,56,54,46,50,54,49,52,56,57,44,51,53,46,51,51,51,53,55,57,93,44,91,45,56,54,46,49,53,56,48,49,56,44,51,53,46,51,54,50,54,48,55,93,44,91,45,56,53,46,57,49,51,53,57,51,44,51,53,46,50,56,57,49,56,57,93,44,91,45,56,53,46,56,55,54,57,54,50,44,51,53,46,53,50,52,48,57,53,93,44,91,45,56,53,46,57,56,53,48,54,50,44,51,53,46,54,54,48,49,48,56,93,44,91,45,56,54,46,49,52,51,54,53,50,44,51,53,46,54,54,49,55,52,55,93,44,91,45,56,54,46,50,48,55,49,52,55,44,51,53,46,55,48,51,55,57,93,44,91,45,56,54,46,50,52,53,49,54,53,44,51,53,46,54,51,49,57,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,76,101,109,104,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,57,56,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,56,49,50,52,48,55,44,52,52,46,56,48,56,51,52,54,93,44,91,45,49,49,52,46,56,49,57,56,56,57,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,49,52,46,54,48,50,51,54,50,44,52,52,46,53,57,52,56,53,54,93,44,91,45,49,49,52,46,52,53,49,56,52,44,52,52,46,54,49,49,55,52,49,93,44,91,45,49,49,52,46,51,51,57,49,57,54,44,52,52,46,55,57,51,53,57,52,93,44,91,45,49,49,52,46,48,55,53,57,51,55,44,52,52,46,55,52,53,53,55,56,93,44,91,45,49,49,52,46,48,49,57,50,48,52,44,52,52,46,54,53,49,53,52,49,93,44,91,45,49,49,51,46,56,49,54,50,49,53,44,52,52,46,52,57,51,57,54,51,93,44,91,45,49,49,51,46,53,48,49,53,49,57,44,52,52,46,52,50,50,51,48,51,93,44,91,45,49,49,51,46,51,51,57,54,49,55,44,52,52,46,51,49,54,51,49,51,93,44,91,45,49,49,51,46,51,50,48,54,48,57,44,52,52,46,50,51,51,49,54,52,93,44,91,45,49,49,50,46,57,57,53,48,57,49,44,52,52,46,50,51,52,49,50,54,93,44,91,45,49,49,50,46,56,49,51,55,57,50,44,52,52,46,50,51,48,50,56,49,93,44,91,45,49,49,50,46,56,49,51,56,48,53,44,52,52,46,51,55,54,52,53,53,93,44,91,45,49,49,51,46,48,48,49,57,55,56,44,52,52,46,52,52,57,56,53,55,93,44,91,45,49,49,51,46,49,48,49,54,49,56,44,52,52,46,55,50,57,52,54,53,93,44,91,45,49,49,51,46,50,52,55,49,57,50,44,52,52,46,56,50,50,57,53,52,93,44,91,45,49,49,51,46,52,53,53,48,55,49,44,52,52,46,56,54,53,52,50,52,93,44,91,45,49,49,51,46,52,53,50,48,52,52,44,52,53,46,48,53,57,49,55,52,93,44,91,45,49,49,51,46,53,55,54,55,50,53,44,52,53,46,49,51,49,50,51,55,93,44,91,45,49,49,51,46,55,55,51,55,53,51,44,52,53,46,52,48,54,51,53,57,93,44,91,45,49,49,51,46,56,48,54,52,51,49,44,52,53,46,54,48,49,54,51,93,44,91,45,49,49,51,46,57,51,56,48,57,53,44,52,53,46,54,57,53,55,52,93,44,91,45,49,49,52,46,50,54,57,56,57,50,44,52,53,46,52,56,52,53,53,50,93,44,91,45,49,49,52,46,53,54,52,57,57,57,44,52,53,46,53,53,55,56,48,51,93,44,91,45,49,49,52,46,54,54,54,50,50,51,44,52,53,46,52,55,49,51,50,53,93,44,91,45,49,49,52,46,55,57,51,50,48,55,44,52,53,46,52,51,54,51,51,52,93,44,91,45,49,49,52,46,54,48,51,57,52,44,52,53,46,50,57,53,56,50,54,93,44,91,45,49,49,52,46,54,57,52,48,48,49,44,52,53,46,49,57,55,49,56,50,93,44,91,45,49,49,52,46,55,51,50,50,55,44,52,53,46,49,53,49,49,53,53,93,44,91,45,49,49,52,46,55,51,49,57,54,44,52,52,46,56,56,48,57,52,54,93,44,91,45,49,49,52,46,56,49,50,52,48,55,44,52,52,46,56,48,56,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,55,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,51,56,50,54,44,51,55,46,53,54,48,56,48,51,93,44,91,45,56,55,46,48,57,57,56,48,51,44,51,55,46,52,49,54,48,52,50,93,44,91,45,56,54,46,56,57,57,50,54,56,44,51,55,46,50,49,50,51,49,51,93,44,91,45,56,54,46,56,50,57,51,55,49,44,51,55,46,50,56,49,51,54,53,93,44,91,45,56,54,46,54,49,50,48,57,53,44,51,55,46,51,57,53,49,50,51,93,44,91,45,56,54,46,54,54,49,56,56,44,51,55,46,53,52,49,57,51,52,93,44,91,45,56,54,46,53,57,50,56,49,44,51,55,46,53,54,52,51,54,93,44,91,45,56,54,46,54,51,56,57,51,53,44,51,55,46,54,54,49,56,55,55,93,44,91,45,56,54,46,56,50,51,52,50,57,44,51,55,46,55,51,55,55,53,52,93,44,91,45,56,54,46,56,49,55,53,49,52,44,51,55,46,54,55,51,56,49,52,93,44,91,45,56,55,46,48,51,56,50,54,44,51,55,46,53,54,48,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,83,97,114,112,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,51,53,49,44,34,98,101,100,115,34,58,50,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,50,51,53,52,56,44,52,49,46,49,57,48,56,53,93,44,91,45,57,54,46,51,50,55,51,57,57,44,52,49,46,49,56,57,57,57,57,93,44,91,45,57,54,46,51,49,57,49,57,49,44,52,49,46,48,52,52,57,57,56,93,44,91,45,57,54,46,50,48,55,54,52,56,44,52,48,46,57,57,53,54,50,56,93,44,91,45,57,54,46,48,53,54,50,53,54,44,52,49,46,48,54,53,51,53,54,93,44,91,45,57,53,46,56,55,57,52,56,55,44,52,49,46,48,53,51,50,57,57,93,44,91,45,57,53,46,56,56,48,53,50,49,44,52,49,46,49,53,57,56,55,52,93,44,91,45,57,53,46,57,50,51,53,52,56,44,52,49,46,49,57,48,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,67,111,108,113,117,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,48,54,44,34,98,101,100,115,34,58,49,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,57,57,52,51,44,51,49,46,51,51,52,57,54,54,93,44,91,45,56,52,46,48,48,51,54,50,55,44,51,49,46,48,55,55,50,57,93,44,91,45,56,52,46,48,48,51,56,55,54,44,51,49,46,48,52,49,53,56,50,93,44,91,45,56,51,46,55,51,54,49,53,56,44,51,49,46,48,51,55,54,55,57,93,44,91,45,56,51,46,53,55,52,56,53,55,44,51,49,46,48,55,56,49,51,53,93,44,91,45,56,51,46,53,48,57,56,49,44,51,49,46,50,48,54,49,56,49,93,44,91,45,56,51,46,53,49,50,54,48,55,44,51,49,46,51,50,55,52,48,53,93,44,91,45,56,51,46,54,53,52,48,57,44,51,49,46,51,51,48,54,54,49,93,44,91,45,56,51,46,57,57,57,52,51,44,51,49,46,51,51,52,57,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,87,105,108,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,56,48,57,55,55,44,52,54,46,54,51,48,55,54,53,93,44,91,45,57,54,46,55,56,52,51,56,49,44,52,54,46,54,51,48,53,48,52,93,44,91,45,57,54,46,54,54,55,52,50,50,44,52,54,46,51,55,54,49,49,55,93,44,91,45,57,54,46,53,57,57,54,54,44,52,54,46,51,51,48,52,56,49,93,44,91,45,57,54,46,53,53,52,52,51,54,44,52,54,46,48,56,52,49,56,54,93,44,91,45,57,54,46,53,55,54,53,54,52,44,52,54,46,48,50,49,56,52,56,93,44,91,45,57,54,46,50,54,54,49,52,44,52,54,46,48,50,49,54,49,93,44,91,45,57,54,46,50,54,53,51,54,54,44,52,54,46,49,48,56,54,49,93,44,91,45,57,54,46,50,56,48,57,55,55,44,52,54,46,54,51,48,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,52,54,44,34,98,101,100,115,34,58,49,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,57,57,48,52,51,44,51,56,46,50,50,48,55,53,53,93,44,91,45,57,48,46,48,51,54,51,49,54,44,51,56,46,50,50,51,50,52,54,93,44,91,45,57,48,46,48,51,53,56,54,55,44,51,56,46,49,51,53,55,51,54,93,44,91,45,57,48,46,50,48,53,50,48,53,44,51,56,46,48,56,54,57,48,55,93,44,91,45,56,57,46,57,56,56,49,48,56,44,51,55,46,57,54,49,55,52,57,93,44,91,45,56,57,46,57,51,56,54,48,56,44,51,55,46,56,55,52,51,48,52,93,44,91,45,56,57,46,56,52,52,55,56,54,44,51,55,46,57,48,53,53,55,50,93,44,91,45,56,57,46,54,55,52,51,50,49,44,51,55,46,56,48,51,49,53,50,93,44,91,45,56,57,46,53,57,53,48,55,51,44,51,55,46,57,53,53,51,52,51,93,44,91,45,56,57,46,53,57,50,55,57,55,44,51,56,46,50,49,57,50,55,49,93,44,91,45,56,57,46,55,48,51,50,53,54,44,51,56,46,50,49,57,52,48,52,93,44,91,45,56,57,46,56,57,57,48,52,51,44,51,56,46,50,50,48,55,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,75,101,110,110,101,98,101,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,53,52,53,44,34,98,101,100,115,34,58,52,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,49,50,57,51,57,44,52,52,46,52,56,55,50,49,55,93,44,91,45,55,48,46,48,55,53,55,52,55,44,52,52,46,50,48,54,49,54,56,93,44,91,45,55,48,46,48,48,53,52,55,49,44,52,52,46,49,50,52,53,49,57,93,44,91,45,54,57,46,55,53,56,50,48,56,44,52,52,46,49,51,57,51,51,52,93,44,91,45,54,57,46,54,53,54,55,52,50,44,52,52,46,49,50,50,51,57,50,93,44,91,45,54,57,46,54,53,48,49,55,49,44,52,52,46,50,55,57,54,50,53,93,44,91,45,54,57,46,53,48,54,51,56,50,44,52,52,46,51,52,50,56,55,93,44,91,45,54,57,46,51,57,51,49,50,51,44,52,52,46,54,52,48,51,55,53,93,44,91,45,54,57,46,52,55,49,55,49,50,44,52,52,46,54,57,50,56,57,57,93,44,91,45,54,57,46,54,51,51,49,49,56,44,52,52,46,55,48,48,51,55,51,93,44,91,45,54,57,46,54,48,53,55,52,54,44,52,52,46,53,55,55,50,54,52,93,44,91,45,54,57,46,57,51,48,52,53,49,44,52,52,46,54,49,48,56,53,50,93,44,91,45,55,48,46,48,52,48,50,49,53,44,52,52,46,53,56,56,55,50,50,93,44,91,45,55,48,46,49,50,57,51,57,44,52,52,46,52,56,55,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,83,109,121,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,48,53,57,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,51,55,48,57,54,44,51,54,46,57,50,57,48,51,57,93,44,91,45,56,49,46,54,57,57,53,54,49,44,51,54,46,55,56,57,51,49,54,93,44,91,45,56,49,46,54,48,53,56,54,53,44,51,54,46,54,51,56,48,55,57,93,44,91,45,56,49,46,53,50,52,56,48,56,44,51,54,46,55,48,55,53,52,93,44,91,45,56,49,46,50,54,49,57,56,55,44,51,54,46,55,54,51,48,51,51,93,44,91,45,56,49,46,51,55,57,52,48,50,44,51,54,46,57,53,50,52,52,50,93,44,91,45,56,49,46,52,51,54,55,51,44,51,55,46,48,49,48,49,51,53,93,44,91,45,56,49,46,54,56,50,55,56,54,44,51,54,46,57,51,50,57,51,52,93,44,91,45,56,49,46,55,56,48,53,52,53,44,51,54,46,57,53,56,54,50,57,93,44,91,45,56,49,46,56,51,55,48,57,54,44,51,54,46,57,50,57,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,82,111,111,115,101,118,101,108,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,49,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,52,51,55,54,55,44,51,52,46,51,48,50,54,52,56,93,44,91,45,49,48,51,46,55,52,48,48,54,54,44,51,52,46,51,48,51,48,53,54,93,44,91,45,49,48,51,46,55,51,56,49,54,54,44,51,52,46,54,48,52,54,55,93,44,91,45,49,48,51,46,57,52,56,55,55,56,44,51,52,46,54,48,53,48,53,56,93,44,91,45,49,48,51,46,57,52,54,48,49,57,44,51,52,46,48,56,50,52,54,51,93,44,91,45,49,48,51,46,56,52,49,54,57,49,44,51,52,46,48,56,49,57,48,57,93,44,91,45,49,48,51,46,56,52,49,57,51,51,44,51,51,46,56,49,57,50,93,44,91,45,49,48,51,46,55,49,54,56,56,53,44,51,51,46,56,49,57,53,53,56,93,44,91,45,49,48,51,46,55,49,56,51,51,51,44,51,51,46,54,53,54,50,49,93,44,91,45,49,48,51,46,53,48,57,55,53,57,44,51,51,46,54,53,55,50,54,50,93,44,91,45,49,48,51,46,53,49,48,49,50,57,44,51,51,46,53,55,48,49,49,55,93,44,91,45,49,48,51,46,48,53,50,54,50,49,44,51,51,46,53,55,48,53,55,53,93,44,91,45,49,48,51,46,48,52,55,52,48,57,44,51,51,46,56,50,52,54,55,52,93,44,91,45,49,48,51,46,48,52,51,55,54,55,44,51,52,46,51,48,50,54,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,83,111,109,101,114,115,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,57,52,57,44,34,98,101,100,115,34,58,49,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,57,51,54,56,50,44,52,48,46,48,52,48,52,49,51,93,44,91,45,55,57,46,52,49,55,53,53,56,44,51,57,46,56,53,51,55,55,54,93,44,91,45,55,57,46,51,57,50,52,53,57,44,51,57,46,55,50,49,53,55,56,93,44,91,45,55,56,46,57,50,56,52,49,54,44,51,57,46,55,50,50,55,56,51,93,44,91,45,55,56,46,56,48,56,51,56,55,44,51,57,46,55,50,50,57,49,49,93,44,91,45,55,56,46,55,53,55,50,52,49,44,51,57,46,56,50,51,52,56,52,93,44,91,45,55,56,46,55,54,51,50,48,54,44,52,48,46,48,53,55,48,48,53,93,44,91,45,55,56,46,54,53,56,52,48,57,44,52,48,46,50,52,50,57,51,51,93,44,91,45,55,56,46,56,57,48,56,51,54,44,52,48,46,50,52,57,53,51,57,93,44,91,45,55,57,46,48,53,53,57,56,51,44,52,48,46,50,56,53,48,56,57,93,44,91,45,55,57,46,50,57,51,54,56,50,44,52,48,46,48,52,48,52,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,52,48,54,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,50,49,57,54,52,44,51,54,46,54,52,54,57,51,54,93,44,91,45,56,50,46,49,52,53,53,55,51,44,51,54,46,53,57,52,55,50,53,93,44,91,45,56,49,46,56,50,54,55,52,50,44,51,54,46,54,49,52,50,49,53,93,44,91,45,56,49,46,54,52,54,57,44,51,54,46,54,49,49,57,49,56,93,44,91,45,56,49,46,54,48,53,56,54,53,44,51,54,46,54,51,56,48,55,57,93,44,91,45,56,49,46,54,57,57,53,54,49,44,51,54,46,55,56,57,51,49,54,93,44,91,45,56,49,46,56,51,55,48,57,54,44,51,54,46,57,50,57,48,51,57,93,44,91,45,56,49,46,57,52,57,50,55,54,44,51,54,46,56,54,52,52,55,51,93,44,91,45,56,50,46,51,51,50,48,55,56,44,51,54,46,55,48,56,57,54,57,93,44,91,45,56,50,46,50,57,52,49,51,52,44,51,54,46,53,57,53,54,57,55,93,44,91,45,56,50,46,50,52,51,51,56,50,44,51,54,46,53,57,53,54,53,49,93,44,91,45,56,50,46,49,50,49,57,54,52,44,51,54,46,54,52,54,57,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,71,117,105,108,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,51,53,56,50,44,34,98,101,100,115,34,58,49,52,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,44,91,45,56,48,46,48,52,51,50,51,56,44,51,54,46,48,49,48,55,53,56,93,44,91,45,56,48,46,48,52,54,56,54,57,44,51,53,46,57,50,48,54,57,51,93,44,91,45,55,57,46,53,52,49,55,50,56,44,51,53,46,56,57,57,56,53,49,93,44,91,45,55,57,46,53,51,50,52,49,44,51,54,46,50,52,49,52,54,51,93,44,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,54,48,53,50,44,34,98,101,100,115,34,58,49,50,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,53,49,50,53,48,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,52,55,51,52,57,50,44,52,51,46,54,51,52,49,48,51,93,44,91,45,49,49,54,46,52,55,51,53,57,55,44,52,51,46,52,53,57,50,49,56,93,44,91,45,49,49,54,46,53,49,49,56,57,55,44,52,51,46,50,57,48,53,50,93,44,91,45,49,49,54,46,50,54,54,50,48,55,44,52,51,46,49,49,50,50,54,57,93,44,91,45,49,49,53,46,57,55,56,54,53,49,44,52,51,46,49,49,51,52,51,50,93,44,91,45,49,49,53,46,57,55,53,55,49,57,44,52,51,46,53,57,49,52,51,56,93,44,91,45,49,49,54,46,50,56,50,48,49,57,44,52,51,46,56,48,55,51,54,53,93,44,91,45,49,49,54,46,53,49,50,53,48,50,44,52,51,46,56,48,55,49,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,50,48,57,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,51,49,57,56,53,44,51,53,46,56,49,50,52,48,50,93,44,91,45,57,57,46,51,55,53,56,49,55,44,51,53,46,56,49,50,49,56,56,93,44,91,45,57,57,46,51,54,52,49,52,49,44,51,53,46,53,48,56,55,57,51,93,44,91,45,57,57,46,51,54,52,50,49,55,44,51,53,46,52,54,53,51,50,56,93,44,91,45,57,56,46,54,50,51,51,51,54,44,51,53,46,52,54,52,50,50,53,93,44,91,45,57,56,46,54,50,51,50,52,52,44,51,53,46,53,53,49,53,50,50,93,44,91,45,57,56,46,54,51,49,57,56,53,44,51,53,46,56,49,50,52,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,51,52,52,44,34,98,101,100,115,34,58,49,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,49,57,56,51,54,44,52,48,46,54,56,54,56,50,51,93,44,91,45,56,51,46,52,49,56,54,55,44,52,48,46,53,48,53,50,50,57,93,44,91,45,56,51,46,50,52,56,49,56,51,44,52,48,46,53,48,55,48,51,52,93,44,91,45,56,51,46,50,52,56,53,57,53,44,52,48,46,52,52,51,57,56,57,93,44,91,45,56,51,46,48,50,48,55,57,56,44,52,48,46,52,51,51,55,57,53,93,44,91,45,56,50,46,57,53,56,52,48,49,44,52,48,46,52,57,48,54,54,52,93,44,91,45,56,50,46,57,53,55,56,49,55,44,52,48,46,54,52,53,49,52,56,93,44,91,45,56,50,46,56,53,56,51,48,50,44,52,48,46,55,48,53,48,49,57,93,44,91,45,56,51,46,49,49,49,51,54,44,52,48,46,55,48,50,57,49,53,93,44,91,45,56,51,46,52,49,57,56,51,54,44,52,48,46,54,56,54,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,53,52,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,54,54,54,57,44,51,57,46,56,52,52,57,50,55,93,44,91,45,57,48,46,57,49,53,57,54,49,44,51,57,46,55,53,55,50,93,44,91,45,57,49,46,51,54,53,49,50,53,44,51,57,46,55,53,56,55,50,51,93,44,91,45,57,49,46,51,48,54,54,57,51,44,51,57,46,54,56,52,56,54,53,93,44,91,45,57,49,46,49,55,56,48,49,50,44,51,57,46,53,57,56,49,57,54,93,44,91,45,57,49,46,48,51,56,50,55,44,51,57,46,52,52,56,52,51,53,93,44,91,45,57,48,46,57,51,54,55,50,56,44,51,57,46,51,57,57,53,49,49,93,44,91,45,57,48,46,54,49,51,55,55,53,44,51,57,46,51,57,53,52,49,54,93,44,91,45,57,48,46,53,56,49,48,53,53,44,51,57,46,53,50,49,55,50,56,93,44,91,45,57,48,46,54,52,53,57,57,44,51,57,46,55,48,51,51,54,56,93,44,91,45,57,48,46,53,57,57,49,48,53,44,51,57,46,55,57,48,48,54,93,44,91,45,57,48,46,53,55,49,52,50,52,44,51,57,46,56,51,56,57,54,49,93,44,91,45,57,48,46,57,49,54,54,54,57,44,51,57,46,56,52,52,57,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,50,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,51,34,44,34,78,65,77,69,34,58,34,87,111,111,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,52,55,55,49,56,44,52,48,46,57,50,53,55,52,57,93,44,91,45,56,57,46,52,55,50,51,51,44,52,48,46,57,50,49,50,48,54,93,44,91,45,56,57,46,53,53,52,57,57,52,44,52,48,46,55,52,55,54,51,55,93,44,91,45,56,57,46,51,51,48,48,57,50,44,52,48,46,55,52,56,50,53,55,93,44,91,45,56,57,46,50,54,57,51,57,55,44,52,48,46,53,57,52,51,49,56,93,44,91,45,56,57,46,49,51,51,55,53,50,44,52,48,46,53,57,54,55,51,52,93,44,91,45,56,56,46,57,56,52,55,50,50,44,52,48,46,54,54,52,57,53,51,93,44,91,45,56,56,46,57,50,57,51,51,49,44,52,48,46,55,53,51,51,51,55,93,44,91,45,56,56,46,57,51,49,51,57,44,52,48,46,57,50,55,55,52,93,44,91,45,56,57,46,48,52,55,55,49,56,44,52,48,46,57,50,53,55,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,53,34,44,34,78,65,77,69,34,58,34,82,105,99,104,109,111,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,52,54,51,44,34,98,101,100,115,34,58,51,49,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,50,56,50,51,56,44,51,51,46,53,52,52,57,51,52,93,44,91,45,56,50,46,50,57,52,49,55,57,44,51,51,46,51,53,52,54,51,53,93,44,91,45,56,50,46,51,53,51,52,57,56,44,51,51,46,51,49,50,51,49,56,93,44,91,45,56,50,46,50,54,55,53,56,44,51,51,46,50,54,55,51,57,55,93,44,91,45,56,50,46,49,55,52,50,52,44,51,51,46,50,57,54,55,55,49,93,44,91,45,56,50,46,48,57,50,53,57,50,44,51,51,46,50,51,48,48,56,52,93,44,91,45,56,49,46,56,53,50,48,55,54,44,51,51,46,50,52,55,50,56,56,93,44,91,45,56,49,46,57,49,56,51,51,55,44,51,51,46,51,51,50,56,52,50,93,44,91,45,56,49,46,57,51,52,49,51,54,44,51,51,46,52,54,56,51,51,55,93,44,91,45,56,50,46,48,49,50,52,55,44,51,51,46,53,51,50,49,49,54,93,44,91,45,56,50,46,48,50,56,50,51,56,44,51,51,46,53,52,52,57,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,80,105,99,107,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,55,52,54,49,57,44,51,51,46,53,51,52,48,48,56,93,44,91,45,56,56,46,51,48,52,52,51,52,44,51,51,46,50,56,56,51,50,93,44,91,45,56,56,46,51,52,48,52,51,50,44,51,50,46,57,57,49,49,57,57,93,44,91,45,56,56,46,49,55,49,56,53,50,44,51,50,46,57,57,53,56,54,93,44,91,45,56,55,46,56,51,55,53,50,49,44,51,51,46,49,53,51,54,51,55,93,44,91,45,56,55,46,56,52,48,54,56,51,44,51,51,46,53,50,52,56,51,57,93,44,91,45,56,55,46,57,52,54,53,49,57,44,51,51,46,53,50,52,48,54,53,93,44,91,45,56,56,46,50,55,52,54,49,57,44,51,51,46,53,51,52,48,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,69,108,108,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,55,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,48,53,54,51,52,44,51,54,46,53,57,50,55,53,52,93,44,91,45,49,48,48,46,48,48,51,49,54,44,51,54,46,53,57,51,50,53,93,44,91,45,49,48,48,46,48,48,51,55,54,50,44,51,54,46,52,57,57,56,52,57,93,44,91,45,49,48,48,46,48,48,48,51,57,57,44,51,54,46,48,53,53,54,55,55,93,44,91,45,49,48,48,46,48,48,48,51,57,54,44,51,53,46,56,56,49,50,51,51,93,44,91,45,57,57,46,56,57,51,51,55,50,44,51,53,46,57,56,53,50,57,53,93,44,91,45,57,57,46,55,49,55,49,48,49,44,51,53,46,56,53,57,55,54,57,93,44,91,45,57,57,46,53,53,56,52,56,54,44,51,53,46,56,54,53,57,56,56,93,44,91,45,57,57,46,52,57,53,56,49,50,44,51,53,46,57,55,56,55,51,50,93,44,91,45,57,57,46,51,56,49,48,50,50,44,51,54,46,48,49,50,57,50,53,93,44,91,45,57,57,46,51,56,50,48,55,52,44,51,54,46,49,54,52,51,48,49,93,44,91,45,57,57,46,53,57,54,48,55,57,44,51,54,46,49,54,52,48,54,49,93,44,91,45,57,57,46,54,48,53,54,51,52,44,51,54,46,53,57,50,55,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,56,52,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,57,50,55,57,55,44,51,56,46,50,49,57,50,55,49,93,44,91,45,56,57,46,53,57,53,48,55,51,44,51,55,46,57,53,53,51,52,51,93,44,91,45,56,57,46,49,55,55,53,57,55,44,51,55,46,57,53,48,51,49,49,93,44,91,45,56,57,46,49,50,57,54,51,50,44,51,56,46,49,50,52,55,54,55,93,44,91,45,56,57,46,49,52,55,53,57,55,44,51,56,46,50,49,50,56,57,53,93,44,91,45,56,57,46,53,57,50,55,57,55,44,51,56,46,50,49,57,50,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,71,114,117,110,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,52,49,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,55,44,52,50,46,53,53,54,56,49,93,44,91,45,57,51,46,48,48,50,57,48,50,44,52,50,46,52,55,48,54,51,56,93,44,91,45,57,51,46,48,48,49,54,55,52,44,52,50,46,50,48,57,50,54,55,93,44,91,45,57,50,46,55,54,55,52,54,51,44,52,50,46,50,49,48,49,52,93,44,91,45,57,50,46,55,54,56,48,57,44,52,50,46,50,57,54,54,56,93,44,91,45,57,50,46,53,51,51,53,49,44,52,50,46,50,57,55,48,48,49,93,44,91,45,57,50,46,53,53,52,51,44,52,50,46,53,53,53,56,53,52,93,44,91,45,57,51,46,48,50,55,44,52,50,46,53,53,54,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,82,111,117,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,55,52,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,52,51,57,51,56,54,44,52,48,46,50,50,51,51,55,57,93,44,91,45,49,48,55,46,48,51,55,57,50,56,44,52,48,46,50,50,53,51,55,50,93,44,91,45,49,48,55,46,48,51,55,51,54,51,44,52,48,46,48,57,49,53,51,56,93,44,91,45,49,48,55,46,48,51,51,57,54,56,44,51,57,46,57,49,56,57,49,51,93,44,91,45,49,48,54,46,54,50,54,53,54,57,44,51,57,46,57,50,52,55,56,53,93,44,91,45,49,48,54,46,54,51,50,50,53,55,44,52,48,46,51,52,49,53,53,57,93,44,91,45,49,48,54,46,54,53,50,49,49,50,44,52,48,46,52,52,53,50,51,49,93,44,91,45,49,48,54,46,55,48,54,49,52,57,44,52,48,46,54,49,54,53,57,55,93,44,91,45,49,48,54,46,54,51,54,57,50,50,44,52,48,46,55,56,57,52,56,57,93,44,91,45,49,48,54,46,56,54,57,56,57,49,44,52,48,46,57,53,54,55,50,93,44,91,45,49,48,54,46,56,53,55,55,55,51,44,52,49,46,48,48,50,54,54,51,93,44,91,45,49,48,55,46,51,49,55,55,57,52,44,52,49,46,48,48,50,57,50,93,44,91,45,49,48,55,46,51,49,52,49,53,51,44,52,48,46,54,48,48,50,56,49,93,44,91,45,49,48,55,46,52,50,56,56,49,51,44,52,48,46,53,52,50,50,48,55,93,44,91,45,49,48,55,46,52,51,57,51,56,54,44,52,48,46,50,50,51,51,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,83,111,109,101,114,115,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,48,49,55,54,44,34,98,101,100,115,34,58,57,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,50,53,54,54,54,44,52,48,46,55,49,57,53,51,50,93,44,91,45,55,52,46,55,49,51,49,53,44,52,48,46,53,56,51,57,48,51,93,44,91,45,55,52,46,55,55,53,57,55,57,44,52,48,46,53,48,51,54,48,54,93,44,91,45,55,52,46,55,52,56,49,52,55,44,52,48,46,52,50,52,49,53,54,93,44,91,45,55,52,46,54,50,48,50,52,44,52,48,46,51,55,51,55,52,57,93,44,91,45,55,52,46,52,53,57,56,54,51,44,52,48,46,52,57,49,48,52,54,93,44,91,45,55,52,46,52,54,51,50,57,49,44,52,48,46,53,57,57,49,56,55,93,44,91,45,55,52,46,52,54,49,48,51,53,44,52,48,46,54,55,51,53,48,52,93,44,91,45,55,52,46,53,53,54,48,49,56,44,52,48,46,55,53,56,50,56,56,93,44,91,45,55,52,46,55,50,53,54,54,54,44,52,48,46,55,49,57,53,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,111,108,117,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,56,57,48,48,49,51,44,51,57,46,51,56,51,56,54,52,93,44,91,45,49,50,50,46,48,48,56,56,53,55,44,51,57,46,52,49,51,53,54,55,93,44,91,45,49,50,50,46,49,51,54,48,48,54,44,51,57,46,51,56,53,52,57,52,93,44,91,45,49,50,50,46,55,51,57,48,54,50,44,51,57,46,51,56,51,50,54,54,93,44,91,45,49,50,50,46,55,55,53,48,52,51,44,51,57,46,51,49,49,55,55,56,93,44,91,45,49,50,50,46,54,57,49,51,54,49,44,51,57,46,50,52,55,52,51,49,93,44,91,45,49,50,50,46,53,49,53,51,51,49,44,51,57,46,50,48,57,50,49,53,93,44,91,45,49,50,50,46,52,56,51,56,55,57,44,51,57,46,48,54,54,57,53,53,93,44,91,45,49,50,50,46,51,52,48,49,55,50,44,51,56,46,57,50,52,50,52,54,93,44,91,45,49,50,49,46,56,51,53,52,56,56,44,51,56,46,57,50,52,52,56,49,93,44,91,45,49,50,49,46,56,49,57,49,52,50,44,51,56,46,57,56,56,53,53,49,93,44,91,45,49,50,49,46,57,52,53,53,49,52,44,51,57,46,49,55,57,56,52,51,93,44,91,45,49,50,49,46,57,48,56,50,54,57,44,51,57,46,51,48,51,56,55,56,93,44,91,45,49,50,49,46,56,57,48,48,49,51,44,51,57,46,51,56,51,56,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,50,55,55,93,44,91,45,56,57,46,48,52,49,52,48,49,44,51,55,46,53,57,54,53,55,54,93,44,91,45,56,57,46,48,52,52,55,57,57,44,51,55,46,51,50,57,55,49,55,93,44,91,45,56,56,46,57,50,56,55,53,55,44,51,55,46,51,48,50,56,52,56,93,44,91,45,56,56,46,55,49,48,55,51,56,44,51,55,46,51,51,55,48,56,49,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,48,53,57,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,72,105,110,115,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,53,54,56,54,50,44,51,56,46,49,52,55,50,54,55,93,44,91,45,49,48,55,46,53,49,54,56,51,44,51,56,46,48,54,57,55,52,49,93,44,91,45,49,48,55,46,53,54,56,56,55,53,44,51,55,46,57,54,53,48,49,53,93,44,91,45,49,48,55,46,52,56,50,50,52,53,44,51,55,46,55,54,56,51,53,51,93,44,91,45,49,48,55,46,52,56,50,49,55,57,44,51,55,46,54,51,57,53,48,49,93,44,91,45,49,48,55,46,52,56,50,49,51,49,44,51,55,46,52,50,50,54,55,51,93,44,91,45,49,48,55,46,49,50,56,54,56,44,51,55,46,52,50,50,57,52,50,93,44,91,45,49,48,55,46,49,52,53,49,51,56,44,51,55,46,54,55,53,52,57,55,93,44,91,45,49,48,55,46,49,51,56,49,57,49,44,51,55,46,57,51,56,56,52,56,93,44,91,45,49,48,55,46,48,48,48,54,48,50,44,51,55,46,57,53,54,48,52,49,93,44,91,45,49,48,55,46,48,48,49,49,49,57,44,51,56,46,49,52,55,48,55,50,93,44,91,45,49,48,55,46,53,54,56,54,50,44,51,56,46,49,52,55,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,97,115,115,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,54,49,53,44,34,98,101,100,115,34,58,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,52,55,50,49,55,55,44,52,50,46,54,54,57,51,53,50,93,44,91,45,49,49,51,46,53,53,55,49,57,51,44,52,50,46,54,53,54,55,57,57,93,44,91,45,49,49,51,46,54,53,52,49,52,57,44,52,50,46,53,51,54,49,53,53,93,44,91,45,49,49,51,46,57,51,49,55,57,57,44,52,50,46,53,51,53,50,52,51,93,44,91,45,49,49,52,46,48,48,48,51,56,56,44,52,50,46,53,50,54,51,55,51,93,44,91,45,49,49,52,46,48,54,57,49,54,50,44,52,50,46,52,49,55,49,50,52,93,44,91,45,49,49,52,46,50,56,53,52,52,56,44,52,50,46,52,49,55,51,51,51,93,44,91,45,49,49,52,46,50,56,49,55,57,57,44,52,49,46,57,57,52,52,52,49,93,44,91,45,49,49,52,46,48,52,49,52,55,55,44,52,49,46,57,57,51,56,55,51,93,44,91,45,49,49,51,46,56,49,52,56,56,52,44,52,49,46,57,56,56,54,53,52,93,44,91,45,49,49,51,46,48,48,48,48,52,49,44,52,49,46,57,57,56,50,48,52,93,44,91,45,49,49,50,46,57,57,57,57,54,53,44,52,50,46,51,50,55,52,50,55,93,44,91,45,49,49,51,46,48,48,50,55,57,50,44,52,50,46,53,56,56,48,48,51,93,44,91,45,49,49,51,46,50,51,54,57,54,56,44,52,50,46,54,50,53,50,53,52,93,44,91,45,49,49,51,46,51,55,53,48,54,50,44,52,50,46,54,56,55,56,51,50,93,44,91,45,49,49,51,46,52,55,50,49,55,55,44,52,50,46,54,54,57,51,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,73,115,97,110,116,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,57,55,52,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,49,51,54,56,51,44,52,53,46,55,51,52,51,49,56,93,44,91,45,57,51,46,53,49,48,55,48,52,44,52,53,46,53,53,56,55,55,50,93,44,91,45,57,51,46,53,49,48,48,55,44,52,53,46,52,49,52,55,57,56,93,44,91,45,57,51,46,48,49,57,53,54,51,44,52,53,46,52,49,49,55,55,93,44,91,45,57,51,46,48,50,50,50,55,52,44,52,53,46,53,53,55,49,53,52,93,44,91,45,57,51,46,49,52,49,57,55,52,44,52,53,46,53,53,56,49,48,57,93,44,91,45,57,51,46,49,52,49,55,57,51,44,52,53,46,55,51,48,54,53,55,93,44,91,45,57,51,46,53,49,51,54,56,51,44,52,53,46,55,51,52,51,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,69,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,53,57,55,50,44,34,98,101,100,115,34,58,49,49,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,56,53,49,44,52,50,46,51,50,55,49,51,50,93,44,91,45,56,48,46,53,49,57,51,53,52,44,52,49,46,56,52,57,53,54,51,93,44,91,45,55,57,46,54,49,50,48,55,50,44,52,49,46,56,53,48,48,53,54,93,44,91,45,55,57,46,54,49,48,56,51,57,44,52,49,46,57,57,57,48,48,54,93,44,91,45,55,57,46,55,54,49,51,49,51,44,52,49,46,57,57,56,56,48,56,93,44,91,45,55,57,46,55,54,50,52,49,56,44,52,50,46,53,49,54,48,55,50,93,44,91,45,56,48,46,48,56,48,50,50,50,44,52,50,46,51,57,52,49,54,50,93,44,91,45,56,48,46,53,49,57,56,53,49,44,52,50,46,51,50,55,49,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,112,105,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,55,50,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,51,48,51,51,49,44,51,50,46,48,52,57,55,50,56,93,44,91,45,57,48,46,55,49,56,50,57,55,44,51,50,46,48,52,56,51,53,50,93,44,91,45,57,48,46,55,51,54,50,56,50,44,51,49,46,55,56,54,49,51,52,93,44,91,45,57,48,46,55,51,54,56,50,52,44,51,49,46,54,57,56,52,57,49,93,44,91,45,57,48,46,50,55,57,57,53,51,44,51,49,46,54,57,57,56,54,53,93,44,91,45,57,48,46,50,52,53,49,57,49,44,51,49,46,55,49,55,53,50,52,93,44,91,45,57,48,46,49,50,50,53,54,53,44,51,49,46,55,53,50,54,56,93,44,91,45,57,48,46,49,51,50,53,53,50,44,51,49,46,56,53,54,57,50,51,93,44,91,45,57,48,46,50,51,48,51,51,49,44,51,50,46,48,52,57,55,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,54,55,34,44,34,78,65,77,69,34,58,34,86,97,110,32,90,97,110,100,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,51,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,55,54,56,48,49,44,51,50,46,56,51,56,52,56,57,93,44,91,45,57,54,46,48,55,53,56,57,57,44,51,50,46,51,53,55,53,48,53,93,44,91,45,57,53,46,52,52,57,49,54,53,44,51,50,46,51,53,53,50,51,51,93,44,91,45,57,53,46,53,57,52,51,44,51,50,46,52,55,57,56,53,56,93,44,91,45,57,53,46,53,57,52,53,52,49,44,51,50,46,54,56,55,48,50,54,93,44,91,45,57,53,46,54,51,53,48,49,55,44,51,50,46,55,50,48,51,56,93,44,91,45,57,53,46,57,51,52,52,51,51,44,51,50,46,56,51,55,50,49,55,93,44,91,45,57,54,46,48,55,54,56,48,49,44,51,50,46,56,51,56,52,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,82,111,97,110,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,53,56,51,44,34,98,101,100,115,34,58,50,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,52,55,52,55,54,44,51,55,46,51,48,57,51,53,50,93,44,91,45,56,48,46,48,55,52,49,49,57,44,51,55,46,52,50,50,52,54,57,93,44,91,45,56,48,46,50,54,50,49,56,52,44,51,55,46,51,52,49,53,50,54,93,44,91,45,56,48,46,49,57,48,55,51,56,44,51,55,46,50,50,55,55,56,51,93,44,91,45,56,48,46,49,55,56,49,50,53,44,51,55,46,49,49,51,52,93,44,91,45,56,48,46,49,50,56,54,55,52,44,51,55,46,49,50,50,57,48,49,93,44,91,45,55,57,46,57,54,49,56,57,44,51,55,46,49,51,55,51,52,57,93,44,91,45,55,57,46,56,52,55,50,49,55,44,51,55,46,50,50,53,52,48,54,93,44,91,45,55,57,46,56,52,55,52,55,54,44,51,55,46,51,48,57,51,53,50,93,93,44,91,91,45,56,48,46,48,50,50,50,50,54,44,51,55,46,51,48,56,51,51,56,93,44,91,45,55,57,46,57,48,53,52,54,44,51,55,46,51,50,49,56,51,53,93,44,91,45,55,57,46,57,52,54,56,49,55,44,51,55,46,50,49,51,48,51,55,93,44,91,45,56,48,46,48,51,51,52,54,52,44,51,55,46,50,54,50,56,57,93,44,91,45,56,48,46,48,57,51,54,55,53,44,51,55,46,50,56,50,53,48,50,93,44,91,45,56,48,46,48,50,50,50,50,54,44,51,55,46,51,48,56,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,65,117,103,117,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,55,48,49,44,34,98,101,100,115,34,58,51,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,56,50,54,54,56,44,51,56,46,48,56,54,48,53,52,93,44,91,45,55,57,46,49,53,55,51,57,44,51,55,46,56,57,49,48,48,51,93,44,91,45,55,57,46,48,48,53,49,50,57,44,51,55,46,56,56,49,54,57,93,44,91,45,55,56,46,56,51,56,56,55,52,44,51,56,46,48,52,55,51,55,93,44,91,45,55,56,46,55,52,57,51,57,54,44,51,56,46,50,48,54,54,52,56,93,44,91,45,55,57,46,50,50,52,53,56,51,44,51,56,46,52,55,55,53,56,56,93,44,91,45,55,57,46,51,49,50,50,55,54,44,51,56,46,52,49,49,56,55,54,93,44,91,45,55,57,46,52,51,51,54,55,44,51,56,46,50,50,57,52,57,51,93,44,91,45,55,57,46,53,49,50,49,53,56,44,51,56,46,49,56,48,52,49,57,93,44,91,45,55,57,46,52,56,50,54,54,56,44,51,56,46,48,56,54,48,53,52,93,93,44,91,91,45,55,56,46,57,52,56,53,48,57,44,51,56,46,48,54,56,49,48,52,93,44,91,45,55,56,46,57,48,51,55,57,53,44,51,56,46,48,57,57,56,48,50,93,44,91,45,55,56,46,56,54,50,54,55,55,44,51,56,46,48,56,57,57,55,50,93,44,91,45,55,56,46,56,57,49,55,55,50,44,51,56,46,48,51,57,52,51,56,93,44,91,45,55,56,46,57,52,56,53,48,57,44,51,56,46,48,54,56,49,48,52,93,93,44,91,91,45,55,57,46,48,55,55,53,54,49,44,51,56,46,49,50,54,52,54,93,44,91,45,55,57,46,48,57,51,55,57,49,44,51,56,46,49,56,54,50,56,55,93,44,91,45,55,57,46,48,51,51,55,56,57,44,51,56,46,49,57,57,48,49,56,93,44,91,45,55,57,46,48,50,48,51,48,56,44,51,56,46,49,52,51,55,50,53,93,44,91,45,55,57,46,48,55,55,53,54,49,44,51,56,46,49,50,54,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,54,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,48,34,44,34,78,65,77,69,34,58,34,66,114,105,115,116,111,108,32,66,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,55,46,49,57,54,50,57,50,44,53,56,46,56,52,54,50,52,57,93,44,91,45,49,53,55,46,57,57,57,57,53,57,44,53,56,46,54,52,50,49,54,56,93,44,91,45,49,53,56,44,53,56,46,54,49,54,54,54,55,93,44,91,45,49,53,54,46,51,49,51,56,56,57,44,53,56,46,54,49,54,54,54,54,93,44,91,45,49,53,54,46,51,49,51,56,56,57,44,53,56,46,56,56,53,56,51,51,93,44,91,45,49,53,55,46,48,52,53,52,57,54,44,53,56,46,56,56,53,56,51,51,93,44,91,45,49,53,55,46,49,57,54,50,57,50,44,53,56,46,56,52,54,50,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,80,105,117,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,53,49,56,52,57,53,44,51,56,46,53,49,48,52,49,51,93,44,91,45,49,49,50,46,52,52,52,48,56,49,44,51,56,46,52,48,53,54,52,54,93,44,91,45,49,49,50,46,51,51,53,53,49,44,51,56,46,51,51,50,51,52,52,93,44,91,45,49,49,50,46,52,52,52,50,49,52,44,51,56,46,49,53,48,48,48,49,93,44,91,45,49,49,49,46,56,52,51,50,49,53,44,51,56,46,49,53,49,50,56,93,44,91,45,49,49,49,46,56,52,56,55,54,49,44,51,56,46,52,50,52,57,51,51,93,44,91,45,49,49,49,46,55,54,54,51,57,51,44,51,56,46,53,48,50,50,52,51,93,44,91,45,49,49,50,46,53,49,56,52,57,53,44,51,56,46,53,49,48,52,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,53,51,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,57,49,54,48,53,44,51,56,46,53,57,51,55,48,49,93,44,91,45,56,51,46,57,51,48,51,52,56,44,51,56,46,52,57,50,50,55,56,93,44,91,45,56,51,46,56,53,57,50,56,44,51,56,46,52,53,54,51,52,56,93,44,91,45,56,51,46,54,52,49,56,53,50,44,51,56,46,53,50,53,51,56,49,93,44,91,45,56,51,46,54,52,52,57,49,51,44,51,56,46,54,51,54,51,52,51,93,44,91,45,56,51,46,55,48,53,51,49,49,44,51,56,46,54,51,57,56,53,51,93,44,91,45,56,51,46,57,48,51,57,48,49,44,51,56,46,55,54,56,49,56,50,93,44,91,45,56,51,46,57,57,49,54,48,53,44,51,56,46,53,57,51,55,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,55,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,55,49,55,55,54,44,52,53,46,55,55,53,50,48,56,93,44,91,45,57,52,46,49,52,57,52,54,55,44,52,53,46,53,53,57,48,54,54,93,44,91,45,57,51,46,55,53,57,52,51,53,44,52,53,46,53,53,57,54,52,54,93,44,91,45,57,51,46,55,54,51,57,52,56,44,52,53,46,56,50,50,49,52,51,93,44,91,45,57,52,46,51,53,51,49,49,50,44,52,53,46,56,50,49,57,54,55,93,44,91,45,57,52,46,50,55,49,55,55,54,44,52,53,46,55,55,53,50,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,68,111,110,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,57,52,52,57,51,57,44,51,52,46,55,52,56,50,56,49,93,44,91,45,49,48,48,46,53,52,48,55,48,51,44,51,52,46,55,52,55,55,50,51,93,44,91,45,49,48,48,46,53,51,56,57,55,56,44,51,53,46,49,56,51,49,52,52,93,44,91,45,49,48,49,46,48,56,54,50,56,49,44,51,53,46,49,56,50,49,52,93,44,91,45,49,48,49,46,48,57,48,55,52,57,44,51,52,46,55,52,56,50,52,54,93,44,91,45,49,48,48,46,57,52,52,57,51,57,44,51,52,46,55,52,56,50,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,52,56,50,44,34,98,101,100,115,34,58,55,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,57,50,55,51,54,44,51,48,46,51,56,57,51,50,93,44,91,45,56,53,46,57,57,57,56,57,51,44,51,48,46,50,49,51,48,57,93,44,91,45,56,53,46,52,52,54,50,56,57,44,50,57,46,57,48,49,48,51,51,93,44,91,45,56,53,46,51,56,56,54,54,57,44,50,57,46,57,50,52,51,53,57,93,44,91,45,56,53,46,51,56,57,54,55,57,44,51,48,46,50,48,48,57,55,51,93,44,91,45,56,53,46,51,56,51,57,52,56,44,51,48,46,53,54,54,56,53,54,93,44,91,45,56,53,46,52,51,52,55,56,50,44,51,48,46,53,54,55,53,54,93,44,91,45,56,53,46,52,56,55,57,54,56,44,51,48,46,52,51,54,54,53,53,93,44,91,45,56,53,46,56,53,51,53,44,51,48,46,52,52,48,54,50,51,93,44,91,45,56,53,46,57,57,50,55,51,54,44,51,48,46,51,56,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,97,117,100,101,114,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,53,56,53,44,34,98,101,100,115,34,58,51,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,57,55,56,56,56,44,51,52,46,56,57,50,50,48,50,93,44,91,45,56,55,46,57,55,51,50,50,50,44,51,52,46,56,56,50,53,53,93,44,91,45,56,55,46,56,51,53,56,51,51,44,51,52,46,55,52,49,50,51,57,93,44,91,45,56,55,46,53,50,52,51,54,51,44,51,52,46,56,51,50,51,56,52,93,44,91,45,56,55,46,52,50,54,53,49,44,51,52,46,56,48,48,48,50,50,93,44,91,45,56,55,46,50,54,48,54,55,54,44,51,52,46,55,53,56,54,50,54,93,44,91,45,56,55,46,50,49,52,57,49,52,44,51,52,46,56,49,54,48,49,49,93,44,91,45,56,55,46,50,49,48,55,53,57,44,51,52,46,57,57,57,48,50,52,93,44,91,45,56,55,46,50,50,52,48,53,50,44,51,52,46,57,57,57,51,55,55,93,44,91,45,56,55,46,54,48,54,48,51,49,44,51,53,46,48,48,51,52,50,53,93,44,91,45,56,55,46,57,56,52,57,49,54,44,51,53,46,48,48,53,57,51,51,93,44,91,45,56,56,46,50,48,48,48,54,52,44,51,52,46,57,57,53,54,51,52,93,44,91,45,56,56,46,48,57,55,56,56,56,44,51,52,46,56,57,50,50,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,70,111,117,110,116,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,57,50,49,52,56,44,52,48,46,51,54,54,54,49,50,93,44,91,45,56,55,46,50,52,52,56,57,56,44,52,48,46,51,48,57,50,53,50,93,44,91,45,56,55,46,52,48,54,54,54,55,44,52,48,46,49,50,55,53,48,56,93,44,91,45,56,55,46,52,50,48,50,50,49,44,51,57,46,57,53,50,52,53,50,93,44,91,45,56,55,46,48,57,49,48,48,54,44,51,57,46,57,53,51,48,48,57,93,44,91,45,56,55,46,48,57,50,53,54,51,44,52,48,46,50,49,52,56,48,54,93,44,91,45,56,55,46,48,57,50,49,52,56,44,52,48,46,51,54,54,54,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,51,50,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,50,53,54,56,44,51,57,46,54,53,52,49,56,51,93,44,91,45,56,57,46,48,50,53,52,53,51,44,51,57,46,51,52,54,49,49,53,93,44,91,45,56,57,46,49,51,57,56,48,55,44,51,57,46,51,52,56,56,56,56,93,44,91,45,56,57,46,49,51,57,52,54,52,44,51,57,46,50,49,55,55,55,51,93,44,91,45,56,56,46,56,48,53,51,50,53,44,51,57,46,50,49,54,50,54,51,93,44,91,45,56,56,46,52,55,48,57,48,54,44,51,57,46,50,49,53,48,50,57,93,44,91,45,56,56,46,52,55,48,56,51,44,51,57,46,51,55,52,53,49,53,93,44,91,45,56,56,46,52,55,48,53,48,53,44,51,57,46,52,52,55,48,52,49,93,44,91,45,56,56,46,53,56,52,50,55,51,44,51,57,46,52,52,55,53,56,50,93,44,91,45,56,56,46,56,49,48,53,55,53,44,51,57,46,54,53,51,50,50,50,93,44,91,45,56,57,46,48,50,53,54,56,44,51,57,46,54,53,52,49,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,50,52,44,34,98,101,100,115,34,58,49,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,51,57,52,54,52,44,51,57,46,50,49,55,55,55,51,93,44,91,45,56,57,46,50,53,48,53,49,51,44,51,57,46,50,49,55,53,49,50,93,44,91,45,56,57,46,50,53,48,51,48,57,44,51,57,46,48,50,56,49,56,53,93,44,91,45,56,57,46,50,53,52,49,56,53,44,51,56,46,55,52,50,48,49,56,93,44,91,45,56,57,46,49,51,56,51,57,51,44,51,56,46,55,51,54,51,51,49,93,44,91,45,56,57,46,49,51,56,49,51,56,44,51,56,46,56,50,52,50,48,57,93,44,91,45,56,56,46,54,57,53,49,54,53,44,51,56,46,56,50,54,50,57,57,93,44,91,45,56,56,46,54,57,51,53,51,49,44,51,56,46,57,49,52,54,49,55,93,44,91,45,56,56,46,56,48,54,55,57,53,44,51,56,46,57,49,49,53,56,53,93,44,91,45,56,56,46,56,48,53,51,50,53,44,51,57,46,50,49,54,50,54,51,93,44,91,45,56,57,46,49,51,57,52,54,52,44,51,57,46,50,49,55,55,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,57,56,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,54,50,56,49,51,44,51,57,46,57,51,48,51,56,93,44,91,45,56,50,46,51,57,54,53,57,52,44,51,57,46,56,51,51,48,53,55,93,44,91,45,56,50,46,51,55,52,53,51,49,44,51,57,46,54,53,52,57,53,57,93,44,91,45,56,50,46,51,55,57,56,57,44,51,57,46,53,57,54,55,51,56,93,44,91,45,56,50,46,49,53,57,49,54,49,44,51,57,46,53,53,54,53,55,52,93,44,91,45,56,50,46,48,52,55,53,50,56,44,51,57,46,53,53,48,56,50,53,93,44,91,45,56,50,46,48,50,52,50,49,57,44,51,57,46,55,50,52,54,56,54,93,44,91,45,56,50,46,48,55,54,54,51,57,44,51,57,46,55,55,48,57,54,93,44,91,45,56,50,46,50,51,51,57,55,52,44,51,57,46,57,49,51,50,54,93,44,91,45,56,50,46,52,54,50,56,49,51,44,51,57,46,57,51,48,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,57,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,57,48,34,44,34,78,65,77,69,34,58,34,68,97,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,53,49,50,44,34,98,101,100,115,34,58,51,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,51,52,51,49,49,55,44,51,54,46,53,52,49,53,57,93,44,91,45,55,57,46,51,57,56,48,57,52,44,51,54,46,54,52,52,48,51,55,93,44,91,45,55,57,46,52,55,48,48,53,55,44,51,54,46,53,52,48,57,55,49,93,44,91,45,55,57,46,51,52,51,49,49,55,44,51,54,46,53,52,49,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,97,110,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,49,53,50,53,49,44,51,52,46,52,51,49,55,52,56,93,44,91,45,56,51,46,54,50,48,49,49,53,44,51,52,46,50,57,53,50,55,54,93,44,91,45,56,51,46,52,56,48,51,54,49,44,51,52,46,50,54,50,48,51,56,93,44,91,45,56,51,46,52,48,50,52,50,56,44,51,52,46,49,57,55,52,57,57,93,44,91,45,56,51,46,51,53,53,50,53,49,44,51,52,46,50,50,51,55,57,52,93,44,91,45,56,51,46,51,57,56,51,57,54,44,51,52,46,52,54,48,56,56,51,93,44,91,45,56,51,46,52,53,57,55,55,44,51,52,46,52,56,49,49,52,50,93,44,91,45,56,51,46,54,49,53,50,53,49,44,51,52,46,52,51,49,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,53,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,55,54,55,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,52,56,53,56,50,44,51,49,46,56,50,55,48,55,53,93,44,91,45,56,50,46,49,51,51,48,49,51,44,51,49,46,55,55,51,52,48,52,93,44,91,45,56,50,46,49,51,50,55,57,52,44,51,49,46,52,55,49,50,54,50,93,44,91,45,56,50,46,48,52,49,49,50,57,44,51,49,46,51,55,51,55,50,49,93,44,91,45,56,49,46,55,51,49,54,57,52,44,51,49,46,51,51,48,48,52,56,93,44,91,45,56,49,46,54,50,52,50,57,44,51,49,46,52,53,50,57,56,50,93,44,91,45,56,49,46,54,54,51,50,48,54,44,51,49,46,53,51,56,54,54,55,93,44,91,45,56,49,46,56,50,51,57,50,49,44,51,49,46,54,53,49,56,48,57,93,44,91,45,56,49,46,57,54,57,48,53,50,44,51,49,46,55,56,57,51,50,52,93,44,91,45,56,50,46,48,52,56,53,56,50,44,51,49,46,56,50,55,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,50,48,53,49,44,34,98,101,100,115,34,58,52,52,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,55,52,48,50,54,44,51,53,46,55,50,53,57,55,93,44,91,45,57,55,46,54,55,49,51,54,57,44,51,53,46,51,55,55,49,53,49,93,44,91,45,57,55,46,49,52,50,49,49,52,44,51,53,46,51,55,54,56,54,93,44,91,45,57,55,46,49,52,49,52,57,44,51,53,46,52,54,51,57,55,55,93,44,91,45,57,55,46,49,52,49,48,54,54,44,51,53,46,55,50,52,52,48,49,93,44,91,45,57,55,46,54,55,52,48,50,54,44,51,53,46,55,50,53,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,52,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,51,51,53,48,51,44,51,52,46,49,55,50,55,52,56,93,44,91,45,57,54,46,54,54,57,57,54,51,44,51,52,46,49,55,50,53,50,49,93,44,91,45,57,54,46,53,56,53,51,53,53,44,51,52,46,49,49,52,52,53,57,93,44,91,45,57,54,46,52,48,55,53,49,55,44,51,52,46,49,53,55,51,49,55,93,44,91,45,57,54,46,52,48,55,48,55,52,44,51,52,46,52,49,56,51,57,93,44,91,45,57,54,46,53,49,51,55,56,55,44,51,52,46,53,48,53,51,57,54,93,44,91,45,57,54,46,56,50,55,51,52,51,44,51,52,46,53,48,54,48,54,50,93,44,91,45,57,54,46,56,56,48,55,57,44,51,52,46,53,48,54,48,53,51,93,44,91,45,57,54,46,57,51,51,51,48,53,44,51,52,46,51,51,50,53,54,49,93,44,91,45,57,54,46,57,51,51,53,48,51,44,51,52,46,49,55,50,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,50,53,54,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,51,57,54,48,57,44,51,53,46,51,51,48,57,57,51,93,44,91,45,56,51,46,49,48,56,53,54,56,44,51,53,46,48,48,49,51,53,52,93,44,91,45,56,51,46,48,48,56,53,51,49,44,51,53,46,48,50,55,51,57,52,93,44,91,45,56,50,46,57,50,48,56,56,49,44,51,53,46,50,57,50,48,51,55,93,44,91,45,56,51,46,49,56,54,51,50,50,44,51,53,46,53,49,52,51,54,56,93,44,91,45,56,51,46,51,54,51,55,54,54,44,51,53,46,52,50,54,57,50,51,93,44,91,45,56,51,46,51,51,57,54,48,57,44,51,53,46,51,51,48,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,83,117,109,109,105,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,49,49,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,53,53,51,50,54,54,44,52,48,46,54,48,57,51,49,51,93,44,91,45,49,49,49,46,51,55,53,52,56,49,44,52,48,46,54,51,51,49,49,54,93,44,91,45,49,49,49,46,49,52,55,50,49,54,44,52,48,46,53,52,57,54,48,50,93,44,91,45,49,49,48,46,57,55,54,48,56,54,44,52,48,46,53,57,50,57,53,52,93,44,91,45,49,49,48,46,57,48,49,57,55,52,44,52,48,46,54,55,56,49,54,50,93,44,91,45,49,49,48,46,55,53,48,55,51,51,44,52,48,46,55,52,55,55,48,54,93,44,91,45,49,49,48,46,54,53,54,52,56,50,44,52,48,46,55,52,48,50,55,53,93,44,91,45,49,49,48,46,51,55,56,57,54,50,44,52,48,46,55,56,55,49,56,93,44,91,45,49,49,48,46,50,54,48,57,54,55,44,52,48,46,56,51,52,56,50,52,93,44,91,45,49,49,48,46,48,48,48,55,49,49,44,52,48,46,56,49,51,54,55,56,93,44,91,45,49,49,48,46,48,48,48,55,49,55,44,52,48,46,57,57,55,52,53,93,44,91,45,49,49,48,46,48,52,56,52,56,51,44,52,48,46,57,57,55,50,57,53,93,44,91,45,49,49,49,46,48,52,54,56,49,53,44,52,48,46,57,57,55,56,55,53,93,44,91,45,49,49,49,46,48,52,54,55,54,54,44,52,49,46,50,53,49,54,50,55,93,44,91,45,49,49,49,46,50,54,52,57,55,52,44,52,49,46,49,52,52,48,52,52,93,44,91,45,49,49,49,46,53,48,55,53,49,44,52,49,46,48,54,51,50,51,52,93,44,91,45,49,49,49,46,52,56,54,49,53,57,44,52,48,46,56,55,51,49,50,52,93,44,91,45,49,49,49,46,53,50,55,52,54,53,44,52,48,46,55,56,53,55,53,50,93,44,91,45,49,49,49,46,54,52,49,48,53,50,44,52,48,46,55,57,56,57,50,53,93,44,91,45,49,49,49,46,53,53,51,50,54,54,44,52,48,46,54,48,57,51,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,52,57,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,50,56,52,48,52,44,51,55,46,56,50,57,52,51,53,93,44,91,45,57,51,46,54,49,54,48,51,51,44,51,55,46,53,55,50,54,56,57,93,44,91,45,57,51,46,54,50,49,49,53,51,44,51,55,46,52,50,55,52,50,51,93,44,91,45,57,51,46,49,56,50,52,56,57,44,51,55,46,52,49,55,50,48,52,93,44,91,45,57,51,46,49,56,55,57,49,53,44,51,55,46,56,48,50,55,51,55,93,44,91,45,57,51,46,53,55,51,50,48,50,44,51,55,46,56,50,56,48,51,53,93,44,91,45,57,51,46,54,50,56,52,48,52,44,51,55,46,56,50,57,52,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,76,97,110,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,52,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,51,48,48,53,57,55,44,52,48,46,53,50,54,49,51,54,93,44,91,45,49,49,55,46,53,52,49,55,52,57,44,52,48,46,48,48,49,48,51,52,93,44,91,45,49,49,55,46,52,54,49,51,52,44,51,57,46,56,54,55,56,49,56,93,44,91,45,49,49,55,46,52,57,53,51,52,52,44,51,57,46,55,52,56,51,54,52,93,44,91,45,49,49,55,46,52,56,53,51,51,54,44,51,57,46,53,52,53,51,50,50,93,44,91,45,49,49,55,46,53,56,55,49,52,44,51,57,46,53,49,56,53,50,49,93,44,91,45,49,49,55,46,54,52,54,48,49,49,44,51,57,46,52,50,54,54,48,50,93,44,91,45,49,49,55,46,55,54,51,48,52,54,44,51,57,46,51,53,50,56,51,93,44,91,45,49,49,55,46,55,49,57,57,53,44,51,57,46,50,51,54,56,50,49,93,44,91,45,49,49,55,46,55,55,53,52,54,56,44,51,57,46,48,57,51,52,50,53,93,44,91,45,49,49,55,46,51,51,49,56,53,55,44,51,57,46,49,54,51,52,51,93,44,91,45,49,49,54,46,54,48,48,57,52,54,44,51,57,46,49,54,49,52,54,51,93,44,91,45,49,49,54,46,53,57,48,51,57,54,44,52,48,46,48,55,50,50,55,55,93,44,91,45,49,49,54,46,53,57,54,56,49,53,44,52,48,46,57,52,54,52,54,93,44,91,45,49,49,54,46,53,56,54,55,56,54,44,52,49,46,48,48,48,51,57,56,93,44,91,45,49,49,55,46,48,49,56,52,49,57,44,52,49,46,48,48,48,50,53,52,93,44,91,45,49,49,55,46,48,49,56,54,54,52,44,52,48,46,54,52,51,48,51,53,93,44,91,45,49,49,55,46,50,52,54,55,56,56,44,52,48,46,54,52,50,52,52,53,93,44,91,45,49,49,55,46,51,48,48,53,57,55,44,52,48,46,53,50,54,49,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,87,105,110,110,101,115,104,105,101,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,55,57,56,48,50,44,52,51,46,53,48,48,54,50,49,93,44,91,45,57,50,46,48,56,48,57,55,54,44,52,51,46,50,49,50,57,52,55,93,44,91,45,57,50,46,48,56,49,49,52,54,44,52,51,46,48,56,50,55,57,52,93,44,91,45,57,49,46,54,48,53,51,48,55,44,52,51,46,48,56,49,54,53,51,93,44,91,45,57,49,46,54,49,48,56,51,53,44,52,51,46,53,48,48,54,53,55,93,44,91,45,57,49,46,55,51,48,50,49,55,44,52,51,46,53,48,48,56,48,54,93,44,91,45,57,50,46,48,55,57,56,48,50,44,52,51,46,53,48,48,54,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,114,97,99,107,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,51,48,52,49,49,44,51,56,46,56,50,55,52,51,55,93,44,91,45,56,52,46,50,48,53,51,52,54,44,51,56,46,53,56,50,48,51,57,93,44,91,45,56,52,46,49,54,50,48,51,49,44,51,56,46,53,53,52,49,50,53,93,44,91,45,56,51,46,57,57,49,54,48,53,44,51,56,46,53,57,51,55,48,49,93,44,91,45,56,51,46,57,48,51,57,48,49,44,51,56,46,55,54,56,49,56,50,93,44,91,45,56,52,46,48,53,50,55,48,57,44,51,56,46,55,55,49,50,50,54,93,44,91,45,56,52,46,50,51,48,52,49,49,44,51,56,46,56,50,55,52,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,70,108,111,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,56,51,51,49,50,44,52,54,46,48,49,52,49,49,51,93,44,91,45,56,56,46,54,55,53,56,50,49,44,52,53,46,55,50,50,57,93,44,91,45,56,56,46,52,50,53,51,48,50,44,52,53,46,55,50,50,52,50,54,93,44,91,45,56,56,46,48,53,57,50,52,54,44,52,53,46,55,49,51,48,54,51,93,44,91,45,56,56,46,48,53,56,50,53,51,44,52,53,46,55,56,48,54,50,57,93,44,91,45,56,56,46,49,49,54,56,52,53,44,52,53,46,57,50,49,54,50,55,93,44,91,45,56,56,46,53,48,55,52,56,44,52,54,46,48,49,56,53,49,54,93,44,91,45,56,56,46,54,56,51,51,49,50,44,52,54,46,48,49,52,49,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,82,111,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,48,53,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,55,56,52,49,50,44,51,56,46,57,49,52,56,54,55,93,44,91,45,56,49,46,53,48,50,54,50,56,44,51,56,46,57,49,55,57,50,50,93,44,91,45,56,49,46,53,52,54,54,51,49,44,51,56,46,54,55,50,51,56,55,93,44,91,45,56,49,46,53,50,50,49,54,54,44,51,56,46,54,49,50,55,52,54,93,44,91,45,56,49,46,52,54,53,51,55,50,44,51,56,46,53,52,57,56,57,56,93,44,91,45,56,49,46,49,57,52,49,49,51,44,51,56,46,53,50,55,54,51,52,93,44,91,45,56,49,46,48,56,51,55,49,44,51,56,46,54,49,49,57,56,50,93,44,91,45,56,49,46,50,55,56,52,49,50,44,51,56,46,57,49,52,56,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,87,97,100,101,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,52,54,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,54,51,55,49,44,52,54,46,55,49,55,54,52,93,44,91,45,57,53,46,49,53,53,53,55,44,52,54,46,51,54,56,56,56,93,44,91,45,57,52,46,55,51,49,52,52,50,44,52,54,46,51,54,56,54,48,53,93,44,91,45,57,52,46,55,55,57,49,50,49,44,52,54,46,51,57,52,50,49,53,93,44,91,45,57,52,46,55,56,55,49,50,54,44,52,54,46,56,48,51,57,52,51,93,44,91,45,57,53,46,49,54,51,48,49,44,52,54,46,56,48,52,55,50,93,44,91,45,57,53,46,49,54,51,55,49,44,52,54,46,55,49,55,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,55,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,55,48,34,44,34,78,65,77,69,34,58,34,72,111,112,101,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,48,56,44,34,98,101,100,115,34,58,49,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,51,53,54,54,54,44,51,55,46,51,49,51,48,51,57,93,44,91,45,55,55,46,51,50,53,51,50,44,51,55,46,50,54,48,57,51,50,93,44,91,45,55,55,46,50,55,51,54,49,52,44,51,55,46,50,55,56,51,48,56,93,44,91,45,55,55,46,50,56,52,48,49,57,44,51,55,46,51,49,51,48,49,50,93,44,91,45,55,55,46,51,51,53,54,54,54,44,51,55,46,51,49,51,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,87,105,110,110,101,98,97,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,49,55,52,44,34,98,101,100,115,34,58,57,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,48,49,52,50,51,44,52,50,46,53,48,48,53,53,52,93,44,91,45,56,57,46,51,57,54,49,57,50,44,52,50,46,50,48,49,57,49,54,93,44,91,45,56,57,46,49,55,51,44,52,50,46,50,48,52,50,52,49,93,44,91,45,56,57,46,49,55,50,56,48,51,44,52,50,46,49,53,48,52,49,55,93,44,91,45,56,56,46,57,51,57,55,51,50,44,52,50,46,49,53,50,51,50,93,44,91,45,56,56,46,57,52,48,51,56,56,44,52,50,46,52,57,53,48,52,53,93,44,91,45,56,57,46,51,54,53,55,57,56,44,52,50,46,53,48,48,48,55,56,93,44,91,45,56,57,46,52,48,49,52,50,51,44,52,50,46,53,48,48,53,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,71,105,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,52,48,48,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,52,57,52,55,55,56,44,51,51,46,57,57,57,56,49,55,93,44,91,45,49,49,49,46,51,55,50,51,49,55,44,51,51,46,56,50,51,57,50,52,93,44,91,45,49,49,49,46,51,56,54,56,49,50,44,51,51,46,55,53,48,48,52,52,93,44,91,45,49,49,49,46,50,54,49,55,51,44,51,51,46,54,50,50,53,55,49,93,44,91,45,49,49,49,46,49,53,51,51,53,52,44,51,51,46,54,55,55,54,48,54,93,44,91,45,49,49,49,46,48,51,57,57,55,54,44,51,51,46,52,54,54,48,49,57,93,44,91,45,49,49,48,46,57,52,54,54,56,52,44,51,51,46,50,53,48,48,53,51,93,44,91,45,49,49,48,46,55,56,51,49,51,54,44,51,50,46,57,56,52,54,54,93,44,91,45,49,49,48,46,54,51,52,52,49,50,44,51,51,46,49,52,50,51,54,54,93,44,91,45,49,49,48,46,52,52,57,48,50,49,44,51,51,46,49,57,52,53,50,54,93,44,91,45,49,49,48,46,52,53,49,55,51,49,44,51,51,46,51,54,49,53,54,52,93,44,91,45,49,49,48,46,51,52,48,57,52,57,44,51,51,46,52,50,55,48,54,54,93,44,91,45,49,49,48,46,49,54,57,52,55,55,44,51,51,46,52,54,53,55,49,50,93,44,91,45,49,49,48,46,48,48,48,54,52,54,44,51,51,46,52,54,53,57,49,54,93,44,91,45,49,49,48,46,48,48,48,54,52,57,44,51,51,46,53,55,54,57,51,93,44,91,45,49,49,48,46,48,48,48,54,54,44,51,52,46,48,48,48,48,52,54,93,44,91,45,49,49,48,46,55,53,48,54,55,50,44,51,52,46,48,48,48,48,52,56,93,44,91,45,49,49,48,46,55,53,48,54,55,56,44,51,52,46,50,54,51,51,49,52,93,44,91,45,49,49,48,46,56,52,56,48,53,57,44,51,52,46,50,54,55,50,48,53,93,44,91,45,49,49,49,46,48,56,55,53,48,52,44,51,52,46,51,57,52,57,57,54,93,44,91,45,49,49,49,46,50,52,54,54,54,49,44,51,52,46,52,53,48,56,48,56,93,44,91,45,49,49,49,46,52,57,49,56,54,54,44,51,52,46,52,50,50,55,52,51,93,44,91,45,49,49,49,46,53,53,52,54,56,49,44,51,52,46,52,55,49,55,51,51,93,44,91,45,49,49,49,46,54,53,57,54,50,50,44,51,52,46,51,56,54,51,52,50,93,44,91,45,49,49,49,46,55,49,50,49,49,56,44,51,52,46,49,53,49,50,55,49,93,44,91,45,49,49,49,46,52,55,55,56,53,51,44,51,52,46,49,53,49,49,48,56,93,44,91,45,49,49,49,46,52,57,52,55,55,56,44,51,51,46,57,57,57,56,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,87,105,99,111,109,105,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,55,50,44,34,98,101,100,115,34,58,52,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,48,49,53,54,57,44,51,56,46,53,54,48,55,51,54,93,44,91,45,55,53,46,56,50,51,55,48,54,44,51,56,46,52,56,49,48,50,50,93,44,91,45,55,53,46,57,52,56,52,53,52,44,51,56,46,50,49,53,57,54,93,44,91,45,55,53,46,55,54,57,54,55,49,44,51,56,46,50,56,52,53,56,55,93,44,91,45,55,53,46,54,49,50,55,54,52,44,51,56,46,50,55,56,54,50,54,93,44,91,45,55,53,46,51,54,52,54,52,49,44,51,56,46,50,57,48,51,53,57,93,44,91,45,55,53,46,51,48,55,48,49,49,44,51,56,46,51,53,52,55,54,93,44,91,45,55,53,46,51,52,49,50,57,49,44,51,56,46,52,53,50,48,51,52,93,44,91,45,55,53,46,54,57,51,54,55,44,51,56,46,52,54,48,48,56,93,44,91,45,55,53,46,55,48,49,53,54,57,44,51,56,46,53,54,48,55,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,54,54,52,49,57,44,51,56,46,53,48,51,57,54,53,93,44,91,45,56,51,46,50,51,50,56,57,53,44,51,56,46,51,51,56,55,56,54,93,44,91,45,56,51,46,51,52,49,51,52,55,44,51,56,46,51,49,57,53,50,49,93,44,91,45,56,51,46,50,52,52,51,48,54,44,51,56,46,49,57,50,51,56,93,44,91,45,56,51,46,49,51,53,48,48,56,44,51,56,46,50,52,50,48,51,55,93,44,91,45,56,50,46,57,50,52,56,48,53,44,51,56,46,49,55,53,49,49,52,93,44,91,45,56,50,46,55,57,52,50,48,54,44,51,56,46,50,52,51,55,55,50,93,44,91,45,56,50,46,56,49,55,52,53,52,44,51,56,46,51,55,51,57,51,53,93,44,91,45,56,50,46,57,54,55,54,51,53,44,51,56,46,51,57,52,49,51,56,93,44,91,45,56,51,46,49,54,54,52,49,57,44,51,56,46,53,48,51,57,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,73,114,101,100,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,53,50,53,44,34,98,101,100,115,34,58,53,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,50,56,56,51,51,44,51,54,46,48,52,53,54,53,50,93,44,91,45,56,49,46,48,48,53,53,52,49,44,51,53,46,57,53,56,50,56,55,93,44,91,45,56,49,46,49,48,57,53,48,55,44,51,53,46,55,55,54,53,57,52,93,44,91,45,56,48,46,57,57,52,52,52,53,44,51,53,46,55,48,50,49,49,93,44,91,45,56,48,46,57,54,48,48,50,53,44,51,53,46,53,52,55,48,50,93,44,91,45,56,48,46,57,52,55,51,52,52,44,51,53,46,52,56,56,52,55,51,93,44,91,45,56,48,46,55,56,52,49,54,55,44,51,53,46,53,48,54,48,49,55,93,44,91,45,56,48,46,55,51,55,51,55,57,44,51,53,46,53,48,53,56,48,52,93,44,91,45,56,48,46,55,55,49,53,56,50,44,51,53,46,54,55,50,49,54,51,93,44,91,45,56,48,46,55,48,55,56,50,54,44,51,53,46,56,53,50,57,50,57,93,44,91,45,56,48,46,54,57,51,49,57,55,44,51,54,46,48,53,49,50,54,93,44,91,45,56,48,46,56,56,49,53,57,49,44,51,54,46,48,53,53,55,49,56,93,44,91,45,56,49,46,48,50,56,56,51,51,44,51,54,46,48,52,53,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,97,108,105,102,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,55,55,57,44,34,98,101,100,115,34,58,49,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,57,50,50,54,52,44,51,55,46,48,54,49,52,57,56,93,44,91,45,55,57,46,50,49,56,52,53,54,44,51,54,46,53,52,49,54,53,51,93,44,91,45,55,57,46,49,51,56,51,50,44,51,54,46,53,52,49,57,55,53,93,44,91,45,55,56,46,55,57,54,50,55,52,44,51,54,46,53,52,49,55,52,49,93,44,91,45,55,56,46,55,51,52,49,50,50,44,51,54,46,53,52,49,57,51,57,93,44,91,45,55,56,46,54,52,56,53,52,49,44,51,54,46,54,57,55,57,48,57,93,44,91,45,55,56,46,54,55,49,52,54,51,44,51,54,46,56,53,55,57,53,49,93,44,91,45,55,56,46,55,55,52,55,49,53,44,51,54,46,57,56,48,57,55,54,93,44,91,45,55,56,46,57,48,52,53,56,55,44,51,55,46,48,50,50,50,56,56,93,44,91,45,55,57,46,48,57,50,50,54,52,44,51,55,46,48,54,49,52,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,101,114,116,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,53,51,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,54,52,51,55,55,44,51,54,46,53,52,54,51,50,57,93,44,91,45,55,55,46,48,57,51,50,50,52,44,51,54,46,53,49,56,50,49,54,93,44,91,45,55,55,46,50,48,56,52,54,56,44,51,54,46,50,52,54,53,55,56,93,44,91,45,55,54,46,55,48,54,53,56,52,44,51,54,46,50,52,51,55,57,54,93,44,91,45,55,54,46,54,57,54,53,55,49,44,51,54,46,50,57,54,49,51,56,93,44,91,45,55,54,46,55,55,57,52,54,55,44,51,54,46,51,54,50,52,54,57,93,44,91,45,55,54,46,57,51,51,52,55,44,51,54,46,52,48,49,56,55,93,44,91,45,55,54,46,57,49,53,57,55,55,44,51,54,46,53,52,51,56,56,52,93,44,91,45,55,55,46,49,54,52,51,55,55,44,51,54,46,53,52,54,51,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,52,50,54,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,53,57,56,57,53,44,52,51,46,48,52,55,52,50,51,93,44,91,45,55,52,46,55,54,51,51,48,51,44,52,50,46,56,54,51,50,51,55,93,44,91,45,55,52,46,54,52,56,50,57,56,44,52,50,46,56,50,57,53,53,56,93,44,91,45,55,52,46,52,53,52,57,49,49,44,52,50,46,55,55,50,57,55,57,93,44,91,45,55,52,46,50,54,51,51,49,52,44,52,50,46,55,57,54,53,51,52,93,44,91,45,55,52,46,48,56,51,56,56,51,44,52,50,46,56,57,55,51,53,52,93,44,91,45,55,52,46,48,57,50,57,56,44,52,50,46,57,53,53,56,54,56,93,44,91,45,55,52,46,48,57,55,52,54,55,44,52,50,46,57,56,50,57,51,52,93,44,91,45,55,52,46,53,52,50,51,54,55,44,52,50,46,57,56,53,53,51,93,44,91,45,55,52,46,55,53,57,56,57,53,44,52,51,46,48,52,55,52,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,80,101,110,110,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,56,52,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,48,48,56,52,51,44,52,56,46,49,55,52,49,48,56,93,44,91,45,57,54,46,52,56,50,53,53,44,52,55,46,57,54,51,53,57,53,93,44,91,45,57,53,46,55,48,57,56,52,44,52,55,46,57,54,52,51,51,93,44,91,45,57,53,46,55,48,57,54,49,57,44,52,55,46,57,51,53,56,48,53,93,44,91,45,57,53,46,53,56,50,49,53,53,44,52,55,46,57,51,51,57,54,54,93,44,91,45,57,53,46,53,56,50,56,56,55,44,52,56,46,48,50,48,53,53,55,93,44,91,45,57,53,46,53,57,51,55,56,56,44,52,56,46,49,55,50,57,49,54,93,44,91,45,57,54,46,53,48,48,56,52,51,44,52,56,46,49,55,52,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,87,104,97,116,99,111,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,54,56,49,50,44,34,98,101,100,115,34,58,50,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,56,53,49,53,50,56,44,52,57,46,48,48,48,51,48,49,93,44,91,45,49,50,49,46,55,53,57,53,55,50,44,52,56,46,57,57,55,50,57,57,93,44,91,45,49,50,51,46,51,50,50,50,52,44,52,57,46,48,48,50,48,55,50,93,44,91,45,49,50,51,46,48,48,56,52,56,53,44,52,56,46,56,51,49,50,49,56,93,44,91,45,49,50,50,46,56,49,50,51,52,44,52,56,46,55,55,49,56,53,93,44,91,45,49,50,50,46,55,49,51,55,48,52,44,52,56,46,54,52,53,49,51,93,44,91,45,49,50,49,46,50,54,49,54,51,56,44,52,56,46,54,52,48,57,49,50,93,44,91,45,49,50,48,46,55,53,49,57,48,52,44,52,56,46,54,53,55,48,48,50,93,44,91,45,49,50,48,46,55,51,53,52,50,55,44,52,56,46,55,56,54,52,56,55,93,44,91,45,49,50,48,46,55,54,56,53,49,53,44,52,56,46,57,53,52,52,57,93,44,91,45,49,50,48,46,56,53,49,53,50,56,44,52,57,46,48,48,48,51,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,71,105,108,108,105,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,54,53,51,53,48,51,44,52,53,46,55,51,55,49,56,49,93,44,91,45,49,50,48,46,52,49,49,54,57,57,44,52,53,46,53,57,54,48,54,55,93,44,91,45,49,50,48,46,51,54,52,57,53,53,44,52,53,46,52,57,55,50,53,93,44,91,45,49,50,48,46,52,57,48,51,53,57,44,52,53,46,52,54,56,57,52,57,93,44,91,45,49,50,48,46,53,51,50,48,53,57,44,52,53,46,51,55,49,50,52,57,93,44,91,45,49,50,48,46,53,48,51,55,51,51,44,52,53,46,48,56,51,52,55,55,93,44,91,45,49,50,48,46,52,57,53,49,54,44,52,53,46,48,54,56,50,55,57,93,44,91,45,49,49,57,46,55,57,48,54,57,57,44,52,53,46,48,54,55,56,50,51,93,44,91,45,49,50,48,46,48,48,54,53,53,53,44,52,53,46,50,53,55,55,48,54,93,44,91,45,49,49,57,46,57,57,57,53,48,49,44,52,53,46,56,49,50,53,49,55,93,44,91,45,49,50,48,46,50,49,48,55,55,52,44,52,53,46,55,50,53,57,49,53,93,44,91,45,49,50,48,46,53,48,53,55,52,51,44,52,53,46,54,57,57,57,52,57,93,44,91,45,49,50,48,46,54,53,51,53,48,51,44,52,53,46,55,51,55,49,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,79,99,101,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,49,57,51,57,44,34,98,101,100,115,34,58,49,53,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,54,53,52,49,52,44,52,48,46,48,57,55,54,52,50,93,44,91,45,55,52,46,50,51,48,54,51,52,44,52,48,46,49,48,57,53,54,49,93,44,91,45,55,52,46,50,54,49,52,53,53,44,52,48,46,49,54,55,48,51,51,93,44,91,45,55,52,46,52,48,54,55,49,44,52,48,46,49,55,50,52,48,50,93,44,91,45,55,52,46,53,53,51,49,48,53,44,52,48,46,48,55,57,49,51,93,44,91,45,55,52,46,51,56,57,55,48,56,44,51,57,46,55,55,51,50,56,51,93,44,91,45,55,52,46,52,49,55,51,57,51,44,51,57,46,53,53,55,50,53,53,93,44,91,45,55,52,46,51,56,48,55,57,54,44,51,57,46,52,57,56,53,51,55,93,44,91,45,55,52,46,50,51,50,48,54,50,44,51,57,46,52,55,53,49,57,56,93,44,91,45,55,52,46,48,51,56,49,53,56,44,51,57,46,55,53,48,49,50,93,44,91,45,55,51,46,57,54,53,52,49,52,44,52,48,46,48,57,55,54,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,56,56,44,34,98,101,100,115,34,58,49,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,57,51,52,54,55,44,51,54,46,52,57,56,50,55,54,93,44,91,45,57,51,46,51,48,48,56,50,44,51,54,46,49,50,49,53,53,93,44,91,45,57,50,46,57,52,52,54,54,54,44,51,54,46,49,49,53,49,50,51,93,44,91,45,57,50,46,56,57,48,54,57,53,44,51,54,46,49,49,52,49,51,50,93,44,91,45,57,50,46,56,56,52,57,53,52,44,51,54,46,52,57,48,56,57,49,93,44,91,45,57,50,46,56,53,52,48,52,57,44,51,54,46,52,57,55,56,52,50,93,44,91,45,57,51,46,50,57,51,52,54,55,44,51,54,46,52,57,56,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,109,97,110,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,53,54,49,44,34,98,101,100,115,34,58,53,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,49,57,56,49,54,44,51,52,46,56,53,53,51,52,93,44,91,45,57,56,46,56,50,54,48,57,49,44,51,52,46,56,53,53,52,50,56,93,44,91,45,57,56,46,56,50,54,48,48,56,44,51,52,46,53,57,52,52,49,51,93,44,91,45,57,56,46,56,50,54,49,52,52,44,51,52,46,53,48,55,51,55,93,44,91,45,57,56,46,54,54,49,57,56,50,44,51,52,46,53,48,55,52,54,93,44,91,45,57,56,46,54,54,49,57,53,54,44,51,52,46,52,48,53,57,52,56,93,44,91,45,57,56,46,53,48,52,57,53,56,44,51,52,46,52,52,57,52,49,52,93,44,91,45,57,56,46,50,57,53,57,50,56,44,51,52,46,52,52,57,48,52,51,93,44,91,45,57,56,46,49,52,50,49,52,56,44,51,52,46,53,48,54,57,57,52,93,44,91,45,57,56,46,48,56,57,48,57,55,44,51,52,46,54,56,49,49,54,51,93,44,91,45,57,56,46,48,57,51,49,50,55,44,51,52,46,56,53,52,57,56,56,93,44,91,45,57,56,46,54,49,57,56,49,54,44,51,52,46,56,53,53,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,51,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,56,57,49,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,49,50,48,48,49,44,51,50,46,57,53,54,57,54,50,93,44,91,45,57,57,46,57,56,56,56,50,55,44,51,50,46,57,54,48,49,50,49,93,44,91,45,49,48,48,46,49,52,52,50,50,52,44,51,50,46,57,53,57,57,55,56,93,44,91,45,49,48,48,46,49,52,54,53,52,51,44,51,50,46,53,50,50,55,57,51,93,44,91,45,57,57,46,54,50,57,53,55,57,44,51,50,46,53,49,52,54,53,55,93,44,91,45,57,57,46,54,49,50,48,50,54,44,51,50,46,53,49,52,54,53,52,93,44,91,45,57,57,46,54,49,50,48,48,49,44,51,50,46,57,53,54,57,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,71,114,105,109,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,54,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,49,54,56,51,55,44,51,48,46,56,50,50,57,57,55,93,44,91,45,57,54,46,49,56,54,52,51,57,44,51,48,46,54,48,54,49,55,53,93,44,91,45,57,54,46,49,48,55,51,54,44,51,48,46,52,49,55,53,56,50,93,44,91,45,57,54,46,49,53,52,54,51,44,51,48,46,51,51,48,50,56,56,93,44,91,45,57,54,46,48,57,51,49,54,53,44,51,48,46,50,50,53,49,56,55,93,44,91,45,57,53,46,56,48,52,51,48,54,44,51,48,46,50,52,53,53,55,93,44,91,45,57,53,46,56,51,48,50,52,44,51,48,46,54,51,48,50,56,52,93,44,91,45,57,53,46,56,54,51,48,53,57,44,51,48,46,56,54,52,49,50,53,93,44,91,45,57,54,46,49,54,56,51,55,44,51,48,46,56,50,50,57,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,71,101,110,101,115,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,57,51,54,49,44,34,98,101,100,115,34,58,49,49,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,54,48,55,51,51,44,52,51,46,50,50,51,49,51,49,93,44,91,45,56,51,46,54,57,53,54,50,49,44,52,51,46,50,50,49,52,50,50,93,44,91,45,56,51,46,57,51,50,48,55,49,44,52,51,46,50,50,48,51,55,55,93,44,91,45,56,51,46,57,50,57,48,55,57,44,52,51,46,49,51,50,55,56,50,93,44,91,45,56,51,46,57,50,50,53,49,54,44,52,50,46,55,56,48,56,50,49,93,44,91,45,56,51,46,54,56,54,52,57,51,44,52,50,46,55,56,51,50,54,51,93,44,91,45,56,51,46,54,56,57,51,56,52,44,52,50,46,56,55,49,50,54,51,93,44,91,45,56,51,46,52,53,51,51,54,52,44,52,50,46,56,56,48,52,51,50,93,44,91,45,56,51,46,52,54,48,55,51,51,44,52,51,46,50,50,51,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,115,115,117,109,112,116,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,49,52,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,48,53,57,53,49,44,51,48,46,48,54,50,52,55,56,93,44,91,45,57,49,46,50,50,52,51,53,54,44,51,48,46,48,50,53,51,51,54,93,44,91,45,57,49,46,50,53,53,50,50,57,44,50,57,46,57,55,49,52,53,55,93,44,91,45,57,49,46,49,56,50,56,49,55,44,50,57,46,56,52,54,49,55,50,93,44,91,45,57,49,46,48,57,50,55,52,56,44,50,57,46,56,48,49,53,55,52,93,44,91,45,57,49,46,49,48,48,48,49,44,50,57,46,54,57,57,52,48,50,93,44,91,45,57,49,46,48,56,50,54,48,50,44,50,57,46,54,50,54,51,54,56,93,44,91,45,57,49,46,48,48,54,55,52,51,44,50,57,46,55,49,52,55,55,49,93,44,91,45,57,48,46,56,56,53,53,56,57,44,50,57,46,57,48,53,51,53,51,93,44,91,45,57,48,46,57,53,57,56,54,57,44,50,57,46,57,55,55,57,50,52,93,44,91,45,57,48,46,57,54,51,54,57,51,44,51,48,46,48,54,54,52,53,93,44,91,45,57,49,46,49,48,53,57,53,49,44,51,48,46,48,54,50,52,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,55,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,48,57,55,52,56,44,51,52,46,49,54,50,48,56,50,93,44,91,45,56,57,46,53,48,55,51,53,51,44,51,51,46,56,54,55,52,54,57,93,44,91,45,56,57,46,53,48,55,49,51,53,44,51,51,46,55,50,49,56,49,57,93,44,91,45,56,57,46,49,57,49,55,56,49,44,51,51,46,55,51,56,54,48,50,93,44,91,45,56,57,46,49,51,55,56,55,54,44,51,51,46,56,49,50,49,52,52,93,44,91,45,56,57,46,49,51,57,49,53,56,44,51,52,46,48,55,52,49,49,54,93,44,91,45,56,57,46,50,52,53,52,56,53,44,51,52,46,49,54,49,49,56,54,93,44,91,45,56,57,46,53,48,57,55,52,56,44,51,52,46,49,54,50,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,49,52,44,34,98,101,100,115,34,58,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,52,49,55,48,55,44,51,49,46,52,51,51,55,48,51,93,44,91,45,56,56,46,56,51,52,51,51,57,44,51,48,46,57,57,55,57,56,51,93,44,91,45,56,56,46,52,50,53,52,51,50,44,51,48,46,57,57,56,51,50,51,93,44,91,45,56,56,46,52,51,50,48,48,55,44,51,49,46,49,49,52,50,57,56,93,44,91,45,56,56,46,52,52,57,52,51,56,44,51,49,46,52,51,53,56,51,55,93,44,91,45,56,56,46,56,52,49,55,48,55,44,51,49,46,52,51,51,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,52,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,56,54,52,54,51,44,52,54,46,56,52,53,56,56,49,93,44,91,45,49,48,54,46,49,50,48,54,51,44,52,54,46,56,51,49,52,51,56,93,44,91,45,49,48,54,46,49,50,48,51,54,54,44,52,54,46,52,56,51,54,52,56,93,44,91,45,49,48,54,46,49,53,53,49,52,51,44,52,54,46,52,56,51,54,51,52,93,44,91,45,49,48,54,46,49,53,51,52,51,51,44,52,54,46,49,51,55,50,54,93,44,91,45,49,48,54,46,49,57,49,54,50,57,44,52,54,46,49,51,55,49,56,51,93,44,91,45,49,48,54,46,49,57,49,55,51,52,44,52,53,46,55,56,56,54,93,44,91,45,49,48,52,46,57,56,49,57,52,44,52,53,46,55,56,54,57,56,50,93,44,91,45,49,48,52,46,57,51,57,50,56,57,44,52,53,46,55,56,54,57,54,52,93,44,91,45,49,48,52,46,57,51,57,50,48,53,44,52,54,46,49,51,54,53,55,53,93,44,91,45,49,48,52,46,56,56,53,52,57,53,44,52,54,46,49,51,54,53,57,53,93,44,91,45,49,48,52,46,57,48,53,57,56,56,44,52,54,46,52,56,50,50,53,49,93,44,91,45,49,48,52,46,55,51,50,54,55,50,44,52,54,46,52,56,50,50,48,50,93,44,91,45,49,48,52,46,55,51,51,48,53,57,44,52,54,46,54,49,50,54,57,53,93,44,91,45,49,48,52,46,57,56,52,55,49,52,44,52,54,46,53,52,48,51,56,57,93,44,91,45,49,48,53,46,50,51,57,50,51,56,44,52,54,46,53,52,49,49,56,56,93,44,91,45,49,48,53,46,52,52,57,49,57,54,44,52,54,46,53,55,48,57,54,55,93,44,91,45,49,48,53,46,53,55,54,48,54,51,44,52,54,46,54,53,56,48,48,51,93,44,91,45,49,48,53,46,54,49,56,49,53,56,44,52,54,46,56,51,50,49,52,56,93,44,91,45,49,48,53,46,56,51,50,54,55,52,44,52,54,46,56,54,48,56,50,93,44,91,45,49,48,54,46,48,56,54,53,56,53,44,52,54,46,56,54,48,50,57,93,44,91,45,49,48,54,46,48,56,54,52,54,51,44,52,54,46,56,52,53,56,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,82,111,98,101,114,116,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,56,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,50,56,50,57,49,44,52,53,46,57,51,53,51,56,51,93,44,91,45,57,55,46,50,50,55,48,56,57,44,52,53,46,53,53,56,49,53,56,93,44,91,45,57,55,46,50,50,54,50,52,52,44,52,53,46,50,57,55,54,52,55,93,44,91,45,57,54,46,57,57,50,57,52,54,44,52,53,46,51,50,54,56,56,93,44,91,45,57,54,46,52,55,48,52,55,53,44,52,53,46,51,50,54,53,52,53,93,44,91,45,57,54,46,54,56,48,52,53,52,44,52,53,46,52,49,48,52,57,57,93,44,91,45,57,54,46,56,51,53,52,53,49,44,52,53,46,53,56,54,49,50,57,93,44,91,45,57,54,46,56,51,56,54,52,56,44,52,53,46,54,52,55,53,48,57,93,44,91,45,57,54,46,54,55,50,54,54,53,44,52,53,46,55,51,50,51,51,54,93,44,91,45,57,54,46,53,56,51,48,56,53,44,52,53,46,56,50,48,48,50,52,93,44,91,45,57,54,46,53,54,51,54,55,50,44,52,53,46,57,51,53,50,52,53,93,44,91,45,57,55,46,50,50,56,50,57,49,44,52,53,46,57,51,53,51,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,79,103,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,51,50,56,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,56,56,52,56,54,44,52,50,46,49,57,57,49,49,50,93,44,91,45,56,57,46,54,56,53,51,54,54,44,52,49,46,57,51,48,51,52,93,44,91,45,56,57,46,54,50,57,51,51,44,52,49,46,57,48,49,54,49,55,93,44,91,45,56,57,46,51,54,48,53,55,56,44,52,49,46,56,56,56,48,49,56,93,44,91,45,56,56,46,57,52,49,50,55,57,44,52,49,46,56,57,49,55,53,50,93,44,91,45,56,56,46,57,51,57,55,51,50,44,52,50,46,49,53,50,51,50,93,44,91,45,56,57,46,49,55,50,56,48,51,44,52,50,46,49,53,48,52,49,55,93,44,91,45,56,57,46,49,55,51,44,52,50,46,50,48,52,50,52,49,93,44,91,45,56,57,46,51,57,54,49,57,50,44,52,50,46,50,48,49,57,49,54,93,44,91,45,56,57,46,54,56,56,52,56,54,44,52,50,46,49,57,57,49,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,56,48,53,54,54,44,52,54,46,50,56,50,51,57,51,93,44,91,45,57,55,46,50,53,57,54,51,50,44,52,53,46,57,57,55,49,56,53,93,44,91,45,57,55,46,50,50,56,50,57,49,44,52,53,46,57,51,53,51,56,51,93,44,91,45,57,54,46,53,54,51,54,55,50,44,52,53,46,57,51,53,50,52,53,93,44,91,45,57,54,46,53,55,54,53,54,52,44,52,54,46,48,50,49,56,52,56,93,44,91,45,57,54,46,53,53,52,52,51,54,44,52,54,46,48,56,52,49,56,54,93,44,91,45,57,54,46,53,57,57,54,54,44,52,54,46,51,51,48,52,56,49,93,44,91,45,57,54,46,54,54,55,52,50,50,44,52,54,46,51,55,54,49,49,55,93,44,91,45,57,54,46,55,56,52,51,56,49,44,52,54,46,54,51,48,53,48,52,93,44,91,45,57,54,46,55,57,56,49,50,56,44,52,54,46,54,51,48,51,50,54,93,44,91,45,57,55,46,50,55,57,57,52,56,44,52,54,46,54,50,57,51,52,56,93,44,91,45,57,55,46,50,56,48,53,54,54,44,52,54,46,50,56,50,51,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,114,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,50,53,50,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,53,52,56,56,56,44,52,53,46,54,51,57,55,52,50,93,44,91,45,57,50,46,49,53,54,52,54,53,44,52,53,46,50,48,57,53,53,52,93,44,91,45,57,49,46,54,54,53,54,52,55,44,52,53,46,50,48,55,57,57,49,93,44,91,45,57,49,46,53,52,49,51,50,50,44,52,53,46,50,57,50,50,50,93,44,91,45,57,49,46,53,52,48,50,57,52,44,52,53,46,54,51,55,54,48,53,93,44,91,45,57,50,46,48,51,49,52,49,55,44,52,53,46,54,51,57,57,50,56,93,44,91,45,57,50,46,49,53,52,56,56,56,44,52,53,46,54,51,57,55,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,73,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,54,57,54,50,50,44,52,54,46,55,57,56,49,56,50,93,44,91,45,57,48,46,52,52,56,57,53,54,44,52,54,46,55,57,55,52,48,49,93,44,91,45,57,48,46,53,52,57,56,56,44,52,54,46,53,56,51,53,53,50,93,44,91,45,57,48,46,53,53,50,50,50,55,44,52,54,46,50,52,48,56,53,49,93,44,91,45,57,48,46,52,50,53,57,55,56,44,52,54,46,50,52,48,52,53,93,44,91,45,57,48,46,51,48,51,48,55,50,44,52,54,46,49,53,52,56,52,57,93,44,91,45,57,48,46,51,48,50,48,54,51,44,52,53,46,57,56,49,51,52,57,93,44,91,45,57,48,46,48,52,51,57,53,56,44,52,53,46,57,56,49,57,52,56,93,44,91,45,56,57,46,57,50,56,56,51,55,44,52,53,46,57,56,49,57,54,55,93,44,91,45,56,57,46,57,50,57,49,53,56,44,52,54,46,50,57,57,55,52,56,93,44,91,45,57,48,46,49,50,48,53,55,50,44,52,54,46,51,51,55,48,51,57,93,44,91,45,57,48,46,50,49,54,49,55,50,44,52,54,46,53,48,49,50,55,50,93,44,91,45,57,48,46,52,49,56,51,57,50,44,52,54,46,53,54,54,48,57,57,93,44,91,45,57,48,46,50,54,57,54,50,50,44,52,54,46,55,57,56,49,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,87,97,98,97,115,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,48,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,52,50,48,49,44,52,52,46,52,53,52,50,53,52,93,44,91,45,57,50,46,52,51,48,50,55,55,44,52,52,46,52,53,53,51,50,49,93,44,91,45,57,50,46,53,53,48,55,51,51,44,52,52,46,51,54,56,53,50,49,93,44,91,45,57,50,46,53,53,48,56,55,49,44,52,52,46,49,57,52,57,49,54,93,44,91,45,57,50,46,51,49,56,57,56,54,44,52,52,46,49,57,52,48,53,55,93,44,91,45,57,50,46,51,49,56,57,55,49,44,52,52,46,49,48,55,55,51,52,93,44,91,45,57,50,46,48,55,57,52,57,49,44,52,52,46,49,48,54,57,56,56,93,44,91,45,57,50,46,48,55,56,53,51,50,44,52,52,46,49,57,50,57,55,57,93,44,91,45,57,49,46,56,53,56,50,52,53,44,52,52,46,49,57,51,48,48,52,93,44,91,45,57,49,46,57,50,56,50,50,52,44,52,52,46,51,51,53,52,55,51,93,44,91,45,57,50,46,48,56,51,53,55,50,44,52,52,46,52,48,55,51,51,54,93,44,91,45,57,50,46,50,52,50,48,49,44,52,52,46,52,53,52,50,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,68,101,108,32,78,111,114,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,50,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,51,50,56,56,51,53,44,52,49,46,57,57,56,51,51,52,93,44,91,45,49,50,52,46,50,56,53,48,51,49,44,52,49,46,56,53,57,52,56,55,93,44,91,45,49,50,52,46,52,51,56,57,48,57,44,52,49,46,56,50,52,53,48,52,93,44,91,45,49,50,52,46,50,49,49,55,48,54,44,52,49,46,54,56,49,49,57,51,93,44,91,45,49,50,52,46,49,51,54,53,54,49,44,52,49,46,52,54,52,52,53,50,93,44,91,45,49,50,51,46,55,55,48,53,53,49,44,52,49,46,52,54,52,49,57,51,93,44,91,45,49,50,51,46,54,54,49,51,54,51,44,52,49,46,51,56,50,48,57,93,44,91,45,49,50,51,46,54,49,50,51,57,53,44,52,49,46,52,52,56,57,53,52,93,44,91,45,49,50,51,46,55,49,57,49,55,52,44,52,49,46,53,57,53,54,49,51,93,44,91,45,49,50,51,46,54,54,55,49,49,52,44,52,49,46,54,57,49,54,56,57,93,44,91,45,49,50,51,46,55,48,51,54,56,49,44,52,49,46,56,50,57,52,56,55,93,44,91,45,49,50,51,46,53,54,53,52,52,50,44,52,49,46,57,48,51,49,52,49,93,44,91,45,49,50,51,46,53,49,55,57,49,49,44,52,50,46,48,48,48,55,53,54,93,44,91,45,49,50,51,46,56,50,50,48,52,49,44,52,49,46,57,57,53,53,56,93,44,91,45,49,50,52,46,51,50,56,56,51,53,44,52,49,46,57,57,56,51,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,80,117,115,104,109,97,116,97,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,49,57,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,54,55,49,56,49,44,51,52,46,53,57,51,55,51,50,93,44,91,45,57,53,46,54,55,49,55,53,44,51,52,46,53,48,54,55,57,52,93,44,91,45,57,53,46,55,55,57,49,51,52,44,51,52,46,53,48,54,54,52,52,93,44,91,45,57,53,46,55,55,57,51,55,54,44,51,52,46,49,53,54,54,57,57,93,44,91,45,57,53,46,49,53,54,53,50,49,44,51,52,46,49,53,54,57,54,53,93,44,91,45,57,53,46,49,53,49,51,50,51,44,51,52,46,50,52,51,55,51,55,93,44,91,45,57,53,46,48,52,54,53,56,53,44,51,52,46,50,52,51,55,55,54,93,44,91,45,57,53,46,48,52,54,55,52,54,44,51,52,46,53,48,55,50,55,54,93,44,91,45,57,52,46,57,51,55,54,48,52,44,51,52,46,53,48,55,50,57,54,93,44,91,45,57,52,46,57,51,55,53,53,53,44,51,52,46,54,56,48,55,57,50,93,44,91,45,57,53,46,48,53,57,54,49,54,44,51,52,46,54,56,48,55,51,54,93,44,91,45,57,53,46,53,49,52,52,55,53,44,51,52,46,54,56,48,55,49,56,93,44,91,45,57,53,46,53,49,52,53,49,49,44,51,52,46,53,57,52,49,53,51,93,44,91,45,57,53,46,54,55,49,56,49,44,51,52,46,53,57,51,55,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,104,101,108,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,55,53,55,44,34,98,101,100,115,34,58,50,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,48,48,49,54,53,56,44,52,56,46,50,57,54,48,48,57,93,44,91,45,49,50,48,46,57,48,55,52,50,53,44,52,56,46,49,54,51,49,56,52,93,44,91,45,49,50,49,46,49,49,56,49,56,51,44,52,55,46,57,57,55,49,48,51,93,44,91,45,49,50,49,46,49,56,48,55,55,54,44,52,55,46,56,57,56,55,54,57,93,44,91,45,49,50,49,46,49,49,57,49,55,57,44,52,55,46,55,55,57,57,51,51,93,44,91,45,49,50,49,46,49,49,51,53,54,57,44,52,55,46,53,57,55,50,56,56,93,44,91,45,49,50,48,46,57,50,52,50,48,55,44,52,55,46,52,51,51,53,56,50,93,44,91,45,49,50,48,46,51,56,57,49,57,55,44,52,55,46,50,54,48,57,51,53,93,44,91,45,49,50,48,46,48,57,52,52,54,44,52,55,46,50,54,50,49,53,57,93,44,91,45,49,50,48,46,49,50,57,53,55,51,44,52,55,46,51,54,54,50,53,49,93,44,91,45,49,50,48,46,50,56,54,53,51,44,52,55,46,51,57,51,49,49,49,93,44,91,45,49,50,48,46,51,49,55,57,56,52,44,52,55,46,52,53,54,57,52,56,93,44,91,45,49,50,48,46,49,57,57,48,52,56,44,52,55,46,54,56,50,50,55,54,93,44,91,45,49,50,48,46,50,48,54,57,48,56,44,52,55,46,55,53,48,54,51,56,93,44,91,45,49,49,57,46,57,57,50,54,55,57,44,52,55,46,55,56,51,49,53,93,44,91,45,49,49,57,46,56,55,48,53,57,53,44,52,55,46,57,54,48,52,53,53,93,44,91,45,49,50,48,46,48,52,56,54,52,54,44,52,55,46,57,54,48,54,50,56,93,44,91,45,49,50,48,46,49,52,51,57,51,49,44,52,56,46,48,54,53,52,52,52,93,44,91,45,49,50,48,46,51,54,49,50,56,56,44,52,56,46,49,53,55,53,54,57,93,44,91,45,49,50,48,46,51,52,54,50,56,52,44,52,56,46,49,57,57,57,56,54,93,44,91,45,49,50,48,46,54,52,57,57,51,51,44,52,56,46,51,57,56,49,51,57,93,44,91,45,49,50,48,46,55,48,50,48,54,57,44,52,56,46,53,51,49,53,56,57,93,44,91,45,49,50,48,46,56,53,55,52,50,55,44,52,56,46,53,52,55,54,55,54,93,44,91,45,49,50,49,46,48,54,50,52,53,44,52,56,46,52,54,48,51,54,55,93,44,91,45,49,50,49,46,48,48,49,54,53,56,44,52,56,46,50,57,54,48,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,80,114,101,115,113,117,101,32,73,115,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,48,49,48,54,50,44,52,53,46,55,53,50,50,55,53,93,44,91,45,56,52,46,50,53,50,48,50,44,52,53,46,54,50,53,57,57,56,93,44,91,45,56,52,46,50,52,54,54,51,52,44,52,53,46,49,57,56,55,50,55,93,44,91,45,56,51,46,56,56,49,50,50,51,44,52,53,46,50,48,50,48,55,49,93,44,91,45,56,50,46,52,57,48,53,57,54,44,52,53,46,50,48,56,52,56,52,93,44,91,45,56,50,46,53,50,48,54,52,44,52,53,46,51,51,53,57,48,50,93,44,91,45,56,51,46,52,56,51,57,55,52,44,52,53,46,55,55,49,57,51,55,93,44,91,45,56,51,46,54,51,54,56,54,55,44,52,53,46,55,55,51,57,52,52,93,44,91,45,56,52,46,49,50,51,48,57,56,44,52,53,46,55,55,55,54,54,56,93,44,91,45,56,52,46,50,48,49,48,54,50,44,52,53,46,55,53,50,50,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,101,118,101,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,54,55,51,51,44,34,98,101,100,115,34,58,54,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,55,49,52,49,53,44,51,53,46,51,51,55,52,54,53,93,44,91,45,57,55,46,53,53,54,57,56,55,44,51,53,46,50,56,56,52,52,93,44,91,45,57,55,46,53,53,52,55,57,44,51,53,46,50,50,52,51,50,57,93,44,91,45,57,55,46,51,53,52,49,57,50,44,51,53,46,48,55,54,54,53,54,93,44,91,45,57,55,46,51,52,49,53,48,57,44,51,52,46,57,54,52,48,48,49,93,44,91,45,57,55,46,49,52,50,51,52,57,44,51,52,46,57,50,56,49,55,54,93,44,91,45,57,55,46,49,52,50,49,49,52,44,51,53,46,51,55,54,56,54,93,44,91,45,57,55,46,54,55,49,51,54,57,44,51,53,46,51,55,55,49,53,49,93,44,91,45,57,55,46,54,55,49,52,49,53,44,51,53,46,51,51,55,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,50,49,49,44,34,98,101,100,115,34,58,49,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,49,52,54,52,52,54,44,52,49,46,56,53,48,56,57,57,93,44,91,45,55,53,46,48,53,51,50,50,55,44,52,49,46,55,53,49,54,54,50,93,44,91,45,55,53,46,48,54,57,53,53,57,44,52,49,46,54,48,49,56,55,52,93,44,91,45,55,52,46,57,56,49,54,53,50,44,52,49,46,52,55,57,57,52,53,93,44,91,45,55,52,46,55,53,52,54,57,44,52,49,46,52,50,52,57,55,51,93,44,91,45,55,52,46,55,53,50,51,57,57,44,52,49,46,52,57,51,55,52,51,93,44,91,45,55,52,46,52,56,52,51,54,55,44,52,49,46,53,48,52,50,51,53,93,44,91,45,55,52,46,51,54,55,48,53,53,44,52,49,46,53,57,48,57,55,55,93,44,91,45,55,52,46,51,57,53,48,55,49,44,52,49,46,54,52,52,56,55,54,93,44,91,45,55,52,46,53,55,53,48,56,54,44,52,49,46,55,52,53,50,53,56,93,44,91,45,55,52,46,52,53,51,54,56,53,44,52,49,46,56,55,53,53,57,53,93,44,91,45,55,52,46,55,56,48,54,57,51,44,52,50,46,48,49,54,51,55,53,93,44,91,45,55,53,46,49,52,54,52,52,54,44,52,49,46,56,53,48,56,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,53,56,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,54,49,51,48,53,44,51,53,46,51,57,51,49,57,56,93,44,91,45,56,50,46,51,52,54,49,52,49,44,51,53,46,50,56,53,57,57,50,93,44,91,45,56,50,46,51,53,51,55,53,52,44,51,53,46,49,57,48,57,54,55,93,44,91,45,56,50,46,50,49,53,57,52,55,44,51,53,46,49,57,54,50,50,50,93,44,91,45,56,49,46,57,54,57,51,52,56,44,51,53,46,49,56,55,50,49,55,93,44,91,45,56,49,46,57,54,56,55,56,56,44,51,53,46,50,53,55,55,54,52,93,44,91,45,56,50,46,49,53,49,53,51,53,44,51,53,46,52,48,55,53,56,49,93,44,91,45,56,50,46,50,54,49,51,48,53,44,51,53,46,51,57,51,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,83,99,111,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,50,54,50,44,34,98,101,100,115,34,58,49,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,44,91,45,55,57,46,53,55,51,52,50,51,44,51,52,46,57,57,50,50,49,93,44,91,45,55,57,46,53,54,49,56,53,54,44,51,52,46,57,49,48,51,53,93,44,91,45,55,57,46,54,57,50,57,52,52,44,51,52,46,56,48,53,49,53,53,93,44,91,45,55,57,46,52,54,49,53,48,54,44,51,52,46,54,51,48,51,55,57,93,44,91,45,55,57,46,51,51,48,57,52,57,44,51,52,46,55,55,51,56,50,49,93,44,91,45,55,57,46,51,52,55,56,54,56,44,51,52,46,56,51,56,53,53,51,93,44,91,45,55,57,46,51,53,51,51,49,50,44,51,52,46,57,52,50,53,54,49,93,44,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,97,114,110,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,48,51,54,49,44,34,98,101,100,115,34,58,50,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,54,57,54,52,44,51,53,46,53,50,49,54,54,57,93,44,91,45,55,57,46,49,56,51,53,53,54,44,51,53,46,51,48,55,49,54,49,93,44,91,45,55,57,46,48,57,53,56,48,56,44,51,53,46,49,57,50,48,54,56,93,44,91,45,55,56,46,55,57,51,52,52,55,44,51,53,46,50,54,53,57,55,54,93,44,91,45,55,56,46,54,49,55,49,50,55,44,51,53,46,50,52,53,53,55,56,93,44,91,45,55,56,46,53,51,56,51,52,57,44,51,53,46,51,49,54,52,49,93,44,91,45,55,56,46,55,48,56,57,48,50,44,51,53,46,53,49,57,52,53,56,93,44,91,45,55,56,46,57,49,52,55,51,52,44,51,53,46,53,56,51,54,55,50,93,44,91,45,55,56,46,57,54,57,54,52,44,51,53,46,53,50,49,54,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,49,50,53,44,34,98,101,100,115,34,58,49,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,54,57,54,52,44,51,53,46,53,50,49,54,54,57,93,44,91,45,55,57,46,49,49,55,48,57,54,44,51,53,46,54,50,56,49,54,52,93,44,91,45,55,57,46,49,57,57,49,51,54,44,51,53,46,53,53,57,56,52,52,93,44,91,45,55,57,46,51,53,48,48,55,51,44,51,53,46,53,49,56,48,48,50,93,44,91,45,55,57,46,50,54,53,55,49,51,44,51,53,46,51,52,53,50,55,57,93,44,91,45,55,57,46,49,56,51,53,53,54,44,51,53,46,51,48,55,49,54,49,93,44,91,45,55,56,46,57,54,57,54,52,44,51,53,46,53,50,49,54,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,84,105,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,50,49,49,55,44,52,48,46,52,48,54,56,56,57,93,44,91,45,56,54,46,50,52,50,56,49,50,44,52,48,46,52,48,50,57,49,52,93,44,91,45,56,54,46,50,52,50,57,57,50,44,52,48,46,51,55,51,54,54,49,93,44,91,45,56,54,46,50,52,50,55,52,51,44,52,48,46,50,49,53,56,51,52,93,44,91,45,56,53,46,56,54,49,57,48,51,44,52,48,46,50,49,56,57,51,54,93,44,91,45,56,53,46,56,54,50,50,57,54,44,52,48,46,51,55,56,51,54,55,93,44,91,45,56,53,46,56,54,50,49,49,55,44,52,48,46,52,48,54,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,53,55,52,44,51,57,46,53,54,55,48,49,56,93,44,91,45,57,55,46,51,54,57,56,51,57,44,51,57,46,51,48,54,48,49,49,93,44,91,45,57,55,46,51,55,49,49,53,52,44,51,57,46,49,51,49,57,54,49,93,44,91,45,57,54,46,57,54,51,49,55,55,44,51,57,46,49,51,50,51,93,44,91,45,57,54,46,57,54,49,54,57,51,44,51,57,46,50,50,48,48,55,54,93,44,91,45,57,54,46,57,53,56,55,49,57,44,51,57,46,53,54,54,52,48,49,93,44,91,45,57,55,46,51,54,56,53,55,52,44,51,57,46,53,54,55,48,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,87,97,103,111,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,56,53,48,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,54,54,49,49,52,44,51,53,46,56,53,54,50,56,52,93,44,91,45,57,53,46,54,51,57,55,55,57,44,51,53,46,55,57,49,56,48,55,93,44,91,45,57,53,46,50,54,53,54,55,57,44,51,53,46,56,49,51,50,54,54,93,44,91,45,57,53,46,50,56,50,57,57,50,44,51,53,46,57,48,55,55,48,52,93,44,91,45,57,53,46,50,48,55,57,52,54,44,51,54,46,48,55,52,55,48,56,93,44,91,45,57,53,46,52,51,57,57,55,44,51,54,46,48,55,53,50,93,44,91,45,57,53,46,53,53,50,53,56,55,44,51,54,46,48,57,49,52,56,54,93,44,91,45,57,53,46,54,49,56,53,50,44,51,54,46,49,54,50,53,49,50,93,44,91,45,57,53,46,55,54,49,54,53,44,51,54,46,49,54,50,55,53,93,44,91,45,57,53,46,55,54,49,55,48,50,44,51,53,46,57,48,49,49,52,55,93,44,91,45,57,53,46,56,49,57,52,53,57,44,51,53,46,56,53,54,50,53,53,93,44,91,45,57,53,46,55,54,54,49,49,52,44,51,53,46,56,53,54,50,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,50,51,52,55,55,49,44,52,55,46,55,57,48,53,48,50,93,44,91,45,49,48,53,46,50,51,53,48,49,54,44,52,55,46,55,48,51,53,56,49,93,44,91,45,49,48,52,46,57,55,56,48,57,44,52,55,46,55,48,51,50,57,51,93,44,91,45,49,48,52,46,57,55,56,53,53,51,44,52,55,46,54,49,54,50,55,50,93,44,91,45,49,48,52,46,53,57,51,54,54,52,44,52,55,46,54,49,54,50,57,52,93,44,91,45,49,48,52,46,53,49,51,48,52,57,44,52,55,46,53,50,57,52,52,50,93,44,91,45,49,48,52,46,53,49,51,50,57,50,44,52,55,46,51,53,52,55,49,57,93,44,91,45,49,48,52,46,52,50,48,51,52,55,44,52,55,46,51,53,52,52,51,53,93,44,91,45,49,48,52,46,49,51,49,56,54,51,44,52,55,46,51,53,51,57,48,49,93,44,91,45,49,48,52,46,48,52,52,56,55,49,44,52,55,46,51,57,55,48,54,51,93,44,91,45,49,48,52,46,48,52,52,48,52,52,44,52,55,46,57,57,54,48,56,50,93,44,91,45,49,48,52,46,53,49,49,54,57,54,44,52,56,46,49,48,57,56,57,52,93,44,91,45,49,48,52,46,56,50,50,53,56,49,44,52,56,46,49,49,56,57,52,53,93,44,91,45,49,48,53,46,48,51,55,48,57,52,44,52,56,46,48,54,51,52,49,54,93,44,91,45,49,48,53,46,49,57,52,55,56,51,44,52,56,46,48,54,54,54,49,55,93,44,91,45,49,48,53,46,49,57,53,49,50,50,44,52,55,46,56,54,56,48,56,49,93,44,91,45,49,48,53,46,50,51,52,55,55,49,44,52,55,46,55,57,48,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,115,104,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,51,55,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,53,55,51,55,44,51,51,46,51,56,56,57,55,52,93,44,91,45,57,49,46,57,57,48,49,54,55,44,51,51,46,51,57,56,50,49,52,93,44,91,45,57,49,46,57,55,55,50,56,52,44,51,51,46,51,48,50,48,50,54,93,44,91,45,57,50,46,49,51,55,53,50,55,44,51,51,46,49,54,50,57,53,54,93,44,91,45,57,50,46,48,54,57,49,48,53,44,51,51,46,48,48,56,49,54,51,93,44,91,45,57,49,46,52,54,48,52,44,51,51,46,48,48,53,57,49,53,93,44,91,45,57,49,46,52,53,55,51,55,44,51,51,46,51,56,56,57,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,115,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,56,55,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,49,55,57,48,53,44,51,52,46,49,49,57,49,48,53,93,44,91,45,57,49,46,49,57,52,50,55,56,44,51,52,46,48,55,48,57,51,56,93,44,91,45,57,49,46,50,49,52,51,51,56,44,51,51,46,57,55,50,52,48,51,93,44,91,45,57,49,46,52,50,49,55,49,53,44,51,52,46,48,49,52,52,55,50,93,44,91,45,57,49,46,53,52,56,54,54,56,44,51,51,46,57,55,54,55,57,57,93,44,91,45,57,49,46,53,53,55,54,52,56,44,51,51,46,55,56,51,51,56,52,93,44,91,45,57,49,46,52,53,48,51,50,53,44,51,51,46,55,56,48,52,49,53,93,44,91,45,57,49,46,52,53,51,52,51,56,44,51,51,46,53,54,51,55,48,51,93,44,91,45,57,49,46,50,51,48,56,57,55,44,51,51,46,53,54,49,52,93,44,91,45,57,49,46,49,51,48,52,52,53,44,51,51,46,54,48,54,48,51,52,93,44,91,45,57,49,46,48,54,56,50,57,44,51,51,46,55,49,54,52,55,55,93,44,91,45,57,49,46,48,55,51,48,49,49,44,51,51,46,56,53,55,52,52,57,93,44,91,45,57,49,46,48,49,49,53,49,44,51,51,46,57,50,52,55,51,51,93,44,91,45,57,48,46,57,53,53,49,55,44,51,52,46,49,49,56,56,51,51,93,44,91,45,57,49,46,49,49,55,57,48,53,44,51,52,46,49,49,57,49,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,86,105,101,113,117,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,55,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,54,49,56,48,53,44,49,56,46,49,53,52,49,56,93,44,91,45,54,53,46,54,50,55,52,57,49,44,49,56,46,48,56,51,52,49,51,93,44,91,45,54,53,46,53,52,57,54,57,57,44,49,56,46,48,50,56,52,52,57,93,44,91,45,54,53,46,50,52,57,54,44,49,56,46,48,56,52,51,48,53,93,44,91,45,54,53,46,50,55,56,51,49,54,44,49,56,46,49,57,55,57,49,56,93,44,91,45,54,53,46,52,54,52,52,50,53,44,49,56,46,50,50,50,50,49,52,93,44,91,45,54,53,46,53,53,52,54,52,51,44,49,56,46,49,56,52,55,54,55,93,44,91,45,54,53,46,54,49,56,48,53,44,49,56,46,49,53,52,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,49,50,44,34,98,101,100,115,34,58,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,55,48,55,51,56,44,51,53,46,56,49,53,55,48,53,93,44,91,45,56,56,46,48,51,52,55,56,56,44,51,53,46,55,49,55,50,54,49,93,44,91,45,56,56,46,48,51,53,56,51,55,44,51,53,46,54,50,49,56,51,57,93,44,91,45,56,55,46,57,55,52,54,51,44,51,53,46,53,50,49,48,50,53,93,44,91,45,56,56,46,48,48,55,55,48,57,44,51,53,46,52,50,51,51,56,49,93,44,91,45,56,55,46,57,55,51,49,56,44,51,53,46,52,53,57,57,54,56,93,44,91,45,56,55,46,55,49,55,53,53,57,44,51,53,46,52,56,51,51,52,55,93,44,91,45,56,55,46,54,53,56,49,56,57,44,51,53,46,54,48,57,51,52,57,93,44,91,45,56,55,46,55,52,51,55,53,44,51,53,46,54,54,51,57,53,50,93,44,91,45,56,55,46,55,49,54,55,54,44,51,53,46,56,51,56,55,53,93,44,91,45,56,55,46,56,55,52,49,56,50,44,51,53,46,56,49,51,48,50,49,93,44,91,45,56,55,46,57,54,50,55,52,44,51,53,46,56,52,48,57,50,49,93,44,91,45,56,55,46,57,55,48,55,51,56,44,51,53,46,56,49,53,55,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,51,49,55,44,34,98,101,100,115,34,58,49,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,48,53,49,56,44,52,53,46,49,50,51,56,54,54,93,44,91,45,57,51,46,48,50,48,48,52,52,44,52,52,46,56,57,48,55,53,93,44,91,45,57,51,46,48,48,53,57,55,56,44,52,52,46,55,55,49,54,56,53,93,44,91,45,57,50,46,56,48,50,48,49,55,44,52,52,46,55,52,53,54,55,51,93,44,91,45,57,50,46,55,54,57,53,48,49,44,52,52,46,56,54,50,48,48,49,93,44,91,45,57,50,46,55,53,56,48,48,56,44,52,53,46,50,48,57,53,54,54,93,44,91,45,57,50,46,55,52,53,54,56,51,44,52,53,46,50,57,54,48,52,50,93,44,91,45,57,51,46,48,49,57,52,52,44,52,53,46,50,57,54,57,50,57,93,44,91,45,57,51,46,48,50,48,53,49,56,44,52,53,46,49,50,51,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,52,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,52,48,34,44,34,78,65,77,69,34,58,34,80,111,114,116,115,109,111,117,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,51,49,49,44,34,98,101,100,115,34,58,52,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,51,57,57,53,54,55,44,51,54,46,57,51,48,57,52,55,93,44,91,45,55,54,46,52,50,48,51,54,56,44,51,54,46,56,54,54,51,52,56,93,44,91,45,55,54,46,50,56,57,57,54,50,44,51,54,46,56,50,50,48,52,56,93,44,91,45,55,54,46,51,52,49,56,50,53,44,51,54,46,57,50,52,55,55,50,93,44,91,45,55,54,46,51,56,52,52,49,57,44,51,54,46,57,53,49,48,53,57,93,44,91,45,55,54,46,51,57,57,53,54,55,44,51,54,46,57,51,48,57,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,50,56,57,44,34,98,101,100,115,34,58,50,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,55,55,51,56,53,44,52,48,46,49,50,54,55,57,50,93,44,91,45,55,57,46,57,57,56,48,49,52,44,51,57,46,57,56,51,51,50,50,93,44,91,45,55,57,46,57,50,53,53,57,55,44,51,57,46,57,50,52,55,57,53,93,44,91,45,55,57,46,57,49,54,50,56,44,51,57,46,55,50,48,55,55,55,93,44,91,45,55,57,46,55,54,51,55,55,52,44,51,57,46,55,50,48,55,55,54,93,44,91,45,55,57,46,52,55,54,54,54,50,44,51,57,46,55,50,49,48,55,56,93,44,91,45,55,57,46,51,57,50,52,53,57,44,51,57,46,55,50,49,53,55,56,93,44,91,45,55,57,46,52,49,55,53,53,56,44,51,57,46,56,53,51,55,55,54,93,44,91,45,55,57,46,50,57,51,54,56,50,44,52,48,46,48,52,48,52,49,51,93,44,91,45,55,57,46,53,48,53,49,56,56,44,52,48,46,49,52,48,53,54,56,93,44,91,45,55,57,46,54,51,56,57,57,52,44,52,48,46,48,56,50,56,53,57,93,44,91,45,55,57,46,56,55,55,51,56,53,44,52,48,46,49,50,54,55,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,52,49,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,44,91,45,55,57,46,49,51,52,52,53,54,44,51,57,46,51,49,50,53,48,49,93,44,91,45,55,57,46,50,55,49,54,57,53,44,51,57,46,51,50,55,57,57,57,93,44,91,45,55,57,46,52,56,54,56,55,53,44,51,57,46,50,48,53,56,57,54,93,44,91,45,55,57,46,52,56,55,49,55,53,44,51,57,46,49,57,52,57,48,54,93,44,91,45,55,57,46,50,57,54,54,54,51,44,51,57,46,49,57,56,52,48,54,93,44,91,45,55,57,46,51,53,55,54,54,54,44,51,56,46,57,54,52,53,48,57,93,44,91,45,55,57,46,51,52,57,56,54,55,44,51,56,46,57,53,55,53,48,57,93,44,91,45,55,57,46,49,51,52,50,57,54,44,51,56,46,56,49,51,51,52,93,44,91,45,55,57,46,48,52,53,57,53,51,44,51,56,46,57,50,56,55,49,93,44,91,45,55,57,46,48,56,57,54,53,53,44,51,57,46,48,51,56,50,48,56,93,44,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,83,104,101,110,97,110,100,111,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,48,52,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,53,52,52,49,56,50,44,51,57,46,48,53,54,53,53,57,93,44,91,45,55,56,46,54,56,48,52,53,54,44,51,56,46,57,50,53,51,49,51,93,44,91,45,55,56,46,55,56,56,48,51,49,44,51,56,46,56,56,53,49,50,51,93,44,91,45,55,56,46,56,54,57,50,54,49,44,51,56,46,55,54,50,57,56,93,44,91,45,55,56,46,54,52,49,55,54,57,44,51,56,46,54,48,52,55,49,57,93,44,91,45,55,56,46,53,52,56,56,50,56,44,51,56,46,55,51,56,54,53,53,93,44,91,45,55,56,46,51,57,52,55,48,52,44,51,56,46,56,50,50,55,57,93,44,91,45,55,56,46,51,48,48,52,49,52,44,51,56,46,57,52,51,53,57,50,93,44,91,45,55,56,46,51,49,52,48,56,44,51,57,46,48,48,55,57,57,52,93,44,91,45,55,56,46,53,52,52,49,56,50,44,51,57,46,48,53,54,53,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,53,34,44,34,78,65,77,69,34,58,34,73,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,54,55,57,52,55,44,51,49,46,53,50,56,54,56,56,93,44,91,45,49,48,49,46,50,55,52,55,57,57,44,51,49,46,48,55,57,51,55,57,93,44,91,45,49,48,48,46,57,54,50,49,55,54,44,51,49,46,48,56,50,52,57,93,44,91,45,49,48,48,46,54,56,56,55,54,52,44,51,49,46,48,56,54,53,55,54,93,44,91,45,49,48,48,46,54,57,51,48,54,53,44,51,49,46,53,50,51,57,53,52,93,44,91,45,49,48,49,46,50,54,55,57,52,55,44,51,49,46,53,50,56,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,108,100,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,48,53,57,54,49,44,51,57,46,55,52,53,56,52,49,93,44,91,45,57,52,46,50,48,56,52,50,51,44,51,57,46,53,50,55,50,93,44,91,45,57,51,46,55,53,57,49,56,51,44,51,57,46,53,50,52,53,53,56,93,44,91,45,57,51,46,55,53,56,51,53,55,44,51,57,46,54,49,49,52,48,55,93,44,91,45,57,51,46,55,53,56,57,57,50,44,51,57,46,55,56,52,54,55,52,93,44,91,45,57,52,46,50,48,53,56,52,52,44,51,57,46,55,56,56,57,53,52,93,44,91,45,57,52,46,50,48,53,57,54,49,44,51,57,46,55,52,53,56,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,55,54,54,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,53,56,57,57,44,50,57,46,52,55,49,50,51,50,93,44,91,45,56,49,46,56,52,51,48,48,57,44,50,57,46,53,50,49,48,48,52,93,44,91,45,56,49,46,55,55,54,50,48,53,44,50,57,46,52,56,55,52,52,56,93,44,91,45,56,49,46,54,56,48,57,48,51,44,50,57,46,51,50,52,52,51,93,44,91,45,56,49,46,52,51,51,57,57,50,44,50,57,46,51,57,56,53,53,50,93,44,91,45,56,49,46,53,50,48,53,57,54,44,50,57,46,53,48,48,50,52,57,93,44,91,45,56,49,46,53,50,51,54,54,44,50,57,46,54,50,50,52,51,50,93,44,91,45,56,49,46,53,50,53,50,51,44,50,57,46,55,53,57,52,57,55,93,44,91,45,56,49,46,53,56,49,50,48,55,44,50,57,46,56,52,48,49,55,54,93,44,91,45,56,49,46,56,49,50,52,51,44,50,57,46,56,51,54,52,57,93,44,91,45,56,49,46,57,51,57,52,50,55,44,50,57,46,55,52,55,52,57,55,93,44,91,45,56,50,46,48,52,57,50,52,52,44,50,57,46,55,49,56,54,55,93,44,91,45,56,50,46,48,53,53,54,50,53,44,50,57,46,55,49,56,50,51,50,93,44,91,45,56,50,46,48,53,53,56,57,57,44,50,57,46,52,55,49,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,56,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,56,49,52,50,52,44,51,56,46,51,57,52,55,54,55,93,44,91,45,56,54,46,54,55,57,53,49,49,44,51,56,46,50,54,51,48,56,54,93,44,91,45,56,54,46,52,54,49,48,50,50,44,51,56,46,49,50,49,48,56,55,93,44,91,45,56,54,46,51,50,57,54,44,51,56,46,49,56,49,56,48,53,93,44,91,45,56,54,46,50,55,54,57,53,54,44,51,56,46,50,50,55,49,50,54,93,44,91,45,56,54,46,50,53,53,48,52,53,44,51,56,46,52,50,50,54,56,53,93,44,91,45,56,54,46,51,48,56,54,55,52,44,51,56,46,52,50,50,56,55,53,93,44,91,45,56,54,46,51,48,56,56,54,56,44,51,56,46,51,57,52,48,54,57,93,44,91,45,56,54,46,54,56,49,52,50,52,44,51,56,46,51,57,52,55,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,53,48,56,49,50,44,52,48,46,50,53,55,50,49,93,44,91,45,57,49,46,57,53,50,55,50,54,44,51,57,46,57,52,57,52,50,54,93,44,91,45,57,49,46,56,52,48,51,53,51,44,51,57,46,57,52,56,50,51,53,93,44,91,45,57,49,46,52,51,53,53,49,55,44,51,57,46,57,52,53,50,50,50,93,44,91,45,57,49,46,52,57,52,56,55,56,44,52,48,46,48,51,54,52,53,51,93,44,91,45,57,49,46,53,48,53,48,54,49,44,52,48,46,49,57,57,57,50,53,93,44,91,45,57,49,46,52,57,55,50,54,54,44,52,48,46,50,52,56,55,54,51,93,44,91,45,57,49,46,57,53,48,56,49,50,44,52,48,46,50,53,55,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,50,54,53,53,55,44,52,50,46,48,57,50,49,57,52,93,44,91,45,49,48,50,46,48,48,54,50,48,52,44,52,50,46,48,57,54,51,51,56,93,44,91,45,49,48,50,46,48,54,54,54,53,44,52,50,46,48,48,57,49,57,53,93,44,91,45,49,48,50,46,48,54,55,57,49,56,44,52,49,46,55,52,50,48,57,57,93,44,91,45,49,48,49,46,57,56,53,53,50,51,44,52,49,46,55,52,50,50,57,93,44,91,45,49,48,49,46,52,50,53,57,50,44,52,49,46,55,52,51,48,53,57,93,44,91,45,49,48,49,46,52,50,54,53,53,55,44,52,50,46,48,57,50,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,76,111,195,173,122,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,57,51,52,48,49,44,49,56,46,53,49,54,53,57,56,93,44,91,45,54,53,46,57,49,57,50,55,56,44,49,56,46,52,48,50,57,57,51,93,44,91,45,54,53,46,56,54,55,52,52,55,44,49,56,46,51,55,56,49,57,56,93,44,91,45,54,53,46,56,48,53,51,49,51,44,49,56,46,52,55,56,50,53,51,93,44,91,45,54,53,46,57,57,51,52,48,49,44,49,56,46,53,49,54,53,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,79,110,101,105,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,50,54,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,48,48,48,48,52,49,44,52,49,46,57,57,56,50,48,52,93,44,91,45,49,49,50,46,49,53,57,49,56,52,44,52,49,46,57,57,56,51,56,50,93,44,91,45,49,49,50,46,49,48,57,52,52,52,44,52,49,46,57,57,55,55,57,52,93,44,91,45,49,49,50,46,49,50,54,49,57,52,44,52,50,46,50,56,53,50,50,57,93,44,91,45,49,49,50,46,52,49,57,56,50,53,44,52,50,46,53,48,51,48,51,56,93,44,91,45,49,49,50,46,52,57,55,56,52,57,44,52,50,46,52,49,53,57,57,56,93,44,91,45,49,49,50,46,54,53,51,57,56,57,44,52,50,46,52,49,54,49,54,57,93,44,91,45,49,49,50,46,54,53,52,48,50,56,44,52,50,46,51,50,56,56,55,50,93,44,91,45,49,49,50,46,57,57,57,57,54,53,44,52,50,46,51,50,55,52,50,55,93,44,91,45,49,49,51,46,48,48,48,48,52,49,44,52,49,46,57,57,56,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,77,111,117,108,116,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,52,53,54,55,49,44,51,57,46,55,57,50,49,52,54,93,44,91,45,56,56,46,56,49,48,53,55,53,44,51,57,46,54,53,51,50,50,50,93,44,91,45,56,56,46,53,56,52,50,55,51,44,51,57,46,52,52,55,53,56,50,93,44,91,45,56,56,46,52,55,48,53,48,53,44,51,57,46,52,52,55,48,52,49,93,44,91,45,56,56,46,52,55,50,48,55,51,44,51,57,46,54,53,49,53,56,56,93,44,91,45,56,56,46,52,55,51,49,56,50,44,51,57,46,55,57,49,56,51,55,93,44,91,45,56,56,46,55,52,53,54,55,49,44,51,57,46,55,57,50,49,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,72,111,112,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,54,52,44,34,98,101,100,115,34,58,52,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,55,53,49,52,53,44,51,55,46,53,54,57,57,56,56,93,44,91,45,56,55,46,56,49,51,52,49,51,44,51,55,46,51,53,48,54,52,53,93,44,91,45,56,55,46,55,55,52,54,57,52,44,51,55,46,49,57,56,49,50,55,93,44,91,45,56,55,46,54,56,48,54,49,55,44,51,55,46,49,52,57,50,51,57,93,44,91,45,56,55,46,53,50,49,54,48,57,44,51,55,46,49,48,53,51,52,52,93,44,91,45,56,55,46,51,51,51,55,52,49,44,51,55,46,49,53,55,49,56,54,93,44,91,45,56,55,46,51,56,56,55,48,55,44,51,55,46,50,54,50,49,56,93,44,91,45,56,55,46,50,57,53,57,54,53,44,51,55,46,51,57,49,56,49,57,93,44,91,45,56,55,46,51,53,49,56,57,51,44,51,55,46,52,50,53,54,53,53,93,44,91,45,56,55,46,51,55,53,49,52,53,44,51,55,46,53,54,57,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,108,101,97,114,119,97,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,52,48,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,44,91,45,49,49,53,46,57,53,55,50,54,56,44,52,54,46,50,56,56,57,51,49,93,44,91,45,49,49,53,46,55,56,48,56,49,56,44,52,54,46,50,54,55,50,53,93,44,91,45,49,49,53,46,54,50,56,57,53,55,44,52,54,46,52,55,51,54,49,56,93,44,91,45,49,49,52,46,53,57,52,54,51,52,44,52,54,46,54,51,51,52,52,56,93,44,91,45,49,49,52,46,54,55,52,57,52,50,44,52,54,46,55,51,54,56,50,54,93,44,91,45,49,49,52,46,57,50,50,51,49,50,44,52,54,46,56,50,56,54,48,50,93,44,91,45,49,49,52,46,57,53,57,51,49,55,44,52,54,46,57,51,50,56,57,56,93,44,91,45,49,49,54,46,51,50,57,52,51,54,44,52,54,46,57,51,52,54,54,57,93,44,91,45,49,49,54,46,51,50,57,53,52,44,52,54,46,54,50,55,57,53,55,93,44,91,45,49,49,54,46,52,53,54,48,57,56,44,52,54,46,54,50,57,48,57,55,93,44,91,45,49,49,54,46,52,53,49,55,57,50,44,52,54,46,53,48,48,54,57,56,93,44,91,45,49,49,54,46,51,54,57,49,50,50,44,52,54,46,52,54,54,57,50,51,93,44,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,49,56,56,44,34,98,101,100,115,34,58,50,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,55,55,53,48,51,44,51,54,46,54,56,55,50,53,57,93,44,91,45,56,51,46,57,51,48,55,54,50,44,51,54,46,53,56,55,54,57,49,93,44,91,45,56,51,46,54,55,53,51,57,53,44,51,54,46,54,48,48,55,56,52,93,44,91,45,56,51,46,52,54,49,48,49,54,44,51,54,46,54,54,52,56,54,93,44,91,45,56,51,46,53,48,48,56,57,49,44,51,54,46,55,51,51,50,53,52,93,44,91,45,56,51,46,52,56,57,56,49,51,44,51,54,46,56,57,53,52,49,51,93,44,91,45,56,51,46,53,48,57,48,56,51,44,51,54,46,57,51,56,53,48,57,93,44,91,45,56,51,46,53,56,57,53,50,49,44,51,54,46,57,53,53,55,56,54,93,44,91,45,56,51,46,53,56,49,48,57,52,44,51,54,46,57,48,52,54,54,55,93,44,91,45,56,51,46,55,56,49,50,49,50,44,51,54,46,56,48,50,54,57,51,93,44,91,45,56,51,46,56,55,55,53,48,51,44,51,54,46,54,56,55,50,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,114,111,119,32,87,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,56,53,53,44,34,98,101,100,115,34,58,50,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,55,54,48,50,52,44,52,54,46,56,48,50,56,57,49,93,44,91,45,57,52,46,51,52,50,57,49,44,52,54,46,56,48,53,53,50,57,93,44,91,45,57,52,46,51,50,55,50,56,54,44,52,54,46,50,56,57,56,49,55,93,44,91,45,57,52,46,51,52,49,54,55,57,44,52,54,46,50,55,55,55,48,53,93,44,91,45,57,52,46,51,55,52,53,57,50,44,52,54,46,49,53,55,48,57,51,93,44,91,45,57,51,46,56,49,48,51,54,50,44,52,54,46,49,53,54,53,56,53,93,44,91,45,57,51,46,55,57,54,50,56,49,44,52,54,46,50,52,51,49,57,57,93,44,91,45,57,51,46,56,49,49,52,54,52,44,52,54,46,53,56,52,50,51,56,93,44,91,45,57,51,46,55,55,54,48,50,52,44,52,54,46,56,48,50,56,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,195,177,97,115,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,51,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,56,50,56,53,50,44,49,56,46,51,49,51,48,50,54,93,44,91,45,54,55,46,50,52,51,53,53,57,44,49,56,46,50,54,56,57,50,50,93,44,91,45,54,55,46,48,56,50,48,48,50,44,49,56,46,50,53,52,57,52,54,93,44,91,45,54,55,46,48,51,55,57,51,53,44,49,56,46,50,56,57,55,48,53,93,44,91,45,54,55,46,48,53,50,53,56,51,44,49,56,46,51,48,54,54,53,53,93,44,91,45,54,55,46,49,51,48,49,54,55,44,49,56,46,51,49,55,57,50,55,93,44,91,45,54,55,46,49,56,50,56,53,50,44,49,56,46,51,49,51,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,71,114,97,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,55,57,44,34,98,101,100,115,34,58,49,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,52,52,57,48,50,49,44,51,51,46,49,57,52,53,50,54,93,44,91,45,49,49,48,46,52,53,49,53,50,50,44,51,50,46,53,49,51,57,57,53,93,44,91,45,49,49,48,46,52,53,49,48,48,50,44,51,50,46,52,50,55,53,52,54,93,44,91,45,49,48,57,46,49,49,52,49,56,44,51,50,46,52,50,54,51,53,51,93,44,91,45,49,48,57,46,50,50,54,48,55,44,51,50,46,53,50,57,48,57,54,93,44,91,45,49,48,57,46,50,48,54,50,52,57,44,51,50,46,54,51,53,56,48,51,93,44,91,45,49,48,57,46,50,52,53,48,48,53,44,51,50,46,55,52,49,57,56,53,93,44,91,45,49,48,57,46,52,57,53,55,52,44,51,51,46,48,55,56,52,48,57,93,44,91,45,49,48,57,46,52,57,53,52,52,44,51,51,46,54,53,50,54,57,55,93,44,91,45,49,48,57,46,55,57,57,55,56,50,44,51,51,46,52,56,56,51,49,52,93,44,91,45,49,48,57,46,56,57,49,54,55,54,44,51,51,46,53,54,55,56,55,52,93,44,91,45,49,49,48,46,48,48,48,54,52,57,44,51,51,46,53,55,54,57,51,93,44,91,45,49,49,48,46,48,48,48,54,52,54,44,51,51,46,52,54,53,57,49,54,93,44,91,45,49,49,48,46,49,54,57,52,55,55,44,51,51,46,52,54,53,55,49,50,93,44,91,45,49,49,48,46,51,52,48,57,52,57,44,51,51,46,52,50,55,48,54,54,93,44,91,45,49,49,48,46,52,53,49,55,51,49,44,51,51,46,51,54,49,53,54,52,93,44,91,45,49,49,48,46,52,52,57,48,50,49,44,51,51,46,49,57,52,53,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,83,116,46,32,70,114,97,110,99,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,57,52,44,34,98,101,100,115,34,58,49,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,48,50,57,57,51,44,51,53,46,49,52,52,50,49,52,93,44,91,45,57,49,46,48,52,50,54,55,44,51,53,46,49,52,56,49,56,57,93,44,91,45,57,49,46,48,52,53,52,51,44,51,53,46,48,48,49,48,52,93,44,91,45,57,49,46,49,52,57,56,52,50,44,51,53,46,48,48,50,52,55,93,44,91,45,57,49,46,48,57,57,57,54,49,44,51,52,46,56,54,55,49,50,93,44,91,45,57,49,46,48,57,57,50,48,49,44,51,52,46,57,49,49,55,57,54,93,44,91,45,57,48,46,52,48,56,53,52,44,51,52,46,57,48,52,49,50,49,93,44,91,45,57,48,46,52,48,48,52,51,56,44,51,53,46,49,52,56,50,51,49,93,44,91,45,57,48,46,53,48,50,57,57,51,44,51,53,46,49,52,52,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,69,99,104,111,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,51,54,54,49,52,44,51,48,46,54,50,51,57,54,55,93,44,91,45,56,50,46,54,56,57,53,51,57,44,51,48,46,53,57,55,55,51,52,93,44,91,45,56,50,46,53,56,52,48,48,55,44,51,48,46,53,57,49,53,52,56,93,44,91,45,56,50,46,54,48,52,51,48,55,44,51,48,46,55,49,51,55,49,53,93,44,91,45,56,50,46,55,54,54,49,53,57,44,51,48,46,55,51,50,52,48,52,93,44,91,45,56,50,46,56,52,54,52,48,53,44,51,48,46,56,51,52,57,52,57,93,44,91,45,56,50,46,57,55,49,51,51,54,44,51,48,46,56,54,57,51,57,50,93,44,91,45,56,51,46,48,49,57,52,49,57,44,51,48,46,56,52,57,52,53,51,93,44,91,45,56,51,46,49,50,52,56,54,53,44,51,48,46,56,48,51,54,53,53,93,44,91,45,56,51,46,49,51,54,54,49,52,44,51,48,46,54,50,51,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,55,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,48,34,44,34,78,65,77,69,34,58,34,68,105,108,108,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,55,53,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,54,46,48,48,48,48,56,54,44,54,48,46,57,48,54,49,57,93,44,91,45,49,53,55,46,49,54,55,52,50,44,54,48,46,57,48,54,49,56,51,93,44,91,45,49,53,55,46,49,54,55,52,50,56,44,54,48,46,57,57,50,56,51,57,93,44,91,45,49,53,55,46,53,50,50,51,51,50,44,54,48,46,57,57,50,56,51,52,93,44,91,45,49,53,55,46,56,55,55,50,50,52,44,54,48,46,57,48,54,49,55,50,93,44,91,45,49,53,56,46,57,52,49,57,50,54,44,54,48,46,57,48,54,49,54,50,93,44,91,45,49,53,57,46,48,49,53,49,48,52,44,54,48,46,55,51,50,56,52,51,93,44,91,45,49,53,57,46,49,57,48,54,53,55,44,54,48,46,54,52,54,49,56,49,93,44,91,45,49,53,57,46,51,54,54,50,49,53,44,54,48,46,54,52,54,49,55,57,93,44,91,45,49,53,57,46,51,54,54,50,48,54,44,54,48,46,52,55,50,56,53,54,93,44,91,45,49,53,57,46,52,51,52,52,57,55,44,54,48,46,51,56,54,49,57,93,44,91,45,49,53,57,46,54,48,56,50,48,52,44,54,48,46,51,56,54,49,56,56,93,44,91,45,49,53,57,46,54,48,56,49,57,54,44,54,48,46,50,49,50,56,53,54,93,44,91,45,49,53,57,46,55,56,49,57,48,54,44,54,48,46,50,49,50,56,53,52,93,44,91,45,49,53,57,46,56,52,53,53,51,51,44,54,48,46,49,50,54,49,56,54,93,44,91,45,49,53,57,46,56,52,53,53,50,52,44,53,57,46,57,53,50,56,52,56,93,44,91,45,49,54,48,46,48,49,55,52,51,44,53,57,46,57,53,50,56,52,54,93,44,91,45,49,54,48,46,48,49,55,52,50,51,44,53,57,46,55,55,57,53,48,52,93,44,91,45,49,54,48,46,50,52,56,53,49,44,53,57,46,55,55,57,53,48,49,93,44,91,45,49,54,48,46,50,52,56,53,48,51,44,53,57,46,54,48,54,49,53,52,93,44,91,45,49,54,48,46,52,49,56,54,52,55,44,53,57,46,54,48,54,49,53,50,93,44,91,45,49,54,48,46,52,49,56,54,52,44,53,57,46,52,51,50,56,93,44,91,45,49,54,48,46,52,55,53,50,57,54,44,53,57,46,51,52,54,49,50,50,93,44,91,45,49,54,48,46,54,52,51,55,49,54,44,53,57,46,50,53,57,52,52,93,44,91,45,49,54,48,46,56,49,50,49,52,44,53,57,46,50,53,57,52,51,56,93,44,91,45,49,54,48,46,56,49,50,49,51,51,44,53,57,46,48,56,54,48,55,55,93,44,91,45,49,54,48,46,56,54,52,55,48,51,44,53,56,46,57,57,57,51,57,52,93,44,91,45,49,54,49,46,48,51,49,52,52,56,44,53,56,46,57,57,57,51,57,51,93,44,91,45,49,54,49,46,48,51,49,52,52,49,44,53,56,46,56,51,57,55,53,50,93,44,91,45,49,54,49,46,51,54,52,57,51,49,44,53,56,46,56,50,54,48,50,49,93,44,91,45,49,54,49,46,49,57,56,49,56,51,44,53,56,46,55,51,57,51,51,55,93,44,91,45,49,54,49,46,51,52,49,56,52,44,53,56,46,54,48,55,48,57,49,93,44,91,45,49,54,49,46,49,55,55,48,51,55,44,53,56,46,54,48,55,48,54,56,93,44,91,45,49,54,49,46,49,53,56,57,49,56,44,53,56,46,53,49,50,51,56,51,93,44,91,45,49,54,48,46,57,51,51,52,51,54,44,53,56,46,52,57,54,49,48,57,93,44,91,45,49,54,48,46,56,48,49,55,55,51,44,53,56,46,53,53,49,52,50,56,93,44,91,45,49,54,48,46,54,48,49,54,50,56,44,53,56,46,55,57,51,51,50,51,93,44,91,45,49,54,48,46,54,48,56,55,49,53,44,53,56,46,56,52,51,54,50,49,93,44,91,45,49,54,48,46,51,52,51,48,56,55,44,53,56,46,56,56,48,53,52,50,93,44,91,45,49,54,48,46,50,57,55,54,48,49,44,53,56,46,55,57,57,49,53,93,44,91,45,49,53,57,46,56,57,51,56,54,49,44,53,56,46,55,49,53,48,51,54,93,44,91,45,49,53,57,46,55,48,49,54,57,52,44,53,56,46,55,57,54,51,57,55,93,44,91,45,49,53,57,46,53,52,52,54,56,53,44,53,56,46,55,55,56,52,49,57,93,44,91,45,49,53,57,46,49,53,49,51,56,56,44,53,56,46,52,49,53,55,55,51,93,44,91,45,49,53,57,46,48,49,56,55,50,50,44,53,56,46,51,51,52,49,52,93,44,91,45,49,53,56,46,56,49,48,51,50,57,44,53,56,46,51,52,55,49,53,49,93,44,91,45,49,53,56,46,54,48,53,50,51,53,44,53,56,46,52,53,53,53,57,50,93,44,91,45,49,53,56,46,50,49,51,48,51,50,44,53,56,46,53,52,50,54,48,52,93,44,91,45,49,53,56,46,48,54,57,56,50,50,44,53,56,46,52,57,48,51,49,55,93,44,91,45,49,53,56,44,53,56,46,54,49,54,54,54,55,93,44,91,45,49,53,55,46,57,57,57,57,53,57,44,53,56,46,54,52,50,49,54,56,93,44,91,45,49,53,55,46,49,57,54,50,57,50,44,53,56,46,56,52,54,50,52,57,93,44,91,45,49,53,55,46,49,57,54,51,48,54,44,53,57,46,48,56,54,49,50,50,93,44,91,45,49,53,55,46,50,55,53,50,51,51,44,53,57,46,50,53,57,52,56,50,93,44,91,45,49,53,55,46,49,48,54,56,49,52,44,53,57,46,51,52,54,49,54,50,93,44,91,45,49,53,54,46,55,54,57,57,54,53,44,53,57,46,51,52,54,49,54,54,93,44,91,45,49,53,54,46,54,55,53,52,56,57,44,53,57,46,53,49,57,53,50,49,93,44,91,45,49,53,54,46,53,48,53,51,52,57,44,53,57,46,54,48,54,49,57,57,93,44,91,45,49,53,54,46,49,54,53,48,54,54,44,53,57,46,54,48,54,50,48,50,93,44,91,45,49,53,54,46,48,48,48,49,52,53,44,53,57,46,54,57,50,56,55,57,93,44,91,45,49,53,54,46,48,48,48,48,56,54,44,54,48,46,57,48,54,49,57,93,93,93,44,91,91,91,45,49,54,48,46,53,52,52,48,53,56,44,53,56,46,54,56,55,56,51,56,93,44,91,45,49,54,48,46,51,57,54,56,54,49,44,53,56,46,53,53,51,57,49,57,93,44,91,45,49,54,48,46,51,48,49,48,50,57,44,53,56,46,53,51,53,55,53,56,93,44,91,45,49,54,48,46,48,57,54,57,55,51,44,53,56,46,54,57,55,50,56,51,93,44,91,45,49,54,48,46,49,51,55,54,49,56,44,53,56,46,55,52,56,56,57,56,93,44,91,45,49,54,48,46,52,49,54,48,51,57,44,53,56,46,55,57,56,52,52,53,93,44,91,45,49,54,48,46,53,52,52,48,53,56,44,53,56,46,54,56,55,56,51,56,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,57,55,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,56,57,57,57,55,44,51,57,46,49,51,50,54,57,55,93,44,91,45,57,56,46,52,56,52,56,54,49,44,51,56,46,56,55,48,55,57,49,93,44,91,45,57,55,46,57,50,56,53,57,50,44,51,56,46,56,55,49,48,57,57,93,44,91,45,57,55,46,57,50,56,53,54,44,51,56,46,57,53,56,51,57,53,93,44,91,45,57,55,46,57,50,57,55,52,54,44,51,57,46,50,49,57,50,55,51,93,44,91,45,57,56,46,52,57,48,49,52,57,44,51,57,46,50,49,57,55,56,93,44,91,45,57,56,46,52,56,57,57,57,55,44,51,57,46,49,51,50,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,83,109,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,54,55,48,52,54,44,52,48,46,48,48,50,51,52,56,93,44,91,45,57,57,46,48,54,54,50,50,44,51,57,46,53,54,56,49,50,53,93,44,91,45,57,57,46,48,52,52,51,57,56,44,51,57,46,53,54,56,48,51,53,93,44,91,45,57,56,46,53,48,53,50,54,54,44,51,57,46,53,54,55,54,48,51,93,44,91,45,57,56,46,53,48,52,52,53,53,44,52,48,46,48,48,50,50,57,49,93,44,91,45,57,56,46,55,50,54,51,55,51,44,52,48,46,48,48,50,52,93,44,91,45,57,57,46,48,54,55,48,52,54,44,52,48,46,48,48,50,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,48,55,52,53,52,44,51,48,46,54,55,50,49,50,55,93,44,91,45,56,51,46,57,55,56,54,48,55,44,51,48,46,53,50,50,54,56,55,93,44,91,45,56,52,46,48,55,52,54,57,49,44,51,48,46,52,51,52,51,48,50,93,44,91,45,56,52,46,48,55,53,53,51,57,44,51,48,46,50,55,51,54,49,55,93,44,91,45,56,52,46,48,55,53,52,53,53,44,51,48,46,48,51,52,54,50,54,93,44,91,45,56,51,46,57,57,57,56,56,51,44,51,48,46,48,49,50,50,50,53,93,44,91,45,56,51,46,57,49,53,51,54,57,44,51,48,46,50,52,52,55,55,57,93,44,91,45,56,51,46,56,50,48,50,51,53,44,51,48,46,51,48,51,53,52,93,44,91,45,56,51,46,55,50,49,55,50,44,51,48,46,52,51,52,51,53,52,93,44,91,45,56,51,46,55,51,54,57,53,52,44,51,48,46,53,48,55,53,54,57,93,44,91,45,56,51,46,54,48,52,49,56,54,44,51,48,46,53,56,49,57,49,54,93,44,91,45,56,51,46,54,49,49,55,50,44,51,48,46,54,53,49,50,53,56,93,44,91,45,56,51,46,55,52,51,55,50,57,44,51,48,46,54,53,56,51,57,54,93,44,91,45,56,52,46,48,48,55,52,53,52,44,51,48,46,54,55,50,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,105,100,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,51,52,51,44,34,98,101,100,115,34,58,50,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,54,57,49,50,54,44,49,56,46,50,50,52,50,57,93,44,91,45,54,54,46,50,52,48,52,54,44,49,56,46,49,56,52,55,57,52,93,44,91,45,54,54,46,50,52,50,55,51,53,44,49,56,46,49,56,48,50,52,56,93,44,91,45,54,54,46,50,49,54,56,57,57,44,49,56,46,49,52,51,50,50,93,44,91,45,54,54,46,48,57,53,48,57,57,44,49,56,46,49,54,57,48,55,55,93,44,91,45,54,54,46,49,49,55,55,55,52,44,49,56,46,50,48,57,57,52,57,93,44,91,45,54,54,46,49,54,57,49,50,54,44,49,56,46,50,50,52,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,109,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,57,53,51,57,56,44,51,49,46,51,50,48,57,55,53,93,44,91,45,57,49,46,48,53,57,52,51,49,44,51,49,46,50,56,49,56,53,56,93,44,91,45,57,49,46,48,54,48,50,49,57,44,51,48,46,57,57,56,57,50,55,93,44,91,45,57,48,46,56,50,53,56,50,57,44,51,48,46,57,57,57,51,54,49,93,44,91,45,57,48,46,53,54,55,49,57,53,44,51,48,46,57,57,57,55,51,51,93,44,91,45,57,48,46,53,52,55,54,49,54,44,51,48,46,57,57,57,55,50,93,44,91,45,57,48,46,53,52,56,49,57,57,44,51,49,46,51,52,57,53,55,52,93,44,91,45,57,48,46,54,51,51,51,48,50,44,51,49,46,51,52,57,51,48,54,93,44,91,45,57,48,46,57,56,51,48,48,50,44,51,49,46,51,52,56,54,55,49,93,44,91,45,57,49,46,48,57,53,51,57,56,44,51,49,46,51,50,48,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,51,48,53,48,57,44,51,52,46,54,54,53,54,48,56,93,44,91,45,57,51,46,57,51,53,51,55,49,44,51,52,46,51,53,48,48,57,55,93,44,91,45,57,51,46,52,55,56,54,52,54,44,51,52,46,51,52,48,56,53,49,93,44,91,45,57,51,46,52,48,56,49,50,52,44,51,52,46,51,51,57,53,50,55,93,44,91,45,57,51,46,52,48,55,50,50,49,44,51,52,46,51,57,55,52,52,55,93,44,91,45,57,51,46,51,57,52,50,56,57,44,51,52,46,55,52,51,51,57,51,93,44,91,45,57,51,46,55,49,48,50,57,55,44,51,52,46,55,52,53,50,57,54,93,44,91,45,57,51,46,57,51,48,53,48,57,44,51,52,46,54,54,53,54,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,52,55,51,44,34,98,101,100,115,34,58,50,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,57,56,56,55,57,44,52,50,46,52,49,57,56,52,57,93,44,91,45,56,53,46,50,57,51,54,50,54,44,52,50,46,48,55,49,53,53,51,93,44,91,45,56,52,46,56,50,54,52,57,49,44,52,50,46,48,55,50,52,54,56,93,44,91,45,56,52,46,55,48,57,53,53,54,44,52,50,46,48,55,48,51,54,54,93,44,91,45,56,52,46,55,49,56,52,57,51,44,52,50,46,52,50,49,53,50,93,44,91,45,56,53,46,48,55,49,54,48,57,44,52,50,46,52,50,49,52,50,56,93,44,91,45,56,53,46,50,57,56,56,55,57,44,52,50,46,52,49,57,56,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,108,101,98,117,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,51,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,51,48,48,57,52,44,51,51,46,57,52,49,52,50,51,93,44,91,45,56,53,46,54,48,49,56,53,56,44,51,51,46,56,56,57,55,53,93,44,91,45,56,53,46,54,51,56,53,55,57,44,51,51,46,54,52,56,52,49,51,93,44,91,45,56,53,46,55,57,54,48,53,52,44,51,51,46,53,53,54,50,50,93,44,91,45,56,53,46,56,53,49,56,57,44,51,51,46,52,57,56,55,52,50,93,44,91,45,56,53,46,54,52,51,52,56,50,44,51,51,46,52,57,53,56,56,53,93,44,91,45,56,53,46,51,48,52,52,51,57,44,51,51,46,52,56,50,56,56,52,93,44,91,45,56,53,46,51,51,56,50,51,44,51,51,46,54,53,51,49,49,55,93,44,91,45,56,53,46,51,56,54,53,56,49,44,51,51,46,57,48,49,55,49,57,93,44,91,45,56,53,46,51,57,56,56,51,55,44,51,51,46,57,54,52,49,50,57,93,44,91,45,56,53,46,53,51,48,48,57,52,44,51,51,46,57,52,49,52,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,87,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,53,49,50,51,44,34,98,101,100,115,34,58,51,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,52,51,51,55,49,44,52,48,46,57,57,56,50,49,51,93,44,91,45,49,48,52,46,57,52,53,53,53,49,44,52,48,46,51,52,57,48,57,57,93,44,91,45,49,48,53,46,48,53,53,48,56,57,44,52,48,46,50,54,49,55,57,51,93,44,91,45,49,48,53,46,48,53,50,56,50,51,44,52,48,46,48,48,48,50,54,93,44,91,45,49,48,52,46,57,54,49,52,48,53,44,52,48,46,48,48,48,51,51,55,93,44,91,45,49,48,52,46,49,53,48,51,51,50,44,52,48,46,48,48,48,56,53,54,93,44,91,45,49,48,52,46,49,52,55,55,49,52,44,52,48,46,53,50,52,51,56,57,93,44,91,45,49,48,51,46,53,56,49,56,52,52,44,52,48,46,53,50,51,51,56,51,93,44,91,45,49,48,51,46,53,55,51,55,55,52,44,52,49,46,48,48,49,55,49,54,93,44,91,45,49,48,52,46,48,53,51,50,52,57,44,52,49,46,48,48,49,52,48,54,93,44,91,45,49,48,52,46,57,52,51,51,55,49,44,52,48,46,57,57,56,50,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,101,99,107,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,50,49,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,54,52,49,52,49,44,51,53,46,53,48,56,55,57,51,93,44,91,45,57,57,46,53,55,53,55,50,51,44,51,53,46,53,48,56,56,54,52,93,44,91,45,57,57,46,53,55,53,56,50,44,51,53,46,52,50,49,54,53,53,93,44,91,45,57,57,46,57,57,57,54,54,44,51,53,46,52,50,50,51,54,52,93,44,91,45,49,48,48,46,48,48,48,51,56,53,44,51,53,46,49,56,50,55,48,50,93,44,91,45,49,48,48,46,48,48,48,51,56,52,44,51,53,46,48,50,57,57,51,93,44,91,45,57,57,46,56,56,56,52,52,52,44,51,53,46,48,50,57,56,56,57,93,44,91,45,57,57,46,55,56,50,55,50,55,44,51,53,46,49,49,54,57,52,93,44,91,45,57,57,46,52,48,57,50,57,49,44,51,53,46,49,49,52,53,48,57,93,44,91,45,57,57,46,51,54,48,50,50,54,44,51,53,46,49,49,54,55,51,56,93,44,91,45,57,57,46,51,54,52,50,49,55,44,51,53,46,52,54,53,51,50,56,93,44,91,45,57,57,46,51,54,52,49,52,49,44,51,53,46,53,48,56,55,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,77,111,100,111,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,51,56,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,52,52,55,53,51,56,44,52,49,46,57,57,55,52,54,53,93,44,91,45,49,50,49,46,52,52,54,52,57,53,44,52,49,46,49,56,51,52,56,52,93,44,91,45,49,50,49,46,51,51,49,55,56,54,44,52,49,46,49,56,51,56,56,54,93,44,91,45,49,49,57,46,57,57,57,56,54,54,44,52,49,46,49,56,51,57,55,52,93,44,91,45,49,49,57,46,57,57,57,50,51,52,44,52,49,46,57,57,52,57,52,52,93,44,91,45,49,50,48,46,56,55,57,57,50,54,44,52,49,46,57,57,51,55,54,52,93,44,91,45,49,50,49,46,52,52,55,53,51,56,44,52,49,46,57,57,55,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,52,50,55,52,44,34,98,101,100,115,34,58,49,54,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,49,53,55,50,49,44,52,49,46,56,54,51,52,49,57,93,44,91,45,57,51,46,56,49,52,50,56,50,44,52,49,46,54,48,48,52,53,54,93,44,91,45,57,51,46,55,57,48,54,49,50,44,52,49,46,53,49,49,57,49,54,93,44,91,45,57,51,46,52,50,50,56,53,52,44,52,49,46,53,49,49,52,52,52,93,44,91,45,57,51,46,51,50,56,52,48,55,44,52,49,46,52,57,48,57,50,49,93,44,91,45,57,51,46,51,50,56,54,49,52,44,52,49,46,53,48,55,56,50,52,93,44,91,45,57,51,46,51,52,55,57,51,51,44,52,49,46,56,54,51,49,48,52,93,44,91,45,57,51,46,54,57,56,48,51,50,44,52,49,46,56,54,51,51,55,93,44,91,45,57,51,46,56,49,53,55,50,49,44,52,49,46,56,54,51,52,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,76,105,98,101,114,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,49,48,56,44,34,98,101,100,115,34,58,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,50,52,52,48,53,44,51,50,46,48,49,52,56,56,50,93,44,91,45,56,49,46,55,53,48,50,53,55,44,51,49,46,57,55,51,50,48,55,93,44,91,45,56,49,46,55,54,53,51,53,55,44,51,49,46,56,55,52,53,52,93,44,91,45,56,49,46,54,52,49,55,54,49,44,51,49,46,55,54,53,52,53,49,93,44,91,45,56,49,46,52,57,49,55,57,56,44,51,49,46,54,57,57,53,55,53,93,44,91,45,56,49,46,52,51,53,55,54,44,51,49,46,54,52,50,48,53,53,93,44,91,45,56,49,46,50,54,49,56,54,56,44,51,49,46,54,53,48,49,52,50,93,44,91,45,56,49,46,49,55,53,49,52,56,44,51,49,46,53,51,57,54,54,93,44,91,45,56,49,46,48,57,53,51,56,51,44,51,49,46,53,50,48,57,56,49,93,44,91,45,56,49,46,48,53,49,53,50,49,44,51,49,46,55,48,53,49,57,56,93,44,91,45,56,49,46,49,53,52,55,51,49,44,51,49,46,55,49,51,48,55,93,44,91,45,56,49,46,51,55,54,57,53,52,44,51,49,46,56,52,56,50,53,55,93,44,91,45,56,49,46,52,48,52,51,56,56,44,51,49,46,57,49,57,55,48,49,93,44,91,45,56,49,46,53,57,50,51,57,49,44,51,49,46,57,55,50,52,54,57,93,44,91,45,56,49,46,55,49,56,54,53,56,44,51,50,46,48,56,57,51,53,49,93,44,91,45,56,49,46,55,54,49,55,51,53,44,51,50,46,48,52,55,57,93,44,91,45,56,49,46,56,50,52,52,48,53,44,51,50,46,48,49,52,56,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,52,57,34,44,34,78,65,77,69,34,58,34,78,97,118,97,114,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,53,56,51,44,34,98,101,100,115,34,58,49,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,56,51,48,56,50,44,51,50,46,51,50,56,56,53,49,93,44,91,45,57,54,46,56,57,54,50,48,57,44,51,50,46,48,55,51,57,55,55,93,44,91,45,57,54,46,55,49,57,49,49,52,44,51,49,46,56,49,52,56,56,55,93,44,91,45,57,54,46,52,57,54,55,49,51,44,51,49,46,55,57,54,49,57,49,93,44,91,45,57,54,46,48,53,52,55,56,44,51,50,46,48,49,50,53,50,54,93,44,91,45,57,54,46,50,51,52,50,53,49,44,51,50,46,50,53,48,51,57,57,93,44,91,45,57,54,46,51,56,51,48,56,50,44,51,50,46,51,50,56,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,66,114,111,111,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,50,51,50,56,52,44,50,55,46,50,54,53,49,53,93,44,91,45,57,56,46,52,54,54,53,52,50,44,50,55,46,48,53,52,55,49,49,93,44,91,45,57,56,46,52,49,55,56,56,51,44,50,55,46,48,53,53,50,56,53,93,44,91,45,57,56,46,52,50,50,54,49,54,44,50,54,46,55,56,51,53,51,53,93,44,91,45,57,56,46,51,50,48,54,55,44,50,54,46,55,56,51,48,56,49,93,44,91,45,57,55,46,57,56,53,52,57,52,44,50,54,46,55,56,48,57,49,55,93,44,91,45,57,55,46,57,56,53,56,56,55,44,50,55,46,50,48,57,51,48,56,93,44,91,45,57,56,46,48,53,56,48,55,56,44,50,55,46,50,54,48,57,56,49,93,44,91,45,57,56,46,50,51,50,52,54,52,44,50,55,46,50,54,50,52,56,55,93,44,91,45,57,56,46,53,50,51,50,56,52,44,50,55,46,50,54,53,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,54,52,56,44,34,98,101,100,115,34,58,51,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,49,56,56,57,50,44,51,53,46,57,54,56,50,50,52,93,44,91,45,56,54,46,55,57,48,56,55,53,44,51,54,46,48,51,54,55,49,53,93,44,91,45,56,55,46,48,53,51,55,50,50,44,51,54,46,48,52,53,53,56,50,93,44,91,45,56,55,46,49,56,50,53,55,51,44,51,54,46,48,52,57,55,50,54,93,44,91,45,56,55,46,50,48,52,50,52,50,44,51,53,46,57,53,57,49,56,54,93,44,91,45,56,55,46,50,49,53,48,57,57,44,51,53,46,56,53,48,54,53,49,93,44,91,45,56,54,46,55,56,50,48,49,54,44,51,53,46,55,48,54,53,57,53,93,44,91,45,56,54,46,54,56,54,49,57,51,44,51,53,46,55,49,48,48,53,49,93,44,91,45,56,54,46,54,49,51,51,50,56,44,51,53,46,55,57,48,51,51,49,93,44,91,45,56,54,46,54,49,56,56,57,50,44,51,53,46,57,54,56,50,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,76,97,114,97,109,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,54,57,50,44,34,98,101,100,115,34,58,50,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,50,53,52,44,52,49,46,53,54,52,50,55,52,93,44,91,45,49,48,52,46,54,53,50,57,57,50,44,52,49,46,53,54,53,48,49,52,93,44,91,45,49,48,52,46,54,53,51,51,51,56,44,52,49,46,54,53,51,48,48,55,93,44,91,45,49,48,53,46,50,55,56,50,51,54,44,52,49,46,54,53,54,54,53,53,93,44,91,45,49,48,53,46,50,55,54,56,54,44,52,48,46,57,57,56,49,55,50,93,44,91,45,49,48,52,46,57,52,51,51,55,49,44,52,48,46,57,57,56,50,49,51,93,44,91,45,49,48,52,46,48,53,51,50,52,57,44,52,49,46,48,48,49,52,48,54,93,44,91,45,49,48,52,46,48,53,50,50,56,55,44,52,49,46,51,57,51,50,49,52,93,44,91,45,49,48,52,46,48,53,50,53,52,44,52,49,46,53,54,52,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,115,111,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,51,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,50,50,56,49,50,44,52,54,46,52,54,50,50,52,53,93,44,91,45,49,49,55,46,50,50,56,55,57,54,44,52,54,46,52,49,49,51,48,54,93,44,91,45,49,49,55,46,52,49,57,51,51,52,44,52,54,46,51,56,51,49,51,57,93,44,91,45,49,49,55,46,52,49,57,52,56,50,44,52,54,46,49,50,49,57,53,54,93,44,91,45,49,49,55,46,52,55,57,57,51,53,44,52,53,46,57,57,55,56,48,49,93,44,91,45,49,49,54,46,57,49,54,48,55,49,44,52,53,46,57,57,53,51,53,55,93,44,91,45,49,49,54,46,57,50,49,51,53,44,52,54,46,49,54,52,53,49,52,93,44,91,45,49,49,55,46,48,51,57,55,54,54,44,52,54,46,52,50,53,56,56,55,93,44,91,45,49,49,55,46,50,50,56,49,50,44,52,54,46,52,54,50,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,84,114,97,118,101,114,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,51,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,54,51,54,55,50,44,52,53,46,57,51,53,50,52,53,93,44,91,45,57,54,46,53,56,51,48,56,53,44,52,53,46,56,50,48,48,50,52,93,44,91,45,57,54,46,54,55,50,54,54,53,44,52,53,46,55,51,50,51,51,54,93,44,91,45,57,54,46,56,51,56,54,52,56,44,52,53,46,54,52,55,53,48,57,93,44,91,45,57,54,46,56,51,53,52,53,49,44,52,53,46,53,56,54,49,50,57,93,44,91,45,57,54,46,50,53,51,48,50,54,44,52,53,46,53,56,53,53,50,54,93,44,91,45,57,54,46,50,53,52,48,50,50,44,52,53,46,55,53,57,56,50,93,44,91,45,57,54,46,50,54,54,49,52,44,52,54,46,48,50,49,54,49,93,44,91,45,57,54,46,53,55,54,53,54,52,44,52,54,46,48,50,49,56,52,56,93,44,91,45,57,54,46,53,54,51,54,55,50,44,52,53,46,57,51,53,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,57,53,48,57,44,52,48,46,49,48,56,57,48,56,93,44,91,45,57,48,46,49,51,52,50,56,49,44,52,48,46,48,54,50,53,50,52,93,44,91,45,57,48,46,50,56,55,56,51,55,44,52,48,46,48,54,51,55,56,52,93,44,91,45,57,48,46,51,53,52,53,50,52,44,52,48,46,49,50,52,50,49,55,93,44,91,45,57,48,46,53,49,51,55,52,55,44,51,57,46,57,56,55,56,57,49,93,44,91,45,57,48,46,53,56,51,53,51,52,44,51,57,46,56,55,54,55,53,93,44,91,45,56,57,46,57,57,52,52,48,53,44,51,57,46,56,55,50,56,54,93,44,91,45,56,57,46,57,57,52,53,48,54,44,51,57,46,57,48,49,57,50,53,93,44,91,45,56,57,46,57,57,53,48,57,44,52,48,46,49,48,56,57,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,55,34,44,34,78,65,77,69,34,58,34,82,111,99,107,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,48,49,49,44,34,98,101,100,115,34,58,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,50,51,55,49,51,44,51,51,46,55,53,50,56,48,56,93,44,91,45,56,52,46,49,49,48,49,50,52,44,51,51,46,54,50,53,49,49,93,44,91,45,56,52,46,49,56,52,49,52,51,44,51,51,46,54,52,54,49,53,55,93,44,91,45,56,52,46,48,52,52,52,57,51,44,51,51,46,53,50,53,55,55,54,93,44,91,45,56,51,46,57,51,48,56,54,51,44,51,51,46,54,53,49,56,50,51,93,44,91,45,56,51,46,57,49,52,56,50,51,44,51,51,46,55,52,52,50,48,51,93,44,91,45,56,51,46,57,56,50,48,51,51,44,51,51,46,55,56,54,48,53,52,93,44,91,45,56,52,46,48,50,51,55,49,51,44,51,51,46,55,53,50,56,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,74,117,110,105,97,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,53,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,51,57,55,52,57,44,52,48,46,54,51,56,51,55,56,93,44,91,45,55,55,46,48,51,53,53,52,57,44,52,48,46,54,55,54,57,49,56,93,44,91,45,55,55,46,50,56,55,57,52,49,44,52,48,46,54,57,51,53,57,53,93,44,91,45,55,55,46,52,57,55,53,48,54,44,52,48,46,53,56,49,55,52,93,44,91,45,55,55,46,55,53,50,49,50,44,52,48,46,51,55,56,53,52,53,93,44,91,45,55,55,46,55,48,51,48,51,44,52,48,46,50,54,51,53,55,54,93,44,91,45,55,55,46,54,55,49,55,54,49,44,52,48,46,50,56,57,56,50,53,93,44,91,45,55,55,46,53,52,48,49,52,49,44,52,48,46,51,57,57,50,50,49,93,44,91,45,55,55,46,50,56,57,53,57,50,44,52,48,46,53,49,56,52,53,55,93,44,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,44,91,45,55,54,46,57,51,57,55,52,57,44,52,48,46,54,51,56,51,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,77,99,75,101,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,56,48,54,44,34,98,101,100,115,34,58,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,48,56,49,50,56,44,52,49,46,57,57,57,52,49,53,93,44,91,45,55,56,46,57,49,56,56,53,53,44,52,49,46,57,57,56,49,49,57,93,44,91,45,55,56,46,57,53,54,48,53,54,44,52,49,46,54,50,51,56,54,51,93,44,91,45,55,56,46,52,56,51,52,48,57,44,52,49,46,54,50,57,56,57,56,93,44,91,45,55,56,46,52,49,57,49,49,56,44,52,49,46,54,48,50,49,56,56,93,44,91,45,55,56,46,50,48,51,52,50,50,44,52,49,46,54,49,56,49,53,55,93,44,91,45,55,56,46,50,48,54,54,48,52,44,52,49,46,57,57,57,53,57,53,93,44,91,45,55,56,46,51,48,56,49,50,56,44,52,49,46,57,57,57,52,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,71,97,114,118,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,50,51,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,51,50,52,51,54,44,51,52,46,56,53,52,52,57,54,93,44,91,45,57,55,46,54,54,56,48,57,57,44,51,52,46,56,53,53,49,54,52,93,44,91,45,57,55,46,54,54,56,53,49,50,44,51,52,46,54,56,49,51,52,93,44,91,45,57,55,46,53,54,51,48,48,52,44,51,52,46,54,56,49,49,56,53,93,44,91,45,57,55,46,53,54,50,51,50,51,44,51,52,46,53,48,55,48,51,54,93,44,91,45,57,55,46,51,53,50,49,56,51,44,51,52,46,53,48,54,55,57,54,93,44,91,45,57,55,46,49,52,51,57,55,51,44,51,52,46,53,48,54,54,48,54,93,44,91,45,57,55,46,49,52,50,54,55,49,44,51,52,46,54,51,55,49,50,54,93,44,91,45,57,54,46,57,51,50,52,53,50,44,51,52,46,54,51,54,56,49,50,93,44,91,45,57,54,46,57,51,50,52,51,54,44,51,52,46,56,53,52,52,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,117,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,50,56,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,53,52,56,54,54,44,52,50,46,48,49,53,56,55,53,93,44,91,45,57,54,46,53,53,53,49,55,50,44,52,49,46,55,52,50,48,49,56,93,44,91,45,57,54,46,52,52,52,55,56,53,44,52,49,46,54,56,51,54,51,51,93,44,91,45,57,54,46,49,50,50,54,48,52,44,52,49,46,54,56,51,48,52,93,44,91,45,57,54,46,48,54,52,56,57,55,44,52,49,46,55,57,49,54,55,51,93,44,91,45,57,54,46,49,51,57,48,48,56,44,52,49,46,56,54,54,50,55,55,93,44,91,45,57,54,46,49,50,57,49,56,54,44,52,49,46,57,54,53,49,51,54,93,44,91,45,57,54,46,50,55,51,49,50,44,52,50,46,48,52,55,49,53,56,93,44,91,45,57,54,46,51,48,57,54,52,53,44,52,50,46,48,49,53,49,56,55,93,44,91,45,57,54,46,53,53,52,56,54,54,44,52,50,46,48,49,53,56,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,117,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,52,53,53,44,34,98,101,100,115,34,58,50,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,52,56,49,55,51,55,44,51,55,46,48,48,48,49,50,55,93,44,91,45,49,48,56,46,51,55,57,51,48,51,44,51,54,46,57,57,57,54,48,56,93,44,91,45,49,48,57,46,48,52,53,49,55,50,44,51,54,46,57,57,56,57,55,55,93,44,91,45,49,48,57,46,48,52,54,48,54,55,44,51,54,46,48,48,50,55,48,49,93,44,91,45,49,48,55,46,54,50,54,53,49,49,44,51,54,46,48,48,48,50,56,56,93,44,91,45,49,48,55,46,54,50,52,50,56,51,44,51,54,46,50,49,57,56,48,57,93,44,91,45,49,48,55,46,54,49,56,49,56,49,44,51,54,46,56,48,52,50,54,55,93,44,91,45,49,48,55,46,52,53,49,52,52,53,44,51,54,46,57,48,52,48,51,54,93,44,91,45,49,48,55,46,52,50,49,50,50,51,44,51,55,46,48,48,48,50,50,51,93,44,91,45,49,48,55,46,52,56,49,55,51,55,44,51,55,46,48,48,48,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,79,114,108,101,97,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,49,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,54,56,55,49,49,44,52,51,46,54,51,51,52,50,56,93,44,91,45,55,56,46,52,54,53,53,48,53,44,52,51,46,49,50,56,54,49,57,93,44,91,45,55,55,46,57,57,55,50,57,44,52,51,46,49,51,50,57,56,49,93,44,91,45,55,55,46,57,57,51,57,56,50,44,52,51,46,54,51,49,50,51,52,93,44,91,45,55,56,46,52,54,56,55,49,49,44,52,51,46,54,51,51,52,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,101,32,83,111,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,49,54,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,49,52,54,57,44,51,50,46,50,51,55,53,50,54,93,44,91,45,57,51,46,54,54,54,52,55,50,44,51,50,46,51,49,55,52,52,52,93,44,91,45,57,51,46,55,54,52,55,54,51,44,51,50,46,51,52,53,54,52,54,93,44,91,45,57,51,46,57,53,49,48,56,53,44,51,50,46,49,57,53,53,52,53,93,44,91,45,57,52,46,48,52,50,53,57,56,44,51,50,46,49,57,54,48,48,53,93,44,91,45,57,52,46,48,49,53,54,51,44,51,49,46,57,55,57,56,53,54,93,44,91,45,57,51,46,56,55,57,48,54,49,44,51,49,46,56,52,52,50,56,55,93,44,91,45,57,51,46,52,52,49,49,55,49,44,51,49,46,56,52,53,50,51,51,93,44,91,45,57,51,46,51,53,53,52,53,50,44,51,49,46,57,51,50,50,50,50,93,44,91,45,57,51,46,53,52,49,51,53,51,44,51,50,46,49,48,53,56,56,93,44,91,45,57,51,46,53,50,51,52,49,54,44,51,50,46,49,55,54,57,57,49,93,44,91,45,57,51,46,54,49,52,54,57,44,51,50,46,50,51,55,53,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,70,114,101,115,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,56,49,51,48,44,34,98,101,100,115,34,58,51,48,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,48,50,50,51,54,51,44,51,55,46,53,56,53,55,51,55,93,44,91,45,49,49,57,46,51,49,50,49,56,54,44,51,55,46,51,53,50,55,50,53,93,44,91,45,49,49,57,46,51,51,48,53,55,51,44,51,55,46,50,48,53,55,57,49,93,44,91,45,49,49,57,46,51,56,54,53,50,49,44,51,55,46,49,52,57,53,51,93,44,91,45,49,49,57,46,53,53,57,52,49,50,44,51,55,46,49,52,51,54,49,57,93,44,91,45,49,49,57,46,53,54,50,57,55,57,44,51,55,46,48,54,52,48,57,53,93,44,91,45,49,49,57,46,54,57,48,55,55,57,44,51,55,46,48,49,49,57,56,55,93,44,91,45,49,49,57,46,56,49,51,55,51,52,44,51,54,46,56,53,48,52,49,50,93,44,91,45,49,50,48,46,48,55,57,52,53,56,44,51,54,46,56,50,53,51,52,53,93,44,91,45,49,50,48,46,49,56,56,56,51,44,51,54,46,55,55,54,52,48,56,93,44,91,45,49,50,48,46,51,55,48,50,53,54,44,51,54,46,55,56,52,57,52,93,44,91,45,49,50,48,46,53,52,49,54,57,54,44,51,55,46,48,52,52,53,48,53,93,44,91,45,49,50,48,46,57,49,56,55,51,49,44,51,54,46,55,52,48,51,56,49,93,44,91,45,49,50,48,46,54,48,51,55,48,54,44,51,54,46,52,56,56,50,52,50,93,44,91,45,49,50,48,46,53,57,54,53,54,50,44,51,54,46,51,50,56,52,56,56,93,44,91,45,49,50,48,46,54,55,56,53,56,50,44,51,54,46,50,54,55,51,49,57,93,44,91,45,49,50,48,46,54,52,56,55,56,52,44,51,54,46,49,48,55,57,57,93,44,91,45,49,50,48,46,51,49,53,48,54,56,44,51,53,46,57,48,55,49,56,54,93,44,91,45,49,49,57,46,57,53,57,50,49,44,51,54,46,49,56,49,52,48,51,93,44,91,45,49,49,57,46,57,53,57,50,50,55,44,51,54,46,52,48,48,57,55,53,93,44,91,45,49,49,57,46,54,54,54,50,57,44,51,54,46,52,49,56,57,54,93,44,91,45,49,49,57,46,53,55,51,49,57,52,44,51,54,46,52,56,56,56,51,53,93,44,91,45,49,49,57,46,52,54,54,51,50,50,44,51,54,46,53,55,53,50,51,56,93,44,91,45,49,49,57,46,51,48,53,49,48,50,44,51,54,46,53,55,51,55,50,53,93,44,91,45,49,49,57,46,51,48,52,54,50,53,44,51,54,46,54,54,48,54,48,54,93,44,91,45,49,49,56,46,57,56,52,55,55,57,44,51,54,46,54,53,55,49,52,55,93,44,91,45,49,49,56,46,57,56,50,52,52,49,44,51,54,46,55,52,49,54,52,54,93,44,91,45,49,49,56,46,51,54,48,53,56,54,44,51,54,46,55,52,52,55,55,51,93,44,91,45,49,49,56,46,51,54,48,56,51,49,44,51,54,46,56,56,55,55,51,52,93,44,91,45,49,49,56,46,52,50,50,53,57,53,44,51,55,46,48,50,52,51,54,93,44,91,45,49,49,56,46,53,48,51,49,48,51,44,51,55,46,48,57,53,50,50,49,93,44,91,45,49,49,56,46,54,53,52,53,57,51,44,51,55,46,49,52,49,56,50,54,93,44,91,45,49,49,56,46,55,49,54,48,49,54,44,51,55,46,51,50,56,50,48,56,93,44,91,45,49,49,56,46,55,56,54,55,51,54,44,51,55,46,51,52,51,51,56,93,44,91,45,49,49,56,46,55,55,53,48,49,52,44,51,55,46,52,54,51,48,53,50,93,44,91,45,49,49,57,46,48,50,50,51,54,51,44,51,55,46,53,56,53,55,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,69,108,98,101,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,49,50,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,55,51,52,49,44,51,52,46,50,56,56,56,54,52,93,44,91,45,56,50,46,57,56,48,57,48,53,44,51,52,46,50,49,49,53,48,53,93,44,91,45,56,51,46,48,55,56,48,48,52,44,51,52,46,50,50,51,54,48,54,93,44,91,45,56,50,46,57,55,54,50,57,52,44,51,52,46,48,52,51,50,49,57,93,44,91,45,56,50,46,55,55,57,53,48,54,44,51,51,46,57,55,49,49,50,52,93,44,91,45,56,50,46,54,52,53,52,53,49,44,51,51,46,57,56,52,49,57,53,93,44,91,45,56,50,46,53,54,52,52,57,49,44,51,51,46,57,53,53,55,51,51,93,44,91,45,56,50,46,53,57,52,54,51,49,44,51,52,46,48,49,51,55,57,54,93,44,91,45,56,50,46,55,52,50,49,48,51,44,51,52,46,50,49,49,57,48,51,93,44,91,45,56,50,46,55,55,51,52,49,44,51,52,46,50,56,56,56,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,114,98,111,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,56,50,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,49,48,50,52,49,44,51,50,46,49,52,54,54,53,49,93,44,91,45,56,53,46,52,50,56,52,55,54,44,51,50,46,48,49,52,57,53,49,93,44,91,45,56,53,46,53,56,55,51,52,52,44,51,49,46,57,57,55,51,53,53,93,44,91,45,56,53,46,54,53,55,54,54,56,44,51,49,46,56,56,48,50,55,53,93,44,91,45,56,53,46,54,54,50,54,57,50,44,51,49,46,55,56,51,51,49,57,93,44,91,45,56,53,46,55,52,56,50,53,49,44,51,49,46,54,49,56,48,52,56,93,44,91,45,56,53,46,52,49,54,52,51,55,44,51,49,46,54,49,57,52,54,54,93,44,91,45,56,53,46,52,49,54,48,51,56,44,51,49,46,55,48,54,54,54,52,93,44,91,45,56,53,46,50,49,54,48,55,54,44,51,49,46,55,48,50,52,48,57,93,44,91,45,56,53,46,49,50,55,51,50,57,44,51,49,46,55,54,50,53,54,51,93,44,91,45,56,53,46,49,52,49,49,51,44,51,49,46,55,56,48,52,54,51,93,44,91,45,56,53,46,48,54,56,50,51,44,51,49,46,57,57,49,56,53,55,93,44,91,45,56,53,46,48,53,54,48,50,57,44,51,50,46,48,54,51,48,53,53,93,44,91,45,56,53,46,49,56,53,48,54,55,44,51,50,46,48,54,49,55,48,56,93,44,91,45,56,53,46,50,53,55,55,52,55,44,51,50,46,49,52,56,50,53,49,93,44,91,45,56,53,46,52,49,48,50,52,49,44,51,50,46,49,52,54,54,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,108,97,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,55,55,56,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,48,49,57,57,56,44,51,52,46,56,51,53,50,54,56,93,44,91,45,55,56,46,56,48,53,56,51,52,44,51,52,46,54,56,57,53,54,93,44,91,45,55,56,46,56,54,56,57,54,49,44,51,52,46,52,56,52,55,55,56,93,44,91,45,55,56,46,54,54,55,53,56,56,44,51,52,46,52,54,57,54,52,53,93,44,91,45,55,56,46,52,52,53,51,50,44,51,52,46,51,55,55,52,93,44,91,45,55,56,46,50,53,54,48,56,53,44,51,52,46,51,57,57,52,54,57,93,44,91,45,55,56,46,49,55,54,53,48,49,44,51,52,46,52,54,53,51,53,54,93,44,91,45,55,56,46,50,53,52,52,52,49,44,51,52,46,53,53,51,53,57,53,93,44,91,45,55,56,46,51,50,52,53,50,44,51,52,46,54,54,54,48,57,53,93,44,91,45,55,56,46,52,57,52,55,48,53,44,51,52,46,56,53,54,49,56,50,93,44,91,45,55,56,46,57,48,49,57,57,56,44,51,52,46,56,51,53,50,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,48,50,51,53,57,44,51,54,46,53,48,48,53,53,49,93,44,91,45,49,48,51,46,48,52,49,55,49,51,44,51,54,46,53,48,48,52,51,57,93,44,91,45,49,48,51,46,48,52,49,48,54,50,44,51,54,46,48,53,53,50,50,54,93,44,91,45,49,48,50,46,49,54,51,48,49,53,44,51,54,46,48,53,53,50,52,57,93,44,91,45,49,48,50,46,49,54,50,52,54,51,44,51,54,46,53,48,48,51,50,54,93,44,91,45,49,48,51,46,48,48,50,51,53,57,44,51,54,46,53,48,48,53,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,83,97,110,103,97,109,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,54,54,49,44,34,98,101,100,115,34,58,49,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,57,52,52,48,53,44,51,57,46,56,55,50,56,54,93,44,91,45,56,57,46,57,56,52,55,52,53,44,51,57,46,55,49,56,48,55,57,93,44,91,45,56,57,46,57,50,54,48,51,55,44,51,57,46,53,50,50,49,48,52,93,44,91,45,56,57,46,55,48,49,54,54,49,44,51,57,46,53,50,51,51,49,54,93,44,91,45,56,57,46,53,51,51,54,53,53,44,51,57,46,53,50,52,53,57,50,93,44,91,45,56,57,46,53,51,53,48,50,56,44,51,57,46,54,52,49,49,51,56,93,44,91,45,56,57,46,52,48,57,52,55,53,44,51,57,46,55,52,51,53,51,93,44,91,45,56,57,46,50,49,55,52,55,51,44,51,57,46,56,49,51,54,54,54,93,44,91,45,56,57,46,50,49,55,56,52,54,44,51,57,46,57,49,54,57,57,93,44,91,45,56,57,46,52,48,52,57,56,52,44,51,57,46,57,49,56,49,56,55,93,44,91,45,56,57,46,53,55,56,50,56,57,44,51,57,46,57,55,54,49,50,55,93,44,91,45,56,57,46,54,57,56,50,53,57,44,51,57,46,57,55,53,51,48,57,93,44,91,45,56,57,46,55,54,57,49,54,56,44,51,57,46,57,48,50,51,53,93,44,91,45,56,57,46,57,57,52,53,48,54,44,51,57,46,57,48,49,57,50,53,93,44,91,45,56,57,46,57,57,52,52,48,53,44,51,57,46,56,55,50,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,114,97,105,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,57,51,44,34,98,101,100,115,34,58,50,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,48,55,55,51,51,44,51,54,46,57,57,57,51,49,49,93,44,91,45,57,53,46,52,51,49,55,53,56,44,51,54,46,57,52,50,53,57,51,93,44,91,45,57,53,46,52,51,49,53,55,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,51,50,56,49,55,44,51,54,46,53,49,48,50,52,93,44,91,45,57,53,46,48,48,53,55,51,44,51,54,46,53,48,57,56,57,93,44,91,45,57,52,46,57,57,57,52,48,51,44,51,54,46,54,55,48,54,51,49,93,44,91,45,57,53,46,48,48,55,54,50,44,51,54,46,57,57,57,53,49,52,93,44,91,45,57,53,46,48,55,51,53,48,52,44,51,54,46,57,57,57,53,53,50,93,44,91,45,57,53,46,52,48,55,55,51,51,44,51,54,46,57,57,57,51,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,54,51,52,44,34,98,101,100,115,34,58,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,48,48,50,49,51,44,51,54,46,49,51,56,53,54,49,93,44,91,45,56,53,46,50,51,53,55,53,55,44,51,54,46,49,48,53,55,53,50,93,44,91,45,56,53,46,50,54,52,50,48,54,44,51,53,46,57,55,57,49,53,52,93,44,91,45,56,53,46,50,50,50,53,50,52,44,51,53,46,56,55,55,51,54,52,93,44,91,45,56,53,46,50,54,57,51,53,57,44,51,53,46,55,57,51,51,56,56,93,44,91,45,56,53,46,50,55,50,54,54,52,44,51,53,46,55,56,55,55,49,56,93,44,91,45,56,53,46,50,53,51,53,49,56,44,51,53,46,55,54,54,57,50,55,93,44,91,45,56,53,46,50,53,52,48,54,50,44,51,53,46,55,54,53,54,49,49,93,44,91,45,56,52,46,57,49,54,48,54,50,44,51,53,46,55,54,49,57,51,57,93,44,91,45,56,52,46,55,56,49,57,48,49,44,51,53,46,56,50,53,93,44,91,45,56,52,46,54,56,48,54,51,51,44,51,53,46,57,48,56,52,53,52,93,44,91,45,56,52,46,55,50,48,55,50,55,44,51,53,46,57,57,52,57,49,52,93,44,91,45,56,52,46,57,48,55,55,53,51,44,51,54,46,49,53,54,50,57,51,93,44,91,45,56,53,46,49,48,48,50,49,51,44,51,54,46,49,51,56,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,79,116,115,101,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,51,57,55,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,53,55,52,53,50,44,52,53,46,49,49,54,55,48,55,93,44,91,45,56,52,46,56,52,55,51,48,57,44,52,52,46,56,53,56,48,51,55,93,44,91,45,56,52,46,51,55,49,55,51,55,44,52,52,46,56,53,53,48,51,57,93,44,91,45,56,52,46,51,54,54,54,49,52,44,52,53,46,49,57,56,55,51,55,93,44,91,45,56,52,46,55,51,52,51,48,51,44,52,53,46,50,48,49,57,51,54,93,44,91,45,56,52,46,56,53,55,52,53,50,44,52,53,46,49,49,54,55,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,83,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,56,56,48,49,44,52,50,46,53,54,49,55,52,50,93,44,91,45,57,53,46,51,50,50,51,53,55,44,52,50,46,52,55,52,55,51,55,93,44,91,45,57,53,46,51,50,51,52,57,55,44,52,50,46,50,49,48,57,51,50,93,44,91,45,57,53,46,48,57,48,56,53,49,44,52,50,46,50,49,48,52,48,53,93,44,91,45,57,52,46,56,53,56,52,49,50,44,52,50,46,50,48,57,54,57,50,93,44,91,45,57,52,46,56,53,54,54,56,57,44,52,50,46,52,55,51,57,57,54,93,44,91,45,57,52,46,57,49,52,52,56,53,44,52,50,46,53,54,48,51,48,57,93,44,91,45,57,53,46,51,56,56,48,49,44,52,50,46,53,54,49,55,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,69,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,50,52,55,51,57,49,44,51,57,46,55,48,52,51,53,93,44,91,45,49,49,49,46,50,52,55,55,52,56,44,51,57,46,52,54,55,49,57,57,93,44,91,45,49,49,49,46,51,48,48,57,48,53,44,51,57,46,52,54,55,50,51,55,93,44,91,45,49,49,49,46,50,57,57,51,54,44,51,57,46,48,51,50,50,54,52,93,44,91,45,49,49,49,46,51,48,53,54,54,53,44,51,56,46,53,49,48,49,54,57,93,44,91,45,49,49,49,46,51,48,53,55,48,49,44,51,56,46,52,57,57,57,57,56,93,44,91,45,49,49,48,46,48,50,53,52,48,50,44,51,56,46,52,57,57,57,56,49,93,44,91,45,49,48,57,46,57,57,52,50,56,51,44,51,56,46,53,50,55,49,49,56,93,44,91,45,49,49,48,46,48,56,49,57,51,57,44,51,56,46,55,53,54,54,54,54,93,44,91,45,49,49,48,46,49,54,50,53,50,57,44,51,56,46,56,54,51,57,50,50,93,44,91,45,49,49,48,46,49,53,54,50,50,50,44,51,57,46,48,51,50,54,53,52,93,44,91,45,49,49,48,46,48,55,55,50,55,44,51,57,46,50,55,53,56,54,57,93,44,91,45,49,49,48,46,48,50,50,49,54,54,44,51,57,46,51,53,50,48,49,56,93,44,91,45,49,49,48,46,48,50,52,49,49,56,44,51,57,46,52,54,57,50,54,57,93,44,91,45,49,49,49,46,48,55,55,53,52,53,44,51,57,46,52,54,57,55,52,51,93,44,91,45,49,49,49,46,48,56,53,51,53,53,44,51,57,46,53,50,49,49,55,93,44,91,45,49,49,49,46,50,52,55,51,57,49,44,51,57,46,55,48,52,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,70,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,56,51,54,54,49,52,44,52,57,46,48,48,48,48,56,51,93,44,91,45,49,49,56,46,56,53,49,57,54,44,52,55,46,57,53,55,57,48,54,93,44,91,45,49,49,56,46,55,51,48,51,50,53,44,52,55,46,57,48,48,49,54,57,93,44,91,45,49,49,56,46,53,51,49,50,57,55,44,52,55,46,56,55,52,56,55,56,93,44,91,45,49,49,56,46,51,52,48,57,51,56,44,52,55,46,56,57,52,51,49,54,93,44,91,45,49,49,56,46,52,48,48,56,48,55,44,52,56,46,48,50,56,54,56,50,93,44,91,45,49,49,56,46,50,51,51,52,57,56,44,52,56,46,48,54,51,52,56,53,93,44,91,45,49,49,56,46,50,52,56,54,48,54,44,52,56,46,49,51,52,50,53,53,93,44,91,45,49,49,56,46,49,51,57,55,57,49,44,52,56,46,50,54,55,51,48,56,93,44,91,45,49,49,56,46,50,48,54,53,48,55,44,52,56,46,52,55,48,50,57,54,93,44,91,45,49,49,56,46,49,48,52,57,54,44,52,56,46,54,53,51,53,48,51,93,44,91,45,49,49,56,46,50,49,52,52,56,51,44,52,56,46,56,56,56,49,54,49,93,44,91,45,49,49,56,46,49,57,55,51,55,53,44,52,57,46,48,48,48,48,54,56,93,44,91,45,49,49,56,46,56,51,54,54,49,52,44,52,57,46,48,48,48,48,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,87,105,98,97,117,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,52,50,48,51,52,55,44,52,55,46,51,53,52,52,51,53,93,44,91,45,49,48,52,46,51,52,49,54,56,44,52,55,46,50,52,53,51,57,50,93,44,91,45,49,48,52,46,51,48,54,48,54,50,44,52,55,46,48,52,50,48,52,54,93,44,91,45,49,48,52,46,52,49,50,49,50,52,44,52,54,46,57,48,52,48,48,51,93,44,91,45,49,48,52,46,54,48,51,55,54,54,44,52,54,46,56,54,48,56,53,51,93,44,91,45,49,48,52,46,54,48,54,57,48,51,44,52,54,46,54,56,52,57,50,52,93,44,91,45,49,48,52,46,52,49,55,57,57,56,44,52,54,46,54,56,52,56,57,50,93,44,91,45,49,48,52,46,51,53,52,56,51,53,44,52,54,46,54,52,49,52,48,57,93,44,91,45,49,48,52,46,48,52,53,50,51,52,44,52,54,46,54,52,49,53,48,52,93,44,91,45,49,48,52,46,48,52,52,57,54,56,44,52,55,46,51,51,48,49,52,49,93,44,91,45,49,48,52,46,48,52,52,56,55,49,44,52,55,46,51,57,55,48,54,51,93,44,91,45,49,48,52,46,49,51,49,56,54,51,44,52,55,46,51,53,51,57,48,49,93,44,91,45,49,48,52,46,52,50,48,51,52,55,44,52,55,46,51,53,52,52,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,56,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,57,50,53,57,54,56,44,51,52,46,50,53,57,57,57,93,44,91,45,49,48,53,46,57,50,52,54,56,53,44,51,51,46,56,50,53,54,50,52,93,44,91,45,49,48,54,46,48,53,50,54,54,50,44,51,51,46,56,50,53,54,48,54,93,44,91,45,49,48,54,46,48,53,50,55,49,56,44,51,51,46,54,53,48,50,57,55,93,44,91,45,49,48,54,46,51,55,51,54,54,44,51,51,46,54,54,48,53,48,52,93,44,91,45,49,48,54,46,51,55,50,55,57,55,44,51,51,46,52,55,57,56,55,53,93,44,91,45,49,48,54,46,51,52,53,55,49,44,51,51,46,51,57,48,53,57,53,93,44,91,45,49,48,53,46,55,50,55,49,55,49,44,51,51,46,51,57,48,54,51,51,93,44,91,45,49,48,53,46,55,50,53,57,53,55,44,51,51,46,51,48,52,56,51,52,93,44,91,45,49,48,53,46,51,49,55,51,55,54,44,51,51,46,51,48,53,57,55,55,93,44,91,45,49,48,53,46,51,49,54,57,54,56,44,51,51,46,49,51,50,51,48,51,93,44,91,45,49,48,52,46,57,48,53,52,50,52,44,51,51,46,49,51,56,57,48,52,93,44,91,45,49,48,52,46,56,57,50,52,51,51,44,51,51,46,51,57,56,49,57,57,93,44,91,45,49,48,52,46,56,57,51,51,55,55,44,51,52,46,48,56,56,52,48,55,93,44,91,45,49,48,52,46,56,57,49,55,52,53,44,51,52,46,51,52,55,48,52,51,93,44,91,45,49,48,53,46,51,49,51,48,55,50,44,51,52,46,51,52,55,50,48,53,93,44,91,45,49,48,53,46,51,49,51,50,49,56,44,51,52,46,50,54,48,48,51,49,93,44,91,45,49,48,53,46,57,50,53,57,54,56,44,51,52,46,50,53,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,53,57,57,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,49,49,51,48,57,44,51,54,46,49,54,49,55,54,51,93,44,91,45,57,53,46,49,49,56,53,44,51,54,46,49,54,49,54,51,93,44,91,45,57,53,46,50,48,55,57,52,54,44,51,54,46,48,55,52,55,48,56,93,44,91,45,57,53,46,50,56,50,57,57,50,44,51,53,46,57,48,55,55,48,52,93,44,91,45,57,53,46,50,54,53,54,55,57,44,51,53,46,56,49,51,50,54,54,93,44,91,45,57,53,46,49,50,55,49,54,51,44,51,53,46,56,49,50,55,53,53,93,44,91,45,57,53,46,49,50,55,50,49,51,44,51,53,46,54,51,56,56,56,56,93,44,91,45,57,52,46,56,48,55,55,53,55,44,51,53,46,54,51,56,53,52,54,93,44,91,45,57,52,46,55,57,55,52,48,57,44,51,54,46,49,54,49,54,53,50,93,44,91,45,57,53,46,48,49,49,51,48,57,44,51,54,46,49,54,49,55,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,89,101,108,108,111,119,32,77,101,100,105,99,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,54,56,44,34,98,101,100,115,34,58,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,53,49,52,54,50,44,52,52,46,56,48,53,53,55,93,44,91,45,57,54,46,52,53,49,53,54,54,44,52,52,46,54,51,49,51,52,57,93,44,91,45,57,54,46,48,57,50,57,53,44,52,52,46,54,51,48,52,56,54,93,44,91,45,57,53,46,54,48,52,48,48,49,44,52,52,46,54,50,57,57,52,53,93,44,91,45,57,53,46,53,57,52,56,49,55,44,52,52,46,53,52,50,51,48,53,93,44,91,45,57,53,46,51,54,48,52,44,52,52,46,53,52,49,55,54,50,93,44,91,45,57,53,46,51,54,48,49,55,55,44,52,52,46,54,57,56,53,52,93,44,91,45,57,53,46,52,56,50,56,52,51,44,52,52,46,55,53,50,53,48,53,93,44,91,45,57,53,46,55,51,54,54,57,54,44,52,52,46,57,51,54,48,52,93,44,91,45,57,53,46,56,52,55,52,53,50,44,52,52,46,56,57,49,55,57,57,93,44,91,45,57,53,46,56,52,57,48,48,57,44,52,52,46,56,48,53,51,52,55,93,44,91,45,57,54,46,52,53,49,52,54,50,44,52,52,46,56,48,53,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,49,34,44,34,78,65,77,69,34,58,34,72,117,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,49,53,50,44,34,98,101,100,115,34,58,50,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,57,53,52,49,51,44,51,51,46,51,53,49,57,51,54,93,44,91,45,57,54,46,50,57,55,50,50,55,44,51,50,46,57,56,49,55,53,50,93,44,91,45,57,54,46,50,57,55,51,50,50,44,51,50,46,56,52,49,55,50,51,93,44,91,45,57,54,46,48,55,54,56,48,49,44,51,50,46,56,51,56,52,56,57,93,44,91,45,57,53,46,57,51,52,52,51,51,44,51,50,46,56,51,55,50,49,55,93,44,91,45,57,53,46,57,52,53,51,44,51,50,46,57,55,57,56,55,55,93,44,91,45,57,53,46,56,54,50,53,50,49,44,51,50,46,57,55,57,53,55,49,93,44,91,45,57,53,46,56,54,49,55,55,56,44,51,51,46,50,49,57,51,51,93,44,91,45,57,53,46,56,53,56,55,50,51,44,51,51,46,52,48,57,53,51,93,44,91,45,57,54,46,50,57,53,52,49,51,44,51,51,46,51,53,49,57,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,51,53,34,44,34,78,65,77,69,34,58,34,77,105,116,99,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,54,54,48,54,50,54,44,51,50,46,53,50,53,51,49,50,93,44,91,45,49,48,49,46,49,55,52,53,54,50,44,51,50,46,53,50,55,55,48,51,93,44,91,45,49,48,49,46,49,55,52,53,55,49,44,51,50,46,53,50,52,49,49,50,93,44,91,45,49,48,49,46,49,56,51,57,57,55,44,51,50,46,48,56,55,50,48,56,93,44,91,45,49,48,48,46,56,50,49,53,57,52,44,51,50,46,48,56,54,54,49,93,44,91,45,49,48,48,46,54,54,53,51,53,51,44,51,50,46,48,56,53,52,48,55,93,44,91,45,49,48,48,46,54,54,48,54,50,54,44,51,50,46,53,50,53,51,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,57,57,34,44,34,78,65,77,69,34,58,34,87,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,56,49,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,48,56,57,53,55,44,51,50,46,57,54,50,53,55,50,93,44,91,45,57,53,46,54,54,53,51,56,57,44,51,50,46,57,54,48,52,51,52,93,44,91,45,57,53,46,54,51,53,48,49,55,44,51,50,46,55,50,48,51,56,93,44,91,45,57,53,46,53,57,52,53,52,49,44,51,50,46,54,56,55,48,50,54,93,44,91,45,57,53,46,53,49,48,57,52,53,44,51,50,46,54,50,48,51,50,56,93,44,91,45,57,53,46,49,53,51,52,49,44,51,50,46,53,55,48,49,49,53,93,44,91,45,57,53,46,49,53,50,49,49,44,51,50,46,57,48,50,54,52,49,93,44,91,45,57,53,46,49,53,50,50,48,54,44,51,51,46,48,49,51,52,53,93,44,91,45,57,53,46,51,48,56,57,53,55,44,51,50,46,57,54,50,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,79,115,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,51,49,49,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,53,55,53,53,54,44,51,54,46,53,57,51,56,55,50,93,44,91,45,57,55,46,48,48,57,55,56,53,44,51,54,46,53,48,54,57,51,53,93,44,91,45,57,54,46,57,52,48,50,51,53,44,51,54,46,52,53,53,53,50,53,93,44,91,45,57,54,46,55,51,55,50,51,57,44,51,54,46,53,53,48,48,56,56,93,44,91,45,57,54,46,55,49,48,55,54,57,44,51,54,46,52,51,55,54,53,54,93,44,91,45,57,54,46,54,51,53,55,50,55,44,51,54,46,52,50,53,57,48,56,93,44,91,45,57,54,46,53,49,53,50,50,57,44,51,54,46,50,57,56,51,51,50,93,44,91,45,57,54,46,52,51,51,56,49,50,44,51,54,46,50,56,53,56,56,57,93,44,91,45,57,54,46,50,54,56,50,56,55,44,51,54,46,49,54,49,57,56,93,44,91,45,57,54,46,48,48,49,50,50,54,44,51,54,46,49,54,49,50,57,54,93,44,91,45,57,54,46,48,48,49,49,55,49,44,51,54,46,52,50,51,54,56,54,93,44,91,45,57,54,46,48,48,48,56,49,44,51,54,46,57,57,56,56,54,93,44,91,45,57,54,46,53,50,53,53,56,50,44,51,54,46,57,57,56,55,49,93,44,91,45,57,54,46,55,52,57,56,51,56,44,51,54,46,57,57,56,57,56,56,93,44,91,45,57,54,46,55,53,50,51,55,53,44,51,54,46,55,56,50,48,57,50,93,44,91,45,57,54,46,56,56,57,52,55,53,44,51,54,46,55,53,49,50,51,93,44,91,45,57,54,46,57,51,49,57,52,51,44,51,54,46,54,56,54,48,57,55,93,44,91,45,57,55,46,48,54,52,49,48,55,44,51,54,46,54,56,52,50,48,55,93,44,91,45,57,55,46,48,53,55,53,53,54,44,51,54,46,53,57,51,56,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,54,54,56,44,34,98,101,100,115,34,58,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,57,50,51,54,53,44,51,53,46,50,48,54,54,57,52,93,44,91,45,56,52,46,51,50,49,56,50,49,44,51,52,46,57,56,56,52,48,56,93,44,91,45,56,52,46,49,50,57,52,52,56,44,51,52,46,57,56,55,53,49,52,93,44,91,45,56,52,46,48,48,53,49,51,50,44,51,52,46,57,56,55,49,55,53,93,44,91,45,56,51,46,56,52,48,55,51,51,44,51,53,46,49,52,51,56,52,49,93,44,91,45,56,51,46,55,51,56,49,50,57,44,51,53,46,49,53,53,57,53,93,44,91,45,56,51,46,55,48,50,55,55,50,44,51,53,46,50,52,56,53,50,93,44,91,45,56,51,46,56,51,49,52,50,57,44,51,53,46,50,53,54,49,49,55,93,44,91,45,56,51,46,57,53,56,54,53,50,44,51,53,46,50,49,55,48,52,93,44,91,45,56,52,46,48,50,57,48,54,55,44,51,53,46,50,57,50,50,52,56,93,44,91,45,56,52,46,50,49,49,51,57,53,44,51,53,46,50,54,53,54,50,49,93,44,91,45,56,52,46,50,57,50,51,54,53,44,51,53,46,50,48,54,54,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,77,101,99,111,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,50,54,52,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,44,91,45,56,53,46,53,54,50,51,52,56,44,52,51,46,52,54,56,49,51,93,44,91,45,56,53,46,48,56,52,57,57,54,44,52,51,46,52,54,54,49,57,93,44,91,45,56,53,46,48,56,56,56,49,49,44,52,51,46,56,49,51,54,55,54,93,44,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,52,56,51,44,34,98,101,100,115,34,58,52,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,53,54,51,53,54,49,44,51,55,46,54,56,52,56,52,52,93,44,91,45,56,50,46,54,50,52,48,57,49,44,51,55,46,53,48,54,50,55,53,93,44,91,45,56,50,46,53,56,56,54,50,55,44,51,55,46,52,52,54,50,53,57,93,44,91,45,56,50,46,55,49,48,56,48,53,44,51,55,46,50,56,53,51,50,51,93,44,91,45,56,50,46,55,51,50,54,57,51,44,51,55,46,50,55,49,53,48,50,93,44,91,45,56,50,46,53,54,53,51,55,57,44,51,55,46,49,57,54,48,57,57,93,44,91,45,56,50,46,53,53,51,56,55,52,44,51,55,46,50,48,50,56,51,51,93,44,91,45,56,50,46,51,49,52,49,57,53,44,51,55,46,50,57,54,48,55,53,93,44,91,45,56,49,46,57,54,56,48,49,50,44,51,55,46,53,51,56,48,51,53,93,44,91,45,56,50,46,49,49,55,51,48,52,44,51,55,46,53,53,57,50,50,54,93,44,91,45,56,50,46,51,51,51,49,51,54,44,51,55,46,55,52,48,56,52,56,93,44,91,45,56,50,46,52,53,54,49,51,52,44,51,55,46,54,54,56,55,57,53,93,44,91,45,56,50,46,53,54,51,53,54,49,44,51,55,46,54,56,52,56,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,52,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,54,55,50,54,44,51,48,46,50,54,48,52,52,93,44,91,45,56,51,46,51,55,48,56,57,44,50,57,46,56,56,55,57,51,52,93,44,91,45,56,51,46,51,49,56,56,53,57,44,50,57,46,56,50,50,54,50,51,93,44,91,45,56,50,46,57,50,48,54,48,56,44,50,57,46,56,50,52,49,52,51,93,44,91,45,56,50,46,57,49,56,55,48,56,44,50,57,46,56,50,52,48,56,51,93,44,91,45,56,50,46,57,48,51,57,53,54,44,50,57,46,56,50,52,50,57,52,93,44,91,45,56,50,46,56,55,57,56,48,50,44,50,57,46,56,56,54,56,52,55,93,44,91,45,56,50,46,57,54,51,49,49,50,44,50,57,46,57,57,51,48,53,93,44,91,45,56,51,46,49,54,50,52,53,55,44,51,48,46,49,49,48,48,50,50,93,44,91,45,56,51,46,50,50,54,51,54,44,51,48,46,49,49,52,54,50,49,93,44,91,45,56,51,46,50,52,55,50,53,51,44,51,48,46,50,54,48,54,55,93,44,91,45,56,51,46,51,54,55,50,54,44,51,48,46,50,54,48,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,97,116,97,119,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,55,50,57,44,34,98,101,100,115,34,58,54,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,51,53,52,48,51,44,51,53,46,53,54,56,49,51,55,93,44,91,45,56,48,46,57,54,48,48,50,53,44,51,53,46,53,52,55,48,50,93,44,91,45,56,48,46,57,57,52,52,52,53,44,51,53,46,55,48,50,49,49,93,44,91,45,56,49,46,49,48,57,53,48,55,44,51,53,46,55,55,54,53,57,52,93,44,91,45,56,49,46,49,52,50,51,51,56,44,51,53,46,56,50,55,52,51,52,93,44,91,45,56,49,46,51,51,52,50,55,50,44,51,53,46,55,57,54,50,56,49,93,44,91,45,56,49,46,51,54,51,55,57,54,44,51,53,46,55,54,55,56,48,50,93,44,91,45,56,49,46,53,51,53,52,48,51,44,51,53,46,53,54,56,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,66,114,101,97,116,104,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,49,54,44,34,98,101,100,115,34,58,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,52,56,54,57,50,44,51,55,46,54,54,57,54,49,54,93,44,91,45,56,51,46,52,49,56,52,55,52,44,51,55,46,54,57,48,55,50,57,93,44,91,45,56,51,46,53,50,50,51,48,56,44,51,55,46,54,51,56,53,49,54,93,44,91,45,56,51,46,53,55,57,49,56,54,44,51,55,46,53,48,54,50,52,57,93,44,91,45,56,51,46,53,52,55,54,50,56,44,51,55,46,51,51,52,52,49,56,93,44,91,45,56,51,46,52,48,51,57,56,56,44,51,55,46,51,51,56,51,51,50,93,44,91,45,56,51,46,49,57,57,55,51,52,44,51,55,46,52,49,52,54,54,93,44,91,45,56,51,46,49,50,52,51,52,56,44,51,55,46,52,48,52,57,55,51,93,44,91,45,56,51,46,48,53,48,50,48,49,44,51,55,46,53,50,53,51,49,52,93,44,91,45,56,50,46,57,52,56,53,52,52,44,51,55,46,53,48,51,49,54,55,93,44,91,45,56,51,46,48,56,57,55,57,54,44,51,55,46,54,51,50,49,54,55,93,44,91,45,56,51,46,50,52,56,54,57,50,44,51,55,46,54,54,57,54,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,67,104,105,108,100,114,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,54,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,52,49,53,56,57,53,44,51,52,46,55,52,55,53,50,53,93,44,91,45,49,48,48,46,52,49,55,55,56,51,44,51,52,46,51,49,51,53,50,52,93,44,91,45,57,57,46,57,57,55,55,50,44,51,52,46,51,49,49,56,50,57,93,44,91,45,57,57,46,57,57,55,53,48,49,44,51,52,46,53,54,48,53,55,52,93,44,91,45,49,48,48,46,48,48,48,51,56,49,44,51,52,46,55,52,54,51,53,56,93,44,91,45,49,48,48,46,52,49,53,56,57,53,44,51,52,46,55,52,55,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,82,105,112,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,49,53,57,50,54,44,51,54,46,56,50,51,54,55,50,93,44,91,45,57,49,46,49,50,54,53,50,57,44,51,54,46,52,57,55,55,49,50,93,44,91,45,57,48,46,55,56,52,52,50,52,44,51,54,46,52,57,56,53,51,52,93,44,91,45,57,48,46,53,55,54,49,55,57,44,51,54,46,52,57,56,53,52,55,93,44,91,45,57,48,46,53,57,50,49,54,54,44,51,54,46,54,55,57,51,54,56,93,44,91,45,57,48,46,54,54,50,54,49,55,44,51,54,46,56,49,49,52,53,51,93,44,91,45,57,49,46,49,49,53,57,50,54,44,51,54,46,56,50,51,54,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,84,97,122,101,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,56,53,50,44,34,98,101,100,115,34,58,49,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,53,52,57,57,52,44,52,48,46,55,52,55,54,51,55,93,44,91,45,56,57,46,54,53,56,48,48,51,44,52,48,46,53,54,55,52,51,56,93,44,91,45,56,57,46,56,55,50,52,54,51,44,52,48,46,53,49,51,49,50,55,93,44,91,45,56,57,46,57,50,52,54,56,44,52,48,46,52,51,53,57,50,49,93,44,91,45,56,57,46,55,49,55,49,48,52,44,52,48,46,52,51,53,54,53,53,93,44,91,45,56,57,46,55,49,52,57,50,55,44,52,48,46,51,49,57,50,49,56,93,44,91,45,56,57,46,54,48,50,57,55,57,44,52,48,46,51,50,48,49,50,57,93,44,91,45,56,57,46,50,54,51,55,52,44,52,48,46,51,50,53,51,52,52,93,44,91,45,56,57,46,50,54,57,51,57,55,44,52,48,46,53,57,52,51,49,56,93,44,91,45,56,57,46,51,51,48,48,57,50,44,52,48,46,55,52,56,50,53,55,93,44,91,45,56,57,46,53,53,52,57,57,52,44,52,48,46,55,52,55,54,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,32,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,55,57,56,48,49,44,51,48,46,54,50,57,50,53,56,93,44,91,45,49,48,51,46,57,48,49,48,49,44,51,48,46,52,49,50,49,57,93,44,91,45,49,48,51,46,56,48,48,54,56,44,51,48,46,52,49,50,53,50,55,93,44,91,45,49,48,51,46,52,51,57,57,55,54,44,51,48,46,54,54,53,57,51,57,93,44,91,45,49,48,51,46,53,56,53,48,56,52,44,51,48,46,55,54,54,52,55,93,44,91,45,49,48,52,46,49,48,50,51,53,49,44,51,49,46,49,48,53,50,48,51,93,44,91,45,49,48,52,46,57,49,55,49,54,51,44,51,48,46,54,54,51,54,50,54,93,44,91,45,49,48,52,46,57,55,57,56,48,49,44,51,48,46,54,50,57,50,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,55,56,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,55,56,34,44,34,78,65,77,69,34,58,34,76,101,120,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,54,49,53,56,50,44,51,55,46,55,56,54,51,53,54,93,44,91,45,55,57,46,52,53,53,54,54,55,44,51,55,46,55,54,53,50,49,57,93,44,91,45,55,57,46,52,50,48,56,50,52,44,51,55,46,55,56,56,57,57,56,93,44,91,45,55,57,46,52,51,55,51,51,55,44,51,55,46,55,57,52,55,56,52,93,44,91,45,55,57,46,52,54,49,53,56,50,44,51,55,46,55,56,54,51,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,83,104,97,114,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,53,48,48,48,50,44,51,54,46,52,57,55,54,53,93,44,91,45,57,49,46,52,53,52,52,51,55,44,51,54,46,51,51,53,52,54,53,93,44,91,45,57,49,46,53,54,53,56,54,54,44,51,54,46,51,51,55,52,93,44,91,45,57,49,46,53,54,54,48,55,56,44,51,54,46,50,52,57,57,52,53,93,44,91,45,57,49,46,54,57,49,52,51,53,44,51,54,46,50,53,51,51,48,49,93,44,91,45,57,49,46,54,56,50,50,55,55,44,51,54,46,48,48,48,53,51,53,93,44,91,45,57,49,46,55,49,48,52,56,51,44,51,53,46,57,52,49,55,53,56,93,44,91,45,57,49,46,52,54,51,49,57,56,44,51,53,46,57,51,54,56,49,93,44,91,45,57,49,46,51,53,55,50,51,44,51,53,46,56,57,48,54,50,49,93,44,91,45,57,49,46,51,52,57,56,51,52,44,51,54,46,50,51,48,57,54,55,93,44,91,45,57,49,46,50,53,56,57,50,44,51,54,46,50,53,55,56,56,93,44,91,45,57,49,46,50,55,52,57,52,44,51,54,46,51,55,52,49,50,93,44,91,45,57,49,46,52,48,55,49,51,56,44,51,54,46,52,57,55,48,56,49,93,44,91,45,57,49,46,52,53,48,48,48,50,44,51,54,46,52,57,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,76,97,114,105,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,49,54,49,44,34,98,101,100,115,34,58,55,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,56,53,52,57,50,54,44,52,48,46,52,56,54,50,53,50,93,44,91,45,49,48,53,46,54,53,51,51,50,49,44,52,48,46,50,54,48,52,53,55,93,44,91,45,49,48,53,46,48,53,53,48,56,57,44,52,48,46,50,54,49,55,57,51,93,44,91,45,49,48,52,46,57,52,53,53,53,49,44,52,48,46,51,52,57,48,57,57,93,44,91,45,49,48,52,46,57,52,51,51,55,49,44,52,48,46,57,57,56,50,49,51,93,44,91,45,49,48,53,46,50,55,54,56,54,44,52,48,46,57,57,56,49,55,50,93,44,91,45,49,48,54,46,49,57,48,53,53,52,44,52,48,46,57,57,55,53,55,56,93,44,91,45,49,48,54,46,49,56,53,51,48,55,44,52,48,46,57,51,51,57,55,51,93,44,91,45,49,48,54,46,48,53,51,55,55,57,44,52,48,46,56,49,50,54,54,50,93,44,91,45,49,48,53,46,56,53,52,57,50,54,44,52,48,46,52,56,54,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,84,121,114,114,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,48,50,50,54,48,55,44,51,54,46,48,57,54,55,50,53,93,44,91,45,55,54,46,49,53,55,57,53,51,44,51,54,46,48,53,57,53,49,55,93,44,91,45,55,54,46,51,53,56,51,57,51,44,51,54,46,48,50,48,48,49,57,93,44,91,45,55,54,46,51,53,51,54,54,57,44,51,53,46,56,54,49,51,54,53,93,44,91,45,55,54,46,52,48,53,57,55,49,44,51,53,46,54,57,55,53,55,57,93,44,91,45,55,54,46,48,50,55,52,55,57,44,51,53,46,54,54,56,56,52,57,93,44,91,45,55,54,46,48,48,56,51,52,56,44,51,53,46,56,57,53,56,48,50,93,44,91,45,55,53,46,57,53,52,51,55,52,44,51,53,46,57,57,48,48,54,52,93,44,91,45,55,53,46,56,52,48,48,52,54,44,51,54,46,48,50,56,56,51,52,93,44,91,45,55,53,46,57,48,54,50,57,53,44,51,54,46,48,56,53,56,55,55,93,44,91,45,55,54,46,48,50,50,54,48,55,44,51,54,46,48,57,54,55,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,82,105,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,55,54,53,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,50,52,51,50,55,44,52,52,46,53,52,51,54,49,56,93,44,91,45,57,51,46,53,50,53,50,51,49,44,52,52,46,49,57,54,49,51,52,93,44,91,45,57,51,46,52,48,54,53,54,53,44,52,52,46,49,57,54,51,55,55,93,44,91,45,57,51,46,48,52,53,57,49,44,52,52,46,49,57,54,55,49,54,93,44,91,45,57,51,46,48,52,49,49,53,57,44,52,52,46,49,57,54,55,50,54,93,44,91,45,57,51,46,48,51,57,52,56,53,44,52,52,46,52,55,49,56,55,49,93,44,91,45,57,51,46,50,56,49,54,56,54,44,52,52,46,52,55,49,57,57,56,93,44,91,45,57,51,46,50,56,49,53,50,49,44,52,52,46,53,52,51,57,53,55,93,44,91,45,57,51,46,53,50,52,51,50,55,44,52,52,46,53,52,51,54,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,57,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,57,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,54,52,50,56,55,44,51,56,46,57,57,50,55,54,50,93,44,91,45,57,49,46,50,54,52,57,50,55,44,51,56,46,56,52,51,56,51,51,93,44,91,45,57,49,46,52,49,53,56,51,50,44,51,56,46,56,52,53,51,93,44,91,45,57,49,46,52,49,56,54,51,55,44,51,56,46,55,48,57,55,55,56,93,44,91,45,57,49,46,51,54,57,49,57,50,44,51,56,46,54,57,57,51,50,52,93,44,91,45,57,49,46,51,49,51,48,57,51,44,51,56,46,55,48,54,55,49,53,93,44,91,45,57,49,46,49,51,50,53,51,53,44,51,56,46,53,57,56,50,55,57,93,44,91,45,57,48,46,57,54,52,52,54,49,44,51,56,46,53,52,55,53,52,53,93,44,91,45,57,48,46,57,53,56,53,51,54,44,51,56,46,56,55,48,56,54,53,93,44,91,45,57,49,46,49,49,49,50,53,49,44,51,56,46,56,55,50,55,48,57,93,44,91,45,57,49,46,50,54,52,50,56,55,44,51,56,46,57,57,50,55,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,55,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,52,50,55,44,34,98,101,100,115,34,58,55,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,55,52,52,54,50,44,51,54,46,57,57,57,55,54,54,93,44,91,45,56,54,46,54,49,49,53,56,54,44,51,54,46,56,56,51,48,53,55,93,44,91,45,56,54,46,53,56,51,50,56,57,44,51,54,46,56,51,48,50,56,50,93,44,91,45,56,54,46,52,48,53,55,54,57,44,51,54,46,55,55,54,49,56,55,93,44,91,45,56,54,46,49,54,54,55,52,44,51,54,46,57,51,52,48,49,53,93,44,91,45,56,54,46,49,49,51,53,49,50,44,51,55,46,48,54,49,48,55,50,93,44,91,45,56,54,46,50,56,49,55,53,44,51,55,46,48,56,48,53,57,55,93,44,91,45,56,54,46,51,57,57,49,54,53,44,51,55,46,49,54,57,56,57,54,93,44,91,45,56,54,46,54,49,56,49,53,56,44,51,55,46,49,56,51,57,48,54,93,44,91,45,56,54,46,54,55,52,52,54,50,44,51,54,46,57,57,57,55,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,100,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,51,54,49,44,34,98,101,100,115,34,58,50,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,52,51,49,52,55,44,51,50,46,54,57,51,48,51,93,44,91,45,57,52,46,48,52,50,57,48,49,44,51,50,46,51,57,50,50,56,51,93,44,91,45,57,52,46,48,52,50,53,57,56,44,51,50,46,49,57,54,48,48,53,93,44,91,45,57,51,46,57,53,49,48,56,53,44,51,50,46,49,57,53,53,52,53,93,44,91,45,57,51,46,55,54,52,55,54,51,44,51,50,46,51,52,53,54,52,54,93,44,91,45,57,51,46,54,54,54,52,55,50,44,51,50,46,51,49,55,52,52,52,93,44,91,45,57,51,46,54,49,52,54,57,44,51,50,46,50,51,55,53,50,54,93,44,91,45,57,51,46,52,55,49,50,52,57,44,51,50,46,50,51,55,49,56,54,93,44,91,45,57,51,46,54,49,53,49,51,44,51,50,46,51,52,56,51,51,50,93,44,91,45,57,51,46,55,53,54,50,48,54,44,51,50,46,53,51,55,48,51,55,93,44,91,45,57,51,46,55,51,54,54,49,44,51,50,46,53,55,57,56,52,53,93,44,91,45,57,51,46,56,49,57,49,54,57,44,51,50,46,55,51,54,48,48,50,93,44,91,45,57,51,46,55,56,51,50,51,51,44,51,50,46,55,56,52,51,54,93,44,91,45,57,51,46,56,49,52,53,53,51,44,51,51,46,48,49,57,51,55,49,93,44,91,45,57,52,46,48,52,50,57,54,52,44,51,51,46,48,49,57,50,49,57,93,44,91,45,57,52,46,48,52,51,48,55,56,44,51,50,46,56,56,49,48,56,57,93,44,91,45,57,52,46,48,52,51,49,52,55,44,51,50,46,54,57,51,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,84,111,100,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,52,54,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,49,52,50,50,49,44,52,51,46,51,57,48,51,50,49,93,44,91,45,49,48,49,46,50,50,56,50,51,52,44,52,51,46,51,56,57,49,56,53,93,44,91,45,49,48,49,46,50,50,56,48,49,51,44,52,50,46,57,57,56,49,51,54,93,44,91,45,49,48,48,46,49,57,56,52,49,51,44,52,50,46,57,57,56,54,55,52,93,44,91,45,49,48,48,46,50,49,52,50,50,49,44,52,51,46,51,57,48,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,50,55,49,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,51,49,55,50,50,44,52,50,46,50,48,56,56,56,54,93,44,91,45,57,51,46,50,51,49,56,53,56,44,52,49,46,56,54,50,55,49,49,93,44,91,45,57,50,46,55,54,53,57,57,57,44,52,49,46,56,54,50,51,55,51,93,44,91,45,57,50,46,55,54,55,52,54,51,44,52,50,46,50,49,48,49,52,93,44,91,45,57,51,46,48,48,49,54,55,52,44,52,50,46,50,48,57,50,54,55,93,44,91,45,57,51,46,50,51,49,55,50,50,44,52,50,46,50,48,56,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,84,105,108,108,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,48,51,49,53,44,51,52,46,54,51,55,57,53,93,44,91,45,57,57,46,49,57,54,56,48,49,44,51,52,46,53,52,50,51,56,54,93,44,91,45,57,57,46,50,51,56,48,54,44,51,52,46,52,50,53,48,48,57,93,44,91,45,57,57,46,50,48,54,57,48,53,44,51,52,46,51,51,56,50,55,55,93,44,91,45,57,57,46,49,56,57,55,55,54,44,51,52,46,50,49,52,51,53,55,93,44,91,45,57,56,46,57,53,50,51,57,53,44,51,52,46,50,49,50,52,57,55,93,44,91,45,57,56,46,56,56,55,49,49,50,44,51,52,46,49,54,56,50,54,93,44,91,45,57,56,46,54,57,48,48,55,50,44,51,52,46,49,51,51,49,53,53,93,44,91,45,57,56,46,54,48,57,57,56,55,44,51,52,46,49,53,55,49,53,52,93,44,91,45,57,56,46,54,48,57,54,54,44,51,52,46,51,51,51,55,50,93,44,91,45,57,56,46,54,54,49,57,53,54,44,51,52,46,52,48,53,57,52,56,93,44,91,45,57,56,46,54,54,49,57,56,50,44,51,52,46,53,48,55,52,54,93,44,91,45,57,56,46,56,50,54,49,52,52,44,51,52,46,53,48,55,51,55,93,44,91,45,57,56,46,56,50,54,48,48,56,44,51,52,46,53,57,52,52,49,51,93,44,91,45,57,57,46,48,48,49,49,48,55,44,51,52,46,53,57,52,51,54,54,93,44,91,45,57,57,46,49,48,51,49,53,44,51,52,46,54,51,55,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,49,48,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,51,57,54,48,57,44,51,53,46,51,51,48,57,57,51,93,44,91,45,56,51,46,54,56,48,49,49,52,44,51,53,46,50,55,57,53,93,44,91,45,56,51,46,55,48,50,55,55,50,44,51,53,46,50,52,56,53,50,93,44,91,45,56,51,46,55,51,56,49,50,57,44,51,53,46,49,53,53,57,53,93,44,91,45,56,51,46,54,52,56,52,53,53,44,51,53,46,49,53,50,56,57,54,93,44,91,45,56,51,46,52,56,50,57,52,57,44,51,52,46,57,57,51,51,48,49,93,44,91,45,56,51,46,49,48,56,54,49,51,44,51,53,46,48,48,48,54,53,57,93,44,91,45,56,51,46,49,48,56,53,54,56,44,51,53,46,48,48,49,51,53,52,93,44,91,45,56,51,46,51,51,57,54,48,57,44,51,53,46,51,51,48,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,54,51,51,52,56,44,51,55,46,55,51,49,54,57,54,93,44,91,45,56,48,46,56,53,56,52,54,54,44,51,55,46,52,50,56,51,48,55,93,44,91,45,56,48,46,55,55,48,48,56,50,44,51,55,46,51,55,50,51,54,51,93,44,91,45,56,48,46,53,49,49,51,57,49,44,51,55,46,52,56,49,54,55,50,93,44,91,45,56,48,46,52,55,50,55,56,50,44,51,55,46,52,50,51,55,51,93,44,91,45,56,48,46,50,57,57,55,56,57,44,51,55,46,53,48,56,50,55,49,93,44,91,45,56,48,46,50,50,48,57,56,52,44,51,55,46,54,50,55,55,54,55,93,44,91,45,56,48,46,50,57,54,49,51,56,44,51,55,46,54,57,49,55,56,51,93,44,91,45,56,48,46,53,48,54,54,57,53,44,51,55,46,54,57,49,49,53,56,93,44,91,45,56,48,46,54,54,51,51,52,56,44,51,55,46,55,51,49,54,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,83,119,105,116,122,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,48,51,49,54,54,44,51,56,46,57,49,51,56,48,51,93,44,91,45,56,53,46,50,48,49,52,55,52,44,51,56,46,54,57,49,51,49,56,93,44,91,45,56,53,46,48,50,51,53,49,57,44,51,56,46,55,54,49,56,55,93,44,91,45,56,52,46,55,57,53,48,51,57,44,51,56,46,56,53,55,50,55,93,44,91,45,56,52,46,56,55,48,55,52,57,44,51,56,46,57,48,48,57,48,53,93,44,91,45,56,53,46,49,51,53,56,51,50,44,51,56,46,57,50,57,53,55,56,93,44,91,45,56,53,46,50,48,51,49,54,54,44,51,56,46,57,49,51,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,72,105,99,107,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,55,52,55,50,55,44,51,54,46,54,53,48,52,55,53,93,44,91,45,56,56,46,57,48,51,52,56,44,51,54,46,53,55,54,56,54,52,93,44,91,45,56,56,46,56,51,52,53,56,56,44,51,54,46,53,48,50,54,49,49,93,44,91,45,56,56,46,56,50,55,51,48,51,44,51,54,46,53,48,50,54,51,51,93,44,91,45,56,56,46,56,49,54,55,54,51,44,51,54,46,53,48,50,54,54,53,93,44,91,45,56,56,46,56,49,51,50,50,57,44,51,54,46,55,55,51,49,49,53,93,44,91,45,56,57,46,49,50,51,53,51,49,44,51,54,46,55,56,53,50,49,55,93,44,91,45,56,57,46,49,55,52,55,50,55,44,51,54,46,54,53,48,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,71,101,110,101,118,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,57,49,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,49,52,48,50,44,51,49,46,49,57,54,51,52,57,93,44,91,45,56,54,46,49,57,51,52,55,54,44,51,49,46,49,57,50,50,49,51,93,44,91,45,56,54,46,49,56,55,50,52,54,44,51,48,46,57,57,52,48,50,49,93,44,91,45,56,54,46,48,51,53,48,51,57,44,51,48,46,57,57,51,51,50,93,44,91,45,56,53,46,52,57,55,57,57,50,44,51,48,46,57,57,54,57,51,49,93,44,91,45,56,53,46,52,56,56,50,57,56,44,51,48,46,57,57,55,48,54,52,93,44,91,45,56,53,46,52,56,53,55,54,44,51,49,46,49,57,57,56,56,54,93,44,91,45,56,53,46,55,49,48,51,51,51,44,51,49,46,49,57,53,49,55,51,93,44,91,45,56,53,46,55,57,49,52,48,50,44,51,49,46,49,57,54,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,76,97,83,97,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,52,48,49,44,34,98,101,100,115,34,58,49,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,54,54,53,54,49,44,52,49,46,53,56,53,50,56,57,93,44,91,45,56,57,46,49,54,51,55,48,53,44,52,49,46,51,49,48,49,56,55,93,44,91,45,56,57,46,49,54,50,50,51,55,44,52,49,46,49,48,52,48,48,56,93,44,91,45,56,57,46,48,52,55,51,57,52,44,52,49,46,49,48,52,55,56,54,93,44,91,45,56,57,46,48,52,55,55,49,56,44,52,48,46,57,50,53,55,52,57,93,44,91,45,56,56,46,57,51,49,51,57,44,52,48,46,57,50,55,55,52,93,44,91,45,56,56,46,57,51,48,56,56,49,44,52,49,46,49,48,53,57,93,44,91,45,56,56,46,53,56,54,50,52,44,52,49,46,49,48,56,50,57,51,93,44,91,45,56,56,46,53,57,53,57,54,49,44,52,49,46,52,53,55,49,50,57,93,44,91,45,56,56,46,54,48,50,50,52,44,52,49,46,54,51,49,51,56,57,93,44,91,45,56,56,46,57,51,56,54,55,57,44,52,49,46,54,50,56,51,49,54,93,44,91,45,56,57,46,49,54,54,53,54,49,44,52,49,46,53,56,53,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,48,55,48,53,57,44,52,50,46,54,52,51,57,55,51,93,44,91,45,57,49,46,53,57,54,57,56,49,44,52,50,46,50,57,54,52,48,56,93,44,91,45,57,49,46,51,54,51,50,54,51,44,52,50,46,50,57,54,52,52,53,93,44,91,45,57,49,46,49,51,48,48,55,57,44,52,50,46,50,57,53,55,54,49,93,44,91,45,57,49,46,49,51,50,55,54,54,44,52,50,46,54,52,53,56,52,52,93,44,91,45,57,49,46,54,48,55,48,53,57,44,52,50,46,54,52,51,57,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,77,111,114,114,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,54,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,48,49,53,53,54,44,51,56,46,56,54,57,55,48,52,93,44,91,45,57,54,46,56,57,48,50,52,53,44,51,56,46,56,55,48,48,54,55,93,44,91,45,57,54,46,57,50,55,50,51,52,44,51,56,46,56,49,50,49,54,93,44,91,45,57,54,46,57,51,48,50,56,54,44,51,56,46,54,48,57,51,54,50,93,44,91,45,57,54,46,56,49,57,53,48,57,44,51,56,46,53,50,50,52,52,57,93,44,91,45,57,54,46,51,53,51,55,56,44,51,56,46,53,50,49,54,53,55,93,44,91,45,57,54,46,51,53,50,54,49,51,44,51,56,46,55,51,57,48,50,49,93,44,91,45,57,54,46,51,57,48,51,57,56,44,51,56,46,56,50,53,56,53,56,93,44,91,45,57,54,46,53,48,49,53,53,54,44,51,56,46,56,54,57,55,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,56,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,44,91,45,57,50,46,54,51,57,48,57,49,44,52,48,46,56,57,56,56,56,54,93,44,91,45,57,50,46,54,51,55,56,57,56,44,52,48,46,53,57,48,56,53,51,93,44,91,45,57,50,46,51,53,48,56,48,55,44,52,48,46,53,57,55,50,55,53,93,44,91,45,57,50,46,49,55,57,55,56,44,52,48,46,54,48,48,53,50,57,93,44,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,111,105,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,50,57,52,54,49,52,44,52,52,46,51,51,57,52,52,53,93,44,91,45,49,49,53,46,52,53,55,51,48,53,44,52,52,46,50,52,50,57,53,51,93,44,91,45,49,49,54,46,49,48,51,48,55,50,44,52,52,46,50,51,54,52,48,57,93,44,91,45,49,49,54,46,50,49,51,56,55,49,44,52,52,46,49,53,49,51,56,55,93,44,91,45,49,49,54,46,50,55,51,48,54,57,44,52,52,46,49,53,49,50,50,55,93,44,91,45,49,49,54,46,50,56,50,48,49,57,44,52,51,46,56,48,55,51,54,53,93,44,91,45,49,49,53,46,57,55,53,55,49,57,44,52,51,46,53,57,49,52,51,56,93,44,91,45,49,49,53,46,56,50,55,57,50,44,52,51,46,54,48,55,54,54,55,93,44,91,45,49,49,53,46,54,52,53,56,48,50,44,52,51,46,55,48,48,50,54,93,44,91,45,49,49,53,46,53,48,56,55,50,50,44,52,51,46,56,56,52,56,53,53,93,44,91,45,49,49,53,46,49,51,54,50,48,57,44,52,51,46,57,56,51,56,53,57,93,44,91,45,49,49,52,46,57,57,48,55,55,55,44,52,51,46,57,52,57,55,50,51,93,44,91,45,49,49,53,46,48,52,55,55,50,44,52,52,46,48,53,48,54,53,53,93,44,91,45,49,49,53,46,48,50,52,49,56,49,44,52,52,46,49,53,53,52,55,56,93,44,91,45,49,49,53,46,49,54,55,54,56,52,44,52,52,46,50,48,50,56,52,93,44,91,45,49,49,53,46,50,57,52,54,49,52,44,52,52,46,51,51,57,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,53,48,50,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,55,51,49,48,55,44,52,52,46,48,55,48,56,56,50,93,44,91,45,57,48,46,57,49,50,57,49,56,44,52,52,46,48,55,49,53,50,50,93,44,91,45,57,48,46,57,49,48,54,53,51,44,52,51,46,55,50,53,51,51,52,93,44,91,45,57,48,46,51,49,50,49,57,52,44,52,51,46,55,51,49,52,55,57,93,44,91,45,57,48,46,51,49,50,53,50,50,44,52,52,46,49,53,53,49,57,56,93,44,91,45,57,48,46,57,48,52,53,55,57,44,52,52,46,49,53,56,50,57,56,93,44,91,45,57,48,46,57,55,51,49,48,55,44,52,52,46,48,55,48,56,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,80,101,114,113,117,105,109,97,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,53,57,54,52,54,44,51,54,46,51,53,49,48,53,54,93,44,91,45,55,54,46,53,57,48,49,48,55,44,51,54,46,50,51,56,56,54,50,93,44,91,45,55,54,46,53,55,51,48,55,51,44,51,54,46,49,49,49,55,53,55,93,44,91,45,55,54,46,52,48,50,57,53,55,44,51,54,46,48,55,50,56,54,55,93,44,91,45,55,54,46,51,57,54,55,57,52,44,51,54,46,48,50,54,52,52,51,93,44,91,45,55,54,46,51,53,56,51,57,51,44,51,54,46,48,50,48,48,49,57,93,44,91,45,55,54,46,49,53,55,57,53,51,44,51,54,46,48,53,57,53,49,55,93,44,91,45,55,54,46,52,53,51,55,49,49,44,51,54,46,51,55,56,48,57,50,93,44,91,45,55,54,46,53,53,57,54,52,54,44,51,54,46,51,53,49,48,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,55,48,57,54,57,44,51,48,46,51,56,53,50,50,53,93,44,91,45,56,51,46,48,55,56,55,48,54,44,51,48,46,52,51,56,49,49,54,93,44,91,45,56,50,46,57,53,53,57,44,51,48,46,52,49,51,52,56,54,93,44,91,45,56,50,46,55,57,52,53,57,52,44,51,48,46,51,51,55,48,50,52,93,44,91,45,56,50,46,55,49,55,55,55,51,44,51,48,46,51,50,49,51,57,49,93,44,91,45,56,50,46,54,52,53,53,53,53,44,51,48,46,52,48,54,52,49,55,93,44,91,45,56,50,46,55,50,54,53,56,51,44,51,48,46,53,53,57,52,56,54,93,44,91,45,56,50,46,54,56,57,53,51,57,44,51,48,46,53,57,55,55,51,52,93,44,91,45,56,51,46,49,51,54,54,49,52,44,51,48,46,54,50,51,57,54,55,93,44,91,45,56,51,46,51,48,57,50,52,57,44,51,48,46,54,51,52,52,48,54,93,44,91,45,56,51,46,50,55,50,54,49,50,44,51,48,46,54,50,55,54,56,55,93,44,91,45,56,51,46,50,50,48,48,56,55,44,51,48,46,52,50,50,52,56,52,93,44,91,45,56,51,46,49,55,48,57,54,57,44,51,48,46,51,56,53,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,55,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,48,34,44,34,78,65,77,69,34,58,34,77,97,116,97,110,117,115,107,97,45,83,117,115,105,116,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,52,54,52,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,50,46,57,57,55,54,52,55,44,54,50,46,55,50,55,52,48,49,93,44,91,45,49,53,50,46,57,57,57,56,51,57,44,54,50,46,50,57,50,54,50,49,93,44,91,45,49,53,50,46,57,57,57,56,56,50,44,54,49,46,52,50,54,49,55,50,93,44,91,45,49,53,49,46,51,51,50,55,56,52,44,54,49,46,52,50,54,50,51,57,93,44,91,45,49,53,49,46,51,51,50,56,48,50,44,54,49,46,50,53,50,57,51,54,93,44,91,45,49,53,48,46,57,55,52,48,49,52,44,54,49,46,50,53,50,57,52,93,44,91,45,49,53,48,46,57,55,52,48,49,55,44,54,49,46,49,54,54,50,56,55,93,44,91,45,49,53,48,46,55,55,53,56,54,51,44,54,49,46,48,55,57,52,54,54,93,44,91,45,49,53,48,46,52,50,52,49,52,56,44,54,49,46,49,54,54,51,48,56,93,44,91,45,49,52,57,46,57,56,55,52,57,53,44,54,49,46,50,50,52,48,54,52,93,44,91,45,49,52,57,46,55,52,56,51,54,57,44,54,49,46,51,57,55,51,55,49,93,44,91,45,49,52,57,46,51,53,57,52,52,44,54,49,46,52,56,52,48,50,53,93,44,91,45,49,52,57,46,49,56,48,48,54,50,44,54,49,46,52,50,54,50,53,93,44,91,45,49,52,56,46,52,54,50,52,55,49,44,54,49,46,52,50,54,50,54,55,93,44,91,45,49,52,55,46,50,48,54,53,57,55,44,54,49,46,52,50,54,50,54,53,93,44,91,45,49,52,54,46,57,52,50,53,53,57,44,54,49,46,52,55,48,54,55,53,93,44,91,45,49,52,54,46,57,52,50,54,48,49,44,54,49,46,56,49,55,50,55,50,93,44,91,45,49,52,54,46,57,55,57,56,48,55,44,54,50,46,50,53,48,52,57,55,93,44,91,45,49,52,54,46,52,50,51,57,56,52,44,54,50,46,50,53,48,53,49,49,93,44,91,45,49,52,54,46,52,51,54,56,57,57,44,54,50,46,56,53,54,57,57,49,93,44,91,45,49,52,54,46,52,57,52,50,57,54,44,54,50,46,57,53,55,56,54,52,93,44,91,45,49,52,54,46,52,57,52,51,49,49,44,54,51,46,49,54,56,57,55,53,93,44,91,45,49,52,54,46,52,56,57,53,52,49,44,54,51,46,52,56,50,57,49,51,93,44,91,45,49,52,54,46,57,57,57,57,54,54,44,54,51,46,52,55,57,54,52,53,93,44,91,45,49,52,56,46,48,50,53,54,50,55,44,54,51,46,52,55,55,54,48,57,93,44,91,45,49,52,56,46,48,50,53,54,49,56,44,54,51,46,51,51,51,50,51,51,93,44,91,45,49,52,57,46,53,50,54,49,52,56,44,54,51,46,51,51,51,50,49,55,93,44,91,45,49,53,48,46,55,50,48,57,49,54,44,54,51,46,48,54,51,49,56,52,93,44,91,45,49,53,49,46,56,57,52,48,49,53,44,54,50,46,55,57,56,48,53,56,93,44,91,45,49,53,49,46,56,57,51,55,56,52,44,54,50,46,55,50,53,56,54,52,93,44,91,45,49,53,50,46,57,57,55,54,52,55,44,54,50,46,55,50,55,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,54,49,54,44,34,98,101,100,115,34,58,51,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,55,56,53,56,57,44,52,48,46,51,55,57,53,50,52,93,44,91,45,56,53,46,53,55,54,49,57,55,44,52,48,46,48,55,55,49,52,51,93,44,91,45,56,53,46,50,49,52,51,56,54,44,52,48,46,48,55,54,56,56,57,93,44,91,45,56,53,46,50,49,56,55,53,56,44,52,48,46,51,48,54,55,48,54,93,44,91,45,56,53,46,50,49,57,57,48,49,44,52,48,46,51,55,57,48,51,52,93,44,91,45,56,53,46,52,52,52,51,51,44,52,48,46,51,55,57,49,52,93,44,91,45,56,53,46,53,55,56,53,56,57,44,52,48,46,51,55,57,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,101,118,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,57,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,51,55,51,50,57,44,50,57,46,53,57,49,49,57,54,93,44,91,45,56,51,46,48,54,56,53,50,50,44,50,57,46,51,52,51,57,53,51,93,44,91,45,56,51,46,50,51,57,56,53,57,44,50,57,46,50,53,48,57,57,93,44,91,45,56,51,46,49,55,49,56,48,54,44,50,57,46,49,56,53,57,50,49,93,44,91,45,56,51,46,49,52,52,48,56,44,50,57,46,48,55,50,56,52,93,44,91,45,56,51,46,48,55,54,44,50,57,46,48,52,49,56,49,57,93,44,91,45,56,50,46,57,53,48,48,55,56,44,50,57,46,48,55,54,48,53,57,93,44,91,45,56,50,46,56,53,49,50,55,56,44,50,57,46,48,49,55,51,56,57,93,44,91,45,56,50,46,56,52,56,50,52,56,44,50,56,46,57,49,52,53,50,57,93,44,91,45,56,50,46,55,49,49,53,51,44,50,57,46,48,51,48,57,56,56,93,44,91,45,56,50,46,53,51,53,53,57,49,44,50,57,46,48,52,52,56,53,53,93,44,91,45,56,50,46,53,51,52,56,54,44,50,57,46,50,49,52,54,56,93,44,91,45,56,50,46,52,48,51,50,51,55,44,50,57,46,50,49,53,54,50,51,93,44,91,45,56,50,46,52,48,54,54,50,44,50,57,46,52,56,53,48,52,56,93,44,91,45,56,50,46,53,53,54,55,54,54,44,50,57,46,52,56,48,48,53,53,93,44,91,45,56,50,46,54,53,54,51,48,49,44,50,57,46,53,54,52,56,49,49,93,44,91,45,56,50,46,57,51,55,51,50,57,44,50,57,46,53,57,49,49,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,71,117,114,97,98,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,56,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,52,50,52,50,57,44,49,56,46,50,57,51,52,54,57,93,44,91,45,54,54,46,48,50,49,55,52,55,44,49,56,46,51,48,53,48,51,52,93,44,91,45,54,53,46,57,57,55,54,53,44,49,56,46,50,48,54,57,57,50,93,44,91,45,54,53,46,57,53,49,48,49,57,44,49,56,46,50,50,57,50,57,50,93,44,91,45,54,53,46,57,49,56,53,51,53,44,49,56,46,50,55,48,49,51,93,44,91,45,54,53,46,57,52,50,52,50,57,44,49,56,46,50,57,51,52,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,97,116,105,108,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,51,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,56,51,54,54,57,51,44,49,56,46,53,52,48,50,48,54,93,44,91,45,54,54,46,56,50,52,50,50,51,44,49,56,46,51,52,50,57,57,56,93,44,91,45,54,54,46,56,50,54,49,50,56,44,49,56,46,51,50,51,51,56,50,93,44,91,45,54,54,46,55,55,48,48,55,50,44,49,56,46,51,50,53,48,49,51,93,44,91,45,54,54,46,55,54,52,54,57,50,44,49,56,46,53,51,56,51,51,93,44,91,45,54,54,46,56,51,54,54,57,51,44,49,56,46,53,52,48,50,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,54,53,51,44,34,98,101,100,115,34,58,49,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,48,54,49,51,53,44,51,48,46,49,55,55,57,52,49,93,44,91,45,56,57,46,51,52,48,56,52,55,44,51,48,46,51,53,55,57,57,53,93,44,91,45,56,57,46,51,52,49,52,52,54,44,51,48,46,54,52,55,55,50,93,44,91,45,56,57,46,53,52,52,50,51,50,44,51,48,46,54,52,56,51,54,56,93,44,91,45,56,57,46,53,52,52,53,49,44,51,48,46,53,49,54,56,54,50,93,44,91,45,56,57,46,54,57,48,48,51,53,44,51,48,46,52,53,57,51,51,51,93,44,91,45,56,57,46,54,51,49,54,49,52,44,51,48,46,50,53,55,48,49,51,93,44,91,45,56,57,46,52,57,52,57,55,51,44,51,48,46,49,54,48,55,53,93,44,91,45,56,57,46,51,48,54,49,51,53,44,51,48,46,49,55,55,57,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,53,34,44,34,78,65,77,69,34,58,34,87,105,108,99,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,56,48,49,55,54,44,51,49,46,56,52,55,51,49,50,93,44,91,45,56,51,46,49,55,55,52,54,57,44,51,49,46,56,52,55,56,53,55,93,44,91,45,56,51,46,50,48,53,55,51,57,44,51,49,46,57,48,48,51,50,53,93,44,91,45,56,51,46,51,51,55,51,49,51,44,51,50,46,49,48,53,56,56,53,93,44,91,45,56,51,46,54,48,56,53,52,55,44,51,50,46,49,49,56,52,48,53,93,44,91,45,56,51,46,54,48,57,54,54,51,44,51,50,46,48,50,55,57,51,56,93,44,91,45,56,51,46,54,49,50,50,53,54,44,51,49,46,56,53,52,48,56,57,93,44,91,45,56,51,46,52,56,48,49,55,54,44,51,49,46,56,52,55,51,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,82,101,100,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,49,56,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,49,52,54,57,44,51,50,46,50,51,55,53,50,54,93,44,91,45,57,51,46,53,50,51,52,49,54,44,51,50,46,49,55,54,57,57,49,93,44,91,45,57,51,46,53,52,49,51,53,51,44,51,50,46,49,48,53,56,56,93,44,91,45,57,51,46,51,53,53,52,53,50,44,51,49,46,57,51,50,50,50,50,93,44,91,45,57,51,46,50,51,56,52,55,44,51,49,46,57,55,50,55,56,49,93,44,91,45,57,51,46,49,51,54,49,50,55,44,51,50,46,48,53,54,50,50,52,93,44,91,45,57,51,46,49,56,55,49,54,50,44,51,50,46,49,52,56,52,49,50,93,44,91,45,57,51,46,50,49,51,57,56,56,44,51,50,46,50,51,54,48,54,53,93,44,91,45,57,51,46,52,50,56,49,57,44,51,50,46,50,51,53,56,57,55,93,44,91,45,57,51,46,52,55,49,50,52,57,44,51,50,46,50,51,55,49,56,54,93,44,91,45,57,51,46,54,49,52,54,57,44,51,50,46,50,51,55,53,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,49,56,53,44,34,98,101,100,115,34,58,50,48,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,52,49,55,49,49,44,51,54,46,49,56,54,51,55,56,93,44,91,45,56,52,46,49,57,50,50,56,55,44,51,53,46,57,57,53,52,56,56,93,44,91,45,56,52,46,50,55,49,53,56,55,44,51,53,46,57,49,48,49,54,53,93,44,91,45,56,52,46,50,54,51,51,56,51,44,51,53,46,56,57,54,57,52,93,44,91,45,56,52,46,49,54,54,50,54,55,44,51,53,46,56,48,53,49,48,54,93,44,91,45,56,51,46,57,53,48,52,56,49,44,51,53,46,56,55,53,51,54,50,93,44,91,45,56,51,46,55,57,52,50,55,53,44,51,53,46,56,56,55,49,50,53,93,44,91,45,56,51,46,54,53,52,54,48,53,44,51,53,46,57,55,49,57,51,55,93,44,91,45,56,51,46,54,55,51,50,57,55,44,51,54,46,48,51,56,52,56,54,93,44,91,45,56,51,46,54,54,55,52,54,44,51,54,46,48,56,48,53,56,55,93,44,91,45,56,51,46,55,51,50,55,48,52,44,51,54,46,49,54,52,53,56,51,93,44,91,45,56,51,46,57,52,49,55,49,49,44,51,54,46,49,56,54,51,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,79,120,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,51,50,53,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,48,56,51,57,50,56,44,52,53,46,51,48,53,52,56,52,93,44,91,45,55,49,46,48,51,51,53,50,52,44,52,52,46,54,57,55,54,51,55,93,44,91,45,55,49,46,48,48,57,57,55,54,44,52,52,46,50,56,52,56,57,57,93,44,91,45,55,48,46,57,56,57,49,50,50,44,52,51,46,55,57,50,49,49,51,93,44,91,45,55,48,46,55,56,50,57,56,52,44,52,51,46,56,49,52,49,52,55,93,44,91,45,55,48,46,55,49,53,52,49,56,44,52,51,46,57,54,49,56,49,53,93,44,91,45,55,48,46,56,50,49,56,48,51,44,52,52,46,48,55,55,48,56,57,93,44,91,45,55,48,46,54,50,52,51,50,57,44,52,52,46,49,55,49,48,51,54,93,44,91,45,55,48,46,54,48,51,55,56,52,44,52,52,46,48,52,49,53,51,54,93,44,91,45,55,48,46,52,56,48,48,55,56,44,52,52,46,48,51,50,48,55,56,93,44,91,45,55,48,46,51,51,52,48,57,52,44,52,52,46,50,49,48,55,53,51,93,44,91,45,55,48,46,50,51,56,57,48,52,44,52,52,46,52,53,56,57,52,50,93,44,91,45,55,48,46,50,56,48,55,52,56,44,52,52,46,53,54,57,54,49,57,93,44,91,45,55,48,46,53,49,48,53,57,56,44,52,52,46,54,50,55,50,49,54,93,44,91,45,55,48,46,54,49,53,48,51,44,52,52,46,55,57,53,54,51,52,93,44,91,45,55,48,46,55,54,57,50,50,56,44,52,52,46,55,51,50,50,50,56,93,44,91,45,55,48,46,55,55,57,56,52,50,44,52,53,46,48,49,56,51,55,57,93,44,91,45,55,48,46,56,51,53,49,52,50,44,52,53,46,50,55,55,48,52,55,93,44,91,45,55,48,46,57,56,57,49,50,44,52,53,46,51,51,52,49,51,55,93,44,91,45,55,49,46,48,56,51,57,50,56,44,52,53,46,51,48,53,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,50,48,48,51,44,34,98,101,100,115,34,58,51,48,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,56,48,51,51,44,51,56,46,56,52,55,50,48,55,93,44,91,45,57,52,46,49,49,57,48,57,54,44,51,56,46,56,51,51,49,54,55,93,44,91,45,57,52,46,49,49,52,49,55,53,44,51,56,46,57,49,55,51,48,52,93,44,91,45,57,52,46,49,48,52,56,50,51,44,51,57,46,49,52,51,53,48,55,93,44,91,45,57,52,46,50,49,50,53,49,53,44,51,57,46,50,48,55,48,56,54,93,44,91,45,57,52,46,50,56,57,56,55,51,44,51,57,46,50,51,55,49,48,55,93,44,91,45,57,52,46,52,54,49,53,57,44,51,57,46,49,50,48,51,55,50,93,44,91,45,57,52,46,54,48,55,51,53,52,44,51,57,46,49,49,51,52,52,52,93,44,91,45,57,52,46,54,48,55,51,56,50,44,51,57,46,48,52,52,48,56,54,93,44,91,45,57,52,46,54,48,56,48,51,51,44,51,56,46,56,52,55,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,49,34,44,34,78,65,77,69,34,58,34,84,111,119,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,51,54,51,57,53,44,51,52,46,57,56,55,53,54,52,93,44,91,45,56,51,46,56,48,52,57,54,50,44,51,52,46,56,57,53,57,51,52,93,44,91,45,56,51,46,55,56,48,51,52,54,44,51,52,46,55,57,50,57,48,53,93,44,91,45,56,51,46,54,56,49,53,57,54,44,51,52,46,56,48,48,56,56,50,93,44,91,45,56,51,46,54,53,50,49,57,52,44,51,52,46,56,50,50,57,57,51,93,44,91,45,56,51,46,54,53,54,50,57,55,44,51,52,46,56,55,56,56,50,51,93,44,91,45,56,51,46,53,52,57,51,55,54,44,51,52,46,57,57,50,51,57,51,93,44,91,45,56,51,46,57,51,54,51,57,53,44,51,52,46,57,56,55,53,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,83,109,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,54,51,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,44,91,45,56,57,46,55,51,48,52,50,52,44,51,50,46,50,50,50,48,51,57,93,44,91,45,56,57,46,55,51,48,48,54,54,44,51,50,46,48,52,55,48,55,50,93,44,91,45,56,57,46,54,53,52,52,50,54,44,51,50,46,48,49,51,54,55,56,93,44,91,45,56,57,46,54,53,51,48,50,53,44,51,49,46,55,56,48,54,53,51,93,44,91,45,56,57,46,52,48,49,50,50,55,44,51,49,46,55,57,54,56,54,51,93,44,91,45,56,57,46,51,49,54,53,54,44,51,49,46,56,48,50,48,57,93,44,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,80,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,56,57,55,55,57,44,52,52,46,49,53,50,53,57,93,44,91,45,49,49,54,46,57,56,51,56,50,55,44,52,51,46,56,56,48,48,52,54,93,44,91,45,49,49,54,46,56,53,51,49,53,52,44,52,51,46,55,57,50,55,49,93,44,91,45,49,49,54,46,55,49,50,54,55,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,55,49,50,53,48,49,44,52,51,46,57,56,49,51,50,54,93,44,91,45,49,49,54,46,53,55,50,50,50,52,44,52,51,46,57,56,48,52,56,53,93,44,91,45,49,49,54,46,52,53,50,48,54,56,44,52,52,46,49,53,49,52,54,53,93,44,91,45,49,49,54,46,56,57,55,55,57,44,52,52,46,49,53,50,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,83,104,111,115,104,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,50,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,51,50,57,53,51,56,44,52,55,46,56,57,48,51,57,51,93,44,91,45,49,49,54,46,51,50,57,52,48,54,44,52,55,46,52,49,52,48,49,49,93,44,91,45,49,49,54,46,51,50,57,52,49,56,44,52,55,46,48,50,49,57,49,53,93,44,91,45,49,49,54,46,51,50,57,52,51,54,44,52,54,46,57,51,52,54,54,57,93,44,91,45,49,49,52,46,57,53,57,51,49,55,44,52,54,46,57,51,50,56,57,56,93,44,91,45,49,49,53,46,48,52,55,56,53,55,44,52,54,46,57,54,57,53,51,50,93,44,91,45,49,49,53,46,51,52,48,56,52,57,44,52,55,46,50,54,50,56,53,93,44,91,45,49,49,53,46,55,52,54,54,49,57,44,52,55,46,52,52,50,51,49,49,93,44,91,45,49,49,53,46,54,50,57,52,56,56,44,52,55,46,52,55,57,54,49,93,44,91,45,49,49,53,46,55,50,50,55,49,52,44,52,55,46,54,57,52,56,53,53,93,44,91,45,49,49,53,46,56,50,51,55,55,52,44,52,55,46,55,53,50,54,49,49,93,44,91,45,49,49,54,46,48,52,57,49,48,56,44,52,55,46,57,55,55,51,51,52,93,44,91,45,49,49,54,46,50,51,51,49,49,51,44,52,56,46,48,54,56,56,57,93,44,91,45,49,49,54,46,51,50,57,54,48,49,44,52,56,46,48,49,55,55,50,50,93,44,91,45,49,49,54,46,51,50,57,53,51,56,44,52,55,46,56,57,48,51,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,72,121,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,50,50,49,51,49,44,51,53,46,51,53,51,54,50,51,93,44,91,45,55,54,46,52,52,53,52,49,56,44,51,53,46,51,50,57,50,54,52,93,44,91,45,55,54,46,51,48,52,49,51,54,44,51,53,46,50,48,49,52,53,51,93,44,91,45,55,54,46,48,54,53,55,55,52,44,51,53,46,49,50,52,57,51,55,93,44,91,45,55,54,46,48,48,54,57,51,54,44,51,53,46,48,48,54,48,51,49,93,44,91,45,55,53,46,55,51,54,54,50,44,51,53,46,49,52,48,53,54,53,93,44,91,45,55,53,46,56,49,52,48,50,49,44,51,53,46,53,48,48,49,56,50,93,44,91,45,55,53,46,57,48,49,51,52,50,44,51,53,46,54,54,56,57,53,50,93,44,91,45,55,54,46,48,50,55,52,55,57,44,51,53,46,54,54,56,56,52,57,93,44,91,45,55,54,46,52,48,53,57,55,49,44,51,53,46,54,57,55,53,55,57,93,44,91,45,55,54,46,54,51,55,53,49,51,44,51,53,46,55,48,53,50,49,53,93,44,91,45,55,54,46,53,56,56,49,57,49,44,51,53,46,54,50,48,54,53,52,93,44,91,45,55,54,46,53,56,53,51,50,44,51,53,46,52,53,53,48,55,53,93,44,91,45,55,54,46,53,50,50,49,51,49,44,51,53,46,51,53,51,54,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,52,48,57,50,44,52,51,46,50,49,50,56,49,50,93,44,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,44,91,45,57,50,46,53,53,52,50,49,49,44,52,50,46,57,48,55,49,49,50,93,44,91,45,57,50,46,53,53,52,51,56,49,44,52,51,46,50,49,50,56,49,51,93,44,91,45,57,51,46,48,50,52,48,57,50,44,52,51,46,50,49,50,56,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,77,99,67,114,97,99,107,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,50,56,52,44,34,98,101,100,115,34,58,49,48,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,51,51,52,48,49,44,51,55,46,50,50,52,57,57,49,93,44,91,45,56,56,46,56,49,53,57,53,50,44,51,54,46,57,53,52,49,93,44,91,45,56,56,46,56,49,50,56,57,55,44,51,54,46,57,52,54,56,54,52,93,44,91,45,56,56,46,52,56,52,49,48,51,44,51,54,46,57,52,50,48,57,54,93,44,91,45,56,56,46,52,56,50,57,53,55,44,51,55,46,48,50,50,53,54,54,93,44,91,45,56,56,46,53,54,54,48,54,49,44,51,55,46,48,55,53,50,48,52,93,44,91,45,56,56,46,57,50,55,56,57,44,51,55,46,50,50,54,51,52,50,93,44,91,45,56,56,46,57,51,51,52,48,49,44,51,55,46,50,50,52,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,53,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,50,56,48,49,54,44,51,55,46,55,57,57,49,56,56,93,44,91,45,56,56,46,49,54,48,51,56,57,44,51,55,46,54,53,54,49,51,49,93,44,91,45,56,56,46,49,51,51,52,51,52,44,51,55,46,53,55,52,51,51,56,93,44,91,45,56,56,46,48,54,49,51,51,50,44,51,55,46,53,48,53,51,51,50,93,44,91,45,56,55,46,57,51,50,57,53,50,44,51,55,46,52,56,48,48,53,50,93,44,91,45,56,55,46,55,51,52,53,52,53,44,51,55,46,54,51,56,51,55,54,93,44,91,45,56,55,46,57,50,55,48,54,56,44,51,55,46,57,48,49,54,56,53,93,44,91,45,56,55,46,57,48,54,57,51,57,44,51,55,46,56,48,55,53,57,51,93,44,91,45,56,56,46,48,50,56,48,49,54,44,51,55,46,55,57,57,49,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,84,117,114,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,54,52,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,48,49,52,53,44,52,51,46,52,57,57,55,56,51,93,44,91,45,57,55,46,51,57,57,49,57,49,44,52,51,46,49,54,57,52,49,57,93,44,91,45,57,55,46,49,54,48,53,52,52,44,52,51,46,49,54,57,57,55,56,93,44,91,45,57,55,46,49,54,48,53,52,51,44,52,51,46,48,56,51,49,52,53,93,44,91,45,57,54,46,57,50,52,49,52,50,44,52,51,46,48,56,51,55,51,51,93,44,91,45,57,54,46,57,50,52,56,52,49,44,52,51,46,53,48,48,48,48,55,93,44,91,45,57,55,46,49,50,57,52,55,56,44,52,51,46,52,57,57,54,56,51,93,44,91,45,57,55,46,52,48,49,52,53,44,52,51,46,52,57,57,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,99,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,51,54,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,51,52,53,56,53,44,51,54,46,48,56,53,48,57,52,93,44,91,45,56,51,46,51,49,48,55,56,50,44,51,53,46,56,57,53,56,52,54,93,44,91,45,56,51,46,50,53,53,51,52,51,44,51,53,46,55,49,53,48,56,52,93,44,91,45,56,51,46,48,55,51,57,49,56,44,51,53,46,55,57,48,48,53,53,93,44,91,45,56,50,46,57,54,49,55,53,52,44,51,53,46,55,57,48,57,53,57,93,44,91,45,56,50,46,56,57,56,51,49,55,44,51,53,46,57,52,52,57,54,55,93,44,91,45,56,51,46,49,54,54,48,56,53,44,51,54,46,49,56,48,56,57,52,93,44,91,45,56,51,46,50,51,52,53,56,53,44,51,54,46,48,56,53,48,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,56,53,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,55,50,49,48,56,44,51,54,46,53,57,55,50,56,52,93,44,91,45,56,51,46,51,57,56,51,48,51,44,51,54,46,53,51,52,56,56,53,93,44,91,45,56,51,46,51,56,54,56,44,51,54,46,52,49,51,49,56,54,93,44,91,45,56,51,46,50,56,48,53,57,53,44,51,54,46,51,57,52,54,56,57,93,44,91,45,56,51,46,49,49,57,51,57,51,44,51,54,46,53,49,52,50,57,93,44,91,45,56,50,46,56,51,48,52,51,51,44,51,54,46,53,57,51,55,54,49,93,44,91,45,56,50,46,57,56,53,49,50,52,44,51,54,46,53,57,51,55,50,57,93,44,91,45,56,51,46,52,55,50,49,48,56,44,51,54,46,53,57,55,50,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,55,49,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,54,50,53,55,50,44,51,53,46,51,56,48,57,57,52,93,44,91,45,56,56,46,51,56,48,53,48,56,44,51,52,46,57,57,53,54,49,93,44,91,45,56,56,46,51,54,51,53,51,49,44,51,52,46,57,57,53,52,55,53,93,44,91,45,56,56,46,50,48,48,48,54,52,44,51,52,46,57,57,53,54,51,52,93,44,91,45,56,55,46,57,56,52,57,49,54,44,51,53,46,48,48,53,57,51,51,93,44,91,45,56,55,46,57,56,49,53,56,53,44,51,53,46,50,57,53,54,55,56,93,44,91,45,56,56,46,48,50,52,55,52,49,44,51,53,46,51,57,50,51,48,55,93,44,91,45,56,56,46,49,56,57,54,54,49,44,51,53,46,51,56,52,51,48,51,93,44,91,45,56,56,46,50,52,49,54,55,55,44,51,53,46,52,50,51,50,54,51,93,44,91,45,56,56,46,51,54,48,56,50,57,44,51,53,46,52,49,56,57,55,50,93,44,91,45,56,56,46,51,54,50,53,55,50,44,51,53,46,51,56,48,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,54,50,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,53,52,55,57,51,44,51,52,46,50,51,48,57,49,51,93,44,91,45,55,57,46,52,57,49,55,49,52,44,51,51,46,57,52,54,53,50,50,93,44,91,45,55,57,46,51,50,52,51,49,55,44,51,51,46,55,57,57,49,50,51,93,44,91,45,55,57,46,51,49,55,48,52,49,44,51,51,46,55,55,57,56,55,56,93,44,91,45,55,57,46,49,57,48,50,54,52,44,51,51,46,55,48,53,55,56,55,93,44,91,45,55,57,46,51,51,50,52,53,56,44,51,51,46,57,57,52,57,57,55,93,44,91,45,55,57,46,49,50,56,49,54,53,44,51,52,46,50,53,51,54,53,50,93,44,91,45,55,57,46,52,56,48,55,49,50,44,51,52,46,50,56,56,48,56,49,93,44,91,45,55,57,46,53,52,55,57,51,44,51,52,46,50,51,48,57,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,71,117,97,121,97,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,55,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,53,51,49,52,54,44,49,56,46,49,48,55,50,57,51,93,44,91,45,54,54,46,49,54,54,49,52,53,44,49,56,46,48,53,48,48,54,51,93,44,91,45,54,54,46,50,50,53,50,55,53,44,49,55,46,57,50,52,54,53,50,93,44,91,45,54,54,46,49,56,55,51,52,50,44,49,55,46,56,55,55,48,51,54,93,44,91,45,54,54,46,48,54,52,53,48,51,44,49,55,46,57,48,52,56,50,53,93,44,91,45,54,54,46,48,56,50,50,54,51,44,49,56,46,48,51,50,57,53,56,93,44,91,45,54,54,46,48,53,51,49,52,54,44,49,56,46,49,48,55,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,52,53,55,44,34,98,101,100,115,34,58,49,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,51,53,57,48,56,44,51,49,46,48,48,50,48,52,55,93,44,91,45,57,48,46,50,53,57,53,53,53,44,51,49,46,48,48,48,54,55,57,93,44,91,45,57,48,46,51,52,55,50,53,53,44,51,49,46,48,48,48,53,51,93,44,91,45,57,48,46,51,52,54,55,49,44,51,48,46,57,48,53,52,50,55,93,44,91,45,57,48,46,50,53,53,54,52,56,44,51,48,46,55,49,49,57,48,53,93,44,91,45,56,57,46,57,57,52,50,48,49,44,51,48,46,54,54,53,52,51,93,44,91,45,56,57,46,56,52,50,51,51,44,51,48,46,54,54,54,48,49,53,93,44,91,45,56,57,46,55,50,56,49,49,57,44,51,49,46,48,48,50,51,93,44,91,45,56,57,46,56,51,53,57,48,56,44,51,49,46,48,48,50,48,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,55,34,44,34,78,65,77,69,34,58,34,83,116,111,100,100,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,53,49,50,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,53,56,53,54,51,44,51,54,46,57,50,50,48,52,51,93,44,91,45,57,48,46,49,53,56,48,53,44,51,54,46,55,50,50,57,55,54,93,44,91,45,57,48,46,49,52,56,51,57,56,44,51,54,46,54,51,48,54,53,54,93,44,91,45,56,57,46,57,53,56,55,56,54,44,51,54,46,54,50,57,51,51,49,93,44,91,45,56,57,46,55,48,48,57,53,50,44,51,54,46,54,50,55,52,53,51,93,44,91,45,56,57,46,54,57,49,54,48,51,44,51,54,46,56,53,57,53,49,55,93,44,91,45,56,57,46,54,56,54,54,50,44,51,54,46,57,50,56,50,57,51,93,44,91,45,56,57,46,55,56,54,56,49,57,44,51,55,46,48,56,55,56,50,52,93,44,91,45,56,57,46,55,54,53,50,49,49,44,51,55,46,49,50,54,48,54,54,93,44,91,45,56,57,46,56,54,54,54,50,55,44,51,55,46,49,50,54,50,50,55,93,44,91,45,56,57,46,57,53,57,49,57,54,44,51,55,46,48,53,52,51,56,93,44,91,45,57,48,46,49,49,49,50,52,55,44,51,55,46,48,52,49,50,48,53,93,44,91,45,57,48,46,50,53,56,53,54,51,44,51,54,46,57,50,50,48,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,68,111,111,108,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,52,56,51,55,57,44,51,50,46,50,57,48,57,55,93,44,91,45,56,51,46,57,53,56,56,49,55,44,51,50,46,50,53,50,49,48,53,93,44,91,45,56,52,46,48,50,55,54,44,51,50,46,49,55,49,49,54,53,93,44,91,45,56,51,46,57,54,49,50,55,56,44,51,50,46,48,51,48,53,57,53,93,44,91,45,56,51,46,54,48,57,54,54,51,44,51,50,46,48,50,55,57,51,56,93,44,91,45,56,51,46,54,48,56,53,52,55,44,51,50,46,49,49,56,52,48,53,93,44,91,45,56,51,46,54,49,53,53,55,57,44,51,50,46,50,56,56,53,53,54,93,44,91,45,56,51,46,56,52,56,51,55,57,44,51,50,46,50,57,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,83,116,101,97,114,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,56,49,57,44,34,98,101,100,115,34,58,53,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,51,57,54,55,44,52,53,46,55,53,56,56,57,49,93,44,91,45,57,53,46,49,51,49,55,51,44,52,53,46,52,49,50,52,48,50,93,44,91,45,57,52,46,55,54,50,57,51,52,44,52,53,46,52,49,50,56,54,49,93,44,91,45,57,52,46,55,54,51,48,56,44,52,53,46,51,50,54,49,93,44,91,45,57,52,46,51,56,51,53,53,54,44,52,53,46,51,50,54,55,48,53,93,44,91,45,57,52,46,50,54,48,56,50,49,44,52,53,46,50,56,51,57,52,49,93,44,91,45,57,52,46,49,49,54,55,54,53,44,52,53,46,51,50,56,48,49,57,93,44,91,45,57,52,46,48,52,55,51,50,55,44,52,53,46,52,50,50,56,54,49,93,44,91,45,57,52,46,49,52,57,52,54,55,44,52,53,46,53,53,57,48,54,54,93,44,91,45,57,52,46,50,55,49,55,55,54,44,52,53,46,55,55,53,50,48,56,93,44,91,45,57,52,46,54,52,51,57,57,44,52,53,46,55,55,51,57,53,93,44,91,45,57,53,46,49,51,57,55,51,49,44,52,53,46,55,55,51,52,49,54,93,44,91,45,57,53,46,49,51,57,54,55,44,52,53,46,55,53,56,56,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,83,97,117,110,100,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,48,50,52,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,48,53,56,54,50,44,52,49,46,52,53,51,51,56,57,93,44,91,45,57,54,46,57,48,56,53,48,55,44,52,49,46,48,52,54,48,57,49,93,44,91,45,57,54,46,52,54,51,56,54,57,44,52,49,46,48,52,53,48,56,51,93,44,91,45,57,54,46,52,54,51,56,54,49,44,52,49,46,48,49,54,48,54,57,93,44,91,45,57,54,46,51,49,57,49,57,49,44,52,49,46,48,52,52,57,57,56,93,44,91,45,57,54,46,51,50,55,51,57,57,44,52,49,46,49,56,57,57,57,57,93,44,91,45,57,54,46,52,55,48,55,50,44,52,49,46,51,57,51,50,51,57,93,44,91,45,57,54,46,53,54,56,57,55,55,44,52,49,46,52,51,51,50,52,93,44,91,45,57,54,46,57,48,53,56,54,50,44,52,49,46,52,53,51,51,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,83,104,101,114,98,117,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,50,51,49,44,34,98,101,100,115,34,58,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,49,48,55,48,52,44,52,53,46,53,53,56,55,55,50,93,44,91,45,57,51,46,55,53,57,52,51,53,44,52,53,46,53,53,57,54,52,54,93,44,91,45,57,52,46,49,52,57,52,54,55,44,52,53,46,53,53,57,48,54,54,93,44,91,45,57,52,46,48,52,55,51,50,55,44,52,53,46,52,50,50,56,54,49,93,44,91,45,57,51,46,55,53,54,54,49,44,52,53,46,50,57,52,55,50,49,93,44,91,45,57,51,46,53,55,57,51,57,44,52,53,46,50,57,50,49,50,50,93,44,91,45,57,51,46,53,50,49,54,53,51,44,52,53,46,50,52,54,54,49,56,93,44,91,45,57,51,46,53,49,50,49,57,44,52,53,46,50,52,53,54,56,51,93,44,91,45,57,51,46,53,49,48,48,55,44,52,53,46,52,49,52,55,57,56,93,44,91,45,57,51,46,53,49,48,55,48,52,44,52,53,46,53,53,56,55,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,68,97,118,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,48,49,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,50,53,50,52,50,44,52,51,46,56,53,49,48,53,56,93,44,91,45,57,56,46,51,50,48,53,57,53,44,52,51,46,52,57,56,54,53,49,93,44,91,45,57,56,46,49,49,52,55,53,56,44,52,51,46,52,57,56,50,57,55,93,44,91,45,57,55,46,57,54,52,53,56,54,44,52,51,46,52,57,57,48,52,49,93,44,91,45,57,55,46,57,54,55,50,55,57,44,52,51,46,56,53,48,54,56,54,93,44,91,45,57,56,46,51,50,53,50,52,50,44,52,51,46,56,53,49,48,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,105,98,111,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,49,51,44,34,98,101,100,115,34,58,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,55,50,49,48,56,44,51,54,46,53,57,55,50,56,52,93,44,91,45,56,51,46,54,55,53,51,57,53,44,51,54,46,54,48,48,55,56,52,93,44,91,45,56,51,46,57,51,48,55,54,50,44,51,54,46,53,56,55,54,57,49,93,44,91,45,56,51,46,57,56,55,54,49,53,44,51,54,46,53,56,57,52,55,49,93,44,91,45,56,51,46,57,48,53,54,51,56,44,51,54,46,52,49,57,57,55,57,93,44,91,45,56,51,46,54,54,55,52,48,56,44,51,54,46,51,52,52,51,56,49,93,44,91,45,56,51,46,52,54,54,48,48,50,44,51,54,46,51,54,57,49,56,54,93,44,91,45,56,51,46,51,56,54,56,44,51,54,46,52,49,51,49,56,54,93,44,91,45,56,51,46,51,57,56,51,48,51,44,51,54,46,53,51,52,56,56,53,93,44,91,45,56,51,46,52,55,50,49,48,56,44,51,54,46,53,57,55,50,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,51,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,97,103,117,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,48,57,44,34,98,101,100,115,34,58,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,55,55,56,54,44,51,51,46,56,56,57,56,50,53,93,44,91,45,57,55,46,57,55,56,57,49,57,44,51,51,46,52,54,55,49,50,57,93,44,91,45,57,55,46,57,49,56,49,56,57,44,51,51,46,52,51,51,56,55,51,93,44,91,45,57,55,46,52,56,55,48,54,53,44,51,51,46,52,51,51,54,56,49,93,44,91,45,57,55,46,52,56,52,49,54,51,44,51,51,46,57,49,53,53,49,93,44,91,45,57,55,46,53,54,48,56,53,56,44,51,51,46,56,57,57,54,52,53,93,44,91,45,57,55,46,54,54,49,52,56,57,44,51,51,46,57,57,48,56,49,56,93,44,91,45,57,55,46,56,55,55,51,56,55,44,51,51,46,56,53,48,50,51,54,93,44,91,45,57,55,46,57,55,55,56,54,44,51,51,46,56,56,57,56,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,51,52,44,34,98,101,100,115,34,58,49,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,57,53,56,55,49,44,51,50,46,48,55,57,50,51,53,93,44,91,45,57,57,46,50,48,50,55,54,56,44,51,49,46,52,54,55,50,51,52,93,44,91,45,57,57,46,48,57,48,54,50,50,44,51,49,46,52,54,48,57,50,55,93,44,91,45,57,56,46,57,57,49,54,48,56,44,51,49,46,52,56,52,48,55,49,93,44,91,45,57,56,46,54,54,56,52,52,49,44,51,49,46,55,48,48,53,49,52,93,44,91,45,57,56,46,57,50,52,52,48,49,44,51,50,46,48,55,56,48,49,56,93,44,91,45,57,57,46,49,49,56,54,54,53,44,51,50,46,48,55,57,53,56,53,93,44,91,45,57,57,46,49,57,53,56,55,49,44,51,50,46,48,55,57,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,82,97,99,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,51,57,56,44,34,98,101,100,115,34,58,52,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,48,54,51,56,52,44,52,50,46,56,52,50,48,57,53,93,44,91,45,56,56,46,51,48,53,56,57,49,44,52,50,46,54,49,48,56,49,55,93,44,91,45,56,56,46,49,56,56,51,48,54,44,52,50,46,54,54,57,55,48,57,93,44,91,45,56,55,46,48,52,51,56,57,57,44,52,50,46,54,54,51,55,50,57,93,44,91,45,56,55,46,48,53,56,55,49,54,44,52,50,46,55,54,53,50,48,50,93,44,91,45,56,55,46,48,54,57,52,49,57,44,52,50,46,56,52,50,49,52,54,93,44,91,45,56,56,46,48,54,57,57,50,52,44,52,50,46,56,52,51,51,50,51,93,44,91,45,56,56,46,51,48,54,51,56,52,44,52,50,46,56,52,50,48,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,104,97,119,97,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,48,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,50,51,56,49,52,44,52,53,46,48,50,57,50,52,54,93,44,91,45,56,57,46,50,50,51,55,52,53,44,52,52,46,54,56,49,51,54,53,93,44,91,45,56,56,46,54,48,53,49,53,57,44,52,52,46,54,55,56,51,51,49,93,44,91,45,56,56,46,54,48,54,48,56,51,44,52,52,46,53,57,48,53,49,53,93,44,91,45,56,56,46,50,52,53,50,48,52,44,52,52,46,53,56,52,55,52,54,93,44,91,45,56,56,46,50,52,50,54,56,55,44,52,52,46,54,55,57,54,51,49,93,44,91,45,56,56,46,50,52,56,50,49,51,44,52,52,46,56,53,50,55,51,57,93,44,91,45,56,56,46,52,56,57,49,52,57,44,52,52,46,56,53,53,52,52,53,93,44,91,45,56,56,46,55,51,54,49,57,52,44,52,52,46,56,53,54,51,55,54,93,44,91,45,56,56,46,55,51,53,53,52,56,44,52,52,46,57,52,51,49,55,56,93,44,91,45,56,56,46,57,56,49,51,49,57,44,52,52,46,57,52,50,55,52,53,93,44,91,45,56,56,46,57,56,49,54,56,44,52,53,46,48,50,56,57,49,55,93,44,91,45,56,57,46,50,50,51,56,49,52,44,52,53,46,48,50,57,50,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,117,100,117,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,44,91,45,57,53,46,48,57,50,53,50,44,52,49,46,54,48,50,48,53,53,93,44,91,45,57,53,46,48,52,48,55,55,44,52,49,46,53,48,52,54,57,93,44,91,45,57,52,46,55,48,48,54,50,57,44,52,49,46,53,48,52,49,52,56,93,44,91,45,57,52,46,55,52,52,50,48,52,44,52,49,46,54,48,50,49,56,53,93,44,91,45,57,52,46,55,52,52,56,55,54,44,52,49,46,56,54,50,51,57,52,93,44,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,55,34,44,34,78,65,77,69,34,58,34,72,97,115,107,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,57,48,57,56,44,51,51,46,51,57,55,52,48,52,93,44,91,45,57,57,46,57,56,56,56,50,55,44,51,50,46,57,54,48,49,50,49,93,44,91,45,57,57,46,54,49,50,48,48,49,44,51,50,46,57,53,54,57,54,50,93,44,91,45,57,57,46,52,55,49,50,53,56,44,51,50,46,57,53,55,48,50,53,93,44,91,45,57,57,46,52,55,50,52,52,52,44,51,51,46,51,57,57,48,50,51,93,44,91,45,57,57,46,57,57,48,57,56,44,51,51,46,51,57,55,52,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,48,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,55,53,54,49,55,44,51,54,46,49,54,52,54,54,51,93,44,91,45,57,55,46,54,55,52,48,50,54,44,51,53,46,55,50,53,57,55,93,44,91,45,57,55,46,49,52,49,48,54,54,44,51,53,46,55,50,52,52,48,49,93,44,91,45,57,55,46,49,52,48,53,56,51,44,51,53,46,57,52,49,57,57,49,93,44,91,45,57,55,46,51,50,51,54,50,44,51,54,46,48,49,48,56,55,55,93,44,91,45,57,55,46,51,53,52,49,51,50,44,51,54,46,49,53,57,48,55,50,93,44,91,45,57,55,46,52,54,48,55,57,50,44,51,54,46,49,54,52,52,54,50,93,44,91,45,57,55,46,54,55,53,54,49,55,44,51,54,46,49,54,52,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,79,110,101,105,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,55,56,50,44,34,98,101,100,115,34,58,56,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,53,54,50,49,51,44,52,51,46,52,55,48,51,56,56,93,44,91,45,55,53,46,56,49,52,54,50,55,44,52,51,46,52,56,51,53,55,56,93,44,91,45,55,53,46,56,56,52,50,55,53,44,52,51,46,49,53,53,53,54,50,93,44,91,45,55,53,46,55,51,56,51,57,54,44,52,51,46,49,54,52,55,54,54,93,44,91,45,55,53,46,53,53,50,55,55,52,44,52,51,46,48,51,55,53,53,52,93,44,91,45,55,53,46,53,52,50,56,48,51,44,52,50,46,57,51,49,55,55,52,93,44,91,45,55,53,46,52,51,55,49,54,55,44,52,50,46,56,54,51,51,49,57,93,44,91,45,55,53,46,50,52,55,57,54,51,44,52,50,46,56,55,49,54,48,52,93,44,91,45,55,53,46,50,49,50,49,53,56,44,52,50,46,56,55,57,57,55,51,93,44,91,45,55,53,46,50,49,57,49,48,54,44,52,51,46,48,53,50,52,54,57,93,44,91,45,55,53,46,48,54,57,49,54,53,44,52,51,46,50,50,55,51,51,51,93,44,91,45,55,53,46,49,49,48,49,54,44,52,51,46,54,49,53,50,50,57,93,44,91,45,55,53,46,53,51,51,53,44,52,51,46,52,49,57,55,53,54,93,44,91,45,55,53,46,55,53,54,50,49,51,44,52,51,46,52,55,48,51,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,56,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,50,54,52,56,55,44,51,57,46,51,54,49,56,55,49,93,44,91,45,49,48,54,46,53,48,50,54,57,44,51,57,46,50,57,56,48,54,55,93,44,91,45,49,48,54,46,52,57,51,54,52,57,44,51,57,46,49,57,56,51,50,54,93,44,91,45,49,48,54,46,53,55,55,57,54,54,44,51,57,46,48,53,55,57,48,56,93,44,91,45,49,48,54,46,49,57,49,48,48,54,44,51,57,46,48,53,54,48,55,51,93,44,91,45,49,48,54,46,49,56,51,57,55,50,44,51,57,46,51,48,57,51,53,52,93,44,91,45,49,48,54,46,49,51,53,53,50,57,44,51,57,46,51,55,57,53,52,54,93,44,91,45,49,48,54,46,50,48,54,55,51,50,44,51,57,46,51,55,57,54,51,54,93,44,91,45,49,48,54,46,52,50,54,52,56,55,44,51,57,46,51,54,49,56,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,80,105,116,116,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,51,56,50,44,34,98,101,100,115,34,58,49,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,53,49,50,53,44,51,53,46,50,57,54,48,49,57,93,44,91,45,57,53,46,55,49,54,49,53,55,44,51,53,46,49,56,57,51,53,50,93,44,91,45,57,53,46,57,56,51,48,55,55,44,51,53,46,49,53,49,54,57,53,93,44,91,45,57,54,46,48,56,56,55,57,50,44,51,53,46,48,52,57,56,55,53,93,44,91,45,57,54,46,48,57,50,48,48,49,44,51,52,46,55,54,55,52,55,57,93,44,91,45,57,54,46,48,57,50,48,52,51,44,51,52,46,54,56,48,53,53,54,93,44,91,45,57,53,46,56,56,50,49,57,54,44,51,52,46,54,56,48,53,51,52,93,44,91,45,57,53,46,56,56,49,57,56,55,44,51,52,46,53,57,51,53,50,56,93,44,91,45,57,53,46,54,55,49,56,49,44,51,52,46,53,57,51,55,51,50,93,44,91,45,57,53,46,53,49,52,53,49,49,44,51,52,46,53,57,52,49,53,51,93,44,91,45,57,53,46,53,49,52,52,55,53,44,51,52,46,54,56,48,55,49,56,93,44,91,45,57,53,46,53,48,55,55,51,56,44,51,53,46,48,50,57,50,54,53,93,44,91,45,57,53,46,51,52,57,52,48,57,44,51,53,46,48,53,56,53,50,93,44,91,45,57,53,46,51,52,57,53,50,53,44,51,53,46,49,54,48,48,50,49,93,44,91,45,57,53,46,52,53,53,48,49,56,44,51,53,46,49,54,48,53,55,53,93,44,91,45,57,53,46,52,53,49,50,53,44,51,53,46,50,57,54,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,68,111,100,100,114,105,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,49,56,54,50,57,44,51,57,46,52,53,48,51,55,53,93,44,91,45,56,48,46,56,56,56,55,52,52,44,51,57,46,50,57,52,50,57,56,93,44,91,45,56,48,46,56,49,50,57,55,44,51,57,46,49,48,57,52,48,49,93,44,91,45,56,48,46,55,50,56,51,50,54,44,51,57,46,48,57,53,54,55,57,93,44,91,45,56,48,46,53,57,54,49,50,54,44,51,57,46,49,54,55,48,54,57,93,44,91,45,56,48,46,54,48,52,51,48,49,44,51,57,46,50,56,54,48,52,55,93,44,91,45,56,48,46,53,52,52,53,50,49,44,51,57,46,52,50,57,49,50,93,44,91,45,56,48,46,54,49,56,54,50,57,44,51,57,46,52,53,48,51,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,87,105,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,57,56,48,49,55,44,51,57,46,49,56,53,53,55,50,93,44,91,45,56,49,46,52,50,52,57,48,54,44,51,57,46,49,51,53,54,55,57,93,44,91,45,56,49,46,53,56,49,52,52,55,44,51,57,46,48,50,54,49,55,57,93,44,91,45,56,49,46,53,48,50,54,50,56,44,51,56,46,57,49,55,57,50,50,93,44,91,45,56,49,46,50,55,56,52,49,50,44,51,56,46,57,49,52,56,54,55,93,44,91,45,56,49,46,49,54,50,52,53,53,44,51,57,46,48,51,48,54,48,56,93,44,91,45,56,49,46,50,53,48,50,53,50,44,51,57,46,48,51,53,48,55,52,93,44,91,45,56,49,46,50,57,56,48,49,55,44,51,57,46,49,56,53,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,56,52,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,48,48,57,57,55,54,44,52,52,46,50,56,52,56,57,57,93,44,91,45,55,49,46,48,52,50,50,56,44,52,52,46,50,51,55,53,49,52,93,44,91,45,55,49,46,50,53,49,57,53,55,44,52,52,46,50,52,52,50,54,54,93,44,91,45,55,49,46,51,48,54,48,51,54,44,52,52,46,49,51,55,50,55,50,93,44,91,45,55,49,46,52,49,53,56,57,56,44,52,52,46,50,49,50,49,54,57,93,44,91,45,55,49,46,51,54,54,51,53,53,44,52,52,46,48,54,56,53,50,52,93,44,91,45,55,49,46,51,54,49,57,54,53,44,52,51,46,57,49,53,57,51,56,93,44,91,45,55,49,46,53,54,52,54,48,51,44,52,51,46,56,57,51,49,55,50,93,44,91,45,55,49,46,53,51,49,54,53,56,44,52,51,46,55,54,48,57,55,57,93,44,91,45,55,49,46,50,53,56,50,53,57,44,52,51,46,53,55,49,51,52,53,93,44,91,45,55,49,46,49,54,50,54,55,53,44,52,51,46,53,51,56,57,53,57,93,44,91,45,55,48,46,57,54,50,49,53,52,44,52,51,46,53,52,49,48,56,55,93,44,91,45,55,48,46,57,56,57,49,50,50,44,52,51,46,55,57,50,49,49,51,93,44,91,45,55,49,46,48,48,57,57,55,54,44,52,52,46,50,56,52,56,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,84,121,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,51,56,55,49,50,44,51,57,46,53,51,57,56,56,54,93,44,91,45,56,49,46,49,50,49,53,51,51,44,51,57,46,52,53,55,55,55,53,93,44,91,45,56,49,46,48,50,53,55,48,52,44,51,57,46,52,54,50,51,49,55,93,44,91,45,56,49,46,48,48,55,56,51,54,44,51,57,46,51,53,48,57,50,51,93,44,91,45,56,48,46,56,56,56,55,52,52,44,51,57,46,50,57,52,50,57,56,93,44,91,45,56,48,46,54,49,56,54,50,57,44,51,57,46,52,53,48,51,55,53,93,44,91,45,56,48,46,55,49,54,49,50,50,44,51,57,46,52,55,53,53,51,49,93,44,91,45,56,48,46,56,52,51,55,51,49,44,51,57,46,53,56,51,56,56,53,93,44,91,45,56,48,46,57,52,51,55,56,50,44,51,57,46,54,48,54,57,50,54,93,44,91,45,56,49,46,48,51,56,55,49,50,44,51,57,46,53,51,57,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,101,32,83,117,101,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,56,51,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,50,52,51,50,55,44,52,52,46,53,52,51,54,49,56,93,44,91,45,57,51,46,57,49,48,52,48,53,44,52,52,46,53,52,51,49,54,51,93,44,91,45,57,51,46,57,50,57,53,53,44,52,52,46,52,53,54,55,49,54,93,44,91,45,57,51,46,57,51,54,48,51,50,44,52,52,46,51,51,57,54,54,53,93,44,91,45,57,52,46,48,49,49,56,54,56,44,52,52,46,50,51,57,53,50,93,44,91,45,57,51,46,55,54,55,57,55,49,44,52,52,46,49,57,53,56,51,54,93,44,91,45,57,51,46,53,50,53,50,51,49,44,52,52,46,49,57,54,49,51,52,93,44,91,45,57,51,46,53,50,52,51,50,55,44,52,52,46,53,52,51,54,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,51,55,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,56,55,48,53,57,53,44,52,55,46,57,54,48,52,53,53,93,44,91,45,49,49,57,46,57,57,50,54,55,57,44,52,55,46,55,56,51,49,53,93,44,91,45,49,50,48,46,50,48,54,57,48,56,44,52,55,46,55,53,48,54,51,56,93,44,91,45,49,50,48,46,49,57,57,48,52,56,44,52,55,46,54,56,50,50,55,54,93,44,91,45,49,50,48,46,51,49,55,57,56,52,44,52,55,46,52,53,54,57,52,56,93,44,91,45,49,50,48,46,50,56,54,53,51,44,52,55,46,51,57,51,49,49,49,93,44,91,45,49,50,48,46,49,50,57,53,55,51,44,52,55,46,51,54,54,50,53,49,93,44,91,45,49,50,48,46,48,57,52,52,54,44,52,55,46,50,54,50,49,53,57,93,44,91,45,49,50,48,46,48,48,55,48,55,52,44,52,55,46,50,50,48,49,51,51,93,44,91,45,49,50,48,46,48,48,52,55,48,52,44,52,55,46,51,49,57,57,57,52,93,44,91,45,49,49,57,46,56,55,53,55,54,44,52,55,46,52,51,55,52,57,50,93,44,91,45,49,49,57,46,53,51,51,49,50,51,44,52,55,46,52,52,49,50,48,55,93,44,91,45,49,49,57,46,53,51,50,56,56,57,44,52,55,46,53,50,55,55,53,54,93,44,91,45,49,49,57,46,51,52,49,55,54,55,44,52,55,46,54,49,50,51,56,56,93,44,91,45,49,49,57,46,50,49,50,52,49,44,52,55,46,56,48,48,54,57,53,93,44,91,45,49,49,57,46,50,49,50,50,50,53,44,52,55,46,56,56,55,55,48,56,93,44,91,45,49,49,57,46,49,48,51,56,55,51,44,52,55,46,57,54,49,55,54,51,93,44,91,45,49,49,56,46,57,56,50,50,51,52,44,52,55,46,57,54,50,48,50,53,93,44,91,45,49,49,57,46,48,53,54,57,55,44,52,56,46,49,51,54,57,55,52,93,44,91,45,49,49,57,46,49,53,48,57,56,51,44,52,56,46,49,52,54,48,54,55,93,44,91,45,49,49,57,46,51,52,51,53,50,51,44,52,56,46,48,52,57,52,51,50,93,44,91,45,49,49,57,46,52,51,54,50,53,55,44,52,56,46,48,55,54,54,56,56,93,44,91,45,49,49,57,46,54,53,50,52,54,56,44,52,56,46,48,48,48,50,50,49,93,44,91,45,49,49,57,46,54,56,50,57,56,49,44,52,56,46,48,57,50,53,49,51,93,44,91,45,49,49,57,46,56,57,53,51,53,44,52,56,46,48,53,48,48,52,52,93,44,91,45,49,49,57,46,56,55,48,53,57,53,44,52,55,46,57,54,48,52,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,97,116,116,97,114,97,117,103,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,54,56,54,44,34,98,101,100,115,34,58,50,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,54,48,55,55,55,44,52,50,46,53,51,55,56,53,51,93,44,91,45,55,57,46,48,54,49,50,54,53,44,52,49,46,57,57,57,50,53,57,93,44,91,45,55,56,46,57,49,56,56,53,53,44,52,49,46,57,57,56,49,49,57,93,44,91,45,55,56,46,51,48,56,49,50,56,44,52,49,46,57,57,57,52,49,53,93,44,91,45,55,56,46,51,48,56,56,51,57,44,52,50,46,53,50,49,50,49,55,93,44,91,45,55,56,46,52,54,51,57,52,44,52,50,46,53,51,54,51,51,50,93,44,91,45,55,56,46,56,57,53,57,57,57,44,52,50,46,52,52,48,56,48,55,93,44,91,45,55,57,46,48,54,48,55,55,55,44,52,50,46,53,51,55,56,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,68,111,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,55,55,54,44,34,98,101,100,115,34,58,50,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,48,54,56,52,56,44,52,51,46,54,51,51,48,52,53,93,44,91,45,56,57,46,48,48,57,49,51,57,44,52,51,46,50,56,52,56,51,93,44,91,45,56,57,46,48,48,56,56,51,50,44,52,51,46,49,57,55,55,50,52,93,44,91,45,56,56,46,53,51,53,56,52,51,44,52,51,46,49,57,54,48,52,56,93,44,91,45,56,56,46,52,49,55,57,56,55,44,52,51,46,49,57,52,54,57,55,93,44,91,45,56,56,46,52,48,48,52,50,54,44,52,51,46,53,52,51,53,51,50,93,44,91,45,56,56,46,52,48,49,48,52,49,44,52,51,46,54,51,48,57,51,51,93,44,91,45,56,56,46,56,56,54,48,53,50,44,52,51,46,54,51,51,53,52,93,44,91,45,56,57,46,48,48,54,56,52,56,44,52,51,46,54,51,51,48,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,54,56,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,54,51,50,54,51,44,52,50,46,50,57,54,52,52,53,93,44,91,45,57,49,46,51,54,53,56,55,55,44,52,49,46,57,52,55,52,49,93,44,91,45,57,48,46,56,57,56,52,56,52,44,52,49,46,57,52,54,50,52,53,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,50,46,48,51,51,53,52,56,93,44,91,45,57,48,46,56,57,56,48,50,44,52,50,46,50,57,53,50,51,54,93,44,91,45,57,49,46,49,51,48,48,55,57,44,52,50,46,50,57,53,55,54,49,93,44,91,45,57,49,46,51,54,51,50,54,51,44,52,50,46,50,57,54,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,97,114,98,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,51,51,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,54,52,54,54,51,44,51,55,46,52,55,49,48,49,51,93,44,91,45,57,57,46,48,49,50,53,57,56,44,51,55,46,52,55,48,52,50,49,93,44,91,45,57,57,46,48,49,49,52,57,57,44,51,55,46,51,56,52,50,54,51,93,44,91,45,57,57,46,48,48,48,51,48,49,44,51,54,46,57,57,57,52,54,55,93,44,91,45,57,56,46,53,52,52,54,54,49,44,51,54,46,57,57,56,55,53,57,93,44,91,45,57,56,46,51,52,55,49,52,57,44,51,54,46,57,57,56,49,53,53,93,44,91,45,57,56,46,51,52,57,56,48,52,44,51,55,46,51,56,52,48,53,54,93,44,91,45,57,56,46,52,54,52,57,53,49,44,51,55,46,51,56,52,48,56,54,93,44,91,45,57,56,46,52,54,52,54,54,51,44,51,55,46,52,55,49,48,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,53,57,49,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,52,48,54,50,55,53,44,51,56,46,48,50,49,49,55,57,93,44,91,45,57,50,46,52,48,57,50,51,49,44,51,55,46,56,53,57,49,56,93,44,91,45,57,50,46,52,49,51,54,54,57,44,51,55,46,55,49,51,57,52,49,93,44,91,45,57,50,46,50,52,57,52,54,51,44,51,55,46,54,48,52,53,52,51,93,44,91,45,57,50,46,48,50,57,50,53,56,44,51,55,46,54,48,50,53,52,50,93,44,91,45,57,50,46,48,50,49,49,54,53,44,51,56,46,48,49,48,54,51,57,93,44,91,45,57,50,46,49,56,53,51,55,44,51,56,46,48,49,54,51,51,56,93,44,91,45,57,50,46,52,48,54,50,55,53,44,51,56,46,48,50,49,49,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,68,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,50,53,53,44,34,98,101,100,115,34,58,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,49,54,52,51,55,44,51,49,46,54,49,57,52,54,54,93,44,91,45,56,53,46,55,52,56,50,53,49,44,51,49,46,54,49,56,48,52,56,93,44,91,45,56,53,46,55,56,57,49,52,50,44,51,49,46,54,49,55,57,54,52,93,44,91,45,56,53,46,55,57,49,52,48,50,44,51,49,46,49,57,54,51,52,57,93,44,91,45,56,53,46,55,49,48,51,51,51,44,51,49,46,49,57,53,49,55,51,93,44,91,45,56,53,46,54,54,53,55,55,53,44,51,49,46,50,54,55,53,57,49,93,44,91,45,56,53,46,52,56,53,56,53,52,44,51,49,46,50,52,54,48,57,54,93,44,91,45,56,53,46,52,49,55,52,51,52,44,51,49,46,51,49,52,57,55,51,93,44,91,45,56,53,46,52,49,54,52,51,55,44,51,49,46,54,49,57,52,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,55,56,49,57,53,44,51,57,46,49,51,52,55,54,49,93,44,91,45,49,48,49,46,52,56,52,51,56,51,44,51,56,46,55,48,48,49,54,54,93,44,91,45,49,48,49,46,49,50,56,51,55,57,44,51,56,46,55,48,48,54,48,51,93,44,91,45,49,48,48,46,56,49,56,54,57,56,44,51,56,46,54,57,57,56,54,49,93,44,91,45,49,48,48,46,56,49,49,56,53,56,44,51,57,46,49,51,51,51,54,93,44,91,45,49,48,49,46,51,57,49,55,49,55,44,51,57,46,49,51,53,49,49,55,93,44,91,45,49,48,49,46,52,55,56,49,57,53,44,51,57,46,49,51,52,55,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,77,97,100,101,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,48,49,51,44,34,98,101,100,115,34,58,52,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,53,50,48,53,53,44,51,55,46,49,56,51,49,48,56,93,44,91,45,49,50,48,46,50,50,55,50,56,54,44,51,55,46,49,54,51,52,93,44,91,45,49,50,48,46,52,55,54,54,57,50,44,51,55,46,48,57,54,51,57,93,44,91,45,49,50,48,46,53,52,49,54,57,54,44,51,55,46,48,52,52,53,48,53,93,44,91,45,49,50,48,46,51,55,48,50,53,54,44,51,54,46,55,56,52,57,52,93,44,91,45,49,50,48,46,49,56,56,56,51,44,51,54,46,55,55,54,52,48,56,93,44,91,45,49,50,48,46,48,55,57,52,53,56,44,51,54,46,56,50,53,51,52,53,93,44,91,45,49,49,57,46,56,49,51,55,51,52,44,51,54,46,56,53,48,52,49,50,93,44,91,45,49,49,57,46,54,57,48,55,55,57,44,51,55,46,48,49,49,57,56,55,93,44,91,45,49,49,57,46,53,54,50,57,55,57,44,51,55,46,48,54,52,48,57,53,93,44,91,45,49,49,57,46,53,53,57,52,49,50,44,51,55,46,49,52,51,54,49,57,93,44,91,45,49,49,57,46,51,56,54,53,50,49,44,51,55,46,49,52,57,53,51,93,44,91,45,49,49,57,46,51,51,48,53,55,51,44,51,55,46,50,48,53,55,57,49,93,44,91,45,49,49,57,46,51,49,50,49,56,54,44,51,55,46,51,53,50,55,50,53,93,44,91,45,49,49,57,46,48,50,50,51,54,51,44,51,55,46,53,56,53,55,51,55,93,44,91,45,49,49,57,46,49,50,52,51,49,50,44,51,55,46,55,51,51,57,52,52,93,44,91,45,49,49,57,46,50,54,56,57,55,57,44,51,55,46,55,51,57,50,51,93,44,91,45,49,49,57,46,51,48,56,57,57,53,44,51,55,46,55,55,55,57,56,54,93,44,91,45,49,49,57,46,53,56,51,53,56,53,44,51,55,46,53,54,48,51,51,53,93,44,91,45,49,49,57,46,54,53,49,49,57,49,44,51,55,46,52,49,55,56,51,50,93,44,91,45,49,49,57,46,55,54,49,56,48,57,44,51,55,46,52,49,55,49,49,52,93,44,91,45,49,50,48,46,48,53,50,48,53,53,44,51,55,46,49,56,51,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,71,101,110,116,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,54,53,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,53,57,56,52,56,55,44,52,48,46,51,56,54,55,49,52,93,44,91,45,57,52,46,54,48,53,57,52,50,44,52,48,46,49,50,54,49,50,55,93,44,91,45,57,52,46,54,48,53,51,55,55,44,52,48,46,48,51,57,50,49,55,93,44,91,45,57,52,46,50,49,56,56,44,52,48,46,48,51,52,56,56,53,93,44,91,45,57,52,46,50,49,54,54,57,54,44,52,48,46,49,51,54,54,50,54,93,44,91,45,57,52,46,50,49,52,50,55,56,44,52,48,46,51,56,52,50,53,52,93,44,91,45,57,52,46,53,57,56,52,56,55,44,52,48,46,51,56,54,55,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,108,97,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,54,55,54,50,50,44,52,50,46,48,56,54,49,52,55,93,44,91,45,49,48,48,46,50,54,53,52,55,52,44,52,49,46,55,51,57,56,53,54,93,44,91,45,49,48,48,46,50,53,49,50,50,52,44,52,49,46,55,51,57,56,49,55,93,44,91,45,57,57,46,54,56,54,56,51,52,44,52,49,46,55,52,48,51,50,54,93,44,91,45,57,57,46,54,56,54,57,53,57,44,52,50,46,48,56,54,48,55,53,93,44,91,45,49,48,48,46,49,54,55,54,48,53,44,52,50,46,48,56,53,56,52,56,93,44,91,45,49,48,48,46,50,54,55,54,50,50,44,52,50,46,48,56,54,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,68,97,103,103,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,53,48,48,50,54,44,52,49,46,48,48,48,54,57,49,93,44,91,45,49,49,48,46,48,48,48,55,49,55,44,52,48,46,57,57,55,52,53,93,44,91,45,49,49,48,46,48,48,48,55,49,49,44,52,48,46,56,49,51,54,55,56,93,44,91,45,49,48,57,46,57,55,54,52,48,50,44,52,48,46,56,48,57,54,56,54,93,44,91,45,49,48,57,46,56,55,48,50,48,55,44,52,48,46,55,54,51,56,50,57,93,44,91,45,49,48,57,46,51,57,52,52,57,49,44,52,48,46,56,53,56,49,54,54,93,44,91,45,49,48,57,46,50,48,51,50,53,44,52,48,46,56,53,56,52,48,49,93,44,91,45,49,48,57,46,49,54,49,48,54,51,44,52,48,46,54,56,51,56,49,55,93,44,91,45,49,48,57,46,48,52,56,57,52,52,44,52,48,46,54,54,50,54,48,49,93,44,91,45,49,48,57,46,48,53,48,48,50,54,44,52,49,46,48,48,48,54,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,80,108,97,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,50,56,51,57,49,44,52,50,46,52,51,49,52,48,50,93,44,91,45,49,48,53,46,50,55,49,55,52,54,44,52,49,46,57,56,54,48,57,53,93,44,91,45,49,48,53,46,50,55,56,50,51,54,44,52,49,46,54,53,54,54,53,53,93,44,91,45,49,48,52,46,54,53,51,51,51,56,44,52,49,46,54,53,51,48,48,55,93,44,91,45,49,48,52,46,54,53,53,54,51,57,44,52,50,46,54,48,57,52,54,56,93,44,91,45,49,48,52,46,56,57,50,52,51,55,44,52,50,46,54,48,56,57,51,57,93,44,91,45,49,48,53,46,50,56,54,53,49,49,44,52,50,46,54,48,53,56,50,54,93,44,91,45,49,48,53,46,50,56,51,57,49,44,52,50,46,52,51,49,52,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,71,97,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,54,53,56,53,44,34,98,101,100,115,34,58,52,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,53,53,54,44,51,53,46,52,49,57,56,49,49,93,44,91,45,56,49,46,51,53,54,54,56,50,44,51,53,46,51,51,48,54,48,52,93,44,91,45,56,49,46,51,50,56,48,51,55,44,51,53,46,49,54,51,52,54,55,93,44,91,45,56,49,46,48,51,51,57,48,57,44,51,53,46,49,52,56,54,57,93,44,91,45,56,48,46,57,53,52,56,54,44,51,53,46,52,48,48,48,55,56,93,44,91,45,56,49,46,52,53,53,54,44,51,53,46,52,49,57,56,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,71,117,97,100,97,108,117,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,56,50,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,50,57,48,55,57,49,44,51,53,46,48,52,50,48,51,93,44,91,45,49,48,53,46,50,57,48,51,57,54,44,51,52,46,54,48,54,55,54,54,93,44,91,45,49,48,53,46,51,49,51,48,55,50,44,51,52,46,51,52,55,50,48,53,93,44,91,45,49,48,52,46,56,57,49,55,52,53,44,51,52,46,51,52,55,48,52,51,93,44,91,45,49,48,52,46,56,57,50,48,50,51,44,51,52,46,54,48,52,52,50,54,93,44,91,45,49,48,52,46,52,52,52,55,54,50,44,51,52,46,54,48,52,57,53,50,93,44,91,45,49,48,52,46,51,51,57,55,50,53,44,51,52,46,54,57,50,50,51,52,93,44,91,45,49,48,52,46,51,51,57,56,49,55,44,51,52,46,55,55,57,48,54,50,93,44,91,45,49,48,52,46,49,50,57,49,52,51,44,51,52,46,55,55,57,51,51,55,93,44,91,45,49,48,52,46,49,50,53,49,50,49,44,51,53,46,49,52,50,48,53,56,93,44,91,45,49,48,52,46,49,50,53,49,51,54,44,51,53,46,50,49,53,54,57,54,93,44,91,45,49,48,53,46,50,57,49,49,54,57,44,51,53,46,50,49,54,52,56,57,93,44,91,45,49,48,53,46,50,57,48,55,57,49,44,51,53,46,48,52,50,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,71,111,108,100,101,110,32,86,97,108,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,51,56,57,49,54,51,44,52,54,46,54,57,51,54,50,53,93,44,91,45,49,48,57,46,52,48,50,57,48,54,44,52,54,46,50,49,57,55,48,54,93,44,91,45,49,48,57,46,54,53,51,56,55,49,44,52,54,46,50,49,57,52,48,52,93,44,91,45,49,48,57,46,54,48,53,49,53,51,44,52,54,46,48,52,52,57,57,52,93,44,91,45,49,48,57,46,52,49,55,49,53,56,44,52,54,46,48,52,52,55,53,57,93,44,91,45,49,48,57,46,52,49,54,50,50,55,44,52,54,46,49,51,50,51,55,49,93,44,91,45,49,48,56,46,57,50,52,53,56,57,44,52,54,46,49,51,50,51,55,93,44,91,45,49,48,56,46,55,55,57,55,51,51,44,52,54,46,49,51,50,52,53,55,93,44,91,45,49,48,56,46,55,55,57,50,55,50,44,52,54,46,50,55,55,51,57,56,93,44,91,45,49,48,56,46,56,54,50,50,55,55,44,52,54,46,51,54,52,53,56,54,93,44,91,45,49,48,56,46,57,48,52,57,48,52,44,52,54,46,53,55,54,57,48,56,93,44,91,45,49,48,57,46,48,48,57,57,56,50,44,52,54,46,54,50,49,49,55,50,93,44,91,45,49,48,57,46,48,48,57,53,55,44,52,54,46,55,53,48,55,48,50,93,44,91,45,49,48,57,46,51,56,57,50,48,56,44,52,54,46,55,53,49,51,53,49,93,44,91,45,49,48,57,46,51,56,57,49,54,51,44,52,54,46,54,57,51,54,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,49,55,50,44,34,98,101,100,115,34,58,49,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,53,53,57,55,51,44,51,53,46,56,49,56,49,50,93,44,91,45,55,56,46,52,57,50,49,52,57,44,51,53,46,54,56,54,57,48,51,93,44,91,45,55,56,46,55,48,56,57,48,50,44,51,53,46,53,49,57,52,53,56,93,44,91,45,55,56,46,53,51,56,51,52,57,44,51,53,46,51,49,54,52,49,93,44,91,45,55,56,46,52,49,49,55,51,52,44,51,53,46,50,53,52,54,54,51,93,44,91,45,55,56,46,51,48,54,53,56,44,51,53,46,50,56,55,54,48,52,93,44,91,45,55,56,46,49,53,56,53,56,57,44,51,53,46,51,52,55,53,51,55,93,44,91,45,55,56,46,48,54,52,55,56,52,44,51,53,46,53,56,53,50,54,51,93,44,91,45,55,56,46,49,50,53,53,51,57,44,51,53,46,54,48,51,49,48,55,93,44,91,45,55,56,46,49,57,50,49,49,55,44,51,53,46,55,51,48,53,52,53,93,44,91,45,55,56,46,50,53,53,57,55,51,44,51,53,46,56,49,56,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,67,108,97,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,50,50,48,48,44,34,98,101,100,115,34,58,52,54,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,49,53,50,50,55,56,44,51,55,46,50,56,54,48,53,53,93,44,91,45,49,50,50,46,48,50,54,49,48,55,44,51,55,46,49,54,54,56,49,93,44,91,45,49,50,49,46,55,53,55,54,44,51,55,46,48,52,57,54,51,93,44,91,45,49,50,49,46,53,56,49,51,53,52,44,51,54,46,56,57,57,49,53,50,93,44,91,45,49,50,49,46,52,56,56,57,52,57,44,51,54,46,57,56,51,49,52,56,93,44,91,45,49,50,49,46,50,49,53,52,48,54,44,51,54,46,57,54,49,50,52,56,93,44,91,45,49,50,49,46,50,50,54,56,48,52,44,51,55,46,49,51,52,55,55,52,93,44,91,45,49,50,49,46,52,48,52,54,51,54,44,51,55,46,49,53,53,57,56,57,93,44,91,45,49,50,49,46,52,53,52,48,48,57,44,51,55,46,50,56,52,48,53,93,44,91,45,49,50,49,46,52,49,50,53,52,57,44,51,55,46,51,56,57,52,51,53,93,44,91,45,49,50,49,46,52,55,50,54,52,56,44,51,55,46,52,56,50,49,55,93,44,91,45,49,50,50,46,48,56,49,52,55,51,44,51,55,46,52,55,55,56,51,56,93,44,91,45,49,50,50,46,49,57,48,52,48,50,44,51,55,46,52,51,49,52,55,50,93,44,91,45,49,50,50,46,49,53,50,50,55,56,44,51,55,46,50,56,54,48,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,101,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,55,48,56,44,34,98,101,100,115,34,58,50,49,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,52,54,54,57,57,44,51,51,46,50,49,51,52,53,56,93,44,91,45,55,57,46,53,49,56,56,52,52,44,51,51,46,49,52,56,50,57,55,93,44,91,45,55,57,46,54,52,51,51,48,49,44,51,51,46,49,50,51,52,53,51,93,44,91,45,55,57,46,56,52,49,48,54,55,44,51,50,46,57,49,50,52,54,57,93,44,91,45,55,57,46,57,53,54,52,51,51,44,51,50,46,56,53,57,55,57,49,93,44,91,45,56,48,46,48,53,53,53,57,53,44,51,50,46,57,57,56,55,49,93,44,91,45,56,48,46,49,52,57,50,52,54,44,51,51,46,48,50,49,54,48,49,93,44,91,45,56,48,46,48,55,57,48,50,56,44,51,50,46,57,50,55,56,49,49,93,44,91,45,56,48,46,49,53,55,50,54,53,44,51,50,46,56,49,56,49,56,55,93,44,91,45,56,48,46,52,48,49,51,52,44,51,50,46,56,53,56,52,54,54,93,44,91,45,56,48,46,52,53,51,54,51,44,51,50,46,55,51,57,57,93,44,91,45,56,48,46,52,48,51,50,56,50,44,51,50,46,54,53,49,54,50,50,93,44,91,45,56,48,46,52,49,54,53,56,54,44,51,50,46,53,52,54,51,49,56,93,44,91,45,56,48,46,50,50,51,53,57,44,51,50,46,52,56,50,53,54,53,93,44,91,45,56,48,46,48,56,56,56,55,55,44,51,50,46,53,52,57,48,50,57,93,44,91,45,55,57,46,57,55,57,48,48,50,44,51,50,46,53,53,56,48,55,52,93,44,91,45,55,57,46,55,57,56,50,53,53,44,51,50,46,54,55,53,54,51,50,93,44,91,45,55,57,46,55,54,48,48,55,52,44,51,50,46,55,51,56,50,53,55,93,44,91,45,55,57,46,53,51,52,54,56,57,44,51,50,46,56,55,48,48,49,50,93,44,91,45,55,57,46,52,52,48,49,56,49,44,51,50,46,57,53,56,57,49,54,93,44,91,45,55,57,46,51,50,50,50,53,55,44,51,50,46,57,53,54,48,55,56,93,44,91,45,55,57,46,50,54,49,56,51,44,51,51,46,48,52,57,55,57,51,93,44,91,45,55,57,46,52,52,54,54,57,57,44,51,51,46,50,49,51,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,49,54,56,44,34,98,101,100,115,34,58,52,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,52,53,51,49,57,44,52,54,46,54,55,57,50,52,51,93,44,91,45,49,49,57,46,53,49,54,53,56,50,44,52,54,46,55,50,55,54,51,56,93,44,91,45,49,49,57,46,54,53,57,49,56,57,44,52,54,46,54,52,48,51,51,51,93,44,91,45,49,49,57,46,56,55,52,48,52,50,44,52,54,46,54,50,56,50,56,51,93,44,91,45,49,49,57,46,56,54,53,56,50,57,44,52,54,46,48,52,48,56,53,56,93,44,91,45,49,49,57,46,56,54,56,51,49,50,44,52,53,46,56,51,54,49,57,56,93,44,91,45,49,49,57,46,54,54,57,57,55,52,44,52,53,46,56,53,54,57,48,56,93,44,91,45,49,49,57,46,53,55,49,54,48,50,44,52,53,46,57,50,53,52,55,56,93,44,91,45,49,49,57,46,52,51,50,49,53,44,52,53,46,57,49,56,50,55,49,93,44,91,45,49,49,57,46,49,50,54,51,50,50,44,52,53,46,57,51,50,55,56,52,93,44,91,45,49,49,56,46,57,56,55,50,53,56,44,52,53,46,57,57,57,56,53,53,93,44,91,45,49,49,56,46,57,55,52,54,54,52,44,52,54,46,49,51,57,53,50,51,93,44,91,45,49,49,57,46,48,52,49,52,57,56,44,52,54,46,49,57,50,54,54,55,93,44,91,45,49,49,57,46,50,54,55,50,48,50,44,52,54,46,50,56,52,54,50,53,93,44,91,45,49,49,57,46,50,55,48,51,50,44,52,54,46,53,50,49,51,49,49,93,44,91,45,49,49,57,46,52,53,51,49,57,44,52,54,46,54,55,57,50,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,50,53,44,34,98,101,100,115,34,58,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,52,57,57,55,53,44,52,48,46,51,52,54,53,48,53,93,44,91,45,57,50,46,54,56,52,49,54,55,44,52,48,46,51,52,51,52,54,54,93,44,91,45,57,50,46,56,53,53,54,50,57,44,52,48,46,51,52,50,55,51,54,93,44,91,45,57,50,46,56,53,54,49,57,49,44,52,48,46,48,51,55,50,53,51,93,44,91,45,57,50,46,56,52,55,52,55,55,44,52,48,46,48,51,55,51,48,49,93,44,91,45,57,50,46,51,52,53,48,54,52,44,52,48,46,48,51,55,50,49,93,44,91,45,57,50,46,51,52,55,56,48,49,44,52,48,46,51,48,50,55,53,54,93,44,91,45,57,50,46,51,52,57,57,55,53,44,52,48,46,51,52,54,53,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,69,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,49,51,54,44,34,98,101,100,115,34,58,50,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,53,50,50,50,52,44,52,49,46,52,53,56,50,51,57,93,44,91,45,56,50,46,56,52,55,55,49,51,44,52,49,46,52,51,48,51,50,54,93,44,91,45,56,50,46,56,52,49,52,55,53,44,52,49,46,50,57,48,48,50,51,93,44,91,45,56,50,46,51,52,50,51,49,52,44,52,49,46,50,56,51,53,53,52,93,44,91,45,56,50,46,51,52,56,49,50,50,44,52,49,46,55,48,48,48,53,55,93,44,91,45,56,50,46,51,57,56,51,52,56,44,52,49,46,54,55,54,53,50,52,93,44,91,45,56,50,46,55,50,54,52,50,55,44,52,49,46,54,57,56,51,48,56,93,44,91,45,56,50,46,55,56,55,52,48,50,44,52,49,46,53,56,55,55,51,56,93,44,91,45,56,50,46,55,49,57,50,51,54,44,52,49,46,52,56,50,52,50,51,93,44,91,45,56,50,46,57,53,50,50,50,52,44,52,49,46,52,53,56,50,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,86,101,114,109,105,108,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,52,48,55,44,34,98,101,100,115,34,58,49,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,51,50,51,56,55,44,52,48,46,51,57,57,52,93,44,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,44,91,45,56,55,46,53,51,51,50,50,56,44,51,57,46,56,56,51,93,44,91,45,56,55,46,53,51,49,52,52,57,44,52,48,46,49,52,56,49,50,55,93,44,91,45,56,55,46,53,50,54,53,56,57,44,52,48,46,52,55,54,56,55,54,93,44,91,45,56,55,46,53,50,54,51,54,54,44,52,48,46,52,57,49,50,51,55,93,44,91,45,56,55,46,57,51,53,51,48,57,44,52,48,46,52,56,53,57,50,51,93,44,91,45,56,55,46,57,51,50,51,56,55,44,52,48,46,51,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,111,117,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,56,54,56,52,44,34,98,101,100,115,34,58,53,48,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,49,55,55,48,55,44,51,56,46,56,48,53,55,52,56,93,44,91,45,57,48,46,50,57,56,55,52,51,44,51,56,46,56,56,55,55,53,57,93,44,91,45,57,48,46,52,52,48,54,49,55,44,51,56,46,56,50,55,54,53,93,44,91,45,57,48,46,53,52,49,54,49,50,44,51,56,46,54,56,53,50,54,55,93,44,91,45,57,48,46,55,51,50,51,50,56,44,51,56,46,54,51,57,51,48,50,93,44,91,45,57,48,46,55,51,54,51,49,49,44,51,56,46,52,54,54,54,52,51,93,44,91,45,57,48,46,53,57,49,49,50,51,44,51,56,46,53,48,49,54,53,50,93,44,91,45,57,48,46,52,49,50,53,49,57,44,51,56,46,53,48,48,56,53,51,93,44,91,45,57,48,46,51,52,49,52,52,54,44,51,56,46,51,56,56,50,57,56,93,44,91,45,57,48,46,50,54,52,49,50,51,44,51,56,46,53,50,48,55,50,56,93,44,91,45,57,48,46,50,53,55,52,49,51,44,51,56,46,53,51,49,56,53,50,93,44,91,45,57,48,46,51,50,48,53,48,52,44,51,56,46,53,57,52,49,55,55,93,44,91,45,57,48,46,50,53,49,55,52,53,44,51,56,46,55,49,56,56,56,55,93,44,91,45,57,48,46,49,54,54,53,55,52,44,51,56,46,55,55,50,52,52,56,93,44,91,45,57,48,46,49,49,55,55,48,55,44,51,56,46,56,48,53,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,54,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,52,48,51,56,56,44,52,50,46,52,57,53,48,52,53,93,44,91,45,56,56,46,57,51,57,55,51,50,44,52,50,46,49,53,50,51,50,93,44,91,45,56,56,46,55,48,53,53,56,53,44,52,50,46,49,53,51,53,51,55,93,44,91,45,56,56,46,55,48,55,52,50,49,44,52,50,46,52,57,51,53,57,54,93,44,91,45,56,56,46,55,55,54,52,57,51,44,52,50,46,52,57,49,57,49,50,93,44,91,45,56,56,46,57,52,48,51,56,56,44,52,50,46,52,57,53,48,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,84,101,104,97,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,51,55,51,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,52,57,55,54,51,53,44,52,48,46,52,52,53,53,57,49,93,44,91,45,49,50,49,46,54,56,53,54,55,57,44,52,48,46,52,53,51,49,50,49,93,44,91,45,49,50,50,46,48,49,48,51,49,54,44,52,48,46,52,50,54,53,53,56,93,44,91,45,49,50,50,46,51,49,48,52,49,50,44,52,48,46,51,55,49,48,54,52,93,44,91,45,49,50,50,46,53,49,57,57,56,56,44,52,48,46,51,57,51,54,55,53,93,44,91,45,49,50,50,46,54,53,48,50,54,51,44,52,48,46,51,50,56,54,51,93,44,91,45,49,50,50,46,55,52,56,54,48,56,44,52,48,46,51,54,53,54,57,52,93,44,91,45,49,50,51,46,48,54,53,52,50,54,44,52,48,46,50,56,54,57,55,49,93,44,91,45,49,50,50,46,57,56,57,48,49,53,44,52,48,46,50,53,48,49,52,53,93,44,91,45,49,50,50,46,57,51,52,48,49,51,44,51,57,46,57,55,56,49,51,49,93,44,91,45,49,50,50,46,57,51,55,54,53,52,44,51,57,46,55,57,56,49,53,54,93,44,91,45,49,50,50,46,48,52,54,52,55,49,44,51,57,46,55,57,55,54,52,56,93,44,91,45,49,50,50,46,48,52,52,56,54,53,44,51,57,46,56,56,51,55,55,49,93,44,91,45,49,50,49,46,56,48,52,48,52,49,44,51,57,46,56,56,52,51,52,52,93,44,91,45,49,50,49,46,54,52,54,48,51,50,44,51,57,46,57,56,50,53,50,55,93,44,91,45,49,50,49,46,53,56,54,52,48,55,44,52,48,46,49,48,48,53,50,50,93,44,91,45,49,50,49,46,52,51,54,56,56,54,44,52,48,46,49,53,49,57,48,53,93,44,91,45,49,50,49,46,51,52,57,44,52,48,46,50,54,52,52,53,52,93,44,91,45,49,50,49,46,52,55,48,51,57,53,44,52,48,46,51,53,48,50,49,51,93,44,91,45,49,50,49,46,52,57,55,54,51,53,44,52,48,46,52,52,53,53,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,68,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,57,56,52,51,44,34,98,101,100,115,34,58,50,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,51,56,49,51,53,44,52,51,46,50,48,54,48,53,55,93,44,91,45,56,57,46,56,51,56,49,54,55,44,52,50,46,56,53,55,51,57,55,93,44,91,45,56,57,46,51,54,57,49,50,56,44,52,50,46,56,52,53,48,51,54,93,44,91,45,56,57,46,48,49,51,53,56,50,44,52,50,46,56,52,55,54,51,93,44,91,45,56,57,46,48,48,56,56,51,50,44,52,51,46,49,57,55,55,50,52,93,44,91,45,56,57,46,48,48,57,49,51,57,44,52,51,46,50,56,52,56,51,93,44,91,45,56,57,46,55,50,48,52,54,51,44,52,51,46,50,57,51,48,56,52,93,44,91,45,56,57,46,56,51,56,49,51,53,44,52,51,46,50,48,54,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,70,105,115,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,51,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,52,52,50,50,52,44,51,50,46,57,53,57,57,55,56,93,44,91,45,49,48,48,46,53,49,57,50,48,56,44,51,50,46,57,54,50,57,50,54,93,44,91,45,49,48,48,46,54,53,53,56,55,44,51,50,46,57,54,51,52,54,57,93,44,91,45,49,48,48,46,54,54,48,54,50,54,44,51,50,46,53,50,53,51,49,50,93,44,91,45,49,48,48,46,49,52,54,53,52,51,44,51,50,46,53,50,50,55,57,51,93,44,91,45,49,48,48,46,49,52,52,50,50,52,44,51,50,46,57,53,57,57,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,83,97,98,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,56,56,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,52,49,49,55,49,44,51,49,46,56,52,53,50,51,51,93,44,91,45,57,51,46,56,55,57,48,54,49,44,51,49,46,56,52,52,50,56,55,93,44,91,45,57,51,46,55,57,52,53,52,56,44,51,49,46,55,48,50,48,55,54,93,44,91,45,57,51,46,56,51,52,57,49,56,44,51,49,46,53,56,54,50,49,50,93,44,91,45,57,51,46,54,57,50,54,51,49,44,51,49,46,52,51,55,49,57,50,93,44,91,45,57,51,46,54,56,55,53,49,49,44,51,49,46,51,49,48,56,49,51,93,44,91,45,57,51,46,54,48,48,51,48,56,44,51,49,46,49,55,54,49,53,56,93,44,91,45,57,51,46,53,53,50,53,50,52,44,51,49,46,49,56,53,52,48,53,93,44,91,45,57,51,46,53,51,52,57,49,57,44,51,49,46,50,55,54,53,55,57,93,44,91,45,57,51,46,52,52,50,53,53,52,44,51,49,46,50,55,54,55,49,54,93,44,91,45,57,51,46,51,57,48,52,57,53,44,51,49,46,51,54,52,49,52,55,93,44,91,45,57,51,46,50,51,54,49,48,52,44,51,49,46,51,54,52,53,48,55,93,44,91,45,57,51,46,50,51,54,54,54,50,44,51,49,46,53,51,56,51,51,57,93,44,91,45,57,51,46,51,51,55,52,53,54,44,51,49,46,53,51,56,49,49,93,44,91,45,57,51,46,51,51,56,57,55,50,44,51,49,46,55,49,52,50,53,57,93,44,91,45,57,51,46,52,52,49,55,52,51,44,51,49,46,55,49,52,52,56,53,93,44,91,45,57,51,46,52,52,49,49,55,49,44,51,49,46,56,52,53,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,50,54,44,34,98,101,100,115,34,58,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,57,57,49,48,53,44,51,57,46,55,57,48,48,54,93,44,91,45,57,48,46,51,55,49,50,53,54,44,51,57,46,55,53,51,49,50,50,93,44,91,45,57,48,46,51,48,48,54,54,54,44,51,57,46,54,51,54,53,52,49,93,44,91,45,57,48,46,51,48,49,56,51,49,44,51,57,46,53,50,48,51,52,52,93,44,91,45,57,48,46,49,53,51,55,56,50,44,51,57,46,53,50,48,51,49,53,93,44,91,45,56,57,46,57,50,54,48,51,55,44,51,57,46,53,50,50,49,48,52,93,44,91,45,56,57,46,57,56,52,55,52,53,44,51,57,46,55,49,56,48,55,57,93,44,91,45,56,57,46,57,57,52,52,48,53,44,51,57,46,56,55,50,56,54,93,44,91,45,57,48,46,53,56,51,53,51,52,44,51,57,46,56,55,54,55,53,93,44,91,45,57,48,46,53,55,49,52,50,52,44,51,57,46,56,51,56,57,54,49,93,44,91,45,57,48,46,53,57,57,49,48,53,44,51,57,46,55,57,48,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,53,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,57,53,44,34,98,101,100,115,34,58,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,49,53,53,55,57,44,51,50,46,50,56,56,53,53,54,93,44,91,45,56,51,46,54,48,56,53,52,55,44,51,50,46,49,49,56,52,48,53,93,44,91,45,56,51,46,51,51,55,51,49,51,44,51,50,46,49,48,53,56,56,53,93,44,91,45,56,51,46,50,57,49,49,48,54,44,51,50,46,49,55,56,56,50,53,93,44,91,45,56,51,46,51,52,54,53,50,56,44,51,50,46,50,55,50,52,56,57,93,44,91,45,56,51,46,52,57,56,48,51,57,44,51,50,46,52,48,49,55,49,53,93,44,91,45,56,51,46,54,49,53,53,55,57,44,51,50,46,50,56,56,53,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,101,114,116,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,54,52,52,44,34,98,101,100,115,34,58,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,50,57,49,53,49,57,44,51,54,46,49,54,56,51,52,50,93,44,91,45,55,55,46,51,50,55,53,54,57,44,51,54,46,48,55,49,51,54,49,93,44,91,45,55,55,46,48,52,50,56,56,50,44,51,53,46,57,52,50,50,55,56,93,44,91,45,55,55,46,48,48,53,50,53,44,51,53,46,56,53,56,52,51,51,93,44,91,45,55,54,46,55,54,48,53,57,56,44,51,53,46,56,54,52,56,56,55,93,44,91,45,55,54,46,54,48,54,50,49,52,44,51,53,46,57,55,56,48,53,49,93,44,91,45,55,54,46,54,56,50,53,51,53,44,51,54,46,48,51,48,57,52,55,93,44,91,45,55,54,46,55,51,54,57,51,51,44,51,54,46,49,53,48,53,56,51,93,44,91,45,55,54,46,55,48,54,53,56,52,44,51,54,46,50,52,51,55,57,54,93,44,91,45,55,55,46,50,48,56,52,54,56,44,51,54,46,50,52,54,53,55,56,93,44,91,45,55,55,46,50,57,49,53,49,57,44,51,54,46,49,54,56,51,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,83,116,97,110,108,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,49,49,52,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,50,57,53,52,50,49,44,51,53,46,53,48,50,57,50,93,44,91,45,56,48,46,53,48,52,57,56,53,44,51,53,46,49,56,52,57,57,56,93,44,91,45,56,48,46,51,53,56,57,50,50,44,51,53,46,49,54,53,50,56,49,93,44,91,45,56,48,46,50,55,54,56,50,57,44,51,53,46,49,57,53,55,50,50,93,44,91,45,56,48,46,48,55,53,51,54,53,44,51,53,46,49,52,51,48,56,49,93,44,91,45,56,48,46,48,57,56,49,56,53,44,51,53,46,50,53,53,49,55,51,93,44,91,45,56,48,46,48,53,49,55,51,57,44,51,53,46,51,55,50,53,56,53,93,44,91,45,56,48,46,49,56,50,53,53,57,44,51,53,46,53,48,52,49,53,49,93,44,91,45,56,48,46,50,57,53,52,50,49,44,51,53,46,53,48,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,82,104,101,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,54,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,49,54,48,54,50,44,51,53,46,55,54,49,57,51,57,93,44,91,45,56,53,46,49,48,55,55,54,50,44,51,53,46,53,55,49,51,53,57,93,44,91,45,56,53,46,49,51,53,49,57,49,44,51,53,46,52,53,56,54,52,57,93,44,91,45,56,53,46,48,49,54,51,52,51,44,51,53,46,52,48,57,50,56,56,93,44,91,45,56,52,46,57,49,53,48,52,57,44,51,53,46,52,52,48,55,55,49,93,44,91,45,56,52,46,55,56,50,51,54,54,44,51,53,46,53,57,52,55,57,57,93,44,91,45,56,52,46,55,50,51,56,53,51,44,51,53,46,55,53,50,56,57,54,93,44,91,45,56,52,46,55,56,49,57,48,49,44,51,53,46,56,50,53,93,44,91,45,56,52,46,57,49,54,48,54,50,44,51,53,46,55,54,49,57,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,48,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,55,48,48,54,57,50,44,51,53,46,54,53,50,50,57,53,93,44,91,45,55,55,46,56,50,50,53,49,49,44,51,53,46,53,56,53,51,56,51,93,44,91,45,55,55,46,56,48,54,50,52,56,44,51,53,46,51,54,56,55,53,52,93,44,91,45,55,55,46,54,51,57,49,48,49,44,51,53,46,51,53,52,48,56,54,93,44,91,45,55,55,46,52,55,53,53,49,53,44,51,53,46,52,50,54,54,53,53,93,44,91,45,55,55,46,53,48,51,52,44,51,53,46,53,49,55,52,52,53,93,44,91,45,55,55,46,55,48,48,54,57,50,44,51,53,46,54,53,50,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,76,101,115,108,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,55,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,48,55,56,56,54,44,51,55,46,50,51,53,56,55,55,93,44,91,45,56,51,46,53,53,49,51,48,51,44,51,55,46,49,54,55,53,49,93,44,91,45,56,51,46,53,48,57,48,56,51,44,51,54,46,57,51,56,53,48,57,93,44,91,45,56,51,46,52,56,57,56,49,51,44,51,54,46,56,57,53,52,49,51,93,44,91,45,56,51,46,50,54,48,48,50,44,51,54,46,57,54,56,57,53,49,93,44,91,45,56,51,46,49,56,50,49,48,52,44,51,55,46,48,50,49,49,49,53,93,44,91,45,56,51,46,50,48,56,49,50,49,44,51,55,46,49,55,52,54,53,57,93,44,91,45,56,51,46,52,54,48,57,57,50,44,51,55,46,50,57,51,56,52,56,93,44,91,45,56,51,46,53,48,55,56,56,54,44,51,55,46,50,51,53,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,83,111,109,101,114,115,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,57,52,56,52,53,52,44,51,56,46,50,49,53,57,54,93,44,91,45,55,54,46,48,55,56,53,55,53,44,51,56,46,48,54,48,57,50,93,44,91,45,55,54,46,50,48,52,55,49,57,44,51,56,46,48,53,56,52,49,93,44,91,45,55,54,46,50,51,54,49,52,49,44,51,55,46,56,56,56,52,54,56,93,44,91,45,55,54,46,50,51,54,52,53,56,44,51,55,46,56,56,54,54,48,53,93,44,91,45,55,54,46,48,53,50,48,50,49,44,51,55,46,57,53,51,53,55,56,93,44,91,45,55,53,46,57,53,50,54,55,50,44,51,55,46,57,48,54,56,50,55,93,44,91,45,55,53,46,56,48,49,50,52,44,51,55,46,57,49,50,49,55,52,93,44,91,45,55,53,46,54,50,52,51,52,51,44,51,55,46,57,57,52,50,48,56,93,44,91,45,55,53,46,53,52,53,56,48,54,44,51,56,46,48,56,54,55,52,57,93,44,91,45,55,53,46,53,52,53,56,57,56,44,51,56,46,49,55,56,55,52,93,44,91,45,55,53,46,54,49,50,55,54,52,44,51,56,46,50,55,56,54,50,54,93,44,91,45,55,53,46,55,54,57,54,55,49,44,51,56,46,50,56,52,53,56,55,93,44,91,45,55,53,46,57,52,56,52,53,52,44,51,56,46,50,49,53,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,54,50,50,51,55,44,52,49,46,49,48,52,48,48,56,93,44,91,45,56,57,46,51,53,56,52,51,55,44,52,49,46,49,48,51,56,52,57,93,44,91,45,56,57,46,52,54,54,49,48,49,44,52,49,46,49,52,56,53,50,52,93,44,91,45,56,57,46,54,51,56,53,51,54,44,52,49,46,49,52,56,53,52,53,93,44,91,45,56,57,46,54,51,56,55,50,55,44,52,48,46,57,55,51,55,48,55,93,44,91,45,56,57,46,52,55,50,51,51,44,52,48,46,57,50,49,50,48,54,93,44,91,45,56,57,46,48,52,55,55,49,56,44,52,48,46,57,50,53,55,52,57,93,44,91,45,56,57,46,48,52,55,51,57,52,44,52,49,46,49,48,52,55,56,54,93,44,91,45,56,57,46,49,54,50,50,51,55,44,52,49,46,49,48,52,48,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,76,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,57,51,53,49,57,44,51,55,46,49,52,55,50,53,54,93,44,91,45,56,56,46,50,52,48,51,55,49,44,51,54,46,57,56,49,57,49,49,93,44,91,45,56,56,46,49,53,55,51,52,55,44,51,54,46,56,54,55,49,56,51,93,44,91,45,56,55,46,56,55,54,57,57,54,44,51,54,46,57,54,48,49,49,54,93,44,91,45,56,56,46,48,52,50,49,52,50,44,51,55,46,49,55,52,55,53,54,93,44,91,45,56,56,46,48,57,53,55,56,49,44,51,55,46,49,55,57,54,56,52,93,44,91,45,56,56,46,49,57,51,53,49,57,44,51,55,46,49,52,55,50,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,67,111,110,99,104,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,51,51,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,49,50,51,52,44,51,49,46,53,56,48,50,54,55,93,44,91,45,49,48,48,46,49,49,53,50,49,54,44,51,49,46,48,56,55,57,57,52,93,44,91,45,57,57,46,54,48,51,50,50,51,44,51,49,46,48,56,55,50,57,54,93,44,91,45,57,57,46,54,48,49,56,53,44,51,49,46,52,57,49,57,53,93,44,91,45,57,57,46,55,50,49,54,57,56,44,51,49,46,53,55,54,55,53,57,93,44,91,45,49,48,48,46,49,49,49,50,51,52,44,51,49,46,53,56,48,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,67,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,51,53,49,51,55,44,51,50,46,48,56,50,51,55,50,93,44,91,45,49,48,48,46,54,54,53,51,53,51,44,51,50,46,48,56,53,52,48,55,93,44,91,45,49,48,48,46,56,50,49,53,57,52,44,51,50,46,48,56,54,54,49,93,44,91,45,49,48,48,46,56,50,53,51,55,44,51,49,46,54,57,54,49,53,53,93,44,91,45,49,48,48,46,50,51,53,55,54,49,44,51,49,46,54,57,50,57,55,93,44,91,45,49,48,48,46,50,51,53,49,51,55,44,51,50,46,48,56,50,51,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,79,118,101,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,48,52,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,56,52,56,55,56,44,51,54,46,53,51,49,50,57,51,93,44,91,45,56,53,46,52,51,56,56,48,56,44,51,54,46,53,48,49,49,48,50,93,44,91,45,56,53,46,52,57,53,52,50,50,44,51,54,46,52,48,51,48,55,52,93,44,91,45,56,53,46,52,57,53,49,50,52,44,51,54,46,51,48,50,50,55,56,93,44,91,45,56,53,46,52,49,57,52,51,50,44,51,54,46,50,51,54,49,52,53,93,44,91,45,56,53,46,49,49,57,53,56,51,44,51,54,46,49,52,52,55,49,57,93,44,91,45,56,53,46,48,56,50,52,57,55,44,51,54,46,49,57,54,49,55,49,93,44,91,45,56,53,46,49,50,48,52,52,53,44,51,54,46,52,48,55,49,54,52,93,44,91,45,56,53,46,50,56,52,56,55,56,44,51,54,46,53,51,49,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,117,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,52,51,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,56,53,50,56,44,52,52,46,49,54,56,52,48,52,93,44,91,45,56,51,46,55,48,56,53,50,53,44,52,51,46,56,51,51,57,52,56,93,44,91,45,56,51,46,55,48,56,51,49,55,44,52,51,46,56,50,56,55,50,49,93,44,91,45,56,51,46,52,54,55,52,48,51,44,52,51,46,55,50,56,57,48,57,93,44,91,45,56,51,46,52,54,54,53,57,50,44,52,51,46,54,54,55,54,50,49,93,44,91,45,56,51,46,49,49,55,56,52,52,44,52,51,46,54,55,53,52,57,51,93,44,91,45,56,50,46,49,52,53,53,48,49,44,52,51,46,54,57,53,53,56,55,93,44,91,45,56,50,46,50,52,57,57,49,52,44,52,52,46,49,53,56,55,53,49,93,44,91,45,56,51,46,49,56,53,50,56,44,52,52,46,49,54,56,52,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,73,111,115,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,52,55,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,51,57,55,55,44,52,52,46,49,54,49,55,56,54,93,44,91,45,56,51,46,49,56,53,50,56,44,52,52,46,49,54,56,52,48,52,93,44,91,45,56,50,46,50,52,57,57,49,52,44,52,52,46,49,53,56,55,53,49,93,44,91,45,56,50,46,51,50,57,53,49,57,44,52,52,46,53,49,50,56,51,52,93,44,91,45,56,51,46,56,56,54,54,51,52,44,52,52,46,53,48,56,57,55,54,93,44,91,45,56,51,46,56,56,51,57,55,55,44,52,52,46,49,54,49,55,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,67,111,102,102,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,57,54,49,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,57,56,51,54,44,51,49,46,54,55,51,49,54,52,93,44,91,45,56,51,46,49,52,53,53,56,55,44,51,49,46,52,55,50,50,55,54,93,44,91,45,56,51,46,49,52,48,52,56,51,44,51,49,46,52,50,48,51,57,53,93,44,91,45,56,50,46,56,52,52,48,57,51,44,51,49,46,52,48,51,51,50,56,93,44,91,45,56,50,46,56,49,55,53,52,52,44,51,49,46,51,54,52,52,56,54,93,44,91,45,56,50,46,54,50,56,57,55,53,44,51,49,46,51,54,51,57,51,93,44,91,45,56,50,46,53,57,55,53,48,57,44,51,49,46,52,54,57,50,57,51,93,44,91,45,56,50,46,54,50,55,51,52,50,44,51,49,46,54,55,50,54,55,50,93,44,91,45,56,50,46,56,51,54,54,51,51,44,51,49,46,54,55,49,51,57,56,93,44,91,45,56,50,46,56,51,54,51,54,54,44,51,49,46,56,49,54,49,53,52,93,44,91,45,56,50,46,57,57,53,54,57,56,44,51,49,46,55,56,48,57,56,51,93,44,91,45,56,50,46,57,57,56,51,54,44,51,49,46,54,55,51,49,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,57,34,44,34,78,65,77,69,34,58,34,87,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,57,57,44,34,98,101,100,115,34,58,50,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,55,49,54,54,57,44,51,49,46,49,56,51,55,51,57,93,44,91,45,56,50,46,53,57,50,48,55,49,44,51,49,46,48,49,56,52,56,55,93,44,91,45,56,50,46,52,57,48,53,53,56,44,51,48,46,57,54,51,49,54,54,93,44,91,45,56,50,46,52,51,53,56,53,50,44,51,48,46,56,50,48,48,54,56,93,44,91,45,56,50,46,52,49,56,57,49,52,44,51,48,46,53,56,49,55,54,55,93,44,91,45,56,50,46,50,49,52,54,55,55,44,51,48,46,53,54,56,53,53,54,93,44,91,45,56,50,46,49,52,57,56,55,50,44,51,48,46,55,56,52,51,51,54,93,44,91,45,56,50,46,52,50,48,52,52,50,44,51,48,46,55,57,53,50,50,57,93,44,91,45,56,50,46,52,49,53,54,48,51,44,51,49,46,48,49,51,53,57,93,44,91,45,56,50,46,49,51,49,54,57,56,44,51,49,46,48,49,48,55,49,52,93,44,91,45,56,50,46,50,48,56,50,54,50,44,51,49,46,48,56,52,55,54,56,93,44,91,45,56,50,46,50,48,56,55,51,50,44,51,49,46,49,55,48,57,51,56,93,44,91,45,56,50,46,50,56,52,53,54,49,44,51,49,46,50,50,52,52,52,57,93,44,91,45,56,50,46,51,56,51,55,48,53,44,51,49,46,50,57,49,49,52,51,93,44,91,45,56,50,46,52,49,55,50,52,54,44,51,49,46,52,49,55,49,49,57,93,44,91,45,56,50,46,53,57,55,53,48,57,44,51,49,46,52,54,57,50,57,51,93,44,91,45,56,50,46,54,50,56,57,55,53,44,51,49,46,51,54,51,57,51,93,44,91,45,56,50,46,54,55,49,54,54,57,44,51,49,46,49,56,51,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,48,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,57,57,56,51,50,55,44,52,54,46,48,53,51,50,55,52,93,44,91,45,49,48,49,46,56,54,49,56,50,44,52,54,46,48,54,52,55,57,52,93,44,91,45,49,48,49,46,54,55,55,54,49,50,44,52,54,46,48,49,50,56,55,49,93,44,91,45,49,48,49,46,52,57,54,52,50,51,44,52,54,46,48,50,51,55,50,56,93,44,91,45,49,48,49,46,51,48,51,53,49,52,44,52,54,46,49,48,53,53,48,51,93,44,91,45,49,48,49,46,48,50,53,54,57,49,44,52,54,46,50,56,52,52,49,52,93,44,91,45,49,48,49,46,48,52,56,53,50,55,44,52,54,46,51,55,49,52,53,93,44,91,45,49,48,49,46,50,57,56,57,56,57,44,52,54,46,51,55,49,52,48,52,93,44,91,45,49,48,49,46,50,57,56,56,50,51,44,52,54,46,54,51,48,52,51,49,93,44,91,45,49,48,49,46,55,49,56,52,54,50,44,52,54,46,54,51,49,50,56,51,93,44,91,45,49,48,49,46,55,49,56,50,50,56,44,52,54,46,55,49,55,56,51,52,93,44,91,45,49,48,50,46,48,57,54,50,52,44,52,54,46,55,49,55,55,55,50,93,44,91,45,49,48,50,46,48,57,54,55,52,52,44,52,54,46,54,51,49,48,50,54,93,44,91,45,49,48,50,46,48,53,49,50,52,44,52,54,46,54,51,48,57,49,55,93,44,91,45,49,48,50,46,48,52,54,55,56,57,44,52,54,46,50,56,51,55,52,54,93,44,91,45,49,48,49,46,57,57,55,57,51,44,52,54,46,50,48,53,51,50,52,93,44,91,45,49,48,49,46,57,57,56,51,50,55,44,52,54,46,48,53,51,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,53,51,48,48,44,34,98,101,100,115,34,58,51,50,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,53,57,56,56,57,44,51,48,46,49,54,51,52,49,93,44,91,45,57,48,46,50,56,48,50,57,54,44,50,57,46,57,55,50,54,49,56,93,44,91,45,57,48,46,50,52,48,49,55,51,44,50,57,46,56,54,50,49,49,55,93,44,91,45,57,48,46,49,54,55,50,57,55,44,50,57,46,56,49,55,52,48,55,93,44,91,45,57,48,46,50,50,56,49,53,55,44,50,57,46,54,57,50,48,50,56,93,44,91,45,57,48,46,49,55,48,51,56,55,44,50,57,46,54,56,51,53,50,51,93,44,91,45,57,48,46,49,51,55,53,48,52,44,50,57,46,52,55,55,49,54,51,93,44,91,45,57,48,46,48,50,48,54,50,50,44,50,57,46,52,50,56,52,54,49,93,44,91,45,57,48,46,48,48,48,48,54,56,44,50,57,46,50,57,52,57,49,50,93,44,91,45,57,48,46,48,57,48,51,51,55,44,50,57,46,49,56,48,53,55,52,93,44,91,45,57,48,46,48,56,57,48,57,50,44,50,57,46,48,57,52,54,52,56,93,44,91,45,56,57,46,56,57,57,54,54,52,44,50,57,46,49,53,53,48,48,57,93,44,91,45,56,57,46,57,48,50,50,54,55,44,50,57,46,50,57,50,50,56,52,93,44,91,45,56,57,46,57,55,55,52,55,44,50,57,46,52,52,57,51,55,49,93,44,91,45,56,57,46,57,56,48,56,49,50,44,50,57,46,53,56,48,49,53,53,93,44,91,45,57,48,46,48,54,55,50,52,50,44,50,57,46,55,51,56,54,54,52,93,44,91,45,57,48,46,48,48,56,48,53,54,44,50,57,46,56,57,53,53,50,56,93,44,91,45,57,48,46,49,51,56,53,55,52,44,50,57,46,57,49,56,56,48,53,93,44,91,45,57,48,46,49,48,56,49,49,57,44,51,48,46,49,54,52,57,52,93,44,91,45,57,48,46,49,53,54,50,53,54,44,51,48,46,49,56,57,54,49,51,93,44,91,45,57,48,46,50,53,57,56,56,57,44,51,48,46,49,54,51,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,83,116,46,32,84,97,109,109,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,48,57,51,44,34,98,101,100,115,34,58,49,49,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,53,53,54,52,56,44,51,48,46,55,49,49,57,48,53,93,44,91,45,57,48,46,50,52,51,54,52,57,44,51,48,46,51,54,49,53,56,49,93,44,91,45,57,48,46,49,54,48,54,51,54,44,51,48,46,50,51,52,51,51,55,93,44,91,45,57,48,46,49,53,54,50,53,54,44,51,48,46,49,56,57,54,49,51,93,44,91,45,57,48,46,49,48,56,49,49,57,44,51,48,46,49,54,52,57,52,93,44,91,45,56,57,46,57,48,51,50,51,52,44,51,48,46,49,57,56,54,54,93,44,91,45,56,57,46,55,57,55,52,49,52,44,51,48,46,49,54,48,55,53,55,93,44,91,45,56,57,46,54,50,53,48,53,52,44,51,48,46,49,53,51,52,57,51,93,44,91,45,56,57,46,52,57,52,57,55,51,44,51,48,46,49,54,48,55,53,93,44,91,45,56,57,46,54,51,49,54,49,52,44,51,48,46,50,53,55,48,49,51,93,44,91,45,56,57,46,54,57,48,48,51,53,44,51,48,46,52,53,57,51,51,51,93,44,91,45,56,57,46,55,53,50,56,48,55,44,51,48,46,53,48,50,57,54,50,93,44,91,45,56,57,46,56,52,50,51,51,44,51,48,46,54,54,54,48,49,53,93,44,91,45,56,57,46,57,57,52,50,48,49,44,51,48,46,54,54,53,52,51,93,44,91,45,57,48,46,50,53,53,54,52,56,44,51,48,46,55,49,49,57,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,50,55,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,57,57,52,56,53,44,52,50,46,53,53,55,55,93,44,91,45,57,51,46,52,54,50,54,51,53,44,52,50,46,52,55,48,56,48,50,93,44,91,45,57,51,46,52,54,51,48,52,51,44,52,50,46,50,48,57,51,48,50,93,44,91,45,57,51,46,50,51,49,55,50,50,44,52,50,46,50,48,56,56,56,54,93,44,91,45,57,51,46,48,48,49,54,55,52,44,52,50,46,50,48,57,50,54,55,93,44,91,45,57,51,46,48,48,50,57,48,50,44,52,50,46,52,55,48,54,51,56,93,44,91,45,57,51,46,48,50,55,44,52,50,46,53,53,54,56,49,93,44,91,45,57,51,46,52,57,57,52,56,53,44,52,50,46,53,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,97,109,101,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,54,56,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,57,54,51,55,49,44,51,48,46,48,51,56,52,55,57,93,44,91,45,57,51,46,49,50,56,52,55,53,44,51,48,46,48,53,50,53,56,55,93,44,91,45,57,51,46,55,50,50,53,49,55,44,51,48,46,48,53,48,56,55,50,93,44,91,45,57,51,46,56,53,52,52,49,50,44,50,57,46,56,54,53,48,53,51,93,44,91,45,57,51,46,57,50,50,55,52,52,44,50,57,46,56,49,56,56,48,56,93,44,91,45,57,51,46,56,49,52,51,53,49,44,50,57,46,53,57,54,53,55,54,93,44,91,45,57,51,46,55,55,48,49,52,55,44,50,57,46,54,55,48,56,50,53,93,44,91,45,57,51,46,52,56,55,55,53,52,44,50,57,46,55,49,55,56,49,49,93,44,91,45,57,51,46,49,50,53,49,53,44,50,57,46,55,48,54,50,48,57,93,44,91,45,57,50,46,54,49,55,51,48,54,44,50,57,46,53,50,55,49,50,57,93,44,91,45,57,50,46,54,49,53,54,49,44,51,48,46,48,51,56,49,54,56,93,44,91,45,57,50,46,55,51,56,54,48,52,44,51,48,46,48,51,55,51,50,51,93,44,91,45,57,50,46,57,57,54,51,55,49,44,51,48,46,48,51,56,52,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,56,57,54,44,34,98,101,100,115,34,58,49,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,55,55,48,48,53,44,51,57,46,53,54,57,49,54,57,93,44,91,45,56,52,46,48,48,54,55,56,50,44,51,57,46,50,53,53,48,54,56,93,44,91,45,56,51,46,57,57,51,49,50,44,51,57,46,50,53,52,50,51,53,93,44,91,45,56,51,46,56,54,53,54,55,57,44,51,57,46,50,52,55,51,51,51,93,44,91,45,56,51,46,55,56,52,55,57,51,44,51,57,46,50,54,50,56,56,56,93,44,91,45,56,51,46,53,57,48,56,55,56,44,51,57,46,51,55,56,55,51,54,93,44,91,45,56,51,46,53,55,54,50,56,54,44,51,57,46,53,52,52,53,52,55,93,44,91,45,56,51,46,54,55,48,49,57,54,44,51,57,46,53,53,48,50,53,52,93,44,91,45,56,51,46,57,55,55,48,48,53,44,51,57,46,53,54,57,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,111,117,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,48,56,48,44,34,98,101,100,115,34,58,49,49,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,56,49,49,53,56,44,52,55,46,56,57,49,56,55,93,44,91,45,57,51,46,48,54,49,50,53,51,44,52,55,46,55,50,48,49,56,55,93,44,91,45,57,51,46,48,54,57,53,44,52,55,46,51,57,51,57,49,53,93,44,91,45,57,51,46,48,53,53,57,52,51,44,52,55,46,48,50,54,52,49,53,93,44,91,45,57,51,46,48,54,49,53,50,57,44,52,54,46,55,54,54,53,53,93,44,91,45,57,50,46,51,48,49,54,55,54,44,52,54,46,55,54,52,49,51,52,93,44,91,45,57,50,46,50,57,50,50,52,50,44,52,54,46,54,54,51,51,49,56,93,44,91,45,57,50,46,50,49,50,51,57,50,44,52,54,46,54,52,57,57,52,49,93,44,91,45,57,50,46,48,56,57,52,57,51,44,52,54,46,55,52,57,50,51,55,93,44,91,45,57,50,46,48,50,48,50,57,52,44,52,54,46,55,48,52,48,52,49,93,44,91,45,57,49,46,55,57,54,51,51,44,52,54,46,55,57,52,56,51,56,93,44,91,45,57,49,46,55,56,55,57,50,56,44,52,55,46,53,52,54,56,49,55,93,44,91,45,57,49,46,55,57,56,50,53,50,44,52,56,46,50,48,50,56,53,56,93,44,91,45,57,50,46,48,48,54,53,55,52,44,52,56,46,50,54,53,52,50,51,93,44,91,45,57,50,46,49,54,49,57,56,51,44,52,56,46,51,54,51,51,48,54,93,44,91,45,57,50,46,50,56,56,57,57,52,44,52,56,46,51,52,50,57,57,93,44,91,45,57,50,46,51,55,48,49,48,51,44,52,56,46,50,50,48,50,57,57,93,44,91,45,57,50,46,53,48,55,50,56,53,44,52,56,46,52,52,55,56,55,54,93,44,91,45,57,50,46,54,53,54,48,50,55,44,52,56,46,52,51,54,55,48,57,93,44,91,45,57,50,46,55,50,56,48,52,54,44,52,56,46,53,51,57,50,56,57,93,44,91,45,57,50,46,57,56,52,57,54,51,44,52,56,46,54,50,51,55,51,49,93,44,91,45,57,51,46,48,56,56,52,51,56,44,52,56,46,54,50,55,53,57,55,93,44,91,45,57,51,46,48,57,54,52,56,56,44,52,56,46,48,54,55,56,50,54,93,44,91,45,57,51,46,48,56,49,49,53,56,44,52,55,46,56,57,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,76,111,114,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,54,55,49,51,44,34,98,101,100,115,34,58,49,48,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,52,56,49,50,50,44,52,49,46,55,48,48,48,53,55,93,44,91,45,56,50,46,51,52,50,51,49,52,44,52,49,46,50,56,51,53,53,52,93,44,91,45,56,50,46,51,51,54,52,57,54,44,52,49,46,48,54,53,55,54,49,93,44,91,45,56,50,46,49,55,49,52,57,50,44,52,49,46,48,54,51,53,51,55,93,44,91,45,56,50,46,49,54,57,56,55,53,44,52,49,46,49,51,55,48,57,55,93,44,91,45,56,49,46,57,55,51,56,57,53,44,52,49,46,49,57,57,56,51,49,93,44,91,45,56,49,46,56,55,56,48,53,51,44,52,49,46,50,55,53,48,52,52,93,44,91,45,56,49,46,57,55,49,50,54,50,44,52,49,46,51,53,49,50,54,56,93,44,91,45,56,49,46,57,55,48,53,56,44,52,49,46,56,55,55,56,52,53,93,44,91,45,56,50,46,51,52,56,49,50,50,44,52,49,46,55,48,48,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,86,101,103,97,32,65,108,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,55,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,53,48,48,57,51,44,49,56,46,53,52,49,48,49,52,93,44,91,45,54,54,46,51,55,55,48,53,56,44,49,56,46,51,52,52,50,52,54,93,44,91,45,54,54,46,51,54,53,50,55,50,44,49,56,46,51,51,51,50,50,57,93,44,91,45,54,54,46,51,49,56,55,54,52,44,49,56,46,51,54,55,52,49,49,93,44,91,45,54,54,46,51,48,51,54,54,51,44,49,56,46,51,56,52,48,55,55,93,44,91,45,54,54,46,51,48,56,51,49,51,44,49,56,46,53,50,57,55,56,56,93,44,91,45,54,54,46,51,53,48,48,57,51,44,49,56,46,53,52,49,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,51,57,57,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,51,49,53,56,44,52,50,46,50,48,57,57,48,56,93,44,91,45,57,52,46,49,54,52,55,48,52,44,52,50,46,50,48,57,57,50,93,44,91,45,57,52,46,49,54,52,49,51,56,44,52,49,46,56,54,51,50,52,52,93,44,91,45,57,51,46,56,49,53,55,50,49,44,52,49,46,56,54,51,52,49,57,93,44,91,45,57,51,46,54,57,56,48,51,50,44,52,49,46,56,54,51,51,55,93,44,91,45,57,51,46,54,57,56,51,57,44,52,50,46,50,48,57,51,51,57,93,44,91,45,57,51,46,57,51,49,53,56,44,52,50,46,50,48,57,57,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,55,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,56,51,55,44,34,98,101,100,115,34,58,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,52,50,57,52,55,44,51,49,46,49,52,54,53,55,56,93,44,91,45,57,52,46,57,51,57,49,50,55,44,51,49,46,48,52,50,48,52,56,93,44,91,45,57,53,46,50,48,48,49,56,44,51,48,46,56,50,52,53,54,54,93,44,91,45,57,53,46,49,52,53,52,50,54,44,51,48,46,55,49,51,55,57,57,93,44,91,45,57,53,46,48,50,52,52,52,51,44,51,48,46,54,54,48,53,48,51,93,44,91,45,57,52,46,56,52,57,52,49,52,44,51,48,46,52,57,51,53,53,51,93,44,91,45,57,52,46,55,51,50,55,51,50,44,51,48,46,52,57,48,48,54,54,93,44,91,45,57,52,46,53,52,53,55,49,55,44,51,48,46,53,50,54,57,55,55,93,44,91,45,57,52,46,54,53,55,57,57,50,44,51,49,46,48,49,50,48,48,55,93,44,91,45,57,52,46,53,54,49,57,52,51,44,51,49,46,48,53,56,57,53,50,93,44,91,45,57,52,46,56,52,50,57,52,55,44,51,49,46,49,52,54,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,68,105,120,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,49,53,56,52,57,44,52,50,46,55,54,49,51,51,56,93,44,91,45,57,55,46,48,49,55,55,56,57,44,52,50,46,51,53,49,51,52,55,93,44,91,45,57,55,46,48,49,55,55,51,44,52,50,46,50,54,52,52,53,51,93,44,91,45,57,54,46,56,50,50,52,57,55,44,52,50,46,50,54,52,50,57,50,93,44,91,45,57,54,46,55,50,54,54,54,49,44,52,50,46,50,55,56,48,48,53,93,44,91,45,57,54,46,55,50,50,50,51,49,44,52,50,46,53,50,52,54,53,50,93,44,91,45,57,54,46,54,51,49,52,57,50,44,52,50,46,53,50,52,51,49,56,93,44,91,45,57,54,46,56,48,54,50,49,51,44,52,50,46,55,48,52,49,53,52,93,44,91,45,57,55,46,48,49,53,56,52,57,44,52,50,46,55,54,49,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,72,97,114,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,49,48,50,53,44,34,98,101,100,115,34,58,50,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,54,57,52,52,57,44,51,57,46,55,50,49,49,55,56,93,44,91,45,55,54,46,53,51,50,49,55,52,44,51,57,46,53,52,51,57,55,55,93,44,91,45,55,54,46,51,57,49,54,56,56,44,51,57,46,52,54,52,53,51,50,93,44,91,45,55,54,46,50,56,55,54,56,57,44,51,57,46,50,53,52,49,48,52,93,44,91,45,55,54,46,48,55,57,57,50,53,44,51,57,46,52,48,53,53,48,54,93,44,91,45,55,54,46,48,52,49,57,55,54,44,51,57,46,52,57,52,50,50,56,93,44,91,45,55,54,46,50,51,51,50,55,57,44,51,57,46,55,50,49,51,54,55,93,44,91,45,55,54,46,50,51,57,56,48,53,44,51,57,46,55,50,49,51,51,53,93,44,91,45,55,54,46,53,54,57,52,52,57,44,51,57,46,55,50,49,49,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,69,100,103,101,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,52,54,57,55,52,44,51,51,46,57,53,51,50,49,93,44,91,45,56,50,46,49,53,53,55,44,51,51,46,57,50,57,50,57,93,44,91,45,56,50,46,49,50,52,56,52,50,44,51,51,46,56,52,50,50,56,49,93,44,91,45,56,50,46,49,55,50,56,48,55,44,51,51,46,55,54,53,49,57,52,93,44,91,45,56,50,46,49,49,53,51,50,57,44,51,51,46,53,57,54,54,49,51,93,44,91,45,56,50,46,48,50,56,50,51,56,44,51,51,46,53,52,52,57,51,52,93,44,91,45,56,50,46,48,49,50,52,55,44,51,51,46,53,51,50,49,49,54,93,44,91,45,56,49,46,54,53,49,55,53,57,44,51,51,46,56,49,52,53,49,93,44,91,45,56,49,46,56,51,54,56,48,51,44,51,51,46,56,54,54,53,48,49,93,44,91,45,56,49,46,56,57,52,53,57,53,44,51,51,46,57,55,53,52,49,53,93,44,91,45,56,50,46,48,48,56,50,57,56,44,51,51,46,57,54,49,54,52,54,93,44,91,45,56,50,46,48,52,54,57,55,52,44,51,51,46,57,53,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,99,99,111,109,97,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,55,52,50,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,54,50,52,51,52,51,44,51,55,46,57,57,52,50,48,56,93,44,91,45,55,53,46,56,48,49,50,52,44,51,55,46,57,49,50,49,55,52,93,44,91,45,55,53,46,57,53,50,54,55,50,44,51,55,46,57,48,54,56,50,55,93,44,91,45,55,54,46,48,53,50,48,50,49,44,51,55,46,57,53,51,53,55,56,93,44,91,45,55,54,46,50,51,54,52,53,56,44,51,55,46,56,56,54,54,48,53,93,44,91,45,55,54,46,49,55,53,54,56,55,44,51,55,46,54,55,49,54,50,54,93,44,91,45,55,54,46,49,53,49,55,49,49,44,51,55,46,53,56,53,57,54,56,93,44,91,45,55,54,46,49,52,48,56,51,53,44,51,55,46,53,52,50,50,50,93,44,91,45,55,53,46,56,51,53,50,49,52,44,51,55,46,53,53,52,50,52,53,93,44,91,45,55,53,46,55,56,55,48,51,44,51,55,46,52,54,52,53,55,56,93,44,91,45,55,53,46,53,57,55,52,52,49,44,51,55,46,52,53,48,57,56,56,93,44,91,45,55,53,46,53,52,49,55,55,57,44,51,55,46,54,48,54,49,52,53,93,44,91,45,55,53,46,52,49,55,48,55,51,44,51,55,46,56,50,49,48,53,93,44,91,45,55,53,46,50,57,54,48,48,52,44,51,55,46,56,52,53,55,53,50,93,44,91,45,55,53,46,49,54,54,52,51,53,44,51,56,46,48,50,55,56,51,52,93,44,91,45,55,53,46,54,50,52,51,52,51,44,51,55,46,57,57,52,50,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,108,117,109,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,56,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,48,52,48,55,44,52,52,46,50,52,52,49,48,50,93,44,91,45,56,56,46,52,48,52,49,56,55,44,52,51,46,57,51,56,50,93,44,91,45,56,56,46,49,54,49,54,53,52,44,52,51,46,57,51,55,54,56,51,93,44,91,45,56,56,46,49,54,50,50,55,52,44,52,51,46,56,57,49,53,49,49,93,44,91,45,56,56,46,48,52,49,55,57,52,44,52,51,46,56,57,49,54,57,50,93,44,91,45,56,56,46,48,52,51,50,52,44,52,52,46,50,52,49,48,49,56,93,44,91,45,56,56,46,49,57,50,54,49,49,44,52,52,46,50,52,49,57,52,55,93,44,91,45,56,56,46,52,48,52,48,55,44,52,52,46,50,52,52,49,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,52,54,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,57,49,56,53,51,44,51,54,46,57,53,53,57,57,50,93,44,91,45,56,52,46,48,54,53,55,53,53,44,51,54,46,56,53,51,57,54,49,93,44,91,45,56,51,46,57,53,56,53,51,52,44,51,54,46,55,50,55,50,52,53,93,44,91,45,56,51,46,56,55,55,53,48,51,44,51,54,46,54,56,55,50,53,57,93,44,91,45,56,51,46,55,56,49,50,49,50,44,51,54,46,56,48,50,54,57,51,93,44,91,45,56,51,46,53,56,49,48,57,52,44,51,54,46,57,48,52,54,54,55,93,44,91,45,56,51,46,53,56,57,53,50,49,44,51,54,46,57,53,53,55,56,54,93,44,91,45,56,51,46,56,55,49,51,49,53,44,51,55,46,48,53,52,57,49,57,93,44,91,45,56,51,46,57,53,57,51,56,53,44,51,54,46,57,55,55,49,50,56,93,44,91,45,56,52,46,48,57,49,56,53,51,44,51,54,46,57,53,53,57,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,73,111,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,49,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,44,91,45,56,53,46,51,49,50,53,49,51,44,52,51,46,49,49,56,55,57,51,93,44,91,45,56,53,46,51,48,57,54,50,54,44,52,50,46,55,54,57,56,55,56,93,44,91,45,56,53,46,48,55,52,50,52,53,44,52,50,46,55,55,48,55,56,52,93,44,91,45,56,52,46,56,51,55,48,56,53,44,52,50,46,55,55,48,52,55,57,93,44,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,78,101,119,32,72,97,110,111,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,50,51,49,44,34,98,101,100,115,34,58,56,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,50,57,57,50,50,44,51,52,46,51,51,49,55,54,56,93,44,91,45,55,55,46,57,53,54,54,48,53,44,51,52,46,50,51,52,52,57,49,93,44,91,45,55,55,46,57,52,56,52,55,57,44,51,51,46,57,55,49,50,55,52,93,44,91,45,55,55,46,56,57,55,48,49,49,44,51,51,46,55,56,54,56,93,44,91,45,55,55,46,56,57,56,57,55,44,51,51,46,56,53,52,54,51,57,93,44,91,45,55,55,46,55,56,53,53,53,53,44,51,52,46,49,50,53,49,55,49,93,44,91,45,55,55,46,54,55,53,50,55,54,44,51,52,46,50,53,51,49,51,93,44,91,45,55,55,46,56,50,51,49,48,50,44,51,52,46,51,56,57,50,56,55,93,44,91,45,55,56,46,48,50,57,57,50,50,44,51,52,46,51,51,49,55,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,79,98,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,50,48,44,34,98,101,100,115,34,58,49,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,51,52,53,56,56,44,51,54,46,53,48,50,54,49,49,93,44,91,45,56,57,46,51,52,54,48,54,54,44,51,54,46,53,48,51,50,51,50,93,44,91,45,56,57,46,51,54,48,49,50,44,51,54,46,52,48,57,50,55,55,93,44,91,45,56,57,46,52,56,50,57,55,49,44,51,54,46,50,49,50,54,53,57,93,44,91,45,56,57,46,49,53,52,52,54,52,44,51,54,46,50,48,52,54,55,56,93,44,91,45,56,56,46,57,53,57,56,51,57,44,51,54,46,50,50,50,56,51,52,93,44,91,45,56,56,46,57,53,48,50,48,53,44,51,54,46,52,48,57,50,52,56,93,44,91,45,56,56,46,56,49,53,51,56,57,44,51,54,46,52,50,50,53,50,56,93,44,91,45,56,56,46,56,50,55,51,48,51,44,51,54,46,53,48,50,54,51,51,93,44,91,45,56,56,46,56,51,52,53,56,56,44,51,54,46,53,48,50,54,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,97,108,108,111,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,55,55,54,44,34,98,101,100,115,34,58,49,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,56,53,54,57,55,44,51,54,46,55,53,48,51,50,56,93,44,91,45,56,56,46,52,56,57,48,55,53,44,51,54,46,53,48,49,49,53,55,93,44,91,45,56,56,46,48,53,51,50,57,51,44,51,54,46,52,57,55,48,53,56,93,44,91,45,56,56,46,48,55,48,53,52,49,44,51,54,46,54,55,56,50,53,53,93,44,91,45,56,56,46,49,49,48,56,51,49,44,51,54,46,55,52,55,49,53,93,44,91,45,56,56,46,52,56,53,54,57,55,44,51,54,46,55,53,48,51,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,98,101,109,97,114,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,51,53,53,44,34,98,101,100,115,34,58,50,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,56,51,56,56,55,52,44,51,56,46,48,52,55,51,55,93,44,91,45,55,56,46,54,52,51,57,49,56,44,51,55,46,55,51,51,48,56,52,93,44,91,45,55,56,46,52,57,49,51,52,53,44,51,55,46,55,57,54,57,53,54,93,44,91,45,55,56,46,51,48,54,55,54,51,44,51,56,46,48,48,54,52,55,52,93,44,91,45,55,56,46,50,48,57,51,56,52,44,51,56,46,49,51,49,49,50,56,93,44,91,45,55,56,46,51,54,56,55,52,51,44,51,56,46,49,56,52,48,55,52,93,44,91,45,55,56,46,54,54,51,49,52,53,44,51,56,46,50,55,55,57,51,51,93,44,91,45,55,56,46,55,52,57,51,57,54,44,51,56,46,50,48,54,54,52,56,93,44,91,45,55,56,46,56,51,56,56,55,52,44,51,56,46,48,52,55,51,55,93,93,44,91,91,45,55,56,46,53,50,51,54,56,44,51,56,46,48,50,50,51,50,55,93,44,91,45,55,56,46,52,56,53,50,48,50,44,51,56,46,48,54,56,57,55,52,93,44,91,45,55,56,46,52,53,52,55,51,50,44,51,56,46,48,52,53,50,55,56,93,44,91,45,55,56,46,52,54,57,53,48,52,44,51,56,46,48,49,49,55,52,53,93,44,91,45,55,56,46,53,50,51,54,56,44,51,56,46,48,50,50,51,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,82,111,98,101,114,116,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,51,52,52,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,50,48,52,52,51,44,51,54,46,52,53,53,52,54,93,44,91,45,56,54,46,57,56,56,48,54,44,51,54,46,51,54,57,49,53,52,93,44,91,45,56,54,46,57,49,51,50,51,51,44,51,54,46,51,56,50,54,50,49,93,44,91,45,56,54,46,55,53,52,55,57,53,44,51,54,46,52,48,53,52,57,54,93,44,91,45,56,54,46,54,57,53,48,54,52,44,51,54,46,52,50,49,51,49,57,93,44,91,45,56,54,46,53,54,51,57,48,57,44,51,54,46,54,51,51,53,54,50,93,44,91,45,56,54,46,55,54,51,50,57,54,44,51,54,46,54,52,56,57,53,52,93,44,91,45,56,55,46,48,54,48,56,52,57,44,51,54,46,54,52,50,57,54,51,93,44,91,45,56,55,46,49,49,52,57,56,51,44,51,54,46,54,52,50,51,55,49,93,44,91,45,56,55,46,49,50,48,52,52,51,44,51,54,46,52,53,53,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,51,51,49,57,49,44,51,57,46,50,54,52,54,49,50,93,44,91,45,55,56,46,49,53,49,54,49,52,44,51,57,46,48,51,54,54,50,57,93,44,91,45,55,56,46,48,48,52,51,49,51,44,51,56,46,57,55,57,52,51,56,93,44,91,45,55,55,46,57,54,50,50,48,51,44,51,57,46,48,49,51,55,51,51,93,44,91,45,55,55,46,56,50,56,50,57,57,44,51,57,46,49,51,50,52,50,54,93,44,91,45,55,56,46,48,51,51,49,57,49,44,51,57,46,50,54,52,54,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,50,50,56,49,50,44,52,54,46,52,54,50,50,52,53,93,44,91,45,49,49,55,46,50,53,52,50,54,50,44,52,54,46,53,52,53,48,56,50,93,44,91,45,49,49,55,46,52,54,52,55,54,57,44,52,54,46,54,57,57,54,50,54,93,44,91,45,49,49,55,46,55,52,48,56,54,56,44,52,54,46,54,57,52,53,56,51,93,44,91,45,49,49,55,46,56,53,49,56,53,44,52,54,46,54,50,52,54,55,93,44,91,45,49,49,55,46,56,54,51,51,52,55,44,52,54,46,52,55,48,54,54,55,93,44,91,45,49,49,55,46,55,51,55,51,48,51,44,52,54,46,52,55,49,52,53,52,93,44,91,45,49,49,55,46,54,49,49,57,48,51,44,52,54,46,51,51,56,52,55,56,93,44,91,45,49,49,55,46,54,48,51,52,50,52,44,52,53,46,57,57,56,57,53,93,44,91,45,49,49,55,46,52,55,57,57,51,53,44,52,53,46,57,57,55,56,48,49,93,44,91,45,49,49,55,46,52,49,57,52,56,50,44,52,54,46,49,50,49,57,53,54,93,44,91,45,49,49,55,46,52,49,57,51,51,52,44,52,54,46,51,56,51,49,51,57,93,44,91,45,49,49,55,46,50,50,56,55,57,54,44,52,54,46,52,49,49,51,48,54,93,44,91,45,49,49,55,46,50,50,56,49,50,44,52,54,46,52,54,50,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,55,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,48,53,53,55,44,51,55,46,53,52,50,56,53,54,93,44,91,45,56,52,46,48,57,48,51,54,52,44,51,55,46,53,54,54,50,50,55,93,44,91,45,56,52,46,49,57,57,52,56,57,44,51,55,46,53,50,50,56,53,56,93,44,91,45,56,52,46,49,51,55,56,57,56,44,51,55,46,51,49,57,55,53,57,93,44,91,45,56,51,46,57,52,51,55,49,56,44,51,55,46,50,53,48,53,53,49,93,44,91,45,56,51,46,55,56,52,57,55,53,44,51,55,46,51,52,56,55,49,55,93,44,91,45,56,51,46,56,56,53,50,54,50,44,51,55,46,53,49,55,54,56,56,93,44,91,45,56,51,46,57,48,53,53,55,44,51,55,46,53,52,50,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,49,49,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,51,49,55,54,49,44,52,56,46,49,56,56,52,56,54,93,44,91,45,57,49,46,48,50,51,49,50,54,44,52,55,46,52,54,52,57,56,50,93,44,91,45,57,48,46,55,57,53,49,56,57,44,52,55,46,50,52,52,50,57,57,93,44,91,45,57,48,46,54,53,52,54,54,44,52,55,46,51,48,57,56,50,50,93,44,91,45,56,57,46,57,53,55,49,48,50,44,52,55,46,50,57,49,49,48,51,93,44,91,45,56,57,46,54,56,48,55,51,44,52,55,46,55,49,52,53,53,50,93,44,91,45,56,57,46,52,56,51,51,56,53,44,52,56,46,48,49,51,55,49,54,93,44,91,45,56,57,46,56,50,48,55,53,51,44,52,56,46,48,49,52,56,57,52,93,44,91,45,56,57,46,56,57,56,56,49,52,44,52,55,46,57,56,56,48,52,57,93,44,91,45,57,48,46,48,50,51,51,51,49,44,52,56,46,48,56,52,55,52,56,93,44,91,45,57,48,46,49,51,50,53,54,55,44,52,56,46,49,49,49,54,55,49,93,44,91,45,57,48,46,51,55,52,55,54,57,44,52,56,46,48,57,48,57,53,52,93,44,91,45,57,48,46,55,54,49,52,48,52,44,52,56,46,48,57,56,51,56,52,93,44,91,45,57,48,46,56,56,53,52,56,44,52,56,46,50,52,53,55,56,52,93,44,91,45,57,49,46,48,51,49,55,54,49,44,52,56,46,49,56,56,52,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,79,99,111,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,54,57,54,44,34,98,101,100,115,34,58,49,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,48,56,54,49,51,44,51,53,46,48,48,48,54,53,57,93,44,91,45,56,51,46,49,50,55,51,53,55,44,51,52,46,57,53,48,49,57,53,93,44,91,45,56,51,46,51,50,52,49,53,44,51,52,46,55,56,55,52,55,57,93,44,91,45,56,51,46,51,53,50,52,52,56,44,51,52,46,55,49,54,49,50,53,93,44,91,45,56,51,46,51,51,56,50,51,52,44,51,52,46,54,56,55,49,56,55,93,44,91,45,56,51,46,49,48,51,54,55,51,44,51,52,46,53,51,54,54,49,55,93,44,91,45,56,51,46,48,53,49,54,51,56,44,51,52,46,52,57,51,55,48,50,93,44,91,45,56,50,46,57,57,50,50,51,50,44,51,52,46,52,55,57,50,53,56,93,44,91,45,56,50,46,56,53,53,49,48,51,44,51,52,46,54,48,57,48,48,55,93,44,91,45,56,50,46,56,52,52,56,49,55,44,51,52,46,54,49,56,55,49,57,93,44,91,45,56,50,46,56,52,48,49,53,53,44,51,52,46,54,50,51,49,50,93,44,91,45,56,50,46,56,57,54,48,50,53,44,51,52,46,55,51,54,53,52,55,93,44,91,45,56,50,46,56,57,55,51,55,51,44,51,53,46,48,53,54,50,49,52,93,44,91,45,56,51,46,48,48,56,53,51,49,44,51,53,46,48,50,55,51,57,52,93,44,91,45,56,51,46,49,48,56,53,54,56,44,51,53,46,48,48,49,51,53,52,93,44,91,45,56,51,46,49,48,56,54,49,51,44,51,53,46,48,48,48,54,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,69,97,115,116,32,66,97,116,111,110,32,82,111,117,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,52,48,57,52,44,34,98,101,100,115,34,58,50,51,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,57,55,54,53,56,44,51,48,46,54,52,57,53,52,56,93,44,91,45,57,49,46,51,49,53,50,56,50,44,51,48,46,53,57,52,50,56,56,93,44,91,45,57,49,46,49,57,55,50,48,56,44,51,48,46,53,48,55,48,56,56,93,44,91,45,57,49,46,50,52,49,53,48,56,44,51,48,46,51,53,55,53,57,50,93,44,91,45,57,49,46,49,52,50,49,48,53,44,51,48,46,51,50,51,50,57,51,93,44,91,45,57,49,46,48,50,49,48,49,52,44,51,48,46,51,50,49,52,56,57,93,44,91,45,57,48,46,56,57,49,55,50,56,44,51,48,46,51,52,53,50,52,52,93,44,91,45,57,48,46,57,55,55,53,48,51,44,51,48,46,52,50,48,56,57,57,93,44,91,45,57,48,46,57,55,55,52,48,49,44,51,48,46,53,57,51,52,56,53,93,44,91,45,57,48,46,57,49,48,55,48,49,44,51,48,46,54,52,57,51,56,53,93,44,91,45,57,48,46,56,52,57,48,52,49,44,51,48,46,55,49,57,51,49,49,93,44,91,45,57,49,46,50,53,52,52,49,57,44,51,48,46,55,48,53,50,57,52,93,44,91,45,57,49,46,50,57,55,54,53,56,44,51,48,46,54,52,57,53,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,108,97,105,98,111,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,50,48,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,50,56,54,50,50,44,51,50,46,50,50,53,49,49,57,93,44,91,45,57,48,46,55,55,52,56,50,44,51,50,46,49,53,51,57,57,51,93,44,91,45,57,48,46,57,53,54,55,56,55,44,51,50,46,48,56,51,53,57,55,93,44,91,45,57,49,46,48,51,48,50,48,55,44,51,50,46,49,49,52,51,53,51,93,44,91,45,57,49,46,50,52,56,49,52,52,44,51,49,46,56,54,57,56,52,56,93,44,91,45,57,49,46,48,49,51,54,55,54,44,51,49,46,56,54,49,56,53,50,93,44,91,45,57,48,46,55,51,54,50,56,50,44,51,49,46,55,56,54,49,51,52,93,44,91,45,57,48,46,55,49,56,50,57,55,44,51,50,46,48,52,56,51,53,50,93,44,91,45,57,48,46,55,50,56,54,50,50,44,51,50,46,50,50,53,49,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,77,97,114,121,39,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,53,51,49,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,55,52,49,49,56,44,51,56,46,52,57,57,54,50,50,93,44,91,45,55,54,46,55,55,52,57,53,53,44,51,56,46,53,48,56,57,93,44,91,45,55,54,46,56,55,49,52,54,44,51,56,46,51,56,57,57,51,55,93,44,91,45,55,54,46,56,50,49,50,53,54,44,51,56,46,50,54,56,55,53,56,93,44,91,45,55,54,46,56,54,56,56,53,57,44,51,56,46,49,55,49,51,55,50,93,44,91,45,55,54,46,54,49,48,51,56,52,44,51,56,46,49,52,56,53,49,54,93,44,91,45,55,54,46,53,49,54,51,54,57,44,51,56,46,48,51,52,55,50,52,93,44,91,45,55,54,46,50,51,54,49,52,49,44,51,55,46,56,56,56,52,54,56,93,44,91,45,55,54,46,50,48,52,55,49,57,44,51,56,46,48,53,56,52,49,93,44,91,45,55,54,46,51,50,49,57,48,56,44,51,56,46,51,50,55,50,56,52,93,44,91,45,55,54,46,52,52,53,51,51,52,44,51,56,46,51,48,53,50,49,93,44,91,45,55,54,46,54,55,52,49,49,56,44,51,56,46,52,57,57,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,51,49,52,48,44,34,98,101,100,115,34,58,50,48,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,48,54,54,50,44,52,51,46,50,48,53,49,54,55,93,44,91,45,56,53,46,55,56,50,52,57,56,44,52,50,46,55,54,56,50,93,44,91,45,56,53,46,53,52,53,53,54,52,44,52,50,46,55,54,56,49,51,57,93,44,91,45,56,53,46,51,48,57,54,50,54,44,52,50,46,55,54,57,56,55,56,93,44,91,45,56,53,46,51,49,50,53,49,51,44,52,51,46,49,49,56,55,57,51,93,44,91,45,56,53,46,51,49,50,51,55,54,44,52,51,46,50,57,52,50,48,53,93,44,91,45,56,53,46,53,54,50,53,51,56,44,52,51,46,50,57,52,50,55,49,93,44,91,45,56,53,46,55,57,48,52,52,56,44,52,51,46,50,57,51,48,48,51,93,44,91,45,56,53,46,55,57,48,54,54,50,44,52,51,46,50,48,53,49,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,80,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,51,55,50,44,34,98,101,100,115,34,58,49,48,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,55,48,48,54,57,50,44,51,53,46,54,53,50,50,57,53,93,44,91,45,55,55,46,53,48,51,52,44,51,53,46,53,49,55,52,52,53,93,44,91,45,55,55,46,52,55,53,53,49,53,44,51,53,46,52,50,54,54,53,53,93,44,91,45,55,55,46,51,57,49,48,50,54,44,51,53,46,51,51,57,53,51,51,93,44,91,45,55,55,46,49,56,57,49,49,53,44,51,53,46,52,49,56,51,54,50,93,44,91,45,55,55,46,49,55,52,44,51,53,46,55,51,50,56,51,49,93,44,91,45,55,55,46,51,53,48,51,54,57,44,51,53,46,56,49,57,50,50,56,93,44,91,45,55,55,46,51,57,48,49,53,52,44,51,53,46,56,51,51,48,54,50,93,44,91,45,55,55,46,54,54,53,49,51,49,44,51,53,46,54,55,52,57,51,53,93,44,91,45,55,55,46,55,48,48,54,57,50,44,51,53,46,54,53,50,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,97,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,52,54,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,56,52,51,48,49,54,44,52,53,46,54,49,49,48,52,50,93,44,91,45,49,48,57,46,48,54,56,52,57,56,44,52,53,46,53,56,51,50,52,49,93,44,91,45,49,48,57,46,49,57,49,55,54,49,44,52,53,46,52,54,52,53,48,52,93,44,91,45,49,48,57,46,51,53,54,52,49,55,44,52,53,46,52,54,52,51,50,54,93,44,91,45,49,48,57,46,53,54,49,57,50,52,44,52,53,46,51,54,50,56,52,51,93,44,91,45,49,48,57,46,54,56,55,55,57,50,44,52,53,46,49,54,55,51,51,57,93,44,91,45,49,48,57,46,55,57,56,54,55,51,44,52,53,46,49,54,55,51,51,57,93,44,91,45,49,48,57,46,55,57,56,52,56,51,44,52,53,46,48,48,50,51,51,51,93,44,91,45,49,48,56,46,54,50,49,51,49,53,44,52,53,46,48,48,48,51,54,49,93,44,91,45,49,48,56,46,50,52,57,52,49,50,44,52,52,46,57,57,57,57,48,52,93,44,91,45,49,48,56,46,49,50,50,49,56,52,44,52,53,46,50,49,54,51,49,55,93,44,91,45,49,48,56,46,54,57,57,54,49,54,44,52,53,46,50,49,55,55,48,57,93,44,91,45,49,48,56,46,54,56,50,50,50,51,44,52,53,46,52,51,51,49,51,50,93,44,91,45,49,48,56,46,54,52,53,51,50,53,44,52,53,46,52,54,52,48,55,51,93,44,91,45,49,48,56,46,56,52,51,48,49,54,44,52,53,46,54,49,49,48,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,83,116,97,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,57,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,52,48,52,44,52,50,46,48,57,48,57,50,50,93,44,91,45,57,55,46,51,54,56,48,55,44,52,49,46,55,52,51,50,48,55,93,44,91,45,57,55,46,50,53,50,52,50,53,44,52,49,46,55,52,51,48,56,53,93,44,91,45,57,55,46,48,49,57,57,49,49,44,52,49,46,55,52,50,57,56,93,44,91,45,57,55,46,48,49,57,51,53,57,44,52,50,46,48,57,48,53,55,55,93,44,91,45,57,55,46,51,54,56,52,48,52,44,52,50,46,48,57,48,57,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,112,112,108,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,53,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,49,53,51,49,44,51,49,46,57,54,54,49,56,50,93,44,91,45,56,50,46,52,51,49,51,54,50,44,51,49,46,56,51,55,57,57,51,93,44,91,45,56,50,46,53,50,48,50,53,49,44,51,49,46,56,51,56,51,56,56,93,44,91,45,56,50,46,53,50,49,52,50,44,51,49,46,55,49,48,55,57,54,93,44,91,45,56,50,46,50,50,54,53,56,53,44,51,49,46,53,51,48,54,57,57,93,44,91,45,56,50,46,49,51,50,55,57,52,44,51,49,46,52,55,49,50,54,50,93,44,91,45,56,50,46,49,51,51,48,49,51,44,51,49,46,55,55,51,52,48,52,93,44,91,45,56,50,46,48,52,56,53,56,50,44,51,49,46,56,50,55,48,55,53,93,44,91,45,56,50,46,50,50,53,48,52,50,44,51,49,46,57,49,51,48,55,52,93,44,91,45,56,50,46,52,51,49,53,51,49,44,51,49,46,57,54,54,49,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,57,49,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,52,55,57,51,51,44,52,49,46,56,54,51,49,48,52,93,44,91,45,57,51,46,51,50,56,54,49,52,44,52,49,46,53,48,55,56,50,52,93,44,91,45,57,50,46,56,55,49,52,50,49,44,52,49,46,53,48,56,53,50,50,93,44,91,45,57,50,46,55,53,54,53,48,56,44,52,49,46,53,48,56,55,57,52,93,44,91,45,57,50,46,55,54,53,57,57,57,44,52,49,46,56,54,50,51,55,51,93,44,91,45,57,51,46,50,51,49,56,53,56,44,52,49,46,56,54,50,55,49,49,93,44,91,45,57,51,46,51,52,55,57,51,51,44,52,49,46,56,54,51,49,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,50,50,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,55,51,50,50,55,44,51,49,46,56,57,51,56,53,54,93,44,91,45,56,56,46,54,50,50,51,57,52,44,51,49,46,56,53,55,49,57,51,93,44,91,45,56,56,46,57,49,48,52,53,57,44,51,49,46,56,50,54,54,52,57,93,44,91,45,56,56,46,57,52,51,51,53,53,44,51,49,46,56,50,52,53,54,53,93,44,91,45,56,56,46,57,52,51,52,54,56,44,51,49,46,52,51,51,52,53,56,93,44,91,45,56,56,46,56,52,49,55,48,55,44,51,49,46,52,51,51,55,48,51,93,44,91,45,56,56,46,52,52,57,52,51,56,44,51,49,46,52,51,53,56,51,55,93,44,91,45,56,56,46,52,54,52,52,51,44,51,49,46,54,57,55,57,53,50,93,44,91,45,56,56,46,52,55,51,50,50,55,44,51,49,46,56,57,51,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,67,111,116,116,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,49,55,51,52,44,51,52,46,51,49,52,49,48,50,93,44,91,45,49,48,48,46,53,49,56,54,57,49,44,51,51,46,56,51,53,54,53,93,44,91,45,49,48,48,46,48,52,56,52,56,44,51,51,46,56,51,53,57,55,52,93,44,91,45,49,48,48,46,48,52,55,48,50,56,44,51,52,46,50,50,57,55,56,93,44,91,45,57,57,46,57,57,55,54,50,49,44,51,52,46,50,50,52,51,53,53,93,44,91,45,57,57,46,57,57,55,55,50,44,51,52,46,51,49,49,56,50,57,93,44,91,45,49,48,48,46,52,49,55,55,56,51,44,51,52,46,51,49,51,53,50,52,93,44,91,45,49,48,48,46,53,49,55,51,52,44,51,52,46,51,49,52,49,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,115,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,53,56,48,51,54,44,51,54,46,56,57,52,53,49,52,93,44,91,45,55,55,46,54,53,53,56,52,49,44,51,54,46,55,49,51,53,51,57,93,44,91,45,55,55,46,55,54,55,49,53,44,51,54,46,53,52,53,51,55,52,93,44,91,45,55,55,46,50,57,54,56,55,53,44,51,54,46,53,52,52,56,53,53,93,44,91,45,55,55,46,51,54,48,57,48,54,44,51,54,46,53,54,52,55,54,93,44,91,45,55,55,46,52,51,48,49,50,55,44,51,54,46,55,48,55,54,53,56,93,44,91,45,55,55,46,53,49,48,51,54,44,51,54,46,56,52,53,48,56,50,93,44,91,45,55,55,46,54,49,57,48,50,57,44,51,54,46,56,55,55,56,52,52,93,44,91,45,55,55,46,54,53,56,48,51,54,44,51,54,46,56,57,52,53,49,52,93,93,44,91,91,45,55,55,46,53,54,51,56,56,56,44,51,54,46,55,48,51,48,54,55,93,44,91,45,55,55,46,53,48,57,51,54,53,44,51,54,46,55,49,54,51,57,56,93,44,91,45,55,55,46,53,48,57,50,52,54,44,51,54,46,54,56,50,57,57,56,93,44,91,45,55,55,46,53,53,54,53,50,52,44,51,54,46,54,55,52,56,55,52,93,44,91,45,55,55,46,53,54,51,56,56,56,44,51,54,46,55,48,51,48,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,56,54,55,49,44,34,98,101,100,115,34,58,49,55,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,48,53,56,53,51,44,50,56,46,49,55,49,54,53,93,44,91,45,56,50,46,48,53,54,50,54,49,44,50,56,46,49,55,49,53,57,50,93,44,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,44,91,45,56,49,46,53,54,51,53,51,51,44,50,55,46,54,52,54,54,52,53,93,44,91,45,56,49,46,49,52,50,49,54,52,44,50,55,46,54,52,51,50,51,56,93,44,91,45,56,49,46,50,49,52,52,48,57,44,50,55,46,56,50,56,53,53,93,44,91,45,56,49,46,50,57,55,49,49,51,44,50,55,46,56,53,57,53,56,50,93,44,91,45,56,49,46,51,56,49,48,50,50,44,50,55,46,57,56,51,51,57,51,93,44,91,45,56,49,46,51,52,54,52,49,56,44,50,56,46,48,56,52,54,57,54,93,44,91,45,56,49,46,52,53,53,55,53,56,44,50,56,46,48,56,52,56,57,93,44,91,45,56,49,46,53,50,52,50,50,55,44,50,56,46,49,52,50,56,48,53,93,44,91,45,56,49,46,53,53,55,52,53,57,44,50,56,46,50,53,57,51,54,50,93,44,91,45,56,49,46,54,53,55,49,56,57,44,50,56,46,50,53,57,50,49,55,93,44,91,45,56,49,46,54,53,55,50,54,56,44,50,56,46,51,52,55,48,57,56,93,44,91,45,56,49,46,57,53,55,54,52,49,44,50,56,46,51,52,53,49,56,93,44,91,45,56,50,46,48,53,53,56,49,57,44,50,56,46,51,49,50,55,57,52,93,44,91,45,56,50,46,49,48,53,56,53,51,44,50,56,46,49,55,49,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,53,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,48,51,34,44,34,78,65,77,69,34,58,34,89,111,117,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,49,52,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,44,91,45,57,56,46,57,53,48,56,55,53,44,51,50,46,57,53,54,57,49,56,93,44,91,45,57,56,46,53,55,53,54,49,54,44,51,50,46,57,53,52,51,52,57,93,44,91,45,57,56,46,52,50,54,53,53,51,44,51,51,46,48,48,55,57,49,51,93,44,91,45,57,56,46,52,50,48,54,54,54,44,51,51,46,51,57,54,49,57,53,93,44,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,84,97,108,108,97,112,111,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,54,51,54,44,34,98,101,100,115,34,58,49,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,51,54,53,52,44,51,51,46,49,48,54,54,51,52,93,44,91,45,56,54,46,48,48,57,49,55,44,51,51,46,48,57,48,50,54,93,44,91,45,56,54,46,48,48,55,49,56,55,44,51,50,46,55,53,52,57,56,52,93,44,91,45,56,53,46,56,55,57,56,54,44,51,50,46,55,53,52,53,50,56,93,44,91,45,56,53,46,56,56,54,49,52,56,44,51,50,46,52,57,51,48,53,51,93,44,91,45,56,53,46,55,57,56,53,56,53,44,51,50,46,53,56,49,48,56,57,93,44,91,45,56,53,46,54,57,53,56,53,52,44,51,50,46,53,57,53,57,51,51,93,44,91,45,56,53,46,54,57,54,55,53,53,44,51,50,46,54,57,55,52,50,57,93,44,91,45,56,53,46,53,57,51,49,53,49,44,51,50,46,55,50,56,53,51,93,44,91,45,56,53,46,53,57,51,49,55,55,44,51,51,46,49,48,55,51,52,93,44,91,45,56,53,46,54,53,51,54,53,52,44,51,51,46,49,48,54,54,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,82,111,99,107,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,49,50,57,44,34,98,101,100,115,34,58,53,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,56,50,48,48,49,57,44,52,51,46,49,50,50,53,52,53,93,44,91,45,55,48,46,56,55,53,52,51,54,44,52,51,46,48,56,48,52,50,50,93,44,91,45,55,49,46,48,50,54,54,56,54,44,52,51,46,49,51,55,57,52,55,93,44,91,45,55,49,46,50,52,55,51,51,54,44,52,51,46,50,55,53,50,51,50,93,44,91,45,55,49,46,51,57,50,51,56,56,44,52,51,46,48,48,57,51,48,57,93,44,91,45,55,49,46,52,53,48,52,51,54,44,52,50,46,57,51,49,48,50,93,44,91,45,55,49,46,52,50,55,48,54,55,44,52,50,46,56,50,52,56,52,93,44,91,45,55,49,46,50,52,53,52,56,49,44,52,50,46,55,52,50,53,49,52,93,44,91,45,55,49,46,49,51,50,56,48,53,44,52,50,46,56,50,49,52,55,54,93,44,91,45,55,48,46,57,50,57,53,57,52,44,52,50,46,56,56,53,48,51,50,93,44,91,45,55,48,46,55,51,53,48,48,53,44,52,50,46,56,55,52,54,56,53,93,44,91,45,55,48,46,53,55,53,48,57,52,44,52,50,46,57,49,55,49,50,54,93,44,91,45,55,48,46,56,50,48,48,49,57,44,52,51,46,49,50,50,53,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,82,105,111,32,71,114,97,110,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,53,49,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,51,56,52,49,51,44,51,55,46,55,52,56,51,53,51,93,44,91,45,49,48,54,46,53,56,54,51,55,52,44,51,55,46,55,52,55,56,48,57,93,44,91,45,49,48,54,46,54,57,51,56,52,53,44,51,55,46,56,51,53,50,52,52,93,44,91,45,49,48,54,46,55,49,48,55,55,53,44,51,55,46,52,48,52,50,50,56,93,44,91,45,49,48,54,46,54,55,56,51,55,51,44,51,55,46,52,48,51,53,57,54,93,44,91,45,49,48,54,46,48,51,57,51,51,49,44,51,55,46,52,48,48,56,53,50,93,44,91,45,49,48,54,46,48,51,56,52,49,51,44,51,55,46,55,52,56,51,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,80,108,121,109,111,117,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,51,56,52,53,56,44,52,50,46,57,48,56,55,55,49,93,44,91,45,57,54,46,54,51,53,53,54,49,44,52,50,46,55,52,48,56,52,55,93,44,91,45,57,54,46,52,57,56,55,55,54,44,52,50,46,53,54,49,48,52,51,93,44,91,45,57,53,46,56,53,57,57,52,57,44,52,50,46,53,54,48,54,50,93,44,91,45,57,53,46,56,53,57,51,55,55,44,52,50,46,57,48,57,48,57,55,93,44,91,45,57,54,46,53,51,56,52,53,56,44,52,50,46,57,48,56,55,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,89,97,116,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,55,49,51,57,50,44,52,50,46,55,54,52,50,50,51,93,44,91,45,55,55,46,51,49,51,48,48,52,44,52,50,46,55,54,49,50,54,53,93,44,91,45,55,55,46,51,54,54,53,48,53,44,52,50,46,53,55,54,51,54,56,93,44,91,45,55,55,46,49,52,51,55,57,53,44,52,50,46,53,55,54,56,54,57,93,44,91,45,55,55,46,49,48,55,50,48,51,44,52,50,46,52,56,51,55,55,49,93,44,91,45,55,54,46,56,56,57,56,48,53,44,52,50,46,52,54,51,48,53,52,93,44,91,45,55,54,46,56,57,53,53,57,54,44,52,50,46,53,52,49,53,51,55,93,44,91,45,55,54,46,56,57,53,51,52,57,44,52,50,46,54,53,54,50,53,53,93,44,91,45,55,54,46,57,55,49,51,57,50,44,52,50,46,55,54,52,50,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,75,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,54,51,50,53,55,44,34,98,101,100,115,34,58,52,54,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,52,51,56,48,57,51,44,52,55,46,55,55,55,56,49,52,93,44,91,45,49,50,50,46,52,52,55,48,49,55,44,52,55,46,53,52,48,48,52,52,93,44,91,45,49,50,50,46,53,51,54,57,57,51,44,52,55,46,52,48,51,51,53,53,93,44,91,45,49,50,50,46,51,51,52,57,49,52,44,52,55,46,50,53,55,51,54,54,93,44,91,45,49,50,50,46,49,52,51,57,55,54,44,52,55,46,50,53,55,53,50,54,93,44,91,45,49,50,50,46,48,57,52,55,54,52,44,52,55,46,49,57,52,57,55,55,93,44,91,45,49,50,49,46,57,50,56,49,57,53,44,52,55,46,49,52,55,51,53,56,93,44,91,45,49,50,49,46,55,57,54,52,54,52,44,52,55,46,49,55,51,48,53,57,93,44,91,45,49,50,49,46,51,55,57,57,54,49,44,52,55,46,48,56,55,50,52,56,93,44,91,45,49,50,49,46,51,55,57,54,56,50,44,52,55,46,48,56,55,52,57,53,93,44,91,45,49,50,49,46,51,49,53,53,51,52,44,52,55,46,49,51,51,56,52,52,93,44,91,45,49,50,49,46,51,52,49,50,48,51,44,52,55,46,50,56,49,50,54,49,93,44,91,45,49,50,49,46,52,54,51,57,53,49,44,52,55,46,51,55,48,53,55,56,93,44,91,45,49,50,49,46,49,55,50,49,57,50,44,52,55,46,53,57,48,50,51,51,93,44,91,45,49,50,49,46,49,49,51,53,54,57,44,52,55,46,53,57,55,50,56,56,93,44,91,45,49,50,49,46,49,49,57,49,55,57,44,52,55,46,55,55,57,57,51,51,93,44,91,45,49,50,49,46,57,57,49,55,55,53,44,52,55,46,55,55,53,51,52,57,93,44,91,45,49,50,50,46,52,51,56,48,57,51,44,52,55,46,55,55,55,56,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,68,101,115,99,104,117,116,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,54,52,48,44,34,98,101,100,115,34,58,51,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,49,48,55,53,51,52,44,52,52,46,51,57,48,54,93,44,91,45,49,50,49,46,56,52,51,49,51,56,44,52,52,46,51,57,50,54,51,93,44,91,45,49,50,49,46,56,49,57,52,50,57,44,52,52,46,50,54,50,51,57,52,93,44,91,45,49,50,49,46,55,54,56,48,55,44,52,52,46,49,49,53,50,52,53,93,44,91,45,49,50,49,46,56,53,55,48,54,51,44,52,51,46,57,54,53,50,52,56,93,44,91,45,49,50,49,46,57,55,50,57,51,49,44,52,51,46,56,54,49,49,53,54,93,44,91,45,49,50,50,46,48,48,50,51,54,50,44,52,51,46,54,49,53,52,57,56,93,44,91,45,49,50,49,46,51,51,50,57,54,57,44,52,51,46,54,49,54,54,52,53,93,44,91,45,49,49,57,46,56,57,54,53,56,49,44,52,51,46,54,49,49,49,54,52,93,44,91,45,49,49,57,46,56,57,55,52,51,52,44,52,51,46,54,57,56,50,93,44,91,45,49,50,48,46,50,53,55,55,55,55,44,52,51,46,54,57,56,55,54,50,93,44,91,45,49,50,48,46,51,55,56,49,48,55,44,52,51,46,55,56,53,52,50,57,93,44,91,45,49,50,48,46,51,55,56,55,52,44,52,51,46,56,55,50,51,54,50,93,44,91,45,49,50,48,46,55,52,55,56,52,56,44,52,51,46,56,55,49,51,51,49,93,44,91,45,49,50,48,46,55,52,56,50,52,57,44,52,51,46,57,53,55,51,49,93,44,91,45,49,50,48,46,57,56,54,53,56,55,44,52,51,46,57,54,48,56,53,50,93,44,91,45,49,50,48,46,57,56,55,50,55,49,44,52,52,46,49,51,52,48,50,54,93,44,91,45,49,50,49,46,49,48,50,55,55,51,44,52,52,46,49,51,56,49,50,53,93,44,91,45,49,50,49,46,49,48,55,53,51,52,44,52,52,46,51,57,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,80,111,116,116,97,119,97,116,116,97,109,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,53,48,51,44,34,98,101,100,115,34,58,53,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,51,55,55,57,49,44,52,49,46,51,57,48,55,53,50,93,44,91,45,57,53,46,57,50,51,53,52,56,44,52,49,46,49,57,48,56,53,93,44,91,45,57,53,46,56,56,48,53,50,49,44,52,49,46,49,53,57,56,55,52,93,44,91,45,57,53,46,51,56,52,51,52,57,44,52,49,46,49,54,48,48,49,49,93,44,91,45,57,53,46,49,53,53,56,53,49,44,52,49,46,49,53,57,50,51,54,93,44,91,45,57,53,46,49,53,52,55,50,50,44,52,49,46,53,48,53,50,49,49,93,44,91,45,57,53,46,52,57,55,57,57,55,44,52,49,46,53,48,54,48,55,52,93,44,91,45,57,53,46,57,57,54,49,57,52,44,52,49,46,53,48,54,57,54,93,44,91,45,57,53,46,57,51,55,55,57,49,44,52,49,46,51,57,48,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,57,34,44,34,78,65,77,69,34,58,34,87,114,105,103,104,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,56,54,54,55,49,44,51,55,46,52,56,49,53,52,53,93,44,91,45,57,50,46,54,56,53,56,54,55,44,51,55,46,48,54,55,48,53,49,93,44,91,45,57,50,46,50,53,49,51,53,57,44,51,55,46,48,53,57,54,53,51,93,44,91,45,57,50,46,50,53,50,50,54,49,44,51,55,46,52,55,50,57,52,52,93,44,91,45,57,50,46,54,56,54,54,55,49,44,51,55,46,52,56,49,53,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,84,111,111,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,55,54,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,49,57,51,52,49,44,52,56,46,57,57,56,52,55,53,93,44,91,45,49,49,50,46,49,56,52,55,56,52,44,52,56,46,52,55,55,53,55,56,93,44,91,45,49,49,50,46,48,48,52,52,51,54,44,52,56,46,52,52,56,56,56,54,93,44,91,45,49,49,49,46,57,57,48,56,56,57,44,52,56,46,51,57,52,50,54,53,93,44,91,45,49,49,49,46,55,57,53,57,49,44,52,56,46,51,57,51,48,56,49,93,44,91,45,49,49,49,46,54,54,53,55,53,54,44,52,56,46,51,52,57,52,53,54,93,44,91,45,49,49,49,46,54,54,53,53,57,57,44,52,56,46,50,49,57,53,52,57,93,44,91,45,49,49,49,46,52,48,57,48,49,56,44,52,56,46,50,49,57,53,52,50,93,44,91,45,49,49,49,46,50,55,53,51,48,54,44,52,56,46,50,49,57,53,51,49,93,44,91,45,49,49,49,46,50,54,57,56,54,50,44,52,56,46,57,57,55,50,51,93,44,91,45,49,49,50,46,49,57,51,52,49,44,52,56,46,57,57,56,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,84,105,111,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,50,53,51,51,53,57,44,52,50,46,52,48,55,53,54,56,93,44,91,45,55,54,46,50,53,48,49,52,57,44,52,50,46,50,57,54,54,55,54,93,44,91,45,55,54,46,52,49,53,51,48,53,44,52,50,46,51,49,56,51,54,56,93,44,91,45,55,54,46,53,51,56,51,52,57,44,52,50,46,50,56,49,55,53,53,93,44,91,45,55,54,46,53,53,55,54,50,52,44,52,50,46,48,48,48,49,54,93,44,91,45,55,54,46,49,52,53,53,49,57,44,52,49,46,57,57,56,56,52,50,93,44,91,45,55,54,46,49,48,53,56,52,44,52,49,46,57,57,56,56,53,56,93,44,91,45,55,54,46,49,49,54,50,50,53,44,52,50,46,49,56,53,54,49,93,44,91,45,55,54,46,48,56,49,49,51,52,44,52,50,46,50,51,48,52,57,53,93,44,91,45,55,54,46,49,51,48,49,56,49,44,52,50,46,52,49,48,51,51,55,93,44,91,45,55,54,46,50,53,51,51,53,57,44,52,50,46,52,48,55,53,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,55,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,53,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,51,52,52,54,51,44,51,48,46,52,48,50,56,52,51,93,44,91,45,57,55,46,48,56,49,56,51,52,44,51,48,46,50,53,57,51,53,55,93,44,91,45,57,55,46,48,50,52,52,54,49,44,51,48,46,48,53,49,52,51,53,93,44,91,45,57,54,46,55,57,52,53,53,50,44,51,48,46,49,54,48,53,52,53,93,44,91,45,57,54,46,54,52,48,56,56,51,44,51,48,46,50,57,54,55,56,54,93,44,91,45,57,54,46,55,53,51,56,51,53,44,51,48,46,51,50,57,51,52,56,93,44,91,45,57,54,46,57,54,51,54,50,57,44,51,48,46,53,53,55,49,54,57,93,44,91,45,57,55,46,49,53,53,50,49,57,44,51,48,46,52,53,55,51,52,52,93,44,91,45,57,55,46,51,51,52,52,54,51,44,51,48,46,52,48,50,56,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,57,48,50,44,34,98,101,100,115,34,58,52,53,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,55,56,49,51,50,44,51,51,46,55,52,51,53,48,55,93,44,91,45,56,52,46,54,53,54,52,51,51,44,51,51,46,54,53,57,52,48,57,93,44,91,45,56,52,46,56,48,56,57,51,52,44,51,51,46,53,55,52,48,56,53,93,44,91,45,56,52,46,56,53,48,55,49,51,44,51,51,46,53,49,49,52,53,55,93,44,91,45,56,52,46,54,48,57,53,52,44,51,51,46,53,48,50,53,49,49,93,44,91,45,56,52,46,52,53,56,54,54,53,44,51,51,46,53,53,48,57,51,51,93,44,91,45,56,52,46,52,53,55,55,50,54,44,51,51,46,54,52,56,56,54,54,93,44,91,45,56,52,46,51,53,48,50,50,52,44,51,51,46,54,52,55,57,48,56,93,44,91,45,56,52,46,51,52,55,56,49,57,44,51,51,46,57,54,51,50,56,56,93,44,91,45,56,52,46,50,55,55,48,57,51,44,51,51,46,57,53,55,54,49,52,93,44,91,45,56,52,46,48,57,55,54,57,51,44,51,52,46,48,53,48,55,48,56,93,44,91,45,56,52,46,50,53,56,57,51,52,44,51,52,46,49,48,57,53,51,57,93,44,91,45,56,52,46,50,53,56,55,52,51,44,51,52,46,49,56,53,57,48,57,93,44,91,45,56,52,46,51,50,56,50,54,51,44,51,52,46,49,56,54,49,52,52,93,44,91,45,56,52,46,52,49,56,57,50,55,44,51,52,46,48,55,51,50,57,56,93,44,91,45,56,52,46,51,56,51,48,50,55,44,51,51,46,57,54,51,56,93,44,91,45,56,52,46,52,55,49,51,51,44,51,51,46,56,50,53,57,48,53,93,44,91,45,56,52,46,53,55,56,49,51,50,44,51,51,46,55,52,51,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,57,48,51,44,34,98,101,100,115,34,58,51,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,50,56,53,49,50,44,51,50,46,48,56,52,52,55,53,93,44,91,45,57,53,46,52,52,54,48,50,52,44,51,49,46,56,52,55,57,56,55,93,44,91,45,57,53,46,51,54,54,49,56,55,44,51,49,46,55,50,54,55,53,51,93,44,91,45,57,53,46,50,56,57,54,54,49,44,51,49,46,54,56,51,57,57,55,93,44,91,45,57,53,46,50,55,51,50,48,51,44,51,49,46,53,57,50,56,56,54,93,44,91,45,57,53,46,49,52,57,49,57,56,44,51,49,46,53,54,56,56,48,55,93,44,91,45,57,53,46,48,48,51,51,52,53,44,51,49,46,52,50,53,55,49,93,44,91,45,57,52,46,56,54,53,56,53,55,44,51,49,46,53,50,54,57,49,54,93,44,91,45,57,52,46,57,54,53,50,50,51,44,51,49,46,54,57,51,56,56,53,93,44,91,45,57,52,46,57,51,55,53,51,50,44,51,49,46,56,52,53,53,53,53,93,44,91,45,57,52,46,57,56,53,48,51,55,44,51,49,46,56,52,54,49,57,51,93,44,91,45,57,52,46,57,56,53,50,55,50,44,51,50,46,49,51,55,57,56,57,93,44,91,45,57,53,46,52,53,57,57,48,56,44,51,50,46,49,51,53,53,53,57,93,44,91,45,57,53,46,52,50,56,53,49,50,44,51,50,46,48,56,52,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,117,100,114,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,51,53,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,49,48,51,56,55,44,51,57,46,48,54,52,50,48,52,93,44,91,45,57,49,46,54,51,51,57,57,56,44,51,57,46,48,53,57,48,53,55,93,44,91,45,57,49,46,54,50,57,53,57,56,44,51,57,46,49,52,55,56,53,51,93,44,91,45,57,49,46,52,48,57,48,51,51,44,51,57,46,49,52,50,53,52,50,93,44,91,45,57,49,46,52,51,56,50,51,53,44,51,57,46,51,49,56,55,49,54,93,44,91,45,57,49,46,55,49,55,57,54,56,44,51,57,46,51,51,57,49,50,50,93,44,91,45,57,50,46,51,49,48,48,50,56,44,51,57,46,51,52,55,55,57,53,93,44,91,45,57,50,46,51,49,52,52,55,49,44,51,57,46,50,52,54,52,53,52,93,44,91,45,57,50,46,49,48,52,51,55,52,44,51,57,46,50,51,57,56,48,57,93,44,91,45,57,50,46,49,49,48,51,56,55,44,51,57,46,48,54,52,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,108,108,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,53,54,56,44,34,98,101,100,115,34,58,49,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,44,91,45,56,48,46,57,48,48,49,57,54,44,51,50,46,56,51,50,56,49,51,93,44,91,45,56,48,46,56,50,54,51,48,57,44,51,50,46,55,48,52,51,50,49,93,44,91,45,56,48,46,54,56,52,56,53,51,44,51,50,46,54,53,54,48,57,55,93,44,91,45,56,48,46,53,48,50,57,52,52,44,51,50,46,52,57,53,54,53,50,93,44,91,45,56,48,46,51,48,53,55,49,49,44,51,50,46,51,57,55,53,56,57,93,44,91,45,56,48,46,50,50,51,53,57,44,51,50,46,52,56,50,53,54,53,93,44,91,45,56,48,46,52,49,54,53,56,54,44,51,50,46,53,52,54,51,49,56,93,44,91,45,56,48,46,52,48,51,50,56,50,44,51,50,46,54,53,49,54,50,50,93,44,91,45,56,48,46,52,53,51,54,51,44,51,50,46,55,51,57,57,93,44,91,45,56,48,46,52,48,49,51,52,44,51,50,46,56,53,56,52,54,54,93,44,91,45,56,48,46,52,48,50,50,50,54,44,51,51,46,48,53,51,50,51,56,93,44,91,45,56,48,46,54,50,51,56,49,53,44,51,51,46,48,54,54,57,50,55,93,44,91,45,56,48,46,55,57,48,50,57,54,44,51,51,46,49,56,48,56,52,93,44,91,45,56,48,46,55,57,55,57,49,50,44,51,51,46,49,55,54,57,52,52,93,44,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,54,53,50,44,34,98,101,100,115,34,58,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,48,56,56,51,50,44,52,51,46,49,57,55,55,50,52,93,44,91,45,56,57,46,48,49,51,53,56,50,44,52,50,46,56,52,55,54,51,93,44,91,45,56,56,46,55,55,55,48,55,54,44,52,50,46,56,52,50,54,57,52,93,44,91,45,56,56,46,53,52,49,53,51,53,44,52,50,46,56,52,50,57,57,54,93,44,91,45,56,56,46,53,51,53,56,52,51,44,52,51,46,49,57,54,48,52,56,93,44,91,45,56,57,46,48,48,56,56,51,50,44,52,51,46,49,57,55,55,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,54,50,51,44,34,98,101,100,115,34,58,49,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,56,48,57,56,49,54,44,51,54,46,49,52,57,53,54,55,93,44,91,45,57,48,46,56,53,50,48,54,52,44,51,53,46,57,54,56,48,57,50,93,44,91,45,57,48,46,51,56,55,51,55,56,44,51,53,46,57,54,52,55,48,56,93,44,91,45,57,48,46,51,55,55,56,57,44,51,53,46,57,57,53,54,56,51,93,44,91,45,57,48,46,49,57,48,50,48,55,44,51,54,46,50,48,49,51,54,49,93,44,91,45,57,48,46,51,49,57,56,50,44,51,54,46,50,53,57,49,52,52,93,44,91,45,57,48,46,56,48,54,54,49,53,44,51,54,46,50,54,54,56,54,53,93,44,91,45,57,48,46,56,48,57,56,49,54,44,51,54,46,49,52,57,53,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,72,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,55,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,57,52,52,57,51,57,44,51,52,46,55,52,56,50,56,49,93,44,91,45,49,48,48,46,57,52,54,49,51,50,44,51,52,46,51,49,50,55,53,57,93,44,91,45,49,48,48,46,53,49,55,51,52,44,51,52,46,51,49,52,49,48,50,93,44,91,45,49,48,48,46,52,49,55,55,56,51,44,51,52,46,51,49,51,53,50,52,93,44,91,45,49,48,48,46,52,49,53,56,57,53,44,51,52,46,55,52,55,53,50,53,93,44,91,45,49,48,48,46,53,52,48,55,48,51,44,51,52,46,55,52,55,55,50,51,93,44,91,45,49,48,48,46,57,52,52,57,51,57,44,51,52,46,55,52,56,50,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,117,114,110,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,57,51,55,48,53,44,52,54,46,49,53,55,51,50,49,93,44,91,45,57,50,46,51,53,48,52,48,55,44,52,54,46,48,49,54,51,54,56,93,44,91,45,57,50,46,55,49,50,53,48,51,44,52,53,46,56,57,49,55,48,53,93,44,91,45,57,50,46,56,52,49,48,53,49,44,52,53,46,55,51,48,48,50,52,93,44,91,45,57,50,46,56,56,55,48,54,55,44,52,53,46,54,52,52,49,52,56,93,44,91,45,57,50,46,53,50,57,49,48,55,44,52,53,46,54,52,50,48,55,54,93,44,91,45,57,50,46,53,50,56,49,57,56,44,52,53,46,55,50,56,54,56,93,44,91,45,57,50,46,49,53,52,52,52,51,44,52,53,46,55,50,53,54,49,54,93,44,91,45,57,50,46,49,53,52,56,56,56,44,52,53,46,54,51,57,55,52,50,93,44,91,45,57,50,46,48,51,49,52,49,55,44,52,53,46,54,51,57,57,50,56,93,44,91,45,57,50,46,48,52,57,54,51,54,44,52,54,46,49,53,55,53,57,55,93,44,91,45,57,50,46,50,57,51,55,48,53,44,52,54,46,49,53,55,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,84,111,114,114,97,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,49,49,55,56,49,44,51,52,46,56,55,48,50,53,50,93,44,91,45,49,48,54,46,52,54,51,56,54,56,44,51,52,46,56,55,48,49,57,52,93,44,91,45,49,48,54,46,52,54,57,55,57,44,51,52,46,53,50,49,50,49,55,93,44,91,45,49,48,54,46,52,49,54,57,50,52,44,51,52,46,52,51,57,54,56,55,93,44,91,45,49,48,54,46,52,49,53,57,55,50,44,51,52,46,50,53,57,56,50,50,93,44,91,45,49,48,53,46,57,50,53,57,54,56,44,51,52,46,50,53,57,57,57,93,44,91,45,49,48,53,46,51,49,51,50,49,56,44,51,52,46,50,54,48,48,51,49,93,44,91,45,49,48,53,46,51,49,51,48,55,50,44,51,52,46,51,52,55,50,48,53,93,44,91,45,49,48,53,46,50,57,48,51,57,54,44,51,52,46,54,48,54,55,54,54,93,44,91,45,49,48,53,46,50,57,48,55,57,49,44,51,53,46,48,52,50,48,51,93,44,91,45,49,48,53,46,55,49,52,52,49,57,44,51,53,46,48,52,49,54,48,53,93,44,91,45,49,48,54,46,50,52,51,56,55,52,44,51,53,46,48,52,48,48,48,51,93,44,91,45,49,48,54,46,50,52,51,55,54,50,44,51,52,46,57,53,51,51,53,53,93,44,91,45,49,48,54,46,49,52,57,55,51,55,44,51,52,46,56,55,48,49,52,50,93,44,91,45,49,48,54,46,52,49,49,55,56,49,44,51,52,46,56,55,48,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,80,97,99,105,102,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,50,56,49,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,49,55,53,49,51,49,44,52,54,46,55,57,51,55,51,50,93,44,91,45,49,50,52,46,49,50,57,57,53,55,44,52,54,46,52,50,54,57,53,57,93,44,91,45,49,50,52,46,49,53,57,53,52,54,44,52,54,46,50,54,49,49,51,50,93,44,91,45,49,50,51,46,57,55,54,50,55,53,44,52,54,46,50,54,57,57,48,55,93,44,91,45,49,50,51,46,56,55,49,56,54,57,44,52,54,46,50,51,52,57,52,57,93,44,91,45,49,50,51,46,55,50,56,51,49,54,44,52,54,46,50,54,52,53,52,49,93,44,91,45,49,50,51,46,55,50,54,53,53,55,44,52,54,46,51,56,52,56,55,50,93,44,91,45,49,50,51,46,51,53,56,51,51,52,44,52,54,46,51,56,52,48,50,53,93,44,91,45,49,50,51,46,51,55,48,57,53,44,52,54,46,55,57,50,49,50,57,93,44,91,45,49,50,52,46,49,55,53,49,51,49,44,52,54,46,55,57,51,55,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,80,101,110,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,48,50,48,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,49,52,48,48,55,44,51,52,46,55,50,49,55,57,53,93,44,91,45,55,56,46,50,53,52,52,52,49,44,51,52,46,53,53,51,53,57,53,93,44,91,45,55,56,46,49,55,54,53,48,49,44,51,52,46,52,54,53,51,53,54,93,44,91,45,55,56,46,50,53,54,48,56,53,44,51,52,46,51,57,57,52,54,57,93,44,91,45,55,56,46,49,54,50,51,53,44,51,52,46,51,53,55,48,48,55,93,44,91,45,55,56,46,48,50,57,57,50,50,44,51,52,46,51,51,49,55,54,56,93,44,91,45,55,55,46,56,50,51,49,48,50,44,51,52,46,51,56,57,50,56,55,93,44,91,45,55,55,46,54,55,53,50,55,54,44,51,52,46,50,53,51,49,51,93,44,91,45,55,55,46,52,56,52,53,51,56,44,51,52,46,51,57,57,55,48,53,93,44,91,45,55,55,46,53,55,52,57,50,52,44,51,52,46,52,55,56,54,56,49,93,44,91,45,55,55,46,54,56,48,49,50,55,44,51,52,46,55,50,48,53,57,53,93,44,91,45,55,56,46,49,49,52,48,48,55,44,51,52,46,55,50,49,55,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,49,34,44,34,78,65,77,69,34,58,34,72,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,57,48,49,44,34,98,101,100,115,34,58,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,49,55,48,54,54,44,51,50,46,53,53,53,52,56,52,93,44,91,45,57,56,46,48,54,54,56,51,54,44,51,50,46,53,53,56,56,50,50,93,44,91,45,57,56,46,48,54,56,53,52,53,44,51,50,46,53,49,49,54,50,54,93,44,91,45,57,55,46,57,52,53,54,50,53,44,51,50,46,50,51,51,52,54,56,93,44,91,45,57,55,46,55,56,50,55,54,44,51,50,46,51,49,54,52,57,51,93,44,91,45,57,55,46,54,49,53,50,56,54,44,51,50,46,51,49,56,54,49,56,93,44,91,45,57,55,46,54,49,55,48,54,54,44,51,50,46,53,53,53,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,83,116,97,110,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,48,49,46,49,53,52,53,49,54,44,52,52,46,54,56,57,57,52,55,93,44,91,45,49,48,49,46,49,54,54,55,53,51,44,52,52,46,49,54,56,48,56,53,93,44,91,45,49,48,49,46,48,52,54,57,49,54,44,52,52,46,49,54,56,52,56,52,93,44,91,45,49,48,48,46,51,54,55,50,48,55,44,52,52,46,49,54,56,54,57,52,93,44,91,45,49,48,48,46,51,54,55,50,52,55,44,52,52,46,49,57,52,54,50,49,93,44,91,45,57,57,46,57,51,56,50,49,55,44,52,52,46,49,57,53,49,57,53,93,44,91,45,49,48,48,46,48,56,53,51,51,44,52,52,46,51,48,56,52,53,49,93,44,91,45,49,48,48,46,51,54,53,51,57,44,52,52,46,51,53,53,53,50,52,93,44,91,45,49,48,48,46,51,56,54,51,55,54,44,52,52,46,52,52,48,48,48,56,93,44,91,45,49,48,48,46,53,55,53,55,57,54,44,52,52,46,52,57,49,55,49,51,93,44,91,45,49,48,48,46,53,50,54,52,57,56,44,52,52,46,53,52,55,52,50,50,93,44,91,45,49,48,48,46,54,52,48,48,54,49,44,52,52,46,53,56,51,55,50,51,93,44,91,45,49,48,48,46,54,49,51,56,48,53,44,52,52,46,55,48,55,49,51,53,93,44,91,45,49,48,48,46,55,49,55,54,52,52,44,52,52,46,55,55,48,57,51,93,44,91,45,49,48,48,46,56,50,57,55,57,53,44,52,52,46,55,56,51,50,52,56,93,44,91,45,49,48,49,46,48,50,50,54,49,49,44,52,52,46,55,50,52,49,53,51,93,44,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,48,52,56,54,44,34,98,101,100,115,34,58,49,55,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,48,49,48,54,50,44,51,57,46,55,50,50,52,49,56,93,44,91,45,49,50,48,46,48,48,51,55,55,51,44,51,57,46,52,52,53,48,53,54,93,44,91,45,49,50,48,46,48,48,54,51,50,51,44,51,57,46,51,49,54,52,57,54,93,44,91,45,49,50,48,46,48,48,52,50,57,55,44,51,57,46,49,54,53,54,48,51,93,44,91,45,49,49,57,46,56,56,48,55,56,55,44,51,57,46,49,54,53,53,48,57,93,44,91,45,49,49,57,46,55,49,50,54,52,53,44,51,57,46,50,53,48,56,55,49,93,44,91,45,49,49,57,46,54,55,55,52,55,54,44,51,57,46,50,56,48,56,55,49,93,44,91,45,49,49,57,46,54,57,53,54,52,51,44,51,57,46,53,50,48,48,50,51,93,44,91,45,49,49,57,46,50,56,51,54,51,55,44,51,57,46,54,50,49,53,54,49,93,44,91,45,49,49,57,46,49,56,57,51,52,50,44,51,57,46,54,53,48,56,55,93,44,91,45,49,49,57,46,50,50,53,49,55,54,44,51,57,46,57,57,57,51,56,53,93,44,91,45,49,49,57,46,51,51,57,50,57,54,44,51,57,46,57,57,56,54,48,57,93,44,91,45,49,49,57,46,51,51,56,53,48,52,44,52,48,46,53,49,55,56,48,53,93,44,91,45,49,49,57,46,51,49,51,48,51,55,44,52,48,46,53,49,56,51,49,52,93,44,91,45,49,49,57,46,51,48,57,53,57,56,44,52,48,46,57,54,48,51,55,56,93,44,91,45,49,49,57,46,51,50,57,55,57,49,44,52,48,46,57,54,48,51,57,52,93,44,91,45,49,49,57,46,51,50,52,49,56,52,44,52,49,46,57,57,51,57,50,51,93,44,91,45,49,49,57,46,51,54,48,49,50,50,44,52,49,46,57,57,52,50,55,56,93,44,91,45,49,49,57,46,57,57,57,50,51,52,44,52,49,46,57,57,52,57,52,52,93,44,91,45,49,49,57,46,57,57,57,56,54,54,44,52,49,46,49,56,51,57,55,52,93,44,91,45,49,49,57,46,57,57,53,55,48,53,44,52,48,46,51,55,53,56,51,93,44,91,45,49,50,48,46,48,48,49,48,54,50,44,51,57,46,55,50,50,52,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,97,108,108,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,51,51,52,48,49,44,51,55,46,50,50,52,57,57,49,93,44,91,45,56,57,46,48,50,57,56,54,54,44,51,55,46,50,49,49,48,54,53,93,44,91,45,56,57,46,49,55,50,48,56,49,44,51,55,46,48,54,56,51,49,93,44,91,45,56,57,46,49,51,50,57,49,53,44,51,54,46,57,56,50,48,53,55,93,44,91,45,56,57,46,49,48,48,56,54,52,44,51,54,46,57,52,52,48,49,54,93,44,91,45,56,56,46,57,56,57,55,57,55,44,51,54,46,57,49,57,51,51,93,44,91,45,56,56,46,56,49,53,57,53,50,44,51,54,46,57,53,52,49,93,44,91,45,56,56,46,57,51,51,52,48,49,44,51,55,46,50,50,52,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,114,99,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,44,91,45,57,56,46,52,50,48,54,54,54,44,51,51,46,51,57,54,49,57,53,93,44,91,45,57,56,46,52,50,49,52,49,57,44,51,51,46,52,54,54,55,57,55,93,44,91,45,57,56,46,52,50,51,53,55,55,44,51,51,46,56,51,54,48,52,55,93,44,91,45,57,56,46,57,53,51,50,48,50,44,51,51,46,56,51,52,48,50,53,93,44,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,57,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,55,53,54,53,44,51,51,46,56,51,52,48,48,53,93,44,91,45,57,57,46,52,55,52,52,57,56,44,51,51,46,55,51,51,56,52,57,93,44,91,45,57,57,46,52,55,50,52,52,52,44,51,51,46,51,57,57,48,50,51,93,44,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,44,91,45,57,56,46,57,53,51,50,48,50,44,51,51,46,56,51,52,48,50,53,93,44,91,45,57,57,46,52,55,53,54,53,44,51,51,46,56,51,52,48,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,48,53,34,44,34,78,65,77,69,34,58,34,83,97,110,32,65,117,103,117,115,116,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,50,55,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,51,57,57,48,57,49,44,51,49,46,54,53,51,53,57,54,93,44,91,45,57,52,46,51,49,49,49,44,51,49,46,53,56,56,52,56,50,93,44,91,45,57,52,46,51,50,54,54,49,54,44,51,49,46,50,50,52,55,53,52,93,44,91,45,57,52,46,49,50,57,54,51,50,44,51,49,46,48,57,57,50,56,93,44,91,45,57,52,46,48,51,57,48,51,52,44,51,49,46,49,51,52,50,55,49,93,44,91,45,57,52,46,48,52,52,49,53,52,44,51,49,46,52,48,57,57,55,57,93,44,91,45,57,51,46,57,56,51,50,51,57,44,51,49,46,52,54,54,49,49,52,93,44,91,45,57,51,46,57,56,52,52,54,49,44,51,49,46,53,54,57,52,49,57,93,44,91,45,57,52,46,48,57,48,55,49,55,44,51,49,46,54,50,48,54,48,57,93,44,91,45,57,52,46,51,57,57,48,57,49,44,51,49,46,54,53,51,53,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,83,116,111,114,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,50,56,51,54,51,55,44,51,57,46,54,50,49,53,54,49,93,44,91,45,49,49,57,46,54,57,53,54,52,51,44,51,57,46,53,50,48,48,50,51,93,44,91,45,49,49,57,46,54,55,55,52,55,54,44,51,57,46,50,56,48,56,55,49,93,44,91,45,49,49,57,46,55,49,50,54,52,53,44,51,57,46,50,53,48,56,55,49,93,44,91,45,49,49,57,46,52,55,56,56,48,54,44,51,57,46,51,51,55,52,49,54,93,44,91,45,49,49,57,46,50,56,51,54,51,55,44,51,57,46,54,50,49,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,57,34,44,34,78,65,77,69,34,58,34,83,99,104,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,51,50,49,54,44,51,50,46,51,57,55,54,52,57,93,44,91,45,56,52,46,51,57,50,51,49,54,44,51,50,46,52,49,52,48,52,54,93,44,91,45,56,52,46,52,51,48,50,49,56,44,51,50,46,49,54,54,50,53,55,93,44,91,45,56,52,46,49,56,51,53,54,57,44,51,50,46,49,53,56,52,57,51,93,44,91,45,56,52,46,49,56,49,54,53,55,44,51,50,46,50,50,57,55,48,51,93,44,91,45,56,52,46,50,53,52,54,49,51,44,51,50,46,51,55,50,48,53,51,93,44,91,45,56,52,46,51,54,51,50,49,54,44,51,50,46,51,57,55,54,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,70,97,105,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,52,51,52,56,44,34,98,101,100,115,34,58,49,56,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,53,51,48,48,54,55,44,52,49,46,53,50,55,49,57,52,93,44,91,45,55,51,46,53,52,52,55,50,56,44,52,49,46,51,54,54,51,55,53,93,44,91,45,55,51,46,52,56,50,54,57,53,44,52,49,46,50,49,50,55,55,50,93,44,91,45,55,51,46,55,50,55,55,55,53,44,52,49,46,49,48,48,54,57,54,93,44,91,45,55,51,46,54,49,50,56,56,53,44,52,48,46,57,53,48,57,52,51,93,44,91,45,55,51,46,52,51,49,57,49,57,44,52,48,46,57,56,57,48,48,57,93,44,91,45,55,50,46,57,57,57,53,52,55,44,52,49,46,48,56,55,49,48,56,93,44,91,45,55,51,46,49,48,55,52,53,50,44,52,49,46,49,54,56,51,57,55,93,44,91,45,55,51,46,48,54,55,56,53,49,44,52,49,46,51,48,48,57,57,54,93,44,91,45,55,51,46,51,49,48,52,55,51,44,52,49,46,52,54,56,56,49,53,93,44,91,45,55,51,46,52,52,49,52,54,54,44,52,49,46,52,57,49,50,57,52,93,44,91,45,55,51,46,53,49,56,48,56,44,52,49,46,54,54,54,55,50,51,93,44,91,45,55,51,46,53,51,48,48,54,55,44,52,49,46,53,50,55,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,51,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,54,52,52,49,44,51,49,46,48,57,52,50,49,49,93,44,91,45,57,53,46,57,55,51,56,52,49,44,51,49,46,48,57,50,49,53,93,44,91,45,57,54,46,50,52,49,48,50,44,51,48,46,57,55,51,55,51,55,93,44,91,45,57,54,46,49,54,56,51,55,44,51,48,46,56,50,50,57,57,55,93,44,91,45,57,53,46,56,54,51,48,53,57,44,51,48,46,56,54,52,49,50,53,93,44,91,45,57,53,46,54,49,55,56,55,50,44,51,48,46,57,51,48,52,49,56,93,44,91,45,57,53,46,54,55,50,53,57,55,44,51,48,46,57,55,54,50,55,56,93,44,91,45,57,53,46,54,53,54,52,56,55,44,51,49,46,48,55,57,51,51,57,93,44,91,45,57,53,46,55,54,52,52,49,44,51,49,46,48,57,52,50,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,111,97,113,117,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,50,50,49,50,44,34,98,101,100,115,34,58,49,51,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,48,50,55,48,56,52,44,51,56,46,51,48,48,50,53,50,93,44,91,45,49,50,49,46,51,52,52,48,50,52,44,51,56,46,50,50,56,50,54,93,44,91,45,49,50,49,46,52,55,48,57,53,56,44,51,56,46,50,53,57,57,48,50,93,44,91,45,49,50,49,46,53,56,48,48,50,50,44,51,56,46,48,57,52,52,49,52,93,44,91,45,49,50,49,46,53,53,54,57,57,55,44,51,55,46,56,49,54,52,56,56,93,44,91,45,49,50,49,46,53,53,54,54,53,53,44,51,55,46,53,52,50,55,51,50,93,44,91,45,49,50,49,46,52,55,49,57,50,53,44,51,55,46,52,56,49,55,56,51,93,44,91,45,49,50,49,46,49,53,53,56,52,57,44,51,55,46,55,49,57,56,52,52,93,44,91,45,49,50,48,46,57,50,50,49,55,52,44,51,55,46,55,52,55,56,48,54,93,44,91,45,49,50,48,46,57,50,54,52,52,57,44,51,56,46,48,55,55,52,50,49,93,44,91,45,49,50,48,46,57,57,53,52,57,55,44,51,56,46,50,50,53,52,48,50,93,44,91,45,49,50,49,46,48,50,55,48,56,52,44,51,56,46,51,48,48,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,87,105,110,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,53,56,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,56,56,50,53,53,44,51,51,46,50,56,54,48,48,51,93,44,91,45,56,57,46,49,48,56,57,44,51,51,46,49,57,56,48,53,57,93,44,91,45,56,57,46,50,49,51,52,50,50,44,51,51,46,49,57,55,53,52,51,93,44,91,45,56,57,46,50,49,51,57,50,49,44,51,51,46,49,48,57,52,48,50,93,44,91,45,56,57,46,51,49,55,56,53,53,44,51,51,46,49,48,56,56,55,49,93,44,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,44,91,45,56,56,46,57,49,52,52,49,51,44,51,50,46,57,50,54,54,93,44,91,45,56,56,46,56,49,50,55,56,50,44,51,50,46,57,50,53,57,55,51,93,44,91,45,56,56,46,56,49,51,48,53,51,44,51,51,46,50,56,54,52,50,52,93,44,91,45,56,57,46,48,56,56,50,53,53,44,51,51,46,50,56,54,48,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,54,56,50,55,44,51,56,46,53,56,53,52,52,56,93,44,91,45,56,53,46,51,49,52,48,48,54,44,51,56,46,52,57,50,53,57,50,93,44,91,45,56,53,46,50,56,51,48,56,50,44,51,56,46,51,53,56,48,53,52,93,44,91,45,56,52,46,57,57,55,54,54,55,44,51,56,46,51,51,53,53,56,54,93,44,91,45,56,52,46,56,55,48,52,56,50,44,51,56,46,51,53,54,55,53,49,93,44,91,45,56,52,46,56,56,48,50,52,56,44,51,56,46,52,49,54,49,56,93,44,91,45,56,53,46,48,50,57,56,56,56,44,51,56,46,53,49,48,55,54,53,93,44,91,45,56,53,46,48,55,52,53,56,51,44,51,56,46,53,57,54,56,51,56,93,44,91,45,56,53,46,49,54,56,50,55,44,51,56,46,53,56,53,52,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,51,48,53,50,56,44,51,55,46,56,57,49,53,51,56,93,44,91,45,56,53,46,48,50,53,48,50,49,44,51,55,46,54,55,56,56,53,52,93,44,91,45,56,52,46,55,52,52,56,56,56,44,51,55,46,55,49,51,48,55,53,93,44,91,45,56,52,46,55,49,54,57,50,53,44,51,55,46,56,49,53,51,56,57,93,44,91,45,56,52,46,55,48,57,57,49,56,44,51,55,46,56,54,49,57,53,50,93,44,91,45,56,52,46,55,57,54,51,50,55,44,51,55,46,57,55,48,48,56,56,93,44,91,45,56,52,46,57,51,51,48,56,53,44,51,55,46,57,53,52,49,56,54,93,44,91,45,56,53,46,48,51,48,53,50,56,44,51,55,46,56,57,49,53,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,87,104,101,101,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,54,49,49,53,53,44,52,50,46,48,56,56,53,49,56,93,44,91,45,57,56,46,55,53,57,49,51,51,44,52,49,46,55,52,48,51,56,50,93,44,91,45,57,56,46,55,53,50,50,50,53,44,52,49,46,55,52,48,51,55,50,93,44,91,45,57,56,46,50,57,53,55,54,44,52,49,46,55,52,49,49,55,56,93,44,91,45,57,56,46,50,57,53,54,48,50,44,52,49,46,57,49,52,57,53,52,93,44,91,45,57,56,46,51,48,48,53,57,50,44,52,50,46,48,56,56,56,53,51,93,44,91,45,57,56,46,55,54,49,49,53,53,44,52,50,46,48,56,56,53,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,54,55,54,49,51,44,51,56,46,54,49,56,52,50,93,44,91,45,56,51,46,53,50,48,55,53,53,44,51,56,46,55,48,51,48,57,52,93,44,91,45,56,51,46,54,52,52,57,49,51,44,51,56,46,54,51,54,51,52,51,93,44,91,45,56,51,46,54,52,49,56,53,50,44,51,56,46,53,50,53,51,56,49,93,44,91,45,56,51,46,53,56,48,53,54,54,44,51,56,46,52,51,48,49,54,57,93,44,91,45,56,51,46,52,53,50,56,52,56,44,51,56,46,51,56,49,55,57,57,93,44,91,45,56,51,46,51,52,49,51,52,55,44,51,56,46,51,49,57,53,50,49,93,44,91,45,56,51,46,50,51,50,56,57,53,44,51,56,46,51,51,56,55,56,54,93,44,91,45,56,51,46,49,54,54,52,49,57,44,51,56,46,53,48,51,57,54,53,93,44,91,45,56,51,46,48,55,51,54,51,51,44,51,56,46,53,57,48,52,51,56,93,44,91,45,56,51,46,48,51,48,56,53,56,44,51,56,46,55,50,53,53,50,52,93,44,91,45,56,51,46,49,51,52,55,53,52,44,51,56,46,54,51,50,48,49,51,93,44,91,45,56,51,46,50,54,55,54,49,51,44,51,56,46,54,49,56,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,51,56,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,54,54,49,52,44,52,54,46,48,50,49,54,49,93,44,91,45,57,54,46,50,53,52,48,50,50,44,52,53,46,55,53,57,56,50,93,44,91,45,57,53,46,55,53,56,53,48,56,44,52,53,46,55,53,57,57,51,50,93,44,91,45,57,53,46,55,54,57,55,53,44,52,54,46,49,48,55,52,53,93,44,91,45,57,54,46,50,54,53,51,54,54,44,52,54,46,49,48,56,54,49,93,44,91,45,57,54,46,50,54,54,49,52,44,52,54,46,48,50,49,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,72,117,109,112,104,114,101,121,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,53,51,50,51,51,44,51,51,46,51,50,57,52,56,52,93,44,91,45,57,48,46,53,53,53,50,49,49,44,51,51,46,50,55,48,53,51,51,93,44,91,45,57,48,46,55,49,54,50,55,55,44,51,51,46,50,55,48,48,51,50,93,44,91,45,57,48,46,55,48,49,56,52,53,44,51,51,46,48,57,54,50,57,52,93,44,91,45,57,48,46,54,53,54,54,51,50,44,51,50,46,57,50,50,53,49,93,44,91,45,57,48,46,52,52,57,56,57,51,44,51,50,46,57,50,51,50,57,93,44,91,45,57,48,46,51,54,52,48,51,49,44,51,51,46,48,49,48,53,57,54,93,44,91,45,57,48,46,52,50,56,55,55,52,44,51,51,46,49,48,55,57,51,50,93,44,91,45,57,48,46,51,51,48,51,49,50,44,51,51,46,49,51,55,56,49,56,93,44,91,45,57,48,46,51,51,49,53,56,57,44,51,51,46,51,48,50,56,50,53,93,44,91,45,57,48,46,52,53,51,50,51,51,44,51,51,46,51,50,57,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,51,56,55,44,34,98,101,100,115,34,58,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,56,56,50,56,56,44,51,49,46,54,57,57,51,48,51,93,44,91,45,56,56,46,48,55,50,50,51,52,44,51,49,46,53,57,52,53,93,44,91,45,56,55,46,57,48,55,51,57,57,44,51,49,46,52,57,52,52,51,56,93,44,91,45,56,55,46,56,56,56,56,53,55,44,51,49,46,51,54,52,48,50,51,93,44,91,45,56,55,46,57,53,48,55,57,53,44,51,49,46,50,57,57,52,54,51,93,44,91,45,56,55,46,57,52,54,53,56,56,44,51,49,46,49,57,50,57,51,93,44,91,45,56,55,46,56,55,51,56,56,55,44,51,49,46,50,48,49,52,57,54,93,44,91,45,56,55,46,55,54,53,49,53,50,44,51,49,46,50,57,55,51,52,54,93,44,91,45,56,55,46,55,48,54,48,52,53,44,51,49,46,52,48,48,57,53,55,93,44,91,45,56,55,46,54,48,51,49,51,55,44,51,49,46,52,48,57,53,53,54,93,44,91,45,56,55,46,53,54,53,55,48,56,44,51,49,46,52,56,49,54,56,51,93,44,91,45,56,55,46,53,54,54,56,52,49,44,51,49,46,54,57,55,49,49,53,93,44,91,45,56,55,46,53,48,48,57,51,44,51,49,46,56,50,57,50,53,49,93,44,91,45,56,55,46,54,50,48,49,49,50,44,51,49,46,56,50,55,49,50,51,93,44,91,45,56,55,46,54,54,55,55,54,57,44,51,49,46,57,57,49,51,53,53,93,44,91,45,56,56,46,48,55,51,52,57,44,51,49,46,57,57,48,49,56,50,93,44,91,45,56,56,46,49,56,48,51,56,52,44,51,49,46,56,49,52,53,52,54,93,44,91,45,56,56,46,48,56,56,50,56,56,44,51,49,46,54,57,57,51,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,97,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,53,51,55,56,44,51,56,46,53,50,49,54,53,55,93,44,91,45,57,54,46,56,49,57,53,48,57,44,51,56,46,53,50,50,52,52,57,93,44,91,45,57,54,46,56,52,48,55,55,50,44,51,56,46,48,56,53,54,50,50,93,44,91,45,57,54,46,53,50,50,55,56,50,44,51,56,46,48,56,54,51,55,93,44,91,45,57,54,46,51,53,56,48,57,57,44,51,56,46,48,56,53,56,49,55,93,44,91,45,57,54,46,51,53,55,50,55,55,44,51,56,46,49,55,50,54,54,93,44,91,45,57,54,46,51,53,51,55,56,44,51,56,46,53,50,49,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,49,34,44,34,78,65,77,69,34,58,34,84,114,105,103,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,56,55,54,57,57,54,44,51,54,46,57,54,48,49,49,54,93,44,91,45,56,56,46,49,53,55,51,52,55,44,51,54,46,56,54,55,49,56,51,93,44,91,45,56,56,46,49,49,48,56,51,49,44,51,54,46,55,52,55,49,53,93,44,91,45,56,56,46,48,55,48,53,52,49,44,51,54,46,54,55,56,50,53,53,93,44,91,45,56,55,46,54,57,52,49,57,50,44,51,54,46,54,51,55,49,48,56,93,44,91,45,56,55,46,54,53,57,55,50,52,44,51,54,46,57,54,54,51,57,55,93,44,91,45,56,55,46,55,51,51,51,54,56,44,51,55,46,48,48,50,49,48,51,93,44,91,45,56,55,46,56,55,54,57,57,54,44,51,54,46,57,54,48,49,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,111,117,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,51,53,50,44,34,98,101,100,115,34,58,56,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,56,55,54,53,49,44,51,49,46,51,48,56,54,55,55,93,44,91,45,56,53,46,52,49,55,52,51,52,44,51,49,46,51,49,52,57,55,51,93,44,91,45,56,53,46,52,56,53,56,53,52,44,51,49,46,50,52,54,48,57,54,93,44,91,45,56,53,46,54,54,53,55,55,53,44,51,49,46,50,54,55,53,57,49,93,44,91,45,56,53,46,55,49,48,51,51,51,44,51,49,46,49,57,53,49,55,51,93,44,91,45,56,53,46,52,56,53,55,54,44,51,49,46,49,57,57,56,56,54,93,44,91,45,56,53,46,52,56,56,50,57,56,44,51,48,46,57,57,55,48,54,52,93,44,91,45,56,53,46,48,48,50,52,57,57,44,51,49,46,48,48,48,54,56,53,93,44,91,45,56,53,46,48,50,56,53,54,52,44,51,49,46,48,55,53,53,50,51,93,44,91,45,56,53,46,48,57,57,54,52,55,44,51,49,46,49,54,52,57,52,50,93,44,91,45,56,53,46,48,56,55,54,53,49,44,51,49,46,51,48,56,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,117,114,111,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,55,55,55,49,44,52,51,46,57,51,53,50,50,51,93,44,91,45,57,56,46,55,57,52,53,56,56,44,52,51,46,52,57,57,49,56,55,93,44,91,45,57,56,46,55,48,53,55,56,50,44,52,51,46,52,57,57,51,49,57,93,44,91,45,57,56,46,51,50,48,53,57,53,44,52,51,46,52,57,56,54,53,49,93,44,91,45,57,56,46,51,50,53,50,52,50,44,52,51,46,56,53,49,48,53,56,93,44,91,45,57,56,46,51,51,49,53,48,56,44,52,51,46,57,51,55,55,48,56,93,44,91,45,57,56,46,56,48,55,55,55,49,44,52,51,46,57,51,53,50,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,65,108,101,117,116,105,97,110,115,32,69,97,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,50,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,56,46,56,57,51,53,56,53,44,53,54,46,57,52,53,48,53,57,93,44,91,45,49,53,57,46,49,55,51,57,49,52,44,53,54,46,56,49,52,52,53,93,44,91,45,49,53,57,46,57,48,53,49,51,57,44,53,54,46,53,55,56,49,55,53,93,44,91,45,49,54,48,46,50,50,53,52,49,54,44,53,54,46,52,51,51,54,93,44,91,45,49,54,48,46,52,49,51,49,53,55,44,53,54,46,51,50,49,55,51,52,93,44,91,45,49,54,48,46,54,49,54,48,51,53,44,53,54,46,48,54,55,52,50,49,93,44,91,45,49,54,49,46,50,49,49,49,48,56,44,53,54,46,48,54,55,52,49,93,44,91,45,49,54,49,46,56,50,53,55,53,44,53,53,46,57,52,50,54,53,53,93,44,91,45,49,54,50,46,50,56,57,55,57,49,44,53,53,46,55,50,52,56,54,54,93,44,91,45,49,54,50,46,53,52,55,50,50,56,44,53,53,46,53,50,56,55,52,53,93,44,91,45,49,54,50,46,57,51,53,49,54,49,44,53,53,46,51,56,50,48,53,49,93,44,91,45,49,54,51,46,49,53,48,52,53,53,44,53,53,46,50,50,57,53,48,53,93,44,91,45,49,54,51,46,54,51,48,54,57,50,44,53,53,46,48,57,51,50,50,57,93,44,91,45,49,54,51,46,57,53,48,49,55,54,44,53,53,46,48,55,56,56,49,50,93,44,91,45,49,54,52,46,51,48,55,53,50,53,44,53,52,46,57,53,49,52,53,56,93,44,91,45,49,54,52,46,52,49,56,49,53,49,44,53,52,46,57,55,57,53,53,56,93,44,91,45,49,54,52,46,54,49,52,50,53,53,44,53,52,46,57,50,51,56,55,55,93,44,91,45,49,54,52,46,55,56,50,55,56,44,53,52,46,54,57,49,55,48,50,93,44,91,45,49,54,52,46,57,57,57,52,56,50,44,53,52,46,54,50,54,50,52,57,93,44,91,45,49,54,52,46,57,57,53,54,51,44,53,52,46,52,53,55,51,48,57,93,44,91,45,49,54,52,46,57,48,49,50,57,55,44,53,52,46,51,55,52,54,53,49,93,44,91,45,49,54,52,46,54,49,55,49,48,57,44,53,52,46,51,51,56,56,55,52,93,44,91,45,49,54,52,46,52,49,52,57,56,55,44,53,52,46,51,54,56,56,50,51,93,44,91,45,49,54,52,46,49,50,50,54,55,49,44,53,52,46,53,53,54,49,49,57,93,44,91,45,49,54,51,46,55,49,50,55,57,55,44,53,52,46,53,55,48,49,57,49,93,44,91,45,49,54,51,46,53,57,51,53,54,51,44,53,52,46,53,52,49,49,52,93,44,91,45,49,54,51,46,52,49,51,57,51,56,44,53,52,46,54,48,48,51,55,56,93,44,91,45,49,54,51,46,48,53,57,49,52,49,44,53,52,46,54,48,54,50,48,51,93,44,91,45,49,54,50,46,57,54,56,54,48,54,44,53,52,46,55,48,56,55,48,50,93,44,91,45,49,54,51,46,49,48,52,57,51,53,44,53,52,46,56,48,57,51,56,53,93,44,91,45,49,54,50,46,56,57,51,57,48,51,44,53,52,46,56,52,52,50,51,56,93,44,91,45,49,54,50,46,54,53,49,49,48,53,44,53,52,46,57,50,50,49,53,55,93,44,91,45,49,54,50,46,53,53,52,57,51,49,44,53,52,46,55,52,57,51,52,52,93,44,91,45,49,54,50,46,52,53,57,56,55,55,44,53,52,46,54,54,54,53,50,52,93,44,91,45,49,54,50,46,52,55,57,56,49,53,44,53,52,46,53,52,48,57,51,50,93,44,91,45,49,54,50,46,51,54,53,48,51,53,44,53,52,46,53,48,55,54,57,51,93,44,91,45,49,54,50,46,50,51,57,52,51,44,53,52,46,54,51,56,55,48,56,93,44,91,45,49,54,50,46,49,48,52,56,52,54,44,53,52,46,54,49,56,50,56,54,93,44,91,45,49,54,49,46,57,54,54,56,52,52,44,53,52,46,55,49,52,56,48,50,93,44,91,45,49,54,49,46,56,52,49,48,49,54,44,53,52,46,54,56,52,53,49,54,93,44,91,45,49,54,49,46,53,54,52,55,52,52,44,53,52,46,55,57,55,49,57,55,93,44,91,45,49,54,49,46,54,53,57,52,56,49,44,53,52,46,57,53,54,51,56,51,93,44,91,45,49,54,49,46,52,55,48,48,56,54,44,53,52,46,57,52,57,55,50,57,93,44,91,45,49,54,48,46,57,53,51,52,50,52,44,53,53,46,51,50,53,51,54,55,93,44,91,45,49,54,48,46,56,57,57,54,55,54,44,53,53,46,48,57,53,51,53,93,44,91,45,49,54,48,46,53,57,56,54,57,49,44,53,53,46,48,57,52,48,53,54,93,44,91,45,49,54,48,46,53,49,57,52,54,57,44,53,53,46,48,50,53,49,50,51,93,44,91,45,49,54,48,46,51,53,51,54,44,53,53,46,49,57,51,54,53,53,93,44,91,45,49,54,48,46,50,54,49,57,49,57,44,53,53,46,48,51,53,50,48,49,93,44,91,45,49,54,48,46,51,52,51,51,57,51,44,53,52,46,57,51,48,56,56,49,93,44,91,45,49,54,48,46,51,48,50,56,49,50,44,53,52,46,56,50,57,55,52,54,93,44,91,45,49,54,48,46,48,57,56,48,50,51,44,53,52,46,56,56,53,52,49,54,93,44,91,45,49,53,57,46,56,52,54,48,57,57,44,53,52,46,57,48,50,52,51,53,93,44,91,45,49,53,57,46,55,51,52,55,51,53,44,53,52,46,57,57,48,50,52,53,93,44,91,45,49,53,57,46,53,56,48,51,52,49,44,53,52,46,57,56,55,53,57,56,93,44,91,45,49,53,57,46,51,54,50,50,57,55,44,53,52,46,56,50,56,51,49,53,93,44,91,45,49,53,57,46,50,48,49,53,49,53,44,53,52,46,56,51,51,54,55,50,93,44,91,45,49,53,57,46,49,49,49,55,57,49,44,53,52,46,57,49,53,54,57,93,44,91,45,49,53,57,46,50,53,49,53,49,52,44,53,53,46,48,48,54,54,57,57,93,44,91,45,49,53,57,46,50,53,50,56,51,52,44,53,53,46,49,48,54,49,55,49,93,44,91,45,49,53,57,46,52,49,48,56,56,54,44,53,53,46,49,50,51,52,57,54,93,44,91,45,49,53,57,46,51,57,56,48,54,51,44,53,53,46,50,57,51,51,55,93,44,91,45,49,53,57,46,53,52,52,51,51,53,44,53,53,46,51,50,56,52,48,55,93,44,91,45,49,53,57,46,54,54,48,50,48,54,44,53,53,46,50,52,50,57,49,93,44,91,45,49,54,48,46,48,52,49,49,54,50,44,53,53,46,52,52,56,56,55,57,93,44,91,45,49,53,57,46,57,53,49,49,51,56,44,53,53,46,53,48,55,53,56,51,93,44,91,45,49,53,57,46,53,51,56,49,53,51,44,53,53,46,53,51,50,48,48,54,93,44,91,45,49,53,57,46,52,52,54,56,54,56,44,53,53,46,54,51,56,53,51,49,93,44,91,45,49,53,57,46,53,54,49,52,53,49,44,53,53,46,54,51,56,52,52,51,93,44,91,45,49,53,57,46,53,54,49,51,54,44,53,53,46,56,56,55,49,57,55,93,44,91,45,49,53,57,46,56,54,55,57,55,49,44,53,53,46,56,56,55,49,57,51,93,44,91,45,49,53,57,46,56,48,54,52,48,54,44,53,53,46,57,55,51,57,49,57,93,44,91,45,49,53,57,46,56,48,54,51,56,57,44,53,54,46,51,50,48,56,48,53,93,44,91,45,49,53,57,46,57,48,48,49,51,51,44,53,54,46,51,50,48,56,48,51,93,44,91,45,49,53,57,46,57,48,48,49,52,57,44,53,54,46,52,57,52,50,51,57,93,44,91,45,49,53,57,46,53,56,56,48,51,54,44,53,54,46,52,57,52,50,52,53,93,44,91,45,49,53,57,46,53,56,56,48,52,49,44,53,54,46,53,56,48,57,54,49,93,44,91,45,49,53,57,46,50,55,53,57,50,56,44,53,54,46,53,56,48,57,54,55,93,44,91,45,49,53,57,46,50,55,53,57,51,50,44,53,54,46,54,54,55,54,56,50,93,44,91,45,49,53,57,46,48,53,49,48,56,57,44,53,54,46,54,54,55,54,56,55,93,44,91,45,49,53,56,46,56,57,51,54,48,55,44,53,54,46,55,53,52,52,48,52,93,44,91,45,49,53,56,46,56,57,51,53,56,53,44,53,54,46,57,52,53,48,53,57,93,93,93,44,91,91,91,45,49,54,54,46,50,50,53,54,52,55,44,53,52,46,48,52,49,57,57,51,93,44,91,45,49,54,54,46,50,50,53,54,52,49,44,53,51,46,57,54,48,50,48,54,93,44,91,45,49,54,53,46,57,54,49,48,56,54,44,53,51,46,57,49,54,50,52,51,93,44,91,45,49,54,53,46,55,56,56,57,54,54,44,53,52,46,48,49,54,50,51,54,93,44,91,45,49,54,53,46,54,53,55,49,55,51,44,53,52,46,48,51,54,51,51,54,93,44,91,45,49,54,53,46,53,49,57,55,54,55,44,53,51,46,57,55,50,48,54,93,44,91,45,49,54,53,46,51,56,48,57,54,53,44,53,52,46,48,49,54,52,51,54,93,44,91,45,49,54,52,46,56,56,49,48,52,56,44,53,52,46,48,52,51,52,50,57,93,44,91,45,49,54,52,46,55,49,52,52,56,53,44,53,52,46,49,54,54,49,49,55,93,44,91,45,49,54,52,46,56,48,53,51,54,57,44,53,52,46,50,56,50,51,57,50,93,44,91,45,49,54,53,46,48,54,54,56,55,49,44,53,52,46,49,56,48,48,56,54,93,44,91,45,49,54,53,46,51,52,53,49,55,55,44,53,52,46,50,53,49,48,51,51,93,44,91,45,49,54,53,46,52,54,50,52,57,51,44,53,52,46,51,52,54,56,50,50,93,44,91,45,49,54,53,46,54,53,53,53,53,44,53,52,46,51,52,55,48,53,49,93,44,91,45,49,54,53,46,55,56,57,49,52,55,44,53,52,46,50,51,57,49,51,56,93,44,91,45,49,54,53,46,57,51,55,50,50,44,53,52,46,50,55,54,57,56,53,93,44,91,45,49,54,54,46,49,54,53,49,49,55,44,53,52,46,49,57,53,48,56,56,93,44,91,45,49,54,54,46,50,50,53,54,52,55,44,53,52,46,48,52,49,57,57,51,93,93,93,44,91,91,91,45,49,54,51,46,48,49,51,54,57,52,44,53,52,46,51,56,53,48,56,55,93,44,91,45,49,54,50,46,55,48,48,48,56,52,44,53,52,46,50,51,55,57,54,57,93,44,91,45,49,54,50,46,50,56,50,50,48,51,44,53,52,46,51,51,48,57,54,53,93,44,91,45,49,54,50,46,51,53,52,51,53,50,44,53,52,46,52,53,54,54,57,49,93,44,91,45,49,54,50,46,56,56,48,55,48,54,44,53,52,46,53,53,51,50,49,51,93,44,91,45,49,54,51,46,48,49,51,54,57,52,44,53,52,46,51,56,53,48,56,55,93,93,93,44,91,91,91,45,49,53,57,46,57,49,48,51,51,53,44,53,52,46,56,49,52,49,54,56,93,44,91,45,49,53,57,46,56,53,53,50,49,55,44,53,52,46,55,53,55,55,48,52,93,44,91,45,49,53,57,46,53,52,55,56,55,50,44,53,52,46,54,57,57,50,57,54,93,44,91,45,49,53,57,46,52,49,54,55,55,50,44,53,52,46,55,57,50,49,57,55,93,44,91,45,49,53,57,46,53,53,54,49,49,54,44,53,52,46,56,56,48,50,54,50,93,44,91,45,49,53,57,46,55,54,49,48,53,49,44,53,52,46,56,57,49,51,50,52,93,44,91,45,49,53,57,46,57,49,48,51,51,53,44,53,52,46,56,49,52,49,54,56,93,93,93,44,91,91,91,45,49,54,51,46,50,55,48,56,56,55,44,53,53,46,52,51,49,55,49,56,93,44,91,45,49,54,51,46,50,51,53,51,54,50,44,53,53,46,51,54,54,49,49,50,93,44,91,45,49,54,51,46,48,50,55,57,51,56,44,53,53,46,52,50,48,56,51,93,44,91,45,49,54,51,46,49,51,54,53,51,52,44,53,53,46,53,50,53,48,50,52,93,44,91,45,49,54,51,46,50,55,48,56,56,55,44,53,53,46,52,51,49,55,49,56,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,54,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,44,91,45,57,57,46,49,55,57,49,51,52,44,52,48,46,48,48,50,48,49,51,93,44,91,45,57,57,46,48,54,55,48,52,54,44,52,48,46,48,48,50,51,52,56,93,44,91,45,57,56,46,55,50,54,51,55,51,44,52,48,46,48,48,50,52,93,44,91,45,57,56,46,55,50,54,56,50,55,44,52,48,46,51,53,48,51,57,56,93,44,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,57,51,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,48,55,57,57,50,53,44,51,57,46,52,48,53,53,48,54,93,44,91,45,55,54,46,50,56,55,54,56,57,44,51,57,46,50,53,52,49,48,52,93,44,91,45,55,54,46,51,52,57,52,55,57,44,51,57,46,49,53,54,54,50,51,93,44,91,45,55,54,46,51,53,49,55,51,44,51,57,46,48,53,54,50,51,50,93,44,91,45,55,54,46,50,53,55,57,57,53,44,51,57,46,48,49,49,56,49,56,93,44,91,45,55,54,46,49,49,55,48,53,56,44,51,57,46,49,48,55,48,57,56,93,44,91,45,55,54,46,48,49,48,50,57,50,44,51,57,46,50,51,57,53,49,55,93,44,91,45,55,53,46,55,53,54,48,48,52,44,51,57,46,50,52,54,48,54,54,93,44,91,45,55,53,46,55,54,48,48,55,52,44,51,57,46,50,57,54,56,49,57,93,44,91,45,55,53,46,55,54,54,53,57,52,44,51,57,46,51,55,55,53,54,51,93,44,91,45,55,53,46,57,48,56,48,51,53,44,51,57,46,51,54,52,53,48,49,93,44,91,45,55,54,46,48,55,57,57,50,53,44,51,57,46,52,48,53,53,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,49,48,56,44,34,98,101,100,115,34,58,49,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,56,56,48,49,50,44,51,55,46,54,55,52,53,49,57,93,44,91,45,57,53,46,48,56,56,49,56,57,44,51,55,46,51,56,51,56,51,55,93,44,91,45,57,53,46,48,55,53,49,54,54,44,51,55,46,51,51,57,57,51,55,93,44,91,45,57,52,46,54,49,55,55,50,50,44,51,55,46,51,51,56,52,49,56,93,44,91,45,57,52,46,54,49,55,53,55,44,51,55,46,51,54,52,49,55,93,44,91,45,57,52,46,54,49,55,54,57,56,44,51,55,46,54,53,51,53,55,56,93,44,91,45,57,52,46,54,49,55,55,55,57,44,51,55,46,54,55,51,49,48,53,93,44,91,45,57,53,46,48,56,56,48,49,50,44,51,55,46,54,55,52,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,105,112,112,101,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,49,48,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,51,54,54,57,56,44,52,53,46,49,53,50,50,48,54,93,44,91,45,57,53,46,55,51,54,54,57,54,44,52,52,46,57,51,54,48,52,93,44,91,45,57,53,46,52,56,50,56,52,51,44,52,52,46,55,53,50,53,48,53,93,44,91,45,57,53,46,52,56,50,56,56,57,44,52,52,46,56,57,48,55,49,50,93,44,91,45,57,53,46,50,52,56,53,50,44,52,52,46,56,57,49,51,49,93,44,91,45,57,53,46,50,52,54,52,56,57,44,52,53,46,49,53,50,52,51,49,93,44,91,45,57,54,46,48,51,54,54,57,56,44,52,53,46,49,53,50,50,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,80,101,110,110,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,50,57,52,44,34,98,101,100,115,34,58,52,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,48,49,48,54,56,44,52,52,46,53,49,48,57,50,54,93,44,91,45,49,48,50,46,49,49,50,53,51,53,44,52,52,46,52,51,53,56,56,54,93,44,91,45,49,48,50,46,50,56,52,52,48,52,44,52,52,46,52,52,49,50,51,50,93,44,91,45,49,48,50,46,51,52,49,54,51,53,44,52,52,46,51,52,56,55,55,50,93,44,91,45,49,48,50,46,51,56,56,48,52,53,44,52,52,46,49,52,48,49,56,51,93,44,91,45,49,48,51,46,52,53,50,52,53,51,44,52,52,46,49,52,48,55,55,50,93,44,91,45,49,48,52,46,48,53,52,53,56,56,44,52,52,46,49,52,49,48,56,49,93,44,91,45,49,48,52,46,48,53,53,52,56,55,44,52,51,46,56,53,51,52,55,54,93,44,91,45,49,48,50,46,54,56,55,49,57,49,44,52,51,46,56,53,53,53,57,57,93,44,91,45,49,48,50,46,56,48,57,51,57,56,44,52,51,46,54,56,55,53,54,93,44,91,45,49,48,50,46,49,55,53,50,51,49,44,52,51,46,54,56,55,55,53,54,93,44,91,45,49,48,50,46,49,51,57,49,53,56,44,52,51,46,55,48,48,57,52,56,93,44,91,45,49,48,50,46,48,49,56,56,56,55,44,52,51,46,55,48,56,54,49,56,93,44,91,45,49,48,50,46,48,48,55,51,51,54,44,52,51,46,57,57,52,53,51,93,44,91,45,49,48,50,46,48,48,49,48,54,56,44,52,52,46,53,49,48,57,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,72,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,56,48,55,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,44,91,45,56,49,46,50,49,57,53,54,51,44,51,50,46,57,53,51,51,53,93,44,91,45,56,49,46,50,54,49,54,54,50,44,51,50,46,56,51,57,49,51,57,93,44,91,45,56,49,46,52,48,53,48,53,52,44,51,50,46,55,52,52,57,53,55,93,44,91,45,56,49,46,51,56,57,50,48,53,44,51,50,46,53,57,53,52,49,54,93,44,91,45,56,49,46,50,56,49,50,55,44,51,50,46,53,53,54,52,55,49,93,44,91,45,56,49,46,48,49,56,52,57,53,44,51,50,46,55,53,48,49,55,50,93,44,91,45,56,48,46,56,54,57,55,48,53,44,51,50,46,54,54,48,57,51,53,93,44,91,45,56,48,46,56,50,54,51,48,57,44,51,50,46,55,48,52,51,50,49,93,44,91,45,56,48,46,57,48,48,49,57,54,44,51,50,46,56,51,50,56,49,51,93,44,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,70,114,101,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,57,55,54,56,52,57,44,52,51,46,57,50,55,51,56,53,93,44,91,45,49,49,49,46,53,53,56,56,51,51,44,52,51,46,56,56,51,51,48,53,93,44,91,45,49,49,49,46,51,57,56,55,56,49,44,52,51,46,57,50,50,56,57,93,44,91,45,49,49,49,46,49,56,55,50,53,54,44,52,51,46,57,51,50,49,49,52,93,44,91,45,49,49,49,46,48,52,55,49,53,55,44,52,51,46,57,56,51,52,53,57,93,44,91,45,49,49,49,46,48,53,50,52,51,52,44,52,52,46,52,55,56,52,49,49,93,44,91,45,49,49,49,46,49,51,48,54,53,57,44,52,52,46,53,48,48,49,51,49,93,44,91,45,49,49,49,46,50,49,57,51,49,57,44,52,52,46,54,50,50,53,50,49,93,44,91,45,49,49,49,46,51,55,55,48,49,53,44,52,52,46,55,53,49,52,52,51,93,44,91,45,49,49,49,46,52,55,52,57,54,51,44,52,52,46,55,48,56,55,55,51,93,44,91,45,49,49,49,46,53,50,53,54,49,44,52,52,46,54,48,52,55,52,93,44,91,45,49,49,49,46,54,49,55,51,52,53,44,52,52,46,53,53,48,51,57,50,93,44,91,45,49,49,49,46,54,49,55,52,51,55,44,52,52,46,52,48,49,50,53,52,93,44,91,45,49,49,49,46,55,57,49,54,50,52,44,52,52,46,52,48,49,54,49,93,44,91,45,49,49,49,46,56,53,50,50,55,54,44,52,52,46,51,49,54,57,57,54,93,44,91,45,49,49,49,46,56,53,55,56,53,49,44,52,52,46,49,56,55,55,53,57,93,44,91,45,49,49,50,46,48,51,51,54,54,52,44,52,52,46,49,52,52,48,52,57,93,44,91,45,49,49,50,46,49,53,53,57,51,53,44,52,52,46,48,53,55,55,56,93,44,91,45,49,49,50,46,49,53,54,51,55,44,52,51,46,57,55,49,50,52,55,93,44,91,45,49,49,49,46,57,55,54,56,52,57,44,52,51,46,57,50,55,51,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,66,114,121,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,56,56,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,56,48,56,53,56,44,51,50,46,49,53,50,56,57,93,44,91,45,56,49,46,55,49,56,54,53,56,44,51,50,46,48,56,57,51,53,49,93,44,91,45,56,49,46,53,57,50,51,57,49,44,51,49,46,57,55,50,52,54,57,93,44,91,45,56,49,46,52,48,52,51,56,56,44,51,49,46,57,49,57,55,48,49,93,44,91,45,56,49,46,51,55,54,57,53,52,44,51,49,46,56,52,56,50,53,55,93,44,91,45,56,49,46,49,53,52,55,51,49,44,51,49,46,55,49,51,48,55,93,44,91,45,56,49,46,50,49,50,51,48,57,44,51,49,46,57,49,56,51,53,56,93,44,91,45,56,49,46,51,57,49,54,57,56,44,51,50,46,48,57,53,56,56,54,93,44,91,45,56,49,46,52,51,53,56,51,44,51,50,46,50,52,49,50,56,57,93,44,91,45,56,49,46,55,56,48,56,53,56,44,51,50,46,49,53,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,68,105,110,119,105,100,100,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,48,56,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,52,55,52,48,56,44,51,55,46,50,50,51,48,54,54,93,44,91,45,55,55,46,54,53,48,54,49,44,51,55,46,50,54,53,49,49,50,93,44,91,45,55,55,46,55,57,53,57,50,54,44,51,55,46,49,57,50,53,57,50,93,44,91,45,55,55,46,57,48,48,51,51,56,44,51,55,46,49,52,51,56,56,50,93,44,91,45,55,55,46,56,56,57,56,49,51,44,51,54,46,57,56,56,56,49,56,93,44,91,45,55,55,46,55,54,53,53,52,44,51,54,46,57,55,52,54,53,53,93,44,91,45,55,55,46,54,53,56,48,51,54,44,51,54,46,56,57,52,53,49,52,93,44,91,45,55,55,46,54,49,57,48,50,57,44,51,54,46,56,55,55,56,52,52,93,44,91,45,55,55,46,51,57,56,52,57,56,44,51,54,46,57,57,50,57,56,53,93,44,91,45,55,55,46,51,57,57,50,48,51,44,51,55,46,49,55,48,56,53,93,44,91,45,55,55,46,52,52,55,52,48,56,44,51,55,46,50,50,51,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,117,99,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,53,57,49,44,34,98,101,100,115,34,58,56,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,55,55,56,54,50,44,50,55,46,50,48,53,57,56,56,93,44,91,45,56,48,46,50,56,53,53,49,44,50,55,46,50,48,54,48,50,53,93,44,91,45,56,48,46,49,51,56,48,52,57,44,50,55,46,50,54,50,56,55,57,93,44,91,45,56,48,46,50,54,51,53,52,51,44,50,55,46,53,53,54,55,56,50,93,44,91,45,56,48,46,54,55,57,56,50,49,44,50,55,46,53,53,56,52,55,93,44,91,45,56,48,46,54,55,55,56,54,50,44,50,55,46,50,48,53,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,52,50,52,56,44,34,98,101,100,115,34,58,50,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,57,57,51,57,56,50,44,52,51,46,54,51,49,50,51,52,93,44,91,45,55,55,46,57,57,55,50,57,44,52,51,46,49,51,50,57,56,49,93,44,91,45,55,55,46,57,48,57,56,51,50,44,52,50,46,57,56,55,55,54,50,93,44,91,45,55,55,46,55,51,48,57,53,55,44,52,50,46,57,56,56,51,55,50,93,44,91,45,55,55,46,53,56,48,51,55,55,44,52,50,46,57,52,51,57,54,51,93,44,91,45,55,55,46,52,56,53,52,49,56,44,52,51,46,48,51,52,53,54,52,93,44,91,45,55,55,46,51,55,49,52,55,56,44,52,51,46,48,51,52,54,57,54,93,44,91,45,55,55,46,51,56,55,57,57,53,44,52,51,46,54,51,49,53,52,51,93,44,91,45,55,55,46,57,57,51,57,56,50,44,52,51,46,54,51,49,50,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,57,49,52,44,34,98,101,100,115,34,58,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,50,52,56,52,49,44,52,51,46,53,48,48,48,48,55,93,44,91,45,57,54,46,57,50,52,49,52,50,44,52,51,46,48,56,51,55,51,51,93,44,91,45,57,54,46,56,48,53,54,56,50,44,52,51,46,48,56,51,54,55,93,44,91,45,57,54,46,52,53,52,49,51,44,52,51,46,48,56,51,51,56,93,44,91,45,57,54,46,52,55,54,55,50,57,44,52,51,46,50,50,49,57,56,55,93,44,91,45,57,54,46,53,53,52,57,54,57,44,52,51,46,50,53,57,57,53,49,93,44,91,45,57,54,46,53,50,49,55,50,44,52,51,46,51,56,54,55,53,53,93,44,91,45,57,54,46,53,57,57,49,57,49,44,52,51,46,53,48,48,52,53,54,93,44,91,45,57,54,46,57,50,52,56,52,49,44,52,51,46,53,48,48,48,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,105,112,112,101,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,54,51,53,44,34,98,101,100,115,34,58,50,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,52,49,51,50,50,44,52,53,46,50,57,50,50,50,93,44,91,45,57,49,46,54,54,53,54,52,55,44,52,53,46,50,48,55,57,57,49,93,44,91,45,57,49,46,54,53,48,52,53,53,44,52,52,46,56,53,53,57,53,49,93,44,91,45,57,48,46,57,50,50,50,52,55,44,52,52,46,56,53,55,51,48,57,93,44,91,45,57,48,46,57,50,51,51,54,50,44,52,53,46,48,51,49,49,52,51,93,44,91,45,57,48,46,57,50,53,50,50,50,44,52,53,46,50,57,50,48,54,49,93,44,91,45,57,49,46,53,52,49,51,50,50,44,52,53,46,50,57,50,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,55,34,44,34,78,65,77,69,34,58,34,87,111,111,100,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,55,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,53,57,48,52,54,44,51,56,46,48,52,48,49,57,53,93,44,91,45,57,53,46,57,54,48,56,55,54,44,51,55,46,55,51,52,51,48,52,93,44,91,45,57,53,46,53,50,53,52,57,57,44,51,55,46,55,51,50,55,53,57,93,44,91,45,57,53,46,53,49,56,57,55,44,51,56,46,48,51,56,50,51,93,44,91,45,57,53,46,57,53,57,48,52,54,44,51,56,46,48,52,48,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,49,54,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,56,50,57,53,55,44,51,55,46,48,50,50,53,54,54,93,44,91,45,56,56,46,52,56,52,49,48,51,44,51,54,46,57,52,50,48,57,54,93,44,91,45,56,56,46,52,56,53,54,57,55,44,51,54,46,55,53,48,51,50,56,93,44,91,45,56,56,46,49,49,48,56,51,49,44,51,54,46,55,52,55,49,53,93,44,91,45,56,56,46,49,53,55,51,52,55,44,51,54,46,56,54,55,49,56,51,93,44,91,45,56,56,46,50,52,48,51,55,49,44,51,54,46,57,56,49,57,49,49,93,44,91,45,56,56,46,51,55,48,52,54,51,44,51,55,46,48,54,51,50,55,56,93,44,91,45,56,56,46,52,56,50,57,53,55,44,51,55,46,48,50,50,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,67,108,105,110,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,55,49,50,52,55,44,51,49,46,49,56,51,57,56,56,93,44,91,45,56,50,46,57,55,49,51,51,54,44,51,48,46,56,54,57,51,57,50,93,44,91,45,56,50,46,56,52,54,52,48,53,44,51,48,46,56,51,52,57,52,57,93,44,91,45,56,50,46,55,54,54,49,53,57,44,51,48,46,55,51,50,52,48,52,93,44,91,45,56,50,46,54,48,52,51,48,55,44,51,48,46,55,49,51,55,49,53,93,44,91,45,56,50,46,53,56,52,48,48,55,44,51,48,46,53,57,49,53,52,56,93,44,91,45,56,50,46,52,53,57,55,57,51,44,51,48,46,53,56,52,50,54,55,93,44,91,45,56,50,46,52,49,56,57,49,52,44,51,48,46,53,56,49,55,54,55,93,44,91,45,56,50,46,52,51,53,56,53,50,44,51,48,46,56,50,48,48,54,56,93,44,91,45,56,50,46,52,57,48,53,53,56,44,51,48,46,57,54,51,49,54,54,93,44,91,45,56,50,46,53,57,50,48,55,49,44,51,49,46,48,49,56,52,56,55,93,44,91,45,56,50,46,54,55,49,54,54,57,44,51,49,46,49,56,51,55,51,57,93,44,91,45,56,50,46,57,55,49,50,52,55,44,51,49,46,49,56,51,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,76,111,119,110,100,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,53,56,50,44,34,98,101,100,115,34,58,52,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,57,53,48,53,50,44,51,49,46,48,50,55,50,55,56,93,44,91,45,56,51,46,52,55,53,54,49,55,44,51,49,46,48,51,49,57,54,52,93,44,91,45,56,51,46,51,55,48,56,57,56,44,51,48,46,56,56,52,56,50,56,93,44,91,45,56,51,46,52,56,50,52,54,49,44,51,48,46,55,53,54,57,51,49,93,44,91,45,56,51,46,51,53,55,55,48,51,44,51,48,46,54,51,55,51,54,93,44,91,45,56,51,46,51,52,48,56,53,50,44,51,48,46,54,51,54,51,51,54,93,44,91,45,56,51,46,51,48,57,50,52,57,44,51,48,46,54,51,52,52,48,54,93,44,91,45,56,51,46,49,51,54,54,49,52,44,51,48,46,54,50,51,57,54,55,93,44,91,45,56,51,46,49,50,52,56,54,53,44,51,48,46,56,48,51,54,53,53,93,44,91,45,56,51,46,48,49,57,52,49,57,44,51,48,46,56,52,57,52,53,51,93,44,91,45,56,51,46,48,52,50,57,50,52,44,51,48,46,57,52,55,50,57,54,93,44,91,45,56,51,46,49,55,57,52,54,53,44,51,48,46,57,53,48,49,50,56,93,44,91,45,56,51,46,49,57,55,57,55,49,44,51,49,46,48,50,53,52,48,53,93,44,91,45,56,51,46,50,57,53,48,53,50,44,51,49,46,48,50,55,50,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,75,97,108,97,119,97,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,72,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,55,46,48,49,53,48,53,56,44,50,49,46,50,54,49,49,57,52,93,44,91,45,49,53,55,46,48,49,52,54,49,50,44,50,49,46,49,56,50,51,52,57,93,44,91,45,49,53,54,46,57,49,55,49,44,50,49,46,49,54,51,55,49,93,44,91,45,49,53,54,46,56,55,49,49,57,53,44,50,49,46,50,51,49,56,56,55,93,44,91,45,49,53,55,46,48,49,53,48,53,56,44,50,49,46,50,54,49,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,75,97,117,97,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,72,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,51,55,55,44,34,98,101,100,115,34,58,49,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,57,46,54,49,57,49,57,49,44,50,50,46,50,54,54,56,51,55,93,44,91,45,49,53,57,46,55,53,44,50,50,46,49,57,57,52,52,57,93,44,91,45,49,53,57,46,56,52,56,49,50,52,44,50,50,46,48,55,54,48,55,51,93,44,91,45,49,53,57,46,55,57,51,54,48,49,44,50,49,46,57,51,57,55,56,93,44,91,45,49,53,57,46,54,51,49,50,53,57,44,50,49,46,56,52,54,54,56,56,93,44,91,45,49,53,57,46,52,52,51,57,57,57,44,50,49,46,56,49,55,55,56,57,93,44,91,45,49,53,57,46,50,56,52,51,53,52,44,50,49,46,57,52,48,54,51,55,93,44,91,45,49,53,57,46,50,52,53,55,55,57,44,50,50,46,49,54,54,56,48,56,93,44,91,45,49,53,57,46,51,48,56,55,57,56,44,50,50,46,50,53,93,44,91,45,49,53,57,46,52,48,50,57,50,44,50,50,46,50,57,48,52,55,51,93,44,91,45,49,53,57,46,54,49,57,49,57,49,44,50,50,46,50,54,54,56,51,55,93,93,93,44,91,91,91,45,49,54,48,46,51,48,52,51,54,44,50,49,46,56,53,51,55,57,53,93,44,91,45,49,54,48,46,50,54,53,55,55,56,44,50,49,46,55,52,54,49,56,93,44,91,45,49,54,48,46,49,55,48,51,49,44,50,49,46,55,51,57,53,53,49,93,44,91,45,49,54,48,46,49,50,50,48,49,53,44,50,49,46,56,50,52,57,54,93,44,91,45,49,54,48,46,48,51,49,48,51,50,44,50,49,46,56,54,57,51,54,52,93,44,91,45,49,53,57,46,57,57,55,50,48,53,44,50,49,46,57,57,50,53,49,93,44,91,45,49,54,48,46,48,53,54,55,50,50,44,50,50,46,48,54,56,51,52,53,93,44,91,45,49,54,48,46,49,52,48,52,49,54,44,50,50,46,48,55,51,51,50,50,93,44,91,45,49,54,48,46,49,55,52,48,49,49,44,50,49,46,57,57,49,52,55,57,93,44,91,45,49,54,48,46,50,55,57,57,52,55,44,50,49,46,57,50,48,54,51,56,93,44,91,45,49,54,48,46,51,48,52,51,54,44,50,49,46,56,53,51,55,57,53,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,97,99,111,109,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,56,55,48,52,44,34,98,101,100,115,34,58,49,51,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,50,51,49,55,44,52,50,46,52,55,55,55,55,56,93,44,91,45,56,50,46,55,51,57,48,49,44,52,50,46,56,57,55,53,52,49,93,44,91,45,56,50,46,57,56,51,54,52,55,44,52,50,46,56,57,51,55,52,49,93,44,91,45,56,51,46,49,48,50,56,57,49,44,52,50,46,56,56,56,54,52,55,93,44,91,45,56,51,46,48,56,51,51,57,51,44,52,50,46,52,52,55,49,53,51,93,44,91,45,56,50,46,55,52,57,57,48,56,44,52,50,46,52,53,49,48,57,50,93,44,91,45,56,50,46,55,50,51,49,55,44,52,50,46,52,55,55,55,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,55,34,44,34,78,65,77,69,34,58,34,84,117,114,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,49,50,50,53,54,44,51,49,46,56,53,52,48,56,57,93,44,91,45,56,51,46,54,49,50,54,52,50,44,51,49,46,56,48,52,49,50,56,93,44,91,45,56,51,46,56,48,50,55,50,51,44,51,49,46,56,48,51,53,55,57,93,44,91,45,56,51,46,55,57,54,56,52,54,44,51,49,46,54,50,50,57,50,57,93,44,91,45,56,51,46,54,52,57,51,56,52,44,51,49,46,53,54,55,57,55,55,93,44,91,45,56,51,46,53,48,48,55,48,50,44,51,49,46,53,57,51,57,57,93,44,91,45,56,51,46,52,53,51,54,51,52,44,51,49,46,55,53,55,56,54,49,93,44,91,45,56,51,46,52,56,48,49,55,54,44,51,49,46,56,52,55,51,49,50,93,44,91,45,56,51,46,54,49,50,50,53,54,44,51,49,46,56,53,52,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,54,48,54,53,52,44,51,57,46,49,55,49,49,49,56,93,44,91,45,56,56,46,51,54,49,55,52,53,44,51,56,46,57,49,48,56,52,55,93,44,91,45,56,56,46,50,53,56,53,56,51,44,51,56,46,56,52,55,53,50,57,93,44,91,45,56,55,46,57,52,53,57,49,57,44,51,56,46,56,53,48,49,52,56,93,44,91,45,56,55,46,57,53,48,51,56,53,44,51,57,46,49,55,52,56,56,50,93,44,91,45,56,56,46,48,48,55,55,54,54,44,51,57,46,49,55,51,57,50,53,93,44,91,45,56,56,46,51,54,48,54,53,52,44,51,57,46,49,55,49,49,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,51,49,34,44,34,78,65,77,69,34,58,34,77,105,108,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,54,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,55,48,49,56,56,44,51,48,46,57,56,54,50,50,93,44,91,45,57,55,46,50,53,57,48,56,50,44,51,48,46,56,56,57,53,57,54,93,44,91,45,57,55,46,51,49,53,53,48,55,44,51,48,46,55,53,50,51,55,49,93,44,91,45,57,55,46,50,55,49,52,49,56,44,51,48,46,55,51,53,54,57,50,93,44,91,45,57,55,46,49,53,53,50,49,57,44,51,48,46,52,53,55,51,52,52,93,44,91,45,57,54,46,57,54,51,54,50,57,44,51,48,46,53,53,55,49,54,57,93,44,91,45,57,54,46,54,50,49,50,56,49,44,51,48,46,55,51,48,56,49,57,93,44,91,45,57,54,46,54,52,49,50,56,44,51,48,46,56,49,56,48,53,49,93,44,91,45,57,54,46,55,53,54,51,51,44,51,48,46,57,50,55,50,48,54,93,44,91,45,57,54,46,56,50,57,49,50,49,44,51,49,46,49,48,53,56,55,49,93,44,91,45,57,55,46,48,55,48,49,56,56,44,51,48,46,57,56,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,83,112,101,110,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,49,55,52,57,44,51,56,46,50,48,51,53,56,93,44,91,45,56,55,46,48,49,55,52,53,51,44,51,56,46,49,49,56,51,48,49,93,44,91,45,56,55,46,50,50,53,55,48,49,44,51,55,46,57,55,49,54,54,55,93,44,91,45,56,55,46,50,54,56,57,57,53,44,51,55,46,56,55,56,48,50,54,93,44,91,45,56,55,46,48,54,57,54,55,53,44,51,55,46,56,48,49,53,49,51,93,44,91,45,56,54,46,57,55,56,56,51,55,44,51,55,46,57,51,48,50,52,52,93,44,91,45,56,54,46,56,49,52,55,52,52,44,51,55,46,57,57,56,55,48,52,93,44,91,45,56,54,46,55,54,55,51,53,50,44,51,56,46,48,53,54,57,50,52,93,44,91,45,56,54,46,55,57,49,52,57,55,44,51,56,46,50,48,53,49,51,93,44,91,45,56,55,46,48,49,55,52,57,44,51,56,46,50,48,51,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,72,97,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,52,55,53,57,56,44,51,55,46,52,52,57,57,51,51,93,44,91,45,56,54,46,48,55,51,54,50,54,44,51,55,46,51,52,56,48,52,53,93,44,91,45,56,54,46,49,53,55,53,56,57,44,51,55,46,51,51,53,54,52,57,93,44,91,45,56,54,46,48,53,54,52,52,51,44,51,55,46,49,54,55,50,48,56,93,44,91,45,56,53,46,57,48,54,51,51,54,44,51,55,46,49,52,56,51,55,55,93,44,91,45,56,53,46,55,52,52,50,50,49,44,51,55,46,49,54,57,56,49,51,93,44,91,45,56,53,46,54,56,54,52,56,50,44,51,55,46,49,56,50,52,50,55,93,44,91,45,56,53,46,54,57,55,51,50,53,44,51,55,46,51,48,49,56,51,56,93,44,91,45,56,53,46,54,53,55,51,51,50,44,51,55,46,52,50,49,57,57,54,93,44,91,45,56,53,46,56,57,50,56,48,52,44,51,55,46,52,52,48,51,48,56,93,44,91,45,56,54,46,48,52,55,53,57,56,44,51,55,46,52,52,57,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,52,55,52,51,52,44,51,55,46,53,52,56,51,52,51,93,44,91,45,56,52,46,56,53,48,56,49,54,44,51,55,46,52,50,55,49,52,51,93,44,91,45,56,52,46,55,50,50,56,50,54,44,51,55,46,51,54,48,48,52,51,93,44,91,45,56,52,46,55,50,48,55,49,50,44,51,55,46,50,51,56,51,50,56,93,44,91,45,56,52,46,53,53,54,52,54,49,44,51,55,46,51,53,53,55,50,57,93,44,91,45,56,52,46,53,48,50,57,51,50,44,51,55,46,51,50,56,56,48,49,93,44,91,45,56,52,46,52,52,54,55,49,57,44,51,55,46,52,56,53,56,57,51,93,44,91,45,56,52,46,54,53,56,50,57,54,44,51,55,46,54,51,52,53,48,49,93,44,91,45,56,52,46,56,52,55,52,51,52,44,51,55,46,53,52,56,51,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,108,97,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,50,55,44,34,98,101,100,115,34,58,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,50,51,54,52,57,55,44,52,56,46,57,57,57,53,55,49,93,44,91,45,49,48,57,46,52,56,57,53,53,44,52,57,46,48,48,48,50,57,50,93,44,91,45,49,48,57,46,53,48,53,51,51,51,44,52,56,46,53,54,55,57,49,93,44,91,45,49,48,57,46,52,54,52,51,49,56,44,52,56,46,52,53,50,54,51,56,93,44,91,45,49,48,57,46,53,49,56,55,56,44,52,56,46,51,57,52,55,50,54,93,44,91,45,49,48,57,46,53,51,52,50,57,53,44,52,56,46,49,51,52,53,54,52,93,44,91,45,49,48,57,46,53,51,56,54,55,55,44,52,55,46,55,51,56,56,54,52,93,44,91,45,49,48,57,46,52,49,49,53,48,54,44,52,55,46,55,50,52,54,49,55,93,44,91,45,49,48,57,46,50,55,55,51,56,50,44,52,55,46,55,57,50,52,51,53,93,44,91,45,49,48,56,46,57,52,50,55,52,53,44,52,55,46,55,57,49,56,50,52,93,44,91,45,49,48,56,46,56,57,49,49,49,53,44,52,55,46,55,51,52,52,53,54,93,44,91,45,49,48,56,46,56,56,56,51,49,54,44,52,55,46,57,50,50,55,50,50,93,44,91,45,49,48,56,46,54,50,53,53,56,55,44,52,55,46,57,50,48,52,49,49,93,44,91,45,49,48,56,46,54,48,55,53,55,57,44,52,55,46,57,57,48,57,57,55,93,44,91,45,49,48,56,46,52,51,51,57,56,44,52,55,46,57,55,54,53,53,51,93,44,91,45,49,48,56,46,52,49,49,49,56,54,44,52,56,46,52,52,52,57,56,49,93,44,91,45,49,48,56,46,51,49,57,48,49,49,44,52,56,46,53,54,56,52,51,49,93,44,91,45,49,48,56,46,50,53,57,51,56,52,44,52,56,46,55,52,50,50,50,53,93,44,91,45,49,48,56,46,50,51,54,52,57,55,44,52,56,46,57,57,57,53,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,49,48,34,44,34,78,65,77,69,34,58,34,78,111,114,102,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,53,53,57,50,44,34,98,101,100,115,34,58,57,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,51,52,49,56,50,53,44,51,54,46,57,50,52,55,55,50,93,44,91,45,55,54,46,50,56,57,57,54,50,44,51,54,46,56,50,50,48,52,56,93,44,91,45,55,54,46,50,50,54,48,54,44,51,54,46,56,51,57,57,52,55,93,44,91,45,55,54,46,49,51,51,56,55,50,44,51,55,46,48,52,48,56,56,54,93,44,91,45,55,54,46,51,51,50,50,53,55,44,51,54,46,57,54,54,48,57,57,93,44,91,45,55,54,46,51,52,49,56,50,53,44,51,54,46,57,50,52,55,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,56,57,34,44,34,78,65,77,69,34,58,34,82,101,101,118,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,49,48,50,51,53,49,44,51,49,46,49,48,53,50,48,51,93,44,91,45,49,48,51,46,53,56,53,48,56,52,44,51,48,46,55,54,54,52,55,93,44,91,45,49,48,51,46,48,49,49,48,52,44,51,49,46,51,55,49,51,48,54,93,44,91,45,49,48,51,46,49,56,49,50,50,53,44,51,49,46,51,55,48,50,52,53,93,44,91,45,49,48,51,46,52,54,53,48,53,55,44,51,49,46,52,51,49,57,52,56,93,44,91,45,49,48,51,46,53,48,56,56,48,53,44,51,49,46,54,50,52,49,49,55,93,44,91,45,49,48,51,46,54,49,48,56,56,55,44,51,49,46,54,53,49,56,48,50,93,44,91,45,49,48,51,46,55,48,48,54,48,51,44,51,49,46,55,52,56,51,57,53,93,44,91,45,49,48,51,46,55,57,54,54,49,50,44,51,49,46,55,55,48,48,49,51,93,44,91,45,49,48,51,46,56,49,52,57,57,44,51,49,46,56,53,50,49,52,50,93,44,91,45,49,48,51,46,57,49,50,50,52,56,44,51,49,46,57,48,50,52,50,52,93,44,91,45,49,48,51,46,57,56,48,49,55,57,44,51,50,46,48,48,48,49,50,53,93,44,91,45,49,48,52,46,48,50,52,53,49,50,44,51,50,46,48,48,48,49,48,50,93,44,91,45,49,48,52,46,49,48,50,51,53,49,44,51,49,46,49,48,53,50,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,50,51,52,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,48,54,57,54,50,44,51,55,46,50,52,52,56,55,49,93,44,91,45,56,48,46,56,53,52,54,50,55,44,51,55,46,49,52,55,52,56,50,93,44,91,45,56,48,46,57,49,50,54,55,52,44,51,55,46,48,55,51,51,52,57,93,44,91,45,56,48,46,55,52,48,52,56,51,44,51,54,46,56,55,57,48,48,49,93,44,91,45,56,48,46,54,51,51,57,56,55,44,51,54,46,57,51,49,55,56,93,44,91,45,56,48,46,53,52,51,57,51,51,44,51,54,46,57,56,52,54,51,57,93,44,91,45,56,48,46,53,56,48,52,54,57,44,51,55,46,48,56,57,54,54,50,93,44,91,45,56,48,46,53,57,54,52,48,57,44,51,55,46,49,49,56,56,56,57,93,44,91,45,56,48,46,53,50,57,55,54,50,44,51,55,46,49,51,51,56,52,50,93,44,91,45,56,48,46,54,48,54,57,54,50,44,51,55,46,50,52,52,56,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,54,57,52,44,34,98,101,100,115,34,58,50,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,53,48,51,52,57,44,51,53,46,50,48,56,52,49,50,93,44,91,45,56,48,46,56,52,48,50,55,56,44,51,53,46,48,48,49,54,57,50,93,44,91,45,56,48,46,55,56,49,57,50,49,44,51,52,46,57,51,53,56,52,56,93,44,91,45,56,48,46,55,57,55,52,56,52,44,51,52,46,56,49,57,56,48,51,93,44,91,45,56,48,46,53,54,49,55,49,44,51,52,46,56,49,55,52,50,57,93,44,91,45,56,48,46,51,50,48,56,50,56,44,51,52,46,56,49,51,57,48,54,93,44,91,45,56,48,46,50,55,54,56,50,57,44,51,53,46,49,57,53,55,50,50,93,44,91,45,56,48,46,51,53,56,57,50,50,44,51,53,46,49,54,53,50,56,49,93,44,91,45,56,48,46,53,48,52,57,56,53,44,51,53,46,49,56,52,57,57,56,93,44,91,45,56,48,46,53,53,48,51,52,57,44,51,53,46,50,48,56,52,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,77,99,75,101,110,122,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,51,54,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,52,48,52,52,44,52,55,46,57,57,54,48,56,50,93,44,91,45,49,48,52,46,48,52,52,56,55,49,44,52,55,46,51,57,55,48,54,51,93,44,91,45,49,48,52,46,48,52,52,57,54,56,44,52,55,46,51,51,48,49,52,49,93,44,91,45,49,48,51,46,54,54,54,54,55,53,44,52,55,46,51,50,57,50,53,54,93,44,91,45,49,48,51,46,48,57,57,49,57,55,44,52,55,46,51,50,56,55,49,52,93,44,91,45,49,48,51,46,48,57,57,54,55,44,52,55,46,54,55,52,53,49,56,93,44,91,45,49,48,50,46,54,52,50,54,54,57,44,52,55,46,54,55,52,48,49,50,93,44,91,45,49,48,50,46,54,52,50,50,54,54,44,52,55,46,56,50,51,55,49,51,93,44,91,45,49,48,50,46,53,54,53,57,48,50,44,52,55,46,57,54,57,48,50,56,93,44,91,45,49,48,50,46,54,48,56,51,54,44,52,56,46,48,52,54,51,53,49,93,44,91,45,49,48,50,46,56,50,56,52,55,55,44,52,56,46,49,50,51,54,54,52,93,44,91,45,49,48,51,46,50,48,49,56,57,44,52,56,46,49,51,53,50,48,56,93,44,91,45,49,48,51,46,50,55,55,50,54,54,44,52,56,46,48,53,56,48,50,51,93,44,91,45,49,48,51,46,52,56,53,48,55,50,44,52,56,46,48,48,54,55,50,53,93,44,91,45,49,48,51,46,54,48,56,49,55,52,44,52,56,46,49,49,52,49,50,52,93,44,91,45,49,48,51,46,55,56,52,51,57,52,44,52,56,46,48,53,57,52,57,49,93,44,91,45,49,48,51,46,57,49,57,55,56,57,44,52,55,46,57,53,53,57,53,93,44,91,45,49,48,52,46,48,52,52,48,52,52,44,52,55,46,57,57,54,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,79,107,97,108,111,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,55,51,55,44,34,98,101,100,115,34,58,52,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,55,56,53,54,57,50,44,51,48,46,57,57,54,57,56,93,44,91,45,56,54,46,56,48,48,53,53,52,44,51,48,46,51,51,52,52,57,50,93,44,91,45,56,54,46,54,52,53,56,54,49,44,51,48,46,51,52,54,49,55,51,93,44,91,45,56,54,46,51,57,55,53,48,52,44,51,48,46,51,50,53,51,53,52,93,44,91,45,56,54,46,51,56,56,54,52,54,44,51,48,46,57,57,52,49,56,49,93,44,91,45,56,54,46,54,56,56,51,49,55,44,51,48,46,57,57,52,53,48,55,93,44,91,45,56,54,46,55,56,53,54,57,50,44,51,48,46,57,57,54,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,97,109,101,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,51,55,48,48,44,34,98,101,100,115,34,58,51,56,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,50,56,49,55,56,44,51,55,46,55,48,56,50,51,93,44,91,45,49,50,50,46,48,56,49,52,55,51,44,51,55,46,52,55,55,56,51,56,93,44,91,45,49,50,49,46,52,55,50,54,52,56,44,51,55,46,52,56,50,49,55,93,44,91,45,49,50,49,46,52,55,49,57,50,53,44,51,55,46,52,56,49,55,56,51,93,44,91,45,49,50,49,46,53,53,54,54,53,53,44,51,55,46,53,52,50,55,51,50,93,44,91,45,49,50,49,46,53,53,54,57,57,55,44,51,55,46,56,49,54,52,56,56,93,44,91,45,49,50,49,46,57,54,48,55,55,44,51,55,46,55,49,56,54,50,57,93,44,91,45,49,50,50,46,48,52,53,52,55,51,44,51,55,46,55,57,56,49,50,54,93,44,91,45,49,50,50,46,49,52,48,53,53,49,44,51,55,46,56,48,52,53,57,52,93,44,91,45,49,50,50,46,50,54,52,48,50,55,44,51,55,46,57,48,51,55,55,53,93,44,91,45,49,50,50,46,51,55,51,55,56,50,44,51,55,46,56,56,51,55,50,53,93,44,91,45,49,50,50,46,50,56,49,55,56,44,51,55,46,55,48,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,53,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,50,49,56,51,53,44,51,57,46,50,50,52,49,48,56,93,44,91,45,57,48,46,54,54,51,49,56,49,44,51,56,46,57,51,52,50,50,52,93,44,91,45,57,48,46,53,52,54,56,51,49,44,51,56,46,56,55,52,48,48,57,93,44,91,45,57,48,46,52,53,48,56,49,51,44,51,56,46,57,54,55,55,54,57,93,44,91,45,57,48,46,53,55,48,49,54,57,44,51,56,46,57,57,51,50,57,93,44,91,45,57,48,46,54,48,51,53,54,57,44,51,57,46,49,49,55,53,57,50,93,44,91,45,57,48,46,54,49,51,55,55,53,44,51,57,46,51,57,53,52,49,54,93,44,91,45,57,48,46,57,51,54,55,50,56,44,51,57,46,51,57,57,53,49,49,93,44,91,45,57,48,46,55,50,49,56,51,53,44,51,57,46,50,50,52,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,75,111,115,99,105,117,115,107,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,56,48,54,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,51,53,48,55,44,52,49,46,52,51,54,56,53,54,93,44,91,45,56,54,46,48,53,57,50,51,44,52,49,46,52,51,53,56,49,50,93,44,91,45,56,54,46,48,55,55,53,53,49,44,52,49,46,49,55,50,56,54,56,93,44,91,45,56,54,46,48,55,53,57,51,57,44,52,49,46,48,56,52,56,55,56,93,44,91,45,56,53,46,57,52,53,53,54,49,44,52,49,46,48,52,50,56,55,54,93,44,91,45,56,53,46,54,56,52,49,56,49,44,52,49,46,48,52,54,55,49,54,93,44,91,45,56,53,46,54,53,49,57,50,56,44,52,49,46,50,57,52,55,55,54,93,44,91,45,56,53,46,54,53,51,53,48,55,44,52,49,46,52,51,54,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,78,111,120,117,98,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,49,51,48,53,51,44,51,51,46,50,56,54,52,50,52,93,44,91,45,56,56,46,56,49,50,55,56,50,44,51,50,46,57,50,53,57,55,51,93,44,91,45,56,56,46,51,52,55,56,56,55,44,51,50,46,57,50,57,48,56,50,93,44,91,45,56,56,46,51,52,48,52,51,50,44,51,50,46,57,57,49,49,57,57,93,44,91,45,56,56,46,51,48,52,52,51,52,44,51,51,46,50,56,56,51,50,93,44,91,45,56,56,46,54,54,57,48,55,54,44,51,51,46,50,56,54,57,50,50,93,44,91,45,56,56,46,56,49,51,48,53,51,44,51,51,46,50,56,54,52,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,87,111,111,100,114,117,102,102,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,52,55,50,53,55,44,51,53,46,52,51,57,49,48,54,93,44,91,45,57,49,46,52,51,48,56,56,52,44,51,53,46,51,55,49,53,54,54,93,44,91,45,57,49,46,51,55,57,55,49,57,44,51,53,46,50,49,53,49,52,57,93,44,91,45,57,49,46,52,54,53,49,49,52,44,51,53,46,48,56,57,52,53,52,93,44,91,45,57,49,46,51,54,51,55,54,51,44,51,53,46,48,53,49,56,56,55,93,44,91,45,57,49,46,51,54,56,53,54,44,51,52,46,57,49,50,55,51,53,93,44,91,45,57,49,46,50,57,51,49,49,49,44,51,52,46,57,56,53,48,57,49,93,44,91,45,57,49,46,49,52,57,56,52,50,44,51,53,46,48,48,50,52,55,93,44,91,45,57,49,46,48,52,53,52,51,44,51,53,46,48,48,49,48,52,93,44,91,45,57,49,46,48,52,50,54,55,44,51,53,46,49,52,56,49,56,57,93,44,91,45,57,49,46,48,51,57,55,56,51,44,51,53,46,51,53,52,50,53,54,93,44,91,45,57,49,46,50,53,49,53,53,53,44,51,53,46,51,53,55,53,54,49,93,44,91,45,57,49,46,51,52,55,50,53,55,44,51,53,46,52,51,57,49,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,71,108,111,117,99,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,56,53,50,44,34,98,101,100,115,34,58,51,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,50,49,49,52,54,51,44,51,57,46,56,54,55,48,48,52,93,44,91,45,55,53,46,52,49,53,48,54,50,44,51,57,46,56,48,49,57,49,57,93,44,91,45,55,53,46,52,48,53,52,56,57,44,51,57,46,55,57,54,51,54,56,93,44,91,45,55,53,46,51,54,55,50,51,57,44,51,57,46,55,49,55,53,54,53,93,44,91,45,55,53,46,49,57,57,55,57,51,44,51,57,46,54,54,54,57,57,54,93,44,91,45,55,53,46,48,54,49,56,53,52,44,51,57,46,53,54,56,55,52,54,93,44,91,45,55,52,46,57,56,53,50,55,49,44,51,57,46,53,49,52,57,54,55,93,44,91,45,55,52,46,56,55,55,50,54,44,51,57,46,54,48,56,51,53,50,93,44,91,45,55,53,46,49,51,57,56,51,50,44,51,57,46,56,56,56,51,49,55,93,44,91,45,55,53,46,50,49,49,52,54,51,44,51,57,46,56,54,55,48,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,72,105,108,108,115,98,111,114,111,117,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,49,48,56,55,44,34,98,101,100,115,34,58,49,48,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,48,51,56,49,52,57,44,52,51,46,49,50,56,56,48,55,93,44,91,45,55,50,46,48,48,54,49,57,44,52,50,46,57,52,51,55,56,57,93,44,91,45,55,49,46,57,50,56,57,57,51,44,52,50,46,55,49,50,49,48,50,93,44,91,45,55,49,46,56,57,56,55,55,51,44,52,50,46,55,49,49,51,49,50,93,44,91,45,55,49,46,50,57,52,54,51,55,44,52,50,46,54,57,55,48,52,50,93,44,91,45,55,49,46,50,53,53,49,52,55,44,52,50,46,55,51,54,53,53,52,93,44,91,45,55,49,46,50,52,53,52,56,49,44,52,50,46,55,52,50,53,49,52,93,44,91,45,55,49,46,52,50,55,48,54,55,44,52,50,46,56,50,52,56,52,93,44,91,45,55,49,46,52,53,48,52,51,54,44,52,50,46,57,51,49,48,50,93,44,91,45,55,49,46,51,57,50,51,56,56,44,52,51,46,48,48,57,51,48,57,93,44,91,45,55,49,46,53,49,55,52,54,55,44,52,51,46,48,54,56,57,48,57,93,44,91,45,55,49,46,54,52,49,50,57,49,44,52,51,46,48,53,52,49,54,56,93,44,91,45,55,49,46,54,54,55,55,55,49,44,52,51,46,49,53,50,53,51,52,93,44,91,45,55,49,46,56,53,54,49,44,52,51,46,49,49,53,49,51,53,93,44,91,45,55,49,46,57,49,51,50,49,53,44,52,51,46,50,48,55,48,57,57,93,44,91,45,55,50,46,48,48,57,48,55,52,44,52,51,46,49,56,55,56,56,50,93,44,91,45,55,50,46,48,51,56,49,52,57,44,52,51,46,49,50,56,56,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,74,117,100,105,116,104,32,66,97,115,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,54,51,57,53,53,57,44,52,55,46,52,49,54,52,56,54,93,44,91,45,49,49,48,46,55,54,55,49,50,53,44,52,55,46,51,53,57,49,50,56,93,44,91,45,49,49,48,46,55,55,48,54,57,56,44,52,55,46,48,57,54,53,52,54,93,44,91,45,49,49,48,46,54,52,53,50,49,50,44,52,55,46,48,57,53,56,55,93,44,91,45,49,49,48,46,54,53,50,56,55,55,44,52,54,46,56,50,51,54,50,54,93,44,91,45,49,49,48,46,52,53,52,53,54,54,44,52,54,46,54,55,57,53,52,53,93,44,91,45,49,49,48,46,50,55,51,51,51,55,44,52,54,46,55,49,48,53,48,57,93,44,91,45,49,48,57,46,57,54,55,56,44,52,54,46,55,53,48,56,55,53,93,44,91,45,49,48,57,46,55,52,53,55,52,53,44,52,54,46,54,57,52,48,57,55,93,44,91,45,49,48,57,46,55,57,55,52,54,57,44,52,54,46,56,54,55,48,51,56,93,44,91,45,49,48,57,46,55,53,53,52,50,51,44,52,54,46,56,57,54,48,50,51,93,44,91,45,49,48,57,46,55,53,54,53,54,56,44,52,55,46,49,56,53,54,57,52,93,44,91,45,49,49,48,46,49,50,55,54,57,57,44,52,55,46,50,55,49,57,49,93,44,91,45,49,49,48,46,50,49,51,53,57,54,44,52,55,46,52,49,54,54,53,55,93,44,91,45,49,49,48,46,54,51,57,53,53,57,44,52,55,46,52,49,54,52,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,105,116,99,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,52,48,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,50,50,48,54,52,44,51,54,46,49,53,54,57,54,93,44,91,45,56,50,46,52,49,54,55,51,56,44,51,54,46,48,55,50,56,50,55,93,44,91,45,56,50,46,51,52,53,50,57,44,51,54,46,48,55,54,52,53,57,93,44,91,45,56,50,46,49,57,49,55,48,53,44,51,53,46,57,57,48,54,51,54,93,44,91,45,56,50,46,49,51,51,52,56,52,44,51,53,46,56,50,51,51,48,57,93,44,91,45,56,49,46,57,56,49,57,53,52,44,51,53,46,57,49,49,51,54,49,93,44,91,45,56,50,46,48,51,52,49,48,52,44,51,53,46,57,52,50,48,53,55,93,44,91,45,56,50,46,48,56,49,48,55,57,44,51,54,46,49,48,51,49,55,93,44,91,45,56,50,46,50,50,50,48,54,52,44,51,54,46,49,53,54,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,80,111,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,54,49,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,51,48,50,57,48,51,44,52,54,46,56,51,50,49,53,57,93,44,91,45,49,49,51,46,49,49,53,54,49,52,44,52,54,46,55,49,51,51,56,55,93,44,91,45,49,49,51,46,48,51,56,55,48,50,44,52,54,46,55,51,53,53,52,93,44,91,45,49,49,51,46,48,51,54,56,50,53,44,52,54,46,50,54,54,56,50,54,93,44,91,45,49,49,50,46,53,53,56,53,57,57,44,52,54,46,50,54,53,56,50,49,93,44,91,45,49,49,50,46,53,51,51,54,50,53,44,52,54,46,51,51,48,56,57,56,93,44,91,45,49,49,50,46,51,49,48,53,55,51,44,52,54,46,52,50,49,49,55,49,93,44,91,45,49,49,50,46,51,50,48,56,55,49,44,52,54,46,54,53,53,57,50,55,93,44,91,45,49,49,50,46,53,51,53,53,57,55,44,52,54,46,54,57,57,52,56,50,93,44,91,45,49,49,50,46,53,51,53,55,52,56,44,52,54,46,56,51,52,50,51,52,93,44,91,45,49,49,50,46,55,57,53,54,52,50,44,52,54,46,56,51,49,54,54,53,93,44,91,45,49,49,50,46,55,57,53,56,48,56,44,52,55,46,49,55,55,48,48,52,93,44,91,45,49,49,51,46,48,53,57,48,53,51,44,52,55,46,49,55,57,53,55,93,44,91,45,49,49,51,46,48,53,57,49,57,57,44,52,55,46,52,56,56,53,57,57,93,44,91,45,49,49,51,46,49,52,52,51,54,56,44,52,55,46,53,57,53,53,48,55,93,44,91,45,49,49,51,46,52,54,54,52,56,53,44,52,55,46,54,48,48,48,53,55,93,44,91,45,49,49,51,46,52,54,54,52,53,44,52,55,46,49,55,57,49,56,54,93,44,91,45,49,49,51,46,51,48,50,57,52,51,44,52,55,46,49,55,57,54,52,51,93,44,91,45,49,49,51,46,51,48,50,57,48,51,44,52,54,46,56,51,50,49,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,52,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,55,50,52,54,54,51,44,52,53,46,48,52,52,52,51,50,93,44,91,45,49,50,51,46,55,50,53,48,48,49,44,52,52,46,55,51,57,48,52,54,93,44,91,45,49,50,51,46,54,48,50,54,48,57,44,52,52,46,55,50,49,49,53,52,93,44,91,45,49,50,51,46,49,52,57,48,50,53,44,52,52,46,55,50,48,50,50,53,93,44,91,45,49,50,51,46,49,52,51,56,52,51,44,52,52,46,55,52,56,57,49,52,93,44,91,45,49,50,51,46,49,55,57,51,56,55,44,52,52,46,56,51,53,55,50,57,93,44,91,45,49,50,51,46,48,52,52,57,48,51,44,52,52,46,57,52,52,48,50,56,93,44,91,45,49,50,51,46,48,54,56,54,54,55,44,52,53,46,48,55,52,56,54,93,44,91,45,49,50,51,46,55,50,52,51,54,56,44,52,53,46,48,55,54,50,50,54,93,44,91,45,49,50,51,46,55,50,52,54,54,51,44,52,53,46,48,52,52,52,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,87,97,115,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,54,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,54,57,54,52,55,57,44,52,53,46,50,53,55,57,50,93,44,91,45,49,50,49,46,55,52,56,52,56,53,44,52,53,46,50,48,52,52,52,93,44,91,45,49,50,49,46,54,53,50,48,49,56,44,52,53,46,48,56,54,55,48,54,93,44,91,45,49,50,49,46,56,48,53,54,54,55,44,52,53,46,48,48,54,49,50,52,93,44,91,45,49,50,49,46,55,51,52,50,50,51,44,52,52,46,56,56,53,55,50,93,44,91,45,49,50,49,46,55,53,50,57,57,52,44,52,52,46,56,50,57,57,49,57,93,44,91,45,49,50,49,46,48,56,57,52,56,44,52,52,46,56,50,51,50,55,50,93,44,91,45,49,50,48,46,51,55,49,52,52,49,44,52,52,46,56,50,49,55,54,57,93,44,91,45,49,50,48,46,52,53,53,51,56,57,44,52,52,46,56,54,54,48,52,54,93,44,91,45,49,50,48,46,52,57,53,49,54,44,52,53,46,48,54,56,50,55,57,93,44,91,45,49,50,48,46,53,48,51,55,51,51,44,52,53,46,48,56,51,52,55,55,93,44,91,45,49,50,48,46,55,50,51,53,54,57,44,52,53,46,49,51,48,57,49,49,93,44,91,45,49,50,48,46,56,56,57,51,53,55,44,52,53,46,50,48,50,51,48,53,93,44,91,45,49,50,49,46,48,50,52,50,57,52,44,52,53,46,50,49,57,53,51,49,93,44,91,45,49,50,48,46,56,54,56,53,54,57,44,52,53,46,52,48,49,49,52,54,93,44,91,45,49,50,48,46,56,51,56,55,55,50,44,52,53,46,53,49,53,57,52,54,93,44,91,45,49,50,48,46,57,49,53,56,53,44,52,53,46,54,52,49,50,93,44,91,45,49,50,49,46,48,56,52,56,54,51,44,52,53,46,54,52,55,57,51,50,93,44,91,45,49,50,49,46,51,51,55,55,49,50,44,52,53,46,55,48,52,56,51,57,93,44,91,45,49,50,49,46,52,52,49,50,50,57,44,52,53,46,54,57,55,50,56,93,44,91,45,49,50,49,46,52,56,50,49,54,56,44,52,53,46,53,49,57,54,48,52,93,44,91,45,49,50,49,46,52,56,49,56,56,56,44,52,53,46,50,53,56,49,50,56,93,44,91,45,49,50,49,46,54,57,54,52,55,57,44,52,53,46,50,53,55,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,80,101,114,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,57,52,50,48,55,44,52,53,46,57,52,53,93,44,91,45,49,48,50,46,57,53,55,50,56,49,44,52,53,46,50,49,50,56,53,49,93,44,91,45,49,48,50,46,57,53,55,51,55,49,44,52,53,46,48,51,57,53,54,57,93,44,91,45,49,48,49,46,57,57,57,57,57,44,52,53,46,48,51,56,50,55,52,93,44,91,45,49,48,49,46,57,57,57,55,57,44,52,53,46,52,55,50,52,49,52,93,44,91,45,49,48,50,46,48,48,48,54,56,49,44,52,53,46,57,52,52,53,54,51,93,44,91,45,49,48,50,46,57,52,50,48,55,44,52,53,46,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,48,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,50,56,52,53,57,44,52,48,46,57,48,48,54,53,51,93,44,91,45,57,52,46,57,49,52,56,57,54,44,52,48,46,53,55,53,48,54,56,93,44,91,45,57,52,46,54,51,50,48,51,44,52,48,46,53,55,49,51,54,55,93,44,91,45,57,52,46,52,55,49,50,49,51,44,52,48,46,53,55,48,56,50,53,93,44,91,45,57,52,46,52,55,48,55,55,57,44,52,48,46,56,57,57,53,48,50,93,44,91,45,57,52,46,57,50,56,52,53,57,44,52,48,46,57,48,48,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,54,52,52,51,44,51,49,46,54,57,55,57,53,50,93,44,91,45,56,56,46,52,52,57,52,51,56,44,51,49,46,52,51,53,56,51,55,93,44,91,45,56,56,46,52,51,50,48,48,55,44,51,49,46,49,49,52,50,57,56,93,44,91,45,56,56,46,51,50,57,55,56,50,44,51,49,46,49,52,51,56,50,49,93,44,91,45,56,56,46,48,50,50,54,52,57,44,51,49,46,49,52,52,50,54,55,93,44,91,45,56,55,46,57,55,50,56,54,57,44,51,49,46,49,54,50,54,57,52,93,44,91,45,56,55,46,57,52,54,53,56,56,44,51,49,46,49,57,50,57,51,93,44,91,45,56,55,46,57,53,48,55,57,53,44,51,49,46,50,57,57,52,54,51,93,44,91,45,56,55,46,56,56,56,56,53,55,44,51,49,46,51,54,52,48,50,51,93,44,91,45,56,55,46,57,48,55,51,57,57,44,51,49,46,52,57,52,52,51,56,93,44,91,45,56,56,46,48,55,50,50,51,52,44,51,49,46,53,57,52,53,93,44,91,45,56,56,46,48,56,56,50,56,56,44,51,49,46,54,57,57,51,48,51,93,44,91,45,56,56,46,52,54,52,52,51,44,51,49,46,54,57,55,57,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,101,102,105,97,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,50,55,57,44,34,98,101,100,115,34,58,49,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,49,54,54,52,44,52,49,46,52,50,55,53,54,56,93,44,91,45,56,52,46,56,48,52,48,54,51,44,52,49,46,52,50,54,48,53,49,93,44,91,45,56,52,46,56,48,51,53,56,57,44,52,49,46,50,55,49,50,55,51,93,44,91,45,56,52,46,56,48,51,53,52,52,44,52,49,46,50,53,50,53,54,50,93,44,91,45,56,52,46,52,53,55,50,49,55,44,52,49,46,50,53,51,52,56,53,93,44,91,45,56,52,46,51,52,49,54,48,50,44,52,49,46,49,54,53,53,50,52,93,44,91,45,56,52,46,50,50,56,50,50,50,44,52,49,46,49,54,53,56,54,50,93,44,91,45,56,52,46,50,50,56,52,53,52,44,52,49,46,52,50,55,56,49,93,44,91,45,56,52,46,51,52,49,54,54,52,44,52,49,46,52,50,55,53,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,98,114,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,52,55,44,34,98,101,100,115,34,58,49,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,48,54,51,49,54,44,51,55,46,56,54,56,57,49,53,93,44,91,45,56,48,46,54,54,51,51,52,56,44,51,55,46,55,51,49,54,57,54,93,44,91,45,56,48,46,53,48,54,54,57,53,44,51,55,46,54,57,49,49,53,56,93,44,91,45,56,48,46,50,57,54,49,51,56,44,51,55,46,54,57,49,55,56,51,93,44,91,45,56,48,46,49,54,50,50,48,50,44,51,55,46,56,55,53,49,50,50,93,44,91,45,56,48,46,48,53,54,48,53,54,44,51,55,46,57,53,49,57,53,57,93,44,91,45,55,57,46,57,53,57,56,52,52,44,51,56,46,48,54,51,54,57,55,93,44,91,45,56,48,46,50,54,52,54,53,51,44,51,56,46,48,52,54,54,49,54,93,44,91,45,56,48,46,51,54,51,50,57,53,44,51,56,46,49,49,52,51,51,49,93,44,91,45,56,48,46,51,54,48,48,52,56,44,51,56,46,50,50,53,56,52,53,93,44,91,45,56,48,46,52,51,54,53,49,52,44,51,56,46,50,54,55,51,51,52,93,44,91,45,56,48,46,55,49,49,57,54,49,44,51,56,46,48,55,57,49,50,57,93,44,91,45,56,48,46,56,56,50,49,56,55,44,51,56,46,49,48,51,52,53,55,93,44,91,45,56,48,46,55,54,57,56,54,54,44,51,55,46,57,56,53,50,55,93,44,91,45,56,48,46,56,48,54,51,49,54,44,51,55,46,56,54,56,57,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,56,52,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,57,53,49,54,53,44,51,56,46,56,50,54,50,57,57,93,44,91,45,56,57,46,49,51,56,49,51,56,44,51,56,46,56,50,52,50,48,57,93,44,91,45,56,57,46,49,51,56,51,57,51,44,51,56,46,55,51,54,51,51,49,93,44,91,45,56,57,46,49,52,51,56,54,54,44,51,56,46,53,48,51,48,56,57,93,44,91,45,56,57,46,49,52,52,51,56,56,44,51,56,46,52,55,51,56,55,56,93,44,91,45,56,56,46,54,57,56,57,54,49,44,51,56,46,52,55,52,57,49,52,93,44,91,45,56,56,46,54,57,56,52,53,57,44,51,56,46,54,48,54,48,54,50,93,44,91,45,56,56,46,54,57,53,49,54,53,44,51,56,46,56,50,54,50,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,68,105,99,107,101,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,54,48,44,34,98,101,100,115,34,58,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,49,52,49,57,53,44,51,55,46,50,57,54,48,55,53,93,44,91,45,56,50,46,53,53,51,56,55,52,44,51,55,46,50,48,50,56,51,51,93,44,91,45,56,50,46,52,54,55,51,52,53,44,51,55,46,48,50,50,49,51,54,93,44,91,45,56,50,46,51,50,55,56,51,44,51,54,46,57,55,48,57,56,50,93,44,91,45,56,50,46,49,52,57,51,55,53,44,51,55,46,48,52,49,54,52,49,93,44,91,45,56,50,46,51,49,52,49,57,53,44,51,55,46,50,57,54,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,109,101,108,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,53,53,49,52,56,44,51,55,46,52,49,56,51,54,51,93,44,91,45,55,55,46,57,56,54,49,57,44,51,55,46,52,56,54,50,54,57,93,44,91,45,55,56,46,49,51,50,48,52,56,44,51,55,46,52,53,52,54,56,54,93,44,91,45,55,56,46,50,51,53,48,51,57,44,51,55,46,51,54,56,49,48,50,93,44,91,45,55,56,46,50,51,49,50,51,52,44,51,55,46,50,57,54,50,50,93,44,91,45,55,55,46,55,57,53,57,50,54,44,51,55,46,49,57,50,53,57,50,93,44,91,45,55,55,46,54,53,48,54,49,44,51,55,46,50,54,53,49,49,50,93,44,91,45,55,55,46,55,53,56,54,50,44,51,55,46,50,54,56,55,49,55,93,44,91,45,55,55,46,56,55,55,53,53,54,44,51,55,46,51,54,54,50,52,55,93,44,91,45,55,55,46,56,53,53,49,52,56,44,51,55,46,52,49,56,51,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,51,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,56,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,48,55,48,48,54,44,51,49,46,57,50,52,52,54,53,93,44,91,45,56,52,46,57,53,56,54,52,44,51,49,46,55,55,55,56,53,52,93,44,91,45,56,52,46,57,52,50,51,53,51,44,51,49,46,54,49,56,54,54,57,93,44,91,45,56,52,46,56,49,55,56,52,51,44,51,49,46,54,49,57,55,55,49,93,44,91,45,56,52,46,53,52,54,56,53,52,44,51,49,46,54,50,49,49,57,57,93,44,91,45,56,52,46,54,48,51,48,56,54,44,51,49,46,55,55,50,48,48,49,93,44,91,45,56,52,46,53,57,57,55,55,54,44,51,49,46,57,50,48,49,55,49,93,44,91,45,56,52,46,54,53,53,56,50,44,51,49,46,57,50,48,51,48,56,93,44,91,45,56,52,46,57,48,55,48,48,54,44,51,49,46,57,50,52,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,76,117,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,50,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,54,48,56,52,56,53,44,51,50,46,54,48,53,52,52,57,93,44,91,45,49,48,55,46,57,50,51,57,57,55,44,51,50,46,54,48,52,51,55,57,93,44,91,45,49,48,55,46,57,50,51,55,54,54,44,51,50,46,53,49,55,52,49,54,93,44,91,45,49,48,56,46,50,50,57,51,52,51,44,51,50,46,53,49,54,56,51,55,93,44,91,45,49,48,56,46,50,50,57,57,53,49,44,51,50,46,48,55,57,56,55,93,44,91,45,49,48,56,46,50,49,55,49,52,51,44,51,49,46,56,54,52,49,51,57,93,44,91,45,49,48,56,46,50,48,56,52,56,52,44,51,49,46,55,56,51,54,57,56,93,44,91,45,49,48,55,46,50,57,54,55,57,51,44,51,49,46,55,56,51,54,52,49,93,44,91,45,49,48,55,46,50,57,57,54,51,49,44,51,50,46,54,48,53,51,55,93,44,91,45,49,48,55,46,54,48,56,52,56,53,44,51,50,46,54,48,53,52,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,53,53,34,44,34,78,65,77,69,34,58,34,78,117,101,99,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,48,52,56,54,44,34,98,101,100,115,34,58,49,49,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,57,56,53,49,55,44,50,55,46,57,57,53,54,53,57,93,44,91,45,57,55,46,57,51,52,50,55,52,44,50,55,46,56,56,53,50,48,50,93,44,91,45,57,55,46,57,52,50,49,52,54,44,50,55,46,54,51,53,57,51,50,93,44,91,45,57,55,46,56,52,48,54,55,56,44,50,55,46,53,53,56,51,53,56,93,44,91,45,57,55,46,49,54,53,48,57,55,44,50,55,46,53,54,56,51,93,44,91,45,57,54,46,57,56,52,50,56,49,44,50,55,46,56,48,51,55,56,51,93,44,91,45,57,55,46,49,51,54,51,49,50,44,50,55,46,57,48,52,51,57,93,44,91,45,57,55,46,49,56,53,53,55,57,44,50,55,46,56,51,48,50,55,50,93,44,91,45,57,55,46,51,51,55,54,55,55,44,50,55,46,56,56,51,49,54,53,93,44,91,45,57,55,46,53,56,57,52,55,51,44,50,55,46,56,53,54,49,48,49,93,44,91,45,57,55,46,55,57,56,53,49,55,44,50,55,46,57,57,53,54,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,87,101,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,48,48,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,55,57,50,56,49,44,52,52,46,49,55,54,49,56,50,93,44,91,45,49,48,53,46,48,55,57,55,57,55,44,52,51,46,52,57,56,52,52,53,93,44,91,45,49,48,52,46,56,57,57,57,52,49,44,52,51,46,52,57,57,54,52,93,44,91,45,49,48,52,46,48,53,52,55,56,54,44,52,51,46,53,48,51,51,50,56,93,44,91,45,49,48,52,46,48,53,53,52,56,55,44,52,51,46,56,53,51,52,55,54,93,44,91,45,49,48,52,46,48,53,52,53,56,56,44,52,52,46,49,52,49,48,56,49,93,44,91,45,49,48,52,46,48,53,52,52,56,55,44,52,52,46,49,56,48,51,56,49,93,44,91,45,49,48,53,46,48,55,57,50,56,49,44,52,52,46,49,55,54,49,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,84,111,97,32,66,97,106,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,55,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,56,55,50,55,49,44,49,56,46,53,50,54,50,55,49,93,44,91,45,54,54,46,50,53,50,53,53,52,44,49,56,46,51,57,52,49,56,55,93,44,91,45,54,54,46,49,57,54,57,56,44,49,56,46,51,56,57,50,56,57,93,44,91,45,54,54,46,49,54,57,53,49,54,44,49,56,46,52,51,48,57,57,56,93,44,91,45,54,54,46,49,50,57,52,48,51,44,49,56,46,52,54,53,54,51,50,93,44,91,45,54,54,46,49,50,56,57,56,54,44,49,56,46,53,50,52,52,48,51,93,44,91,45,54,54,46,49,56,55,50,55,49,44,49,56,46,53,50,54,50,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,51,56,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,56,53,49,57,52,44,52,49,46,48,54,56,55,52,57,93,44,91,45,57,48,46,55,56,57,54,53,50,44,52,48,46,54,51,53,55,53,93,44,91,45,57,48,46,52,52,53,54,50,55,44,52,48,46,54,50,55,54,51,56,93,44,91,45,57,48,46,52,52,52,51,51,57,44,52,48,46,55,49,52,56,54,56,93,44,91,45,57,48,46,52,51,57,52,50,51,44,52,49,46,48,54,51,57,57,53,93,44,91,45,57,48,46,55,56,53,49,57,52,44,52,49,46,48,54,56,55,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,53,54,48,44,34,98,101,100,115,34,58,49,50,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,49,56,55,54,49,44,51,52,46,57,57,49,49,54,57,93,44,91,45,56,54,46,55,56,51,54,50,56,44,51,52,46,57,57,49,57,52,56,93,44,91,45,56,54,46,55,57,48,48,53,54,44,51,52,46,53,53,48,55,57,93,44,91,45,56,54,46,54,56,57,51,53,51,44,51,52,46,53,56,54,52,50,53,93,44,91,45,56,54,46,53,53,48,49,54,54,44,51,52,46,53,52,53,57,54,51,93,44,91,45,56,54,46,52,50,53,52,56,50,44,51,52,46,52,55,57,50,55,55,93,44,91,45,56,54,46,51,49,49,49,56,55,44,51,52,46,53,51,57,50,55,55,93,44,91,45,56,54,46,51,50,54,56,53,51,44,51,52,46,53,57,57,52,48,51,93,44,91,45,56,54,46,51,53,57,48,51,52,44,51,52,46,54,51,50,54,49,93,44,91,45,56,54,46,51,53,49,49,50,51,44,51,52,46,56,55,51,50,54,53,93,44,91,45,56,54,46,51,49,49,50,55,52,44,51,52,46,57,57,49,48,57,56,93,44,91,45,56,54,46,51,49,56,55,54,49,44,51,52,46,57,57,49,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,87,105,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,54,54,51,44,34,98,101,100,115,34,58,49,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,57,52,50,56,54,44,51,54,46,50,52,53,49,48,53,93,44,91,45,56,54,46,53,49,53,53,56,57,44,51,54,46,49,48,48,54,49,93,44,91,45,56,54,46,51,50,54,50,53,50,44,51,53,46,57,56,53,48,48,56,93,44,91,45,56,54,46,49,53,51,50,49,52,44,51,53,46,57,53,52,51,57,57,93,44,91,45,56,54,46,48,49,52,56,52,57,44,51,53,46,57,54,49,48,54,93,44,91,45,56,54,46,48,53,57,55,48,54,44,51,54,46,48,56,54,48,50,52,93,44,91,45,56,54,46,49,51,54,56,48,51,44,51,54,46,50,57,53,56,53,57,93,44,91,45,56,54,46,50,56,51,50,53,54,44,51,54,46,51,52,55,53,93,44,91,45,56,54,46,52,53,49,55,50,49,44,51,54,46,51,51,53,54,50,57,93,44,91,45,56,54,46,53,57,52,50,56,54,44,51,54,46,50,52,53,49,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,67,97,109,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,49,57,56,50,56,44,51,50,46,57,56,50,56,56,54,93,44,91,45,57,52,46,57,50,55,55,50,55,44,51,51,46,48,55,48,51,48,52,93,44,91,45,57,53,46,49,50,54,49,51,44,51,51,46,48,51,52,53,56,49,93,44,91,45,57,53,46,49,53,50,50,48,54,44,51,51,46,48,49,51,52,53,93,44,91,45,57,53,46,49,53,50,49,49,44,51,50,46,57,48,50,54,52,49,93,44,91,45,57,52,46,55,49,57,57,52,50,44,51,50,46,57,48,52,53,48,50,93,44,91,45,57,52,46,56,49,57,56,50,56,44,51,50,46,57,56,50,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,50,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,49,51,57,48,55,50,44,51,52,46,49,52,49,56,55,93,44,91,45,57,56,46,48,56,52,52,51,53,44,51,52,46,48,48,50,56,57,51,93,44,91,45,57,55,46,57,52,54,56,48,50,44,51,51,46,57,57,48,56,57,51,93,44,91,45,57,55,46,57,55,55,56,54,44,51,51,46,56,56,57,56,50,53,93,44,91,45,57,55,46,56,55,55,51,56,55,44,51,51,46,56,53,48,50,51,54,93,44,91,45,57,55,46,54,54,49,52,56,57,44,51,51,46,57,57,48,56,49,56,93,44,91,45,57,55,46,53,54,48,56,53,56,44,51,51,46,56,57,57,54,52,53,93,44,91,45,57,55,46,53,54,48,55,54,49,44,51,52,46,48,55,49,49,53,93,44,91,45,57,55,46,53,54,50,53,49,50,44,51,52,46,50,56,57,49,56,51,93,44,91,45,57,56,46,49,51,57,50,50,55,44,51,52,46,50,56,57,56,50,52,93,44,91,45,57,56,46,49,51,57,48,55,50,44,51,52,46,49,52,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,82,105,116,99,104,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,57,56,48,49,55,44,51,57,46,49,56,53,53,55,50,93,44,91,45,56,49,46,50,53,48,50,53,50,44,51,57,46,48,51,53,48,55,52,93,44,91,45,56,49,46,49,54,50,52,53,53,44,51,57,46,48,51,48,54,48,56,93,44,91,45,56,49,46,48,51,51,54,51,50,44,51,57,46,48,48,57,53,56,52,93,44,91,45,56,48,46,56,49,50,57,55,44,51,57,46,49,48,57,52,48,49,93,44,91,45,56,48,46,56,56,56,55,52,52,44,51,57,46,50,57,52,50,57,56,93,44,91,45,56,49,46,48,48,55,56,51,54,44,51,57,46,51,53,48,57,50,51,93,44,91,45,56,49,46,50,50,49,51,51,53,44,51,57,46,51,48,55,52,55,53,93,44,91,45,56,49,46,50,51,57,52,55,55,44,51,57,46,50,54,56,51,50,56,93,44,91,45,56,49,46,50,57,56,48,49,55,44,51,57,46,49,56,53,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,80,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,54,51,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,56,52,57,54,52,44,52,48,46,57,48,49,53,53,93,44,91,45,57,53,46,51,55,51,57,50,51,44,52,48,46,53,56,48,53,48,51,93,44,91,45,57,53,46,50,48,50,50,54,53,44,52,48,46,53,55,56,52,56,56,93,44,91,45,57,52,46,57,49,52,56,57,54,44,52,48,46,53,55,53,48,54,56,93,44,91,45,57,52,46,57,50,56,52,53,57,44,52,48,46,57,48,48,54,53,51,93,44,91,45,57,53,46,51,56,52,57,54,52,44,52,48,46,57,48,49,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,56,56,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,55,48,51,53,49,44,51,57,46,52,49,57,48,53,93,44,91,45,57,53,46,53,56,57,52,55,50,44,51,57,46,50,49,54,48,56,49,93,44,91,45,57,53,46,53,57,54,55,53,57,44,51,57,46,48,54,52,54,55,50,93,44,91,45,57,53,46,53,48,48,50,53,52,44,51,57,46,48,53,54,54,53,54,93,44,91,45,57,53,46,49,56,55,49,48,51,44,51,57,46,48,52,52,49,48,57,93,44,91,45,57,53,46,49,56,48,56,57,49,44,51,57,46,52,49,57,50,49,56,93,44,91,45,57,53,46,53,55,48,51,53,49,44,51,57,46,52,49,57,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,73,98,101,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,54,57,49,44,34,98,101,100,115,34,58,49,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,54,52,52,53,56,44,51,48,46,48,51,54,57,49,56,93,44,91,45,57,49,46,57,57,48,51,57,54,44,50,57,46,57,55,48,51,50,54,93,44,91,45,57,49,46,57,55,57,57,48,56,44,50,57,46,54,53,48,49,50,56,93,44,91,45,57,50,46,48,52,53,54,49,54,44,50,57,46,53,48,53,56,48,54,93,44,91,45,57,49,46,56,52,48,57,51,52,44,50,57,46,51,54,48,49,57,93,44,91,45,57,49,46,53,57,49,56,54,52,44,50,57,46,51,53,57,51,55,53,93,44,91,45,57,49,46,53,57,49,51,44,50,57,46,53,48,55,55,48,49,93,44,91,45,57,49,46,55,50,51,50,53,52,44,50,57,46,54,54,49,50,57,55,93,44,91,45,57,49,46,57,51,53,49,54,50,44,50,57,46,54,55,50,53,55,56,93,44,91,45,57,49,46,55,49,49,49,52,57,44,50,57,46,56,52,54,48,54,53,93,44,91,45,57,49,46,54,50,52,55,48,57,44,50,57,46,57,52,53,50,55,53,93,44,91,45,57,49,46,52,55,49,57,53,49,44,50,57,46,57,53,53,57,56,57,93,44,91,45,57,49,46,50,53,53,50,50,57,44,50,57,46,57,55,49,52,53,55,93,44,91,45,57,49,46,50,50,52,51,53,54,44,51,48,46,48,50,53,51,51,54,93,44,91,45,57,49,46,51,54,56,56,51,53,44,51,48,46,48,53,56,56,50,52,93,44,91,45,57,49,46,54,48,48,51,53,52,44,51,48,46,48,51,51,49,54,57,93,44,91,45,57,49,46,54,53,56,56,56,54,44,51,48,46,49,48,56,50,50,54,93,44,91,45,57,49,46,55,54,53,49,54,56,44,51,48,46,49,48,56,52,57,53,93,44,91,45,57,49,46,56,49,57,50,49,54,44,51,48,46,48,52,52,48,49,51,93,44,91,45,57,49,46,57,53,48,57,57,56,44,51,48,46,48,55,51,50,49,51,93,44,91,45,57,49,46,57,54,52,52,53,56,44,51,48,46,48,51,54,57,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,53,56,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,56,34,44,34,78,65,77,69,34,58,34,75,117,115,105,108,118,97,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,54,50,46,54,55,49,56,49,51,44,54,51,46,51,49,50,56,50,53,93,44,91,45,49,54,50,46,56,55,48,56,54,49,44,54,51,46,50,53,51,53,53,57,93,44,91,45,49,54,51,46,49,49,56,55,48,50,44,54,51,46,49,48,49,53,53,56,93,44,91,45,49,54,51,46,50,53,50,52,55,57,44,54,51,46,48,57,50,52,53,52,93,44,91,45,49,54,51,46,54,53,56,49,48,49,44,54,51,46,50,52,57,55,49,55,93,44,91,45,49,54,52,46,48,53,49,50,53,54,44,54,51,46,51,49,55,51,53,53,93,44,91,45,49,54,52,46,52,57,53,54,55,51,44,54,51,46,50,53,49,49,53,57,93,44,91,45,49,54,52,46,57,48,54,55,51,54,44,54,51,46,48,52,52,56,57,53,93,44,91,45,49,54,52,46,56,57,53,53,51,51,44,54,50,46,57,52,56,54,51,54,93,44,91,45,49,54,53,46,50,50,49,56,56,56,44,54,50,46,55,50,50,52,54,54,93,44,91,45,49,54,53,46,52,52,56,56,55,44,54,50,46,51,57,49,48,50,50,93,44,91,45,49,54,53,46,55,51,57,53,54,54,44,54,50,46,50,48,52,56,53,50,93,44,91,45,49,54,54,46,48,52,57,50,49,51,44,54,50,46,49,48,56,48,50,50,93,44,91,45,49,54,54,46,49,49,50,53,49,52,44,54,49,46,56,55,51,49,52,52,93,44,91,45,49,54,54,46,49,57,55,55,54,51,44,54,49,46,56,51,52,50,55,51,93,44,91,45,49,54,54,46,50,56,56,54,49,51,44,54,49,46,53,56,48,56,48,57,93,44,91,45,49,54,54,46,49,57,52,52,57,44,54,49,46,52,53,57,56,54,55,93,44,91,45,49,54,53,46,55,56,54,56,56,49,44,54,49,46,49,57,56,49,49,53,93,44,91,45,49,54,53,46,54,54,51,54,53,44,54,49,46,48,53,55,56,48,57,93,44,91,45,49,54,53,46,52,49,54,54,55,44,54,49,46,48,49,50,52,56,93,44,91,45,49,54,53,46,50,53,52,49,54,50,44,54,48,46,57,49,55,49,48,56,93,44,91,45,49,54,53,46,48,48,48,53,49,52,44,54,48,46,57,54,51,54,51,53,93,44,91,45,49,54,52,46,54,49,54,53,56,53,44,54,48,46,57,55,57,48,52,57,93,44,91,45,49,54,52,46,53,50,57,57,49,49,44,54,48,46,57,52,48,55,57,54,93,44,91,45,49,54,52,46,50,51,57,55,50,55,44,54,48,46,57,56,55,49,49,57,93,44,91,45,49,54,52,46,50,49,49,55,56,49,44,54,49,46,48,56,50,50,54,50,93,44,91,45,49,54,51,46,57,50,48,56,55,52,44,54,49,46,50,49,48,54,57,50,93,44,91,45,49,54,51,46,57,56,53,49,51,56,44,54,49,46,51,55,50,48,48,51,93,44,91,45,49,54,51,46,54,53,53,51,57,44,54,49,46,51,51,53,56,50,55,93,44,91,45,49,54,51,46,52,50,56,56,54,54,44,54,49,46,52,54,50,50,56,93,44,91,45,49,54,51,46,49,55,49,51,53,52,44,54,49,46,52,52,57,48,55,49,93,44,91,45,49,54,50,46,53,48,53,55,54,49,44,54,49,46,53,53,54,52,50,54,93,44,91,45,49,54,50,46,48,49,51,52,51,56,44,54,49,46,52,55,55,48,53,55,93,44,91,45,49,54,49,46,52,52,57,54,49,49,44,54,49,46,53,54,56,56,51,56,93,44,91,45,49,54,49,46,49,50,54,56,49,50,44,54,49,46,53,57,57,53,52,93,44,91,45,49,54,48,46,55,55,53,50,52,52,44,54,49,46,55,51,56,53,50,55,93,44,91,45,49,54,48,46,51,53,48,49,52,44,54,49,46,56,49,57,48,55,49,93,44,91,45,49,54,48,46,53,51,52,54,55,49,44,54,49,46,57,52,53,57,52,93,44,91,45,49,54,48,46,57,49,53,57,53,51,44,54,49,46,57,52,53,57,52,51,93,44,91,45,49,54,48,46,57,49,53,57,54,52,44,54,50,46,50,48,53,56,54,54,93,44,91,45,49,54,49,46,48,52,56,49,54,53,44,54,50,46,50,48,53,56,54,57,93,44,91,45,49,54,49,46,48,52,56,49,55,54,44,54,50,46,53,53,50,52,49,93,44,91,45,49,54,48,46,57,57,54,50,48,49,44,54,50,46,53,53,50,52,50,52,93,44,91,45,49,54,48,46,57,57,54,50,49,53,44,54,50,46,56,57,56,57,51,54,93,44,91,45,49,54,48,46,56,53,55,57,57,44,54,51,46,48,49,49,57,53,51,93,44,91,45,49,54,50,46,48,48,49,55,54,57,44,54,51,46,48,49,49,57,49,57,93,44,91,45,49,54,50,46,48,48,49,55,57,56,44,54,51,46,48,57,56,53,51,54,93,44,91,45,49,54,50,46,51,56,51,48,56,50,44,54,51,46,50,55,49,56,49,54,93,44,91,45,49,54,50,46,54,55,49,56,49,51,44,54,51,46,51,49,50,56,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,79,110,115,108,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,51,57,49,50,44,34,98,101,100,115,34,58,51,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,55,52,56,48,53,44,51,52,46,57,55,51,57,93,44,91,45,55,55,46,54,53,49,48,52,53,44,51,52,46,57,50,51,51,52,49,93,44,91,45,55,55,46,54,56,48,49,50,55,44,51,52,46,55,50,48,53,57,53,93,44,91,45,55,55,46,53,55,52,57,50,52,44,51,52,46,52,55,56,54,56,49,93,44,91,45,55,55,46,52,56,52,53,51,56,44,51,52,46,51,57,57,55,48,53,93,44,91,45,55,55,46,49,49,55,49,57,56,44,51,52,46,53,56,52,51,54,55,93,44,91,45,55,55,46,48,57,54,57,55,50,44,51,52,46,54,55,50,52,48,49,93,44,91,45,55,55,46,49,54,53,57,56,54,44,51,52,46,55,56,53,48,51,50,93,44,91,45,55,55,46,50,54,55,52,51,51,44,51,52,46,57,50,53,53,51,55,93,44,91,45,55,55,46,51,54,54,55,54,56,44,51,52,46,57,48,56,54,53,93,44,91,45,55,55,46,53,48,50,55,55,49,44,51,52,46,57,54,57,54,51,53,93,44,91,45,55,55,46,54,55,52,56,48,53,44,51,52,46,57,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,70,97,114,105,98,97,117,108,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,57,54,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,52,55,49,50,51,44,52,51,46,56,52,55,57,52,54,93,44,91,45,57,52,46,50,52,55,57,54,56,44,52,51,46,53,48,48,49,51,51,93,44,91,45,57,51,46,57,55,48,55,54,50,44,52,51,46,52,57,57,56,56,54,93,44,91,45,57,51,46,54,52,56,53,51,51,44,52,51,46,52,57,57,54,56,93,44,91,45,57,51,46,54,52,56,50,57,44,52,51,46,56,52,56,49,51,57,93,44,91,45,57,51,46,55,54,55,55,54,49,44,52,51,46,56,52,55,57,53,54,93,44,91,45,57,52,46,50,52,55,49,50,51,44,52,51,46,56,52,55,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,71,114,97,105,110,103,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,54,55,52,48,56,44,51,54,46,51,52,52,51,56,49,93,44,91,45,56,51,46,55,51,50,55,48,52,44,51,54,46,49,54,52,53,56,51,93,44,91,45,56,51,46,54,54,55,52,54,44,51,54,46,48,56,48,53,56,55,93,44,91,45,56,51,46,53,57,55,55,54,54,44,51,54,46,49,54,52,49,56,50,93,44,91,45,56,51,46,52,54,55,48,57,55,44,51,54,46,49,55,52,54,56,56,93,44,91,45,56,51,46,51,53,53,49,57,54,44,51,54,46,50,56,50,53,57,93,44,91,45,56,51,46,50,53,53,50,57,50,44,51,54,46,50,56,57,48,57,50,93,44,91,45,56,51,46,50,56,48,53,57,53,44,51,54,46,51,57,52,54,56,57,93,44,91,45,56,51,46,51,56,54,56,44,51,54,46,52,49,51,49,56,54,93,44,91,45,56,51,46,52,54,54,48,48,50,44,51,54,46,51,54,57,49,56,54,93,44,91,45,56,51,46,54,54,55,52,48,56,44,51,54,46,51,52,52,51,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,70,114,101,101,115,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,48,57,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,57,54,55,49,51,44,51,49,46,55,57,54,49,57,49,93,44,91,45,57,54,46,50,51,54,54,50,57,44,51,49,46,52,49,51,51,57,50,93,44,91,45,57,53,46,55,56,55,51,44,51,49,46,54,49,56,51,56,53,93,44,91,45,57,53,46,56,55,53,57,51,55,44,51,49,46,55,53,53,53,48,51,93,44,91,45,57,53,46,57,56,51,52,52,57,44,51,49,46,55,56,57,57,55,57,93,44,91,45,57,54,46,48,53,50,55,56,54,44,51,50,46,48,48,53,56,57,53,93,44,91,45,57,54,46,48,53,52,55,56,44,51,50,46,48,49,50,53,50,54,93,44,91,45,57,54,46,52,57,54,55,49,51,44,51,49,46,55,57,54,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,105,102,102,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,51,54,50,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,56,49,51,51,52,44,52,48,46,55,50,57,55,53,56,93,44,91,45,55,55,46,54,56,55,48,56,44,52,48,46,54,55,54,55,53,93,44,91,45,55,55,46,56,52,49,56,50,55,44,52,48,46,53,53,48,48,51,53,93,44,91,45,55,55,46,56,49,54,53,49,51,44,52,48,46,53,48,48,48,55,52,93,44,91,45,55,55,46,57,49,51,56,52,52,44,52,48,46,51,57,56,54,55,57,93,44,91,45,55,55,46,55,53,50,49,50,44,52,48,46,51,55,56,53,52,53,93,44,91,45,55,55,46,52,57,55,53,48,54,44,52,48,46,53,56,49,55,52,93,44,91,45,55,55,46,50,56,55,57,52,49,44,52,48,46,54,57,51,53,57,53,93,44,91,45,55,55,46,51,53,54,54,50,56,44,52,48,46,56,48,55,51,51,52,93,44,91,45,55,55,46,51,54,52,49,56,44,52,48,46,56,52,54,57,51,55,93,44,91,45,55,55,46,54,56,49,51,51,52,44,52,48,46,55,50,57,55,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,114,101,110,115,104,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,54,53,44,34,98,101,100,115,34,58,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,52,56,49,57,56,44,51,49,46,57,54,52,54,50,57,93,44,91,45,56,54,46,52,52,56,54,51,53,44,51,49,46,54,53,53,54,49,55,93,44,91,45,56,54,46,52,57,57,50,49,51,44,51,49,46,53,50,53,51,51,49,93,44,91,45,56,54,46,51,57,56,53,51,54,44,51,49,46,52,53,49,51,50,53,93,44,91,45,56,54,46,49,57,51,57,53,49,44,51,49,46,52,52,48,48,55,50,93,44,91,45,56,54,46,49,52,53,56,57,53,44,51,49,46,54,49,55,55,52,49,93,44,91,45,56,54,46,49,52,56,51,51,57,44,51,49,46,55,57,48,57,53,49,93,44,91,45,56,54,46,49,57,49,51,55,57,44,51,49,46,57,54,54,52,53,51,93,44,91,45,56,54,46,51,48,50,50,49,55,44,51,49,46,57,54,53,48,54,53,93,44,91,45,56,54,46,52,48,54,50,55,54,44,51,50,46,48,53,48,55,51,49,93,44,91,45,56,54,46,52,52,56,49,57,56,44,51,49,46,57,54,52,54,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,50,48,34,44,34,78,65,77,69,34,58,34,66,114,105,115,116,111,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,50,49,57,54,52,44,51,54,46,54,52,54,57,51,54,93,44,91,45,56,50,46,50,52,51,51,56,50,44,51,54,46,53,57,53,54,53,49,93,44,91,45,56,50,46,49,52,53,53,55,51,44,51,54,46,53,57,52,55,50,53,93,44,91,45,56,50,46,49,50,49,57,54,52,44,51,54,46,54,52,54,57,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,57,57,34,44,34,78,65,77,69,34,58,34,82,117,110,110,101,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,49,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,49,50,51,52,44,51,49,46,53,56,48,50,54,55,93,44,91,45,57,57,46,55,50,49,54,57,56,44,51,49,46,53,55,54,55,53,57,93,44,91,45,57,57,46,55,49,51,57,55,49,44,51,50,46,48,56,50,48,56,57,93,44,91,45,49,48,48,46,49,53,49,57,49,49,44,51,50,46,48,56,50,54,51,56,93,44,91,45,49,48,48,46,50,51,53,49,51,55,44,51,50,46,48,56,50,51,55,50,93,44,91,45,49,48,48,46,50,51,53,55,54,49,44,51,49,46,54,57,50,57,55,93,44,91,45,49,48,48,46,50,51,52,54,51,54,44,51,49,46,53,56,55,49,52,55,93,44,91,45,49,48,48,46,49,49,49,50,51,52,44,51,49,46,53,56,48,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,52,51,34,44,34,78,65,77,69,34,58,34,84,101,114,114,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,51,50,48,56,49,57,44,50,57,46,56,55,56,57,51,51,93,44,91,45,49,48,50,46,49,49,54,55,50,51,44,50,57,46,55,57,51,48,51,56,93,44,91,45,49,48,49,46,55,54,48,57,50,52,44,50,57,46,55,56,49,56,48,50,93,44,91,45,49,48,49,46,55,53,56,52,44,51,48,46,50,56,56,48,52,52,93,44,91,45,49,48,49,46,54,53,56,53,51,44,51,48,46,51,53,55,56,54,49,93,44,91,45,49,48,49,46,55,52,48,52,50,57,44,51,48,46,52,50,48,56,57,55,93,44,91,45,49,48,49,46,54,52,54,53,48,54,44,51,48,46,53,53,49,49,49,50,93,44,91,45,49,48,49,46,54,54,57,56,51,51,44,51,48,46,54,51,55,57,48,55,93,44,91,45,49,48,49,46,55,54,56,52,50,44,51,48,46,54,53,51,48,55,55,93,44,91,45,49,48,50,46,49,51,55,55,55,56,44,51,48,46,54,53,53,57,56,50,93,44,91,45,49,48,50,46,49,51,56,52,48,54,44,51,48,46,53,57,55,53,50,49,93,44,91,45,49,48,50,46,51,52,50,57,56,54,44,51,48,46,53,57,56,55,53,57,93,44,91,45,49,48,50,46,51,52,51,48,56,53,44,51,48,46,50,56,52,49,49,54,93,44,91,45,49,48,50,46,53,54,54,57,51,55,44,51,48,46,50,56,51,50,54,57,93,44,91,45,49,48,50,46,53,54,55,48,52,57,44,51,48,46,48,53,50,56,48,56,93,44,91,45,49,48,50,46,51,50,48,56,49,57,44,50,57,46,56,55,56,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,82,97,119,108,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,57,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,53,56,56,51,44,52,48,46,48,48,50,51,48,50,93,44,91,45,49,48,49,46,51,50,53,53,49,52,44,52,48,46,48,48,50,55,48,50,93,44,91,45,49,48,49,46,52,49,49,48,50,57,44,52,48,46,48,48,50,53,50,50,93,44,91,45,49,48,49,46,52,49,51,57,49,51,44,51,57,46,53,54,56,51,54,49,93,44,91,45,49,48,49,46,51,56,57,48,54,56,44,51,57,46,53,54,56,51,54,57,93,44,91,45,49,48,48,46,55,52,48,56,55,51,44,51,57,46,53,54,56,48,52,51,93,44,91,45,49,48,48,46,55,51,56,56,50,53,44,52,48,46,48,48,50,49,49,54,93,44,91,45,49,48,48,46,55,53,56,56,51,44,52,48,46,48,48,50,51,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,84,104,111,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,51,56,57,48,54,56,44,51,57,46,53,54,56,51,54,57,93,44,91,45,49,48,49,46,51,57,49,55,49,55,44,51,57,46,49,51,53,49,49,55,93,44,91,45,49,48,48,46,56,49,49,56,53,56,44,51,57,46,49,51,51,51,54,93,44,91,45,49,48,48,46,55,50,49,50,57,54,44,51,57,46,49,51,51,51,56,49,93,44,91,45,49,48,48,46,55,50,48,50,49,51,44,51,57,46,53,54,56,48,51,52,93,44,91,45,49,48,48,46,55,52,48,56,55,51,44,51,57,46,53,54,56,48,52,51,93,44,91,45,49,48,49,46,51,56,57,48,54,56,44,51,57,46,53,54,56,51,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,32,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,57,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,52,53,54,53,57,44,51,49,46,57,49,56,56,56,51,93,44,91,45,56,50,46,56,51,54,51,54,54,44,51,49,46,56,49,54,49,53,52,93,44,91,45,56,50,46,56,51,54,54,51,51,44,51,49,46,54,55,49,51,57,56,93,44,91,45,56,50,46,54,50,55,51,52,50,44,51,49,46,54,55,50,54,55,50,93,44,91,45,56,50,46,53,50,49,52,50,44,51,49,46,55,49,48,55,57,54,93,44,91,45,56,50,46,53,50,48,50,53,49,44,51,49,46,56,51,56,51,56,56,93,44,91,45,56,50,46,52,51,49,51,54,50,44,51,49,46,56,51,55,57,57,51,93,44,91,45,56,50,46,52,51,49,53,51,49,44,51,49,46,57,54,54,49,56,50,93,44,91,45,56,50,46,52,56,51,49,51,49,44,51,49,46,57,54,56,57,54,49,93,44,91,45,56,50,46,53,52,51,54,53,53,44,51,49,46,57,53,56,57,49,52,93,44,91,45,56,50,46,54,52,53,54,53,57,44,51,49,46,57,49,56,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,54,56,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,53,57,51,55,55,44,52,50,46,57,48,57,48,57,55,93,44,91,45,57,53,46,56,53,57,57,52,57,44,52,50,46,53,54,48,54,50,93,44,91,45,57,53,46,55,52,49,54,49,49,44,52,50,46,53,54,49,50,56,53,93,44,91,45,57,53,46,51,56,56,48,49,44,52,50,46,53,54,49,55,52,50,93,44,91,45,57,53,46,51,56,56,49,56,50,44,52,50,46,57,48,57,56,57,55,93,44,91,45,57,53,46,56,53,57,51,55,55,44,52,50,46,57,48,57,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,56,48,52,44,34,98,101,100,115,34,58,52,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,57,51,57,53,56,44,51,53,46,53,51,52,49,49,52,93,44,91,45,57,49,46,56,53,49,57,53,56,44,51,53,46,51,53,56,50,56,55,93,44,91,45,57,50,46,49,49,49,52,54,51,44,51,53,46,51,54,50,55,50,53,93,44,91,45,57,50,46,49,49,57,55,49,57,44,51,53,46,48,54,54,52,57,51,93,44,91,45,57,49,46,56,48,50,53,48,53,44,51,53,46,48,51,48,52,50,53,93,44,91,45,57,49,46,53,56,52,48,48,53,44,51,53,46,48,57,49,53,56,52,93,44,91,45,57,49,46,52,54,53,49,49,52,44,51,53,46,48,56,57,52,53,52,93,44,91,45,57,49,46,51,55,57,55,49,57,44,51,53,46,50,49,53,49,52,57,93,44,91,45,57,49,46,52,51,48,56,56,52,44,51,53,46,51,55,49,53,54,54,93,44,91,45,57,49,46,51,52,55,50,53,55,44,51,53,46,52,51,57,49,48,54,93,44,91,45,57,49,46,53,56,52,54,56,55,44,51,53,46,52,52,50,51,49,49,93,44,91,45,57,49,46,53,56,49,56,56,44,51,53,46,53,51,48,52,52,55,93,44,91,45,57,49,46,55,57,51,57,53,56,44,51,53,46,53,51,52,49,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,101,102,108,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,56,48,52,44,34,98,101,100,115,34,58,50,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,53,49,54,52,51,44,51,51,46,56,49,49,51,57,93,44,91,45,57,48,46,52,53,51,50,51,51,44,51,51,46,51,50,57,52,56,52,93,44,91,45,57,48,46,51,51,49,53,56,57,44,51,51,46,51,48,50,56,50,53,93,44,91,45,57,48,46,50,57,53,48,50,57,44,51,51,46,51,54,49,55,56,52,93,44,91,45,57,48,46,49,55,52,54,49,52,44,51,51,46,51,51,51,51,55,56,93,44,91,45,57,48,46,49,48,49,52,48,49,44,51,51,46,52,53,56,57,52,93,44,91,45,57,48,46,49,50,55,55,55,53,44,51,51,46,54,55,54,57,53,54,93,44,91,45,57,48,46,49,51,54,55,56,55,44,51,51,46,55,50,49,54,52,56,93,44,91,45,57,48,46,49,56,50,53,56,52,44,51,51,46,56,48,57,51,50,50,93,44,91,45,57,48,46,52,53,49,54,52,51,44,51,51,46,56,49,49,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,67,111,111,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,53,48,52,53,51,44,51,56,46,57,50,56,50,52,52,93,44,91,45,57,51,46,48,53,57,57,55,52,44,51,56,46,54,57,51,48,55,55,93,44,91,45,57,50,46,56,51,57,56,51,55,44,51,56,46,54,56,51,57,55,52,93,44,91,45,57,50,46,54,49,55,49,52,55,44,51,56,46,54,56,48,48,49,51,93,44,91,45,57,50,46,52,57,56,51,55,55,44,51,56,46,57,50,50,48,56,52,93,44,91,45,57,50,46,53,53,56,48,56,54,44,51,56,46,57,55,48,54,57,50,93,44,91,45,57,50,46,56,52,49,54,49,55,44,51,56,46,57,55,57,56,50,49,93,44,91,45,57,50,46,57,51,52,53,54,57,44,51,57,46,48,54,52,53,52,55,93,44,91,45,57,51,46,48,53,48,52,53,51,44,51,56,46,57,50,56,50,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,105,99,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,55,48,44,34,98,101,100,115,34,58,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,49,55,52,48,55,44,52,54,46,50,52,54,54,49,56,93,44,91,45,56,56,46,49,49,54,56,52,53,44,52,53,46,57,50,49,54,50,55,93,44,91,45,56,56,46,48,53,56,50,53,51,44,52,53,46,55,56,48,54,50,57,93,44,91,45,56,55,46,56,52,54,54,48,50,44,52,53,46,55,50,50,53,52,52,93,44,91,45,56,55,46,54,57,55,49,53,57,44,52,53,46,55,50,50,57,54,93,44,91,45,56,55,46,54,57,54,57,52,54,44,52,53,46,56,57,56,56,52,50,93,44,91,45,56,55,46,54,49,55,48,57,49,44,52,53,46,57,56,54,48,49,52,93,44,91,45,56,55,46,54,49,53,53,57,55,44,52,54,46,50,52,54,54,53,51,93,44,91,45,56,56,46,49,49,55,52,48,55,44,52,54,46,50,52,54,54,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,87,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,54,57,55,44,34,98,101,100,115,34,58,49,48,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,54,49,50,55,53,44,52,49,46,55,50,52,54,53,54,93,44,91,45,56,56,46,50,53,50,50,51,49,44,52,49,46,52,54,51,48,54,54,93,44,91,45,56,56,46,50,52,52,49,52,52,44,52,49,46,50,48,49,53,54,54,93,44,91,45,56,56,46,48,49,49,56,49,44,52,49,46,50,48,53,53,48,56,93,44,91,45,56,56,46,48,49,51,57,49,57,44,52,49,46,50,57,50,52,52,55,93,44,91,45,56,55,46,53,50,54,55,51,49,44,52,49,46,50,57,56,48,53,50,93,44,91,45,56,55,46,53,50,53,55,48,53,44,52,49,46,52,55,48,50,56,51,93,44,91,45,56,55,46,55,57,48,51,48,51,44,52,49,46,52,54,57,56,52,54,93,44,91,45,56,55,46,55,57,50,55,57,51,44,52,49,46,53,53,56,53,52,93,44,91,45,56,56,46,48,50,56,57,55,51,44,52,49,46,54,56,53,50,52,50,93,44,91,45,56,56,46,50,54,49,50,55,53,44,52,49,46,55,50,52,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,68,101,97,102,32,83,109,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,57,57,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,53,50,53,49,56,52,44,51,52,46,55,52,54,57,51,49,93,44,91,45,49,48,50,46,49,54,56,56,51,57,44,51,52,46,55,52,55,52,49,55,93,44,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,44,91,45,49,48,51,46,48,52,50,53,49,49,44,51,53,46,49,56,51,49,53,55,93,44,91,45,49,48,51,46,48,52,50,55,48,49,44,51,52,46,57,53,52,49,52,50,93,44,91,45,49,48,51,46,48,52,50,57,56,50,44,51,52,46,55,52,55,51,54,49,93,44,91,45,49,48,50,46,53,50,53,49,56,52,44,51,52,46,55,52,54,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,114,111,111,107,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,50,51,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,50,56,48,50,52,44,52,52,46,53,52,51,49,50,54,93,44,91,45,57,55,46,49,50,57,54,55,49,44,52,52,46,49,57,53,57,51,51,93,44,91,45,57,54,46,56,56,57,50,49,54,44,52,52,46,49,57,53,55,48,53,93,44,91,45,57,54,46,52,53,50,55,55,51,44,52,52,46,49,57,54,55,56,93,44,91,45,57,54,46,52,53,49,56,50,44,52,52,46,53,52,51,54,53,50,93,44,91,45,57,54,46,56,56,53,53,48,52,44,52,52,46,53,52,51,55,55,51,93,44,91,45,57,55,46,49,50,56,48,50,52,44,52,52,46,53,52,51,49,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,57,49,54,52,44,34,98,101,100,115,34,58,56,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,48,56,49,57,44,51,57,46,52,53,54,49,53,53,93,44,91,45,57,52,46,54,48,49,55,51,51,44,51,57,46,49,53,57,54,48,51,93,44,91,45,57,52,46,54,48,55,51,53,52,44,51,57,46,49,49,51,52,52,52,93,44,91,45,57,52,46,52,54,49,53,57,44,51,57,46,49,50,48,51,55,50,93,44,91,45,57,52,46,50,56,57,56,55,51,44,51,57,46,50,51,55,49,48,55,93,44,91,45,57,52,46,50,49,50,53,49,53,44,51,57,46,50,48,55,48,56,54,93,44,91,45,57,52,46,50,49,48,54,52,50,44,51,57,46,52,53,52,54,56,50,93,44,91,45,57,52,46,54,48,48,56,49,57,44,51,57,46,52,53,54,49,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,111,97,104,111,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,48,50,44,34,98,101,100,115,34,58,49,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,54,57,51,52,55,44,51,52,46,53,50,52,56,54,55,93,44,91,45,57,48,46,53,56,48,54,56,49,44,51,52,46,52,49,48,53,53,49,93,44,91,45,57,48,46,56,51,51,51,51,53,44,51,52,46,50,54,52,50,54,52,93,44,91,45,57,48,46,57,53,53,57,55,52,44,51,52,46,49,50,48,49,50,53,93,44,91,45,57,48,46,54,53,57,52,53,55,44,51,52,46,49,49,56,56,54,55,93,44,91,45,57,48,46,54,53,55,48,48,50,44,51,51,46,57,56,55,53,56,54,93,44,91,45,57,48,46,52,53,49,48,49,50,44,51,51,46,57,56,53,54,56,57,93,44,91,45,57,48,46,52,53,48,57,56,49,44,51,52,46,48,55,50,57,51,50,93,44,91,45,57,48,46,52,53,48,53,55,50,44,51,52,46,50,54,50,52,48,50,93,44,91,45,57,48,46,51,57,57,52,57,56,44,51,52,46,52,50,51,56,48,55,93,44,91,45,57,48,46,53,54,57,51,52,55,44,51,52,46,53,50,52,56,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,51,50,49,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,52,50,51,54,53,44,52,48,46,49,56,48,55,55,56,93,44,91,45,56,54,46,54,57,53,56,48,52,44,52,48,46,49,55,56,54,53,55,93,44,91,45,56,54,46,54,57,53,48,55,49,44,51,57,46,57,50,50,55,55,93,44,91,45,56,54,46,51,50,54,50,57,51,44,51,57,46,57,50,52,48,50,57,93,44,91,45,56,54,46,50,51,57,55,51,57,44,51,57,46,57,50,54,48,53,53,93,44,91,45,56,54,46,50,52,50,51,54,53,44,52,48,46,49,56,48,55,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,68,101,115,32,77,111,105,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,48,48,44,34,98,101,100,115,34,58,50,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,55,48,55,49,44,52,49,46,48,55,52,49,49,50,93,44,91,45,57,49,46,52,48,57,52,53,51,44,52,48,46,56,49,50,57,48,53,93,44,91,45,57,49,46,49,49,50,52,54,55,44,52,48,46,54,57,54,51,48,49,93,44,91,45,57,49,46,48,57,54,57,52,54,44,52,48,46,56,49,49,52,48,51,93,44,91,45,57,48,46,57,54,50,57,49,54,44,52,48,46,57,50,52,57,53,55,93,44,91,45,57,48,46,57,52,56,57,56,57,44,52,49,46,48,55,48,50,53,93,44,91,45,57,48,46,57,52,57,51,56,49,44,52,49,46,48,55,50,55,49,93,44,91,45,57,49,46,51,55,48,55,49,44,52,49,46,48,55,52,49,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,50,56,56,44,34,98,101,100,115,34,58,54,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,54,53,54,50,44,52,49,46,55,50,56,57,50,56,93,44,91,45,57,48,46,53,51,55,54,49,54,44,52,49,46,55,55,54,51,57,53,93,44,91,45,57,48,46,55,48,50,49,52,50,44,52,49,46,55,51,55,55,50,56,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,49,46,55,55,49,51,57,50,93,44,91,45,57,48,46,56,57,57,56,53,51,44,52,49,46,53,57,55,49,51,51,93,44,91,45,57,48,46,55,56,51,56,49,50,44,52,49,46,53,57,54,53,51,49,93,44,91,45,57,48,46,55,56,54,50,56,50,44,52,49,46,52,53,50,56,56,56,93,44,91,45,57,48,46,52,54,49,52,51,50,44,52,49,46,53,50,51,53,51,51,93,44,91,45,57,48,46,51,52,51,50,50,56,44,52,49,46,53,56,55,56,51,51,93,44,91,45,57,48,46,51,49,54,53,54,50,44,52,49,46,55,50,56,57,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,79,116,116,97,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,50,57,55,52,54,44,51,57,46,50,49,57,50,55,51,93,44,91,45,57,55,46,57,50,56,53,54,44,51,56,46,57,53,56,51,57,53,93,44,91,45,57,55,46,51,55,49,54,49,52,44,51,56,46,57,53,55,56,53,50,93,44,91,45,57,55,46,51,55,49,49,53,52,44,51,57,46,49,51,49,57,54,49,93,44,91,45,57,55,46,51,54,57,56,51,57,44,51,57,46,51,48,54,48,49,49,93,44,91,45,57,55,46,57,50,57,48,57,55,44,51,57,46,51,48,54,51,57,55,93,44,91,45,57,55,46,57,50,57,55,52,54,44,51,57,46,50,49,57,50,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,48,53,44,34,98,101,100,115,34,58,52,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,56,57,53,51,57,44,51,48,46,53,57,55,55,51,52,93,44,91,45,56,50,46,55,50,54,53,56,51,44,51,48,46,53,53,57,52,56,54,93,44,91,45,56,50,46,54,52,53,53,53,53,44,51,48,46,52,48,54,52,49,55,93,44,91,45,56,50,46,55,49,55,55,55,51,44,51,48,46,51,50,49,51,57,49,93,44,91,45,56,50,46,55,57,52,53,57,52,44,51,48,46,51,51,55,48,50,52,93,44,91,45,56,50,46,56,48,48,52,55,55,44,50,57,46,57,51,50,49,50,54,93,44,91,45,56,50,46,54,53,56,53,53,52,44,50,57,46,56,51,48,49,52,52,93,44,91,45,56,50,46,53,50,57,55,48,53,44,50,57,46,57,52,48,56,56,49,93,44,91,45,56,50,46,53,54,57,50,56,44,50,57,46,57,55,52,57,56,93,44,91,45,56,50,46,52,53,56,51,54,52,44,51,48,46,49,51,54,52,52,57,93,44,91,45,56,50,46,52,53,57,55,57,51,44,51,48,46,53,56,52,50,54,55,93,44,91,45,56,50,46,53,56,52,48,48,55,44,51,48,46,53,57,49,53,52,56,93,44,91,45,56,50,46,54,56,57,53,51,57,44,51,48,46,53,57,55,55,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,111,108,109,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,51,48,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,57,55,57,57,50,44,51,48,46,57,57,54,57,51,49,93,44,91,45,56,54,46,48,51,53,48,51,57,44,51,48,46,57,57,51,51,50,93,44,91,45,56,54,46,48,51,55,53,57,49,44,51,48,46,55,48,52,53,55,50,93,44,91,45,56,53,46,56,52,52,52,50,49,44,51,48,46,55,48,51,49,51,93,44,91,45,56,53,46,54,49,57,48,49,49,44,51,48,46,55,52,51,56,54,56,93,44,91,45,56,53,46,53,57,57,57,51,52,44,51,48,46,56,51,48,53,53,50,93,44,91,45,56,53,46,52,57,55,57,57,50,44,51,48,46,57,57,54,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,54,50,54,44,34,98,101,100,115,34,58,49,48,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,56,52,53,51,51,44,51,48,46,54,55,55,50,57,50,93,44,91,45,56,57,46,50,52,48,48,55,51,44,51,48,46,54,55,55,49,54,93,44,91,45,56,57,46,51,52,49,52,52,54,44,51,48,46,54,52,55,55,50,93,44,91,45,56,57,46,51,52,48,56,52,55,44,51,48,46,51,53,55,57,57,53,93,44,91,45,56,57,46,51,48,54,49,51,53,44,51,48,46,49,55,55,57,52,49,93,44,91,45,56,57,46,49,56,51,54,54,57,44,51,48,46,50,49,50,49,53,53,93,44,91,45,56,57,46,48,57,54,52,55,54,44,51,48,46,49,54,53,56,50,57,93,44,91,45,56,56,46,56,56,57,48,51,44,51,48,46,49,51,57,56,52,53,93,44,91,45,56,56,46,55,57,53,49,52,55,44,51,48,46,49,57,57,57,57,52,93,44,91,45,56,56,46,55,57,53,50,56,55,44,51,48,46,51,53,48,51,54,49,93,44,91,45,56,56,46,56,56,51,49,51,44,51,48,46,52,49,56,55,57,56,93,44,91,45,56,56,46,56,56,52,53,51,51,44,51,48,46,54,55,55,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,85,116,117,97,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,52,48,50,44,34,98,101,100,115,34,58,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,56,50,54,49,50,56,44,49,56,46,51,50,51,51,56,50,93,44,91,45,54,54,46,56,49,55,50,55,49,44,49,56,46,50,51,48,51,51,54,93,44,91,45,54,54,46,54,57,50,53,55,50,44,49,56,46,50,49,53,56,56,51,93,44,91,45,54,54,46,54,55,48,52,57,52,44,49,56,46,49,53,50,56,51,49,93,44,91,45,54,54,46,54,52,57,52,54,55,44,49,56,46,49,53,56,56,53,55,93,44,91,45,54,54,46,53,54,54,54,50,44,49,56,46,50,57,56,53,52,57,93,44,91,45,54,54,46,54,48,54,57,56,57,44,49,56,46,51,50,56,49,56,54,93,44,91,45,54,54,46,55,55,48,48,55,50,44,49,56,46,51,50,53,48,49,51,93,44,91,45,54,54,46,56,50,54,49,50,56,44,49,56,46,51,50,51,51,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,114,97,100,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,53,53,55,44,34,98,101,100,115,34,58,50,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,52,54,51,51,57,44,51,53,46,50,56,55,55,49,55,93,44,91,45,56,53,46,48,50,51,54,44,51,53,46,49,50,53,48,55,51,93,44,91,45,56,52,46,57,55,54,57,55,54,44,51,52,46,57,56,55,54,54,52,93,44,91,45,56,52,46,56,49,48,52,55,55,44,51,52,46,57,56,55,54,48,53,93,44,91,45,56,52,46,55,55,53,56,53,51,44,51,52,46,57,56,55,56,56,52,93,44,91,45,56,52,46,54,57,57,57,51,55,44,51,53,46,49,55,48,57,55,52,93,44,91,45,56,52,46,55,48,51,54,48,55,44,51,53,46,50,52,49,48,52,51,93,44,91,45,56,52,46,56,54,48,49,54,52,44,51,53,46,51,53,48,48,55,52,93,44,91,45,56,52,46,57,52,54,51,51,57,44,51,53,46,50,56,55,55,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,114,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,52,48,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,54,49,53,50,57,44,52,54,46,55,54,54,53,53,93,44,91,45,57,51,46,48,53,52,56,52,55,44,52,54,46,52,49,57,50,54,57,93,44,91,45,57,50,46,50,57,50,56,54,44,52,54,46,52,49,55,50,50,93,44,91,45,57,50,46,50,57,50,50,52,50,44,52,54,46,54,54,51,51,49,56,93,44,91,45,57,50,46,51,48,49,54,55,54,44,52,54,46,55,54,52,49,51,52,93,44,91,45,57,51,46,48,54,49,53,50,57,44,52,54,46,55,54,54,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,56,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,48,50,49,52,44,51,50,46,55,57,51,48,56,56,93,44,91,45,57,52,46,53,48,55,51,50,51,44,51,50,46,54,57,51,55,51,56,93,44,91,45,57,52,46,51,57,48,55,56,51,44,51,50,46,54,57,52,51,55,55,93,44,91,45,57,52,46,50,56,51,48,50,56,44,51,50,46,55,52,54,55,50,57,93,44,91,45,57,52,46,49,55,50,49,51,54,44,51,50,46,54,57,54,57,93,44,91,45,57,52,46,48,52,51,49,52,55,44,51,50,46,54,57,51,48,51,93,44,91,45,57,52,46,48,52,51,48,55,56,44,51,50,46,56,56,49,48,56,57,93,44,91,45,57,52,46,54,53,51,57,57,52,44,51,50,46,56,55,57,53,48,54,93,44,91,45,57,52,46,55,48,53,56,55,56,44,51,50,46,56,55,57,49,55,55,93,44,91,45,57,52,46,55,48,50,49,52,44,51,50,46,55,57,51,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,83,99,104,111,104,97,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,51,54,52,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,54,52,56,50,57,56,44,52,50,46,56,50,57,53,53,56,93,44,91,45,55,52,46,54,51,48,54,51,49,44,52,50,46,54,50,54,54,55,52,93,44,91,45,55,52,46,55,49,49,53,56,44,52,50,46,53,49,55,55,57,57,93,44,91,45,55,52,46,54,49,56,56,57,53,44,52,50,46,52,50,52,51,56,57,93,44,91,45,55,52,46,52,52,51,53,48,54,44,52,50,46,51,53,53,48,49,55,93,44,91,45,55,52,46,50,53,52,51,48,51,44,52,50,46,52,48,56,50,48,55,93,44,91,45,55,52,46,49,56,48,50,55,52,44,52,50,46,55,50,57,57,55,57,93,44,91,45,55,52,46,50,54,51,51,49,52,44,52,50,46,55,57,54,53,51,52,93,44,91,45,55,52,46,52,53,52,57,49,49,44,52,50,46,55,55,50,57,55,57,93,44,91,45,55,52,46,54,52,56,50,57,56,44,52,50,46,56,50,57,53,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,80,97,119,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,50,56,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,54,56,50,56,55,44,51,54,46,49,54,49,57,56,93,44,91,45,57,54,46,52,51,51,56,49,50,44,51,54,46,50,56,53,56,56,57,93,44,91,45,57,54,46,53,49,53,50,50,57,44,51,54,46,50,57,56,51,51,50,93,44,91,45,57,54,46,54,51,53,55,50,55,44,51,54,46,52,50,53,57,48,56,93,44,91,45,57,54,46,55,49,48,55,54,57,44,51,54,46,52,51,55,54,53,54,93,44,91,45,57,54,46,55,51,55,50,51,57,44,51,54,46,53,53,48,48,56,56,93,44,91,45,57,54,46,57,52,48,50,51,53,44,51,54,46,52,53,53,53,50,53,93,44,91,45,57,55,46,48,48,57,55,56,53,44,51,54,46,53,48,54,57,51,53,93,44,91,45,57,55,46,48,51,50,49,48,54,44,51,54,46,51,51,51,51,53,52,93,44,91,45,57,54,46,57,50,53,48,54,57,44,51,54,46,50,52,54,52,55,52,93,44,91,45,57,54,46,56,49,57,48,48,53,44,51,54,46,49,53,56,56,56,54,93,44,91,45,57,54,46,54,50,50,49,50,44,51,54,46,49,53,57,57,48,51,93,44,91,45,57,54,46,50,57,55,56,56,56,44,51,54,46,49,54,50,50,55,57,93,44,91,45,57,54,46,50,54,56,50,56,55,44,51,54,46,49,54,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,114,111,111,109,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,52,48,50,44,34,98,101,100,115,34,58,53,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,54,52,48,50,44,52,50,46,52,49,53,55,48,50,93,44,91,45,55,54,46,49,51,48,49,56,49,44,52,50,46,52,49,48,51,51,55,93,44,91,45,55,54,46,48,56,49,49,51,52,44,52,50,46,50,51,48,52,57,53,93,44,91,45,55,54,46,49,49,54,50,50,53,44,52,50,46,49,56,53,54,49,93,44,91,45,55,54,46,49,48,53,56,52,44,52,49,46,57,57,56,56,53,56,93,44,91,45,55,53,46,52,56,51,49,52,57,44,52,49,46,57,57,57,50,49,52,93,44,91,45,55,53,46,51,53,57,53,55,57,44,52,49,46,57,57,57,52,52,53,93,44,91,45,55,53,46,52,50,49,55,55,54,44,52,50,46,48,52,50,48,51,93,44,91,45,55,53,46,52,49,56,52,50,49,44,52,50,46,49,57,53,48,51,50,93,44,91,45,55,53,46,54,51,55,49,49,44,52,50,46,49,57,53,54,50,56,93,44,91,45,55,53,46,54,51,56,50,57,57,44,52,50,46,50,52,56,54,56,54,93,44,91,45,55,53,46,56,52,51,55,57,50,44,52,50,46,50,53,57,55,48,55,93,44,91,45,55,53,46,56,54,52,48,50,44,52,50,46,52,49,53,55,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,49,34,44,34,78,65,77,69,34,58,34,76,105,98,101,114,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,56,54,50,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,57,54,55,48,56,44,51,48,46,49,54,55,50,49,52,93,44,91,45,57,52,46,57,56,49,52,54,44,50,57,46,56,56,52,50,55,54,93,44,91,45,57,52,46,52,52,50,50,51,53,44,50,57,46,56,56,57,53,51,56,93,44,91,45,57,52,46,52,52,52,57,49,44,51,48,46,49,49,51,48,49,53,93,44,91,45,57,52,46,53,57,54,51,51,56,44,51,48,46,49,49,50,49,48,49,93,44,91,45,57,52,46,55,51,50,55,51,50,44,51,48,46,52,57,48,48,54,54,93,44,91,45,57,52,46,56,52,57,52,49,52,44,51,48,46,52,57,51,53,53,51,93,44,91,45,57,53,46,49,54,53,56,57,55,44,51,48,46,51,52,52,57,55,54,93,44,91,45,57,53,46,48,57,54,55,48,56,44,51,48,46,49,54,55,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,116,104,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,57,51,54,44,34,98,101,100,115,34,58,49,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,56,57,54,54,51,44,51,57,46,51,56,52,49,57,53,93,44,91,45,56,50,46,50,54,56,53,56,51,44,51,57,46,50,48,51,55,54,93,44,91,45,56,49,46,55,53,54,48,56,44,51,57,46,49,56,48,53,54,93,44,91,45,56,49,46,55,50,53,54,50,50,44,51,57,46,50,49,53,57,48,53,93,44,91,45,56,49,46,56,53,51,54,54,56,44,51,57,46,51,49,56,49,54,53,93,44,91,45,56,49,46,56,52,52,56,54,51,44,51,57,46,52,53,48,50,49,54,93,44,91,45,56,50,46,48,53,53,55,55,57,44,51,57,46,52,54,48,48,53,51,93,44,91,45,56,50,46,48,52,55,53,50,56,44,51,57,46,53,53,48,56,50,53,93,44,91,45,56,50,46,49,53,57,49,54,49,44,51,57,46,53,53,54,53,55,52,93,44,91,45,56,50,46,49,54,55,51,55,57,44,51,57,46,52,54,54,51,48,55,93,44,91,45,56,50,46,50,56,48,52,49,44,51,57,46,52,55,50,57,48,54,93,44,91,45,56,50,46,50,56,57,54,54,51,44,51,57,46,51,56,52,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,56,56,54,44,34,98,101,100,115,34,58,50,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,52,49,57,49,49,44,52,48,46,52,50,52,55,93,44,91,45,56,48,46,56,54,53,53,48,52,44,52,48,46,52,50,50,57,50,57,93,44,91,45,56,48,46,56,56,50,56,57,50,44,52,48,46,49,53,57,52,57,53,93,44,91,45,56,48,46,55,48,50,55,53,44,52,48,46,49,53,55,50,52,57,93,44,91,45,56,48,46,54,56,49,56,49,49,44,52,48,46,49,56,53,53,54,51,93,44,91,45,56,48,46,53,57,57,56,57,53,44,52,48,46,51,49,55,54,54,54,93,44,91,45,56,48,46,54,50,57,54,56,52,44,52,48,46,51,57,52,57,55,56,93,44,91,45,56,48,46,53,57,52,54,54,52,44,52,48,46,52,55,49,51,56,57,93,44,91,45,56,48,46,54,54,55,57,53,55,44,52,48,46,53,56,50,52,57,54,93,44,91,45,56,48,46,56,54,49,57,57,52,44,52,48,46,53,57,57,52,48,52,93,44,91,45,56,48,46,57,50,48,57,50,44,52,48,46,53,53,54,51,49,53,93,44,91,45,56,48,46,57,52,49,57,49,49,44,52,48,46,52,50,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,54,53,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,50,53,48,57,50,44,51,57,46,49,49,53,56,48,51,93,44,91,45,55,57,46,56,57,54,48,57,52,44,51,56,46,57,55,51,52,48,52,93,44,91,45,56,48,46,48,56,53,48,54,50,44,51,56,46,57,52,55,50,51,54,93,44,91,45,56,48,46,49,50,54,49,48,53,44,51,56,46,55,52,53,56,51,54,93,44,91,45,56,48,46,50,56,48,48,53,57,44,51,56,46,54,57,52,56,54,55,93,44,91,45,56,48,46,49,56,51,57,51,49,44,51,56,46,53,50,53,51,56,54,93,44,91,45,56,48,46,50,52,53,53,49,56,44,51,56,46,51,56,56,52,53,55,93,44,91,45,56,48,46,49,49,54,57,50,44,51,56,46,52,55,51,57,53,51,93,44,91,45,56,48,46,48,50,57,50,48,56,44,51,56,46,52,53,57,49,56,52,93,44,91,45,55,57,46,56,54,51,50,53,44,51,56,46,53,53,48,56,50,93,44,91,45,55,57,46,55,57,56,50,56,51,44,51,56,46,55,48,51,50,49,49,93,44,91,45,55,57,46,54,50,54,55,55,52,44,51,56,46,54,54,52,50,49,52,93,44,91,45,55,57,46,53,49,48,48,55,51,44,51,56,46,55,56,48,55,49,50,93,44,91,45,55,57,46,53,51,57,48,55,53,44,51,56,46,56,52,49,52,49,49,93,44,91,45,55,57,46,52,53,53,52,55,50,44,51,56,46,57,50,57,57,49,93,44,91,45,55,57,46,51,52,57,56,54,55,44,51,56,46,57,53,55,53,48,57,93,44,91,45,55,57,46,51,53,55,54,54,54,44,51,56,46,57,54,52,53,48,57,93,44,91,45,55,57,46,53,48,56,55,54,53,44,51,56,46,57,55,53,49,55,51,93,44,91,45,55,57,46,55,56,53,54,56,53,44,51,57,46,48,51,55,52,48,52,93,44,91,45,55,57,46,56,50,53,48,57,50,44,51,57,46,49,49,53,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,52,57,55,44,34,98,101,100,115,34,58,50,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,52,57,52,48,56,53,44,51,57,46,52,54,57,53,57,57,93,44,91,45,56,48,46,49,57,55,50,56,54,44,51,57,46,51,57,51,49,56,54,93,44,91,45,56,48,46,48,50,53,48,48,49,44,51,57,46,52,48,49,52,52,54,93,44,91,45,55,57,46,57,51,56,56,55,56,44,51,57,46,52,53,50,52,54,53,93,44,91,45,56,48,46,49,53,51,53,51,50,44,51,57,46,54,49,48,52,50,54,93,44,91,45,56,48,46,51,57,53,56,49,44,51,57,46,54,51,55,51,52,55,93,44,91,45,56,48,46,52,57,56,49,53,56,44,51,57,46,53,54,50,56,57,57,93,44,91,45,56,48,46,52,57,52,48,56,53,44,51,57,46,52,54,57,53,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,52,48,48,44,34,98,101,100,115,34,58,51,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,48,54,49,56,53,52,44,51,57,46,53,54,56,55,52,54,93,44,91,45,55,53,46,48,56,51,56,50,51,44,51,57,46,52,53,55,51,53,52,93,44,91,45,55,53,46,50,51,56,52,51,52,44,51,57,46,53,53,57,48,51,57,93,44,91,45,55,53,46,52,52,52,55,53,49,44,51,57,46,51,53,53,48,56,57,93,44,91,45,55,53,46,51,50,49,48,50,49,44,51,57,46,50,53,49,51,55,57,93,44,91,45,55,53,46,49,54,56,52,54,50,44,51,57,46,48,53,54,49,55,57,93,44,91,45,55,52,46,57,49,53,54,56,57,44,51,57,46,49,55,53,55,53,53,93,44,91,45,55,52,46,56,54,49,50,57,52,44,51,57,46,51,50,51,56,49,53,93,44,91,45,55,52,46,56,53,53,57,55,56,44,51,57,46,52,50,52,50,51,56,93,44,91,45,55,52,46,57,56,53,50,55,49,44,51,57,46,53,49,52,57,54,55,93,44,91,45,55,53,46,48,54,49,56,53,52,44,51,57,46,53,54,56,55,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,48,57,50,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,48,51,55,55,51,44,51,57,46,52,52,53,48,53,54,93,44,91,45,49,50,48,46,53,48,53,52,52,53,44,51,57,46,52,52,54,49,49,55,93,44,91,45,49,50,48,46,53,55,55,49,56,56,44,51,57,46,53,50,51,49,52,52,93,44,91,45,49,50,48,46,55,53,53,55,50,57,44,51,57,46,52,53,50,54,54,51,93,44,91,45,49,50,49,46,48,50,50,48,56,53,44,51,57,46,51,57,49,53,53,56,93,44,91,45,49,50,49,46,49,50,50,51,49,53,44,51,57,46,51,55,56,56,50,54,93,44,91,45,49,50,49,46,50,54,54,57,49,49,44,51,57,46,50,55,49,54,48,57,93,44,91,45,49,50,49,46,50,55,57,53,51,51,44,51,57,46,48,51,52,54,49,56,93,44,91,45,49,50,49,46,48,52,49,54,48,56,44,51,57,46,48,49,51,55,57,49,93,44,91,45,49,50,48,46,57,54,54,48,56,44,51,57,46,49,50,55,57,50,56,93,44,91,45,49,50,48,46,55,50,55,56,57,51,44,51,57,46,50,56,56,48,56,49,93,44,91,45,49,50,48,46,54,52,53,55,57,53,44,51,57,46,51,49,53,49,53,53,93,44,91,45,49,50,48,46,48,48,54,51,50,51,44,51,57,46,51,49,54,52,57,54,93,44,91,45,49,50,48,46,48,48,51,55,55,51,44,51,57,46,52,52,53,48,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,52,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,57,54,51,51,44,52,54,46,55,57,52,56,51,56,93,44,91,45,57,50,46,48,50,48,50,57,52,44,52,54,46,55,48,52,48,52,49,93,44,91,45,57,50,46,48,56,57,52,57,51,44,52,54,46,55,52,57,50,51,55,93,44,91,45,57,50,46,50,49,50,51,57,50,44,52,54,46,54,52,57,57,52,49,93,44,91,45,57,50,46,50,57,50,50,52,50,44,52,54,46,54,54,51,51,49,56,93,44,91,45,57,50,46,50,57,50,56,54,44,52,54,46,52,49,55,50,50,93,44,91,45,57,50,46,50,57,51,55,48,53,44,52,54,46,49,53,55,51,50,49,93,44,91,45,57,50,46,48,52,57,54,51,54,44,52,54,46,49,53,55,53,57,55,93,44,91,45,57,49,46,53,53,49,50,56,50,44,52,54,46,49,53,55,48,52,53,93,44,91,45,57,49,46,53,52,57,51,56,53,44,52,54,46,56,57,51,50,49,51,93,44,91,45,57,49,46,55,57,54,51,51,44,52,54,46,55,57,52,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,49,52,53,44,34,98,101,100,115,34,58,50,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,50,48,55,49,50,44,51,55,46,50,51,56,51,50,56,93,44,91,45,56,52,46,57,48,49,49,49,50,44,51,55,46,49,49,54,50,57,55,93,44,91,45,56,52,46,56,51,53,55,49,50,44,51,54,46,57,57,55,54,49,50,93,44,91,45,56,52,46,54,55,57,49,54,53,44,51,54,46,57,56,48,57,49,52,93,44,91,45,56,52,46,53,55,56,49,53,56,44,51,54,46,56,54,55,49,51,51,93,44,91,45,56,52,46,51,53,56,48,50,52,44,51,54,46,57,53,57,52,93,44,91,45,56,52,46,50,56,57,48,55,54,44,51,55,46,49,53,49,55,52,93,44,91,45,56,52,46,53,48,50,57,51,50,44,51,55,46,51,50,56,56,48,49,93,44,91,45,56,52,46,53,53,54,52,54,49,44,51,55,46,51,53,53,55,50,57,93,44,91,45,56,52,46,55,50,48,55,49,50,44,51,55,46,50,51,56,51,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,69,100,103,101,99,111,109,98,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,51,51,50,44,34,98,101,100,115,34,58,49,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,57,55,57,53,54,44,51,54,46,49,53,51,49,53,93,44,91,45,55,55,46,56,50,56,52,52,52,44,51,53,46,56,54,55,50,48,56,93,44,91,45,55,55,46,55,53,49,51,51,57,44,51,53,46,56,50,55,55,57,52,93,44,91,45,55,55,46,54,54,53,49,51,49,44,51,53,46,54,55,52,57,51,53,93,44,91,45,55,55,46,51,57,48,49,53,52,44,51,53,46,56,51,51,48,54,50,93,44,91,45,55,55,46,51,53,48,51,54,57,44,51,53,46,56,49,57,50,50,56,93,44,91,45,55,55,46,51,52,50,52,49,56,44,51,53,46,57,48,53,50,54,50,93,44,91,45,55,55,46,52,48,50,54,49,52,44,51,54,46,48,48,52,57,54,54,93,44,91,45,55,55,46,53,51,51,49,54,49,44,51,54,46,48,57,48,54,53,57,93,44,91,45,55,55,46,54,57,55,57,53,54,44,51,54,46,49,53,51,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,49,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,48,52,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,53,55,56,49,54,44,51,49,46,48,51,51,51,50,53,93,44,91,45,57,52,46,50,53,50,50,57,56,44,51,49,46,48,49,56,57,51,49,93,44,91,45,57,52,46,49,50,53,56,50,52,44,51,48,46,54,56,52,48,53,50,93,44,91,45,57,52,46,48,53,48,57,54,44,51,48,46,54,51,56,53,54,56,93,44,91,45,57,52,46,48,55,49,54,56,57,44,51,48,46,53,50,54,48,51,51,93,44,91,45,57,52,46,49,49,54,52,54,54,44,51,48,46,52,51,50,54,57,49,93,44,91,45,57,52,46,48,56,50,57,50,44,51,48,46,51,52,53,54,53,52,93,44,91,45,57,52,46,49,49,55,54,48,52,44,51,48,46,50,52,49,54,54,53,93,44,91,45,57,51,46,57,48,49,52,53,50,44,51,48,46,50,52,50,54,55,50,93,44,91,45,57,51,46,56,54,53,55,49,49,44,51,48,46,57,52,55,50,49,56,93,44,91,45,57,51,46,57,49,49,49,50,54,44,51,49,46,49,53,56,48,55,49,93,44,91,45,57,52,46,48,51,57,48,51,52,44,51,49,46,49,51,52,50,55,49,93,44,91,45,57,52,46,49,50,57,54,51,50,44,51,49,46,48,57,57,50,56,93,44,91,45,57,52,46,52,53,55,56,49,54,44,51,49,46,48,51,51,51,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,101,97,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,52,51,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,48,52,57,57,55,56,44,51,56,46,49,52,56,55,54,51,93,44,91,45,49,49,51,46,52,55,49,54,44,51,56,46,49,52,56,54,54,53,93,44,91,45,49,49,50,46,52,55,56,54,56,44,51,56,46,49,52,55,52,49,57,93,44,91,45,49,49,50,46,52,52,52,50,49,52,44,51,56,46,49,53,48,48,48,49,93,44,91,45,49,49,50,46,51,51,53,53,49,44,51,56,46,51,51,50,51,52,52,93,44,91,45,49,49,50,46,52,52,52,48,56,49,44,51,56,46,52,48,53,54,52,54,93,44,91,45,49,49,50,46,53,49,56,52,57,53,44,51,56,46,53,49,48,52,49,51,93,44,91,45,49,49,50,46,53,49,53,51,57,52,44,51,56,46,53,55,50,56,52,53,93,44,91,45,49,49,52,46,48,52,57,57,55,55,44,51,56,46,53,55,50,57,55,52,93,44,91,45,49,49,52,46,48,52,57,57,55,56,44,51,56,46,49,52,56,55,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,51,34,44,34,78,65,77,69,34,58,34,77,117,114,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,53,53,55,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,49,48,52,55,55,44,51,52,46,57,56,55,54,48,53,93,44,91,45,56,52,46,56,49,56,55,49,53,44,51,52,46,56,55,54,57,53,93,44,91,45,56,52,46,57,50,52,57,48,57,44,51,52,46,55,49,53,57,55,49,93,44,91,45,56,52,46,57,49,51,52,53,54,44,51,52,46,54,51,52,49,50,56,93,44,91,45,56,52,46,54,53,52,53,50,51,44,51,52,46,53,56,51,49,56,55,93,44,91,45,56,52,46,54,53,55,48,57,56,44,51,52,46,55,50,56,57,48,53,93,44,91,45,56,52,46,54,49,56,54,51,55,44,51,52,46,56,53,53,51,57,56,93,44,91,45,56,52,46,54,50,49,52,56,51,44,51,52,46,57,56,56,51,50,57,93,44,91,45,56,52,46,55,55,53,56,53,51,44,51,52,46,57,56,55,56,56,52,93,44,91,45,56,52,46,56,49,48,52,55,55,44,51,52,46,57,56,55,54,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,74,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,57,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,48,49,49,52,54,44,52,48,46,53,54,55,50,52,50,93,44,91,45,56,53,46,50,49,57,57,48,49,44,52,48,46,51,55,57,48,51,52,93,44,91,45,56,53,46,50,49,56,55,53,56,44,52,48,46,51,48,54,55,48,54,93,44,91,45,56,52,46,56,48,51,54,55,50,44,52,48,46,51,49,48,48,57,51,93,44,91,45,56,52,46,56,48,51,56,57,52,44,52,48,46,51,53,50,55,53,56,93,44,91,45,56,52,46,56,48,50,52,55,55,44,52,48,46,53,55,50,50,49,51,93,44,91,45,56,53,46,48,54,56,52,55,57,44,52,48,46,53,54,56,50,52,93,44,91,45,56,53,46,50,48,49,49,52,54,44,52,48,46,53,54,55,50,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,99,97,108,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,50,48,57,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,54,50,53,51,56,44,52,51,46,50,57,52,50,55,49,93,44,91,45,56,53,46,51,49,50,51,55,54,44,52,51,46,50,57,52,50,48,53,93,44,91,45,56,53,46,51,49,50,53,49,51,44,52,51,46,49,49,56,55,57,51,93,44,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,44,91,45,56,52,46,56,52,53,57,54,50,44,52,51,46,52,54,54,49,53,56,93,44,91,45,56,53,46,48,56,52,57,57,54,44,52,51,46,52,54,54,49,57,93,44,91,45,56,53,46,53,54,50,51,52,56,44,52,51,46,52,54,56,49,51,93,44,91,45,56,53,46,53,54,50,53,51,56,44,52,51,46,50,57,52,50,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,82,101,110,115,115,101,108,97,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,52,51,49,44,34,98,101,100,115,34,58,50,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,50,55,52,50,57,52,44,52,50,46,57,52,51,54,53,50,93,44,91,45,55,51,46,54,51,53,52,54,51,44,52,50,46,57,52,49,50,57,93,44,91,45,55,51,46,54,55,54,55,54,50,44,52,50,46,55,56,51,50,55,55,93,44,91,45,55,51,46,55,54,49,50,54,53,44,52,50,46,54,49,48,51,55,57,93,44,91,45,55,51,46,55,56,51,55,50,49,44,52,50,46,52,54,52,50,51,49,93,44,91,45,55,51,46,51,53,50,52,50,57,44,52,50,46,53,49,48,48,49,55,93,44,91,45,55,51,46,50,54,52,56,50,55,44,52,50,46,55,52,53,56,53,49,93,44,91,45,55,51,46,50,55,52,50,57,52,44,52,50,46,57,52,51,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,111,108,108,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,57,50,50,44,34,98,101,100,115,34,58,55,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,48,53,53,48,49,44,50,54,46,51,51,48,48,56,56,93,44,91,45,56,49,46,56,53,48,51,52,44,50,54,46,48,54,50,56,55,50,93,44,91,45,56,49,46,55,49,56,49,51,57,44,50,53,46,55,57,51,48,51,51,93,44,91,45,56,49,46,53,55,48,57,54,55,44,50,53,46,56,48,50,48,51,57,93,44,91,45,56,48,46,56,55,51,48,57,54,44,50,53,46,56,48,53,51,55,55,93,44,91,45,56,48,46,56,55,50,57,51,50,44,50,53,46,57,55,57,52,51,52,93,44,91,45,56,48,46,56,55,57,56,48,57,44,50,54,46,50,53,57,52,53,53,93,44,91,45,56,49,46,50,54,56,53,53,44,50,54,46,50,53,51,48,52,53,93,44,91,45,56,49,46,50,55,49,55,54,56,44,50,54,46,53,49,55,48,54,57,93,44,91,45,56,49,46,53,54,51,55,54,51,44,50,54,46,53,49,51,51,50,52,93,44,91,45,56,49,46,53,54,50,49,56,44,50,54,46,52,50,50,54,50,53,93,44,91,45,56,49,46,54,53,57,53,48,54,44,50,54,46,52,50,49,48,55,55,93,44,91,45,56,49,46,54,53,55,57,44,50,54,46,51,49,55,53,54,51,93,44,91,45,56,49,46,57,48,53,53,48,49,44,50,54,46,51,51,48,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,77,99,75,105,110,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,56,52,57,44,34,98,101,100,115,34,58,49,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,54,48,54,55,44,51,54,46,48,48,50,55,48,49,93,44,91,45,49,48,57,46,48,52,53,57,57,54,44,51,52,46,57,53,57,56,49,57,93,44,91,45,49,48,56,46,52,54,57,52,48,50,44,51,52,46,57,53,57,48,56,49,93,44,91,45,49,48,56,46,52,54,56,55,49,53,44,51,53,46,51,48,54,54,53,56,93,44,91,45,49,48,55,46,51,48,57,51,56,54,44,51,53,46,51,48,53,54,56,55,93,44,91,45,49,48,55,46,51,48,56,54,54,55,44,51,53,46,57,57,56,53,53,54,93,44,91,45,49,48,55,46,54,50,54,53,49,49,44,51,54,46,48,48,48,50,56,56,93,44,91,45,49,48,57,46,48,52,54,48,54,55,44,51,54,46,48,48,50,55,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,101,110,32,72,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,53,52,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,53,51,54,51,52,44,51,49,46,55,53,55,56,54,49,93,44,91,45,56,51,46,51,50,53,50,57,54,44,51,49,46,55,53,54,53,56,52,93,44,91,45,56,51,46,51,50,53,54,49,55,44,51,49,46,54,56,48,54,48,51,93,44,91,45,56,50,46,57,57,56,51,54,44,51,49,46,54,55,51,49,54,52,93,44,91,45,56,50,46,57,57,53,54,57,56,44,51,49,46,55,56,48,57,56,51,93,44,91,45,56,51,46,49,55,55,52,54,57,44,51,49,46,56,52,55,56,53,55,93,44,91,45,56,51,46,52,56,48,49,55,54,44,51,49,46,56,52,55,51,49,50,93,44,91,45,56,51,46,52,53,51,54,51,52,44,51,49,46,55,53,55,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,57,57,57,54,49,44,51,52,46,56,54,55,49,50,93,44,91,45,57,49,46,49,48,50,53,52,50,44,51,52,46,55,51,52,56,54,52,93,44,91,45,57,49,46,48,53,49,57,49,56,44,51,52,46,54,52,53,55,50,49,93,44,91,45,57,48,46,53,56,51,50,50,52,44,51,52,46,54,52,49,51,56,57,93,44,91,45,57,48,46,53,49,55,49,54,56,44,51,52,46,54,51,48,57,50,56,93,44,91,45,57,48,46,52,48,55,57,57,49,44,51,52,46,56,51,50,57,55,93,44,91,45,57,48,46,52,48,56,53,52,44,51,52,46,57,48,52,49,50,49,93,44,91,45,57,49,46,48,57,57,50,48,49,44,51,52,46,57,49,49,55,57,54,93,44,91,45,57,49,46,48,57,57,57,54,49,44,51,52,46,56,54,55,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,97,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,55,56,53,44,34,98,101,100,115,34,58,49,49,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,52,57,57,53,56,44,51,48,46,51,54,50,52,55,50,93,44,91,45,56,50,46,49,55,48,49,57,55,44,51,48,46,51,53,56,57,55,50,93,44,91,45,56,50,46,50,49,48,55,51,51,44,51,48,46,52,50,53,54,52,93,44,91,45,56,50,46,50,49,52,54,55,55,44,51,48,46,53,54,56,53,53,54,93,44,91,45,56,50,46,52,49,56,57,49,52,44,51,48,46,53,56,49,55,54,55,93,44,91,45,56,50,46,52,53,57,55,57,51,44,51,48,46,53,56,52,50,54,55,93,44,91,45,56,50,46,52,53,56,51,54,52,44,51,48,46,49,51,54,52,52,57,93,44,91,45,56,50,46,49,52,50,53,55,56,44,51,48,46,49,52,51,49,49,55,93,44,91,45,56,50,46,48,52,57,52,50,53,44,51,48,46,49,52,51,49,51,54,93,44,91,45,56,50,46,48,52,57,52,49,49,44,51,48,46,49,56,54,57,51,51,93,44,91,45,56,50,46,48,52,57,50,51,54,44,51,48,46,50,55,51,52,51,50,93,44,91,45,56,50,46,48,52,57,57,53,56,44,51,48,46,51,54,50,52,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,76,97,110,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,54,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,57,55,57,55,49,44,51,49,46,48,50,53,52,48,53,93,44,91,45,56,51,46,49,55,57,52,54,53,44,51,48,46,57,53,48,49,50,56,93,44,91,45,56,51,46,48,52,50,57,50,52,44,51,48,46,57,52,55,50,57,54,93,44,91,45,56,51,46,48,49,57,52,49,57,44,51,48,46,56,52,57,52,53,51,93,44,91,45,56,50,46,57,55,49,51,51,54,44,51,48,46,56,54,57,51,57,50,93,44,91,45,56,50,46,57,55,49,50,52,55,44,51,49,46,49,56,51,57,56,56,93,44,91,45,56,51,46,48,52,54,56,56,53,44,51,49,46,49,56,51,54,56,93,44,91,45,56,51,46,49,54,53,48,55,50,44,51,49,46,49,52,55,49,57,56,93,44,91,45,56,51,46,49,57,55,57,55,49,44,51,49,46,48,50,53,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,82,105,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,54,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,56,48,51,55,55,44,51,56,46,53,50,49,56,52,49,93,44,91,45,57,56,46,52,55,57,56,52,49,44,51,56,46,50,54,48,55,57,93,44,91,45,57,56,46,52,55,50,55,57,52,44,51,56,46,49,55,50,55,53,55,93,44,91,45,57,55,46,57,50,50,49,51,54,44,51,56,46,49,55,51,55,49,51,93,44,91,45,57,55,46,57,50,52,50,54,57,44,51,56,46,53,50,50,55,53,53,93,44,91,45,57,56,46,52,56,48,51,55,55,44,51,56,46,53,50,49,56,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,48,57,56,44,34,98,101,100,115,34,58,52,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,51,56,57,55,53,44,51,51,46,57,54,56,52,54,93,44,91,45,56,53,46,56,56,49,55,54,56,44,51,51,46,57,53,48,50,57,57,93,44,91,45,56,54,46,48,54,53,50,55,50,44,51,51,46,56,52,50,49,57,56,93,44,91,45,56,54,46,48,52,51,57,57,51,44,51,51,46,55,54,51,53,57,53,93,44,91,45,56,54,46,49,52,53,53,54,50,44,51,51,46,54,55,57,48,57,56,93,44,91,45,56,54,46,48,53,48,54,54,57,44,51,51,46,54,55,52,53,57,93,44,91,45,56,53,46,57,57,52,57,51,53,44,51,51,46,53,56,54,52,55,53,93,44,91,45,56,53,46,55,57,54,48,53,52,44,51,51,46,53,53,54,50,50,93,44,91,45,56,53,46,54,51,56,53,55,57,44,51,51,46,54,52,56,52,49,51,93,44,91,45,56,53,46,54,48,49,56,53,56,44,51,51,46,56,56,57,55,53,93,44,91,45,56,53,46,53,51,48,48,57,52,44,51,51,46,57,52,49,52,50,51,93,44,91,45,56,53,46,55,51,56,57,55,53,44,51,51,46,57,54,56,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,48,49,52,44,34,98,101,100,115,34,58,52,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,56,52,53,51,51,44,51,48,46,54,55,55,50,57,50,93,44,91,45,56,56,46,56,56,51,49,51,44,51,48,46,52,49,56,55,57,56,93,44,91,45,56,56,46,55,57,53,50,56,55,44,51,48,46,51,53,48,51,54,49,93,44,91,45,56,56,46,55,57,53,49,52,55,44,51,48,46,49,57,57,57,57,52,93,44,91,45,56,56,46,52,54,49,50,56,51,44,51,48,46,49,52,54,54,56,54,93,44,91,45,56,56,46,51,56,52,52,51,49,44,51,48,46,49,53,56,53,52,51,93,44,91,45,56,56,46,52,49,50,54,49,50,44,51,48,46,55,51,53,53,57,93,44,91,45,56,56,46,56,56,52,53,51,52,44,51,48,46,55,51,53,53,57,49,93,44,91,45,56,56,46,56,56,52,53,51,51,44,51,48,46,54,55,55,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,97,109,112,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,50,54,55,44,34,98,101,100,115,34,58,51,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,48,54,49,54,49,44,51,57,46,48,57,53,49,55,55,93,44,91,45,56,52,46,52,50,55,50,56,53,44,51,56,46,57,56,48,56,54,51,93,44,91,45,56,52,46,52,49,56,49,48,55,44,51,56,46,56,48,54,53,57,54,93,44,91,45,56,52,46,50,51,49,57,49,55,44,51,56,46,56,55,52,56,54,54,93,44,91,45,56,52,46,51,49,57,57,56,53,44,51,57,46,48,50,49,53,51,52,93,44,91,45,56,52,46,53,48,54,49,54,49,44,51,57,46,48,57,53,49,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,57,54,50,49,52,44,51,54,46,56,49,56,48,51,57,93,44,91,45,56,53,46,52,51,54,52,52,50,44,51,54,46,54,49,56,54,53,53,93,44,91,45,56,53,46,50,57,54,48,48,50,44,51,54,46,54,50,53,55,49,56,93,44,91,45,56,53,46,50,49,53,52,48,53,44,51,54,46,56,53,52,52,54,55,93,44,91,45,56,53,46,50,51,50,48,50,54,44,51,54,46,57,50,53,48,54,57,93,44,91,45,56,53,46,52,53,49,56,51,44,51,54,46,57,51,56,49,51,56,93,44,91,45,56,53,46,53,57,54,50,49,52,44,51,54,46,56,49,56,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,80,97,110,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,50,52,51,44,34,98,101,100,115,34,58,49,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,50,49,51,52,49,44,51,52,46,53,53,52,50,55,52,93,44,91,45,57,48,46,49,57,56,54,51,49,44,51,52,46,53,53,52,52,50,53,93,44,91,45,57,48,46,49,57,56,53,51,54,44,51,52,46,53,49,49,48,56,56,93,44,91,45,57,48,46,49,57,52,48,56,54,44,51,52,46,51,48,49,52,48,55,93,44,91,45,57,48,46,49,51,53,52,53,54,44,51,52,46,49,54,48,48,55,52,93,44,91,45,56,57,46,57,51,49,52,56,53,44,51,52,46,49,54,52,51,48,51,93,44,91,45,56,57,46,55,50,49,48,53,44,51,52,46,49,57,50,53,52,53,93,44,91,45,56,57,46,55,50,49,51,52,49,44,51,52,46,53,53,52,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,72,97,110,115,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,55,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,51,57,49,53,44,51,54,46,52,57,57,53,50,56,93,44,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,44,91,45,49,48,49,46,48,56,53,55,51,53,44,51,54,46,48,53,53,50,55,54,93,44,91,45,49,48,49,46,48,56,53,55,49,54,44,51,54,46,48,53,55,53,55,50,93,44,91,45,49,48,49,46,48,56,53,49,53,54,44,51,54,46,52,57,57,50,52,52,93,44,91,45,49,48,49,46,54,50,51,57,49,53,44,51,54,46,52,57,57,53,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,67,104,97,109,98,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,50,57,50,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,56,49,52,54,44,50,57,46,56,56,52,50,55,54,93,44,91,45,57,52,46,57,48,56,54,53,52,44,50,57,46,56,50,53,49,56,49,93,44,91,45,57,52,46,57,49,57,54,55,49,44,50,57,46,54,56,56,52,53,52,93,44,91,45,57,53,46,48,48,49,54,52,50,44,50,57,46,54,54,52,51,56,56,93,44,91,45,57,53,46,48,49,56,50,48,53,44,50,57,46,53,53,52,53,57,55,93,44,91,45,57,52,46,57,49,52,51,57,55,44,50,57,46,52,57,54,53,48,53,93,44,91,45,57,52,46,51,55,49,54,50,44,50,57,46,53,57,55,50,48,57,93,44,91,45,57,52,46,51,54,57,51,54,49,44,50,57,46,53,48,48,54,50,93,44,91,45,57,52,46,51,53,52,56,56,44,50,57,46,53,48,54,51,50,56,93,44,91,45,57,52,46,51,53,55,57,55,54,44,50,57,46,56,56,55,52,54,52,93,44,91,45,57,52,46,52,52,50,50,51,53,44,50,57,46,56,56,57,53,51,56,93,44,91,45,57,52,46,57,56,49,52,54,44,50,57,46,56,56,52,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,57,34,44,34,78,65,77,69,34,58,34,81,117,105,116,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,54,56,50,51,44,51,49,46,57,57,49,56,53,55,93,44,91,45,56,53,46,49,52,49,49,51,44,51,49,46,55,56,48,52,54,51,93,44,91,45,56,52,46,57,53,56,54,52,44,51,49,46,55,55,55,56,53,52,93,44,91,45,56,52,46,57,48,55,48,48,54,44,51,49,46,57,50,52,52,54,53,93,44,91,45,56,53,46,48,54,56,50,51,44,51,49,46,57,57,49,56,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,55,49,54,56,57,44,51,48,46,53,50,54,48,51,51,93,44,91,45,57,52,46,53,52,53,55,49,55,44,51,48,46,53,50,54,57,55,55,93,44,91,45,57,52,46,55,51,50,55,51,50,44,51,48,46,52,57,48,48,54,54,93,44,91,45,57,52,46,53,57,54,51,51,56,44,51,48,46,49,49,50,49,48,49,93,44,91,45,57,52,46,52,52,52,57,49,44,51,48,46,49,49,51,48,49,53,93,44,91,45,57,52,46,50,57,50,54,50,57,44,51,48,46,49,49,55,54,55,49,93,44,91,45,57,52,46,50,48,51,55,48,57,44,51,48,46,49,56,56,56,49,57,93,44,91,45,57,52,46,49,49,53,57,49,55,44,51,48,46,49,54,48,51,52,55,93,44,91,45,57,52,46,49,49,55,54,48,52,44,51,48,46,50,52,49,54,54,53,93,44,91,45,57,52,46,48,56,50,57,50,44,51,48,46,51,52,53,54,53,52,93,44,91,45,57,52,46,49,49,54,52,54,54,44,51,48,46,52,51,50,54,57,49,93,44,91,45,57,52,46,48,55,49,54,56,57,44,51,48,46,53,50,54,48,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,76,105,116,99,104,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,48,51,49,44,34,98,101,100,115,34,58,49,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,52,56,55,51,49,57,44,52,50,46,48,52,57,53,50,53,93,44,91,45,55,51,46,53,49,56,48,56,44,52,49,46,54,54,54,55,50,51,93,44,91,45,55,51,46,52,52,49,52,54,54,44,52,49,46,52,57,49,50,57,52,93,44,91,45,55,51,46,51,49,48,52,55,51,44,52,49,46,52,54,56,56,49,53,93,44,91,45,55,51,46,49,53,53,52,57,50,44,52,49,46,53,49,52,51,48,52,93,44,91,45,55,50,46,57,56,51,50,53,44,52,49,46,54,51,57,53,57,56,93,44,91,45,55,51,46,48,49,54,54,55,53,44,52,49,46,55,57,56,49,56,51,93,44,91,45,55,50,46,56,56,55,48,54,44,52,49,46,57,55,51,49,50,49,93,44,91,45,55,51,46,48,48,56,55,54,54,44,52,50,46,48,51,56,55,56,53,93,44,91,45,55,51,46,48,53,51,50,56,56,44,52,50,46,48,51,57,56,54,53,93,44,91,45,55,51,46,52,56,55,51,49,57,44,52,50,46,48,52,57,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,83,97,110,100,117,115,107,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,50,57,57,44,34,98,101,100,115,34,58,50,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,49,52,54,50,54,44,52,49,46,53,48,48,50,50,56,93,44,91,45,56,51,46,52,49,57,56,52,51,44,52,49,46,50,53,52,48,48,51,93,44,91,45,56,50,46,56,52,48,48,56,55,44,52,49,46,50,53,53,51,51,55,93,44,91,45,56,50,46,56,52,49,52,55,53,44,52,49,46,50,57,48,48,50,51,93,44,91,45,56,50,46,56,52,55,55,49,51,44,52,49,46,52,51,48,51,50,54,93,44,91,45,56,50,46,57,53,50,50,50,52,44,52,49,46,52,53,56,50,51,57,93,44,91,45,56,51,46,51,51,56,49,57,54,44,52,49,46,52,53,55,53,48,56,93,44,91,45,56,51,46,52,49,52,54,50,54,44,52,49,46,53,48,48,50,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,80,105,115,99,97,116,97,113,117,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,56,55,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,57,46,55,50,49,49,48,57,44,52,54,46,53,55,52,48,53,51,93,44,91,45,54,57,46,55,50,56,53,55,55,44,52,53,46,57,55,54,56,56,50,93,44,91,45,54,57,46,55,48,52,50,54,53,44,52,53,46,56,52,54,49,51,54,93,44,91,45,54,57,46,55,56,53,50,53,55,44,52,53,46,54,57,50,55,56,93,44,91,45,54,57,46,55,48,49,54,56,56,44,52,53,46,54,50,55,57,56,50,93,44,91,45,54,57,46,55,55,57,57,50,56,44,52,53,46,53,52,50,55,54,54,93,44,91,45,54,57,46,54,50,48,57,54,55,44,52,53,46,48,49,48,57,53,54,93,44,91,45,54,57,46,51,53,53,54,54,55,44,52,53,46,48,55,51,52,54,57,93,44,91,45,54,56,46,56,53,54,53,56,55,44,52,53,46,49,52,50,55,56,51,93,44,91,45,54,56,46,55,55,54,48,54,49,44,52,53,46,50,52,48,51,49,55,93,44,91,45,54,56,46,56,53,55,50,57,55,44,52,53,46,53,50,55,51,48,49,93,44,91,45,54,56,46,57,54,52,54,53,51,44,52,53,46,53,49,50,51,54,55,93,44,91,45,54,56,46,57,53,56,57,49,44,52,53,46,54,54,50,49,57,53,93,44,91,45,54,56,46,56,50,55,48,51,57,44,52,53,46,54,56,52,56,50,54,93,44,91,45,54,56,46,56,49,57,52,48,49,44,52,54,46,51,57,53,55,56,50,93,44,91,45,54,56,46,56,50,49,52,49,52,44,52,54,46,53,55,50,53,49,93,44,91,45,54,57,46,55,50,49,49,48,57,44,52,54,46,53,55,52,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,50,56,55,53,55,44,51,55,46,51,48,50,56,52,56,93,44,91,45,56,57,46,48,52,52,55,57,57,44,51,55,46,51,50,57,55,49,55,93,44,91,45,56,57,46,50,52,56,53,54,54,44,51,55,46,51,51,53,50,57,56,93,44,91,45,56,57,46,50,55,51,54,51,49,44,51,55,46,49,50,54,57,54,56,93,44,91,45,56,57,46,49,55,50,48,56,49,44,51,55,46,48,54,56,51,49,93,44,91,45,56,57,46,48,50,57,56,54,54,44,51,55,46,50,49,49,48,54,53,93,44,91,45,56,56,46,57,51,51,52,48,49,44,51,55,46,50,50,52,57,57,49,93,44,91,45,56,56,46,57,50,55,56,57,44,51,55,46,50,50,54,51,52,50,93,44,91,45,56,56,46,57,50,56,55,53,55,44,51,55,46,51,48,50,56,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,79,107,102,117,115,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,50,51,54,57,57,44,51,53,46,52,48,48,55,50,50,93,44,91,45,57,54,46,52,52,53,53,56,52,44,51,53,46,52,53,56,55,55,49,93,44,91,45,57,54,46,52,52,49,51,54,56,44,51,53,46,50,57,48,49,50,50,93,44,91,45,57,53,46,57,56,49,53,49,49,44,51,53,46,50,56,57,55,56,93,44,91,45,57,53,46,57,56,49,52,54,53,44,51,53,46,51,55,54,55,56,56,93,44,91,45,57,54,46,48,56,55,53,51,44,51,53,46,51,55,54,56,55,55,93,44,91,45,57,54,46,48,56,55,55,55,55,44,51,53,46,53,53,50,48,48,51,93,44,91,45,57,54,46,49,57,50,53,54,51,44,51,53,46,54,51,57,48,56,55,93,44,91,45,57,54,46,54,50,48,56,50,56,44,51,53,46,54,51,57,48,48,53,93,44,91,45,57,54,46,54,50,52,54,56,49,44,51,53,46,52,54,50,55,48,55,93,44,91,45,57,54,46,54,50,51,54,57,57,44,51,53,46,52,48,48,55,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,83,97,103,105,110,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,55,55,56,44,34,98,101,100,115,34,58,56,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,57,56,55,54,44,52,51,46,52,54,54,48,52,52,93,44,91,45,56,52,46,51,54,55,56,57,49,44,52,51,46,49,50,56,52,53,50,93,44,91,45,56,51,46,57,50,57,48,55,57,44,52,51,46,49,51,50,55,56,50,93,44,91,45,56,51,46,57,51,50,48,55,49,44,52,51,46,50,50,48,51,55,55,93,44,91,45,56,51,46,54,57,53,54,50,49,44,52,51,46,50,50,49,52,50,50,93,44,91,45,56,51,46,54,57,56,56,49,54,44,52,51,46,52,55,56,57,53,55,93,44,91,45,56,51,46,56,49,55,50,50,56,44,52,51,46,53,50,50,51,52,53,93,44,91,45,56,52,46,48,53,48,57,56,55,44,52,51,46,53,50,52,48,54,52,93,44,91,45,56,52,46,49,54,56,49,50,55,44,52,51,46,53,54,56,56,57,57,93,44,91,45,56,52,46,49,55,48,53,55,54,44,52,51,46,52,56,49,57,54,57,93,44,91,45,56,52,46,51,54,57,56,55,54,44,52,51,46,52,54,54,48,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,82,105,111,32,65,114,114,105,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,51,48,55,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,55,54,48,57,44,51,54,46,57,57,51,53,52,56,93,44,91,45,49,48,55,46,52,50,49,50,50,51,44,51,55,46,48,48,48,50,50,51,93,44,91,45,49,48,55,46,52,53,49,52,52,53,44,51,54,46,57,48,52,48,51,54,93,44,91,45,49,48,55,46,54,49,56,49,56,49,44,51,54,46,56,48,52,50,54,55,93,44,91,45,49,48,55,46,54,50,52,50,56,51,44,51,54,46,50,49,57,56,48,57,93,44,91,45,49,48,54,46,56,56,53,48,53,51,44,51,54,46,50,49,54,53,55,93,44,91,45,49,48,54,46,56,56,53,51,49,55,44,51,53,46,57,57,56,57,54,57,93,44,91,45,49,48,54,46,50,52,55,49,54,52,44,51,54,46,48,48,49,52,51,52,93,44,91,45,49,48,54,46,50,52,56,49,54,49,44,51,53,46,57,54,54,51,50,55,93,44,91,45,49,48,54,46,50,52,53,54,52,57,44,51,53,46,57,51,48,55,52,50,93,44,91,45,49,48,54,46,48,53,52,51,52,54,44,51,53,46,57,51,48,55,56,51,93,44,91,45,49,48,54,46,48,55,49,51,52,57,44,51,54,46,48,48,49,57,55,93,44,91,45,49,48,53,46,55,49,55,52,55,55,44,51,53,46,57,55,56,55,52,49,93,44,91,45,49,48,53,46,53,51,48,51,56,44,51,54,46,48,49,51,48,49,52,93,44,91,45,49,48,53,46,55,51,53,56,56,51,44,51,54,46,49,48,48,49,51,51,93,44,91,45,49,48,53,46,56,53,54,57,52,55,44,51,54,46,50,51,48,52,51,52,93,44,91,45,49,48,54,46,48,53,56,51,54,52,44,51,54,46,50,57,54,57,55,56,93,44,91,45,49,48,53,46,57,54,49,52,49,52,44,51,54,46,51,53,51,48,54,54,93,44,91,45,49,48,53,46,57,51,56,55,53,52,44,51,54,46,52,54,50,52,48,50,93,44,91,45,49,48,53,46,57,55,49,56,51,54,44,51,54,46,54,51,50,52,52,52,93,44,91,45,49,48,53,46,57,55,49,56,56,57,44,51,54,46,56,56,54,50,52,55,93,44,91,45,49,48,54,46,48,48,54,51,49,54,44,51,54,46,57,57,53,50,54,55,93,44,91,45,49,48,54,46,52,55,54,48,57,44,51,54,46,57,57,51,53,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,97,108,101,100,111,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,52,50,53,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,57,51,57,57,51,54,44,52,52,46,55,54,57,48,51,50,93,44,91,45,55,50,46,48,49,50,53,48,52,44,52,52,46,54,57,56,56,50,49,93,44,91,45,55,50,46,49,49,52,53,48,51,44,52,52,46,55,52,57,54,50,52,93,44,91,45,55,50,46,50,54,50,57,54,53,44,52,52,46,53,52,50,51,51,54,93,44,91,45,55,50,46,51,55,52,55,56,54,44,52,52,46,53,56,52,49,50,53,93,44,91,45,55,50,46,52,51,52,51,49,53,44,52,52,46,53,48,54,48,57,56,93,44,91,45,55,50,46,50,50,51,54,56,57,44,52,52,46,52,50,52,53,55,51,93,44,91,45,55,50,46,51,54,56,51,53,51,44,52,52,46,50,48,52,48,53,55,93,44,91,45,55,50,46,48,52,50,57,53,54,44,52,52,46,49,53,54,52,57,55,93,44,91,45,55,50,46,48,54,56,52,55,56,44,52,52,46,50,55,48,56,48,49,93,44,91,45,55,49,46,57,56,49,52,50,52,44,52,52,46,51,51,55,51,54,54,93,44,91,45,55,49,46,56,51,55,56,53,51,44,52,52,46,51,52,55,57,57,51,93,44,91,45,55,49,46,57,51,51,50,56,56,44,52,52,46,52,52,49,49,55,52,93,44,91,45,55,49,46,57,49,48,48,56,53,44,52,52,46,54,52,55,49,56,93,44,91,45,55,49,46,57,51,57,57,51,54,44,52,52,46,55,54,57,48,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,111,116,101,116,111,117,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,50,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,50,48,53,53,52,44,51,55,46,54,52,55,52,52,50,93,44,91,45,55,57,46,57,54,57,48,55,49,44,51,55,46,53,52,52,52,48,56,93,44,91,45,56,48,46,48,55,52,49,49,57,44,51,55,46,52,50,50,52,54,57,93,44,91,45,55,57,46,56,52,55,52,55,54,44,51,55,46,51,48,57,51,53,50,93,44,91,45,55,57,46,54,57,48,48,54,44,51,55,46,52,55,54,51,55,52,93,44,91,45,55,57,46,53,57,51,55,48,55,44,51,55,46,52,52,56,56,54,52,93,44,91,45,55,57,46,52,57,56,54,57,57,44,51,55,46,53,51,50,55,57,55,93,44,91,45,55,57,46,54,56,51,53,53,52,44,51,55,46,54,54,49,55,54,51,93,44,91,45,55,57,46,54,55,52,49,54,50,44,51,55,46,55,54,51,48,57,51,93,44,91,45,55,57,46,56,49,54,54,56,53,44,51,55,46,56,48,48,57,54,52,93,44,91,45,56,48,46,48,50,48,53,53,52,44,51,55,46,54,52,55,52,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,53,54,55,48,44,34,98,101,100,115,34,58,57,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,55,53,55,48,50,44,51,56,46,57,50,51,53,50,57,93,44,91,45,57,48,46,49,49,55,55,48,55,44,51,56,46,56,48,53,55,52,56,93,44,91,45,57,48,46,49,54,54,53,55,52,44,51,56,46,55,55,50,52,52,56,93,44,91,45,57,48,46,49,56,49,53,52,51,44,51,56,46,54,54,48,48,54,50,93,44,91,45,56,57,46,55,48,54,57,52,57,44,51,56,46,54,53,53,48,49,57,93,44,91,45,56,57,46,53,57,55,51,50,49,44,51,56,46,55,52,51,50,51,54,93,44,91,45,56,57,46,54,51,57,50,54,53,44,51,56,46,57,57,57,49,50,57,93,44,91,45,56,57,46,54,57,56,53,53,53,44,51,56,46,57,57,56,57,55,57,93,44,91,45,57,48,46,49,52,53,57,56,52,44,51,56,46,57,57,57,51,48,51,93,44,91,45,57,48,46,50,55,53,55,48,50,44,51,56,46,57,50,51,53,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,67,111,108,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,52,51,53,48,44,34,98,101,100,115,34,58,50,51,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,51,52,49,49,44,51,51,46,52,48,53,52,57,56,93,44,91,45,57,54,46,56,52,51,57,55,57,44,51,50,46,57,56,55,53,53,52,93,44,91,45,57,54,46,53,49,54,56,54,54,44,51,50,46,57,56,50,51,48,56,93,44,91,45,57,54,46,50,57,55,50,50,55,44,51,50,46,57,56,49,55,53,50,93,44,91,45,57,54,46,50,57,53,52,49,51,44,51,51,46,51,53,49,57,51,54,93,44,91,45,57,54,46,51,56,52,54,48,50,44,51,51,46,51,57,55,56,50,54,93,44,91,45,57,54,46,56,51,52,49,49,44,51,51,46,52,48,53,52,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,98,98,101,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,54,53,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,49,51,57,57,54,44,51,52,46,52,56,52,48,48,50,93,44,91,45,56,50,46,55,52,50,49,48,51,44,51,52,46,50,49,49,57,48,51,93,44,91,45,56,50,46,53,57,52,54,51,49,44,51,52,46,48,49,51,55,57,54,93,44,91,45,56,50,46,53,51,48,53,54,55,44,51,52,46,48,55,49,57,50,53,93,44,91,45,56,50,46,51,50,54,57,52,55,44,51,52,46,48,54,52,49,50,93,44,91,45,56,50,46,50,52,55,55,52,55,44,51,52,46,50,49,57,54,49,57,93,44,91,45,56,50,46,51,51,52,50,51,52,44,51,52,46,51,52,50,54,51,93,44,91,45,56,50,46,50,52,54,51,51,55,44,51,52,46,52,48,57,54,55,54,93,44,91,45,56,50,46,51,49,51,57,57,54,44,51,52,46,52,56,52,48,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,68,111,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,56,51,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,48,53,57,50,50,44,52,49,46,55,52,50,55,54,51,93,44,91,45,57,54,46,57,48,53,57,49,44,52,49,46,52,53,54,52,51,54,93,44,91,45,57,54,46,57,48,53,56,54,50,44,52,49,46,52,53,51,51,56,57,93,44,91,45,57,54,46,53,54,56,57,55,55,44,52,49,46,52,51,51,50,52,93,44,91,45,57,54,46,52,55,48,55,50,44,52,49,46,51,57,51,50,51,57,93,44,91,45,57,54,46,51,50,57,48,49,50,44,52,49,46,51,57,51,49,51,54,93,44,91,45,57,54,46,52,52,51,56,57,56,44,52,49,46,53,50,51,57,51,51,93,44,91,45,57,54,46,52,52,52,55,56,53,44,52,49,46,54,56,51,54,51,51,93,44,91,45,57,54,46,53,53,53,49,55,50,44,52,49,46,55,52,50,48,49,56,93,44,91,45,57,54,46,57,48,53,57,50,50,44,52,49,46,55,52,50,55,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,97,114,97,115,111,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,49,52,52,44,34,98,101,100,115,34,58,49,53,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,48,53,52,51,56,44,50,55,46,51,56,57,54,54,56,93,44,91,45,56,50,46,53,54,52,55,52,44,50,55,46,50,48,53,54,93,44,91,45,56,50,46,52,51,55,51,50,55,44,50,54,46,57,52,54,48,50,53,93,44,91,45,56,50,46,50,53,53,53,50,49,44,50,54,46,57,52,53,50,54,52,93,44,91,45,56,50,46,50,53,53,50,51,55,44,50,55,46,48,51,50,57,55,53,93,44,91,45,56,50,46,48,53,55,52,54,57,44,50,55,46,48,51,50,49,49,57,93,44,91,45,56,50,46,48,53,54,52,57,55,44,50,55,46,50,48,55,55,54,57,93,44,91,45,56,50,46,50,53,51,53,57,54,44,50,55,46,50,48,56,57,49,54,93,44,91,45,56,50,46,50,53,50,50,54,52,44,50,55,46,51,56,54,50,52,51,93,44,91,45,56,50,46,55,48,53,52,51,56,44,50,55,46,51,56,57,54,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,77,97,114,113,117,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,54,56,54,49,50,44,52,51,46,57,56,50,56,51,52,93,44,91,45,56,57,46,53,57,55,57,53,44,52,51,46,57,56,50,49,93,44,91,45,56,57,46,53,57,57,53,52,55,44,52,51,46,54,52,50,54,51,54,93,44,91,45,56,57,46,50,52,53,52,51,55,44,52,51,46,54,52,51,48,56,51,93,44,91,45,56,57,46,50,52,53,51,55,53,44,52,51,46,55,53,57,56,49,51,93,44,91,45,56,57,46,49,54,56,49,50,49,44,52,51,46,56,55,54,52,55,93,44,91,45,56,57,46,49,54,56,54,49,50,44,52,51,46,57,56,50,56,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,77,111,104,97,118,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,48,54,52,44,34,98,101,100,115,34,58,54,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,48,53,48,51,53,52,44,51,54,46,56,52,51,49,52,49,93,44,91,45,49,49,52,46,48,52,51,57,52,52,44,51,54,46,49,57,51,51,53,93,44,91,45,49,49,52,46,49,53,51,52,44,51,54,46,48,50,51,49,55,93,44,91,45,49,49,52,46,50,52,51,56,54,53,44,51,54,46,48,49,53,50,54,54,93,44,91,45,49,49,52,46,51,55,48,49,56,49,44,51,54,46,49,52,50,54,50,52,93,44,91,45,49,49,52,46,54,50,55,48,55,57,44,51,54,46,49,52,48,55,54,49,93,44,91,45,49,49,52,46,55,53,52,53,48,56,44,51,54,46,48,56,54,49,55,49,93,44,91,45,49,49,52,46,55,48,56,49,49,50,44,51,53,46,57,48,57,57,51,51,93,44,91,45,49,49,52,46,54,55,56,56,57,50,44,51,53,46,53,48,49,50,55,54,93,44,91,45,49,49,52,46,53,57,53,49,54,51,44,51,53,46,51,50,49,56,56,51,93,44,91,45,49,49,52,46,53,54,57,53,50,57,44,51,53,46,49,54,50,51,49,55,93,44,91,45,49,49,52,46,54,51,51,52,56,55,44,51,53,46,48,48,49,56,53,55,93,44,91,45,49,49,52,46,54,50,56,50,55,54,44,51,52,46,56,54,51,53,57,54,93,44,91,45,49,49,52,46,52,55,49,54,50,44,51,52,46,55,49,50,57,54,54,93,44,91,45,49,49,52,46,52,51,53,54,55,49,44,51,52,46,53,57,51,56,52,49,93,44,91,45,49,49,52,46,51,51,57,54,50,55,44,51,52,46,52,53,49,52,51,53,93,44,91,45,49,49,52,46,49,51,56,50,56,50,44,51,52,46,51,48,51,50,51,93,44,91,45,49,49,52,46,48,51,49,49,51,50,44,51,52,46,50,53,57,56,49,57,93,44,91,45,49,49,51,46,54,48,54,48,57,51,44,51,52,46,50,50,57,51,51,52,93,44,91,45,49,49,51,46,53,51,57,53,50,52,44,51,52,46,51,48,54,51,55,55,93,44,91,45,49,49,51,46,51,51,51,53,48,56,44,51,52,46,51,49,55,56,55,55,93,44,91,45,49,49,51,46,51,51,52,49,54,49,44,51,53,46,53,50,56,48,51,55,93,44,91,45,49,49,51,46,51,49,51,52,50,56,44,51,54,46,49,48,48,48,48,49,93,44,91,45,49,49,51,46,48,48,54,51,52,51,44,51,54,46,50,51,56,55,53,52,93,44,91,45,49,49,50,46,57,48,50,57,52,57,44,51,54,46,50,53,51,55,54,49,93,44,91,45,49,49,50,46,54,56,49,53,55,49,44,51,54,46,51,52,49,54,54,50,93,44,91,45,49,49,50,46,54,50,57,52,57,44,51,54,46,51,57,49,54,49,49,93,44,91,45,49,49,50,46,54,53,54,51,54,53,44,51,54,46,53,53,51,57,49,53,93,44,91,45,49,49,50,46,54,49,57,55,50,56,44,51,54,46,55,56,50,55,52,52,93,44,91,45,49,49,50,46,53,51,56,53,55,49,44,51,55,46,48,48,48,55,53,56,93,44,91,45,49,49,50,46,56,57,57,49,57,49,44,51,55,46,48,48,48,51,56,53,93,44,91,45,49,49,52,46,48,53,48,48,53,50,44,51,55,46,48,48,48,49,57,49,93,44,91,45,49,49,52,46,48,53,48,51,53,52,44,51,54,46,56,52,51,49,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,89,97,118,97,112,97,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,54,52,53,44,34,98,101,100,115,34,58,51,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,51,51,52,49,54,49,44,51,53,46,53,50,56,48,51,55,93,44,91,45,49,49,51,46,51,51,51,53,48,56,44,51,52,46,51,49,55,56,55,55,93,44,91,45,49,49,51,46,51,51,51,55,53,51,44,51,51,46,57,57,57,50,50,55,93,44,91,45,49,49,50,46,55,52,51,57,53,49,44,51,51,46,57,57,57,56,57,56,93,44,91,45,49,49,50,46,50,55,54,48,52,44,51,51,46,56,56,50,51,49,50,93,44,91,45,49,49,50,46,49,54,51,50,53,51,44,51,52,46,48,52,55,52,55,49,93,44,91,45,49,49,49,46,55,50,53,51,49,44,51,51,46,57,57,57,56,52,57,93,44,91,45,49,49,49,46,52,57,52,55,55,56,44,51,51,46,57,57,57,56,49,55,93,44,91,45,49,49,49,46,52,55,55,56,53,51,44,51,52,46,49,53,49,49,48,56,93,44,91,45,49,49,49,46,55,49,50,49,49,56,44,51,52,46,49,53,49,50,55,49,93,44,91,45,49,49,49,46,54,53,57,54,50,50,44,51,52,46,51,56,54,51,52,50,93,44,91,45,49,49,49,46,53,53,52,54,56,49,44,51,52,46,52,55,49,55,51,51,93,44,91,45,49,49,49,46,53,53,49,57,53,57,44,51,52,46,56,48,50,53,50,93,44,91,45,49,49,49,46,55,55,56,50,48,52,44,51,52,46,56,48,51,54,56,53,93,44,91,45,49,49,49,46,55,55,56,50,57,55,44,51,52,46,57,56,49,48,48,55,93,44,91,45,49,49,50,46,51,51,52,53,51,54,44,51,52,46,57,55,51,48,50,52,93,44,91,45,49,49,50,46,51,51,53,55,49,54,44,51,53,46,49,52,56,50,55,57,93,44,91,45,49,49,50,46,52,52,50,51,44,51,53,46,49,52,57,52,48,56,93,44,91,45,49,49,50,46,52,55,50,55,44,51,53,46,50,51,56,51,49,50,93,44,91,45,49,49,50,46,53,55,55,51,57,57,44,51,53,46,50,52,51,51,57,52,93,44,91,45,49,49,50,46,54,57,52,56,52,54,44,51,53,46,51,49,49,53,56,54,93,44,91,45,49,49,50,46,57,52,52,55,56,57,44,51,53,46,51,53,50,54,48,51,93,44,91,45,49,49,51,46,49,55,52,52,53,56,44,51,53,46,53,48,54,52,52,53,93,44,91,45,49,49,51,46,51,51,52,49,54,49,44,51,53,46,53,50,56,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,72,111,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,48,57,49,53,44,34,98,101,100,115,34,58,56,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,49,50,56,49,54,53,44,51,52,46,50,53,51,54,53,50,93,44,91,45,55,57,46,51,51,50,52,53,56,44,51,51,46,57,57,52,57,57,55,93,44,91,45,55,57,46,49,57,48,50,54,52,44,51,51,46,55,48,53,55,56,55,93,44,91,45,55,57,46,49,48,49,48,55,52,44,51,51,46,53,55,50,57,54,57,93,44,91,45,55,56,46,57,50,54,48,55,53,44,51,51,46,53,55,50,54,53,56,93,44,91,45,55,56,46,54,57,49,51,56,50,44,51,51,46,55,53,53,50,56,56,93,44,91,45,55,56,46,52,57,57,51,48,49,44,51,51,46,56,49,50,56,53,50,93,44,91,45,55,56,46,54,53,48,51,49,52,44,51,51,46,57,52,52,51,52,50,93,44,91,45,55,57,46,48,55,49,50,49,49,44,51,52,46,50,57,57,51,52,50,93,44,91,45,55,57,46,49,50,56,49,54,53,44,51,52,46,50,53,51,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,49,51,48,49,44,34,98,101,100,115,34,58,51,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,54,57,54,55,56,50,44,52,48,46,50,52,49,56,54,51,93,44,91,45,55,53,46,53,55,51,51,51,56,44,52,48,46,49,57,53,51,48,51,93,44,91,45,55,53,46,51,54,49,48,54,54,44,52,48,46,48,54,53,53,52,51,93,44,91,45,55,53,46,50,55,54,52,56,50,44,51,57,46,57,55,54,57,53,57,93,44,91,45,55,53,46,50,50,51,54,49,44,52,48,46,48,57,50,57,48,55,93,44,91,45,55,53,46,49,48,57,52,51,49,44,52,48,46,48,52,53,56,55,52,93,44,91,45,55,53,46,48,49,53,48,54,54,44,52,48,46,49,51,55,57,57,50,93,44,91,45,55,53,46,52,56,52,48,53,55,44,52,48,46,52,49,56,52,53,49,93,44,91,45,55,53,46,53,50,57,54,57,52,44,52,48,46,52,52,54,57,57,53,93,44,91,45,55,53,46,54,57,54,55,56,50,44,52,48,46,50,52,49,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,44,91,45,49,49,54,46,51,54,57,49,50,50,44,52,54,46,52,54,54,57,50,51,93,44,91,45,49,49,54,46,51,54,56,56,48,49,44,52,54,46,51,52,51,50,49,55,93,44,91,45,49,49,54,46,55,49,51,52,57,54,44,52,54,46,51,50,53,53,50,55,93,44,91,45,49,49,54,46,55,48,49,56,49,57,44,52,53,46,57,57,54,51,56,49,93,44,91,45,49,49,54,46,53,49,52,55,48,55,44,52,54,46,48,51,56,55,53,55,93,44,91,45,49,49,54,46,52,53,52,49,49,55,44,52,54,46,49,57,50,48,51,50,93,44,91,45,49,49,54,46,51,48,51,55,49,51,44,52,54,46,49,54,54,55,55,56,93,44,91,45,49,49,54,46,49,51,51,53,55,44,52,54,46,50,49,53,50,51,49,93,44,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,65,114,101,99,105,98,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,50,52,50,44,34,98,101,100,115,34,58,50,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,55,54,52,54,57,50,44,49,56,46,53,51,56,51,51,93,44,91,45,54,54,46,55,55,48,48,55,50,44,49,56,46,51,50,53,48,49,51,93,44,91,45,54,54,46,54,48,54,57,56,57,44,49,56,46,51,50,56,49,56,54,93,44,91,45,54,54,46,53,57,48,55,56,53,44,49,56,46,51,51,56,48,54,93,44,91,45,54,54,46,53,56,56,49,56,49,44,49,56,46,51,56,57,52,48,56,93,44,91,45,54,54,46,53,55,56,52,52,49,44,49,56,46,53,52,49,52,51,49,93,44,91,45,54,54,46,55,54,52,54,57,50,44,49,56,46,53,51,56,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,50,48,34,44,34,78,65,77,69,34,58,34,78,111,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,57,48,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,54,51,54,50,53,44,51,54,46,57,50,48,57,53,57,93,44,91,45,56,50,46,53,57,49,49,52,55,44,51,54,46,57,51,53,51,49,51,93,44,91,45,56,50,46,54,51,51,56,51,49,44,51,54,46,57,53,50,50,55,54,93,44,91,45,56,50,46,54,54,51,54,50,53,44,51,54,46,57,50,48,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,77,111,114,114,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,52,51,56,51,44,34,98,101,100,115,34,58,49,56,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,53,48,51,50,49,50,44,52,49,46,48,56,53,56,55,51,93,44,91,45,55,52,46,54,52,48,54,52,51,44,52,48,46,57,54,53,51,51,56,93,44,91,45,55,52,46,55,54,57,52,50,53,44,52,48,46,57,49,48,57,51,52,93,44,91,45,55,52,46,56,56,57,56,49,57,44,52,48,46,55,56,55,55,50,57,93,44,91,45,55,52,46,55,50,53,54,54,54,44,52,48,46,55,49,57,53,51,50,93,44,91,45,55,52,46,53,53,54,48,49,56,44,52,48,46,55,53,56,50,56,56,93,44,91,45,55,52,46,52,54,49,48,51,53,44,52,48,46,54,55,51,53,48,52,93,44,91,45,55,52,46,51,55,49,55,51,56,44,52,48,46,55,51,57,54,52,93,44,91,45,55,52,46,50,55,50,48,54,51,44,52,48,46,56,57,55,52,50,55,93,44,91,45,55,52,46,51,48,49,54,56,53,44,52,48,46,57,57,57,49,55,51,93,44,91,45,55,52,46,53,48,51,50,49,50,44,52,49,46,48,56,53,56,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,49,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,54,54,57,51,53,44,52,48,46,51,56,50,57,57,57,93,44,91,45,57,51,46,51,54,55,50,49,52,44,52,48,46,50,54,54,51,49,52,93,44,91,45,57,51,46,51,54,49,57,53,49,44,52,48,46,48,51,51,48,57,56,93,44,91,45,57,50,46,56,53,54,49,57,49,44,52,48,46,48,51,55,50,53,51,93,44,91,45,57,50,46,56,53,53,54,50,57,44,52,48,46,51,52,50,55,51,54,93,44,91,45,57,50,46,56,53,53,51,49,51,44,52,48,46,51,56,53,56,57,52,93,44,91,45,57,51,46,51,54,54,57,51,53,44,52,48,46,51,56,50,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,78,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,53,53,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,52,55,50,44,51,56,46,54,57,56,49,54,53,93,44,91,45,49,48,48,46,50,52,52,51,57,51,44,51,56,46,50,54,50,50,57,93,44,91,45,49,48,48,46,50,50,55,49,51,55,44,51,56,46,50,54,50,50,51,55,93,44,91,45,57,57,46,53,56,52,50,48,55,44,51,56,46,50,54,50,49,55,57,93,44,91,45,57,57,46,53,56,52,55,57,52,44,51,56,46,51,52,57,51,56,54,93,44,91,45,57,57,46,53,56,53,48,56,55,44,51,56,46,54,57,54,53,51,55,93,44,91,45,57,57,46,53,57,56,51,50,51,44,51,56,46,54,57,54,53,49,52,93,44,91,45,49,48,48,46,49,53,51,56,50,51,44,51,56,46,54,57,55,51,52,49,93,44,91,45,49,48,48,46,50,52,55,50,44,51,56,46,54,57,56,49,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,66,114,97,122,111,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,57,57,57,44,34,98,101,100,115,34,58,50,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,50,52,49,49,56,44,50,57,46,53,56,48,50,51,51,93,44,91,45,57,53,46,52,54,50,53,48,51,44,50,57,46,52,51,57,50,52,93,44,91,45,57,53,46,53,52,57,57,57,52,44,50,57,46,52,51,56,52,51,57,93,44,91,45,57,53,46,53,57,48,55,57,51,44,50,57,46,51,50,55,52,56,53,93,44,91,45,57,53,46,55,53,50,56,54,54,44,50,57,46,51,50,52,53,48,51,93,44,91,45,57,53,46,56,52,55,54,53,54,44,50,57,46,50,54,50,53,57,93,44,91,45,57,53,46,56,55,52,48,50,56,44,50,57,46,50,50,57,55,48,50,93,44,91,45,57,53,46,56,52,49,52,57,57,44,50,57,46,48,57,56,54,50,93,44,91,45,57,53,46,55,54,52,57,51,55,44,50,56,46,57,54,55,51,53,57,93,44,91,45,57,53,46,54,53,53,51,57,56,44,50,56,46,57,53,49,55,49,49,93,44,91,45,57,53,46,52,57,53,54,53,44,50,56,46,55,54,52,56,51,55,93,44,91,45,57,53,46,51,53,51,52,55,49,44,50,56,46,56,49,55,56,54,51,93,44,91,45,57,53,46,48,57,52,51,51,54,44,50,57,46,48,51,50,50,52,93,44,91,45,57,53,46,48,57,49,54,50,50,44,50,57,46,48,54,50,55,51,57,93,44,91,45,57,53,46,48,53,54,53,55,53,44,50,57,46,49,57,57,56,53,54,93,44,91,45,57,53,46,50,51,51,48,56,49,44,50,57,46,52,54,53,53,54,54,93,44,91,45,57,53,46,50,49,54,52,50,50,44,50,57,46,53,53,54,48,56,93,44,91,45,57,53,46,50,54,49,52,54,53,44,50,57,46,53,57,51,48,52,52,93,44,91,45,57,53,46,52,50,52,49,49,56,44,50,57,46,53,56,48,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,57,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,57,48,34,44,34,78,65,77,69,34,58,34,83,116,97,117,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,53,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,55,55,53,54,49,44,51,56,46,49,50,54,52,54,93,44,91,45,55,57,46,48,50,48,51,48,56,44,51,56,46,49,52,51,55,50,53,93,44,91,45,55,57,46,48,51,51,55,56,57,44,51,56,46,49,57,57,48,49,56,93,44,91,45,55,57,46,48,57,51,55,57,49,44,51,56,46,49,56,54,50,56,55,93,44,91,45,55,57,46,48,55,55,53,54,49,44,51,56,46,49,50,54,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,104,97,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,52,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,51,52,53,51,54,53,44,52,48,46,54,57,56,48,57,51,93,44,91,45,49,48,50,46,48,53,49,52,53,55,44,52,48,46,54,57,55,53,51,57,93,44,91,45,49,48,50,46,48,53,49,52,54,53,44,52,48,46,52,52,48,48,48,56,93,44,91,45,49,48,50,46,48,53,49,53,56,54,44,52,48,46,51,52,57,50,49,51,93,44,91,45,49,48,49,46,51,52,50,55,56,56,44,52,48,46,51,53,48,52,52,52,93,44,91,45,49,48,49,46,51,52,53,51,54,53,44,52,48,46,54,57,56,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,50,48,51,52,44,34,98,101,100,115,34,58,50,51,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,56,53,51,54,55,44,51,57,46,57,49,56,52,57,49,93,44,91,45,56,52,46,52,55,57,50,49,51,44,51,57,46,53,57,49,48,50,52,93,44,91,45,56,52,46,51,54,53,50,51,50,44,51,57,46,53,56,57,52,57,51,93,44,91,45,56,52,46,49,49,52,49,57,53,44,51,57,46,53,55,55,57,56,51,93,44,91,45,56,52,46,48,57,50,57,51,56,44,51,57,46,56,51,56,51,52,53,93,44,91,45,56,52,46,48,53,51,55,51,54,44,51,57,46,56,53,48,52,53,56,93,44,91,45,56,52,46,48,53,49,48,49,50,44,51,57,46,56,55,57,56,49,93,44,91,45,56,52,46,49,53,55,54,55,49,44,51,57,46,57,50,50,57,55,93,44,91,45,56,52,46,52,50,53,57,48,50,44,51,57,46,57,49,57,54,50,50,93,44,91,45,56,52,46,52,56,53,51,54,55,44,51,57,46,57,49,56,52,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,52,55,34,44,34,78,65,77,69,34,58,34,84,104,114,111,99,107,109,111,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,55,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,55,49,50,53,56,44,51,50,46,57,53,55,48,50,53,93,44,91,45,57,57,46,48,57,54,48,49,54,44,51,50,46,57,53,55,48,51,55,93,44,91,45,57,56,46,57,53,48,56,55,53,44,51,50,46,57,53,54,57,49,56,93,44,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,44,91,45,57,57,46,52,55,50,52,52,52,44,51,51,46,51,57,57,48,50,51,93,44,91,45,57,57,46,52,55,49,50,53,56,44,51,50,46,57,53,55,48,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,49,34,44,34,78,65,77,69,34,58,34,79,103,108,101,116,104,111,114,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,55,54,50,57,52,44,51,52,46,48,52,51,50,49,57,93,44,91,45,56,51,46,49,50,54,50,50,57,44,51,52,46,48,52,54,50,49,51,93,44,91,45,56,51,46,50,53,56,52,49,51,44,51,51,46,57,57,57,48,57,56,93,44,91,45,56,51,46,50,55,53,57,51,51,44,51,51,46,56,52,55,57,55,55,93,44,91,45,56,51,46,50,56,48,51,52,44,51,51,46,55,54,49,55,55,52,93,44,91,45,56,51,46,49,49,56,55,50,57,44,51,51,46,54,57,56,56,49,56,93,44,91,45,56,50,46,57,57,53,54,48,50,44,51,51,46,54,57,51,53,56,51,93,44,91,45,56,50,46,57,52,57,48,52,54,44,51,51,46,55,51,51,51,51,51,93,44,91,45,56,50,46,57,56,55,50,56,54,44,51,51,46,55,56,48,55,49,93,44,91,45,56,50,46,56,52,54,54,56,54,44,51,51,46,57,52,48,54,51,57,93,44,91,45,56,50,46,55,55,57,53,48,54,44,51,51,46,57,55,49,49,50,52,93,44,91,45,56,50,46,57,55,54,50,57,52,44,51,52,46,48,52,51,50,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,110,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,48,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,53,48,54,50,52,44,51,53,46,52,54,50,57,53,93,44,91,45,57,50,46,56,53,53,44,51,53,46,49,55,50,55,55,55,93,44,91,45,57,50,46,56,57,54,49,48,57,44,51,53,46,49,55,48,54,55,56,93,44,91,45,57,51,46,48,52,48,53,50,53,44,51,53,46,48,55,54,57,50,51,93,44,91,45,57,50,46,55,49,54,51,51,49,44,51,53,46,48,55,49,55,52,50,93,44,91,45,57,50,46,53,53,52,54,56,53,44,51,53,46,49,49,51,50,55,55,93,44,91,45,57,50,46,52,57,57,57,56,53,44,51,53,46,49,54,57,53,55,53,93,44,91,45,57,50,46,52,56,49,52,54,57,44,51,53,46,51,54,56,51,57,50,93,44,91,45,57,50,46,52,55,57,50,54,56,44,51,53,46,52,53,53,51,53,55,93,44,91,45,57,50,46,56,53,48,54,50,52,44,51,53,46,52,54,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,78,111,100,97,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,52,55,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,50,48,50,50,54,53,44,52,48,46,53,55,56,52,56,56,93,44,91,45,57,53,46,49,56,48,54,49,52,44,52,48,46,50,54,49,55,48,54,93,44,91,45,57,53,46,48,55,49,55,48,51,44,52,48,46,50,54,48,56,53,57,93,44,91,45,57,53,46,48,52,51,48,56,44,52,48,46,49,51,48,48,57,54,93,44,91,45,57,52,46,54,48,53,57,52,50,44,52,48,46,49,50,54,49,50,55,93,44,91,45,57,52,46,53,57,56,52,56,55,44,52,48,46,51,56,54,55,49,52,93,44,91,45,57,52,46,54,51,50,48,51,44,52,48,46,53,55,49,51,54,55,93,44,91,45,57,52,46,57,49,52,56,57,54,44,52,48,46,53,55,53,48,54,56,93,44,91,45,57,53,46,50,48,50,50,54,53,44,52,48,46,53,55,56,52,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,82,97,110,115,111,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,54,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,51,51,56,54,50,44,52,54,46,54,51,48,55,50,55,93,44,91,45,57,56,46,48,51,52,53,53,54,44,52,54,46,50,56,50,54,53,55,93,44,91,45,57,56,46,48,48,54,55,49,53,44,52,54,46,50,56,50,54,50,54,93,44,91,45,57,55,46,50,56,48,53,54,54,44,52,54,46,50,56,50,51,57,51,93,44,91,45,57,55,46,50,55,57,57,52,56,44,52,54,46,54,50,57,51,52,56,93,44,91,45,57,55,46,54,56,50,48,48,54,44,52,54,46,54,50,57,57,50,56,93,44,91,45,57,56,46,48,51,51,56,54,50,44,52,54,46,54,51,48,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,55,56,54,44,34,98,101,100,115,34,58,51,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,54,55,51,49,56,44,52,51,46,56,50,53,57,48,50,93,44,91,45,56,52,46,49,54,56,49,50,55,44,52,51,46,53,54,56,56,57,57,93,44,91,45,56,52,46,48,53,48,57,56,55,44,52,51,46,53,50,52,48,54,52,93,44,91,45,56,51,46,56,49,55,50,50,56,44,52,51,46,53,50,50,51,52,53,93,44,91,45,56,51,46,54,57,56,56,49,54,44,52,51,46,52,55,56,57,53,55,93,44,91,45,56,51,46,55,48,56,51,49,55,44,52,51,46,56,50,56,55,50,49,93,44,91,45,56,51,46,55,48,56,53,50,53,44,52,51,46,56,51,51,57,52,56,93,44,91,45,56,51,46,57,48,55,54,48,56,44,52,51,46,57,49,48,52,49,53,93,44,91,45,56,52,46,48,52,52,56,52,51,44,52,51,46,57,49,49,49,52,54,93,44,91,45,56,52,46,49,54,54,51,55,55,44,52,51,46,57,57,54,57,48,49,93,44,91,45,56,52,46,49,54,55,51,49,56,44,52,51,46,56,50,53,57,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,55,48,48,53,44,34,98,101,100,115,34,58,52,48,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,55,52,57,57,50,44,51,53,46,51,56,52,49,53,50,93,44,91,45,57,48,46,49,53,50,48,57,52,44,51,53,46,50,53,53,57,56,57,93,44,91,45,57,48,46,48,54,54,53,57,49,44,51,53,46,49,51,53,57,57,93,44,91,45,57,48,46,49,55,51,54,48,51,44,51,53,46,49,49,56,48,55,51,93,44,91,45,57,48,46,50,48,57,51,57,55,44,51,53,46,48,50,54,53,52,54,93,44,91,45,57,48,46,51,48,57,50,56,57,44,51,52,46,57,57,53,54,57,52,93,44,91,45,56,57,46,55,50,52,51,50,52,44,51,52,46,57,57,52,55,57,93,44,91,45,56,57,46,54,52,52,48,53,44,51,52,46,57,57,53,50,57,49,93,44,91,45,56,57,46,54,51,50,55,55,54,44,51,53,46,51,55,53,56,50,52,93,44,91,45,57,48,46,48,52,49,53,54,51,44,51,53,46,51,57,54,54,50,93,44,91,45,57,48,46,48,53,52,51,50,50,44,51,53,46,51,56,57,50,55,55,93,44,91,45,57,48,46,48,55,52,57,57,50,44,51,53,46,51,56,52,49,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,117,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,48,55,53,44,34,98,101,100,115,34,58,52,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,48,52,54,52,55,49,44,51,57,46,55,57,55,54,52,56,93,44,91,45,49,50,49,46,57,55,52,55,57,52,44,51,57,46,54,55,53,52,56,55,93,44,91,45,49,50,49,46,57,57,52,48,50,49,44,51,57,46,53,51,51,57,50,54,93,44,91,45,49,50,49,46,56,53,54,53,51,50,44,51,57,46,53,51,54,57,48,52,93,44,91,45,49,50,49,46,56,57,48,48,49,51,44,51,57,46,51,56,51,56,54,52,93,44,91,45,49,50,49,46,57,48,56,50,54,57,44,51,57,46,51,48,51,56,55,56,93,44,91,45,49,50,49,46,54,50,51,55,54,44,51,57,46,50,57,53,54,50,49,93,44,91,45,49,50,49,46,52,48,55,53,50,55,44,51,57,46,51,51,57,55,53,52,93,44,91,45,49,50,49,46,51,48,53,49,50,50,44,51,57,46,53,49,57,53,56,53,93,44,91,45,49,50,49,46,49,52,57,57,48,55,44,51,57,46,53,50,54,52,52,54,93,44,91,45,49,50,49,46,48,55,54,54,57,53,44,51,57,46,53,57,55,50,54,52,93,44,91,45,49,50,49,46,49,51,54,55,49,53,44,51,57,46,54,50,56,49,54,57,93,44,91,45,49,50,49,46,51,54,49,50,48,54,44,51,57,46,56,53,53,52,55,51,93,44,91,45,49,50,49,46,52,51,54,56,56,54,44,52,48,46,49,53,49,57,48,53,93,44,91,45,49,50,49,46,53,56,54,52,48,55,44,52,48,46,49,48,48,53,50,50,93,44,91,45,49,50,49,46,54,52,54,48,51,50,44,51,57,46,57,56,50,53,50,55,93,44,91,45,49,50,49,46,56,48,52,48,52,49,44,51,57,46,56,56,52,51,52,52,93,44,91,45,49,50,50,46,48,52,52,56,54,53,44,51,57,46,56,56,51,55,55,49,93,44,91,45,49,50,50,46,48,52,54,52,55,49,44,51,57,46,55,57,55,54,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,80,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,49,50,57,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,53,51,56,55,49,44,52,54,46,49,53,56,49,50,93,44,91,45,57,51,46,48,53,53,48,56,49,44,52,53,46,57,56,49,50,51,51,93,44,91,45,57,51,46,49,52,50,56,54,57,44,52,53,46,57,56,49,48,48,53,93,44,91,45,57,51,46,49,52,49,55,57,51,44,52,53,46,55,51,48,54,53,55,93,44,91,45,57,50,46,56,52,49,48,53,49,44,52,53,46,55,51,48,48,50,52,93,44,91,45,57,50,46,55,49,50,53,48,51,44,52,53,46,56,57,49,55,48,53,93,44,91,45,57,50,46,51,53,48,52,48,55,44,52,54,46,48,49,54,51,54,56,93,44,91,45,57,50,46,50,57,51,55,48,53,44,52,54,46,49,53,55,51,50,49,93,44,91,45,57,50,46,50,57,50,56,54,44,52,54,46,52,49,55,50,50,93,44,91,45,57,51,46,48,53,52,56,52,55,44,52,54,46,52,49,57,50,54,57,93,44,91,45,57,51,46,48,53,51,56,55,49,44,52,54,46,49,53,56,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,97,115,116,114,111,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,53,55,55,44,34,98,101,100,115,34,58,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,57,53,51,57,44,51,48,46,52,49,57,53,54,51,93,44,91,45,57,55,46,52,57,50,52,56,50,44,51,48,46,50,49,48,48,49,49,93,44,91,45,57,55,46,54,52,57,51,55,44,51,48,46,48,54,55,57,52,52,93,44,91,45,57,55,46,51,49,53,56,50,51,44,50,57,46,55,56,54,53,52,49,93,44,91,45,57,55,46,48,50,52,52,54,49,44,51,48,46,48,53,49,52,51,53,93,44,91,45,57,55,46,48,56,49,56,51,52,44,51,48,46,50,53,57,51,53,55,93,44,91,45,57,55,46,51,51,52,52,54,51,44,51,48,46,52,48,50,56,52,51,93,44,91,45,57,55,46,51,54,57,53,51,57,44,51,48,46,52,49,57,53,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,75,108,105,99,107,105,116,97,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,57,54,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,56,54,53,56,50,57,44,52,54,46,48,52,48,56,53,56,93,44,91,45,49,50,48,46,56,48,49,50,57,53,44,52,54,46,48,52,49,48,49,52,93,44,91,45,49,50,49,46,53,50,50,51,50,49,44,52,54,46,48,52,52,48,48,54,93,44,91,45,49,50,49,46,54,49,50,50,51,50,44,52,54,46,48,52,52,48,57,51,93,44,91,45,49,50,49,46,54,48,57,50,52,54,44,52,53,46,55,56,50,53,49,57,93,44,91,45,49,50,49,46,53,50,51,54,56,49,44,52,53,46,55,50,52,57,51,93,44,91,45,49,50,49,46,52,52,49,50,50,57,44,52,53,46,54,57,55,50,56,93,44,91,45,49,50,49,46,51,51,55,55,49,50,44,52,53,46,55,48,52,56,51,57,93,44,91,45,49,50,49,46,48,56,52,56,54,51,44,52,53,46,54,52,55,57,51,50,93,44,91,45,49,50,48,46,57,49,53,56,53,44,52,53,46,54,52,49,50,93,44,91,45,49,50,48,46,54,53,51,53,48,51,44,52,53,46,55,51,55,49,56,49,93,44,91,45,49,50,48,46,53,48,53,55,52,51,44,52,53,46,54,57,57,57,52,57,93,44,91,45,49,50,48,46,50,49,48,55,55,52,44,52,53,46,55,50,53,57,49,53,93,44,91,45,49,49,57,46,57,57,57,53,48,49,44,52,53,46,56,49,50,53,49,55,93,44,91,45,49,49,57,46,56,54,56,51,49,50,44,52,53,46,56,51,54,49,57,56,93,44,91,45,49,49,57,46,56,54,53,56,50,57,44,52,54,46,48,52,48,56,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,117,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,55,51,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,48,48,56,52,56,53,44,52,56,46,56,51,49,50,49,56,93,44,91,45,49,50,51,46,48,48,56,52,56,54,44,52,56,46,55,54,55,48,57,57,93,44,91,45,49,50,51,46,50,54,55,56,55,55,44,52,56,46,54,57,51,57,57,51,93,44,91,45,49,50,51,46,50,49,56,57,50,57,44,52,56,46,53,52,56,55,48,56,93,44,91,45,49,50,51,46,49,49,53,49,51,56,44,52,56,46,52,50,50,56,51,93,44,91,45,49,50,51,46,50,52,55,57,49,57,44,52,56,46,50,56,52,53,53,56,93,44,91,45,49,50,50,46,57,53,50,51,56,54,44,52,56,46,51,52,57,55,48,54,93,44,91,45,49,50,50,46,56,54,51,48,55,56,44,52,56,46,51,55,48,51,54,49,93,44,91,45,49,50,50,46,55,51,53,50,51,49,44,52,56,46,52,48,53,57,51,50,93,44,91,45,49,50,50,46,55,54,52,52,48,52,44,52,56,46,54,48,48,53,55,55,93,44,91,45,49,50,50,46,55,49,51,55,48,52,44,52,56,46,54,52,53,49,51,93,44,91,45,49,50,50,46,56,49,50,51,52,44,52,56,46,55,55,49,56,53,93,44,91,45,49,50,51,46,48,48,56,52,56,53,44,52,56,46,56,51,49,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,57,55,56,54,44,34,98,101,100,115,34,58,49,50,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,52,53,50,48,52,44,52,52,46,53,56,52,55,52,54,93,44,91,45,56,56,46,49,57,48,52,54,53,44,52,52,46,53,56,54,55,57,57,93,44,91,45,56,56,46,49,57,50,54,49,49,44,52,52,46,50,52,49,57,52,55,93,44,91,45,56,56,46,48,52,51,50,52,44,52,52,46,50,52,49,48,49,56,93,44,91,45,56,55,46,56,56,56,48,56,55,44,52,52,46,50,52,48,52,54,49,93,44,91,45,56,55,46,55,54,54,48,50,54,44,52,52,46,51,50,55,49,56,52,93,44,91,45,56,55,46,55,53,56,48,52,56,44,52,52,46,54,55,55,48,53,52,93,44,91,45,56,55,46,55,54,50,51,51,57,44,52,52,46,54,55,55,48,49,53,93,44,91,45,56,56,46,50,52,50,54,56,55,44,52,52,46,54,55,57,54,51,49,93,44,91,45,56,56,46,50,52,53,50,48,52,44,52,52,46,53,56,52,55,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,53,34,44,34,78,65,77,69,34,58,34,87,105,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,56,48,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,54,48,56,55,54,44,51,55,46,55,51,52,51,48,52,93,44,91,45,57,53,46,57,54,49,48,48,50,44,51,55,46,54,48,51,55,54,49,93,44,91,45,57,53,46,57,54,49,54,48,53,44,51,55,46,51,56,54,54,51,54,93,44,91,45,57,53,46,53,50,53,53,54,44,51,55,46,51,56,51,57,55,57,93,44,91,45,57,53,46,53,50,53,52,57,57,44,51,55,46,55,51,50,55,53,57,93,44,91,45,57,53,46,57,54,48,56,55,54,44,51,55,46,55,51,52,51,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,78,97,116,99,104,105,116,111,99,104,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,57,54,51,44,34,98,101,100,115,34,58,49,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,52,49,49,55,49,44,51,49,46,56,52,53,50,51,51,93,44,91,45,57,51,46,52,52,49,55,52,51,44,51,49,46,55,49,52,52,56,53,93,44,91,45,57,51,46,51,51,56,57,55,50,44,51,49,46,55,49,52,50,53,57,93,44,91,45,57,51,46,51,51,55,52,53,54,44,51,49,46,53,51,56,49,49,93,44,91,45,57,51,46,50,51,54,54,54,50,44,51,49,46,53,51,56,51,51,57,93,44,91,45,57,51,46,50,51,54,49,48,52,44,51,49,46,51,54,52,53,48,55,93,44,91,45,57,50,46,57,56,49,52,54,52,44,51,49,46,51,52,54,54,52,52,93,44,91,45,57,50,46,57,49,51,48,49,57,44,51,49,46,51,54,56,50,51,54,93,44,91,45,57,50,46,55,49,56,57,56,51,44,51,49,46,53,49,55,53,57,52,93,44,91,45,57,50,46,56,48,54,50,48,54,44,51,49,46,53,57,56,53,52,56,93,44,91,45,57,50,46,57,48,56,51,49,51,44,51,49,46,54,50,53,49,54,57,93,44,91,45,57,50,46,57,55,51,53,50,57,44,51,49,46,55,48,56,57,50,50,93,44,91,45,57,50,46,57,52,50,50,52,53,44,51,49,46,56,53,52,50,54,56,93,44,91,45,57,50,46,56,56,50,57,57,56,44,51,49,46,57,51,57,57,55,93,44,91,45,57,50,46,57,51,57,48,56,44,51,50,46,49,52,55,57,52,50,93,44,91,45,57,51,46,49,56,55,49,54,50,44,51,50,46,49,52,56,52,49,50,93,44,91,45,57,51,46,49,51,54,49,50,55,44,51,50,46,48,53,54,50,50,52,93,44,91,45,57,51,46,50,51,56,52,55,44,51,49,46,57,55,50,55,56,49,93,44,91,45,57,51,46,51,53,53,52,53,50,44,51,49,46,57,51,50,50,50,50,93,44,91,45,57,51,46,52,52,49,49,55,49,44,51,49,46,56,52,53,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,84,101,114,114,101,98,111,110,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,53,56,55,44,34,98,101,100,115,34,58,53,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,48,57,51,56,44,50,56,46,57,57,53,51,52,93,44,91,45,57,48,46,52,48,57,52,49,51,44,50,57,46,50,51,57,55,51,56,93,44,91,45,57,48,46,51,56,53,53,51,57,44,50,57,46,51,54,55,55,52,57,93,44,91,45,57,48,46,54,49,57,51,48,57,44,50,57,46,53,57,56,48,57,50,93,44,91,45,57,48,46,55,54,54,56,52,57,44,50,57,46,54,57,53,52,55,55,93,44,91,45,57,49,46,48,48,54,55,52,51,44,50,57,46,55,49,52,55,55,49,93,44,91,45,57,49,46,48,56,50,54,48,50,44,50,57,46,54,50,54,51,54,56,93,44,91,45,57,49,46,50,54,48,54,54,49,44,50,57,46,53,52,52,53,49,93,44,91,45,57,49,46,50,49,50,49,53,55,44,50,57,46,52,50,51,52,50,57,93,44,91,45,57,49,46,51,53,52,50,55,50,44,50,57,46,50,51,57,54,48,54,93,44,91,45,57,49,46,50,57,50,54,56,49,44,50,57,46,49,57,54,49,55,55,93,44,91,45,57,49,46,48,48,54,48,53,52,44,50,57,46,49,49,57,57,57,52,93,44,91,45,57,49,46,48,48,56,55,53,57,44,50,57,46,48,50,54,57,48,50,93,44,91,45,57,48,46,57,48,55,48,56,44,50,56,46,57,57,49,49,51,50,93,44,91,45,57,48,46,55,50,48,55,54,53,44,50,56,46,57,57,50,54,51,93,44,91,45,57,48,46,53,53,50,53,52,55,44,50,57,46,48,51,54,56,48,54,93,44,91,45,57,48,46,52,48,57,51,56,44,50,56,46,57,57,53,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,73,114,119,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,54,56,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,48,48,55,48,50,44,51,49,46,53,57,51,57,57,93,44,91,45,56,51,46,51,51,56,55,50,56,44,51,49,46,52,55,53,57,57,49,93,44,91,45,56,51,46,49,52,53,53,56,55,44,51,49,46,52,55,50,50,55,54,93,44,91,45,56,50,46,57,57,56,51,54,44,51,49,46,54,55,51,49,54,52,93,44,91,45,56,51,46,51,50,53,54,49,55,44,51,49,46,54,56,48,54,48,51,93,44,91,45,56,51,46,51,50,53,50,57,54,44,51,49,46,55,53,54,53,56,52,93,44,91,45,56,51,46,52,53,51,54,51,52,44,51,49,46,55,53,55,56,54,49,93,44,91,45,56,51,46,53,48,48,55,48,50,44,51,49,46,53,57,51,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,32,83,108,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,57,55,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,49,46,48,48,50,54,57,52,44,54,56,46,52,57,56,51,54,52,93,44,91,45,49,52,49,46,48,48,50,55,56,50,44,54,57,46,55,48,51,54,52,56,93,44,91,45,49,52,49,46,51,55,55,56,57,54,44,54,57,46,55,52,52,49,52,55,93,44,91,45,49,52,49,46,53,57,49,52,53,51,44,54,57,46,56,49,52,53,56,50,93,44,91,45,49,52,50,46,48,55,57,48,56,55,44,54,57,46,57,48,56,53,48,50,93,44,91,45,49,52,50,46,55,48,54,50,57,53,44,55,48,46,48,56,56,49,57,54,93,44,91,45,49,52,51,46,50,50,54,52,51,51,44,55,48,46,50,48,49,57,57,56,93,44,91,45,49,52,51,46,57,52,48,53,56,53,44,55,48,46,49,54,57,54,56,53,93,44,91,45,49,52,52,46,53,50,57,49,48,52,44,55,48,46,48,55,57,48,54,49,93,44,91,45,49,52,52,46,54,56,49,52,54,56,44,55,48,46,48,49,53,55,55,51,93,44,91,45,49,52,53,46,48,54,52,57,56,51,44,55,48,46,48,56,55,54,49,49,93,44,91,45,49,52,53,46,50,55,57,51,54,44,55,48,46,48,56,56,57,53,57,93,44,91,45,49,52,53,46,57,56,49,55,56,49,44,55,48,46,50,52,50,51,48,55,93,44,91,45,49,52,54,46,51,55,55,57,49,56,44,55,48,46,50,56,51,55,53,93,44,91,45,49,52,54,46,55,48,56,57,54,51,44,55,48,46,50,56,50,52,51,93,44,91,45,49,52,55,46,51,55,50,53,49,56,44,55,48,46,52,51,48,53,51,57,93,44,91,45,49,52,55,46,55,55,57,52,51,54,44,55,48,46,52,55,49,56,54,57,93,44,91,45,49,52,56,46,48,48,51,53,48,50,44,55,48,46,53,52,53,53,55,57,93,44,91,45,49,52,56,46,52,50,49,51,48,53,44,55,48,46,53,51,50,56,54,52,93,44,91,45,49,52,56,46,53,49,53,52,55,57,44,55,48,46,52,55,55,52,55,53,93,44,91,45,49,52,57,46,48,57,48,52,55,54,44,55,48,46,53,54,53,52,50,93,44,91,45,49,52,57,46,54,55,57,56,55,53,44,55,48,46,54,50,49,52,57,53,93,44,91,45,49,53,48,46,51,52,53,50,52,44,55,48,46,53,53,51,50,51,50,93,44,91,45,49,53,48,46,55,57,53,49,53,50,44,55,48,46,53,52,56,51,53,57,93,44,91,45,49,53,49,46,51,49,52,57,55,55,44,55,48,46,52,54,51,52,50,54,93,44,91,45,49,53,49,46,53,52,56,56,57,49,44,55,48,46,52,57,49,48,56,53,93,44,91,45,49,53,49,46,54,49,50,55,52,44,55,48,46,53,57,51,54,48,52,93,44,91,45,49,53,50,46,49,53,49,56,53,49,44,55,48,46,56,55,53,49,51,49,93,44,91,45,49,53,50,46,53,48,57,55,53,55,44,55,48,46,57,51,52,55,50,54,93,44,91,45,49,53,51,46,50,55,52,51,49,44,55,48,46,57,55,48,57,53,55,93,44,91,45,49,53,51,46,56,57,57,49,55,53,44,55,48,46,57,51,54,50,49,56,93,44,91,45,49,53,52,46,52,51,55,54,55,53,44,55,49,46,48,50,51,53,53,50,93,44,91,45,49,53,52,46,56,50,49,51,49,55,44,55,49,46,49,53,56,57,54,49,93,44,91,45,49,53,53,46,52,53,56,56,54,53,44,55,49,46,50,54,56,53,57,93,44,91,45,49,53,53,46,55,53,54,50,49,53,44,55,49,46,50,56,51,51,56,49,93,44,91,45,49,53,53,46,57,50,54,52,50,56,44,55,49,46,51,53,55,54,56,53,93,44,91,45,49,53,54,46,52,48,48,54,50,54,44,55,49,46,52,51,53,52,48,55,93,44,91,45,49,53,54,46,53,56,50,50,53,50,44,55,49,46,52,50,55,54,55,49,93,44,91,45,49,53,54,46,57,52,48,56,51,44,55,49,46,51,49,49,50,48,52,93,44,91,45,49,53,55,46,53,51,50,52,50,50,44,55,49,46,48,48,55,53,53,52,93,44,91,45,49,53,56,46,49,55,49,52,54,51,44,55,48,46,56,55,49,48,52,55,93,44,91,45,49,53,56,46,53,53,50,55,50,51,44,55,48,46,57,48,50,56,50,56,93,44,91,45,49,53,56,46,55,51,51,57,57,56,44,55,48,46,57,54,51,49,49,57,93,44,91,45,49,53,57,46,50,51,56,52,52,44,55,48,46,57,50,48,50,56,49,93,44,91,45,49,53,57,46,55,53,53,52,54,55,44,55,48,46,56,51,48,53,50,54,93,44,91,45,49,54,48,46,52,49,52,50,49,55,44,55,48,46,53,54,49,50,57,56,93,44,91,45,49,54,48,46,57,48,55,56,54,49,44,55,48,46,52,49,53,55,52,50,93,44,91,45,49,54,49,46,51,49,53,49,51,52,44,55,48,46,51,52,55,50,53,54,93,44,91,45,49,54,49,46,57,52,56,54,53,55,44,55,48,46,51,55,52,55,52,50,93,44,91,45,49,54,50,46,52,54,53,50,50,49,44,55,48,46,50,49,55,50,52,51,93,44,91,45,49,54,50,46,56,49,56,56,49,55,44,54,57,46,57,57,57,48,50,56,93,44,91,45,49,54,51,46,49,51,51,53,54,49,44,54,57,46,56,51,56,55,48,50,93,44,91,45,49,54,51,46,50,56,55,55,55,50,44,54,57,46,54,51,50,51,56,52,93,44,91,45,49,54,51,46,50,56,57,53,56,57,44,54,57,46,52,51,48,51,53,55,93,44,91,45,49,54,51,46,51,56,48,53,56,57,44,54,57,46,51,50,48,50,49,57,93,44,91,45,49,54,51,46,54,53,48,55,57,56,44,54,57,46,49,54,56,54,57,50,93,44,91,45,49,54,52,46,48,50,48,51,54,53,44,54,57,46,48,51,51,49,53,93,44,91,45,49,54,52,46,50,55,57,51,55,57,44,54,56,46,57,55,57,54,49,55,93,44,91,45,49,54,53,46,51,53,55,48,52,56,44,54,56,46,57,48,56,57,51,57,93,44,91,45,49,54,54,46,50,48,48,49,53,49,44,54,56,46,57,51,51,56,50,51,93,44,91,45,49,54,54,46,51,52,55,52,50,56,44,54,56,46,57,48,48,51,56,54,93,44,91,45,49,54,54,46,51,54,55,54,54,52,44,54,56,46,53,55,52,57,57,52,93,44,91,45,49,54,54,46,53,48,50,56,55,50,44,54,56,46,52,53,54,49,48,57,93,44,91,45,49,54,54,46,56,52,57,57,56,49,44,54,56,46,52,48,49,54,52,52,93,44,91,45,49,54,54,46,57,52,50,48,52,49,44,54,56,46,51,48,50,53,57,52,93,44,91,45,49,54,54,46,54,53,49,57,56,51,44,54,56,46,50,56,56,51,49,56,93,44,91,45,49,54,54,46,50,56,53,51,44,54,56,46,50,50,52,51,54,55,93,44,91,45,49,54,53,46,57,54,54,48,52,50,44,54,56,46,48,55,50,52,57,50,93,44,91,45,49,54,53,46,53,57,54,48,52,54,44,54,56,46,48,51,52,55,50,55,93,44,91,45,49,54,52,46,52,57,57,52,51,55,44,54,56,46,48,51,52,55,52,56,93,44,91,45,49,54,52,46,52,57,57,52,54,51,44,54,56,46,50,48,55,56,57,93,44,91,45,49,54,50,46,55,50,50,49,57,44,54,56,46,50,48,55,57,50,54,93,44,91,45,49,54,50,46,55,50,50,50,48,50,44,54,56,46,50,57,52,52,57,54,93,44,91,45,49,54,50,46,48,50,51,50,55,51,44,54,56,46,50,57,52,53,49,49,93,44,91,45,49,54,50,46,48,50,51,50,54,49,44,54,56,46,50,48,55,57,52,93,44,91,45,49,54,49,46,53,53,55,51,50,56,44,54,56,46,50,48,55,57,52,57,93,44,91,45,49,54,49,46,53,53,55,51,50,44,54,56,46,50,57,52,53,50,49,93,44,91,45,49,54,49,46,48,57,49,51,54,52,44,54,56,46,50,57,52,53,51,50,93,44,91,45,49,54,49,46,48,57,49,51,53,49,44,54,56,46,50,48,55,57,54,49,93,44,91,45,49,54,48,46,49,53,57,52,52,44,54,56,46,50,48,55,57,56,50,93,44,91,45,49,54,48,46,49,53,57,52,53,50,44,54,56,46,50,57,52,53,53,51,93,44,91,45,49,53,57,46,54,57,51,52,56,55,44,54,56,46,50,57,52,53,54,52,93,44,91,45,49,53,57,46,54,57,51,52,55,55,44,54,56,46,50,48,55,57,57,50,93,44,91,45,49,53,56,46,52,53,55,56,51,54,44,54,56,46,50,48,56,48,49,54,93,44,91,45,49,53,55,46,49,53,52,57,50,52,44,54,56,46,50,48,56,48,53,52,93,44,91,45,49,53,55,46,49,53,52,57,49,44,54,56,46,49,50,49,52,56,51,93,44,91,45,49,53,54,46,50,51,54,56,51,49,44,54,56,46,49,50,49,52,57,56,93,44,91,45,49,53,54,46,50,51,54,56,49,55,44,54,56,46,48,51,52,57,50,54,93,44,91,45,49,53,53,46,51,49,56,55,52,56,44,54,56,46,48,51,52,57,52,50,93,44,91,45,49,53,53,46,51,49,56,55,52,52,44,54,56,46,48,48,48,48,51,50,93,44,91,45,49,53,51,46,52,48,52,49,53,50,44,54,56,93,44,91,45,49,53,49,46,57,48,48,50,55,54,44,54,56,46,48,48,48,48,48,55,93,44,91,45,49,53,48,46,56,57,48,48,50,56,44,54,56,46,48,48,48,48,48,52,93,44,91,45,49,52,57,46,51,50,53,52,51,44,54,55,46,57,57,57,57,57,57,93,44,91,45,49,52,55,46,55,53,51,49,49,55,44,54,55,46,57,57,57,57,56,56,93,44,91,45,49,52,54,44,54,56,93,44,91,45,49,52,54,44,54,56,46,53,93,44,91,45,49,52,51,46,53,50,56,56,50,51,44,54,56,46,53,48,48,48,50,49,93,44,91,45,49,52,49,46,48,48,50,54,57,52,44,54,56,46,52,57,56,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,114,101,110,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,54,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,51,57,55,55,44,52,52,46,49,54,49,55,56,54,93,44,91,45,56,52,46,49,54,54,49,48,55,44,52,52,46,49,54,49,55,56,56,93,44,91,45,56,52,46,49,54,54,51,55,55,44,52,51,46,57,57,54,57,48,49,93,44,91,45,56,52,46,48,52,52,56,52,51,44,52,51,46,57,49,49,49,52,54,93,44,91,45,56,51,46,57,48,55,54,48,56,44,52,51,46,57,49,48,52,49,53,93,44,91,45,56,51,46,55,48,56,53,50,53,44,52,51,46,56,51,51,57,52,56,93,44,91,45,56,51,46,49,56,53,50,56,44,52,52,46,49,54,56,52,48,52,93,44,91,45,56,51,46,56,56,51,57,55,55,44,52,52,46,49,54,49,55,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,53,52,49,44,34,98,101,100,115,34,58,49,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,49,56,55,56,55,44,52,48,46,56,49,51,53,52,52,93,44,91,45,57,49,46,55,49,54,55,54,57,44,52,48,46,53,57,56,53,51,93,44,91,45,57,49,46,52,56,51,49,53,51,44,52,48,46,51,56,50,52,57,50,93,44,91,45,57,49,46,52,49,57,52,50,50,44,52,48,46,51,55,56,50,54,52,93,44,91,45,57,49,46,51,55,53,55,49,50,44,52,48,46,51,57,49,57,50,53,93,44,91,45,57,49,46,51,53,57,56,55,51,44,52,48,46,54,48,49,56,48,53,93,44,91,45,57,49,46,49,56,53,50,57,53,44,52,48,46,54,51,55,56,48,51,93,44,91,45,57,49,46,49,49,50,52,54,55,44,52,48,46,54,57,54,51,48,49,93,44,91,45,57,49,46,52,48,57,52,53,51,44,52,48,46,56,49,50,57,48,53,93,44,91,45,57,49,46,55,49,56,55,56,55,44,52,48,46,56,49,51,53,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,79,115,98,111,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,48,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,52,52,51,57,56,44,51,57,46,53,54,56,48,51,53,93,44,91,45,57,57,46,48,52,55,54,56,55,44,51,57,46,49,51,51,48,49,52,93,44,91,45,57,57,46,48,51,55,53,44,51,57,46,49,51,51,49,50,49,93,44,91,45,57,56,46,52,56,57,57,57,55,44,51,57,46,49,51,50,54,57,55,93,44,91,45,57,56,46,52,57,48,49,52,57,44,51,57,46,50,49,57,55,56,93,44,91,45,57,56,46,52,56,55,51,56,52,44,51,57,46,53,54,55,52,57,50,93,44,91,45,57,56,46,53,48,53,50,54,54,44,51,57,46,53,54,55,54,48,51,93,44,91,45,57,57,46,48,52,52,51,57,56,44,51,57,46,53,54,56,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,69,109,109,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,48,51,57,44,34,98,101,100,115,34,58,50,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,51,57,54,49,56,44,52,53,46,56,55,48,55,52,93,44,91,45,56,53,46,50,50,49,51,57,52,44,52,53,46,55,56,50,56,52,51,93,44,91,45,56,53,46,51,48,55,53,56,52,44,52,53,46,54,50,53,48,48,54,93,44,91,45,56,53,46,50,56,51,50,51,56,44,52,53,46,53,53,48,50,48,57,93,44,91,45,56,52,46,57,54,52,55,56,55,44,52,53,46,50,57,49,54,48,49,93,44,91,45,56,52,46,55,51,50,54,56,55,44,52,53,46,50,56,57,51,56,50,93,44,91,45,56,52,46,55,51,50,53,57,53,44,52,53,46,56,49,48,51,51,93,44,91,45,56,53,46,50,51,57,54,49,56,44,52,53,46,56,55,48,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,70,114,101,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,49,51,52,54,53,44,52,48,46,57,48,49,54,57,51,93,44,91,45,57,53,46,56,51,52,49,50,44,52,48,46,55,56,51,55,56,51,93,44,91,45,57,53,46,56,56,49,53,50,57,44,52,48,46,55,53,48,54,49,49,93,44,91,45,57,53,46,55,54,53,54,52,53,44,52,48,46,53,56,53,50,48,56,93,44,91,45,57,53,46,51,55,51,57,50,51,44,52,48,46,53,56,48,53,48,51,93,44,91,45,57,53,46,51,56,52,57,54,52,44,52,48,46,57,48,49,53,53,93,44,91,45,57,53,46,56,49,51,52,54,53,44,52,48,46,57,48,49,54,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,48,54,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,57,46,53,48,54,51,56,50,44,52,52,46,51,52,50,56,55,93,44,91,45,54,57,46,54,53,48,49,55,49,44,52,52,46,50,55,57,54,50,53,93,44,91,45,54,57,46,54,53,54,55,52,50,44,52,52,46,49,50,50,51,57,50,93,44,91,45,54,57,46,55,53,56,50,48,56,44,52,52,46,49,51,57,51,51,52,93,44,91,45,54,57,46,56,49,51,53,52,57,44,52,52,46,48,50,54,48,49,49,93,44,91,45,54,57,46,55,48,48,48,57,55,44,52,52,46,48,48,54,54,56,53,93,44,91,45,54,57,46,54,54,52,55,52,53,44,52,51,46,55,49,49,55,52,56,93,44,91,45,54,57,46,53,48,49,54,49,55,44,52,51,46,55,55,57,54,56,54,93,44,91,45,54,57,46,50,57,55,56,53,53,44,52,51,46,55,48,55,54,57,52,93,44,91,45,54,57,46,50,51,51,52,56,44,52,51,46,55,55,56,48,48,50,93,44,91,45,54,57,46,51,57,55,55,51,56,44,52,51,46,56,55,49,56,57,93,44,91,45,54,57,46,51,54,51,57,57,54,44,52,52,46,48,49,50,56,55,51,93,44,91,45,54,57,46,50,56,50,48,50,55,44,52,52,46,48,54,52,53,50,51,93,44,91,45,54,57,46,52,48,57,54,51,53,44,52,52,46,51,50,55,57,57,56,93,44,91,45,54,57,46,53,48,54,51,56,50,44,52,52,46,51,52,50,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,83,101,110,101,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,54,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,54,51,57,50,54,44,52,51,46,48,49,51,49,53,55,93,44,91,45,55,54,46,57,55,49,51,57,50,44,52,50,46,55,54,52,50,50,51,93,44,91,45,55,54,46,56,57,53,51,52,57,44,52,50,46,54,53,54,50,53,53,93,44,91,45,55,54,46,56,57,53,53,57,54,44,52,50,46,53,52,49,53,51,55,93,44,91,45,55,54,46,54,57,54,54,53,53,44,52,50,46,53,52,54,55,57,93,44,91,45,55,54,46,54,54,54,53,52,51,44,52,50,46,54,50,51,52,53,55,93,44,91,45,55,54,46,55,51,51,52,53,52,44,52,50,46,55,50,55,56,57,53,93,44,91,45,55,54,46,55,49,51,56,48,54,44,52,51,46,48,50,52,48,51,53,93,44,91,45,55,54,46,57,54,51,57,50,54,44,52,51,46,48,49,51,49,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,76,97,117,114,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,49,56,48,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,56,57,48,55,54,44,51,55,46,49,53,49,55,52,93,44,91,45,56,52,46,51,53,56,48,50,52,44,51,54,46,57,53,57,52,93,44,91,45,56,52,46,50,57,55,52,49,54,44,51,54,46,57,52,53,57,51,49,93,44,91,45,56,52,46,48,57,49,56,53,51,44,51,54,46,57,53,53,57,57,50,93,44,91,45,56,51,46,57,53,57,51,56,53,44,51,54,46,57,55,55,49,50,56,93,44,91,45,56,51,46,56,55,49,51,49,53,44,51,55,46,48,53,52,57,49,57,93,44,91,45,56,51,46,57,54,56,57,57,44,51,55,46,49,55,52,55,57,52,93,44,91,45,56,51,46,57,52,51,55,49,56,44,51,55,46,50,53,48,53,53,49,93,44,91,45,56,52,46,49,51,55,56,57,56,44,51,55,46,51,49,57,55,53,57,93,44,91,45,56,52,46,50,49,54,50,52,49,44,51,55,46,50,56,48,50,53,54,93,44,91,45,56,52,46,50,56,57,48,55,54,44,51,55,46,49,53,49,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,101,105,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,50,51,56,53,51,44,51,53,46,55,53,50,56,57,54,93,44,91,45,56,52,46,55,56,50,51,54,54,44,51,53,46,53,57,52,55,57,57,93,44,91,45,56,52,46,57,49,53,48,52,57,44,51,53,46,52,52,48,55,55,49,93,44,91,45,56,53,46,48,49,54,51,52,51,44,51,53,46,52,48,57,50,56,56,93,44,91,45,56,52,46,57,52,54,51,51,57,44,51,53,46,50,56,55,55,49,55,93,44,91,45,56,52,46,56,54,48,49,54,52,44,51,53,46,51,53,48,48,55,52,93,44,91,45,56,52,46,56,48,53,53,52,52,44,51,53,46,52,52,56,53,55,49,93,44,91,45,56,52,46,54,49,57,56,54,53,44,51,53,46,54,52,52,54,53,49,93,44,91,45,56,52,46,55,50,51,56,53,51,44,51,53,46,55,53,50,56,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,51,34,44,34,78,65,77,69,34,58,34,84,97,110,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,55,50,48,44,34,98,101,100,115,34,58,49,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,48,52,51,53,57,44,51,54,46,56,49,54,56,54,54,93,44,91,45,57,51,46,51,49,53,51,51,50,44,51,54,46,52,57,56,49,52,93,44,91,45,57,51,46,50,57,51,52,54,55,44,51,54,46,52,57,56,50,55,54,93,44,91,45,57,50,46,56,53,52,48,52,57,44,51,54,46,52,57,55,56,52,50,93,44,91,45,57,50,46,55,55,50,51,52,51,44,51,54,46,52,57,55,54,54,50,93,44,91,45,57,50,46,55,54,52,56,54,57,44,51,54,46,56,48,54,48,57,55,93,44,91,45,57,50,46,57,48,57,51,51,54,44,51,54,46,56,48,57,49,55,56,93,44,91,45,57,51,46,51,48,52,51,53,57,44,51,54,46,56,49,54,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,57,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,44,91,45,56,52,46,48,48,51,51,54,51,44,51,50,46,53,50,57,57,50,55,93,44,91,45,56,52,46,49,48,52,57,54,54,44,51,50,46,54,55,51,51,56,53,93,44,91,45,56,52,46,50,48,50,54,50,56,44,51,50,46,54,57,48,48,49,56,93,44,91,45,56,52,46,50,56,54,50,52,54,44,51,50,46,55,52,55,54,50,54,93,44,91,45,56,52,46,52,52,52,51,53,51,44,51,50,46,53,54,50,48,56,51,93,44,91,45,56,52,46,51,57,50,51,49,54,44,51,50,46,52,49,52,48,52,54,93,44,91,45,56,52,46,51,54,51,50,49,54,44,51,50,46,51,57,55,54,52,57,93,44,91,45,56,52,46,50,53,52,54,49,51,44,51,50,46,51,55,50,48,53,51,93,44,91,45,56,52,46,49,50,50,51,52,55,44,51,50,46,53,48,53,57,50,49,93,44,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,93,93,44,91,91,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,44,91,45,56,52,46,48,49,56,49,52,55,44,51,50,46,53,48,54,52,48,54,93,44,91,45,56,52,46,48,48,56,52,57,44,51,50,46,53,50,49,55,54,57,93,44,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,56,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,56,51,48,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,56,56,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,50,55,56,53,57,44,51,55,46,51,48,53,57,50,55,93,44,91,45,55,54,46,55,52,49,48,49,55,44,51,55,46,50,54,53,57,56,52,93,44,91,45,55,54,46,54,56,48,49,53,49,44,51,55,46,50,54,53,57,57,55,93,44,91,45,55,54,46,55,50,55,56,53,57,44,51,55,46,51,48,53,57,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,49,53,34,44,34,78,65,77,69,34,58,34,83,99,117,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,51,56,54,54,44,51,50,46,57,55,48,50,50,53,93,44,91,45,49,48,49,46,49,55,51,51,55,56,44,51,50,46,57,54,51,53,57,55,93,44,91,45,49,48,49,46,49,55,52,53,54,50,44,51,50,46,53,50,55,55,48,51,93,44,91,45,49,48,48,46,54,54,48,54,50,54,44,51,50,46,53,50,53,51,49,50,93,44,91,45,49,48,48,46,54,53,53,56,55,44,51,50,46,57,54,51,52,54,57,93,44,91,45,49,48,49,46,48,51,56,54,54,44,51,50,46,57,55,48,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,71,105,108,112,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,54,55,53,55,57,56,44,51,57,46,57,51,50,52,52,53,93,44,91,45,49,48,53,46,54,57,48,51,52,56,44,51,57,46,56,53,49,57,57,54,93,44,91,45,49,48,53,46,53,51,57,51,57,51,44,51,57,46,55,55,50,51,49,93,44,91,45,49,48,53,46,51,57,55,57,52,57,44,51,57,46,55,52,54,48,52,93,44,91,45,49,48,53,46,51,57,55,56,52,57,44,51,57,46,57,49,50,56,56,54,93,44,91,45,49,48,53,46,54,55,53,55,57,56,44,51,57,46,57,51,50,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,99,67,108,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,54,51,52,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,55,49,52,49,52,44,51,53,46,51,51,53,57,52,54,93,44,91,45,57,55,46,54,54,56,48,57,57,44,51,52,46,56,53,53,49,54,52,93,44,91,45,57,54,46,57,51,50,52,51,54,44,51,52,46,56,53,52,52,57,54,93,44,91,45,57,54,46,57,51,48,53,56,54,44,51,52,46,57,54,52,51,54,52,93,44,91,45,57,55,46,48,49,53,57,51,44,51,52,46,57,48,55,51,52,56,93,44,91,45,57,55,46,49,52,50,51,52,57,44,51,52,46,57,50,56,49,55,54,93,44,91,45,57,55,46,51,52,49,53,48,57,44,51,52,46,57,54,52,48,48,49,93,44,91,45,57,55,46,51,53,52,49,57,50,44,51,53,46,48,55,54,54,53,54,93,44,91,45,57,55,46,53,53,52,55,57,44,51,53,46,50,50,52,51,50,57,93,44,91,45,57,55,46,53,53,54,57,56,55,44,51,53,46,50,56,56,52,52,93,44,91,45,57,55,46,54,55,49,52,49,53,44,51,53,46,51,51,55,52,54,53,93,44,91,45,57,55,46,54,55,49,52,49,52,44,51,53,46,51,51,53,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,80,101,110,100,108,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,54,52,57,48,55,53,44,51,56,46,53,57,49,53,49,53,93,44,91,45,55,57,46,53,51,54,56,55,44,51,56,46,53,53,48,57,49,55,93,44,91,45,55,57,46,52,55,54,54,51,56,44,51,56,46,52,53,55,50,50,56,93,44,91,45,55,57,46,51,49,50,50,55,54,44,51,56,46,52,49,49,56,55,54,93,44,91,45,55,57,46,50,50,52,53,56,51,44,51,56,46,52,55,55,53,56,56,93,44,91,45,55,57,46,48,53,55,50,53,51,44,51,56,46,55,54,49,52,49,51,93,44,91,45,55,57,46,49,51,52,50,57,54,44,51,56,46,56,49,51,51,52,93,44,91,45,55,57,46,51,52,57,56,54,55,44,51,56,46,57,53,55,53,48,57,93,44,91,45,55,57,46,52,53,53,52,55,50,44,51,56,46,57,50,57,57,49,93,44,91,45,55,57,46,53,51,57,48,55,53,44,51,56,46,56,52,49,52,49,49,93,44,91,45,55,57,46,53,49,48,48,55,51,44,51,56,46,55,56,48,55,49,50,93,44,91,45,55,57,46,54,50,54,55,55,52,44,51,56,46,54,54,52,50,49,52,93,44,91,45,55,57,46,54,52,57,48,55,53,44,51,56,46,53,57,49,53,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,80,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,55,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,57,52,55,48,52,44,51,56,46,56,50,50,55,57,93,44,91,45,55,56,46,53,52,56,56,50,56,44,51,56,46,55,51,56,54,53,53,93,44,91,45,55,56,46,54,52,49,55,54,57,44,51,56,46,54,48,52,55,49,57,93,44,91,45,55,56,46,54,57,49,51,49,50,44,51,56,46,53,49,48,48,48,56,93,44,91,45,55,56,46,52,56,53,55,52,44,51,56,46,52,50,49,53,55,57,93,44,91,45,55,56,46,52,53,50,56,48,49,44,51,56,46,52,55,53,53,50,55,93,44,91,45,55,56,46,51,51,56,49,55,54,44,51,56,46,54,50,55,51,49,50,93,44,91,45,55,56,46,50,56,52,56,48,53,44,51,56,46,55,53,57,51,49,53,93,44,91,45,55,56,46,51,57,52,55,48,52,44,51,56,46,56,50,50,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,101,32,70,108,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,57,48,57,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,49,51,54,50,57,44,51,53,46,51,50,51,51,52,52,93,44,91,45,57,52,46,56,49,52,50,55,54,44,51,53,46,50,48,50,51,51,49,93,44,91,45,57,52,46,57,50,55,55,55,52,44,51,53,46,50,48,50,54,49,93,44,91,45,57,52,46,57,50,55,56,54,51,44,51,53,46,48,53,56,50,52,54,93,44,91,45,57,53,46,48,53,57,53,49,50,44,51,52,46,56,53,53,48,49,57,93,44,91,45,57,53,46,48,53,57,54,49,54,44,51,52,46,54,56,48,55,51,54,93,44,91,45,57,52,46,57,51,55,53,53,53,44,51,52,46,54,56,48,55,57,50,93,44,91,45,57,52,46,57,51,55,54,48,52,44,51,52,46,53,48,55,50,57,54,93,44,91,45,57,52,46,52,54,49,49,52,57,44,51,52,46,53,48,55,52,53,55,93,44,91,45,57,52,46,52,53,52,53,54,52,44,51,52,46,55,50,56,57,54,50,93,44,91,45,57,52,46,52,52,55,55,55,52,44,51,52,46,57,51,51,57,51,55,93,44,91,45,57,52,46,52,51,53,53,57,44,51,53,46,51,56,54,49,50,50,93,44,91,45,57,52,46,52,57,53,50,53,49,44,51,53,46,51,48,49,50,93,44,91,45,57,52,46,54,54,56,55,57,54,44,51,53,46,50,57,53,48,50,57,93,44,91,45,57,52,46,56,49,51,54,50,57,44,51,53,46,51,50,51,51,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,117,109,109,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,48,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,52,53,48,57,44,51,55,46,56,49,57,49,50,49,93,44,91,45,56,48,46,57,48,53,57,54,49,44,51,55,46,54,57,56,53,57,54,93,44,91,45,56,49,46,48,54,56,55,55,52,44,51,55,46,54,51,57,56,50,51,93,44,91,45,56,49,46,48,57,52,54,51,44,51,55,46,53,56,56,54,53,56,93,44,91,45,56,48,46,56,53,57,52,53,55,44,51,55,46,52,50,57,52,57,49,93,44,91,45,56,48,46,56,53,56,52,54,54,44,51,55,46,52,50,56,51,48,55,93,44,91,45,56,48,46,54,54,51,51,52,56,44,51,55,46,55,51,49,54,57,54,93,44,91,45,56,48,46,56,48,54,51,49,54,44,51,55,46,56,54,56,57,49,53,93,44,91,45,56,48,46,57,52,53,48,57,44,51,55,46,56,49,57,49,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,101,99,107,108,101,110,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,52,51,49,52,44,34,98,101,100,115,34,58,50,54,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,53,48,51,52,57,44,51,53,46,50,48,56,52,49,50,93,44,91,45,56,48,46,54,54,54,52,56,44,51,53,46,50,54,55,57,51,52,93,44,91,45,56,48,46,55,56,52,49,54,55,44,51,53,46,53,48,54,48,49,55,93,44,91,45,56,48,46,57,52,55,51,52,52,44,51,53,46,52,56,56,52,55,51,93,44,91,45,56,48,46,57,53,52,56,54,44,51,53,46,52,48,48,48,55,56,93,44,91,45,56,49,46,48,51,51,57,48,57,44,51,53,46,49,52,56,54,57,93,44,91,45,56,49,46,48,52,49,52,57,54,44,51,53,46,48,52,52,55,49,51,93,44,91,45,56,48,46,57,48,54,51,56,53,44,51,53,46,48,55,54,50,55,55,93,44,91,45,56,48,46,56,52,48,50,55,56,44,51,53,46,48,48,49,54,57,50,93,44,91,45,56,48,46,53,53,48,51,52,57,44,51,53,46,50,48,56,52,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,69,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,51,53,53,53,44,34,98,101,100,115,34,58,51,53,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,50,55,50,48,54,51,44,52,48,46,56,57,55,52,50,55,93,44,91,45,55,52,46,51,55,49,55,51,56,44,52,48,46,55,51,57,54,52,93,44,91,45,55,52,46,49,51,54,55,48,51,44,52,48,46,54,55,52,52,52,52,93,44,91,45,55,52,46,49,52,55,53,50,57,44,52,48,46,55,56,54,52,57,49,93,44,91,45,55,52,46,49,51,48,48,49,54,44,52,48,46,56,49,57,57,51,56,93,44,91,45,55,52,46,50,55,50,48,54,51,44,52,48,46,56,57,55,52,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,76,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,56,54,44,34,98,101,100,115,34,58,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,54,49,57,53,55,44,51,57,46,57,54,55,54,48,54,93,44,91,45,57,51,46,51,54,52,56,48,56,44,51,57,46,55,48,51,56,48,51,93,44,91,45,57,51,46,50,54,54,57,54,56,44,51,57,46,55,48,51,53,54,50,93,44,91,45,57,50,46,56,53,55,57,50,44,51,57,46,54,57,57,57,56,53,93,44,91,45,57,50,46,56,52,55,52,55,55,44,52,48,46,48,51,55,51,48,49,93,44,91,45,57,50,46,56,53,54,49,57,49,44,52,48,46,48,51,55,50,53,51,93,44,91,45,57,51,46,51,54,49,57,53,49,44,52,48,46,48,51,51,48,57,56,93,44,91,45,57,51,46,51,54,49,57,53,55,44,51,57,46,57,54,55,54,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,57,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,53,53,52,56,54,44,51,50,46,50,57,55,53,54,49,93,44,91,45,56,50,46,53,57,55,54,55,49,44,51,50,46,48,49,51,57,55,57,93,44,91,45,56,50,46,53,52,51,54,53,53,44,51,49,46,57,53,56,57,49,52,93,44,91,45,56,50,46,52,56,51,49,51,49,44,51,49,46,57,54,56,57,54,49,93,44,91,45,56,50,46,52,48,57,49,51,44,51,50,46,51,53,51,55,51,56,93,44,91,45,56,50,46,54,53,53,52,56,54,44,51,50,46,50,57,55,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,83,104,101,114,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,57,49,53,56,53,44,52,53,46,54,52,49,50,93,44,91,45,49,50,48,46,56,51,56,55,55,50,44,52,53,46,53,49,53,57,52,54,93,44,91,45,49,50,48,46,56,54,56,53,54,57,44,52,53,46,52,48,49,49,52,54,93,44,91,45,49,50,49,46,48,50,52,50,57,52,44,52,53,46,50,49,57,53,51,49,93,44,91,45,49,50,48,46,56,56,57,51,53,55,44,52,53,46,50,48,50,51,48,53,93,44,91,45,49,50,48,46,55,50,51,53,54,57,44,52,53,46,49,51,48,57,49,49,93,44,91,45,49,50,48,46,53,48,51,55,51,51,44,52,53,46,48,56,51,52,55,55,93,44,91,45,49,50,48,46,53,51,50,48,53,57,44,52,53,46,51,55,49,50,52,57,93,44,91,45,49,50,48,46,52,57,48,51,53,57,44,52,53,46,52,54,56,57,52,57,93,44,91,45,49,50,48,46,51,54,52,57,53,53,44,52,53,46,52,57,55,50,53,93,44,91,45,49,50,48,46,52,49,49,54,57,57,44,52,53,46,53,57,54,48,54,55,93,44,91,45,49,50,48,46,54,53,51,53,48,51,44,52,53,46,55,51,55,49,56,49,93,44,91,45,49,50,48,46,57,49,53,56,53,44,52,53,46,54,52,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,55,54,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,56,48,51,52,44,51,51,46,55,54,49,55,55,52,93,44,91,45,56,51,46,52,48,54,49,56,57,44,51,51,46,54,57,56,51,48,55,93,44,91,45,56,51,46,50,55,55,54,49,49,44,51,51,46,53,50,55,54,51,93,44,91,45,56,51,46,50,55,57,57,51,49,44,51,51,46,52,56,51,52,51,56,93,44,91,45,56,51,46,49,54,52,50,48,55,44,51,51,46,51,53,53,48,51,93,44,91,45,56,51,46,48,49,50,56,53,51,44,51,51,46,52,54,57,49,55,56,93,44,91,45,56,50,46,57,57,53,54,48,50,44,51,51,46,54,57,51,53,56,51,93,44,91,45,56,51,46,49,49,56,55,50,57,44,51,51,46,54,57,56,56,49,56,93,44,91,45,56,51,46,50,56,48,51,52,44,51,51,46,55,54,49,55,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,117,102,102,97,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,50,53,57,53,51,44,52,52,46,49,57,54,53,55,53,93,44,91,45,57,57,46,51,48,48,49,56,44,52,52,46,49,57,52,56,51,93,44,91,45,57,57,46,53,55,54,53,55,49,44,52,52,46,49,57,50,52,50,49,93,44,91,45,57,57,46,53,54,50,53,51,54,44,52,52,46,49,48,49,53,49,57,93,44,91,45,57,57,46,51,53,51,55,50,44,52,51,46,57,57,53,51,50,57,93,44,91,45,57,57,46,51,53,53,56,54,52,44,52,51,46,57,51,52,51,55,49,93,44,91,45,57,56,46,57,50,54,57,57,55,44,52,51,46,57,51,53,49,52,51,93,44,91,45,57,56,46,57,50,53,57,53,51,44,52,52,46,49,57,54,53,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,101,108,108,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,51,51,56,57,55,44,52,51,46,55,49,54,57,52,50,93,44,91,45,49,48,48,46,53,53,52,54,56,55,44,52,51,46,55,51,55,50,52,55,93,44,91,45,49,48,48,46,54,55,57,51,50,50,44,52,51,46,55,49,49,54,51,54,93,44,91,45,49,48,48,46,57,56,55,48,50,55,44,52,51,46,56,52,57,49,51,50,93,44,91,45,49,48,49,46,48,54,52,51,50,54,44,52,51,46,56,52,49,48,57,93,44,91,45,49,48,49,46,50,50,56,51,51,49,44,52,51,46,55,57,53,48,52,57,93,44,91,45,49,48,49,46,50,50,56,50,51,52,44,52,51,46,51,56,57,49,56,53,93,44,91,45,49,48,48,46,50,49,52,50,50,49,44,52,51,46,51,57,48,51,50,49,93,44,91,45,49,48,48,46,50,51,48,56,52,53,44,52,51,46,55,49,51,56,53,54,93,44,91,45,49,48,48,46,51,51,56,57,55,44,52,51,46,55,49,54,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,69,99,116,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,51,52,50,44,34,98,101,100,115,34,58,54,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,50,56,55,48,52,56,44,51,50,46,48,56,54,57,57,49,93,44,91,45,49,48,50,46,55,57,57,48,56,54,44,51,50,46,48,56,53,55,57,53,93,44,91,45,49,48,50,46,55,57,56,57,51,57,44,51,49,46,54,53,49,55,56,51,93,44,91,45,49,48,50,46,55,54,55,50,52,54,44,51,49,46,54,53,49,55,49,52,93,44,91,45,49,48,50,46,51,49,56,48,53,44,51,49,46,54,53,49,51,50,55,93,44,91,45,49,48,50,46,50,56,55,51,52,53,44,51,49,46,54,53,49,50,55,54,93,44,91,45,49,48,50,46,50,56,55,48,52,56,44,51,50,46,48,56,54,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,51,34,44,34,78,65,77,69,34,58,34,76,105,109,101,115,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,49,53,44,34,98,101,100,115,34,58,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,51,50,50,49,53,44,51,49,46,55,48,56,56,56,55,93,44,91,45,57,54,46,56,48,49,49,50,51,44,51,49,46,53,50,50,50,54,57,93,44,91,45,57,54,46,53,57,54,56,54,50,44,51,49,46,50,50,48,57,93,44,91,45,57,54,46,51,49,57,49,54,53,44,51,49,46,51,53,55,49,50,57,93,44,91,45,57,54,46,50,51,54,54,50,57,44,51,49,46,52,49,51,51,57,50,93,44,91,45,57,54,46,52,57,54,55,49,51,44,51,49,46,55,57,54,49,57,49,93,44,91,45,57,54,46,55,49,57,49,49,52,44,51,49,46,56,49,52,56,56,55,93,44,91,45,57,54,46,57,51,50,50,49,53,44,51,49,46,55,48,56,56,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,71,114,97,121,115,32,72,97,114,98,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,57,54,55,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,52,50,57,53,53,51,44,52,55,46,53,51,50,57,52,57,93,44,91,45,49,50,52,46,52,50,49,55,50,56,44,52,55,46,51,57,51,50,57,51,93,44,91,45,49,50,52,46,51,48,54,51,54,55,44,52,55,46,50,52,56,48,56,51,93,44,91,45,49,50,52,46,50,53,49,50,57,49,44,52,55,46,48,57,54,54,53,52,93,44,91,45,49,50,52,46,50,51,52,51,57,51,44,52,54,46,56,57,49,49,56,56,93,44,91,45,49,50,52,46,49,55,53,49,51,49,44,52,54,46,55,57,51,55,51,50,93,44,91,45,49,50,51,46,51,55,48,57,53,44,52,54,46,55,57,50,49,50,57,93,44,91,45,49,50,51,46,49,54,48,53,56,56,44,52,54,46,55,57,51,51,56,51,93,44,91,45,49,50,51,46,49,53,56,51,54,52,44,52,54,46,57,57,53,56,55,49,93,44,91,45,49,50,51,46,50,48,49,56,57,49,44,52,55,46,48,56,53,48,53,57,93,44,91,45,49,50,51,46,52,56,56,57,52,51,44,52,55,46,48,56,50,54,52,54,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,53,49,55,55,49,54,93,44,91,45,49,50,52,46,48,52,54,55,52,44,52,55,46,53,49,56,53,50,53,93,44,91,45,49,50,52,46,52,50,57,53,53,51,44,52,55,46,53,51,50,57,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,114,107,101,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,52,57,53,44,34,98,101,100,115,34,58,50,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,50,53,53,55,50,44,51,57,46,52,57,51,50,56,57,93,44,91,45,55,55,46,56,56,57,49,51,53,44,51,57,46,53,57,55,52,53,51,93,44,91,45,55,56,46,48,50,50,49,49,44,51,57,46,54,49,57,54,53,55,93,44,91,45,55,56,46,49,51,56,57,51,55,44,51,57,46,53,57,51,55,57,54,93,44,91,45,55,56,46,50,50,56,55,54,54,44,51,57,46,51,57,49,50,51,51,93,44,91,45,55,56,46,48,51,51,49,57,49,44,51,57,46,50,54,52,54,49,50,93,44,91,45,55,55,46,56,50,53,53,55,50,44,51,57,46,52,57,51,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,86,105,108,108,97,108,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,57,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,50,49,56,57,57,44,49,56,46,49,53,49,57,53,52,93,44,91,45,54,54,46,52,51,48,51,49,52,44,49,56,46,48,56,50,48,53,51,93,44,91,45,54,54,46,52,52,52,53,54,44,49,56,46,49,55,54,54,55,52,93,44,91,45,54,54,46,53,50,49,56,57,57,44,49,56,46,49,53,49,57,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,80,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,52,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,55,56,51,56,51,51,44,52,54,46,49,57,50,54,57,57,93,44,91,45,49,49,48,46,55,57,52,55,55,52,44,52,53,46,53,57,48,54,56,50,93,44,91,45,49,49,48,46,57,49,57,50,50,50,44,52,53,46,53,50,52,56,54,49,93,44,91,45,49,49,48,46,57,49,55,56,57,57,44,52,53,46,51,53,49,50,55,51,93,44,91,45,49,49,49,46,48,51,56,49,54,57,44,52,53,46,51,53,49,51,57,49,93,44,91,45,49,49,49,46,48,52,53,48,54,54,44,52,53,46,48,48,48,57,53,93,44,91,45,49,49,48,46,55,48,52,52,55,54,44,52,52,46,57,57,50,49,55,52,93,44,91,45,49,48,57,46,55,57,56,52,56,51,44,52,53,46,48,48,50,51,51,51,93,44,91,45,49,48,57,46,55,57,56,54,55,51,44,52,53,46,49,54,55,51,51,57,93,44,91,45,49,49,48,46,48,54,52,53,49,56,44,52,53,46,49,55,50,49,50,57,93,44,91,45,49,49,48,46,50,50,56,48,53,50,44,52,53,46,49,55,50,49,50,57,93,44,91,45,49,49,48,46,50,50,48,57,48,56,44,52,53,46,55,56,52,57,55,51,93,44,91,45,49,49,48,46,50,57,50,54,54,50,44,52,53,46,55,56,53,48,53,55,93,44,91,45,49,49,48,46,50,56,49,57,49,54,44,52,54,46,49,56,52,51,57,55,93,44,91,45,49,49,48,46,55,56,51,56,51,51,44,52,54,46,49,57,50,54,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,68,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,55,48,52,55,44,34,98,101,100,115,34,58,49,53,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,56,51,48,57,53,44,51,51,46,52,51,48,52,53,93,44,91,45,57,55,46,51,57,56,52,56,44,51,50,46,57,57,48,56,51,57,93,44,91,45,57,55,46,48,51,50,50,56,55,44,51,50,46,57,56,57,51,50,52,93,44,91,45,57,54,46,56,52,51,57,55,57,44,51,50,46,57,56,55,53,53,52,93,44,91,45,57,54,46,56,51,52,49,49,44,51,51,46,52,48,53,52,57,56,93,44,91,45,57,54,46,57,52,51,56,54,44,51,51,46,52,49,54,52,49,93,44,91,45,57,55,46,51,56,51,48,57,53,44,51,51,46,52,51,48,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,55,49,49,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,55,52,54,56,57,44,51,53,46,49,56,52,48,51,54,93,44,91,45,56,49,46,55,53,53,48,56,51,44,51,52,46,57,51,48,50,56,93,44,91,45,56,49,46,55,49,49,54,57,52,44,51,52,46,57,49,50,53,55,55,93,44,91,45,56,49,46,52,53,55,50,53,55,44,51,52,46,56,51,57,50,56,93,44,91,45,56,49,46,52,56,55,48,49,54,44,51,53,46,48,51,52,56,53,51,93,44,91,45,56,49,46,52,48,56,56,55,54,44,51,53,46,48,52,54,51,50,52,93,44,91,45,56,49,46,51,54,54,54,44,51,53,46,49,54,52,56,56,51,93,44,91,45,56,49,46,55,54,56,49,48,50,44,51,53,46,49,56,48,54,49,49,93,44,91,45,56,49,46,56,55,52,54,56,57,44,51,53,46,49,56,52,48,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,89,97,110,99,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,49,54,55,51,56,44,51,54,46,48,55,50,56,50,55,93,44,91,45,56,50,46,53,48,53,52,50,53,44,51,53,46,57,55,55,52,51,50,93,44,91,45,56,50,46,52,48,56,54,48,50,44,51,53,46,56,49,56,49,55,56,93,44,91,45,56,50,46,50,55,53,51,57,57,44,51,53,46,55,48,52,52,51,56,93,44,91,45,56,50,46,49,51,51,52,56,52,44,51,53,46,56,50,51,51,48,57,93,44,91,45,56,50,46,49,57,49,55,48,53,44,51,53,46,57,57,48,54,51,54,93,44,91,45,56,50,46,51,52,53,50,57,44,51,54,46,48,55,54,52,53,57,93,44,91,45,56,50,46,52,49,54,55,51,56,44,51,54,46,48,55,50,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,56,55,34,44,34,78,65,77,69,34,58,34,82,101,100,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,49,48,52,57,55,44,51,51,46,56,55,55,50,48,52,93,44,91,45,57,53,46,51,48,56,54,51,55,44,51,51,46,51,56,48,54,54,50,93,44,91,45,57,53,46,51,48,54,54,52,44,51,51,46,51,55,56,48,50,55,93,44,91,45,57,53,46,49,50,53,52,53,49,44,51,51,46,51,56,57,52,53,52,93,44,91,45,57,52,46,56,48,56,55,56,51,44,51,51,46,51,54,51,54,51,54,93,44,91,45,57,52,46,55,52,54,57,50,53,44,51,51,46,51,50,56,57,51,56,93,44,91,45,57,52,46,55,52,54,48,57,54,44,51,51,46,55,48,51,48,49,54,93,44,91,45,57,52,46,56,54,48,54,56,55,44,51,51,46,55,52,49,57,52,53,93,44,91,45,57,52,46,57,57,56,48,49,57,44,51,51,46,56,54,48,53,48,52,93,44,91,45,57,53,46,49,53,53,56,56,50,44,51,51,46,57,51,54,53,55,50,93,44,91,45,57,53,46,51,49,48,52,57,55,44,51,51,46,56,55,55,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,49,34,44,34,78,65,77,69,34,58,34,77,97,116,97,103,111,114,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,55,52,51,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,48,57,49,55,56,44,50,56,46,57,54,51,50,57,49,93,44,91,45,57,54,46,51,50,51,53,50,50,44,50,56,46,54,55,53,53,57,55,93,44,91,45,57,54,46,51,57,53,49,57,56,44,50,56,46,50,55,57,55,51,54,93,44,91,45,57,54,46,49,56,50,50,52,50,44,50,56,46,52,53,50,48,51,54,93,44,91,45,57,53,46,55,53,48,50,51,56,44,50,56,46,54,51,56,52,49,57,93,44,91,45,57,53,46,52,57,53,54,53,44,50,56,46,55,54,52,56,51,55,93,44,91,45,57,53,46,54,53,53,51,57,56,44,50,56,46,57,53,49,55,49,49,93,44,91,45,57,53,46,55,54,52,57,51,55,44,50,56,46,57,54,55,51,53,57,93,44,91,45,57,53,46,56,52,49,52,57,57,44,50,57,46,48,57,56,54,50,93,44,91,45,57,53,46,56,55,52,48,50,56,44,50,57,46,50,50,57,55,48,50,93,44,91,45,57,53,46,57,54,53,49,57,54,44,50,57,46,49,52,54,56,54,53,93,44,91,45,57,54,46,51,48,57,49,55,56,44,50,56,46,57,54,51,50,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,83,116,101,118,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,56,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,53,51,48,50,54,44,52,53,46,53,56,53,53,50,54,93,44,91,45,57,54,46,50,52,49,51,50,56,44,52,53,46,52,49,50,54,54,55,93,44,91,45,57,54,46,49,49,55,48,51,54,44,52,53,46,52,49,49,57,57,51,93,44,91,45,57,53,46,55,52,55,52,48,50,44,52,53,46,52,49,50,51,49,51,93,44,91,45,57,53,46,55,53,56,53,48,56,44,52,53,46,55,53,57,57,51,50,93,44,91,45,57,54,46,50,53,52,48,50,50,44,52,53,46,55,53,57,56,50,93,44,91,45,57,54,46,50,53,51,48,50,54,44,52,53,46,53,56,53,53,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,49,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,55,57,57,55,53,44,51,51,46,53,57,57,55,57,50,93,44,91,45,56,50,46,56,53,49,57,53,52,44,51,51,46,52,52,51,53,52,51,93,44,91,45,56,50,46,55,53,53,56,52,54,44,51,51,46,50,53,51,52,52,93,44,91,45,56,50,46,53,53,57,55,53,51,44,51,51,46,51,50,55,50,55,93,44,91,45,56,50,46,52,51,49,57,53,55,44,51,51,46,50,55,52,56,51,93,44,91,45,56,50,46,51,56,51,56,50,57,44,51,51,46,51,49,50,49,48,54,93,44,91,45,56,50,46,53,51,53,55,55,57,44,51,51,46,51,53,55,52,54,93,44,91,45,56,50,46,54,52,57,55,48,53,44,51,51,46,54,48,56,55,54,56,93,44,91,45,56,50,46,54,55,57,57,55,53,44,51,51,46,53,57,57,55,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,72,97,114,100,101,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,53,50,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,57,55,54,50,49,44,51,52,46,50,50,52,51,53,53,93,44,91,45,57,57,46,55,55,50,48,52,51,44,51,52,46,48,57,51,50,56,54,93,44,91,45,57,57,46,53,55,51,49,54,49,44,51,52,46,48,54,51,54,48,56,93,44,91,45,57,57,46,52,55,53,50,57,52,44,51,52,46,48,56,53,54,49,56,93,44,91,45,57,57,46,52,55,53,49,49,53,44,51,52,46,51,57,53,57,51,93,44,91,45,57,57,46,53,54,57,54,57,54,44,51,52,46,52,49,56,52,49,56,93,44,91,45,57,57,46,54,57,52,53,50,56,44,51,52,46,51,55,56,50,49,56,93,44,91,45,57,57,46,56,52,52,53,56,53,44,51,52,46,53,48,54,57,49,53,93,44,91,45,57,57,46,57,57,55,53,48,49,44,51,52,46,53,54,48,53,55,52,93,44,91,45,57,57,46,57,57,55,55,50,44,51,52,46,51,49,49,56,50,57,93,44,91,45,57,57,46,57,57,55,54,50,49,44,51,52,46,50,50,52,51,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,57,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,54,52,49,50,51,44,51,56,46,53,50,48,55,50,56,93,44,91,45,57,48,46,51,52,49,52,52,54,44,51,56,46,51,56,56,50,57,56,93,44,91,45,57,48,46,51,53,56,54,50,56,44,51,56,46,50,50,49,57,56,49,93,44,91,45,57,48,46,50,53,50,54,54,54,44,51,56,46,49,50,55,56,49,50,93,44,91,45,57,48,46,50,48,53,50,48,53,44,51,56,46,48,56,54,57,48,55,93,44,91,45,57,48,46,48,51,53,56,54,55,44,51,56,46,49,51,53,55,51,54,93,44,91,45,57,48,46,48,51,54,51,49,54,44,51,56,46,50,50,51,50,52,54,93,44,91,45,56,57,46,56,57,57,48,52,51,44,51,56,46,50,50,48,55,53,53,93,44,91,45,56,57,46,57,49,51,50,50,55,44,51,56,46,51,48,56,50,54,57,93,44,91,45,57,48,46,48,51,54,49,49,51,44,51,56,46,51,50,51,51,55,55,93,44,91,45,57,48,46,50,54,52,49,50,51,44,51,56,46,53,50,48,55,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,74,101,110,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,52,52,57,55,55,44,51,50,46,56,49,50,55,52,49,93,44,91,45,56,50,46,48,56,50,52,52,44,51,50,46,54,54,51,48,54,49,93,44,91,45,56,50,46,48,48,49,50,51,54,44,51,50,46,54,48,54,57,49,93,44,91,45,56,49,46,56,52,49,48,48,53,44,51,50,46,54,52,57,48,57,51,93,44,91,45,56,49,46,56,54,55,57,51,56,44,51,50,46,54,56,49,49,53,93,44,91,45,56,49,46,55,54,55,53,53,51,44,51,50,46,57,48,57,52,49,49,93,44,91,45,56,49,46,56,53,55,57,56,53,44,51,50,46,57,53,51,56,56,50,93,44,91,45,56,50,46,48,56,49,51,51,55,44,51,50,46,57,49,54,55,55,54,93,44,91,45,56,50,46,49,52,52,57,55,55,44,51,50,46,56,49,50,55,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,71,114,97,121,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,49,55,56,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,57,50,56,49,44,51,55,46,53,54,52,51,54,93,44,91,45,56,54,46,54,54,49,56,56,44,51,55,46,53,52,49,57,51,52,93,44,91,45,56,54,46,54,49,50,48,57,53,44,51,55,46,51,57,53,49,50,51,93,44,91,45,56,54,46,52,54,57,49,50,54,44,51,55,46,51,50,49,48,57,57,93,44,91,45,56,54,46,49,53,55,53,56,57,44,51,55,46,51,51,53,54,52,57,93,44,91,45,56,54,46,48,55,51,54,50,54,44,51,55,46,51,52,56,48,52,53,93,44,91,45,56,54,46,48,52,55,53,57,56,44,51,55,46,52,52,57,57,51,51,93,44,91,45,56,54,46,49,49,52,48,57,53,44,51,55,46,53,54,55,49,51,49,93,44,91,45,56,54,46,50,55,53,50,55,44,51,55,46,53,57,51,53,49,57,93,44,91,45,56,54,46,53,57,50,56,49,44,51,55,46,53,54,52,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,54,51,34,44,34,78,65,77,69,34,58,34,80,97,108,111,32,80,105,110,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,49,55,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,55,53,54,49,54,44,51,50,46,57,53,52,51,52,57,93,44,91,45,57,56,46,53,55,54,50,53,54,44,51,50,46,53,49,53,49,54,51,93,44,91,45,57,56,46,52,55,53,49,55,55,44,51,50,46,53,49,51,48,51,57,93,44,91,45,57,56,46,48,54,56,53,52,53,44,51,50,46,53,49,49,54,50,54,93,44,91,45,57,56,46,48,54,54,56,51,54,44,51,50,46,53,53,56,56,50,50,93,44,91,45,57,56,46,48,53,54,48,57,52,44,51,51,46,48,48,51,51,51,50,93,44,91,45,57,56,46,52,50,54,53,53,51,44,51,51,46,48,48,55,57,49,51,93,44,91,45,57,56,46,53,55,53,54,49,54,44,51,50,46,57,53,52,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,72,101,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,57,51,56,48,53,44,51,51,46,52,50,56,48,57,56,93,44,91,45,56,53,46,50,51,54,53,49,56,44,51,51,46,49,50,57,53,53,57,93,44,91,45,56,52,46,57,51,57,48,49,53,44,51,51,46,50,50,52,54,57,51,93,44,91,45,56,53,46,48,49,53,51,53,56,44,51,51,46,52,50,53,53,48,54,93,44,91,45,56,53,46,50,57,51,56,48,53,44,51,51,46,52,50,56,48,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,49,55,49,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,50,57,54,54,55,44,51,52,46,53,54,55,48,56,49,93,44,91,45,56,55,46,53,50,57,55,50,50,44,51,52,46,51,48,52,53,57,56,93,44,91,45,56,55,46,49,48,57,57,49,49,44,51,52,46,50,57,57,50,57,57,93,44,91,45,56,55,46,49,49,48,49,49,49,44,51,52,46,51,49,51,55,57,57,93,44,91,45,56,55,46,49,48,53,48,55,51,44,51,52,46,54,56,54,48,51,55,93,44,91,45,56,55,46,50,54,48,54,55,54,44,51,52,46,55,53,56,54,50,54,93,44,91,45,56,55,46,52,50,54,53,49,44,51,52,46,56,48,48,48,50,50,93,44,91,45,56,55,46,52,51,51,48,54,44,51,52,46,55,49,55,52,56,53,93,44,91,45,56,55,46,53,50,57,54,54,55,44,51,52,46,53,54,55,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,71,117,97,121,110,97,98,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,54,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,51,49,53,56,44,49,56,46,52,50,52,54,53,54,93,44,91,45,54,54,46,49,52,51,56,54,49,44,49,56,46,50,55,57,53,57,93,44,91,45,54,54,46,48,56,48,52,55,53,44,49,56,46,50,57,55,50,57,53,93,44,91,45,54,54,46,49,48,56,50,56,49,44,49,56,46,52,51,56,57,48,50,93,44,91,45,54,54,46,49,51,49,53,56,44,49,56,46,52,50,52,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,56,55,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,50,52,51,50,52,44,51,52,46,57,57,52,55,57,93,44,91,45,56,57,46,55,50,51,52,52,50,44,51,52,46,55,55,50,51,49,49,93,44,91,45,56,57,46,54,54,57,49,54,44,51,52,46,54,56,53,55,56,54,93,44,91,45,56,57,46,54,54,56,52,52,56,44,51,52,46,53,53,52,51,54,55,93,44,91,45,56,57,46,52,55,54,54,52,50,44,51,52,46,53,53,52,49,54,56,93,44,91,45,56,57,46,50,52,54,49,51,51,44,51,52,46,52,57,53,54,51,51,93,44,91,45,56,57,46,50,52,53,54,52,53,44,51,52,46,53,56,51,50,51,52,93,44,91,45,56,57,46,50,57,56,51,51,52,44,51,52,46,53,56,50,57,50,54,93,44,91,45,56,57,46,50,57,57,50,50,55,44,51,52,46,56,52,52,52,49,53,93,44,91,45,56,57,46,51,53,50,54,55,57,44,51,52,46,57,57,51,56,54,51,93,44,91,45,56,57,46,54,52,52,48,53,44,51,52,46,57,57,53,50,57,49,93,44,91,45,56,57,46,55,50,52,51,50,52,44,51,52,46,57,57,52,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,51,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,48,55,50,52,56,44,51,55,46,52,55,52,56,51,54,93,44,91,45,49,48,48,46,48,57,49,53,50,57,44,51,55,46,51,56,54,56,57,50,93,44,91,45,49,48,48,46,48,56,57,52,56,51,44,51,55,46,48,48,50,50,54,49,93,44,91,45,49,48,48,46,48,48,50,53,54,51,44,51,55,46,48,48,49,55,48,54,93,44,91,45,57,57,46,53,52,49,49,49,54,44,51,54,46,57,57,57,54,49,93,44,91,45,57,57,46,53,52,51,49,56,57,44,51,55,46,51,56,49,49,50,52,93,44,91,45,57,57,46,53,53,54,49,49,57,44,51,55,46,52,54,55,55,50,50,93,44,91,45,49,48,48,46,49,48,55,50,52,56,44,51,55,46,52,55,52,56,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,72,97,115,107,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,52,55,44,34,98,101,100,115,34,58,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,54,56,49,48,54,44,51,55,46,51,56,55,55,55,57,93,44,91,45,49,48,48,46,54,53,50,55,50,56,44,51,55,46,51,56,55,54,50,55,93,44,91,45,49,48,48,46,54,53,50,54,52,50,44,51,55,46,52,55,52,56,52,56,93,44,91,45,49,48,48,46,54,53,50,50,53,49,44,51,55,46,55,51,54,50,55,53,93,44,91,45,49,48,49,46,48,56,57,54,54,55,44,51,55,46,55,51,54,51,51,55,93,44,91,45,49,48,49,46,48,56,57,54,53,51,44,51,55,46,51,56,55,55,50,49,93,44,91,45,49,48,49,46,48,54,56,49,48,54,44,51,55,46,51,56,55,55,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,105,101,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,54,56,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,49,55,56,55,54,55,44,51,50,46,53,56,52,57,49,54,93,44,91,45,57,51,46,49,52,55,49,57,51,44,51,50,46,52,53,53,49,55,51,93,44,91,45,57,51,46,50,51,54,54,53,54,44,51,50,46,52,49,48,48,55,49,93,44,91,45,57,51,46,51,55,50,55,56,49,44,51,50,46,52,49,48,49,53,51,93,44,91,45,57,51,46,52,50,56,49,57,44,51,50,46,50,51,53,56,57,55,93,44,91,45,57,51,46,50,49,51,57,56,56,44,51,50,46,50,51,54,48,54,53,93,44,91,45,57,51,46,49,56,55,49,54,50,44,51,50,46,49,52,56,52,49,50,93,44,91,45,57,50,46,57,51,57,48,56,44,51,50,46,49,52,55,57,52,50,93,44,91,45,57,50,46,56,49,52,55,51,55,44,51,50,46,49,52,54,57,48,55,93,44,91,45,57,50,46,55,55,52,57,51,54,44,51,50,46,50,51,55,48,53,53,93,44,91,45,57,50,46,55,55,55,49,57,55,44,51,50,46,52,53,51,52,53,53,93,44,91,45,57,50,46,56,55,57,50,54,56,44,51,50,46,52,53,52,49,49,56,93,44,91,45,57,50,46,56,56,48,56,48,53,44,51,50,46,53,56,53,50,55,55,93,44,91,45,57,51,46,49,55,56,55,54,55,44,51,50,46,53,56,52,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,53,34,44,34,78,65,77,69,34,58,34,87,97,108,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,54,51,57,49,57,44,51,52,46,57,56,51,51,55,53,93,44,91,45,56,53,46,52,53,48,53,54,49,44,51,52,46,56,51,49,54,55,55,93,44,91,45,56,53,46,52,53,48,52,48,57,44,51,52,46,55,53,57,50,52,49,93,44,91,45,56,53,46,53,51,52,48,56,57,44,51,52,46,54,50,51,56,53,56,93,44,91,45,56,53,46,53,50,55,50,54,49,44,51,52,46,53,56,56,54,56,51,93,44,91,45,56,53,46,49,48,55,55,52,56,44,51,52,46,53,56,55,52,56,51,93,44,91,45,56,53,46,48,54,57,49,53,57,44,51,52,46,53,56,55,49,56,52,93,44,91,45,56,53,46,48,53,48,52,52,54,44,51,52,46,54,50,50,52,56,50,93,44,91,45,56,53,46,48,53,48,56,52,55,44,51,52,46,55,49,57,57,56,93,44,91,45,56,53,46,49,52,52,55,56,57,44,51,52,46,55,54,55,54,51,57,93,44,91,45,56,53,46,50,54,52,55,54,50,44,51,52,46,56,53,52,50,55,55,93,44,91,45,56,53,46,50,54,53,48,53,53,44,51,52,46,57,56,53,48,55,53,93,44,91,45,56,53,46,51,54,51,57,49,57,44,51,52,46,57,56,51,51,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,57,56,49,54,52,44,52,49,46,56,54,50,55,55,57,93,44,91,45,57,50,46,50,57,55,52,57,52,44,52,49,46,53,48,57,55,57,93,44,91,45,57,49,46,57,52,54,48,52,51,44,52,49,46,53,49,48,55,52,57,93,44,91,45,57,49,46,56,50,57,50,51,49,44,52,49,46,53,49,49,52,53,55,93,44,91,45,57,49,46,56,51,49,51,55,57,44,52,49,46,56,54,49,56,53,49,93,44,91,45,57,50,46,50,57,56,49,54,52,44,52,49,46,56,54,50,55,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,117,102,102,97,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,51,48,44,34,98,101,100,115,34,58,51,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,50,53,57,56,54,44,52,49,46,48,52,54,52,55,49,93,44,91,45,57,57,46,52,49,55,51,49,54,44,52,48,46,54,55,48,56,50,53,93,44,91,45,57,57,46,49,55,57,50,52,56,44,52,48,46,54,54,48,53,52,49,93,44,91,45,57,56,46,57,48,54,48,57,54,44,52,48,46,54,53,50,55,50,50,93,44,91,45,57,56,46,55,50,52,51,56,55,44,52,48,46,54,56,57,55,55,50,93,44,91,45,57,56,46,55,50,49,52,51,44,52,48,46,54,57,56,57,48,51,93,44,91,45,57,56,46,55,50,49,57,55,53,44,52,49,46,48,52,54,54,55,52,93,44,91,45,57,56,46,55,52,56,53,50,54,44,52,49,46,48,52,54,54,52,93,44,91,45,57,57,46,50,48,55,53,54,52,44,52,49,46,48,52,55,48,48,51,93,44,91,45,57,57,46,52,50,53,57,56,54,44,52,49,46,48,52,54,52,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,97,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,53,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,57,52,53,52,54,51,44,51,54,46,57,57,56,52,49,54,93,44,91,45,49,48,48,46,57,53,52,49,53,51,44,51,54,46,52,57,57,57,49,54,93,44,91,45,49,48,48,46,53,52,54,49,52,53,44,51,54,46,52,57,57,51,52,51,93,44,91,45,49,48,48,46,48,48,51,55,54,50,44,51,54,46,52,57,57,56,52,57,93,44,91,45,49,48,48,46,48,48,51,49,54,44,51,54,46,53,57,51,50,53,93,44,91,45,49,48,48,46,48,48,50,53,54,51,44,51,55,46,48,48,49,55,48,54,93,44,91,45,49,48,48,46,48,56,57,52,56,51,44,51,55,46,48,48,50,50,54,49,93,44,91,45,49,48,48,46,54,51,51,51,50,55,44,51,55,46,48,48,48,49,48,51,93,44,91,45,49,48,48,46,57,52,53,52,54,51,44,51,54,46,57,57,56,52,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,44,91,45,57,51,46,48,50,55,44,52,50,46,53,53,54,56,49,93,44,91,45,57,50,46,53,53,52,51,44,52,50,46,53,53,53,56,53,52,93,44,91,45,57,50,46,53,53,52,52,57,50,44,52,50,46,54,52,50,51,49,52,93,44,91,45,57,50,46,53,53,52,50,49,49,44,52,50,46,57,48,55,49,49,50,93,44,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,82,111,111,115,101,118,101,108,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,50,56,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,49,57,52,55,56,51,44,52,56,46,48,54,54,54,49,55,93,44,91,45,49,48,53,46,48,51,55,48,57,52,44,52,56,46,48,54,51,52,49,54,93,44,91,45,49,48,52,46,56,50,50,53,56,49,44,52,56,46,49,49,56,57,52,53,93,44,91,45,49,48,52,46,53,49,49,54,57,54,44,52,56,46,49,48,57,56,57,52,93,44,91,45,49,48,52,46,48,52,52,48,52,52,44,52,55,46,57,57,54,48,56,50,93,44,91,45,49,48,52,46,48,52,54,55,54,54,44,52,56,46,51,56,57,50,57,56,93,44,91,45,49,48,52,46,54,50,55,55,54,44,52,56,46,51,56,57,51,54,50,93,44,91,45,49,48,52,46,54,50,55,55,50,54,44,52,56,46,52,55,54,51,52,57,93,44,91,45,49,48,52,46,55,53,55,54,49,57,44,52,56,46,53,54,51,49,50,55,93,44,91,45,49,48,52,46,57,55,51,51,53,52,44,52,56,46,53,54,51,49,57,93,44,91,45,49,48,53,46,56,48,52,52,51,54,44,52,56,46,53,54,51,51,53,56,93,44,91,45,49,48,53,46,56,48,52,53,57,57,44,52,56,46,50,49,57,48,51,55,93,44,91,45,49,48,53,46,56,52,51,56,57,49,44,52,56,46,48,49,48,50,56,57,93,44,91,45,49,48,53,46,53,57,53,48,50,55,44,52,56,46,48,56,49,55,56,93,44,91,45,49,48,53,46,50,50,56,57,57,44,52,56,46,48,56,57,50,56,52,93,44,91,45,49,48,53,46,49,57,52,55,56,51,44,52,56,46,48,54,54,54,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,97,114,99,101,108,111,110,101,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,50,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,55,56,52,52,49,44,49,56,46,53,52,49,52,51,49,93,44,91,45,54,54,46,53,56,56,49,56,49,44,49,56,46,51,56,57,52,48,56,93,44,91,45,54,54,46,53,52,51,48,55,57,44,49,56,46,52,48,53,52,50,50,93,44,91,45,54,54,46,53,51,50,53,50,49,44,49,56,46,53,51,53,52,55,56,93,44,91,45,54,54,46,53,55,56,52,52,49,44,49,56,46,53,52,49,52,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,111,119,108,105,116,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,49,49,50,44,34,98,101,100,115,34,58,51,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,50,49,51,48,53,52,44,52,54,46,49,55,50,53,52,49,93,44,91,45,49,50,51,46,49,49,53,57,48,52,44,52,54,46,49,56,53,50,54,56,93,44,91,45,49,50,50,46,57,48,52,49,49,57,44,52,54,46,48,56,51,55,51,52,93,44,91,45,49,50,50,46,55,56,53,53,49,53,44,52,53,46,56,53,48,53,51,54,93,44,91,45,49,50,50,46,55,50,48,57,49,44,52,53,46,57,51,49,56,57,50,93,44,91,45,49,50,50,46,52,55,56,55,53,51,44,52,53,46,57,56,55,57,51,56,93,44,91,45,49,50,50,46,51,51,50,54,54,51,44,52,53,46,57,54,53,48,54,52,93,44,91,45,49,50,50,46,50,52,53,56,53,54,44,52,54,46,48,53,51,56,53,51,93,44,91,45,49,50,50,46,50,52,48,57,54,54,44,52,54,46,51,56,53,51,54,49,93,44,91,45,49,50,51,46,50,49,55,57,53,44,52,54,46,51,56,53,54,49,55,93,44,91,45,49,50,51,46,50,49,51,48,53,52,44,52,54,46,49,55,50,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,55,34,44,34,78,65,77,69,34,58,34,76,105,118,101,32,79,97,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,51,53,48,51,49,44,50,56,46,54,49,50,54,53,56,93,44,91,45,57,56,46,51,51,52,51,50,51,44,50,56,46,48,53,55,56,93,44,91,45,57,56,46,50,51,53,52,57,55,44,50,56,46,48,53,55,57,54,54,93,44,91,45,57,55,46,56,56,51,49,52,56,44,50,56,46,48,53,54,57,93,44,91,45,57,55,46,56,49,55,55,49,54,44,50,56,46,49,55,54,56,52,56,93,44,91,45,57,56,46,48,56,57,55,54,52,44,50,56,46,54,54,50,57,55,57,93,44,91,45,57,56,46,48,48,53,50,53,50,44,50,56,46,54,57,48,50,51,57,93,44,91,45,57,56,46,48,57,56,51,49,53,44,50,56,46,55,56,54,57,52,57,93,44,91,45,57,56,46,51,51,53,48,51,49,44,50,56,46,54,49,50,54,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,77,111,110,105,116,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,53,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,52,57,56,51,55,55,44,51,56,46,57,50,50,48,56,52,93,44,91,45,57,50,46,54,49,55,49,52,55,44,51,56,46,54,56,48,48,49,51,93,44,91,45,57,50,46,56,51,57,56,51,55,44,51,56,46,54,56,51,57,55,52,93,44,91,45,57,50,46,56,52,49,56,55,49,44,51,56,46,53,57,54,55,57,50,93,44,91,45,57,50,46,54,50,53,49,56,57,44,51,56,46,52,51,48,55,55,56,93,44,91,45,57,50,46,52,57,53,49,56,53,44,51,56,46,52,50,55,56,50,57,93,44,91,45,57,50,46,51,57,52,56,54,54,44,51,56,46,55,51,57,49,51,93,44,91,45,57,50,46,51,55,57,54,49,52,44,51,56,46,56,48,48,48,55,54,93,44,91,45,57,50,46,52,57,56,51,55,55,44,51,56,46,57,50,50,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,87,101,115,116,109,111,114,101,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,51,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,51,54,57,53,57,44,51,56,46,48,55,55,48,55,52,93,44,91,45,55,54,46,56,55,55,48,54,50,44,51,56,46,49,50,52,51,53,56,93,44,91,45,55,54,46,55,52,56,56,55,49,44,51,55,46,57,57,52,56,57,55,93,44,91,45,55,54,46,54,51,52,50,51,44,51,55,46,57,54,54,54,51,93,44,91,45,55,54,46,53,49,54,51,54,57,44,51,56,46,48,51,52,55,50,52,93,44,91,45,55,54,46,54,49,48,51,56,52,44,51,56,46,49,52,56,53,49,54,93,44,91,45,55,54,46,56,54,56,56,53,57,44,51,56,46,49,55,49,51,55,50,93,44,91,45,55,54,46,57,57,55,54,55,44,51,56,46,50,55,56,48,52,54,93,44,91,45,55,55,46,48,54,49,54,57,53,44,51,56,46,49,54,49,54,51,49,93,44,91,45,55,54,46,57,51,54,57,53,57,44,51,56,46,48,55,55,48,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,89,97,100,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,54,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,55,51,50,48,53,44,51,54,46,50,51,54,51,48,53,93,44,91,45,56,48,46,56,56,49,53,57,49,44,51,54,46,48,53,53,55,49,56,93,44,91,45,56,48,46,54,57,51,49,57,55,44,51,54,46,48,53,49,50,54,93,44,91,45,56,48,46,52,57,54,50,56,51,44,51,54,46,48,52,54,53,52,53,93,44,91,45,56,48,46,52,51,57,49,48,52,44,51,54,46,49,51,57,57,52,57,93,44,91,45,56,48,46,52,53,50,51,50,50,44,51,54,46,50,52,49,52,49,57,93,44,91,45,56,48,46,54,51,49,53,52,52,44,51,54,46,50,56,53,53,56,52,93,44,91,45,56,48,46,56,55,51,50,48,53,44,51,54,46,50,51,54,51,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,48,55,53,44,34,98,101,100,115,34,58,50,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,51,56,55,54,55,44,51,55,46,54,51,51,51,54,52,93,44,91,45,49,50,48,46,57,56,51,55,53,54,44,51,55,46,51,57,57,54,52,93,44,91,45,49,50,48,46,57,55,50,57,52,49,44,51,55,46,51,51,56,52,56,51,93,44,91,45,49,50,49,46,50,50,54,56,48,52,44,51,55,46,49,51,52,55,55,52,93,44,91,45,49,50,49,46,50,49,53,52,48,54,44,51,54,46,57,54,49,50,52,56,93,44,91,45,49,50,49,46,49,52,49,53,50,51,44,51,54,46,56,51,54,54,53,54,93,44,91,45,49,50,48,46,57,49,56,55,51,49,44,51,54,46,55,52,48,51,56,49,93,44,91,45,49,50,48,46,53,52,49,54,57,54,44,51,55,46,48,52,52,53,48,53,93,44,91,45,49,50,48,46,52,55,54,54,57,50,44,51,55,46,48,57,54,51,57,93,44,91,45,49,50,48,46,50,50,55,50,56,54,44,51,55,46,49,54,51,52,93,44,91,45,49,50,48,46,48,53,50,48,53,53,44,51,55,46,49,56,51,49,48,56,93,44,91,45,49,50,48,46,49,52,51,56,50,54,44,51,55,46,50,51,57,49,57,50,93,44,91,45,49,50,48,46,50,54,54,48,49,44,51,55,46,52,48,48,54,48,55,93,44,91,45,49,50,48,46,51,56,55,54,55,44,51,55,46,54,51,51,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,101,119,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,49,56,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,56,49,48,50,50,44,51,54,46,48,49,50,57,50,53,93,44,91,45,57,57,46,51,55,53,56,49,55,44,51,53,46,56,49,50,49,56,56,93,44,91,45,57,56,46,54,51,49,57,56,53,44,51,53,46,56,49,50,52,48,50,93,44,91,45,57,56,46,54,51,54,56,57,57,44,51,54,46,49,54,52,56,57,52,93,44,91,45,57,56,46,57,53,53,56,52,57,44,51,54,46,49,54,49,53,55,55,93,44,91,45,57,57,46,51,56,50,48,55,52,44,51,54,46,49,54,52,51,48,49,93,44,91,45,57,57,46,51,56,49,48,50,50,44,51,54,46,48,49,50,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,117,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,55,49,50,44,34,98,101,100,115,34,58,55,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,52,51,49,56,56,44,51,53,46,57,54,48,48,53,93,44,91,45,56,49,46,57,48,54,54,53,50,44,51,53,46,56,56,51,51,55,54,93,44,91,45,56,49,46,57,56,54,57,51,57,44,51,53,46,56,48,54,57,50,51,93,44,91,45,56,49,46,56,54,57,51,56,56,44,51,53,46,55,49,57,54,50,52,93,44,91,45,56,49,46,56,50,52,49,50,50,44,51,53,46,53,55,52,57,56,51,93,44,91,45,56,49,46,54,57,49,57,56,57,44,51,53,46,53,56,48,48,52,49,93,44,91,45,56,49,46,53,51,55,53,57,57,44,51,53,46,53,54,52,50,50,56,93,44,91,45,56,49,46,53,51,53,52,48,51,44,51,53,46,53,54,56,49,51,55,93,44,91,45,56,49,46,51,54,51,55,57,54,44,51,53,46,55,54,55,56,48,50,93,44,91,45,56,49,46,53,53,53,57,57,52,44,51,53,46,55,55,55,53,51,56,93,44,91,45,56,49,46,56,48,55,49,54,50,44,51,53,46,57,54,49,57,53,53,93,44,91,45,56,49,46,57,52,51,49,56,56,44,51,53,46,57,54,48,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,48,48,50,44,34,98,101,100,115,34,58,53,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,54,52,55,56,52,44,51,53,46,53,56,53,50,54,51,93,44,91,45,55,56,46,49,53,56,53,56,57,44,51,53,46,51,52,55,53,51,55,93,44,91,45,55,56,46,51,48,54,53,56,44,51,53,46,50,56,55,54,48,52,93,44,91,45,55,56,46,49,54,51,52,50,44,51,53,46,49,56,57,55,49,54,93,44,91,45,55,55,46,56,51,52,50,52,57,44,51,53,46,49,55,55,56,52,54,93,44,91,45,55,55,46,56,48,54,50,52,56,44,51,53,46,51,54,56,55,53,52,93,44,91,45,55,55,46,56,50,50,53,49,49,44,51,53,46,53,56,53,51,56,51,93,44,91,45,55,56,46,48,54,52,55,56,52,44,51,53,46,53,56,53,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,51,53,44,34,98,101,100,115,34,58,50,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,54,49,48,56,51,57,44,52,49,46,57,57,57,48,48,54,93,44,91,45,55,57,46,54,49,50,48,55,50,44,52,49,46,56,53,48,48,53,54,93,44,91,45,55,57,46,54,49,50,56,55,51,44,52,49,46,54,50,51,56,53,56,93,44,91,45,55,57,46,53,49,50,48,55,44,52,49,46,54,50,52,53,53,57,93,44,91,45,55,56,46,57,53,54,48,52,50,44,52,49,46,54,50,51,52,48,50,93,44,91,45,55,56,46,57,53,54,48,53,54,44,52,49,46,54,50,51,56,54,51,93,44,91,45,55,56,46,57,49,56,56,53,53,44,52,49,46,57,57,56,49,49,57,93,44,91,45,55,57,46,48,54,49,50,54,53,44,52,49,46,57,57,57,50,53,57,93,44,91,45,55,57,46,54,49,48,56,51,57,44,52,49,46,57,57,57,48,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,56,57,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,52,51,55,51,57,44,51,52,46,49,57,50,53,48,49,93,44,91,45,57,52,46,48,57,56,53,48,49,44,51,52,46,49,57,49,50,48,51,93,44,91,45,57,52,46,48,53,50,57,52,51,44,51,51,46,56,56,54,48,56,50,93,44,91,45,57,51,46,57,53,56,56,50,56,44,51,51,46,55,53,48,57,57,52,93,44,91,45,57,51,46,57,53,55,51,49,53,44,51,51,46,55,53,48,57,52,93,44,91,45,57,51,46,56,51,49,52,53,50,44,51,51,46,55,52,55,55,48,57,93,44,91,45,57,51,46,56,50,51,48,55,54,44,51,52,46,48,48,56,56,57,51,93,44,91,45,57,51,46,56,50,48,55,50,50,44,51,52,46,49,56,51,56,48,50,93,44,91,45,57,51,46,57,50,53,56,51,44,51,52,46,49,56,54,52,57,54,93,44,91,45,57,51,46,57,51,53,51,55,49,44,51,52,46,51,53,48,48,57,55,93,44,91,45,57,52,46,50,53,52,54,54,56,44,51,52,46,51,53,53,52,56,49,93,44,91,45,57,52,46,50,52,51,55,51,57,44,51,52,46,49,57,50,53,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,68,97,118,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,57,57,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,57,51,49,57,55,44,51,54,46,48,53,49,50,54,93,44,91,45,56,48,46,55,48,55,56,50,54,44,51,53,46,56,53,50,57,50,57,93,44,91,45,56,48,46,54,51,50,55,50,52,44,51,53,46,56,52,53,56,53,52,93,44,91,45,56,48,46,52,53,56,56,56,52,44,51,53,46,55,52,51,48,51,49,93,44,91,45,56,48,46,51,56,53,55,56,52,44,51,53,46,56,53,52,53,56,55,93,44,91,45,56,48,46,51,57,52,51,48,55,44,51,53,46,57,55,50,55,54,50,93,44,91,45,56,48,46,52,57,54,50,56,51,44,51,54,46,48,52,54,53,52,53,93,44,91,45,56,48,46,54,57,51,49,57,55,44,51,54,46,48,53,49,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,77,99,68,111,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,49,48,57,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,51,51,52,56,52,44,51,53,46,56,50,51,51,48,57,93,44,91,45,56,50,46,50,55,53,51,57,57,44,51,53,46,55,48,52,52,51,56,93,44,91,45,56,50,46,50,53,49,50,53,49,44,51,53,46,53,53,57,57,52,51,93,44,91,45,56,50,46,49,54,57,48,52,57,44,51,53,46,53,50,55,56,49,49,93,44,91,45,56,49,46,57,54,55,54,49,57,44,51,53,46,53,50,54,48,48,55,93,44,91,45,56,49,46,56,50,52,49,50,50,44,51,53,46,53,55,52,57,56,51,93,44,91,45,56,49,46,56,54,57,51,56,56,44,51,53,46,55,49,57,54,50,52,93,44,91,45,56,49,46,57,56,54,57,51,57,44,51,53,46,56,48,54,57,50,51,93,44,91,45,56,49,46,57,48,54,54,53,50,44,51,53,46,56,56,51,51,55,54,93,44,91,45,56,49,46,57,52,51,49,56,56,44,51,53,46,57,54,48,48,53,93,44,91,45,56,49,46,57,56,49,57,53,52,44,51,53,46,57,49,49,51,54,49,93,44,91,45,56,50,46,49,51,51,52,56,52,44,51,53,46,56,50,51,51,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,52,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,53,54,55,48,57,44,51,51,46,57,53,54,56,51,55,93,44,91,45,57,51,46,52,56,51,48,57,55,44,51,51,46,52,55,54,48,55,53,93,44,91,45,57,51,46,51,54,53,53,56,53,44,51,51,46,52,52,52,52,53,57,93,44,91,45,57,51,46,49,49,54,51,54,49,44,51,51,46,52,53,50,57,48,57,93,44,91,45,57,51,46,49,48,52,50,57,44,51,51,46,55,55,55,48,49,49,93,44,91,45,57,51,46,50,57,48,53,55,49,44,51,51,46,56,52,53,49,51,51,93,44,91,45,57,51,46,51,55,51,52,48,54,44,51,51,46,57,53,55,48,55,93,44,91,45,57,51,46,52,53,54,55,48,57,44,51,51,46,57,53,54,56,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,89,117,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,54,57,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,53,49,52,54,53,44,52,48,46,52,52,48,48,48,56,93,44,91,45,49,48,50,46,54,54,52,56,48,52,44,52,48,46,52,51,56,52,55,51,93,44,91,45,49,48,50,46,55,55,57,57,54,44,52,48,46,52,51,56,52,52,54,93,44,91,45,49,48,50,46,55,57,51,53,56,50,44,52,48,46,51,53,49,50,56,49,93,44,91,45,49,48,50,46,56,48,50,57,51,50,44,51,57,46,53,54,55,56,52,49,93,44,91,45,49,48,50,46,48,52,57,56,48,54,44,51,57,46,53,55,52,48,53,56,93,44,91,45,49,48,50,46,48,53,49,55,52,52,44,52,48,46,48,48,51,48,55,56,93,44,91,45,49,48,50,46,48,53,49,53,56,54,44,52,48,46,51,52,57,50,49,51,93,44,91,45,49,48,50,46,48,53,49,52,54,53,44,52,48,46,52,52,48,48,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,50,49,34,44,34,78,65,77,69,34,58,34,83,104,101,114,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,51,57,49,53,44,51,54,46,52,57,57,53,50,56,93,44,91,45,49,48,50,46,48,51,50,51,51,56,44,51,54,46,53,48,48,53,55,53,93,44,91,45,49,48,50,46,49,54,50,52,54,51,44,51,54,46,53,48,48,51,50,54,93,44,91,45,49,48,50,46,49,54,51,48,49,53,44,51,54,46,48,53,53,50,52,57,93,44,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,44,91,45,49,48,49,46,54,50,51,57,49,53,44,51,54,46,52,57,57,53,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,54,51,34,44,34,78,65,77,69,34,58,34,85,118,97,108,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,48,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,48,51,49,51,44,50,57,46,54,50,55,49,56,49,93,44,91,45,49,48,48,46,48,49,52,49,56,56,44,50,57,46,54,50,51,52,57,53,93,44,91,45,49,48,48,46,49,49,50,48,57,56,44,50,57,46,54,50,51,50,54,51,93,44,91,45,49,48,48,46,49,49,49,52,48,54,44,50,57,46,48,56,54,51,49,56,93,44,91,45,57,57,46,52,49,51,56,56,44,50,57,46,48,57,49,51,51,53,93,44,91,45,57,57,46,52,49,49,56,49,55,44,50,57,46,54,50,55,53,49,52,93,44,91,45,57,57,46,54,48,51,49,51,44,50,57,46,54,50,55,49,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,117,103,108,97,105,122,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,56,52,44,34,98,101,100,115,34,58,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,53,54,49,56,44,52,48,46,54,56,52,56,54,50,93,44,91,45,56,52,46,52,51,52,51,56,55,44,52,48,46,51,53,52,53,51,52,93,44,91,45,56,52,46,51,51,56,54,44,52,48,46,51,55,57,49,57,57,93,44,91,45,56,52,46,51,51,57,49,51,55,44,52,48,46,52,56,49,48,55,54,93,44,91,45,56,52,46,48,48,50,51,55,50,44,52,48,46,52,56,51,49,49,53,93,44,91,45,56,51,46,56,56,48,48,51,57,44,52,48,46,53,51,56,54,57,52,93,44,91,45,56,51,46,56,56,48,49,57,52,44,52,48,46,54,52,52,54,57,93,44,91,45,56,52,46,49,48,55,55,56,55,44,52,48,46,54,52,51,48,54,57,93,44,91,45,56,52,46,50,50,50,55,57,57,44,52,48,46,54,56,53,57,53,55,93,44,91,45,56,52,46,51,57,54,55,55,56,44,52,48,46,54,56,52,57,50,54,93,44,91,45,56,52,46,52,53,54,49,56,44,52,48,46,54,56,52,56,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,111,115,115,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,49,51,49,44,34,98,101,100,115,34,58,50,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,49,52,53,53,51,44,51,51,46,48,49,57,51,55,49,93,44,91,45,57,51,46,55,56,51,50,51,51,44,51,50,46,55,56,52,51,54,93,44,91,45,57,51,46,56,49,57,49,54,57,44,51,50,46,55,51,54,48,48,50,93,44,91,45,57,51,46,55,51,54,54,49,44,51,50,46,53,55,57,56,52,53,93,44,91,45,57,51,46,55,53,54,50,48,54,44,51,50,46,53,51,55,48,51,55,93,44,91,45,57,51,46,54,49,53,49,51,44,51,50,46,51,52,56,51,51,50,93,44,91,45,57,51,46,52,55,49,50,52,57,44,51,50,46,50,51,55,49,56,54,93,44,91,45,57,51,46,52,50,56,49,57,44,51,50,46,50,51,53,56,57,55,93,44,91,45,57,51,46,51,55,50,55,56,49,44,51,50,46,52,49,48,49,53,51,93,44,91,45,57,51,46,52,52,49,50,49,50,44,51,50,46,52,49,48,52,51,49,93,44,91,45,57,51,46,52,53,51,49,50,49,44,51,50,46,56,53,57,57,51,53,93,44,91,45,57,51,46,53,50,48,57,57,52,44,51,51,46,48,49,56,54,49,54,93,44,91,45,57,51,46,56,48,52,57,51,44,51,51,46,48,49,57,51,53,55,93,44,91,45,57,51,46,56,49,52,53,53,51,44,51,51,46,48,49,57,51,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,69,109,109,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,53,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,49,52,53,56,50,44,52,51,46,53,48,48,56,53,51,93,44,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,44,91,45,57,52,46,52,52,51,49,51,55,44,52,51,46,50,53,53,48,49,52,93,44,91,45,57,52,46,52,52,50,56,53,44,52,51,46,53,48,48,52,50,50,93,44,91,45,57,52,46,56,53,52,53,53,53,44,52,51,46,53,48,48,57,50,53,93,44,91,45,57,52,46,57,49,52,53,56,50,44,52,51,46,53,48,48,56,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,57,55,55,44,34,98,101,100,115,34,58,51,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,50,56,53,57,50,44,51,56,46,56,55,49,48,57,57,93,44,91,45,57,55,46,57,50,52,55,57,53,44,51,56,46,54,48,57,56,56,93,44,91,45,57,55,46,51,55,49,57,49,49,44,51,56,46,54,48,57,51,53,51,93,44,91,45,57,55,46,51,55,49,54,49,52,44,51,56,46,57,53,55,56,53,50,93,44,91,45,57,55,46,57,50,56,53,54,44,51,56,46,57,53,56,51,57,53,93,44,91,45,57,55,46,57,50,56,53,57,50,44,51,56,46,56,55,49,48,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,77,97,103,111,102,102,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,52,56,54,57,50,44,51,55,46,54,54,57,54,49,54,93,44,91,45,56,51,46,48,56,57,55,57,54,44,51,55,46,54,51,50,49,54,55,93,44,91,45,56,50,46,57,52,56,53,52,52,44,51,55,46,53,48,51,49,54,55,93,44,91,45,56,50,46,57,50,53,52,54,44,51,55,46,52,56,54,53,50,53,93,44,91,45,56,50,46,56,57,49,54,48,53,44,51,55,46,53,49,57,48,56,51,93,44,91,45,56,50,46,57,52,48,55,54,51,44,51,55,46,55,49,54,51,51,56,93,44,91,45,56,51,46,48,48,52,54,52,57,44,51,55,46,56,53,57,50,52,55,93,44,91,45,56,51,46,48,56,57,52,48,57,44,51,55,46,56,57,48,51,52,93,44,91,45,56,51,46,50,55,48,51,56,55,44,51,55,46,55,54,54,56,52,53,93,44,91,45,56,51,46,50,54,50,49,55,50,44,51,55,46,55,49,50,54,53,55,93,44,91,45,56,51,46,50,52,56,54,57,50,44,51,55,46,54,54,57,54,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,97,105,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,57,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,52,51,55,54,55,44,51,52,46,51,48,50,54,52,56,93,44,91,45,49,48,51,46,48,52,55,52,48,57,44,51,51,46,56,50,52,54,55,52,93,44,91,45,49,48,50,46,54,49,53,52,52,55,44,51,51,46,56,50,53,49,50,49,93,44,91,45,49,48,50,46,54,49,53,49,53,44,51,52,46,51,49,50,56,57,49,93,44,91,45,49,48,51,46,48,52,51,55,54,50,44,51,52,46,51,49,50,55,53,93,44,91,45,49,48,51,46,48,52,51,55,54,55,44,51,52,46,51,48,50,54,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,108,108,97,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,56,52,48,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,51,51,57,57,56,44,51,57,46,48,53,57,48,53,55,93,44,91,45,57,50,46,49,49,48,51,56,55,44,51,57,46,48,54,52,50,48,52,93,44,91,45,57,50,46,49,54,53,49,49,55,44,51,56,46,57,48,48,57,52,56,93,44,91,45,57,50,46,49,51,53,51,57,55,44,51,56,46,56,49,53,53,56,49,93,44,91,45,57,50,46,50,50,48,54,54,49,44,51,56,46,54,52,51,49,54,55,93,44,91,45,57,50,46,49,48,57,50,56,50,44,51,56,46,53,54,49,52,51,93,44,91,45,57,50,46,48,48,56,57,56,51,44,51,56,46,53,55,48,57,93,44,91,45,57,49,46,56,54,57,52,56,57,44,51,56,46,54,54,51,57,52,93,44,91,45,57,49,46,54,52,55,49,55,49,44,51,56,46,55,48,51,51,57,54,93,44,91,45,57,49,46,54,51,51,57,57,56,44,51,57,46,48,53,57,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,98,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,49,48,50,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,55,51,52,48,51,44,52,50,46,52,51,51,50,51,54,93,44,91,45,49,48,54,46,48,54,56,52,48,54,44,52,49,46,51,57,53,48,50,56,93,44,91,45,49,48,54,46,51,50,50,56,56,53,44,52,49,46,51,57,53,49,52,49,93,44,91,45,49,48,54,46,51,50,49,49,54,53,44,52,48,46,57,57,57,49,50,51,93,44,91,45,49,48,54,46,49,57,48,53,53,52,44,52,48,46,57,57,55,53,55,56,93,44,91,45,49,48,53,46,50,55,54,56,54,44,52,48,46,57,57,56,49,55,50,93,44,91,45,49,48,53,46,50,55,56,50,51,54,44,52,49,46,54,53,54,54,53,53,93,44,91,45,49,48,53,46,50,55,49,55,52,54,44,52,49,46,57,56,54,48,57,53,93,44,91,45,49,48,53,46,50,56,51,57,49,44,52,50,46,52,51,49,52,48,50,93,44,91,45,49,48,53,46,51,55,53,53,52,49,44,52,50,46,50,57,48,49,51,57,93,44,91,45,49,48,53,46,54,49,51,56,54,53,44,52,50,46,51,48,52,52,53,53,93,44,91,45,49,48,53,46,53,53,54,48,52,50,44,52,50,46,52,51,48,53,56,51,93,44,91,45,49,48,54,46,48,55,51,52,48,51,44,52,50,46,52,51,51,50,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,80,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,49,50,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,55,57,56,52,56,51,44,52,53,46,48,48,50,51,51,51,93,44,91,45,49,49,48,46,55,48,52,52,55,54,44,52,52,46,57,57,50,49,55,52,93,44,91,45,49,49,49,46,48,52,53,48,54,54,44,52,53,46,48,48,48,57,53,93,44,91,45,49,49,49,46,48,53,51,52,52,55,44,52,52,46,54,54,54,50,54,56,93,44,91,45,49,49,48,46,54,54,55,56,54,55,44,52,52,46,54,54,54,50,57,49,93,44,91,45,49,49,48,46,54,54,55,56,57,57,44,52,52,46,53,56,50,55,57,50,93,44,91,45,49,49,48,46,51,55,53,51,51,52,44,52,52,46,53,56,51,48,49,54,93,44,91,45,49,49,48,46,50,55,54,53,48,54,44,52,52,46,53,49,53,54,54,53,93,44,91,45,49,49,48,46,50,57,54,54,52,56,44,52,52,46,52,51,49,51,52,49,93,44,91,45,49,49,48,46,49,53,48,49,55,53,44,52,52,46,50,56,57,54,54,54,93,44,91,45,49,49,48,46,49,49,57,49,57,51,44,52,52,46,49,51,50,53,56,52,93,44,91,45,49,49,48,46,48,53,51,49,55,57,44,52,52,46,48,48,56,48,50,50,93,44,91,45,49,48,57,46,56,56,49,57,44,52,51,46,57,52,57,48,55,54,93,44,91,45,49,48,57,46,55,56,57,57,44,52,51,46,56,48,51,50,53,50,93,44,91,45,49,48,57,46,53,52,50,51,51,50,44,52,51,46,57,54,49,51,53,50,93,44,91,45,49,48,57,46,52,52,50,51,54,49,44,52,51,46,57,51,48,52,51,52,93,44,91,45,49,48,57,46,51,49,50,57,52,57,44,52,51,46,56,49,51,50,57,51,93,44,91,45,49,48,57,46,48,57,51,54,48,51,44,52,51,46,56,49,55,54,49,57,93,44,91,45,49,48,57,46,48,57,50,56,55,56,44,52,51,46,57,48,52,52,55,52,93,44,91,45,49,48,56,46,57,49,50,55,56,51,44,52,51,46,57,48,52,55,53,52,93,44,91,45,49,48,56,46,55,57,49,55,55,57,44,52,51,46,57,57,49,48,53,51,93,44,91,45,49,48,56,46,55,57,50,50,55,55,44,52,52,46,48,55,57,54,49,54,93,44,91,45,49,48,56,46,53,53,48,55,53,56,44,52,52,46,48,55,57,52,48,51,93,44,91,45,49,48,56,46,53,53,48,53,54,50,44,52,52,46,49,54,56,52,53,53,93,44,91,45,49,48,56,46,53,57,50,50,57,54,44,52,52,46,56,55,49,52,52,52,93,44,91,45,49,48,56,46,54,50,49,51,49,53,44,52,53,46,48,48,48,51,54,49,93,44,91,45,49,48,57,46,55,57,56,52,56,51,44,52,53,46,48,48,50,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,111,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,57,52,44,34,98,101,100,115,34,58,54,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,51,50,54,55,50,44,52,49,46,49,55,50,48,52,93,44,91,45,55,54,46,55,57,50,54,49,44,52,48,46,57,52,54,54,52,55,93,44,91,45,55,54,46,54,54,49,51,52,56,44,52,48,46,57,54,55,57,57,54,93,44,91,45,55,54,46,53,50,56,48,51,52,44,52,48,46,56,56,50,53,49,53,93,44,91,45,55,54,46,53,49,50,52,50,49,44,52,48,46,57,52,54,49,48,50,93,44,91,45,55,54,46,54,49,56,57,55,49,44,52,49,46,48,54,51,55,53,57,93,44,91,45,55,54,46,54,52,48,55,54,55,44,52,49,46,49,53,53,55,49,56,93,44,91,45,55,54,46,55,51,50,54,55,50,44,52,49,46,49,55,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,81,117,101,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,57,56,53,49,51,44,34,98,101,100,115,34,58,51,50,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,48,51,54,50,57,51,44,52,48,46,53,53,49,48,52,50,93,44,91,45,55,52,46,48,52,50,49,49,50,44,52,48,46,53,48,57,50,57,57,93,44,91,45,55,51,46,56,56,54,54,53,50,44,52,48,46,52,56,57,55,57,52,93,44,91,45,55,51,46,55,54,56,55,56,49,44,52,48,46,53,51,51,55,52,55,93,44,91,45,55,51,46,55,48,49,54,51,51,44,52,48,46,55,53,50,52,57,51,93,44,91,45,55,51,46,55,55,56,57,53,56,44,52,48,46,56,49,49,55,49,51,93,44,91,45,55,51,46,57,49,50,52,53,54,44,52,48,46,55,57,54,48,57,54,93,44,91,45,55,51,46,57,54,50,52,55,56,44,52,48,46,55,51,54,56,48,50,93,44,91,45,55,51,46,56,51,51,48,52,49,44,52,48,46,54,50,56,50,54,49,93,44,91,45,55,51,46,56,55,57,50,50,50,44,52,48,46,53,55,52,54,53,54,93,44,91,45,55,52,46,48,51,54,50,57,51,44,52,48,46,53,53,49,48,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,83,117,119,97,110,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,52,55,50,53,51,44,51,48,46,50,54,48,54,55,93,44,91,45,56,51,46,50,50,54,51,54,44,51,48,46,49,49,52,54,50,49,93,44,91,45,56,51,46,49,54,50,52,53,55,44,51,48,46,49,49,48,48,50,50,93,44,91,45,56,50,46,57,54,51,49,49,50,44,50,57,46,57,57,51,48,53,93,44,91,45,56,50,46,56,55,57,56,48,50,44,50,57,46,56,56,54,56,52,55,93,44,91,45,56,50,46,56,48,48,52,55,55,44,50,57,46,57,51,50,49,50,54,93,44,91,45,56,50,46,55,57,52,53,57,52,44,51,48,46,51,51,55,48,50,52,93,44,91,45,56,50,46,57,53,53,57,44,51,48,46,52,49,51,52,56,54,93,44,91,45,56,51,46,48,55,56,55,48,54,44,51,48,46,52,51,56,49,49,54,93,44,91,45,56,51,46,49,55,48,57,54,57,44,51,48,46,51,56,53,50,50,53,93,44,91,45,56,51,46,50,52,55,50,53,51,44,51,48,46,50,54,48,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,104,101,98,111,121,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,52,53,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,51,50,53,57,53,44,52,53,46,56,49,48,51,51,93,44,91,45,56,52,46,55,51,50,54,56,55,44,52,53,46,50,56,57,51,56,50,93,44,91,45,56,52,46,55,51,52,51,48,51,44,52,53,46,50,48,49,57,51,54,93,44,91,45,56,52,46,51,54,54,54,49,52,44,52,53,46,49,57,56,55,51,55,93,44,91,45,56,52,46,50,52,54,54,51,52,44,52,53,46,49,57,56,55,50,55,93,44,91,45,56,52,46,50,53,50,48,50,44,52,53,46,54,50,53,57,57,56,93,44,91,45,56,52,46,50,48,49,48,54,50,44,52,53,46,55,53,50,50,55,53,93,44,91,45,56,52,46,52,53,50,54,51,52,44,52,53,46,54,57,53,51,55,93,44,91,45,56,52,46,55,51,50,53,57,53,44,52,53,46,56,49,48,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,108,97,100,119,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,56,48,51,57,44,52,52,46,49,54,48,53,51,56,93,44,91,45,56,52,46,54,48,56,49,48,52,44,52,52,46,49,54,48,52,56,50,93,44,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,44,91,45,56,52,46,49,54,55,51,49,56,44,52,51,46,56,50,53,57,48,50,93,44,91,45,56,52,46,49,54,54,51,55,55,44,52,51,46,57,57,54,57,48,49,93,44,91,45,56,52,46,49,54,54,49,48,55,44,52,52,46,49,54,49,55,56,56,93,44,91,45,56,52,46,51,54,56,48,51,57,44,52,52,46,49,54,48,53,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,55,53,57,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,56,48,53,50,55,44,51,56,46,49,49,53,49,49,56,93,44,91,45,56,51,46,57,54,54,51,49,44,51,55,46,57,51,48,55,54,56,93,44,91,45,56,51,46,55,54,56,55,56,51,44,51,55,46,57,49,56,51,55,49,93,44,91,45,56,51,46,55,53,57,52,51,44,51,55,46,57,57,56,55,51,49,93,44,91,45,56,51,46,56,56,49,51,53,51,44,51,56,46,49,51,54,53,49,55,93,44,91,45,56,51,46,57,55,55,57,50,52,44,51,56,46,49,57,50,49,49,56,93,44,91,45,56,52,46,48,56,48,53,50,55,44,51,56,46,49,49,53,49,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,76,97,110,99,97,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,53,52,54,44,34,98,101,100,115,34,58,50,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,57,56,50,49,53,44,51,52,46,56,50,48,55,52,54,93,44,91,45,56,48,46,56,54,48,50,55,52,44,51,52,46,54,57,53,56,52,55,93,44,91,45,56,48,46,56,55,55,52,57,49,44,51,52,46,53,52,51,49,52,54,93,44,91,45,56,48,46,56,55,57,50,50,55,44,51,52,46,52,53,55,55,55,54,93,44,91,45,56,48,46,55,52,51,51,52,53,44,51,52,46,53,51,57,57,49,54,93,44,91,45,56,48,46,54,53,56,52,49,55,44,51,52,46,52,55,56,54,49,50,93,44,91,45,56,48,46,53,53,48,53,53,50,44,51,52,46,53,54,48,49,49,54,93,44,91,45,56,48,46,52,48,56,51,55,51,44,51,52,46,54,49,52,55,54,53,93,44,91,45,56,48,46,53,54,49,55,49,44,51,52,46,56,49,55,52,50,57,93,44,91,45,56,48,46,55,57,55,52,56,52,44,51,52,46,56,49,57,56,48,51,93,44,91,45,56,48,46,55,56,49,57,50,49,44,51,52,46,57,51,53,56,52,56,93,44,91,45,56,48,46,56,52,48,50,55,56,44,51,53,46,48,48,49,54,57,50,93,44,91,45,56,48,46,57,48,54,51,56,53,44,51,53,46,48,55,54,50,55,55,93,44,91,45,56,48,46,56,54,56,54,53,50,44,51,52,46,57,53,49,49,52,51,93,44,91,45,56,48,46,56,57,56,50,49,53,44,51,52,46,56,50,48,55,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,76,97,114,117,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,56,48,52,56,56,44,51,55,46,55,51,50,50,56,52,93,44,91,45,56,53,46,56,55,54,48,48,54,44,51,55,46,53,52,51,50,53,57,93,44,91,45,56,53,46,56,57,50,56,48,52,44,51,55,46,52,52,48,51,48,56,93,44,91,45,56,53,46,54,53,55,51,51,50,44,51,55,46,52,50,49,57,57,54,93,44,91,45,56,53,46,53,56,51,52,57,55,44,51,55,46,52,54,57,57,49,55,93,44,91,45,56,53,46,52,54,54,50,53,44,51,55,46,52,54,53,53,57,53,93,44,91,45,56,53,46,53,50,49,50,57,44,51,55,46,53,53,52,51,52,51,93,44,91,45,56,53,46,54,49,56,48,55,49,44,51,55,46,53,52,48,54,49,49,93,44,91,45,56,53,46,53,57,50,48,56,56,44,51,55,46,54,57,51,52,55,57,93,44,91,45,56,53,46,54,56,48,52,56,56,44,51,55,46,55,51,50,50,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,87,111,111,100,98,117,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,51,57,56,44,34,98,101,100,115,34,58,56,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,52,53,52,56,51,44,52,50,46,52,57,48,54,51,93,44,91,45,57,54,46,51,56,48,55,48,53,44,52,50,46,52,52,54,51,57,51,93,44,91,45,57,54,46,52,48,55,57,57,56,44,52,50,46,51,51,55,52,48,56,93,44,91,45,57,54,46,51,53,54,51,57,53,44,52,50,46,50,55,54,52,57,52,93,44,91,45,57,54,46,51,53,54,53,54,44,52,50,46,50,49,53,48,48,50,93,44,91,45,57,53,46,54,55,48,56,50,50,44,52,50,46,50,49,49,52,48,56,93,44,91,45,57,53,46,54,54,57,50,54,53,44,52,50,46,52,55,52,54,52,53,93,44,91,45,57,53,46,55,52,49,54,49,49,44,52,50,46,53,54,49,50,56,53,93,44,91,45,57,53,46,56,53,57,57,52,57,44,52,50,46,53,54,48,54,50,93,44,91,45,57,54,46,52,57,56,55,55,54,44,52,50,46,53,54,49,48,52,51,93,44,91,45,57,54,46,52,52,53,52,56,51,44,52,50,46,52,57,48,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,57,56,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,57,57,56,56,51,44,51,48,46,48,49,50,50,50,53,93,44,91,45,56,51,46,54,52,55,51,49,49,44,50,57,46,55,57,55,49,51,57,93,44,91,45,56,51,46,54,48,57,51,48,56,44,50,57,46,54,57,56,52,49,54,93,44,91,45,56,51,46,52,56,49,50,54,52,44,50,57,46,54,51,48,51,50,57,93,44,91,45,56,51,46,51,54,54,51,57,56,44,50,57,46,54,54,53,55,48,49,93,44,91,45,56,51,46,51,49,56,56,53,57,44,50,57,46,56,50,50,54,50,51,93,44,91,45,56,51,46,51,55,48,56,57,44,50,57,46,56,56,55,57,51,52,93,44,91,45,56,51,46,51,54,55,50,54,44,51,48,46,50,54,48,52,52,93,44,91,45,56,51,46,52,54,56,55,54,56,44,51,48,46,51,48,52,50,49,50,93,44,91,45,56,51,46,56,50,48,50,51,53,44,51,48,46,51,48,51,53,52,93,44,91,45,56,51,46,57,49,53,51,54,57,44,51,48,46,50,52,52,55,55,57,93,44,91,45,56,51,46,57,57,57,56,56,51,44,51,48,46,48,49,50,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,101,120,97,110,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,55,50,48,56,49,44,51,55,46,48,54,56,51,49,93,44,91,45,56,57,46,50,55,51,54,51,49,44,51,55,46,49,50,54,57,54,56,93,44,91,45,56,57,46,50,52,56,53,54,54,44,51,55,46,51,51,53,50,57,56,93,44,91,45,56,57,46,52,56,54,54,56,57,44,51,55,46,51,51,52,53,53,52,93,44,91,45,56,57,46,52,56,56,55,50,44,51,55,46,50,53,49,52,53,55,93,44,91,45,56,57,46,51,55,54,54,51,50,44,51,55,46,48,51,56,52,56,50,93,44,91,45,56,57,46,51,49,50,55,48,52,44,51,55,46,48,48,56,57,55,49,93,44,91,45,56,57,46,50,53,57,57,51,53,44,51,55,46,48,54,52,48,55,93,44,91,45,56,57,46,49,51,50,57,49,53,44,51,54,46,57,56,50,48,53,55,93,44,91,45,56,57,46,49,55,50,48,56,49,44,51,55,46,48,54,56,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,51,48,50,44,34,98,101,100,115,34,58,51,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,51,54,51,49,49,44,51,56,46,52,54,54,54,52,51,93,44,91,45,57,48,46,55,56,48,49,56,53,44,51,56,46,50,48,52,49,49,50,93,44,91,45,57,48,46,54,51,57,57,56,44,51,56,46,48,55,54,53,52,56,93,44,91,45,57,48,46,53,56,51,51,50,52,44,51,56,46,48,48,51,52,57,57,93,44,91,45,57,48,46,52,49,54,48,50,50,44,51,56,46,48,52,50,51,49,53,93,44,91,45,57,48,46,50,53,50,54,54,54,44,51,56,46,49,50,55,56,49,50,93,44,91,45,57,48,46,51,53,56,54,50,56,44,51,56,46,50,50,49,57,56,49,93,44,91,45,57,48,46,51,52,49,52,52,54,44,51,56,46,51,56,56,50,57,56,93,44,91,45,57,48,46,52,49,50,53,49,57,44,51,56,46,53,48,48,56,53,51,93,44,91,45,57,48,46,53,57,49,49,50,51,44,51,56,46,53,48,49,54,53,50,93,44,91,45,57,48,46,55,51,54,51,49,49,44,51,56,46,52,54,54,54,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,53,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,50,49,56,51,53,44,51,57,46,50,50,52,49,48,56,93,44,91,45,57,49,46,49,56,50,57,52,50,44,51,57,46,50,50,55,50,51,51,93,44,91,45,57,49,46,50,54,48,50,51,50,44,51,57,46,49,51,57,56,52,53,93,44,91,45,57,49,46,50,54,52,50,56,55,44,51,56,46,57,57,50,55,54,50,93,44,91,45,57,49,46,49,49,49,50,53,49,44,51,56,46,56,55,50,55,48,57,93,44,91,45,57,48,46,57,53,56,53,51,54,44,51,56,46,56,55,48,56,54,53,93,44,91,45,57,48,46,56,50,50,55,50,52,44,51,56,46,56,55,54,51,57,50,93,44,91,45,57,48,46,54,54,51,49,56,49,44,51,56,46,57,51,52,50,50,52,93,44,91,45,57,48,46,55,50,49,56,51,53,44,51,57,46,50,50,52,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,67,104,97,116,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,55,48,52,57,44,34,98,101,100,115,34,58,49,54,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,52,52,53,55,50,44,51,50,46,50,50,54,49,50,56,93,44,91,45,56,49,46,49,57,53,54,51,52,44,51,50,46,50,51,55,52,57,57,93,44,91,45,56,49,46,51,57,49,54,57,56,44,51,50,46,48,57,53,56,56,54,93,44,91,45,56,49,46,50,49,50,51,48,57,44,51,49,46,57,49,56,51,53,56,93,44,91,45,56,49,46,49,53,52,55,51,49,44,51,49,46,55,49,51,48,55,93,44,91,45,56,49,46,48,53,49,53,50,49,44,51,49,46,55,48,53,49,57,56,93,44,91,45,56,48,46,55,56,50,57,54,44,51,49,46,57,57,53,57,53,52,93,44,91,45,56,49,46,48,48,52,51,48,53,44,51,50,46,49,48,50,51,54,55,93,44,91,45,56,49,46,49,49,55,50,50,53,44,51,50,46,49,49,55,54,48,52,93,44,91,45,56,49,46,49,52,52,53,55,50,44,51,50,46,50,50,54,49,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,51,57,44,34,98,101,100,115,34,58,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,52,50,53,55,56,44,51,48,46,49,52,51,49,49,55,93,44,91,45,56,50,46,52,53,56,51,54,52,44,51,48,46,49,51,54,52,52,57,93,44,91,45,56,50,46,53,54,57,50,56,44,50,57,46,57,55,52,57,56,93,44,91,45,56,50,46,53,50,57,55,48,53,44,50,57,46,57,52,48,56,56,49,93,44,91,45,56,50,46,52,49,56,55,50,56,44,50,57,46,57,50,51,48,57,51,93,44,91,45,56,50,46,51,49,51,51,56,53,44,50,57,46,57,53,52,55,48,52,93,44,91,45,56,50,46,49,52,50,53,55,56,44,51,48,46,49,52,51,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,71,101,110,101,115,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,49,49,50,44,34,98,101,100,115,34,58,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,54,52,52,52,57,44,52,51,46,48,56,56,55,48,51,93,44,91,45,55,56,46,52,54,52,51,56,49,44,52,50,46,56,54,55,52,54,49,93,44,91,45,55,55,46,57,53,52,57,54,52,44,52,50,46,56,54,50,55,53,52,93,44,91,45,55,55,46,57,48,57,56,51,50,44,52,50,46,57,56,55,55,54,50,93,44,91,45,55,55,46,57,57,55,50,57,44,52,51,46,49,51,50,57,56,49,93,44,91,45,55,56,46,52,54,53,53,48,53,44,52,51,46,49,50,56,54,49,57,93,44,91,45,55,56,46,52,54,52,52,52,57,44,52,51,46,48,56,56,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,49,51,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,44,91,45,57,53,46,51,56,56,48,55,56,44,52,51,46,50,53,53,50,50,49,93,44,91,45,57,53,46,51,56,56,49,56,50,44,52,50,46,57,48,57,56,57,55,93,44,91,45,57,52,46,57,49,51,56,57,44,52,50,46,57,48,57,55,93,44,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,70,97,108,108,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,56,56,53,52,57,53,44,52,54,46,49,51,54,53,57,53,93,44,91,45,49,48,52,46,53,49,54,49,50,54,44,52,54,46,49,51,54,49,57,54,93,44,91,45,49,48,52,46,51,57,48,55,52,52,44,52,54,46,48,53,52,56,50,54,93,44,91,45,49,48,52,46,51,57,48,56,55,54,44,52,53,46,57,55,48,51,54,51,93,44,91,45,49,48,52,46,49,51,52,56,52,50,44,52,53,46,57,54,56,56,51,51,93,44,91,45,49,48,52,46,48,52,52,49,57,52,44,52,53,46,56,56,49,57,55,53,93,44,91,45,49,48,52,46,48,52,53,53,52,55,44,52,53,46,57,52,53,51,48,56,93,44,91,45,49,48,52,46,48,52,53,53,53,57,44,52,54,46,50,56,48,48,56,49,93,44,91,45,49,48,52,46,48,52,53,50,49,49,44,52,54,46,53,52,48,56,54,49,93,44,91,45,49,48,52,46,48,52,53,50,51,52,44,52,54,46,54,52,49,53,48,52,93,44,91,45,49,48,52,46,51,53,52,56,51,53,44,52,54,46,54,52,49,52,48,57,93,44,91,45,49,48,52,46,52,49,55,57,57,56,44,52,54,46,54,56,52,56,57,50,93,44,91,45,49,48,52,46,54,48,54,57,48,51,44,52,54,46,54,56,52,57,50,52,93,44,91,45,49,48,52,46,55,51,51,48,53,57,44,52,54,46,54,49,50,54,57,53,93,44,91,45,49,48,52,46,55,51,50,54,55,50,44,52,54,46,52,56,50,50,48,50,93,44,91,45,49,48,52,46,57,48,53,57,56,56,44,52,54,46,52,56,50,50,53,49,93,44,91,45,49,48,52,46,56,56,53,52,57,53,44,52,54,46,49,51,54,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,80,111,116,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,54,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,55,48,56,57,56,55,44,52,53,46,50,52,53,56,54,54,93,44,91,45,49,48,48,46,50,54,48,50,50,51,44,52,53,46,50,52,54,56,49,93,44,91,45,49,48,48,46,51,50,53,52,53,49,44,52,53,46,48,57,57,51,51,55,93,44,91,45,49,48,48,46,52,50,51,57,49,56,44,52,52,46,57,57,48,48,48,54,93,44,91,45,49,48,48,46,52,48,52,55,53,51,44,52,52,46,56,57,55,54,57,53,93,44,91,45,57,57,46,54,55,52,50,53,50,44,52,52,46,56,57,55,53,48,51,93,44,91,45,57,57,46,53,55,50,54,57,57,44,52,52,46,56,57,55,50,54,51,93,44,91,45,57,57,46,53,55,51,51,51,44,52,53,46,50,52,53,51,54,52,93,44,91,45,57,57,46,55,48,56,57,56,55,44,52,53,46,50,52,53,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,67,117,108,98,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,49,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,49,56,51,53,55,44,51,50,46,48,48,48,52,49,56,93,44,91,45,49,48,52,46,57,48,57,49,50,52,44,51,49,46,50,52,54,54,48,57,93,44,91,45,49,48,52,46,57,49,55,49,54,51,44,51,48,46,54,54,51,54,50,54,93,44,91,45,49,48,52,46,49,48,50,51,53,49,44,51,49,46,49,48,53,50,48,51,93,44,91,45,49,48,52,46,48,50,52,53,49,50,44,51,50,46,48,48,48,49,48,50,93,44,91,45,49,48,52,46,56,52,55,55,52,44,51,50,46,48,48,48,52,49,53,93,44,91,45,49,48,52,46,57,49,56,51,53,55,44,51,50,46,48,48,48,52,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,57,52,52,44,34,98,101,100,115,34,58,49,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,55,56,50,57,56,52,44,52,51,46,56,49,52,49,52,55,93,44,91,45,55,48,46,54,53,57,51,54,57,44,52,51,46,55,57,48,51,56,54,93,44,91,45,55,48,46,53,52,57,57,54,53,44,52,51,46,55,49,53,55,57,54,93,44,91,45,55,48,46,52,57,50,48,48,57,44,52,51,46,54,48,54,55,54,57,93,44,91,45,55,48,46,50,50,50,48,57,44,52,51,46,52,54,54,56,55,56,93,44,91,45,55,48,46,49,53,53,57,56,54,44,52,51,46,53,50,52,52,52,52,93,44,91,45,54,57,46,56,56,49,56,57,53,44,52,51,46,54,51,54,52,54,54,93,44,91,45,54,57,46,56,57,51,50,51,50,44,52,51,46,56,55,56,53,49,56,93,44,91,45,55,48,46,48,51,52,50,51,56,44,52,51,46,57,55,53,54,54,49,93,44,91,45,55,48,46,49,49,53,56,54,44,52,51,46,57,48,54,55,49,93,44,91,45,55,48,46,51,49,53,51,55,52,44,52,52,46,48,51,55,56,48,55,93,44,91,45,55,48,46,52,56,48,48,55,56,44,52,52,46,48,51,50,48,55,56,93,44,91,45,55,48,46,54,48,51,55,56,52,44,52,52,46,48,52,49,53,51,54,93,44,91,45,55,48,46,54,50,52,51,50,57,44,52,52,46,49,55,49,48,51,54,93,44,91,45,55,48,46,56,50,49,56,48,51,44,52,52,46,48,55,55,48,56,57,93,44,91,45,55,48,46,55,49,53,52,49,56,44,52,51,46,57,54,49,56,49,53,93,44,91,45,55,48,46,55,56,50,57,56,52,44,52,51,46,56,49,52,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,65,116,97,115,99,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,56,50,56,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,52,57,44,50,57,46,48,57,48,52,51,52,93,44,91,45,57,56,46,56,48,48,56,52,49,44,50,56,46,54,52,55,52,56,55,93,44,91,45,57,56,46,56,48,48,56,52,56,44,50,56,46,54,52,55,51,48,54,93,44,91,45,57,56,46,51,51,53,48,52,55,44,50,56,46,54,52,56,50,55,53,93,44,91,45,57,56,46,51,51,53,48,51,49,44,50,56,46,54,49,50,54,53,56,93,44,91,45,57,56,46,48,57,56,51,49,53,44,50,56,46,55,56,54,57,52,57,93,44,91,45,57,56,46,49,57,48,57,57,49,44,50,56,46,56,56,50,51,51,51,93,44,91,45,57,56,46,52,48,55,51,51,54,44,50,57,46,49,49,52,52,51,53,93,44,91,45,57,56,46,56,48,52,55,54,51,44,50,57,46,50,53,48,54,57,51,93,44,91,45,57,56,46,56,48,52,57,44,50,57,46,48,57,48,52,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,75,105,110,103,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,55,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,54,52,56,48,52,44,51,55,46,55,51,50,54,55,53,93,44,91,45,57,56,46,52,54,52,54,54,51,44,51,55,46,52,55,49,48,49,51,93,44,91,45,57,56,46,52,54,52,57,53,49,44,51,55,46,51,56,52,48,56,54,93,44,91,45,57,56,46,51,52,57,56,48,52,44,51,55,46,51,56,52,48,53,54,93,44,91,45,57,55,46,56,48,55,48,53,55,44,51,55,46,51,56,54,50,57,51,93,44,91,45,57,55,46,56,48,55,54,44,51,55,46,52,55,52,49,56,52,93,44,91,45,57,55,46,56,48,55,56,50,51,44,51,55,46,55,51,51,56,53,53,93,44,91,45,57,56,46,52,54,52,56,48,52,44,51,55,46,55,51,50,54,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,49,34,44,34,78,65,77,69,34,58,34,82,97,98,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,53,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,56,50,57,52,57,44,51,52,46,57,57,51,51,48,49,93,44,91,45,56,51,46,53,52,57,51,55,54,44,51,52,46,57,57,50,51,57,51,93,44,91,45,56,51,46,54,53,54,50,57,55,44,51,52,46,56,55,56,56,50,51,93,44,91,45,56,51,46,54,53,50,49,57,52,44,51,52,46,56,50,50,57,57,51,93,44,91,45,56,51,46,53,52,56,57,56,56,44,51,52,46,55,52,57,52,53,49,93,44,91,45,56,51,46,51,53,50,52,52,56,44,51,52,46,55,49,54,49,50,53,93,44,91,45,56,51,46,51,50,52,49,53,44,51,52,46,55,56,55,52,55,57,93,44,91,45,56,51,46,49,50,55,51,53,55,44,51,52,46,57,53,48,49,57,53,93,44,91,45,56,51,46,49,48,56,54,49,51,44,51,53,46,48,48,48,54,53,57,93,44,91,45,56,51,46,52,56,50,57,52,57,44,51,52,46,57,57,51,51,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,85,112,115,104,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,54,48,53,44,34,98,101,100,115,34,58,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,51,48,48,50,48,57,44,51,57,46,49,48,51,56,53,55,93,44,91,45,56,48,46,51,49,57,51,52,54,44,51,56,46,57,54,48,57,49,57,93,44,91,45,56,48,46,51,56,54,57,56,57,44,51,56,46,56,55,52,56,48,56,93,44,91,45,56,48,46,51,57,51,48,54,51,44,51,56,46,55,50,55,53,55,49,93,44,91,45,56,48,46,50,56,48,48,53,57,44,51,56,46,54,57,52,56,54,55,93,44,91,45,56,48,46,49,50,54,49,48,53,44,51,56,46,55,52,53,56,51,54,93,44,91,45,56,48,46,48,56,53,48,54,50,44,51,56,46,57,52,55,50,51,54,93,44,91,45,56,48,46,48,52,52,54,57,53,44,51,57,46,48,49,48,49,56,54,93,44,91,45,56,48,46,50,50,55,49,55,51,44,51,57,46,49,49,50,55,57,50,93,44,91,45,56,48,46,51,48,48,50,48,57,44,51,57,46,49,48,51,56,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,53,34,44,34,78,65,77,69,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,55,49,44,34,98,101,100,115,34,58,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,50,57,50,53,56,44,51,55,46,54,48,50,53,52,50,93,44,91,45,57,50,46,50,52,57,52,54,51,44,51,55,46,54,48,52,53,52,51,93,44,91,45,57,50,46,50,53,50,50,54,49,44,51,55,46,52,55,50,57,52,52,93,44,91,45,57,50,46,50,53,49,51,53,57,44,51,55,46,48,53,57,54,53,51,93,44,91,45,57,50,46,48,56,56,55,48,56,44,51,55,46,48,53,54,50,52,56,93,44,91,45,57,49,46,54,53,53,54,48,55,44,51,55,46,48,52,56,57,50,53,93,44,91,45,57,49,46,54,52,54,54,50,54,44,51,55,46,52,50,50,55,51,49,93,44,91,45,57,49,46,55,53,53,48,52,44,51,55,46,52,50,52,49,49,93,44,91,45,57,49,46,56,48,57,49,48,53,44,51,55,46,53,57,56,56,54,51,93,44,91,45,57,50,46,48,50,57,50,53,56,44,51,55,46,54,48,50,53,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,51,52,54,51,44,34,98,101,100,115,34,58,52,51,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,48,56,48,52,49,44,51,52,46,52,57,50,55,54,53,93,44,91,45,57,50,46,48,50,57,57,57,54,44,51,52,46,52,56,57,51,53,50,93,44,91,45,57,50,46,48,50,57,53,51,57,44,51,52,46,54,50,49,50,52,56,93,44,91,45,57,50,46,48,55,56,55,49,49,44,51,52,46,55,50,57,57,56,51,93,44,91,45,57,50,46,48,55,48,56,48,53,44,51,53,46,48,49,49,56,48,50,93,44,91,45,57,50,46,49,50,49,51,51,54,44,51,53,46,48,49,50,50,49,93,44,91,45,57,50,46,50,50,57,56,57,51,44,51,52,46,57,50,55,53,53,56,93,44,91,45,57,50,46,53,52,52,51,52,49,44,51,52,46,57,53,51,51,49,57,93,44,91,45,57,50,46,55,53,51,54,50,54,44,51,52,46,57,49,49,50,52,56,93,44,91,45,57,50,46,55,51,57,55,55,57,44,51,52,46,56,53,51,52,53,57,93,44,91,45,57,50,46,54,53,52,51,50,52,44,51,52,46,55,54,52,53,52,49,93,44,91,45,57,50,46,51,52,56,55,52,57,44,51,52,46,53,56,50,50,57,93,44,91,45,57,50,46,50,52,53,56,49,56,44,51,52,46,52,57,51,53,48,54,93,44,91,45,57,50,46,50,48,56,48,52,49,44,51,52,46,52,57,50,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,54,55,48,56,50,50,44,52,50,46,50,49,49,52,48,56,93,44,91,45,57,53,46,54,55,50,55,55,49,44,52,49,46,56,54,51,49,52,55,93,44,91,45,57,53,46,53,53,55,50,55,55,44,52,49,46,56,54,51,52,52,57,93,44,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,44,91,45,57,53,46,48,57,48,56,53,49,44,52,50,46,50,49,48,52,48,53,93,44,91,45,57,53,46,51,50,51,52,57,55,44,52,50,46,50,49,48,57,51,50,93,44,91,45,57,53,46,54,55,48,56,50,50,44,52,50,46,50,49,49,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,110,110,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,48,54,53,44,34,98,101,100,115,34,58,50,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,55,53,48,53,54,50,44,52,50,46,57,53,49,53,50,56,93,44,91,45,49,49,50,46,53,55,57,50,56,55,44,52,50,46,57,55,50,52,53,49,93,44,91,45,49,49,50,46,53,49,53,53,49,57,44,52,50,46,57,48,57,57,55,53,93,44,91,45,49,49,50,46,52,57,54,57,49,44,52,50,46,55,51,51,48,49,51,93,44,91,45,49,49,50,46,51,56,57,52,49,56,44,52,50,46,54,50,52,51,56,50,93,44,91,45,49,49,50,46,52,49,57,56,50,53,44,52,50,46,53,48,51,48,51,56,93,44,91,45,49,49,50,46,49,50,54,49,57,52,44,52,50,46,50,56,53,50,50,57,93,44,91,45,49,49,49,46,56,57,54,55,50,56,44,52,50,46,50,53,54,50,55,54,93,44,91,45,49,49,49,46,56,55,53,54,51,54,44,52,50,46,52,49,54,49,53,56,93,44,91,45,49,49,49,46,57,49,54,57,50,55,44,52,50,46,54,49,55,50,54,52,93,44,91,45,49,49,49,46,57,55,51,51,55,51,44,52,50,46,55,49,53,52,55,50,93,44,91,45,49,49,50,46,49,48,53,56,56,44,52,50,46,54,57,57,50,48,51,93,44,91,45,49,49,50,46,49,52,53,48,56,57,44,52,50,46,55,57,48,54,54,52,93,44,91,45,49,49,50,46,49,50,55,52,50,52,44,52,50,46,57,52,52,52,57,56,93,44,91,45,49,49,50,46,48,54,51,48,50,51,44,52,51,46,48,50,50,51,54,52,93,44,91,45,49,49,50,46,54,53,54,53,53,50,44,52,51,46,48,50,49,57,52,52,93,44,91,45,49,49,50,46,55,53,48,53,54,50,44,52,50,46,57,53,49,53,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,101,97,117,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,57,54,49,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,48,51,54,51,49,44,52,49,46,55,49,53,49,51,55,93,44,91,45,56,49,46,49,48,49,52,50,50,44,52,49,46,54,52,49,52,53,55,93,44,91,45,56,49,46,50,57,52,54,54,57,44,52,49,46,54,52,48,56,56,57,93,44,91,45,56,49,46,51,57,49,48,48,53,44,52,49,46,53,54,57,55,49,54,93,44,91,45,56,49,46,51,57,49,54,57,52,44,52,49,46,51,52,56,50,55,50,93,44,91,45,56,49,46,48,48,51,51,49,57,44,52,49,46,51,52,55,56,54,93,44,91,45,56,49,46,48,48,51,49,50,53,44,52,49,46,53,48,49,54,56,53,93,44,91,45,56,49,46,48,48,51,54,51,49,44,52,49,46,55,49,53,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,97,121,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,53,51,48,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,57,53,48,57,57,44,49,56,46,49,54,57,48,55,55,93,44,91,45,54,54,46,50,49,54,56,57,57,44,49,56,46,49,52,51,50,50,93,44,91,45,54,54,46,50,50,52,52,57,44,49,56,46,48,57,53,51,51,57,93,44,91,45,54,54,46,49,54,54,49,52,53,44,49,56,46,48,53,48,48,54,51,93,44,91,45,54,54,46,48,53,51,49,52,54,44,49,56,46,49,48,55,50,57,51,93,44,91,45,54,54,46,48,53,49,55,56,56,44,49,56,46,49,48,57,56,55,56,93,44,91,45,54,54,46,48,53,50,53,53,53,44,49,56,46,49,49,51,48,54,57,93,44,91,45,54,54,46,48,57,53,48,57,57,44,49,56,46,49,54,57,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,84,117,108,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,48,52,55,55,44,34,98,101,100,115,34,58,55,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,53,51,56,49,49,54,44,51,53,46,55,56,57,53,54,55,93,44,91,45,49,49,56,46,54,50,57,57,55,53,44,51,53,46,55,56,57,53,56,93,44,91,45,49,49,56,46,48,48,56,48,52,51,44,51,53,46,55,56,57,49,54,49,93,44,91,45,49,49,55,46,57,56,50,52,55,51,44,51,53,46,56,57,53,55,57,54,93,44,91,45,49,49,56,46,49,50,55,54,48,49,44,51,54,46,50,56,48,51,52,56,93,44,91,45,49,49,56,46,49,48,48,49,49,54,44,51,54,46,51,50,56,56,50,51,93,44,91,45,49,49,56,46,50,52,56,57,50,44,51,54,46,52,56,54,53,51,53,93,44,91,45,49,49,56,46,51,54,48,53,56,54,44,51,54,46,55,52,52,55,55,51,93,44,91,45,49,49,56,46,57,56,50,52,52,49,44,51,54,46,55,52,49,54,52,54,93,44,91,45,49,49,56,46,57,56,52,55,55,57,44,51,54,46,54,53,55,49,52,55,93,44,91,45,49,49,57,46,51,48,52,54,50,53,44,51,54,46,54,54,48,54,48,54,93,44,91,45,49,49,57,46,51,48,53,49,48,50,44,51,54,46,53,55,51,55,50,53,93,44,91,45,49,49,57,46,52,54,54,51,50,50,44,51,54,46,53,55,53,50,51,56,93,44,91,45,49,49,57,46,53,55,51,49,57,52,44,51,54,46,52,56,56,56,51,53,93,44,91,45,49,49,57,46,52,55,52,56,57,50,44,51,54,46,52,48,48,57,53,51,93,44,91,45,49,49,57,46,53,50,57,51,53,56,44,51,54,46,50,54,57,56,53,93,44,91,45,49,49,57,46,53,51,56,49,49,54,44,51,53,46,55,56,57,53,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,65,114,114,111,121,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,56,50,50,54,51,44,49,56,46,48,51,50,57,53,56,93,44,91,45,54,54,46,48,54,52,53,48,51,44,49,55,46,57,48,52,56,50,53,93,44,91,45,54,53,46,57,56,55,53,53,49,44,49,55,46,57,48,56,57,50,51,93,44,91,45,54,54,46,48,56,50,50,54,51,44,49,56,46,48,51,50,57,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,83,97,110,32,71,101,114,109,195,161,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,49,49,52,44,34,98,101,100,115,34,58,50,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,48,56,54,51,53,57,44,49,56,46,49,52,57,56,50,57,93,44,91,45,54,55,46,49,48,48,52,57,50,44,49,56,46,49,48,54,51,57,53,93,44,91,45,54,55,46,49,48,57,48,52,52,44,49,56,46,48,53,54,48,56,53,93,44,91,45,54,54,46,57,56,51,51,51,55,44,49,56,46,48,53,50,53,49,56,93,44,91,45,54,54,46,57,55,55,56,53,53,44,49,56,46,49,52,51,55,57,57,93,44,91,45,54,55,46,48,53,49,52,54,49,44,49,56,46,49,55,52,48,53,51,93,44,91,45,54,55,46,48,56,54,51,53,57,44,49,56,46,49,52,57,56,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,56,53,54,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,56,55,57,57,53,44,52,51,46,54,51,49,53,52,51,93,44,91,45,55,55,46,51,55,49,52,55,56,44,52,51,46,48,51,52,54,57,54,93,44,91,45,55,55,46,49,51,52,51,51,53,44,52,51,46,48,51,57,57,50,54,93,44,91,45,55,54,46,57,54,51,57,50,54,44,52,51,46,48,49,51,49,53,55,93,44,91,45,55,54,46,55,49,51,56,48,54,44,52,51,46,48,50,52,48,51,53,93,44,91,45,55,54,46,55,48,50,51,50,53,44,52,51,46,48,56,48,51,57,51,93,44,91,45,55,54,46,55,53,51,53,51,56,44,52,51,46,54,56,52,50,55,53,93,44,91,45,55,54,46,55,55,54,50,51,51,44,52,51,46,54,50,57,53,50,57,93,44,91,45,55,55,46,51,56,55,57,57,53,44,52,51,46,54,51,49,53,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,82,111,99,107,98,114,105,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,54,52,55,53,56,57,44,51,55,46,56,55,52,53,51,56,93,44,91,45,55,57,46,54,55,52,49,54,50,44,51,55,46,55,54,51,48,57,51,93,44,91,45,55,57,46,54,56,51,53,53,52,44,51,55,46,54,54,49,55,54,51,93,44,91,45,55,57,46,52,57,56,54,57,57,44,51,55,46,53,51,50,55,57,55,93,44,91,45,55,57,46,52,51,54,57,52,55,44,51,55,46,54,49,55,48,53,55,93,44,91,45,55,57,46,51,52,53,50,51,53,44,51,55,46,54,54,48,54,50,53,93,44,91,45,55,57,46,50,54,52,54,55,52,44,51,55,46,55,57,52,54,57,52,93,44,91,45,55,57,46,49,55,50,49,51,49,44,51,55,46,56,48,51,48,57,55,93,44,91,45,55,57,46,49,53,55,51,57,44,51,55,46,56,57,49,48,48,51,93,44,91,45,55,57,46,52,56,50,54,54,56,44,51,56,46,48,56,54,48,53,52,93,44,91,45,55,57,46,54,52,55,53,56,57,44,51,55,46,56,55,52,53,51,56,93,93,44,91,91,45,55,57,46,52,54,49,53,56,50,44,51,55,46,55,56,54,51,53,54,93,44,91,45,55,57,46,52,51,55,51,51,55,44,51,55,46,55,57,52,55,56,52,93,44,91,45,55,57,46,52,50,48,56,50,52,44,51,55,46,55,56,56,57,57,56,93,44,91,45,55,57,46,52,53,53,54,54,55,44,51,55,46,55,54,53,50,49,57,93,44,91,45,55,57,46,52,54,49,53,56,50,44,51,55,46,55,56,54,51,53,54,93,93,44,91,91,45,55,57,46,51,56,49,53,48,57,44,51,55,46,55,52,50,49,52,57,93,44,91,45,55,57,46,51,51,49,50,53,50,44,51,55,46,55,52,52,51,51,54,93,44,91,45,55,57,46,51,54,48,55,54,50,44,51,55,46,55,48,50,54,54,54,93,44,91,45,55,57,46,51,56,49,53,48,57,44,51,55,46,55,52,50,49,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,84,111,119,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,54,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,55,48,51,57,50,44,52,56,46,53,52,52,50,51,50,93,44,91,45,57,56,46,57,57,57,56,57,44,52,56,46,55,49,56,49,50,57,93,44,91,45,57,56,46,57,57,57,56,48,50,44,52,57,46,48,48,48,48,48,54,93,44,91,45,57,57,46,53,50,53,55,55,57,44,52,56,46,57,57,57,51,48,55,93,44,91,45,57,57,46,53,50,53,56,57,53,44,52,56,46,55,49,56,51,56,52,93,44,91,45,57,57,46,52,57,51,49,56,57,44,52,56,46,53,52,52,56,51,52,93,44,91,45,57,57,46,52,57,50,57,49,57,44,52,56,46,51,55,48,57,52,54,93,44,91,45,57,57,46,50,48,48,51,48,54,44,52,56,46,51,55,48,54,53,56,93,44,91,45,57,56,46,57,55,48,56,52,50,44,52,56,46,51,55,48,52,49,52,93,44,91,45,57,56,46,57,55,48,51,57,50,44,52,56,46,53,52,52,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,53,50,55,44,34,98,101,100,115,34,58,49,49,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,51,54,49,48,54,54,44,52,48,46,48,54,53,53,52,51,93,44,91,45,55,53,46,53,50,51,56,49,54,44,51,57,46,57,52,52,49,50,52,93,44,91,45,55,53,46,53,57,52,56,56,44,51,57,46,56,51,55,53,50,53,93,44,91,45,55,53,46,53,57,51,48,57,57,44,51,57,46,56,51,55,55,50,51,93,44,91,45,55,53,46,53,55,57,57,50,54,44,51,57,46,56,51,56,56,54,50,93,44,91,45,55,53,46,52,49,53,48,54,50,44,51,57,46,56,48,49,57,49,57,93,44,91,45,55,53,46,50,49,49,52,54,51,44,51,57,46,56,54,55,48,48,52,93,44,91,45,55,53,46,50,55,54,52,56,50,44,51,57,46,57,55,54,57,53,57,93,44,91,45,55,53,46,51,54,49,48,54,54,44,52,48,46,48,54,53,53,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,78,105,97,103,97,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,55,48,52,44,34,98,101,100,115,34,58,52,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,54,56,55,49,49,44,52,51,46,54,51,51,52,50,56,93,44,91,45,55,56,46,54,56,56,50,57,53,44,52,51,46,54,51,52,55,52,50,93,44,91,45,55,57,46,50,48,48,57,51,54,44,52,51,46,52,53,48,52,50,50,93,44,91,45,55,57,46,48,55,48,52,53,50,44,52,51,46,50,54,50,52,53,53,93,44,91,45,55,57,46,48,49,57,50,50,56,44,52,51,46,48,54,55,57,53,56,93,44,91,45,55,56,46,56,51,57,51,53,44,52,51,46,48,49,57,52,53,51,93,44,91,45,55,56,46,56,48,50,48,53,49,44,52,51,46,48,54,53,55,56,49,93,44,91,45,55,56,46,52,54,52,52,52,57,44,52,51,46,48,56,56,55,48,51,93,44,91,45,55,56,46,52,54,53,53,48,53,44,52,51,46,49,50,56,54,49,57,93,44,91,45,55,56,46,52,54,56,55,49,49,44,52,51,46,54,51,51,52,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,110,110,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,57,50,48,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,50,53,52,54,51,51,44,52,51,46,51,49,52,54,55,53,93,44,91,45,55,51,46,50,55,52,50,57,52,44,52,50,46,57,52,51,54,53,50,93,44,91,45,55,51,46,50,54,52,56,50,55,44,52,50,46,55,52,53,56,53,49,93,44,91,45,55,51,46,48,50,51,48,49,53,44,52,50,46,55,52,49,49,51,53,93,44,91,45,55,50,46,57,51,48,50,53,56,44,52,50,46,55,51,57,50,57,51,93,44,91,45,55,50,46,57,50,49,51,55,54,44,52,50,46,57,50,54,55,57,50,93,44,91,45,55,51,46,48,48,56,48,54,51,44,52,50,46,57,51,48,48,56,55,93,44,91,45,55,50,46,57,57,54,57,44,52,51,46,49,49,57,48,57,53,93,44,91,45,55,50,46,56,54,56,55,51,55,44,52,51,46,49,49,51,49,55,93,44,91,45,55,50,46,56,49,57,51,54,56,44,52,51,46,50,53,53,52,57,56,93,44,91,45,55,50,46,56,54,55,57,48,50,44,52,51,46,51,48,48,55,52,50,93,44,91,45,55,51,46,50,53,52,54,51,51,44,52,51,46,51,49,52,54,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,50,57,49,44,34,98,101,100,115,34,58,53,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,56,48,50,49,53,44,51,48,46,49,50,49,50,52,93,44,91,45,56,49,46,54,55,57,54,50,54,44,51,48,46,49,57,48,52,57,53,93,44,91,45,56,50,46,48,52,57,52,49,49,44,51,48,46,49,56,54,57,51,51,93,44,91,45,56,50,46,48,52,57,52,50,53,44,51,48,46,49,52,51,49,51,54,93,44,91,45,56,50,46,48,52,57,50,52,52,44,50,57,46,55,49,56,54,55,93,44,91,45,56,49,46,57,51,57,52,50,55,44,50,57,46,55,52,55,52,57,55,93,44,91,45,56,49,46,56,49,50,52,51,44,50,57,46,56,51,54,52,57,93,44,91,45,56,49,46,53,56,49,50,48,55,44,50,57,46,56,52,48,49,55,54,93,44,91,45,56,49,46,54,49,48,49,52,54,44,50,57,46,57,55,48,50,51,53,93,44,91,45,56,49,46,54,56,56,56,55,54,44,51,48,46,48,50,56,53,54,54,93,44,91,45,56,49,46,54,56,48,50,49,53,44,51,48,46,49,50,49,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,87,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,54,53,53,56,44,34,98,101,100,115,34,58,50,51,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,55,53,49,50,55,51,44,51,54,46,48,55,48,56,51,52,93,44,91,45,55,56,46,54,57,57,51,49,54,44,51,54,46,48,49,49,52,52,56,93,44,91,45,55,56,46,56,50,57,57,54,53,44,51,53,46,56,54,54,57,55,56,93,44,91,45,55,56,46,57,48,54,48,55,49,44,51,53,46,56,54,56,48,57,54,93,44,91,45,55,56,46,57,57,53,48,53,57,44,51,53,46,54,49,48,49,51,53,93,44,91,45,55,56,46,57,49,52,55,51,52,44,51,53,46,53,56,51,54,55,50,93,44,91,45,55,56,46,55,48,56,57,48,50,44,51,53,46,53,49,57,52,53,56,93,44,91,45,55,56,46,52,57,50,49,52,57,44,51,53,46,54,56,54,57,48,51,93,44,91,45,55,56,46,50,53,53,57,55,51,44,51,53,46,56,49,56,49,50,93,44,91,45,55,56,46,52,50,54,56,54,52,44,51,53,46,57,55,53,48,49,50,93,44,91,45,55,56,46,53,52,54,52,49,52,44,51,54,46,48,50,49,56,50,54,93,44,91,45,55,56,46,55,53,49,50,55,51,44,51,54,46,48,55,48,56,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,50,48,51,55,44,34,98,101,100,115,34,58,52,55,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,49,57,52,53,44,51,57,46,51,48,53,49,53,51,93,44,91,45,56,52,46,56,50,48,49,53,55,44,51,57,46,49,48,53,52,56,57,93,44,91,45,56,52,46,55,53,48,51,52,53,44,51,57,46,49,52,55,54,50,50,93,44,91,45,56,52,46,54,50,51,52,56,56,44,51,57,46,48,55,52,50,56,50,93,44,91,45,56,52,46,53,48,54,49,54,49,44,51,57,46,48,57,53,49,55,55,93,44,91,45,56,52,46,51,49,57,57,56,53,44,51,57,46,48,50,49,53,51,52,93,44,91,45,56,52,46,50,53,57,52,51,49,44,51,57,46,50,55,48,55,57,54,93,44,91,45,56,52,46,51,53,51,50,48,57,44,51,57,46,50,57,50,50,56,55,93,44,91,45,56,52,46,56,49,57,52,53,44,51,57,46,51,48,53,49,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,114,103,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,57,57,57,57,44,34,98,101,100,115,34,58,50,56,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,50,49,49,50,50,52,44,52,49,46,49,51,51,55,49,52,93,44,91,45,55,52,46,50,55,50,50,50,54,44,52,49,46,48,49,55,57,51,53,93,44,91,45,55,52,46,49,52,49,48,57,52,44,52,48,46,57,54,54,51,55,52,93,44,91,45,55,52,46,49,51,48,48,49,54,44,52,48,46,56,49,57,57,51,56,93,44,91,45,55,52,46,49,52,55,53,50,57,44,52,48,46,55,56,54,52,57,49,93,44,91,45,55,51,46,57,56,52,55,57,52,44,52,48,46,55,57,55,54,56,55,93,44,91,45,55,51,46,57,51,51,56,48,56,44,52,48,46,56,56,50,50,49,52,93,44,91,45,55,51,46,57,49,55,57,48,53,44,52,48,46,57,49,55,53,55,55,93,44,91,45,55,51,46,56,57,51,57,55,57,44,52,48,46,57,57,55,50,48,53,93,44,91,45,55,52,46,50,49,49,50,50,52,44,52,49,46,49,51,51,55,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,52,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,54,55,55,51,50,50,93,44,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,48,53,48,55,53,55,93,44,91,45,49,49,53,46,56,57,51,56,53,55,44,51,56,46,48,53,48,53,51,49,93,44,91,45,49,49,53,46,56,57,54,57,50,53,44,51,54,46,56,52,50,48,56,53,93,44,91,45,49,49,53,46,55,52,48,56,52,54,44,51,54,46,56,53,51,48,56,52,93,44,91,45,49,49,52,46,55,54,50,53,48,55,44,51,54,46,56,53,51,52,55,51,93,44,91,45,49,49,52,46,48,53,48,51,53,52,44,51,54,46,56,52,51,49,52,49,93,44,91,45,49,49,52,46,48,53,48,48,53,50,44,51,55,46,48,48,48,49,57,49,93,44,91,45,49,49,52,46,48,53,50,51,53,44,51,55,46,54,48,52,55,55,54,93,44,91,45,49,49,52,46,48,52,57,57,55,56,44,51,56,46,49,52,56,55,54,51,93,44,91,45,49,49,52,46,48,52,57,57,55,55,44,51,56,46,53,55,50,57,55,52,93,44,91,45,49,49,52,46,48,52,57,56,48,55,44,51,56,46,54,55,55,51,54,53,93,44,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,54,55,55,51,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,56,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,48,34,44,34,78,65,77,69,34,58,34,78,111,109,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,50,53,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,54,52,46,52,54,49,52,52,57,44,54,54,46,54,50,54,53,48,57,93,44,91,45,49,54,53,46,52,51,52,52,52,44,54,54,46,52,55,53,50,51,93,44,91,45,49,54,54,46,55,49,57,52,55,52,44,54,54,46,49,52,56,48,52,54,93,44,91,45,49,54,55,46,53,50,48,56,50,51,44,54,53,46,56,55,56,49,53,50,93,44,91,45,49,54,56,46,49,53,53,49,50,57,44,54,53,46,55,50,56,51,53,49,93,44,91,45,49,54,56,46,50,51,49,56,56,55,44,54,53,46,54,50,50,53,54,55,93,44,91,45,49,54,56,46,49,54,55,53,56,52,44,54,53,46,53,52,54,57,48,50,93,44,91,45,49,54,55,46,52,48,48,56,57,49,44,54,53,46,51,52,55,50,55,93,44,91,45,49,54,55,46,48,55,48,51,51,49,44,54,53,46,51,50,55,52,57,49,93,44,91,45,49,54,55,46,48,56,52,51,51,57,44,54,53,46,49,53,53,54,57,53,93,44,91,45,49,54,54,46,57,55,56,57,54,52,44,54,53,46,48,54,57,52,49,93,44,91,45,49,54,54,46,53,56,57,49,56,53,44,54,52,46,57,48,56,50,57,49,93,44,91,45,49,54,54,46,53,57,48,49,54,51,44,54,52,46,55,51,56,57,52,56,93,44,91,45,49,54,54,46,53,48,55,56,52,49,44,54,52,46,54,51,49,51,55,51,93,44,91,45,49,54,54,46,50,56,49,51,56,56,44,54,52,46,53,52,52,57,53,54,93,44,91,45,49,54,53,46,51,51,53,57,49,56,44,54,52,46,52,52,52,52,49,55,93,44,91,45,49,54,53,46,48,51,50,50,48,53,44,54,52,46,51,56,55,57,56,55,93,44,91,45,49,54,52,46,55,53,52,56,48,49,44,54,52,46,52,48,55,56,50,52,93,44,91,45,49,54,52,46,51,53,53,51,53,53,44,54,52,46,53,48,56,52,52,55,93,44,91,45,49,54,51,46,54,53,54,57,53,49,44,54,52,46,53,50,49,57,52,93,44,91,45,49,54,51,46,51,54,51,55,53,52,44,54,52,46,52,52,53,54,52,50,93,44,91,45,49,54,51,46,50,52,49,57,51,50,44,54,52,46,51,54,48,55,52,51,93,44,91,45,49,54,50,46,55,57,53,56,48,50,44,54,52,46,50,55,53,54,55,52,93,44,91,45,49,54,50,46,53,49,55,56,55,50,44,54,52,46,51,56,52,57,48,54,93,44,91,45,49,54,50,46,52,56,54,54,57,49,44,54,52,46,52,55,48,56,57,55,93,44,91,45,49,54,50,46,51,49,51,52,57,49,44,54,52,46,53,52,50,55,56,57,93,44,91,45,49,54,49,46,53,57,48,56,52,44,54,52,46,51,51,53,53,52,49,93,44,91,45,49,54,49,46,52,49,51,56,57,57,44,54,52,46,51,53,56,53,56,55,93,44,91,45,49,54,49,46,48,55,53,52,48,50,44,54,52,46,50,48,54,54,53,50,93,44,91,45,49,54,49,46,48,52,53,54,54,44,54,52,46,48,50,50,52,54,55,93,44,91,45,49,54,48,46,56,56,54,50,44,54,51,46,55,55,49,51,57,55,93,44,91,45,49,54,49,46,51,49,52,51,53,56,44,54,51,46,53,49,57,50,50,57,93,44,91,45,49,54,49,46,56,52,48,52,48,53,44,54,51,46,52,57,51,50,56,56,93,44,91,45,49,54,49,46,57,53,54,57,54,44,54,51,46,53,53,55,50,48,57,93,44,91,45,49,54,50,46,50,50,50,55,52,52,44,54,51,46,53,57,54,57,49,52,93,44,91,45,49,54,50,46,51,57,52,51,53,57,44,54,51,46,54,56,56,51,48,52,93,44,91,45,49,54,50,46,53,56,52,51,49,57,44,54,51,46,54,57,49,51,57,50,93,44,91,45,49,54,50,46,56,50,54,52,52,49,44,54,51,46,53,55,54,51,54,93,44,91,45,49,54,50,46,54,55,57,56,51,49,44,54,51,46,52,57,49,54,50,54,93,44,91,45,49,54,50,46,52,51,55,55,55,51,44,54,51,46,52,57,49,57,57,52,93,44,91,45,49,54,50,46,54,55,49,56,49,51,44,54,51,46,51,49,50,56,50,53,93,44,91,45,49,54,50,46,51,56,51,48,56,50,44,54,51,46,50,55,49,56,49,54,93,44,91,45,49,54,50,46,48,48,49,55,57,56,44,54,51,46,48,57,56,53,51,54,93,44,91,45,49,54,50,46,48,48,49,55,54,57,44,54,51,46,48,49,49,57,49,57,93,44,91,45,49,54,48,46,56,53,55,57,57,44,54,51,46,48,49,49,57,53,51,93,44,91,45,49,54,48,46,56,53,56,48,48,52,44,54,51,46,50,55,49,56,51,56,93,44,91,45,49,54,48,46,54,54,55,51,54,49,44,54,51,46,50,55,49,56,52,53,93,44,91,45,49,54,48,46,54,57,48,50,57,52,44,54,51,46,53,51,49,54,56,57,93,44,91,45,49,54,48,46,52,57,55,51,56,49,44,54,51,46,54,49,56,51,52,51,93,44,91,45,49,54,48,46,49,49,49,53,50,50,44,54,51,46,54,49,56,51,53,49,93,44,91,45,49,54,48,46,49,49,49,52,57,56,44,54,51,46,55,48,52,57,55,50,93,44,91,45,49,53,57,46,57,51,50,55,51,49,44,54,51,46,55,57,49,53,56,57,93,44,91,45,49,53,57,46,55,51,55,52,53,49,44,54,51,46,55,57,49,53,57,49,93,44,91,45,49,53,57,46,55,51,55,52,55,53,44,54,52,46,48,53,49,52,53,57,93,44,91,45,49,53,57,46,57,52,55,50,56,56,44,54,52,46,48,53,49,52,53,57,93,44,91,45,49,53,57,46,57,54,50,50,57,44,54,52,46,55,52,52,51,55,55,93,44,91,45,49,53,57,46,55,55,52,56,57,55,44,54,52,46,55,52,52,51,56,50,93,44,91,45,49,53,57,46,55,55,52,57,50,49,44,54,52,46,57,49,55,53,54,53,93,44,91,45,49,53,57,46,53,55,50,49,55,51,44,54,52,46,57,49,55,53,57,55,93,44,91,45,49,53,57,46,53,56,50,55,51,54,44,54,53,46,50,54,52,48,50,54,93,44,91,45,49,53,57,46,51,55,55,51,54,53,44,54,53,46,50,54,52,48,51,51,93,44,91,45,49,53,57,46,51,56,53,53,55,56,44,54,53,46,53,50,51,56,51,53,93,44,91,45,49,53,57,46,53,57,51,53,48,54,44,54,53,46,53,50,51,56,51,53,93,44,91,45,49,53,57,46,56,48,49,54,57,50,44,54,53,46,52,51,55,50,51,49,93,44,91,45,49,54,49,46,53,52,54,56,57,50,44,54,53,46,52,51,55,50,48,51,93,44,91,45,49,54,51,46,55,53,53,51,57,49,44,54,53,46,52,51,55,49,54,53,93,44,91,45,49,54,51,46,55,53,53,52,48,55,44,54,53,46,54,49,48,51,54,55,93,44,91,45,49,54,51,46,57,54,51,52,57,56,44,54,53,46,54,49,48,51,54,51,93,44,91,45,49,54,51,46,57,54,51,53,49,54,44,54,53,46,55,56,51,53,54,49,93,44,91,45,49,54,52,46,50,52,52,49,50,55,44,54,53,46,55,56,51,53,53,51,93,44,91,45,49,54,52,46,50,52,52,49,57,49,44,54,54,46,49,50,57,57,52,54,93,44,91,45,49,54,52,46,51,49,56,57,49,51,44,54,54,46,49,50,57,57,52,52,93,44,91,45,49,54,52,46,51,49,56,57,51,54,44,54,54,46,52,55,54,51,49,57,93,44,91,45,49,54,52,46,52,54,49,52,52,57,44,54,54,46,54,50,54,53,48,57,93,93,93,44,91,91,91,45,49,55,49,46,57,53,52,54,55,50,44,54,51,46,53,50,48,57,49,57,93,44,91,45,49,55,49,46,56,56,52,56,56,55,44,54,51,46,51,55,55,53,57,93,44,91,45,49,55,49,46,55,55,50,50,56,52,44,54,51,46,51,49,53,51,50,55,93,44,91,45,49,55,49,46,52,56,49,57,51,53,44,54,51,46,50,53,52,53,51,49,93,44,91,45,49,55,49,46,50,53,49,51,57,56,44,54,51,46,50,57,50,53,54,56,93,44,91,45,49,55,49,46,48,54,54,56,51,54,44,54,51,46,51,55,49,49,48,56,93,44,91,45,49,55,48,46,57,48,56,50,52,57,44,54,51,46,51,54,57,57,52,53,93,44,91,45,49,55,48,46,53,49,53,50,55,54,44,54,51,46,50,56,55,57,49,93,44,91,45,49,55,48,46,51,50,56,48,50,50,44,54,51,46,49,51,56,55,50,52,93,44,91,45,49,55,48,46,49,49,53,52,49,54,44,54,51,46,49,50,55,50,52,55,93,44,91,45,49,54,57,46,57,48,49,52,48,56,44,54,51,46,48,51,55,51,54,53,93,44,91,45,49,54,57,46,56,51,56,57,53,50,44,54,50,46,57,50,53,56,56,57,93,44,91,45,49,54,57,46,53,57,49,48,51,54,44,54,50,46,56,56,55,56,54,55,93,44,91,45,49,54,57,46,52,49,57,56,54,49,44,54,50,46,57,55,51,56,53,54,93,44,91,45,49,54,57,46,52,53,49,48,56,51,44,54,51,46,48,51,56,53,53,49,93,44,91,45,49,54,57,46,50,56,50,51,50,54,44,54,51,46,49,49,52,52,48,53,93,44,91,45,49,54,56,46,57,50,50,55,56,44,54,51,46,48,57,57,53,54,55,93,44,91,45,49,54,56,46,55,51,51,52,54,44,54,51,46,49,51,49,53,53,51,93,44,91,45,49,54,56,46,54,48,57,50,54,49,44,54,51,46,50,50,57,51,54,50,93,44,91,45,49,54,56,46,54,52,50,55,54,56,44,54,51,46,51,52,52,56,56,93,44,91,45,49,54,57,46,52,53,53,53,51,57,44,54,51,46,52,49,53,48,50,93,44,91,45,49,54,57,46,54,48,50,50,56,53,44,54,51,46,52,56,48,54,51,53,93,44,91,45,49,54,57,46,57,50,54,53,57,57,44,54,51,46,53,50,54,55,51,57,93,44,91,45,49,54,57,46,57,56,53,54,50,56,44,54,51,46,54,50,50,57,53,57,93,44,91,45,49,55,48,46,50,57,54,56,52,54,44,54,51,46,55,53,53,53,55,50,93,44,91,45,49,55,48,46,53,48,52,48,51,44,54,51,46,55,53,51,52,93,44,91,45,49,55,48,46,57,53,57,49,53,53,44,54,51,46,54,50,53,56,56,56,93,44,91,45,49,55,49,46,53,51,53,54,48,51,44,54,51,46,55,50,49,56,55,53,93,44,91,45,49,55,49,46,53,52,56,56,51,44,54,51,46,56,48,48,52,54,49,93,44,91,45,49,55,49,46,55,55,54,51,55,50,44,54,51,46,56,51,55,55,50,52,93,44,91,45,49,55,49,46,57,53,52,54,55,50,44,54,51,46,53,50,48,57,49,57,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,77,99,67,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,49,56,54,50,44,52,55,46,57,53,55,52,53,55,93,44,91,45,49,48,54,46,50,54,48,57,51,50,44,52,55,46,56,54,56,52,51,49,93,44,91,45,49,48,54,46,50,54,49,49,50,49,44,52,55,46,53,50,57,48,53,50,93,44,91,45,49,48,54,46,50,57,56,49,53,56,44,52,55,46,51,53,52,50,57,56,93,44,91,45,49,48,54,46,49,55,48,54,55,53,44,52,55,46,51,53,52,52,57,53,93,44,91,45,49,48,54,46,49,55,48,52,50,44,52,55,46,49,56,48,56,50,54,93,44,91,45,49,48,54,46,48,56,54,55,55,55,44,52,55,46,49,56,48,57,51,56,93,44,91,45,49,48,53,46,57,53,57,56,57,55,44,52,55,46,48,57,50,57,54,56,93,44,91,45,49,48,53,46,56,51,51,48,52,52,44,52,55,46,49,56,49,48,57,50,93,44,91,45,49,48,53,46,52,48,54,51,48,57,44,52,55,46,49,56,49,53,56,51,93,44,91,45,49,48,53,46,52,48,54,53,56,49,44,52,55,46,53,50,57,53,51,52,93,44,91,45,49,48,53,46,51,54,51,50,54,50,44,52,55,46,55,57,48,52,49,57,93,44,91,45,49,48,53,46,50,51,52,55,55,49,44,52,55,46,55,57,48,53,48,50,93,44,91,45,49,48,53,46,49,57,53,49,50,50,44,52,55,46,56,54,56,48,56,49,93,44,91,45,49,48,53,46,49,57,52,55,56,51,44,52,56,46,48,54,54,54,49,55,93,44,91,45,49,48,53,46,50,50,56,57,57,44,52,56,46,48,56,57,50,56,52,93,44,91,45,49,48,53,46,53,57,53,48,50,55,44,52,56,46,48,56,49,55,56,93,44,91,45,49,48,53,46,56,52,51,56,57,49,44,52,56,46,48,49,48,50,56,57,93,44,91,45,49,48,54,46,50,50,57,51,48,50,44,52,56,46,48,50,54,52,49,54,93,44,91,45,49,48,54,46,51,57,52,49,54,51,44,52,56,46,48,54,52,55,50,54,93,44,91,45,49,48,54,46,52,49,56,54,50,44,52,55,46,57,53,55,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,117,99,104,97,110,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,50,53,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,56,49,54,54,49,44,52,50,46,54,52,50,48,53,54,93,44,91,45,57,50,46,48,54,52,55,54,54,44,52,50,46,50,57,55,50,53,57,93,44,91,45,57,49,46,56,51,49,48,56,57,44,52,50,46,50,57,57,48,54,51,93,44,91,45,57,49,46,53,57,54,57,56,49,44,52,50,46,50,57,54,52,48,56,93,44,91,45,57,49,46,54,48,55,48,53,57,44,52,50,46,54,52,51,57,55,51,93,44,91,45,57,50,46,48,56,49,54,54,49,44,52,50,46,54,52,50,48,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,117,80,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,49,55,52,51,44,34,98,101,100,115,34,58,49,57,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,50,56,57,55,51,44,52,49,46,54,56,53,50,52,50,93,44,91,45,56,55,46,57,49,52,50,54,52,44,52,49,46,55,49,54,53,57,56,93,44,91,45,56,55,46,57,50,48,52,55,54,44,52,49,46,57,57,51,56,56,54,93,44,91,45,56,56,46,50,54,50,56,55,53,44,52,49,46,57,56,54,51,55,56,93,44,91,45,56,56,46,50,54,49,57,53,50,44,52,49,46,55,50,52,54,53,50,93,44,91,45,56,56,46,50,54,49,50,55,53,44,52,49,46,55,50,52,54,53,54,93,44,91,45,56,56,46,48,50,56,57,55,51,44,52,49,46,54,56,53,50,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,97,108,108,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,52,56,48,51,44,52,51,46,52,55,55,56,49,53,93,44,91,45,49,48,52,46,48,53,51,48,50,56,44,52,51,46,48,48,48,53,56,53,93,44,91,45,49,48,51,46,53,48,53,49,44,52,51,46,48,48,48,55,55,93,44,91,45,49,48,51,46,48,48,48,54,48,57,44,52,51,46,48,48,48,55,53,49,93,44,91,45,49,48,51,46,48,48,48,57,49,51,44,52,51,46,52,55,54,56,52,56,93,44,91,45,49,48,52,46,48,53,52,56,48,51,44,52,51,46,52,55,55,56,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,75,105,116,116,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,51,55,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,50,56,55,50,50,44,52,57,46,48,48,48,53,54,50,93,44,91,45,57,55,46,50,51,52,49,50,56,44,52,56,46,57,52,55,56,57,56,93,44,91,45,57,55,46,49,48,53,52,52,50,44,52,56,46,54,56,57,54,52,56,93,44,91,45,57,55,46,49,54,51,51,53,53,44,52,56,46,53,52,51,57,54,55,93,44,91,45,57,54,46,51,56,55,56,51,53,44,52,56,46,53,52,52,51,48,56,93,44,91,45,57,54,46,52,48,53,52,48,56,44,52,56,46,57,57,57,57,56,51,93,44,91,45,57,55,46,50,50,56,55,50,50,44,52,57,46,48,48,48,53,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,57,34,44,34,78,65,77,69,34,58,34,79,99,111,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,48,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,52,55,48,51,49,44,51,51,46,57,48,54,49,57,56,93,44,91,45,56,51,46,53,48,53,57,50,56,44,51,51,46,56,49,55,55,54,93,44,91,45,56,51,46,52,48,54,49,56,57,44,51,51,46,54,57,56,51,48,55,93,44,91,45,56,51,46,50,56,48,51,52,44,51,51,46,55,54,49,55,55,52,93,44,91,45,56,51,46,50,55,53,57,51,51,44,51,51,46,56,52,55,57,55,55,93,44,91,45,56,51,46,53,51,55,51,56,53,44,51,51,46,57,54,53,57,49,50,93,44,91,45,56,51,46,54,52,55,48,51,49,44,51,51,46,57,48,54,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,57,51,34,44,34,78,65,77,69,34,58,34,87,105,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,49,57,56,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,49,51,52,49,55,49,44,50,57,46,52,52,49,55,53,49,93,44,91,45,57,56,46,52,48,55,51,51,54,44,50,57,46,49,49,52,52,51,53,93,44,91,45,57,56,46,49,57,48,57,57,49,44,50,56,46,56,56,50,51,51,51,93,44,91,45,57,55,46,55,50,56,52,52,51,44,50,57,46,50,50,49,55,52,56,93,44,91,45,57,55,46,56,52,48,51,56,51,44,50,57,46,51,55,54,55,57,49,93,44,91,45,57,56,46,49,50,50,53,55,52,44,50,57,46,51,55,56,53,52,57,93,44,91,45,57,56,46,49,51,52,49,55,49,44,50,57,46,52,52,49,55,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,70,105,108,108,109,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,55,52,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,50,52,55,56,44,52,48,46,54,57,56,53,51,55,93,44,91,45,57,55,46,56,50,52,49,49,52,44,52,48,46,51,53,48,53,52,49,93,44,91,45,57,55,46,56,50,48,56,49,54,44,52,48,46,51,53,48,53,52,53,93,44,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,44,91,45,57,55,46,51,54,56,52,48,49,44,52,48,46,54,57,56,54,50,53,93,44,91,45,57,55,46,56,50,52,55,56,44,52,48,46,54,57,56,53,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,50,48,50,51,53,44,51,48,46,51,48,51,53,52,93,44,91,45,56,51,46,52,54,56,55,54,56,44,51,48,46,51,48,52,50,49,50,93,44,91,45,56,51,46,51,54,55,50,54,44,51,48,46,50,54,48,52,52,93,44,91,45,56,51,46,50,52,55,50,53,51,44,51,48,46,50,54,48,54,55,93,44,91,45,56,51,46,49,55,48,57,54,57,44,51,48,46,51,56,53,50,50,53,93,44,91,45,56,51,46,50,50,48,48,56,55,44,51,48,46,52,50,50,52,56,52,93,44,91,45,56,51,46,50,55,50,54,49,50,44,51,48,46,54,50,55,54,56,55,93,44,91,45,56,51,46,51,48,57,50,52,57,44,51,48,46,54,51,52,52,48,54,93,44,91,45,56,51,46,51,52,48,56,53,50,44,51,48,46,54,51,54,51,51,54,93,44,91,45,56,51,46,51,53,55,55,48,51,44,51,48,46,54,51,55,51,54,93,44,91,45,56,51,46,54,49,49,55,50,44,51,48,46,54,53,49,50,53,56,93,44,91,45,56,51,46,54,48,52,49,56,54,44,51,48,46,53,56,49,57,49,54,93,44,91,45,56,51,46,55,51,54,57,53,52,44,51,48,46,53,48,55,53,54,57,93,44,91,45,56,51,46,55,50,49,55,50,44,51,48,46,52,51,52,51,53,52,93,44,91,45,56,51,46,56,50,48,50,51,53,44,51,48,46,51,48,51,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,52,53,51,44,34,98,101,100,115,34,58,50,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,57,57,53,53,54,44,49,56,46,51,56,48,48,54,53,93,44,91,45,54,53,46,57,52,50,52,50,57,44,49,56,46,50,57,51,52,54,57,93,44,91,45,54,53,46,57,49,56,53,51,53,44,49,56,46,50,55,48,49,51,93,44,91,45,54,53,46,57,49,57,50,55,56,44,49,56,46,52,48,50,57,57,51,93,44,91,45,54,53,46,57,57,51,52,48,49,44,49,56,46,53,49,54,53,57,56,93,44,91,45,54,54,46,48,51,51,57,55,44,49,56,46,53,49,52,50,54,57,93,44,91,45,54,53,46,57,57,57,53,53,54,44,49,56,46,51,56,48,48,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,57,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,48,52,49,52,49,44,51,57,46,50,53,57,52,53,56,93,44,91,45,56,55,46,54,50,56,55,57,56,44,51,57,46,49,53,55,53,49,51,93,44,91,45,56,55,46,53,50,50,57,51,57,44,51,56,46,57,48,50,51,57,93,44,91,45,56,55,46,50,52,49,48,50,55,44,51,56,46,57,48,55,56,55,52,93,44,91,45,56,55,46,50,52,48,55,51,55,44,51,57,46,49,55,49,55,55,51,93,44,91,45,56,55,46,50,52,48,51,55,57,44,51,57,46,50,53,57,48,54,52,93,44,91,45,56,55,46,54,48,52,49,52,49,44,51,57,46,50,53,57,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,50,34,44,34,78,65,77,69,34,58,34,76,97,32,80,97,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,48,49,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,54,50,55,49,50,53,44,51,51,46,52,51,51,53,53,52,93,44,91,45,49,49,52,46,55,50,48,48,54,53,44,51,51,46,52,48,55,56,57,49,93,44,91,45,49,49,52,46,54,55,55,48,51,50,44,51,51,46,50,55,48,49,54,57,93,44,91,45,49,49,52,46,55,48,55,56,57,54,44,51,51,46,48,57,55,52,51,49,93,44,91,45,49,49,52,46,54,55,48,56,48,51,44,51,51,46,48,51,55,57,56,51,93,44,91,45,49,49,52,46,53,49,54,56,52,50,44,51,51,46,48,50,55,56,56,54,93,44,91,45,49,49,52,46,50,54,56,56,44,51,51,46,48,50,57,57,54,49,93,44,91,45,49,49,52,46,50,54,56,56,48,56,44,51,51,46,52,54,52,52,48,50,93,44,91,45,49,49,51,46,57,53,55,53,49,52,44,51,51,46,52,54,52,52,49,51,93,44,91,45,49,49,51,46,57,53,55,52,56,57,44,51,51,46,51,55,55,51,54,50,93,44,91,45,49,49,51,46,51,51,53,48,52,56,44,51,51,46,51,55,55,52,54,57,93,44,91,45,49,49,51,46,51,51,51,55,53,51,44,51,51,46,57,57,57,50,50,55,93,44,91,45,49,49,51,46,51,51,51,53,48,56,44,51,52,46,51,49,55,56,55,55,93,44,91,45,49,49,51,46,53,51,57,53,50,52,44,51,52,46,51,48,54,51,55,55,93,44,91,45,49,49,51,46,54,48,54,48,57,51,44,51,52,46,50,50,57,51,51,52,93,44,91,45,49,49,52,46,48,51,49,49,51,50,44,51,52,46,50,53,57,56,49,57,93,44,91,45,49,49,52,46,49,51,56,50,56,50,44,51,52,46,51,48,51,50,51,93,44,91,45,49,49,52,46,50,53,52,49,52,49,44,51,52,46,49,55,51,56,51,93,44,91,45,49,49,52,46,52,51,53,52,50,57,44,51,52,46,48,55,57,55,50,55,93,44,91,45,49,49,52,46,53,51,52,49,52,54,44,51,51,46,57,50,53,49,56,55,93,44,91,45,49,49,52,46,52,57,54,52,56,57,44,51,51,46,54,57,54,57,48,49,93,44,91,45,49,49,52,46,53,50,52,50,49,53,44,51,51,46,53,53,51,48,54,56,93,44,91,45,49,49,52,46,54,50,55,49,50,53,44,51,51,46,52,51,51,53,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,66,114,111,111,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,50,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,51,54,49,53,56,44,51,49,46,48,51,55,54,55,57,93,44,91,45,56,51,46,55,52,51,55,50,57,44,51,48,46,54,53,56,51,57,54,93,44,91,45,56,51,46,54,49,49,55,50,44,51,48,46,54,53,49,50,53,56,93,44,91,45,56,51,46,51,53,55,55,48,51,44,51,48,46,54,51,55,51,54,93,44,91,45,56,51,46,52,56,50,52,54,49,44,51,48,46,55,53,54,57,51,49,93,44,91,45,56,51,46,51,55,48,56,57,56,44,51,48,46,56,56,52,56,50,56,93,44,91,45,56,51,46,52,55,53,54,49,55,44,51,49,46,48,51,49,57,54,52,93,44,91,45,56,51,46,53,55,52,56,53,55,44,51,49,46,48,55,56,49,51,53,93,44,91,45,56,51,46,55,51,54,49,53,56,44,51,49,46,48,51,55,54,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,54,34,44,34,78,65,77,69,34,58,34,65,108,101,117,116,105,97,110,115,32,87,101,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,53,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,55,56,46,51,48,55,55,56,55,44,53,49,46,56,56,49,54,48,56,93,44,91,45,49,55,56,46,49,53,49,54,54,44,53,49,46,55,55,51,55,53,54,93,44,91,45,49,55,56,46,49,56,57,51,54,56,44,53,49,46,54,51,51,54,55,51,93,44,91,45,49,55,55,46,57,50,56,50,53,55,44,53,49,46,53,52,49,56,57,53,93,44,91,45,49,55,55,46,55,50,55,55,49,51,44,53,49,46,54,49,48,57,54,52,93,44,91,45,49,55,55,46,52,53,50,48,51,51,44,53,49,46,54,52,48,50,48,49,93,44,91,45,49,55,55,46,50,56,49,48,57,55,44,53,49,46,54,50,55,54,49,50,93,44,91,45,49,55,55,46,48,55,57,57,56,53,44,53,49,46,54,55,52,50,51,49,93,44,91,45,49,55,54,46,57,54,57,54,49,53,44,53,49,46,53,51,56,57,56,53,93,44,91,45,49,55,54,46,54,57,56,55,51,49,44,53,49,46,53,55,56,52,50,56,93,44,91,45,49,55,54,46,53,51,57,55,54,54,44,53,49,46,54,52,56,52,51,56,93,44,91,45,49,55,54,46,50,53,53,49,56,54,44,53,49,46,54,57,53,51,55,54,93,44,91,45,49,55,53,46,56,52,57,55,53,52,44,53,49,46,55,57,53,52,57,51,93,44,91,45,49,55,53,46,56,48,50,52,50,53,44,53,49,46,56,54,48,52,49,53,93,44,91,45,49,55,53,46,52,48,57,57,56,50,44,53,49,46,57,51,48,49,56,52,93,44,91,45,49,55,53,46,51,52,56,55,49,57,44,53,49,46,57,54,50,53,56,53,93,44,91,45,49,55,53,46,48,53,54,51,54,44,53,49,46,57,52,56,49,53,57,93,44,91,45,49,55,52,46,56,55,54,55,51,50,44,53,49,46,57,56,53,57,48,56,93,44,91,45,49,55,52,46,55,52,53,48,54,53,44,53,49,46,57,53,53,54,52,54,93,44,91,45,49,55,52,46,52,56,48,56,57,49,44,53,49,46,57,53,50,52,57,55,93,44,91,45,49,55,52,46,51,49,51,57,55,52,44,53,50,46,48,51,54,50,50,54,93,44,91,45,49,55,52,46,48,53,54,53,48,51,44,53,50,46,48,53,49,54,51,51,93,44,91,45,49,55,51,46,57,51,53,49,54,49,44,53,50,46,48,48,52,52,52,50,93,44,91,45,49,55,51,46,55,49,48,48,51,52,44,53,50,46,48,48,54,56,52,93,44,91,45,49,55,51,46,52,56,55,51,49,56,44,53,49,46,57,55,49,49,56,52,93,44,91,45,49,55,51,46,51,48,52,53,50,50,44,53,50,46,48,48,53,52,50,54,93,44,91,45,49,55,51,46,49,54,54,55,48,51,44,53,49,46,57,52,54,55,48,54,93,44,91,45,49,55,51,46,48,55,57,54,55,50,44,53,50,46,48,49,55,57,49,53,93,44,91,45,49,55,50,46,57,50,51,48,53,56,44,53,50,46,48,50,52,49,54,93,44,91,45,49,55,50,46,56,54,54,54,52,49,44,53,50,46,49,52,56,57,51,51,93,44,91,45,49,55,51,46,52,52,48,55,54,52,44,53,50,46,49,54,56,55,54,52,93,44,91,45,49,55,51,46,53,48,54,51,48,51,44,53,50,46,50,49,51,49,51,56,93,44,91,45,49,55,51,46,55,51,50,49,48,52,44,53,50,46,49,56,51,50,53,52,93,44,91,45,49,55,51,46,57,57,48,52,55,50,44,53,50,46,49,56,51,49,52,51,93,44,91,45,49,55,51,46,57,48,50,56,51,52,44,53,50,46,51,49,57,50,50,56,93,44,91,45,49,55,51,46,57,52,48,50,50,54,44,53,50,46,51,57,54,50,53,54,93,44,91,45,49,55,52,46,49,49,48,53,56,50,44,53,50,46,52,54,56,51,50,49,93,44,91,45,49,55,52,46,51,49,50,55,51,51,44,53,50,46,52,53,54,55,49,50,93,44,91,45,49,55,52,46,55,57,54,54,50,53,44,53,50,46,49,53,51,52,55,93,44,91,45,49,55,52,46,57,50,53,50,51,51,44,53,50,46,49,54,51,57,49,93,44,91,45,49,55,53,46,50,57,54,54,49,55,44,53,50,46,48,56,56,56,50,93,44,91,45,49,55,53,46,53,52,57,49,51,53,44,53,50,46,48,48,57,56,55,57,93,44,91,45,49,55,53,46,56,49,49,57,57,56,44,53,50,46,48,52,55,57,52,56,93,44,91,45,49,55,54,46,48,50,55,55,52,52,44,53,50,46,49,54,48,49,55,53,93,44,91,45,49,55,54,46,50,50,52,52,51,52,44,53,50,46,49,53,51,49,50,54,93,44,91,45,49,55,54,46,50,57,51,49,51,44,53,50,46,48,54,53,52,50,55,93,44,91,45,49,55,54,46,50,52,50,56,54,52,44,53,49,46,57,50,54,55,52,50,93,44,91,45,49,55,54,46,52,50,57,49,51,55,44,53,49,46,57,49,53,51,53,93,44,91,45,49,55,54,46,52,56,56,52,55,57,44,53,50,46,48,50,54,48,52,50,93,44,91,45,49,55,54,46,54,48,49,50,56,44,53,50,46,48,53,54,53,54,93,44,91,45,49,55,55,46,48,49,54,56,57,54,44,53,49,46,57,54,53,48,51,50,93,44,91,45,49,55,55,46,50,48,54,50,48,57,44,53,49,46,57,57,51,49,49,93,44,91,45,49,55,55,46,51,48,56,56,57,52,44,53,49,46,56,51,54,55,57,51,93,44,91,45,49,55,55,46,53,49,53,51,49,54,44,53,49,46,55,57,49,57,55,93,44,91,45,49,55,55,46,54,49,52,57,49,50,44,53,49,46,57,48,53,93,44,91,45,49,55,55,46,56,50,54,56,48,55,44,53,49,46,56,57,54,52,49,52,93,44,91,45,49,55,55,46,57,52,55,48,48,51,44,53,49,46,57,55,49,51,49,50,93,44,91,45,49,55,56,46,50,52,55,51,56,44,53,49,46,57,53,48,49,54,54,93,44,91,45,49,55,56,46,51,48,55,55,56,55,44,53,49,46,56,56,49,54,48,56,93,93,93,44,91,91,91,45,49,54,54,46,50,50,53,54,52,55,44,53,52,46,48,52,49,57,57,51,93,44,91,45,49,54,54,46,55,56,53,49,57,52,44,53,52,46,48,54,53,57,55,57,93,44,91,45,49,54,55,46,48,53,51,57,57,51,44,53,52,46,48,48,56,54,49,51,93,44,91,45,49,54,55,46,50,51,48,48,55,55,44,53,51,46,56,56,56,50,53,50,93,44,91,45,49,54,55,46,49,51,56,50,48,53,44,53,51,46,55,48,57,52,50,51,93,44,91,45,49,54,55,46,50,51,48,51,56,44,53,51,46,53,54,54,55,51,52,93,44,91,45,49,54,55,46,55,52,54,55,54,57,44,53,51,46,52,50,54,51,51,53,93,44,91,45,49,54,55,46,54,57,56,50,49,51,44,53,51,46,53,50,52,50,50,51,93,44,91,45,49,54,55,46,57,53,57,56,56,50,44,53,51,46,54,49,50,56,49,50,93,44,91,45,49,54,56,46,48,57,48,51,53,50,44,53,51,46,54,49,57,54,54,55,93,44,91,45,49,54,56,46,52,49,53,50,53,57,44,53,51,46,53,48,57,52,52,55,93,44,91,45,49,54,56,46,53,48,52,50,57,54,44,53,51,46,51,54,50,56,56,57,93,44,91,45,49,54,56,46,54,56,57,51,51,55,44,53,51,46,51,48,51,50,55,51,93,44,91,45,49,54,56,46,56,53,57,52,52,57,44,53,51,46,49,56,56,49,53,50,93,44,91,45,49,54,57,46,48,48,51,51,52,54,44,53,50,46,57,57,54,53,53,50,93,44,91,45,49,54,57,46,49,57,55,49,51,51,44,53,50,46,57,54,52,56,56,50,93,44,91,45,49,54,57,46,51,50,54,53,57,50,44,53,50,46,55,53,51,53,52,50,93,44,91,45,49,54,57,46,50,50,56,48,53,56,44,53,50,46,55,49,52,54,49,93,44,91,45,49,54,56,46,56,52,57,52,54,52,44,53,50,46,56,52,48,57,50,49,93,44,91,45,49,54,56,46,55,52,51,48,48,50,44,53,50,46,56,53,52,55,51,49,93,44,91,45,49,54,56,46,53,53,52,54,56,54,44,53,50,46,57,53,53,48,51,54,93,44,91,45,49,54,56,46,52,48,50,54,56,52,44,53,50,46,57,50,57,50,53,51,93,44,91,45,49,54,56,46,50,53,55,55,49,51,44,53,51,46,49,52,49,56,57,53,93,44,91,45,49,54,56,46,48,50,54,50,55,44,53,51,46,50,50,54,49,51,55,93,44,91,45,49,54,55,46,54,54,57,50,55,56,44,53,51,46,49,55,50,48,53,93,44,91,45,49,54,55,46,53,50,50,49,52,49,44,53,51,46,49,56,54,48,48,57,93,44,91,45,49,54,55,46,49,48,54,55,53,56,44,53,51,46,51,54,54,57,57,49,93,44,91,45,49,54,54,46,55,48,49,55,57,44,53,51,46,52,48,50,48,51,51,93,44,91,45,49,54,54,46,51,55,56,54,53,53,44,53,51,46,54,48,50,49,52,49,93,44,91,45,49,54,54,46,49,55,52,57,51,56,44,53,51,46,54,53,57,55,55,56,93,44,91,45,49,54,53,46,57,55,54,51,54,44,53,51,46,55,55,49,48,54,49,93,44,91,45,49,54,53,46,57,54,49,48,56,54,44,53,51,46,57,49,54,50,52,51,93,44,91,45,49,54,54,46,50,50,53,54,52,49,44,53,51,46,57,54,48,50,48,54,93,44,91,45,49,54,54,46,50,50,53,54,52,55,44,53,52,46,48,52,49,57,57,51,93,93,93,44,91,91,91,49,55,50,46,51,52,57,51,52,44,53,50,46,57,50,50,49,57,52,93,44,91,49,55,50,46,55,51,54,57,52,53,44,53,50,46,55,50,55,56,56,55,93,44,91,49,55,50,46,57,52,51,48,56,55,44,53,50,46,54,56,56,56,52,55,93,44,91,49,55,51,46,50,48,57,54,50,56,44,53,50,46,55,51,57,54,53,49,93,44,91,49,55,51,46,51,51,48,50,51,54,44,53,50,46,54,57,50,56,51,51,93,44,91,49,55,51,46,53,56,48,54,52,55,44,53,50,46,56,49,53,52,56,53,93,44,91,49,55,51,46,51,50,49,57,51,56,44,53,50,46,57,57,50,49,50,49,93,44,91,49,55,51,46,49,51,50,50,48,56,44,53,51,46,48,52,51,57,53,56,93,44,91,49,55,50,46,55,51,52,52,49,56,44,53,51,46,48,54,51,54,52,53,93,44,91,49,55,50,46,53,50,55,55,51,44,53,51,46,48,50,51,51,49,56,93,44,91,49,55,50,46,51,52,57,51,52,44,53,50,46,57,50,50,49,57,52,93,93,93,44,91,91,91,45,49,55,48,46,50,55,50,57,57,50,44,53,50,46,55,52,56,53,49,53,93,44,91,45,49,55,48,46,50,53,48,48,54,51,44,53,50,46,54,56,49,48,56,57,93,44,91,45,49,55,48,46,48,51,50,53,56,54,44,53,50,46,54,55,53,55,52,52,93,44,91,45,49,54,57,46,56,52,56,55,53,52,44,53,50,46,55,54,51,49,49,93,44,91,45,49,54,57,46,55,48,51,48,54,49,44,53,50,46,55,49,54,48,57,57,93,44,91,45,49,54,57,46,53,56,56,54,49,51,44,53,50,46,56,48,48,53,54,51,93,44,91,45,49,54,57,46,54,50,55,56,50,52,44,53,50,46,57,50,54,55,52,93,44,91,45,49,54,57,46,54,48,52,52,53,52,44,53,51,46,48,54,50,48,51,49,93,44,91,45,49,54,57,46,55,53,57,49,52,56,44,53,51,46,49,51,52,48,53,52,93,44,91,45,49,54,57,46,56,54,48,55,53,52,44,53,51,46,49,48,53,48,49,50,93,44,91,45,49,54,57,46,56,51,49,56,57,56,44,53,50,46,57,51,53,53,51,56,93,44,91,45,49,55,48,46,48,52,54,49,48,54,44,53,50,46,57,55,51,49,49,54,93,44,91,45,49,55,48,46,49,55,54,56,57,44,53,50,46,57,51,53,49,51,55,93,44,91,45,49,55,48,46,50,55,50,57,57,50,44,53,50,46,55,52,56,53,49,53,93,93,93,44,91,91,91,49,55,56,46,53,51,49,56,49,51,44,53,49,46,54,52,57,54,57,50,93,44,91,49,55,56,46,53,53,49,55,55,51,44,53,49,46,53,57,57,56,53,53,93,44,91,49,55,56,46,55,57,48,50,52,49,44,53,49,46,52,57,50,52,53,56,93,44,91,49,55,56,46,56,57,54,48,49,50,44,53,49,46,52,57,50,53,51,53,93,44,91,49,55,57,46,50,49,56,49,57,54,44,53,49,46,50,57,52,57,56,53,93,44,91,49,55,57,46,53,49,48,56,55,44,53,49,46,51,48,56,50,54,53,93,44,91,49,55,57,46,53,55,56,52,48,54,44,53,49,46,51,53,52,51,52,52,93,44,91,49,55,57,46,52,50,53,50,50,49,44,53,49,46,52,54,50,56,49,55,93,44,91,49,55,57,46,49,55,48,51,50,53,44,53,49,46,53,50,51,48,50,56,93,44,91,49,55,57,46,48,54,48,54,50,44,53,49,46,54,51,50,53,49,93,44,91,49,55,56,46,54,57,56,55,56,52,44,53,49,46,55,48,57,53,54,54,93,44,91,49,55,56,46,53,51,49,56,49,51,44,53,49,46,54,52,57,54,57,50,93,93,93,44,91,91,91,49,55,55,46,49,49,49,57,55,54,44,53,49,46,56,57,48,53,52,50,93,44,91,49,55,55,46,50,57,56,54,49,56,44,53,49,46,55,54,50,56,57,53,93,44,91,49,55,55,46,52,55,53,54,51,50,44,53,49,46,56,54,48,52,48,49,93,44,91,49,55,55,46,56,51,55,48,55,54,44,53,49,46,57,48,50,50,54,57,93,44,91,49,55,55,46,56,52,53,55,48,55,44,53,49,46,57,56,51,55,55,57,93,44,91,49,55,55,46,55,52,53,54,53,53,44,53,50,46,49,52,49,54,48,50,93,44,91,49,55,55,46,53,49,48,55,55,54,44,53,50,46,49,54,49,48,57,55,93,44,91,49,55,55,46,52,49,54,52,51,49,44,53,50,46,48,51,56,49,50,56,93,44,91,49,55,55,46,49,54,53,57,54,50,44,53,49,46,57,52,57,48,51,50,93,44,91,49,55,55,46,49,49,49,57,55,54,44,53,49,46,56,57,48,53,52,50,93,93,93,44,91,91,91,49,55,51,46,50,55,51,52,48,52,44,53,50,46,52,49,48,52,54,49,93,44,91,49,55,51,46,51,48,52,48,52,53,44,53,50,46,51,53,54,52,53,51,93,44,91,49,55,51,46,54,51,56,54,51,51,44,53,50,46,50,57,52,50,53,93,44,91,49,55,51,46,56,49,52,48,55,50,44,53,50,46,51,53,51,51,52,55,93,44,91,49,55,51,46,55,56,49,49,57,54,44,53,50,46,52,52,55,57,53,52,93,44,91,49,55,51,46,56,52,55,55,55,52,44,53,50,46,53,51,55,49,56,53,93,44,91,49,55,51,46,54,48,56,50,53,52,44,53,50,46,53,53,57,56,55,51,93,44,91,49,55,51,46,51,49,53,57,52,44,53,50,46,52,54,52,54,51,56,93,44,91,49,55,51,46,50,55,51,52,48,52,44,53,50,46,52,49,48,52,54,49,93,93,93,44,91,91,91,49,55,56,46,48,48,51,52,53,51,44,53,50,46,48,52,57,53,56,56,93,44,91,49,55,56,46,48,53,57,54,55,53,44,53,49,46,57,52,56,49,49,52,93,44,91,49,55,56,46,49,57,53,56,55,44,53,49,46,57,52,56,56,52,51,93,44,91,49,55,56,46,53,51,49,53,57,49,44,53,49,46,56,52,54,55,49,54,93,44,91,49,55,56,46,54,54,54,57,48,52,44,53,49,46,57,51,48,50,53,50,93,44,91,49,55,56,46,53,49,50,52,49,50,44,53,50,46,48,52,51,52,51,54,93,44,91,49,55,56,46,50,54,55,49,53,57,44,53,50,46,48,51,55,52,53,49,93,44,91,49,55,56,46,49,56,56,56,51,56,44,53,50,46,48,57,56,54,55,55,93,44,91,49,55,56,46,48,48,51,52,53,51,44,53,50,46,48,52,57,53,56,56,93,93,93,44,91,91,91,45,49,55,48,46,53,50,50,55,48,57,44,53,55,46,49,57,51,51,55,52,93,44,91,45,49,55,48,46,52,52,52,49,52,51,44,53,54,46,57,57,54,49,51,52,93,44,91,45,49,55,48,46,49,49,49,55,56,50,44,53,55,46,49,51,54,55,48,57,93,44,91,45,49,55,48,46,48,49,54,53,49,49,44,53,55,46,50,54,54,53,56,49,93,44,91,45,49,55,48,46,49,57,49,48,50,52,44,53,55,46,50,57,55,51,53,49,93,44,91,45,49,55,48,46,52,52,57,53,57,56,44,53,55,46,50,52,57,51,51,50,93,44,91,45,49,55,48,46,53,50,50,55,48,57,44,53,55,46,49,57,51,51,55,52,93,93,93,44,91,91,91,45,49,55,50,46,55,50,48,54,56,57,44,53,50,46,50,54,52,51,54,52,93,44,91,45,49,55,50,46,54,55,54,48,48,56,44,53,50,46,50,49,48,53,55,54,93,44,91,45,49,55,50,46,51,55,55,57,49,53,44,53,50,46,50,50,56,51,54,51,93,44,91,45,49,55,50,46,50,49,48,55,49,50,44,53,50,46,51,49,54,50,54,55,93,44,91,45,49,55,50,46,50,52,57,54,54,44,53,50,46,51,57,51,52,53,52,93,44,91,45,49,55,50,46,51,57,57,50,57,54,44,53,50,46,52,52,52,53,48,53,93,44,91,45,49,55,50,46,54,51,51,50,51,57,44,53,50,46,51,56,55,56,54,51,93,44,91,45,49,55,50,46,55,50,48,54,56,57,44,53,50,46,50,54,52,51,54,52,93,93,93,44,91,91,91,49,55,57,46,51,56,56,55,52,50,44,53,49,46,57,52,49,57,49,55,93,44,91,49,55,57,46,52,56,52,54,48,54,44,53,49,46,56,52,56,48,50,55,93,44,91,49,55,57,46,54,50,51,50,49,50,44,53,49,46,56,49,56,57,56,56,93,44,91,49,55,57,46,55,56,53,48,55,44,53,49,46,56,54,50,54,51,57,93,44,91,49,55,57,46,56,53,57,54,56,49,44,53,49,46,57,54,48,51,54,54,93,44,91,49,55,57,46,54,53,56,51,56,49,44,53,50,46,48,55,56,50,55,93,44,91,49,55,57,46,52,48,56,55,50,57,44,53,50,46,48,48,53,51,53,53,93,44,91,49,55,57,46,51,56,56,55,52,50,44,53,49,46,57,52,49,57,49,55,93,93,93,44,91,91,91,45,49,55,57,46,49,52,57,53,48,53,44,53,49,46,53,55,54,53,57,53,93,44,91,45,49,55,56,46,56,48,48,49,57,51,44,53,49,46,52,56,53,56,53,57,93,44,91,45,49,55,56,46,53,53,48,49,57,51,44,53,49,46,53,48,56,52,56,52,93,44,91,45,49,55,56,46,52,50,49,54,55,54,44,53,49,46,53,56,55,50,56,51,93,44,91,45,49,55,56,46,54,54,48,49,50,50,44,53,49,46,54,54,53,56,55,57,93,44,91,45,49,55,56,46,57,52,57,57,51,54,44,53,49,46,53,57,49,53,52,52,93,44,91,45,49,55,57,46,48,53,54,48,50,57,44,53,49,46,54,52,53,57,55,50,93,44,91,45,49,55,57,46,49,52,57,53,48,53,44,53,49,46,53,55,54,53,57,53,93,93,93,44,91,91,91,45,49,55,48,46,57,50,54,48,51,55,44,53,50,46,53,53,56,54,52,52,93,44,91,45,49,55,48,46,56,50,56,51,49,56,44,53,50,46,52,57,49,57,50,55,93,44,91,45,49,55,48,46,53,51,54,49,51,51,44,53,50,46,53,55,51,56,52,55,93,44,91,45,49,55,48,46,52,56,48,57,57,52,44,53,50,46,54,57,48,52,49,93,44,91,45,49,55,48,46,54,56,48,52,53,50,44,53,50,46,55,52,57,53,56,54,93,44,91,45,49,55,48,46,56,56,56,57,49,51,44,53,50,46,54,52,57,50,55,49,93,44,91,45,49,55,48,46,57,50,54,48,51,55,44,53,50,46,53,53,56,54,52,52,93,93,93,44,91,91,91,45,49,55,57,46,50,51,48,50,51,51,44,53,49,46,50,56,51,57,50,55,93,44,91,45,49,55,57,46,49,56,51,56,49,53,44,53,49,46,49,56,51,55,55,54,93,44,91,45,49,55,57,46,48,55,51,53,57,57,44,53,49,46,49,55,57,48,52,49,93,44,91,45,49,55,56,46,56,51,50,56,48,54,44,53,49,46,51,50,51,53,56,56,93,44,91,45,49,55,56,46,56,55,51,49,54,51,44,53,49,46,52,50,52,55,57,49,93,44,91,45,49,55,57,46,48,48,53,48,52,49,44,53,49,46,52,53,50,54,53,50,93,44,91,45,49,55,57,46,50,51,48,50,51,51,44,53,49,46,50,56,51,57,50,55,93,93,93,44,91,91,91,45,49,54,57,46,56,55,57,54,51,50,44,53,54,46,54,49,52,55,57,57,93,44,91,45,49,54,57,46,54,55,54,48,57,50,44,53,54,46,52,57,54,50,50,54,93,44,91,45,49,54,57,46,53,50,54,54,51,55,44,53,54,46,52,57,50,57,55,54,93,44,91,45,49,54,57,46,51,55,55,53,52,53,44,53,54,46,53,56,55,55,50,57,93,44,91,45,49,54,57,46,53,48,57,50,54,53,44,53,54,46,54,54,55,52,55,49,93,44,91,45,49,54,57,46,56,50,57,51,56,52,44,53,54,46,54,54,57,56,49,54,93,44,91,45,49,54,57,46,56,55,57,54,51,50,44,53,54,46,54,49,52,55,57,57,93,93,93,44,91,91,91,45,49,55,49,46,51,57,51,50,57,54,44,53,50,46,52,56,48,56,53,52,93,44,91,45,49,55,49,46,51,53,56,51,53,51,44,53,50,46,52,49,50,53,52,53,93,44,91,45,49,55,49,46,50,48,54,50,53,57,44,53,50,46,51,57,56,56,57,49,93,44,91,45,49,55,49,46,48,50,50,52,50,57,44,53,50,46,54,48,51,55,49,55,93,44,91,45,49,55,49,46,49,52,48,50,51,52,44,53,50,46,54,51,57,54,51,51,93,44,91,45,49,55,49,46,51,55,52,52,51,51,44,53,50,46,53,51,55,49,49,56,93,44,91,45,49,55,49,46,51,57,51,50,57,54,44,53,50,46,52,56,48,56,53,52,93,93,93,44,91,91,91,49,55,51,46,55,55,51,55,56,51,44,53,50,46,55,56,49,53,56,56,93,44,91,49,55,51,46,56,51,55,57,54,50,44,53,50,46,55,49,54,48,50,51,93,44,91,49,55,52,46,49,54,50,53,49,52,44,53,50,46,54,53,54,55,51,53,93,44,91,49,55,52,46,50,51,50,55,50,55,44,53,50,46,55,53,55,50,57,52,93,44,91,49,55,51,46,56,55,48,54,51,56,44,53,50,46,56,51,52,55,57,93,44,91,49,55,51,46,55,55,51,55,56,51,44,53,50,46,55,56,49,53,56,56,93,93,93,44,91,91,91,49,55,56,46,49,50,51,56,51,50,44,53,49,46,56,52,51,57,56,52,93,44,91,49,55,56,46,50,52,57,56,56,49,44,53,49,46,55,50,52,52,55,52,93,44,91,49,55,56,46,52,57,54,51,52,55,44,53,49,46,55,52,52,53,50,50,93,44,91,49,55,56,46,51,54,56,52,51,52,44,53,49,46,56,54,48,53,51,57,93,44,91,49,55,56,46,50,50,48,48,55,56,44,53,49,46,56,56,56,55,50,56,93,44,91,49,55,56,46,49,50,51,56,51,50,44,53,49,46,56,52,51,57,56,52,93,93,93,44,91,91,91,45,49,55,56,46,57,53,55,50,56,49,44,53,49,46,55,56,48,55,57,57,93,44,91,45,49,55,56,46,56,50,56,48,49,57,44,53,49,46,54,57,52,55,55,54,93,44,91,45,49,55,56,46,54,52,54,56,44,53,49,46,55,57,48,51,93,44,91,45,49,55,56,46,55,56,54,53,51,50,44,53,49,46,56,56,55,56,56,93,44,91,45,49,55,56,46,57,53,55,50,56,49,44,53,49,46,55,56,48,55,57,57,93,93,93,44,91,91,91,49,55,53,46,55,54,53,50,56,51,44,53,50,46,51,56,55,51,50,93,44,91,49,55,53,46,56,51,49,51,57,50,44,53,50,46,51,48,53,53,55,55,93,44,91,49,55,54,46,48,48,57,57,50,53,44,53,50,46,50,57,57,53,53,51,93,44,91,49,55,54,46,48,52,57,49,56,49,44,53,50,46,51,56,53,54,52,93,44,91,49,55,53,46,56,52,49,57,48,57,44,53,50,46,52,52,48,50,56,56,93,44,91,49,55,53,46,55,54,53,50,56,51,44,53,50,46,51,56,55,51,50,93,93,93,44,91,91,91,45,49,55,55,46,53,53,49,55,51,57,44,53,49,46,57,49,53,53,50,53,93,44,91,45,49,55,55,46,52,56,54,55,50,54,44,53,49,46,56,52,51,54,52,57,93,44,91,45,49,55,55,46,51,51,54,52,50,55,44,53,49,46,57,50,49,53,54,49,93,44,91,45,49,55,55,46,52,53,57,53,52,54,44,53,49,46,57,56,50,56,56,52,93,44,91,45,49,55,55,46,53,53,49,55,51,57,44,53,49,46,57,49,53,53,50,53,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,53,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,48,34,44,34,78,65,77,69,34,58,34,75,111,100,105,97,107,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,52,46,57,51,51,54,57,52,44,53,55,46,50,57,52,54,55,56,93,44,91,45,49,53,52,46,54,49,57,55,56,50,44,53,55,46,49,54,50,51,54,93,44,91,45,49,53,52,46,53,55,55,52,56,51,44,53,54,46,57,53,50,55,55,51,93,44,91,45,49,53,52,46,51,56,55,55,49,57,44,53,54,46,56,57,53,54,49,56,93,44,91,45,49,53,52,46,51,56,53,53,50,52,44,53,54,46,56,51,48,50,54,57,93,44,91,45,49,53,52,46,50,49,55,56,50,54,44,53,54,46,55,50,48,52,54,55,93,44,91,45,49,53,52,46,51,54,48,49,48,56,44,53,54,46,54,51,51,53,50,52,93,44,91,45,49,53,52,46,53,48,55,53,50,44,53,54,46,54,53,56,56,52,52,93,44,91,45,49,53,52,46,55,53,56,49,48,54,44,53,54,46,53,53,57,56,49,53,93,44,91,45,49,53,52,46,56,57,51,56,52,55,44,53,54,46,52,52,52,55,50,52,93,44,91,45,49,53,52,46,55,50,53,55,51,50,44,53,54,46,51,53,53,50,49,57,93,44,91,45,49,53,52,46,52,57,56,50,48,57,44,53,54,46,52,53,53,55,56,52,93,44,91,45,49,53,51,46,57,51,54,50,55,54,44,53,54,46,52,53,51,52,54,49,93,44,91,45,49,53,51,46,56,48,54,54,48,53,44,53,54,46,53,48,57,51,54,93,44,91,45,49,53,51,46,56,48,48,52,51,50,44,53,54,46,54,56,57,57,50,56,93,44,91,45,49,53,51,46,54,49,53,49,56,44,53,54,46,56,51,52,51,56,53,93,44,91,45,49,53,51,46,52,48,52,53,50,57,44,53,54,46,57,53,48,55,55,51,93,44,91,45,49,53,51,46,49,56,48,57,53,57,44,53,54,46,57,54,48,54,56,93,44,91,45,49,53,51,46,48,57,56,50,56,57,44,53,55,46,48,52,48,51,49,51,93,44,91,45,49,53,50,46,56,51,52,49,54,50,44,53,55,46,48,57,52,52,50,53,93,44,91,45,49,53,50,46,55,56,53,50,48,54,44,53,55,46,49,57,50,52,53,55,93,44,91,45,49,53,50,46,53,50,56,55,53,56,44,53,55,46,51,50,55,51,50,55,93,44,91,45,49,53,50,46,50,53,56,52,56,49,44,53,55,46,51,50,51,52,50,57,93,44,91,45,49,53,50,46,49,53,54,53,49,54,44,53,55,46,52,48,53,56,53,53,93,44,91,45,49,53,50,46,50,50,50,52,51,55,44,53,55,46,52,55,53,50,57,57,93,44,91,45,49,53,50,46,48,51,49,48,48,54,44,53,55,46,54,50,56,54,51,49,93,44,91,45,49,53,50,46,50,50,48,50,49,49,44,53,55,46,57,51,48,50,50,51,93,44,91,45,49,53,50,46,52,49,52,52,53,51,44,53,56,46,48,51,54,53,55,55,93,44,91,45,49,53,50,46,48,51,51,53,49,57,44,53,56,46,49,49,49,55,56,49,93,44,91,45,49,53,49,46,55,54,52,48,50,44,53,56,46,49,51,54,54,50,54,93,44,91,45,49,53,49,46,54,57,48,53,48,53,44,53,56,46,50,51,53,49,51,52,93,44,91,45,49,53,49,46,55,49,50,56,48,52,44,53,56,46,51,55,51,57,56,93,44,91,45,49,53,49,46,56,57,53,50,49,54,44,53,56,46,51,55,49,55,48,53,93,44,91,45,49,53,50,46,49,50,54,51,52,56,44,53,56,46,52,52,57,53,56,57,93,44,91,45,49,53,50,46,50,52,55,55,49,50,44,53,56,46,54,56,48,55,50,56,93,44,91,45,49,53,50,46,52,55,51,53,54,57,44,53,56,46,55,53,55,50,53,56,93,44,91,45,49,53,50,46,54,57,56,52,49,51,44,53,56,46,54,52,56,54,52,52,93,44,91,45,49,53,51,46,50,48,48,48,51,53,44,53,56,46,50,54,54,50,53,50,93,44,91,45,49,53,51,46,53,48,48,49,51,53,44,53,56,46,48,55,57,53,53,53,93,44,91,45,49,53,51,46,53,51,56,57,52,54,44,53,56,46,48,48,55,51,54,54,93,44,91,45,49,53,51,46,55,56,54,54,50,50,44,53,55,46,57,49,55,55,49,50,93,44,91,45,49,53,51,46,56,55,48,53,54,55,44,53,55,46,57,50,56,55,55,57,93,44,91,45,49,53,52,46,50,52,48,48,54,53,44,53,55,46,55,49,53,52,54,55,93,44,91,45,49,53,52,46,52,48,55,48,49,49,44,53,55,46,54,57,48,53,50,53,93,44,91,45,49,53,52,46,55,48,51,49,52,53,44,53,55,46,53,52,50,48,49,54,93,44,91,45,49,53,52,46,57,51,51,54,57,52,44,53,55,46,50,57,52,54,55,56,93,93,93,44,91,91,91,45,49,53,52,46,51,48,53,54,57,49,44,53,56,46,54,53,50,55,53,49,93,44,91,45,49,53,52,46,51,48,51,52,52,55,44,53,56,46,52,54,48,51,56,53,93,44,91,45,49,53,52,46,52,54,53,55,52,49,44,53,56,46,51,54,49,51,53,54,93,44,91,45,49,53,52,46,55,51,48,51,54,57,44,53,56,46,51,48,52,54,54,57,93,44,91,45,49,53,53,46,48,48,56,49,51,50,44,53,56,46,50,57,48,57,48,53,93,44,91,45,49,53,53,46,48,53,55,55,52,49,44,53,56,46,50,51,54,50,48,57,93,44,91,45,49,53,53,46,51,51,49,57,52,53,44,53,56,46,49,57,51,50,56,51,93,44,91,45,49,53,53,46,51,51,48,50,52,53,44,53,55,46,56,55,54,51,52,51,93,44,91,45,49,53,53,46,53,51,56,56,51,44,53,55,46,55,57,57,56,48,54,93,44,91,45,49,53,53,46,54,57,51,55,55,51,44,53,55,46,55,57,55,57,56,55,93,44,91,45,49,53,53,46,55,54,56,48,50,50,44,53,55,46,54,54,56,50,54,49,93,44,91,45,49,53,54,46,50,48,56,48,50,49,44,53,55,46,53,50,50,57,54,51,93,44,91,45,49,53,54,46,51,55,48,50,51,53,44,53,55,46,53,50,50,51,54,56,93,44,91,45,49,53,54,46,55,53,48,55,56,44,53,55,46,50,51,53,55,57,53,93,44,91,45,49,53,54,46,55,53,48,56,49,53,44,53,55,46,49,54,50,56,55,56,93,44,91,45,49,53,54,46,51,53,53,51,57,50,44,53,55,46,49,53,57,57,51,49,93,44,91,45,49,53,54,46,51,50,56,48,50,51,44,53,55,46,48,53,51,50,56,56,93,44,91,45,49,53,54,46,50,50,55,56,49,49,44,53,55,46,49,54,50,52,53,53,93,44,91,45,49,53,54,46,49,54,55,49,57,54,44,53,55,46,51,52,53,56,53,50,93,44,91,45,49,53,53,46,57,51,57,55,53,56,44,53,55,46,52,49,50,56,55,93,44,91,45,49,53,53,46,56,52,52,52,56,53,44,53,55,46,52,57,55,53,49,51,93,44,91,45,49,53,53,46,54,52,53,53,48,51,44,53,55,46,53,50,50,51,53,56,93,44,91,45,49,53,53,46,54,51,50,53,54,55,44,53,55,46,53,56,54,56,49,51,93,44,91,45,49,53,53,46,51,48,48,51,57,55,44,53,55,46,54,52,50,56,57,52,93,44,91,45,49,53,52,46,57,57,52,48,49,55,44,53,55,46,56,54,51,49,56,56,93,44,91,45,49,53,52,46,57,52,48,55,52,50,44,53,55,46,57,55,53,48,55,49,93,44,91,45,49,53,52,46,51,57,48,55,52,52,44,53,55,46,57,57,57,51,48,49,93,44,91,45,49,53,52,46,49,49,57,53,54,53,44,53,56,46,49,49,51,50,50,56,93,44,91,45,49,53,51,46,57,55,48,48,51,56,44,53,56,46,51,49,50,55,50,52,93,44,91,45,49,53,51,46,56,53,56,53,53,55,44,53,56,46,51,55,52,50,55,52,93,44,91,45,49,53,51,46,56,56,49,55,57,52,44,53,56,46,52,53,54,52,57,57,93,44,91,45,49,53,51,46,53,49,53,49,53,44,53,56,46,53,52,56,51,57,55,93,44,91,45,49,53,51,46,52,55,56,55,55,54,44,53,56,46,54,52,49,54,57,52,93,44,91,45,49,53,51,46,49,54,54,56,52,54,44,53,56,46,55,53,53,49,55,53,93,44,91,45,49,53,51,46,49,56,52,48,56,54,44,53,56,46,57,48,53,55,50,57,93,44,91,45,49,53,51,46,50,53,51,54,49,51,44,53,56,46,56,53,53,48,51,54,93,44,91,45,49,53,51,46,54,51,57,52,48,51,44,53,56,46,56,53,53,48,50,57,93,44,91,45,49,53,51,46,54,51,57,48,50,55,44,53,56,46,55,51,57,52,53,93,44,91,45,49,53,51,46,56,49,55,48,55,54,44,53,56,46,55,51,57,52,52,54,93,44,91,45,49,53,51,46,56,49,55,48,55,54,44,53,56,46,54,53,50,55,54,93,44,91,45,49,53,52,46,51,48,53,54,57,49,44,53,56,46,54,53,50,55,53,49,93,93,93,44,91,91,91,45,49,53,50,46,52,54,54,53,50,55,44,53,56,46,57,49,52,57,57,53,93,44,91,45,49,53,50,46,51,56,51,50,57,52,44,53,56,46,56,50,56,50,57,93,44,91,45,49,53,50,46,49,51,52,48,55,50,44,53,56,46,56,53,56,49,49,56,93,44,91,45,49,53,49,46,57,56,49,53,56,50,44,53,56,46,56,51,55,50,55,55,93,44,91,45,49,53,49,46,56,53,51,56,56,57,44,53,56,46,57,48,56,55,54,52,93,44,91,45,49,53,50,46,48,49,57,53,53,53,44,53,57,46,48,49,48,57,50,49,93,44,91,45,49,53,50,46,52,49,52,48,48,51,44,53,56,46,57,57,50,50,51,51,93,44,91,45,49,53,50,46,52,54,54,53,50,55,44,53,56,46,57,49,52,57,57,53,93,93,93,44,91,91,91,45,49,53,54,46,57,48,50,48,51,51,44,53,54,46,49,54,53,52,52,53,93,44,91,45,49,53,54,46,56,49,55,49,55,44,53,54,46,49,48,52,48,57,54,93,44,91,45,49,53,54,46,56,50,50,50,48,57,44,53,53,46,57,54,55,53,53,54,93,44,91,45,49,53,54,46,54,55,53,52,50,55,44,53,53,46,57,53,54,55,55,93,44,91,45,49,53,54,46,53,53,51,51,50,52,44,53,54,46,48,50,55,48,55,53,93,44,91,45,49,53,54,46,54,57,48,54,50,54,44,53,54,46,50,53,55,50,52,57,93,44,91,45,49,53,54,46,56,55,50,50,50,56,44,53,54,46,50,52,55,48,50,51,93,44,91,45,49,53,54,46,57,48,50,48,51,51,44,53,54,46,49,54,53,52,52,53,93,93,93,44,91,91,91,45,49,53,53,46,56,51,54,56,44,53,53,46,56,48,48,56,50,52,93,44,91,45,49,53,53,46,55,57,52,51,52,57,44,53,53,46,55,50,57,53,57,52,93,44,91,45,49,53,53,46,53,50,56,48,57,50,44,53,53,46,55,48,53,56,52,56,93,44,91,45,49,53,53,46,52,55,52,55,53,49,44,53,53,46,55,52,49,52,53,57,93,44,91,45,49,53,53,46,52,55,52,51,53,51,44,53,53,46,57,49,51,53,57,52,93,44,91,45,49,53,53,46,54,55,54,55,54,53,44,53,53,46,57,48,55,54,54,51,93,44,91,45,49,53,53,46,56,51,54,56,44,53,53,46,56,48,48,56,50,52,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,83,116,97,102,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,49,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,49,50,53,56,51,44,51,56,46,50,54,49,48,56,56,93,44,91,45,57,56,46,57,49,51,49,51,54,44,51,56,46,48,48,48,52,53,49,93,44,91,45,57,57,46,48,50,50,49,51,54,44,51,56,46,48,48,48,50,51,54,93,44,91,45,57,57,46,48,49,51,51,49,56,44,51,55,46,56,50,53,51,51,54,93,44,91,45,57,56,46,52,55,50,50,53,55,44,51,55,46,56,50,52,52,57,55,93,44,91,45,57,56,46,52,55,50,55,57,52,44,51,56,46,49,55,50,55,53,55,93,44,91,45,57,56,46,52,55,57,56,52,49,44,51,56,46,50,54,48,55,57,93,44,91,45,57,56,46,57,49,50,53,56,51,44,51,56,46,50,54,49,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,49,34,44,34,78,65,77,69,34,58,34,84,101,108,102,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,55,55,52,54,57,44,51,49,46,56,52,55,56,53,55,93,44,91,45,56,50,46,57,57,53,54,57,56,44,51,49,46,55,56,48,57,56,51,93,44,91,45,56,50,46,56,51,54,51,54,54,44,51,49,46,56,49,54,49,53,52,93,44,91,45,56,50,46,54,52,53,54,53,57,44,51,49,46,57,49,56,56,56,51,93,44,91,45,56,50,46,55,50,56,56,48,54,44,51,50,46,48,48,54,55,48,52,93,44,91,45,56,50,46,56,56,55,54,53,55,44,51,50,46,48,55,57,56,57,49,93,44,91,45,56,50,46,57,50,55,56,54,53,44,51,50,46,49,51,53,50,55,52,93,44,91,45,56,51,46,50,48,53,55,51,57,44,51,49,46,57,48,48,51,50,53,93,44,91,45,56,51,46,49,55,55,52,54,57,44,51,49,46,56,52,55,56,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,54,57,57,44,34,98,101,100,115,34,58,50,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,55,51,57,50,50,44,52,50,46,48,56,50,52,51,93,44,91,45,56,51,46,55,54,51,49,53,44,52,49,46,55,50,51,53,53,50,93,44,91,45,56,51,46,52,49,53,56,53,49,44,52,49,46,55,51,51,55,57,52,93,44,91,45,56,51,46,49,49,50,52,54,44,52,49,46,57,53,57,52,49,93,44,91,45,56,51,46,49,52,51,57,53,54,44,52,50,46,48,50,55,57,51,93,44,91,45,56,51,46,50,57,53,48,54,51,44,52,50,46,48,57,52,50,51,55,93,44,91,45,56,51,46,53,51,57,51,57,54,44,52,50,46,48,56,53,53,57,56,93,44,91,45,56,51,46,55,55,51,57,50,50,44,52,50,46,48,56,50,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,50,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,57,56,51,57,44,52,48,46,55,51,54,53,52,49,93,44,91,45,56,55,46,48,57,53,51,53,55,44,52,48,46,53,54,50,56,57,53,93,44,91,45,56,54,46,55,55,49,50,57,51,44,52,48,46,53,54,50,48,56,50,93,44,91,45,56,54,46,55,52,55,55,54,52,44,52,48,46,55,51,55,53,52,93,44,91,45,56,54,46,53,56,49,55,51,57,44,52,48,46,55,51,53,55,54,53,93,44,91,45,56,54,46,53,56,49,53,51,50,44,52,48,46,57,49,48,57,50,53,93,44,91,45,56,54,46,57,51,48,55,53,57,44,52,48,46,57,49,50,52,49,56,93,44,91,45,56,54,46,57,56,54,52,51,56,44,52,48,46,56,51,55,57,50,49,93,44,91,45,56,55,46,48,57,57,55,57,51,44,52,48,46,56,51,55,54,48,55,93,44,91,45,56,55,46,48,57,56,51,57,44,52,48,46,55,51,54,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,78,111,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,52,53,49,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,51,53,48,55,44,52,49,46,52,51,54,56,53,54,93,44,91,45,56,53,46,54,53,49,57,50,56,44,52,49,46,50,57,52,55,55,54,93,44,91,45,56,53,46,53,51,55,49,56,44,52,49,46,50,54,54,49,53,55,93,44,91,45,56,53,46,51,48,55,55,56,49,44,52,49,46,50,54,52,49,53,56,93,44,91,45,56,53,46,49,57,50,48,57,52,44,52,49,46,50,54,52,50,48,57,93,44,91,45,56,53,46,49,57,52,48,56,52,44,52,49,46,53,50,54,52,51,55,93,44,91,45,56,53,46,54,53,52,55,52,55,44,52,49,46,53,50,51,51,52,55,93,44,91,45,56,53,46,54,53,51,53,48,55,44,52,49,46,52,51,54,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,49,53,52,48,54,44,51,55,46,52,50,51,57,55,50,93,44,91,45,56,56,46,52,55,52,48,57,44,51,55,46,51,57,49,56,54,51,93,44,91,45,56,56,46,53,48,55,48,54,50,44,51,55,46,50,53,57,54,56,57,93,44,91,45,56,56,46,52,50,52,54,48,51,44,51,55,46,49,53,49,55,54,52,93,44,91,45,56,56,46,52,57,48,52,49,49,44,51,55,46,48,54,56,53,55,57,93,44,91,45,56,56,46,53,54,54,48,54,49,44,51,55,46,48,55,53,50,48,52,93,44,91,45,56,56,46,52,56,50,57,53,55,44,51,55,46,48,50,50,53,54,54,93,44,91,45,56,56,46,51,55,48,52,54,51,44,51,55,46,48,54,51,50,55,56,93,44,91,45,56,56,46,50,52,48,51,55,49,44,51,54,46,57,56,49,57,49,49,93,44,91,45,56,56,46,49,57,51,53,49,57,44,51,55,46,49,52,55,50,53,54,93,44,91,45,56,56,46,50,49,56,57,56,44,51,55,46,50,55,51,49,52,53,93,44,91,45,56,56,46,51,53,56,52,54,54,44,51,55,46,52,48,52,55,53,50,93,44,91,45,56,56,46,52,49,53,52,48,54,44,51,55,46,52,50,51,57,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,77,105,108,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,51,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,52,49,54,55,51,44,51,49,46,50,53,56,57,54,55,93,44,91,45,56,52,46,57,49,55,52,50,49,44,51,49,46,50,53,53,57,57,93,44,91,45,56,52,46,57,50,50,52,50,51,44,51,49,46,48,55,50,53,57,93,44,91,45,56,52,46,55,51,48,56,53,53,44,51,49,46,48,54,57,49,57,93,44,91,45,56,52,46,53,52,50,54,53,51,44,51,49,46,48,55,57,48,50,57,93,44,91,45,56,52,46,53,51,55,49,48,49,44,51,49,46,50,53,53,57,51,50,93,44,91,45,56,52,46,54,52,49,54,55,51,44,51,49,46,50,53,56,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,55,49,49,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,56,50,56,51,48,49,44,51,53,46,50,54,51,54,55,55,93,44,91,45,56,54,46,56,51,54,51,48,54,44,51,52,46,57,57,49,56,57,57,93,44,91,45,56,54,46,55,56,51,54,50,56,44,51,52,46,57,57,49,57,52,56,93,44,91,45,56,54,46,51,49,56,55,54,49,44,51,52,46,57,57,49,49,54,57,93,44,91,45,56,54,46,51,49,56,49,54,56,44,51,53,46,49,50,54,57,56,54,93,44,91,45,56,54,46,53,50,53,51,48,54,44,51,53,46,51,53,52,55,49,56,93,44,91,45,56,54,46,53,57,57,52,55,56,44,51,53,46,51,54,52,57,53,93,44,91,45,56,54,46,55,52,54,56,57,57,44,51,53,46,50,53,50,56,55,56,93,44,91,45,56,54,46,56,50,56,51,48,49,44,51,53,46,50,54,51,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,49,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,55,56,54,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,50,52,48,53,52,44,51,56,46,49,52,55,52,51,56,93,44,91,45,56,53,46,49,48,49,54,52,54,44,51,56,46,48,51,55,50,55,93,44,91,45,56,53,46,48,50,51,55,49,49,44,51,56,46,49,50,57,48,53,50,93,44,91,45,56,52,46,57,57,55,54,54,55,44,51,56,46,51,51,53,53,56,54,93,44,91,45,56,53,46,50,56,51,48,56,50,44,51,56,46,51,53,56,48,53,52,93,44,91,45,56,53,46,52,54,56,50,48,54,44,51,56,46,50,56,53,51,48,57,93,44,91,45,56,53,46,52,50,52,48,53,52,44,51,56,46,49,52,55,52,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,57,57,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,50,54,50,56,55,44,52,49,46,48,52,54,53,56,49,93,44,91,45,57,55,46,56,50,53,55,50,51,44,52,48,46,54,57,56,53,53,53,93,44,91,45,57,55,46,56,50,52,55,56,44,52,48,46,54,57,56,53,51,55,93,44,91,45,57,55,46,51,54,56,52,48,49,44,52,48,46,54,57,56,54,50,53,93,44,91,45,57,55,46,51,54,56,49,49,56,44,52,49,46,48,52,54,57,52,55,93,44,91,45,57,55,46,56,50,54,50,56,55,44,52,49,46,48,52,54,53,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,48,50,51,44,34,98,101,100,115,34,58,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,51,55,52,50,53,44,52,48,46,48,54,57,57,52,53,93,44,91,45,55,55,46,49,56,53,54,51,44,52,48,46,48,50,57,53,48,49,93,44,91,45,55,55,46,52,48,51,54,48,54,44,51,57,46,57,57,52,52,55,56,93,44,91,45,55,55,46,52,55,49,48,56,53,44,51,57,46,57,52,52,48,55,55,93,44,91,45,55,55,46,52,53,57,49,51,52,44,51,57,46,55,49,57,57,56,52,93,44,91,45,55,55,46,50,49,55,48,50,52,44,51,57,46,55,49,57,56,54,49,93,44,91,45,55,54,46,57,57,57,51,49,56,44,51,57,46,55,50,48,49,48,54,93,44,91,45,55,54,46,57,53,52,57,51,50,44,51,57,46,56,53,54,56,53,93,44,91,45,55,55,46,48,49,56,54,52,56,44,52,48,46,48,49,51,57,52,55,93,44,91,45,55,55,46,49,51,55,52,50,53,44,52,48,46,48,54,57,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,49,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,57,51,48,57,57,44,51,51,46,49,49,56,54,54,56,93,44,91,45,56,49,46,51,54,52,56,53,55,44,51,51,46,49,48,56,48,54,49,93,44,91,45,56,49,46,53,52,49,56,56,49,44,51,51,46,49,53,56,50,55,57,93,44,91,45,56,49,46,54,49,52,48,51,51,44,51,51,46,48,57,53,50,53,49,93,44,91,45,56,49,46,53,52,49,56,51,49,44,51,51,46,48,52,53,54,53,52,93,44,91,45,56,49,46,52,50,54,52,55,53,44,51,50,46,56,52,48,55,55,51,93,44,91,45,56,49,46,52,48,53,48,53,52,44,51,50,46,55,52,52,57,53,55,93,44,91,45,56,49,46,50,54,49,54,54,50,44,51,50,46,56,51,57,49,51,57,93,44,91,45,56,49,46,50,49,57,53,54,51,44,51,50,46,57,53,51,51,53,93,44,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,44,91,45,56,49,46,49,57,51,48,57,57,44,51,51,46,49,49,56,54,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,97,118,105,100,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,48,49,55,44,34,98,101,100,115,34,58,52,51,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,49,51,50,51,51,44,51,54,46,51,56,50,54,50,49,93,44,91,45,56,54,46,57,57,55,55,48,53,44,51,54,46,49,50,56,53,49,50,93,44,91,45,56,55,46,48,53,51,55,50,50,44,51,54,46,48,52,53,53,56,50,93,44,91,45,56,54,46,55,57,48,56,55,53,44,51,54,46,48,51,54,55,49,53,93,44,91,45,56,54,46,54,49,56,56,57,50,44,51,53,46,57,54,56,50,50,52,93,44,91,45,56,54,46,53,49,53,53,56,57,44,51,54,46,49,48,48,54,49,93,44,91,45,56,54,46,53,57,52,50,56,54,44,51,54,46,50,52,53,49,48,53,93,44,91,45,56,54,46,55,53,52,55,57,53,44,51,54,46,52,48,53,52,57,54,93,44,91,45,56,54,46,57,49,51,50,51,51,44,51,54,46,51,56,50,54,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,85,105,110,116,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,50,51,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,56,57,52,52,44,52,48,46,54,54,50,54,48,49,93,44,91,45,49,48,57,46,49,54,49,48,54,51,44,52,48,46,54,56,51,56,49,55,93,44,91,45,49,48,57,46,50,48,51,50,53,44,52,48,46,56,53,56,52,48,49,93,44,91,45,49,48,57,46,51,57,52,52,57,49,44,52,48,46,56,53,56,49,54,54,93,44,91,45,49,48,57,46,56,55,48,50,48,55,44,52,48,46,55,54,51,56,50,57,93,44,91,45,49,48,57,46,57,55,54,52,48,50,44,52,48,46,56,48,57,54,56,54,93,44,91,45,49,48,57,46,57,55,54,56,49,52,44,51,57,46,56,48,54,50,51,93,44,91,45,49,49,48,46,48,50,51,57,54,51,44,51,57,46,52,54,57,50,54,56,93,44,91,45,49,48,57,46,57,53,51,51,52,57,44,51,57,46,52,54,49,56,48,49,93,44,91,45,49,48,57,46,49,48,54,57,55,50,44,51,57,46,52,54,49,57,55,57,93,44,91,45,49,48,57,46,48,53,49,50,50,54,44,51,57,46,52,57,55,55,51,57,93,44,91,45,49,48,57,46,48,53,49,50,50,55,44,51,57,46,54,54,48,52,54,54,93,44,91,45,49,48,57,46,48,53,48,57,52,57,44,52,48,46,50,50,50,54,52,55,93,44,91,45,49,48,57,46,48,52,56,57,52,52,44,52,48,46,54,54,50,54,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,48,52,52,48,44,34,98,101,100,115,34,58,49,51,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,49,55,50,56,54,50,44,52,48,46,52,54,55,48,54,53,93,44,91,45,49,49,50,46,49,57,56,52,54,49,44,52,48,46,51,49,51,50,48,54,93,44,91,45,49,49,50,46,49,52,54,56,53,54,44,52,48,46,49,55,55,56,49,55,93,44,91,45,49,49,50,46,49,55,57,56,44,52,48,46,48,49,49,54,53,54,93,44,91,45,49,49,50,46,48,54,50,53,53,50,44,51,57,46,57,48,52,54,56,93,44,91,45,49,49,50,46,48,51,49,56,51,53,44,51,57,46,55,56,49,49,55,50,93,44,91,45,49,49,49,46,56,50,55,49,48,54,44,51,57,46,57,52,55,48,48,50,93,44,91,45,49,49,49,46,54,52,49,57,52,52,44,51,57,46,56,49,50,56,54,57,93,44,91,45,49,49,49,46,50,52,55,52,57,54,44,51,57,46,56,49,51,48,50,56,93,44,91,45,49,49,48,46,56,53,55,55,56,44,51,57,46,56,49,51,50,56,53,93,44,91,45,49,49,48,46,56,57,49,54,53,53,44,51,57,46,56,57,57,54,53,52,93,44,91,45,49,49,49,46,48,56,51,48,54,49,44,51,57,46,57,52,51,49,57,56,93,44,91,45,49,49,49,46,50,52,57,51,51,57,44,52,48,46,48,53,53,50,49,55,93,44,91,45,49,49,49,46,50,50,53,53,48,55,44,52,48,46,49,54,55,51,50,52,93,44,91,45,49,49,49,46,51,50,49,51,48,53,44,52,48,46,50,56,55,51,55,50,93,44,91,45,49,49,49,46,52,50,56,55,50,56,44,52,48,46,50,56,55,55,54,93,44,91,45,49,49,49,46,53,53,53,50,51,53,44,52,48,46,51,54,50,54,57,54,93,44,91,45,49,49,49,46,54,50,48,52,51,55,44,52,48,46,52,53,53,48,49,56,93,44,91,45,49,49,49,46,53,57,51,57,52,50,44,52,48,46,53,55,55,48,54,54,93,44,91,45,49,49,49,46,57,52,54,52,53,52,44,52,48,46,52,50,52,53,57,52,93,44,91,45,49,49,50,46,49,55,50,56,54,50,44,52,48,46,52,54,55,48,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,57,57,48,49,50,44,51,57,46,54,48,55,49,51,55,93,44,91,45,56,55,46,50,51,56,57,54,52,44,51,57,46,53,50,48,54,50,93,44,91,45,56,55,46,50,52,48,51,55,57,44,51,57,46,50,53,57,48,54,52,93,44,91,45,56,55,46,50,52,48,55,51,55,44,51,57,46,49,55,49,55,55,51,93,44,91,45,56,55,46,48,53,52,53,55,56,44,51,57,46,49,54,56,48,56,54,93,44,91,45,56,55,46,48,53,51,54,52,54,44,51,57,46,51,52,50,54,50,49,93,44,91,45,56,54,46,57,52,50,52,55,51,44,51,57,46,51,52,50,48,52,51,93,44,91,45,56,54,46,57,51,57,57,56,49,44,51,57,46,52,55,51,51,52,53,93,44,91,45,56,55,46,48,49,51,48,54,50,44,51,57,46,54,48,52,55,56,55,93,44,91,45,56,55,46,49,57,57,48,49,50,44,51,57,46,54,48,55,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,75,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,48,55,52,55,44,34,98,101,100,115,34,58,53,55,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,48,53,53,55,51,57,44,52,48,46,54,53,49,55,54,93,44,91,45,55,52,46,48,51,54,50,57,51,44,52,48,46,53,53,49,48,52,50,93,44,91,45,55,51,46,56,55,57,50,50,50,44,52,48,46,53,55,52,54,53,54,93,44,91,45,55,51,46,56,51,51,48,52,49,44,52,48,46,54,50,56,50,54,49,93,44,91,45,55,51,46,57,54,50,52,55,56,44,52,48,46,55,51,54,56,48,50,93,44,91,45,55,52,46,48,51,52,53,55,51,44,52,48,46,54,56,52,56,54,54,93,44,91,45,55,52,46,48,53,53,55,51,57,44,52,48,46,54,53,49,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,53,57,57,55,52,44,51,56,46,54,57,51,48,55,55,93,44,91,45,57,51,46,48,54,55,50,57,49,44,51,56,46,53,50,57,57,57,53,93,44,91,45,57,51,46,48,55,55,54,57,50,44,51,56,46,50,54,51,48,57,50,93,44,91,45,57,51,46,48,50,50,50,55,55,44,51,56,46,49,57,56,54,52,50,93,44,91,45,57,50,46,55,54,52,57,54,51,44,51,56,46,49,56,57,53,51,52,93,44,91,45,57,50,46,54,57,53,56,56,54,44,51,56,46,50,50,50,48,51,49,93,44,91,45,57,50,46,54,56,57,56,51,52,44,51,56,46,51,52,56,52,55,50,93,44,91,45,57,50,46,54,50,53,49,56,57,44,51,56,46,52,51,48,55,55,56,93,44,91,45,57,50,46,56,52,49,56,55,49,44,51,56,46,53,57,54,55,57,50,93,44,91,45,57,50,46,56,51,57,56,51,55,44,51,56,46,54,56,51,57,55,52,93,44,91,45,57,51,46,48,53,57,57,55,52,44,51,56,46,54,57,51,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,72,111,108,109,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,56,53,57,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,50,48,49,49,44,52,48,46,53,54,56,50,48,54,93,44,91,45,56,50,46,49,56,52,54,48,55,44,52,48,46,52,53,54,50,56,93,44,91,45,56,49,46,55,48,57,49,51,50,44,52,48,46,52,52,52,55,55,53,93,44,91,45,56,49,46,54,52,57,49,57,57,44,52,48,46,54,51,53,49,48,54,93,44,91,45,56,49,46,54,53,48,48,52,53,44,52,48,46,54,54,56,49,49,55,93,44,91,45,56,50,46,49,50,54,49,57,57,44,52,48,46,54,54,56,50,50,57,93,44,91,45,56,50,46,50,50,48,49,49,44,52,48,46,53,54,56,50,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,79,115,99,101,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,54,48,57,52,55,44,52,51,46,53,48,48,48,51,54,93,44,91,45,57,53,46,56,54,49,57,49,52,44,52,51,46,50,53,55,53,54,54,93,44,91,45,57,53,46,51,56,56,48,55,56,44,52,51,46,50,53,53,50,50,49,93,44,91,45,57,53,46,51,56,55,55,56,55,44,52,51,46,53,48,48,50,50,54,93,44,91,45,57,53,46,52,53,52,52,51,51,44,52,51,46,53,48,48,54,52,54,93,44,91,45,57,53,46,56,54,48,57,52,55,44,52,51,46,53,48,48,48,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,74,101,110,110,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,55,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,56,56,48,52,44,51,57,46,48,54,56,53,51,54,93,44,91,45,56,53,46,55,57,53,51,53,55,44,51,56,46,56,48,55,53,48,56,93,44,91,45,56,53,46,54,56,51,56,51,57,44,51,56,46,56,49,53,52,48,54,93,44,91,45,56,53,46,52,52,52,56,57,55,44,51,56,46,57,49,50,57,57,56,93,44,91,45,56,53,46,52,52,48,48,53,52,44,51,57,46,49,57,53,54,49,55,93,44,91,45,56,53,46,53,54,54,51,50,44,51,57,46,49,51,50,55,54,49,93,44,91,45,56,53,46,54,56,54,55,56,51,44,51,57,46,49,51,48,56,53,57,93,44,91,45,56,53,46,55,57,56,56,48,52,44,51,57,46,48,54,56,53,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,84,119,105,110,32,70,97,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,54,54,54,44,34,98,101,100,115,34,58,50,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,54,49,54,52,56,55,44,52,50,46,54,52,57,50,57,56,93,44,91,45,49,49,52,46,56,49,57,57,55,49,44,52,50,46,54,54,57,55,52,54,93,44,91,45,49,49,52,46,57,48,49,54,51,54,44,52,50,46,56,53,57,49,48,56,93,44,91,45,49,49,53,46,48,51,55,55,55,52,44,52,50,46,57,49,49,56,54,52,93,44,91,45,49,49,53,46,48,51,55,54,57,55,44,52,50,46,55,54,56,52,49,52,93,44,91,45,49,49,53,46,48,51,56,49,53,55,44,52,49,46,57,57,54,50,55,57,93,44,91,45,49,49,52,46,50,56,49,55,57,57,44,52,49,46,57,57,52,52,52,49,93,44,91,45,49,49,52,46,50,56,53,52,52,56,44,52,50,46,52,49,55,51,51,51,93,44,91,45,49,49,52,46,48,54,57,49,54,50,44,52,50,46,52,49,55,49,50,52,93,44,91,45,49,49,52,46,48,48,48,51,56,56,44,52,50,46,53,50,54,51,55,51,93,44,91,45,49,49,52,46,49,50,52,57,51,52,44,52,50,46,52,57,54,49,51,93,44,91,45,49,49,52,46,50,52,52,55,48,51,44,52,50,46,53,53,57,50,52,52,93,44,91,45,49,49,52,46,54,49,54,52,56,55,44,52,50,46,54,52,57,50,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,50,51,49,44,34,98,101,100,115,34,58,49,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,48,54,55,53,57,44,51,55,46,56,54,51,52,53,55,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,50,55,55,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,48,53,57,93,44,91,45,56,56,46,52,49,50,54,57,55,44,51,55,46,53,57,57,54,50,53,93,44,91,45,56,56,46,51,55,53,52,51,52,44,51,55,46,53,57,57,53,57,53,93,44,91,45,56,56,46,51,55,52,53,51,44,51,55,46,57,48,55,54,55,56,93,44,91,45,56,56,46,55,48,54,54,50,50,44,51,55,46,57,48,54,55,57,55,93,44,91,45,56,56,46,55,48,54,55,53,57,44,51,55,46,56,54,51,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,75,97,108,97,109,97,122,111,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,49,53,55,51,44,34,98,101,100,115,34,58,57,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,54,52,54,57,55,44,52,50,46,52,50,48,55,49,53,93,44,91,45,56,53,46,55,54,50,57,52,51,44,52,50,46,48,54,57,51,50,55,93,44,91,45,56,53,46,50,57,51,54,50,54,44,52,50,46,48,55,49,53,53,51,93,44,91,45,56,53,46,50,57,56,56,55,57,44,52,50,46,52,49,57,56,52,57,93,44,91,45,56,53,46,53,52,51,49,57,49,44,52,50,46,52,50,49,52,51,51,93,44,91,45,56,53,46,55,54,52,54,57,55,44,52,50,46,52,50,48,55,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,54,57,56,55,56,44,51,52,46,48,56,54,49,57,49,93,44,91,45,56,48,46,49,51,53,52,49,51,44,51,52,46,50,56,52,53,53,50,93,44,91,45,56,48,46,50,56,56,54,57,50,44,51,52,46,51,54,52,49,51,57,93,44,91,45,56,48,46,52,50,48,52,56,52,44,51,52,46,50,57,51,48,55,52,93,44,91,45,56,48,46,52,55,57,56,53,55,44,51,52,46,49,54,56,54,57,54,93,44,91,45,56,48,46,52,56,49,51,49,56,44,51,52,46,49,49,50,54,50,50,93,44,91,45,56,48,46,51,50,49,55,50,49,44,51,52,46,48,56,48,51,53,54,93,44,91,45,56,48,46,49,56,48,51,55,49,44,51,51,46,57,53,50,48,48,50,93,44,91,45,56,48,46,48,48,48,53,57,52,44,51,52,46,48,52,55,56,55,55,93,44,91,45,56,48,46,48,54,57,56,55,56,44,51,52,46,48,56,54,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,49,52,54,56,48,56,44,52,52,46,49,54,53,54,54,54,93,44,91,45,49,48,55,46,49,49,48,55,51,52,44,52,51,46,53,48,48,50,56,54,93,44,91,45,49,48,54,46,53,57,52,56,57,55,44,52,51,46,52,57,49,52,55,93,44,91,45,49,48,54,46,48,55,56,48,54,56,44,52,51,46,52,57,52,52,55,49,93,44,91,45,49,48,54,46,48,49,55,51,54,54,44,52,51,46,52,57,52,57,54,57,93,44,91,45,49,48,54,46,48,48,57,54,55,54,44,52,52,46,53,54,51,57,56,49,93,44,91,45,49,48,54,46,52,50,56,56,57,55,44,52,52,46,53,53,54,55,55,55,93,44,91,45,49,48,55,46,51,54,57,54,50,49,44,52,52,46,53,53,57,56,51,55,93,44,91,45,49,48,55,46,50,48,50,48,51,56,44,52,52,46,52,52,54,51,48,53,93,44,91,45,49,48,55,46,49,52,53,48,48,49,44,52,52,46,51,50,52,48,48,52,93,44,91,45,49,48,55,46,49,52,54,56,48,56,44,52,52,46,49,54,53,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,68,97,118,105,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,51,55,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,57,56,55,55,49,44,51,56,46,57,48,51,57,55,52,93,44,91,45,56,55,46,50,52,54,54,44,51,56,46,56,48,55,55,48,49,93,44,91,45,56,55,46,50,55,56,53,53,51,44,51,56,46,54,57,49,51,52,51,93,44,91,45,56,55,46,50,52,50,48,57,55,44,51,56,46,53,52,52,57,51,93,44,91,45,56,55,46,48,55,50,51,54,57,44,51,56,46,53,49,52,55,93,44,91,45,56,54,46,57,50,52,49,56,54,44,51,56,46,53,48,53,51,53,56,93,44,91,45,56,54,46,57,48,52,50,53,50,44,51,56,46,57,48,52,50,48,52,93,44,91,45,56,55,46,48,57,56,55,55,49,44,51,56,46,57,48,51,57,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,114,97,110,100,32,84,114,97,118,101,114,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,55,52,54,44,34,98,101,100,115,34,58,52,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,56,48,54,55,52,44,52,53,46,49,50,48,51,50,54,93,44,91,45,56,53,46,53,53,48,52,53,53,44,52,53,46,48,53,49,48,55,51,93,44,91,45,56,53,46,54,49,56,48,51,51,44,52,52,46,55,55,52,53,53,55,93,44,91,45,56,53,46,56,49,53,49,49,57,44,52,52,46,55,55,52,53,51,52,93,44,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,44,91,45,56,53,46,51,51,52,44,52,52,46,53,49,50,51,48,51,93,44,91,45,56,53,46,51,51,50,56,51,54,44,52,52,46,56,49,50,51,55,50,93,44,91,45,56,53,46,52,55,51,56,52,49,44,52,52,46,56,53,57,52,52,57,93,44,91,45,56,53,46,52,50,55,54,56,56,44,52,52,46,57,54,53,50,55,51,93,44,91,45,56,53,46,52,56,48,54,55,52,44,52,53,46,49,50,48,51,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,54,49,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,50,51,57,51,50,44,51,48,46,56,57,93,44,91,45,57,50,46,57,55,56,52,53,51,44,51,48,46,56,55,56,49,55,53,93,44,91,45,57,50,46,57,55,57,49,55,44,51,48,46,53,57,56,51,52,93,44,91,45,57,51,46,49,51,48,51,56,44,51,48,46,53,57,55,55,55,55,93,44,91,45,57,51,46,49,51,49,49,53,53,44,51,48,46,52,50,51,54,49,50,93,44,91,45,57,50,46,55,55,53,53,53,52,44,51,48,46,52,51,55,54,53,54,93,44,91,45,57,50,46,54,51,48,51,52,55,44,51,48,46,52,56,55,56,55,51,93,44,91,45,57,50,46,53,57,55,51,53,51,44,51,48,46,53,56,49,54,50,51,93,44,91,45,57,50,46,53,57,55,55,52,49,44,51,48,46,56,57,54,49,48,49,93,44,91,45,57,50,46,56,50,51,57,51,50,44,51,48,46,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,117,103,104,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,49,55,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,55,54,51,57,56,44,52,52,46,53,52,56,49,49,49,93,44,91,45,49,48,48,46,53,50,54,52,57,56,44,52,52,46,53,52,55,52,50,50,93,44,91,45,49,48,48,46,53,55,53,55,57,54,44,52,52,46,52,57,49,55,49,51,93,44,91,45,49,48,48,46,51,56,54,51,55,54,44,52,52,46,52,52,48,48,48,56,93,44,91,45,49,48,48,46,51,54,53,51,57,44,52,52,46,51,53,53,53,50,52,93,44,91,45,49,48,48,46,48,56,53,51,51,44,52,52,46,51,48,56,52,53,49,93,44,91,45,57,57,46,57,51,56,50,49,55,44,52,52,46,49,57,53,49,57,53,93,44,91,45,57,57,46,56,56,52,52,56,53,44,52,52,46,49,50,57,53,56,50,93,44,91,45,57,57,46,54,53,52,53,51,54,44,52,52,46,49,48,49,54,56,57,93,44,91,45,57,57,46,54,54,51,53,48,56,44,52,52,46,50,49,55,53,49,55,93,44,91,45,57,57,46,54,55,54,51,57,56,44,52,52,46,53,52,56,49,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,121,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,55,52,50,53,50,44,52,52,46,56,57,55,53,48,51,93,44,91,45,57,57,46,54,55,54,51,57,56,44,52,52,46,53,52,56,49,49,49,93,44,91,45,57,57,46,54,54,51,53,48,56,44,52,52,46,50,49,55,53,49,55,93,44,91,45,57,57,46,53,55,54,53,55,49,44,52,52,46,49,57,50,52,50,49,93,44,91,45,57,57,46,51,48,48,49,56,44,52,52,46,49,57,52,56,51,93,44,91,45,57,57,46,51,49,49,55,53,52,44,52,52,46,56,57,55,50,50,55,93,44,91,45,57,57,46,53,55,50,54,57,57,44,52,52,46,56,57,55,50,54,51,93,44,91,45,57,57,46,54,55,52,50,53,50,44,52,52,46,56,57,55,53,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,114,101,110,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,48,49,55,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,55,52,54,48,49,44,51,51,46,57,52,54,53,50,55,93,44,91,45,56,48,46,50,53,53,57,48,52,44,51,51,46,56,48,51,55,48,56,93,44,91,45,56,48,46,51,57,55,49,51,49,44,51,51,46,55,54,55,56,50,49,93,44,91,45,56,48,46,53,51,52,48,56,53,44,51,51,46,54,52,51,57,49,49,93,44,91,45,56,48,46,52,57,54,50,55,51,44,51,51,46,53,53,56,52,56,49,93,44,91,45,56,48,46,51,53,52,53,51,57,44,51,51,46,52,51,48,52,48,56,93,44,91,45,56,48,46,50,50,50,50,54,55,44,51,51,46,52,52,51,55,49,54,93,44,91,45,56,48,46,49,48,49,54,57,55,44,51,51,46,52,57,54,56,57,49,93,44,91,45,55,57,46,57,55,52,51,56,50,44,51,51,46,55,50,49,53,57,93,44,91,45,55,57,46,57,57,53,54,51,56,44,51,51,46,55,54,55,57,48,54,93,44,91,45,55,57,46,56,55,53,54,50,44,51,51,46,56,56,53,50,52,53,93,44,91,45,55,57,46,57,55,52,54,48,49,44,51,51,46,57,52,54,53,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,83,116,105,108,108,119,97,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,49,48,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,52,49,55,49,53,56,44,52,54,46,48,52,52,55,53,57,93,44,91,45,49,48,57,46,53,48,54,54,48,52,44,52,53,46,57,53,57,49,49,50,93,44,91,45,49,48,57,46,53,54,51,57,48,55,44,52,53,46,55,56,51,52,55,49,93,44,91,45,49,48,57,46,53,54,50,48,55,44,52,53,46,54,48,57,49,49,57,93,44,91,45,49,48,57,46,54,56,53,51,56,53,44,52,53,46,54,48,57,48,50,50,93,44,91,45,49,48,57,46,57,51,50,48,50,53,44,52,53,46,53,50,50,52,53,54,93,44,91,45,49,48,57,46,57,51,49,57,56,52,44,52,53,46,51,52,56,55,53,53,93,44,91,45,49,49,48,46,48,54,52,53,56,49,44,52,53,46,51,52,56,55,53,53,93,44,91,45,49,49,48,46,48,54,52,53,49,56,44,52,53,46,49,55,50,49,50,57,93,44,91,45,49,48,57,46,55,57,56,54,55,51,44,52,53,46,49,54,55,51,51,57,93,44,91,45,49,48,57,46,54,56,55,55,57,50,44,52,53,46,49,54,55,51,51,57,93,44,91,45,49,48,57,46,53,54,49,57,50,52,44,52,53,46,51,54,50,56,52,51,93,44,91,45,49,48,57,46,51,53,54,52,49,55,44,52,53,46,52,54,52,51,50,54,93,44,91,45,49,48,57,46,49,57,49,55,54,49,44,52,53,46,52,54,52,53,48,52,93,44,91,45,49,48,57,46,48,54,56,52,57,56,44,52,53,46,53,56,51,50,52,49,93,44,91,45,49,48,56,46,56,52,51,48,49,54,44,52,53,46,54,49,49,48,52,50,93,44,91,45,49,48,56,46,57,48,52,55,50,54,44,52,53,46,54,56,50,56,50,49,93,44,91,45,49,48,56,46,57,48,49,54,53,53,44,52,53,46,57,53,57,52,49,54,93,44,91,45,49,48,56,46,57,50,52,53,56,57,44,52,54,46,49,51,50,51,55,93,44,91,45,49,48,57,46,52,49,54,50,50,55,44,52,54,46,49,51,50,51,55,49,93,44,91,45,49,48,57,46,52,49,55,49,53,56,44,52,54,46,48,52,52,55,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,108,101,100,115,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,54,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,49,54,48,54,50,44,51,53,46,55,54,49,57,51,57,93,44,91,45,56,53,46,50,53,52,48,54,50,44,51,53,46,55,54,53,54,49,49,93,44,91,45,56,53,46,52,50,51,56,48,52,44,51,53,46,53,54,55,52,50,50,93,44,91,45,56,53,46,52,48,51,50,57,56,44,51,53,46,52,57,50,50,56,93,44,91,45,56,53,46,50,50,53,56,55,55,44,51,53,46,51,53,52,50,55,54,93,44,91,45,56,53,46,49,51,53,49,57,49,44,51,53,46,52,53,56,54,52,57,93,44,91,45,56,53,46,49,48,55,55,54,50,44,51,53,46,53,55,49,51,53,57,93,44,91,45,56,52,46,57,49,54,48,54,50,44,51,53,46,55,54,49,57,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,57,34,44,34,78,65,77,69,34,58,34,84,111,100,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,53,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,53,57,51,55,49,44,51,55,46,48,55,50,52,48,49,93,44,91,45,56,55,46,51,51,53,57,56,44,51,54,46,54,52,49,54,53,57,93,44,91,45,56,55,46,49,49,52,57,56,51,44,51,54,46,54,52,50,51,55,49,93,44,91,45,56,55,46,48,54,48,56,52,57,44,51,54,46,54,52,50,57,54,51,93,44,91,45,56,55,46,48,53,51,49,54,52,44,51,55,46,48,54,49,48,49,57,93,44,91,45,56,55,46,50,53,57,51,55,49,44,51,55,46,48,55,50,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,87,101,97,107,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,54,50,54,44,34,98,101,100,115,34,58,49,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,50,55,51,48,51,44,51,54,46,53,48,50,54,51,51,93,44,91,45,56,56,46,56,49,53,51,56,57,44,51,54,46,52,50,50,53,50,56,93,44,91,45,56,56,46,57,53,48,50,48,53,44,51,54,46,52,48,57,50,52,56,93,44,91,45,56,56,46,57,53,57,56,51,57,44,51,54,46,50,50,50,56,51,52,93,44,91,45,56,56,46,56,51,53,52,53,55,44,51,54,46,49,50,49,52,54,49,93,44,91,45,56,56,46,54,57,50,55,48,57,44,51,54,46,48,54,50,55,52,54,93,44,91,45,56,56,46,53,51,48,51,50,50,44,51,54,46,49,53,50,48,50,51,93,44,91,45,56,56,46,53,49,54,52,48,51,44,51,54,46,53,48,49,53,56,51,93,44,91,45,56,56,46,56,49,54,55,54,51,44,51,54,46,53,48,50,54,54,53,93,44,91,45,56,56,46,56,50,55,51,48,51,44,51,54,46,53,48,50,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,56,52,50,57,44,34,98,101,100,115,34,58,49,57,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,50,53,56,52,52,44,51,55,46,50,56,50,48,49,49,93,44,91,45,57,51,46,54,48,56,56,57,57,44,51,55,46,48,57,56,49,53,51,93,44,91,45,57,51,46,48,54,53,50,55,52,44,51,55,46,48,56,56,54,57,52,93,44,91,45,57,51,46,48,55,51,51,56,44,51,55,46,52,49,52,57,56,57,93,44,91,45,57,51,46,49,56,50,52,56,57,44,51,55,46,52,49,55,50,48,52,93,44,91,45,57,51,46,54,50,49,49,53,51,44,51,55,46,52,50,55,52,50,51,93,44,91,45,57,51,46,54,50,53,56,52,52,44,51,55,46,50,56,50,48,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,101,104,105,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,50,54,49,51,44,34,98,101,100,115,34,58,49,52,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,57,49,52,55,51,44,52,48,46,54,55,55,50,55,93,44,91,45,55,53,46,53,50,57,54,57,52,44,52,48,46,52,52,54,57,57,53,93,44,91,45,55,53,46,52,56,52,48,53,55,44,52,48,46,52,49,56,52,53,49,93,44,91,45,55,53,46,51,51,51,53,49,52,44,52,48,46,53,51,55,48,53,55,93,44,91,45,55,53,46,51,56,51,48,52,57,44,52,48,46,54,50,51,54,54,51,93,44,91,45,55,53,46,52,56,49,52,54,57,44,52,48,46,54,53,53,55,52,52,93,44,91,45,55,53,46,54,48,56,57,56,53,44,52,48,46,55,56,55,51,56,55,93,44,91,45,55,53,46,55,53,55,56,48,55,44,52,48,46,55,51,53,52,49,52,93,44,91,45,55,53,46,56,57,49,52,55,51,44,52,48,46,54,55,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,83,101,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,50,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,49,49,56,44,52,49,46,48,52,54,57,52,55,93,44,91,45,57,55,46,51,54,56,52,48,49,44,52,48,46,54,57,56,54,50,53,93,44,91,45,57,54,46,57,49,51,52,57,51,44,52,48,46,54,57,55,57,52,56,93,44,91,45,57,54,46,57,49,48,57,52,44,52,49,46,48,52,54,49,49,54,93,44,91,45,57,55,46,51,54,56,49,49,56,44,52,49,46,48,52,54,57,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,104,101,109,117,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,55,52,48,44,34,98,101,100,115,34,58,52,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,54,53,48,50,56,44,52,50,46,50,55,56,52,57,53,93,44,91,45,55,54,46,57,54,53,55,50,56,44,52,50,46,48,48,49,50,55,54,93,44,91,45,55,54,46,57,50,55,48,56,52,44,52,50,46,48,48,49,54,55,52,93,44,91,45,55,54,46,53,53,55,54,50,52,44,52,50,46,48,48,48,49,54,93,44,91,45,55,54,46,53,51,56,51,52,57,44,52,50,46,50,56,49,55,53,53,93,44,91,45,55,54,46,54,49,57,51,48,51,44,52,50,46,50,56,50,56,53,51,93,44,91,45,55,54,46,57,54,53,48,50,56,44,52,50,46,50,55,56,52,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,54,53,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,54,52,51,56,49,44,52,50,46,56,54,55,52,54,49,93,44,91,45,55,56,46,52,54,51,57,52,44,52,50,46,53,51,54,51,51,50,93,44,91,45,55,56,46,51,48,56,56,51,57,44,52,50,46,53,50,49,50,49,55,93,44,91,45,55,56,46,48,51,56,50,54,49,44,52,50,46,53,50,49,53,50,50,93,44,91,45,55,55,46,57,53,54,51,51,52,44,52,50,46,54,54,55,51,50,50,93,44,91,45,55,55,46,57,53,52,57,54,52,44,52,50,46,56,54,50,55,53,52,93,44,91,45,55,56,46,52,54,52,51,56,49,44,52,50,46,56,54,55,52,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,83,116,97,110,105,115,108,97,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,57,51,48,49,44,34,98,101,100,115,34,58,49,51,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,57,50,54,52,52,57,44,51,56,46,48,55,55,52,50,49,93,44,91,45,49,50,48,46,57,50,50,49,55,52,44,51,55,46,55,52,55,56,48,54,93,44,91,45,49,50,49,46,49,53,53,56,52,57,44,51,55,46,55,49,57,56,52,52,93,44,91,45,49,50,49,46,52,55,49,57,50,53,44,51,55,46,52,56,49,55,56,51,93,44,91,45,49,50,49,46,52,55,50,54,52,56,44,51,55,46,52,56,50,49,55,93,44,91,45,49,50,49,46,52,49,50,53,52,57,44,51,55,46,51,56,57,52,51,53,93,44,91,45,49,50,49,46,52,53,52,48,48,57,44,51,55,46,50,56,52,48,53,93,44,91,45,49,50,49,46,52,48,52,54,51,54,44,51,55,46,49,53,53,57,56,57,93,44,91,45,49,50,49,46,50,50,54,56,48,52,44,51,55,46,49,51,52,55,55,52,93,44,91,45,49,50,48,46,57,55,50,57,52,49,44,51,55,46,51,51,56,52,56,51,93,44,91,45,49,50,48,46,57,56,51,55,53,54,44,51,55,46,51,57,57,54,52,93,44,91,45,49,50,48,46,51,56,55,54,55,44,51,55,46,54,51,51,51,54,52,93,44,91,45,49,50,48,46,51,56,55,54,49,51,44,51,55,46,54,51,51,55,48,52,93,44,91,45,49,50,48,46,54,53,51,50,55,52,44,51,55,46,56,51,49,56,53,56,93,44,91,45,49,50,48,46,57,50,54,52,52,57,44,51,56,46,48,55,55,52,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,49,55,55,56,44,34,98,101,100,115,34,58,49,50,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,49,50,48,50,51,50,44,52,48,46,57,54,56,55,48,50,93,44,91,45,55,53,46,51,48,48,53,57,52,44,52,48,46,56,53,57,53,54,51,93,44,91,45,55,53,46,52,55,52,49,57,51,44,52,48,46,56,49,52,55,52,54,93,44,91,45,55,53,46,54,48,56,57,56,53,44,52,48,46,55,56,55,51,56,55,93,44,91,45,55,53,46,52,56,49,52,54,57,44,52,48,46,54,53,53,55,52,52,93,44,91,45,55,53,46,51,56,51,48,52,57,44,52,48,46,54,50,51,54,54,51,93,44,91,45,55,53,46,51,51,51,53,49,52,44,52,48,46,53,51,55,48,53,55,93,44,91,45,55,53,46,49,57,54,56,48,51,44,52,48,46,54,48,56,53,56,93,44,91,45,55,53,46,49,55,49,53,56,55,44,52,48,46,55,55,55,55,52,53,93,44,91,45,55,53,46,48,53,51,54,54,52,44,52,48,46,56,55,51,54,54,93,44,91,45,55,53,46,49,50,48,50,51,50,44,52,48,46,57,54,56,55,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,49,50,50,44,34,98,101,100,115,34,58,50,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,48,53,48,55,51,44,51,52,46,54,56,54,48,51,55,93,44,91,45,56,55,46,49,49,48,49,49,49,44,51,52,46,51,49,51,55,57,57,93,44,91,45,56,54,46,53,56,49,57,51,54,44,51,52,46,51,48,52,54,57,52,93,44,91,45,56,54,46,53,53,48,49,54,54,44,51,52,46,53,52,53,57,54,51,93,44,91,45,56,54,46,54,56,57,51,53,51,44,51,52,46,53,56,54,52,50,53,93,44,91,45,56,54,46,55,57,48,48,53,54,44,51,52,46,53,53,48,55,57,93,44,91,45,56,54,46,57,48,55,50,48,53,44,51,52,46,53,55,57,55,57,50,93,44,91,45,56,55,46,49,48,53,48,55,51,44,51,52,46,54,56,54,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,66,114,101,99,107,105,110,114,105,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,57,48,56,53,52,44,51,56,46,48,52,53,55,51,53,93,44,91,45,56,54,46,53,48,55,48,56,57,44,51,55,46,57,50,57,57,49,55,93,44,91,45,56,54,46,54,53,53,50,55,50,44,51,55,46,56,52,50,53,50,49,93,44,91,45,56,54,46,54,51,56,57,51,53,44,51,55,46,54,54,49,56,55,55,93,44,91,45,56,54,46,53,57,50,56,49,44,51,55,46,53,54,52,51,54,93,44,91,45,56,54,46,50,55,53,50,55,44,51,55,46,53,57,51,53,49,57,93,44,91,45,56,54,46,49,53,49,50,56,53,44,51,55,46,55,57,56,56,55,56,93,44,91,45,56,54,46,52,57,48,56,53,52,44,51,56,46,48,52,53,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,71,114,101,110,97,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,50,55,56,44,34,98,101,100,115,34,58,49,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,50,54,48,57,57,44,51,51,46,56,57,55,57,53,55,93,44,91,45,56,57,46,57,50,54,50,57,52,44,51,51,46,56,50,51,56,53,52,93,44,91,45,57,48,46,49,51,54,52,57,49,44,51,51,46,56,48,57,51,49,57,93,44,91,45,57,48,46,49,51,54,55,56,55,44,51,51,46,55,50,49,54,52,56,93,44,91,45,57,48,46,49,50,55,55,55,53,44,51,51,46,54,55,54,57,53,54,93,44,91,45,56,57,46,55,56,54,56,57,44,51,51,46,54,55,54,55,50,55,93,44,91,45,56,57,46,53,48,54,56,55,50,44,51,51,46,54,55,55,54,48,53,93,44,91,45,56,57,46,53,48,55,49,51,53,44,51,51,46,55,50,49,56,49,57,93,44,91,45,56,57,46,53,48,55,51,53,51,44,51,51,46,56,54,55,52,54,57,93,44,91,45,56,57,46,55,54,57,48,53,44,51,51,46,56,54,55,51,51,52,93,44,91,45,56,57,46,57,50,54,48,57,57,44,51,51,46,56,57,55,57,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,51,34,44,34,78,65,77,69,34,58,34,83,105,109,112,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,55,54,51,50,57,54,44,51,54,46,54,52,56,57,53,52,93,44,91,45,56,54,46,53,54,51,57,48,57,44,51,54,46,54,51,51,53,54,50,93,44,91,45,56,54,46,52,49,49,51,55,57,44,51,54,46,54,53,48,57,50,52,93,44,91,45,56,54,46,52,48,53,55,54,57,44,51,54,46,55,55,54,49,56,55,93,44,91,45,56,54,46,53,56,51,50,56,57,44,51,54,46,56,51,48,50,56,50,93,44,91,45,56,54,46,54,49,49,53,56,54,44,51,54,46,56,56,51,48,53,55,93,44,91,45,56,54,46,54,57,48,55,49,57,44,51,54,46,56,52,52,51,93,44,91,45,56,54,46,55,54,51,50,57,54,44,51,54,46,54,52,56,57,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,100,32,73,115,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,52,51,49,50,52,44,52,53,46,48,49,48,56,52,93,44,91,45,55,51,46,51,51,53,48,52,52,44,52,52,46,56,48,52,49,48,57,93,44,91,45,55,51,46,51,56,57,56,50,44,52,52,46,54,49,55,50,49,49,93,44,91,45,55,51,46,51,54,49,52,53,53,44,52,52,46,53,54,51,53,54,51,93,44,91,45,55,51,46,50,51,51,50,48,57,44,52,52,46,54,52,57,55,57,49,93,44,91,45,55,51,46,50,50,56,56,53,52,44,52,52,46,55,50,50,56,54,54,93,44,91,45,55,51,46,49,57,49,57,50,56,44,52,53,46,48,49,51,54,49,53,93,44,91,45,55,51,46,51,52,51,49,50,52,44,52,53,46,48,49,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,48,48,51,44,34,98,101,100,115,34,58,51,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,56,54,54,55,57,44,52,48,46,57,48,49,54,48,57,93,44,91,45,56,49,46,48,56,55,50,56,57,44,52,48,46,55,50,55,56,49,54,93,44,91,45,56,48,46,57,49,55,49,55,50,44,52,48,46,55,50,54,57,51,52,93,44,91,45,56,48,46,56,54,49,57,57,52,44,52,48,46,53,57,57,52,48,52,93,44,91,45,56,48,46,54,54,55,57,53,55,44,52,48,46,53,56,50,52,57,54,93,44,91,45,56,48,46,53,49,56,57,57,49,44,52,48,46,54,51,56,56,48,49,93,44,91,45,56,48,46,53,49,57,48,52,52,44,52,48,46,56,53,49,51,51,57,93,44,91,45,56,48,46,53,49,57,49,53,44,52,48,46,57,48,48,51,50,54,93,44,91,45,56,49,46,48,56,54,54,55,57,44,52,48,46,57,48,49,54,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,78,101,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,56,51,56,56,55,52,44,51,56,46,48,52,55,51,55,93,44,91,45,55,57,46,48,48,53,49,50,57,44,51,55,46,56,56,49,54,57,93,44,91,45,55,57,46,49,53,55,51,57,44,51,55,46,56,57,49,48,48,51,93,44,91,45,55,57,46,49,55,50,49,51,49,44,51,55,46,56,48,51,48,57,55,93,44,91,45,55,56,46,57,54,54,57,50,54,44,51,55,46,54,55,55,48,48,52,93,44,91,45,55,56,46,56,54,57,50,52,53,44,51,55,46,53,52,50,48,57,50,93,44,91,45,55,56,46,56,50,53,50,51,56,44,51,55,46,53,53,50,53,52,50,93,44,91,45,55,56,46,54,52,51,57,49,56,44,51,55,46,55,51,51,48,56,52,93,44,91,45,55,56,46,56,51,56,56,55,52,44,51,56,46,48,52,55,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,79,115,99,101,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,54,49,57,44,34,98,101,100,115,34,58,54,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,53,55,50,54,56,44,50,56,46,51,52,55,48,57,56,93,44,91,45,56,49,46,54,53,55,49,56,57,44,50,56,46,50,53,57,50,49,55,93,44,91,45,56,49,46,53,53,55,52,53,57,44,50,56,46,50,53,57,51,54,50,93,44,91,45,56,49,46,53,50,52,50,50,55,44,50,56,46,49,52,50,56,48,53,93,44,91,45,56,49,46,52,53,53,55,53,56,44,50,56,46,48,56,52,56,57,93,44,91,45,56,49,46,51,52,54,52,49,56,44,50,56,46,48,56,52,54,57,54,93,44,91,45,56,49,46,51,56,49,48,50,50,44,50,55,46,57,56,51,51,57,51,93,44,91,45,56,49,46,50,57,55,49,49,51,44,50,55,46,56,53,57,53,56,50,93,44,91,45,56,49,46,50,49,52,52,48,57,44,50,55,46,56,50,56,53,53,93,44,91,45,56,49,46,49,52,50,49,54,52,44,50,55,46,54,52,51,50,51,56,93,44,91,45,56,48,46,56,55,51,49,53,44,50,55,46,54,52,50,50,56,56,93,44,91,45,56,48,46,56,54,56,56,56,49,44,50,55,46,56,50,50,53,50,50,93,44,91,45,56,48,46,56,54,50,57,48,56,44,50,56,46,51,52,55,52,56,55,93,44,91,45,56,49,46,54,53,55,50,54,56,44,50,56,46,51,52,55,48,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,52,53,56,49,56,44,51,52,46,52,57,51,53,48,54,93,44,91,45,57,50,46,52,48,52,54,56,44,51,52,46,52,53,49,57,49,54,93,44,91,45,57,50,46,53,56,57,52,49,56,44,51,52,46,52,53,53,54,52,49,93,44,91,45,57,50,46,54,54,56,55,49,49,44,51,52,46,52,49,52,50,51,55,93,44,91,45,57,50,46,54,55,56,51,56,51,44,51,52,46,49,52,57,54,50,50,93,44,91,45,57,50,46,52,57,51,54,55,50,44,51,52,46,49,52,52,50,51,52,93,44,91,45,57,50,46,51,51,54,55,54,53,44,51,52,46,48,53,57,54,51,51,93,44,91,45,57,50,46,50,51,51,51,55,54,44,51,52,46,48,54,50,51,49,50,93,44,91,45,57,50,46,50,48,56,48,52,49,44,51,52,46,52,57,50,55,54,53,93,44,91,45,57,50,46,50,52,53,56,49,56,44,51,52,46,52,57,51,53,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,76,97,117,114,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,52,49,56,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,44,91,45,56,51,46,49,51,56,57,57,49,44,51,50,46,52,50,51,48,54,57,93,44,91,45,56,50,46,57,57,48,57,54,55,44,51,50,46,49,52,55,50,55,52,93,44,91,45,56,50,46,56,56,52,56,48,51,44,51,50,46,49,57,54,48,55,50,93,44,91,45,56,50,46,55,50,49,57,54,52,44,51,50,46,51,48,57,50,56,51,93,44,91,45,56,50,46,54,52,55,55,51,51,44,51,50,46,53,49,50,53,48,55,93,44,91,45,56,50,46,54,54,56,53,53,55,44,51,50,46,54,49,50,49,54,52,93,44,91,45,56,50,46,56,54,50,55,54,51,44,51,50,46,55,49,53,55,54,93,44,91,45,56,50,46,57,53,55,48,54,54,44,51,50,46,55,48,56,51,49,56,93,44,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,50,52,56,48,44,34,98,101,100,115,34,58,49,48,51,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,56,52,55,57,52,44,52,48,46,55,57,55,54,56,55,93,44,91,45,55,52,46,48,51,52,53,55,51,44,52,48,46,54,56,52,56,54,54,93,44,91,45,55,51,46,57,54,50,52,55,56,44,52,48,46,55,51,54,56,48,50,93,44,91,45,55,51,46,57,49,50,52,53,54,44,52,48,46,55,57,54,48,57,54,93,44,91,45,55,51,46,57,51,51,56,48,56,44,52,48,46,56,56,50,50,49,52,93,44,91,45,55,51,46,57,56,52,55,57,52,44,52,48,46,55,57,55,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,57,56,48,44,34,98,101,100,115,34,58,52,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,55,57,49,57,44,51,54,46,52,57,57,52,49,52,93,44,91,45,57,52,46,53,54,50,55,50,55,44,51,54,46,49,54,49,56,57,51,93,44,91,45,57,52,46,53,53,50,49,55,50,44,51,54,46,49,48,50,49,50,56,93,44,91,45,57,52,46,51,57,49,49,50,53,44,51,54,46,48,57,57,51,57,54,93,44,91,45,57,52,46,51,51,51,53,54,53,44,51,54,46,50,49,52,55,50,55,93,44,91,45,57,52,46,48,49,55,53,48,57,44,51,54,46,50,48,56,49,52,57,93,44,91,45,57,51,46,56,56,55,55,55,53,44,51,54,46,50,51,53,48,52,54,93,44,91,45,57,51,46,56,49,53,48,55,56,44,51,54,46,51,48,54,53,53,49,93,44,91,45,57,51,46,56,54,54,57,54,49,44,51,54,46,51,52,56,53,55,57,93,44,91,45,57,51,46,56,54,54,54,56,57,44,51,54,46,52,57,56,55,51,53,93,44,91,45,57,52,46,48,55,55,48,56,57,44,51,54,46,52,57,56,55,51,93,44,91,45,57,52,46,54,49,55,57,49,57,44,51,54,46,52,57,57,52,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,73,115,97,98,101,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,52,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,48,52,57,54,53,44,49,56,46,53,54,54,53,54,93,44,91,45,54,55,46,48,53,54,53,48,55,44,49,56,46,52,54,48,57,53,52,93,44,91,45,54,55,46,48,50,55,49,55,51,44,49,56,46,51,57,51,51,55,54,93,44,91,45,54,54,46,57,50,50,48,50,44,49,56,46,51,57,51,50,48,52,93,44,91,45,54,54,46,57,52,53,57,51,56,44,49,56,46,53,52,48,52,49,57,93,44,91,45,54,55,46,49,48,52,57,54,53,44,49,56,46,53,54,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,56,51,55,49,44,34,98,101,100,115,34,58,56,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,48,54,54,50,44,50,57,46,52,56,53,48,52,56,93,44,91,45,56,50,46,52,48,51,50,51,55,44,50,57,46,50,49,53,54,50,51,93,44,91,45,56,50,46,53,51,52,56,54,44,50,57,46,50,49,52,54,56,93,44,91,45,56,50,46,53,51,53,53,57,49,44,50,57,46,48,52,52,56,53,53,93,44,91,45,56,50,46,52,55,55,54,51,57,44,50,57,46,48,53,50,52,56,52,93,44,91,45,56,50,46,51,49,49,54,57,55,44,50,56,46,57,54,48,51,57,49,93,44,91,45,56,49,46,57,53,52,49,57,44,50,56,46,57,54,48,48,53,51,93,44,91,45,56,49,46,54,53,56,54,57,56,44,50,56,46,57,54,48,51,52,53,93,44,91,45,56,49,46,54,52,49,57,49,54,44,50,57,46,50,55,54,55,54,54,93,44,91,45,56,49,46,54,56,48,57,48,51,44,50,57,46,51,50,52,52,51,93,44,91,45,56,49,46,55,55,54,50,48,53,44,50,57,46,52,56,55,52,52,56,93,44,91,45,56,49,46,56,52,51,48,48,57,44,50,57,46,53,50,49,48,48,52,93,44,91,45,56,50,46,48,53,53,56,57,57,44,50,57,46,52,55,49,50,51,50,93,44,91,45,56,50,46,52,48,54,54,50,44,50,57,46,52,56,53,48,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,78,111,116,116,111,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,48,48,44,34,98,101,100,115,34,58,49,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,55,57,53,57,50,54,44,51,55,46,49,57,50,53,57,50,93,44,91,45,55,56,46,50,51,49,50,51,52,44,51,55,46,50,57,54,50,50,93,44,91,45,55,56,46,50,51,57,51,53,52,44,51,55,46,49,50,48,48,56,57,93,44,91,45,55,56,46,49,55,48,56,57,53,44,51,55,46,48,53,51,57,52,57,93,44,91,45,55,56,46,48,48,51,54,51,57,44,51,55,46,48,50,50,55,53,54,93,44,91,45,55,55,46,56,56,57,56,49,51,44,51,54,46,57,56,56,56,49,56,93,44,91,45,55,55,46,57,48,48,51,51,56,44,51,55,46,49,52,51,56,56,50,93,44,91,45,55,55,46,55,57,53,57,50,54,44,51,55,46,49,57,50,53,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,50,57,51,44,34,98,101,100,115,34,58,49,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,49,50,48,50,51,50,44,52,48,46,57,54,56,55,48,50,93,44,91,45,55,53,46,48,53,51,54,54,52,44,52,48,46,56,55,51,54,54,93,44,91,45,55,53,46,49,55,49,53,56,55,44,52,48,46,55,55,55,55,52,53,93,44,91,45,55,53,46,49,57,54,56,48,51,44,52,48,46,54,48,56,53,56,93,44,91,45,55,53,46,49,56,57,54,44,52,48,46,53,57,49,55,55,54,93,44,91,45,55,52,46,57,55,48,49,49,50,44,52,48,46,55,48,57,56,54,50,93,44,91,45,55,52,46,56,56,57,56,49,57,44,52,48,46,55,56,55,55,50,57,93,44,91,45,55,52,46,55,54,57,52,50,53,44,52,48,46,57,49,48,57,51,52,93,44,91,45,55,52,46,57,54,54,57,48,54,44,52,49,46,48,57,52,52,49,93,44,91,45,55,53,46,49,50,48,50,51,50,44,52,48,46,57,54,56,55,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,57,49,57,44,34,98,101,100,115,34,58,49,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,53,50,52,50,57,44,52,50,46,53,49,48,48,49,55,93,44,91,45,55,51,46,55,56,51,55,50,49,44,52,50,46,52,54,52,50,51,49,93,44,91,45,55,51,46,55,56,57,53,48,50,44,52,50,46,50,54,55,55,51,56,93,44,91,45,55,51,46,57,49,48,54,55,53,44,52,50,46,49,50,55,50,57,51,93,44,91,45,55,51,46,57,50,57,54,50,54,44,52,50,46,48,55,56,55,55,56,93,44,91,45,55,51,46,55,49,48,57,51,44,52,50,46,48,48,53,52,56,56,93,44,91,45,55,51,46,53,50,55,48,55,50,44,52,49,46,57,55,55,57,56,93,44,91,45,55,51,46,52,57,55,48,49,56,44,52,50,46,48,52,57,54,50,52,93,44,91,45,55,51,46,53,48,56,50,49,44,52,50,46,48,56,54,49,51,52,93,44,91,45,55,51,46,51,53,50,52,50,57,44,52,50,46,53,49,48,48,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,57,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,57,48,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,115,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,48,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,48,52,48,55,55,44,51,54,46,54,56,52,49,50,55,93,44,91,45,55,57,46,56,53,57,50,54,44,51,54,46,54,54,49,55,51,55,93,44,91,45,55,57,46,56,51,55,51,53,57,44,51,54,46,55,48,52,49,51,55,93,44,91,45,55,57,46,56,55,52,55,54,44,51,54,46,55,49,53,50,51,55,93,44,91,45,55,57,46,57,48,52,48,55,55,44,51,54,46,54,56,52,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,111,99,116,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,56,54,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,53,54,53,50,49,44,51,52,46,49,53,54,57,54,53,93,44,91,45,57,53,46,55,55,57,51,55,54,44,51,52,46,49,53,54,54,57,57,93,44,91,45,57,53,46,57,57,49,53,55,56,44,51,52,46,49,53,54,56,48,53,93,44,91,45,57,53,46,57,51,56,49,53,44,51,52,46,49,50,53,49,93,44,91,45,57,53,46,57,51,55,57,56,57,44,51,51,46,57,52,56,50,49,57,93,44,91,45,57,53,46,55,54,49,53,50,44,51,51,46,56,55,51,49,49,56,93,44,91,45,57,53,46,53,53,50,55,57,57,44,51,51,46,57,50,52,51,49,49,93,44,91,45,57,53,46,53,51,51,55,57,56,44,51,51,46,56,56,49,49,53,51,93,44,91,45,57,53,46,51,49,48,52,57,55,44,51,51,46,56,55,55,50,48,52,93,44,91,45,57,53,46,49,53,53,56,56,50,44,51,51,46,57,51,54,53,55,50,93,44,91,45,57,53,46,49,53,54,53,50,49,44,51,52,46,49,53,54,57,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,105,99,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,48,52,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,55,49,54,49,52,44,51,56,46,57,53,55,56,53,50,93,44,91,45,57,55,46,51,55,49,57,49,49,44,51,56,46,54,48,57,51,53,51,93,44,91,45,57,54,46,57,51,48,50,56,54,44,51,56,46,54,48,57,51,54,50,93,44,91,45,57,54,46,57,50,55,50,51,52,44,51,56,46,56,49,50,49,54,93,44,91,45,57,54,46,56,57,48,50,52,53,44,51,56,46,56,55,48,48,54,55,93,44,91,45,57,54,46,57,54,51,52,55,44,51,56,46,57,54,52,57,48,49,93,44,91,45,57,54,46,57,54,51,49,55,55,44,51,57,46,49,51,50,51,93,44,91,45,57,55,46,51,55,49,49,53,52,44,51,57,46,49,51,49,57,54,49,93,44,91,45,57,55,46,51,55,49,54,49,52,44,51,56,46,57,53,55,56,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,50,55,34,44,34,78,65,77,69,34,58,34,83,116,97,114,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,56,57,52,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,54,57,52,49,54,44,50,54,46,53,55,49,54,56,50,93,44,91,45,57,57,46,48,56,50,48,48,54,44,50,54,46,51,57,54,54,54,55,93,44,91,45,57,56,46,56,57,53,54,57,52,44,50,54,46,51,53,51,52,57,49,93,44,91,45,57,56,46,56,50,48,52,53,50,44,50,54,46,51,55,49,48,48,50,93,44,91,45,57,56,46,54,54,52,54,51,51,44,50,54,46,50,51,53,51,53,49,93,44,91,45,57,56,46,53,56,54,55,49,53,44,50,54,46,50,53,55,53,52,50,93,44,91,45,57,56,46,51,50,48,54,55,44,50,54,46,55,56,51,48,56,49,93,44,91,45,57,56,46,52,50,50,54,49,54,44,50,54,46,55,56,51,53,51,53,93,44,91,45,57,56,46,57,53,52,50,51,44,50,54,46,55,56,53,54,57,52,93,44,91,45,57,57,46,48,49,49,49,49,50,44,50,54,46,54,55,53,48,50,51,93,44,91,45,57,57,46,49,54,57,52,49,54,44,50,54,46,53,55,49,54,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,69,102,102,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,54,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,52,56,48,48,54,44,51,50,46,52,56,57,50,56,54,93,44,91,45,56,49,46,53,51,48,57,50,49,44,51,50,46,51,57,48,51,56,53,93,44,91,45,56,49,46,52,51,53,56,51,44,51,50,46,50,52,49,50,56,57,93,44,91,45,56,49,46,51,57,49,54,57,56,44,51,50,46,48,57,53,56,56,54,93,44,91,45,56,49,46,49,57,53,54,51,52,44,51,50,46,50,51,55,52,57,57,93,44,91,45,56,49,46,49,52,52,53,55,50,44,51,50,46,50,50,54,49,50,56,93,44,91,45,56,49,46,49,50,56,53,51,53,44,51,50,46,51,51,56,51,56,49,93,44,91,45,56,49,46,50,56,49,50,55,44,51,50,46,53,53,54,52,55,49,93,44,91,45,56,49,46,51,56,57,50,48,53,44,51,50,46,53,57,53,52,49,54,93,44,91,45,56,49,46,53,52,56,48,48,54,44,51,50,46,52,56,57,50,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,82,111,103,101,114,32,77,105,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,48,56,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,56,49,48,50,50,44,51,54,46,48,49,50,57,50,53,93,44,91,45,57,57,46,52,57,53,56,49,50,44,51,53,46,57,55,56,55,51,50,93,44,91,45,57,57,46,53,53,56,52,56,54,44,51,53,46,56,54,53,57,56,56,93,44,91,45,57,57,46,55,49,55,49,48,49,44,51,53,46,56,53,57,55,54,57,93,44,91,45,57,57,46,56,57,51,51,55,50,44,51,53,46,57,56,53,50,57,53,93,44,91,45,49,48,48,46,48,48,48,51,57,54,44,51,53,46,56,56,49,50,51,51,93,44,91,45,49,48,48,46,48,48,48,51,57,50,44,51,53,46,54,49,57,49,49,53,93,44,91,45,57,57,46,57,57,57,54,54,44,51,53,46,52,50,50,51,54,52,93,44,91,45,57,57,46,53,55,53,56,50,44,51,53,46,52,50,49,54,53,53,93,44,91,45,57,57,46,53,55,53,55,50,51,44,51,53,46,53,48,56,56,54,52,93,44,91,45,57,57,46,51,54,52,49,52,49,44,51,53,46,53,48,56,55,57,51,93,44,91,45,57,57,46,51,55,53,56,49,55,44,51,53,46,56,49,50,49,56,56,93,44,91,45,57,57,46,51,56,49,48,50,50,44,51,54,46,48,49,50,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,49,48,54,57,44,52,51,46,53,53,51,57,57,49,93,44,91,45,57,48,46,54,55,49,54,53,50,44,52,51,46,53,53,50,56,53,54,93,44,91,45,57,48,46,54,54,56,53,54,49,44,52,51,46,52,50,50,57,57,52,93,44,91,45,57,48,46,54,54,54,55,56,54,44,52,51,46,49,55,49,55,55,55,93,44,91,45,57,48,46,52,50,57,56,50,53,44,52,51,46,50,48,48,57,52,93,44,91,45,57,48,46,49,57,51,56,49,52,44,52,51,46,49,54,52,52,54,52,93,44,91,45,57,48,46,49,57,49,57,54,52,44,52,51,46,53,53,52,57,57,54,93,44,91,45,57,48,46,51,49,49,48,54,57,44,52,51,46,53,53,51,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,76,101,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,49,50,54,44,34,98,101,100,115,34,58,50,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,49,48,49,50,57,44,51,51,46,53,55,48,49,49,55,93,44,91,45,49,48,51,46,55,50,48,56,48,57,44,51,51,46,53,54,57,53,51,55,93,44,91,45,49,48,51,46,55,54,54,51,54,49,44,51,51,46,51,57,53,50,57,55,93,44,91,45,49,48,51,46,55,54,54,52,49,55,44,51,50,46,57,54,53,50,54,52,93,44,91,45,49,48,51,46,56,49,52,53,48,55,44,51,50,46,57,54,53,49,49,52,93,44,91,45,49,48,51,46,56,49,52,50,49,54,44,51,50,46,53,50,50,51,54,56,93,44,91,45,49,48,51,46,55,50,50,57,51,56,44,51,50,46,53,50,50,51,52,52,93,44,91,45,49,48,51,46,55,50,50,56,56,50,44,51,50,46,48,48,48,50,48,54,93,44,91,45,49,48,51,46,51,50,54,53,48,49,44,51,50,46,48,48,48,51,54,57,93,44,91,45,49,48,51,46,48,54,52,53,49,44,51,50,46,48,48,48,52,50,52,93,44,91,45,49,48,51,46,48,54,52,53,49,54,44,51,50,46,48,56,55,48,53,49,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,53,50,50,49,57,51,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,57,53,57,48,57,57,93,44,91,45,49,48,51,46,48,53,54,52,56,53,44,51,51,46,51,56,56,52,49,52,93,44,91,45,49,48,51,46,48,53,50,54,50,49,44,51,51,46,53,55,48,53,55,53,93,44,91,45,49,48,51,46,53,49,48,49,50,57,44,51,51,46,53,55,48,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,97,109,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,51,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,48,55,50,50,57,44,51,52,46,48,53,56,51,51,51,93,44,91,45,56,56,46,50,52,56,57,49,54,44,51,51,46,55,52,52,57,55,55,93,44,91,45,56,56,46,50,55,52,54,49,57,44,51,51,46,53,51,52,48,48,56,93,44,91,45,56,55,46,57,52,54,53,49,57,44,51,51,46,53,50,52,48,54,53,93,44,91,45,56,55,46,57,53,49,55,56,53,44,51,51,46,57,49,57,57,51,93,44,91,45,56,55,46,57,56,54,57,51,44,51,52,46,48,53,50,49,48,50,93,44,91,45,56,56,46,50,48,55,50,50,57,44,51,52,46,48,53,56,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,52,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,52,34,44,34,78,65,77,69,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,56,56,49,56,49,44,49,56,46,51,56,57,52,48,56,93,44,91,45,54,54,46,53,57,48,55,56,53,44,49,56,46,51,51,56,48,54,93,44,91,45,54,54,46,53,51,51,54,50,51,44,49,56,46,51,53,49,51,51,51,93,44,91,45,54,54,46,53,52,51,48,55,57,44,49,56,46,52,48,53,52,50,50,93,44,91,45,54,54,46,53,56,56,49,56,49,44,49,56,46,51,56,57,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,56,54,49,57,51,44,51,53,46,55,49,48,48,53,49,93,44,91,45,56,54,46,55,56,50,48,49,54,44,51,53,46,55,48,54,53,57,53,93,44,91,45,56,54,46,56,52,57,53,55,51,44,51,53,46,53,50,53,53,49,53,93,44,91,45,56,54,46,57,54,48,56,48,52,44,51,53,46,52,49,55,48,50,49,93,44,91,45,56,54,46,56,50,56,51,48,49,44,51,53,46,50,54,51,54,55,55,93,44,91,45,56,54,46,55,52,54,56,57,57,44,51,53,46,50,53,50,56,55,56,93,44,91,45,56,54,46,53,57,57,52,55,56,44,51,53,46,51,54,52,57,53,93,44,91,45,56,54,46,54,53,56,50,52,55,44,51,53,46,52,51,53,50,56,49,93,44,91,45,56,54,46,54,51,57,52,51,54,44,51,53,46,54,56,53,57,93,44,91,45,56,54,46,54,56,54,49,57,51,44,51,53,46,55,49,48,48,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,112,112,111,109,97,116,116,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,56,54,57,50,52,53,44,51,55,46,53,52,50,48,57,50,93,44,91,45,55,57,46,48,50,49,54,56,55,44,51,55,46,52,50,57,50,52,51,93,44,91,45,55,56,46,57,50,54,52,54,44,51,55,46,50,55,55,48,55,49,93,44,91,45,55,56,46,56,50,52,50,48,57,44,51,55,46,50,48,53,51,54,49,93,44,91,45,55,56,46,54,56,49,53,55,51,44,51,55,46,50,52,56,55,53,57,93,44,91,45,55,56,46,53,57,52,52,51,54,44,51,55,46,51,57,55,57,55,52,93,44,91,45,55,56,46,54,56,51,50,50,52,44,51,55,46,52,50,56,57,55,52,93,44,91,45,55,56,46,56,50,53,50,51,56,44,51,55,46,53,53,50,53,52,50,93,44,91,45,55,56,46,56,54,57,50,52,53,44,51,55,46,53,52,50,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,55,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,56,55,55,55,53,44,51,54,46,50,51,53,48,52,54,93,44,91,45,57,51,46,57,52,52,49,55,55,44,51,54,46,48,57,49,49,48,51,93,44,91,45,57,51,46,57,54,50,56,57,50,44,51,53,46,55,54,48,57,51,93,44,91,45,57,51,46,57,49,48,56,51,54,44,51,53,46,55,53,57,55,53,50,93,44,91,45,57,51,46,54,57,53,57,56,49,44,51,53,46,55,54,56,54,52,57,93,44,91,45,57,51,46,53,49,57,50,48,52,44,51,53,46,55,54,51,53,50,49,93,44,91,45,57,51,46,53,50,51,54,51,57,44,51,53,46,56,56,49,53,57,50,93,44,91,45,57,51,46,52,53,48,55,49,53,44,51,53,46,57,54,55,52,57,51,93,44,91,45,57,51,46,52,55,57,53,50,56,44,51,54,46,49,50,53,48,55,50,93,44,91,45,57,51,46,53,53,49,49,51,53,44,51,54,46,49,50,54,50,55,49,93,44,91,45,57,51,46,54,53,55,54,56,57,44,51,54,46,51,48,51,48,56,50,93,44,91,45,57,51,46,56,49,53,48,55,56,44,51,54,46,51,48,54,53,53,49,93,44,91,45,57,51,46,56,56,55,55,55,53,44,51,54,46,50,51,53,48,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,83,104,101,114,105,100,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,49,50,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,51,54,57,54,50,49,44,52,52,46,53,53,57,56,51,55,93,44,91,45,49,48,54,46,52,50,56,56,57,55,44,52,52,46,53,53,54,55,55,55,93,44,91,45,49,48,54,46,48,48,57,54,55,54,44,52,52,46,53,54,51,57,56,49,93,44,91,45,49,48,54,46,48,50,52,56,49,53,44,52,52,46,57,57,51,52,57,53,93,44,91,45,49,48,54,46,50,54,51,55,49,53,44,52,52,46,57,57,51,56,49,54,93,44,91,45,49,48,55,46,48,56,52,56,56,54,44,52,52,46,57,57,54,54,93,44,91,45,49,48,55,46,57,49,49,53,50,51,44,52,53,46,48,48,48,54,55,56,93,44,91,45,49,48,55,46,56,51,49,54,50,50,44,52,52,46,55,57,57,55,56,55,93,44,91,45,49,48,55,46,55,52,49,53,52,51,44,52,52,46,55,49,52,51,53,50,93,44,91,45,49,48,55,46,53,50,56,50,55,57,44,52,52,46,54,54,53,53,56,52,93,44,91,45,49,48,55,46,51,54,57,54,50,49,44,52,52,46,53,53,57,56,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,55,52,51,51,44,34,98,101,100,115,34,58,49,52,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,49,52,57,55,44,52,48,46,51,50,56,52,56,52,93,44,91,45,55,55,46,50,55,48,48,53,55,44,52,48,46,50,55,56,54,53,50,93,44,91,45,55,55,46,52,50,54,53,57,53,44,52,48,46,50,56,54,54,49,93,44,91,45,55,55,46,54,49,52,54,54,53,44,52,48,46,49,57,56,53,52,57,93,44,91,45,55,55,46,52,55,49,48,56,53,44,51,57,46,57,52,52,48,55,55,93,44,91,45,55,55,46,52,48,51,54,48,54,44,51,57,46,57,57,52,52,55,56,93,44,91,45,55,55,46,49,56,53,54,51,44,52,48,46,48,50,57,53,48,49,93,44,91,45,55,55,46,49,51,55,52,50,53,44,52,48,46,48,54,57,57,52,53,93,44,91,45,55,54,46,56,53,57,48,50,51,44,52,48,46,50,50,54,51,50,56,93,44,91,45,55,54,46,57,49,52,57,55,44,52,48,46,51,50,56,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,55,53,49,44,34,98,101,100,115,34,58,52,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,55,49,48,56,53,44,51,57,46,57,52,52,48,55,55,93,44,91,45,55,55,46,54,49,52,54,54,53,44,52,48,46,49,57,56,53,52,57,93,44,91,45,55,55,46,54,55,49,55,54,49,44,52,48,46,50,56,57,56,50,53,93,44,91,45,55,55,46,55,48,51,48,51,44,52,48,46,50,54,51,53,55,54,93,44,91,45,55,55,46,56,54,52,52,56,57,44,52,48,46,48,54,49,53,54,56,93,44,91,45,55,56,46,48,48,50,55,44,51,57,46,56,50,54,53,57,57,93,44,91,45,55,56,46,48,57,57,52,48,51,44,51,57,46,55,50,50,48,57,57,93,44,91,45,55,55,46,52,54,57,49,52,53,44,51,57,46,55,50,48,48,49,56,93,44,91,45,55,55,46,52,53,57,49,51,52,44,51,57,46,55,49,57,57,56,52,93,44,91,45,55,55,46,52,55,49,48,56,53,44,51,57,46,57,52,52,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,117,122,101,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,55,56,56,52,44,34,98,101,100,115,34,58,49,49,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,51,52,54,57,53,44,52,49,46,52,50,55,50,52,54,93,44,91,45,55,54,46,48,48,53,48,55,44,52,49,46,51,56,52,53,53,49,93,44,91,45,55,54,46,50,56,51,49,44,52,49,46,51,55,54,53,49,55,93,44,91,45,55,54,46,51,49,48,49,51,51,44,52,49,46,51,49,48,49,57,57,93,44,91,45,55,54,46,51,49,57,50,51,54,44,52,49,46,50,48,56,48,57,50,93,44,91,45,55,54,46,50,48,55,56,50,55,44,52,48,46,57,52,57,55,52,93,44,91,45,55,53,46,57,57,55,51,52,56,44,52,48,46,57,49,50,57,56,53,93,44,91,45,55,53,46,55,51,49,57,51,44,52,49,46,48,48,56,50,50,93,44,91,45,55,53,46,55,55,49,51,48,54,44,52,49,46,48,55,55,56,49,54,93,44,91,45,55,53,46,54,52,57,54,51,55,44,52,49,46,49,50,50,51,52,52,93,44,91,45,55,53,46,54,48,48,55,51,54,44,52,49,46,49,54,49,52,57,55,93,44,91,45,55,53,46,54,56,55,50,52,52,44,52,49,46,51,51,57,50,49,54,93,44,91,45,55,53,46,56,51,52,54,57,53,44,52,49,46,52,50,55,50,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,51,54,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,52,55,51,48,57,44,52,52,46,56,53,56,48,51,55,93,44,91,45,56,52,46,56,53,48,57,50,57,44,52,52,46,53,49,49,48,54,57,93,44,91,45,56,52,46,51,55,48,54,52,51,44,52,52,46,53,48,55,50,50,51,93,44,91,45,56,52,46,51,55,49,55,51,55,44,52,52,46,56,53,53,48,51,57,93,44,91,45,56,52,46,56,52,55,51,48,57,44,52,52,46,56,53,56,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,82,117,115,115,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,50,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,48,49,48,50,44,51,50,46,53,49,48,49,53,55,93,44,91,45,56,53,46,48,53,57,50,57,52,44,51,50,46,52,55,50,57,48,57,93,44,91,45,56,53,46,51,51,51,56,52,51,44,51,50,46,52,54,56,54,51,57,93,44,91,45,56,53,46,52,51,52,48,52,53,44,51,50,46,52,48,57,56,52,93,44,91,45,56,53,46,52,51,51,53,52,51,44,51,50,46,50,51,52,54,52,56,93,44,91,45,56,53,46,52,49,48,50,52,49,44,51,50,46,49,52,54,54,53,49,93,44,91,45,56,53,46,50,53,55,55,52,55,44,51,50,46,49,52,56,50,53,49,93,44,91,45,56,53,46,49,56,53,48,54,55,44,51,50,46,48,54,49,55,48,56,93,44,91,45,56,53,46,48,53,54,48,50,57,44,51,50,46,48,54,51,48,53,53,93,44,91,45,56,53,46,48,54,50,48,54,44,51,50,46,49,51,50,52,56,54,93,44,91,45,56,52,46,57,50,51,48,50,55,44,51,50,46,50,51,48,56,53,49,93,44,91,45,56,52,46,57,55,49,57,54,50,44,51,50,46,51,55,55,54,57,56,93,44,91,45,56,53,46,48,48,49,48,50,44,51,50,46,53,49,48,49,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,53,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,49,55,55,51,57,44,52,48,46,54,53,49,53,55,57,93,44,91,45,56,49,46,50,54,52,55,52,52,44,52,48,46,53,54,53,48,52,50,93,44,91,45,56,49,46,50,54,57,57,53,49,44,52,48,46,52,51,51,52,56,54,93,44,91,45,56,48,46,57,52,49,57,49,49,44,52,48,46,52,50,52,55,93,44,91,45,56,48,46,57,50,48,57,50,44,52,48,46,53,53,54,51,49,53,93,44,91,45,56,48,46,56,54,49,57,57,52,44,52,48,46,53,57,57,52,48,52,93,44,91,45,56,48,46,57,49,55,49,55,50,44,52,48,46,55,50,54,57,51,52,93,44,91,45,56,49,46,48,56,55,50,56,57,44,52,48,46,55,50,55,56,49,54,93,44,91,45,56,49,46,50,51,55,50,50,55,44,52,48,46,55,50,51,53,52,50,93,44,91,45,56,49,46,51,49,55,55,51,57,44,52,48,46,54,53,49,53,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,70,108,117,118,97,110,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,48,54,55,54,51,44,51,56,46,48,48,54,52,55,52,93,44,91,45,55,56,46,52,57,49,51,52,53,44,51,55,46,55,57,54,57,53,54,93,44,91,45,55,56,46,52,48,53,53,57,54,44,51,55,46,55,51,53,50,54,51,93,44,91,45,55,56,46,50,51,57,55,52,56,44,51,55,46,54,57,48,52,57,53,93,44,91,45,55,56,46,49,53,57,51,50,54,44,51,55,46,55,52,56,53,50,56,93,44,91,45,55,56,46,48,54,50,52,56,49,44,51,55,46,57,48,52,54,56,53,93,44,91,45,55,56,46,51,48,54,55,54,51,44,51,56,46,48,48,54,52,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,51,54,49,57,44,34,98,101,100,115,34,58,49,48,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,57,57,51,56,57,44,52,50,46,52,57,53,49,51,51,93,44,91,45,56,56,46,49,57,57,53,56,52,44,52,50,46,49,53,52,50,54,93,44,91,45,56,55,46,49,49,49,49,54,50,44,52,50,46,49,52,57,52,48,57,93,44,91,45,56,55,46,48,56,56,51,51,56,44,52,50,46,50,51,53,51,51,52,93,44,91,45,56,55,46,48,52,48,48,52,54,44,52,50,46,52,49,54,57,57,51,93,44,91,45,56,55,46,48,49,57,57,51,53,44,52,50,46,52,57,51,52,57,56,93,44,91,45,56,56,46,49,57,57,51,56,57,44,52,50,46,52,57,53,49,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,49,51,51,54,44,51,52,46,50,55,51,53,51,93,44,91,45,56,51,46,50,57,55,51,49,55,44,51,52,46,50,54,52,53,56,55,93,44,91,45,56,51,46,51,53,53,50,53,49,44,51,52,46,50,50,51,55,57,52,93,44,91,45,56,51,46,52,48,50,52,50,56,44,51,52,46,49,57,55,52,57,57,93,44,91,45,56,51,46,51,54,48,48,50,56,44,51,52,46,48,52,48,53,55,50,93,44,91,45,56,51,46,50,53,56,52,49,51,44,51,51,46,57,57,57,48,57,56,93,44,91,45,56,51,46,49,50,54,50,50,57,44,51,52,46,48,52,54,50,49,51,93,44,91,45,56,50,46,57,55,54,50,57,52,44,51,52,46,48,52,51,50,49,57,93,44,91,45,56,51,46,48,55,56,48,48,52,44,51,52,46,50,50,51,54,48,54,93,44,91,45,56,51,46,49,49,51,51,54,44,51,52,46,50,55,51,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,56,54,50,56,53,44,51,52,46,49,53,53,56,55,55,93,44,91,45,57,50,46,56,57,51,53,51,52,44,51,51,46,56,48,57,57,52,51,93,44,91,45,57,50,46,53,56,51,48,53,52,44,51,51,46,56,48,50,49,57,56,93,44,91,45,57,50,46,51,51,52,50,52,57,44,51,51,46,55,57,53,48,54,53,93,44,91,45,57,50,46,52,53,55,48,55,57,44,51,51,46,57,55,50,53,57,55,93,44,91,45,57,50,46,52,55,49,54,54,55,44,51,52,46,48,53,55,48,53,52,93,44,91,45,57,50,46,51,51,54,55,54,53,44,51,52,46,48,53,57,54,51,51,93,44,91,45,57,50,46,52,57,51,54,55,50,44,51,52,46,49,52,52,50,51,52,93,44,91,45,57,50,46,54,55,56,51,56,51,44,51,52,46,49,52,57,54,50,50,93,44,91,45,57,50,46,56,56,54,50,56,53,44,51,52,46,49,53,53,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,56,53,55,55,55,51,44,52,49,46,48,48,50,54,54,51,93,44,91,45,49,48,54,46,56,54,57,56,57,49,44,52,48,46,57,53,54,55,50,93,44,91,45,49,48,54,46,54,51,54,57,50,50,44,52,48,46,55,56,57,52,56,57,93,44,91,45,49,48,54,46,55,48,54,49,52,57,44,52,48,46,54,49,54,53,57,55,93,44,91,45,49,48,54,46,54,53,50,49,49,50,44,52,48,46,52,52,53,50,51,49,93,44,91,45,49,48,54,46,54,49,50,51,50,49,44,52,48,46,51,55,57,51,56,51,93,44,91,45,49,48,54,46,50,51,48,55,52,54,44,52,48,46,51,50,52,52,56,54,93,44,91,45,49,48,53,46,57,48,53,57,57,44,52,48,46,51,57,57,54,53,50,93,44,91,45,49,48,53,46,56,53,52,57,50,54,44,52,48,46,52,56,54,50,53,50,93,44,91,45,49,48,54,46,48,53,51,55,55,57,44,52,48,46,56,49,50,54,54,50,93,44,91,45,49,48,54,46,49,56,53,51,48,55,44,52,48,46,57,51,51,57,55,51,93,44,91,45,49,48,54,46,49,57,48,53,53,52,44,52,48,46,57,57,55,53,55,56,93,44,91,45,49,48,54,46,51,50,49,49,54,53,44,52,48,46,57,57,57,49,50,51,93,44,91,45,49,48,54,46,56,53,55,55,55,51,44,52,49,46,48,48,50,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,75,105,116,32,67,97,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,51,53,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,57,56,48,54,44,51,57,46,53,55,52,48,53,56,93,44,91,45,49,48,50,46,56,48,50,57,51,50,44,51,57,46,53,54,55,56,52,49,93,44,91,45,49,48,51,46,49,53,52,51,55,54,44,51,57,46,53,54,53,54,53,52,93,44,91,45,49,48,51,46,49,54,51,48,50,53,44,51,57,46,48,51,55,54,49,93,44,91,45,49,48,50,46,48,52,54,53,55,49,44,51,57,46,48,52,55,48,51,56,93,44,91,45,49,48,50,46,48,52,55,49,54,49,44,51,57,46,49,51,51,49,52,55,93,44,91,45,49,48,50,46,48,52,57,55,54,52,44,51,57,46,53,54,56,49,56,93,44,91,45,49,48,50,46,48,52,57,56,48,54,44,51,57,46,53,55,52,48,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,79,119,121,104,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,50,54,53,51,56,44,52,51,46,54,56,48,56,48,50,93,44,91,45,49,49,55,46,48,50,54,56,55,52,44,52,51,46,49,50,55,48,48,53,93,44,91,45,49,49,55,46,48,50,54,50,44,52,50,46,48,48,48,49,57,53,93,44,91,45,49,49,55,46,48,49,56,50,48,52,44,52,49,46,57,57,57,55,49,53,93,44,91,45,49,49,54,46,48,52,53,51,55,51,44,52,49,46,57,57,54,51,51,49,93,44,91,45,49,49,53,46,48,51,56,49,53,55,44,52,49,46,57,57,54,50,55,57,93,44,91,45,49,49,53,46,48,51,55,54,57,55,44,52,50,46,55,54,56,52,49,52,93,44,91,45,49,49,53,46,52,53,52,50,50,52,44,52,50,46,55,54,55,57,51,54,93,44,91,45,49,49,53,46,52,52,49,53,50,50,44,52,50,46,57,51,49,49,50,55,93,44,91,45,49,49,53,46,57,54,48,57,57,57,44,52,50,46,57,56,57,48,56,52,93,44,91,45,49,49,54,46,50,48,49,55,52,44,52,51,46,48,52,56,57,51,93,44,91,45,49,49,54,46,50,54,54,50,48,55,44,52,51,46,49,49,50,50,54,57,93,44,91,45,49,49,54,46,53,49,49,56,57,55,44,52,51,46,50,57,48,53,50,93,44,91,45,49,49,54,46,55,56,49,51,51,54,44,52,51,46,52,55,56,54,51,51,93,44,91,45,49,49,54,46,56,52,52,57,55,56,44,52,51,46,53,57,52,52,93,44,91,45,49,49,55,46,48,50,54,53,51,56,44,52,51,46,54,56,48,56,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,87,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,50,55,52,44,34,98,101,100,115,34,58,54,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,54,50,53,51,44,52,52,46,54,56,53,49,53,52,93,44,91,45,57,48,46,51,49,54,48,53,53,44,52,52,46,52,50,52,53,48,50,93,44,91,45,57,48,46,51,49,50,54,56,44,52,52,46,50,52,56,55,53,93,44,91,45,56,57,46,57,48,50,55,56,51,44,52,52,46,50,52,57,52,55,51,93,44,91,45,56,57,46,55,50,52,55,52,54,44,52,52,46,50,52,55,54,55,56,93,44,91,45,56,57,46,55,50,54,55,50,53,44,52,52,46,53,49,49,49,57,50,93,44,91,45,56,57,46,56,52,52,53,52,54,44,52,52,46,53,49,49,53,48,51,93,44,91,45,56,57,46,56,52,52,57,51,49,44,52,52,46,54,56,52,57,52,53,93,44,91,45,57,48,46,51,49,54,50,53,51,44,52,52,46,54,56,53,49,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,104,97,117,116,97,117,113,117,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,54,53,54,44,34,98,101,100,115,34,58,51,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,54,48,55,55,55,44,52,50,46,53,51,55,56,53,51,93,44,91,45,55,57,46,51,49,50,49,51,54,44,52,50,46,54,56,54,56,48,53,93,44,91,45,55,57,46,55,54,50,52,49,56,44,52,50,46,53,49,54,48,55,50,93,44,91,45,55,57,46,55,54,49,51,49,51,44,52,49,46,57,57,56,56,48,56,93,44,91,45,55,57,46,54,49,48,56,51,57,44,52,49,46,57,57,57,48,48,54,93,44,91,45,55,57,46,48,54,49,50,54,53,44,52,49,46,57,57,57,50,53,57,93,44,91,45,55,57,46,48,54,48,55,55,55,44,52,50,46,53,51,55,56,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,67,111,98,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,53,48,53,55,44,34,98,101,100,115,34,58,49,51,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,51,55,56,51,54,44,51,52,46,48,55,57,51,57,57,93,44,91,45,56,52,46,55,50,52,49,51,57,44,51,51,46,56,48,54,49,55,93,44,91,45,56,52,46,53,55,56,49,51,50,44,51,51,46,55,52,51,53,48,55,93,44,91,45,56,52,46,52,55,49,51,51,44,51,51,46,56,50,53,57,48,53,93,44,91,45,56,52,46,51,56,51,48,50,55,44,51,51,46,57,54,51,56,93,44,91,45,56,52,46,52,49,56,57,50,55,44,51,52,46,48,55,51,50,57,56,93,44,91,45,56,52,46,54,53,57,50,52,49,44,51,52,46,48,55,56,50,52,93,44,91,45,56,52,46,55,51,55,56,51,54,44,51,52,46,48,55,57,51,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,56,57,44,34,98,101,100,115,34,58,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,56,51,56,52,51,44,51,54,46,53,48,56,51,49,52,93,44,91,45,56,50,46,48,52,52,49,52,53,44,51,54,46,51,54,51,55,49,54,93,44,91,45,56,49,46,57,51,51,48,54,53,44,51,54,46,50,54,52,56,55,51,93,44,91,45,56,49,46,57,49,56,49,49,57,44,51,54,46,50,56,55,49,50,57,93,44,91,45,56,49,46,55,50,56,55,56,49,44,51,54,46,51,57,49,51,48,57,93,44,91,45,56,49,46,54,55,55,52,57,44,51,54,46,53,56,56,49,51,55,93,44,91,45,56,49,46,54,52,54,57,44,51,54,46,54,49,49,57,49,56,93,44,91,45,56,49,46,56,50,54,55,52,50,44,51,54,46,54,49,52,50,49,53,93,44,91,45,56,49,46,57,56,51,56,52,51,44,51,54,46,53,48,56,51,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,101,108,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,55,50,44,34,98,101,100,115,34,58,49,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,50,53,57,50,52,44,52,48,46,49,55,48,48,55,53,93,44,91,45,56,49,46,50,51,52,48,53,51,44,51,57,46,57,53,49,50,55,93,44,91,45,56,49,46,50,51,55,51,49,54,44,51,57,46,56,54,55,56,50,56,93,44,91,45,56,48,46,56,50,49,50,55,57,44,51,57,46,56,52,57,57,56,50,93,44,91,45,56,48,46,55,53,54,49,49,51,44,51,57,46,57,49,51,52,48,50,93,44,91,45,56,48,46,55,51,51,56,48,51,44,52,48,46,48,51,51,52,48,57,93,44,91,45,56,48,46,55,48,50,55,53,44,52,48,46,49,53,55,50,52,57,93,44,91,45,56,48,46,56,56,50,56,57,50,44,52,48,46,49,53,57,52,57,53,93,44,91,45,56,49,46,50,50,53,57,50,52,44,52,48,46,49,55,48,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,87,105,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,48,50,53,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,55,56,52,44,51,54,46,56,57,50,57,53,51,93,44,91,45,56,50,46,55,55,49,53,57,53,44,51,54,46,56,48,48,48,51,49,93,44,91,45,56,50,46,54,49,55,55,52,44,51,54,46,56,56,48,55,55,51,93,44,91,45,56,50,46,52,48,54,54,51,51,44,51,54,46,56,55,54,51,53,54,93,44,91,45,56,50,46,51,50,55,56,51,44,51,54,46,57,55,48,57,56,50,93,44,91,45,56,50,46,52,54,55,51,52,53,44,51,55,46,48,50,50,49,51,54,93,44,91,45,56,50,46,53,53,51,56,55,52,44,51,55,46,50,48,50,56,51,51,93,44,91,45,56,50,46,53,54,53,51,55,57,44,51,55,46,49,57,54,48,57,57,93,44,91,45,56,50,46,55,49,53,49,52,57,44,51,55,46,49,50,49,56,52,56,93,44,91,45,56,50,46,55,52,50,55,53,57,44,51,55,46,48,52,50,55,57,54,93,44,91,45,56,50,46,56,54,57,49,57,50,44,51,54,46,57,55,52,49,56,54,93,44,91,45,56,50,46,56,55,56,52,44,51,54,46,56,57,50,57,53,51,93,93,44,91,91,45,56,50,46,54,54,51,54,50,53,44,51,54,46,57,50,48,57,53,57,93,44,91,45,56,50,46,54,51,51,56,51,49,44,51,54,46,57,53,50,50,55,54,93,44,91,45,56,50,46,53,57,49,49,52,55,44,51,54,46,57,51,53,51,49,51,93,44,91,45,56,50,46,54,54,51,54,50,53,44,51,54,46,57,50,48,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,49,55,55,54,54,44,51,55,46,48,57,53,54,55,55,93,44,91,45,57,49,46,50,49,55,49,53,44,51,55,46,48,56,54,49,57,55,93,44,91,45,57,49,46,50,50,50,56,51,44,51,54,46,56,56,51,56,53,55,93,44,91,45,57,49,46,49,49,53,57,50,54,44,51,54,46,56,50,51,54,55,50,93,44,91,45,57,48,46,54,54,50,54,49,55,44,51,54,46,56,49,49,52,53,51,93,44,91,45,57,48,46,54,55,56,53,54,50,44,51,54,46,57,50,54,52,57,93,44,91,45,57,48,46,55,55,57,53,53,51,44,51,55,46,48,53,48,51,50,52,93,44,91,45,57,48,46,57,54,52,52,54,54,44,51,55,46,48,53,51,53,56,52,93,44,91,45,57,49,46,48,49,55,55,54,54,44,51,55,46,48,57,53,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,114,121,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,53,57,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,57,49,53,55,56,44,51,52,46,49,53,54,56,48,53,93,44,91,45,57,54,46,52,48,55,53,49,55,44,51,52,46,49,53,55,51,49,55,93,44,91,45,57,54,46,53,56,53,51,53,53,44,51,52,46,49,49,52,52,53,57,93,44,91,45,57,54,46,54,49,57,57,51,57,44,51,51,46,57,57,57,52,52,57,93,44,91,45,57,54,46,53,56,56,53,48,50,44,51,51,46,56,57,52,57,56,51,93,44,91,45,57,54,46,53,48,48,57,56,52,44,51,51,46,55,55,50,56,48,49,93,44,91,45,57,54,46,51,55,57,52,53,50,44,51,51,46,55,50,53,55,54,52,93,44,91,45,57,54,46,50,57,48,51,53,57,44,51,51,46,55,55,48,56,51,49,93,44,91,45,57,54,46,49,55,57,56,52,54,44,51,51,46,55,53,57,54,49,56,93,44,91,45,57,54,46,49,52,57,50,50,55,44,51,51,46,56,51,55,48,57,49,93,44,91,45,57,53,46,57,52,54,48,51,44,51,51,46,56,53,57,51,51,56,93,44,91,45,57,53,46,56,52,54,53,51,54,44,51,51,46,56,51,57,56,53,53,93,44,91,45,57,53,46,55,54,49,53,50,44,51,51,46,56,55,51,49,49,56,93,44,91,45,57,53,46,57,51,55,57,56,57,44,51,51,46,57,52,56,50,49,57,93,44,91,45,57,53,46,57,51,56,49,53,44,51,52,46,49,50,53,49,93,44,91,45,57,53,46,57,57,49,53,55,56,44,51,52,46,49,53,54,56,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,50,53,55,50,51,44,52,48,46,54,57,56,53,53,53,93,44,91,45,57,56,46,50,55,56,49,48,51,44,52,48,46,54,57,56,50,57,49,93,44,91,45,57,56,46,50,55,56,48,57,44,52,48,46,51,53,48,51,52,55,93,44,91,45,57,56,46,50,55,51,53,55,49,44,52,48,46,51,53,48,51,53,57,93,44,91,45,57,55,46,56,50,52,49,49,52,44,52,48,46,51,53,48,53,52,49,93,44,91,45,57,55,46,56,50,52,55,56,44,52,48,46,54,57,56,53,51,55,93,44,91,45,57,55,46,56,50,53,55,50,51,44,52,48,46,54,57,56,53,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,54,55,49,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,50,50,55,51,51,54,44,51,56,46,54,48,52,53,55,93,44,91,45,55,55,46,50,57,53,52,48,54,44,51,56,46,53,48,57,50,51,57,93,44,91,45,55,55,46,50,56,55,48,57,55,44,51,56,46,51,52,56,56,93,44,91,45,55,55,46,48,49,56,52,57,56,44,51,56,46,51,56,49,57,52,49,93,44,91,45,55,54,46,57,57,55,54,55,44,51,56,46,50,55,56,48,52,54,93,44,91,45,55,54,46,56,54,56,56,53,57,44,51,56,46,49,55,49,51,55,50,93,44,91,45,55,54,46,56,50,49,50,53,54,44,51,56,46,50,54,56,55,53,56,93,44,91,45,55,54,46,56,55,49,52,54,44,51,56,46,51,56,57,57,51,55,93,44,91,45,55,54,46,55,55,52,57,53,53,44,51,56,46,53,48,56,57,93,44,91,45,55,54,46,54,55,52,49,49,56,44,51,56,46,52,57,57,54,50,50,93,44,91,45,55,54,46,54,55,53,52,53,55,44,51,56,46,53,51,53,56,55,54,93,44,91,45,55,54,46,55,52,55,53,55,44,51,56,46,54,49,55,51,51,53,93,44,91,45,55,55,46,48,56,54,51,57,49,44,51,56,46,55,48,54,50,50,55,93,44,91,45,55,55,46,50,50,55,51,51,54,44,51,56,46,54,48,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,101,114,114,111,32,71,111,114,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,57,56,52,44,34,98,101,100,115,34,58,51,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,52,49,52,51,44,52,51,46,50,53,53,53,51,56,93,44,91,45,57,51,46,52,57,55,54,51,53,44,52,51,46,50,53,53,52,54,56,93,44,91,45,57,51,46,52,57,56,54,49,55,44,52,50,46,57,48,56,53,49,50,93,44,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,44,91,45,57,51,46,48,50,52,48,57,50,44,52,51,46,50,49,50,56,49,50,93,44,91,45,57,51,46,48,50,52,49,52,51,44,52,51,46,50,53,53,53,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,48,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,50,56,56,48,54,44,52,50,46,50,48,57,51,57,54,93,44,91,45,57,52,46,54,50,56,55,50,52,44,52,49,46,56,54,50,55,54,51,93,44,91,45,57,52,46,50,56,48,51,52,44,52,49,46,56,54,50,57,57,57,93,44,91,45,57,52,46,49,54,52,49,51,56,44,52,49,46,56,54,51,50,52,52,93,44,91,45,57,52,46,49,54,52,55,48,52,44,52,50,46,50,48,57,57,50,93,44,91,45,57,52,46,51,57,55,53,50,54,44,52,50,46,50,48,57,49,54,49,93,44,91,45,57,52,46,54,50,56,56,48,54,44,52,50,46,50,48,57,51,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,53,34,44,34,78,65,77,69,34,58,34,82,111,119,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,57,57,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,51,53,49,57,53,44,51,56,46,49,56,55,53,50,53,93,44,91,45,56,51,46,52,57,56,56,52,54,44,51,56,46,48,53,48,54,50,93,44,91,45,56,51,46,52,51,51,57,52,50,44,51,56,46,48,51,51,57,55,52,93,44,91,45,56,51,46,50,54,51,50,56,57,44,51,56,46,49,49,53,51,56,54,93,44,91,45,56,51,46,50,52,52,51,48,54,44,51,56,46,49,57,50,51,56,93,44,91,45,56,51,46,51,52,49,51,52,55,44,51,56,46,51,49,57,53,50,49,93,44,91,45,56,51,46,52,53,50,56,52,56,44,51,56,46,51,56,49,55,57,57,93,44,91,45,56,51,46,53,48,55,57,53,51,44,51,56,46,50,55,51,49,53,53,93,44,91,45,56,51,46,54,51,53,49,57,53,44,51,56,46,49,56,55,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,51,48,53,54,54,53,44,51,56,46,53,49,48,49,54,57,93,44,91,45,49,49,49,46,55,54,54,51,57,51,44,51,56,46,53,48,50,50,52,51,93,44,91,45,49,49,49,46,56,52,56,55,54,49,44,51,56,46,52,50,52,57,51,51,93,44,91,45,49,49,49,46,56,52,51,50,49,53,44,51,56,46,49,53,49,50,56,93,44,91,45,49,49,48,46,54,56,55,52,48,54,44,51,56,46,49,53,49,51,56,53,93,44,91,45,49,48,57,46,57,50,55,57,57,53,44,51,56,46,49,53,49,56,56,52,93,44,91,45,49,48,57,46,57,48,57,55,54,44,51,56,46,50,55,49,50,51,93,44,91,45,49,49,48,46,48,51,49,57,55,51,44,51,56,46,51,56,52,57,53,55,93,44,91,45,49,49,48,46,48,50,53,52,48,50,44,51,56,46,52,57,57,57,56,49,93,44,91,45,49,49,49,46,51,48,53,55,48,49,44,51,56,46,52,57,57,57,57,56,93,44,91,45,49,49,49,46,51,48,53,54,54,53,44,51,56,46,53,49,48,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,97,112,101,32,71,105,114,97,114,100,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,51,50,52,44,34,98,101,100,115,34,58,54,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,54,49,49,50,51,44,51,55,46,53,57,57,50,56,54,93,44,91,45,56,57,46,56,54,54,54,50,55,44,51,55,46,49,50,54,50,50,55,93,44,91,45,56,57,46,55,54,53,50,49,49,44,51,55,46,49,50,54,48,54,54,93,44,91,45,56,57,46,54,50,48,50,53,54,44,51,55,46,50,51,51,48,48,56,93,44,91,45,56,57,46,52,56,56,55,50,44,51,55,46,50,53,49,52,53,55,93,44,91,45,56,57,46,52,56,54,54,56,57,44,51,55,46,51,51,52,53,53,52,93,44,91,45,56,57,46,52,50,48,57,51,57,44,51,55,46,51,57,51,57,53,50,93,44,91,45,56,57,46,53,50,49,56,53,53,44,51,55,46,53,54,54,50,49,52,93,44,91,45,56,57,46,54,48,56,57,51,52,44,51,55,46,53,57,55,52,50,55,93,44,91,45,56,57,46,56,54,49,49,50,51,44,51,55,46,53,57,57,50,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,87,97,108,108,97,32,87,97,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,50,51,54,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,50,50,56,54,51,53,44,52,54,46,53,57,51,51,54,50,93,44,91,45,49,49,56,46,52,55,53,57,51,50,44,52,54,46,53,57,53,49,52,50,93,44,91,45,49,49,56,46,54,49,53,53,57,50,44,52,54,46,53,48,52,53,52,51,93,44,91,45,49,49,56,46,54,51,51,56,50,54,44,52,54,46,52,49,52,48,50,50,93,44,91,45,49,49,56,46,55,55,55,50,50,56,44,52,54,46,50,57,48,49,55,55,93,44,91,45,49,49,57,46,48,52,49,52,57,56,44,52,54,46,49,57,50,54,54,55,93,44,91,45,49,49,56,46,57,55,52,54,54,52,44,52,54,46,49,51,57,53,50,51,93,44,91,45,49,49,56,46,57,56,55,50,53,56,44,52,53,46,57,57,57,56,53,53,93,44,91,45,49,49,55,46,57,57,54,57,55,44,52,54,46,48,48,48,53,54,93,44,91,45,49,49,55,46,57,57,49,52,56,49,44,52,54,46,50,48,55,55,48,50,93,44,91,45,49,49,56,46,49,49,54,54,50,52,44,52,54,46,50,48,56,48,53,93,44,91,45,49,49,56,46,50,52,49,56,55,50,44,52,54,46,50,57,53,48,54,52,93,44,91,45,49,49,56,46,50,50,56,54,51,53,44,52,54,46,53,57,51,51,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,49,57,56,48,57,44,51,54,46,56,54,57,54,49,55,93,44,91,45,56,57,46,51,50,55,53,56,56,44,51,54,46,54,51,50,50,55,54,93,44,91,45,56,57,46,50,50,55,48,52,54,44,51,54,46,53,54,57,53,51,55,93,44,91,45,56,57,46,49,55,52,55,50,55,44,51,54,46,54,53,48,52,55,53,93,44,91,45,56,57,46,49,50,51,53,51,49,44,51,54,46,55,56,53,50,49,55,93,44,91,45,56,57,46,49,48,48,56,54,52,44,51,54,46,57,52,52,48,49,54,93,44,91,45,56,57,46,49,51,50,57,49,53,44,51,54,46,57,56,50,48,53,55,93,44,91,45,56,57,46,50,53,57,57,51,53,44,51,55,46,48,54,52,48,55,93,44,91,45,56,57,46,51,49,50,55,48,52,44,51,55,46,48,48,56,57,55,49,93,44,91,45,56,57,46,53,49,57,56,48,57,44,51,54,46,56,54,57,54,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,101,118,101,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,51,54,55,54,53,44,51,52,46,48,53,57,54,51,51,93,44,91,45,57,50,46,52,55,49,54,54,55,44,51,52,46,48,53,55,48,53,52,93,44,91,45,57,50,46,52,53,55,48,55,57,44,51,51,46,57,55,50,53,57,55,93,44,91,45,57,50,46,51,51,52,50,52,57,44,51,51,46,55,57,53,48,54,53,93,44,91,45,57,50,46,51,51,48,56,51,57,44,51,51,46,55,48,55,56,48,54,93,44,91,45,57,49,46,57,55,53,56,52,52,44,51,51,46,55,48,52,52,49,52,93,44,91,45,57,49,46,57,55,53,57,55,52,44,51,51,46,55,57,49,55,56,55,93,44,91,45,57,49,46,57,53,51,55,57,57,44,51,52,46,48,54,52,49,52,49,93,44,91,45,57,50,46,50,51,51,51,55,54,44,51,52,46,48,54,50,51,49,50,93,44,91,45,57,50,46,51,51,54,55,54,53,44,51,52,46,48,53,57,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,54,53,53,50,44,34,98,101,100,115,34,58,56,49,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,50,57,57,56,55,44,51,50,46,53,52,53,50,56,50,93,44,91,45,57,54,46,53,49,56,57,55,44,51,50,46,56,49,51,54,49,54,93,44,91,45,57,54,46,53,49,54,56,54,54,44,51,50,46,57,56,50,51,48,56,93,44,91,45,57,54,46,56,52,51,57,55,57,44,51,50,46,57,56,55,53,53,52,93,44,91,45,57,55,46,48,51,50,50,56,55,44,51,50,46,57,56,57,51,50,52,93,44,91,45,57,55,46,48,51,56,51,56,53,44,51,50,46,53,52,56,54,54,50,93,44,91,45,57,54,46,53,50,57,57,56,55,44,51,50,46,53,52,53,50,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,97,106,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,51,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,48,57,48,52,52,44,49,56,46,48,53,54,48,56,53,93,44,91,45,54,55,46,49,48,56,54,51,53,44,49,55,46,56,57,53,52,48,55,93,44,91,45,54,54,46,57,57,57,54,49,57,44,49,55,46,56,56,51,57,93,44,91,45,54,54,46,57,53,56,55,52,56,44,49,56,46,48,51,50,52,55,55,93,44,91,45,54,54,46,57,56,51,51,51,55,44,49,56,46,48,53,50,53,49,56,93,44,91,45,54,55,46,49,48,57,48,52,52,44,49,56,46,48,53,54,48,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,55,48,52,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,57,52,48,56,52,44,52,49,46,53,50,54,52,51,55,93,44,91,45,56,53,46,49,57,50,48,57,52,44,52,49,46,50,54,52,50,48,57,93,44,91,45,56,52,46,56,48,51,53,56,57,44,52,49,46,50,55,49,50,55,51,93,44,91,45,56,52,46,56,48,52,48,54,51,44,52,49,46,52,50,54,48,53,49,93,44,91,45,56,52,46,56,48,52,54,56,55,44,52,49,46,53,51,48,49,51,52,93,44,91,45,56,53,46,49,57,52,48,56,52,44,52,49,46,53,50,54,52,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,79,117,97,99,104,105,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,48,55,53,44,34,98,101,100,115,34,58,49,48,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,54,53,49,55,57,44,51,50,46,55,50,51,48,48,51,93,44,91,45,57,50,46,50,55,50,51,49,51,44,51,50,46,53,56,48,57,55,53,93,44,91,45,57,50,46,52,49,53,48,55,49,44,51,50,46,53,56,50,56,52,53,93,44,91,45,57,50,46,52,49,53,51,53,44,51,50,46,52,57,53,52,56,54,93,44,91,45,57,50,46,52,49,53,52,49,56,44,51,50,46,52,48,55,56,49,50,93,44,91,45,57,50,46,51,49,49,56,53,49,44,51,50,46,50,55,55,52,52,49,93,44,91,45,57,50,46,48,51,52,51,57,55,44,51,50,46,50,55,55,48,54,56,93,44,91,45,57,50,46,48,48,52,51,52,44,51,50,46,51,56,48,52,57,57,93,44,91,45,57,49,46,57,49,51,48,53,55,44,51,50,46,53,48,53,57,48,50,93,44,91,45,57,49,46,57,55,53,48,50,54,44,51,50,46,55,49,49,52,50,56,93,44,91,45,57,50,46,48,54,53,49,55,57,44,51,50,46,55,50,51,48,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,83,116,46,32,74,111,104,110,32,116,104,101,32,66,97,112,116,105,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,52,52,54,44,34,98,101,100,115,34,58,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,52,49,57,57,56,44,51,48,46,49,54,54,52,51,93,44,91,45,57,48,46,54,53,54,51,49,50,44,50,57,46,56,56,57,50,52,54,93,44,91,45,57,48,46,53,50,57,54,48,49,44,50,57,46,56,56,52,57,57,55,93,44,91,45,57,48,46,53,51,56,49,51,50,44,51,48,46,48,49,54,56,56,52,93,44,91,45,57,48,46,52,53,48,50,49,56,44,51,48,46,48,51,51,49,48,54,93,44,91,45,57,48,46,51,50,54,54,51,55,44,51,48,46,49,53,48,49,56,56,93,44,91,45,57,48,46,50,53,57,56,56,57,44,51,48,46,49,54,51,52,49,93,44,91,45,57,48,46,49,53,54,50,53,54,44,51,48,46,49,56,57,54,49,51,93,44,91,45,57,48,46,49,54,48,54,51,54,44,51,48,46,50,51,52,51,51,55,93,44,91,45,57,48,46,51,48,48,57,50,51,44,51,48,46,50,57,52,54,56,93,44,91,45,57,48,46,52,56,53,56,50,54,44,51,48,46,50,55,54,57,57,50,93,44,91,45,57,48,46,53,53,52,49,52,55,44,51,48,46,49,57,53,54,50,56,93,44,91,45,57,48,46,54,51,50,56,49,49,44,51,48,46,50,50,49,52,48,57,93,44,91,45,57,48,46,54,52,49,57,57,56,44,51,48,46,49,54,54,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,83,116,46,32,72,101,108,101,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,49,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,56,50,53,56,50,57,44,51,48,46,57,57,57,51,54,49,93,44,91,45,57,48,46,56,54,49,48,49,57,44,51,48,46,57,51,53,51,55,51,93,44,91,45,57,48,46,56,52,57,48,52,49,44,51,48,46,55,49,57,51,49,49,93,44,91,45,57,48,46,57,49,48,55,48,49,44,51,48,46,54,52,57,51,56,53,93,44,91,45,57,48,46,53,54,55,49,54,53,44,51,48,46,54,53,48,48,50,51,93,44,91,45,57,48,46,53,54,55,49,57,53,44,51,48,46,57,57,57,55,51,51,93,44,91,45,57,48,46,56,50,53,56,50,57,44,51,48,46,57,57,57,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,83,99,104,117,121,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,49,52,53,57,54,44,52,48,46,53,56,57,52,50,55,93,44,91,45,57,50,46,54,56,52,49,54,55,44,52,48,46,51,52,51,52,54,54,93,44,91,45,57,50,46,51,52,57,57,55,53,44,52,48,46,51,52,54,53,48,53,93,44,91,45,57,50,46,51,53,48,56,48,55,44,52,48,46,53,57,55,50,55,53,93,44,91,45,57,50,46,54,51,55,56,57,56,44,52,48,46,53,57,48,56,53,51,93,44,91,45,57,50,46,55,49,52,53,57,54,44,52,48,46,53,56,57,52,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,52,50,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,53,54,50,57,50,44,51,52,46,52,54,51,50,49,52,93,44,91,45,56,56,46,49,55,51,54,51,50,44,51,52,46,51,50,49,48,53,52,93,44,91,45,56,55,46,54,51,52,55,50,53,44,51,52,46,51,48,54,57,57,55,93,44,91,45,56,55,46,53,50,57,55,50,50,44,51,52,46,51,48,52,53,57,56,93,44,91,45,56,55,46,53,50,57,54,54,55,44,51,52,46,53,54,55,48,56,49,93,44,91,45,56,56,46,49,51,57,57,56,56,44,51,52,46,53,56,49,55,48,51,93,44,91,45,56,56,46,49,53,54,50,57,50,44,51,52,46,52,54,51,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,49,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,50,51,53,49,57,44,51,56,46,55,54,49,56,55,93,44,91,45,56,53,46,50,48,49,52,55,52,44,51,56,46,54,57,49,51,49,56,93,44,91,45,56,53,46,51,51,51,48,57,57,44,51,56,46,55,51,54,50,50,56,93,44,91,45,56,53,46,49,54,56,50,55,44,51,56,46,53,56,53,52,52,56,93,44,91,45,56,53,46,48,55,52,53,56,51,44,51,56,46,53,57,54,56,51,56,93,44,91,45,56,52,46,57,51,52,53,51,54,44,51,56,46,54,54,50,49,51,93,44,91,45,56,53,46,48,50,51,53,49,57,44,51,56,46,55,54,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,101,97,114,32,67,114,101,101,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,54,57,48,51,52,56,44,51,57,46,56,53,49,57,57,54,93,44,91,45,49,48,53,46,57,50,52,54,49,56,44,51,57,46,54,57,56,57,55,50,93,44,91,45,49,48,53,46,55,56,50,54,55,52,44,51,57,46,54,50,57,48,50,52,93,44,91,45,49,48,53,46,56,50,57,54,54,50,44,51,57,46,53,54,52,56,54,53,93,44,91,45,49,48,53,46,51,57,56,57,52,57,44,51,57,46,53,54,54,48,53,54,93,44,91,45,49,48,53,46,51,57,55,57,52,57,44,51,57,46,55,52,54,48,52,93,44,91,45,49,48,53,46,53,51,57,51,57,51,44,51,57,46,55,55,50,51,49,93,44,91,45,49,48,53,46,54,57,48,51,52,56,44,51,57,46,56,53,49,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,55,34,44,34,78,65,77,69,34,58,34,75,105,109,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,48,56,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,54,52,54,49,44,51,48,46,50,57,48,50,57,54,93,44,91,45,57,57,46,55,53,52,49,52,50,44,51,48,46,50,57,48,54,57,56,93,44,91,45,57,57,46,51,48,49,55,49,56,44,51,48,46,50,56,54,54,53,51,93,44,91,45,57,57,46,51,48,51,57,57,54,44,51,48,46,52,57,57,56,51,50,93,44,91,45,57,57,46,52,56,52,52,57,51,44,51,48,46,52,57,57,54,52,49,93,44,91,45,57,57,46,52,56,51,56,54,57,44,51,48,46,55,49,48,55,55,49,93,44,91,45,49,48,48,46,49,49,54,50,51,52,44,51,48,46,55,49,48,51,54,54,93,44,91,45,49,48,48,46,49,49,54,52,54,49,44,51,48,46,50,57,48,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,97,99,107,105,110,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,53,48,50,53,44,52,54,46,50,52,52,54,51,49,93,44,91,45,56,53,46,56,54,56,50,52,49,44,52,53,46,56,49,57,55,57,53,93,44,91,45,56,53,46,53,55,48,48,55,52,44,52,53,46,56,56,51,50,52,52,93,44,91,45,56,53,46,50,51,57,54,49,56,44,52,53,46,56,55,48,55,52,93,44,91,45,56,52,46,55,51,50,53,57,53,44,52,53,46,56,49,48,51,51,93,44,91,45,56,52,46,52,53,50,54,51,52,44,52,53,46,54,57,53,51,55,93,44,91,45,56,52,46,50,48,49,48,54,50,44,52,53,46,55,53,50,50,55,53,93,44,91,45,56,52,46,49,50,51,48,57,56,44,52,53,46,55,55,55,54,54,56,93,44,91,45,56,52,46,49,49,52,49,56,54,44,52,53,46,57,56,53,49,53,50,93,44,91,45,56,52,46,50,51,57,51,51,50,44,52,53,46,57,56,52,57,49,52,93,44,91,45,56,52,46,51,54,51,48,57,44,52,54,46,48,55,49,53,55,52,93,44,91,45,56,52,46,51,54,51,53,48,51,44,52,54,46,49,53,55,57,56,52,93,44,91,45,56,53,46,49,49,50,53,49,51,44,52,54,46,49,53,56,50,54,51,93,44,91,45,56,53,46,50,51,55,56,51,57,44,52,54,46,50,52,53,52,51,93,44,91,45,56,53,46,56,54,53,48,50,53,44,52,54,46,50,52,52,54,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,55,34,44,34,78,65,77,69,34,58,34,77,99,67,117,108,108,111,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,48,50,55,54,56,44,51,49,46,52,54,55,50,51,52,93,44,91,45,57,57,46,51,48,50,54,48,53,44,51,49,46,52,51,50,53,48,52,93,44,91,45,57,57,46,54,48,49,56,53,44,51,49,46,52,57,49,57,53,93,44,91,45,57,57,46,54,48,51,50,50,51,44,51,49,46,48,56,55,50,57,54,93,44,91,45,57,57,46,54,48,51,54,50,55,44,51,48,46,57,52,48,55,50,54,93,44,91,45,57,57,46,52,56,52,55,53,53,44,51,48,46,57,52,48,54,48,53,93,44,91,45,57,57,46,48,57,50,51,49,55,44,51,48,46,57,52,49,48,48,50,93,44,91,45,57,57,46,48,57,48,54,50,50,44,51,49,46,52,54,48,57,50,55,93,44,91,45,57,57,46,50,48,50,55,54,56,44,51,49,46,52,54,55,50,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,84,105,115,104,111,109,105,110,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,55,56,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,48,48,48,54,52,44,51,52,46,57,57,53,54,51,52,93,44,91,45,56,56,46,51,54,51,53,51,49,44,51,52,46,57,57,53,52,55,53,93,44,91,45,56,56,46,51,54,53,52,55,50,44,51,52,46,55,53,53,54,48,52,93,44,91,45,56,56,46,51,51,48,54,57,57,44,51,52,46,55,52,48,55,50,49,93,44,91,45,56,56,46,51,50,57,49,57,51,44,51,52,46,52,54,51,53,55,49,93,44,91,45,56,56,46,49,53,54,50,57,50,44,51,52,46,52,54,51,50,49,52,93,44,91,45,56,56,46,49,51,57,57,56,56,44,51,52,46,53,56,49,55,48,51,93,44,91,45,56,56,46,48,57,55,56,56,56,44,51,52,46,56,57,50,50,48,50,93,44,91,45,56,56,46,50,48,48,48,54,52,44,51,52,46,57,57,53,54,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,67,114,111,99,107,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,55,53,56,52,44,51,48,46,50,56,56,48,52,52,93,44,91,45,49,48,48,46,57,54,48,54,52,51,44,51,48,46,50,56,55,55,55,54,93,44,91,45,49,48,48,46,57,54,48,53,56,55,44,51,48,46,55,48,54,48,55,49,93,44,91,45,49,48,48,46,57,54,50,49,55,54,44,51,49,46,48,56,50,52,57,93,44,91,45,49,48,49,46,50,55,52,55,57,57,44,51,49,46,48,55,57,51,55,57,93,44,91,45,49,48,49,46,55,55,54,49,57,49,44,51,49,46,48,55,57,55,56,52,93,44,91,45,49,48,50,46,51,48,49,50,49,50,44,51,49,46,48,56,54,50,49,50,93,44,91,45,49,48,50,46,51,56,56,56,48,52,44,51,49,46,48,56,55,49,53,54,93,44,91,45,49,48,50,46,50,57,50,54,56,49,44,51,49,46,48,51,54,54,55,55,93,44,91,45,49,48,49,46,57,56,52,53,50,55,44,51,48,46,57,56,55,52,52,53,93,44,91,45,49,48,49,46,56,55,52,50,55,54,44,51,48,46,57,49,50,50,51,54,93,44,91,45,49,48,49,46,56,51,52,53,50,56,44,51,48,46,55,53,55,57,52,57,93,44,91,45,49,48,49,46,55,54,56,52,50,44,51,48,46,54,53,51,48,55,55,93,44,91,45,49,48,49,46,54,54,57,56,51,51,44,51,48,46,54,51,55,57,48,55,93,44,91,45,49,48,49,46,54,52,54,53,48,54,44,51,48,46,53,53,49,49,49,50,93,44,91,45,49,48,49,46,55,52,48,52,50,57,44,51,48,46,52,50,48,56,57,55,93,44,91,45,49,48,49,46,54,53,56,53,51,44,51,48,46,51,53,55,56,54,49,93,44,91,45,49,48,49,46,55,53,56,52,44,51,48,46,50,56,56,48,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,55,34,44,34,78,65,77,69,34,58,34,72,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,57,57,44,34,98,101,100,115,34,58,49,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,55,54,48,56,54,44,51,50,46,49,55,51,52,54,93,44,91,45,57,55,46,52,56,53,57,54,56,44,51,50,46,48,49,55,54,49,49,93,44,91,45,57,55,46,51,50,55,49,52,53,44,51,49,46,56,52,49,52,53,50,93,44,91,45,57,55,46,50,55,55,50,54,53,44,51,49,46,55,52,53,52,57,50,93,44,91,45,57,55,46,48,51,55,50,54,54,44,51,49,46,56,54,51,48,55,57,93,44,91,45,57,54,46,57,51,50,50,49,53,44,51,49,46,55,48,56,56,56,55,93,44,91,45,57,54,46,55,49,57,49,49,52,44,51,49,46,56,49,52,56,56,55,93,44,91,45,57,54,46,56,57,54,50,48,57,44,51,50,46,48,55,51,57,55,55,93,44,91,45,57,54,46,57,52,48,54,53,54,44,51,50,46,48,53,50,48,56,55,93,44,91,45,57,55,46,48,56,54,49,57,49,44,51,50,46,50,54,53,52,53,49,93,44,91,45,57,55,46,52,55,54,48,56,54,44,51,50,46,49,55,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,54,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,55,51,55,55,52,44,52,49,46,48,48,49,55,49,54,93,44,91,45,49,48,51,46,53,56,49,56,52,52,44,52,48,46,53,50,51,51,56,51,93,44,91,45,49,48,51,46,52,54,53,51,55,55,44,52,48,46,52,51,54,51,52,54,93,44,91,45,49,48,50,46,55,55,57,57,54,44,52,48,46,52,51,56,52,52,54,93,44,91,45,49,48,50,46,54,54,52,56,48,52,44,52,48,46,52,51,56,52,55,51,93,44,91,45,49,48,50,46,54,53,49,51,49,44,52,48,46,55,52,57,52,48,50,93,44,91,45,49,48,50,46,54,53,51,52,54,51,44,52,49,46,48,48,50,51,51,50,93,44,91,45,49,48,51,46,51,56,50,52,57,50,44,52,49,46,48,48,50,50,53,50,93,44,91,45,49,48,51,46,53,55,51,55,55,52,44,52,49,46,48,48,49,55,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,70,105,110,110,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,57,53,55,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,49,48,51,50,54,56,44,51,56,46,50,54,52,53,53,55,93,44,91,45,49,48,49,46,49,48,51,55,55,56,44,51,55,46,56,50,57,48,51,53,93,44,91,45,49,48,49,46,48,56,57,54,54,55,44,51,55,46,55,51,54,51,51,55,93,44,91,45,49,48,48,46,54,53,50,50,53,49,44,51,55,46,55,51,54,50,55,53,93,44,91,45,49,48,48,46,54,54,52,49,54,54,44,51,56,46,48,48,50,53,51,93,44,91,45,49,48,48,46,50,50,54,54,49,44,51,56,46,48,48,49,48,49,53,93,44,91,45,49,48,48,46,50,50,55,49,51,55,44,51,56,46,50,54,50,50,51,55,93,44,91,45,49,48,48,46,50,52,52,51,57,51,44,51,56,46,50,54,50,50,57,93,44,91,45,49,48,48,46,54,56,52,54,57,57,44,51,56,46,50,54,52,49,51,55,93,44,91,45,49,48,49,46,49,48,51,50,54,56,44,51,56,46,50,54,52,53,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,55,48,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,54,52,51,57,57,44,51,55,46,50,57,57,50,51,50,93,44,91,45,57,53,46,57,54,52,50,55,44,51,54,46,57,57,57,49,48,52,93,44,91,45,57,53,46,55,56,54,55,54,50,44,51,54,46,57,57,57,51,49,93,44,91,45,57,53,46,53,50,50,52,49,53,44,51,54,46,57,57,57,50,56,93,44,91,45,57,53,46,53,50,49,49,51,44,51,55,46,51,56,51,57,57,93,44,91,45,57,53,46,53,50,53,53,54,44,51,55,46,51,56,51,57,55,57,93,44,91,45,57,53,46,57,54,49,54,48,53,44,51,55,46,51,56,54,54,51,54,93,44,91,45,57,53,46,57,54,52,51,57,57,44,51,55,46,50,57,57,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,70,97,105,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,50,51,50,52,49,44,51,52,46,52,57,52,51,55,57,93,44,91,45,56,49,46,51,49,54,57,49,49,44,51,52,46,50,51,57,52,53,56,93,44,91,45,56,49,46,48,57,53,56,54,51,44,51,52,46,50,49,51,56,55,50,93,44,91,45,56,48,46,56,50,53,57,50,49,44,51,52,46,50,54,56,55,54,93,44,91,45,56,48,46,55,54,57,57,50,54,44,51,52,46,51,55,55,49,49,49,93,44,91,45,56,48,46,56,55,57,50,50,55,44,51,52,46,52,53,55,55,55,54,93,44,91,45,56,48,46,56,55,55,52,57,49,44,51,52,46,53,52,51,49,52,54,93,44,91,45,56,49,46,52,50,50,55,48,54,44,51,52,46,53,55,50,48,50,57,93,44,91,45,56,49,46,52,50,51,50,52,49,44,51,52,46,52,57,52,51,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,104,101,121,101,110,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,53,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,51,54,54,57,53,44,52,49,46,52,51,57,48,53,51,93,44,91,45,49,48,51,46,51,54,57,48,50,52,44,52,49,46,52,51,55,54,53,53,93,44,91,45,49,48,51,46,51,55,55,54,50,44,52,49,46,51,57,52,54,51,51,93,44,91,45,49,48,51,46,51,56,50,52,57,50,44,52,49,46,48,48,50,50,53,50,93,44,91,45,49,48,50,46,54,53,51,52,54,51,44,52,49,46,48,48,50,51,51,50,93,44,91,45,49,48,50,46,54,50,49,48,51,51,44,52,49,46,48,48,50,53,57,55,93,44,91,45,49,48,50,46,54,49,48,52,49,51,44,52,49,46,50,50,49,54,49,52,93,44,91,45,49,48,50,46,54,51,54,54,57,53,44,52,49,46,52,51,57,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,54,52,44,34,98,101,100,115,34,58,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,51,54,56,57,55,52,44,52,51,46,56,52,56,48,52,55,93,44,91,45,57,52,46,56,53,52,52,52,52,44,52,51,46,56,52,56,48,57,57,93,44,91,45,57,52,46,56,53,52,53,53,53,44,52,51,46,53,48,48,57,50,53,93,44,91,45,57,52,46,52,52,50,56,53,44,52,51,46,53,48,48,52,50,50,93,44,91,45,57,52,46,50,52,55,57,54,56,44,52,51,46,53,48,48,49,51,51,93,44,91,45,57,52,46,50,52,55,49,50,51,44,52,51,46,56,52,55,57,52,54,93,44,91,45,57,52,46,51,54,56,57,55,52,44,52,51,46,56,52,56,48,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,83,101,118,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,50,56,55,44,34,98,101,100,115,34,58,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,57,52,50,55,53,44,51,53,46,56,56,55,49,50,53,93,44,91,45,56,51,46,54,54,50,57,57,57,44,51,53,46,53,54,57,52,54,56,93,44,91,45,56,51,46,52,56,53,56,51,52,44,51,53,46,53,54,56,49,57,93,44,91,45,56,51,46,50,53,52,50,53,55,44,51,53,46,54,57,53,53,57,51,93,44,91,45,56,51,46,50,53,53,51,52,51,44,51,53,46,55,49,53,48,56,52,93,44,91,45,56,51,46,51,49,48,55,56,50,44,51,53,46,56,57,53,56,52,54,93,44,91,45,56,51,46,52,55,52,57,48,49,44,51,53,46,57,50,50,56,57,51,93,44,91,45,56,51,46,54,55,51,50,57,55,44,51,54,46,48,51,56,52,56,54,93,44,91,45,56,51,46,54,53,52,54,48,53,44,51,53,46,57,55,49,57,51,55,93,44,91,45,56,51,46,55,57,52,50,55,53,44,51,53,46,56,56,55,49,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,48,51,54,48,55,44,51,53,46,50,52,49,48,52,51,93,44,91,45,56,52,46,54,57,57,57,51,55,44,51,53,46,49,55,48,57,55,52,93,44,91,45,56,52,46,55,55,53,56,53,51,44,51,52,46,57,56,55,56,56,52,93,44,91,45,56,52,46,54,50,49,52,56,51,44,51,52,46,57,56,56,51,50,57,93,44,91,45,56,52,46,51,50,49,56,50,49,44,51,52,46,57,56,56,52,48,56,93,44,91,45,56,52,46,50,57,50,51,54,53,44,51,53,46,50,48,54,54,57,52,93,44,91,45,56,52,46,52,57,53,53,50,57,44,51,53,46,50,56,53,52,55,50,93,44,91,45,56,52,46,55,48,51,54,48,55,44,51,53,46,50,52,49,48,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,51,34,44,34,78,65,77,69,34,58,34,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,44,91,45,49,48,49,46,48,51,56,54,54,44,51,50,46,57,55,48,50,50,53,93,44,91,45,49,48,48,46,54,53,53,56,55,44,51,50,46,57,54,51,52,54,57,93,44,91,45,49,48,48,46,53,49,57,50,48,56,44,51,50,46,57,54,50,57,50,54,93,44,91,45,49,48,48,46,53,49,55,52,52,57,44,51,51,46,51,57,55,56,54,54,93,44,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,84,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,57,56,52,55,51,52,44,52,55,46,57,53,51,57,49,56,93,44,91,45,49,49,50,46,57,49,51,50,53,54,44,52,55,46,56,50,54,50,49,54,93,44,91,45,49,49,50,46,57,49,51,56,55,52,44,52,55,46,54,57,55,49,57,57,93,44,91,45,49,49,50,46,56,53,52,55,48,49,44,52,55,46,54,50,57,50,51,52,93,44,91,45,49,49,50,46,53,54,56,54,54,44,52,55,46,54,51,54,48,49,56,93,44,91,45,49,49,50,46,52,51,50,55,49,49,44,52,55,46,54,48,54,49,48,52,93,44,91,45,49,49,50,46,50,55,56,44,52,55,46,53,48,53,54,50,51,93,44,91,45,49,49,50,46,48,52,55,55,56,49,44,52,55,46,53,49,54,48,51,52,93,44,91,45,49,49,49,46,57,50,50,55,57,53,44,52,55,46,53,48,53,48,54,52,93,44,91,45,49,49,49,46,57,50,50,57,51,54,44,52,55,46,54,49,49,50,51,49,93,44,91,45,49,49,49,46,54,54,54,50,54,44,52,55,46,54,49,49,50,53,51,93,44,91,45,49,49,49,46,54,54,54,52,56,50,44,52,55,46,54,57,55,55,54,49,93,44,91,45,49,49,49,46,52,48,56,56,53,44,52,55,46,54,57,56,49,50,51,93,44,91,45,49,49,49,46,52,48,56,53,49,52,44,52,55,46,57,56,55,49,55,56,93,44,91,45,49,49,49,46,57,56,52,50,54,51,44,52,55,46,57,56,52,53,57,50,93,44,91,45,49,49,50,46,48,52,55,57,57,57,44,52,56,46,48,56,54,54,49,50,93,44,91,45,49,49,50,46,49,55,55,56,51,51,44,52,56,46,49,51,48,55,49,50,93,44,91,45,49,49,51,46,48,49,52,56,49,49,44,52,56,46,49,51,49,48,51,93,44,91,45,49,49,50,46,56,56,52,56,56,51,44,52,55,46,57,56,53,52,49,52,93,44,91,45,49,49,50,46,57,56,52,55,51,52,44,52,55,46,57,53,51,57,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,71,97,114,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,48,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,51,54,54,57,53,44,52,49,46,52,51,57,48,53,51,93,44,91,45,49,48,50,46,54,49,48,52,49,51,44,52,49,46,50,50,49,54,49,52,93,44,91,45,49,48,50,46,48,53,53,53,51,53,44,52,49,46,50,50,49,53,52,55,93,44,91,45,49,48,50,46,48,53,53,50,53,54,44,52,49,46,51,57,53,49,54,50,93,44,91,45,49,48,49,46,57,56,52,54,51,44,52,49,46,51,57,52,55,49,50,93,44,91,45,49,48,49,46,57,56,53,53,50,51,44,52,49,46,55,52,50,50,57,93,44,91,45,49,48,50,46,48,54,55,57,49,56,44,52,49,46,55,52,50,48,57,57,93,44,91,45,49,48,50,46,48,54,54,54,53,44,52,50,46,48,48,57,49,57,53,93,44,91,45,49,48,50,46,54,55,55,53,56,50,44,52,50,46,48,48,53,50,56,50,93,44,91,45,49,48,50,46,54,55,57,48,57,51,44,52,49,46,56,52,51,48,53,93,44,91,45,49,48,50,46,54,51,54,52,55,54,44,52,49,46,55,52,51,49,51,57,93,44,91,45,49,48,50,46,54,51,54,54,57,53,44,52,49,46,52,51,57,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,97,99,111,117,112,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,49,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,53,51,55,56,50,44,51,57,46,53,50,48,51,49,53,93,44,91,45,57,48,46,49,52,56,49,50,49,44,51,57,46,50,54,49,57,52,55,93,44,91,45,57,48,46,49,52,53,57,56,52,44,51,56,46,57,57,57,51,48,51,93,44,91,45,56,57,46,54,57,56,53,53,53,44,51,56,46,57,57,56,57,55,57,93,44,91,45,56,57,46,55,48,49,54,54,49,44,51,57,46,53,50,51,51,49,54,93,44,91,45,56,57,46,57,50,54,48,51,55,44,51,57,46,53,50,50,49,48,52,93,44,91,45,57,48,46,49,53,51,55,56,50,44,51,57,46,53,50,48,51,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,82,111,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,48,53,49,44,34,98,101,100,115,34,58,50,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,55,50,55,49,52,44,51,57,46,51,55,55,52,49,54,93,44,91,45,56,51,46,51,53,51,53,51,49,44,51,57,46,49,57,55,53,56,53,93,44,91,45,56,50,46,55,56,53,56,57,49,44,51,57,46,49,54,56,55,54,57,93,44,91,45,56,50,46,55,54,50,56,57,50,44,51,57,46,50,48,55,57,54,55,93,44,91,45,56,50,46,55,52,56,53,57,49,44,51,57,46,51,54,56,49,54,53,93,44,91,45,56,50,46,55,52,48,55,50,57,44,51,57,46,52,54,56,51,53,93,44,91,45,56,50,46,57,56,52,53,54,44,51,57,46,53,48,54,55,53,52,93,44,91,45,56,51,46,50,54,54,55,51,55,44,51,57,46,53,49,54,50,52,57,93,44,91,45,56,51,46,51,55,50,55,49,52,44,51,57,46,51,55,55,52,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,115,105,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,57,54,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,53,49,57,56,44,52,49,46,57,50,56,57,49,55,93,44,91,45,57,48,46,50,52,50,51,56,44,52,49,46,55,56,50,57,54,52,93,44,91,45,57,48,46,49,56,53,53,51,54,44,52,49,46,53,56,52,53,55,52,93,44,91,45,56,57,46,56,54,50,51,53,49,44,52,49,46,53,56,52,48,48,53,93,44,91,45,56,57,46,54,51,49,52,57,52,44,52,49,46,53,56,52,57,52,57,93,44,91,45,56,57,46,54,50,57,51,51,44,52,49,46,57,48,49,54,49,55,93,44,91,45,56,57,46,54,56,53,51,54,54,44,52,49,46,57,51,48,51,52,93,44,91,45,57,48,46,49,53,49,57,56,44,52,49,46,57,50,56,57,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,69,108,32,80,97,115,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,55,54,53,52,44,34,98,101,100,115,34,58,50,54,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,51,55,55,49,55,52,44,51,50,46,48,48,49,53,48,51,93,44,91,45,49,48,54,46,54,49,56,52,56,54,44,51,50,46,48,48,48,52,57,53,93,44,91,45,49,48,54,46,54,51,53,57,50,44,51,49,46,56,54,54,50,51,51,93,44,91,45,49,48,54,46,53,50,56,48,52,55,44,51,49,46,55,56,51,56,57,49,93,44,91,45,49,48,54,46,51,56,49,48,55,52,44,51,49,46,55,51,50,48,56,50,93,44,91,45,49,48,54,46,50,49,57,54,50,44,51,49,46,52,56,49,53,54,49,93,44,91,45,49,48,53,46,57,57,55,49,53,50,44,51,49,46,51,56,55,50,51,93,44,91,45,49,48,53,46,57,57,56,48,49,50,44,51,50,46,48,48,50,51,55,55,93,44,91,45,49,48,54,46,51,55,55,49,55,52,44,51,50,46,48,48,49,53,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,49,34,44,34,78,65,77,69,34,58,34,76,111,118,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,57,56,48,49,55,57,44,51,50,46,48,48,48,49,50,53,93,44,91,45,49,48,51,46,57,49,50,50,52,56,44,51,49,46,57,48,50,52,50,52,93,44,91,45,49,48,51,46,56,49,52,57,57,44,51,49,46,56,53,50,49,52,50,93,44,91,45,49,48,51,46,55,57,54,54,49,50,44,51,49,46,55,55,48,48,49,51,93,44,91,45,49,48,51,46,55,48,48,54,48,51,44,51,49,46,55,52,56,51,57,53,93,44,91,45,49,48,51,46,54,49,48,56,56,55,44,51,49,46,54,53,49,56,48,50,93,44,91,45,49,48,51,46,51,50,55,53,51,56,44,51,49,46,54,53,49,52,50,93,44,91,45,49,48,51,46,51,50,54,53,48,49,44,51,50,46,48,48,48,51,54,57,93,44,91,45,49,48,51,46,55,50,50,56,56,50,44,51,50,46,48,48,48,50,48,54,93,44,91,45,49,48,51,46,57,56,48,49,55,57,44,51,50,46,48,48,48,49,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,97,116,105,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,57,53,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,50,55,56,54,51,44,51,53,46,48,53,56,50,52,54,93,44,91,45,57,53,46,51,52,57,52,48,57,44,51,53,46,48,53,56,53,50,93,44,91,45,57,53,46,53,48,55,55,51,56,44,51,53,46,48,50,57,50,54,53,93,44,91,45,57,53,46,53,49,52,52,55,53,44,51,52,46,54,56,48,55,49,56,93,44,91,45,57,53,46,48,53,57,54,49,54,44,51,52,46,54,56,48,55,51,54,93,44,91,45,57,53,46,48,53,57,53,49,50,44,51,52,46,56,53,53,48,49,57,93,44,91,45,57,52,46,57,50,55,56,54,51,44,51,53,46,48,53,56,50,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,54,55,49,44,34,98,101,100,115,34,58,50,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,56,51,48,55,53,44,51,57,46,54,48,53,55,57,54,93,44,91,45,56,49,46,53,56,56,49,56,53,44,51,57,46,53,56,54,57,55,51,93,44,91,45,56,49,46,54,56,56,56,56,52,44,51,57,46,53,57,48,53,49,49,93,44,91,45,56,49,46,55,48,56,53,50,55,44,51,57,46,52,56,48,55,55,53,93,44,91,45,56,49,46,56,52,52,56,54,51,44,51,57,46,52,53,48,50,49,54,93,44,91,45,56,49,46,56,53,51,54,54,56,44,51,57,46,51,49,56,49,54,53,93,44,91,45,56,49,46,55,50,53,54,50,50,44,51,57,46,50,49,53,57,48,53,93,44,91,45,56,49,46,54,55,55,53,57,53,44,51,57,46,50,55,52,49,55,49,93,44,91,45,56,49,46,52,53,54,49,52,51,44,51,57,46,52,48,57,50,55,52,93,44,91,45,56,49,46,51,55,49,50,54,44,51,57,46,51,52,49,57,50,52,93,44,91,45,56,49,46,49,50,49,53,51,51,44,51,57,46,52,53,55,55,55,53,93,44,91,45,56,49,46,48,51,56,55,49,50,44,51,57,46,53,51,57,56,56,54,93,44,91,45,56,49,46,50,56,51,48,55,53,44,51,57,46,54,48,53,55,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,111,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,49,48,50,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,56,56,55,48,56,44,51,55,46,48,53,54,50,52,56,93,44,91,45,57,50,46,49,49,50,51,52,54,44,51,54,46,55,57,52,50,51,49,93,44,91,45,57,50,46,49,50,48,52,51,44,51,54,46,52,57,56,55,93,44,91,45,57,49,46,54,55,50,51,52,51,44,51,54,46,52,57,57,52,54,51,93,44,91,45,57,49,46,54,53,56,49,49,49,44,51,54,46,56,56,56,55,50,52,93,44,91,45,57,49,46,54,53,53,54,48,55,44,51,55,46,48,52,56,57,50,53,93,44,91,45,57,50,46,48,56,56,55,48,56,44,51,55,46,48,53,54,50,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,69,100,119,97,114,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,50,53,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,50,50,49,51,54,44,51,56,46,48,48,48,50,51,54,93,44,91,45,57,57,46,51,53,48,50,56,57,44,51,56,46,48,48,48,55,52,53,93,44,91,45,57,57,46,51,53,48,51,53,57,44,51,56,46,48,56,55,53,57,52,93,44,91,45,57,57,46,53,54,57,53,51,51,44,51,56,46,48,56,55,51,55,50,93,44,91,45,57,57,46,53,54,57,56,55,57,44,51,55,46,57,49,51,48,49,54,93,44,91,45,57,57,46,53,53,57,53,56,44,51,55,46,55,51,52,56,56,56,93,44,91,45,57,57,46,48,49,51,53,53,44,51,55,46,55,51,50,57,55,93,44,91,45,57,57,46,48,49,51,51,49,56,44,51,55,46,56,50,53,51,51,54,93,44,91,45,57,57,46,48,50,50,49,51,54,44,51,56,46,48,48,48,50,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,55,49,53,52,44,34,98,101,100,115,34,58,50,57,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,50,51,49,54,44,51,56,46,50,56,55,52,51,51,93,44,91,45,56,53,46,56,57,57,55,54,44,51,56,46,49,56,48,52,52,52,93,44,91,45,56,53,46,57,52,55,49,49,52,44,51,56,46,48,48,53,48,56,53,93,44,91,45,56,53,46,57,51,56,51,50,49,44,51,55,46,57,57,56,55,53,54,93,44,91,45,56,53,46,55,49,50,53,55,56,44,51,56,46,48,56,55,51,49,49,93,44,91,45,56,53,46,53,53,55,50,55,44,51,56,46,48,55,51,56,52,49,93,44,91,45,56,53,46,52,50,56,56,51,44,51,56,46,49,49,56,51,56,51,93,44,91,45,56,53,46,52,50,52,48,53,52,44,51,56,46,49,52,55,52,51,56,93,44,91,45,56,53,46,52,54,56,50,48,54,44,51,56,46,50,56,53,51,48,57,93,44,91,45,56,53,46,54,51,55,56,54,49,44,51,56,46,51,56,48,50,54,51,93,44,91,45,56,53,46,55,57,50,51,49,54,44,51,56,46,50,56,55,52,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,50,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,54,51,55,52,44,52,48,46,51,50,53,51,52,52,93,44,91,45,56,57,46,54,48,50,57,55,57,44,52,48,46,51,50,48,49,50,57,93,44,91,45,56,57,46,54,48,49,54,56,56,44,52,48,46,49,50,50,51,55,56,93,44,91,45,56,57,46,53,55,56,50,56,57,44,51,57,46,57,55,54,49,50,55,93,44,91,45,56,57,46,52,48,52,57,56,52,44,51,57,46,57,49,56,49,56,55,93,44,91,45,56,57,46,50,49,55,56,52,54,44,51,57,46,57,49,54,57,57,93,44,91,45,56,57,46,49,52,52,55,54,52,44,52,48,46,48,52,56,56,53,51,93,44,91,45,56,57,46,49,52,56,55,54,52,44,52,48,46,50,56,50,48,51,56,93,44,91,45,56,57,46,50,54,51,55,52,44,52,48,46,51,50,53,51,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,87,105,110,110,101,98,97,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,57,50,54,44,34,98,101,100,115,34,58,55,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,48,52,48,55,44,52,52,46,50,52,52,49,48,50,93,44,91,45,56,56,46,55,51,57,55,55,44,52,52,46,50,52,51,51,48,51,93,44,91,45,56,56,46,56,56,54,54,55,51,44,52,52,46,50,52,50,54,50,50,93,44,91,45,56,56,46,56,56,54,49,57,51,44,52,51,46,57,56,51,50,51,51,93,44,91,45,56,56,46,56,56,53,54,57,55,44,52,51,46,56,57,53,49,56,52,93,44,91,45,56,56,46,52,48,51,49,57,53,44,52,51,46,56,57,50,57,55,55,93,44,91,45,56,56,46,52,48,52,49,56,55,44,52,51,46,57,51,56,50,93,44,91,45,56,56,46,52,48,52,48,55,44,52,52,46,50,52,52,49,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,51,52,53,56,56,44,51,54,46,53,48,50,54,49,49,93,44,91,45,56,56,46,57,48,51,52,56,44,51,54,46,53,55,54,56,54,52,93,44,91,45,56,57,46,49,55,52,55,50,55,44,51,54,46,54,53,48,52,55,53,93,44,91,45,56,57,46,50,50,55,48,52,54,44,51,54,46,53,54,57,53,51,55,93,44,91,45,56,57,46,51,50,55,53,56,56,44,51,54,46,54,51,50,50,55,54,93,44,91,45,56,57,46,52,49,55,50,55,53,44,51,54,46,52,57,57,48,49,49,93,44,91,45,56,57,46,51,52,54,48,54,54,44,51,54,46,53,48,51,50,51,50,93,44,91,45,56,56,46,56,51,52,53,56,56,44,51,54,46,53,48,50,54,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,72,97,114,118,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,53,53,53,44,34,98,101,100,115,34,58,49,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,48,49,56,52,49,44,51,56,46,49,55,51,56,49,52,93,44,91,45,57,55,46,55,48,49,57,54,57,44,51,55,46,57,49,49,51,50,53,93,44,91,45,57,55,46,49,53,50,52,55,54,44,51,55,46,57,49,50,55,51,51,93,44,91,45,57,55,46,49,53,50,57,49,51,44,51,56,46,48,56,55,55,48,52,93,44,91,45,57,55,46,49,53,51,48,57,51,44,51,56,46,49,55,52,54,51,52,93,44,91,45,57,55,46,51,55,49,55,53,44,51,56,46,49,55,51,54,55,51,93,44,91,45,57,55,46,55,48,49,56,52,49,44,51,56,46,49,55,51,56,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,68,97,119,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,57,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,52,48,54,51,48,57,44,52,55,46,49,56,49,53,56,51,93,44,91,45,49,48,53,46,51,50,52,56,53,51,44,52,55,46,49,56,49,52,57,54,93,44,91,45,49,48,53,46,51,50,52,55,53,55,44,52,54,46,57,55,55,49,57,54,93,44,91,45,49,48,53,46,49,57,54,55,51,53,44,52,54,46,57,55,55,49,55,50,93,44,91,45,49,48,53,46,48,50,55,53,50,54,44,52,54,46,56,54,49,52,53,55,93,44,91,45,49,48,52,46,54,48,51,55,54,54,44,52,54,46,56,54,48,56,53,51,93,44,91,45,49,48,52,46,52,49,50,49,50,52,44,52,54,46,57,48,52,48,48,51,93,44,91,45,49,48,52,46,51,48,54,48,54,50,44,52,55,46,48,52,50,48,52,54,93,44,91,45,49,48,52,46,51,52,49,54,56,44,52,55,46,50,52,53,51,57,50,93,44,91,45,49,48,52,46,52,50,48,51,52,55,44,52,55,46,51,53,52,52,51,53,93,44,91,45,49,48,52,46,53,49,51,50,57,50,44,52,55,46,51,53,52,55,49,57,93,44,91,45,49,48,52,46,53,49,51,48,52,57,44,52,55,46,53,50,57,52,52,50,93,44,91,45,49,48,52,46,53,57,51,54,54,52,44,52,55,46,54,49,54,50,57,52,93,44,91,45,49,48,52,46,57,55,56,53,53,51,44,52,55,46,54,49,54,50,55,50,93,44,91,45,49,48,52,46,57,55,56,48,57,44,52,55,46,55,48,51,50,57,51,93,44,91,45,49,48,53,46,50,51,53,48,49,54,44,52,55,46,55,48,51,53,56,49,93,44,91,45,49,48,53,46,50,51,52,55,55,49,44,52,55,46,55,57,48,53,48,50,93,44,91,45,49,48,53,46,51,54,51,50,54,50,44,52,55,46,55,57,48,52,49,57,93,44,91,45,49,48,53,46,52,48,54,53,56,49,44,52,55,46,53,50,57,53,51,52,93,44,91,45,49,48,53,46,52,48,54,51,48,57,44,52,55,46,49,56,49,53,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,53,49,44,34,98,101,100,115,34,58,49,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,51,56,56,55,56,44,51,57,46,52,53,50,52,54,53,93,44,91,45,56,48,46,48,50,53,48,48,49,44,51,57,46,52,48,49,52,52,54,93,44,91,45,56,48,46,49,57,55,50,56,54,44,51,57,46,51,57,51,49,56,54,93,44,91,45,56,48,46,49,54,54,51,56,55,44,51,57,46,50,52,50,50,56,51,93,44,91,45,56,48,46,48,50,51,52,49,49,44,51,57,46,50,52,55,56,57,50,93,44,91,45,55,57,46,56,57,53,53,51,54,44,51,57,46,50,57,57,53,56,52,93,44,91,45,55,57,46,56,57,52,54,56,56,44,51,57,46,52,51,53,53,56,56,93,44,91,45,55,57,46,57,51,56,56,55,56,44,51,57,46,52,53,50,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,77,105,100,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,51,56,57,44,34,98,101,100,115,34,58,51,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,44,91,45,56,52,46,54,48,55,53,52,44,52,51,46,52,54,54,48,48,54,93,44,91,45,56,52,46,51,54,57,56,55,54,44,52,51,46,52,54,54,48,52,52,93,44,91,45,56,52,46,49,55,48,53,55,54,44,52,51,46,52,56,49,57,54,57,93,44,91,45,56,52,46,49,54,56,49,50,55,44,52,51,46,53,54,56,56,57,57,93,44,91,45,56,52,46,49,54,55,51,49,56,44,52,51,46,56,50,53,57,48,50,93,44,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,81,117,105,116,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,55,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,57,56,53,51,54,44,51,52,46,53,49,49,48,56,56,93,44,91,45,57,48,46,51,48,52,51,49,55,44,51,52,46,53,48,57,54,50,49,93,44,91,45,57,48,46,51,57,57,52,57,56,44,51,52,46,52,50,51,56,48,55,93,44,91,45,57,48,46,52,53,48,53,55,50,44,51,52,46,50,54,50,52,48,50,93,44,91,45,57,48,46,52,53,48,57,56,49,44,51,52,46,48,55,50,57,51,50,93,44,91,45,57,48,46,49,51,53,54,57,53,44,51,52,46,48,55,50,57,93,44,91,45,57,48,46,49,51,53,52,53,54,44,51,52,46,49,54,48,48,55,52,93,44,91,45,57,48,46,49,57,52,48,56,54,44,51,52,46,51,48,49,52,48,55,93,44,91,45,57,48,46,49,57,56,53,51,54,44,51,52,46,53,49,49,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,57,53,44,34,98,101,100,115,34,58,52,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,53,49,50,56,53,44,51,55,46,55,57,56,56,55,56,93,44,91,45,56,54,46,50,55,53,50,55,44,51,55,46,53,57,51,53,49,57,93,44,91,45,56,54,46,49,49,52,48,57,53,44,51,55,46,53,54,55,49,51,49,93,44,91,45,56,54,46,48,52,55,53,57,56,44,51,55,46,52,52,57,57,51,51,93,44,91,45,56,53,46,56,57,50,56,48,52,44,51,55,46,52,52,48,51,48,56,93,44,91,45,56,53,46,56,55,54,48,48,54,44,51,55,46,53,52,51,50,53,57,93,44,91,45,56,53,46,54,56,48,52,56,56,44,51,55,46,55,51,50,50,56,52,93,44,91,45,56,53,46,55,51,55,55,55,55,44,51,55,46,56,49,49,55,57,93,44,91,45,56,53,46,57,51,56,51,50,49,44,51,55,46,57,57,56,55,53,54,93,44,91,45,56,53,46,57,52,55,49,49,52,44,51,56,46,48,48,53,48,56,53,93,44,91,45,56,53,46,57,57,56,57,53,50,44,51,55,46,57,57,57,54,53,52,93,44,91,45,56,54,46,48,48,55,52,51,50,44,51,55,46,56,49,56,52,51,57,93,44,91,45,56,54,46,49,53,49,50,56,53,44,51,55,46,55,57,56,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,49,54,57,44,34,98,101,100,115,34,58,49,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,52,52,51,56,56,44,51,56,46,52,55,51,56,55,56,93,44,91,45,56,57,46,49,52,55,53,57,55,44,51,56,46,50,49,50,56,57,53,93,44,91,45,56,57,46,49,50,57,54,51,50,44,51,56,46,49,50,52,55,54,55,93,44,91,45,56,56,46,55,48,52,54,48,54,44,51,56,46,49,50,53,49,57,53,93,44,91,45,56,56,46,55,48,50,51,57,49,44,51,56,46,50,53,54,54,54,49,93,44,91,45,56,56,46,54,57,56,57,54,49,44,51,56,46,52,55,52,57,49,52,93,44,91,45,56,57,46,49,52,52,51,56,56,44,51,56,46,52,55,51,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,97,109,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,57,49,51,52,54,44,52,52,46,56,48,52,48,51,53,93,44,91,45,57,55,46,52,57,50,50,54,54,44,52,52,46,53,52,51,56,56,52,93,44,91,45,57,55,46,49,50,56,48,50,52,44,52,52,46,53,52,51,49,50,54,93,44,91,45,57,54,46,56,56,53,53,48,52,44,52,52,46,53,52,51,55,55,51,93,44,91,45,57,54,46,56,56,52,53,55,44,52,52,46,56,48,52,52,51,54,93,44,91,45,57,55,46,52,57,49,51,52,54,44,52,52,46,56,48,52,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,52,56,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,52,51,52,49,52,44,52,53,46,53,53,53,48,56,50,93,44,91,45,57,48,46,48,52,50,50,55,51,44,52,53,46,51,56,49,56,54,54,93,44,91,45,57,48,46,48,52,51,54,56,53,44,52,53,46,49,50,48,50,49,52,93,44,91,45,56,57,46,52,50,53,57,55,49,44,52,53,46,49,49,57,48,57,56,93,44,91,45,56,57,46,52,50,52,56,50,52,44,52,53,46,52,54,55,49,54,54,93,44,91,45,56,57,46,52,50,56,50,53,56,44,52,53,46,53,53,53,51,53,51,93,44,91,45,57,48,46,48,52,51,52,49,52,44,52,53,46,53,53,53,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,54,57,50,44,34,98,101,100,115,34,58,49,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,50,54,50,50,56,44,52,52,46,57,57,52,56,54,51,93,44,91,45,55,52,46,54,52,49,56,55,50,44,52,52,46,57,53,50,54,50,49,93,44,91,45,55,52,46,53,50,53,54,56,51,44,52,52,46,49,55,48,54,51,54,93,44,91,45,55,52,46,53,51,53,49,53,54,44,52,52,46,48,57,57,50,53,93,44,91,45,55,52,46,50,56,49,56,55,44,52,52,46,49,50,48,53,53,50,93,44,91,45,55,52,46,48,57,51,52,57,44,52,52,46,49,51,55,54,49,53,93,44,91,45,55,52,46,49,52,49,52,50,52,44,52,52,46,52,48,55,50,54,56,93,44,91,45,55,51,46,57,48,57,54,56,55,44,52,52,46,52,50,57,54,57,57,93,44,91,45,55,51,46,57,56,54,51,56,50,44,52,52,46,55,48,55,55,55,51,93,44,91,45,55,52,46,48,50,55,51,56,57,44,52,52,46,57,57,53,54,56,53,93,44,91,45,55,52,46,55,50,54,50,50,56,44,52,52,46,57,57,52,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,51,48,34,44,34,78,65,77,69,34,58,34,70,114,101,100,101,114,105,99,107,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,54,57,44,34,98,101,100,115,34,58,52,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,53,51,48,50,56,51,44,51,56,46,51,48,57,49,55,53,93,44,91,45,55,55,46,52,52,55,49,50,54,44,51,56,46,50,56,52,54,49,52,93,44,91,45,55,55,46,52,54,55,48,53,51,44,51,56,46,51,49,56,54,54,93,44,91,45,55,55,46,53,51,48,50,56,51,44,51,56,46,51,48,57,49,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,82,97,108,101,105,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,50,51,50,44,34,98,101,100,115,34,58,52,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,49,52,50,50,56,44,51,55,46,55,57,49,50,49,49,93,44,91,45,56,49,46,52,50,55,55,56,49,44,51,55,46,55,52,57,51,53,50,93,44,91,45,56,49,46,51,48,52,49,51,44,51,55,46,53,52,54,53,54,52,93,44,91,45,56,49,46,50,50,50,49,50,49,44,51,55,46,53,49,48,52,49,54,93,44,91,45,56,49,46,48,57,52,54,51,44,51,55,46,53,56,56,54,53,56,93,44,91,45,56,49,46,48,54,56,55,55,52,44,51,55,46,54,51,57,56,50,51,93,44,91,45,56,48,46,57,48,53,57,54,49,44,51,55,46,54,57,56,53,57,54,93,44,91,45,56,48,46,57,52,53,48,57,44,51,55,46,56,49,57,49,50,49,93,44,91,45,56,49,46,48,55,51,50,52,57,44,51,55,46,56,55,53,56,54,53,93,44,91,45,56,49,46,50,57,53,49,50,55,44,51,55,46,56,56,57,51,49,49,93,44,91,45,56,49,46,51,56,48,56,50,57,44,51,55,46,57,54,57,49,48,57,93,44,91,45,56,49,46,52,53,54,54,51,50,44,51,55,46,57,56,55,51,48,55,93,44,91,45,56,49,46,53,55,49,51,51,52,44,51,55,46,57,50,56,49,48,55,93,44,91,45,56,49,46,53,49,52,50,50,56,44,51,55,46,55,57,49,50,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,104,97,118,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,52,53,57,44,34,98,101,100,115,34,58,50,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,56,57,51,51,55,55,44,51,52,46,48,56,56,52,48,55,93,44,91,45,49,48,52,46,56,57,50,52,51,51,44,51,51,46,51,57,56,49,57,57,93,44,91,45,49,48,52,46,57,48,53,52,50,52,44,51,51,46,49,51,56,57,48,52,93,44,91,45,49,48,53,46,51,49,54,57,54,56,44,51,51,46,49,51,50,51,48,51,93,44,91,45,49,48,53,46,51,53,50,53,49,51,44,51,50,46,57,54,50,48,48,55,93,44,91,45,49,48,53,46,51,53,52,48,49,44,51,50,46,53,49,56,55,55,54,93,44,91,45,49,48,52,46,56,53,49,53,50,52,44,51,50,46,53,50,48,53,52,49,93,44,91,45,49,48,52,46,56,52,49,53,55,54,44,51,50,46,57,54,51,50,49,51,93,44,91,45,49,48,51,46,56,49,52,53,48,55,44,51,50,46,57,54,53,49,49,52,93,44,91,45,49,48,51,46,55,54,54,52,49,55,44,51,50,46,57,54,53,50,54,52,93,44,91,45,49,48,51,46,55,54,54,51,54,49,44,51,51,46,51,57,53,50,57,55,93,44,91,45,49,48,51,46,55,50,48,56,48,57,44,51,51,46,53,54,57,53,51,55,93,44,91,45,49,48,51,46,53,49,48,49,50,57,44,51,51,46,53,55,48,49,49,55,93,44,91,45,49,48,51,46,53,48,57,55,53,57,44,51,51,46,54,53,55,50,54,50,93,44,91,45,49,48,51,46,55,49,56,51,51,51,44,51,51,46,54,53,54,50,49,93,44,91,45,49,48,51,46,55,49,54,56,56,53,44,51,51,46,56,49,57,53,53,56,93,44,91,45,49,48,51,46,56,52,49,57,51,51,44,51,51,46,56,49,57,50,93,44,91,45,49,48,51,46,56,52,49,54,57,49,44,51,52,46,48,56,49,57,48,57,93,44,91,45,49,48,51,46,57,52,54,48,49,57,44,51,52,46,48,56,50,52,54,51,93,44,91,45,49,48,52,46,49,53,53,54,44,51,52,46,48,56,51,50,48,53,93,44,91,45,49,48,52,46,49,53,54,50,54,57,44,51,51,46,57,57,53,52,49,51,93,44,91,45,49,48,52,46,55,56,54,49,48,52,44,51,52,46,48,48,48,49,51,55,93,44,91,45,49,48,52,46,55,56,54,52,50,57,44,51,52,46,48,56,55,54,54,52,93,44,91,45,49,48,52,46,56,57,51,51,55,55,44,51,52,46,48,56,56,52,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,70,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,57,49,55,44,34,98,101,100,115,34,58,50,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,50,52,56,50,53,55,44,51,53,46,56,51,57,49,55,56,93,44,91,45,49,48,54,46,50,53,48,52,57,57,44,51,53,46,55,53,53,56,49,56,93,44,91,45,49,48,54,46,50,52,52,50,49,54,44,51,53,46,50,49,53,54,53,55,93,44,91,45,49,48,54,46,50,52,51,56,55,52,44,51,53,46,48,52,48,48,48,51,93,44,91,45,49,48,53,46,55,49,52,52,49,57,44,51,53,46,48,52,49,54,48,53,93,44,91,45,49,48,53,46,55,50,48,53,50,57,44,51,53,46,56,55,49,49,56,53,93,44,91,45,49,48,53,46,55,49,55,52,55,55,44,51,53,46,57,55,56,55,52,49,93,44,91,45,49,48,54,46,48,55,49,51,52,57,44,51,54,46,48,48,49,57,55,93,44,91,45,49,48,54,46,48,53,52,51,52,54,44,51,53,46,57,51,48,55,56,51,93,44,91,45,49,48,54,46,50,52,53,54,52,57,44,51,53,46,57,51,48,55,52,50,93,44,91,45,49,48,54,46,50,52,56,51,52,53,44,51,53,46,56,53,53,54,53,50,93,44,91,45,49,48,54,46,50,52,56,50,53,55,44,51,53,46,56,51,57,49,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,52,49,56,50,44,34,98,101,100,115,34,58,53,57,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,49,50,53,57,44,51,51,46,54,57,55,49,53,49,93,44,91,45,49,49,56,46,48,57,54,52,55,51,44,51,51,46,54,53,51,54,53,49,93,44,91,45,49,49,55,46,56,49,54,51,53,54,44,51,51,46,52,57,48,56,55,50,93,44,91,45,49,49,55,46,54,49,49,48,56,49,44,51,51,46,51,51,51,57,57,50,93,44,91,45,49,49,55,46,53,55,56,52,56,44,51,51,46,52,53,51,57,50,55,93,44,91,45,49,49,55,46,53,48,57,55,50,50,44,51,51,46,53,48,53,48,49,57,93,44,91,45,49,49,55,46,52,49,50,57,56,55,44,51,51,46,54,53,57,48,52,53,93,44,91,45,49,49,55,46,53,51,51,57,57,57,44,51,51,46,55,49,48,51,53,53,93,44,91,45,49,49,55,46,54,55,51,49,51,52,44,51,51,46,56,55,49,48,48,53,93,44,91,45,49,49,55,46,55,56,51,50,56,55,44,51,51,46,57,52,54,52,49,49,93,44,91,45,49,49,55,46,57,55,54,52,57,56,44,51,51,46,57,52,54,48,53,93,44,91,45,49,49,56,46,48,53,56,57,49,56,44,51,51,46,56,52,54,49,50,49,93,44,91,45,49,49,56,46,49,50,53,57,44,51,51,46,54,57,55,49,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,67,114,117,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,53,56,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,52,53,50,51,44,51,49,46,55,51,49,50,49,57,93,44,91,45,49,49,49,46,49,54,52,49,56,51,44,51,49,46,55,50,53,56,57,93,44,91,45,49,49,49,46,49,54,51,55,49,55,44,51,49,46,53,50,49,55,50,52,93,44,91,45,49,49,49,46,51,54,54,57,50,50,44,51,49,46,53,50,49,51,54,49,93,44,91,45,49,49,49,46,51,54,54,51,55,50,44,51,49,46,52,50,54,48,54,49,93,44,91,45,49,49,49,46,48,55,52,57,56,44,51,49,46,51,51,50,51,52,49,93,44,91,45,49,49,48,46,52,53,57,55,53,49,44,51,49,46,51,51,50,57,49,52,93,44,91,45,49,49,48,46,52,53,50,51,44,51,49,46,55,51,49,50,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,67,117,114,114,105,116,117,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,51,49,51,51,48,51,44,51,54,46,53,53,48,53,50,93,44,91,45,55,54,46,49,49,52,48,54,57,44,51,54,46,51,53,55,52,57,56,93,44,91,45,55,53,46,57,54,57,54,50,53,44,51,54,46,51,48,54,51,49,50,93,44,91,45,55,53,46,56,56,55,57,56,52,44,51,54,46,49,54,51,51,49,49,93,44,91,45,55,53,46,57,48,54,50,57,53,44,51,54,46,48,56,53,56,55,55,93,44,91,45,55,53,46,56,52,48,48,52,54,44,51,54,46,48,50,56,56,51,52,93,44,91,45,55,53,46,55,54,52,55,50,55,44,51,54,46,48,54,48,49,51,57,93,44,91,45,55,53,46,56,49,51,49,48,56,44,51,54,46,50,50,51,53,54,93,44,91,45,55,53,46,55,48,57,48,55,56,44,51,54,46,50,52,52,57,56,52,93,44,91,45,55,53,46,55,57,55,52,57,55,44,51,54,46,53,53,48,57,49,54,93,44,91,45,55,54,46,49,50,50,51,52,57,44,51,54,46,53,53,48,53,50,51,93,44,91,45,55,54,46,51,49,51,51,48,51,44,51,54,46,53,53,48,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,51,49,49,52,53,44,51,56,46,56,53,50,53,48,55,93,44,91,45,56,55,46,57,48,56,49,49,51,44,51,56,46,56,53,48,49,48,55,93,44,91,45,56,55,46,57,49,50,50,56,54,44,51,56,46,53,55,48,49,48,52,93,44,91,45,56,55,46,54,53,49,53,50,57,44,51,56,46,53,54,56,49,54,54,93,44,91,45,56,55,46,53,49,57,54,49,44,51,56,46,54,57,55,49,57,56,93,44,91,45,56,55,46,53,51,49,49,52,53,44,51,56,46,56,53,50,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,51,56,55,44,34,98,101,100,115,34,58,50,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,51,54,52,49,44,52,48,46,53,54,53,53,50,53,93,44,91,45,56,54,46,49,54,53,48,50,52,44,52,48,46,53,54,50,54,52,57,93,44,91,45,56,54,46,51,55,52,52,49,55,44,52,48,46,53,54,49,51,54,49,93,44,91,45,56,54,46,51,55,53,55,54,50,44,52,48,46,52,51,49,56,53,49,93,44,91,45,56,54,46,50,52,50,57,57,50,44,52,48,46,51,55,51,54,54,49,93,44,91,45,56,54,46,50,52,50,56,49,50,44,52,48,46,52,48,50,57,49,52,93,44,91,45,56,53,46,56,54,50,49,49,55,44,52,48,46,52,48,54,56,56,57,93,44,91,45,56,53,46,56,54,51,54,52,49,44,52,48,46,53,54,53,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,54,50,56,57,50,44,51,56,46,53,51,51,53,49,57,93,44,91,45,56,55,46,52,48,55,53,56,51,44,51,56,46,51,55,53,53,48,49,93,44,91,45,56,55,46,51,49,53,57,51,44,51,56,46,51,55,53,48,52,56,93,44,91,45,56,55,46,51,49,54,56,57,51,44,51,56,46,50,52,54,48,55,55,93,44,91,45,56,55,46,48,55,51,48,54,55,44,51,56,46,50,51,50,53,57,54,93,44,91,45,56,55,46,48,55,50,51,54,57,44,51,56,46,53,49,52,55,93,44,91,45,56,55,46,50,52,50,48,57,55,44,51,56,46,53,52,52,57,51,93,44,91,45,56,55,46,52,54,50,56,57,50,44,51,56,46,53,51,51,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,104,114,105,115,116,105,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,54,51,44,34,98,101,100,115,34,58,55,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,51,51,51,54,56,44,51,55,46,48,48,50,49,48,51,93,44,91,45,56,55,46,54,53,57,55,50,52,44,51,54,46,57,54,54,51,57,55,93,44,91,45,56,55,46,54,57,52,49,57,50,44,51,54,46,54,51,55,49,48,56,93,44,91,45,56,55,46,54,52,49,49,53,55,44,51,54,46,54,51,56,49,48,57,93,44,91,45,56,55,46,51,51,53,57,56,44,51,54,46,54,52,49,54,53,57,93,44,91,45,56,55,46,50,53,57,51,55,49,44,51,55,46,48,55,50,52,48,49,93,44,91,45,56,55,46,51,51,51,55,52,49,44,51,55,46,49,53,55,49,56,54,93,44,91,45,56,55,46,53,50,49,54,48,57,44,51,55,46,49,48,53,51,52,52,93,44,91,45,56,55,46,54,56,48,54,49,55,44,51,55,46,49,52,57,50,51,57,93,44,91,45,56,55,46,55,51,51,51,54,56,44,51,55,46,48,48,50,49,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,69,97,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,49,53,53,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,55,52,50,52,53,44,52,50,46,55,55,48,55,56,52,93,44,91,45,56,53,46,48,55,49,54,48,57,44,52,50,46,52,50,49,52,50,56,93,44,91,45,56,52,46,55,49,56,52,57,51,44,52,50,46,52,50,49,53,50,93,44,91,45,56,52,46,54,48,48,52,48,51,44,52,50,46,52,50,49,57,56,52,93,44,91,45,56,52,46,54,48,50,55,54,49,44,52,50,46,55,54,57,56,56,93,44,91,45,56,52,46,56,51,55,48,56,53,44,52,50,46,55,55,48,52,55,57,93,44,91,45,56,53,46,48,55,52,50,52,53,44,52,50,46,55,55,48,55,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,87,97,112,101,108,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,49,53,44,34,98,101,100,115,34,58,50,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,52,48,51,54,49,44,52,49,46,49,54,49,50,57,56,93,44,91,45,57,50,46,54,51,57,48,57,49,44,52,48,46,56,57,56,56,56,54,93,44,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,44,91,45,57,50,46,49,55,57,57,55,52,44,52,49,46,49,54,50,54,54,50,93,44,91,45,57,50,46,52,49,48,50,51,51,44,52,49,46,49,54,49,57,52,50,93,44,91,45,57,50,46,54,52,48,51,54,49,44,52,49,46,49,54,49,50,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,73,109,112,101,114,105,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,50,49,54,44,34,98,101,100,115,34,58,50,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,48,54,49,54,56,44,51,50,46,54,49,56,52,56,93,44,91,45,49,49,52,46,55,49,57,52,57,55,44,51,50,46,55,49,56,55,51,57,93,44,91,45,49,49,52,46,53,50,54,56,53,54,44,51,50,46,55,53,55,48,57,52,93,44,91,45,49,49,52,46,52,54,50,57,50,57,44,51,50,46,57,48,55,57,52,52,93,44,91,45,49,49,52,46,53,49,54,56,52,50,44,51,51,46,48,50,55,56,56,54,93,44,91,45,49,49,52,46,54,55,48,56,48,51,44,51,51,46,48,51,55,57,56,51,93,44,91,45,49,49,52,46,55,48,55,56,57,54,44,51,51,46,48,57,55,52,51,49,93,44,91,45,49,49,52,46,54,55,55,48,51,50,44,51,51,46,50,55,48,49,54,57,93,44,91,45,49,49,52,46,55,50,48,48,54,53,44,51,51,46,52,48,55,56,57,49,93,44,91,45,49,49,52,46,54,50,55,49,50,53,44,51,51,46,52,51,51,53,53,52,93,44,91,45,49,49,53,46,54,48,57,54,53,53,44,51,51,46,52,50,54,56,55,51,93,44,91,45,49,49,54,46,48,56,53,49,54,53,44,51,51,46,52,50,53,57,51,50,93,44,91,45,49,49,54,46,49,48,51,50,53,50,44,51,51,46,48,55,52,54,55,93,44,91,45,49,49,54,46,49,48,54,49,54,56,44,51,50,46,54,49,56,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,52,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,50,50,57,52,44,52,50,46,48,55,49,52,56,52,93,44,91,45,56,54,46,50,50,54,48,57,53,44,52,49,46,55,54,48,52,48,54,93,44,91,45,56,54,46,48,54,50,53,55,53,44,52,49,46,55,54,48,53,49,51,93,44,91,45,56,53,46,55,57,49,51,51,53,44,52,49,46,55,53,57,48,55,56,93,44,91,45,56,53,46,55,54,48,49,56,54,44,52,49,46,55,57,56,56,49,52,93,44,91,45,56,53,46,55,54,50,57,52,51,44,52,50,46,48,54,57,51,50,55,93,44,91,45,56,54,46,50,50,50,57,52,44,52,50,46,48,55,49,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,87,105,108,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,53,56,49,53,44,51,49,46,51,52,54,54,57,53,93,44,91,45,57,49,46,51,48,51,53,56,44,51,49,46,51,54,48,57,55,53,93,44,91,45,57,49,46,52,50,52,48,49,50,44,51,49,46,51,49,53,48,52,93,44,91,45,57,49,46,52,55,56,55,57,57,44,51,49,46,50,51,56,57,57,57,93,44,91,45,57,49,46,53,56,57,52,53,49,44,51,49,46,49,57,49,49,52,93,44,91,45,57,49,46,54,51,54,57,52,50,44,51,48,46,57,57,57,52,49,54,93,44,91,45,57,49,46,49,55,54,49,52,44,51,48,46,57,57,57,48,56,93,44,91,45,57,49,46,48,54,48,50,49,57,44,51,48,46,57,57,56,57,50,55,93,44,91,45,57,49,46,48,53,57,52,51,49,44,51,49,46,50,56,49,56,53,56,93,44,91,45,57,49,46,48,57,53,51,57,56,44,51,49,46,51,50,48,57,55,53,93,44,91,45,57,49,46,49,53,56,49,53,44,51,49,46,51,52,54,54,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,56,50,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,50,34,44,34,78,65,77,69,34,58,34,89,97,107,117,116,97,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,49,46,48,48,49,57,53,53,44,54,48,46,51,57,49,54,56,56,93,44,91,45,49,52,49,46,50,49,51,52,53,49,44,54,48,46,52,51,53,50,54,56,93,44,91,45,49,52,49,46,55,57,48,54,48,49,44,54,48,46,52,51,53,50,51,56,93,44,91,45,49,52,49,46,55,57,48,54,49,57,44,54,48,46,53,50,49,56,57,57,93,44,91,45,49,52,51,46,49,57,51,53,49,57,44,54,48,46,53,50,49,56,50,56,93,44,91,45,49,52,51,46,56,57,51,51,50,53,44,54,48,46,48,50,52,49,54,54,93,44,91,45,49,52,51,46,56,57,53,50,49,44,53,57,46,57,52,50,54,52,55,93,44,91,45,49,52,51,46,54,52,50,55,48,50,44,53,57,46,57,56,56,56,50,53,93,44,91,45,49,52,50,46,56,50,54,48,52,53,44,54,48,46,48,53,49,49,48,50,93,44,91,45,49,52,50,46,53,55,55,57,56,55,44,54,48,46,48,52,51,53,50,93,44,91,45,49,52,49,46,56,56,57,51,49,50,44,53,57,46,57,53,50,54,57,53,93,44,91,45,49,52,48,46,57,50,55,49,57,50,44,53,57,46,55,48,50,48,55,53,93,44,91,45,49,52,48,46,52,50,53,48,57,55,44,53,57,46,54,53,55,48,51,93,44,91,45,49,51,57,46,57,48,50,56,51,53,44,53,57,46,52,57,55,57,56,51,93,44,91,45,49,51,57,46,53,55,57,53,51,57,44,53,57,46,51,55,55,54,48,54,93,44,91,45,49,51,56,46,56,55,51,57,48,51,44,53,57,46,49,56,48,49,54,54,93,44,91,45,49,51,56,46,54,49,56,49,55,54,44,53,57,46,48,55,52,55,50,56,93,44,91,45,49,51,56,46,50,53,50,53,48,54,44,53,56,46,57,56,57,52,52,93,44,91,45,49,51,56,46,48,50,49,52,54,55,44,53,56,46,56,54,49,52,52,57,93,44,91,45,49,51,56,46,48,50,49,54,49,44,53,56,46,55,57,48,48,50,51,93,44,91,45,49,51,55,46,53,50,53,54,55,53,44,53,56,46,57,48,56,57,55,53,93,44,91,45,49,51,55,46,53,44,53,56,46,57,56,53,51,57,53,93,44,91,45,49,51,55,46,54,48,55,51,53,54,44,53,57,46,50,52,51,56,48,51,93,44,91,45,49,51,56,46,54,50,54,50,48,50,44,53,57,46,55,54,56,53,56,93,44,91,45,49,51,56,46,55,48,55,51,55,56,44,53,57,46,57,48,54,51,50,53,93,44,91,45,49,51,57,46,48,53,51,54,55,49,44,53,57,46,57,57,52,56,51,55,93,44,91,45,49,51,57,46,49,57,56,56,52,54,44,54,48,46,48,56,56,50,57,54,93,44,91,45,49,51,57,46,48,55,52,56,49,57,44,54,48,46,51,53,50,53,48,53,93,44,91,45,49,51,57,46,54,57,50,57,56,49,44,54,48,46,51,51,53,50,50,52,93,44,91,45,49,51,57,46,57,56,49,48,57,52,44,54,48,46,49,56,49,57,54,54,93,44,91,45,49,52,48,46,52,53,56,50,48,54,44,54,48,46,51,48,56,48,56,53,93,44,91,45,49,52,48,46,53,50,48,52,50,53,44,54,48,46,50,49,57,56,49,57,93,44,91,45,49,52,49,46,48,48,49,57,56,44,54,48,46,51,48,54,51,54,57,93,44,91,45,49,52,49,46,48,48,49,57,53,53,44,54,48,46,51,57,49,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,83,104,101,114,105,100,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,54,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,50,48,50,49,51,44,51,57,46,53,54,56,48,51,52,93,44,91,45,49,48,48,46,55,50,49,50,57,54,44,51,57,46,49,51,51,51,56,49,93,44,91,45,49,48,48,46,49,54,52,50,44,51,57,46,49,51,50,48,55,49,93,44,91,45,49,48,48,46,49,54,49,54,54,55,44,51,57,46,53,54,55,50,55,55,93,44,91,45,49,48,48,46,49,56,48,51,53,49,44,51,57,46,53,54,54,56,57,93,44,91,45,49,48,48,46,55,50,48,50,49,51,44,51,57,46,53,54,56,48,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,101,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,55,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,44,91,45,56,57,46,55,51,48,49,53,52,44,51,50,46,57,50,57,57,50,52,93,44,91,45,56,57,46,55,51,48,48,49,54,44,51,50,46,56,56,53,48,55,50,93,44,91,45,56,57,46,55,51,48,51,48,52,44,51,50,46,54,51,52,50,50,56,93,44,91,45,56,57,46,55,51,48,49,53,50,44,51,50,46,53,55,55,50,52,56,93,44,91,45,56,57,46,51,50,50,53,57,56,44,51,50,46,53,55,54,52,51,51,93,44,91,45,56,57,46,51,49,55,53,56,56,44,51,50,46,53,55,54,52,53,56,93,44,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,103,117,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,51,54,51,44,34,98,101,100,115,34,58,54,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,54,54,49,48,51,44,49,56,46,51,48,51,51,50,49,93,44,91,45,54,54,46,49,49,55,55,55,52,44,49,56,46,50,48,57,57,52,57,93,44,91,45,54,54,46,48,57,53,48,57,57,44,49,56,46,49,54,57,48,55,55,93,44,91,45,54,54,46,48,53,50,53,53,53,44,49,56,46,49,49,51,48,54,57,93,44,91,45,54,53,46,57,57,55,54,53,44,49,56,46,50,48,54,57,57,50,93,44,91,45,54,54,46,48,50,49,55,52,55,44,49,56,46,51,48,53,48,51,52,93,44,91,45,54,54,46,48,52,49,53,51,53,44,49,56,46,51,49,50,51,52,52,93,44,91,45,54,54,46,48,54,54,49,48,51,44,49,56,46,51,48,51,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,109,117,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,57,48,50,48,56,54,44,49,56,46,53,51,53,50,51,56,93,44,91,45,54,54,46,56,57,56,57,44,49,56,46,51,54,54,49,48,56,93,44,91,45,54,54,46,56,57,51,51,51,57,44,49,56,46,51,54,55,48,56,57,93,44,91,45,54,54,46,56,50,52,50,50,51,44,49,56,46,51,52,50,57,57,56,93,44,91,45,54,54,46,56,51,54,54,57,51,44,49,56,46,53,52,48,50,48,54,93,44,91,45,54,54,46,57,48,50,48,56,54,44,49,56,46,53,51,53,50,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,56,48,56,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,49,57,57,55,57,44,51,51,46,56,49,49,51,51,93,44,91,45,56,56,46,57,51,49,49,55,54,44,51,51,46,56,49,50,51,55,52,93,44,91,45,56,57,46,48,51,52,52,57,56,44,51,51,46,55,51,57,52,51,93,44,91,45,56,57,46,48,49,56,54,49,51,44,51,51,46,53,54,50,49,49,52,93,44,91,45,56,56,46,54,55,49,53,50,54,44,51,51,46,53,54,53,49,51,53,93,44,91,45,56,56,46,54,55,49,50,53,44,51,51,46,53,48,54,49,54,56,93,44,91,45,56,56,46,52,57,50,53,48,52,44,51,51,46,53,52,51,49,53,52,93,44,91,45,56,56,46,53,49,51,57,49,55,44,51,51,46,54,53,48,50,48,57,93,44,91,45,56,56,46,55,49,57,54,50,54,44,51,51,46,54,56,48,50,53,51,93,44,91,45,56,56,46,55,49,57,57,55,57,44,51,51,46,56,49,49,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,53,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,51,55,51,51,44,51,49,46,54,49,49,49,50,52,93,44,91,45,57,49,46,49,53,51,56,54,52,44,51,49,46,54,49,48,48,54,56,93,44,91,45,57,49,46,49,53,56,49,53,44,51,49,46,51,52,54,54,57,53,93,44,91,45,57,49,46,48,57,53,51,57,56,44,51,49,46,51,50,48,57,55,53,93,44,91,45,57,48,46,57,56,51,48,48,50,44,51,49,46,51,52,56,54,55,49,93,44,91,45,57,48,46,54,51,51,51,48,50,44,51,49,46,51,52,57,51,48,54,93,44,91,45,57,48,46,54,51,51,50,51,49,44,51,49,46,54,49,49,52,48,57,93,44,91,45,57,48,46,55,51,55,51,51,44,51,49,46,54,49,49,49,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,78,101,115,104,111,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,55,54,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,44,91,45,56,57,46,51,49,55,53,56,56,44,51,50,46,53,55,54,52,53,56,93,44,91,45,56,56,46,57,49,52,53,49,54,44,51,50,46,53,55,54,57,53,53,93,44,91,45,56,56,46,57,49,52,52,49,51,44,51,50,46,57,50,54,54,93,44,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,69,100,109,117,110,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,48,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,55,48,55,55,48,53,44,52,53,46,53,57,51,51,57,49,93,44,91,45,57,57,46,55,48,56,57,56,55,44,52,53,46,50,52,53,56,54,54,93,44,91,45,57,57,46,53,55,51,51,51,44,52,53,46,50,52,53,51,54,52,93,44,91,45,57,56,46,55,50,50,52,56,49,44,52,53,46,50,52,51,55,54,52,93,44,91,45,57,56,46,55,50,53,48,48,50,44,52,53,46,53,57,49,50,53,50,93,44,91,45,57,57,46,55,48,55,55,48,53,44,52,53,46,53,57,51,51,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,82,195,173,111,32,71,114,97,110,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,53,53,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,56,48,53,51,49,51,44,49,56,46,52,55,56,50,53,51,93,44,91,45,54,53,46,56,54,55,52,52,55,44,49,56,46,51,55,56,49,57,56,93,44,91,45,54,53,46,56,51,54,51,56,55,44,49,56,46,50,55,53,50,52,54,93,44,91,45,54,53,46,56,50,52,50,50,44,49,56,46,50,55,51,48,53,52,93,44,91,45,54,53,46,55,54,54,56,51,49,44,49,56,46,50,56,48,48,48,52,93,44,91,45,54,53,46,55,53,56,56,54,49,44,49,56,46,50,57,48,54,48,52,93,44,91,45,54,53,46,55,49,51,56,50,53,44,49,56,46,52,52,52,48,50,52,93,44,91,45,54,53,46,56,48,53,51,49,51,44,49,56,46,52,55,56,50,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,111,110,101,99,117,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,49,52,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,48,53,56,57,57,44,51,49,46,55,53,51,48,51,53,93,44,91,45,56,55,46,49,51,53,48,53,49,44,51,49,46,54,52,50,52,49,55,93,44,91,45,56,55,46,49,54,54,53,56,49,44,51,49,46,53,49,57,53,54,49,93,44,91,45,56,55,46,52,50,55,52,53,53,44,51,49,46,50,54,48,51,56,54,93,44,91,45,56,54,46,55,54,51,57,54,49,44,51,49,46,50,54,49,50,57,51,93,44,91,45,56,54,46,55,48,48,50,56,50,44,51,49,46,49,57,50,50,49,55,93,44,91,45,56,54,46,55,48,49,53,53,52,44,51,49,46,53,50,51,57,52,54,93,44,91,45,56,54,46,56,51,57,51,56,54,44,51,49,46,53,50,53,50,48,52,93,44,91,45,56,54,46,57,48,54,55,54,57,44,51,49,46,54,51,50,54,55,49,93,44,91,45,56,54,46,57,48,53,56,57,57,44,51,49,46,55,53,51,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,68,101,97,114,98,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,53,48,49,44,34,98,101,100,115,34,58,49,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,54,53,53,55,52,44,51,57,46,51,48,55,50,51,50,93,44,91,45,56,53,46,49,51,50,53,48,56,44,51,56,46,57,52,56,48,53,53,93,44,91,45,56,52,46,56,55,55,54,50,52,44,51,57,46,48,51,49,50,49,51,93,44,91,45,56,52,46,56,50,48,49,53,55,44,51,57,46,49,48,53,52,56,57,93,44,91,45,56,52,46,56,49,57,52,53,44,51,57,46,51,48,53,49,53,51,93,44,91,45,56,53,46,48,54,53,53,55,52,44,51,57,46,51,48,55,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,51,56,44,34,98,101,100,115,34,58,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,49,55,52,55,52,44,51,56,46,57,57,48,56,55,93,44,91,45,56,54,46,50,55,53,50,56,49,44,51,56,46,55,54,51,55,57,53,93,44,91,45,56,54,46,48,57,49,55,48,53,44,51,56,46,55,56,51,51,57,57,93,44,91,45,56,53,46,56,56,56,51,51,52,44,51,56,46,55,51,52,52,52,51,93,44,91,45,56,53,46,55,57,53,51,53,55,44,51,56,46,56,48,55,53,48,56,93,44,91,45,56,53,46,55,57,56,56,48,52,44,51,57,46,48,54,56,53,51,54,93,44,91,45,56,53,46,56,54,48,53,55,51,44,51,57,46,48,52,48,57,49,93,44,91,45,56,54,46,48,56,48,50,55,50,44,51,57,46,48,53,48,50,55,93,44,91,45,56,54,46,51,49,56,49,51,51,44,51,57,46,48,52,56,56,49,93,44,91,45,56,54,46,51,49,55,52,55,52,44,51,56,46,57,57,48,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,57,49,53,44,34,98,101,100,115,34,58,55,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,52,50,48,55,57,44,51,52,46,52,54,53,50,55,54,93,44,91,45,56,56,46,55,51,54,52,54,53,44,51,52,46,53,48,56,57,49,93,44,91,45,56,56,46,56,50,52,57,54,54,44,51,52,46,51,54,52,55,53,57,93,44,91,45,56,56,46,56,50,52,53,50,51,44,51,52,46,48,55,52,57,52,56,93,44,91,45,56,56,46,55,49,56,57,54,52,44,51,52,46,48,55,52,53,50,49,93,44,91,45,56,56,46,53,52,51,51,53,50,44,51,52,46,48,56,57,48,52,52,93,44,91,45,56,56,46,53,52,50,48,55,57,44,51,52,46,52,54,53,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,87,101,115,116,32,70,101,108,105,99,105,97,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,55,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,57,49,46,54,54,50,53,48,54,44,51,48,46,57,55,48,51,54,50,93,44,91,45,57,49,46,54,54,49,51,55,50,44,51,48,46,56,53,55,48,57,57,93,44,91,45,57,49,46,53,49,53,54,50,54,44,51,48,46,56,54,49,51,55,56,93,44,91,45,57,49,46,53,53,51,48,49,57,44,51,48,46,55,51,48,55,57,56,93,44,91,45,57,49,46,51,56,48,54,50,44,51,48,46,55,53,56,56,48,52,93,44,91,45,57,49,46,51,51,48,56,55,44,51,48,46,54,53,56,54,55,55,93,44,91,45,57,49,46,51,49,48,48,54,49,44,51,48,46,54,53,51,57,54,49,93,44,91,45,57,49,46,50,52,48,52,57,52,44,51,48,46,55,56,55,49,54,51,93,44,91,45,57,49,46,49,55,54,49,52,44,51,48,46,57,57,57,48,56,93,44,91,45,57,49,46,54,51,54,57,52,50,44,51,48,46,57,57,57,52,49,54,93,44,91,45,57,49,46,54,54,50,53,48,54,44,51,48,46,57,55,48,51,54,50,93,93,93,44,91,91,91,45,57,49,46,55,50,51,56,48,52,44,51,49,46,48,52,52,50,53,52,93,44,91,45,57,49,46,55,53,48,49,49,57,44,51,49,46,48,49,56,56,49,52,93,44,91,45,57,49,46,54,53,56,51,50,49,44,51,48,46,57,57,52,51,54,53,93,44,91,45,57,49,46,55,50,51,56,48,52,44,51,49,46,48,52,52,50,53,52,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,114,105,116,116,101,110,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,49,51,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,48,50,52,50,57,44,51,53,46,52,52,49,55,50,54,93,44,91,45,57,48,46,53,48,50,57,57,51,44,51,53,46,49,52,52,50,49,52,93,44,91,45,57,48,46,52,48,48,52,51,56,44,51,53,46,49,52,56,50,51,49,93,44,91,45,57,48,46,52,48,56,53,52,44,51,52,46,57,48,52,49,50,49,93,44,91,45,57,48,46,52,48,55,57,57,49,44,51,52,46,56,51,50,57,55,93,44,91,45,57,48,46,51,48,52,53,51,50,44,51,52,46,56,54,48,53,56,56,93,44,91,45,57,48,46,50,52,54,49,49,54,44,51,52,46,57,52,52,51,49,54,93,44,91,45,57,48,46,51,48,57,50,56,57,44,51,52,46,57,57,53,54,57,52,93,44,91,45,57,48,46,50,48,57,51,57,55,44,51,53,46,48,50,54,53,52,54,93,44,91,45,57,48,46,49,55,51,54,48,51,44,51,53,46,49,49,56,48,55,51,93,44,91,45,57,48,46,48,54,54,53,57,49,44,51,53,46,49,51,53,57,57,93,44,91,45,57,48,46,49,53,50,48,57,52,44,51,53,46,50,53,53,57,56,57,93,44,91,45,57,48,46,48,55,52,57,57,50,44,51,53,46,51,56,52,49,53,50,93,44,91,45,57,48,46,49,52,48,50,53,55,44,51,53,46,52,51,54,54,51,54,93,44,91,45,57,48,46,50,56,54,56,57,57,44,51,53,46,52,51,56,53,55,51,93,44,91,45,57,48,46,53,48,50,52,50,57,44,51,53,46,52,52,49,55,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,55,50,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,48,50,52,57,57,44,51,49,46,48,48,48,54,56,53,93,44,91,45,56,53,46,52,56,56,50,57,56,44,51,48,46,57,57,55,48,54,52,93,44,91,45,56,53,46,52,57,55,57,57,50,44,51,48,46,57,57,54,57,51,49,93,44,91,45,56,53,46,53,57,57,57,51,52,44,51,48,46,56,51,48,53,53,50,93,44,91,45,56,53,46,52,51,50,50,55,52,44,51,48,46,55,56,53,52,53,55,93,44,91,45,56,53,46,52,51,52,55,56,50,44,51,48,46,53,54,55,53,54,93,44,91,45,56,53,46,51,56,51,57,52,56,44,51,48,46,53,54,54,56,53,54,93,44,91,45,56,53,46,49,55,49,56,57,49,44,51,48,46,53,54,52,51,51,54,93,44,91,45,56,53,46,49,54,52,55,52,52,44,51,48,46,54,48,56,48,55,57,93,44,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,44,91,45,56,52,46,56,54,52,54,57,51,44,51,48,46,55,49,49,53,52,50,93,44,91,45,56,52,46,57,49,49,49,50,50,44,51,48,46,55,53,49,49,57,49,93,44,91,45,56,53,46,48,48,50,52,57,57,44,51,49,46,48,48,48,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,68,105,99,107,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,44,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,44,91,45,49,48,48,46,53,49,55,52,52,57,44,51,51,46,51,57,55,56,54,54,93,44,91,45,49,48,48,46,53,49,56,54,57,49,44,51,51,46,56,51,53,54,53,93,44,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,97,116,104,101,119,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,51,55,53,54,49,44,51,55,46,53,49,52,51,54,93,44,91,45,55,54,46,52,52,52,55,51,54,44,51,55,46,52,49,56,53,51,57,93,44,91,45,55,54,46,51,48,52,53,44,51,55,46,50,55,56,51,54,49,93,44,91,45,55,54,46,49,51,54,51,48,49,44,51,55,46,50,56,50,49,51,55,93,44,91,45,55,54,46,49,52,48,56,51,53,44,51,55,46,53,52,50,50,50,93,44,91,45,55,54,46,52,51,55,53,54,49,44,51,55,46,53,49,52,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,82,101,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,50,49,54,52,51,44,52,56,46,56,48,55,49,48,56,93,44,91,45,49,48,50,46,48,50,49,52,50,56,44,52,56,46,55,50,48,50,56,51,93,44,91,45,49,48,49,46,56,52,50,50,52,52,44,52,56,46,55,50,48,48,54,52,93,44,91,45,49,48,49,46,56,52,50,56,52,49,44,52,56,46,52,53,57,52,51,57,93,44,91,45,49,48,49,46,48,53,57,56,51,51,44,52,56,46,52,53,56,52,52,56,93,44,91,45,49,48,49,46,48,53,57,54,54,51,44,52,56,46,53,52,53,52,49,57,93,44,91,45,49,48,49,46,52,53,49,50,55,53,44,52,56,46,53,52,54,48,55,57,93,44,91,45,49,48,49,46,52,57,54,54,56,52,44,52,56,46,55,50,48,48,55,56,93,44,91,45,49,48,49,46,52,57,54,53,53,50,44,52,56,46,57,57,57,52,50,49,93,44,91,45,49,48,50,46,48,50,49,49,52,52,44,52,56,46,57,57,57,48,49,53,93,44,91,45,49,48,50,46,48,50,49,54,52,51,44,52,56,46,56,48,55,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,51,34,44,34,78,65,77,69,34,58,34,76,97,32,83,97,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,57,52,49,55,55,44,50,56,46,50,48,52,54,50,55,93,44,91,45,57,57,46,51,56,56,57,52,54,44,50,56,46,48,51,48,52,49,57,93,44,91,45,57,56,46,56,48,51,51,50,53,44,50,56,46,48,53,55,52,56,93,44,91,45,57,56,46,56,48,48,56,52,56,44,50,56,46,54,52,55,51,48,54,93,44,91,45,57,56,46,56,48,48,56,52,49,44,50,56,46,54,52,55,52,56,55,93,44,91,45,57,57,46,51,57,53,55,51,54,44,50,56,46,54,52,48,55,56,52,93,44,91,45,57,57,46,51,57,52,49,55,55,44,50,56,46,50,48,52,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,79,110,111,110,100,97,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,52,50,52,50,44,34,98,101,100,115,34,58,49,56,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,55,57,50,50,52,44,52,51,46,50,50,55,53,49,57,93,44,91,45,55,54,46,52,53,48,55,51,56,44,52,50,46,56,52,53,55,54,93,44,91,45,55,54,46,51,53,54,57,55,52,44,52,50,46,56,52,57,52,53,93,44,91,45,55,54,46,50,55,52,54,55,51,44,52,50,46,55,55,49,50,53,55,93,44,91,45,55,53,46,56,57,54,48,55,57,44,52,50,46,55,57,48,57,54,52,93,44,91,45,55,53,46,57,49,55,49,56,57,44,52,51,46,48,56,53,55,55,57,93,44,91,45,55,53,46,57,57,51,51,57,52,44,52,51,46,49,56,51,51,55,54,93,44,91,45,55,54,46,49,54,57,48,52,55,44,52,51,46,50,52,54,54,54,56,93,44,91,45,55,54,46,52,55,57,50,50,52,44,52,51,46,50,50,55,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,50,54,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,49,54,48,52,50,44,52,49,46,49,54,50,56,48,56,93,44,91,45,57,49,46,55,49,56,49,56,44,52,48,46,57,48,49,48,56,55,93,44,91,45,57,49,46,55,49,56,55,56,55,44,52,48,46,56,49,51,53,52,52,93,44,91,45,57,49,46,52,48,57,52,53,51,44,52,48,46,56,49,50,57,48,53,93,44,91,45,57,49,46,51,55,48,55,49,44,52,49,46,48,55,52,49,49,50,93,44,91,45,57,49,46,52,56,53,55,49,55,44,52,49,46,49,54,50,52,48,53,93,44,91,45,57,49,46,55,49,54,48,52,50,44,52,49,46,49,54,50,56,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,97,114,108,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,51,56,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,44,91,45,57,57,46,54,51,48,52,53,57,44,52,48,46,51,53,49,49,50,93,44,91,45,57,57,46,54,50,56,50,53,52,44,52,48,46,48,48,49,56,52,55,93,44,91,45,57,57,46,54,50,53,51,50,52,44,52,48,46,48,48,49,56,53,57,93,44,91,45,57,57,46,49,55,57,49,51,52,44,52,48,46,48,48,50,48,49,51,93,44,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,80,111,119,100,101,114,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,56,49,57,52,44,52,53,46,55,56,54,57,56,50,93,44,91,45,49,48,54,46,49,57,49,55,51,52,44,52,53,46,55,56,56,54,93,44,91,45,49,48,54,46,50,51,52,53,48,50,44,52,53,46,55,56,56,53,55,56,93,44,91,45,49,48,54,46,50,51,53,55,49,54,44,52,53,46,51,53,49,55,57,54,93,44,91,45,49,48,54,46,50,55,57,55,48,57,44,52,53,46,49,55,57,55,50,56,93,44,91,45,49,48,54,46,50,54,51,55,49,53,44,52,52,46,57,57,51,56,49,54,93,44,91,45,49,48,54,46,48,50,52,56,49,53,44,52,52,46,57,57,51,52,57,53,93,44,91,45,49,48,53,46,48,55,54,54,48,49,44,52,52,46,57,57,57,57,50,54,93,44,91,45,49,48,53,46,48,51,56,50,52,57,44,52,53,46,48,48,48,49,48,54,93,44,91,45,49,48,53,46,48,51,56,50,48,53,44,52,53,46,51,53,50,48,51,53,93,44,91,45,49,48,52,46,57,56,55,51,49,56,44,52,53,46,51,53,50,48,52,93,44,91,45,49,48,52,46,57,56,49,57,52,44,52,53,46,55,56,54,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,74,117,97,110,97,32,68,195,173,97,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,57,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,53,50,55,54,54,44,49,56,46,49,53,50,48,53,55,93,44,91,45,54,54,46,53,52,57,55,48,55,44,49,55,46,57,52,49,57,51,56,93,44,91,45,54,54,46,52,57,57,54,49,51,44,49,55,46,56,52,49,53,53,56,93,44,91,45,54,54,46,52,50,52,53,55,53,44,49,55,46,56,56,49,57,51,56,93,44,91,45,54,54,46,52,50,54,57,56,57,44,49,56,46,48,52,50,54,50,55,93,44,91,45,54,54,46,52,51,48,51,49,52,44,49,56,46,48,56,50,48,53,51,93,44,91,45,54,54,46,53,50,49,56,57,57,44,49,56,46,49,53,49,57,53,52,93,44,91,45,54,54,46,53,52,55,50,50,44,49,56,46,49,53,51,49,51,93,44,91,45,54,54,46,53,53,50,55,54,54,44,49,56,46,49,53,50,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,80,101,112,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,54,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,53,48,51,54,49,44,52,52,46,54,56,51,54,51,51,93,44,91,45,57,50,46,49,51,53,50,48,50,44,52,52,46,54,56,52,51,55,52,93,44,91,45,57,50,46,49,51,53,51,44,52,52,46,53,51,57,53,56,93,44,91,45,57,50,46,51,49,54,49,54,57,44,52,52,46,53,52,49,48,48,57,93,44,91,45,57,50,46,50,52,50,48,49,44,52,52,46,52,53,52,50,53,52,93,44,91,45,57,50,46,48,56,51,53,55,50,44,52,52,46,52,48,55,51,51,54,93,44,91,45,57,50,46,48,50,57,49,56,44,52,52,46,53,56,54,50,57,50,93,44,91,45,57,49,46,54,53,48,50,52,56,44,52,52,46,53,57,54,54,52,57,93,44,91,45,57,49,46,54,53,48,51,54,49,44,52,52,46,54,56,51,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,112,97,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,53,50,50,44,34,98,101,100,115,34,58,49,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,48,48,48,54,56,56,44,51,54,46,57,57,56,51,52,57,93,44,91,45,49,49,48,46,48,48,48,54,55,54,44,51,54,46,52,52,53,50,56,52,93,44,91,45,49,49,48,46,48,48,48,54,55,52,44,51,53,46,54,54,51,48,56,55,93,44,91,45,49,48,57,46,56,50,54,57,54,52,44,51,53,46,54,54,50,56,56,55,93,44,91,45,49,48,57,46,56,52,51,55,54,52,44,51,53,46,53,49,55,56,55,53,93,44,91,45,49,48,57,46,56,52,52,54,50,52,44,51,52,46,56,50,50,53,54,50,93,44,91,45,49,48,57,46,56,54,52,57,56,57,44,51,52,46,53,54,54,56,57,51,93,44,91,45,49,48,57,46,56,52,56,50,52,54,44,51,52,46,52,55,51,52,48,49,93,44,91,45,49,48,57,46,56,53,57,50,55,52,44,51,51,46,55,55,55,54,56,51,93,44,91,45,49,48,57,46,56,57,49,54,55,54,44,51,51,46,53,54,55,56,55,52,93,44,91,45,49,48,57,46,55,57,57,55,56,50,44,51,51,46,52,56,56,51,49,52,93,44,91,45,49,48,57,46,52,57,53,52,52,44,51,51,46,54,53,50,54,57,55,93,44,91,45,49,48,57,46,51,52,56,53,56,49,44,51,51,46,55,55,56,49,50,51,93,44,91,45,49,48,57,46,48,52,54,55,49,55,44,51,51,46,55,55,55,52,48,55,93,44,91,45,49,48,57,46,48,52,54,49,50,50,44,51,52,46,53,55,57,50,57,49,93,44,91,45,49,48,57,46,48,52,53,57,57,54,44,51,52,46,57,53,57,56,49,57,93,44,91,45,49,48,57,46,48,52,54,48,54,55,44,51,54,46,48,48,50,55,48,49,93,44,91,45,49,48,57,46,48,52,53,49,55,50,44,51,54,46,57,57,56,57,55,55,93,44,91,45,49,49,48,46,48,48,48,54,56,56,44,51,54,46,57,57,56,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,53,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,52,55,52,55,55,44,52,48,46,48,51,55,51,48,49,93,44,91,45,57,50,46,56,53,55,57,50,44,51,57,46,54,57,57,57,56,53,93,44,91,45,57,50,46,54,56,57,51,51,49,44,51,57,46,54,57,56,48,57,52,93,44,91,45,57,50,46,54,57,50,49,52,57,44,51,57,46,54,49,48,50,54,53,93,44,91,45,57,50,46,51,48,48,56,55,49,44,51,57,46,54,48,53,51,52,56,93,44,91,45,57,50,46,50,57,57,51,49,54,44,51,57,46,54,48,53,51,52,52,93,44,91,45,57,50,46,50,56,55,56,56,50,44,51,57,46,57,53,50,52,57,93,44,91,45,57,50,46,51,52,53,48,54,52,44,52,48,46,48,51,55,50,49,93,44,91,45,57,50,46,56,52,55,52,55,55,44,52,48,46,48,51,55,51,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,57,34,44,34,78,65,77,69,34,58,34,76,97,109,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,54,50,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,49,53,49,53,44,51,52,46,51,49,50,56,57,49,93,44,91,45,49,48,50,46,54,49,53,52,52,55,44,51,51,46,56,50,53,49,50,49,93,44,91,45,49,48,50,46,48,56,53,55,51,51,44,51,51,46,56,50,52,54,55,53,93,44,91,45,49,48,50,46,48,57,48,52,49,53,44,51,52,46,51,49,51,49,51,50,93,44,91,45,49,48,50,46,53,50,53,54,51,49,44,51,52,46,51,49,51,48,51,52,93,44,91,45,49,48,50,46,54,49,53,49,53,44,51,52,46,51,49,50,56,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,75,105,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,54,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,53,57,53,56,44,51,55,46,55,51,52,56,56,56,93,44,91,45,57,57,46,53,53,54,49,49,57,44,51,55,46,52,54,55,55,50,50,93,44,91,45,57,57,46,53,52,51,49,56,57,44,51,55,46,51,56,49,49,50,52,93,44,91,45,57,57,46,48,49,49,52,57,57,44,51,55,46,51,56,52,50,54,51,93,44,91,45,57,57,46,48,49,50,53,57,56,44,51,55,46,52,55,48,52,50,49,93,44,91,45,57,57,46,48,49,51,53,53,44,51,55,46,55,51,50,57,55,93,44,91,45,57,57,46,53,53,57,53,56,44,51,55,46,55,51,52,56,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,65,117,115,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,53,54,53,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,54,57,56,52,52,44,50,57,46,57,54,49,53,49,54,93,44,91,45,57,54,46,52,49,51,50,56,51,44,50,57,46,56,50,52,57,56,53,93,44,91,45,57,54,46,51,51,48,56,54,57,44,50,57,46,56,49,52,52,52,57,93,44,91,45,57,54,46,50,53,54,54,57,54,44,50,57,46,54,54,55,48,54,49,93,44,91,45,57,54,46,49,55,53,52,50,50,44,50,57,46,54,51,51,56,48,54,93,44,91,45,57,54,46,48,56,56,57,49,50,44,50,57,46,54,48,49,54,53,56,93,44,91,45,57,54,46,48,51,50,55,49,49,44,50,57,46,55,50,55,57,52,52,93,44,91,45,57,54,46,49,48,50,52,57,54,44,50,57,46,56,48,57,54,54,53,93,44,91,45,57,54,46,49,51,49,54,53,44,50,57,46,57,51,55,53,48,52,93,44,91,45,57,54,46,48,56,52,53,52,49,44,51,48,46,48,48,53,49,51,55,93,44,91,45,57,54,46,49,52,54,48,53,50,44,51,48,46,48,55,48,50,50,52,93,44,91,45,57,54,46,50,57,50,56,52,57,44,51,48,46,48,57,54,49,53,93,44,91,45,57,54,46,54,50,49,57,56,44,51,48,46,48,52,52,50,56,51,93,44,91,45,57,54,46,53,54,57,56,52,52,44,50,57,46,57,54,49,53,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,68,97,118,105,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,49,56,56,44,52,48,46,48,51,52,56,56,53,93,44,91,45,57,52,46,50,48,53,56,52,52,44,51,57,46,55,56,56,57,53,52,93,44,91,45,57,51,46,55,53,56,57,57,50,44,51,57,46,55,56,52,54,55,52,93,44,91,45,57,51,46,55,54,49,57,55,51,44,51,57,46,57,53,57,53,53,50,93,44,91,45,57,51,46,55,54,52,48,50,49,44,52,48,46,49,51,50,57,48,57,93,44,91,45,57,52,46,50,49,54,54,57,54,44,52,48,46,49,51,54,54,50,54,93,44,91,45,57,52,46,50,49,56,56,44,52,48,46,48,51,52,56,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,51,34,44,34,78,65,77,69,34,58,34,83,101,109,105,110,111,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,51,55,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,51,48,56,53,53,44,51,49,46,48,54,57,49,57,93,44,91,45,56,52,46,57,50,50,52,50,51,44,51,49,46,48,55,50,53,57,93,44,91,45,56,53,46,48,50,56,53,54,52,44,51,49,46,48,55,53,53,50,51,93,44,91,45,56,53,46,48,48,50,52,57,57,44,51,49,46,48,48,48,54,56,53,93,44,91,45,56,52,46,57,49,49,49,50,50,44,51,48,46,55,53,49,49,57,49,93,44,91,45,56,52,46,56,54,52,54,57,51,44,51,48,46,55,49,49,53,52,50,93,44,91,45,56,52,46,56,54,51,52,54,53,44,51,48,46,55,49,49,52,57,52,93,44,91,45,56,52,46,55,53,53,57,49,55,44,51,48,46,56,56,53,50,55,93,44,91,45,56,52,46,55,51,48,56,53,53,44,51,49,46,48,54,57,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,97,110,105,115,116,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,52,52,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,44,91,45,56,54,46,56,52,54,57,50,56,44,52,52,46,53,49,57,52,50,57,93,44,91,45,56,54,46,57,50,51,52,48,51,44,52,52,46,51,50,56,56,50,53,93,44,91,45,56,54,46,57,56,55,57,57,56,44,52,52,46,49,56,50,54,52,57,93,44,91,45,56,54,46,48,52,51,53,48,55,44,52,52,46,49,54,55,48,56,56,93,44,91,45,56,53,46,56,50,49,49,56,54,44,52,52,46,49,54,52,49,57,55,93,44,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,76,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,54,57,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,53,51,49,54,50,44,52,51,46,53,48,48,49,53,53,93,44,91,45,57,54,46,52,53,51,50,54,44,52,51,46,53,48,48,51,57,93,44,91,45,57,54,46,53,57,57,49,57,49,44,52,51,46,53,48,48,52,53,54,93,44,91,45,57,54,46,53,50,49,55,50,44,52,51,46,51,56,54,55,53,53,93,44,91,45,57,54,46,53,53,52,57,54,57,44,52,51,46,50,53,57,57,53,49,93,44,91,45,57,53,46,56,54,49,57,49,52,44,52,51,46,50,53,55,53,54,54,93,44,91,45,57,53,46,56,54,48,57,52,55,44,52,51,46,53,48,48,48,51,54,93,44,91,45,57,54,46,48,53,51,49,54,50,44,52,51,46,53,48,48,49,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,51,34,44,34,78,65,77,69,34,58,34,72,117,116,99,104,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,55,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,44,91,45,49,48,49,46,54,50,50,56,51,49,44,51,53,46,54,50,52,48,53,55,93,44,91,45,49,48,49,46,48,56,54,48,54,56,44,51,53,46,54,50,53,50,54,55,93,44,91,45,49,48,49,46,48,56,53,55,51,53,44,51,54,46,48,53,53,50,55,54,93,44,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,50,49,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,54,54,52,53,49,44,51,54,46,57,57,55,57,50,50,93,44,91,45,49,48,49,46,53,53,53,50,53,57,44,51,54,46,57,57,53,51,50,52,93,44,91,45,49,48,50,46,48,50,56,50,48,52,44,51,54,46,57,57,51,49,48,50,93,44,91,45,49,48,50,46,48,51,50,51,51,56,44,51,54,46,53,48,48,53,55,53,93,44,91,45,49,48,49,46,54,50,51,57,49,53,44,51,54,46,52,57,57,53,50,56,93,44,91,45,49,48,49,46,48,56,53,49,53,54,44,51,54,46,52,57,57,50,52,52,93,44,91,45,49,48,48,46,57,53,52,49,53,51,44,51,54,46,52,57,57,57,49,54,93,44,91,45,49,48,48,46,57,52,53,52,54,51,44,51,54,46,57,57,56,52,49,54,93,44,91,45,49,48,49,46,48,54,54,52,53,49,44,51,54,46,57,57,55,57,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,87,111,111,100,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,54,55,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,57,53,49,56,54,44,51,54,46,56,49,57,53,54,54,93,44,91,45,57,57,46,50,57,53,49,57,51,44,51,54,46,53,57,53,48,51,49,93,44,91,45,57,57,46,54,48,53,54,51,52,44,51,54,46,53,57,50,55,53,52,93,44,91,45,57,57,46,53,57,54,48,55,57,44,51,54,46,49,54,52,48,54,49,93,44,91,45,57,57,46,51,56,50,48,55,52,44,51,54,46,49,54,52,51,48,49,93,44,91,45,57,56,46,57,53,53,56,52,57,44,51,54,46,49,54,49,53,55,55,93,44,91,45,57,56,46,57,54,48,51,51,52,44,51,54,46,53,48,54,57,49,52,93,44,91,45,57,56,46,57,53,57,57,55,51,44,51,54,46,53,57,56,57,57,49,93,44,91,45,57,57,46,49,51,57,56,53,53,44,51,54,46,55,56,51,48,52,93,44,91,45,57,57,46,50,57,53,49,56,54,44,51,54,46,56,49,57,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,54,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,50,55,53,56,55,44,52,49,46,49,53,56,53,48,56,93,44,91,45,57,52,46,57,50,56,52,53,57,44,52,48,46,57,48,48,54,53,51,93,44,91,45,57,52,46,52,55,48,55,55,57,44,52,48,46,56,57,57,53,48,50,93,44,91,45,57,52,46,52,55,48,54,48,51,44,52,49,46,49,53,55,53,54,54,93,44,91,45,57,52,46,55,48,48,53,56,57,44,52,49,46,49,53,56,48,56,53,93,44,91,45,57,52,46,57,50,55,53,56,55,44,52,49,46,49,53,56,53,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,83,117,116,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,56,55,50,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,57,48,56,50,54,57,44,51,57,46,51,48,51,56,55,56,93,44,91,45,49,50,49,46,57,52,53,53,49,52,44,51,57,46,49,55,57,56,52,51,93,44,91,45,49,50,49,46,56,49,57,49,52,50,44,51,56,46,57,56,56,53,53,49,93,44,91,45,49,50,49,46,56,51,53,52,56,56,44,51,56,46,57,50,52,52,56,49,93,44,91,45,49,50,49,46,55,50,51,51,52,54,44,51,56,46,56,48,51,55,53,57,93,44,91,45,49,50,49,46,54,48,50,56,57,52,44,51,56,46,55,51,53,56,51,56,93,44,91,45,49,50,49,46,52,56,52,51,57,54,44,51,56,46,55,51,52,53,57,56,93,44,91,45,49,50,49,46,52,54,57,51,53,54,44,51,56,46,57,50,53,57,57,50,93,44,91,45,49,50,49,46,52,49,52,55,55,57,44,51,56,46,57,57,54,52,53,50,93,44,91,45,49,50,49,46,53,52,51,51,48,54,44,51,56,46,57,55,50,52,48,52,93,44,91,45,49,50,49,46,54,50,57,48,56,57,44,51,57,46,50,48,52,54,55,56,93,44,91,45,49,50,49,46,54,50,51,55,54,44,51,57,46,50,57,53,54,50,49,93,44,91,45,49,50,49,46,57,48,56,50,54,57,44,51,57,46,51,48,51,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,80,111,116,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,51,55,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,48,54,54,48,52,44,52,49,46,57,57,57,53,57,53,93,44,91,45,55,56,46,50,48,51,52,50,50,44,52,49,46,54,49,56,49,53,55,93,44,91,45,55,56,46,48,53,48,52,52,50,44,52,49,46,52,55,53,52,54,50,93,44,91,45,55,55,46,57,56,57,49,57,52,44,52,49,46,52,55,52,56,50,50,93,44,91,45,55,55,46,53,57,56,49,50,57,44,52,49,46,52,55,56,53,55,54,93,44,91,45,55,55,46,53,57,57,50,55,56,44,52,49,46,53,52,50,50,55,49,93,44,91,45,55,55,46,54,49,48,48,50,55,44,52,49,46,57,57,57,51,54,56,93,44,91,45,55,55,46,55,52,57,57,51,49,44,52,49,46,57,57,56,55,56,50,93,44,91,45,55,56,46,50,48,54,54,48,52,44,52,49,46,57,57,57,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,54,53,34,44,34,78,65,77,69,34,58,34,86,97,108,32,86,101,114,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,50,55,44,34,98,101,100,115,34,58,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,55,54,48,57,50,52,44,50,57,46,55,56,49,56,48,50,93,44,91,45,49,48,49,46,54,52,54,57,51,54,44,50,57,46,55,53,52,53,54,53,93,44,91,45,49,48,49,46,52,53,53,55,57,57,44,50,57,46,55,56,56,48,52,57,93,44,91,45,49,48,49,46,51,48,48,48,50,55,44,50,57,46,54,52,48,55,48,50,93,44,91,45,49,48,49,46,50,54,49,49,55,54,44,50,57,46,53,51,54,55,55,54,93,44,91,45,49,48,49,46,48,54,48,49,53,49,44,50,57,46,52,53,56,54,54,49,93,44,91,45,49,48,49,46,48,48,51,57,53,51,44,50,57,46,51,54,52,55,48,51,93,44,91,45,49,48,48,46,55,57,52,54,50,55,44,50,57,46,50,52,49,54,49,50,93,44,91,45,49,48,48,46,55,52,53,51,48,56,44,50,57,46,50,54,52,56,57,56,93,44,91,45,49,48,48,46,54,57,57,49,52,49,44,50,57,46,52,49,57,55,52,55,93,44,91,45,49,48,48,46,54,57,57,57,51,50,44,50,57,46,54,50,51,56,57,55,93,44,91,45,49,48,48,46,55,48,48,51,57,51,44,51,48,46,50,56,56,50,55,54,93,44,91,45,49,48,48,46,57,54,48,54,52,51,44,51,48,46,50,56,55,55,55,54,93,44,91,45,49,48,49,46,55,53,56,52,44,51,48,46,50,56,56,48,52,52,93,44,91,45,49,48,49,46,55,54,48,57,50,52,44,50,57,46,55,56,49,56,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,72,97,114,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,52,57,56,48,52,44,51,55,46,51,56,52,48,53,54,93,44,91,45,57,56,46,51,52,55,49,52,57,44,51,54,46,57,57,56,49,53,53,93,44,91,45,57,56,46,49,49,49,57,56,53,44,51,54,46,57,57,56,48,57,51,93,44,91,45,57,55,46,56,48,50,51,49,51,44,51,54,46,57,57,56,55,49,56,93,44,91,45,57,55,46,56,48,55,48,53,55,44,51,55,46,51,56,54,50,57,51,93,44,91,45,57,56,46,51,52,57,56,48,52,44,51,55,46,51,56,52,48,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,77,111,110,111,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,57,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,53,54,53,54,44,52,50,46,50,49,53,48,48,50,93,44,91,45,57,54,46,50,55,51,49,50,44,52,50,46,48,52,55,49,53,56,93,44,91,45,57,54,46,49,50,57,49,56,54,44,52,49,46,57,54,53,49,51,54,93,44,91,45,57,54,46,49,51,57,48,48,56,44,52,49,46,56,54,54,50,55,55,93,44,91,45,57,53,46,54,55,50,55,55,49,44,52,49,46,56,54,51,49,52,55,93,44,91,45,57,53,46,54,55,48,56,50,50,44,52,50,46,50,49,49,52,48,56,93,44,91,45,57,54,46,51,53,54,53,54,44,52,50,46,50,49,53,48,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,74,117,97,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,52,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,48,52,55,54,52,57,44,51,57,46,53,52,50,55,52,50,93,44,91,45,49,49,51,46,56,49,53,55,52,51,44,51,57,46,53,53,50,54,52,52,93,44,91,45,49,49,51,46,49,48,55,52,55,53,44,51,57,46,53,53,50,53,49,51,93,44,91,45,49,49,50,46,50,49,50,48,52,53,44,51,57,46,53,53,51,57,56,55,93,44,91,45,49,49,50,46,49,56,56,57,50,50,44,51,57,46,51,50,57,51,57,50,93,44,91,45,49,49,50,46,48,49,54,48,48,51,44,51,57,46,51,49,52,53,54,49,93,44,91,45,49,49,49,46,57,50,50,51,56,57,44,51,57,46,51,56,49,53,57,49,93,44,91,45,49,49,49,46,55,52,55,48,52,52,44,51,57,46,51,56,50,55,53,93,44,91,45,49,49,49,46,55,49,51,50,50,52,44,51,57,46,52,54,48,50,57,52,93,44,91,45,49,49,49,46,55,49,55,52,56,50,44,51,57,46,54,57,52,53,54,93,44,91,45,49,49,49,46,53,56,52,55,53,52,44,51,57,46,55,52,48,49,52,49,93,44,91,45,49,49,49,46,54,52,49,57,52,52,44,51,57,46,56,49,50,56,54,57,93,44,91,45,49,49,49,46,56,50,55,49,48,54,44,51,57,46,57,52,55,48,48,50,93,44,91,45,49,49,50,46,48,51,49,56,51,53,44,51,57,46,55,56,49,49,55,50,93,44,91,45,49,49,50,46,48,54,50,53,53,50,44,51,57,46,57,48,52,54,56,93,44,91,45,49,49,50,46,49,55,57,56,44,52,48,46,48,49,49,54,53,54,93,44,91,45,49,49,50,46,51,52,49,57,56,56,44,51,57,46,57,48,52,52,53,56,93,44,91,45,49,49,51,46,50,52,56,52,57,56,44,51,57,46,57,48,52,55,49,52,93,44,91,45,49,49,52,46,48,52,55,48,50,54,44,51,57,46,57,48,54,48,57,55,93,44,91,45,49,49,52,46,48,52,55,54,52,57,44,51,57,46,53,52,50,55,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,83,116,101,112,104,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,56,51,44,34,98,101,100,115,34,58,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,49,52,50,49,52,56,44,51,52,46,53,48,54,57,57,52,93,44,91,45,57,56,46,49,51,57,50,50,55,44,51,52,46,50,56,57,56,50,52,93,44,91,45,57,55,46,53,54,50,53,49,50,44,51,52,46,50,56,57,49,56,51,93,44,91,45,57,55,46,53,54,50,51,50,51,44,51,52,46,53,48,55,48,51,54,93,44,91,45,57,55,46,53,54,51,48,48,52,44,51,52,46,54,56,49,49,56,53,93,44,91,45,57,55,46,54,54,56,53,49,50,44,51,52,46,54,56,49,51,52,93,44,91,45,57,56,46,48,56,57,48,57,55,44,51,52,46,54,56,49,49,54,51,93,44,91,45,57,56,46,49,52,50,49,52,56,44,51,52,46,53,48,54,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,101,110,97,110,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,51,52,56,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,56,57,56,51,50,44,52,50,46,55,50,51,56,52,52,93,44,91,45,55,53,46,56,54,52,48,50,44,52,50,46,52,49,53,55,48,50,93,44,91,45,55,53,46,56,52,51,55,57,50,44,52,50,46,50,53,57,55,48,55,93,44,91,45,55,53,46,54,51,56,50,57,57,44,52,50,46,50,52,56,54,56,54,93,44,91,45,55,53,46,54,51,55,49,49,44,52,50,46,49,57,53,54,50,56,93,44,91,45,55,53,46,52,49,56,52,50,49,44,52,50,46,49,57,53,48,51,50,93,44,91,45,55,53,46,52,49,53,51,49,57,44,52,50,46,51,49,52,49,53,49,93,44,91,45,55,53,46,52,48,52,52,54,52,44,52,50,46,52,55,57,49,49,55,93,44,91,45,55,53,46,51,51,50,57,52,57,44,52,50,46,53,54,54,51,49,50,93,44,91,45,55,53,46,50,57,53,56,55,55,44,52,50,46,55,52,52,49,48,54,93,44,91,45,55,53,46,56,56,57,56,51,50,44,52,50,46,55,50,51,56,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,80,101,111,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,52,54,51,44,34,98,101,100,115,34,58,49,50,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,56,53,52,55,57,44,52,48,46,57,55,52,52,57,53,93,44,91,45,56,57,46,57,56,54,48,54,52,44,52,48,46,55,49,50,51,54,49,93,44,91,45,56,57,46,56,55,51,54,56,44,52,48,46,54,50,52,57,55,53,93,44,91,45,56,57,46,56,55,50,52,54,51,44,52,48,46,53,49,51,49,50,55,93,44,91,45,56,57,46,54,53,56,48,48,51,44,52,48,46,53,54,55,52,51,56,93,44,91,45,56,57,46,53,53,52,57,57,52,44,52,48,46,55,52,55,54,51,55,93,44,91,45,56,57,46,52,55,50,51,51,44,52,48,46,57,50,49,50,48,54,93,44,91,45,56,57,46,54,51,56,55,50,55,44,52,48,46,57,55,51,55,48,55,93,44,91,45,56,57,46,57,56,53,52,55,57,44,52,48,46,57,55,52,52,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,117,109,98,111,108,100,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,54,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,44,91,45,57,52,46,52,52,51,48,56,51,44,52,50,46,54,52,53,49,54,52,93,44,91,45,57,51,46,57,55,49,55,49,52,44,52,50,46,54,52,52,55,48,55,93,44,91,45,57,51,46,57,55,49,50,51,56,44,52,50,46,57,48,55,55,54,50,93,44,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,49,57,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,52,52,55,56,53,44,52,49,46,54,56,51,54,51,51,93,44,91,45,57,54,46,52,52,51,56,57,56,44,52,49,46,53,50,51,57,51,51,93,44,91,45,57,54,46,51,50,57,48,49,50,44,52,49,46,51,57,51,49,51,54,93,44,91,45,57,53,46,57,51,55,55,57,49,44,52,49,46,51,57,48,55,53,50,93,44,91,45,57,53,46,57,57,54,49,57,52,44,52,49,46,53,48,54,57,54,93,44,91,45,57,54,46,48,53,55,51,51,49,44,52,49,46,53,49,49,48,53,49,93,44,91,45,57,54,46,49,50,50,54,48,52,44,52,49,46,54,56,51,48,52,93,44,91,45,57,54,46,52,52,52,55,56,53,44,52,49,46,54,56,51,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,54,50,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,57,51,56,49,52,44,52,51,46,49,54,52,52,54,52,93,44,91,45,57,48,46,52,50,57,56,50,53,44,52,51,46,50,48,48,57,52,93,44,91,45,57,48,46,52,50,54,57,48,50,44,52,50,46,56,49,50,56,54,50,93,44,91,45,56,57,46,56,51,56,52,49,44,52,50,46,56,49,51,55,57,57,93,44,91,45,56,57,46,56,51,56,49,54,55,44,52,50,46,56,53,55,51,57,55,93,44,91,45,56,57,46,56,51,56,49,51,53,44,52,51,46,50,48,54,48,53,55,93,44,91,45,57,48,46,49,57,51,56,49,52,44,52,51,46,49,54,52,52,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,111,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,52,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,53,51,52,54,50,44,52,54,46,51,52,56,54,55,56,93,44,91,45,57,52,46,54,52,51,57,57,44,52,53,46,55,55,51,57,53,93,44,91,45,57,52,46,50,55,49,55,55,54,44,52,53,46,55,55,53,50,48,56,93,44,91,45,57,52,46,51,53,51,49,49,50,44,52,53,46,56,50,49,57,54,55,93,44,91,45,57,51,46,55,54,51,57,52,56,44,52,53,46,56,50,50,49,52,51,93,44,91,45,57,51,46,56,49,48,51,50,49,44,52,53,46,57,56,51,48,56,93,44,91,45,57,51,46,56,49,48,51,54,50,44,52,54,46,49,53,54,53,56,53,93,44,91,45,57,52,46,51,55,52,53,57,50,44,52,54,46,49,53,55,48,57,51,93,44,91,45,57,52,46,51,52,49,54,55,57,44,52,54,46,50,55,55,55,48,53,93,44,91,45,57,52,46,54,53,51,52,54,50,44,52,54,46,51,52,56,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,104,101,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,53,53,54,49,44,34,98,101,100,115,34,58,55,50,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,49,52,56,54,56,50,44,52,48,46,54,55,52,50,56,49,93,44,91,45,56,48,46,49,56,48,52,50,52,44,52,48,46,54,48,55,55,54,57,93,44,91,45,56,48,46,51,54,48,56,55,51,44,52,48,46,52,55,55,53,51,57,93,44,91,45,56,48,46,49,56,51,52,55,50,44,52,48,46,51,51,50,55,56,50,93,44,91,45,55,57,46,57,49,52,49,51,57,44,52,48,46,50,53,50,53,49,56,93,44,91,45,55,57,46,56,55,48,53,56,53,44,52,48,46,49,57,55,52,49,53,93,44,91,45,55,57,46,55,56,49,55,54,49,44,52,48,46,50,50,55,55,49,49,93,44,91,45,55,57,46,55,55,49,48,56,50,44,52,48,46,51,55,53,52,49,57,93,44,91,45,55,57,46,55,48,52,55,51,57,44,52,48,46,52,50,55,50,51,49,93,44,91,45,55,57,46,55,54,53,52,49,53,44,52,48,46,53,52,57,56,53,52,93,44,91,45,55,57,46,54,57,50,53,56,55,44,52,48,46,54,54,57,55,51,50,93,44,91,45,55,57,46,54,57,50,57,51,44,52,48,46,54,54,57,55,52,52,93,44,91,45,56,48,46,49,52,56,54,56,50,44,52,48,46,54,55,52,50,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,53,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,56,55,56,56,50,44,51,57,46,57,53,50,52,57,93,44,91,45,57,50,46,50,57,57,51,49,54,44,51,57,46,54,48,53,51,52,52,93,44,91,45,57,50,46,49,56,52,57,56,54,44,51,57,46,54,54,50,57,51,50,93,44,91,45,57,49,46,56,52,54,55,52,51,44,51,57,46,54,53,56,53,49,51,93,44,91,45,57,49,46,56,52,48,51,53,51,44,51,57,46,57,52,56,50,51,53,93,44,91,45,57,49,46,57,53,50,55,50,54,44,51,57,46,57,52,57,52,50,54,93,44,91,45,57,50,46,50,56,55,56,56,50,44,51,57,46,57,53,50,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,56,56,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,49,54,49,53,53,44,52,48,46,48,49,48,49,56,56,93,44,91,45,56,51,46,53,56,56,48,52,49,44,51,57,46,55,54,56,55,55,56,93,44,91,45,56,51,46,54,52,55,49,54,57,44,51,57,46,55,55,51,48,50,57,93,44,91,45,56,51,46,54,53,51,51,51,44,51,57,46,55,49,54,56,55,54,93,44,91,45,56,51,46,50,53,50,52,51,53,44,51,57,46,54,57,53,52,51,56,93,44,91,45,56,51,46,50,52,51,55,48,50,44,51,57,46,56,49,50,53,48,51,93,44,91,45,56,51,46,50,53,51,56,51,44,52,48,46,48,52,57,50,49,56,93,44,91,45,56,51,46,50,48,54,50,55,51,44,52,48,46,49,48,55,55,51,51,93,44,91,45,56,51,46,53,48,51,55,49,52,44,52,48,46,49,49,49,52,54,56,93,44,91,45,56,51,46,53,49,54,49,53,53,44,52,48,46,48,49,48,49,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,50,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,57,49,57,57,44,52,48,46,48,48,49,57,54,54,93,44,91,45,57,55,46,51,54,56,54,55,44,51,57,46,54,53,52,48,52,51,93,44,91,45,57,55,46,51,54,56,53,55,52,44,51,57,46,53,54,55,48,49,56,93,44,91,45,57,54,46,57,53,56,55,49,57,44,51,57,46,53,54,54,52,48,49,93,44,91,45,57,54,46,56,48,54,53,52,52,44,51,57,46,53,54,54,52,50,51,93,44,91,45,57,54,46,56,48,53,55,54,56,44,52,48,46,48,48,49,52,57,53,93,44,91,45,57,54,46,57,49,54,52,48,55,44,52,48,46,48,48,49,53,49,49,93,44,91,45,57,55,46,51,54,57,49,57,57,44,52,48,46,48,48,49,57,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,104,97,109,112,97,105,103,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,52,52,56,44,34,98,101,100,115,34,58,54,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,54,48,52,49,56,44,52,48,46,50,56,49,57,51,53,93,44,91,45,56,56,46,52,54,50,50,48,55,44,51,57,46,56,55,57,48,57,50,93,44,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,44,91,45,56,55,46,57,51,50,51,56,55,44,52,48,46,51,57,57,52,93,44,91,45,56,56,46,52,53,57,57,53,55,44,52,48,46,51,57,56,56,53,93,44,91,45,56,56,46,52,54,48,52,49,56,44,52,48,46,50,56,49,57,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,56,57,57,55,49,49,44,52,52,46,56,52,48,54,48,57,93,44,91,45,49,49,55,46,48,52,52,50,49,55,44,52,52,46,55,52,53,49,52,93,44,91,45,49,49,55,46,49,52,52,49,54,49,44,52,52,46,53,52,53,54,52,55,93,44,91,45,49,49,55,46,50,50,52,49,48,52,44,52,52,46,52,56,51,55,51,52,93,44,91,45,49,49,55,46,50,50,48,48,52,56,44,52,52,46,51,48,49,52,48,52,93,44,91,45,49,49,55,46,49,49,57,56,54,49,44,52,52,46,50,55,56,50,55,50,93,44,91,45,49,49,54,46,56,57,55,55,57,44,52,52,46,49,53,50,53,57,93,44,91,45,49,49,54,46,52,53,50,48,54,56,44,52,52,46,49,53,49,52,54,53,93,44,91,45,49,49,54,46,51,53,56,52,57,50,44,52,52,46,49,53,49,49,53,56,93,44,91,45,49,49,54,46,50,57,57,56,55,54,44,52,52,46,52,52,52,53,55,54,93,44,91,45,49,49,54,46,53,50,56,56,57,56,44,52,52,46,52,57,49,53,52,53,93,44,91,45,49,49,54,46,53,50,57,49,54,55,44,52,52,46,54,49,53,49,53,52,93,44,91,45,49,49,54,46,54,50,52,49,53,51,44,52,52,46,54,54,51,50,54,57,93,44,91,45,49,49,54,46,54,50,53,48,51,52,44,52,52,46,56,51,56,57,53,50,93,44,91,45,49,49,54,46,56,57,57,55,49,49,44,52,52,46,56,52,48,54,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,69,100,103,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,44,91,45,56,55,46,57,54,54,51,52,55,44,51,57,46,54,56,53,57,55,51,93,44,91,45,56,55,46,57,54,48,49,55,57,44,51,57,46,52,56,49,51,48,57,93,44,91,45,56,55,46,53,51,49,54,52,44,51,57,46,52,55,55,49,48,53,93,44,91,45,56,55,46,53,51,50,49,57,52,44,51,57,46,54,48,55,51,48,54,93,44,91,45,56,55,46,53,51,51,50,50,56,44,51,57,46,56,56,51,93,44,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,52,54,53,51,55,55,44,52,48,46,52,51,54,51,52,54,93,44,91,45,49,48,51,46,52,55,49,57,57,44,52,48,46,48,48,49,53,48,50,93,44,91,45,49,48,51,46,55,48,53,55,48,49,44,52,48,46,48,48,49,51,54,54,93,44,91,45,49,48,51,46,55,48,54,53,52,55,44,51,57,46,55,51,57,56,57,52,93,44,91,45,49,48,51,46,55,48,55,48,55,50,44,51,57,46,53,54,54,50,57,53,93,44,91,45,49,48,51,46,49,53,52,51,55,54,44,51,57,46,53,54,53,54,53,52,93,44,91,45,49,48,50,46,56,48,50,57,51,50,44,51,57,46,53,54,55,56,52,49,93,44,91,45,49,48,50,46,55,57,51,53,56,50,44,52,48,46,51,53,49,50,56,49,93,44,91,45,49,48,50,46,55,55,57,57,54,44,52,48,46,52,51,56,52,52,54,93,44,91,45,49,48,51,46,52,54,53,51,55,55,44,52,48,46,52,51,54,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,48,49,57,52,44,52,48,46,54,52,52,54,57,93,44,91,45,56,51,46,56,56,48,48,51,57,44,52,48,46,53,51,56,54,57,52,93,44,91,45,56,51,46,53,50,48,50,50,55,44,52,48,46,53,48,52,48,55,55,93,44,91,45,56,51,46,52,49,56,54,55,44,52,48,46,53,48,53,50,50,57,93,44,91,45,56,51,46,52,49,57,56,51,54,44,52,48,46,54,56,54,56,50,51,93,44,91,45,56,51,46,52,57,53,55,57,56,44,52,48,46,55,48,49,53,49,53,93,44,91,45,56,51,46,53,49,53,56,56,51,44,52,48,46,56,49,56,49,51,52,93,44,91,45,56,51,46,56,56,48,48,54,51,44,52,48,46,56,49,57,57,49,57,93,44,91,45,56,51,46,56,56,48,49,57,52,44,52,48,46,54,52,52,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,105,115,115,97,117,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,51,52,44,52,52,46,53,49,50,51,48,51,93,44,91,45,56,53,46,51,51,52,55,55,55,44,52,52,46,49,54,53,49,49,56,93,44,91,45,56,53,46,48,56,55,52,48,51,44,52,52,46,49,54,52,50,52,50,93,44,91,45,56,52,46,56,53,49,55,48,53,44,52,52,46,49,54,49,51,55,53,93,44,91,45,56,52,46,56,53,48,57,50,57,44,52,52,46,53,49,49,48,54,57,93,44,91,45,56,53,46,51,51,52,44,52,52,46,53,49,50,51,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,83,116,117,116,115,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,48,54,52,44,34,98,101,100,115,34,58,49,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,56,49,48,57,53,44,52,55,46,51,50,55,48,50,55,93,44,91,45,57,57,46,52,56,49,48,50,44,52,54,46,57,56,48,51,54,57,93,44,91,45,57,57,46,52,52,53,56,57,49,44,52,54,46,57,56,48,49,56,57,93,44,91,45,57,57,46,52,52,57,55,50,44,52,54,46,54,51,49,54,51,93,44,91,45,57,57,46,48,51,54,54,50,53,44,52,54,46,54,51,48,50,49,49,93,44,91,45,57,56,46,52,51,57,48,53,54,44,52,54,46,54,51,49,49,50,93,44,91,45,57,56,46,52,51,57,55,51,52,44,52,54,46,57,55,57,54,51,49,93,44,91,45,57,56,46,52,54,55,48,54,54,44,52,55,46,50,52,48,52,48,52,93,44,91,45,57,56,46,52,57,57,50,52,54,44,52,55,46,51,50,54,53,51,56,93,44,91,45,57,57,46,50,54,54,50,49,53,44,52,55,46,51,50,54,57,57,57,93,44,91,45,57,57,46,52,56,49,48,57,53,44,52,55,46,51,50,55,48,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,51,34,44,34,78,65,77,69,34,58,34,83,104,97,110,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,49,49,56,54,51,44,51,55,46,52,49,53,50,55,55,93,44,91,45,57,49,46,54,52,54,54,50,54,44,51,55,46,52,50,50,55,51,49,93,44,91,45,57,49,46,54,53,53,54,48,55,44,51,55,46,48,52,56,57,50,53,93,44,91,45,57,49,46,54,53,56,49,49,49,44,51,54,46,56,56,56,55,50,52,93,44,91,45,57,49,46,50,50,50,56,51,44,51,54,46,56,56,51,56,53,55,93,44,91,45,57,49,46,50,49,55,49,53,44,51,55,46,48,56,54,49,57,55,93,44,91,45,57,49,46,48,49,55,55,54,54,44,51,55,46,48,57,53,54,55,55,93,44,91,45,57,49,46,49,50,54,48,50,56,44,51,55,46,49,57,57,52,56,93,44,91,45,57,49,46,50,49,49,56,54,51,44,51,55,46,52,49,53,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,50,51,34,44,34,78,65,77,69,34,58,34,83,109,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,48,49,53,44,34,98,101,100,115,34,58,49,55,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,52,57,49,54,53,44,51,50,46,51,53,53,50,51,51,93,44,91,45,57,53,46,52,56,56,44,51,50,46,50,51,53,52,56,52,93,44,91,45,57,53,46,52,53,57,57,48,56,44,51,50,46,49,51,53,53,53,57,93,44,91,45,57,52,46,57,56,53,50,55,50,44,51,50,46,49,51,55,57,56,57,93,44,91,45,57,52,46,57,56,53,52,49,49,44,51,50,46,51,55,48,56,50,93,44,91,45,57,52,46,57,56,54,57,51,53,44,51,50,46,53,51,55,50,52,54,93,44,91,45,57,53,46,49,53,51,52,49,44,51,50,46,53,55,48,49,49,53,93,44,91,45,57,53,46,53,49,48,57,52,53,44,51,50,46,54,50,48,51,50,56,93,44,91,45,57,53,46,53,57,52,53,52,49,44,51,50,46,54,56,55,48,50,54,93,44,91,45,57,53,46,53,57,52,51,44,51,50,46,52,55,57,56,53,56,93,44,91,45,57,53,46,52,52,57,49,54,53,44,51,50,46,51,53,53,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,84,117,108,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,50,55,56,49,44,34,98,101,100,115,34,58,52,52,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,48,49,49,55,49,44,51,54,46,52,50,51,54,56,54,93,44,91,45,57,54,46,48,48,49,50,50,54,44,51,54,46,49,54,49,50,57,54,93,44,91,45,57,54,46,50,54,56,50,56,55,44,51,54,46,49,54,49,57,56,93,44,91,45,57,54,46,50,57,55,56,56,56,44,51,54,46,49,54,50,50,55,57,93,44,91,45,57,54,46,50,57,55,57,48,53,44,51,54,46,48,55,53,55,54,54,93,44,91,45,57,54,46,48,50,57,53,56,51,44,51,54,46,48,55,53,51,54,54,93,44,91,45,57,54,46,48,51,51,49,49,56,44,51,53,46,56,53,54,56,50,52,93,44,91,45,57,53,46,56,49,57,52,53,57,44,51,53,46,56,53,54,50,53,53,93,44,91,45,57,53,46,55,54,49,55,48,50,44,51,53,46,57,48,49,49,52,55,93,44,91,45,57,53,46,55,54,49,54,53,44,51,54,46,49,54,50,55,53,93,44,91,45,57,53,46,56,49,53,52,44,51,54,46,49,54,50,54,51,93,44,91,45,57,53,46,56,49,50,51,52,50,44,51,54,46,52,50,51,53,56,93,44,91,45,57,54,46,48,48,49,49,55,49,44,51,54,46,52,50,51,54,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,99,73,110,116,111,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,56,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,49,50,57,53,51,44,51,53,46,53,53,49,55,51,56,93,44,91,45,57,53,46,56,50,50,51,54,49,44,51,53,46,53,53,49,54,57,51,93,44,91,45,57,53,46,56,55,53,52,48,53,44,51,53,46,51,55,54,54,57,93,44,91,45,57,53,46,57,56,49,52,54,53,44,51,53,46,51,55,54,55,56,56,93,44,91,45,57,53,46,57,56,49,53,49,49,44,51,53,46,50,56,57,55,56,93,44,91,45,57,53,46,57,56,51,48,55,55,44,51,53,46,49,53,49,54,57,53,93,44,91,45,57,53,46,55,49,54,49,53,55,44,51,53,46,49,56,57,51,53,50,93,44,91,45,57,53,46,52,53,49,50,53,44,51,53,46,50,57,54,48,49,57,93,44,91,45,57,53,46,51,52,52,55,54,54,44,51,53,46,50,57,51,48,51,53,93,44,91,45,57,53,46,51,52,52,55,57,57,44,51,53,46,53,53,49,55,53,49,93,44,91,45,57,53,46,55,49,50,57,53,51,44,51,53,46,53,53,49,55,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,57,53,34,44,34,78,65,77,69,34,58,34,82,111,98,101,114,116,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,50,57,49,50,49,44,51,49,46,49,48,53,56,55,49,93,44,91,45,57,54,46,55,53,54,51,51,44,51,48,46,57,50,55,50,48,54,93,44,91,45,57,54,46,54,52,49,50,56,44,51,48,46,56,49,56,48,53,49,93,44,91,45,57,54,46,54,50,49,50,56,49,44,51,48,46,55,51,48,56,49,57,93,44,91,45,57,54,46,53,54,54,57,56,51,44,51,48,46,54,57,53,54,55,93,44,91,45,57,54,46,52,53,55,54,51,44,51,48,46,55,52,52,52,55,52,93,44,91,45,57,54,46,51,51,56,48,48,49,44,51,48,46,57,50,48,53,51,49,93,44,91,45,57,54,46,50,52,49,48,50,44,51,48,46,57,55,51,55,51,55,93,44,91,45,57,54,46,51,50,55,54,51,44,51,49,46,50,56,52,56,55,54,93,44,91,45,57,54,46,51,49,57,49,54,53,44,51,49,46,51,53,55,49,50,57,93,44,91,45,57,54,46,53,57,54,56,54,50,44,51,49,46,50,50,48,57,93,44,91,45,57,54,46,56,50,57,49,50,49,44,51,49,46,49,48,53,56,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,71,105,108,108,101,115,112,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,48,56,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,57,49,54,55,44,51,48,46,52,57,57,56,55,53,93,44,91,45,57,56,46,57,54,52,50,51,50,44,51,48,46,52,57,56,52,56,50,93,44,91,45,57,57,46,51,48,51,57,57,54,44,51,48,46,52,57,57,56,51,50,93,44,91,45,57,57,46,51,48,49,55,49,56,44,51,48,46,50,56,54,54,53,51,93,44,91,45,57,57,46,51,48,48,57,56,56,44,51,48,46,49,51,52,50,57,56,93,44,91,45,57,56,46,57,50,48,49,52,55,44,51,48,46,49,51,56,50,57,93,44,91,45,57,56,46,53,56,55,56,57,55,44,51,48,46,49,51,56,57,53,52,93,44,91,45,57,56,46,53,57,49,54,55,44,51,48,46,52,57,57,56,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,79,97,107,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,48,56,52,51,44,34,98,101,100,115,34,58,52,53,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,56,54,52,57,51,44,52,50,46,55,56,51,50,54,51,93,44,91,45,56,51,46,54,54,52,56,48,56,44,52,50,46,52,51,49,49,55,57,93,44,91,45,56,51,46,53,53,49,57,48,55,44,52,50,46,52,51,53,49,54,54,93,44,91,45,56,51,46,48,56,51,51,57,51,44,52,50,46,52,52,55,49,53,51,93,44,91,45,56,51,46,49,48,50,56,57,49,44,52,50,46,56,56,56,54,52,55,93,44,91,45,56,51,46,52,53,51,51,54,52,44,52,50,46,56,56,48,52,51,50,93,44,91,45,56,51,46,54,56,57,51,56,52,44,52,50,46,56,55,49,50,54,51,93,44,91,45,56,51,46,54,56,54,52,57,51,44,52,50,46,55,56,51,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,71,111,108,100,101,110,32,86,97,108,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,52,57,54,56,44,52,55,46,51,51,48,49,52,49,93,44,91,45,49,48,52,46,48,52,53,50,51,52,44,52,54,46,54,52,49,53,48,52,93,44,91,45,49,48,52,46,48,52,53,50,49,49,44,52,54,46,53,52,48,56,54,49,93,44,91,45,49,48,51,46,56,48,48,56,56,44,52,54,46,53,52,48,54,55,49,93,44,91,45,49,48,51,46,56,48,48,56,55,51,44,52,54,46,54,50,57,55,51,49,93,44,91,45,49,48,51,46,54,48,57,50,55,51,44,52,54,46,54,50,57,56,50,50,93,44,91,45,49,48,51,46,54,48,57,53,57,50,44,52,54,46,57,55,57,56,53,52,93,44,91,45,49,48,51,46,54,54,55,48,55,51,44,52,54,46,57,55,57,55,55,53,93,44,91,45,49,48,51,46,54,54,54,54,55,53,44,52,55,46,51,50,57,50,53,54,93,44,91,45,49,48,52,46,48,52,52,57,54,56,44,52,55,46,51,51,48,49,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,78,105,111,98,114,97,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,56,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,52,55,56,54,44,52,51,46,53,48,51,51,50,56,93,44,91,45,49,48,52,46,56,57,57,57,52,49,44,52,51,46,52,57,57,54,52,93,44,91,45,49,48,52,46,56,57,50,52,51,55,44,52,50,46,54,48,56,57,51,57,93,44,91,45,49,48,52,46,54,53,53,54,51,57,44,52,50,46,54,48,57,52,54,56,93,44,91,45,49,48,52,46,48,53,50,56,51,56,44,52,50,46,54,49,49,55,54,55,93,44,91,45,49,48,52,46,48,53,51,48,50,56,44,52,51,46,48,48,48,53,56,53,93,44,91,45,49,48,52,46,48,53,52,56,48,51,44,52,51,46,52,55,55,56,49,53,93,44,91,45,49,48,52,46,48,53,52,55,56,54,44,52,51,46,53,48,51,51,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,80,105,112,101,115,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,56,53,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,53,50,55,55,51,44,52,52,46,49,57,54,55,56,93,44,91,45,57,54,46,52,53,50,57,56,56,44,52,51,46,56,52,57,53,48,55,93,44,91,45,57,54,46,48,54,52,54,50,44,52,51,46,56,52,57,48,51,57,93,44,91,45,57,54,46,48,54,51,55,55,56,44,52,52,46,49,57,54,52,50,53,93,44,91,45,57,54,46,48,55,56,53,56,44,52,52,46,49,57,54,54,50,93,44,91,45,57,54,46,52,53,50,55,55,51,44,52,52,46,49,57,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,75,105,110,103,32,71,101,111,114,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,57,55,54,55,44,51,56,46,50,55,56,48,52,54,93,44,91,45,55,55,46,48,49,56,52,57,56,44,51,56,46,51,56,49,57,52,49,93,44,91,45,55,55,46,50,56,55,48,57,55,44,51,56,46,51,52,56,56,93,44,91,45,55,55,46,51,50,54,54,57,50,44,51,56,46,50,52,53,49,51,54,93,44,91,45,55,55,46,49,49,53,57,57,55,44,51,56,46,49,52,57,57,51,49,93,44,91,45,55,55,46,48,54,49,54,57,53,44,51,56,46,49,54,49,54,51,49,93,44,91,45,55,54,46,57,57,55,54,55,44,51,56,46,50,55,56,48,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,56,54,48,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,57,56,50,50,51,52,44,52,55,46,57,54,50,48,50,53,93,44,91,45,49,49,57,46,49,48,51,56,55,51,44,52,55,46,57,54,49,55,54,51,93,44,91,45,49,49,57,46,50,49,50,50,50,53,44,52,55,46,56,56,55,55,48,56,93,44,91,45,49,49,57,46,50,49,50,52,49,44,52,55,46,56,48,48,54,57,53,93,44,91,45,49,49,57,46,51,52,49,55,54,55,44,52,55,46,54,49,50,51,56,56,93,44,91,45,49,49,57,46,53,51,50,56,56,57,44,52,55,46,53,50,55,55,53,54,93,44,91,45,49,49,57,46,53,51,51,49,50,51,44,52,55,46,52,52,49,50,48,55,93,44,91,45,49,49,57,46,56,55,53,55,54,44,52,55,46,52,51,55,52,57,50,93,44,91,45,49,50,48,46,48,48,52,55,48,52,44,52,55,46,51,49,57,57,57,52,93,44,91,45,49,50,48,46,48,48,55,48,55,52,44,52,55,46,50,50,48,49,51,51,93,44,91,45,49,50,48,46,48,52,50,56,54,54,44,52,55,46,48,55,51,52,53,51,93,44,91,45,49,49,57,46,57,50,55,53,51,55,44,52,54,46,56,49,55,48,57,50,93,44,91,45,49,49,57,46,57,55,51,48,51,54,44,52,54,46,55,51,55,49,50,54,93,44,91,45,49,49,57,46,56,55,52,48,52,50,44,52,54,46,54,50,56,50,56,51,93,44,91,45,49,49,57,46,54,53,57,49,56,57,44,52,54,46,54,52,48,51,51,51,93,44,91,45,49,49,57,46,53,49,54,53,56,50,44,52,54,46,55,50,55,54,51,56,93,44,91,45,49,49,57,46,52,53,51,49,57,44,52,54,46,54,55,57,50,52,51,93,44,91,45,49,49,57,46,51,54,57,52,50,57,44,52,54,46,55,51,55,54,57,53,93,44,91,45,49,49,57,46,51,54,56,54,54,50,44,52,54,46,57,49,50,53,54,50,93,44,91,45,49,49,56,46,57,56,50,54,53,50,44,52,54,46,57,49,49,51,52,52,93,44,91,45,49,49,56,46,57,55,57,55,55,55,44,52,55,46,50,54,49,55,48,57,93,44,91,45,49,49,56,46,57,55,51,53,48,52,44,52,55,46,57,52,51,52,49,52,93,44,91,45,49,49,56,46,57,56,50,50,51,52,44,52,55,46,57,54,50,48,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,82,101,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,50,49,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,50,52,56,53,50,44,52,52,46,56,57,49,51,49,93,44,91,45,57,53,46,52,56,50,56,56,57,44,52,52,46,56,57,48,55,49,50,93,44,91,45,57,53,46,52,56,50,56,52,51,44,52,52,46,55,53,50,53,48,53,93,44,91,45,57,53,46,51,54,48,49,55,55,44,52,52,46,54,57,56,53,52,93,44,91,45,57,53,46,50,52,48,52,51,57,44,52,52,46,54,54,52,54,48,52,93,44,91,45,57,53,46,48,49,51,53,57,57,44,52,52,46,53,52,50,56,51,51,93,44,91,45,57,52,46,56,54,53,56,50,52,44,52,52,46,52,57,56,50,49,56,93,44,91,45,57,52,46,55,56,48,54,51,44,52,52,46,52,53,54,54,53,93,44,91,45,57,52,46,54,50,52,50,44,52,52,46,52,53,54,48,51,93,44,91,45,57,52,46,54,50,57,52,56,57,44,52,52,46,55,49,54,54,54,51,93,44,91,45,57,52,46,52,57,56,48,55,52,44,52,52,46,55,49,55,49,55,49,93,44,91,45,57,52,46,53,48,50,51,57,53,44,52,52,46,56,57,50,50,57,53,93,44,91,45,57,52,46,55,53,56,49,56,57,44,52,52,46,56,57,50,48,57,55,93,44,91,45,57,53,46,50,52,56,53,50,44,52,52,46,56,57,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,97,99,104,117,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,51,49,52,56,44,34,98,101,100,115,34,58,49,56,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,53,56,53,53,52,44,50,57,46,56,51,48,49,52,52,93,44,91,45,56,50,46,54,53,54,51,48,49,44,50,57,46,53,54,52,56,49,49,93,44,91,45,56,50,46,53,53,54,55,54,54,44,50,57,46,52,56,48,48,53,53,93,44,91,45,56,50,46,52,48,54,54,50,44,50,57,46,52,56,53,48,52,56,93,44,91,45,56,50,46,48,53,53,56,57,57,44,50,57,46,52,55,49,50,51,50,93,44,91,45,56,50,46,48,53,53,54,50,53,44,50,57,46,55,49,56,50,51,50,93,44,91,45,56,50,46,49,51,51,49,50,54,44,50,57,46,56,51,53,57,52,57,93,44,91,45,56,50,46,50,56,49,56,51,55,44,50,57,46,56,52,52,52,52,56,93,44,91,45,56,50,46,52,49,56,55,50,56,44,50,57,46,57,50,51,48,57,51,93,44,91,45,56,50,46,53,50,57,55,48,53,44,50,57,46,57,52,48,56,56,49,93,44,91,45,56,50,46,54,53,56,53,53,52,44,50,57,46,56,51,48,49,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,111,111,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,50,54,53,53,55,44,52,50,46,48,57,50,49,57,52,93,44,91,45,49,48,49,46,52,50,53,57,50,44,52,49,46,55,52,51,48,53,57,93,44,91,45,49,48,49,46,52,48,54,52,54,54,44,52,49,46,55,52,51,50,93,44,91,45,49,48,48,46,56,52,50,52,53,57,44,52,49,46,55,52,48,52,48,52,93,44,91,45,49,48,48,46,56,52,54,49,50,57,44,52,50,46,48,56,56,49,54,54,93,44,91,45,49,48,49,46,52,50,54,53,53,55,44,52,50,46,48,57,50,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,80,114,105,110,99,101,32,69,100,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,57,53,54,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,53,57,52,52,51,54,44,51,55,46,51,57,55,57,55,52,93,44,91,45,55,56,46,54,56,49,53,55,51,44,51,55,46,50,52,56,55,53,57,93,44,91,45,55,56,46,54,57,50,52,55,50,44,51,55,46,50,48,52,55,56,54,93,44,91,45,55,56,46,52,52,51,54,52,52,44,51,55,46,48,55,57,51,55,49,93,44,91,45,55,56,46,50,51,57,51,53,52,44,51,55,46,49,50,48,48,56,57,93,44,91,45,55,56,46,50,51,49,50,51,52,44,51,55,46,50,57,54,50,50,93,44,91,45,55,56,46,50,51,53,48,51,57,44,51,55,46,51,54,56,49,48,50,93,44,91,45,55,56,46,51,50,49,56,52,44,51,55,46,51,48,57,50,57,50,93,44,91,45,55,56,46,52,54,53,48,56,57,44,51,55,46,51,51,57,54,55,55,93,44,91,45,55,56,46,53,57,52,52,51,54,44,51,55,46,51,57,55,57,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,97,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,53,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,50,52,55,51,57,49,44,51,57,46,55,48,52,51,53,93,44,91,45,49,49,49,46,48,56,53,51,53,53,44,51,57,46,53,50,49,49,55,93,44,91,45,49,49,49,46,48,55,55,53,52,53,44,51,57,46,52,54,57,55,52,51,93,44,91,45,49,49,48,46,48,50,52,49,49,56,44,51,57,46,52,54,57,50,54,57,93,44,91,45,49,49,48,46,48,50,51,57,54,51,44,51,57,46,52,54,57,50,54,56,93,44,91,45,49,48,57,46,57,55,54,56,49,52,44,51,57,46,56,48,54,50,51,93,44,91,45,49,49,48,46,56,53,55,55,56,44,51,57,46,56,49,51,50,56,53,93,44,91,45,49,49,49,46,50,52,55,52,57,54,44,51,57,46,56,49,51,48,50,56,93,44,91,45,49,49,49,46,50,52,55,51,57,49,44,51,57,46,55,48,52,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,117,99,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,54,51,55,48,44,34,98,101,100,115,34,58,49,49,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,52,56,52,48,53,55,44,52,48,46,52,49,56,52,53,49,93,44,91,45,55,53,46,48,49,53,48,54,54,44,52,48,46,49,51,55,57,57,50,93,44,91,45,55,52,46,57,55,51,57,56,49,44,52,48,46,48,52,56,53,57,53,93,44,91,45,55,52,46,55,50,50,48,52,56,44,52,48,46,49,53,48,51,49,49,93,44,91,45,55,52,46,57,52,50,57,48,57,44,52,48,46,51,52,49,54,56,51,93,44,91,45,55,53,46,48,54,48,57,49,55,44,52,48,46,52,50,49,55,51,55,93,44,91,45,55,53,46,48,54,56,49,44,52,48,46,53,52,49,52,56,56,93,44,91,45,55,53,46,49,56,57,54,44,52,48,46,53,57,49,55,55,54,93,44,91,45,55,53,46,49,57,54,56,48,51,44,52,48,46,54,48,56,53,56,93,44,91,45,55,53,46,51,51,51,53,49,52,44,52,48,46,53,51,55,48,53,55,93,44,91,45,55,53,46,52,56,52,48,53,55,44,52,48,46,52,49,56,52,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,49,49,55,53,52,44,52,52,46,56,57,55,50,50,55,93,44,91,45,57,57,46,51,48,48,49,56,44,52,52,46,49,57,52,56,51,93,44,91,45,57,56,46,57,50,53,57,53,51,44,52,52,46,49,57,54,53,55,53,93,44,91,45,57,56,46,55,48,48,52,53,51,44,52,52,46,49,57,54,55,50,55,93,44,91,45,57,56,46,55,48,53,55,54,50,44,52,52,46,54,51,52,49,53,57,93,44,91,45,57,56,46,55,49,54,52,57,56,44,52,52,46,56,57,54,57,50,53,93,44,91,45,57,57,46,51,49,49,55,53,52,44,52,52,46,56,57,55,50,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,121,99,111,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,56,53,57,44,34,98,101,100,115,34,58,51,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,53,57,56,49,50,57,44,52,49,46,52,55,56,53,55,54,93,44,91,45,55,55,46,53,50,54,53,51,55,44,52,49,46,51,53,56,53,50,56,93,44,91,45,55,55,46,49,52,52,49,49,49,44,52,49,46,48,54,56,56,52,93,44,91,45,55,54,46,57,55,55,57,51,57,44,52,49,46,48,56,55,56,56,51,93,44,91,45,55,54,46,56,57,54,49,49,52,44,52,49,46,49,51,57,48,55,93,44,91,45,55,54,46,55,51,50,54,55,50,44,52,49,46,49,55,50,48,52,93,44,91,45,55,54,46,54,52,48,55,54,55,44,52,49,46,49,53,53,55,49,56,93,44,91,45,55,54,46,52,52,55,53,57,55,44,52,49,46,50,55,53,54,50,57,93,44,91,45,55,54,46,53,57,50,53,51,50,44,52,49,46,51,48,52,51,51,50,93,44,91,45,55,54,46,55,52,57,52,57,55,44,52,49,46,52,48,53,53,55,50,93,44,91,45,55,54,46,56,49,51,55,51,49,44,52,49,46,53,57,48,48,51,52,93,44,91,45,55,54,46,56,55,52,55,49,52,44,52,49,46,53,57,54,57,49,57,93,44,91,45,55,54,46,57,54,48,52,55,57,44,52,49,46,53,53,49,51,55,49,93,44,91,45,55,55,46,53,57,57,50,55,56,44,52,49,46,53,52,50,50,55,49,93,44,91,45,55,55,46,53,57,56,49,50,57,44,52,49,46,52,55,56,53,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,76,97,116,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,50,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,51,57,55,53,50,44,52,55,46,49,50,55,50,54,57,93,44,91,45,49,49,55,46,48,51,57,54,57,52,44,52,54,46,53,52,49,55,48,57,93,44,91,45,49,49,54,46,55,49,57,48,56,53,44,52,54,46,53,52,50,56,55,52,93,44,91,45,49,49,54,46,54,49,49,55,52,44,52,54,46,54,51,49,50,52,53,93,44,91,45,49,49,54,46,52,53,54,48,57,56,44,52,54,46,54,50,57,48,57,55,93,44,91,45,49,49,54,46,51,50,57,53,52,44,52,54,46,54,50,55,57,53,55,93,44,91,45,49,49,54,46,51,50,57,52,51,54,44,52,54,46,57,51,52,54,54,57,93,44,91,45,49,49,54,46,51,50,57,52,49,56,44,52,55,46,48,50,49,57,49,53,93,44,91,45,49,49,54,46,56,51,53,50,54,57,44,52,55,46,48,51,50,52,53,50,93,44,91,45,49,49,55,46,48,51,57,55,53,50,44,52,55,46,49,50,55,50,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,55,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,51,51,55,51,54,44,51,51,46,52,51,52,52,55,50,93,44,91,45,56,51,46,53,52,53,56,55,54,44,51,51,46,49,55,49,57,52,52,93,44,91,45,56,51,46,52,50,57,48,57,44,51,51,46,49,56,53,51,53,50,93,44,91,45,56,51,46,50,55,52,49,48,56,44,51,51,46,49,56,55,50,51,56,93,44,91,45,56,51,46,49,54,52,50,48,55,44,51,51,46,51,53,53,48,51,93,44,91,45,56,51,46,50,55,57,57,51,49,44,51,51,46,52,56,51,52,51,56,93,44,91,45,56,51,46,53,51,51,55,51,54,44,51,51,46,52,51,52,52,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,52,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,52,48,34,44,34,78,65,77,69,34,58,34,71,97,108,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,51,56,44,34,98,101,100,115,34,58,49,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,51,50,50,55,49,44,51,54,46,54,55,49,53,57,51,93,44,91,45,56,48,46,57,49,52,49,55,51,44,51,54,46,54,53,48,50,52,54,93,44,91,45,56,48,46,56,55,55,50,55,52,44,51,54,46,54,57,50,50,49,53,93,44,91,45,56,48,46,57,49,54,49,54,54,44,51,54,46,54,57,52,54,52,93,44,91,45,56,48,46,57,51,50,50,55,49,44,51,54,46,54,55,49,53,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,81,117,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,54,51,55,48,53,51,44,51,53,46,51,56,57,54,54,50,93,44,91,45,49,48,51,46,54,51,55,49,51,44,51,53,46,50,52,48,56,49,57,93,44,91,45,49,48,51,46,56,53,55,53,51,44,51,53,46,50,52,50,52,48,53,93,44,91,45,49,48,52,46,49,50,53,49,50,49,44,51,53,46,49,52,50,48,53,56,93,44,91,45,49,48,52,46,49,50,57,49,52,51,44,51,52,46,55,55,57,51,51,55,93,44,91,45,49,48,52,46,49,50,56,56,56,44,51,52,46,54,48,53,50,48,49,93,44,91,45,49,48,51,46,57,52,56,55,55,56,44,51,52,46,54,48,53,48,53,56,93,44,91,45,49,48,51,46,55,51,56,49,54,54,44,51,52,46,54,48,52,54,55,93,44,91,45,49,48,51,46,55,48,53,55,56,56,44,51,52,46,54,57,50,52,52,54,93,44,91,45,49,48,51,46,52,57,53,54,53,51,44,51,52,46,54,57,49,51,57,51,93,44,91,45,49,48,51,46,50,56,52,51,49,55,44,51,52,46,56,54,52,57,57,93,44,91,45,49,48,51,46,50,56,52,49,52,57,44,51,52,46,57,53,52,49,55,50,93,44,91,45,49,48,51,46,48,52,50,55,48,49,44,51,52,46,57,53,52,49,52,50,93,44,91,45,49,48,51,46,48,52,50,53,49,49,44,51,53,46,49,56,51,49,53,55,93,44,91,45,49,48,51,46,48,52,49,55,48,54,44,51,53,46,54,50,50,52,56,56,93,44,91,45,49,48,51,46,48,52,49,51,52,57,44,51,53,46,55,51,57,52,51,51,93,44,91,45,49,48,51,46,51,55,53,49,49,55,44,51,53,46,55,51,57,53,49,54,93,44,91,45,49,48,51,46,51,55,57,55,51,44,51,53,46,51,57,54,55,57,54,93,44,91,45,49,48,51,46,54,51,55,48,53,51,44,51,53,46,51,56,57,54,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,57,34,44,34,78,65,77,69,34,58,34,75,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,49,56,54,57,49,44,51,51,46,56,51,53,54,53,93,44,91,45,49,48,48,46,53,49,55,52,52,57,44,51,51,46,51,57,55,56,54,54,93,44,91,45,57,57,46,57,57,48,57,56,44,51,51,46,51,57,55,52,48,52,93,44,91,45,57,57,46,57,57,54,52,51,52,44,51,51,46,56,51,53,57,54,55,93,44,91,45,49,48,48,46,48,52,56,52,56,44,51,51,46,56,51,53,57,55,52,93,44,91,45,49,48,48,46,53,49,56,54,57,49,44,51,51,46,56,51,53,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,50,50,56,54,55,44,51,51,46,52,56,49,57,54,51,93,44,91,45,57,51,46,54,56,51,55,49,53,44,51,51,46,50,56,49,48,57,50,93,44,91,45,57,51,46,56,53,57,48,56,55,44,51,51,46,48,56,57,53,51,55,93,44,91,45,57,51,46,56,48,52,57,51,44,51,51,46,48,49,57,51,53,55,93,44,91,45,57,51,46,53,50,48,57,57,52,44,51,51,46,48,49,56,54,49,54,93,44,91,45,57,51,46,52,57,48,53,50,44,51,51,46,48,49,56,52,52,50,93,44,91,45,57,51,46,52,56,49,55,54,44,51,51,46,50,53,57,57,57,49,93,44,91,45,57,51,46,51,54,53,53,56,53,44,51,51,46,52,52,52,52,53,57,93,44,91,45,57,51,46,52,56,51,48,57,55,44,51,51,46,52,55,54,48,55,53,93,44,91,45,57,51,46,55,50,50,56,54,55,44,51,51,46,52,56,49,57,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,53,49,34,44,34,78,65,77,69,34,58,34,84,111,109,32,71,114,101,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,52,54,54,44,34,98,101,100,115,34,58,53,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,51,53,55,54,49,44,51,49,46,54,57,50,57,55,93,44,91,45,49,48,48,46,56,50,53,51,55,44,51,49,46,54,57,54,49,53,53,93,44,91,45,49,48,48,46,56,54,53,50,53,54,44,51,49,46,53,54,50,50,57,52,93,44,91,45,49,48,49,46,50,54,55,54,51,44,51,49,46,53,53,54,52,54,50,93,44,91,45,49,48,49,46,50,54,55,57,52,55,44,51,49,46,53,50,56,54,56,56,93,44,91,45,49,48,48,46,54,57,51,48,54,53,44,51,49,46,53,50,51,57,53,52,93,44,91,45,49,48,48,46,54,56,56,55,54,52,44,51,49,46,48,56,54,53,55,54,93,44,91,45,49,48,48,46,49,49,53,50,49,54,44,51,49,46,48,56,55,57,57,52,93,44,91,45,49,48,48,46,49,49,49,50,51,52,44,51,49,46,53,56,48,50,54,55,93,44,91,45,49,48,48,46,50,51,52,54,51,54,44,51,49,46,53,56,55,49,52,55,93,44,91,45,49,48,48,46,50,51,53,55,54,49,44,51,49,46,54,57,50,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,72,97,114,100,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,44,91,45,56,50,46,48,53,53,55,53,51,44,50,55,46,51,51,56,50,54,52,93,44,91,45,56,49,46,53,54,52,48,54,50,44,50,55,46,51,52,48,54,52,49,93,44,91,45,56,49,46,53,54,51,53,51,51,44,50,55,46,54,52,54,54,52,53,93,44,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,50,49,54,44,34,98,101,100,115,34,58,49,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,48,54,55,56,50,44,51,57,46,50,53,53,48,54,56,93,44,91,45,56,52,46,50,53,57,52,51,49,44,51,57,46,50,55,48,55,57,54,93,44,91,45,56,52,46,51,49,57,57,56,53,44,51,57,46,48,50,49,53,51,52,93,44,91,45,56,52,46,50,51,49,57,49,55,44,51,56,46,56,55,52,56,54,54,93,44,91,45,56,52,46,50,51,48,52,49,49,44,51,56,46,56,50,55,52,51,55,93,44,91,45,56,52,46,48,53,50,55,48,57,44,51,56,46,55,55,49,50,50,54,93,44,91,45,56,51,46,57,57,51,49,50,44,51,57,46,50,53,52,50,51,53,93,44,91,45,56,52,46,48,48,54,55,56,50,44,51,57,46,50,53,53,48,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,53,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,48,49,34,44,34,78,65,77,69,34,58,34,89,111,97,107,117,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,55,49,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,53,54,52,56,53,44,51,51,46,51,56,56,52,49,52,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,57,53,57,48,57,57,93,44,91,45,49,48,50,46,53,57,53,48,50,51,44,51,50,46,57,53,56,56,51,49,93,44,91,45,49,48,50,46,53,57,52,56,51,54,44,51,51,46,51,56,56,52,56,57,93,44,91,45,49,48,51,46,48,53,54,52,56,53,44,51,51,46,51,56,56,52,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,89,97,109,104,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,56,50,48,44,34,98,101,100,115,34,58,49,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,52,54,52,56,56,44,52,53,46,52,51,51,51,51,50,93,44,91,45,49,50,51,46,52,54,51,53,49,56,44,52,53,46,50,49,54,51,49,50,93,44,91,45,49,50,51,46,55,56,52,53,52,44,52,53,46,50,49,54,50,57,52,93,44,91,45,49,50,51,46,55,50,52,51,54,56,44,52,53,46,48,55,54,50,50,54,93,44,91,45,49,50,51,46,48,54,56,54,54,55,44,52,53,46,48,55,52,56,54,93,44,91,45,49,50,51,46,48,48,48,55,56,56,44,52,53,46,50,53,57,51,52,55,93,44,91,45,49,50,50,46,56,52,57,57,50,53,44,52,53,46,50,53,57,54,57,55,93,44,91,45,49,50,50,46,56,54,55,56,57,49,44,52,53,46,51,49,55,51,52,53,93,44,91,45,49,50,51,46,49,51,53,52,50,55,44,52,53,46,52,51,51,52,53,57,93,44,91,45,49,50,51,46,52,54,52,56,56,44,52,53,46,52,51,51,51,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,76,111,117,105,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,56,51,57,57,53,44,52,49,46,52,50,51,56,52,56,93,44,91,45,57,49,46,52,56,53,55,49,55,44,52,49,46,49,54,50,52,48,53,93,44,91,45,57,49,46,51,55,48,55,49,44,52,49,46,48,55,52,49,49,50,93,44,91,45,57,48,46,57,52,57,51,56,49,44,52,49,46,48,55,50,55,49,93,44,91,45,57,48,46,57,56,57,54,54,50,44,52,49,46,49,53,53,55,48,55,93,44,91,45,57,49,46,49,49,52,49,56,54,44,52,49,46,50,53,48,48,50,57,93,44,91,45,57,49,46,48,55,50,48,55,44,52,49,46,51,51,51,51,54,49,93,44,91,45,57,49,46,48,55,50,48,52,53,44,52,49,46,51,51,51,53,57,57,93,44,91,45,57,49,46,51,54,57,51,51,50,44,52,49,46,51,51,54,48,54,51,93,44,91,45,57,49,46,51,54,56,53,50,49,44,52,49,46,52,50,51,49,55,56,93,44,91,45,57,49,46,52,56,51,57,57,53,44,52,49,46,52,50,51,56,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,69,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,54,49,48,48,50,44,51,55,46,54,48,51,55,54,49,93,44,91,45,57,54,46,53,50,53,51,44,51,55,46,54,48,55,48,49,53,93,44,91,45,57,54,46,53,50,53,54,57,44,51,55,46,52,55,54,52,48,53,93,44,91,45,57,54,46,53,50,52,56,55,51,44,51,55,46,51,48,50,55,51,93,44,91,45,57,53,46,57,54,52,51,57,57,44,51,55,46,50,57,57,50,51,50,93,44,91,45,57,53,46,57,54,49,54,48,53,44,51,55,46,51,56,54,54,51,54,93,44,91,45,57,53,46,57,54,49,48,48,50,44,51,55,46,54,48,51,55,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,78,111,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,57,55,52,52,50,44,51,57,46,55,53,53,53,55,50,93,44,91,45,56,49,46,53,56,56,49,56,53,44,51,57,46,53,56,54,57,55,51,93,44,91,45,56,49,46,50,56,51,48,55,53,44,51,57,46,54,48,53,55,57,54,93,44,91,45,56,49,46,51,49,57,49,50,53,44,51,57,46,55,48,55,51,54,93,44,91,45,56,49,46,51,49,51,53,57,49,44,51,57,46,56,54,57,52,55,49,93,44,91,45,56,49,46,50,51,55,51,49,54,44,51,57,46,56,54,55,56,50,56,93,44,91,45,56,49,46,50,51,52,48,53,51,44,51,57,46,57,53,49,50,55,93,44,91,45,56,49,46,51,56,54,48,48,54,44,51,57,46,57,53,48,54,57,52,93,44,91,45,56,49,46,54,57,52,49,52,54,44,51,57,46,56,52,50,54,51,54,93,44,91,45,56,49,46,54,57,55,52,52,50,44,51,57,46,55,53,53,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,57,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,49,54,48,50,44,52,49,46,49,54,53,53,50,52,93,44,91,45,56,52,46,51,57,57,52,56,54,44,52,48,46,57,57,48,51,49,53,93,44,91,45,56,52,46,51,52,48,53,51,49,44,52,48,46,56,53,57,48,57,57,93,44,91,45,56,52,46,49,48,57,53,56,54,44,52,48,46,56,54,48,57,57,52,93,44,91,45,56,52,46,49,48,57,53,49,54,44,52,48,46,57,48,52,55,51,93,44,91,45,56,51,46,56,56,48,52,50,51,44,52,48,46,57,50,48,52,50,57,93,44,91,45,56,51,46,56,56,49,49,52,57,44,52,49,46,49,54,55,56,50,52,93,44,91,45,56,52,46,50,50,56,50,50,50,44,52,49,46,49,54,53,56,54,50,93,44,91,45,56,52,46,51,52,49,54,48,50,44,52,49,46,49,54,53,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,50,53,34,44,34,78,65,77,69,34,58,34,83,111,109,101,114,118,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,52,51,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,52,53,54,50,53,44,51,50,46,50,51,51,52,54,56,93,44,91,45,57,55,46,56,54,52,56,54,52,44,51,50,46,48,56,55,51,50,56,93,44,91,45,57,55,46,54,49,53,48,53,53,44,51,50,46,50,48,51,53,56,49,93,44,91,45,57,55,46,54,49,53,50,56,54,44,51,50,46,51,49,56,54,49,56,93,44,91,45,57,55,46,55,56,50,55,54,44,51,50,46,51,49,54,52,57,51,93,44,91,45,57,55,46,57,52,53,54,50,53,44,51,50,46,50,51,51,52,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,101,98,97,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,54,55,52,44,34,98,101,100,115,34,58,52,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,51,53,52,49,52,44,52,48,46,53,53,53,49,53,55,93,44,91,45,55,54,46,54,55,56,48,52,44,52,48,46,52,55,52,55,49,55,93,44,91,45,55,54,46,53,54,54,51,51,57,44,52,48,46,49,57,54,54,52,52,93,44,91,45,55,54,46,51,48,55,53,55,56,44,52,48,46,50,53,53,48,54,54,93,44,91,45,55,54,46,49,53,49,50,49,53,44,52,48,46,51,49,53,57,55,49,93,44,91,45,55,54,46,52,52,48,49,56,49,44,52,48,46,52,57,53,57,53,50,93,44,91,45,55,54,46,53,51,53,52,49,52,44,52,48,46,53,53,53,49,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,71,108,97,99,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,57,57,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,49,57,51,52,49,44,52,56,46,57,57,56,52,55,53,93,44,91,45,49,49,50,46,56,55,53,57,49,55,44,52,56,46,57,57,56,53,48,53,93,44,91,45,49,49,52,46,48,54,56,49,56,44,52,56,46,57,57,56,56,53,55,93,44,91,45,49,49,51,46,57,53,54,56,54,52,44,52,56,46,56,49,55,52,55,52,93,44,91,45,49,49,51,46,56,49,56,51,55,51,44,52,56,46,56,52,56,50,49,56,93,44,91,45,49,49,51,46,55,48,50,57,51,56,44,52,56,46,55,49,57,56,54,53,93,44,91,45,49,49,51,46,55,53,48,52,53,52,44,52,56,46,54,49,52,51,51,53,93,44,91,45,49,49,51,46,52,54,55,51,55,50,44,52,56,46,53,52,55,53,53,53,93,44,91,45,49,49,51,46,52,56,48,56,51,57,44,52,56,46,52,53,57,54,54,50,93,44,91,45,49,49,51,46,51,53,53,57,55,54,44,52,56,46,52,50,51,57,49,50,93,44,91,45,49,49,51,46,51,52,57,48,52,54,44,52,56,46,51,49,48,50,54,51,93,44,91,45,49,49,50,46,53,56,48,52,56,52,44,52,56,46,51,48,57,57,51,50,93,44,91,45,49,49,50,46,53,55,54,57,56,50,44,52,56,46,52,56,51,51,52,56,93,44,91,45,49,49,50,46,49,56,52,55,56,52,44,52,56,46,52,55,55,53,55,56,93,44,91,45,49,49,50,46,49,57,51,52,49,44,52,56,46,57,57,56,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,80,101,114,115,104,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,49,49,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,51,48,57,53,57,56,44,52,48,46,57,54,48,51,55,56,93,44,91,45,49,49,57,46,51,49,51,48,51,55,44,52,48,46,53,49,56,51,49,52,93,44,91,45,49,49,57,46,51,51,56,53,48,52,44,52,48,46,53,49,55,56,48,53,93,44,91,45,49,49,57,46,51,51,57,50,57,54,44,51,57,46,57,57,56,54,48,57,93,44,91,45,49,49,57,46,50,50,53,49,55,54,44,51,57,46,57,57,57,51,56,53,93,44,91,45,49,49,56,46,53,48,48,57,55,57,44,51,57,46,57,57,56,54,55,54,93,44,91,45,49,49,55,46,53,52,49,55,52,57,44,52,48,46,48,48,49,48,51,52,93,44,91,45,49,49,55,46,51,48,48,53,57,55,44,52,48,46,53,50,54,49,51,54,93,44,91,45,49,49,55,46,51,48,57,52,52,49,44,52,48,46,54,56,51,53,51,55,93,44,91,45,49,49,55,46,54,52,52,51,57,57,44,52,48,46,54,56,52,51,52,51,93,44,91,45,49,49,55,46,54,52,52,50,50,44,52,48,46,56,53,55,56,50,52,93,44,91,45,49,49,56,46,55,56,54,55,51,56,44,52,48,46,56,53,53,57,50,57,93,44,91,45,49,49,56,46,55,56,54,55,48,53,44,52,48,46,57,54,48,56,53,93,44,91,45,49,49,57,46,51,48,57,53,57,56,44,52,48,46,57,54,48,51,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,97,104,110,111,109,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,48,54,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,54,55,54,50,49,44,52,55,46,52,57,57,49,51,54,93,44,91,45,57,54,46,48,54,55,48,54,57,44,52,55,46,49,53,49,56,49,51,93,44,91,45,57,53,46,53,53,49,49,56,54,44,52,55,46,49,53,49,52,53,51,93,44,91,45,57,53,46,53,53,52,50,52,56,44,52,55,46,52,57,57,56,57,51,93,44,91,45,57,54,46,48,54,55,54,50,49,44,52,55,46,52,57,57,49,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,80,97,115,115,97,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,52,48,52,49,44,34,98,101,100,115,34,58,57,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,50,55,50,48,54,51,44,52,48,46,56,57,55,52,50,55,93,44,91,45,55,52,46,49,51,48,48,49,54,44,52,48,46,56,49,57,57,51,56,93,44,91,45,55,52,46,49,52,49,48,57,52,44,52,48,46,57,54,54,51,55,52,93,44,91,45,55,52,46,50,55,50,50,50,54,44,52,49,46,48,49,55,57,51,53,93,44,91,45,55,52,46,50,49,49,50,50,52,44,52,49,46,49,51,51,55,49,52,93,44,91,45,55,52,46,50,51,52,50,56,56,44,52,49,46,49,52,51,48,48,56,93,44,91,45,55,52,46,51,54,55,53,49,44,52,49,46,50,48,51,50,52,49,93,44,91,45,55,52,46,53,48,51,50,49,50,44,52,49,46,48,56,53,56,55,51,93,44,91,45,55,52,46,51,48,49,54,56,53,44,52,48,46,57,57,57,49,55,51,93,44,91,45,55,52,46,50,55,50,48,54,51,44,52,48,46,56,57,55,52,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,55,55,52,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,54,51,52,48,55,57,44,52,55,46,54,48,48,48,50,55,93,44,91,45,49,49,51,46,54,55,50,51,51,53,44,52,55,46,56,57,54,52,57,49,93,44,91,45,49,49,51,46,56,51,50,53,53,54,44,52,55,46,57,55,54,52,51,52,93,44,91,45,49,49,51,46,56,56,52,53,52,49,44,52,56,46,48,53,49,57,93,44,91,45,49,49,52,46,48,50,57,48,52,50,44,52,56,46,48,53,49,54,53,51,93,44,91,45,49,49,52,46,48,51,56,53,52,53,44,52,55,46,57,54,50,53,53,93,44,91,45,49,49,52,46,52,57,50,49,57,44,52,55,46,57,54,49,57,56,57,93,44,91,45,49,49,52,46,52,55,55,50,57,44,52,55,46,55,56,57,57,52,49,93,44,91,45,49,49,52,46,54,48,52,52,54,50,44,52,55,46,55,56,57,56,55,49,93,44,91,45,49,49,52,46,53,56,51,55,54,44,52,55,46,54,48,49,55,49,56,93,44,91,45,49,49,52,46,51,53,48,51,54,52,44,52,55,46,54,48,50,49,52,50,93,44,91,45,49,49,52,46,51,53,51,48,56,44,52,55,46,51,56,57,56,53,93,44,91,45,49,49,52,46,50,48,51,48,50,54,44,52,55,46,51,53,53,55,52,54,93,44,91,45,49,49,52,46,49,56,55,49,55,44,52,55,46,49,51,56,49,57,49,93,44,91,45,49,49,51,46,57,51,51,53,48,51,44,52,55,46,49,51,56,50,56,57,93,44,91,45,49,49,51,46,56,50,49,52,52,55,44,52,55,46,49,56,49,55,48,57,93,44,91,45,49,49,51,46,56,55,49,49,49,44,52,55,46,51,57,49,57,55,93,44,91,45,49,49,51,46,57,52,50,56,56,54,44,52,55,46,52,55,57,54,55,56,93,44,91,45,49,49,51,46,57,50,52,56,50,54,44,52,55,46,54,48,48,50,51,57,93,44,91,45,49,49,51,46,54,51,52,48,55,57,44,52,55,46,54,48,48,48,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,49,34,44,34,78,65,77,69,34,58,34,75,101,110,101,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,56,53,56,56,55,44,50,55,46,50,48,57,51,48,56,93,44,91,45,57,55,46,57,56,53,52,57,52,44,50,54,46,55,56,48,57,49,55,93,44,91,45,57,55,46,57,53,55,52,48,53,44,50,54,46,54,49,49,55,54,57,93,44,91,45,57,55,46,56,54,49,54,56,56,44,50,54,46,53,57,55,57,57,53,93,44,91,45,57,55,46,50,50,53,51,55,52,44,50,54,46,54,48,48,50,50,55,93,44,91,45,57,55,46,51,48,48,52,50,51,44,50,54,46,56,51,52,54,49,51,93,44,91,45,57,55,46,51,50,51,50,49,57,44,50,55,46,48,49,48,50,53,54,93,44,91,45,57,55,46,50,56,56,51,51,55,44,50,55,46,50,55,55,53,56,52,93,44,91,45,57,55,46,56,49,52,57,51,52,44,50,55,46,50,55,49,56,57,51,93,44,91,45,57,55,46,57,56,53,56,56,55,44,50,55,46,50,48,57,51,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,66,111,114,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,57,49,50,56,52,44,51,50,46,57,54,49,56,51,56,93,44,91,45,49,48,49,46,54,56,56,55,52,44,51,50,46,53,50,53,50,50,50,93,44,91,45,49,48,49,46,49,55,52,53,55,49,44,51,50,46,53,50,52,49,49,50,93,44,91,45,49,48,49,46,49,55,52,53,54,50,44,51,50,46,53,50,55,55,48,51,93,44,91,45,49,48,49,46,49,55,51,51,55,56,44,51,50,46,57,54,51,53,57,55,93,44,91,45,49,48,49,46,53,53,55,52,51,52,44,51,50,46,57,54,49,48,50,53,93,44,91,45,49,48,49,46,54,57,49,50,56,52,44,51,50,46,57,54,49,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,52,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,51,56,54,48,56,44,51,55,46,56,55,52,51,48,52,93,44,91,45,57,48,46,49,49,48,53,51,55,44,51,55,46,54,55,49,51,52,93,44,91,45,57,48,46,49,52,54,55,55,56,44,51,55,46,54,52,49,54,49,56,93,44,91,45,57,48,46,49,52,54,55,54,51,44,51,55,46,53,57,55,52,51,52,93,44,91,45,56,57,46,56,54,49,49,50,51,44,51,55,46,53,57,57,50,56,54,93,44,91,45,56,57,46,54,48,56,57,51,52,44,51,55,46,53,57,55,52,50,55,93,44,91,45,56,57,46,53,50,49,56,53,53,44,51,55,46,53,54,54,50,49,52,93,44,91,45,56,57,46,53,50,49,53,54,52,44,51,55,46,53,55,50,49,53,54,93,44,91,45,56,57,46,53,49,50,48,48,57,44,51,55,46,54,56,53,53,50,53,93,44,91,45,56,57,46,54,55,52,51,50,49,44,51,55,46,56,48,51,49,53,50,93,44,91,45,56,57,46,56,52,52,55,56,54,44,51,55,46,57,48,53,53,55,50,93,44,91,45,56,57,46,57,51,56,54,48,56,44,51,55,46,56,55,52,51,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,49,49,34,44,34,78,65,77,69,34,58,34,83,97,110,32,83,97,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,57,48,54,50,50,44,51,49,46,52,54,48,57,50,55,93,44,91,45,57,57,46,48,57,50,51,49,55,44,51,48,46,57,52,49,48,48,50,93,44,91,45,57,56,46,57,54,52,54,49,50,44,51,48,46,57,50,49,51,54,56,93,44,91,45,57,56,46,52,52,53,55,56,50,44,51,48,46,57,50,49,52,51,57,93,44,91,45,57,56,46,52,51,57,54,56,55,44,51,49,46,48,50,57,53,51,55,93,44,91,45,57,56,46,53,54,50,55,51,57,44,51,49,46,50,51,48,53,56,50,93,44,91,45,57,56,46,54,50,53,54,50,56,44,51,49,46,50,54,57,55,57,56,93,44,91,45,57,56,46,54,57,54,54,51,52,44,51,49,46,52,48,55,50,56,55,93,44,91,45,57,56,46,57,54,51,53,57,51,44,51,49,46,52,52,54,50,53,49,93,44,91,45,57,56,46,57,57,49,54,48,56,44,51,49,46,52,56,52,48,55,49,93,44,91,45,57,57,46,48,57,48,54,50,50,44,51,49,46,52,54,48,57,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,75,105,110,103,102,105,115,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,49,48,52,48,53,44,51,54,46,49,54,52,56,56,57,93,44,91,45,57,56,46,50,48,55,49,48,52,44,51,53,46,55,50,53,49,56,55,93,44,91,45,57,55,46,54,55,52,48,50,54,44,51,53,46,55,50,53,57,55,93,44,91,45,57,55,46,54,55,53,54,49,55,44,51,54,46,49,54,52,54,54,51,93,44,91,45,57,56,46,49,48,51,57,48,52,44,51,54,46,49,54,52,56,55,55,93,44,91,45,57,56,46,50,49,48,52,48,53,44,51,54,46,49,54,52,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,66,117,114,108,101,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,54,51,54,50,57,44,51,48,46,53,53,55,49,54,57,93,44,91,45,57,54,46,55,53,51,56,51,53,44,51,48,46,51,50,57,51,52,56,93,44,91,45,57,54,46,54,52,48,56,56,51,44,51,48,46,50,57,54,55,56,54,93,44,91,45,57,54,46,50,57,57,49,55,51,44,51,48,46,51,55,57,49,53,50,93,44,91,45,57,54,46,50,56,50,53,54,52,44,51,48,46,52,50,54,54,49,52,93,44,91,45,57,54,46,53,54,54,57,56,51,44,51,48,46,54,57,53,54,55,93,44,91,45,57,54,46,54,50,49,50,56,49,44,51,48,46,55,51,48,56,49,57,93,44,91,45,57,54,46,57,54,51,54,50,57,44,51,48,46,53,53,55,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,55,52,51,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,49,50,54,49,53,44,52,51,46,50,56,54,49,52,51,93,44,91,45,55,52,46,54,57,54,55,56,55,44,52,51,46,49,56,51,49,49,54,93,44,91,45,55,52,46,55,53,57,56,57,53,44,52,51,46,48,52,55,52,50,51,93,44,91,45,55,52,46,53,52,50,51,54,55,44,52,50,46,57,56,53,53,51,93,44,91,45,55,52,46,48,57,55,52,54,55,44,52,50,46,57,56,50,57,51,52,93,44,91,45,55,52,46,49,52,48,49,52,55,44,52,51,46,50,53,51,57,55,57,93,44,91,45,55,52,46,53,51,52,54,53,55,44,52,51,46,50,50,56,49,49,53,93,44,91,45,55,52,46,55,49,50,54,49,53,44,52,51,46,50,56,54,49,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,83,117,110,102,108,111,119,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,53,51,50,44,34,98,101,100,115,34,58,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,53,55,48,48,50,44,51,51,46,57,56,55,53,56,54,93,44,91,45,57,48,46,54,53,56,54,44,51,51,46,54,49,54,50,55,50,93,44,91,45,57,48,46,55,54,51,53,48,57,44,51,51,46,53,50,57,51,56,57,93,44,91,45,57,48,46,55,54,51,55,55,51,44,51,51,46,50,55,48,51,53,57,93,44,91,45,57,48,46,55,49,54,50,55,55,44,51,51,46,50,55,48,48,51,50,93,44,91,45,57,48,46,53,53,53,50,49,49,44,51,51,46,50,55,48,53,51,51,93,44,91,45,57,48,46,52,53,51,50,51,51,44,51,51,46,51,50,57,52,56,52,93,44,91,45,57,48,46,52,53,49,54,52,51,44,51,51,46,56,49,49,51,57,93,44,91,45,57,48,46,52,53,49,48,49,50,44,51,51,46,57,56,53,54,56,57,93,44,91,45,57,48,46,54,53,55,48,48,50,44,51,51,46,57,56,55,53,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,72,101,110,110,101,112,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,53,52,55,56,44,34,98,101,100,115,34,58,53,56,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,50,49,54,53,51,44,52,53,46,50,52,54,54,49,56,93,44,91,45,57,51,46,54,53,56,57,49,55,44,52,53,46,49,57,51,53,53,49,93,44,91,45,57,51,46,55,54,54,56,48,56,44,52,53,46,48,53,55,51,49,50,93,44,91,45,57,51,46,55,54,55,51,54,55,44,52,52,46,57,55,55,57,54,52,93,44,91,45,57,51,46,55,54,55,48,52,49,44,52,52,46,56,57,48,56,54,50,93,44,91,45,57,51,46,53,50,48,55,48,54,44,52,52,46,56,57,49,53,48,50,93,44,91,45,57,51,46,53,50,48,52,51,49,44,52,52,46,56,48,52,50,54,51,93,44,91,45,57,51,46,51,50,57,54,49,53,44,52,52,46,55,57,49,48,56,54,93,44,91,45,57,51,46,49,55,56,53,51,57,44,52,52,46,56,56,56,51,51,56,93,44,91,45,57,51,46,50,50,54,57,50,57,44,52,53,46,48,51,53,54,55,49,93,44,91,45,57,51,46,51,49,49,53,52,52,44,52,53,46,49,52,51,55,55,56,93,44,91,45,57,51,46,53,49,50,49,57,44,52,53,46,50,52,53,54,56,51,93,44,91,45,57,51,46,53,50,49,54,53,51,44,52,53,46,50,52,54,54,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,101,110,116,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,52,52,51,44,34,98,101,100,115,34,58,52,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,51,56,50,48,51,44,52,49,46,49,53,51,54,51,51,93,44,91,45,55,56,46,48,55,55,55,52,44,52,48,46,57,53,56,56,50,52,93,44,91,45,55,56,46,50,49,57,56,49,51,44,52,48,46,57,49,50,55,52,49,93,44,91,45,55,56,46,51,53,57,57,49,50,44,52,48,46,55,51,50,53,57,50,93,44,91,45,55,56,46,49,49,54,53,50,49,44,52,48,46,55,51,57,49,50,55,93,44,91,45,55,55,46,57,52,52,50,53,44,52,48,46,54,57,49,53,53,55,93,44,91,45,55,55,46,56,50,52,53,48,54,44,52,48,46,55,52,51,54,56,49,93,44,91,45,55,55,46,54,56,49,51,51,52,44,52,48,46,55,50,57,55,53,56,93,44,91,45,55,55,46,51,54,52,49,56,44,52,48,46,56,52,54,57,51,55,93,44,91,45,55,55,46,49,52,52,49,54,44,52,49,46,48,52,52,51,51,56,93,44,91,45,55,55,46,53,48,56,53,57,54,44,52,48,46,57,54,50,57,51,56,93,44,91,45,55,55,46,54,50,49,55,53,57,44,52,49,46,48,57,49,49,56,53,93,44,91,45,55,55,46,55,52,49,57,49,49,44,52,49,46,49,48,55,54,49,52,93,44,91,45,55,55,46,55,57,56,53,54,44,52,49,46,49,56,49,57,53,93,44,91,45,55,56,46,48,51,56,50,48,51,44,52,49,46,49,53,51,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,66,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,54,57,49,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,48,53,50,53,50,44,50,56,46,54,57,48,50,51,57,93,44,91,45,57,56,46,48,56,57,55,54,52,44,50,56,46,54,54,50,57,55,57,93,44,91,45,57,55,46,56,49,55,55,49,54,44,50,56,46,49,55,54,56,52,56,93,44,91,45,57,55,46,53,54,55,54,50,50,44,50,56,46,49,50,57,54,56,51,93,44,91,45,57,55,46,53,52,49,48,55,49,44,50,56,46,49,54,52,54,54,57,93,44,91,45,57,55,46,51,55,53,53,55,57,44,50,56,46,51,56,56,54,56,52,93,44,91,45,57,55,46,53,53,51,57,49,54,44,50,56,46,52,53,53,50,55,56,93,44,91,45,57,55,46,53,55,55,48,53,56,44,50,56,46,53,50,50,53,52,55,93,44,91,45,57,55,46,54,57,54,57,52,53,44,50,56,46,53,52,49,56,53,54,93,44,91,45,57,55,46,55,55,56,53,51,44,50,56,46,54,54,56,48,50,55,93,44,91,45,57,55,46,57,49,53,49,48,54,44,50,56,46,55,49,57,54,52,56,93,44,91,45,57,56,46,48,48,53,50,53,50,44,50,56,46,54,57,48,50,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,72,101,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,53,57,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,48,54,56,54,50,44,51,53,46,55,56,57,51,53,52,93,44,91,45,56,56,46,54,49,51,54,49,49,44,51,53,46,53,56,56,48,56,57,93,44,91,45,56,56,46,52,49,52,53,56,50,44,51,53,46,52,56,50,51,51,57,93,44,91,45,56,56,46,51,54,48,56,50,57,44,51,53,46,52,49,56,57,55,50,93,44,91,45,56,56,46,50,52,49,54,55,55,44,51,53,46,52,50,51,50,54,51,93,44,91,45,56,56,46,49,57,48,52,54,53,44,51,53,46,54,48,57,48,56,56,93,44,91,45,56,56,46,49,55,57,49,55,55,44,51,53,46,56,49,54,55,56,53,93,44,91,45,56,56,46,53,54,57,48,52,55,44,51,53,46,56,50,52,56,50,57,93,44,91,45,56,56,46,54,48,54,56,54,50,44,51,53,46,55,56,57,51,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,84,97,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,54,55,52,54,51,44,52,50,46,50,49,48,49,52,93,44,91,45,57,50,46,55,54,53,57,57,57,44,52,49,46,56,54,50,51,55,51,93,44,91,45,57,50,46,50,57,56,49,54,52,44,52,49,46,56,54,50,55,55,57,93,44,91,45,57,50,46,50,57,56,55,57,50,44,52,50,46,50,57,55,53,50,55,93,44,91,45,57,50,46,53,51,51,53,49,44,52,50,46,50,57,55,48,48,49,93,44,91,45,57,50,46,55,54,56,48,57,44,52,50,46,50,57,54,54,56,93,44,91,45,57,50,46,55,54,55,52,54,51,44,52,50,46,50,49,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,83,101,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,57,50,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,54,56,49,48,54,44,51,55,46,51,56,55,55,55,57,93,44,91,45,49,48,49,46,48,54,54,52,53,49,44,51,54,46,57,57,55,57,50,50,93,44,91,45,49,48,48,46,57,52,53,52,54,51,44,51,54,46,57,57,56,52,49,54,93,44,91,45,49,48,48,46,54,51,51,51,50,55,44,51,55,46,48,48,48,49,48,51,93,44,91,45,49,48,48,46,54,53,50,55,50,56,44,51,55,46,51,56,55,54,50,55,93,44,91,45,49,48,49,46,48,54,56,49,48,54,44,51,55,46,51,56,55,55,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,57,57,50,49,55,44,52,49,46,49,54,48,56,54,55,93,44,91,45,57,51,46,48,57,55,53,57,53,44,52,48,46,56,57,56,52,53,49,93,44,91,45,57,50,46,54,51,57,48,57,49,44,52,48,46,56,57,56,56,56,54,93,44,91,45,57,50,46,54,52,48,51,54,49,44,52,49,46,49,54,49,50,57,56,93,44,91,45,57,50,46,56,54,57,55,55,49,44,52,49,46,49,54,49,48,54,54,93,44,91,45,57,51,46,48,57,57,50,49,55,44,52,49,46,49,54,48,56,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,82,105,99,104,97,114,100,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,48,57,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,53,50,52,55,51,44,52,48,46,50,54,49,57,48,52,93,44,91,45,57,54,46,48,49,48,49,55,54,44,52,48,46,50,54,49,52,56,50,93,44,91,45,57,54,46,48,49,48,54,56,44,52,48,46,48,48,48,54,53,49,93,44,91,45,57,53,46,55,56,56,49,49,49,44,52,48,46,48,48,48,52,54,50,93,44,91,45,57,53,46,51,51,57,56,57,54,44,51,57,46,57,57,57,57,57,57,93,44,91,45,57,53,46,51,48,56,50,57,44,51,57,46,57,57,57,57,57,56,93,44,91,45,57,53,46,52,49,57,57,57,57,44,52,48,46,48,53,48,52,52,93,44,91,45,57,53,46,51,57,54,53,52,57,44,52,48,46,49,50,52,55,48,49,93,44,91,45,57,53,46,53,53,50,52,55,51,44,52,48,46,50,54,49,57,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,114,105,115,116,105,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,50,51,49,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,49,55,52,55,51,44,51,57,46,56,49,51,54,54,54,93,44,91,45,56,57,46,52,48,57,52,55,53,44,51,57,46,55,52,51,53,51,93,44,91,45,56,57,46,53,51,53,48,50,56,44,51,57,46,54,52,49,49,51,56,93,44,91,45,56,57,46,53,51,51,54,53,53,44,51,57,46,53,50,52,53,57,50,93,44,91,45,56,57,46,53,51,48,56,51,54,44,51,57,46,51,52,56,56,54,52,93,44,91,45,56,57,46,49,51,57,56,48,55,44,51,57,46,51,52,56,56,56,56,93,44,91,45,56,57,46,48,50,53,52,53,51,44,51,57,46,51,52,54,49,49,53,93,44,91,45,56,57,46,48,50,53,54,56,44,51,57,46,54,53,52,49,56,51,93,44,91,45,56,57,46,49,51,57,49,50,53,44,51,57,46,54,53,53,49,51,49,93,44,91,45,56,57,46,49,52,49,57,54,55,44,51,57,46,56,48,49,50,55,51,93,44,91,45,56,57,46,50,49,55,52,55,51,44,51,57,46,56,49,51,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,78,97,115,115,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,53,55,56,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,52,55,48,49,53,44,51,48,46,55,49,50,52,52,52,93,44,91,45,56,49,46,55,49,56,49,48,57,44,51,48,46,55,52,52,56,48,54,93,44,91,45,56,49,46,57,48,52,56,53,53,44,51,48,46,56,50,56,51,52,93,44,91,45,56,50,46,48,51,57,55,57,53,44,51,48,46,55,52,55,50,57,55,93,44,91,45,56,50,46,48,48,53,56,49,44,51,48,46,53,54,53,51,53,56,93,44,91,45,56,50,46,48,52,57,57,53,56,44,51,48,46,51,54,50,52,55,50,93,44,91,45,56,50,46,48,52,57,50,51,54,44,51,48,46,50,55,51,52,51,50,93,44,91,45,56,49,46,56,51,49,50,50,55,44,51,48,46,52,54,55,52,51,55,93,44,91,45,56,49,46,54,50,52,53,49,51,44,51,48,46,53,56,54,50,51,50,93,44,91,45,56,49,46,53,52,51,48,49,56,44,51,48,46,53,50,51,56,56,57,93,44,91,45,56,49,46,51,53,56,55,57,51,44,51,48,46,53,48,49,53,48,52,93,44,91,45,56,49,46,51,56,48,56,54,55,44,51,48,46,54,50,55,51,52,53,93,44,91,45,56,49,46,51,52,55,48,49,53,44,51,48,46,55,49,50,52,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,53,54,54,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,57,57,57,51,52,44,51,48,46,56,51,48,53,53,50,93,44,91,45,56,53,46,54,49,57,48,49,49,44,51,48,46,55,52,51,56,54,56,93,44,91,45,56,53,46,56,52,52,52,50,49,44,51,48,46,55,48,51,49,51,93,44,91,45,56,53,46,57,49,53,50,57,55,44,51,48,46,54,51,54,52,50,55,93,44,91,45,56,53,46,56,54,54,56,49,56,44,51,48,46,52,56,55,54,51,55,93,44,91,45,56,53,46,57,57,50,55,51,54,44,51,48,46,51,56,57,51,50,93,44,91,45,56,53,46,56,53,51,53,44,51,48,46,52,52,48,54,50,51,93,44,91,45,56,53,46,52,56,55,57,54,56,44,51,48,46,52,51,54,54,53,53,93,44,91,45,56,53,46,52,51,52,55,56,50,44,51,48,46,53,54,55,53,54,93,44,91,45,56,53,46,52,51,50,50,55,52,44,51,48,46,55,56,53,52,53,55,93,44,91,45,56,53,46,53,57,57,57,51,52,44,51,48,46,56,51,48,53,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,97,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,50,57,56,55,54,44,51,49,46,52,51,54,54,54,49,93,44,91,45,56,52,46,54,51,55,53,55,57,44,51,49,46,52,51,51,57,50,54,93,44,91,45,56,52,46,54,52,49,54,55,51,44,51,49,46,50,53,56,57,54,55,93,44,91,45,56,52,46,53,51,55,49,48,49,44,51,49,46,50,53,53,57,51,50,93,44,91,45,56,52,46,53,52,50,54,53,51,44,51,49,46,48,55,57,48,50,57,93,44,91,45,56,52,46,53,48,56,48,55,56,44,51,49,46,48,55,56,52,93,44,91,45,56,52,46,51,52,48,53,53,50,44,51,49,46,51,48,53,51,52,49,93,44,91,45,56,52,46,49,57,55,57,56,54,44,51,49,46,51,53,55,53,50,49,93,44,91,45,56,52,46,49,52,49,49,50,52,44,51,49,46,52,52,48,49,55,57,93,44,91,45,56,52,46,52,50,57,56,55,54,44,51,49,46,52,51,54,54,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,53,34,44,34,78,65,77,69,34,58,34,84,104,111,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,55,51,48,44,34,98,101,100,115,34,58,50,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,49,54,54,52,52,44,51,49,46,48,55,55,57,55,49,93,44,91,45,56,52,46,48,55,55,49,49,57,44,51,48,46,57,49,52,57,54,53,93,44,91,45,56,52,46,48,56,51,55,53,55,44,51,48,46,54,55,53,56,48,52,93,44,91,45,56,52,46,48,48,55,52,53,52,44,51,48,46,54,55,50,49,50,55,93,44,91,45,56,51,46,55,52,51,55,50,57,44,51,48,46,54,53,56,51,57,54,93,44,91,45,56,51,46,55,51,54,49,53,56,44,51,49,46,48,51,55,54,55,57,93,44,91,45,56,52,46,48,48,51,56,55,54,44,51,49,46,48,52,49,53,56,50,93,44,91,45,56,52,46,48,48,51,54,50,55,44,51,49,46,48,55,55,50,57,93,44,91,45,56,52,46,49,49,54,54,52,52,44,51,49,46,48,55,55,57,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,50,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,48,49,54,52,54,44,51,56,46,48,51,55,50,55,93,44,91,45,56,53,46,49,54,55,56,51,52,44,51,55,46,57,55,49,56,48,57,93,44,91,45,56,53,46,49,53,50,55,57,55,44,51,55,46,56,57,55,54,54,49,93,44,91,45,56,53,46,48,51,48,53,50,56,44,51,55,46,56,57,49,53,51,56,93,44,91,45,56,52,46,57,51,51,48,56,53,44,51,55,46,57,53,52,49,56,54,93,44,91,45,56,52,46,55,57,54,51,50,55,44,51,55,46,57,55,48,48,56,56,93,44,91,45,56,52,46,56,54,52,57,48,56,44,51,56,46,49,49,54,57,50,54,93,44,91,45,56,53,46,48,50,51,55,49,49,44,51,56,46,49,50,57,48,53,50,93,44,91,45,56,53,46,49,48,49,54,52,54,44,51,56,46,48,51,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,79,108,100,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,51,55,52,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,51,51,49,56,57,44,51,56,46,53,50,52,51,55,53,93,44,91,45,56,53,46,53,56,54,48,51,51,44,51,56,46,52,53,48,48,57,50,93,44,91,45,56,53,46,54,51,55,56,54,49,44,51,56,46,51,56,48,50,54,51,93,44,91,45,56,53,46,52,54,56,50,48,54,44,51,56,46,50,56,53,51,48,57,93,44,91,45,56,53,46,50,56,51,48,56,50,44,51,56,46,51,53,56,48,53,52,93,44,91,45,56,53,46,51,49,52,48,48,54,44,51,56,46,52,57,50,53,57,50,93,44,91,45,56,53,46,52,51,51,49,56,57,44,51,56,46,53,50,52,51,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,57,49,48,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,53,51,50,51,50,44,51,52,46,52,49,50,53,57,93,44,91,45,56,52,46,54,53,57,50,52,49,44,51,52,46,48,55,56,50,52,93,44,91,45,56,52,46,52,49,56,57,50,55,44,51,52,46,48,55,51,50,57,56,93,44,91,45,56,52,46,51,50,56,50,54,51,44,51,52,46,49,56,54,49,52,52,93,44,91,45,56,52,46,50,53,56,55,52,51,44,51,52,46,49,56,53,57,48,57,93,44,91,45,56,52,46,50,53,56,48,55,53,44,51,52,46,51,51,53,49,53,54,93,44,91,45,56,52,46,50,53,55,53,56,54,44,51,52,46,51,56,48,57,57,50,93,44,91,45,56,52,46,53,56,50,54,51,44,51,52,46,51,56,49,52,57,50,93,44,91,45,56,52,46,54,53,51,50,51,50,44,51,52,46,52,49,50,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,79,108,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,55,54,52,51,57,50,44,52,54,46,57,56,49,51,48,54,93,44,91,45,49,48,48,46,57,51,53,57,56,51,44,52,54,46,57,56,50,56,52,93,44,91,45,49,48,48,46,56,56,50,49,55,50,44,52,55,46,48,49,53,49,49,53,93,44,91,45,49,48,48,46,57,54,53,52,52,44,52,55,46,49,53,55,49,51,52,93,44,91,45,49,48,49,46,48,54,48,52,50,52,44,52,55,46,50,57,51,50,57,51,93,44,91,45,49,48,49,46,50,53,55,48,51,49,44,52,55,46,50,54,52,56,57,53,93,44,91,45,49,48,49,46,50,53,55,54,51,51,44,52,55,46,50,52,49,51,52,51,93,44,91,45,49,48,49,46,55,54,52,54,52,55,44,52,55,46,50,52,49,53,49,56,93,44,91,45,49,48,49,46,55,54,52,51,57,50,44,52,54,46,57,56,49,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,79,115,99,101,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,54,52,53,53,52,44,52,52,46,49,54,52,56,54,49,93,44,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,44,91,45,56,53,46,48,56,56,56,49,49,44,52,51,46,56,49,51,54,55,54,93,44,91,45,56,53,46,48,56,55,52,48,51,44,52,52,46,49,54,52,50,52,50,93,44,91,45,56,53,46,51,51,52,55,55,55,44,52,52,46,49,54,53,49,49,56,93,44,91,45,56,53,46,53,54,52,53,53,52,44,52,52,46,49,54,52,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,77,99,78,97,105,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,57,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,54,50,53,55,50,44,51,53,46,51,56,48,57,57,52,93,44,91,45,56,56,46,54,52,48,57,51,52,44,51,53,46,51,54,49,48,49,55,93,44,91,45,56,56,46,55,49,57,55,54,49,44,51,53,46,50,52,55,53,53,93,44,91,45,56,56,46,55,56,49,55,54,56,44,51,53,46,50,52,55,53,56,55,93,44,91,45,56,56,46,55,56,54,54,49,50,44,51,52,46,57,57,53,50,53,50,93,44,91,45,56,56,46,51,56,48,53,48,56,44,51,52,46,57,57,53,54,49,93,44,91,45,56,56,46,51,54,50,53,55,50,44,51,53,46,51,56,48,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,53,50,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,57,55,57,55,55,55,44,52,55,46,50,54,49,55,48,57,93,44,91,45,49,49,56,46,57,56,50,54,53,50,44,52,54,46,57,49,49,51,52,52,93,44,91,45,49,49,57,46,51,54,56,54,54,50,44,52,54,46,57,49,50,53,54,50,93,44,91,45,49,49,57,46,51,54,57,52,50,57,44,52,54,46,55,51,55,54,57,53,93,44,91,45,49,49,56,46,50,49,48,50,52,51,44,52,54,46,55,51,56,56,51,51,93,44,91,45,49,49,56,46,48,49,50,52,52,50,44,52,54,46,55,57,48,55,56,93,44,91,45,49,49,55,46,57,53,57,51,51,53,44,52,54,46,57,49,52,56,49,49,93,44,91,45,49,49,55,46,57,54,48,57,51,44,52,55,46,50,54,48,53,54,56,93,44,91,45,49,49,56,46,57,55,57,55,55,55,44,52,55,46,50,54,49,55,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,68,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,55,53,51,56,53,44,51,55,46,53,56,49,53,55,93,44,91,45,57,52,46,48,56,50,48,56,51,44,51,55,46,51,52,57,50,57,49,93,44,91,45,57,52,46,48,53,50,51,49,51,44,51,55,46,50,57,48,48,55,56,93,44,91,45,57,51,46,54,50,53,56,52,52,44,51,55,46,50,56,50,48,49,49,93,44,91,45,57,51,46,54,50,49,49,53,51,44,51,55,46,52,50,55,52,50,51,93,44,91,45,57,51,46,54,49,54,48,51,51,44,51,55,46,53,55,50,54,56,57,93,44,91,45,57,52,46,48,55,53,51,56,53,44,51,55,46,53,56,49,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,83,116,46,32,77,97,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,51,52,44,34,98,101,100,115,34,58,49,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,55,49,57,53,49,44,50,57,46,57,53,53,57,56,57,93,44,91,45,57,49,46,54,50,52,55,48,57,44,50,57,46,57,52,53,50,55,53,93,44,91,45,57,49,46,55,49,49,49,52,57,44,50,57,46,56,52,54,48,54,53,93,44,91,45,57,49,46,57,51,53,49,54,50,44,50,57,46,54,55,50,53,55,56,93,44,91,45,57,49,46,55,50,51,50,53,52,44,50,57,46,54,54,49,50,57,55,93,44,91,45,57,49,46,53,57,49,51,44,50,57,46,53,48,55,55,48,49,93,44,91,45,57,49,46,53,57,49,56,54,52,44,50,57,46,51,53,57,51,55,53,93,44,91,45,57,49,46,52,50,49,49,50,56,44,50,57,46,51,48,50,56,50,56,93,44,91,45,57,49,46,51,53,52,50,55,50,44,50,57,46,50,51,57,54,48,54,93,44,91,45,57,49,46,50,49,50,49,53,55,44,50,57,46,52,50,51,52,50,57,93,44,91,45,57,49,46,50,54,48,54,54,49,44,50,57,46,53,52,52,53,49,93,44,91,45,57,49,46,48,56,50,54,48,50,44,50,57,46,54,50,54,51,54,56,93,44,91,45,57,49,46,49,48,48,48,49,44,50,57,46,54,57,57,52,48,50,93,44,91,45,57,49,46,51,56,54,52,57,49,44,50,57,46,55,56,51,54,56,49,93,44,91,45,57,49,46,51,55,51,54,52,50,44,50,57,46,56,51,52,52,48,49,93,44,91,45,57,49,46,52,55,49,57,53,49,44,50,57,46,57,53,53,57,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,104,105,116,116,101,110,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,48,53,50,44,34,98,101,100,115,34,58,53,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,50,50,56,56,53,52,44,52,52,46,55,50,50,56,54,54,93,44,91,45,55,51,46,50,51,51,50,48,57,44,52,52,46,54,52,57,55,57,49,93,44,91,45,55,51,46,51,54,49,52,53,53,44,52,52,46,53,54,51,53,54,51,93,44,91,45,55,51,46,51,51,56,54,51,54,44,52,52,46,53,52,54,56,52,52,93,44,91,45,55,51,46,50,57,54,48,53,50,44,52,52,46,52,50,56,51,51,52,93,44,91,45,55,51,46,51,49,51,50,56,51,44,52,52,46,50,54,52,49,51,93,44,91,45,55,50,46,57,55,51,51,49,56,44,52,52,46,50,57,51,52,50,93,44,91,45,55,50,46,57,53,50,49,54,55,44,52,52,46,49,54,49,50,55,49,93,44,91,45,55,50,46,56,48,52,57,57,53,44,52,52,46,52,53,49,54,55,54,93,44,91,45,55,50,46,56,50,57,48,55,51,44,52,52,46,53,53,50,50,55,51,93,44,91,45,55,50,46,57,50,52,49,49,50,44,52,52,46,54,51,51,48,53,49,93,44,91,45,55,51,46,50,50,56,56,53,52,44,52,52,46,55,50,50,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,111,109,101,114,195,173,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,57,48,54,55,54,44,49,56,46,50,53,56,56,52,93,44,91,45,54,54,46,50,48,54,49,51,53,44,49,56,46,50,55,54,54,54,93,44,91,45,54,54,46,50,54,54,52,54,54,44,49,56,46,50,52,53,50,55,93,44,91,45,54,54,46,50,52,48,52,54,44,49,56,46,49,56,52,55,57,52,93,44,91,45,54,54,46,49,54,57,49,50,54,44,49,56,46,50,50,52,50,57,93,44,91,45,54,54,46,49,57,48,54,55,54,44,49,56,46,50,53,56,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,77,97,117,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,72,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,53,50,56,49,44,34,98,101,100,115,34,58,51,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,54,46,53,55,55,50,50,52,44,50,48,46,55,52,51,49,51,93,44,91,45,49,53,54,46,53,44,50,48,46,54,57,57,48,56,55,93,44,91,45,49,53,54,46,55,48,52,52,52,50,44,50,48,46,54,48,52,53,57,49,93,44,91,45,49,53,54,46,55,53,44,50,48,46,52,53,52,51,51,53,93,44,91,45,49,53,54,46,53,51,51,52,53,54,44,50,48,46,52,54,50,57,56,93,44,91,45,49,53,54,46,52,53,57,56,54,56,44,50,48,46,53,53,55,54,54,54,93,44,91,45,49,53,54,46,50,57,48,52,55,50,44,50,48,46,53,51,54,56,57,53,93,44,91,45,49,53,54,46,48,49,54,51,48,53,44,50,48,46,54,49,50,51,55,52,93,44,91,45,49,53,53,46,57,50,54,55,56,53,44,50,48,46,55,56,49,55,51,53,93,44,91,45,49,53,54,46,49,57,53,50,57,54,44,50,48,46,57,55,49,53,48,50,93,44,91,45,49,53,54,46,51,51,57,50,49,56,44,50,49,46,48,48,52,49,57,53,93,44,91,45,49,53,54,46,52,53,49,48,57,44,50,48,46,57,54,56,55,53,56,93,44,91,45,49,53,54,46,53,57,49,48,51,49,44,50,49,46,48,57,50,52,49,49,93,44,91,45,49,53,54,46,55,51,53,48,49,55,44,50,49,46,48,48,53,55,50,57,93,44,91,45,49,53,54,46,55,50,49,55,51,55,44,50,48,46,56,52,50,52,51,54,93,44,91,45,49,53,54,46,53,55,55,50,50,52,44,50,48,46,55,52,51,49,51,93,93,93,44,91,91,91,45,49,53,55,46,48,49,53,48,53,56,44,50,49,46,50,54,49,49,57,52,93,44,91,45,49,53,55,46,50,50,48,50,49,50,44,50,49,46,50,55,56,52,57,54,93,44,91,45,49,53,55,46,51,48,53,50,53,50,44,50,49,46,50,53,50,56,56,49,93,44,91,45,49,53,55,46,51,54,54,53,52,57,44,50,49,46,49,48,48,57,53,54,93,44,91,45,49,53,55,46,51,50,49,50,52,52,44,50,49,46,48,53,48,54,55,54,93,44,91,45,49,53,55,46,48,55,50,49,52,57,44,50,49,46,48,53,55,53,57,55,93,44,91,45,49,53,54,46,57,49,52,53,51,53,44,50,48,46,57,57,55,53,56,52,93,44,91,45,49,53,54,46,56,51,54,57,53,52,44,50,49,93,44,91,45,49,53,54,46,54,55,50,53,56,54,44,50,49,46,48,57,53,55,49,55,93,44,91,45,49,53,54,46,55,50,50,48,55,54,44,50,49,46,50,50,54,48,54,50,93,44,91,45,49,53,54,46,56,55,49,49,57,53,44,50,49,46,50,51,49,56,56,55,93,44,91,45,49,53,54,46,57,49,55,49,44,50,49,46,49,54,51,55,49,93,44,91,45,49,53,55,46,48,49,52,54,49,50,44,50,49,46,49,56,50,51,52,57,93,44,91,45,49,53,55,46,48,49,53,48,53,56,44,50,49,46,50,54,49,49,57,52,93,93,93,44,91,91,91,45,49,53,55,46,49,49,54,49,56,55,44,50,48,46,57,48,50,56,49,51,93,44,91,45,49,53,54,46,57,57,52,52,51,52,44,50,48,46,54,57,51,53,55,53,93,44,91,45,49,53,54,46,56,55,53,44,50,48,46,54,57,48,57,54,53,93,44,91,45,49,53,54,46,55,53,44,50,48,46,56,48,55,54,48,53,93,44,91,45,49,53,54,46,56,50,51,51,50,57,44,50,48,46,57,51,48,56,48,56,93,44,91,45,49,53,54,46,57,49,51,51,50,51,44,50,48,46,57,55,55,57,54,51,93,44,91,45,49,53,55,46,48,51,53,50,54,56,44,50,48,46,57,56,51,51,48,50,93,44,91,45,49,53,55,46,49,49,54,49,56,55,44,50,48,46,57,48,50,56,49,51,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,76,97,102,111,117,114,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,50,49,52,44,34,98,101,100,115,34,58,50,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,48,54,55,52,51,44,50,57,46,55,49,52,55,55,49,93,44,91,45,57,48,46,55,54,54,56,52,57,44,50,57,46,54,57,53,52,55,55,93,44,91,45,57,48,46,54,49,57,51,48,57,44,50,57,46,53,57,56,48,57,50,93,44,91,45,57,48,46,51,56,53,53,51,57,44,50,57,46,51,54,55,55,52,57,93,44,91,45,57,48,46,52,48,57,52,49,51,44,50,57,46,50,51,57,55,51,56,93,44,91,45,57,48,46,52,48,57,51,56,44,50,56,46,57,57,53,51,52,93,44,91,45,57,48,46,50,48,48,54,57,54,44,50,57,46,48,51,54,49,56,52,93,44,91,45,57,48,46,48,56,57,48,57,50,44,50,57,46,48,57,52,54,52,56,93,44,91,45,57,48,46,48,57,48,51,51,55,44,50,57,46,49,56,48,53,55,52,93,44,91,45,57,48,46,48,48,48,48,54,56,44,50,57,46,50,57,52,57,49,50,93,44,91,45,57,48,46,48,50,48,54,50,50,44,50,57,46,52,50,56,52,54,49,93,44,91,45,57,48,46,49,51,55,53,48,52,44,50,57,46,52,55,55,49,54,51,93,44,91,45,57,48,46,49,55,48,51,56,55,44,50,57,46,54,56,51,53,50,51,93,44,91,45,57,48,46,50,50,56,49,53,55,44,50,57,46,54,57,50,48,50,56,93,44,91,45,57,48,46,51,52,54,49,57,49,44,50,57,46,54,57,51,51,48,50,93,44,91,45,57,48,46,51,55,49,57,55,56,44,50,57,46,55,53,57,50,51,57,93,44,91,45,57,48,46,53,50,57,54,48,49,44,50,57,46,56,56,52,57,57,55,93,44,91,45,57,48,46,54,53,54,51,49,50,44,50,57,46,56,56,57,50,52,54,93,44,91,45,57,48,46,56,56,53,53,56,57,44,50,57,46,57,48,53,51,53,51,93,44,91,45,57,49,46,48,48,54,55,52,51,44,50,57,46,55,49,52,55,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,77,117,115,99,97,116,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,57,53,48,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,54,54,52,52,56,44,52,49,46,53,57,56,51,55,51,93,44,91,45,57,49,46,51,54,56,53,50,49,44,52,49,46,52,50,51,49,55,56,93,44,91,45,57,49,46,51,54,57,51,51,50,44,52,49,46,51,51,54,48,54,51,93,44,91,45,57,49,46,48,55,50,48,52,53,44,52,49,46,51,51,51,53,57,57,93,44,91,45,57,49,46,48,52,56,50,53,57,44,52,49,46,52,48,57,55,52,56,93,44,91,45,57,48,46,55,56,54,50,56,50,44,52,49,46,52,53,50,56,56,56,93,44,91,45,57,48,46,55,56,51,56,49,50,44,52,49,46,53,57,54,53,51,49,93,44,91,45,57,48,46,56,57,57,56,53,51,44,52,49,46,53,57,55,49,51,51,93,44,91,45,57,49,46,51,54,54,52,52,56,44,52,49,46,53,57,56,51,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,82,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,52,52,50,44,34,98,101,100,115,34,58,51,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,54,51,54,53,51,44,51,48,46,57,57,57,48,50,57,93,44,91,45,56,55,46,50,56,50,50,57,44,51,48,46,57,50,52,56,50,57,93,44,91,45,56,55,46,51,49,50,52,48,57,44,51,48,46,55,51,52,55,55,93,44,91,45,56,55,46,50,54,48,54,55,55,44,51,48,46,54,50,49,51,54,51,93,44,91,45,56,55,46,49,50,52,57,54,56,44,51,48,46,53,48,48,49,57,54,93,44,91,45,56,55,46,49,55,56,57,54,56,44,51,48,46,51,51,52,53,57,57,93,44,91,45,56,54,46,57,50,48,49,49,51,44,51,48,46,51,56,54,53,54,55,93,44,91,45,56,54,46,57,49,54,54,48,55,44,51,48,46,51,49,56,55,50,52,93,44,91,45,56,54,46,56,48,48,53,53,52,44,51,48,46,51,51,52,52,57,50,93,44,91,45,56,54,46,55,56,53,54,57,50,44,51,48,46,57,57,54,57,56,93,44,91,45,56,55,46,49,54,51,54,53,51,44,51,48,46,57,57,57,48,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,48,52,50,53,50,44,51,56,46,57,48,52,50,48,52,93,44,91,45,56,54,46,57,50,52,49,56,54,44,51,56,46,53,48,53,51,53,56,93,44,91,45,56,54,46,54,56,50,51,53,57,44,51,56,46,53,50,54,51,55,56,93,44,91,45,56,54,46,54,56,51,49,48,50,44,51,56,46,54,56,54,53,54,49,93,44,91,45,56,54,46,54,56,50,56,53,51,44,51,56,46,57,48,52,54,57,55,93,44,91,45,56,54,46,57,48,52,50,53,50,44,51,56,46,57,48,52,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,51,34,44,34,78,65,77,69,34,58,34,82,111,99,107,99,97,115,116,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,50,55,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,55,56,48,53,44,51,55,46,53,51,57,48,54,52,93,44,91,45,56,52,46,52,52,54,55,49,57,44,51,55,46,52,56,53,56,57,51,93,44,91,45,56,52,46,53,48,50,57,51,50,44,51,55,46,51,50,56,56,48,49,93,44,91,45,56,52,46,50,56,57,48,55,54,44,51,55,46,49,53,49,55,52,93,44,91,45,56,52,46,50,49,54,50,52,49,44,51,55,46,50,56,48,50,53,54,93,44,91,45,56,52,46,49,51,55,56,57,56,44,51,55,46,51,49,57,55,53,57,93,44,91,45,56,52,46,49,57,57,52,56,57,44,51,55,46,53,50,50,56,53,56,93,44,91,45,56,52,46,51,52,55,56,48,53,44,51,55,46,53,51,57,48,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,51,34,44,34,78,65,77,69,34,58,34,84,114,105,109,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,51,51,48,57,57,44,51,56,46,55,51,54,50,50,56,93,44,91,45,56,53,46,52,53,50,48,56,55,44,51,56,46,55,48,57,55,56,53,93,44,91,45,56,53,46,52,50,56,50,56,51,44,51,56,46,53,56,54,51,50,53,93,44,91,45,56,53,46,52,51,51,49,56,57,44,51,56,46,53,50,52,51,55,53,93,44,91,45,56,53,46,51,49,52,48,48,54,44,51,56,46,52,57,50,53,57,50,93,44,91,45,56,53,46,49,54,56,50,55,44,51,56,46,53,56,53,52,52,56,93,44,91,45,56,53,46,51,51,51,48,57,57,44,51,56,46,55,51,54,50,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,67,104,97,116,116,111,111,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,48,55,55,52,56,44,51,52,46,53,56,55,52,56,51,93,44,91,45,56,53,46,53,50,55,50,54,49,44,51,52,46,53,56,56,54,56,51,93,44,91,45,56,53,46,53,49,51,54,49,50,44,51,52,46,53,50,51,56,50,53,93,44,91,45,56,53,46,52,54,50,50,48,55,44,51,52,46,50,56,54,51,56,54,93,44,91,45,56,53,46,49,56,48,53,52,56,44,51,52,46,52,51,53,57,57,54,93,44,91,45,56,53,46,49,48,55,55,52,56,44,51,52,46,53,56,55,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,68,105,108,108,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,55,49,44,34,98,101,100,115,34,58,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,53,48,48,50,52,44,51,52,46,54,50,49,48,53,51,93,44,91,45,55,57,46,54,51,51,52,49,51,44,51,52,46,50,57,55,57,57,52,93,44,91,45,55,57,46,53,52,55,57,51,44,51,52,46,50,51,48,57,49,51,93,44,91,45,55,57,46,52,56,48,55,49,50,44,51,52,46,50,56,56,48,56,49,93,44,91,45,55,57,46,49,50,56,49,54,53,44,51,52,46,50,53,51,54,53,50,93,44,91,45,55,57,46,48,55,49,50,49,49,44,51,52,46,50,57,57,51,52,50,93,44,91,45,55,57,46,52,53,48,48,50,52,44,51,52,46,54,50,49,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,55,52,56,48,53,44,51,52,46,57,55,51,57,93,44,91,45,55,55,46,53,48,50,55,55,49,44,51,52,46,57,54,57,54,51,53,93,44,91,45,55,55,46,51,54,54,55,54,56,44,51,52,46,57,48,56,54,53,93,44,91,45,55,55,46,50,54,55,52,51,51,44,51,52,46,57,50,53,53,51,55,93,44,91,45,55,55,46,49,54,53,57,56,54,44,51,52,46,55,56,53,48,51,50,93,44,91,45,55,55,46,48,55,56,50,54,51,44,51,52,46,56,49,49,51,50,50,93,44,91,45,55,55,46,49,48,56,56,53,49,44,51,52,46,56,51,48,55,56,93,44,91,45,55,55,46,49,48,57,49,56,57,44,51,53,46,48,54,55,50,48,54,93,44,91,45,55,55,46,49,56,55,54,55,57,44,51,53,46,48,56,49,48,56,54,93,44,91,45,55,55,46,52,55,51,54,57,50,44,51,53,46,50,50,56,57,56,53,93,44,91,45,55,55,46,54,48,49,50,56,50,44,51,53,46,48,55,49,51,54,56,93,44,91,45,55,55,46,55,51,49,48,50,54,44,51,53,46,48,48,56,49,51,56,93,44,91,45,55,55,46,54,55,52,56,48,53,44,51,52,46,57,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,83,99,111,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,55,57,55,56,44,52,48,46,54,48,48,53,50,57,93,44,91,45,57,50,46,51,53,48,56,48,55,44,52,48,46,53,57,55,50,55,53,93,44,91,45,57,50,46,51,52,57,57,55,53,44,52,48,46,51,52,54,53,48,53,93,44,91,45,57,50,46,51,52,55,56,48,49,44,52,48,46,51,48,50,55,53,54,93,44,91,45,57,49,46,57,52,57,55,52,55,44,52,48,46,51,48,48,56,51,50,93,44,91,45,57,49,46,57,52,51,49,49,50,44,52,48,46,54,48,53,56,50,55,93,44,91,45,57,50,46,49,55,57,55,56,44,52,48,46,54,48,48,53,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,78,101,109,97,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,48,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,51,57,50,44,52,48,46,48,48,48,56,56,49,93,44,91,45,57,54,46,50,51,56,57,54,57,44,51,57,46,53,54,54,50,50,93,44,91,45,57,54,46,48,51,53,57,53,50,44,51,57,46,53,54,54,49,93,44,91,45,57,53,46,55,56,57,49,48,49,44,51,57,46,53,54,53,57,49,54,93,44,91,45,57,53,46,55,56,56,57,52,49,44,51,57,46,54,53,51,48,48,49,93,44,91,45,57,53,46,55,56,56,49,49,49,44,52,48,46,48,48,48,52,54,50,93,44,91,45,57,54,46,48,49,48,54,56,44,52,48,46,48,48,48,54,53,49,93,44,91,45,57,54,46,50,51,57,50,44,52,48,46,48,48,48,56,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,78,111,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,56,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,55,55,55,57,52,44,52,48,46,48,48,49,54,48,50,93,44,91,45,49,48,48,46,49,56,48,51,53,49,44,51,57,46,53,54,54,56,57,93,44,91,45,49,48,48,46,49,54,49,54,54,55,44,51,57,46,53,54,55,50,55,55,93,44,91,45,57,57,46,54,50,55,57,53,51,44,51,57,46,53,54,55,52,51,55,93,44,91,45,57,57,46,54,50,53,51,50,52,44,52,48,46,48,48,49,56,53,57,93,44,91,45,57,57,46,54,50,56,50,53,52,44,52,48,46,48,48,49,56,52,55,93,44,91,45,49,48,48,46,49,55,55,55,57,52,44,52,48,46,48,48,49,54,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,103,117,97,115,32,66,117,101,110,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,56,48,52,55,53,44,49,56,46,50,57,55,50,57,53,93,44,91,45,54,54,46,49,52,51,56,54,49,44,49,56,46,50,55,57,53,57,93,44,91,45,54,54,46,49,57,48,54,55,54,44,49,56,46,50,53,56,56,52,93,44,91,45,54,54,46,49,54,57,49,50,54,44,49,56,46,50,50,52,50,57,93,44,91,45,54,54,46,49,49,55,55,55,52,44,49,56,46,50,48,57,57,52,57,93,44,91,45,54,54,46,48,54,54,49,48,51,44,49,56,46,51,48,51,51,50,49,93,44,91,45,54,54,46,48,56,48,52,55,53,44,49,56,46,50,57,55,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,97,116,97,195,177,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,48,56,50,56,49,44,49,56,46,52,51,56,57,48,50,93,44,91,45,54,54,46,49,50,57,52,48,51,44,49,56,46,52,54,53,54,51,50,93,44,91,45,54,54,46,49,54,57,53,49,54,44,49,56,46,52,51,48,57,57,56,93,44,91,45,54,54,46,49,51,49,53,56,44,49,56,46,52,50,52,54,53,54,93,44,91,45,54,54,46,49,48,56,50,56,49,44,49,56,46,52,51,56,57,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,70,117,114,110,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,56,54,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,57,55,56,48,55,44,52,48,46,51,53,48,48,50,55,93,44,91,45,49,48,48,46,49,57,51,53,57,57,44,52,48,46,48,48,49,54,54,51,93,44,91,45,49,48,48,46,49,55,55,55,57,52,44,52,48,46,48,48,49,54,48,50,93,44,91,45,57,57,46,54,50,56,50,53,52,44,52,48,46,48,48,49,56,52,55,93,44,91,45,57,57,46,54,51,48,52,53,57,44,52,48,46,51,53,49,49,50,93,44,91,45,57,57,46,54,52,50,50,48,57,44,52,48,46,51,53,49,50,93,44,91,45,49,48,48,46,48,57,52,55,57,56,44,52,48,46,51,53,49,50,52,53,93,44,91,45,49,48,48,46,49,57,55,56,48,55,44,52,48,46,51,53,48,48,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,68,101,99,97,116,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,56,51,51,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,51,48,56,53,53,44,51,49,46,48,54,57,49,57,93,44,91,45,56,52,46,55,53,53,57,49,55,44,51,48,46,56,56,53,50,55,93,44,91,45,56,52,46,56,54,51,52,54,53,44,51,48,46,55,49,49,52,57,52,93,44,91,45,56,52,46,51,56,48,55,48,53,44,51,48,46,54,56,57,57,57,51,93,44,91,45,56,52,46,51,55,54,54,49,50,44,51,49,46,48,55,56,56,56,51,93,44,91,45,56,52,46,53,48,56,48,55,56,44,51,49,46,48,55,56,52,93,44,91,45,56,52,46,53,52,50,54,53,51,44,51,49,46,48,55,57,48,50,57,93,44,91,45,56,52,46,55,51,48,56,53,53,44,51,49,46,48,54,57,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,54,49,51,44,34,98,101,100,115,34,58,51,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,48,49,52,55,51,44,52,48,46,48,48,52,53,50,49,93,44,91,45,56,53,46,50,50,49,49,49,56,44,51,57,46,55,56,56,52,52,57,93,44,91,45,56,53,46,49,56,53,48,56,57,44,51,57,46,55,49,53,53,49,53,93,44,91,45,56,53,46,48,51,52,53,55,53,44,51,57,46,55,49,52,55,54,52,93,44,91,45,56,52,46,56,49,52,51,55,51,44,51,57,46,55,50,54,54,50,93,44,91,45,56,52,46,56,49,50,52,49,44,51,57,46,57,49,54,57,49,53,93,44,91,45,56,52,46,56,49,48,56,50,53,44,52,48,46,48,48,53,48,55,55,93,44,91,45,56,53,46,50,48,49,52,55,51,44,52,48,46,48,48,52,53,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,54,56,48,44,34,98,101,100,115,34,58,49,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,49,51,53,49,50,44,51,55,46,48,54,49,48,55,50,93,44,91,45,56,54,46,49,54,54,55,52,44,51,54,46,57,51,52,48,49,53,93,44,91,45,56,54,46,48,55,48,50,57,51,44,51,54,46,56,55,56,49,56,56,93,44,91,45,56,54,46,48,54,57,57,53,55,44,51,54,46,56,48,53,55,56,51,93,44,91,45,56,53,46,57,55,54,57,49,44,51,54,46,55,50,50,55,50,50,93,44,91,45,56,53,46,55,51,57,50,53,53,44,51,54,46,56,52,49,52,55,54,93,44,91,45,56,53,46,55,52,52,50,50,49,44,51,55,46,49,54,57,56,49,51,93,44,91,45,56,53,46,57,48,54,51,51,54,44,51,55,46,49,52,56,51,55,55,93,44,91,45,56,54,46,48,53,54,52,52,51,44,51,55,46,49,54,55,50,48,56,93,44,91,45,56,54,46,49,49,51,53,49,50,44,51,55,46,48,54,49,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,48,53,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,52,52,51,51,44,52,49,46,51,57,52,49,55,56,93,44,91,45,57,56,46,55,52,56,53,50,54,44,52,49,46,48,52,54,54,52,93,44,91,45,57,56,46,55,50,49,57,55,53,44,52,49,46,48,52,54,54,55,52,93,44,91,45,57,56,46,50,56,55,49,54,56,44,52,49,46,48,52,54,51,54,51,93,44,91,45,57,56,46,50,56,54,53,56,52,44,52,49,46,51,57,51,56,57,56,93,44,91,45,57,56,46,50,57,49,52,49,57,44,52,49,46,51,57,51,56,57,52,93,44,91,45,57,56,46,55,52,52,51,51,44,52,49,46,51,57,52,49,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,68,117,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,52,50,50,54,54,44,52,55,46,56,50,51,55,49,51,93,44,91,45,49,48,50,46,54,52,50,54,54,57,44,52,55,46,54,55,52,48,49,50,93,44,91,45,49,48,51,46,48,57,57,54,55,44,52,55,46,54,55,52,53,49,56,93,44,91,45,49,48,51,46,48,57,57,49,57,55,44,52,55,46,51,50,56,55,49,52,93,44,91,45,49,48,51,46,48,51,50,51,54,54,44,52,55,46,51,50,56,54,56,54,93,44,91,45,49,48,51,46,48,51,50,54,56,49,44,52,54,46,57,56,48,53,56,93,44,91,45,49,48,50,46,53,50,53,51,54,52,44,52,54,46,57,56,49,50,56,56,93,44,91,45,49,48,50,46,49,52,52,55,55,49,44,52,55,46,48,49,48,51,48,55,93,44,91,45,49,48,50,46,49,52,52,52,53,51,44,52,55,46,51,50,56,48,55,57,93,44,91,45,49,48,50,46,50,48,53,53,53,54,44,52,55,46,51,50,56,48,55,49,93,44,91,45,49,48,50,46,50,48,53,51,53,44,52,55,46,53,55,52,53,48,54,93,44,91,45,49,48,50,46,50,54,53,52,53,50,44,52,55,46,54,50,52,51,48,55,93,44,91,45,49,48,50,46,50,54,48,57,53,49,44,52,55,46,55,56,49,52,48,57,93,44,91,45,49,48,50,46,51,56,53,55,53,56,44,52,55,46,55,53,56,48,48,56,93,44,91,45,49,48,50,46,54,52,50,50,54,54,44,52,55,46,56,50,51,55,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,109,97,100,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,50,57,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,48,50,55,53,48,55,44,51,56,46,53,48,56,50,57,50,93,44,91,45,49,50,49,46,48,50,55,48,56,52,44,51,56,46,51,48,48,50,53,50,93,44,91,45,49,50,48,46,57,57,53,52,57,55,44,51,56,46,50,50,53,52,48,50,93,44,91,45,49,50,48,46,54,52,54,54,49,51,44,51,56,46,51,51,52,53,56,54,93,44,91,45,49,50,48,46,53,48,52,54,52,44,51,56,46,52,51,57,51,55,56,93,44,91,45,49,50,48,46,48,55,50,52,56,52,44,51,56,46,53,48,57,56,54,57,93,44,91,45,49,50,48,46,48,55,50,51,57,50,44,51,56,46,55,48,50,55,54,55,93,44,91,45,49,50,48,46,50,55,52,53,50,50,44,51,56,46,53,53,57,52,53,50,93,44,91,45,49,50,48,46,54,50,56,52,50,56,44,51,56,46,53,48,51,50,48,52,93,44,91,45,49,50,48,46,56,50,51,50,56,51,44,51,56,46,53,53,57,54,56,55,93,44,91,45,49,50,49,46,48,50,55,53,48,55,44,51,56,46,53,48,56,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,70,101,110,116,114,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,50,48,52,52,53,44,51,54,46,52,48,55,49,54,52,93,44,91,45,56,53,46,48,56,50,52,57,55,44,51,54,46,49,57,54,49,55,49,93,44,91,45,56,53,46,49,49,57,53,56,51,44,51,54,46,49,52,52,55,49,57,93,44,91,45,56,53,46,49,48,48,50,49,51,44,51,54,46,49,51,56,53,54,49,93,44,91,45,56,52,46,57,48,55,55,53,51,44,51,54,46,49,53,54,50,57,51,93,44,91,45,56,52,46,56,54,54,49,48,52,44,51,54,46,50,57,50,57,50,56,93,44,91,45,56,52,46,55,48,48,55,56,53,44,51,54,46,51,55,48,56,50,52,93,44,91,45,56,52,46,55,51,49,56,51,57,44,51,54,46,53,50,52,54,55,52,93,44,91,45,56,52,46,57,52,51,49,52,52,44,51,54,46,53,56,49,50,55,93,44,91,45,56,53,46,48,52,51,57,50,52,44,51,54,46,53,53,56,55,57,49,93,44,91,45,56,53,46,49,50,48,52,52,53,44,51,54,46,52,48,55,49,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,102,102,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,57,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,53,48,50,56,50,44,51,56,46,52,51,52,49,48,53,93,44,91,45,57,53,46,57,53,56,56,54,50,44,51,56,46,49,55,48,57,51,57,93,44,91,45,57,53,46,57,53,57,48,52,54,44,51,56,46,48,52,48,49,57,53,93,44,91,45,57,53,46,53,49,56,57,55,44,51,56,46,48,51,56,50,51,93,44,91,45,57,53,46,53,48,56,51,50,56,44,51,56,46,51,57,48,50,55,56,93,44,91,45,57,53,46,53,48,56,50,54,55,44,51,56,46,52,51,51,57,51,51,93,44,91,45,57,53,46,57,53,48,50,56,50,44,51,56,46,52,51,52,49,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,114,97,110,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,53,56,52,44,34,98,101,100,115,34,58,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,57,51,54,50,54,44,52,50,46,48,55,49,53,53,51,93,44,91,45,56,53,46,50,57,50,49,55,57,44,52,49,46,55,53,57,56,56,57,93,44,91,45,56,53,46,49,57,54,55,55,52,44,52,49,46,55,53,57,54,52,52,93,44,91,45,56,52,46,56,50,53,49,51,44,52,49,46,55,53,57,57,57,57,93,44,91,45,56,52,46,56,50,54,52,57,49,44,52,50,46,48,55,50,52,54,56,93,44,91,45,56,53,46,50,57,51,54,50,54,44,52,50,46,48,55,49,53,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,97,109,112,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,49,55,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,53,55,57,53,53,44,51,55,46,51,53,53,56,49,54,93,44,91,45,55,57,46,52,52,50,56,53,57,44,51,55,46,48,53,53,56,54,55,93,44,91,45,55,57,46,51,51,50,49,54,49,44,51,55,46,49,50,53,53,54,56,93,44,91,45,55,57,46,48,57,50,50,54,52,44,51,55,46,48,54,49,52,57,56,93,44,91,45,55,56,46,57,48,52,53,56,55,44,51,55,46,48,50,50,50,56,56,93,44,91,45,55,56,46,56,50,52,50,48,57,44,51,55,46,50,48,53,51,54,49,93,44,91,45,55,56,46,57,50,54,52,54,44,51,55,46,50,55,55,48,55,49,93,44,91,45,55,57,46,48,50,49,54,56,55,44,51,55,46,52,50,57,50,52,51,93,44,91,45,55,57,46,48,56,53,49,50,51,44,51,55,46,51,57,52,56,55,53,93,44,91,45,55,57,46,50,53,55,57,53,53,44,51,55,46,51,53,53,56,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,77,101,105,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,54,56,53,56,51,44,51,57,46,50,48,51,55,54,93,44,91,45,56,50,46,51,50,50,56,55,52,44,51,57,46,48,50,55,54,55,52,93,44,91,45,56,50,46,48,57,53,52,54,53,44,51,57,46,48,48,50,55,55,56,93,44,91,45,56,50,46,48,57,56,57,54,53,44,51,56,46,57,53,56,51,55,56,93,44,91,45,56,50,46,48,48,53,57,57,44,51,57,46,48,50,57,51,56,55,93,44,91,45,56,49,46,57,48,48,53,57,53,44,51,56,46,57,51,55,54,55,49,93,44,91,45,56,49,46,57,48,56,54,52,53,44,51,56,46,56,55,56,52,54,93,44,91,45,56,49,46,55,56,49,56,50,44,51,56,46,57,54,52,57,51,53,93,44,91,45,56,49,46,55,52,55,50,53,52,44,51,57,46,48,57,53,51,55,57,93,44,91,45,56,49,46,55,53,54,48,56,44,51,57,46,49,56,48,53,54,93,44,91,45,56,50,46,50,54,56,53,56,51,44,51,57,46,50,48,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,78,105,99,104,111,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,50,52,44,34,98,101,100,115,34,58,49,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,56,49,50,51,50,44,51,56,46,53,48,55,48,52,53,93,44,91,45,56,48,46,57,49,49,51,54,49,44,51,56,46,52,49,52,55,56,53,93,44,91,45,56,49,46,50,51,49,52,51,52,44,51,56,46,50,54,51,55,49,54,93,44,91,45,56,49,46,50,51,49,54,51,54,44,51,56,46,50,54,51,53,49,52,93,44,91,45,56,49,46,48,55,53,48,51,57,44,51,56,46,49,57,54,49,51,54,93,44,91,45,56,48,46,57,56,51,52,55,50,44,51,56,46,50,50,50,53,52,93,44,91,45,56,48,46,56,56,50,49,56,55,44,51,56,46,49,48,51,52,53,55,93,44,91,45,56,48,46,55,49,49,57,54,49,44,51,56,46,48,55,57,49,50,57,93,44,91,45,56,48,46,52,51,54,53,49,52,44,51,56,46,50,54,55,51,51,52,93,44,91,45,56,48,46,54,48,57,51,55,56,44,51,56,46,51,53,56,54,48,54,93,44,91,45,56,48,46,54,53,48,55,56,54,44,51,56,46,53,50,54,53,57,93,44,91,45,56,48,46,55,56,53,49,55,55,44,51,56,46,53,53,55,54,52,57,93,44,91,45,56,48,46,56,56,49,50,51,50,44,51,56,46,53,48,55,48,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,49,49,49,57,56,53,44,51,54,46,57,57,56,48,57,51,93,44,91,45,57,56,46,49,48,52,50,56,54,44,51,54,46,53,57,51,53,55,56,93,44,91,45,57,55,46,52,54,50,52,53,57,44,51,54,46,53,57,51,54,50,55,93,44,91,45,57,55,46,52,54,50,51,52,54,44,51,54,46,57,57,56,55,48,49,93,44,91,45,57,55,46,56,48,50,51,49,51,44,51,54,46,57,57,56,55,49,56,93,44,91,45,57,56,46,49,49,49,57,56,53,44,51,54,46,57,57,56,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,112,105,110,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,49,55,55,53,57,44,52,53,46,50,52,51,55,51,50,93,44,91,45,57,56,46,55,49,54,52,57,56,44,52,52,46,56,57,54,57,50,53,93,44,91,45,57,56,46,55,48,53,55,54,50,44,52,52,46,54,51,52,49,53,57,93,44,91,45,57,55,46,57,55,55,55,57,49,44,52,52,46,54,51,49,54,48,50,93,44,91,45,57,55,46,57,56,49,55,57,50,44,52,53,46,49,53,51,50,57,53,93,44,91,45,57,55,46,57,56,49,52,53,55,44,52,53,46,50,52,48,52,49,53,93,44,91,45,57,56,46,55,49,55,55,53,57,44,52,53,46,50,52,51,55,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,87,105,110,100,115,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,50,55,44,34,98,101,100,115,34,58,49,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,57,53,56,56,53,51,44,52,51,46,56,50,54,53,52,50,93,44,91,45,55,50,46,55,56,50,56,49,50,44,52,51,46,56,48,52,51,51,56,93,44,91,45,55,50,46,56,50,48,48,52,51,44,52,51,46,55,49,54,56,51,52,93,44,91,45,55,50,46,55,48,48,57,52,53,44,52,51,46,54,56,50,56,51,49,93,44,91,45,55,50,46,55,56,56,57,56,55,44,52,51,46,53,48,48,48,55,93,44,91,45,55,50,46,55,53,57,55,57,57,44,52,51,46,51,53,52,49,52,52,93,44,91,45,55,50,46,56,54,55,57,48,50,44,52,51,46,51,48,48,55,52,50,93,44,91,45,55,50,46,56,49,57,51,54,56,44,52,51,46,50,53,53,52,57,56,93,44,91,45,55,50,46,54,56,53,54,51,55,44,52,51,46,50,50,50,52,57,53,93,44,91,45,55,50,46,52,51,52,54,52,53,44,52,51,46,50,51,51,51,49,49,93,44,91,45,55,50,46,51,55,51,56,44,52,51,46,53,55,57,49,49,57,93,44,91,45,55,50,46,51,50,57,56,57,57,44,52,51,46,54,48,48,50,49,52,93,44,91,45,55,50,46,51,48,53,49,51,51,44,52,51,46,54,57,53,51,50,49,93,44,91,45,55,50,46,50,48,53,50,49,57,44,52,51,46,55,55,48,57,54,52,93,44,91,45,55,50,46,55,56,51,50,48,56,44,52,51,46,57,50,56,57,54,55,93,44,91,45,55,50,46,55,57,49,51,51,54,44,52,51,46,57,54,49,56,53,53,93,44,91,45,55,50,46,57,53,51,48,56,51,44,52,51,46,56,55,52,56,55,93,44,91,45,55,50,46,57,53,56,56,53,51,44,52,51,46,56,50,54,53,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,53,53,34,44,34,78,65,77,69,34,58,34,84,114,105,110,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,50,55,52,56,44,51,48,46,56,53,57,53,52,55,93,44,91,45,57,53,46,50,48,48,49,56,44,51,48,46,56,50,52,53,54,54,93,44,91,45,57,52,46,57,51,57,49,50,55,44,51,49,46,48,52,50,48,52,56,93,44,91,45,57,52,46,56,52,50,57,52,55,44,51,49,46,49,52,54,53,55,56,93,44,91,45,57,52,46,56,57,57,48,49,55,44,51,49,46,51,50,54,57,55,50,93,44,91,45,57,52,46,57,53,56,49,49,44,51,49,46,51,56,54,57,51,93,44,91,45,57,53,46,52,51,52,55,56,49,44,51,49,46,48,53,56,48,57,56,93,44,91,45,57,53,46,52,51,52,51,51,53,44,51,48,46,57,51,55,52,48,53,93,44,91,45,57,53,46,51,50,55,52,56,44,51,48,46,56,53,57,53,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,101,114,110,97,108,105,108,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,55,54,57,50,44,34,98,101,100,115,34,58,50,48,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,48,54,54,53,54,50,44,51,52,46,57,53,55,49,57,93,44,91,45,49,48,55,46,48,50,52,52,56,49,44,51,52,46,56,54,57,57,53,51,93,44,91,45,49,48,54,46,55,50,48,54,54,54,44,51,52,46,56,55,48,48,53,51,93,44,91,45,49,48,54,46,54,56,53,56,48,49,44,51,52,46,57,48,54,51,53,56,93,44,91,45,49,48,54,46,52,50,57,52,56,54,44,51,52,46,57,48,51,52,93,44,91,45,49,48,54,46,52,49,49,55,56,49,44,51,52,46,56,55,48,50,53,50,93,44,91,45,49,48,54,46,49,52,57,55,51,55,44,51,52,46,56,55,48,49,52,50,93,44,91,45,49,48,54,46,50,52,51,55,54,50,44,51,52,46,57,53,51,51,53,53,93,44,91,45,49,48,54,46,50,52,51,56,55,52,44,51,53,46,48,52,48,48,48,51,93,44,91,45,49,48,54,46,50,52,52,50,49,54,44,51,53,46,50,49,53,54,53,55,93,44,91,45,49,48,55,46,49,57,55,50,52,52,44,51,53,46,50,49,57,52,53,57,93,44,91,45,49,48,55,46,48,54,54,53,54,50,44,51,52,46,57,53,55,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,53,34,44,34,78,65,77,69,34,58,34,77,105,116,99,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,52,49,49,50,52,44,51,49,46,52,52,48,49,55,57,93,44,91,45,56,52,46,49,57,55,57,56,54,44,51,49,46,51,53,55,53,50,49,93,44,91,45,56,52,46,51,52,48,53,53,50,44,51,49,46,51,48,53,51,52,49,93,44,91,45,56,52,46,53,48,56,48,55,56,44,51,49,46,48,55,56,52,93,44,91,45,56,52,46,51,55,54,54,49,50,44,51,49,46,48,55,56,56,56,51,93,44,91,45,56,52,46,49,49,54,54,52,52,44,51,49,46,48,55,55,57,55,49,93,44,91,45,56,52,46,48,48,51,54,50,55,44,51,49,46,48,55,55,50,57,93,44,91,45,56,51,46,57,57,57,52,51,44,51,49,46,51,51,52,57,54,54,93,44,91,45,56,51,46,57,57,55,55,57,54,44,51,49,46,52,52,51,55,53,51,93,44,91,45,56,52,46,49,52,49,49,50,52,44,51,49,46,52,52,48,49,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,72,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,54,53,56,44,34,98,101,100,115,34,58,53,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,53,46,52,51,50,56,54,50,44,50,48,46,49,52,53,50,48,55,93,44,91,45,49,53,53,46,53,55,56,55,54,56,44,50,48,46,49,56,48,49,52,55,93,44,91,45,49,53,53,46,55,53,49,52,54,52,44,50,48,46,50,57,52,52,55,93,44,91,45,49,53,53,46,56,51,54,55,56,51,44,50,48,46,51,50,49,50,50,54,93,44,91,45,49,53,53,46,57,52,55,57,54,50,44,50,48,46,50,54,49,54,53,50,93,44,91,45,49,53,53,46,57,53,55,55,49,57,44,50,48,46,49,54,55,54,49,52,93,44,91,45,49,53,53,46,56,56,52,51,49,49,44,50,48,46,48,49,56,51,50,55,93,44,91,45,49,53,53,46,57,54,50,52,50,55,44,49,57,46,57,48,57,49,53,50,93,44,91,45,49,53,54,46,49,48,55,50,52,44,49,57,46,55,57,48,52,48,50,93,44,91,45,49,53,54,46,49,49,57,48,55,53,44,49,57,46,55,49,57,51,48,49,93,44,91,45,49,53,54,46,48,51,53,56,57,53,44,49,57,46,53,57,55,57,54,49,93,44,91,45,49,53,53,46,57,52,51,50,49,51,44,49,57,46,51,52,52,50,50,55,93,44,91,45,49,53,53,46,57,55,52,48,52,49,44,49,57,46,49,48,55,55,56,57,93,44,91,45,49,53,53,46,57,50,53,57,51,49,44,49,57,46,48,48,56,49,53,52,93,44,91,45,49,53,53,46,55,51,57,57,55,49,44,49,56,46,57,49,54,56,57,49,93,44,91,45,49,53,53,46,54,57,52,50,53,55,44,49,56,46,56,54,54,55,56,54,93,44,91,45,49,53,53,46,53,54,53,54,44,49,56,46,57,51,52,53,49,55,93,44,91,45,49,53,53,46,52,57,52,56,55,56,44,49,57,46,48,55,49,53,56,54,93,44,91,45,49,53,53,46,50,53,56,48,49,53,44,49,57,46,50,50,50,49,55,49,93,44,91,45,49,53,53,46,49,56,50,48,57,56,44,49,57,46,50,48,57,57,53,52,93,44,91,45,49,53,52,46,57,51,57,54,54,51,44,49,57,46,51,49,50,56,51,52,93,44,91,45,49,53,52,46,55,55,53,55,53,49,44,49,57,46,52,53,55,49,49,51,93,44,91,45,49,53,52,46,55,53,57,51,51,51,44,49,57,46,53,51,54,52,54,50,93,44,91,45,49,53,52,46,57,50,56,57,51,53,44,49,57,46,54,55,51,54,48,53,93,44,91,45,49,53,53,46,48,51,49,54,50,44,49,57,46,56,55,53,93,44,91,45,49,53,53,46,49,52,48,51,51,44,49,57,46,57,56,57,52,56,49,93,44,91,45,49,53,53,46,52,51,50,56,54,50,44,50,48,46,49,52,53,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,77,99,67,114,101,97,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,55,56,49,53,56,44,51,54,46,56,54,55,49,51,51,93,44,91,45,56,52,46,55,55,56,52,53,52,44,51,54,46,54,48,51,50,57,93,44,91,45,56,52,46,50,54,49,51,51,55,44,51,54,46,53,57,49,55,56,52,93,44,91,45,56,52,46,50,50,55,50,57,50,44,51,54,46,53,57,50,48,52,53,93,44,91,45,56,52,46,51,53,48,48,48,54,44,51,54,46,55,56,48,54,56,49,93,44,91,45,56,52,46,50,57,55,52,49,54,44,51,54,46,57,52,53,57,51,49,93,44,91,45,56,52,46,51,53,56,48,50,52,44,51,54,46,57,53,57,52,93,44,91,45,56,52,46,53,55,56,49,53,56,44,51,54,46,56,54,55,49,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,80,101,110,100,108,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,51,50,50,56,56,44,51,56,46,55,57,49,57,51,55,93,44,91,45,56,52,46,52,55,54,50,57,57,44,51,56,46,53,52,50,55,50,51,93,44,91,45,56,52,46,50,48,53,51,52,54,44,51,56,46,53,56,50,48,51,57,93,44,91,45,56,52,46,50,51,48,52,49,49,44,51,56,46,56,50,55,52,51,55,93,44,91,45,56,52,46,50,51,49,57,49,55,44,51,56,46,56,55,52,56,54,54,93,44,91,45,56,52,46,52,49,56,49,48,55,44,51,56,46,56,48,54,53,57,54,93,44,91,45,56,52,46,53,51,50,50,56,56,44,51,56,46,55,57,49,57,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,53,34,44,34,78,65,77,69,34,58,34,83,112,101,110,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,48,49,54,52,54,44,51,56,46,48,51,55,50,55,93,44,91,45,56,53,46,52,50,52,48,53,52,44,51,56,46,49,52,55,52,51,56,93,44,91,45,56,53,46,52,50,56,56,51,44,51,56,46,49,49,56,51,56,51,93,44,91,45,56,53,46,52,56,57,50,48,50,44,51,55,46,57,57,48,54,53,52,93,44,91,45,56,53,46,51,57,57,56,55,49,44,51,55,46,57,51,57,57,53,54,93,44,91,45,56,53,46,49,54,55,56,51,52,44,51,55,46,57,55,49,56,48,57,93,44,91,45,56,53,46,49,48,49,54,52,54,44,51,56,46,48,51,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,72,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,51,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,52,56,57,53,53,44,52,57,46,48,48,48,50,57,50,93,44,91,45,49,49,48,46,55,52,51,48,54,52,44,52,56,46,57,57,56,54,48,54,93,44,91,45,49,49,48,46,55,53,53,56,55,51,44,52,56,46,50,49,57,54,48,49,93,44,91,45,49,49,48,46,54,50,53,52,48,57,44,52,56,46,51,48,54,52,55,57,93,44,91,45,49,48,57,46,56,52,53,57,51,50,44,52,56,46,51,48,53,57,55,49,93,44,91,45,49,48,57,46,55,50,54,57,52,51,44,52,56,46,50,50,49,53,50,53,93,44,91,45,49,48,57,46,55,50,54,57,49,52,44,52,56,46,49,51,50,56,53,57,93,44,91,45,49,48,57,46,53,51,52,50,57,53,44,52,56,46,49,51,52,53,54,52,93,44,91,45,49,48,57,46,53,49,56,55,56,44,52,56,46,51,57,52,55,50,54,93,44,91,45,49,48,57,46,52,54,52,51,49,56,44,52,56,46,52,53,50,54,51,56,93,44,91,45,49,48,57,46,53,48,53,51,51,51,44,52,56,46,53,54,55,57,49,93,44,91,45,49,48,57,46,52,56,57,53,53,44,52,57,46,48,48,48,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,86,97,108,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,50,52,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,49,50,48,49,54,44,52,49,46,55,52,48,54,49,51,93,44,91,45,57,57,46,50,48,51,50,54,49,44,52,49,46,51,57,52,49,52,93,44,91,45,57,56,46,55,53,49,53,53,56,44,52,49,46,51,57,52,48,56,52,93,44,91,45,57,56,46,55,53,50,50,50,53,44,52,49,46,55,52,48,51,55,50,93,44,91,45,57,56,46,55,53,57,49,51,51,44,52,49,46,55,52,48,51,56,50,93,44,91,45,57,57,46,50,49,50,48,49,54,44,52,49,46,55,52,48,54,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,67,97,115,116,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,56,55,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,53,50,53,49,56,52,44,51,52,46,55,52,54,57,51,49,93,44,91,45,49,48,50,46,53,50,53,54,51,49,44,51,52,46,51,49,51,48,51,52,93,44,91,45,49,48,50,46,48,57,48,52,49,53,44,51,52,46,51,49,51,49,51,50,93,44,91,45,49,48,49,46,57,57,56,48,50,44,51,52,46,51,49,51,48,51,57,93,44,91,45,49,48,49,46,57,57,56,52,57,51,44,51,52,46,55,52,56,49,57,93,44,91,45,49,48,50,46,49,54,56,56,51,57,44,51,52,46,55,52,55,52,49,55,93,44,91,45,49,48,50,46,53,50,53,49,56,52,44,51,52,46,55,52,54,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,56,49,49,44,34,98,101,100,115,34,58,51,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,50,50,49,49,44,51,57,46,54,49,57,54,53,55,93,44,91,45,55,55,46,56,56,57,49,51,53,44,51,57,46,53,57,55,52,53,51,93,44,91,45,55,55,46,56,50,53,53,55,50,44,51,57,46,52,57,51,50,56,57,93,44,91,45,55,55,46,55,49,57,53,49,57,44,51,57,46,51,50,49,51,49,52,93,44,91,45,55,55,46,54,55,55,49,54,52,44,51,57,46,51,50,52,53,51,52,93,44,91,45,55,55,46,53,55,48,49,56,50,44,51,57,46,54,49,57,57,57,56,93,44,91,45,55,55,46,52,54,57,49,52,53,44,51,57,46,55,50,48,48,49,56,93,44,91,45,55,56,46,48,57,57,52,48,51,44,51,57,46,55,50,50,48,57,57,93,44,91,45,55,56,46,51,52,50,56,51,52,44,51,57,46,55,50,50,50,54,51,93,44,91,45,55,56,46,51,51,51,56,49,57,44,51,57,46,54,51,54,55,54,50,93,44,91,45,55,56,46,49,55,49,53,52,57,44,51,57,46,54,57,53,54,52,51,93,44,91,45,55,56,46,48,50,50,49,49,44,51,57,46,54,49,57,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,76,101,116,99,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,55,54,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,51,50,54,57,51,44,51,55,46,50,55,49,53,48,50,93,44,91,45,56,51,46,48,48,48,49,52,50,44,51,55,46,49,57,53,55,49,93,44,91,45,56,51,46,49,50,50,48,57,44,51,55,46,48,48,48,57,57,55,93,44,91,45,56,50,46,57,51,57,52,54,54,44,51,55,46,48,49,53,53,50,93,44,91,45,56,50,46,56,54,57,49,57,50,44,51,54,46,57,55,52,49,56,54,93,44,91,45,56,50,46,55,52,50,55,53,57,44,51,55,46,48,52,50,55,57,54,93,44,91,45,56,50,46,55,49,53,49,52,57,44,51,55,46,49,50,49,56,52,56,93,44,91,45,56,50,46,53,54,53,51,55,57,44,51,55,46,49,57,54,48,57,57,93,44,91,45,56,50,46,55,51,50,54,57,51,44,51,55,46,50,55,49,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,83,97,108,101,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,51,51,54,44,34,98,101,100,115,34,58,50,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,52,48,53,52,56,57,44,51,57,46,55,57,54,51,54,56,93,44,91,45,55,53,46,53,53,56,55,55,51,44,51,57,46,54,50,57,57,56,55,93,44,91,45,55,53,46,53,49,50,55,55,44,51,57,46,53,55,56,50,57,93,44,91,45,55,53,46,53,54,48,53,51,56,44,51,57,46,52,53,53,54,52,53,93,44,91,45,55,53,46,52,56,49,51,54,44,51,57,46,51,56,55,53,53,53,93,44,91,45,55,53,46,52,52,52,55,53,49,44,51,57,46,51,53,53,48,56,57,93,44,91,45,55,53,46,50,51,56,52,51,52,44,51,57,46,53,53,57,48,51,57,93,44,91,45,55,53,46,48,56,51,56,50,51,44,51,57,46,52,53,55,51,53,52,93,44,91,45,55,53,46,48,54,49,56,53,52,44,51,57,46,53,54,56,55,52,54,93,44,91,45,55,53,46,49,57,57,55,57,51,44,51,57,46,54,54,54,57,57,54,93,44,91,45,55,53,46,51,54,55,50,51,57,44,51,57,46,55,49,55,53,54,53,93,44,91,45,55,53,46,52,48,53,52,56,57,44,51,57,46,55,57,54,51,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,56,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,56,48,34,44,34,78,65,77,69,34,58,34,76,121,110,99,104,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,49,51,49,44,34,98,101,100,115,34,58,51,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,49,56,53,55,48,50,44,51,55,46,52,54,53,56,50,93,44,91,45,55,57,46,50,53,55,57,53,53,44,51,55,46,51,53,53,56,49,54,93,44,91,45,55,57,46,48,56,53,49,50,51,44,51,55,46,51,57,52,56,55,53,93,44,91,45,55,57,46,49,56,53,55,48,50,44,51,55,46,52,54,53,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,48,48,57,44,34,98,101,100,115,34,58,50,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,55,53,49,55,56,44,51,52,46,55,55,49,56,57,50,93,44,91,45,57,50,46,57,54,57,50,53,44,51,52,46,55,55,50,50,54,54,93,44,91,45,57,50,46,57,55,57,57,48,50,44,51,52,46,54,51,55,50,50,50,93,44,91,45,57,50,46,56,48,56,48,50,56,44,51,52,46,53,57,48,52,48,54,93,44,91,45,57,50,46,55,57,51,49,57,55,44,51,52,46,53,48,51,54,48,54,93,44,91,45,57,50,46,54,54,56,55,49,49,44,51,52,46,52,49,52,50,51,55,93,44,91,45,57,50,46,53,56,57,52,49,56,44,51,52,46,52,53,53,54,52,49,93,44,91,45,57,50,46,52,48,52,54,56,44,51,52,46,52,53,49,57,49,54,93,44,91,45,57,50,46,50,52,53,56,49,56,44,51,52,46,52,57,51,53,48,54,93,44,91,45,57,50,46,51,52,56,55,52,57,44,51,52,46,53,56,50,50,57,93,44,91,45,57,50,46,54,53,52,51,50,52,44,51,52,46,55,54,52,53,52,49,93,44,91,45,57,50,46,55,51,57,55,55,57,44,51,52,46,56,53,51,52,53,57,93,44,91,45,57,51,46,48,55,51,56,55,55,44,51,52,46,56,53,56,48,57,49,93,44,91,45,57,51,46,48,55,53,49,55,56,44,51,52,46,55,55,49,56,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,51,57,44,34,98,101,100,115,34,58,50,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,48,56,54,52,53,44,51,56,46,56,55,56,52,54,93,44,91,45,56,49,46,57,48,48,53,57,53,44,51,56,46,57,51,55,54,55,49,93,44,91,45,56,50,46,48,48,53,57,57,44,51,57,46,48,50,57,51,56,55,93,44,91,45,56,50,46,48,57,56,57,54,53,44,51,56,46,57,53,56,51,55,56,93,44,91,45,56,50,46,49,52,52,49,54,55,44,51,56,46,56,52,49,56,56,93,44,91,45,56,50,46,50,50,49,53,54,54,44,51,56,46,55,56,55,49,56,55,93,44,91,45,56,50,46,49,55,49,57,54,54,44,51,56,46,54,50,53,51,56,52,93,44,91,45,56,50,46,50,49,56,57,54,55,44,51,56,46,53,57,49,54,56,51,93,44,91,45,56,50,46,48,53,53,49,50,55,44,51,56,46,52,55,52,53,52,55,93,44,91,45,56,50,46,48,54,52,53,54,50,44,51,56,46,54,48,55,57,56,53,93,44,91,45,56,49,46,57,53,53,55,57,49,44,51,56,46,54,53,55,51,53,53,93,44,91,45,56,49,46,55,55,50,56,52,51,44,51,56,46,54,56,48,56,52,51,93,44,91,45,56,49,46,57,48,56,54,52,53,44,51,56,46,56,55,56,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,71,105,108,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,51,51,54,51,50,44,51,57,46,48,48,57,53,56,52,93,44,91,45,56,48,46,57,56,52,57,53,44,51,56,46,55,49,55,56,57,56,93,44,91,45,56,48,46,55,48,49,53,50,50,44,51,56,46,56,55,57,48,52,53,93,44,91,45,56,48,46,54,48,53,55,57,57,44,51,56,46,57,48,52,49,54,55,93,44,91,45,56,48,46,55,49,54,56,49,53,44,51,57,46,48,48,56,52,51,93,44,91,45,56,48,46,55,50,56,51,50,54,44,51,57,46,48,57,53,54,55,57,93,44,91,45,56,48,46,56,49,50,57,55,44,51,57,46,49,48,57,52,48,49,93,44,91,45,56,49,46,48,51,51,54,51,50,44,51,57,46,48,48,57,53,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,52,54,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,52,56,49,52,52,44,51,49,46,56,54,57,56,52,56,93,44,91,45,57,49,46,51,52,53,50,49,52,44,51,49,46,56,52,51,56,54,49,93,44,91,45,57,49,46,51,49,55,56,54,52,44,51,49,46,55,52,57,55,54,54,93,44,91,45,57,49,46,50,57,53,53,55,44,51,49,46,54,54,57,56,55,93,44,91,45,57,49,46,49,53,51,56,54,52,44,51,49,46,54,49,48,48,54,56,93,44,91,45,57,48,46,55,51,55,51,51,44,51,49,46,54,49,49,49,50,52,93,44,91,45,57,48,46,55,51,54,56,50,52,44,51,49,46,54,57,56,52,57,49,93,44,91,45,57,48,46,55,51,54,50,56,50,44,51,49,46,55,56,54,49,51,52,93,44,91,45,57,49,46,48,49,51,54,55,54,44,51,49,46,56,54,49,56,53,50,93,44,91,45,57,49,46,50,52,56,49,52,52,44,51,49,46,56,54,57,56,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,82,111,108,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,54,48,51,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,56,50,54,48,56,44,52,56,46,57,57,57,50,48,52,93,44,91,45,49,48,48,46,49,56,51,48,51,52,44,52,56,46,55,49,56,57,48,57,93,44,91,45,49,48,48,46,49,52,53,56,53,56,44,52,56,46,53,52,53,50,49,49,93,44,91,45,57,57,46,52,57,51,49,56,57,44,52,56,46,53,52,52,56,51,52,93,44,91,45,57,57,46,53,50,53,56,57,53,44,52,56,46,55,49,56,51,56,52,93,44,91,45,57,57,46,53,50,53,55,55,57,44,52,56,46,57,57,57,51,48,55,93,44,91,45,49,48,48,46,49,56,50,54,48,56,44,52,56,46,57,57,57,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,84,114,101,97,115,117,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,55,51,56,53,52,56,44,52,54,46,52,56,49,56,48,54,93,44,91,45,49,48,55,46,52,54,54,57,57,54,44,52,54,46,49,50,57,57,57,53,93,44,91,45,49,48,55,46,53,49,49,53,51,52,44,52,54,46,48,52,51,52,48,51,93,44,91,45,49,48,55,46,52,50,53,49,50,56,44,52,53,46,57,53,54,54,55,52,93,44,91,45,49,48,55,46,49,55,54,51,53,56,44,52,53,46,57,53,54,55,54,49,93,44,91,45,49,48,54,46,57,51,57,48,57,53,44,52,53,46,56,55,48,48,52,49,93,44,91,45,49,48,54,46,57,51,57,48,54,55,44,52,54,46,49,51,54,54,54,55,93,44,91,45,49,48,55,46,48,48,53,53,51,52,44,52,54,46,49,51,54,54,54,57,93,44,91,45,49,48,55,46,48,50,56,52,50,50,44,52,54,46,51,57,53,52,54,93,44,91,45,49,48,55,46,49,53,51,52,52,52,44,52,54,46,51,57,53,54,49,51,93,44,91,45,49,48,55,46,49,55,52,53,51,49,44,52,54,46,52,56,50,55,49,51,93,44,91,45,49,48,55,46,55,51,56,53,52,56,44,52,54,46,52,56,49,56,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,56,55,50,44,34,98,101,100,115,34,58,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,56,54,52,54,49,44,51,56,46,48,54,55,48,50,56,93,44,91,45,56,52,46,51,51,55,51,57,51,44,51,55,46,56,57,50,48,48,55,93,44,91,45,56,52,46,48,56,48,51,51,55,44,51,55,46,56,53,51,48,54,54,93,44,91,45,56,52,46,48,48,49,57,54,55,44,51,55,46,56,51,55,53,57,50,93,44,91,45,56,51,46,57,54,54,51,49,44,51,55,46,57,51,48,55,54,56,93,44,91,45,56,52,46,48,56,48,53,50,55,44,51,56,46,49,49,53,49,49,56,93,44,91,45,56,52,46,50,56,54,52,54,49,44,51,56,46,48,54,55,48,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,111,114,111,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,51,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,52,54,51,50,49,49,44,49,56,46,51,55,49,52,55,51,93,44,91,45,54,54,46,52,53,53,55,48,51,44,49,56,46,50,53,55,55,50,54,93,44,91,45,54,54,46,51,55,55,55,49,50,44,49,56,46,50,57,51,57,55,54,93,44,91,45,54,54,46,51,54,53,50,55,50,44,49,56,46,51,51,51,50,50,57,93,44,91,45,54,54,46,51,55,55,48,53,56,44,49,56,46,51,52,52,50,52,54,93,44,91,45,54,54,46,52,52,51,56,44,49,56,46,51,55,49,48,50,55,93,44,91,45,54,54,46,52,54,51,50,49,49,44,49,56,46,51,55,49,52,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,50,53,48,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,56,50,52,57,56,44,52,50,46,55,54,56,50,93,44,91,45,56,55,46,48,53,56,55,49,54,44,52,50,46,55,54,53,50,48,50,93,44,91,45,56,55,46,48,52,51,56,57,57,44,52,50,46,54,54,51,55,50,57,93,44,91,45,56,55,46,48,49,57,57,51,53,44,52,50,46,52,57,51,52,57,56,93,44,91,45,56,55,46,48,52,48,48,52,54,44,52,50,46,52,49,54,57,57,51,93,44,91,45,56,53,46,55,54,52,54,57,55,44,52,50,46,52,50,48,55,49,53,93,44,91,45,56,53,46,53,52,51,49,57,49,44,52,50,46,52,50,49,52,51,51,93,44,91,45,56,53,46,53,52,53,53,54,52,44,52,50,46,55,54,56,49,51,57,93,44,91,45,56,53,46,55,56,50,52,57,56,44,52,50,46,55,54,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,49,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,57,48,57,50,44,51,54,46,51,54,48,49,51,51,93,44,91,45,56,56,46,50,49,50,53,53,57,44,51,54,46,49,50,48,50,57,93,44,91,45,56,56,46,50,49,55,52,51,54,44,51,53,46,56,52,54,53,56,50,93,44,91,45,56,56,46,49,55,55,56,53,57,44,51,53,46,56,52,53,56,52,49,93,44,91,45,56,55,46,57,55,48,55,51,56,44,51,53,46,56,49,53,55,48,53,93,44,91,45,56,55,46,57,54,50,55,52,44,51,53,46,56,52,48,57,50,49,93,44,91,45,56,55,46,57,50,53,56,51,53,44,51,53,46,57,51,48,52,51,50,93,44,91,45,56,56,46,48,48,48,56,48,57,44,51,54,46,48,50,56,48,56,57,93,44,91,45,56,55,46,57,49,57,48,52,51,44,51,54,46,49,51,48,48,52,57,93,44,91,45,56,55,46,57,52,57,54,48,51,44,51,54,46,50,52,51,49,54,93,44,91,45,56,55,46,57,56,48,55,52,44,51,54,46,51,53,51,51,48,55,93,44,91,45,56,55,46,57,57,48,57,50,44,51,54,46,51,54,48,49,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,49,49,44,34,98,101,100,115,34,58,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,54,53,56,50,52,44,52,52,46,52,57,56,50,49,56,93,44,91,45,57,52,46,56,54,54,50,53,57,44,52,52,46,50,56,50,51,55,50,93,44,91,45,57,53,46,49,48,55,52,56,44,52,52,46,50,56,49,55,54,56,93,44,91,45,57,53,46,49,48,56,55,55,55,44,52,52,46,49,57,53,48,52,52,93,44,91,45,57,53,46,49,48,48,50,50,49,44,52,52,46,49,48,56,48,51,52,93,44,91,45,57,52,46,56,53,57,56,48,51,44,52,52,46,49,48,56,48,49,54,93,44,91,45,57,52,46,51,54,56,56,53,44,52,52,46,49,48,56,54,57,56,93,44,91,45,57,52,46,51,55,49,55,51,49,44,52,52,46,50,54,52,52,52,56,93,44,91,45,57,52,46,52,57,49,54,56,54,44,52,52,46,51,53,50,50,53,52,93,44,91,45,57,52,46,55,56,48,54,51,44,52,52,46,52,53,54,54,53,93,44,91,45,57,52,46,56,54,53,56,50,52,44,52,52,46,52,57,56,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,80,105,99,107,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,55,52,56,49,49,44,51,54,46,54,49,53,52,54,53,93,44,91,45,56,53,46,50,55,54,50,56,49,44,51,54,46,54,50,54,56,49,54,93,44,91,45,56,53,46,50,56,52,56,55,56,44,51,54,46,53,51,49,50,57,51,93,44,91,45,56,53,46,49,50,48,52,52,53,44,51,54,46,52,48,55,49,54,52,93,44,91,45,56,53,46,48,52,51,57,50,52,44,51,54,46,53,53,56,55,57,49,93,44,91,45,56,52,46,57,52,51,49,52,52,44,51,54,46,53,56,49,50,55,93,44,91,45,56,52,46,55,51,49,56,51,57,44,51,54,46,53,50,52,54,55,52,93,44,91,45,56,52,46,55,56,53,52,53,44,51,54,46,54,48,51,52,52,52,93,44,91,45,56,52,46,57,55,52,56,49,49,44,51,54,46,54,49,53,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,76,111,117,105,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,54,50,52,56,49,44,51,55,46,57,48,52,54,56,53,93,44,91,45,55,55,46,55,57,55,51,48,54,44,51,55,46,55,50,57,51,53,56,93,44,91,45,55,55,46,54,56,55,52,54,57,44,51,56,46,48,48,55,56,48,54,93,44,91,45,55,55,46,56,51,57,55,49,55,44,51,56,46,49,48,54,48,51,56,93,44,91,45,55,55,46,57,53,51,54,51,57,44,51,56,46,49,49,56,53,48,49,93,44,91,45,55,56,46,49,48,49,55,52,56,44,51,56,46,49,53,50,53,54,55,93,44,91,45,55,56,46,50,48,57,51,56,52,44,51,56,46,49,51,49,49,50,56,93,44,91,45,55,56,46,51,48,54,55,54,51,44,51,56,46,48,48,54,52,55,52,93,44,91,45,55,56,46,48,54,50,52,56,49,44,51,55,46,57,48,52,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,51,57,57,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,53,50,48,56,44,51,57,46,54,51,56,51,52,53,93,44,91,45,56,53,46,57,53,50,48,48,53,44,51,57,46,51,52,55,51,55,51,93,44,91,45,56,53,46,54,56,52,53,49,53,44,51,57,46,51,53,48,48,52,57,93,44,91,45,56,53,46,54,50,57,51,50,55,44,51,57,46,52,53,50,55,53,93,44,91,45,56,53,46,54,51,51,50,50,56,44,51,57,46,54,57,56,52,54,50,93,44,91,45,56,53,46,57,53,49,55,50,49,44,51,57,46,54,57,55,49,51,54,93,44,91,45,56,53,46,57,53,50,48,56,44,51,57,46,54,51,56,51,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,53,51,51,51,44,34,98,101,100,115,34,58,53,56,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,54,49,56,50,55,44,52,48,46,49,50,53,56,53,53,93,44,91,45,56,51,46,49,54,57,57,56,49,44,52,48,46,49,52,51,48,56,55,93,44,91,45,56,51,46,50,48,54,50,55,51,44,52,48,46,49,48,55,55,51,51,93,44,91,45,56,51,46,50,53,51,56,51,44,52,48,46,48,52,57,50,49,56,93,44,91,45,56,51,46,50,52,51,55,48,50,44,51,57,46,56,49,50,53,48,51,93,44,91,45,56,50,46,56,50,52,50,53,52,44,51,57,46,55,57,52,57,57,54,93,44,91,45,56,50,46,55,56,50,52,57,53,44,51,57,46,57,51,57,54,54,50,93,44,91,45,56,50,46,55,54,49,56,50,55,44,52,48,46,49,50,53,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,73,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,54,57,49,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,48,53,50,51,53,44,51,55,46,54,48,52,55,55,54,93,44,91,45,49,49,51,46,53,56,55,55,57,55,44,51,55,46,54,48,52,54,49,49,93,44,91,45,49,49,51,46,52,55,52,48,50,57,44,51,55,46,53,50,57,48,56,53,93,44,91,45,49,49,51,46,50,53,51,51,52,44,51,55,46,53,50,56,57,56,51,93,44,91,45,49,49,51,46,50,53,51,52,57,44,51,55,46,52,56,50,49,54,55,93,44,91,45,49,49,51,46,48,51,55,48,52,56,44,51,55,46,52,55,52,52,55,52,93,44,91,45,49,49,50,46,57,48,48,57,57,51,44,51,55,46,53,48,48,48,50,49,93,44,91,45,49,49,50,46,54,56,51,55,53,44,51,55,46,53,52,51,54,57,50,93,44,91,45,49,49,50,46,54,56,57,50,50,49,44,51,55,46,56,48,53,53,57,93,44,91,45,49,49,50,46,53,55,56,51,57,55,44,51,55,46,56,56,50,49,52,55,93,44,91,45,49,49,50,46,52,54,56,49,55,55,44,51,55,46,56,57,48,52,54,52,93,44,91,45,49,49,50,46,52,55,56,54,56,44,51,56,46,49,52,55,52,49,57,93,44,91,45,49,49,51,46,52,55,49,54,44,51,56,46,49,52,56,54,54,53,93,44,91,45,49,49,52,46,48,52,57,57,55,56,44,51,56,46,49,52,56,55,54,51,93,44,91,45,49,49,52,46,48,53,50,51,53,44,51,55,46,54,48,52,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,69,115,109,101,114,97,108,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,52,50,56,49,52,52,44,51,55,46,56,57,54,50,50,93,44,91,45,49,49,55,46,56,51,50,55,50,54,44,51,55,46,52,54,52,57,50,57,93,44,91,45,49,49,55,46,49,54,54,48,48,49,44,51,54,46,57,55,49,49,49,49,93,44,91,45,49,49,55,46,49,54,53,54,49,50,44,51,56,46,48,48,49,54,57,50,93,44,91,45,49,49,55,46,54,57,49,48,50,49,44,51,56,46,52,55,51,55,57,55,93,44,91,45,49,49,56,46,51,53,49,52,56,52,44,51,55,46,56,57,51,55,48,53,93,44,91,45,49,49,56,46,52,50,56,49,52,52,44,51,55,46,56,57,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,75,101,119,101,101,110,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,52,56,56,54,57,44,52,55,46,52,55,55,49,52,53,93,44,91,45,56,56,46,53,49,50,53,57,50,44,52,55,46,50,56,53,57,52,51,93,44,91,45,56,56,46,50,57,56,57,57,50,44,52,55,46,50,56,54,48,57,55,93,44,91,45,56,56,46,50,57,56,52,51,54,44,52,55,46,49,57,57,55,56,50,93,44,91,45,56,56,46,48,52,54,48,54,51,44,52,55,46,49,57,57,55,50,50,93,44,91,45,56,56,46,48,52,54,54,49,52,44,52,55,46,50,49,56,54,57,54,93,44,91,45,56,55,46,49,49,50,49,49,52,44,52,55,46,50,50,51,50,54,57,93,44,91,45,56,55,46,49,49,50,54,57,53,44,52,55,46,56,49,55,57,57,56,93,44,91,45,56,56,46,51,54,57,56,54,50,44,52,56,46,51,48,54,48,54,51,93,44,91,45,56,56,46,54,55,55,52,52,50,44,52,56,46,50,52,53,51,57,55,93,44,91,45,56,57,46,51,51,55,53,53,44,52,55,46,57,55,52,50,54,49,93,44,91,45,56,57,46,52,56,51,51,56,53,44,52,56,46,48,49,51,55,49,54,93,44,91,45,56,57,46,54,56,48,55,51,44,52,55,46,55,49,52,53,53,50,93,44,91,45,56,56,46,57,52,56,56,54,57,44,52,55,46,52,55,55,49,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,83,97,110,112,101,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,54,54,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,54,52,49,57,52,52,44,51,57,46,56,49,50,56,54,57,93,44,91,45,49,49,49,46,53,56,52,55,53,52,44,51,57,46,55,52,48,49,52,49,93,44,91,45,49,49,49,46,55,49,55,52,56,50,44,51,57,46,54,57,52,53,54,93,44,91,45,49,49,49,46,55,49,51,50,50,52,44,51,57,46,52,54,48,50,57,52,93,44,91,45,49,49,49,46,55,52,55,48,52,52,44,51,57,46,51,56,50,55,53,93,44,91,45,49,49,49,46,57,50,50,51,56,57,44,51,57,46,51,56,49,53,57,49,93,44,91,45,49,49,50,46,48,49,54,48,48,51,44,51,57,46,51,49,52,53,54,49,93,44,91,45,49,49,50,46,48,49,52,48,56,51,44,51,57,46,48,52,53,53,49,56,93,44,91,45,49,49,49,46,56,53,51,50,57,55,44,51,57,46,48,51,50,57,56,52,93,44,91,45,49,49,49,46,50,57,57,51,54,44,51,57,46,48,51,50,50,54,52,93,44,91,45,49,49,49,46,51,48,48,57,48,53,44,51,57,46,52,54,55,50,51,55,93,44,91,45,49,49,49,46,50,52,55,55,52,56,44,51,57,46,52,54,55,49,57,57,93,44,91,45,49,49,49,46,50,52,55,51,57,49,44,51,57,46,55,48,52,51,53,93,44,91,45,49,49,49,46,50,52,55,52,57,54,44,51,57,46,56,49,51,48,50,56,93,44,91,45,49,49,49,46,54,52,49,57,52,52,44,51,57,46,56,49,50,56,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,75,101,97,114,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,52,50,51,49,50,44,51,56,46,50,54,51,50,48,55,93,44,91,45,49,48,49,46,53,52,50,55,53,55,44,51,55,46,56,50,55,53,57,52,93,44,91,45,49,48,49,46,53,50,55,48,54,51,44,51,55,46,55,51,54,51,49,52,93,44,91,45,49,48,49,46,48,56,57,54,54,55,44,51,55,46,55,51,54,51,51,55,93,44,91,45,49,48,49,46,49,48,51,55,55,56,44,51,55,46,56,50,57,48,51,53,93,44,91,45,49,48,49,46,49,48,51,50,54,56,44,51,56,46,50,54,52,53,53,55,93,44,91,45,49,48,49,46,49,50,53,52,51,56,44,51,56,46,50,54,52,53,48,57,93,44,91,45,49,48,49,46,53,52,50,51,49,50,44,51,56,46,50,54,51,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,114,101,118,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,54,56,48,56,44,34,98,101,100,115,34,58,50,48,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,54,50,57,48,56,44,50,56,46,51,52,55,52,56,55,93,44,91,45,56,48,46,56,54,56,56,56,49,44,50,55,46,56,50,50,53,50,50,93,44,91,45,56,48,46,53,48,57,48,55,53,44,50,55,46,56,50,50,48,53,56,93,44,91,45,56,48,46,51,56,53,48,54,57,44,50,55,46,56,54,49,51,54,50,93,44,91,45,56,48,46,52,57,57,55,55,51,44,50,56,46,48,55,55,50,54,93,44,91,45,56,48,46,53,52,51,57,57,57,44,50,56,46,50,55,49,48,57,50,93,44,91,45,56,48,46,52,54,57,51,57,44,50,56,46,52,53,51,48,57,55,93,44,91,45,56,48,46,53,50,50,57,55,51,44,50,56,46,54,48,56,50,51,56,93,44,91,45,56,48,46,54,54,51,52,54,49,44,50,56,46,55,57,48,53,56,56,93,44,91,45,56,48,46,57,54,55,56,57,53,44,50,56,46,55,57,48,49,57,55,93,44,91,45,56,48,46,57,56,55,50,53,44,50,56,46,54,49,50,57,57,55,93,44,91,45,56,48,46,56,56,53,57,48,50,44,50,56,46,53,49,48,50,51,56,93,44,91,45,56,48,46,56,54,50,57,48,56,44,50,56,46,51,52,55,52,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,52,48,51,44,34,98,101,100,115,34,58,51,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,51,48,56,49,56,44,51,57,46,51,52,54,57,52,56,93,44,91,45,56,54,46,54,56,53,54,49,44,51,57,46,51,51,54,48,52,51,93,44,91,45,56,54,46,54,56,51,48,48,50,44,51,57,46,49,54,53,55,52,54,93,44,91,45,56,54,46,54,56,50,50,55,55,44,51,56,46,57,57,50,52,48,52,93,44,91,45,56,54,46,51,49,55,52,55,52,44,51,56,46,57,57,48,56,55,93,44,91,45,56,54,46,51,49,56,49,51,51,44,51,57,46,48,52,56,56,49,93,44,91,45,56,54,46,51,55,48,48,54,54,44,51,57,46,48,52,56,51,55,53,93,44,91,45,56,54,46,51,56,49,51,57,53,44,51,57,46,51,51,57,55,53,50,93,44,91,45,56,54,46,54,51,48,56,49,56,44,51,57,46,51,52,54,57,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,76,117,99,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,57,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,53,55,53,53,54,44,52,49,46,49,54,49,50,55,49,93,44,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,44,91,45,57,51,46,48,57,55,53,57,53,44,52,48,46,56,57,56,52,53,49,93,44,91,45,57,51,46,48,57,57,50,49,55,44,52,49,46,49,54,48,56,54,55,93,44,91,45,57,51,46,51,50,55,56,56,54,44,52,49,46,49,54,48,54,53,57,93,44,91,45,57,51,46,53,53,55,53,53,54,44,52,49,46,49,54,49,50,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,57,34,44,34,78,65,77,69,34,58,34,87,111,111,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,57,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,50,53,49,54,56,44,51,56,46,49,57,53,52,50,54,93,44,91,45,56,52,46,56,54,52,57,48,56,44,51,56,46,49,49,54,57,50,54,93,44,91,45,56,52,46,55,57,54,51,50,55,44,51,55,46,57,55,48,48,56,56,93,44,91,45,56,52,46,55,48,57,57,49,56,44,51,55,46,56,54,49,57,53,50,93,44,91,45,56,52,46,54,54,48,51,52,44,51,56,46,48,48,51,56,51,54,93,44,91,45,56,52,46,54,50,53,48,55,57,44,51,56,46,49,49,54,51,57,55,93,44,91,45,56,52,46,55,50,53,49,54,56,44,51,56,46,49,57,53,52,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,48,48,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,56,49,50,55,44,51,50,46,53,53,54,52,55,49,93,44,91,45,56,49,46,49,50,56,53,51,53,44,51,50,46,51,51,56,51,56,49,93,44,91,45,56,49,46,49,52,52,53,55,50,44,51,50,46,50,50,54,49,50,56,93,44,91,45,56,49,46,49,49,55,50,50,53,44,51,50,46,49,49,55,54,48,52,93,44,91,45,56,49,46,48,48,52,51,48,53,44,51,50,46,49,48,50,51,54,55,93,44,91,45,56,48,46,55,56,50,57,54,44,51,49,46,57,57,53,57,53,52,93,44,91,45,56,48,46,55,52,53,53,51,54,44,51,50,46,48,55,56,54,54,55,93,44,91,45,56,48,46,57,48,48,53,55,51,44,51,50,46,49,49,49,54,49,55,93,44,91,45,56,49,46,48,48,56,53,52,44,51,50,46,50,49,50,49,50,56,93,44,91,45,56,48,46,57,50,49,56,56,51,44,51,50,46,51,53,49,56,51,52,93,44,91,45,56,48,46,56,52,49,52,53,56,44,51,50,46,51,56,53,48,54,52,93,44,91,45,56,48,46,56,50,48,50,50,56,44,51,50,46,52,57,48,55,56,56,93,44,91,45,56,48,46,56,54,57,55,48,53,44,51,50,46,54,54,48,57,51,53,93,44,91,45,56,49,46,48,49,56,52,57,53,44,51,50,46,55,53,48,49,55,50,93,44,91,45,56,49,46,50,56,49,50,55,44,51,50,46,53,53,54,52,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,66,114,101,119,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,53,54,55,48,52,57,44,51,48,46,48,53,50,56,48,56,93,44,91,45,49,48,51,46,52,51,57,57,55,54,44,51,48,46,54,54,53,57,51,57,93,44,91,45,49,48,51,46,56,48,48,54,56,44,51,48,46,52,49,50,53,50,55,93,44,91,45,49,48,51,46,55,57,50,55,48,51,44,50,57,46,50,54,50,52,57,57,93,44,91,45,49,48,51,46,55,49,56,53,54,49,44,50,57,46,49,56,48,56,50,54,93,44,91,45,49,48,51,46,53,53,54,56,54,56,44,50,57,46,49,53,53,53,48,50,93,44,91,45,49,48,51,46,51,56,54,56,49,55,44,50,57,46,48,50,49,55,51,53,93,44,91,45,49,48,51,46,49,53,51,56,57,54,44,50,56,46,57,55,49,54,48,54,93,44,91,45,49,48,50,46,57,48,54,51,56,50,44,50,57,46,50,54,50,48,53,53,93,44,91,45,49,48,50,46,56,55,55,55,50,54,44,50,57,46,51,53,52,56,93,44,91,45,49,48,50,46,54,57,51,53,51,57,44,50,57,46,54,55,54,57,53,55,93,44,91,45,49,48,50,46,54,55,55,50,49,57,44,50,57,46,55,52,49,48,53,50,93,44,91,45,49,48,50,46,52,51,52,50,50,56,44,50,57,46,55,55,54,57,52,54,93,44,91,45,49,48,50,46,51,50,48,56,49,57,44,50,57,46,56,55,56,57,51,51,93,44,91,45,49,48,50,46,53,54,55,48,52,57,44,51,48,46,48,53,50,56,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,77,99,67,111,114,109,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,53,54,52,52,57,49,44,51,51,46,57,53,53,55,51,51,93,44,91,45,56,50,46,51,52,54,57,51,51,44,51,51,46,56,51,52,50,57,56,93,44,91,45,56,50,46,50,49,56,54,52,57,44,51,51,46,54,56,54,50,57,57,93,44,91,45,56,50,46,49,49,53,51,50,57,44,51,51,46,53,57,54,54,49,51,93,44,91,45,56,50,46,49,55,50,56,48,55,44,51,51,46,55,54,53,49,57,52,93,44,91,45,56,50,46,49,50,52,56,52,50,44,51,51,46,56,52,50,50,56,49,93,44,91,45,56,50,46,49,53,53,55,44,51,51,46,57,50,57,50,57,93,44,91,45,56,50,46,48,52,54,57,55,52,44,51,51,46,57,53,51,50,49,93,44,91,45,56,50,46,50,48,48,50,56,54,44,51,51,46,57,55,56,53,57,55,93,44,91,45,56,50,46,51,50,54,57,52,55,44,51,52,46,48,54,52,49,50,93,44,91,45,56,50,46,53,51,48,53,54,55,44,51,52,46,48,55,49,57,50,53,93,44,91,45,56,50,46,53,57,52,54,51,49,44,51,52,46,48,49,51,55,57,54,93,44,91,45,56,50,46,53,54,52,52,57,49,44,51,51,46,57,53,53,55,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,54,52,52,44,34,98,101,100,115,34,58,49,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,49,49,54,57,52,44,51,52,46,57,49,50,53,55,55,93,44,91,45,56,49,46,55,56,51,51,57,44,51,52,46,56,51,55,49,50,53,93,44,91,45,56,49,46,56,53,52,48,48,50,44,51,52,46,53,57,52,53,52,57,93,44,91,45,56,49,46,54,52,51,53,53,50,44,51,52,46,53,51,51,54,53,50,93,44,91,45,56,49,46,53,53,51,50,48,52,44,51,52,46,52,55,55,49,49,52,93,44,91,45,56,49,46,52,50,51,50,52,49,44,51,52,46,52,57,52,51,55,57,93,44,91,45,56,49,46,52,50,50,55,48,54,44,51,52,46,53,55,50,48,50,57,93,44,91,45,56,49,46,52,55,56,52,53,52,44,51,52,46,56,50,49,53,48,57,93,44,91,45,56,49,46,52,53,55,50,53,55,44,51,52,46,56,51,57,50,56,93,44,91,45,56,49,46,55,49,49,54,57,52,44,51,52,46,57,49,50,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,78,105,99,111,108,108,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,55,56,51,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,50,57,53,53,44,52,52,46,52,53,54,55,49,54,93,44,91,45,57,52,46,54,50,52,50,44,52,52,46,52,53,54,48,51,93,44,91,45,57,52,46,55,56,48,54,51,44,52,52,46,52,53,54,54,53,93,44,91,45,57,52,46,52,57,49,54,56,54,44,52,52,46,51,53,50,50,53,52,93,44,91,45,57,52,46,51,55,49,55,51,49,44,52,52,46,50,54,52,52,52,56,93,44,91,45,57,52,46,48,53,54,55,53,55,44,52,52,46,49,53,52,54,49,55,93,44,91,45,57,52,46,48,49,49,56,54,56,44,52,52,46,50,51,57,53,50,93,44,91,45,57,51,46,57,51,54,48,51,50,44,52,52,46,51,51,57,54,54,53,93,44,91,45,57,51,46,57,50,57,53,53,44,52,52,46,52,53,54,55,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,110,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,51,55,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,50,56,49,48,50,44,52,53,46,51,55,55,48,49,93,44,91,45,56,56,46,51,48,53,56,49,49,44,52,53,46,51,55,52,54,49,93,44,91,45,56,56,46,51,48,57,48,54,51,44,52,53,46,50,48,49,53,56,93,44,91,45,56,56,46,49,56,54,51,53,53,44,52,53,46,49,57,55,57,55,52,93,44,91,45,56,56,46,49,50,49,49,53,50,44,52,53,46,48,50,51,53,56,49,93,44,91,45,56,55,46,55,54,48,48,55,49,44,52,52,46,57,57,48,53,51,93,44,91,45,56,55,46,55,54,50,52,54,52,44,52,52,46,55,54,52,51,54,55,93,44,91,45,56,55,46,53,53,49,50,54,50,44,52,53,46,48,48,56,48,52,57,93,44,91,45,56,55,46,52,52,50,55,54,44,52,53,46,48,55,54,52,55,49,93,44,91,45,56,55,46,54,54,49,50,49,49,44,52,53,46,49,48,56,50,55,57,93,44,91,45,56,55,46,55,51,53,50,56,50,44,52,53,46,49,55,54,53,54,53,93,44,91,45,56,55,46,54,52,55,55,54,56,44,52,53,46,51,52,48,53,54,51,93,44,91,45,56,55,46,56,56,52,56,53,53,44,52,53,46,51,54,50,55,57,50,93,44,91,45,56,55,46,55,57,50,55,54,57,44,52,53,46,52,57,57,57,54,55,93,44,91,45,56,55,46,55,55,52,54,56,50,44,52,53,46,54,48,50,48,50,52,93,44,91,45,56,55,46,56,52,54,54,48,50,44,52,53,46,55,50,50,53,52,52,93,44,91,45,56,56,46,48,53,56,50,53,51,44,52,53,46,55,56,48,54,50,57,93,44,91,45,56,56,46,48,53,57,50,52,54,44,52,53,46,55,49,51,48,54,51,93,44,91,45,56,56,46,52,50,53,51,48,50,44,52,53,46,55,50,50,52,50,54,93,44,91,45,56,56,46,52,50,56,49,48,50,44,52,53,46,51,55,55,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,53,51,56,52,44,34,98,101,100,115,34,58,56,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,55,56,53,53,49,53,44,52,53,46,56,53,48,53,51,54,93,44,91,45,49,50,50,46,55,54,50,52,51,55,44,52,53,46,55,50,56,54,54,53,93,44,91,45,49,50,50,46,55,54,51,56,49,44,52,53,46,54,53,55,49,51,56,93,44,91,45,49,50,50,46,52,51,56,54,55,52,44,52,53,46,53,54,51,53,56,53,93,44,91,45,49,50,50,46,50,52,57,50,49,55,44,52,53,46,53,52,56,54,53,51,93,44,91,45,49,50,50,46,50,52,53,56,53,54,44,52,54,46,48,53,51,56,53,51,93,44,91,45,49,50,50,46,51,51,50,54,54,51,44,52,53,46,57,54,53,48,54,52,93,44,91,45,49,50,50,46,52,55,56,55,53,51,44,52,53,46,57,56,55,57,51,56,93,44,91,45,49,50,50,46,55,50,48,57,49,44,52,53,46,57,51,49,56,57,50,93,44,91,45,49,50,50,46,55,56,53,53,49,53,44,52,53,46,56,53,48,53,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,80,114,105,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,55,54,57,54,56,44,52,53,46,57,56,49,53,53,52,93,44,91,45,57,48,46,54,55,56,55,52,57,44,52,53,46,54,51,56,50,54,52,93,44,91,45,57,48,46,54,55,56,55,55,51,44,52,53,46,51,55,55,57,48,55,93,44,91,45,57,48,46,48,52,50,50,55,51,44,52,53,46,51,56,49,56,54,54,93,44,91,45,57,48,46,48,52,51,52,49,52,44,52,53,46,53,53,53,48,56,50,93,44,91,45,57,48,46,48,52,50,56,53,55,44,52,53,46,56,57,55,50,54,51,93,44,91,45,57,48,46,48,52,51,57,53,56,44,52,53,46,57,56,49,57,52,56,93,44,91,45,57,48,46,51,48,50,48,54,51,44,52,53,46,57,56,49,51,52,57,93,44,91,45,57,48,46,54,55,54,57,54,56,44,52,53,46,57,56,49,53,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,77,105,97,109,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,57,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,54,57,48,49,50,44,52,48,46,57,48,57,56,51,54,93,44,91,45,56,54,46,49,54,53,48,50,52,44,52,48,46,53,54,50,54,52,57,93,44,91,45,56,53,46,56,54,51,54,52,49,44,52,48,46,53,54,53,53,50,53,93,44,91,45,56,53,46,56,54,52,55,57,49,44,52,48,46,54,53,49,54,57,51,93,44,91,45,56,53,46,57,51,57,53,50,53,44,52,48,46,54,53,48,57,57,49,93,44,91,45,56,53,46,57,52,54,52,51,54,44,52,48,46,57,57,57,49,57,53,93,44,91,45,56,54,46,49,54,56,52,53,57,44,52,48,46,57,57,54,48,57,55,93,44,91,45,56,54,46,49,54,57,48,49,50,44,52,48,46,57,48,57,56,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,69,108,108,115,119,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,57,51,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,56,52,56,54,49,44,51,56,46,56,55,48,55,57,49,93,44,91,45,57,56,46,52,56,54,49,48,56,44,51,56,46,54,57,54,56,55,56,93,44,91,45,57,56,46,52,56,48,51,55,55,44,51,56,46,53,50,49,56,52,49,93,44,91,45,57,55,46,57,50,52,50,54,57,44,51,56,46,53,50,50,55,53,53,93,44,91,45,57,55,46,57,50,52,55,57,53,44,51,56,46,54,48,57,56,56,93,44,91,45,57,55,46,57,50,56,53,57,50,44,51,56,46,56,55,49,48,57,57,93,44,91,45,57,56,46,52,56,52,56,54,49,44,51,56,46,56,55,48,55,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,87,101,115,116,32,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,56,48,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,51,53,55,56,50,44,51,51,46,48,48,54,48,57,57,93,44,91,45,57,49,46,53,54,54,51,54,51,44,51,50,46,56,53,53,53,54,49,93,44,91,45,57,49,46,54,51,55,53,56,55,44,51,50,46,54,54,55,51,52,49,93,44,91,45,57,49,46,53,57,54,48,50,55,44,51,50,46,53,56,50,49,57,50,93,44,91,45,57,49,46,52,52,53,50,57,57,44,51,50,46,53,56,49,57,53,54,93,44,91,45,57,49,46,51,52,52,56,52,53,44,51,50,46,55,53,54,54,53,57,93,44,91,45,57,49,46,51,51,53,52,54,51,44,51,50,46,56,54,54,49,48,52,93,44,91,45,57,49,46,50,54,53,48,49,56,44,51,51,46,48,48,53,48,56,51,93,44,91,45,57,49,46,52,51,53,55,56,50,44,51,51,46,48,48,54,48,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,105,98,101,114,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,52,54,52,48,56,44,51,48,46,51,56,56,50,56,49,93,44,91,45,56,52,46,56,56,50,54,49,54,44,51,48,46,53,51,51,48,57,52,93,44,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,44,91,45,56,53,46,48,51,50,57,51,49,44,51,48,46,52,50,48,50,57,57,93,44,91,45,56,53,46,48,53,50,55,55,55,44,51,48,46,50,56,55,52,48,54,93,44,91,45,56,53,46,49,49,53,54,54,44,51,48,46,49,57,57,57,55,54,93,44,91,45,56,53,46,49,51,53,50,53,52,44,51,48,46,48,52,51,50,55,93,44,91,45,56,53,46,48,50,53,52,51,57,44,50,57,46,57,55,49,51,57,57,93,44,91,45,56,53,46,48,48,55,54,50,54,44,51,48,46,48,49,51,56,56,51,93,44,91,45,56,52,46,53,52,52,52,53,44,51,48,46,48,49,49,48,51,93,44,91,45,56,52,46,54,54,57,50,53,56,44,51,48,46,49,50,53,50,93,44,91,45,56,52,46,55,49,51,51,53,49,44,51,48,46,51,48,48,49,55,93,44,91,45,56,52,46,54,52,54,52,48,56,44,51,48,46,51,56,56,50,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,111,100,103,101,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,56,52,50,48,55,44,51,56,46,50,54,50,49,55,57,93,44,91,45,49,48,48,46,50,50,55,49,51,55,44,51,56,46,50,54,50,50,51,55,93,44,91,45,49,48,48,46,50,50,54,54,49,44,51,56,46,48,48,49,48,49,53,93,44,91,45,49,48,48,46,50,50,55,48,57,44,51,55,46,57,49,52,48,49,56,93,44,91,45,57,57,46,53,54,57,56,55,57,44,51,55,46,57,49,51,48,49,54,93,44,91,45,57,57,46,53,54,57,53,51,51,44,51,56,46,48,56,55,51,55,50,93,44,91,45,57,57,46,53,56,52,50,48,55,44,51,56,46,50,54,50,49,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,101,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,54,49,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,49,54,50,50,57,44,51,55,46,52,55,53,49,57,93,44,91,45,49,48,48,46,54,53,50,54,52,50,44,51,55,46,52,55,52,56,52,56,93,44,91,45,49,48,48,46,54,53,50,55,50,56,44,51,55,46,51,56,55,54,50,55,93,44,91,45,49,48,48,46,54,51,51,51,50,55,44,51,55,46,48,48,48,49,48,51,93,44,91,45,49,48,48,46,48,56,57,52,56,51,44,51,55,46,48,48,50,50,54,49,93,44,91,45,49,48,48,46,48,57,49,53,50,57,44,51,55,46,51,56,54,56,57,50,93,44,91,45,49,48,48,46,49,48,55,50,52,56,44,51,55,46,52,55,52,56,51,54,93,44,91,45,49,48,48,46,50,49,54,50,50,57,44,51,55,46,52,55,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,77,99,76,101,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,55,53,49,52,53,44,51,55,46,53,54,57,57,56,56,93,44,91,45,56,55,46,51,53,49,56,57,51,44,51,55,46,52,50,53,54,53,53,93,44,91,45,56,55,46,50,57,53,57,54,53,44,51,55,46,51,57,49,56,49,57,93,44,91,45,56,55,46,48,57,57,56,48,51,44,51,55,46,52,49,54,48,52,50,93,44,91,45,56,55,46,48,51,56,50,54,44,51,55,46,53,54,48,56,48,51,93,44,91,45,56,55,46,52,48,56,53,52,55,44,51,55,46,54,56,51,53,54,51,93,44,91,45,56,55,46,52,57,53,51,51,49,44,51,55,46,54,52,55,53,52,55,93,44,91,45,56,55,46,51,55,53,49,52,53,44,51,55,46,53,54,57,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,52,55,44,34,98,101,100,115,34,58,49,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,56,48,50,53,52,44,51,49,46,55,51,51,50,53,53,93,44,91,45,57,49,46,52,52,51,57,49,54,44,51,49,46,53,52,50,52,54,54,93,44,91,45,57,49,46,53,49,53,57,49,57,44,51,49,46,53,51,48,55,50,57,93,44,91,45,57,49,46,52,55,50,48,54,55,44,51,49,46,51,57,55,48,55,54,93,44,91,45,57,49,46,53,56,57,52,53,49,44,51,49,46,49,57,49,49,52,93,44,91,45,57,49,46,52,55,56,55,57,57,44,51,49,46,50,51,56,57,57,57,93,44,91,45,57,49,46,52,50,52,48,49,50,44,51,49,46,51,49,53,48,52,93,44,91,45,57,49,46,51,48,51,53,56,44,51,49,46,51,54,48,57,55,53,93,44,91,45,57,49,46,49,53,56,49,53,44,51,49,46,51,52,54,54,57,53,93,44,91,45,57,49,46,49,53,51,56,54,52,44,51,49,46,54,49,48,48,54,56,93,44,91,45,57,49,46,50,57,53,53,55,44,51,49,46,54,54,57,56,55,93,44,91,45,57,49,46,51,49,55,56,54,52,44,51,49,46,55,52,57,55,54,54,93,44,91,45,57,49,46,51,56,48,50,53,52,44,51,49,46,55,51,51,50,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,97,115,32,77,97,114,195,173,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,48,56,50,48,48,50,44,49,56,46,50,53,52,57,52,54,93,44,91,45,54,55,46,48,49,57,56,51,54,44,49,56,46,49,57,53,52,55,49,93,44,91,45,54,54,46,56,57,55,57,54,52,44,49,56,46,49,56,55,55,52,52,93,44,91,45,54,54,46,57,48,55,50,51,54,44,49,56,46,50,53,51,48,57,93,44,91,45,54,55,46,48,51,55,57,51,53,44,49,56,46,50,56,57,55,48,53,93,44,91,45,54,55,46,48,56,50,48,48,50,44,49,56,46,50,53,52,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,73,116,97,119,97,109,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,52,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,52,50,48,55,57,44,51,52,46,52,54,53,50,55,54,93,44,91,45,56,56,46,53,52,51,51,53,50,44,51,52,46,48,56,57,48,52,52,93,44,91,45,56,56,46,50,48,51,56,54,52,44,51,52,46,48,56,54,53,54,52,93,44,91,45,56,56,46,49,55,51,54,51,50,44,51,52,46,51,50,49,48,53,52,93,44,91,45,56,56,46,49,53,54,50,57,50,44,51,52,46,52,54,51,50,49,52,93,44,91,45,56,56,46,51,50,57,49,57,51,44,51,52,46,52,54,51,53,55,49,93,44,91,45,56,56,46,53,52,50,48,55,57,44,51,52,46,52,54,53,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,50,57,54,44,34,98,101,100,115,34,58,49,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,55,48,52,56,50,44,51,56,46,51,53,54,55,53,49,93,44,91,45,56,52,46,57,57,55,54,54,55,44,51,56,46,51,51,53,53,56,54,93,44,91,45,56,53,46,48,50,51,55,49,49,44,51,56,46,49,50,57,48,53,50,93,44,91,45,56,52,46,56,54,52,57,48,56,44,51,56,46,49,49,54,57,50,54,93,44,91,45,56,52,46,55,50,53,49,54,56,44,51,56,46,49,57,53,52,50,54,93,44,91,45,56,52,46,55,52,48,53,57,52,44,51,56,46,51,53,50,52,49,53,93,44,91,45,56,52,46,56,55,48,52,56,50,44,51,56,46,51,53,54,55,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,53,52,49,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,56,46,48,53,52,57,56,53,44,52,53,46,50,53,50,53,55,55,93,44,91,45,54,56,46,51,48,51,55,49,52,44,52,53,46,50,50,49,53,51,49,93,44,91,45,54,56,46,50,55,48,52,57,55,44,52,53,46,49,48,48,49,50,49,93,44,91,45,54,56,46,51,57,54,57,48,51,44,52,53,46,48,56,51,50,57,54,93,44,91,45,54,56,46,51,55,53,56,57,50,44,52,52,46,57,57,55,51,55,51,93,44,91,45,54,56,46,53,48,49,48,57,53,44,52,52,46,57,56,48,55,49,56,93,44,91,45,54,56,46,52,52,53,50,49,57,44,52,52,46,55,54,51,48,49,52,93,44,91,45,54,56,46,56,49,53,55,57,51,44,52,52,46,54,56,51,55,53,52,93,44,91,45,54,56,46,56,48,52,54,49,53,44,52,52,46,52,53,56,52,49,49,93,44,91,45,54,56,46,56,57,54,51,56,52,44,52,52,46,50,48,57,57,51,53,93,44,91,45,54,56,46,55,50,48,57,49,55,44,52,52,46,49,49,53,50,54,93,44,91,45,54,56,46,53,55,57,51,52,56,44,52,52,46,49,50,56,55,53,93,44,91,45,54,56,46,52,56,52,54,51,53,44,52,52,46,48,50,56,51,50,54,93,44,91,45,54,56,46,51,49,49,51,57,51,44,52,52,46,48,53,51,52,50,57,93,44,91,45,54,56,46,49,55,53,56,53,56,44,52,52,46,49,50,53,48,56,51,93,44,91,45,54,56,46,49,50,56,50,56,44,52,52,46,50,54,52,50,53,51,93,44,91,45,54,55,46,57,50,53,49,55,56,44,52,52,46,51,52,49,52,51,52,93,44,91,45,54,55,46,57,56,49,57,56,56,44,52,52,46,52,55,51,55,53,54,93,44,91,45,54,56,46,49,48,53,48,49,55,44,52,52,46,57,51,57,48,56,56,93,44,91,45,54,55,46,57,56,49,56,53,49,44,52,52,46,57,53,53,56,56,53,93,44,91,45,54,56,46,48,53,52,57,56,53,44,52,53,46,50,53,50,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,56,50,51,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,57,46,52,48,57,54,51,53,44,52,52,46,51,50,55,57,57,56,93,44,91,45,54,57,46,50,56,50,48,50,55,44,52,52,46,48,54,52,53,50,51,93,44,91,45,54,57,46,51,54,51,57,57,54,44,52,52,46,48,49,50,56,55,51,93,44,91,45,54,57,46,51,57,55,55,51,56,44,52,51,46,56,55,49,56,57,93,44,91,45,54,57,46,50,51,51,52,56,44,52,51,46,55,55,56,48,48,50,93,44,91,45,54,57,46,48,53,53,56,57,52,44,52,51,46,56,53,56,57,49,49,93,44,91,45,54,56,46,57,50,53,53,49,56,44,52,51,46,55,53,48,48,56,56,93,44,91,45,54,56,46,56,50,54,57,49,54,44,52,51,46,55,51,53,55,49,49,93,44,91,45,54,56,46,55,52,57,52,55,51,44,52,51,46,56,51,50,53,51,49,93,44,91,45,54,56,46,52,56,52,54,51,53,44,52,52,46,48,50,56,51,50,54,93,44,91,45,54,56,46,53,55,57,51,52,56,44,52,52,46,49,50,56,55,53,93,44,91,45,54,56,46,55,50,48,57,49,55,44,52,52,46,49,49,53,50,54,93,44,91,45,54,56,46,56,57,54,51,56,52,44,52,52,46,50,48,57,57,51,53,93,44,91,45,54,56,46,57,57,57,52,53,53,44,52,52,46,50,48,50,55,50,49,93,44,91,45,54,57,46,50,54,56,56,56,50,44,52,52,46,51,54,52,54,53,51,93,44,91,45,54,57,46,52,48,57,54,51,53,44,52,52,46,51,50,55,57,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,55,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,52,57,55,44,34,98,101,100,115,34,58,49,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,52,52,52,57,51,44,51,51,46,53,50,53,55,55,54,93,44,91,45,56,51,46,57,50,51,57,49,51,44,51,51,46,52,52,52,49,57,52,93,44,91,45,56,51,46,56,54,51,48,53,56,44,51,51,46,51,54,56,50,55,56,93,44,91,45,56,51,46,54,56,50,49,57,54,44,51,51,46,53,50,54,50,50,93,44,91,45,56,51,46,54,56,48,56,57,54,44,51,51,46,53,57,54,57,49,57,93,44,91,45,56,51,46,57,49,52,56,50,51,44,51,51,46,55,52,52,50,48,51,93,44,91,45,56,51,46,57,51,48,56,54,51,44,51,51,46,54,53,49,56,50,51,93,44,91,45,56,52,46,48,52,52,52,57,51,44,51,51,46,53,50,53,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,70,97,117,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,50,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,55,51,51,51,44,52,53,46,50,52,53,51,54,52,93,44,91,45,57,57,46,53,55,50,54,57,57,44,52,52,46,56,57,55,50,54,51,93,44,91,45,57,57,46,51,49,49,55,53,52,44,52,52,46,56,57,55,50,50,55,93,44,91,45,57,56,46,55,49,54,52,57,56,44,52,52,46,56,57,54,57,50,53,93,44,91,45,57,56,46,55,49,55,55,53,57,44,52,53,46,50,52,51,55,51,50,93,44,91,45,57,56,46,55,50,50,52,56,49,44,52,53,46,50,52,51,55,54,52,93,44,91,45,57,57,46,53,55,51,51,51,44,52,53,46,50,52,53,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,111,117,103,104,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,54,48,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,52,56,56,54,57,44,52,55,46,52,55,55,49,52,53,93,44,91,45,56,56,46,57,51,50,52,56,44,52,54,46,55,54,52,55,56,55,93,44,91,45,56,56,46,57,56,57,53,50,57,44,52,54,46,54,56,48,49,49,57,93,44,91,45,56,56,46,57,57,49,50,51,54,44,52,54,46,52,49,57,55,48,52,93,44,91,45,56,56,46,54,55,57,51,57,50,44,52,54,46,52,50,48,49,51,57,93,44,91,45,56,56,46,54,55,56,57,56,51,44,52,54,46,56,53,49,56,50,50,93,44,91,45,56,56,46,53,53,49,57,52,51,44,52,54,46,56,53,49,55,57,53,93,44,91,45,56,56,46,52,53,49,50,44,52,54,46,57,51,56,57,55,54,93,44,91,45,56,56,46,48,52,51,55,51,49,44,52,55,46,48,52,51,57,53,56,93,44,91,45,56,56,46,48,52,54,48,54,51,44,52,55,46,49,57,57,55,50,50,93,44,91,45,56,56,46,50,57,56,52,51,54,44,52,55,46,49,57,57,55,56,50,93,44,91,45,56,56,46,50,57,56,57,57,50,44,52,55,46,50,56,54,48,57,55,93,44,91,45,56,56,46,53,49,50,53,57,50,44,52,55,46,50,56,53,57,52,51,93,44,91,45,56,56,46,57,52,56,56,54,57,44,52,55,46,52,55,55,49,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,77,105,110,101,114,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,49,49,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,54,50,57,52,56,56,44,52,55,46,52,55,57,54,49,93,44,91,45,49,49,53,46,55,52,54,54,49,57,44,52,55,46,52,52,50,51,49,49,93,44,91,45,49,49,53,46,51,52,48,56,52,57,44,52,55,46,50,54,50,56,53,93,44,91,45,49,49,53,46,48,52,55,56,53,55,44,52,54,46,57,54,57,53,51,50,93,44,91,45,49,49,52,46,57,53,57,51,49,55,44,52,54,46,57,51,50,56,57,56,93,44,91,45,49,49,52,46,57,50,50,51,49,50,44,52,54,46,56,50,56,54,48,50,93,44,91,45,49,49,52,46,54,55,52,57,52,50,44,52,54,46,55,51,54,56,50,54,93,44,91,45,49,49,52,46,53,52,57,49,50,55,44,52,54,46,55,52,55,51,54,54,93,44,91,45,49,49,52,46,53,54,54,49,50,57,44,52,54,46,57,54,51,52,48,53,93,44,91,45,49,49,52,46,52,56,51,50,50,55,44,52,55,46,48,50,51,51,53,56,93,44,91,45,49,49,52,46,55,55,53,56,51,51,44,52,55,46,50,50,53,53,55,51,93,44,91,45,49,49,52,46,55,57,55,50,48,52,44,52,55,46,50,54,56,57,49,54,93,44,91,45,49,49,52,46,57,54,56,57,55,56,44,52,55,46,51,49,50,54,50,53,93,44,91,45,49,49,52,46,57,56,50,50,54,53,44,52,55,46,51,57,54,56,48,52,93,44,91,45,49,49,53,46,50,56,51,56,53,54,44,52,55,46,52,56,54,54,51,56,93,44,91,45,49,49,53,46,54,50,57,52,56,56,44,52,55,46,52,55,57,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,53,49,50,44,34,98,101,100,115,34,58,49,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,54,49,52,56,57,44,51,53,46,51,51,51,53,55,57,93,44,91,45,56,54,46,51,49,56,49,54,56,44,51,53,46,49,50,54,57,56,54,93,44,91,45,56,54,46,51,49,56,55,54,49,44,51,52,46,57,57,49,49,54,57,93,44,91,45,56,54,46,51,49,49,50,55,52,44,51,52,46,57,57,49,48,57,56,93,44,91,45,56,53,46,56,54,51,57,51,53,44,51,52,46,57,56,56,50,53,51,93,44,91,45,56,53,46,56,55,51,48,50,53,44,51,53,46,50,50,51,51,54,50,93,44,91,45,56,53,46,57,49,51,53,57,51,44,51,53,46,50,56,57,49,56,57,93,44,91,45,56,54,46,49,53,56,48,49,56,44,51,53,46,51,54,50,54,48,55,93,44,91,45,56,54,46,50,54,49,52,56,57,44,51,53,46,51,51,51,53,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,110,99,111,114,100,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,50,49,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,52,52,55,57,49,44,51,49,46,55,53,49,55,51,49,93,44,91,45,57,49,46,54,57,52,52,54,57,44,51,49,46,55,51,53,50,56,54,93,44,91,45,57,49,46,55,48,53,57,52,56,44,51,49,46,54,52,50,56,54,51,93,44,91,45,57,49,46,56,50,54,57,50,54,44,51,49,46,53,57,49,54,55,49,93,44,91,45,57,49,46,56,53,53,57,48,56,44,51,49,46,52,57,54,48,49,93,44,91,45,57,49,46,56,51,52,50,56,44,51,49,46,50,54,54,51,52,52,93,44,91,45,57,49,46,54,55,55,51,48,50,44,51,49,46,49,56,56,48,52,55,93,44,91,45,57,49,46,55,50,51,56,48,52,44,51,49,46,48,52,52,50,53,52,93,44,91,45,57,49,46,54,53,56,51,50,49,44,51,48,46,57,57,52,51,54,53,93,44,91,45,57,49,46,54,54,50,53,48,54,44,51,48,46,57,55,48,51,54,50,93,44,91,45,57,49,46,54,51,54,57,52,50,44,51,48,46,57,57,57,52,49,54,93,44,91,45,57,49,46,53,56,57,52,53,49,44,51,49,46,49,57,49,49,52,93,44,91,45,57,49,46,52,55,50,48,54,55,44,51,49,46,51,57,55,48,55,54,93,44,91,45,57,49,46,53,49,53,57,49,57,44,51,49,46,53,51,48,55,50,57,93,44,91,45,57,49,46,52,52,51,57,49,54,44,51,49,46,53,52,50,52,54,54,93,44,91,45,57,49,46,51,56,48,50,53,52,44,51,49,46,55,51,51,50,53,53,93,44,91,45,57,49,46,53,52,52,55,57,49,44,51,49,46,55,53,49,55,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,49,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,48,55,48,49,44,51,48,46,54,52,57,51,56,53,93,44,91,45,57,48,46,57,55,55,52,48,49,44,51,48,46,53,57,51,52,56,53,93,44,91,45,57,48,46,57,55,55,53,48,51,44,51,48,46,52,50,48,56,57,57,93,44,91,45,57,48,46,56,57,49,55,50,56,44,51,48,46,51,52,53,50,52,52,93,44,91,45,57,48,46,55,49,57,53,51,57,44,51,48,46,49,56,57,57,57,52,93,44,91,45,57,48,46,54,51,50,56,49,49,44,51,48,46,50,50,49,52,48,57,93,44,91,45,57,48,46,53,53,52,49,52,55,44,51,48,46,49,57,53,54,50,56,93,44,91,45,57,48,46,52,56,53,56,50,54,44,51,48,46,50,55,54,57,57,50,93,44,91,45,57,48,46,52,55,55,56,44,51,48,46,51,53,54,52,52,55,93,44,91,45,57,48,46,53,54,54,57,48,54,44,51,48,46,52,56,55,48,54,93,44,91,45,57,48,46,53,54,55,49,54,53,44,51,48,46,54,53,48,48,50,51,93,44,91,45,57,48,46,57,49,48,55,48,49,44,51,48,46,54,52,57,51,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,69,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,49,48,50,52,44,34,98,101,100,115,34,58,49,51,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,55,51,53,48,48,53,44,52,50,46,56,55,52,54,56,53,93,44,91,45,55,48,46,57,50,57,53,57,52,44,52,50,46,56,56,53,48,51,50,93,44,91,45,55,49,46,49,51,50,56,48,53,44,52,50,46,56,50,49,52,55,54,93,44,91,45,55,49,46,50,52,53,52,56,49,44,52,50,46,55,52,50,53,49,52,93,44,91,45,55,49,46,50,53,53,49,52,55,44,52,50,46,55,51,54,53,53,52,93,44,91,45,55,49,46,50,53,54,49,56,56,44,52,50,46,54,53,55,49,52,53,93,44,91,45,55,49,46,49,51,53,52,48,53,44,52,50,46,53,57,57,48,56,93,44,91,45,55,49,46,48,50,53,56,51,54,44,52,50,46,52,52,52,55,48,57,93,44,91,45,55,48,46,57,50,52,53,57,51,44,52,50,46,51,56,54,55,57,56,93,44,91,45,55,48,46,54,52,56,48,55,50,44,52,50,46,52,48,53,54,50,56,93,44,91,45,55,48,46,54,48,54,50,57,44,52,50,46,53,51,49,50,50,93,44,91,45,55,48,46,53,48,50,49,52,51,44,52,50,46,54,50,52,53,55,57,93,44,91,45,55,48,46,53,52,57,51,48,54,44,52,50,46,55,50,52,49,54,52,93,44,91,45,55,48,46,55,48,50,53,56,44,52,50,46,55,50,52,49,54,50,93,44,91,45,55,48,46,55,51,53,48,48,53,44,52,50,46,56,55,52,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,117,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,57,53,55,50,56,49,44,52,53,46,50,49,50,56,53,49,93,44,91,45,49,48,52,46,48,52,48,48,48,52,44,52,53,46,50,49,50,56,57,49,93,44,91,45,49,48,52,46,48,53,55,56,55,57,44,52,52,46,57,57,55,54,48,53,93,44,91,45,49,48,52,46,48,53,53,57,52,51,44,52,52,46,53,55,49,48,50,53,93,44,91,45,49,48,51,46,56,50,48,54,51,57,44,52,52,46,54,48,52,55,55,55,93,44,91,45,49,48,51,46,53,54,55,54,53,51,44,52,52,46,54,48,52,48,57,56,93,44,91,45,49,48,50,46,57,54,52,49,50,53,44,52,52,46,54,48,52,50,56,55,93,44,91,45,49,48,50,46,57,53,55,51,55,49,44,52,53,46,48,51,57,53,54,57,93,44,91,45,49,48,50,46,57,53,55,50,56,49,44,52,53,46,50,49,50,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,56,54,49,52,44,34,98,101,100,115,34,58,55,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,54,54,48,54,50,54,44,51,57,46,53,54,53,57,48,57,93,44,91,45,49,48,53,46,48,52,56,55,52,44,51,57,46,53,54,54,48,56,56,93,44,91,45,49,48,53,46,50,51,51,57,51,56,44,51,57,46,50,52,54,56,54,56,93,44,91,45,49,48,53,46,51,50,57,50,50,44,51,57,46,49,50,57,54,56,57,93,44,91,45,49,48,53,46,48,51,51,53,52,52,44,51,57,46,49,50,57,56,49,57,93,44,91,45,49,48,52,46,54,54,50,56,57,54,44,51,57,46,49,50,57,53,50,55,93,44,91,45,49,48,52,46,54,54,48,54,50,54,44,51,57,46,53,54,53,57,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,56,50,54,51,44,34,98,101,100,115,34,58,50,50,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,50,53,57,50,49,44,51,52,46,50,54,56,55,54,93,44,91,45,56,49,46,48,57,53,56,54,51,44,51,52,46,50,49,51,56,55,50,93,44,91,45,56,49,46,51,49,54,57,49,49,44,51,52,46,50,51,57,52,53,56,93,44,91,45,56,49,46,51,51,56,57,54,49,44,51,52,46,49,57,55,53,56,55,93,44,91,45,56,49,46,50,55,53,56,52,53,44,51,52,46,48,57,55,51,56,49,93,44,91,45,56,49,46,50,48,49,56,51,57,44,51,52,46,48,57,55,49,54,56,93,44,91,45,56,49,46,48,54,55,54,49,53,44,51,52,46,48,48,56,57,53,51,93,44,91,45,56,49,46,48,49,50,51,51,44,51,51,46,56,56,48,48,56,93,44,91,45,56,48,46,56,48,55,53,57,49,44,51,51,46,55,55,52,50,49,49,93,44,91,45,56,48,46,54,50,48,49,48,55,44,51,51,46,55,52,51,50,51,55,93,44,91,45,56,48,46,53,57,55,55,49,53,44,51,51,46,55,55,55,53,49,50,93,44,91,45,56,48,46,54,52,48,57,56,54,44,51,51,46,57,57,57,52,51,51,93,44,91,45,56,48,46,54,49,54,49,56,54,44,51,52,46,48,57,57,54,48,53,93,44,91,45,56,48,46,55,49,57,51,49,56,44,51,52,46,48,54,56,57,55,50,93,44,91,45,56,48,46,56,54,57,53,50,52,44,51,52,46,49,56,50,50,55,49,93,44,91,45,56,48,46,56,50,53,57,50,49,44,51,52,46,50,54,56,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,53,48,53,44,34,98,101,100,115,34,58,51,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,49,57,48,51,44,52,48,46,50,49,56,57,51,54,93,44,91,45,56,53,46,56,54,50,52,56,57,44,51,57,46,57,52,51,54,49,56,93,44,91,45,56,53,46,53,55,54,49,57,50,44,51,57,46,57,52,53,55,53,54,93,44,91,45,56,53,46,53,55,54,49,57,55,44,52,48,46,48,55,55,49,52,51,93,44,91,45,56,53,46,53,55,56,53,56,57,44,52,48,46,51,55,57,53,50,52,93,44,91,45,56,53,46,56,54,50,50,57,54,44,52,48,46,51,55,56,51,54,55,93,44,91,45,56,53,46,56,54,49,57,48,51,44,52,48,46,50,49,56,57,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,117,114,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,53,50,49,56,51,44,51,52,46,53,48,54,55,57,54,93,44,91,45,57,55,46,51,53,50,49,49,53,44,51,52,46,51,55,54,49,56,56,93,44,91,45,57,55,46,48,51,56,50,51,57,44,51,52,46,51,55,53,55,48,55,93,44,91,45,57,54,46,57,51,51,51,48,53,44,51,52,46,51,51,50,53,54,49,93,44,91,45,57,54,46,56,56,48,55,57,44,51,52,46,53,48,54,48,53,51,93,44,91,45,57,54,46,56,50,55,51,52,51,44,51,52,46,53,48,54,48,54,50,93,44,91,45,57,54,46,56,50,55,49,52,52,44,51,52,46,53,57,51,50,50,93,44,91,45,57,54,46,57,51,50,52,53,50,44,51,52,46,54,51,54,56,49,50,93,44,91,45,57,55,46,49,52,50,54,55,49,44,51,52,46,54,51,55,49,50,54,93,44,91,45,57,55,46,49,52,51,57,55,51,44,51,52,46,53,48,54,54,48,54,93,44,91,45,57,55,46,51,53,50,49,56,51,44,51,52,46,53,48,54,55,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,114,111,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,55,50,44,34,98,101,100,115,34,58,51,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,50,57,54,56,52,44,52,48,46,51,57,52,57,55,56,93,44,91,45,56,48,46,53,57,57,56,57,53,44,52,48,46,51,49,55,54,54,54,93,44,91,45,56,48,46,54,56,49,56,49,49,44,52,48,46,49,56,53,53,54,51,93,44,91,45,56,48,46,53,49,57,49,48,52,44,52,48,46,49,53,57,54,55,50,93,44,91,45,56,48,46,53,49,55,57,57,49,44,52,48,46,51,57,57,54,52,52,93,44,91,45,56,48,46,54,50,57,54,56,52,44,52,48,46,51,57,52,57,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,57,54,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,54,50,52,53,53,44,51,57,46,48,51,48,54,48,56,93,44,91,45,56,49,46,50,55,56,52,49,50,44,51,56,46,57,49,52,56,54,55,93,44,91,45,56,49,46,48,56,51,55,49,44,51,56,46,54,49,49,57,56,50,93,44,91,45,56,49,46,48,51,49,54,55,55,44,51,56,46,54,54,55,56,51,57,93,44,91,45,56,48,46,57,56,52,57,53,44,51,56,46,55,49,55,56,57,56,93,44,91,45,56,49,46,48,51,51,54,51,50,44,51,57,46,48,48,57,53,56,52,93,44,91,45,56,49,46,49,54,50,52,53,53,44,51,57,46,48,51,48,54,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,52,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,50,53,49,48,52,44,51,55,46,50,51,52,56,55,52,93,44,91,45,56,49,46,50,55,48,48,55,56,44,51,55,46,48,57,51,48,49,50,93,44,91,45,56,49,46,52,51,54,55,51,44,51,55,46,48,49,48,49,51,53,93,44,91,45,56,49,46,51,55,57,52,48,50,44,51,54,46,57,53,50,52,52,50,93,44,91,45,56,49,46,50,50,52,54,50,52,44,51,55,46,48,52,55,56,51,53,93,44,91,45,56,49,46,49,49,52,51,49,57,44,51,55,46,48,50,50,54,49,50,93,44,91,45,56,48,46,57,49,50,54,55,52,44,51,55,46,48,55,51,51,52,57,93,44,91,45,56,48,46,56,53,52,54,50,55,44,51,55,46,49,52,55,52,56,50,93,44,91,45,56,48,46,57,56,48,49,52,54,44,51,55,46,50,57,50,55,52,51,93,44,91,45,56,49,46,50,50,53,49,48,52,44,51,55,46,50,51,52,56,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,89,101,108,108,111,119,115,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,56,49,54,44,34,98,101,100,115,34,58,54,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,55,56,49,50,49,52,44,52,54,46,52,57,54,48,49,52,93,44,91,45,49,48,55,46,55,56,50,48,56,55,44,52,54,46,51,57,53,49,56,50,93,44,91,45,49,48,55,46,57,50,56,53,52,55,44,52,54,46,51,57,53,50,56,52,93,44,91,45,49,48,56,46,48,50,57,51,54,51,44,52,54,46,50,54,52,48,53,53,93,44,91,45,49,48,56,46,51,50,48,56,49,50,44,52,54,46,50,54,51,57,57,55,93,44,91,45,49,48,56,46,52,48,52,56,53,54,44,52,54,46,50,51,53,57,54,93,44,91,45,49,48,56,46,52,48,52,55,57,53,44,52,54,46,49,51,50,57,53,50,93,44,91,45,49,48,56,46,55,55,57,55,51,51,44,52,54,46,49,51,50,52,53,55,93,44,91,45,49,48,56,46,57,50,52,53,56,57,44,52,54,46,49,51,50,51,55,93,44,91,45,49,48,56,46,57,48,49,54,53,53,44,52,53,46,57,53,57,52,49,54,93,44,91,45,49,48,56,46,57,48,52,55,50,54,44,52,53,46,54,56,50,56,50,49,93,44,91,45,49,48,56,46,56,52,51,48,49,54,44,52,53,46,54,49,49,48,52,50,93,44,91,45,49,48,56,46,54,52,53,51,50,53,44,52,53,46,52,54,52,48,55,51,93,44,91,45,49,48,56,46,51,49,54,51,55,52,44,52,53,46,52,54,48,53,48,57,93,44,91,45,49,48,56,46,49,57,51,50,48,53,44,52,53,46,53,49,56,53,51,56,93,44,91,45,49,48,56,46,48,54,57,55,53,50,44,52,53,46,53,49,56,53,51,53,93,44,91,45,49,48,56,46,48,52,55,51,53,50,44,52,53,46,56,57,57,52,55,57,93,44,91,45,49,48,55,46,56,56,49,56,52,54,44,52,53,46,56,57,57,50,51,51,93,44,91,45,49,48,55,46,54,55,52,52,53,52,44,52,54,46,48,52,51,54,49,93,44,91,45,49,48,55,46,53,49,49,53,51,52,44,52,54,46,48,52,51,52,48,51,93,44,91,45,49,48,55,46,52,54,54,57,57,54,44,52,54,46,49,50,57,57,57,53,93,44,91,45,49,48,55,46,55,51,56,53,52,56,44,52,54,46,52,56,49,56,48,54,93,44,91,45,49,48,55,46,55,56,49,50,49,52,44,52,54,46,52,57,54,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,48,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,52,55,49,50,56,44,51,56,46,51,55,52,52,51,50,93,44,91,45,56,50,46,49,57,53,55,53,49,44,51,56,46,51,50,51,52,57,57,93,44,91,45,56,50,46,50,54,52,56,52,57,44,51,56,46,50,50,57,49,57,57,93,44,91,45,56,50,46,50,56,53,54,57,51,44,51,56,46,49,52,52,57,53,50,93,44,91,45,56,50,46,50,48,50,50,51,54,44,51,56,46,48,51,54,49,57,51,93,44,91,45,56,50,46,51,48,54,51,57,49,44,51,55,46,57,52,51,54,52,93,44,91,45,56,50,46,49,57,48,54,53,56,44,51,55,46,57,55,52,55,55,56,93,44,91,45,56,49,46,57,51,50,53,48,55,44,51,56,46,48,50,53,51,53,54,93,44,91,45,56,49,46,57,51,50,52,52,52,44,51,56,46,49,53,48,48,56,53,93,44,91,45,56,49,46,56,51,51,52,55,44,51,56,46,50,48,57,53,55,93,44,91,45,56,49,46,56,49,56,50,51,52,44,51,56,46,51,49,54,55,53,49,93,44,91,45,56,49,46,57,49,53,49,57,55,44,51,56,46,51,50,53,53,57,55,93,44,91,45,56,50,46,48,52,55,49,50,56,44,51,56,46,51,55,52,52,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,49,52,56,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,56,56,53,51,53,50,44,51,57,46,53,56,48,49,48,56,93,44,91,45,49,50,50,46,56,57,48,51,49,44,51,57,46,53,50,57,48,49,52,93,44,91,45,49,50,51,46,48,54,51,49,56,49,44,51,57,46,53,48,51,53,51,57,93,44,91,45,49,50,51,46,48,55,53,49,49,52,44,51,57,46,52,48,55,54,56,51,93,44,91,45,49,50,51,46,48,49,50,55,49,44,51,57,46,50,51,54,49,56,56,93,44,91,45,49,50,51,46,48,57,51,48,49,51,44,51,57,46,48,55,49,57,57,52,93,44,91,45,49,50,50,46,57,56,54,54,52,44,51,56,46,57,57,55,50,56,51,93,44,91,45,49,50,50,46,57,52,56,56,54,53,44,51,56,46,57,48,48,50,50,93,44,91,45,49,50,50,46,56,50,49,53,57,50,44,51,56,46,56,53,48,49,52,93,44,91,45,49,50,50,46,54,50,55,51,57,54,44,51,56,46,54,54,55,53,48,54,93,44,91,45,49,50,50,46,52,54,51,56,57,44,51,56,46,55,48,53,50,48,51,93,44,91,45,49,50,50,46,51,57,53,48,53,54,44,51,56,46,56,54,52,50,52,53,93,44,91,45,49,50,50,46,51,52,48,49,55,50,44,51,56,46,57,50,52,50,52,54,93,44,91,45,49,50,50,46,52,56,51,56,55,57,44,51,57,46,48,54,54,57,53,53,93,44,91,45,49,50,50,46,53,49,53,51,51,49,44,51,57,46,50,48,57,50,49,53,93,44,91,45,49,50,50,46,54,57,49,51,54,49,44,51,57,46,50,52,55,52,51,49,93,44,91,45,49,50,50,46,55,55,53,48,52,51,44,51,57,46,51,49,49,55,55,56,93,44,91,45,49,50,50,46,55,51,57,48,54,50,44,51,57,46,51,56,51,50,54,54,93,44,91,45,49,50,50,46,55,51,53,54,51,57,44,51,57,46,53,56,48,54,54,56,93,44,91,45,49,50,50,46,56,56,53,51,53,50,44,51,57,46,53,56,48,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,71,114,97,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,50,54,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,55,54,54,49,50,44,51,49,46,48,55,56,56,56,51,93,44,91,45,56,52,46,51,56,48,55,48,53,44,51,48,46,54,56,57,57,57,51,93,44,91,45,56,52,46,50,56,50,53,53,57,44,51,48,46,54,56,53,51,51,52,93,44,91,45,56,52,46,48,56,51,55,53,55,44,51,48,46,54,55,53,56,48,52,93,44,91,45,56,52,46,48,55,55,49,49,57,44,51,48,46,57,49,52,57,54,53,93,44,91,45,56,52,46,49,49,54,54,52,52,44,51,49,46,48,55,55,57,55,49,93,44,91,45,56,52,46,51,55,54,54,49,50,44,51,49,46,48,55,56,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,111,110,101,106,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,52,50,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,55,49,56,52,54,51,44,51,54,46,57,57,53,56,52,49,93,44,91,45,49,48,53,46,55,52,51,51,51,57,44,51,55,46,51,53,54,55,57,56,93,44,91,45,49,48,54,46,48,51,56,57,49,50,44,51,55,46,51,53,54,57,53,51,93,44,91,45,49,48,54,46,48,51,57,51,51,49,44,51,55,46,52,48,48,56,53,50,93,44,91,45,49,48,54,46,54,55,56,51,55,51,44,51,55,46,52,48,51,53,57,54,93,44,91,45,49,48,54,46,54,55,56,51,53,52,44,51,55,46,50,50,56,53,54,54,93,44,91,45,49,48,54,46,52,55,54,48,57,44,51,54,46,57,57,51,53,52,56,93,44,91,45,49,48,54,46,48,48,54,51,49,54,44,51,54,46,57,57,53,50,54,55,93,44,91,45,49,48,53,46,55,49,56,52,54,51,44,51,54,46,57,57,53,56,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,117,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,56,49,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,54,52,54,51,57,52,44,51,55,46,53,52,49,48,54,51,93,44,91,45,49,49,48,46,55,52,50,49,57,56,44,51,55,46,51,52,52,51,57,50,93,44,91,45,49,49,48,46,56,49,50,53,48,49,44,51,55,46,51,50,52,57,57,50,93,44,91,45,49,49,48,46,56,57,57,53,49,55,44,51,55,46,49,55,54,49,53,51,93,44,91,45,49,49,48,46,57,57,50,52,48,52,44,51,55,46,49,49,49,48,57,51,93,44,91,45,49,49,49,46,49,55,56,51,52,57,44,51,55,46,49,48,50,54,49,51,93,44,91,45,49,49,49,46,52,49,50,55,56,52,44,51,55,46,48,48,49,53,48,51,93,44,91,45,49,49,48,46,55,53,48,54,57,44,51,55,46,48,48,51,48,48,55,93,44,91,45,49,49,48,46,48,48,48,54,56,56,44,51,54,46,57,57,56,51,52,57,93,44,91,45,49,48,57,46,48,52,53,49,55,50,44,51,54,46,57,57,56,57,55,55,93,44,91,45,49,48,57,46,48,52,51,51,54,54,44,51,55,46,52,56,52,56,49,56,93,44,91,45,49,48,57,46,48,52,49,57,57,50,44,51,55,46,56,56,49,48,56,51,93,44,91,45,49,48,57,46,48,52,50,53,56,51,44,51,56,46,49,53,51,48,50,56,93,44,91,45,49,48,57,46,48,54,48,49,49,57,44,51,56,46,52,57,57,57,56,57,93,44,91,45,49,49,48,46,48,50,53,52,48,50,44,51,56,46,52,57,57,57,56,49,93,44,91,45,49,49,48,46,48,51,49,57,55,51,44,51,56,46,51,56,52,57,53,55,93,44,91,45,49,48,57,46,57,48,57,55,54,44,51,56,46,50,55,49,50,51,93,44,91,45,49,48,57,46,57,50,55,57,57,53,44,51,56,46,49,53,49,56,56,52,93,44,91,45,49,49,48,46,48,48,57,52,57,52,44,51,56,46,49,48,57,54,53,54,93,44,91,45,49,49,48,46,50,49,52,57,52,57,44,51,55,46,56,57,50,53,53,53,93,44,91,45,49,49,48,46,51,54,52,49,52,54,44,51,55,46,56,57,50,49,56,53,93,44,91,45,49,49,48,46,52,51,55,53,51,56,44,51,55,46,56,48,54,57,50,93,44,91,45,49,49,48,46,53,48,49,53,57,52,44,51,55,46,54,53,93,44,91,45,49,49,48,46,54,52,54,51,57,52,44,51,55,46,53,52,49,48,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,53,53,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,48,57,52,55,55,44,51,57,46,56,54,54,55,48,53,93,44,91,45,56,55,46,48,49,51,48,54,50,44,51,57,46,54,48,52,55,56,55,93,44,91,45,56,54,46,57,51,57,57,56,49,44,51,57,46,52,55,51,51,52,53,93,44,91,45,56,54,46,54,56,53,55,49,44,51,57,46,52,55,48,48,54,51,93,44,91,45,56,54,46,54,53,54,54,53,44,51,57,46,54,48,49,51,57,53,93,44,91,45,56,54,46,54,56,55,52,48,54,44,51,57,46,54,51,48,52,51,55,93,44,91,45,56,54,46,54,57,53,49,50,55,44,51,57,46,56,54,52,56,52,53,93,44,91,45,56,55,46,48,48,57,52,55,55,44,51,57,46,56,54,54,55,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,71,111,111,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,54,57,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,48,51,55,55,55,52,44,52,50,46,57,49,49,56,54,52,93,44,91,45,49,49,52,46,57,48,49,54,51,54,44,52,50,46,56,53,57,49,48,56,93,44,91,45,49,49,52,46,56,49,57,57,55,49,44,52,50,46,54,54,57,55,52,54,93,44,91,45,49,49,52,46,54,49,54,52,56,55,44,52,50,46,54,52,57,50,57,56,93,44,91,45,49,49,52,46,53,57,52,51,55,53,44,52,50,46,56,53,48,57,48,49,93,44,91,45,49,49,52,46,53,57,52,54,48,53,44,52,51,46,49,57,56,51,52,53,93,44,91,45,49,49,53,46,48,56,54,49,53,53,44,52,51,46,49,57,56,48,54,52,93,44,91,45,49,49,53,46,48,56,54,56,53,50,44,52,50,46,57,49,52,53,54,93,44,91,45,49,49,53,46,48,51,55,55,55,52,44,52,50,46,57,49,49,56,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,84,105,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,52,52,54,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,56,57,46,53,48,50,49,49,56,44,51,53,46,53,56,48,54,50,49,93,44,91,45,56,57,46,54,49,50,57,55,54,44,51,53,46,54,52,51,50,51,54,93,44,91,45,56,57,46,55,57,51,49,52,53,44,51,53,46,54,51,55,51,53,54,93,44,91,45,56,57,46,57,48,57,55,57,55,44,51,53,46,53,51,55,57,49,52,93,44,91,45,57,48,46,48,53,48,52,51,55,44,51,53,46,53,49,53,56,57,52,93,44,91,45,57,48,46,48,52,49,53,54,51,44,51,53,46,51,57,54,54,50,93,44,91,45,56,57,46,54,51,50,55,55,54,44,51,53,46,51,55,53,56,50,52,93,44,91,45,56,57,46,52,55,52,49,55,49,44,51,53,46,52,48,51,48,51,57,93,44,91,45,56,57,46,53,48,50,49,49,56,44,51,53,46,53,56,48,54,50,49,93,93,93,44,91,91,91,45,57,48,46,49,52,48,50,53,55,44,51,53,46,52,51,54,54,51,54,93,44,91,45,57,48,46,48,55,52,57,57,50,44,51,53,46,51,56,52,49,53,50,93,44,91,45,57,48,46,48,53,52,51,50,50,44,51,53,46,51,56,57,50,55,55,93,44,91,45,57,48,46,49,52,48,50,53,55,44,51,53,46,52,51,54,54,51,54,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,87,101,115,116,32,66,97,116,111,110,32,82,111,117,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,51,48,56,55,44,51,48,46,54,53,56,54,55,55,93,44,91,45,57,49,46,52,49,52,55,54,44,51,48,46,53,49,49,53,49,54,93,44,91,45,57,49,46,52,56,53,48,56,57,44,51,48,46,52,57,55,49,51,56,93,44,91,45,57,49,46,51,49,49,54,54,44,51,48,46,51,50,50,52,55,49,93,44,91,45,57,49,46,49,52,50,49,48,53,44,51,48,46,51,50,51,50,57,51,93,44,91,45,57,49,46,50,52,49,53,48,56,44,51,48,46,51,53,55,53,57,50,93,44,91,45,57,49,46,49,57,55,50,48,56,44,51,48,46,53,48,55,48,56,56,93,44,91,45,57,49,46,51,49,53,50,56,50,44,51,48,46,53,57,52,50,56,56,93,44,91,45,57,49,46,50,57,55,54,53,56,44,51,48,46,54,52,57,53,52,56,93,44,91,45,57,49,46,51,49,48,48,54,49,44,51,48,46,54,53,51,57,54,49,93,44,91,45,57,49,46,51,51,48,56,55,44,51,48,46,54,53,56,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,49,53,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,57,55,50,57,54,44,52,48,46,53,56,52,48,49,52,93,44,91,45,57,51,46,51,55,52,51,56,54,44,52,48,46,53,56,48,51,51,51,93,44,91,45,57,51,46,51,54,54,57,51,53,44,52,48,46,51,56,50,57,57,57,93,44,91,45,57,50,46,56,53,53,51,49,51,44,52,48,46,51,56,53,56,57,52,93,44,91,45,57,50,46,56,53,53,54,50,57,44,52,48,46,51,52,50,55,51,54,93,44,91,45,57,50,46,54,56,52,49,54,55,44,52,48,46,51,52,51,52,54,54,93,44,91,45,57,50,46,55,49,52,53,57,54,44,52,48,46,53,56,57,52,50,55,93,44,91,45,57,51,46,48,57,55,50,57,54,44,52,48,46,53,56,52,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,84,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,53,57,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,48,53,50,52,51,52,44,52,52,46,52,55,56,52,49,49,93,44,91,45,49,49,49,46,48,52,55,49,53,55,44,52,51,46,57,56,51,52,53,57,93,44,91,45,49,49,49,46,48,52,53,52,55,51,44,52,51,46,53,48,49,48,53,49,93,44,91,45,49,49,49,46,48,52,52,56,57,51,44,52,51,46,51,49,53,55,49,57,93,44,91,45,49,49,48,46,56,49,51,57,57,54,44,52,51,46,51,49,51,57,52,93,44,91,45,49,49,48,46,56,49,51,57,57,51,44,52,51,46,50,51,53,49,55,56,93,44,91,45,49,49,48,46,53,55,56,54,53,54,44,52,51,46,50,51,53,50,50,52,93,44,91,45,49,49,48,46,53,55,56,51,56,44,52,51,46,50,57,49,54,52,93,44,91,45,49,49,48,46,51,52,51,57,53,57,44,52,51,46,50,57,49,49,54,53,93,44,91,45,49,49,48,46,51,52,52,50,49,56,44,52,51,46,51,55,55,57,49,56,93,44,91,45,49,49,48,46,48,53,55,51,49,44,52,51,46,51,55,55,55,54,56,93,44,91,45,49,49,48,46,48,53,49,53,55,44,52,51,46,52,54,52,55,56,51,93,44,91,45,49,49,48,46,48,53,51,49,55,57,44,52,52,46,48,48,56,48,50,50,93,44,91,45,49,49,48,46,49,49,57,49,57,51,44,52,52,46,49,51,50,53,56,52,93,44,91,45,49,49,48,46,49,53,48,49,55,53,44,52,52,46,50,56,57,54,54,54,93,44,91,45,49,49,48,46,50,57,54,54,52,56,44,52,52,46,52,51,49,51,52,49,93,44,91,45,49,49,48,46,50,55,54,53,48,54,44,52,52,46,53,49,53,54,54,53,93,44,91,45,49,49,48,46,51,55,53,51,51,52,44,52,52,46,53,56,51,48,49,54,93,44,91,45,49,49,48,46,54,54,55,56,57,57,44,52,52,46,53,56,50,55,57,50,93,44,91,45,49,49,48,46,54,54,55,56,54,55,44,52,52,46,54,54,54,50,57,49,93,44,91,45,49,49,49,46,48,53,51,52,52,55,44,52,52,46,54,54,54,50,54,56,93,44,91,45,49,49,49,46,48,53,50,52,51,52,44,52,52,46,52,55,56,52,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,56,50,56,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,53,54,56,49,50,44,52,50,46,57,56,56,49,55,93,44,91,45,57,49,46,48,53,49,50,55,53,44,52,50,46,55,51,55,48,48,49,93,44,91,45,57,48,46,56,57,54,57,53,49,44,52,50,46,54,55,53,48,56,50,93,44,91,45,57,48,46,55,50,48,50,48,57,44,52,50,46,54,52,48,55,53,56,93,44,91,45,57,48,46,54,52,50,56,52,51,44,52,50,46,53,48,56,52,56,49,93,44,91,45,57,48,46,52,50,54,51,55,55,44,52,50,46,53,48,55,49,55,51,93,44,91,45,57,48,46,52,50,54,57,48,50,44,52,50,46,56,49,50,56,54,50,93,44,91,45,57,48,46,52,50,57,56,50,53,44,52,51,46,50,48,48,57,52,93,44,91,45,57,48,46,54,54,54,55,56,54,44,52,51,46,49,55,49,55,55,55,93,44,91,45,57,49,46,48,54,53,50,55,44,52,50,46,57,57,50,48,55,52,93,44,91,45,57,49,46,49,53,54,56,49,50,44,52,50,46,57,56,56,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,77,111,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,52,52,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,54,54,50,48,49,53,44,52,54,46,54,51,52,54,93,44,91,45,49,48,48,46,55,56,56,55,54,56,44,52,54,46,54,57,49,55,48,49,93,44,91,45,49,48,48,46,57,51,53,57,56,51,44,52,54,46,57,56,50,56,52,93,44,91,45,49,48,49,46,55,54,52,51,57,50,44,52,54,46,57,56,49,51,48,54,93,44,91,45,49,48,50,46,48,57,53,57,48,52,44,52,54,46,57,56,49,51,50,57,93,44,91,45,49,48,50,46,48,57,54,50,52,44,52,54,46,55,49,55,55,55,50,93,44,91,45,49,48,49,46,55,49,56,50,50,56,44,52,54,46,55,49,55,56,51,52,93,44,91,45,49,48,49,46,55,49,56,52,54,50,44,52,54,46,54,51,49,50,56,51,93,44,91,45,49,48,49,46,50,57,56,56,50,51,44,52,54,46,54,51,48,52,51,49,93,44,91,45,49,48,49,46,50,57,56,57,56,57,44,52,54,46,51,55,49,52,48,52,93,44,91,45,49,48,49,46,48,52,56,53,50,55,44,52,54,46,51,55,49,52,53,93,44,91,45,49,48,49,46,48,50,53,54,57,49,44,52,54,46,50,56,52,52,49,52,93,44,91,45,49,48,48,46,57,49,56,57,53,44,52,54,46,51,57,52,57,56,51,93,44,91,45,49,48,48,46,56,49,52,56,55,51,44,52,54,46,51,56,52,55,48,49,93,44,91,45,49,48,48,46,53,57,48,49,57,57,44,52,54,46,52,50,55,56,57,52,93,44,91,45,49,48,48,46,53,52,52,53,53,53,44,52,54,46,53,51,51,55,54,54,93,44,91,45,49,48,48,46,54,54,50,48,49,53,44,52,54,46,54,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,104,111,119,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,48,53,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,48,54,53,56,52,44,51,54,46,50,52,51,55,57,54,93,44,91,45,55,54,46,55,51,54,57,51,51,44,51,54,46,49,53,48,53,56,51,93,44,91,45,55,54,46,54,56,50,53,51,53,44,51,54,46,48,51,48,57,52,55,93,44,91,45,55,54,46,54,48,54,50,49,52,44,51,53,46,57,55,56,48,53,49,93,44,91,45,55,54,46,51,57,54,55,57,52,44,51,54,46,48,50,54,52,52,51,93,44,91,45,55,54,46,52,48,50,57,53,55,44,51,54,46,48,55,50,56,54,55,93,44,91,45,55,54,46,53,55,51,48,55,51,44,51,54,46,49,49,49,55,53,55,93,44,91,45,55,54,46,53,57,48,49,48,55,44,51,54,46,50,51,56,56,54,50,93,44,91,45,55,54,46,53,53,57,54,52,54,44,51,54,46,51,53,49,48,53,54,93,44,91,45,55,54,46,54,57,54,53,55,49,44,51,54,46,50,57,54,49,51,56,93,44,91,45,55,54,46,55,48,54,53,56,52,44,51,54,46,50,52,51,55,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,117,110,99,111,109,98,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,52,52,55,52,44,34,98,101,100,115,34,58,57,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,48,56,54,48,50,44,51,53,46,56,49,56,49,55,56,93,44,91,45,56,50,46,53,49,51,49,54,49,44,51,53,46,56,48,51,51,56,93,44,91,45,56,50,46,56,48,55,48,53,54,44,51,53,46,54,56,53,56,55,52,93,44,91,45,56,50,46,56,56,51,57,48,57,44,51,53,46,54,55,56,50,51,53,93,44,91,45,56,50,46,55,54,53,56,57,51,44,51,53,46,53,54,55,52,57,53,93,44,91,45,56,50,46,55,52,53,49,51,57,44,51,53,46,52,50,50,57,54,55,93,44,91,45,56,50,46,52,55,48,53,53,55,44,51,53,46,52,52,53,49,55,52,93,44,91,45,56,50,46,51,51,50,51,51,49,44,51,53,46,53,48,48,49,49,55,93,44,91,45,56,50,46,50,54,53,55,57,53,44,51,53,46,52,54,55,56,49,56,93,44,91,45,56,50,46,49,54,57,48,52,57,44,51,53,46,53,50,55,56,49,49,93,44,91,45,56,50,46,50,53,49,50,53,49,44,51,53,46,53,53,57,57,52,51,93,44,91,45,56,50,46,50,55,53,51,57,57,44,51,53,46,55,48,52,52,51,56,93,44,91,45,56,50,46,52,48,56,54,48,50,44,51,53,46,56,49,56,49,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,80,108,117,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,57,57,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,52,51,54,56,56,54,44,52,48,46,49,53,49,57,48,53,93,44,91,45,49,50,49,46,51,54,49,50,48,54,44,51,57,46,56,53,53,52,55,51,93,44,91,45,49,50,49,46,49,51,54,55,49,53,44,51,57,46,54,50,56,49,54,57,93,44,91,45,49,50,49,46,48,55,54,54,57,53,44,51,57,46,53,57,55,50,54,52,93,44,91,45,49,50,49,46,48,48,57,52,55,55,44,51,57,46,54,51,57,52,53,57,93,44,91,45,49,50,48,46,56,55,49,52,57,56,44,51,57,46,55,55,54,53,50,57,93,44,91,45,49,50,48,46,54,53,52,50,50,55,44,51,57,46,55,48,54,54,50,57,93,44,91,45,49,50,48,46,49,52,55,49,52,57,44,51,57,46,55,48,55,54,53,56,93,44,91,45,49,50,48,46,49,49,48,54,50,55,44,51,57,46,55,54,53,55,55,57,93,44,91,45,49,50,48,46,49,48,56,55,54,49,44,51,57,46,57,51,57,53,49,93,44,91,45,49,50,48,46,50,48,57,54,52,49,44,52,48,46,48,56,54,48,48,56,93,44,91,45,49,50,48,46,51,52,49,51,56,53,44,52,48,46,49,49,53,50,52,51,93,44,91,45,49,50,48,46,53,55,54,56,50,53,44,52,48,46,50,56,53,52,51,93,44,91,45,49,50,48,46,55,54,52,52,48,51,44,52,48,46,51,49,54,48,49,93,44,91,45,49,50,48,46,56,55,49,55,56,50,44,52,48,46,50,52,49,54,52,93,44,91,45,49,50,49,46,48,54,49,52,57,51,44,52,48,46,50,53,54,52,49,55,93,44,91,45,49,50,49,46,48,54,49,52,49,55,44,52,48,46,52,52,54,53,51,54,93,44,91,45,49,50,49,46,51,50,55,56,50,54,44,52,48,46,52,52,53,51,54,55,93,44,91,45,49,50,49,46,52,57,55,54,51,53,44,52,48,46,52,52,53,53,57,49,93,44,91,45,49,50,49,46,52,55,48,51,57,53,44,52,48,46,51,53,48,50,49,51,93,44,91,45,49,50,49,46,51,52,57,44,52,48,46,50,54,52,52,53,52,93,44,91,45,49,50,49,46,52,51,54,56,56,54,44,52,48,46,49,53,49,57,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,51,48,34,44,34,78,65,77,69,34,58,34,80,101,116,101,114,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,56,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,52,55,52,48,56,44,51,55,46,50,50,51,48,54,54,93,44,91,45,55,55,46,51,57,57,50,48,51,44,51,55,46,49,55,48,56,53,93,44,91,45,55,55,46,51,55,54,55,56,53,44,51,55,46,50,52,52,56,52,57,93,44,91,45,55,55,46,51,56,51,56,53,54,44,51,55,46,50,51,56,57,48,54,93,44,91,45,55,55,46,52,48,51,54,55,49,44,51,55,46,50,51,55,51,52,54,93,44,91,45,55,55,46,52,49,54,53,48,49,44,51,55,46,50,51,51,50,48,56,93,44,91,45,55,55,46,52,52,55,52,48,56,44,51,55,46,50,50,51,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,52,55,55,44,34,98,101,100,115,34,58,49,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,52,51,52,51,49,53,44,52,52,46,53,48,54,48,57,56,93,44,91,45,55,50,46,52,57,50,57,49,52,44,52,52,46,52,50,51,48,51,93,44,91,45,55,50,46,54,53,52,51,57,56,44,52,52,46,51,57,56,50,50,52,93,44,91,45,55,50,46,56,48,52,57,57,53,44,52,52,46,52,53,49,54,55,54,93,44,91,45,55,50,46,57,53,50,49,54,55,44,52,52,46,49,54,49,50,55,49,93,44,91,45,55,50,46,57,49,54,55,55,56,44,52,52,46,48,55,49,56,56,54,93,44,91,45,55,50,46,55,52,50,51,48,51,44,52,52,46,48,50,57,54,53,53,93,44,91,45,55,50,46,53,56,57,56,53,53,44,52,52,46,49,53,57,51,52,51,93,44,91,45,55,50,46,52,52,51,48,51,50,44,52,52,46,49,50,56,54,54,57,93,44,91,45,55,50,46,51,54,56,51,53,51,44,52,52,46,50,48,52,48,53,55,93,44,91,45,55,50,46,50,50,51,54,56,57,44,52,52,46,52,50,52,53,55,51,93,44,91,45,55,50,46,52,51,52,51,49,53,44,52,52,46,53,48,54,48,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,101,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,50,52,44,34,98,101,100,115,34,58,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,57,53,55,51,55,49,44,52,53,46,48,51,57,53,54,57,93,44,91,45,49,48,50,46,57,54,52,49,50,53,44,52,52,46,54,48,52,50,56,55,93,44,91,45,49,48,51,46,53,54,55,54,53,51,44,52,52,46,54,48,52,48,57,56,93,44,91,45,49,48,51,46,53,55,52,51,57,54,44,52,52,46,50,53,54,48,55,55,93,44,91,45,49,48,51,46,52,53,51,48,49,54,44,52,52,46,50,53,54,54,48,57,93,44,91,45,49,48,51,46,52,53,50,52,53,51,44,52,52,46,49,52,48,55,55,50,93,44,91,45,49,48,50,46,51,56,56,48,52,53,44,52,52,46,49,52,48,49,56,51,93,44,91,45,49,48,50,46,51,52,49,54,51,53,44,52,52,46,51,52,56,55,55,50,93,44,91,45,49,48,50,46,50,56,52,52,48,52,44,52,52,46,52,52,49,50,51,50,93,44,91,45,49,48,50,46,49,49,50,53,51,53,44,52,52,46,52,51,53,56,56,54,93,44,91,45,49,48,50,46,48,48,49,48,54,56,44,52,52,46,53,49,48,57,50,54,93,44,91,45,49,48,50,46,48,48,48,52,51,50,44,52,52,46,53,49,49,54,54,51,93,44,91,45,49,48,49,46,57,57,57,57,57,44,52,53,46,48,51,56,50,55,52,93,44,91,45,49,48,50,46,57,53,55,51,55,49,44,52,53,46,48,51,57,53,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,52,53,50,51,44,34,98,101,100,115,34,58,51,56,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,51,55,53,56,55,44,51,57,46,57,50,55,49,51,55,93,44,91,45,56,54,46,50,51,57,55,51,57,44,51,57,46,57,50,54,48,53,53,93,44,91,45,56,54,46,51,50,54,50,57,51,44,51,57,46,57,50,52,48,50,57,93,44,91,45,56,54,46,51,50,54,51,52,49,44,51,57,46,54,51,50,49,55,55,93,44,91,45,56,54,46,50,52,57,56,56,53,44,51,57,46,54,51,51,54,52,53,93,44,91,45,56,53,46,57,53,50,48,56,44,51,57,46,54,51,56,51,52,53,93,44,91,45,56,53,46,57,53,49,55,50,49,44,51,57,46,54,57,55,49,51,54,93,44,91,45,56,53,46,57,51,55,53,56,55,44,51,57,46,57,50,55,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,105,99,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,50,54,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,53,51,52,51,56,44,51,51,46,53,54,51,55,48,51,93,44,91,45,57,49,46,52,53,55,51,55,44,51,51,46,51,56,56,57,55,52,93,44,91,45,57,49,46,52,54,48,52,44,51,51,46,48,48,53,57,49,53,93,44,91,45,57,49,46,52,51,53,55,56,50,44,51,51,46,48,48,54,48,57,57,93,44,91,45,57,49,46,50,54,53,48,49,56,44,51,51,46,48,48,53,48,56,51,93,44,91,45,57,49,46,49,54,54,48,55,51,44,51,51,46,48,48,52,49,48,54,93,44,91,45,57,49,46,49,54,54,50,56,50,44,51,51,46,48,49,49,51,51,49,93,44,91,45,57,49,46,48,56,55,53,56,57,44,51,51,46,49,52,53,49,55,54,93,44,91,45,57,49,46,49,54,57,52,53,57,44,51,51,46,52,53,50,49,51,55,93,44,91,45,57,49,46,50,49,53,54,55,49,44,51,51,46,53,50,57,52,50,51,93,44,91,45,57,49,46,50,51,48,56,57,55,44,51,51,46,53,54,49,52,93,44,91,45,57,49,46,52,53,51,52,51,56,44,51,51,46,53,54,51,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,105,98,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,52,57,48,44,34,98,101,100,115,34,58,49,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,49,48,54,56,53,44,51,50,46,57,53,50,55,57,50,93,44,91,45,56,51,46,56,57,49,57,50,50,44,51,50,46,56,52,56,51,53,49,93,44,91,45,56,51,46,56,48,56,50,54,55,44,51,50,46,55,50,56,54,56,50,93,44,91,45,56,51,46,55,48,49,49,53,50,44,51,50,46,54,57,50,49,54,57,93,44,91,45,56,51,46,53,57,55,54,53,54,44,51,50,46,54,54,52,51,51,56,93,44,91,45,56,51,46,53,49,51,53,49,49,44,51,50,46,56,52,52,56,54,56,93,44,91,45,56,51,46,54,53,56,50,49,49,44,51,50,46,56,56,55,57,49,51,93,44,91,45,56,51,46,55,49,48,54,56,53,44,51,50,46,57,53,50,55,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,71,117,97,121,97,110,105,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,55,57,55,53,53,55,44,49,56,46,49,51,51,52,52,53,93,44,91,45,54,54,46,56,53,56,50,51,51,44,49,55,46,57,53,48,56,50,53,93,44,91,45,54,54,46,56,51,57,57,50,57,44,49,55,46,56,57,56,57,57,51,93,44,91,45,54,54,46,55,55,52,49,50,51,44,49,55,46,57,49,52,55,57,54,93,44,91,45,54,54,46,55,54,57,48,52,57,44,49,56,46,49,51,52,57,56,51,93,44,91,45,54,54,46,55,57,55,53,53,55,44,49,56,46,49,51,51,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,83,97,110,32,83,101,98,97,115,116,105,195,161,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,57,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,48,50,55,49,55,51,44,49,56,46,51,57,51,51,55,54,93,44,91,45,54,55,46,48,53,50,53,56,51,44,49,56,46,51,48,54,54,53,53,93,44,91,45,54,55,46,48,51,55,57,51,53,44,49,56,46,50,56,57,55,48,53,93,44,91,45,54,54,46,57,48,55,50,51,54,44,49,56,46,50,53,51,48,57,93,44,91,45,54,54,46,56,57,51,51,51,57,44,49,56,46,51,54,55,48,56,57,93,44,91,45,54,54,46,56,57,56,57,44,49,56,46,51,54,54,49,48,56,93,44,91,45,54,54,46,57,50,50,48,50,44,49,56,46,51,57,51,50,48,52,93,44,91,45,54,55,46,48,50,55,49,55,51,44,49,56,46,51,57,51,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,80,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,54,52,52,44,34,98,101,100,115,34,58,49,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,49,54,52,52,53,50,44,51,53,46,55,50,56,56,51,49,93,44,91,45,57,51,46,49,54,55,56,44,51,53,46,53,57,55,54,57,53,93,44,91,45,57,51,46,50,50,51,54,51,51,44,51,53,46,52,54,56,53,57,51,93,44,91,45,57,51,46,50,57,53,57,49,44,51,53,46,52,54,57,57,49,53,93,44,91,45,57,51,46,50,57,57,48,49,44,51,53,46,51,50,55,54,52,52,93,44,91,45,57,51,46,50,55,56,49,51,54,44,51,53,46,51,49,55,53,48,51,93,44,91,45,57,51,46,49,53,54,48,55,56,44,51,53,46,50,51,53,51,48,55,93,44,91,45,57,51,46,48,56,52,54,55,56,44,51,53,46,49,50,55,51,57,93,44,91,45,57,50,46,56,57,54,49,48,57,44,51,53,46,49,55,48,54,55,56,93,44,91,45,57,50,46,56,53,53,44,51,53,46,49,55,50,55,55,55,93,44,91,45,57,50,46,56,53,48,54,50,52,44,51,53,46,52,54,50,57,53,93,44,91,45,57,50,46,56,49,51,52,49,55,44,51,53,46,53,52,57,93,44,91,45,57,50,46,56,48,57,55,54,51,44,51,53,46,55,50,50,52,48,49,93,44,91,45,57,50,46,57,53,49,51,49,53,44,51,53,46,55,50,52,54,54,51,93,44,91,45,57,51,46,49,54,52,52,53,50,44,51,53,46,55,50,56,56,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,83,111,117,116,104,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,51,48,49,50,55,44,51,54,46,55,48,55,54,53,56,93,44,91,45,55,55,46,51,54,48,57,48,54,44,51,54,46,53,54,52,55,54,93,44,91,45,55,55,46,50,57,54,56,55,53,44,51,54,46,53,52,52,56,53,53,93,44,91,45,55,55,46,49,54,52,51,55,55,44,51,54,46,53,52,54,51,50,57,93,44,91,45,55,54,46,57,49,53,57,55,55,44,51,54,46,53,52,51,56,56,52,93,44,91,45,55,54,46,57,49,53,56,57,57,44,51,54,46,53,53,50,49,52,57,93,44,91,45,55,54,46,56,57,55,53,57,50,44,51,54,46,54,52,52,48,53,93,44,91,45,55,54,46,57,48,57,54,55,50,44,51,54,46,54,52,56,49,55,53,93,44,91,45,55,54,46,57,53,53,52,50,52,44,51,54,46,54,54,52,53,56,55,93,44,91,45,55,54,46,57,50,52,54,50,57,44,51,54,46,55,48,55,55,50,57,93,44,91,45,55,54,46,56,49,52,57,52,49,44,51,54,46,57,48,48,52,54,53,93,44,91,45,55,54,46,56,52,57,54,56,52,44,51,54,46,57,57,54,50,49,49,93,44,91,45,55,54,46,57,53,51,53,52,54,44,51,54,46,57,52,52,52,53,93,44,91,45,55,55,46,52,51,48,49,50,55,44,51,54,46,55,48,55,54,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,71,114,101,103,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,52,57,52,44,34,98,101,100,115,34,58,55,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,56,54,57,51,53,44,51,50,46,53,51,55,50,52,54,93,44,91,45,57,52,46,57,56,53,52,49,49,44,51,50,46,51,55,48,56,50,93,44,91,45,57,52,46,54,51,56,51,52,55,44,51,50,46,51,55,48,53,51,57,93,44,91,45,57,52,46,53,55,57,50,49,57,44,51,50,46,51,57,52,57,49,54,93,44,91,45,57,52,46,55,48,49,57,56,54,44,51,50,46,52,50,49,55,56,50,93,44,91,45,57,52,46,55,48,49,55,57,44,51,50,46,54,53,50,50,48,57,93,44,91,45,57,52,46,57,56,54,57,51,53,44,51,50,46,53,51,55,50,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,82,111,99,107,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,51,54,56,54,44,34,98,101,100,115,34,58,49,51,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,56,49,51,56,52,44,52,49,46,51,50,52,54,57,51,93,44,91,45,55,52,46,50,51,52,50,56,56,44,52,49,46,49,52,51,48,48,56,93,44,91,45,55,52,46,50,49,49,50,50,52,44,52,49,46,49,51,51,55,49,52,93,44,91,45,55,51,46,56,57,51,57,55,57,44,52,48,46,57,57,55,50,48,53,93,44,91,45,55,51,46,56,56,57,52,56,44,52,49,46,49,52,53,48,57,53,93,44,91,45,55,51,46,57,56,50,53,56,52,44,52,49,46,51,50,49,54,57,51,93,44,91,45,55,51,46,57,56,49,51,56,52,44,52,49,46,51,50,52,54,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,51,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,53,52,48,52,57,44,51,54,46,52,57,55,56,52,50,93,44,91,45,57,50,46,56,56,52,57,53,52,44,51,54,46,52,57,48,56,57,49,93,44,91,45,57,50,46,56,57,48,54,57,53,44,51,54,46,49,49,52,49,51,50,93,44,91,45,57,50,46,56,51,55,55,55,54,44,51,54,46,48,55,48,49,50,52,93,44,91,45,57,50,46,52,49,49,53,48,50,44,51,54,46,48,54,50,55,53,54,93,44,91,45,57,50,46,52,48,57,49,55,53,44,51,54,46,49,51,52,54,56,52,93,44,91,45,57,50,46,53,50,48,53,56,49,44,51,54,46,50,54,56,56,50,52,93,44,91,45,57,50,46,53,50,57,49,50,56,44,51,54,46,52,57,56,53,57,57,93,44,91,45,57,50,46,55,55,50,51,52,51,44,51,54,46,52,57,55,54,54,50,93,44,91,45,57,50,46,56,53,52,48,52,57,44,51,54,46,52,57,55,56,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,56,48,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,56,48,48,34,44,34,78,65,77,69,34,58,34,83,117,102,102,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,49,54,48,44,34,98,101,100,115,34,58,49,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,56,57,55,53,57,50,44,51,54,46,54,52,52,48,53,93,44,91,45,55,54,46,57,49,53,56,57,57,44,51,54,46,53,53,50,49,52,57,93,44,91,45,55,54,46,53,52,49,57,54,54,44,51,54,46,53,53,48,54,53,51,93,44,91,45,55,54,46,52,57,49,52,57,54,44,51,54,46,53,53,48,54,52,56,93,44,91,45,55,54,46,52,53,55,52,54,57,44,51,54,46,56,49,52,56,52,49,93,44,91,45,55,54,46,52,50,48,51,54,56,44,51,54,46,56,54,54,51,52,56,93,44,91,45,55,54,46,51,57,57,53,54,55,44,51,54,46,57,51,48,57,52,55,93,44,91,45,55,54,46,52,52,53,51,48,49,44,51,54,46,57,52,49,56,57,49,93,44,91,45,55,54,46,53,51,51,53,50,44,51,54,46,57,49,53,53,54,51,93,44,91,45,55,54,46,56,57,55,53,57,50,44,51,54,46,54,52,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,69,108,32,80,97,115,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,49,53,51,44,34,98,101,100,115,34,58,49,50,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,51,51,53,52,52,44,51,57,46,49,50,57,56,49,57,93,44,91,45,49,48,53,46,48,50,56,57,48,51,44,51,56,46,56,54,56,57,48,55,93,44,91,45,49,48,52,46,57,51,56,57,57,52,44,51,56,46,55,57,54,56,56,52,93,44,91,45,49,48,52,46,57,52,50,52,50,54,44,51,56,46,54,52,57,56,56,50,93,44,91,45,49,48,52,46,57,52,49,53,51,51,44,51,56,46,53,49,57,53,54,57,93,44,91,45,49,48,52,46,48,53,51,57,50,49,44,51,56,46,53,50,50,51,57,51,93,44,91,45,49,48,52,46,48,53,53,53,50,56,44,51,56,46,56,54,56,56,54,56,93,44,91,45,49,48,52,46,48,53,49,53,56,57,44,51,57,46,49,50,56,51,55,93,44,91,45,49,48,52,46,54,54,50,56,57,54,44,51,57,46,49,50,57,53,50,55,93,44,91,45,49,48,53,46,48,51,51,53,52,52,44,51,57,46,49,50,57,56,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,70,114,97,110,99,111,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,51,52,50,44,34,98,101,100,115,34,58,52,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,51,57,57,56,44,51,56,46,48,55,54,53,52,56,93,44,91,45,57,48,46,54,52,53,49,51,53,44,51,55,46,55,51,52,56,49,51,93,44,91,45,57,48,46,54,52,55,56,55,52,44,51,55,46,54,52,50,56,48,57,93,44,91,45,57,48,46,53,51,53,48,49,54,44,51,55,46,54,52,51,54,52,49,93,44,91,45,57,48,46,49,52,54,55,55,56,44,51,55,46,54,52,49,54,49,56,93,44,91,45,57,48,46,49,49,48,53,51,55,44,51,55,46,54,55,49,51,52,93,44,91,45,57,48,46,50,48,48,50,48,56,44,51,55,46,54,54,57,54,50,56,93,44,91,45,57,48,46,52,53,57,49,51,51,44,51,55,46,56,55,56,57,50,52,93,44,91,45,57,48,46,51,50,50,56,55,44,51,55,46,57,56,49,55,51,49,93,44,91,45,57,48,46,52,49,54,48,50,50,44,51,56,46,48,52,50,51,49,53,93,44,91,45,57,48,46,53,56,51,51,50,52,44,51,56,46,48,48,51,52,57,57,93,44,91,45,57,48,46,54,51,57,57,56,44,51,56,46,48,55,54,53,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,55,53,34,44,34,78,65,77,69,34,58,34,87,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,56,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,54,49,48,56,56,55,44,51,49,46,54,53,49,56,48,50,93,44,91,45,49,48,51,46,53,48,56,56,48,53,44,51,49,46,54,50,52,49,49,55,93,44,91,45,49,48,51,46,52,54,53,48,53,55,44,51,49,46,52,51,49,57,52,56,93,44,91,45,49,48,51,46,49,56,49,50,50,53,44,51,49,46,51,55,48,50,52,53,93,44,91,45,49,48,51,46,48,49,49,48,52,44,51,49,46,51,55,49,51,48,54,93,44,91,45,49,48,50,46,56,50,53,49,49,54,44,51,49,46,50,54,54,57,49,52,93,44,91,45,49,48,50,46,55,54,55,51,54,53,44,51,49,46,50,57,51,56,48,51,93,44,91,45,49,48,50,46,55,54,55,50,52,54,44,51,49,46,54,53,49,55,49,52,93,44,91,45,49,48,50,46,55,57,56,57,51,57,44,51,49,46,54,53,49,55,56,51,93,44,91,45,49,48,51,46,51,50,55,53,51,56,44,51,49,46,54,53,49,52,50,93,44,91,45,49,48,51,46,54,49,48,56,56,55,44,51,49,46,54,53,49,56,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,75,105,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,53,48,56,50,44,51,56,46,54,49,53,49,55,50,93,44,91,45,49,48,51,46,49,55,50,57,52,51,44,51,56,46,54,49,50,52,53,93,44,91,45,49,48,51,46,49,55,50,56,55,56,44,51,56,46,53,50,53,51,49,53,93,44,91,45,49,48,51,46,53,48,52,54,54,54,44,51,56,46,53,49,54,52,48,57,93,44,91,45,49,48,51,46,53,48,49,55,54,52,44,51,56,46,50,54,53,48,49,54,93,44,91,45,49,48,51,46,51,57,57,57,51,56,44,51,56,46,50,54,53,52,51,53,93,44,91,45,49,48,50,46,55,52,50,51,51,44,51,56,46,50,54,54,57,55,49,93,44,91,45,49,48,50,46,48,52,52,52,55,53,44,51,56,46,50,54,56,55,52,57,93,44,91,45,49,48,50,46,48,52,53,48,56,50,44,51,56,46,54,49,53,49,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,56,55,34,44,34,78,65,77,69,34,58,34,87,105,108,98,97,114,103,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,48,54,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,55,53,50,57,52,44,51,52,46,48,56,53,54,49,56,93,44,91,45,57,57,46,52,55,53,54,53,44,51,51,46,56,51,52,48,48,53,93,44,91,45,57,56,46,57,53,51,50,48,50,44,51,51,46,56,51,52,48,50,53,93,44,91,45,57,56,46,57,53,50,51,57,53,44,51,52,46,50,49,50,52,57,55,93,44,91,45,57,57,46,49,56,57,55,55,54,44,51,52,46,50,49,52,51,53,55,93,44,91,45,57,57,46,50,48,54,57,48,53,44,51,52,46,51,51,56,50,55,55,93,44,91,45,57,57,46,50,54,49,50,55,53,44,51,52,46,52,48,51,53,48,56,93,44,91,45,57,57,46,52,55,53,49,49,53,44,51,52,46,51,57,53,57,51,93,44,91,45,57,57,46,52,55,53,50,57,52,44,51,52,46,48,56,53,54,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,117,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,48,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,53,53,50,51,55,51,44,52,50,46,57,53,52,51,49,49,93,44,91,45,49,50,52,46,55,48,48,50,56,51,44,52,50,46,55,56,52,48,50,56,93,44,91,45,49,50,52,46,52,55,51,53,53,52,44,52,50,46,54,49,52,55,51,52,93,44,91,45,49,50,52,46,53,54,55,50,50,49,44,52,50,46,52,55,55,55,57,49,93,44,91,45,49,50,52,46,52,57,52,49,53,52,44,52,50,46,51,57,54,48,56,54,93,44,91,45,49,50,52,46,52,55,49,51,53,54,44,52,50,46,50,48,51,55,50,51,93,44,91,45,49,50,52,46,52,48,57,51,49,52,44,52,50,46,48,54,52,48,55,55,93,44,91,45,49,50,52,46,51,50,56,56,51,53,44,52,49,46,57,57,56,51,51,52,93,44,91,45,49,50,51,46,56,50,50,48,52,49,44,52,49,46,57,57,53,53,56,93,44,91,45,49,50,51,46,56,53,56,53,52,57,44,52,50,46,49,51,53,49,49,54,93,44,91,45,49,50,51,46,55,57,50,56,51,52,44,52,50,46,50,50,52,51,49,52,93,44,91,45,49,50,51,46,56,57,50,54,53,49,44,52,50,46,51,53,51,50,57,51,93,44,91,45,49,50,52,46,48,50,53,57,56,52,44,52,50,46,51,53,57,52,48,57,93,44,91,45,49,50,51,46,57,57,56,55,56,44,52,50,46,52,57,57,57,54,50,93,44,91,45,49,50,51,46,56,57,48,54,53,55,44,52,50,46,53,48,48,53,51,56,93,44,91,45,49,50,51,46,55,49,54,52,57,50,44,52,50,46,55,56,52,48,54,49,93,44,91,45,49,50,51,46,56,49,49,53,53,51,44,52,50,46,55,56,56,56,51,55,93,44,91,45,49,50,51,46,57,50,53,55,49,55,44,52,50,46,55,55,52,53,49,52,93,44,91,45,49,50,51,46,57,57,54,50,57,49,44,52,50,46,54,56,53,54,53,49,93,44,91,45,49,50,52,46,49,51,56,55,52,56,44,52,50,46,54,55,49,49,49,53,93,44,91,45,49,50,52,46,49,54,49,51,48,56,44,52,50,46,56,56,51,52,57,57,93,44,91,45,49,50,52,46,50,53,56,51,56,56,44,52,50,46,57,53,52,57,52,54,93,44,91,45,49,50,52,46,53,53,50,51,55,51,44,52,50,46,57,53,52,51,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,84,101,108,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,49,51,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,51,51,48,52,52,52,44,51,57,46,49,50,57,54,56,53,93,44,91,45,49,48,53,46,51,50,57,49,51,52,44,51,56,46,54,57,55,50,48,53,93,44,91,45,49,48,53,46,50,52,48,51,54,50,44,51,56,46,54,52,55,53,57,53,93,44,91,45,49,48,52,46,57,52,50,52,50,54,44,51,56,46,54,52,57,56,56,50,93,44,91,45,49,48,52,46,57,51,56,57,57,52,44,51,56,46,55,57,54,56,56,52,93,44,91,45,49,48,53,46,48,50,56,57,48,51,44,51,56,46,56,54,56,57,48,55,93,44,91,45,49,48,53,46,48,51,51,53,52,52,44,51,57,46,49,50,57,56,49,57,93,44,91,45,49,48,53,46,51,50,57,50,50,44,51,57,46,49,50,57,54,56,57,93,44,91,45,49,48,53,46,51,51,48,52,52,52,44,51,57,46,49,50,57,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,55,53,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,50,50,53,55,44,51,57,46,55,52,55,49,57,53,93,44,91,45,57,52,46,54,48,49,50,49,53,44,51,57,46,53,51,48,49,55,93,44,91,45,57,52,46,54,48,48,56,49,57,44,51,57,46,52,53,54,49,53,53,93,44,91,45,57,52,46,50,49,48,54,52,50,44,51,57,46,52,53,52,54,56,50,93,44,91,45,57,52,46,50,48,56,52,50,51,44,51,57,46,53,50,55,50,93,44,91,45,57,52,46,50,48,53,57,54,49,44,51,57,46,55,52,53,56,52,49,93,44,91,45,57,52,46,54,48,50,50,53,55,44,51,57,46,55,52,55,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,87,97,115,97,116,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,50,51,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,53,57,51,57,52,50,44,52,48,46,53,55,55,48,54,54,93,44,91,45,49,49,49,46,54,50,48,52,51,55,44,52,48,46,52,53,53,48,49,56,93,44,91,45,49,49,49,46,53,53,53,50,51,53,44,52,48,46,51,54,50,54,57,54,93,44,91,45,49,49,49,46,52,50,56,55,50,56,44,52,48,46,50,56,55,55,54,93,44,91,45,49,49,49,46,51,50,49,51,48,53,44,52,48,46,50,56,55,51,55,50,93,44,91,45,49,49,49,46,50,50,53,53,48,55,44,52,48,46,49,54,55,51,50,52,93,44,91,45,49,49,49,46,50,52,57,51,51,57,44,52,48,46,48,53,53,50,49,55,93,44,91,45,49,49,49,46,48,56,51,48,54,49,44,51,57,46,57,52,51,49,57,56,93,44,91,45,49,49,48,46,56,57,49,54,53,53,44,51,57,46,56,57,57,54,53,52,93,44,91,45,49,49,48,46,57,48,49,57,55,52,44,52,48,46,54,55,56,49,54,50,93,44,91,45,49,49,48,46,57,55,54,48,56,54,44,52,48,46,53,57,50,57,53,52,93,44,91,45,49,49,49,46,49,52,55,50,49,54,44,52,48,46,53,52,57,54,48,50,93,44,91,45,49,49,49,46,51,55,53,52,56,49,44,52,48,46,54,51,51,49,49,54,93,44,91,45,49,49,49,46,53,53,51,50,54,54,44,52,48,46,54,48,57,51,49,51,93,44,91,45,49,49,49,46,53,57,51,57,52,50,44,52,48,46,53,55,55,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,97,114,105,98,111,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,48,54,51,48,50,51,44,52,51,46,48,50,50,51,54,52,93,44,91,45,49,49,50,46,49,50,55,52,50,52,44,52,50,46,57,52,52,52,57,56,93,44,91,45,49,49,50,46,49,52,53,48,56,57,44,52,50,46,55,57,48,54,54,52,93,44,91,45,49,49,50,46,49,48,53,56,56,44,52,50,46,54,57,57,50,48,51,93,44,91,45,49,49,49,46,57,55,51,51,55,51,44,52,50,46,55,49,53,52,55,50,93,44,91,45,49,49,49,46,57,49,54,57,50,55,44,52,50,46,54,49,55,50,54,52,93,44,91,45,49,49,49,46,56,55,53,54,51,54,44,52,50,46,52,49,54,49,53,56,93,44,91,45,49,49,49,46,53,57,57,50,50,55,44,52,50,46,52,49,53,51,57,53,93,44,91,45,49,49,49,46,54,51,52,57,49,44,52,50,46,53,55,48,48,50,54,93,44,91,45,49,49,49,46,51,54,56,48,54,50,44,52,50,46,53,57,48,50,57,52,93,44,91,45,49,49,49,46,50,51,54,48,56,57,44,52,50,46,52,55,57,55,53,57,93,44,91,45,49,49,49,46,48,52,54,56,49,55,44,52,50,46,53,49,51,57,50,53,93,44,91,45,49,49,49,46,48,52,52,48,55,50,44,52,51,46,48,49,57,52,48,55,93,44,91,45,49,49,49,46,53,56,57,52,56,57,44,52,51,46,48,50,48,48,53,50,93,44,91,45,49,49,50,46,48,54,51,48,50,51,44,52,51,46,48,50,50,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,82,111,99,107,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,50,55,48,44,34,98,101,100,115,34,58,49,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,55,49,52,56,52,57,44,51,54,46,53,52,49,57,54,53,93,44,91,45,56,48,46,48,50,55,51,51,57,44,51,54,46,53,52,50,52,56,93,44,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,44,91,45,55,57,46,53,51,50,52,49,44,51,54,46,50,52,49,52,54,51,93,44,91,45,55,57,46,53,51,49,56,54,53,44,51,54,46,50,52,57,54,55,51,93,44,91,45,55,57,46,53,49,51,54,51,56,44,51,54,46,53,52,48,57,48,50,93,44,91,45,55,57,46,55,49,52,56,52,57,44,51,54,46,53,52,49,57,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,80,114,97,105,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,52,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,48,50,53,48,53,44,51,53,46,48,51,48,52,50,53,93,44,91,45,57,49,46,56,48,51,55,48,51,44,51,52,46,57,50,49,53,50,52,93,44,91,45,57,49,46,54,57,51,55,48,53,44,51,52,46,57,49,57,54,48,53,93,44,91,45,57,49,46,55,48,48,56,50,56,44,51,52,46,54,55,50,48,50,57,93,44,91,45,57,49,46,54,52,51,48,56,44,51,52,46,54,51,54,56,54,50,93,44,91,45,57,49,46,54,55,56,48,51,55,44,51,52,46,52,56,49,57,50,93,44,91,45,57,49,46,53,57,52,52,50,57,44,51,52,46,53,54,56,48,53,93,44,91,45,57,49,46,51,55,55,56,50,44,51,52,46,53,54,51,52,56,93,44,91,45,57,49,46,51,54,56,53,54,44,51,52,46,57,49,50,55,51,53,93,44,91,45,57,49,46,51,54,51,55,54,51,44,51,53,46,48,53,49,56,56,55,93,44,91,45,57,49,46,52,54,53,49,49,52,44,51,53,46,48,56,57,52,53,52,93,44,91,45,57,49,46,53,56,52,48,48,53,44,51,53,46,48,57,49,53,56,52,93,44,91,45,57,49,46,56,48,50,53,48,53,44,51,53,46,48,51,48,52,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,114,97,100,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,52,56,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,51,48,56,51,57,44,51,51,46,55,48,55,56,48,54,93,44,91,45,57,50,46,51,49,49,48,55,57,44,51,51,46,52,57,57,55,56,50,93,44,91,45,57,50,46,51,56,50,48,54,44,51,51,46,51,52,53,57,55,49,93,44,91,45,57,50,46,51,53,48,52,51,50,44,51,51,46,50,57,56,57,52,49,93,44,91,45,57,50,46,49,51,55,53,50,55,44,51,51,46,49,54,50,57,53,54,93,44,91,45,57,49,46,57,55,55,50,56,52,44,51,51,46,51,48,50,48,50,54,93,44,91,45,57,49,46,57,57,48,49,54,55,44,51,51,46,51,57,56,50,49,52,93,44,91,45,57,49,46,57,55,53,56,52,52,44,51,51,46,55,48,52,52,49,52,93,44,91,45,57,50,46,51,51,48,56,51,57,44,51,51,46,55,48,55,56,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,54,57,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,48,56,51,56,54,44,51,49,46,57,49,55,53,49,49,93,44,91,45,57,56,46,49,53,54,53,54,56,44,51,49,46,56,52,49,55,49,51,93,44,91,45,57,56,46,52,54,51,55,51,54,44,51,49,46,54,56,51,57,56,57,93,44,91,45,57,56,46,50,55,49,48,55,44,51,49,46,52,49,54,51,57,56,93,44,91,45,57,56,46,49,56,48,48,48,54,44,51,49,46,52,54,51,55,49,55,93,44,91,45,57,55,46,55,54,54,52,51,49,44,51,49,46,54,55,50,52,54,49,93,44,91,45,57,56,46,48,48,53,52,54,50,44,51,50,46,48,49,55,56,57,55,93,44,91,45,57,56,46,50,48,56,51,56,54,44,51,49,46,57,49,55,53,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,97,114,111,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,56,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,57,52,57,51,51,53,44,51,56,46,57,49,56,51,51,51,93,44,91,45,55,53,46,56,57,54,55,55,52,44,51,56,46,56,49,53,49,48,57,93,44,91,45,55,54,46,48,49,53,48,52,53,44,51,56,46,55,50,56,54,56,55,93,44,91,45,55,53,46,57,52,53,50,52,56,44,51,56,46,54,55,52,49,48,57,93,44,91,45,55,53,46,56,51,55,57,55,52,44,51,56,46,55,48,51,57,57,93,44,91,45,55,53,46,55,48,55,52,52,55,44,51,56,46,54,51,53,51,57,54,93,44,91,45,55,53,46,55,50,50,55,57,55,44,51,56,46,56,50,57,56,53,49,93,44,91,45,55,53,46,55,52,55,55,54,49,44,51,57,46,49,52,51,51,51,56,93,44,91,45,55,53,46,56,51,52,57,52,56,44,51,57,46,49,48,56,52,51,55,93,44,91,45,55,53,46,57,52,57,51,51,53,44,51,56,46,57,49,56,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,48,51,44,34,98,101,100,115,34,58,49,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,54,57,55,53,44,52,54,46,49,48,55,52,53,93,44,91,45,57,53,46,55,53,56,53,48,56,44,52,53,46,55,53,57,57,51,50,93,44,91,45,57,53,46,49,51,57,54,55,44,52,53,46,55,53,56,56,57,49,93,44,91,45,57,53,46,49,51,57,55,51,49,44,52,53,46,55,55,51,52,49,54,93,44,91,45,57,53,46,49,52,53,56,56,44,52,54,46,49,48,54,55,54,49,93,44,91,45,57,53,46,55,54,57,55,53,44,52,54,46,49,48,55,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,53,55,55,49,48,54,44,52,54,46,49,55,56,57,56,49,93,44,91,45,49,49,50,46,52,54,54,51,50,57,44,52,54,46,48,57,50,57,55,57,93,44,91,45,49,49,50,46,52,48,49,52,52,49,44,52,53,46,56,51,49,56,53,49,93,44,91,45,49,49,50,46,49,57,48,50,54,57,44,52,53,46,55,52,56,53,48,51,93,44,91,45,49,49,50,46,48,56,56,55,54,44,52,53,46,56,52,57,48,53,93,44,91,45,49,49,49,46,57,50,54,57,54,53,44,52,53,46,56,53,53,54,57,52,93,44,91,45,49,49,49,46,56,48,53,50,53,57,44,52,53,46,55,57,56,51,48,54,93,44,91,45,49,49,49,46,54,54,48,48,53,55,44,52,53,46,56,51,51,53,93,44,91,45,49,49,49,46,54,54,48,52,50,50,44,52,54,46,48,52,57,49,57,50,93,44,91,45,49,49,49,46,55,56,52,53,54,53,44,52,54,46,48,52,57,56,49,51,93,44,91,45,49,49,49,46,55,56,55,57,52,57,44,52,54,46,53,54,57,52,54,53,93,44,91,45,49,49,50,46,48,50,57,50,51,49,44,52,54,46,53,54,56,56,48,53,93,44,91,45,49,49,50,46,49,55,54,50,51,53,44,52,54,46,52,53,54,51,52,50,93,44,91,45,49,49,50,46,51,49,48,53,55,51,44,52,54,46,52,50,49,49,55,49,93,44,91,45,49,49,50,46,53,51,51,54,50,53,44,52,54,46,51,51,48,56,57,56,93,44,91,45,49,49,50,46,53,53,56,53,57,57,44,52,54,46,50,54,53,56,50,49,93,44,91,45,49,49,50,46,53,55,55,49,48,54,44,52,54,46,49,55,56,57,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,70,97,105,114,102,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,55,51,57,52,44,34,98,101,100,115,34,58,50,57,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,50,56,51,49,56,44,51,57,46,48,53,55,54,55,56,93,44,91,45,55,55,46,53,51,53,57,57,49,44,51,56,46,56,52,55,51,54,56,93,44,91,45,55,55,46,50,50,51,54,56,51,44,51,56,46,54,53,50,48,54,52,93,44,91,45,55,55,46,50,50,55,51,51,54,44,51,56,46,54,48,52,53,55,93,44,91,45,55,55,46,48,56,54,51,57,49,44,51,56,46,55,48,54,50,50,55,93,44,91,45,55,55,46,48,52,49,51,54,50,44,51,56,46,55,56,53,52,49,53,93,44,91,45,55,55,46,49,49,48,55,57,57,44,51,56,46,56,52,51,52,52,54,93,44,91,45,55,55,46,49,52,57,55,48,49,44,51,56,46,56,55,53,54,55,93,44,91,45,55,55,46,49,56,57,55,53,52,44,51,56,46,56,55,56,49,51,54,93,44,91,45,55,55,46,49,55,50,50,55,54,44,51,56,46,56,57,51,50,52,53,93,44,91,45,55,55,46,49,49,57,55,57,50,44,51,56,46,57,51,52,51,55,52,93,44,91,45,55,55,46,51,50,56,51,49,56,44,51,57,46,48,53,55,54,55,56,93,93,44,91,91,45,55,55,46,51,51,52,56,53,50,44,51,56,46,56,53,51,55,51,55,93,44,91,45,55,55,46,51,48,51,49,51,57,44,51,56,46,56,54,57,50,48,56,93,44,91,45,55,55,46,50,55,48,53,57,55,44,51,56,46,56,54,54,48,55,53,93,44,91,45,55,55,46,50,55,48,53,50,44,51,56,46,56,52,48,57,48,50,93,44,91,45,55,55,46,51,49,54,50,50,52,44,51,56,46,56,51,54,52,48,56,93,44,91,45,55,55,46,51,51,52,56,53,50,44,51,56,46,56,53,51,55,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,68,101,101,114,32,76,111,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,48,48,44,34,98,101,100,115,34,58,49,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,48,51,54,56,50,53,44,52,54,46,50,54,54,56,50,54,93,44,91,45,49,49,51,46,50,56,52,53,51,50,44,52,54,46,50,50,50,55,56,51,93,44,91,45,49,49,51,46,50,55,56,48,49,50,44,52,54,46,48,52,53,50,54,56,93,44,91,45,49,49,51,46,53,49,55,52,48,57,44,52,53,46,57,52,48,48,56,57,93,44,91,45,49,49,51,46,53,49,54,49,52,52,44,52,53,46,57,51,56,56,49,52,93,44,91,45,49,49,51,46,51,57,54,57,48,51,44,52,53,46,55,54,55,54,53,93,44,91,45,49,49,51,46,49,55,57,55,57,49,44,52,53,46,56,56,53,48,48,57,93,44,91,45,49,49,51,46,48,56,53,53,49,55,44,52,53,46,56,54,48,54,52,56,93,44,91,45,49,49,50,46,57,50,52,53,53,50,44,52,53,46,57,51,54,52,52,51,93,44,91,45,49,49,50,46,55,55,55,49,50,44,52,54,46,49,51,53,56,50,54,93,44,91,45,49,49,50,46,53,55,55,49,48,54,44,52,54,46,49,55,56,57,56,49,93,44,91,45,49,49,50,46,53,53,56,53,57,57,44,52,54,46,50,54,53,56,50,49,93,44,91,45,49,49,51,46,48,51,54,56,50,53,44,52,54,46,50,54,54,56,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,55,55,53,44,34,98,101,100,115,34,58,51,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,49,56,49,50,44,51,54,46,48,52,56,57,55,55,93,44,91,45,56,52,46,50,55,49,53,56,55,44,51,53,46,57,49,48,49,54,53,93,44,91,45,56,52,46,49,57,50,50,56,55,44,51,53,46,57,57,53,52,56,56,93,44,91,45,56,51,46,57,52,49,55,49,49,44,51,54,46,49,56,54,51,55,56,93,44,91,45,56,52,46,48,48,52,51,49,55,44,51,54,46,50,55,48,51,55,56,93,44,91,45,56,52,46,48,54,57,54,49,56,44,51,54,46,50,51,48,57,55,56,93,44,91,45,56,52,46,50,50,55,53,50,55,44,51,54,46,50,52,52,56,55,57,93,44,91,45,56,52,46,51,55,50,55,51,49,44,51,54,46,50,49,54,55,55,56,93,44,91,45,56,52,46,52,52,49,48,51,52,44,51,54,46,49,54,51,52,55,56,93,44,91,45,56,52,46,51,52,49,56,49,50,44,51,54,46,48,52,56,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,72,117,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,52,53,55,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,52,48,48,56,55,44,52,49,46,50,53,53,51,51,55,93,44,91,45,56,50,46,56,50,57,53,49,50,44,52,48,46,57,57,54,54,50,52,93,44,91,45,56,50,46,55,50,52,55,57,50,44,52,48,46,57,57,53,54,51,56,93,44,91,45,56,50,46,52,51,50,56,53,50,44,52,48,46,57,57,50,57,52,52,93,44,91,45,56,50,46,51,51,54,52,57,54,44,52,49,46,48,54,53,55,54,49,93,44,91,45,56,50,46,51,52,50,51,49,52,44,52,49,46,50,56,51,53,53,52,93,44,91,45,56,50,46,56,52,49,52,55,53,44,52,49,46,50,57,48,48,50,51,93,44,91,45,56,50,46,56,52,48,48,56,55,44,52,49,46,50,53,53,51,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,53,50,49,52,50,44,51,49,46,55,49,48,55,57,54,93,44,91,45,56,50,46,54,50,55,51,52,50,44,51,49,46,54,55,50,54,55,50,93,44,91,45,56,50,46,53,57,55,53,48,57,44,51,49,46,52,54,57,50,57,51,93,44,91,45,56,50,46,52,49,55,50,52,54,44,51,49,46,52,49,55,49,49,57,93,44,91,45,56,50,46,51,52,52,56,52,51,44,51,49,46,52,51,48,49,51,93,44,91,45,56,50,46,50,50,54,53,56,53,44,51,49,46,53,51,48,54,57,57,93,44,91,45,56,50,46,53,50,49,52,50,44,51,49,46,55,49,48,55,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,68,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,52,56,50,50,44,34,98,101,100,115,34,58,52,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,52,55,55,54,49,44,51,57,46,49,52,51,51,51,56,93,44,91,45,55,53,46,55,50,50,55,57,55,44,51,56,46,56,50,57,56,53,49,93,44,91,45,55,53,46,53,53,53,48,49,51,44,51,56,46,56,51,53,54,52,57,93,44,91,45,55,53,46,51,55,50,49,51,49,44,51,56,46,57,54,49,52,51,54,93,44,91,45,55,53,46,49,51,56,52,54,49,44,51,57,46,48,48,50,54,57,55,93,44,91,45,55,53,46,49,54,56,52,54,50,44,51,57,46,48,53,54,49,55,57,93,44,91,45,55,53,46,51,50,49,48,50,49,44,51,57,46,50,53,49,51,55,57,93,44,91,45,55,53,46,52,52,52,55,53,49,44,51,57,46,51,53,53,48,56,57,93,44,91,45,55,53,46,52,56,49,51,54,44,51,57,46,51,56,55,53,53,53,93,44,91,45,55,53,46,53,55,52,52,50,57,44,51,57,46,51,49,51,54,49,49,93,44,91,45,55,53,46,55,54,48,48,55,52,44,51,57,46,50,57,54,56,49,57,93,44,91,45,55,53,46,55,53,54,48,48,52,44,51,57,46,50,52,54,48,54,54,93,44,91,45,55,53,46,55,52,55,55,54,49,44,51,57,46,49,52,51,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,87,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,57,51,54,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,49,53,57,52,49,44,52,49,46,54,49,57,49,49,93,44,91,45,56,51,46,53,54,57,57,51,52,44,52,49,46,54,49,55,49,53,93,44,91,45,56,51,46,55,52,55,50,49,55,44,52,49,46,52,54,54,50,49,54,93,44,91,45,56,51,46,56,56,51,50,51,52,44,52,49,46,52,49,52,53,48,51,93,44,91,45,56,51,46,56,56,49,49,52,57,44,52,49,46,49,54,55,56,50,52,93,44,91,45,56,51,46,52,50,49,48,53,52,44,52,49,46,49,54,54,55,56,93,44,91,45,56,51,46,52,49,57,56,52,51,44,52,49,46,50,53,52,48,48,51,93,44,91,45,56,51,46,52,49,52,54,50,54,44,52,49,46,53,48,48,50,50,56,93,44,91,45,56,51,46,52,49,53,57,52,49,44,52,49,46,54,49,57,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,55,53,53,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,50,48,49,49,53,44,51,52,46,50,57,53,50,55,54,93,44,91,45,56,51,46,56,49,55,54,56,50,44,51,52,46,49,50,55,52,57,51,93,44,91,45,56,51,46,55,53,49,51,56,49,44,51,52,46,48,54,52,50,48,49,93,44,91,45,56,51,46,53,54,51,50,49,53,44,51,52,46,48,51,49,55,53,55,93,44,91,45,56,51,46,53,51,55,51,56,53,44,51,51,46,57,54,53,57,49,50,93,44,91,45,56,51,46,51,54,48,48,50,56,44,51,52,46,48,52,48,53,55,50,93,44,91,45,56,51,46,52,48,50,52,50,56,44,51,52,46,49,57,55,52,57,57,93,44,91,45,56,51,46,52,56,48,51,54,49,44,51,52,46,50,54,50,48,51,56,93,44,91,45,56,51,46,54,50,48,49,49,53,44,51,52,46,50,57,53,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,53,50,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,44,91,45,57,53,46,53,48,56,51,50,56,44,51,56,46,51,57,48,50,55,56,93,44,91,45,57,53,46,53,49,56,57,55,44,51,56,46,48,51,56,50,51,93,44,91,45,57,53,46,48,55,55,56,55,54,44,51,56,46,48,51,55,55,48,54,93,44,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,57,57,57,44,34,98,101,100,115,34,58,50,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,51,57,52,50,51,44,52,49,46,48,54,51,57,57,53,93,44,91,45,57,48,46,52,52,52,51,51,57,44,52,48,46,55,49,52,56,54,56,93,44,91,45,56,57,46,57,56,54,48,54,52,44,52,48,46,55,49,50,51,54,49,93,44,91,45,56,57,46,57,56,53,52,55,57,44,52,48,46,57,55,52,52,57,53,93,44,91,45,56,57,46,57,56,52,53,53,57,44,52,49,46,49,52,57,51,57,52,93,44,91,45,57,48,46,52,51,55,54,53,50,44,52,49,46,49,53,49,52,54,51,93,44,91,45,57,48,46,52,51,57,52,50,51,44,52,49,46,48,54,51,57,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,87,104,101,97,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,55,52,53,55,52,53,44,52,54,46,54,57,52,48,57,55,93,44,91,45,49,48,57,46,57,54,55,56,44,52,54,46,55,53,48,56,55,53,93,44,91,45,49,49,48,46,50,55,51,51,51,55,44,52,54,46,55,49,48,53,48,57,93,44,91,45,49,49,48,46,50,56,49,57,55,49,44,52,54,46,50,50,48,54,48,53,93,44,91,45,49,48,57,46,54,53,51,56,55,49,44,52,54,46,50,49,57,52,48,52,93,44,91,45,49,48,57,46,52,48,50,57,48,54,44,52,54,46,50,49,57,55,48,54,93,44,91,45,49,48,57,46,51,56,57,49,54,51,44,52,54,46,54,57,51,54,50,53,93,44,91,45,49,48,57,46,55,52,53,55,52,53,44,52,54,46,54,57,52,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,110,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,55,54,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,53,51,50,49,52,44,51,53,46,57,53,52,51,57,57,93,44,91,45,56,54,46,50,48,55,49,52,55,44,51,53,46,55,48,51,55,57,93,44,91,45,56,54,46,49,52,51,54,53,50,44,51,53,46,54,54,49,55,52,55,93,44,91,45,56,53,46,57,56,53,48,54,50,44,51,53,46,54,54,48,49,48,56,93,44,91,45,56,53,46,57,56,52,56,57,49,44,51,53,46,55,51,52,53,53,51,93,44,91,45,56,53,46,56,56,53,49,53,54,44,51,53,46,56,51,57,54,53,56,93,44,91,45,56,54,46,48,49,52,56,52,57,44,51,53,46,57,54,49,48,54,93,44,91,45,56,54,46,49,53,51,50,49,52,44,51,53,46,57,53,52,51,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,49,57,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,56,51,53,49,52,50,44,52,53,46,50,55,55,48,52,55,93,44,91,45,55,48,46,55,55,57,56,52,50,44,52,53,46,48,49,56,51,55,57,93,44,91,45,55,48,46,55,54,57,50,50,56,44,52,52,46,55,51,50,50,50,56,93,44,91,45,55,48,46,54,49,53,48,51,44,52,52,46,55,57,53,54,51,52,93,44,91,45,55,48,46,53,49,48,53,57,56,44,52,52,46,54,50,55,50,49,54,93,44,91,45,55,48,46,50,56,48,55,52,56,44,52,52,46,53,54,57,54,49,57,93,44,91,45,55,48,46,50,51,56,57,48,52,44,52,52,46,52,53,56,57,52,50,93,44,91,45,55,48,46,49,50,57,51,57,44,52,52,46,52,56,55,50,49,55,93,44,91,45,55,48,46,48,52,48,50,49,53,44,52,52,46,53,56,56,55,50,50,93,44,91,45,54,57,46,57,51,48,52,53,49,44,52,52,46,54,49,48,56,53,50,93,44,91,45,54,57,46,57,57,54,49,57,49,44,52,52,46,54,55,55,52,57,55,93,44,91,45,55,48,46,48,51,51,50,55,44,52,52,46,56,54,52,53,52,93,44,91,45,55,48,46,49,49,48,51,54,53,44,52,52,46,57,52,55,51,49,49,93,44,91,45,55,48,46,49,53,57,51,55,53,44,52,53,46,49,50,56,51,57,54,93,44,91,45,55,48,46,50,57,51,56,50,54,44,52,53,46,49,48,57,57,48,51,93,44,91,45,55,48,46,52,49,56,53,49,57,44,52,53,46,49,52,52,48,48,53,93,44,91,45,55,48,46,53,53,50,56,53,51,44,52,53,46,54,54,55,56,57,57,93,44,91,45,55,48,46,55,50,50,53,55,49,44,52,53,46,53,49,51,54,55,50,93,44,91,45,55,48,46,54,50,52,52,53,52,44,52,53,46,52,48,54,49,52,57,93,44,91,45,55,48,46,56,50,53,55,51,55,44,52,53,46,52,48,48,50,54,53,93,44,91,45,55,48,46,56,51,53,49,52,50,44,52,53,46,50,55,55,48,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,77,101,110,105,102,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,51,49,48,54,44,51,55,46,56,50,53,51,55,50,93,44,91,45,56,51,46,52,57,53,48,56,44,51,55,46,56,54,49,57,48,54,93,44,91,45,56,51,46,52,51,51,57,52,50,44,51,56,46,48,51,51,57,55,52,93,44,91,45,56,51,46,52,57,56,56,52,54,44,51,56,46,48,53,48,54,50,93,44,91,45,56,51,46,55,53,57,52,51,44,51,55,46,57,57,56,55,51,49,93,44,91,45,56,51,46,55,54,56,55,56,51,44,51,55,46,57,49,56,51,55,49,93,44,91,45,56,51,46,54,51,49,48,54,44,51,55,46,56,50,53,51,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,99,80,104,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,54,52,44,34,98,101,100,115,34,58,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,48,53,55,53,56,44,52,53,46,57,51,57,55,51,49,93,44,91,45,57,57,46,55,49,56,48,55,49,44,52,53,46,57,52,48,56,56,51,93,44,91,45,57,57,46,55,49,55,52,54,54,44,52,53,46,53,57,51,52,50,56,93,44,91,45,57,57,46,55,48,55,55,48,53,44,52,53,46,53,57,51,51,57,49,93,44,91,45,57,56,46,55,50,53,48,48,50,44,52,53,46,53,57,49,50,53,50,93,44,91,45,57,56,46,55,50,52,51,55,53,44,52,53,46,57,51,56,55,51,49,93,44,91,45,57,57,46,48,48,53,55,53,56,44,52,53,46,57,51,57,55,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,117,110,110,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,53,51,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,53,48,48,54,48,54,44,51,57,46,50,49,55,57,49,54,93,44,91,45,49,48,55,46,53,48,48,54,53,53,44,51,56,46,54,54,56,53,53,51,93,44,91,45,49,48,55,46,53,48,48,48,50,44,51,56,46,51,48,49,57,50,54,93,44,91,45,49,48,55,46,54,51,53,48,52,44,51,56,46,51,48,49,56,57,54,93,44,91,45,49,48,55,46,53,54,56,54,50,44,51,56,46,49,52,55,50,54,55,93,44,91,45,49,48,55,46,48,48,49,49,49,57,44,51,56,46,49,52,55,48,55,50,93,44,91,45,49,48,55,46,48,48,48,54,48,49,44,51,56,46,52,50,53,54,49,57,93,44,91,45,49,48,54,46,50,52,54,57,52,44,51,56,46,52,50,50,55,54,56,93,44,91,45,49,48,54,46,51,52,56,49,48,56,44,51,56,46,53,49,50,52,57,57,93,44,91,45,49,48,54,46,52,51,48,49,53,57,44,51,56,46,54,53,51,52,54,56,93,44,91,45,49,48,54,46,52,49,54,50,54,51,44,51,56,46,56,50,51,56,53,93,44,91,45,49,48,54,46,52,54,53,48,51,50,44,51,56,46,57,49,48,51,53,52,93,44,91,45,49,48,54,46,53,57,57,50,49,52,44,51,56,46,57,57,55,57,57,52,93,44,91,45,49,48,54,46,55,52,48,54,57,53,44,51,57,46,48,52,53,57,48,54,93,44,91,45,49,48,54,46,56,48,49,56,55,52,44,51,56,46,57,55,56,51,48,51,93,44,91,45,49,48,54,46,57,48,56,49,57,54,44,51,56,46,57,57,50,53,55,57,93,44,91,45,49,48,55,46,48,54,54,51,50,44,51,57,46,49,49,56,56,48,53,93,44,91,45,49,48,55,46,50,56,50,52,57,44,51,57,46,49,49,56,55,49,56,93,44,91,45,49,48,55,46,51,57,52,52,56,54,44,51,57,46,50,53,54,50,57,57,93,44,91,45,49,48,55,46,53,48,48,54,48,54,44,51,57,46,50,49,55,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,101,118,111,105,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,49,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,53,56,56,57,54,44,52,53,46,50,48,54,53,55,52,93,44,91,45,56,53,46,50,50,50,55,48,55,44,52,53,46,50,48,53,53,54,93,44,91,45,56,53,46,50,50,51,54,56,49,44,52,53,46,49,49,55,56,54,49,93,44,91,45,56,52,46,56,53,55,52,53,50,44,52,53,46,49,49,54,55,48,55,93,44,91,45,56,52,46,55,51,52,51,48,51,44,52,53,46,50,48,49,57,51,54,93,44,91,45,56,52,46,55,51,50,54,56,55,44,52,53,46,50,56,57,51,56,50,93,44,91,45,56,52,46,57,54,52,55,56,55,44,52,53,46,50,57,49,54,48,49,93,44,91,45,56,53,46,50,56,51,50,51,56,44,52,53,46,53,53,48,50,48,57,93,44,91,45,56,53,46,51,48,55,53,56,52,44,52,53,46,54,50,53,48,48,54,93,44,91,45,56,53,46,50,50,49,51,57,52,44,52,53,46,55,56,50,56,52,51,93,44,91,45,56,53,46,50,51,57,54,49,56,44,52,53,46,56,55,48,55,52,93,44,91,45,56,53,46,53,55,48,48,55,52,44,52,53,46,56,56,51,50,52,52,93,44,91,45,56,53,46,56,54,56,50,52,49,44,52,53,46,56,49,57,55,57,53,93,44,91,45,56,53,46,56,53,53,55,54,56,44,52,53,46,53,55,56,51,56,54,93,44,91,45,56,53,46,54,50,53,48,55,54,44,52,53,46,52,53,52,54,48,50,93,44,91,45,56,53,46,52,53,56,56,57,54,44,52,53,46,50,48,54,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,119,105,102,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,49,49,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,49,49,55,48,51,54,44,52,53,46,52,49,49,57,57,51,93,44,91,45,57,54,46,49,48,51,54,49,52,44,52,53,46,49,55,54,54,55,53,93,44,91,45,57,54,46,48,51,54,54,57,56,44,52,53,46,49,53,50,50,48,54,93,44,91,45,57,53,46,50,52,54,52,56,57,44,52,53,46,49,53,50,52,51,49,93,44,91,45,57,53,46,50,53,53,50,49,51,44,52,53,46,52,49,50,55,51,57,93,44,91,45,57,53,46,55,52,55,52,48,50,44,52,53,46,52,49,50,51,49,51,93,44,91,45,57,54,46,49,49,55,48,51,54,44,52,53,46,52,49,49,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,83,101,110,101,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,55,53,44,34,98,101,100,115,34,58,49,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,49,57,56,52,51,44,52,49,46,50,53,52,48,48,51,93,44,91,45,56,51,46,52,50,49,48,53,52,44,52,49,46,49,54,54,55,56,93,44,91,45,56,51,46,52,50,48,51,49,57,44,52,48,46,57,57,49,56,56,57,93,44,91,45,56,51,46,49,49,50,55,51,55,44,52,48,46,57,57,51,52,52,55,93,44,91,45,56,50,46,56,50,57,53,49,50,44,52,48,46,57,57,54,54,50,52,93,44,91,45,56,50,46,56,52,48,48,56,55,44,52,49,46,50,53,53,51,51,55,93,44,91,45,56,51,46,52,49,57,56,52,51,44,52,49,46,50,53,52,48,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,55,34,44,34,78,65,77,69,34,58,34,84,97,116,116,110,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,51,50,55,56,56,44,51,50,46,51,49,56,56,51,56,93,44,91,45,56,50,46,49,56,50,55,50,55,44,51,50,46,49,54,48,52,52,50,93,44,91,45,56,50,46,50,50,53,48,52,50,44,51,49,46,57,49,51,48,55,52,93,44,91,45,56,50,46,48,52,56,53,56,50,44,51,49,46,56,50,55,48,55,53,93,44,91,45,56,49,46,57,54,57,48,53,50,44,51,49,46,55,56,57,51,50,52,93,44,91,45,56,49,46,56,50,52,52,48,53,44,51,50,46,48,49,52,56,56,50,93,44,91,45,56,49,46,55,54,49,55,51,53,44,51,50,46,48,52,55,57,93,44,91,45,56,49,46,57,56,48,48,52,49,44,51,50,46,48,56,49,53,48,50,93,44,91,45,56,50,46,48,50,53,51,51,57,44,51,50,46,50,55,56,56,56,51,93,44,91,45,56,50,46,50,51,50,55,56,56,44,51,50,46,51,49,56,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,50,57,34,44,34,78,65,77,69,34,58,34,83,116,101,112,104,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,55,50,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,57,54,48,49,54,44,51,50,46,57,53,55,48,51,55,93,44,91,45,57,57,46,48,57,54,48,53,44,51,50,46,53,49,52,55,54,56,93,44,91,45,57,56,46,53,55,54,50,53,54,44,51,50,46,53,49,53,49,54,51,93,44,91,45,57,56,46,53,55,53,54,49,54,44,51,50,46,57,53,52,51,52,57,93,44,91,45,57,56,46,57,53,48,56,55,53,44,51,50,46,57,53,54,57,49,56,93,44,91,45,57,57,46,48,57,54,48,49,54,44,51,50,46,57,53,55,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,53,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,48,50,54,49,52,44,51,54,46,48,48,52,57,54,54,93,44,91,45,55,55,46,51,52,50,52,49,56,44,51,53,46,57,48,53,50,54,50,93,44,91,45,55,55,46,51,53,48,51,54,57,44,51,53,46,56,49,57,50,50,56,93,44,91,45,55,55,46,49,55,52,44,51,53,46,55,51,50,56,51,49,93,44,91,45,55,54,46,57,56,53,56,52,50,44,51,53,46,54,53,56,56,52,56,93,44,91,45,55,54,46,56,52,55,50,54,52,44,51,53,46,55,49,57,57,56,50,93,44,91,45,55,54,46,55,54,48,53,57,56,44,51,53,46,56,54,52,56,56,55,93,44,91,45,55,55,46,48,48,53,50,53,44,51,53,46,56,53,56,52,51,51,93,44,91,45,55,55,46,48,52,50,56,56,50,44,51,53,46,57,52,50,50,55,56,93,44,91,45,55,55,46,51,50,55,53,54,57,44,51,54,46,48,55,49,51,54,49,93,44,91,45,55,55,46,52,48,50,54,49,52,44,51,54,46,48,48,52,57,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,82,97,118,97,108,108,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,57,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,51,51,50,55,57,54,44,52,54,46,54,54,48,53,56,49,93,44,91,45,49,49,52,46,51,52,50,57,56,53,44,52,54,46,53,49,56,48,52,93,44,91,45,49,49,52,46,52,55,48,55,57,53,44,52,54,46,50,54,53,51,55,55,93,44,91,45,49,49,52,46,52,52,53,50,51,52,44,52,54,46,49,54,55,57,52,54,93,44,91,45,49,49,52,46,52,56,48,53,51,55,44,52,54,46,48,51,48,52,51,57,93,44,91,45,49,49,52,46,52,48,53,57,49,55,44,52,53,46,56,55,48,52,93,44,91,45,49,49,52,46,53,54,54,51,52,56,44,52,53,46,55,55,50,55,51,57,93,44,91,45,49,49,52,46,52,57,57,54,54,55,44,52,53,46,54,54,56,53,49,51,93,44,91,45,49,49,52,46,53,54,52,57,57,57,44,52,53,46,53,53,55,56,48,51,93,44,91,45,49,49,52,46,50,54,57,56,57,50,44,52,53,46,52,56,52,53,53,50,93,44,91,45,49,49,51,46,57,51,56,48,57,53,44,52,53,46,54,57,53,55,52,93,44,91,45,49,49,51,46,55,49,50,53,50,50,44,52,53,46,56,51,56,51,56,52,93,44,91,45,49,49,51,46,53,51,50,51,55,44,52,53,46,56,55,56,52,48,53,93,44,91,45,49,49,51,46,53,49,54,49,52,52,44,52,53,46,57,51,56,56,49,52,93,44,91,45,49,49,51,46,53,49,55,52,48,57,44,52,53,46,57,52,48,48,56,57,93,44,91,45,49,49,51,46,54,52,56,51,53,56,44,52,53,46,57,54,53,48,51,56,93,44,91,45,49,49,51,46,55,53,51,50,52,54,44,52,54,46,49,49,50,56,93,44,91,45,49,49,51,46,55,56,50,48,51,50,44,52,54,46,51,53,57,53,49,56,93,44,91,45,49,49,51,46,56,55,52,54,53,49,44,52,54,46,53,48,56,51,50,57,93,44,91,45,49,49,51,46,56,50,55,55,52,51,44,52,54,46,54,54,48,56,57,54,93,44,91,45,49,49,52,46,51,51,50,55,57,54,44,52,54,46,54,54,48,53,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,55,34,44,34,78,65,77,69,34,58,34,87,105,108,107,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,56,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,55,57,53,48,54,44,51,51,46,57,55,49,49,50,52,93,44,91,45,56,50,46,56,52,54,54,56,54,44,51,51,46,57,52,48,54,51,57,93,44,91,45,56,50,46,57,56,55,50,56,54,44,51,51,46,55,56,48,55,49,93,44,91,45,56,50,46,57,52,57,48,52,54,44,51,51,46,55,51,51,51,51,51,93,44,91,45,56,50,46,56,57,48,53,57,57,44,51,51,46,54,51,50,56,55,55,93,44,91,45,56,50,46,56,49,50,57,53,56,44,51,51,46,54,53,53,56,51,54,93,44,91,45,56,50,46,54,55,57,57,55,53,44,51,51,46,53,57,57,55,57,50,93,44,91,45,56,50,46,54,52,57,55,48,53,44,51,51,46,54,48,56,55,54,56,93,44,91,45,56,50,46,52,55,57,53,49,56,44,51,51,46,54,51,57,53,51,53,93,44,91,45,56,50,46,53,55,51,54,53,50,44,51,51,46,55,56,54,49,49,54,93,44,91,45,56,50,46,54,52,53,52,53,49,44,51,51,46,57,56,52,49,57,53,93,44,91,45,56,50,46,55,55,57,53,48,54,44,51,51,46,57,55,49,49,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,51,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,51,52,48,57,51,56,44,52,55,46,56,57,52,51,49,54,93,44,91,45,49,49,56,46,53,51,49,50,57,55,44,52,55,46,56,55,52,56,55,56,93,44,91,45,49,49,56,46,55,51,48,51,50,53,44,52,55,46,57,48,48,49,54,57,93,44,91,45,49,49,56,46,56,53,49,57,54,44,52,55,46,57,53,55,57,48,54,93,44,91,45,49,49,56,46,57,55,51,53,48,52,44,52,55,46,57,52,51,52,49,52,93,44,91,45,49,49,56,46,57,55,57,55,55,55,44,52,55,46,50,54,49,55,48,57,93,44,91,45,49,49,55,46,57,54,48,57,51,44,52,55,46,50,54,48,53,54,56,93,44,91,45,49,49,55,46,56,50,51,54,50,57,44,52,55,46,50,54,48,50,50,93,44,91,45,49,49,55,46,56,50,48,57,52,55,44,52,55,46,56,50,53,55,55,53,93,44,91,45,49,49,56,46,48,55,56,49,56,50,44,52,55,46,56,48,48,48,54,50,93,44,91,45,49,49,56,46,50,49,50,51,50,51,44,52,55,46,57,52,53,52,57,51,93,44,91,45,49,49,56,46,51,52,48,57,51,56,44,52,55,46,56,57,52,51,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,83,97,110,32,77,97,116,101,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,53,57,51,53,44,34,98,101,100,115,34,58,50,52,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,53,55,53,49,56,57,44,51,55,46,55,48,54,55,50,49,93,44,91,45,49,50,50,46,53,55,52,57,54,51,44,51,55,46,52,57,57,57,52,51,93,44,91,45,49,50,50,46,52,54,53,56,54,57,44,51,55,46,51,52,49,50,52,93,44,91,45,49,50,50,46,52,54,52,49,49,55,44,51,55,46,49,55,55,56,52,56,93,44,91,45,49,50,50,46,51,49,51,56,57,57,44,51,55,46,48,53,52,55,54,52,93,44,91,45,49,50,50,46,51,49,55,54,56,50,44,51,55,46,49,56,54,57,52,53,93,44,91,45,49,50,50,46,49,53,50,55,55,52,44,51,55,46,50,49,53,52,52,52,93,44,91,45,49,50,50,46,49,53,50,50,55,56,44,51,55,46,50,56,54,48,53,53,93,44,91,45,49,50,50,46,49,57,48,52,48,50,44,51,55,46,52,51,49,52,55,50,93,44,91,45,49,50,50,46,48,56,49,52,55,51,44,51,55,46,52,55,55,56,51,56,93,44,91,45,49,50,50,46,50,56,49,55,56,44,51,55,46,55,48,56,50,51,93,44,91,45,49,50,50,46,53,55,53,49,56,57,44,51,55,46,55,48,54,55,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,57,51,54,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,57,57,53,52,54,44,52,49,46,55,48,53,56,49,54,93,44,91,45,56,52,46,56,48,53,57,55,50,44,52,49,46,54,57,54,49,49,56,93,44,91,45,56,52,46,56,48,52,54,56,55,44,52,49,46,53,51,48,49,51,52,93,44,91,45,56,52,46,56,48,52,48,54,51,44,52,49,46,52,50,54,48,53,49,93,44,91,45,56,52,46,51,52,49,54,54,52,44,52,49,46,52,50,55,53,54,56,93,44,91,45,56,52,46,51,52,49,57,48,50,44,52,49,46,52,56,53,53,49,57,93,44,91,45,56,52,46,51,56,48,55,51,53,44,52,49,46,53,49,51,57,52,50,93,44,91,45,56,52,46,51,57,57,53,52,54,44,52,49,46,55,48,53,56,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,54,51,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,48,50,51,50,57,44,51,55,46,48,48,48,49,53,93,44,91,45,49,48,50,46,48,52,50,48,56,57,44,51,54,46,57,57,51,48,49,54,93,44,91,45,49,48,50,46,48,52,49,54,52,50,44,51,55,46,51,56,57,49,57,93,44,91,45,49,48,50,46,48,52,49,53,56,53,44,51,55,46,54,52,52,50,56,50,93,44,91,45,49,48,50,46,55,52,55,54,49,53,44,51,55,46,54,52,51,54,52,50,93,44,91,45,49,48,51,46,48,55,53,57,51,56,44,51,55,46,54,52,51,52,50,93,44,91,45,49,48,51,46,48,56,54,49,48,50,44,51,55,46,48,48,48,49,56,56,93,44,91,45,49,48,51,46,48,48,50,51,50,57,44,51,55,46,48,48,48,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,111,117,110,100,97,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,52,57,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,48,52,57,48,56,54,44,52,57,46,48,48,48,56,52,54,93,44,91,45,49,49,55,46,48,51,50,51,52,53,44,52,56,46,57,57,57,50,48,49,93,44,91,45,49,49,55,46,48,51,50,52,52,49,44,52,56,46,56,52,54,54,54,54,93,44,91,45,49,49,54,46,55,56,53,49,55,52,44,52,56,46,56,52,55,52,48,50,93,44,91,45,49,49,54,46,55,56,52,56,55,56,44,52,56,46,53,48,48,52,55,50,93,44,91,45,49,49,54,46,48,52,57,48,53,56,44,52,56,46,53,48,50,48,54,50,93,44,91,45,49,49,54,46,48,52,57,48,56,54,44,52,57,46,48,48,48,56,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,97,114,32,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,54,50,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,53,57,57,50,50,55,44,52,50,46,52,49,53,51,57,53,93,44,91,45,49,49,49,46,53,54,54,54,50,56,44,52,50,46,50,55,51,53,55,52,93,44,91,45,49,49,49,46,54,50,54,49,48,52,44,52,50,46,50,48,55,53,52,50,93,44,91,45,49,49,49,46,53,57,53,55,52,51,44,52,50,46,48,57,52,50,49,93,44,91,45,49,49,49,46,53,48,55,56,48,54,44,52,49,46,57,57,57,53,53,50,93,44,91,45,49,49,49,46,48,52,54,55,49,52,44,52,50,46,48,48,49,55,48,50,93,44,91,45,49,49,49,46,48,52,54,56,49,55,44,52,50,46,53,49,51,57,50,53,93,44,91,45,49,49,49,46,50,51,54,48,56,57,44,52,50,46,52,55,57,55,53,57,93,44,91,45,49,49,49,46,51,54,56,48,54,50,44,52,50,46,53,57,48,50,57,52,93,44,91,45,49,49,49,46,54,51,52,57,49,44,52,50,46,53,55,48,48,50,54,93,44,91,45,49,49,49,46,53,57,57,50,50,55,44,52,50,46,52,49,53,51,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,54,53,52,44,34,98,101,100,115,34,58,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,50,48,50,50,55,44,52,48,46,53,48,52,48,55,55,93,44,91,45,56,51,46,53,53,49,51,51,56,44,52,48,46,50,50,57,51,55,93,44,91,45,56,51,46,53,48,51,55,49,52,44,52,48,46,49,49,49,52,54,56,93,44,91,45,56,51,46,50,48,54,50,55,51,44,52,48,46,49,48,55,55,51,51,93,44,91,45,56,51,46,49,54,57,57,56,49,44,52,48,46,49,52,51,48,56,55,93,44,91,45,56,51,46,50,52,56,52,50,56,44,52,48,46,50,52,52,52,54,54,93,44,91,45,56,51,46,50,52,56,53,57,53,44,52,48,46,52,52,51,57,56,57,93,44,91,45,56,51,46,50,52,56,49,56,51,44,52,48,46,53,48,55,48,51,52,93,44,91,45,56,51,46,52,49,56,54,55,44,52,48,46,53,48,53,50,50,57,93,44,91,45,56,51,46,53,50,48,50,50,55,44,52,48,46,53,48,52,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,117,121,97,104,111,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,51,55,56,51,44,34,98,101,100,115,34,58,55,49,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,55,48,53,56,44,52,49,46,56,55,55,56,52,53,93,44,91,45,56,49,46,57,55,49,50,54,50,44,52,49,46,51,53,49,50,54,56,93,44,91,45,56,49,46,56,55,56,48,53,51,44,52,49,46,50,55,53,48,52,52,93,44,91,45,56,49,46,54,56,52,57,53,44,52,49,46,50,55,55,49,52,54,93,44,91,45,56,49,46,53,57,56,48,53,50,44,52,49,46,51,53,49,49,53,55,93,44,91,45,56,49,46,51,57,49,54,57,52,44,52,49,46,51,52,56,50,55,50,93,44,91,45,56,49,46,51,57,49,48,48,53,44,52,49,46,53,54,57,55,49,54,93,44,91,45,56,49,46,52,56,55,56,52,50,44,52,49,46,53,55,48,48,53,49,93,44,91,45,56,49,46,52,57,53,49,56,49,44,52,50,46,48,57,54,52,48,50,93,44,91,45,56,49,46,57,55,48,53,56,44,52,49,46,56,55,55,56,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,53,34,44,34,78,65,77,69,34,58,34,76,97,118,97,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,52,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,52,48,49,48,56,44,50,57,46,51,56,52,52,56,56,93,44,91,45,57,54,46,57,55,54,51,55,56,44,50,57,46,49,48,52,48,52,54,93,44,91,45,57,54,46,57,51,56,53,56,55,44,50,57,46,48,54,51,50,52,52,93,44,91,45,57,54,46,54,53,56,52,54,54,44,50,57,46,50,54,51,56,55,54,93,44,91,45,57,54,46,53,54,48,53,53,53,44,50,57,46,51,51,53,52,51,57,93,44,91,45,57,54,46,55,57,51,49,51,50,44,50,57,46,53,55,55,51,55,56,93,44,91,45,57,54,46,56,55,52,50,50,50,44,50,57,46,54,51,50,55,48,54,93,44,91,45,57,55,46,49,52,50,54,52,51,44,50,57,46,54,50,56,49,48,49,93,44,91,45,57,55,46,50,48,52,48,56,55,44,50,57,46,53,56,48,54,49,51,93,44,91,45,57,55,46,50,52,48,49,48,56,44,50,57,46,51,56,52,52,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,78,111,119,97,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,56,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,56,54,55,54,50,44,51,54,46,57,57,57,51,49,93,44,91,45,57,53,46,56,48,57,56,50,44,51,54,46,57,52,49,57,51,93,44,91,45,57,53,46,56,48,57,53,52,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,52,51,49,53,55,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,52,51,49,55,53,56,44,51,54,46,57,52,50,53,57,51,93,44,91,45,57,53,46,52,48,55,55,51,51,44,51,54,46,57,57,57,51,49,49,93,44,91,45,57,53,46,53,50,50,52,49,53,44,51,54,46,57,57,57,50,56,93,44,91,45,57,53,46,55,56,54,55,54,50,44,51,54,46,57,57,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,71,108,97,115,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,49,57,53,55,44,51,51,46,50,55,52,56,51,93,44,91,45,56,50,46,53,53,57,55,53,51,44,51,51,46,51,50,55,50,55,93,44,91,45,56,50,46,55,53,53,56,52,54,44,51,51,46,50,53,51,52,52,93,44,91,45,56,50,46,55,52,56,51,49,49,44,51,51,46,50,51,56,51,52,56,93,44,91,45,56,50,46,54,54,49,57,49,55,44,51,51,46,49,50,54,51,51,49,93,44,91,45,56,50,46,52,51,49,57,53,55,44,51,51,46,50,55,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,85,109,97,116,105,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,56,57,56,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,57,56,55,50,53,56,44,52,53,46,57,57,57,56,53,53,93,44,91,45,49,49,57,46,49,50,54,51,50,50,44,52,53,46,57,51,50,55,56,52,93,44,91,45,49,49,57,46,52,51,50,49,53,44,52,53,46,57,49,56,50,55,49,93,44,91,45,49,49,57,46,52,51,52,54,52,44,52,53,46,54,48,50,57,56,53,93,44,91,45,49,49,57,46,50,52,56,53,52,55,44,52,53,46,54,48,49,57,51,53,93,44,91,45,49,49,57,46,49,52,53,49,52,52,44,52,53,46,53,49,53,57,48,57,93,44,91,45,49,49,57,46,49,52,54,52,50,52,44,52,53,46,48,56,50,57,52,93,44,91,45,49,49,57,46,49,54,50,57,54,54,44,52,52,46,57,57,54,50,52,49,93,44,91,45,49,49,56,46,53,49,56,54,56,57,44,52,52,46,57,57,53,56,55,55,93,44,91,45,49,49,56,46,53,52,54,54,51,50,44,52,53,46,49,57,54,56,57,56,93,44,91,45,49,49,56,46,54,53,53,57,57,50,44,52,53,46,49,57,54,57,50,56,93,44,91,45,49,49,56,46,54,57,55,55,54,54,44,52,53,46,51,52,53,54,52,55,93,44,91,45,49,49,56,46,52,50,56,51,50,57,44,52,53,46,51,53,53,49,57,93,44,91,45,49,49,56,46,52,50,56,53,51,57,44,52,53,46,52,50,57,48,55,54,93,44,91,45,49,49,56,46,49,57,55,56,55,54,44,52,53,46,52,50,55,50,48,52,93,44,91,45,49,49,56,46,49,49,54,52,54,49,44,52,53,46,52,55,48,55,51,50,93,44,91,45,49,49,56,46,49,49,55,49,57,52,44,52,53,46,54,56,56,54,48,55,93,44,91,45,49,49,55,46,57,55,50,57,56,44,52,53,46,56,54,48,53,57,53,93,44,91,45,49,49,55,46,57,55,55,54,54,52,44,52,54,46,48,48,48,53,50,50,93,44,91,45,49,49,55,46,57,57,54,57,55,44,52,54,46,48,48,48,53,54,93,44,91,45,49,49,56,46,57,56,55,50,53,56,44,52,53,46,57,57,57,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,50,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,50,34,44,34,78,65,77,69,34,58,34,79,103,108,97,108,97,32,76,97,107,111,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,49,51,57,49,53,56,44,52,51,46,55,48,48,57,52,56,93,44,91,45,49,48,50,46,49,55,53,50,51,49,44,52,51,46,54,56,55,55,53,54,93,44,91,45,49,48,50,46,56,48,57,51,57,56,44,52,51,46,54,56,55,53,54,93,44,91,45,49,48,51,46,48,48,49,48,49,55,44,52,51,46,54,48,53,56,49,54,93,44,91,45,49,48,51,46,48,48,48,57,49,51,44,52,51,46,52,55,54,56,52,56,93,44,91,45,49,48,51,46,48,48,48,54,48,57,44,52,51,46,48,48,48,55,53,49,93,44,91,45,49,48,50,46,55,57,50,49,49,49,44,52,50,46,57,57,57,57,56,93,44,91,45,49,48,50,46,48,56,50,53,52,54,44,52,50,46,57,57,57,51,53,54,93,44,91,45,49,48,50,46,48,56,50,52,56,54,44,52,50,46,57,57,57,51,53,53,93,44,91,45,49,48,50,46,49,48,56,56,57,50,44,52,51,46,49,50,57,50,53,56,93,44,91,45,49,48,50,46,49,49,48,56,49,57,44,52,51,46,51,56,57,57,48,50,93,44,91,45,49,48,50,46,49,51,57,48,53,49,44,52,51,46,52,55,54,54,55,54,93,44,91,45,49,48,50,46,49,51,57,49,53,56,44,52,51,46,55,48,48,57,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,48,53,55,54,56,44,52,48,46,48,48,49,52,57,53,93,44,91,45,57,54,46,56,48,54,53,52,52,44,51,57,46,53,54,54,52,50,51,93,44,91,45,57,54,46,53,56,48,51,54,50,44,51,57,46,53,54,54,51,51,50,93,44,91,45,57,54,46,50,51,56,57,54,57,44,51,57,46,53,54,54,50,50,93,44,91,45,57,54,46,50,51,57,50,44,52,48,46,48,48,48,56,56,49,93,44,91,45,57,54,46,52,54,51,55,49,50,44,52,48,46,48,48,49,48,50,51,93,44,91,45,57,54,46,56,48,53,55,54,56,44,52,48,46,48,48,49,52,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,55,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,53,55,54,52,51,44,51,50,46,53,51,55,56,48,55,93,44,91,45,57,49,46,52,55,54,55,51,57,44,51,50,46,52,48,53,56,48,56,93,44,91,45,57,49,46,53,52,51,48,50,49,44,51,50,46,50,53,57,48,48,54,93,44,91,45,57,49,46,52,57,50,55,49,56,44,51,50,46,50,48,51,51,52,57,93,44,91,45,57,49,46,49,50,52,48,52,51,44,51,50,46,50,49,49,49,48,52,93,44,91,45,57,48,46,57,56,51,51,56,49,44,51,50,46,50,49,49,55,54,55,93,44,91,45,57,48,46,57,56,54,54,55,50,44,51,50,46,51,53,49,55,54,93,44,91,45,57,49,46,49,49,54,55,48,56,44,51,50,46,53,48,48,49,51,56,93,44,91,45,57,49,46,48,54,57,55,57,50,44,51,50,46,53,54,50,56,48,51,93,44,91,45,57,49,46,49,51,51,55,49,51,44,51,50,46,53,51,55,57,49,50,93,44,91,45,57,49,46,52,53,55,54,52,51,44,51,50,46,53,51,55,56,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,86,97,108,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,49,49,50,48,53,56,44,52,56,46,57,57,57,52,54,93,44,91,45,49,48,55,46,49,55,57,56,49,50,44,52,57,46,48,48,48,49,48,51,93,44,91,45,49,48,55,46,50,48,54,48,51,50,44,52,56,46,57,49,50,55,49,93,44,91,45,49,48,55,46,50,48,54,51,49,54,44,52,56,46,53,54,56,49,55,93,44,91,45,49,48,55,46,51,48,49,55,50,49,44,52,56,46,52,56,48,57,52,51,93,44,91,45,49,48,55,46,50,54,48,52,53,56,44,52,56,46,51,48,52,55,54,56,93,44,91,45,49,48,55,46,52,48,52,53,49,51,44,52,56,46,50,49,56,52,52,93,44,91,45,49,48,55,46,52,49,52,56,56,54,44,52,55,46,54,57,49,55,51,52,93,44,91,45,49,48,55,46,50,52,57,44,52,55,46,54,54,49,53,54,54,93,44,91,45,49,48,54,46,56,56,49,49,54,50,44,52,55,46,54,55,56,49,50,56,93,44,91,45,49,48,54,46,56,54,49,54,54,56,44,52,55,46,55,51,55,51,55,50,93,44,91,45,49,48,54,46,53,55,49,48,48,51,44,52,55,46,56,49,50,57,51,51,93,44,91,45,49,48,54,46,52,49,56,54,50,44,52,55,46,57,53,55,52,53,55,93,44,91,45,49,48,54,46,51,57,52,49,54,51,44,52,56,46,48,54,52,55,50,54,93,44,91,45,49,48,54,46,50,50,57,51,48,50,44,52,56,46,48,50,54,52,49,54,93,44,91,45,49,48,53,46,56,52,51,56,57,49,44,52,56,46,48,49,48,50,56,57,93,44,91,45,49,48,53,46,56,48,52,53,57,57,44,52,56,46,50,49,57,48,51,55,93,44,91,45,49,48,53,46,56,48,52,52,51,54,44,52,56,46,53,54,51,51,53,56,93,44,91,45,49,48,54,46,48,49,57,56,50,44,52,56,46,53,54,51,50,50,49,93,44,91,45,49,48,54,46,48,50,49,50,53,49,44,52,56,46,56,50,51,57,55,53,93,44,91,45,49,48,54,46,49,53,49,57,48,56,44,52,56,46,56,50,51,57,50,55,93,44,91,45,49,48,54,46,49,49,50,48,53,56,44,52,56,46,57,57,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,51,34,44,34,78,65,77,69,34,58,34,87,104,105,116,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,56,52,57,44,34,98,101,100,115,34,58,50,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,55,57,56,54,44,51,52,46,57,56,55,54,52,55,93,44,91,45,56,53,46,48,54,49,54,52,56,44,51,52,46,56,49,57,52,55,56,93,44,91,45,56,53,46,49,52,52,55,56,57,44,51,52,46,55,54,55,54,51,57,93,44,91,45,56,53,46,48,53,48,56,52,55,44,51,52,46,55,49,57,57,56,93,44,91,45,56,53,46,48,53,48,52,52,54,44,51,52,46,54,50,50,52,56,50,93,44,91,45,56,52,46,57,49,51,52,53,54,44,51,52,46,54,51,52,49,50,56,93,44,91,45,56,52,46,57,50,52,57,48,57,44,51,52,46,55,49,53,57,55,49,93,44,91,45,56,52,46,56,49,56,55,49,53,44,51,52,46,56,55,54,57,53,93,44,91,45,56,52,46,56,49,48,52,55,55,44,51,52,46,57,56,55,54,48,53,93,44,91,45,56,52,46,57,55,54,57,55,54,44,51,52,46,57,56,55,54,54,52,93,44,91,45,56,52,46,57,55,57,56,54,44,51,52,46,57,56,55,54,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,51,34,44,34,78,65,77,69,34,58,34,87,105,99,104,105,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,54,55,48,57,52,44,51,56,46,54,57,57,54,54,57,93,44,91,45,49,48,49,46,53,54,55,52,56,50,44,51,56,46,50,54,51,49,52,53,93,44,91,45,49,48,49,46,53,52,50,51,49,50,44,51,56,46,50,54,51,50,48,55,93,44,91,45,49,48,49,46,49,50,53,52,51,56,44,51,56,46,50,54,52,53,48,57,93,44,91,45,49,48,49,46,49,50,56,51,55,57,44,51,56,46,55,48,48,54,48,51,93,44,91,45,49,48,49,46,52,56,52,51,56,51,44,51,56,46,55,48,48,49,54,54,93,44,91,45,49,48,49,46,53,54,55,48,57,52,44,51,56,46,54,57,57,54,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,101,115,32,77,105,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,52,52,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,57,55,57,57,56,44,52,51,46,52,57,57,54,54,57,93,44,91,45,57,57,46,49,53,50,56,56,57,44,52,51,46,52,50,54,57,48,56,93,44,91,45,57,57,46,48,54,57,50,56,53,44,52,51,46,51,50,48,54,56,56,93,44,91,45,57,56,46,56,57,54,55,56,51,44,52,51,46,50,52,54,57,48,57,93,44,91,45,57,56,46,56,54,56,55,54,50,44,52,51,46,49,54,50,48,48,57,93,44,91,45,57,56,46,52,57,56,53,53,44,52,50,46,57,57,56,53,53,57,93,44,91,45,57,56,46,51,48,57,55,55,49,44,52,50,46,56,56,50,54,48,53,93,44,91,45,57,56,46,49,53,51,49,48,55,44,52,50,46,56,51,56,57,56,54,93,44,91,45,57,56,46,48,57,50,55,56,50,44,52,50,46,57,55,51,57,50,49,93,44,91,45,57,56,46,48,55,55,49,48,56,44,52,51,46,49,54,56,51,51,93,44,91,45,57,56,46,49,48,57,52,57,50,44,52,51,46,49,57,54,56,51,56,93,44,91,45,57,56,46,54,56,48,54,56,56,44,52,51,46,51,55,51,49,53,55,93,44,91,45,57,56,46,55,48,53,55,56,50,44,52,51,46,52,57,57,51,49,57,93,44,91,45,57,56,46,55,57,52,53,56,56,44,52,51,46,52,57,57,49,56,55,93,44,91,45,57,57,46,50,57,55,56,56,50,44,52,51,46,52,57,57,56,53,54,93,44,91,45,57,57,46,50,57,55,57,57,56,44,52,51,46,52,57,57,54,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,101,100,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,56,52,57,50,49,44,52,50,46,56,53,48,51,54,56,93,44,91,45,57,55,46,52,56,53,50,57,56,44,52,50,46,52,51,56,53,55,56,93,44,91,45,57,55,46,51,54,55,55,50,52,44,52,50,46,51,53,49,56,54,49,93,44,91,45,57,55,46,48,49,55,55,56,57,44,52,50,46,51,53,49,51,52,55,93,44,91,45,57,55,46,48,49,53,56,52,57,44,52,50,46,55,54,49,51,51,56,93,44,91,45,57,55,46,49,54,48,51,53,51,44,52,50,46,55,57,57,55,48,49,93,44,91,45,57,55,46,50,49,56,48,52,54,44,52,50,46,56,52,53,49,49,51,93,44,91,45,57,55,46,52,56,52,57,50,49,44,52,50,46,56,53,48,51,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,75,105,116,115,97,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,52,55,53,44,34,98,101,100,115,34,58,51,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,54,48,54,55,54,44,52,55,46,57,55,50,57,53,51,93,44,91,45,49,50,50,46,53,57,57,51,54,52,44,52,55,46,56,55,52,56,49,53,93,44,91,45,49,50,50,46,55,50,49,57,55,49,44,52,55,46,55,56,55,54,54,53,93,44,91,45,49,50,50,46,55,56,51,50,51,55,44,52,55,46,54,55,50,55,53,52,93,44,91,45,49,50,50,46,57,53,48,54,50,49,44,52,55,46,54,48,54,51,48,56,93,44,91,45,49,50,51,46,48,51,56,52,48,52,44,52,55,46,53,50,48,50,51,54,93,44,91,45,49,50,50,46,56,48,49,48,49,50,44,52,55,46,53,50,48,52,48,54,93,44,91,45,49,50,50,46,56,48,49,49,57,57,44,52,55,46,52,48,51,53,55,56,93,44,91,45,49,50,50,46,53,51,54,57,57,51,44,52,55,46,52,48,51,51,53,53,93,44,91,45,49,50,50,46,52,52,55,48,49,55,44,52,55,46,53,52,48,48,52,52,93,44,91,45,49,50,50,46,52,51,56,48,57,51,44,52,55,46,55,55,55,56,49,52,93,44,91,45,49,50,50,46,52,50,57,54,50,53,44,52,55,46,56,50,56,48,57,56,93,44,91,45,49,50,50,46,54,48,54,55,54,44,52,55,46,57,55,50,57,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,77,99,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,55,55,56,57,44,34,98,101,100,115,34,58,52,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,57,57,51,56,57,44,52,50,46,52,57,53,49,51,51,93,44,91,45,56,56,46,51,48,52,54,57,50,44,52,50,46,52,57,52,54,49,56,93,44,91,45,56,56,46,55,48,55,52,50,49,44,52,50,46,52,57,51,53,57,54,93,44,91,45,56,56,46,55,48,53,53,56,53,44,52,50,46,49,53,51,53,51,55,93,44,91,45,56,56,46,53,56,56,54,53,55,44,52,50,46,49,53,51,53,57,93,44,91,45,56,56,46,50,51,56,52,52,57,44,52,50,46,49,53,52,50,52,57,93,44,91,45,56,56,46,49,57,57,53,56,52,44,52,50,46,49,53,52,50,54,93,44,91,45,56,56,46,49,57,57,51,56,57,44,52,50,46,52,57,53,49,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,80,101,116,114,111,108,101,117,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,51,49,51,48,52,56,44,52,55,46,53,56,51,54,53,93,44,91,45,49,48,56,46,51,49,53,52,56,49,44,52,55,46,51,49,53,49,53,50,93,44,91,45,49,48,56,46,53,57,48,56,51,53,44,52,55,46,51,48,54,53,49,54,93,44,91,45,49,48,56,46,55,49,57,49,56,57,44,52,55,46,50,55,48,51,52,50,93,44,91,45,49,48,56,46,55,51,54,56,51,56,44,52,55,46,48,57,56,50,49,56,93,44,91,45,49,48,56,46,54,48,56,57,53,52,44,52,55,46,48,57,56,49,50,54,93,44,91,45,49,48,56,46,54,51,49,52,54,50,44,52,54,46,55,52,57,51,57,50,93,44,91,45,49,48,55,46,56,50,55,54,56,55,44,52,54,46,55,53,53,56,55,53,93,44,91,45,49,48,55,46,56,57,50,50,51,51,44,52,54,46,56,53,49,50,49,53,93,44,91,45,49,48,55,46,56,56,52,55,49,56,44,52,54,46,57,56,52,50,52,57,93,44,91,45,49,48,55,46,57,53,52,51,52,55,44,52,55,46,49,50,48,54,53,50,93,44,91,45,49,48,55,46,57,53,54,54,50,52,44,52,55,46,51,54,48,57,52,51,93,44,91,45,49,48,55,46,57,48,57,49,50,44,52,55,46,52,53,48,54,57,50,93,44,91,45,49,48,55,46,57,51,49,49,48,53,44,52,55,46,53,54,57,48,55,51,93,44,91,45,49,48,56,46,48,54,53,52,49,56,44,52,55,46,53,57,56,50,57,52,93,44,91,45,49,48,56,46,51,49,51,48,52,56,44,52,55,46,53,56,51,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,55,56,48,57,56,44,51,57,46,54,49,53,54,51,50,93,44,91,45,57,51,46,55,53,56,51,53,55,44,51,57,46,54,49,49,52,48,55,93,44,91,45,57,51,46,55,53,57,49,56,51,44,51,57,46,53,50,52,53,53,56,93,44,91,45,57,51,46,55,53,56,52,54,51,44,51,57,46,50,48,55,48,50,49,93,44,91,45,57,51,46,54,53,48,53,50,54,44,51,57,46,50,52,56,50,49,52,93,44,91,45,57,51,46,52,56,55,56,56,53,44,51,57,46,50,50,56,56,55,53,93,44,91,45,57,51,46,52,55,55,50,51,51,44,51,57,46,50,57,50,55,57,54,93,44,91,45,57,51,46,50,50,49,50,48,52,44,51,57,46,51,51,49,54,53,54,93,44,91,45,57,51,46,49,48,52,52,56,53,44,51,57,46,51,56,51,54,53,54,93,44,91,45,57,51,46,50,55,53,57,51,50,44,51,57,46,52,56,52,51,55,49,93,44,91,45,57,51,46,50,55,56,48,57,56,44,51,57,46,54,49,53,54,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,87,104,105,116,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,53,57,51,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,57,54,48,57,51,44,52,55,46,50,54,48,53,54,56,93,44,91,45,49,49,55,46,57,53,57,51,51,53,44,52,54,46,57,49,52,56,49,49,93,44,91,45,49,49,56,46,48,49,50,52,52,50,44,52,54,46,55,57,48,55,56,93,44,91,45,49,49,56,46,50,49,48,50,52,51,44,52,54,46,55,51,56,56,51,51,93,44,91,45,49,49,56,46,50,49,53,54,54,44,52,54,46,53,56,56,57,50,52,93,44,91,45,49,49,56,46,49,55,50,53,53,50,44,52,54,46,53,53,54,57,52,55,93,44,91,45,49,49,55,46,56,53,49,56,53,44,52,54,46,54,50,52,54,55,93,44,91,45,49,49,55,46,55,52,48,56,54,56,44,52,54,46,54,57,52,53,56,51,93,44,91,45,49,49,55,46,52,54,52,55,54,57,44,52,54,46,54,57,57,54,50,54,93,44,91,45,49,49,55,46,50,53,52,50,54,50,44,52,54,46,53,52,53,48,56,50,93,44,91,45,49,49,55,46,50,50,56,49,50,44,52,54,46,52,54,50,50,52,53,93,44,91,45,49,49,55,46,48,51,57,55,54,54,44,52,54,46,52,50,53,56,56,55,93,44,91,45,49,49,55,46,48,51,57,54,57,52,44,52,54,46,53,52,49,55,48,57,93,44,91,45,49,49,55,46,48,51,57,55,53,50,44,52,55,46,49,50,55,50,54,57,93,44,91,45,49,49,55,46,48,51,57,56,55,56,44,52,55,46,50,53,57,50,55,50,93,44,91,45,49,49,55,46,56,50,51,54,50,57,44,52,55,46,50,54,48,50,50,93,44,91,45,49,49,55,46,57,54,48,57,51,44,52,55,46,50,54,48,53,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,83,116,101,101,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,55,54,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,52,53,57,49,44,52,52,46,49,57,54,55,49,54,93,44,91,45,57,51,46,52,48,54,53,54,53,44,52,52,46,49,57,54,51,55,55,93,44,91,45,57,51,46,52,48,54,54,52,50,44,52,51,46,56,52,56,49,50,93,44,91,45,57,51,46,48,52,57,53,50,52,44,52,51,46,56,52,56,52,52,51,93,44,91,45,57,51,46,48,52,53,57,54,54,44,52,51,46,56,52,56,52,54,55,93,44,91,45,57,51,46,48,52,53,57,49,44,52,52,46,49,57,54,55,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,84,104,97,121,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,57,56,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,44,91,45,57,55,46,56,50,48,56,49,54,44,52,48,46,51,53,48,53,52,53,93,44,91,45,57,55,46,56,50,49,52,57,53,44,52,48,46,48,48,50,48,52,55,93,44,91,45,57,55,46,51,54,57,49,57,57,44,52,48,46,48,48,49,57,54,54,93,44,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,114,111,99,107,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,53,54,48,51,51,44,51,53,46,56,49,55,54,51,53,93,44,91,45,56,57,46,50,55,49,50,50,52,44,51,53,46,55,53,52,57,50,50,93,44,91,45,56,57,46,48,54,57,53,52,52,44,51,53,46,54,57,50,54,55,57,93,44,91,45,56,56,46,57,49,54,49,56,49,44,51,53,46,55,57,55,51,48,55,93,44,91,45,56,57,46,49,48,57,54,48,50,44,51,53,46,56,54,50,48,57,53,93,44,91,45,56,57,46,49,56,56,56,52,52,44,51,53,46,57,57,57,55,54,93,44,91,45,56,57,46,50,56,48,49,56,56,44,51,53,46,56,56,54,52,49,54,93,44,91,45,56,57,46,51,52,50,56,50,57,44,51,53,46,56,56,48,57,51,52,93,44,91,45,56,57,46,51,53,54,48,51,51,44,51,53,46,56,49,55,54,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,55,49,53,56,51,44,52,50,46,53,53,56,49,51,57,93,44,91,45,57,51,46,57,51,49,54,56,52,44,52,50,46,52,55,50,48,49,49,93,44,91,45,57,51,46,57,51,49,53,56,44,52,50,46,50,48,57,57,48,56,93,44,91,45,57,51,46,54,57,56,51,57,44,52,50,46,50,48,57,51,51,57,93,44,91,45,57,51,46,52,54,51,48,52,51,44,52,50,46,50,48,57,51,48,50,93,44,91,45,57,51,46,52,54,50,54,51,53,44,52,50,46,52,55,48,56,48,50,93,44,91,45,57,51,46,52,57,57,52,56,53,44,52,50,46,53,53,55,55,93,44,91,45,57,51,46,57,55,49,53,56,51,44,52,50,46,53,53,56,49,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,53,54,52,44,34,98,101,100,115,34,58,51,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,53,50,51,50,44,51,57,46,53,56,57,52,57,51,93,44,91,45,56,52,46,51,51,50,48,56,57,44,51,57,46,53,52,56,56,48,51,93,44,91,45,56,52,46,51,53,51,50,48,57,44,51,57,46,50,57,50,50,56,55,93,44,91,45,56,52,46,50,53,57,52,51,49,44,51,57,46,50,55,48,55,57,54,93,44,91,45,56,52,46,48,48,54,55,56,50,44,51,57,46,50,53,53,48,54,56,93,44,91,45,56,51,46,57,55,55,48,48,53,44,51,57,46,53,54,57,49,54,57,93,44,91,45,56,52,46,49,49,52,49,57,53,44,51,57,46,53,55,55,57,56,51,93,44,91,45,56,52,46,51,54,53,50,51,50,44,51,57,46,53,56,57,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,53,34,44,34,78,65,77,69,34,58,34,83,112,97,108,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,55,49,57,44,34,98,101,100,115,34,58,49,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,52,56,49,56,53,44,51,51,46,49,56,57,48,49,57,93,44,91,45,56,52,46,49,50,51,55,54,55,44,51,51,46,50,48,50,56,50,52,93,44,91,45,56,52,46,49,48,50,53,56,50,44,51,51,46,50,57,56,49,57,49,93,44,91,45,56,52,46,49,53,48,53,56,49,44,51,51,46,51,51,53,54,51,57,93,44,91,45,56,52,46,51,53,52,52,44,51,51,46,51,53,50,53,49,52,93,44,91,45,56,52,46,51,56,56,49,49,56,44,51,51,46,51,53,50,52,54,53,93,44,91,45,56,52,46,52,57,55,53,50,55,44,51,51,46,50,53,55,52,50,50,93,44,91,45,56,52,46,53,48,50,51,53,50,44,51,51,46,50,50,49,48,53,53,93,44,91,45,56,52,46,52,57,54,55,56,51,44,51,51,46,49,56,51,56,54,54,93,44,91,45,56,52,46,50,52,56,49,56,53,44,51,51,46,49,56,57,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,72,117,110,116,101,114,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,48,53,49,44,34,98,101,100,115,34,58,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,56,56,57,56,49,57,44,52,48,46,55,56,55,55,50,57,93,44,91,45,55,52,46,57,55,48,49,49,50,44,52,48,46,55,48,57,56,54,50,93,44,91,45,55,53,46,49,56,57,54,44,52,48,46,53,57,49,55,55,54,93,44,91,45,55,53,46,48,54,56,49,44,52,48,46,53,52,49,52,56,56,93,44,91,45,55,53,46,48,54,48,57,49,55,44,52,48,46,52,50,49,55,51,55,93,44,91,45,55,52,46,57,52,50,57,48,57,44,52,48,46,51,52,49,54,56,51,93,44,91,45,55,52,46,55,52,56,49,52,55,44,52,48,46,52,50,52,49,53,54,93,44,91,45,55,52,46,55,55,53,57,55,57,44,52,48,46,53,48,51,54,48,54,93,44,91,45,55,52,46,55,49,51,49,53,44,52,48,46,53,56,51,57,48,51,93,44,91,45,55,52,46,55,50,53,54,54,54,44,52,48,46,55,49,57,53,51,50,93,44,91,45,55,52,46,56,56,57,56,49,57,44,52,48,46,55,56,55,55,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,55,34,44,34,78,65,77,69,34,58,34,86,101,114,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,57,49,44,34,98,101,100,115,34,58,49,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,53,56,50,56,53,44,51,56,46,48,51,54,54,50,55,93,44,91,45,57,52,46,54,49,52,48,54,49,44,51,56,46,48,54,48,48,53,54,93,44,91,45,57,52,46,54,49,52,48,56,57,44,51,56,46,48,51,55,48,53,55,93,44,91,45,57,52,46,54,49,55,55,55,57,44,51,55,46,54,55,51,49,48,53,93,44,91,45,57,52,46,54,49,55,54,57,56,44,51,55,46,54,53,51,53,55,56,93,44,91,45,57,52,46,48,55,51,53,50,52,44,51,55,46,54,51,57,55,50,50,93,44,91,45,57,52,46,48,54,53,54,55,53,44,51,55,46,57,48,48,57,56,55,93,44,91,45,57,52,46,48,53,56,50,56,53,44,51,56,46,48,51,54,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,80,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,50,48,50,50,49,44,51,57,46,57,53,50,52,53,50,93,44,91,45,56,55,46,51,54,56,56,54,51,44,51,57,46,56,57,48,52,55,49,93,44,91,45,56,55,46,51,56,50,52,49,56,44,51,57,46,54,48,55,57,51,55,93,44,91,45,56,55,46,49,57,57,48,49,50,44,51,57,46,54,48,55,49,51,55,93,44,91,45,56,55,46,48,49,51,48,54,50,44,51,57,46,54,48,52,55,56,55,93,44,91,45,56,55,46,48,48,57,52,55,55,44,51,57,46,56,54,54,55,48,53,93,44,91,45,56,55,46,48,57,49,48,48,54,44,51,57,46,57,53,51,48,48,57,93,44,91,45,56,55,46,52,50,48,50,50,49,44,51,57,46,57,53,50,52,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,52,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,44,91,45,57,51,46,52,57,56,54,49,55,44,52,50,46,57,48,56,53,49,50,93,44,91,45,57,51,46,52,57,57,52,56,53,44,52,50,46,53,53,55,55,93,44,91,45,57,51,46,48,50,55,44,52,50,46,53,53,54,56,49,93,44,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,66,117,116,116,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,55,53,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,50,51,57,49,51,44,51,51,46,52,52,52,49,57,52,93,44,91,45,56,52,46,49,48,50,53,56,50,44,51,51,46,50,57,56,49,57,49,93,44,91,45,56,52,46,49,50,51,55,54,55,44,51,51,46,50,48,50,56,50,52,93,44,91,45,56,52,46,48,52,49,52,57,56,44,51,51,46,50,48,50,54,50,57,93,44,91,45,56,51,46,56,50,50,50,54,49,44,51,51,46,49,56,48,50,51,56,93,44,91,45,56,51,46,56,54,51,48,53,56,44,51,51,46,51,54,56,50,55,56,93,44,91,45,56,51,46,57,50,51,57,49,51,44,51,51,46,52,52,52,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,69,108,98,101,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,49,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,55,49,52,51,53,53,44,51,57,46,53,54,54,51,51,49,93,44,91,45,49,48,52,46,54,54,48,54,50,54,44,51,57,46,53,54,53,57,48,57,93,44,91,45,49,48,52,46,54,54,50,56,57,54,44,51,57,46,49,50,57,53,50,55,93,44,91,45,49,48,52,46,48,53,49,53,56,57,44,51,57,46,49,50,56,51,55,93,44,91,45,49,48,52,46,48,53,53,53,50,56,44,51,56,46,56,54,56,56,54,56,93,44,91,45,49,48,51,46,55,49,57,54,54,52,44,51,56,46,56,54,54,56,50,55,93,44,91,45,49,48,51,46,55,49,52,51,53,53,44,51,57,46,53,54,54,51,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,52,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,114,105,115,116,111,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,82,104,111,100,101,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,82,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,57,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,51,51,48,57,55,44,52,49,46,54,56,54,57,54,50,93,44,91,45,55,49,46,50,48,56,51,55,49,44,52,49,46,54,57,48,53,57,56,93,44,91,45,55,49,46,51,49,55,56,55,51,44,52,49,46,55,55,54,49,57,57,93,44,91,45,55,49,46,51,54,53,50,48,55,44,52,49,46,55,51,53,54,52,57,93,44,91,45,55,49,46,51,51,48,57,55,44,52,49,46,54,56,54,57,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,66,111,115,113,117,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,50,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,49,53,48,53,53,44,51,50,46,50,48,51,53,56,49,93,44,91,45,57,55,46,56,54,52,56,54,52,44,51,50,46,48,56,55,51,50,56,93,44,91,45,57,56,46,48,48,53,52,54,50,44,51,50,46,48,49,55,56,57,55,93,44,91,45,57,55,46,55,54,54,52,51,49,44,51,49,46,54,55,50,52,54,49,93,44,91,45,57,55,46,54,56,57,56,51,52,44,51,49,46,55,49,49,48,49,57,93,44,91,45,57,55,46,54,48,53,50,51,44,51,49,46,53,56,55,55,54,50,93,44,91,45,57,55,46,50,55,55,50,54,53,44,51,49,46,55,52,53,52,57,50,93,44,91,45,57,55,46,51,50,55,49,52,53,44,51,49,46,56,52,49,52,53,50,93,44,91,45,57,55,46,52,56,53,57,54,56,44,51,50,46,48,49,55,54,49,49,93,44,91,45,57,55,46,52,55,54,48,56,54,44,51,50,46,49,55,51,52,54,93,44,91,45,57,55,46,54,49,53,48,53,53,44,51,50,46,50,48,51,53,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,52,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,78,101,119,112,111,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,82,104,111,100,101,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,82,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,48,55,53,44,34,98,101,100,115,34,58,49,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,51,56,48,53,52,50,44,52,49,46,54,53,48,51,50,54,93,44,91,45,55,49,46,52,48,57,48,57,57,44,52,49,46,52,54,56,50,48,50,93,44,91,45,55,49,46,53,48,57,52,52,50,44,52,49,46,51,48,55,55,51,50,93,44,91,45,55,49,46,48,56,56,53,55,49,44,52,49,46,52,51,49,51,49,53,93,44,91,45,55,49,46,49,51,50,53,53,55,44,52,49,46,54,54,48,51,54,51,93,44,91,45,55,49,46,50,48,56,51,55,49,44,52,49,46,54,57,48,53,57,56,93,44,91,45,55,49,46,51,51,48,57,55,44,52,49,46,54,56,54,57,54,50,93,44,91,45,55,49,46,51,56,48,53,52,50,44,52,49,46,54,53,48,51,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,70,97,105,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,57,49,48,44,34,98,101,100,115,34,58,50,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,56,50,52,57,53,44,51,57,46,57,51,57,54,54,50,93,44,91,45,56,50,46,56,50,52,50,53,52,44,51,57,46,55,57,52,57,57,54,93,44,91,45,56,50,46,56,52,50,57,53,51,44,51,57,46,53,54,49,52,56,93,44,91,45,56,50,46,55,51,49,53,49,56,44,51,57,46,53,53,52,52,52,53,93,44,91,45,56,50,46,52,57,54,49,50,51,44,51,57,46,54,48,50,56,52,57,93,44,91,45,56,50,46,51,55,52,53,51,49,44,51,57,46,54,53,52,57,53,57,93,44,91,45,56,50,46,51,57,54,53,57,52,44,51,57,46,56,51,51,48,53,55,93,44,91,45,56,50,46,52,54,50,56,49,51,44,51,57,46,57,51,48,51,56,93,44,91,45,56,50,46,55,56,50,52,57,53,44,51,57,46,57,51,57,54,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,80,105,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,55,54,54,49,57,44,52,56,46,53,52,52,56,49,51,93,44,91,45,49,48,48,46,50,51,55,48,57,57,44,52,56,46,51,55,49,50,52,52,93,44,91,45,49,48,48,46,50,51,55,48,50,50,44,52,56,46,48,50,49,56,54,54,93,44,91,45,49,48,48,46,49,57,55,57,57,54,44,52,55,46,56,52,55,54,53,50,93,44,91,45,49,48,48,46,48,54,57,51,49,49,44,52,55,46,56,52,55,52,51,49,93,44,91,45,57,57,46,56,49,50,49,54,55,44,52,55,46,56,52,55,50,53,55,93,44,91,45,57,57,46,56,52,56,50,50,50,44,52,56,46,48,50,49,52,50,52,93,44,91,45,57,57,46,56,52,55,48,52,54,44,52,56,46,51,55,49,50,93,44,91,45,57,57,46,52,57,50,57,49,57,44,52,56,46,51,55,48,57,52,54,93,44,91,45,57,57,46,52,57,51,49,56,57,44,52,56,46,53,52,52,56,51,52,93,44,91,45,49,48,48,46,49,52,53,56,53,56,44,52,56,46,53,52,53,50,49,49,93,44,91,45,49,48,48,46,50,55,54,54,49,57,44,52,56,46,53,52,52,56,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,55,51,57,53,44,52,50,46,49,57,51,54,52,53,93,44,91,45,57,48,46,49,54,50,56,57,53,44,52,50,46,49,49,54,55,49,56,93,44,91,45,57,48,46,49,53,52,50,50,49,44,52,50,46,48,51,51,48,55,51,93,44,91,45,57,48,46,49,53,49,57,56,44,52,49,46,57,50,56,57,49,55,93,44,91,45,56,57,46,54,56,53,51,54,54,44,52,49,46,57,51,48,51,52,93,44,91,45,56,57,46,54,56,56,52,56,54,44,52,50,46,49,57,57,49,49,50,93,44,91,45,56,57,46,57,49,57,55,55,50,44,52,50,46,49,57,54,56,56,49,93,44,91,45,57,48,46,51,49,55,51,57,53,44,52,50,46,49,57,51,54,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,82,101,100,32,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,56,50,53,53,44,52,55,46,57,54,51,53,57,53,93,44,91,45,57,54,46,52,56,50,48,57,50,44,52,55,46,56,52,55,52,50,56,93,44,91,45,57,54,46,51,53,49,55,50,55,44,52,55,46,55,54,48,51,93,44,91,45,57,53,46,56,51,55,49,55,55,44,52,55,46,55,54,48,56,57,52,93,44,91,45,57,53,46,56,51,54,56,50,55,44,52,55,46,56,52,56,50,49,57,93,44,91,45,57,53,46,55,48,57,54,49,57,44,52,55,46,57,51,53,56,48,53,93,44,91,45,57,53,46,55,48,57,56,52,44,52,55,46,57,54,52,51,51,93,44,91,45,57,54,46,52,56,50,53,53,44,52,55,46,57,54,51,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,56,52,51,49,51,56,44,52,52,46,51,57,50,54,51,93,44,91,45,49,50,49,46,49,48,55,53,51,52,44,52,52,46,51,57,48,54,93,44,91,45,49,50,48,46,57,56,56,56,50,52,44,52,52,46,52,55,54,52,56,52,93,44,91,45,49,50,48,46,56,50,54,56,57,57,44,52,52,46,52,55,54,52,57,57,93,44,91,45,49,50,48,46,56,50,55,53,53,53,44,52,52,46,53,54,50,55,57,51,93,44,91,45,49,50,48,46,51,56,54,53,54,49,44,52,52,46,53,54,52,48,48,57,93,44,91,45,49,50,48,46,51,55,49,52,52,49,44,52,52,46,56,50,49,55,54,57,93,44,91,45,49,50,49,46,48,56,57,52,56,44,52,52,46,56,50,51,50,55,50,93,44,91,45,49,50,49,46,55,53,50,57,57,52,44,52,52,46,56,50,57,57,49,57,93,44,91,45,49,50,49,46,56,48,48,48,49,53,44,52,52,46,54,56,51,52,50,53,93,44,91,45,49,50,49,46,56,52,51,49,51,56,44,52,52,46,51,57,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,101,97,116,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,57,50,57,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,56,54,53,48,49,44,51,54,46,51,50,49,57,51,51,93,44,91,45,56,55,46,49,53,54,53,56,57,44,51,54,46,51,48,55,55,48,54,93,44,91,45,56,55,46,49,56,50,53,55,51,44,51,54,46,48,52,57,55,50,54,93,44,91,45,56,55,46,48,53,51,55,50,50,44,51,54,46,48,52,53,53,56,50,93,44,91,45,56,54,46,57,57,55,55,48,53,44,51,54,46,49,50,56,53,49,50,93,44,91,45,56,54,46,57,49,51,50,51,51,44,51,54,46,51,56,50,54,50,49,93,44,91,45,56,54,46,57,56,56,48,54,44,51,54,46,51,54,57,49,53,52,93,44,91,45,56,55,46,49,50,48,52,52,51,44,51,54,46,52,53,53,52,54,93,44,91,45,56,55,46,50,56,54,53,48,49,44,51,54,46,51,50,49,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,55,55,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,48,53,54,56,50,44,52,51,46,48,56,51,54,55,93,44,91,45,57,54,46,56,48,54,50,49,51,44,52,50,46,55,48,52,49,53,52,93,44,91,45,57,54,46,54,51,49,52,57,50,44,52,50,46,53,50,52,51,49,56,93,44,91,45,57,54,46,52,52,53,52,56,51,44,52,50,46,52,57,48,54,51,93,44,91,45,57,54,46,52,57,56,55,55,54,44,52,50,46,53,54,49,48,52,51,93,44,91,45,57,54,46,54,51,53,53,54,49,44,52,50,46,55,52,48,56,52,55,93,44,91,45,57,54,46,53,51,56,52,53,56,44,52,50,46,57,48,56,55,55,49,93,44,91,45,57,54,46,53,49,51,54,56,49,44,52,51,46,48,52,55,48,51,93,44,91,45,57,54,46,52,53,52,49,51,44,52,51,46,48,56,51,51,56,93,44,91,45,57,54,46,56,48,53,54,56,50,44,52,51,46,48,56,51,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,69,108,109,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,50,49,50,44,34,98,101,100,115,34,58,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,55,52,57,55,52,44,51,50,46,55,53,51,53,56,93,44,91,45,56,54,46,52,49,51,49,49,54,44,51,50,46,55,48,55,51,56,54,93,44,91,45,56,54,46,52,49,49,49,55,50,44,51,50,46,52,48,57,57,51,55,93,44,91,45,56,54,46,50,51,55,48,54,56,44,51,50,46,52,57,52,57,56,93,44,91,45,56,54,46,49,49,54,51,50,57,44,51,50,46,52,49,55,48,50,54,93,44,91,45,56,54,46,48,50,51,48,49,50,44,51,50,46,52,49,57,57,55,56,93,44,91,45,56,53,46,56,56,54,49,52,56,44,51,50,46,52,57,51,48,53,51,93,44,91,45,56,53,46,56,55,57,56,54,44,51,50,46,55,53,52,53,50,56,93,44,91,45,56,54,46,48,48,55,49,56,55,44,51,50,46,55,53,52,57,56,52,93,44,91,45,56,54,46,51,55,52,57,55,52,44,51,50,46,55,53,51,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,76,117,109,112,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,57,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,53,54,53,48,54,44,51,52,46,55,50,50,49,57,49,93,44,91,45,56,51,46,57,51,57,48,48,55,44,51,52,46,55,52,48,56,53,57,93,44,91,45,56,52,46,48,51,54,50,55,54,44,51,52,46,54,52,50,48,56,55,93,44,91,45,56,52,46,49,53,56,48,51,53,44,51,52,46,54,52,56,50,52,51,93,44,91,45,56,52,46,49,56,56,53,53,55,44,51,52,46,54,48,50,54,57,50,93,44,91,45,56,52,46,49,57,49,48,52,44,51,52,46,53,51,57,49,56,49,93,44,91,45,56,51,46,57,56,48,54,52,57,44,51,52,46,52,49,56,51,56,57,93,44,91,45,56,51,46,56,52,51,52,48,53,44,51,52,46,53,48,53,52,57,52,93,44,91,45,56,51,46,56,53,54,53,48,54,44,51,52,46,55,50,50,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,50,49,53,44,34,98,101,100,115,34,58,49,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,50,51,54,48,57,44,52,48,46,53,52,57,56,55,57,93,44,91,45,56,50,46,54,52,54,53,48,51,44,52,48,46,51,52,53,48,55,54,93,44,91,45,56,50,46,55,52,52,57,51,49,44,52,48,46,51,52,57,54,48,51,93,44,91,45,56,50,46,55,53,48,55,52,55,44,52,48,46,50,55,54,57,57,54,93,44,91,45,56,50,46,52,55,55,50,55,51,44,52,48,46,50,52,53,56,49,93,44,91,45,56,50,46,49,57,53,57,49,49,44,52,48,46,50,51,57,48,55,49,93,44,91,45,56,50,46,49,56,52,54,48,55,44,52,48,46,52,53,54,50,56,93,44,91,45,56,50,46,50,50,48,49,49,44,52,48,46,53,54,56,50,48,54,93,44,91,45,56,50,46,51,51,54,57,54,50,44,52,48,46,53,53,53,48,48,49,93,44,91,45,56,50,46,54,50,51,54,48,57,44,52,48,46,53,52,57,56,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,114,101,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,55,56,50,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,52,50,49,49,44,52,50,46,57,48,55,49,49,50,93,44,91,45,57,50,46,53,53,52,52,57,50,44,52,50,46,54,52,50,51,49,52,93,44,91,45,57,50,46,48,56,49,54,54,49,44,52,50,46,54,52,50,48,53,54,93,44,91,45,57,50,46,48,56,49,53,54,56,44,52,50,46,57,48,55,48,49,51,93,44,91,45,57,50,46,53,53,52,50,49,49,44,52,50,46,57,48,55,49,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,71,111,108,105,97,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,48,53,57,49,54,44,50,56,46,56,54,52,48,51,55,93,44,91,45,57,55,46,52,49,55,51,52,44,50,56,46,57,50,53,50,50,56,93,44,91,45,57,55,46,53,55,52,54,51,57,44,50,56,46,56,49,51,51,93,44,91,45,57,55,46,55,55,56,53,51,44,50,56,46,54,54,56,48,50,55,93,44,91,45,57,55,46,54,57,54,57,52,53,44,50,56,46,53,52,49,56,53,54,93,44,91,45,57,55,46,53,55,55,48,53,56,44,50,56,46,53,50,50,53,52,55,93,44,91,45,57,55,46,53,53,51,57,49,54,44,50,56,46,52,53,53,50,55,56,93,44,91,45,57,55,46,51,55,53,53,55,57,44,50,56,46,51,56,56,54,56,52,93,44,91,45,57,55,46,49,54,48,55,53,49,44,50,56,46,53,53,51,52,55,53,93,44,91,45,57,55,46,49,53,56,57,51,51,44,50,56,46,55,55,54,49,53,54,93,44,91,45,57,55,46,50,48,52,57,57,56,44,50,56,46,56,53,53,48,52,93,44,91,45,57,55,46,51,48,53,57,49,54,44,50,56,46,56,54,52,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,72,101,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,54,50,53,44,34,98,101,100,115,34,58,51,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,54,53,55,57,53,44,51,53,46,52,54,55,56,49,56,93,44,91,45,56,50,46,51,51,50,51,51,49,44,51,53,46,53,48,48,49,49,55,93,44,91,45,56,50,46,52,55,48,53,53,55,44,51,53,46,52,52,53,49,55,52,93,44,91,45,56,50,46,55,52,53,49,51,57,44,51,53,46,52,50,50,57,54,55,93,44,91,45,56,50,46,54,49,48,49,56,54,44,51,53,46,50,56,56,49,57,57,93,44,91,45,56,50,46,53,55,52,56,51,57,44,51,53,46,49,52,53,52,52,57,93,44,91,45,56,50,46,51,53,51,55,53,52,44,51,53,46,49,57,48,57,54,55,93,44,91,45,56,50,46,51,52,54,49,52,49,44,51,53,46,50,56,53,57,57,50,93,44,91,45,56,50,46,50,54,49,51,48,53,44,51,53,46,51,57,51,49,57,56,93,44,91,45,56,50,46,50,54,53,55,57,53,44,51,53,46,52,54,55,56,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,73,110,100,105,97,110,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,57,56,52,44,34,98,101,100,115,34,58,52,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,55,57,56,50,49,44,50,55,46,53,53,56,52,55,93,44,91,45,56,48,46,50,54,51,53,52,51,44,50,55,46,53,53,54,55,56,50,93,44,91,45,56,48,46,51,56,53,48,54,57,44,50,55,46,56,54,49,51,54,50,93,44,91,45,56,48,46,53,48,57,48,55,53,44,50,55,46,56,50,50,48,53,56,93,44,91,45,56,48,46,56,54,56,56,56,49,44,50,55,46,56,50,50,53,50,50,93,44,91,45,56,48,46,56,55,51,49,53,44,50,55,46,54,52,50,50,56,56,93,44,91,45,56,48,46,55,55,55,49,54,54,44,50,55,46,53,53,56,55,51,51,93,44,91,45,56,48,46,54,55,57,56,50,49,44,50,55,46,53,53,56,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,57,51,34,44,34,78,65,77,69,34,58,34,82,111,98,101,114,116,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,56,53,55,51,53,44,51,54,46,48,53,53,50,55,54,93,44,91,45,49,48,49,46,48,56,54,48,54,56,44,51,53,46,54,50,53,50,54,55,93,44,91,45,49,48,49,46,48,56,53,57,51,53,44,51,53,46,54,49,57,49,48,50,93,44,91,45,49,48,48,46,53,52,48,49,53,56,44,51,53,46,54,49,57,50,57,54,93,44,91,45,49,48,48,46,53,52,48,50,50,49,44,51,54,46,48,53,54,52,57,49,93,44,91,45,49,48,48,46,53,52,54,55,50,52,44,51,54,46,48,53,54,53,51,54,93,44,91,45,49,48,49,46,48,56,53,55,49,54,44,51,54,46,48,53,55,53,55,50,93,44,91,45,49,48,49,46,48,56,53,55,51,53,44,51,54,46,48,53,53,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,68,101,117,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,49,48,52,49,51,44,52,49,46,50,50,49,54,49,52,93,44,91,45,49,48,50,46,54,50,49,48,51,51,44,52,49,46,48,48,50,53,57,55,93,44,91,45,49,48,50,46,48,53,49,55,49,55,44,52,49,46,48,48,50,51,53,57,93,44,91,45,49,48,50,46,48,53,49,55,54,49,44,52,49,46,48,48,51,56,57,93,44,91,45,49,48,50,46,48,53,53,53,51,53,44,52,49,46,50,50,49,53,52,55,93,44,91,45,49,48,50,46,54,49,48,52,49,51,44,52,49,46,50,50,49,54,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,57,48,55,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,57,48,57,56,51,50,44,52,50,46,57,56,55,55,54,50,93,44,91,45,55,55,46,57,53,52,57,54,52,44,52,50,46,56,54,50,55,53,52,93,44,91,45,55,55,46,57,53,54,51,51,52,44,52,50,46,54,54,55,51,50,50,93,44,91,45,55,56,46,48,51,56,50,54,49,44,52,50,46,53,50,49,53,50,50,93,44,91,45,55,55,46,56,52,48,57,48,49,44,52,50,46,53,49,55,55,54,55,93,44,91,45,55,55,46,55,50,50,57,54,52,44,52,50,46,52,55,49,50,49,54,93,44,91,45,55,55,46,54,53,57,57,49,55,44,52,50,46,53,56,48,52,48,57,93,44,91,45,55,55,46,52,57,48,56,56,57,44,52,50,46,53,55,55,50,56,56,93,44,91,45,55,55,46,53,57,56,56,49,53,44,52,50,46,54,55,49,57,54,53,93,44,91,45,55,55,46,53,56,48,51,55,55,44,52,50,46,57,52,51,57,54,51,93,44,91,45,55,55,46,55,51,48,57,53,55,44,52,50,46,57,56,56,51,55,50,93,44,91,45,55,55,46,57,48,57,56,51,50,44,52,50,46,57,56,55,55,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,79,39,66,114,105,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,49,49,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,54,49,57,49,52,44,52,51,46,50,53,55,53,54,54,93,44,91,45,57,53,46,56,53,57,51,55,55,44,52,50,46,57,48,57,48,57,55,93,44,91,45,57,53,46,51,56,56,49,56,50,44,52,50,46,57,48,57,56,57,55,93,44,91,45,57,53,46,51,56,56,48,55,56,44,52,51,46,50,53,53,50,50,49,93,44,91,45,57,53,46,56,54,49,57,49,52,44,52,51,46,50,53,55,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,67,97,108,108,97,104,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,55,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,49,52,50,57,51,44,51,50,46,53,49,52,56,49,49,93,44,91,45,57,57,46,54,49,50,48,50,54,44,51,50,46,53,49,52,54,53,52,93,44,91,45,57,57,46,54,50,57,53,55,57,44,51,50,46,53,49,52,54,53,55,93,44,91,45,57,57,46,54,51,49,52,49,51,44,51,50,46,48,56,49,50,55,52,93,44,91,45,57,57,46,49,57,53,56,55,49,44,51,50,46,48,55,57,50,51,53,93,44,91,45,57,57,46,49,49,56,54,54,53,44,51,50,46,48,55,57,53,56,53,93,44,91,45,57,57,46,49,49,52,50,57,51,44,51,50,46,53,49,52,56,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,55,57,34,44,34,78,65,77,69,34,58,34,82,97,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,55,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,51,52,52,51,51,44,51,50,46,56,51,55,50,49,55,93,44,91,45,57,53,46,54,51,53,48,49,55,44,51,50,46,55,50,48,51,56,93,44,91,45,57,53,46,54,54,53,51,56,57,44,51,50,46,57,54,48,52,51,52,93,44,91,45,57,53,46,56,54,50,53,50,49,44,51,50,46,57,55,57,53,55,49,93,44,91,45,57,53,46,57,52,53,51,44,51,50,46,57,55,57,56,55,55,93,44,91,45,57,53,46,57,51,52,52,51,51,44,51,50,46,56,51,55,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,49,54,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,50,55,48,54,51,44,51,55,46,55,51,54,51,49,52,93,44,91,45,49,48,49,46,53,50,53,56,49,44,51,55,46,51,56,56,51,57,50,93,44,91,45,49,48,49,46,48,56,57,54,53,51,44,51,55,46,51,56,55,55,50,49,93,44,91,45,49,48,49,46,48,56,57,54,54,55,44,51,55,46,55,51,54,51,51,55,93,44,91,45,49,48,49,46,53,50,55,48,54,51,44,51,55,46,55,51,54,51,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,51,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,55,56,52,44,51,54,46,56,57,50,57,53,51,93,44,91,45,56,51,46,48,55,50,56,51,54,44,51,54,46,56,53,52,52,53,55,93,44,91,45,56,51,46,49,57,52,50,53,50,44,51,54,46,55,51,57,53,49,57,93,44,91,45,56,51,46,52,54,49,48,49,54,44,51,54,46,54,54,52,56,54,93,44,91,45,56,51,46,54,55,53,51,57,53,44,51,54,46,54,48,48,55,56,52,93,44,91,45,56,51,46,52,55,50,49,48,56,44,51,54,46,53,57,55,50,56,52,93,44,91,45,56,50,46,57,56,53,49,50,52,44,51,54,46,53,57,51,55,50,57,93,44,91,45,56,50,46,57,52,55,54,52,55,44,51,54,46,54,55,53,55,53,49,93,44,91,45,56,50,46,55,55,49,53,57,53,44,51,54,46,56,48,48,48,51,49,93,44,91,45,56,50,46,56,55,56,52,44,51,54,46,56,57,50,57,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,83,105,101,114,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,51,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,51,55,50,55,57,55,44,51,51,46,52,55,57,56,55,53,93,44,91,45,49,48,54,46,52,55,52,50,57,53,44,51,51,46,52,55,53,55,56,54,93,44,91,45,49,48,55,46,55,49,50,55,53,52,44,51,51,46,52,55,54,56,51,50,93,44,91,45,49,48,56,46,48,48,48,54,48,50,44,51,51,46,52,55,56,48,49,52,93,44,91,45,49,48,56,46,48,48,48,53,57,56,44,51,51,46,50,48,49,50,53,51,93,44,91,45,49,48,55,46,56,54,53,48,48,57,44,51,51,46,49,57,57,57,55,52,93,44,91,45,49,48,55,46,56,53,54,54,55,50,44,51,51,46,48,48,50,53,51,57,93,44,91,45,49,48,55,46,55,56,48,53,52,56,44,51,50,46,57,53,50,55,55,54,93,44,91,45,49,48,55,46,55,50,49,51,56,55,44,51,50,46,55,55,56,48,55,55,93,44,91,45,49,48,55,46,55,51,50,50,56,50,44,51,50,46,54,50,55,51,53,51,93,44,91,45,49,48,55,46,54,48,56,52,56,53,44,51,50,46,54,48,53,52,52,57,93,44,91,45,49,48,55,46,50,57,57,54,51,49,44,51,50,46,54,48,53,51,55,93,44,91,45,49,48,55,46,50,57,57,52,55,53,44,51,50,46,55,56,48,49,54,54,93,44,91,45,49,48,54,46,56,56,55,55,51,51,44,51,50,46,55,55,57,50,55,51,93,44,91,45,49,48,54,46,56,56,55,56,57,49,44,51,50,46,56,50,50,55,56,49,93,44,91,45,49,48,54,46,51,52,48,53,49,53,44,51,51,46,48,53,50,55,55,55,93,44,91,45,49,48,54,46,51,52,53,55,49,44,51,51,46,51,57,48,53,57,53,93,44,91,45,49,48,54,46,51,55,50,55,57,55,44,51,51,46,52,55,57,56,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,114,101,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,48,50,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,55,53,56,52,52,44,51,51,46,55,48,52,52,49,52,93,44,91,45,57,49,46,57,57,48,49,54,55,44,51,51,46,51,57,56,50,49,52,93,44,91,45,57,49,46,52,53,55,51,55,44,51,51,46,51,56,56,57,55,52,93,44,91,45,57,49,46,52,53,51,52,51,56,44,51,51,46,53,54,51,55,48,51,93,44,91,45,57,49,46,52,53,48,51,50,53,44,51,51,46,55,56,48,52,49,53,93,44,91,45,57,49,46,53,53,55,54,52,56,44,51,51,46,55,56,51,51,56,52,93,44,91,45,57,49,46,57,55,53,57,55,52,44,51,51,46,55,57,49,55,56,55,93,44,91,45,57,49,46,57,55,53,56,52,52,44,51,51,46,55,48,52,52,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,111,114,114,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,49,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,57,55,56,51,53,44,52,50,46,48,48,52,56,52,51,93,44,91,45,49,48,51,46,51,54,51,51,51,55,44,52,50,46,48,48,50,57,51,93,44,91,45,49,48,51,46,51,55,48,51,57,49,44,52,49,46,54,57,57,50,49,93,44,91,45,49,48,51,46,51,54,57,48,50,52,44,52,49,46,52,51,55,54,53,53,93,44,91,45,49,48,50,46,54,51,54,54,57,53,44,52,49,46,52,51,57,48,53,51,93,44,91,45,49,48,50,46,54,51,54,52,55,54,44,52,49,46,55,52,51,49,51,57,93,44,91,45,49,48,50,46,54,55,57,48,57,51,44,52,49,46,56,52,51,48,53,93,44,91,45,49,48,50,46,54,55,55,53,56,50,44,52,50,46,48,48,53,50,56,50,93,44,91,45,49,48,50,46,54,57,55,56,51,53,44,52,50,46,48,48,52,56,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,57,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,54,55,50,57,49,44,51,56,46,53,50,57,57,57,53,93,44,91,45,57,51,46,50,57,48,52,53,52,44,51,56,46,53,51,53,51,56,56,93,44,91,45,57,51,46,53,49,50,55,52,51,44,51,56,46,53,49,50,52,55,54,93,44,91,45,57,51,46,53,50,51,52,56,52,44,51,56,46,50,48,55,50,49,54,93,44,91,45,57,51,46,53,48,51,57,52,54,44,51,56,46,48,55,51,49,50,51,93,44,91,45,57,51,46,48,54,53,49,57,57,44,51,56,46,48,54,50,52,55,57,93,44,91,45,57,51,46,48,55,55,54,57,50,44,51,56,46,50,54,51,48,57,50,93,44,91,45,57,51,46,48,54,55,50,57,49,44,51,56,46,53,50,57,57,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,51,53,51,55,49,44,51,52,46,51,53,48,48,57,55,93,44,91,45,57,51,46,57,50,53,56,51,44,51,52,46,49,56,54,52,57,54,93,44,91,45,57,51,46,56,50,48,55,50,50,44,51,52,46,49,56,51,56,48,50,93,44,91,45,57,51,46,56,50,51,48,55,54,44,51,52,46,48,48,56,56,57,51,93,44,91,45,57,51,46,54,49,55,52,54,44,51,51,46,57,53,57,54,50,55,93,44,91,45,57,51,46,52,53,54,55,48,57,44,51,51,46,57,53,54,56,51,55,93,44,91,45,57,51,46,51,55,51,52,48,54,44,51,51,46,57,53,55,48,55,93,44,91,45,57,51,46,52,51,52,56,56,55,44,51,52,46,48,53,50,50,57,56,93,44,91,45,57,51,46,52,55,56,54,52,54,44,51,52,46,51,52,48,56,53,49,93,44,91,45,57,51,46,57,51,53,51,55,49,44,51,52,46,51,53,48,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,77,101,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,57,57,56,44,34,98,101,100,115,34,58,52,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,53,48,55,54,53,44,51,57,46,51,54,54,54,55,55,93,44,91,45,49,48,57,46,48,54,48,49,49,57,44,51,56,46,52,57,57,57,56,57,93,44,91,45,49,48,56,46,51,55,57,49,51,54,44,51,56,46,52,57,57,57,56,55,93,44,91,45,49,48,56,46,51,55,56,54,57,56,44,51,56,46,54,54,56,48,57,55,93,44,91,45,49,48,56,46,51,55,56,57,53,51,44,51,56,46,56,50,57,49,48,56,93,44,91,45,49,48,56,46,49,53,50,52,55,56,44,51,56,46,57,48,49,50,54,56,93,44,91,45,49,48,55,46,57,56,50,49,55,51,44,51,57,46,48,53,57,56,55,56,93,44,91,45,49,48,55,46,55,54,53,48,53,57,44,51,57,46,48,52,52,54,56,51,93,44,91,45,49,48,55,46,53,48,48,54,48,54,44,51,57,46,50,49,55,57,49,54,93,44,91,45,49,48,55,46,51,57,52,52,56,54,44,51,57,46,50,53,54,50,57,57,93,44,91,45,49,48,55,46,52,51,48,57,52,57,44,51,57,46,51,54,54,49,55,56,93,44,91,45,49,48,56,46,52,48,57,54,48,55,44,51,57,46,51,54,53,57,56,51,93,44,91,45,49,48,57,46,48,53,48,55,54,53,44,51,57,46,51,54,54,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,68,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,48,52,44,34,98,101,100,115,34,58,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,48,57,49,48,53,44,51,55,46,53,57,56,56,54,51,93,44,91,45,57,49,46,55,53,53,48,52,44,51,55,46,52,50,52,49,49,93,44,91,45,57,49,46,54,52,54,54,50,54,44,51,55,46,52,50,50,55,51,49,93,44,91,45,57,49,46,50,49,49,56,54,51,44,51,55,46,52,49,53,50,55,55,93,44,91,45,57,49,46,51,49,52,50,51,54,44,51,55,46,53,48,53,49,51,50,93,44,91,45,57,49,46,51,49,50,52,53,56,44,51,55,46,53,57,50,56,50,52,93,44,91,45,57,49,46,49,53,53,48,55,51,44,51,55,46,53,56,56,48,57,50,93,44,91,45,57,49,46,49,53,51,51,52,53,44,51,55,46,54,57,55,51,52,93,44,91,45,57,49,46,51,49,48,54,53,53,44,51,55,46,55,48,48,48,52,56,93,44,91,45,57,49,46,51,48,56,51,49,49,44,51,55,46,55,56,55,49,56,54,93,44,91,45,57,49,46,53,50,56,55,57,55,44,51,55,46,55,56,56,57,56,57,93,44,91,45,57,49,46,56,48,54,50,49,57,44,51,55,46,55,57,49,50,56,54,93,44,91,45,57,49,46,56,48,57,49,48,53,44,51,55,46,53,57,56,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,84,97,122,101,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,48,56,48,44,34,98,101,100,115,34,58,50,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,52,48,49,50,52,44,51,55,46,50,51,55,55,53,50,93,44,91,45,56,49,46,57,48,48,56,57,50,44,51,55,46,49,52,50,53,53,51,93,44,91,45,56,49,46,55,56,48,53,52,53,44,51,54,46,57,53,56,54,50,57,93,44,91,45,56,49,46,54,56,50,55,56,54,44,51,54,46,57,51,50,57,51,52,93,44,91,45,56,49,46,52,51,54,55,51,44,51,55,46,48,49,48,49,51,53,93,44,91,45,56,49,46,50,55,48,48,55,56,44,51,55,46,48,57,51,48,49,50,93,44,91,45,56,49,46,50,50,53,49,48,52,44,51,55,46,50,51,52,56,55,52,93,44,91,45,56,49,46,51,54,50,49,53,54,44,51,55,46,51,51,55,54,56,55,93,44,91,45,56,49,46,53,54,48,54,51,49,44,51,55,46,50,48,54,54,54,51,93,44,91,45,56,49,46,55,52,48,49,50,52,44,51,55,46,50,51,55,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,48,54,57,53,53,57,44,52,49,46,54,48,49,56,55,52,93,44,91,45,55,53,46,51,53,57,49,56,52,44,52,49,46,50,51,57,50,48,54,93,44,91,45,55,53,46,49,50,57,55,50,49,44,52,49,46,50,53,50,49,48,49,93,44,91,45,55,53,46,49,53,54,53,48,55,44,52,49,46,49,53,48,51,52,49,93,44,91,45,55,52,46,57,57,49,55,49,56,44,52,49,46,48,57,50,50,56,52,93,44,91,45,55,52,46,56,56,50,49,51,57,44,52,49,46,49,56,48,56,51,54,93,44,91,45,55,52,46,56,51,48,48,53,55,44,52,49,46,50,56,55,50,93,44,91,45,55,52,46,54,57,52,57,49,52,44,52,49,46,51,53,55,52,50,51,93,44,91,45,55,52,46,55,53,52,54,57,44,52,49,46,52,50,52,57,55,51,93,44,91,45,55,52,46,57,56,49,54,53,50,44,52,49,46,52,55,57,57,52,53,93,44,91,45,55,53,46,48,54,57,53,53,57,44,52,49,46,54,48,49,56,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,117,115,113,117,101,104,97,110,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,51,52,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,52,56,51,49,52,57,44,52,49,46,57,57,57,50,49,52,93,44,91,45,55,54,46,49,48,53,56,52,44,52,49,46,57,57,56,56,53,56,93,44,91,45,55,54,46,49,52,53,53,49,57,44,52,49,46,57,57,56,56,52,50,93,44,91,45,55,54,46,49,49,53,49,55,50,44,52,49,46,54,53,49,56,50,53,93,44,91,45,55,53,46,55,49,57,56,56,55,44,52,49,46,54,52,50,50,54,51,93,44,91,45,55,53,46,52,54,50,52,49,49,44,52,49,46,54,52,49,53,56,55,93,44,91,45,55,53,46,52,56,51,49,52,57,44,52,49,46,57,57,57,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,52,51,34,44,34,78,65,77,69,34,58,34,77,111,114,114,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,48,56,55,56,51,44,51,51,46,51,54,51,54,51,54,93,44,91,45,57,52,46,56,49,57,56,50,56,44,51,50,46,57,56,50,56,56,54,93,44,91,45,57,52,46,55,49,57,57,52,50,44,51,50,46,57,48,52,53,48,50,93,44,91,45,57,52,46,55,48,53,56,55,56,44,51,50,46,56,55,57,49,55,55,93,44,91,45,57,52,46,54,53,51,57,57,52,44,51,50,46,56,55,57,53,48,54,93,44,91,45,57,52,46,54,53,50,50,54,44,51,51,46,50,54,56,56,54,49,93,44,91,45,57,52,46,55,52,54,57,50,53,44,51,51,46,51,50,56,57,51,56,93,44,91,45,57,52,46,56,48,56,55,56,51,44,51,51,46,51,54,51,54,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,53,52,55,44,34,98,101,100,115,34,58,53,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,55,57,57,49,44,52,48,46,51,57,57,54,52,52,93,44,91,45,56,48,46,53,49,57,49,48,52,44,52,48,46,49,53,57,54,55,50,93,44,91,45,56,48,46,53,49,57,49,50,44,52,48,46,48,49,54,52,49,93,44,91,45,56,48,46,53,49,57,48,57,49,44,51,57,46,57,54,50,50,93,44,91,45,56,48,46,50,56,55,52,50,49,44,52,48,46,48,49,57,50,48,54,93,44,91,45,55,57,46,57,57,56,48,49,52,44,51,57,46,57,56,51,51,50,50,93,44,91,45,55,57,46,56,55,55,51,56,53,44,52,48,46,49,50,54,55,57,50,93,44,91,45,55,57,46,56,55,48,53,56,53,44,52,48,46,49,57,55,52,49,53,93,44,91,45,55,57,46,57,49,52,49,51,57,44,52,48,46,50,53,50,53,49,56,93,44,91,45,56,48,46,49,56,51,52,55,50,44,52,48,46,51,51,50,55,56,50,93,44,91,45,56,48,46,51,54,48,56,55,51,44,52,48,46,52,55,55,53,51,57,93,44,91,45,56,48,46,53,49,57,48,51,56,44,52,48,46,52,55,55,51,54,51,93,44,91,45,56,48,46,53,49,55,57,57,49,44,52,48,46,51,57,57,54,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,57,51,57,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,49,51,50,56,51,44,52,52,46,50,54,52,49,51,93,44,91,45,55,51,46,51,57,48,54,50,53,44,52,52,46,49,57,49,48,54,56,93,44,91,45,55,51,46,52,51,55,57,48,53,44,52,52,46,48,52,53,49,50,53,93,44,91,45,55,51,46,51,55,57,50,56,49,44,52,51,46,56,48,56,52,56,49,93,44,91,45,55,51,46,51,54,50,56,50,51,44,52,51,46,55,53,51,48,56,52,93,44,91,45,55,51,46,50,48,54,51,50,50,44,52,51,46,55,54,54,55,55,53,93,44,91,45,55,51,46,50,49,56,57,53,54,44,52,51,46,56,51,55,50,57,49,93,44,91,45,55,50,46,57,53,56,56,53,51,44,52,51,46,56,50,54,53,52,50,93,44,91,45,55,50,46,57,53,51,48,56,51,44,52,51,46,56,55,52,56,55,93,44,91,45,55,50,46,55,57,49,51,51,54,44,52,51,46,57,54,49,56,53,53,93,44,91,45,55,50,46,55,52,50,51,48,51,44,52,52,46,48,50,57,54,53,53,93,44,91,45,55,50,46,57,49,54,55,55,56,44,52,52,46,48,55,49,56,56,54,93,44,91,45,55,50,46,57,53,50,49,54,55,44,52,52,46,49,54,49,50,55,49,93,44,91,45,55,50,46,57,55,51,51,49,56,44,52,52,46,50,57,51,52,50,93,44,91,45,55,51,46,51,49,51,50,56,51,44,52,52,46,50,54,52,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,76,101,97,118,101,110,119,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,48,52,50,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,56,48,56,57,49,44,51,57,46,52,49,57,50,49,56,93,44,91,45,57,53,46,49,56,55,49,48,51,44,51,57,46,48,52,52,49,48,57,93,44,91,45,57,53,46,48,53,54,50,53,56,44,51,56,46,57,56,50,49,50,93,44,91,45,57,52,46,57,48,56,55,54,53,44,51,56,46,57,57,49,52,48,49,93,44,91,45,57,52,46,57,48,48,49,57,49,44,51,57,46,50,48,50,57,49,49,93,44,91,45,57,52,46,55,55,53,53,51,50,44,51,57,46,50,48,48,54,48,54,93,44,91,45,57,52,46,56,57,56,53,49,54,44,51,57,46,50,57,56,52,53,93,44,91,45,57,52,46,57,54,56,57,55,51,44,51,57,46,52,49,56,56,55,57,93,44,91,45,57,53,46,49,56,48,56,57,49,44,51,57,46,52,49,57,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,117,115,107,101,103,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,48,52,51,44,34,98,101,100,115,34,58,51,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,48,52,52,56,44,52,51,46,50,57,51,48,48,51,93,44,91,45,56,54,46,48,51,56,57,53,51,44,52,51,46,50,57,51,53,49,57,93,44,91,45,56,54,46,48,51,57,52,57,49,44,52,51,46,52,54,55,52,52,55,93,44,91,45,56,55,46,49,52,48,51,51,49,44,52,51,46,52,55,49,52,51,54,93,44,91,45,56,55,46,49,49,57,48,48,56,44,52,51,46,49,57,48,56,49,54,93,44,91,45,56,55,46,49,48,55,54,54,57,44,52,51,46,49,49,56,50,52,51,93,44,91,45,56,53,46,57,48,55,52,51,53,44,52,51,46,49,49,56,57,49,49,93,44,91,45,56,53,46,55,57,48,54,54,50,44,52,51,46,50,48,53,49,54,55,93,44,91,45,56,53,46,55,57,48,52,52,56,44,52,51,46,50,57,51,48,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,72,105,110,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,55,55,52,44,34,98,101,100,115,34,58,50,52,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,54,53,54,57,55,44,51,50,46,51,57,57,53,50,57,93,44,91,45,57,48,46,50,52,51,55,54,52,44,51,50,46,52,48,48,48,57,56,93,44,91,45,57,48,46,50,52,51,54,52,49,44,51,50,46,52,56,55,53,51,51,93,44,91,45,57,48,46,52,52,53,57,52,54,44,51,50,46,52,56,55,57,48,51,93,44,91,45,57,48,46,52,53,48,48,51,55,44,51,50,46,53,55,51,55,56,51,93,44,91,45,57,48,46,53,53,51,56,50,49,44,51,50,46,53,48,55,53,55,52,93,44,91,45,57,48,46,54,56,51,53,55,49,44,51,50,46,51,53,50,55,56,52,93,44,91,45,57,48,46,55,50,56,54,50,50,44,51,50,46,50,50,53,49,49,57,93,44,91,45,57,48,46,55,49,56,50,57,55,44,51,50,46,48,52,56,51,53,50,93,44,91,45,57,48,46,50,51,48,51,51,49,44,51,50,46,48,52,57,55,50,56,93,44,91,45,57,48,46,50,52,53,51,56,44,51,50,46,49,55,49,51,57,54,93,44,91,45,57,48,46,48,54,53,54,57,55,44,51,50,46,51,57,57,53,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,49,34,44,34,78,65,77,69,34,58,34,76,97,109,112,97,115,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,52,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,55,49,48,55,44,51,49,46,52,49,54,51,57,56,93,44,91,45,57,56,46,53,54,50,55,51,57,44,51,49,46,50,51,48,53,56,50,93,44,91,45,57,56,46,52,51,57,54,56,55,44,51,49,46,48,50,57,53,51,55,93,44,91,45,57,55,46,57,49,49,54,56,52,44,51,49,46,48,51,52,57,49,57,93,44,91,45,57,55,46,57,48,55,49,44,51,49,46,48,54,57,51,55,52,93,44,91,45,57,56,46,49,56,48,48,48,54,44,51,49,46,52,54,51,55,49,55,93,44,91,45,57,56,46,50,55,49,48,55,44,51,49,46,52,49,54,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,76,111,117,100,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,53,49,52,51,44,34,98,101,100,115,34,58,52,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,50,56,51,49,56,44,51,57,46,48,53,55,54,55,56,93,44,91,45,55,55,46,52,54,48,54,48,50,44,51,57,46,48,55,52,56,52,51,93,44,91,45,55,55,46,53,50,55,51,50,50,44,51,57,46,49,52,54,57,54,49,93,44,91,45,55,55,46,52,53,56,56,48,56,44,51,57,46,50,50,48,50,55,93,44,91,45,55,55,46,53,54,56,55,53,51,44,51,57,46,51,48,54,52,52,55,93,44,91,45,55,55,46,54,55,55,49,54,52,44,51,57,46,51,50,52,53,51,52,93,44,91,45,55,55,46,55,49,57,53,49,57,44,51,57,46,51,50,49,51,49,52,93,44,91,45,55,55,46,56,50,56,50,57,57,44,51,57,46,49,51,50,52,50,54,93,44,91,45,55,55,46,57,54,50,50,48,51,44,51,57,46,48,49,51,55,51,51,93,44,91,45,55,55,46,54,53,53,49,54,57,44,51,56,46,57,52,50,54,53,54,93,44,91,45,55,55,46,53,51,53,57,57,49,44,51,56,46,56,52,55,51,54,56,93,44,91,45,55,55,46,51,50,56,51,49,56,44,51,57,46,48,53,55,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,108,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,56,51,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,53,56,50,56,53,44,51,56,46,48,51,54,54,50,55,93,44,91,45,57,52,46,48,54,53,54,55,53,44,51,55,46,57,48,48,57,56,55,93,44,91,45,57,51,46,56,48,56,54,52,56,44,51,55,46,56,57,50,55,55,53,93,44,91,45,57,51,46,56,49,49,52,48,50,44,51,55,46,56,51,52,53,55,49,93,44,91,45,57,51,46,54,50,56,52,48,52,44,51,55,46,56,50,57,52,51,53,93,44,91,45,57,51,46,53,55,51,50,48,50,44,51,55,46,56,50,56,48,51,53,93,44,91,45,57,51,46,53,49,50,49,48,51,44,51,55,46,57,49,51,53,51,53,93,44,91,45,57,51,46,53,48,51,57,52,54,44,51,56,46,48,55,51,49,50,51,93,44,91,45,57,51,46,53,50,51,52,56,52,44,51,56,46,50,48,55,50,49,54,93,44,91,45,57,52,46,48,52,57,56,57,53,44,51,56,46,50,49,51,57,56,53,93,44,91,45,57,52,46,48,53,56,50,56,53,44,51,56,46,48,51,54,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,53,48,50,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,49,49,53,56,44,52,50,46,53,49,55,55,57,57,93,44,91,45,55,52,46,56,52,52,49,50,49,44,52,50,46,53,49,50,53,57,49,93,44,91,45,55,53,46,48,49,57,56,49,56,44,52,50,46,52,50,57,48,52,53,93,44,91,45,55,53,46,52,49,53,51,49,57,44,52,50,46,51,49,52,49,53,49,93,44,91,45,55,53,46,52,49,56,52,50,49,44,52,50,46,49,57,53,48,51,50,93,44,91,45,55,53,46,52,50,49,55,55,54,44,52,50,46,48,52,50,48,51,93,44,91,45,55,53,46,51,53,57,53,55,57,44,52,49,46,57,57,57,52,52,53,93,44,91,45,55,53,46,50,55,49,50,57,51,44,52,49,46,56,56,55,51,53,56,93,44,91,45,55,53,46,49,52,54,52,52,54,44,52,49,46,56,53,48,56,57,57,93,44,91,45,55,52,46,55,56,48,54,57,51,44,52,50,46,48,49,54,51,55,53,93,44,91,45,55,52,46,52,53,49,55,49,51,44,52,50,46,49,54,57,50,50,53,93,44,91,45,55,52,46,53,51,55,51,49,44,52,50,46,50,48,49,52,50,52,93,44,91,45,55,52,46,52,52,51,53,48,54,44,52,50,46,51,53,53,48,49,55,93,44,91,45,55,52,46,54,49,56,56,57,53,44,52,50,46,52,50,52,51,56,57,93,44,91,45,55,52,46,55,49,49,53,56,44,52,50,46,53,49,55,55,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,80,104,105,108,108,105,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,52,44,34,98,101,100,115,34,58,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,50,51,54,52,57,55,44,52,56,46,57,57,57,53,55,49,93,44,91,45,49,48,56,46,50,53,57,51,56,52,44,52,56,46,55,52,50,50,50,53,93,44,91,45,49,48,56,46,51,49,57,48,49,49,44,52,56,46,53,54,56,52,51,49,93,44,91,45,49,48,56,46,52,49,49,49,56,54,44,52,56,46,52,52,52,57,56,49,93,44,91,45,49,48,56,46,52,51,51,57,56,44,52,55,46,57,55,54,53,53,51,93,44,91,45,49,48,56,46,54,48,55,53,55,57,44,52,55,46,57,57,48,57,57,55,93,44,91,45,49,48,56,46,54,50,53,53,56,55,44,52,55,46,57,50,48,52,49,49,93,44,91,45,49,48,56,46,56,56,56,51,49,54,44,52,55,46,57,50,50,55,50,50,93,44,91,45,49,48,56,46,56,57,49,49,49,53,44,52,55,46,55,51,52,52,53,54,93,44,91,45,49,48,56,46,54,55,49,52,44,52,55,46,54,49,57,53,53,54,93,44,91,45,49,48,56,46,51,49,51,48,52,56,44,52,55,46,53,56,51,54,53,93,44,91,45,49,48,56,46,48,54,53,52,49,56,44,52,55,46,53,57,56,50,57,52,93,44,91,45,49,48,55,46,57,51,49,49,48,53,44,52,55,46,53,54,57,48,55,51,93,44,91,45,49,48,55,46,57,48,57,49,50,44,52,55,46,52,53,48,54,57,50,93,44,91,45,49,48,55,46,56,54,52,57,50,50,44,52,55,46,53,49,51,55,52,93,44,91,45,49,48,55,46,53,57,52,50,53,44,52,55,46,54,52,57,55,51,49,93,44,91,45,49,48,55,46,52,49,52,56,56,54,44,52,55,46,54,57,49,55,51,52,93,44,91,45,49,48,55,46,52,48,52,53,49,51,44,52,56,46,50,49,56,52,52,93,44,91,45,49,48,55,46,50,54,48,52,53,56,44,52,56,46,51,48,52,55,54,56,93,44,91,45,49,48,55,46,51,48,49,55,50,49,44,52,56,46,52,56,48,57,52,51,93,44,91,45,49,48,55,46,50,48,54,51,49,54,44,52,56,46,53,54,56,49,55,93,44,91,45,49,48,55,46,50,48,54,48,51,50,44,52,56,46,57,49,50,55,49,93,44,91,45,49,48,55,46,49,55,57,56,49,50,44,52,57,46,48,48,48,49,48,51,93,44,91,45,49,48,56,46,50,51,54,52,57,55,44,52,56,46,57,57,57,53,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,53,54,56,57,57,44,52,48,46,53,56,48,50,51,53,93,44,91,45,57,51,46,55,55,52,51,52,52,44,52,48,46,53,55,55,53,52,56,93,44,91,45,57,51,46,55,54,51,51,50,52,44,52,48,46,50,54,51,57,56,56,93,44,91,45,57,51,46,51,54,55,50,49,52,44,52,48,46,50,54,54,51,49,52,93,44,91,45,57,51,46,51,54,54,57,51,53,44,52,48,46,51,56,50,57,57,57,93,44,91,45,57,51,46,51,55,52,51,56,54,44,52,48,46,53,56,48,51,51,51,93,44,91,45,57,51,46,53,53,54,56,57,57,44,52,48,46,53,56,48,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,54,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,56,50,48,53,55,54,44,52,55,46,49,57,52,50,50,93,44,91,45,49,50,50,46,56,53,49,49,56,55,44,52,55,46,50,52,57,55,55,52,93,44,91,45,49,50,50,46,56,48,49,49,57,57,44,52,55,46,52,48,51,53,55,56,93,44,91,45,49,50,50,46,56,48,49,48,49,50,44,52,55,46,53,50,48,52,48,54,93,44,91,45,49,50,51,46,48,51,56,52,48,52,44,52,55,46,53,50,48,50,51,54,93,44,91,45,49,50,50,46,57,53,48,54,50,49,44,52,55,46,54,48,54,51,48,56,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,54,48,52,54,49,53,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,53,49,55,55,49,54,93,44,91,45,49,50,51,46,52,56,56,57,52,51,44,52,55,46,48,56,50,54,52,54,93,44,91,45,49,50,51,46,50,48,49,56,57,49,44,52,55,46,48,56,53,48,53,57,93,44,91,45,49,50,51,46,48,55,53,48,50,54,44,52,55,46,48,56,52,55,56,55,93,44,91,45,49,50,51,46,48,48,50,52,51,53,44,52,55,46,49,53,49,51,48,50,93,44,91,45,49,50,50,46,56,50,48,53,55,54,44,52,55,46,49,57,52,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,78,97,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,48,48,51,44,34,98,101,100,115,34,58,51,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,48,54,53,53,49,44,51,54,46,50,48,50,54,51,51,93,44,91,45,55,56,46,50,53,53,57,55,51,44,51,53,46,56,49,56,49,50,93,44,91,45,55,56,46,49,57,50,49,49,55,44,51,53,46,55,51,48,53,52,53,93,44,91,45,55,55,46,56,50,56,52,52,52,44,51,53,46,56,54,55,50,48,56,93,44,91,45,55,55,46,54,57,55,57,53,54,44,51,54,46,49,53,51,49,53,93,44,91,45,55,55,46,56,56,55,50,52,44,51,54,46,49,52,51,56,52,93,44,91,45,55,56,46,48,48,54,53,53,49,44,51,54,46,50,48,50,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,53,56,55,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,57,49,51,48,50,44,51,55,46,50,49,51,50,48,53,93,44,91,45,55,54,46,52,51,56,48,50,54,44,51,55,46,48,57,52,51,52,56,93,44,91,45,55,54,46,51,57,53,55,57,53,44,51,55,46,49,48,55,49,55,52,93,44,91,45,55,54,46,51,51,48,52,51,53,44,51,55,46,49,57,48,57,56,52,93,44,91,45,55,54,46,49,51,53,53,50,44,51,55,46,49,57,49,57,55,93,44,91,45,55,54,46,49,51,54,51,48,49,44,51,55,46,50,56,50,49,51,55,93,44,91,45,55,54,46,51,48,52,53,44,51,55,46,50,55,56,51,54,49,93,44,91,45,55,54,46,53,49,54,48,53,55,44,51,55,46,50,52,56,55,53,50,93,44,91,45,55,54,46,54,53,56,54,53,49,44,51,55,46,51,56,48,49,51,57,93,44,91,45,55,54,46,55,50,55,56,53,57,44,51,55,46,51,48,53,57,50,55,93,44,91,45,55,54,46,54,56,48,49,53,49,44,51,55,46,50,54,53,57,57,55,93,44,91,45,55,54,46,53,57,49,51,48,50,44,51,55,46,50,49,51,50,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,80,101,116,116,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,51,55,49,44,34,98,101,100,115,34,58,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,53,48,52,53,51,44,51,56,46,57,50,56,50,52,52,93,44,91,45,57,51,46,52,57,54,51,55,55,44,51,56,46,57,52,50,56,51,55,93,44,91,45,57,51,46,52,57,55,50,55,56,44,51,56,46,57,50,56,52,51,93,44,91,45,57,51,46,53,49,49,48,51,44,51,56,46,53,53,54,50,49,93,44,91,45,57,51,46,53,49,50,55,52,51,44,51,56,46,53,49,50,52,55,54,93,44,91,45,57,51,46,50,57,48,52,53,52,44,51,56,46,53,51,53,51,56,56,93,44,91,45,57,51,46,48,54,55,50,57,49,44,51,56,46,53,50,57,57,57,53,93,44,91,45,57,51,46,48,53,57,57,55,52,44,51,56,46,54,57,51,48,55,55,93,44,91,45,57,51,46,48,53,48,52,53,51,44,51,56,46,57,50,56,50,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,77,105,115,115,111,117,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,57,56,51,44,34,98,101,100,115,34,58,52,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,54,51,52,48,55,57,44,52,55,46,54,48,48,48,50,55,93,44,91,45,49,49,51,46,57,50,52,56,50,54,44,52,55,46,54,48,48,50,51,57,93,44,91,45,49,49,51,46,57,52,50,56,56,54,44,52,55,46,52,55,57,54,55,56,93,44,91,45,49,49,51,46,56,55,49,49,49,44,52,55,46,51,57,49,57,55,93,44,91,45,49,49,51,46,56,50,49,52,52,55,44,52,55,46,49,56,49,55,48,57,93,44,91,45,49,49,51,46,57,51,51,53,48,51,44,52,55,46,49,51,56,50,56,57,93,44,91,45,49,49,52,46,49,56,55,49,55,44,52,55,46,49,51,56,49,57,49,93,44,91,45,49,49,52,46,50,53,51,53,56,52,44,52,55,46,49,50,49,48,48,55,93,44,91,45,49,49,52,46,52,50,51,56,53,56,44,52,55,46,50,49,48,48,57,49,93,44,91,45,49,49,52,46,54,56,55,50,57,53,44,52,55,46,50,55,52,51,49,93,44,91,45,49,49,52,46,55,57,55,50,48,52,44,52,55,46,50,54,56,57,49,54,93,44,91,45,49,49,52,46,55,55,53,56,51,51,44,52,55,46,50,50,53,53,55,51,93,44,91,45,49,49,52,46,52,56,51,50,50,55,44,52,55,46,48,50,51,51,53,56,93,44,91,45,49,49,52,46,53,54,54,49,50,57,44,52,54,46,57,54,51,52,48,53,93,44,91,45,49,49,52,46,53,52,57,49,50,55,44,52,54,46,55,52,55,51,54,54,93,44,91,45,49,49,52,46,54,55,52,57,52,50,44,52,54,46,55,51,54,56,50,54,93,44,91,45,49,49,52,46,53,57,52,54,51,52,44,52,54,46,54,51,51,52,52,56,93,44,91,45,49,49,52,46,51,51,50,55,57,54,44,52,54,46,54,54,48,53,56,49,93,44,91,45,49,49,51,46,56,50,55,55,52,51,44,52,54,46,54,54,48,56,57,54,93,44,91,45,49,49,51,46,52,55,57,56,53,54,44,52,54,46,55,52,52,55,49,52,93,44,91,45,49,49,51,46,52,49,54,53,57,57,44,52,54,46,56,51,50,49,49,51,93,44,91,45,49,49,51,46,51,48,50,57,48,51,44,52,54,46,56,51,50,49,53,57,93,44,91,45,49,49,51,46,51,48,50,57,52,51,44,52,55,46,49,55,57,54,52,51,93,44,91,45,49,49,51,46,52,54,54,52,53,44,52,55,46,49,55,57,49,56,54,93,44,91,45,49,49,51,46,52,54,54,52,56,53,44,52,55,46,54,48,48,48,53,55,93,44,91,45,49,49,51,46,54,51,52,48,55,57,44,52,55,46,54,48,48,48,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,104,97,117,116,97,117,113,117,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,54,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,50,52,56,55,51,44,51,55,46,51,48,50,55,51,93,44,91,45,57,54,46,53,50,53,53,56,50,44,51,54,46,57,57,56,55,49,93,44,91,45,57,54,46,48,48,48,56,49,44,51,54,46,57,57,56,56,54,93,44,91,45,57,53,46,57,54,52,50,55,44,51,54,46,57,57,57,49,48,52,93,44,91,45,57,53,46,57,54,52,51,57,57,44,51,55,46,50,57,57,50,51,50,93,44,91,45,57,54,46,53,50,52,56,55,51,44,51,55,46,51,48,50,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,53,57,34,44,34,78,65,77,69,34,58,34,85,112,115,104,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,55,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,53,50,49,49,44,51,50,46,57,48,50,54,52,49,93,44,91,45,57,53,46,49,53,51,52,49,44,51,50,46,53,55,48,49,49,53,93,44,91,45,57,52,46,57,56,54,57,51,53,44,51,50,46,53,51,55,50,52,54,93,44,91,45,57,52,46,55,48,49,55,57,44,51,50,46,54,53,50,50,48,57,93,44,91,45,57,52,46,55,48,50,49,52,44,51,50,46,55,57,51,48,56,56,93,44,91,45,57,52,46,55,48,53,56,55,56,44,51,50,46,56,55,57,49,55,55,93,44,91,45,57,52,46,55,49,57,57,52,50,44,51,50,46,57,48,52,53,48,50,93,44,91,45,57,53,46,49,53,50,49,49,44,51,50,46,57,48,50,54,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,117,108,112,101,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,52,53,48,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,51,49,56,48,51,44,51,56,46,53,51,50,53,51,57,93,44,91,45,55,56,46,48,57,54,48,56,51,44,51,56,46,52,48,52,51,52,51,93,44,91,45,55,56,46,48,57,52,52,57,56,44,51,56,46,51,49,49,50,52,50,93,44,91,45,55,55,46,57,48,56,57,55,57,44,51,56,46,51,56,49,53,48,51,93,44,91,45,55,55,46,55,48,50,56,52,51,44,51,56,46,51,54,48,56,52,93,44,91,45,55,55,46,54,49,56,55,50,55,44,51,56,46,51,54,55,56,51,53,93,44,91,45,55,55,46,54,51,52,57,52,44,51,56,46,52,49,48,50,49,56,93,44,91,45,55,55,46,55,51,53,57,48,49,44,51,56,46,52,49,51,52,53,56,93,44,91,45,55,55,46,57,51,53,51,53,53,44,51,56,46,54,57,53,56,52,93,44,91,45,55,56,46,49,54,56,55,57,50,44,51,56,46,53,50,51,56,48,57,93,44,91,45,55,56,46,50,51,49,56,48,51,44,51,56,46,53,51,50,53,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,97,115,107,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,52,57,57,51,51,44,51,53,46,52,53,56,56,57,52,93,44,91,45,57,53,46,49,55,49,55,54,51,44,51,53,46,51,48,53,53,53,51,93,44,91,45,57,53,46,51,52,52,55,54,54,44,51,53,46,50,57,51,48,51,53,93,44,91,45,57,53,46,52,53,49,50,53,44,51,53,46,50,57,54,48,49,57,93,44,91,45,57,53,46,52,53,53,48,49,56,44,51,53,46,49,54,48,53,55,53,93,44,91,45,57,53,46,51,52,57,53,50,53,44,51,53,46,49,54,48,48,50,49,93,44,91,45,57,53,46,51,52,57,52,48,57,44,51,53,46,48,53,56,53,50,93,44,91,45,57,52,46,57,50,55,56,54,51,44,51,53,46,48,53,56,50,52,54,93,44,91,45,57,52,46,57,50,55,55,55,52,44,51,53,46,50,48,50,54,49,93,44,91,45,57,52,46,56,49,52,50,55,54,44,51,53,46,50,48,50,51,51,49,93,44,91,45,57,52,46,56,49,51,54,50,57,44,51,53,46,51,50,51,51,52,52,93,44,91,45,57,53,46,48,52,57,57,51,51,44,51,53,46,52,53,56,56,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,53,52,55,44,34,98,101,100,115,34,58,52,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,51,51,56,48,51,44,52,48,46,48,51,51,52,48,57,93,44,91,45,56,48,46,53,49,57,49,50,44,52,48,46,48,49,54,52,49,93,44,91,45,56,48,46,53,49,57,49,48,52,44,52,48,46,49,53,57,54,55,50,93,44,91,45,56,48,46,54,56,49,56,49,49,44,52,48,46,49,56,53,53,54,51,93,44,91,45,56,48,46,55,48,50,55,53,44,52,48,46,49,53,55,50,52,57,93,44,91,45,56,48,46,55,51,51,56,48,51,44,52,48,46,48,51,51,52,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,50,52,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,50,50,49,49,44,51,57,46,54,49,57,54,53,55,93,44,91,45,55,56,46,49,55,49,53,52,57,44,51,57,46,54,57,53,54,52,51,93,44,91,45,55,56,46,51,51,51,56,49,57,44,51,57,46,54,51,54,55,54,50,93,44,91,45,55,56,46,52,54,56,53,56,49,44,51,57,46,53,49,54,54,49,57,93,44,91,45,55,56,46,51,52,55,48,56,55,44,51,57,46,52,54,54,48,49,50,93,44,91,45,55,56,46,50,50,56,55,54,54,44,51,57,46,51,57,49,50,51,51,93,44,91,45,55,56,46,49,51,56,57,51,55,44,51,57,46,53,57,51,55,57,54,93,44,91,45,55,56,46,48,50,50,49,49,44,51,57,46,54,49,57,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,82,111,99,107,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,52,52,52,44,34,98,101,100,115,34,58,50,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,53,55,50,53,51,44,51,56,46,55,54,49,52,49,51,93,44,91,45,55,57,46,50,50,52,53,56,51,44,51,56,46,52,55,55,53,56,56,93,44,91,45,55,56,46,55,52,57,51,57,54,44,51,56,46,50,48,54,54,52,56,93,44,91,45,55,56,46,54,54,51,49,52,53,44,51,56,46,50,55,55,57,51,51,93,44,91,45,55,56,46,52,56,53,55,52,44,51,56,46,52,50,49,53,55,57,93,44,91,45,55,56,46,54,57,49,51,49,50,44,51,56,46,53,49,48,48,48,56,93,44,91,45,55,56,46,54,52,49,55,54,57,44,51,56,46,54,48,52,55,49,57,93,44,91,45,55,56,46,56,54,57,50,54,49,44,51,56,46,55,54,50,57,56,93,44,91,45,55,56,46,57,57,51,55,54,49,44,51,56,46,56,53,48,48,50,49,93,44,91,45,55,57,46,48,53,55,50,53,51,44,51,56,46,55,54,49,52,49,51,93,93,44,91,91,45,55,56,46,57,49,55,56,55,49,44,51,56,46,51,57,52,49,53,51,93,44,91,45,55,56,46,57,48,48,53,56,57,44,51,56,46,52,53,57,50,49,55,93,44,91,45,55,56,46,56,50,52,51,50,44,51,56,46,52,51,53,48,55,57,93,44,91,45,55,56,46,57,49,55,56,55,49,44,51,56,46,51,57,52,49,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,87,104,105,116,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,54,52,57,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,49,57,50,56,44,52,49,46,50,57,52,55,55,54,93,44,91,45,56,53,46,54,56,52,49,56,49,44,52,49,46,48,52,54,55,49,54,93,44,91,45,56,53,46,54,52,51,56,52,49,44,52,49,46,48,48,50,51,48,53,93,44,91,45,56,53,46,51,51,53,54,52,51,44,52,49,46,48,48,53,50,53,93,44,91,45,56,53,46,51,48,55,55,56,49,44,52,49,46,50,54,52,49,53,56,93,44,91,45,56,53,46,53,51,55,49,56,44,52,49,46,50,54,54,49,53,55,93,44,91,45,56,53,46,54,53,49,57,50,56,44,52,49,46,50,57,52,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,83,105,115,107,105,121,111,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,53,52,48,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,50,56,57,55,52,56,44,52,50,46,48,48,56,48,57,56,93,44,91,45,49,50,51,46,50,51,49,49,49,51,44,52,50,46,48,48,51,57,52,51,93,44,91,45,49,50,51,46,53,49,55,57,49,49,44,52,50,46,48,48,48,55,53,54,93,44,91,45,49,50,51,46,53,54,53,52,52,50,44,52,49,46,57,48,51,49,52,49,93,44,91,45,49,50,51,46,55,48,51,54,56,49,44,52,49,46,56,50,57,52,56,55,93,44,91,45,49,50,51,46,54,54,55,49,49,52,44,52,49,46,54,57,49,54,56,57,93,44,91,45,49,50,51,46,55,49,57,49,55,52,44,52,49,46,53,57,53,54,49,51,93,44,91,45,49,50,51,46,54,49,50,51,57,53,44,52,49,46,52,52,56,57,53,52,93,44,91,45,49,50,51,46,54,54,49,51,54,51,44,52,49,46,51,56,50,48,57,93,44,91,45,49,50,51,46,52,55,52,48,56,53,44,52,49,46,51,54,54,49,57,51,93,44,91,45,49,50,51,46,52,48,56,50,57,49,44,52,49,46,49,55,57,57,52,52,93,44,91,45,49,50,51,46,50,52,53,50,50,50,44,52,49,46,48,55,55,57,56,55,93,44,91,45,49,50,51,46,49,48,57,48,55,55,44,52,49,46,48,55,53,52,50,57,93,44,91,45,49,50,51,46,48,51,54,56,48,56,44,52,49,46,48,48,52,48,53,56,93,44,91,45,49,50,50,46,56,57,55,48,54,54,44,52,49,46,50,48,49,48,48,54,93,44,91,45,49,50,50,46,56,49,49,51,52,50,44,52,49,46,50,48,50,52,53,49,93,44,91,45,49,50,50,46,53,57,48,56,48,56,44,52,49,46,51,50,53,57,49,93,44,91,45,49,50,50,46,53,48,52,50,53,52,44,52,49,46,51,51,52,55,49,93,44,91,45,49,50,50,46,52,57,56,51,55,54,44,52,49,46,49,56,50,54,55,53,93,44,91,45,49,50,49,46,52,52,54,52,57,53,44,52,49,46,49,56,51,52,56,52,93,44,91,45,49,50,49,46,52,52,55,53,51,56,44,52,49,46,57,57,55,52,54,53,93,44,91,45,49,50,50,46,50,56,57,55,52,56,44,52,50,46,48,48,56,48,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,48,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,55,57,53,57,50,44,52,53,46,53,56,56,52,56,51,93,44,91,45,57,55,46,57,56,49,52,53,55,44,52,53,46,50,52,48,52,49,53,93,44,91,45,57,55,46,57,56,49,55,57,50,44,52,53,46,49,53,51,50,57,53,93,44,91,45,57,55,46,52,57,52,50,53,52,44,52,53,46,49,53,49,54,51,49,93,44,91,45,57,55,46,50,50,54,50,56,49,44,52,53,46,49,53,49,56,50,54,93,44,91,45,57,55,46,50,50,54,50,52,52,44,52,53,46,50,57,55,54,52,55,93,44,91,45,57,55,46,50,50,55,48,56,57,44,52,53,46,53,53,56,49,53,56,93,44,91,45,57,55,46,51,55,51,51,54,54,44,52,53,46,53,56,55,54,51,52,93,44,91,45,57,55,46,57,55,57,53,57,50,44,52,53,46,53,56,56,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,79,114,108,101,97,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,57,54,52,56,44,34,98,101,100,115,34,58,49,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,48,56,49,49,57,44,51,48,46,49,54,52,57,52,93,44,91,45,57,48,46,49,51,56,53,55,52,44,50,57,46,57,49,56,56,48,53,93,44,91,45,57,48,46,48,48,56,48,53,54,44,50,57,46,56,57,53,53,50,56,93,44,91,45,56,57,46,57,49,48,55,48,56,44,50,57,46,56,54,55,56,54,53,93,44,91,45,56,57,46,56,56,49,53,57,57,44,50,57,46,57,56,54,50,93,44,91,45,56,57,46,54,56,51,50,51,44,51,48,46,48,55,54,52,48,54,93,44,91,45,56,57,46,54,50,53,48,53,52,44,51,48,46,49,53,51,52,57,51,93,44,91,45,56,57,46,55,57,55,52,49,52,44,51,48,46,49,54,48,55,53,55,93,44,91,45,56,57,46,57,48,51,50,51,52,44,51,48,46,49,57,56,54,54,93,44,91,45,57,48,46,49,48,56,49,49,57,44,51,48,46,49,54,52,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,57,56,57,50,44,34,98,101,100,115,34,58,52,55,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,53,51,54,54,52,44,51,51,46,56,49,53,50,57,55,93,44,91,45,56,55,46,48,50,51,50,56,54,44,51,51,46,55,55,50,55,50,55,93,44,91,45,56,55,46,48,57,50,55,51,51,44,51,51,46,54,50,55,56,53,93,44,91,45,56,55,46,49,55,57,52,51,44,51,51,46,54,49,51,55,57,52,93,44,91,45,56,55,46,50,54,54,57,50,51,44,51,51,46,53,49,50,57,50,57,93,44,91,45,56,55,46,50,56,52,51,54,51,44,51,51,46,52,52,48,53,55,56,93,44,91,45,56,55,46,49,55,57,54,51,56,44,51,51,46,51,50,49,49,49,50,93,44,91,45,56,55,46,48,54,53,55,51,56,44,51,51,46,50,52,54,57,48,55,93,44,91,45,56,55,46,48,50,54,56,52,54,44,51,51,46,50,52,54,52,53,57,93,44,91,45,56,54,46,54,55,52,52,49,56,44,51,51,46,52,54,54,53,50,49,93,44,91,45,56,54,46,53,49,54,55,56,51,44,51,51,46,53,52,53,56,57,54,93,44,91,45,56,54,46,53,50,53,48,55,51,44,51,51,46,55,50,49,50,51,54,93,44,91,45,56,54,46,53,55,55,55,57,57,44,51,51,46,55,54,53,51,49,54,93,44,91,45,56,54,46,55,53,57,49,52,52,44,51,51,46,56,52,48,54,49,55,93,44,91,45,56,54,46,57,53,51,54,54,52,44,51,51,46,56,49,53,50,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,87,97,108,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,52,57,51,44,34,98,101,100,115,34,58,50,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,51,53,57,51,50,44,51,51,46,57,49,53,50,53,49,93,44,91,45,56,55,46,53,51,49,54,48,50,44,51,51,46,56,54,55,54,49,56,93,44,91,45,56,55,46,53,50,56,51,51,56,44,51,51,46,54,57,50,48,52,57,93,44,91,45,56,55,46,52,50,51,56,52,51,44,51,51,46,54,56,57,49,49,50,93,44,91,45,56,55,46,52,50,51,55,48,49,44,51,51,46,54,48,50,48,57,54,93,44,91,45,56,55,46,51,49,56,53,51,50,44,51,51,46,53,56,55,51,57,51,93,44,91,45,56,55,46,50,54,54,57,50,51,44,51,51,46,53,49,50,57,50,57,93,44,91,45,56,55,46,49,55,57,52,51,44,51,51,46,54,49,51,55,57,52,93,44,91,45,56,55,46,48,57,50,55,51,51,44,51,51,46,54,50,55,56,53,93,44,91,45,56,55,46,48,50,51,50,56,54,44,51,51,46,55,55,50,55,50,55,93,44,91,45,56,54,46,57,53,51,54,54,52,44,51,51,46,56,49,53,50,57,55,93,44,91,45,56,54,46,57,54,51,51,53,56,44,51,51,46,56,53,56,50,50,49,93,44,91,45,56,55,46,49,53,49,48,51,54,44,51,51,46,57,57,51,50,50,53,93,44,91,45,56,55,46,54,51,54,49,49,56,44,51,52,46,48,48,50,50,48,51,93,44,91,45,56,55,46,54,51,53,57,51,50,44,51,51,46,57,49,53,50,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,53,51,55,55,44,52,48,46,48,51,57,50,49,55,93,44,91,45,57,52,46,54,48,50,56,51,44,51,57,46,56,49,57,57,48,54,93,44,91,45,57,52,46,54,48,50,50,53,55,44,51,57,46,55,52,55,49,57,53,93,44,91,45,57,52,46,50,48,53,57,54,49,44,51,57,46,55,52,53,56,52,49,93,44,91,45,57,52,46,50,48,53,56,52,52,44,51,57,46,55,56,56,57,53,52,93,44,91,45,57,52,46,50,49,56,56,44,52,48,46,48,51,52,56,56,53,93,44,91,45,57,52,46,54,48,53,51,55,55,44,52,48,46,48,51,57,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,71,97,100,115,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,48,49,55,44,34,98,101,100,115,34,58,57,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,44,91,45,56,52,46,56,56,50,54,49,54,44,51,48,46,53,51,51,48,57,52,93,44,91,45,56,52,46,54,52,54,52,48,56,44,51,48,46,51,56,56,50,56,49,93,44,91,45,56,52,46,52,50,48,52,55,52,44,51,48,46,52,54,51,57,48,53,93,44,91,45,56,52,46,50,56,50,53,53,57,44,51,48,46,54,56,53,51,51,52,93,44,91,45,56,52,46,51,56,48,55,48,53,44,51,48,46,54,56,57,57,57,51,93,44,91,45,56,52,46,56,54,51,52,54,53,44,51,48,46,55,49,49,52,57,52,93,44,91,45,56,52,46,56,54,52,54,57,51,44,51,48,46,55,49,49,53,52,50,93,44,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,68,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,50,55,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,56,51,49,52,53,44,51,52,46,56,54,48,51,55,49,93,44,91,45,56,53,46,53,51,52,48,56,57,44,51,52,46,54,50,51,56,53,56,93,44,91,45,56,53,46,52,53,48,52,48,57,44,51,52,46,55,53,57,50,52,49,93,44,91,45,56,53,46,52,53,48,53,54,49,44,51,52,46,56,51,49,54,55,55,93,44,91,45,56,53,46,51,54,51,57,49,57,44,51,52,46,57,56,51,51,55,53,93,44,91,45,56,53,46,52,55,52,48,55,51,44,51,52,46,57,56,51,48,50,93,44,91,45,56,53,46,54,48,53,49,54,53,44,51,52,46,57,56,52,54,55,56,93,44,91,45,56,53,46,53,56,51,49,52,53,44,51,52,46,56,54,48,51,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,68,101,83,111,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,49,51,50,44,34,98,101,100,115,34,58,53,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,48,52,53,51,50,44,51,52,46,56,54,48,53,56,56,93,44,91,45,57,48,46,50,48,50,49,50,54,44,51,52,46,56,54,48,51,55,52,93,44,91,45,57,48,46,50,48,48,49,57,57,44,51,52,46,55,50,52,52,49,56,93,44,91,45,57,48,46,48,50,57,49,52,52,44,51,52,46,55,48,56,49,55,54,93,44,91,45,56,57,46,57,48,56,53,56,55,44,51,52,46,55,55,50,54,52,49,93,44,91,45,56,57,46,55,50,51,52,52,50,44,51,52,46,55,55,50,51,49,49,93,44,91,45,56,57,46,55,50,52,51,50,52,44,51,52,46,57,57,52,55,57,93,44,91,45,57,48,46,51,48,57,50,56,57,44,51,52,46,57,57,53,54,57,52,93,44,91,45,57,48,46,50,52,54,49,49,54,44,51,52,46,57,52,52,51,49,54,93,44,91,45,57,48,46,51,48,52,53,51,50,44,51,52,46,56,54,48,53,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,52,57,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,49,52,48,56,44,51,57,46,48,48,55,57,57,52,93,44,91,45,55,56,46,51,48,48,52,49,52,44,51,56,46,57,52,51,53,57,50,93,44,91,45,55,56,46,51,57,52,55,48,52,44,51,56,46,56,50,50,55,57,93,44,91,45,55,56,46,50,56,52,56,48,53,44,51,56,46,55,53,57,51,49,53,93,44,91,45,55,56,46,49,51,48,53,55,52,44,51,56,46,56,54,52,56,54,53,93,44,91,45,55,56,46,48,48,52,51,49,51,44,51,56,46,57,55,57,52,51,56,93,44,91,45,55,56,46,49,53,49,54,49,52,44,51,57,46,48,51,54,54,50,57,93,44,91,45,55,56,46,51,49,52,48,56,44,51,57,46,48,48,55,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,69,100,119,97,114,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,52,55,56,48,51,44,51,56,46,53,54,57,48,51,55,93,44,91,45,56,56,46,49,53,48,56,57,49,44,51,56,46,50,53,54,49,53,54,93,44,91,45,56,55,46,57,57,48,54,50,56,44,51,56,46,50,53,57,54,50,57,93,44,91,45,56,55,46,57,52,51,48,51,52,44,51,56,46,52,52,57,50,49,54,93,44,91,45,56,55,46,57,53,52,54,55,53,44,51,56,46,53,55,48,50,51,93,44,91,45,56,56,46,49,52,55,56,48,51,44,51,56,46,53,54,57,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,54,56,50,44,34,98,101,100,115,34,58,57,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,49,54,49,56,49,44,51,53,46,55,57,55,51,48,55,93,44,91,45,56,57,46,48,54,57,53,52,52,44,51,53,46,54,57,50,54,55,57,93,44,91,45,56,57,46,48,55,56,56,55,54,44,51,53,46,52,51,49,52,50,56,93,44,91,45,56,56,46,56,52,49,54,48,55,44,51,53,46,52,50,55,56,50,54,93,44,91,45,56,56,46,54,55,53,56,54,55,44,51,53,46,52,56,57,49,54,51,93,44,91,45,56,56,46,54,49,51,54,49,49,44,51,53,46,53,56,56,48,56,57,93,44,91,45,56,56,46,54,48,54,56,54,50,44,51,53,46,55,56,57,51,53,52,93,44,91,45,56,56,46,55,48,54,56,49,49,44,51,53,46,55,57,49,48,55,53,93,44,91,45,56,56,46,57,49,54,49,56,49,44,51,53,46,55,57,55,51,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,55,52,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,52,51,52,56,50,44,51,51,46,52,57,53,56,56,53,93,44,91,45,56,53,46,54,53,51,54,53,52,44,51,51,46,49,48,54,54,51,52,93,44,91,45,56,53,46,53,57,51,49,55,55,44,51,51,46,49,48,55,51,52,93,44,91,45,56,53,46,50,51,50,51,55,56,44,51,51,46,49,48,56,48,55,55,93,44,91,45,56,53,46,50,51,54,53,49,56,44,51,51,46,49,50,57,53,53,57,93,44,91,45,56,53,46,50,57,51,56,48,53,44,51,51,46,52,50,56,48,57,56,93,44,91,45,56,53,46,51,48,52,52,51,57,44,51,51,46,52,56,50,56,56,52,93,44,91,45,56,53,46,54,52,51,52,56,50,44,51,51,46,52,57,53,56,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,115,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,56,54,44,34,98,101,100,115,34,58,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,55,55,52,57,44,51,54,46,53,56,56,49,51,55,93,44,91,45,56,49,46,55,50,56,55,56,49,44,51,54,46,51,57,49,51,48,57,93,44,91,45,56,49,46,52,55,55,53,49,54,44,51,54,46,50,52,48,50,53,93,44,91,45,56,49,46,50,53,51,54,52,57,44,51,54,46,51,54,54,54,48,49,93,44,91,45,56,49,46,51,53,51,50,53,57,44,51,54,46,53,55,52,54,57,50,93,44,91,45,56,49,46,54,55,55,52,57,44,51,54,46,53,56,56,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,68,111,108,111,114,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,56,54,48,56,52,53,44,51,55,46,55,55,53,53,49,55,93,44,91,45,49,48,55,46,57,56,57,50,48,56,44,51,55,46,56,53,54,54,52,93,44,91,45,49,48,56,46,50,48,57,48,57,51,44,51,55,46,56,50,48,57,51,54,93,44,91,45,49,48,56,46,50,53,54,52,57,56,44,51,55,46,56,57,52,54,48,55,93,44,91,45,49,48,56,46,56,49,54,55,49,44,51,55,46,56,57,53,53,51,56,93,44,91,45,49,48,57,46,48,52,49,57,57,50,44,51,55,46,56,56,49,48,56,51,93,44,91,45,49,48,57,46,48,52,51,51,54,54,44,51,55,46,52,56,52,56,49,56,93,44,91,45,49,48,56,46,57,49,55,48,56,49,44,51,55,46,54,51,49,57,48,50,93,44,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,44,91,45,49,48,55,46,56,54,48,56,52,53,44,51,55,46,55,55,53,53,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,76,105,99,107,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,50,57,51,44,34,98,101,100,115,34,58,50,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,54,49,56,50,55,44,52,48,46,49,50,53,56,53,53,93,44,91,45,56,50,46,55,56,50,52,57,53,44,51,57,46,57,51,57,54,54,50,93,44,91,45,56,50,46,52,54,50,56,49,51,44,51,57,46,57,51,48,51,56,93,44,91,45,56,50,46,50,51,51,57,55,52,44,51,57,46,57,49,51,50,54,93,44,91,45,56,50,46,49,57,56,55,55,50,44,51,57,46,57,53,48,49,52,93,44,91,45,56,50,46,49,56,55,49,48,53,44,52,48,46,49,54,54,56,56,93,44,91,45,56,50,46,49,57,53,57,49,49,44,52,48,46,50,51,57,48,55,49,93,44,91,45,56,50,46,52,55,55,50,55,51,44,52,48,46,50,52,53,56,49,93,44,91,45,56,50,46,55,53,48,55,52,55,44,52,48,46,50,55,54,57,57,54,93,44,91,45,56,50,46,55,54,49,56,50,55,44,52,48,46,49,50,53,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,56,51,34,44,34,78,65,77,69,34,58,34,77,97,110,97,115,115,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,52,53,55,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,55,53,55,54,44,51,56,46,55,56,49,49,55,49,93,44,91,45,55,55,46,52,57,57,52,51,44,51,56,46,55,51,55,49,51,55,93,44,91,45,55,55,46,52,53,49,54,52,50,44,51,56,46,55,51,56,51,51,55,93,44,91,45,55,55,46,52,53,56,54,57,53,44,51,56,46,55,55,50,51,49,57,93,44,91,45,55,55,46,52,55,53,55,54,44,51,56,46,55,56,49,49,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,55,51,50,44,34,98,101,100,115,34,58,49,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,55,56,52,54,57,44,51,51,46,51,55,55,50,56,93,44,91,45,57,50,46,57,56,56,55,48,55,44,51,51,46,48,49,55,52,51,51,93,44,91,45,57,50,46,55,50,52,55,52,44,51,51,46,48,49,52,51,57,93,44,91,45,57,50,46,48,54,57,49,48,53,44,51,51,46,48,48,56,49,54,51,93,44,91,45,57,50,46,49,51,55,53,50,55,44,51,51,46,49,54,50,57,53,54,93,44,91,45,57,50,46,51,53,48,52,51,50,44,51,51,46,50,57,56,57,52,49,93,44,91,45,57,50,46,52,52,49,54,55,55,44,51,51,46,50,55,51,54,52,55,93,44,91,45,57,50,46,53,54,55,49,53,54,44,51,51,46,51,54,55,50,93,44,91,45,57,50,46,57,55,56,52,54,57,44,51,51,46,51,55,55,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,72,101,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,52,56,57,56,57,44,52,49,46,48,55,48,50,53,93,44,91,45,57,48,46,57,54,50,57,49,54,44,52,48,46,57,50,52,57,53,55,93,44,91,45,57,49,46,48,57,54,57,52,54,44,52,48,46,56,49,49,52,48,51,93,44,91,45,57,49,46,49,49,50,52,54,55,44,52,48,46,54,57,54,51,48,49,93,44,91,45,57,49,46,49,56,53,50,57,53,44,52,48,46,54,51,55,56,48,51,93,44,91,45,57,48,46,57,48,52,50,49,54,44,52,48,46,54,51,57,50,48,49,93,44,91,45,57,48,46,55,56,57,54,53,50,44,52,48,46,54,51,53,55,53,93,44,91,45,57,48,46,55,56,53,49,57,52,44,52,49,46,48,54,56,55,52,57,93,44,91,45,57,48,46,57,52,56,57,56,57,44,52,49,46,48,55,48,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,57,52,49,44,34,98,101,100,115,34,58,49,50,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,57,54,55,55,52,44,51,50,46,51,52,52,52,51,55,93,44,91,45,56,54,46,52,48,56,55,55,49,44,51,50,46,50,52,52,51,48,57,93,44,91,45,56,54,46,52,48,54,50,55,54,44,51,50,46,48,53,48,55,51,49,93,44,91,45,56,54,46,51,48,50,50,49,55,44,51,49,46,57,54,53,48,54,53,93,44,91,45,56,54,46,49,57,49,51,55,57,44,51,49,46,57,54,54,52,53,51,93,44,91,45,56,53,46,57,57,53,53,54,51,44,51,49,46,57,54,55,53,53,52,93,44,91,45,56,53,46,57,57,54,56,53,51,44,51,50,46,48,53,49,48,52,57,93,44,91,45,56,53,46,57,57,57,49,53,55,44,51,50,46,50,53,48,53,52,51,93,44,91,45,56,53,46,57,49,57,50,57,51,44,51,50,46,50,55,52,51,56,50,93,44,91,45,56,54,46,48,50,51,48,49,50,44,51,50,46,52,49,57,57,55,56,93,44,91,45,56,54,46,49,49,54,51,50,57,44,51,50,46,52,49,55,48,50,54,93,44,91,45,56,54,46,50,51,55,48,54,56,44,51,50,46,52,57,52,57,56,93,44,91,45,56,54,46,52,49,49,49,55,50,44,51,50,46,52,48,57,57,51,55,93,44,91,45,56,54,46,52,57,54,55,55,52,44,51,50,46,51,52,52,52,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,114,97,112,97,104,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,54,54,55,49,44,34,98,101,100,115,34,58,49,50,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,52,56,55,52,44,51,57,46,53,54,54,48,56,56,93,44,91,45,49,48,52,46,54,54,48,54,50,54,44,51,57,46,53,54,53,57,48,57,93,44,91,45,49,48,51,46,55,49,52,51,53,53,44,51,57,46,53,54,54,51,51,49,93,44,91,45,49,48,51,46,55,48,55,48,55,50,44,51,57,46,53,54,54,50,57,53,93,44,91,45,49,48,51,46,55,48,54,53,52,55,44,51,57,46,55,51,57,56,57,52,93,44,91,45,49,48,52,46,56,56,52,54,52,54,44,51,57,46,55,52,48,49,53,54,93,44,91,45,49,48,53,46,48,53,51,52,49,49,44,51,57,46,54,51,49,53,56,54,93,44,91,45,49,48,53,46,48,53,51,52,53,55,44,51,57,46,54,50,57,53,50,54,93,44,91,45,49,48,53,46,48,53,51,51,51,44,51,57,46,54,50,55,57,56,57,93,44,91,45,49,48,53,46,48,53,51,52,51,57,44,51,57,46,54,50,52,51,56,55,93,44,91,45,49,48,53,46,48,53,51,52,51,55,44,51,57,46,54,50,48,57,56,52,93,44,91,45,49,48,53,46,48,52,56,55,52,44,51,57,46,53,54,54,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,51,50,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,51,48,49,55,50,44,51,55,46,54,51,49,50,55,93,44,91,45,56,53,46,50,53,55,50,57,56,44,51,55,46,54,51,48,57,48,51,93,44,91,45,56,53,46,52,48,49,55,56,52,44,51,55,46,55,51,48,54,53,56,93,44,91,45,56,53,46,53,50,49,50,57,44,51,55,46,53,53,52,51,52,51,93,44,91,45,56,53,46,52,54,54,50,53,44,51,55,46,52,54,53,53,57,53,93,44,91,45,56,53,46,51,52,49,50,50,44,51,55,46,52,54,57,52,53,56,93,44,91,45,56,53,46,50,52,54,55,53,57,44,51,55,46,52,50,48,50,48,53,93,44,91,45,56,53,46,49,54,57,53,54,53,44,51,55,46,52,54,52,48,48,52,93,44,91,45,56,53,46,48,55,51,55,55,50,44,51,55,46,52,49,51,54,54,57,93,44,91,45,56,53,46,48,51,57,54,55,52,44,51,55,46,53,52,53,50,51,50,93,44,91,45,56,53,46,48,51,48,49,55,50,44,51,55,46,54,51,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,83,107,97,103,105,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,57,48,55,44,34,98,101,100,115,34,58,50,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,55,51,53,50,51,49,44,52,56,46,52,48,53,57,51,50,93,44,91,45,49,50,50,46,53,57,49,57,52,52,44,52,56,46,52,49,55,55,53,56,93,44,91,45,49,50,50,46,52,53,56,53,57,54,44,52,56,46,50,57,55,55,48,51,93,44,91,45,49,50,49,46,48,48,49,54,53,56,44,52,56,46,50,57,54,48,48,57,93,44,91,45,49,50,49,46,48,54,50,52,53,44,52,56,46,52,54,48,51,54,55,93,44,91,45,49,50,48,46,56,53,55,52,50,55,44,52,56,46,53,52,55,54,55,54,93,44,91,45,49,50,48,46,55,48,50,48,54,57,44,52,56,46,53,51,49,53,56,57,93,44,91,45,49,50,48,46,55,53,49,57,48,52,44,52,56,46,54,53,55,48,48,50,93,44,91,45,49,50,49,46,50,54,49,54,51,56,44,52,56,46,54,52,48,57,49,50,93,44,91,45,49,50,50,46,55,49,51,55,48,52,44,52,56,46,54,52,53,49,51,93,44,91,45,49,50,50,46,55,54,52,52,48,52,44,52,56,46,54,48,48,53,55,55,93,44,91,45,49,50,50,46,55,51,53,50,51,49,44,52,56,46,52,48,53,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,53,52,44,34,98,101,100,115,34,58,50,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,52,51,51,53,53,44,51,49,46,56,50,52,53,54,53,93,44,91,45,56,57,46,51,49,54,53,54,44,51,49,46,56,48,50,48,57,93,44,91,45,56,57,46,52,48,49,50,50,55,44,51,49,46,55,57,54,56,54,51,93,44,91,45,56,57,46,51,57,57,49,55,56,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,49,52,54,48,57,50,44,51,49,46,52,51,52,48,53,50,93,44,91,45,56,56,46,57,52,51,52,54,56,44,51,49,46,52,51,51,52,53,56,93,44,91,45,56,56,46,57,52,51,51,53,53,44,51,49,46,56,50,52,53,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,57,53,52,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,56,53,56,48,57,44,52,51,46,54,52,49,48,52,57,93,44,91,45,56,57,46,55,50,55,55,56,56,44,52,51,46,53,54,57,52,55,56,93,44,91,45,56,57,46,53,57,57,51,53,55,44,52,51,46,53,53,56,48,52,49,93,44,91,45,56,57,46,54,48,48,55,51,44,52,51,46,51,56,48,54,54,54,93,44,91,45,56,57,46,55,50,48,52,54,51,44,52,51,46,50,57,51,48,56,52,93,44,91,45,56,57,46,48,48,57,49,51,57,44,52,51,46,50,56,52,56,51,93,44,91,45,56,57,46,48,48,54,56,52,56,44,52,51,46,54,51,51,48,52,53,93,44,91,45,56,57,46,50,52,53,52,51,55,44,52,51,46,54,52,51,48,56,51,93,44,91,45,56,57,46,53,57,57,53,52,55,44,52,51,46,54,52,50,54,51,54,93,44,91,45,56,57,46,55,56,52,57,48,49,44,52,51,46,54,52,49,48,53,49,93,44,91,45,56,57,46,55,56,53,56,48,57,44,52,51,46,54,52,49,48,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,114,117,110,115,119,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,56,54,48,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,54,50,51,53,44,51,52,46,51,53,55,48,48,55,93,44,91,45,55,56,46,50,53,52,54,50,50,44,51,52,46,50,49,54,51,48,53,93,44,91,45,55,56,46,51,55,52,50,57,53,44,51,52,46,50,48,52,56,57,51,93,44,91,45,55,56,46,53,53,53,48,52,51,44,51,52,46,48,54,55,48,55,49,93,44,91,45,55,56,46,54,53,48,51,49,52,44,51,51,46,57,52,52,51,52,50,93,44,91,45,55,56,46,52,57,57,51,48,49,44,51,51,46,56,49,50,56,53,50,93,44,91,45,55,56,46,50,54,50,51,51,53,44,51,51,46,56,54,51,49,54,51,93,44,91,45,55,56,46,48,54,54,53,56,49,44,51,51,46,56,52,55,57,56,53,93,44,91,45,55,55,46,57,54,52,48,53,50,44,51,51,46,55,53,50,56,57,57,93,44,91,45,55,55,46,56,57,55,48,49,49,44,51,51,46,55,56,54,56,93,44,91,45,55,55,46,57,52,56,52,55,57,44,51,51,46,57,55,49,50,55,52,93,44,91,45,55,55,46,57,53,54,54,48,53,44,51,52,46,50,51,52,52,57,49,93,44,91,45,55,56,46,48,50,57,57,50,50,44,51,52,46,51,51,49,55,54,56,93,44,91,45,55,56,46,49,54,50,51,53,44,51,52,46,51,53,55,48,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,108,101,97,114,119,97,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,49,50,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,56,50,49,53,53,44,52,55,46,57,51,51,57,54,54,93,44,91,45,57,53,46,53,53,52,50,52,56,44,52,55,46,52,57,57,56,57,51,93,44,91,45,57,53,46,53,53,49,49,56,54,44,52,55,46,49,53,49,52,53,51,93,44,91,45,57,53,46,49,54,57,49,55,50,44,52,55,46,49,53,50,53,49,53,93,44,91,45,57,53,46,49,56,51,50,49,54,44,52,55,46,52,49,50,55,55,51,93,44,91,45,57,53,46,49,57,51,55,48,53,44,52,55,46,56,55,50,53,52,52,93,44,91,45,57,53,46,50,55,55,56,51,52,44,52,55,46,57,50,53,51,52,54,93,44,91,45,57,53,46,50,50,57,49,51,51,44,52,56,46,48,49,57,57,53,56,93,44,91,45,57,53,46,53,56,50,56,56,55,44,52,56,46,48,50,48,53,53,55,93,44,91,45,57,53,46,53,56,50,49,53,53,44,52,55,46,57,51,51,57,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,49,52,48,56,51,53,44,51,55,46,53,52,50,50,50,93,44,91,45,55,54,46,49,51,54,51,48,49,44,51,55,46,50,56,50,49,51,55,93,44,91,45,55,54,46,49,51,53,53,50,44,51,55,46,49,57,49,57,55,93,44,91,45,55,54,46,49,51,52,57,52,49,44,51,55,46,49,49,55,54,48,51,93,44,91,45,55,54,46,49,51,51,56,55,50,44,51,55,46,48,52,48,56,56,54,93,44,91,45,55,53,46,57,48,57,52,57,49,44,51,54,46,57,57,48,55,48,56,93,44,91,45,55,53,46,56,56,57,54,55,54,44,51,55,46,48,53,52,53,49,53,93,44,91,45,55,53,46,55,52,52,54,51,57,44,51,55,46,49,56,50,51,52,57,93,44,91,45,55,53,46,55,49,53,53,49,53,44,51,55,46,50,55,53,54,56,55,93,44,91,45,55,53,46,53,57,55,52,52,49,44,51,55,46,52,53,48,57,56,56,93,44,91,45,55,53,46,55,56,55,48,51,44,51,55,46,52,54,52,53,55,56,93,44,91,45,55,53,46,56,51,53,50,49,52,44,51,55,46,53,53,52,50,52,53,93,44,91,45,55,54,46,49,52,48,56,51,53,44,51,55,46,53,52,50,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,82,111,111,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,48,50,49,55,54,44,51,57,46,53,54,55,51,50,56,93,44,91,45,57,57,46,54,48,53,49,56,55,44,51,57,46,49,51,50,52,56,49,93,44,91,45,57,57,46,53,57,49,55,55,54,44,51,57,46,49,51,50,51,53,55,93,44,91,45,57,57,46,48,52,55,54,56,55,44,51,57,46,49,51,51,48,49,52,93,44,91,45,57,57,46,48,52,52,51,57,56,44,51,57,46,53,54,56,48,51,53,93,44,91,45,57,57,46,48,54,54,50,50,44,51,57,46,53,54,56,49,50,53,93,44,91,45,57,57,46,54,48,50,49,55,54,44,51,57,46,53,54,55,51,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,48,49,53,56,52,44,51,57,46,55,56,55,53,55,57,93,44,91,45,56,53,46,50,57,56,49,49,44,51,57,46,53,50,53,52,55,54,93,44,91,45,56,53,46,48,51,54,48,56,55,44,51,57,46,53,50,54,50,49,51,93,44,91,45,56,53,46,48,51,52,53,55,53,44,51,57,46,55,49,52,55,54,52,93,44,91,45,56,53,46,49,56,53,48,56,57,44,51,57,46,55,49,53,53,49,53,93,44,91,45,56,53,46,50,50,49,49,49,56,44,51,57,46,55,56,56,52,52,57,93,44,91,45,56,53,46,51,48,49,53,56,52,44,51,57,46,55,56,55,53,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,72,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,51,52,51,44,34,98,101,100,115,34,58,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,50,49,57,55,53,44,52,49,46,48,52,54,54,55,52,93,44,91,45,57,56,46,55,50,49,52,51,44,52,48,46,54,57,56,57,48,51,93,44,91,45,57,56,46,50,56,50,56,53,49,44,52,48,46,54,57,56,50,56,52,93,44,91,45,57,56,46,50,56,50,53,55,56,44,52,48,46,56,54,56,54,55,55,93,44,91,45,57,56,46,50,56,55,49,54,56,44,52,49,46,48,52,54,51,54,51,93,44,91,45,57,56,46,55,50,49,57,55,53,44,52,49,46,48,52,54,54,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,55,56,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,56,50,53,55,56,44,52,48,46,56,54,56,54,55,55,93,44,91,45,57,56,46,50,56,50,56,53,49,44,52,48,46,54,57,56,50,56,52,93,44,91,45,57,56,46,50,55,56,49,48,51,44,52,48,46,54,57,56,50,57,49,93,44,91,45,57,55,46,56,50,53,55,50,51,44,52,48,46,54,57,56,53,53,53,93,44,91,45,57,55,46,56,50,54,50,56,55,44,52,49,46,48,52,54,53,56,49,93,44,91,45,57,55,46,56,50,56,50,53,54,44,52,49,46,49,55,51,52,51,57,93,44,91,45,57,56,46,48,49,48,53,52,56,44,52,49,46,48,55,50,55,54,49,93,44,91,45,57,56,46,50,56,50,53,55,56,44,52,48,46,56,54,56,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,76,111,117,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,51,52,54,50,57,44,52,50,46,48,56,55,57,57,53,93,44,91,45,57,57,46,54,54,50,51,55,57,44,52,50,46,48,56,54,48,48,57,93,44,91,45,57,57,46,54,56,54,57,53,57,44,52,50,46,48,56,54,48,55,53,93,44,91,45,57,57,46,54,56,54,56,51,52,44,52,49,46,55,52,48,51,50,54,93,44,91,45,57,57,46,50,50,49,56,51,44,52,49,46,55,52,48,55,57,50,93,44,91,45,57,57,46,50,50,50,55,51,51,44,52,50,46,48,56,55,57,49,54,93,44,91,45,57,57,46,50,51,52,54,50,57,44,52,50,46,48,56,55,57,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,83,104,101,114,105,100,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,52,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,53,55,54,52,50,44,52,56,46,57,57,57,48,49,50,93,44,91,45,49,48,53,46,48,51,56,53,52,56,44,52,56,46,54,53,48,48,57,57,93,44,91,45,49,48,52,46,57,55,51,51,53,52,44,52,56,46,53,54,51,49,57,93,44,91,45,49,48,52,46,55,53,55,54,49,57,44,52,56,46,53,54,51,49,50,55,93,44,91,45,49,48,52,46,54,50,55,55,50,54,44,52,56,46,52,55,54,51,52,57,93,44,91,45,49,48,52,46,54,50,55,55,54,44,52,56,46,51,56,57,51,54,50,93,44,91,45,49,48,52,46,48,52,54,55,54,54,44,52,56,46,51,56,57,50,57,56,93,44,91,45,49,48,52,46,48,52,55,57,50,52,44,52,56,46,54,51,51,57,49,49,93,44,91,45,49,48,52,46,48,52,56,54,56,57,44,52,56,46,57,57,57,53,57,51,93,44,91,45,49,48,53,46,48,53,55,54,52,50,44,52,56,46,57,57,57,48,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,70,114,111,110,116,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,55,55,56,51,51,44,52,48,46,55,48,48,49,51,53,93,44,91,45,49,48,48,46,55,55,55,51,55,54,44,52,48,46,51,52,57,52,54,54,93,44,91,45,49,48,48,46,55,53,56,52,51,53,44,52,48,46,51,52,57,53,48,55,93,44,91,45,49,48,48,46,49,57,55,56,48,55,44,52,48,46,51,53,48,48,50,55,93,44,91,45,49,48,48,46,48,57,52,55,57,56,44,52,48,46,51,53,49,50,52,53,93,44,91,45,57,57,46,57,56,49,49,57,51,44,52,48,46,52,51,56,50,57,49,93,44,91,45,57,57,46,57,56,49,55,52,51,44,52,48,46,55,48,48,48,48,51,93,44,91,45,49,48,48,46,50,50,51,51,49,49,44,52,48,46,55,48,48,50,53,52,93,44,91,45,49,48,48,46,55,55,55,56,51,51,44,52,48,46,55,48,48,49,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,76,117,113,117,105,108,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,52,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,55,49,51,56,50,53,44,49,56,46,52,52,52,48,50,52,93,44,91,45,54,53,46,55,53,56,56,54,49,44,49,56,46,50,57,48,54,48,52,93,44,91,45,54,53,46,55,53,51,53,57,49,44,49,56,46,50,57,54,55,53,53,93,44,91,45,54,53,46,54,56,53,57,50,44,49,56,46,51,50,57,57,57,49,93,44,91,45,54,53,46,54,52,54,48,56,51,44,49,56,46,52,52,50,50,50,93,44,91,45,54,53,46,55,49,51,56,50,53,44,49,56,46,52,52,52,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,105,98,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,50,55,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,54,53,55,51,56,44,51,51,46,50,52,54,57,48,55,93,44,91,45,56,55,46,50,56,49,57,52,53,44,51,51,46,49,51,51,48,54,93,44,91,45,56,55,46,51,49,56,53,51,57,44,51,51,46,48,48,54,49,55,57,93,44,91,45,56,55,46,52,50,49,57,51,54,44,51,51,46,48,48,51,51,55,57,93,44,91,45,56,55,46,52,50,49,50,44,51,50,46,56,55,52,53,48,56,93,44,91,45,56,55,46,51,49,57,49,56,52,44,51,50,46,56,51,49,53,50,50,93,44,91,45,56,55,46,48,49,57,49,53,55,44,51,50,46,56,51,55,48,51,52,93,44,91,45,56,54,46,56,55,54,49,49,56,44,51,50,46,56,51,54,50,54,52,93,44,91,45,56,54,46,56,56,49,49,56,50,44,51,51,46,48,52,57,57,48,49,93,44,91,45,56,55,46,48,50,53,53,57,54,44,51,51,46,49,54,53,55,57,53,93,44,91,45,56,55,46,48,50,54,56,52,54,44,51,51,46,50,52,54,52,53,57,93,44,91,45,56,55,46,48,54,53,55,51,56,44,51,51,46,50,52,54,57,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,97,117,100,101,114,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,51,50,51,44,34,98,101,100,115,34,58,57,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,49,52,53,49,54,44,51,50,46,53,55,54,57,53,53,93,44,91,45,56,56,46,57,49,51,56,52,55,44,51,50,46,50,50,52,49,56,54,93,44,91,45,56,56,46,52,51,49,51,55,57,44,51,50,46,50,50,55,54,54,54,93,44,91,45,56,56,46,52,50,49,52,53,51,44,51,50,46,51,48,56,54,56,93,44,91,45,56,56,46,51,56,56,55,57,55,44,51,50,46,53,55,56,49,50,51,93,44,91,45,56,56,46,57,49,52,53,49,54,44,51,50,46,53,55,54,57,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,105,103,32,83,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,49,54,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,51,53,52,53,49,44,52,53,46,53,56,54,49,50,57,93,44,91,45,57,54,46,54,56,48,52,53,52,44,52,53,46,52,49,48,52,57,57,93,44,91,45,57,54,46,52,55,48,52,55,53,44,52,53,46,51,50,54,53,52,53,93,44,91,45,57,54,46,52,53,50,57,52,55,44,52,53,46,50,54,56,57,50,53,93,44,91,45,57,54,46,50,56,51,49,57,53,44,52,53,46,50,52,54,51,57,49,93,44,91,45,57,54,46,49,48,51,54,49,52,44,52,53,46,49,55,54,54,55,53,93,44,91,45,57,54,46,49,49,55,48,51,54,44,52,53,46,52,49,49,57,57,51,93,44,91,45,57,54,46,50,52,49,51,50,56,44,52,53,46,52,49,50,54,54,55,93,44,91,45,57,54,46,50,53,51,48,50,54,44,52,53,46,53,56,53,53,50,54,93,44,91,45,57,54,46,56,51,53,52,53,49,44,52,53,46,53,56,54,49,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,108,117,101,32,69,97,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,51,50,50,44,34,98,101,100,115,34,58,50,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,51,55,49,55,51,49,44,52,52,46,50,54,52,52,52,56,93,44,91,45,57,52,46,51,54,56,56,53,44,52,52,46,49,48,56,54,57,56,93,44,91,45,57,52,46,51,54,56,57,55,52,44,52,51,46,56,52,56,48,52,55,93,44,91,45,57,52,46,50,52,55,49,50,51,44,52,51,46,56,52,55,57,52,54,93,44,91,45,57,51,46,55,54,55,55,54,49,44,52,51,46,56,52,55,57,53,54,93,44,91,45,57,51,46,55,54,55,57,55,49,44,52,52,46,49,57,53,56,51,54,93,44,91,45,57,52,46,48,49,49,56,54,56,44,52,52,46,50,51,57,53,50,93,44,91,45,57,52,46,48,53,54,55,53,55,44,52,52,46,49,53,52,54,49,55,93,44,91,45,57,52,46,51,55,49,55,51,49,44,52,52,46,50,54,52,52,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,105,103,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,55,57,53,57,50,49,44,51,56,46,50,54,53,53,53,50,93,44,91,45,55,57,46,53,49,50,49,53,56,44,51,56,46,49,56,48,52,49,57,93,44,91,45,55,57,46,52,51,51,54,55,44,51,56,46,50,50,57,52,57,51,93,44,91,45,55,57,46,51,49,50,50,55,54,44,51,56,46,52,49,49,56,55,54,93,44,91,45,55,57,46,52,55,54,54,51,56,44,51,56,46,52,53,55,50,50,56,93,44,91,45,55,57,46,53,51,54,56,55,44,51,56,46,53,53,48,57,49,55,93,44,91,45,55,57,46,54,52,57,48,55,53,44,51,56,46,53,57,49,53,49,53,93,44,91,45,55,57,46,54,56,57,54,54,55,44,51,56,46,52,51,49,52,54,50,93,44,91,45,55,57,46,55,57,53,57,50,49,44,51,56,46,50,54,53,53,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,83,112,111,116,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,52,49,50,44,34,98,101,100,115,34,58,49,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,55,48,50,56,52,51,44,51,56,46,51,54,48,56,52,93,44,91,45,55,55,46,57,53,51,54,51,57,44,51,56,46,49,49,56,53,48,49,93,44,91,45,55,55,46,56,51,57,55,49,55,44,51,56,46,49,48,54,48,51,56,93,44,91,45,55,55,46,54,56,55,52,54,57,44,51,56,46,48,48,55,56,48,54,93,44,91,45,55,55,46,54,52,50,53,49,56,44,51,55,46,57,57,48,54,56,56,93,44,91,45,55,55,46,51,55,48,50,57,55,44,51,56,46,50,52,54,53,55,54,93,44,91,45,55,55,46,52,52,55,49,50,54,44,51,56,46,50,56,52,54,49,52,93,44,91,45,55,55,46,53,51,48,50,56,51,44,51,56,46,51,48,57,49,55,53,93,44,91,45,55,55,46,54,49,56,55,50,55,44,51,56,46,51,54,55,56,51,53,93,44,91,45,55,55,46,55,48,50,56,52,51,44,51,56,46,51,54,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,83,116,114,97,102,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,50,51,55,44,34,98,101,100,115,34,58,50,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,49,54,50,54,55,53,44,52,51,46,53,51,56,57,53,57,93,44,91,45,55,49,46,49,53,57,51,54,52,44,52,51,46,51,53,53,49,50,51,93,44,91,45,55,49,46,50,51,54,48,49,49,44,52,51,46,50,56,52,57,57,52,93,44,91,45,55,49,46,50,52,55,51,51,54,44,52,51,46,50,55,53,50,51,50,93,44,91,45,55,49,46,48,50,54,54,56,54,44,52,51,46,49,51,55,57,52,55,93,44,91,45,55,48,46,56,55,53,52,51,54,44,52,51,46,48,56,48,52,50,50,93,44,91,45,55,48,46,56,50,48,48,49,57,44,52,51,46,49,50,50,53,52,53,93,44,91,45,55,48,46,56,49,56,49,57,53,44,52,51,46,50,51,56,51,51,93,44,91,45,55,48,46,57,55,56,49,49,53,44,52,51,46,51,53,56,57,49,52,93,44,91,45,55,48,46,57,54,50,49,53,52,44,52,51,46,53,52,49,48,56,55,93,44,91,45,55,49,46,49,54,50,54,55,53,44,52,51,46,53,51,56,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,72,111,117,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,54,56,50,44,34,98,101,100,115,34,58,50,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,48,49,48,57,44,51,50,46,54,57,49,53,57,56,93,44,91,45,56,51,46,55,49,57,56,53,57,44,51,50,46,53,51,49,55,54,93,44,91,45,56,51,46,56,52,54,54,55,54,44,51,50,46,52,54,56,53,49,52,93,44,91,45,56,51,46,56,52,56,51,55,57,44,51,50,46,50,57,48,57,55,93,44,91,45,56,51,46,54,49,53,53,55,57,44,51,50,46,50,56,56,53,53,54,93,44,91,45,56,51,46,52,57,56,48,51,57,44,51,50,46,52,48,49,55,49,53,93,44,91,45,56,51,46,52,57,55,57,50,51,44,51,50,46,52,53,50,49,57,56,93,44,91,45,56,51,46,53,57,55,54,53,54,44,51,50,46,54,54,52,51,51,56,93,44,91,45,56,51,46,55,48,49,49,53,50,44,51,50,46,54,57,50,49,54,57,93,44,91,45,56,51,46,55,48,49,48,57,44,51,50,46,54,57,49,53,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,108,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,49,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,54,55,56,52,57,44,52,53,46,57,56,53,51,50,49,93,44,91,45,56,55,46,51,50,53,51,57,49,44,52,53,46,56,57,56,54,54,53,93,44,91,45,56,55,46,51,50,55,53,48,50,44,52,53,46,53,53,49,50,53,93,44,91,45,56,55,46,49,50,57,49,49,56,44,52,53,46,53,53,48,52,56,53,93,44,91,45,56,55,46,49,50,55,56,50,54,44,52,53,46,52,48,57,52,56,55,93,44,91,45,56,55,46,49,48,49,49,51,51,44,52,53,46,52,52,52,50,51,93,44,91,45,56,54,46,55,53,52,50,51,54,44,52,53,46,52,52,51,54,49,93,44,91,45,56,54,46,52,54,52,49,50,44,52,53,46,51,50,52,56,49,93,44,91,45,56,54,46,52,54,48,55,57,55,44,52,53,46,53,56,52,52,51,51,93,44,91,45,56,54,46,52,53,57,49,49,52,44,52,53,46,56,57,54,51,54,51,93,44,91,45,56,54,46,52,57,48,49,52,50,44,52,54,46,49,53,56,49,55,56,93,44,91,45,56,54,46,54,49,53,54,48,49,44,52,54,46,49,53,56,54,57,49,93,44,91,45,56,55,46,49,49,54,49,51,56,44,52,54,46,49,53,57,48,53,93,44,91,45,56,55,46,50,52,49,53,48,54,44,52,54,46,49,53,57,49,48,51,93,44,91,45,56,55,46,50,52,50,56,56,53,44,52,53,46,57,56,53,49,49,55,93,44,91,45,56,55,46,51,54,55,56,52,57,44,52,53,46,57,56,53,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,83,101,98,97,115,116,105,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,52,54,49,44,34,98,101,100,115,34,58,49,48,55,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,51,53,53,57,44,51,53,46,51,56,54,49,50,50,93,44,91,45,57,52,46,52,52,55,55,55,52,44,51,52,46,57,51,51,57,51,55,93,44,91,45,57,52,46,50,51,48,53,50,52,44,51,52,46,57,54,56,53,50,55,93,44,91,45,57,52,46,50,50,56,50,50,54,44,51,53,46,48,55,49,57,53,53,93,44,91,45,57,52,46,49,52,48,53,55,49,44,51,53,46,48,57,57,54,55,56,93,44,91,45,57,52,46,48,51,49,50,51,54,44,51,53,46,49,52,48,57,48,56,93,44,91,45,57,52,46,48,50,56,56,56,54,44,51,53,46,50,49,51,56,52,49,93,44,91,45,57,52,46,48,56,50,55,57,56,44,51,53,46,50,49,53,57,49,51,93,44,91,45,57,52,46,48,55,52,56,57,53,44,51,53,46,52,52,53,52,48,51,93,44,91,45,57,52,46,50,56,57,51,51,50,44,51,53,46,51,52,53,50,49,49,93,44,91,45,57,52,46,52,51,49,48,52,53,44,51,53,46,51,57,51,55,51,53,93,44,91,45,57,52,46,52,51,53,53,57,44,51,53,46,51,56,54,49,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,67,114,117,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,51,55,54,53,44,34,98,101,100,115,34,58,51,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,49,53,50,50,55,56,44,51,55,46,50,56,54,48,53,53,93,44,91,45,49,50,50,46,49,53,50,55,55,52,44,51,55,46,50,49,53,52,52,52,93,44,91,45,49,50,50,46,51,49,55,54,56,50,44,51,55,46,49,56,54,57,52,53,93,44,91,45,49,50,50,46,51,49,51,56,57,57,44,51,55,46,48,53,52,55,54,52,93,44,91,45,49,50,50,46,50,53,49,48,56,50,44,51,54,46,57,56,53,56,51,51,93,44,91,45,49,50,50,46,48,55,54,51,57,57,44,51,54,46,57,49,48,49,57,57,93,44,91,45,49,50,50,46,48,53,49,56,55,56,44,51,54,46,56,49,57,54,93,44,91,45,49,50,49,46,54,52,52,48,48,49,44,51,54,46,56,57,51,57,57,54,93,44,91,45,49,50,49,46,53,56,49,51,53,52,44,51,54,46,56,57,57,49,53,50,93,44,91,45,49,50,49,46,55,53,55,54,44,51,55,46,48,52,57,54,51,93,44,91,45,49,50,50,46,48,50,54,49,48,55,44,51,55,46,49,54,54,56,49,93,44,91,45,49,50,50,46,49,53,50,50,55,56,44,51,55,46,50,56,54,48,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,77,99,73,110,116,111,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,50,52,50,57,44,51,49,46,52,53,50,57,56,50,93,44,91,45,56,49,46,52,51,53,56,55,52,44,51,49,46,51,49,51,50,54,51,93,44,91,45,56,49,46,49,56,51,55,49,54,44,51,49,46,50,57,52,50,56,51,93,44,91,45,56,49,46,49,57,48,55,53,56,44,51,49,46,51,57,57,56,55,54,93,44,91,45,56,49,46,48,57,53,51,56,51,44,51,49,46,53,50,48,57,56,49,93,44,91,45,56,49,46,49,55,53,49,52,56,44,51,49,46,53,51,57,54,54,93,44,91,45,56,49,46,50,54,49,56,54,56,44,51,49,46,54,53,48,49,52,50,93,44,91,45,56,49,46,52,51,53,55,54,44,51,49,46,54,52,50,48,53,53,93,44,91,45,56,49,46,52,57,49,55,57,56,44,51,49,46,54,57,57,53,55,53,93,44,91,45,56,49,46,53,54,54,48,48,57,44,51,49,46,53,55,54,52,54,55,93,44,91,45,56,49,46,54,54,51,50,48,54,44,51,49,46,53,51,56,54,54,55,93,44,91,45,56,49,46,54,50,52,50,57,44,51,49,46,52,53,50,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,55,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,48,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,52,49,52,57,56,44,51,51,46,50,48,50,54,50,57,93,44,91,45,56,52,46,48,52,52,49,49,51,44,51,50,46,57,52,55,56,55,52,93,44,91,45,56,52,46,49,50,51,51,52,44,51,50,46,57,51,50,49,56,52,93,44,91,45,56,52,46,49,50,52,50,55,53,44,51,50,46,56,52,57,53,54,50,93,44,91,45,56,51,46,56,57,49,57,50,50,44,51,50,46,56,52,56,51,53,49,93,44,91,45,56,51,46,55,49,48,54,56,53,44,51,50,46,57,53,50,55,57,50,93,44,91,45,56,51,46,56,49,54,48,52,56,44,51,51,46,49,51,49,56,49,54,93,44,91,45,56,51,46,56,50,50,50,54,49,44,51,51,46,49,56,48,50,51,56,93,44,91,45,56,52,46,48,52,49,52,57,56,44,51,51,46,50,48,50,54,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,68,117,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,52,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,50,48,55,51,50,44,51,54,46,52,57,55,56,53,57,93,44,91,45,57,48,46,48,54,51,53,57,52,44,51,54,46,51,56,52,50,51,53,93,44,91,45,57,48,46,49,50,53,52,56,55,44,51,54,46,50,51,49,50,51,50,93,44,91,45,57,48,46,49,57,48,50,48,55,44,51,54,46,50,48,49,51,54,49,93,44,91,45,57,48,46,51,55,55,56,57,44,51,53,46,57,57,53,54,56,51,93,44,91,45,57,48,46,50,56,56,57,52,55,44,51,53,46,57,57,54,52,49,93,44,91,45,56,57,46,57,53,57,51,55,54,44,51,53,46,57,57,57,49,51,49,93,44,91,45,56,57,46,57,54,49,51,49,44,51,54,46,51,56,56,56,48,51,93,44,91,45,56,57,46,57,53,56,55,56,54,44,51,54,46,54,50,57,51,51,49,93,44,91,45,57,48,46,49,52,56,51,57,56,44,51,54,46,54,51,48,54,53,54,93,44,91,45,57,48,46,50,50,48,55,51,50,44,51,54,46,52,57,55,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,56,51,34,44,34,78,65,77,69,34,58,34,87,104,101,101,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,56,50,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,52,48,49,53,56,44,51,53,46,54,49,57,50,57,54,93,44,91,45,49,48,48,46,53,51,56,57,55,56,44,51,53,46,49,56,51,49,52,52,93,44,91,45,49,48,48,46,48,48,48,51,56,53,44,51,53,46,49,56,50,55,48,50,93,44,91,45,57,57,46,57,57,57,54,54,44,51,53,46,52,50,50,51,54,52,93,44,91,45,49,48,48,46,48,48,48,51,57,50,44,51,53,46,54,49,57,49,49,53,93,44,91,45,49,48,48,46,53,52,48,49,53,56,44,51,53,46,54,49,57,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,70,111,114,115,121,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,56,56,48,44,34,98,101,100,115,34,58,51,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,53,56,48,55,53,44,51,52,46,51,51,53,49,53,54,93,44,91,45,56,52,46,50,53,56,55,52,51,44,51,52,46,49,56,53,57,48,57,93,44,91,45,56,52,46,50,53,56,57,51,52,44,51,52,46,49,48,57,53,51,57,93,44,91,45,56,52,46,48,57,55,54,57,51,44,51,52,46,48,53,48,55,48,56,93,44,91,45,56,52,46,48,54,50,56,52,49,44,51,52,46,49,54,55,56,55,51,93,44,91,45,56,51,46,57,50,55,50,56,52,44,51,52,46,50,55,57,51,57,57,93,44,91,45,56,51,46,57,53,55,48,55,55,44,51,52,46,51,51,52,48,49,49,93,44,91,45,56,52,46,50,53,56,48,55,53,44,51,52,46,51,51,53,49,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,48,57,34,44,34,78,65,77,69,34,58,34,83,97,110,32,80,97,116,114,105,99,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,48,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,57,56,53,49,55,44,50,55,46,57,57,53,54,53,57,93,44,91,45,57,55,46,53,56,57,52,55,51,44,50,55,46,56,53,54,49,48,49,93,44,91,45,57,55,46,51,51,55,54,55,55,44,50,55,46,56,56,51,49,54,53,93,44,91,45,57,55,46,49,56,53,53,55,57,44,50,55,46,56,51,48,50,55,50,93,44,91,45,57,55,46,49,51,54,51,49,50,44,50,55,46,57,48,52,51,57,93,44,91,45,57,55,46,50,54,48,56,49,56,44,50,56,46,48,55,53,55,53,57,93,44,91,45,57,55,46,51,49,57,49,57,57,44,50,56,46,49,50,53,57,53,56,93,44,91,45,57,55,46,53,52,49,48,55,49,44,50,56,46,49,54,52,54,54,57,93,44,91,45,57,55,46,53,54,55,54,50,50,44,50,56,46,49,50,57,54,56,51,93,44,91,45,57,55,46,56,49,55,55,49,54,44,50,56,46,49,55,54,56,52,56,93,44,91,45,57,55,46,56,56,51,49,52,56,44,50,56,46,48,53,54,57,93,44,91,45,57,55,46,55,57,56,53,49,55,44,50,55,46,57,57,53,54,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,87,97,108,116,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,54,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,54,48,51,57,49,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,50,53,57,53,53,53,44,51,49,46,48,48,48,54,55,57,93,44,91,45,56,57,46,56,51,53,57,48,56,44,51,49,46,48,48,50,48,52,55,93,44,91,45,56,57,46,56,51,53,56,55,51,44,51,49,46,48,55,52,57,50,54,93,44,91,45,57,48,46,48,51,49,56,57,54,44,51,49,46,49,55,53,55,50,55,93,44,91,45,57,48,46,48,52,48,52,54,54,44,51,49,46,51,51,54,48,49,52,93,44,91,45,57,48,46,50,52,51,56,57,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,50,54,48,51,57,49,44,51,49,46,51,53,48,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,52,54,55,52,51,44,51,57,46,54,53,56,53,49,51,93,44,91,45,57,50,46,49,56,52,57,56,54,44,51,57,46,54,54,50,57,51,50,93,44,91,45,57,50,46,50,57,57,51,49,54,44,51,57,46,54,48,53,51,52,52,93,44,91,45,57,50,46,51,48,48,56,55,49,44,51,57,46,54,48,53,51,52,56,93,44,91,45,57,50,46,51,49,48,48,50,56,44,51,57,46,51,52,55,55,57,53,93,44,91,45,57,49,46,55,49,55,57,54,56,44,51,57,46,51,51,57,49,50,50,93,44,91,45,57,49,46,55,49,53,50,52,55,44,51,57,46,54,53,55,54,52,52,93,44,91,45,57,49,46,56,52,54,55,52,51,44,51,57,46,54,53,56,53,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,73,115,97,98,101,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,55,55,53,44,34,98,101,100,115,34,58,49,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,44,91,45,56,53,46,48,56,56,56,49,49,44,52,51,46,56,49,51,54,55,54,93,44,91,45,56,53,46,48,56,52,57,57,54,44,52,51,46,52,54,54,49,57,93,44,91,45,56,52,46,56,52,53,57,54,50,44,52,51,46,52,54,54,49,53,56,93,44,91,45,56,52,46,54,48,55,53,52,44,52,51,46,52,54,54,48,48,54,93,44,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,52,49,34,44,34,78,65,77,69,34,58,34,77,111,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,44,91,45,49,48,50,46,49,54,51,48,49,53,44,51,54,46,48,53,53,50,52,57,93,44,91,45,49,48,50,46,49,54,50,56,48,57,44,51,53,46,54,50,55,53,49,53,93,44,91,45,49,48,50,46,49,54,50,55,53,50,44,51,53,46,54,50,48,48,51,53,93,44,91,45,49,48,49,46,54,50,50,56,44,51,53,46,54,50,48,49,57,54,93,44,91,45,49,48,49,46,54,50,50,56,51,49,44,51,53,46,54,50,52,48,53,55,93,44,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,52,50,56,53,52,44,51,51,46,55,48,55,49,51,49,93,44,91,45,56,48,46,57,54,53,52,56,57,44,51,51,46,54,50,53,50,56,50,93,44,91,45,56,48,46,56,48,55,54,51,49,44,51,51,46,54,48,52,48,56,49,93,44,91,45,56,48,46,54,53,57,48,50,44,51,51,46,52,55,48,57,56,50,93,44,91,45,56,48,46,52,57,54,50,55,51,44,51,51,46,53,53,56,52,56,49,93,44,91,45,56,48,46,53,51,52,48,56,53,44,51,51,46,54,52,51,57,49,49,93,44,91,45,56,48,46,54,50,48,49,48,55,44,51,51,46,55,52,51,50,51,55,93,44,91,45,56,48,46,56,48,55,53,57,49,44,51,51,46,55,55,52,50,49,49,93,44,91,45,56,49,46,48,49,50,51,51,44,51,51,46,56,56,48,48,56,93,44,91,45,56,49,46,48,52,50,56,53,52,44,51,51,46,55,48,55,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,83,117,98,108,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,53,55,56,54,53,54,44,52,51,46,50,51,53,50,50,52,93,44,91,45,49,49,48,46,53,57,48,49,51,49,44,52,50,46,52,52,56,52,51,53,93,44,91,45,49,49,48,46,53,52,49,54,51,52,44,52,50,46,50,55,55,52,57,49,93,44,91,45,49,49,48,46,48,53,51,55,48,56,44,52,50,46,50,55,48,55,52,52,93,44,91,45,49,48,57,46,48,52,51,56,54,52,44,52,50,46,50,54,51,54,56,52,93,44,91,45,49,48,57,46,48,55,50,56,53,49,44,52,50,46,54,57,51,53,49,52,93,44,91,45,49,48,57,46,50,49,52,54,48,50,44,52,50,46,55,54,49,55,57,53,93,44,91,45,49,48,57,46,51,55,48,54,53,56,44,52,50,46,57,52,53,55,50,56,93,44,91,45,49,48,57,46,53,53,50,53,55,57,44,52,51,46,48,49,50,53,51,56,93,44,91,45,49,48,57,46,54,57,50,55,49,54,44,52,51,46,50,54,53,48,51,93,44,91,45,49,48,57,46,55,53,52,55,49,55,44,52,51,46,52,54,51,50,93,44,91,45,49,49,48,46,48,53,49,53,55,44,52,51,46,52,54,52,55,56,51,93,44,91,45,49,49,48,46,48,53,55,51,49,44,52,51,46,51,55,55,55,54,56,93,44,91,45,49,49,48,46,51,52,52,50,49,56,44,52,51,46,51,55,55,57,49,56,93,44,91,45,49,49,48,46,51,52,51,57,53,57,44,52,51,46,50,57,49,49,54,53,93,44,91,45,49,49,48,46,53,55,56,51,56,44,52,51,46,50,57,49,54,52,93,44,91,45,49,49,48,46,53,55,56,54,53,54,44,52,51,46,50,51,53,50,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,70,108,101,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,55,57,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,52,49,56,53,50,44,51,56,46,53,50,53,51,56,49,93,44,91,45,56,51,46,56,53,57,50,56,44,51,56,46,52,53,54,51,52,56,93,44,91,45,56,51,46,57,51,48,51,52,56,44,51,56,46,52,57,50,50,55,56,93,44,91,45,56,51,46,57,56,48,48,54,56,44,51,56,46,52,51,57,52,52,56,93,44,91,45,56,51,46,56,52,56,51,53,53,44,51,56,46,50,57,54,57,52,57,93,44,91,45,56,51,46,54,51,53,49,57,53,44,51,56,46,49,56,55,53,50,53,93,44,91,45,56,51,46,53,48,55,57,53,51,44,51,56,46,50,55,51,49,53,53,93,44,91,45,56,51,46,52,53,50,56,52,56,44,51,56,46,51,56,49,55,57,57,93,44,91,45,56,51,46,53,56,48,53,54,54,44,51,56,46,52,51,48,49,54,57,93,44,91,45,56,51,46,54,52,49,56,53,50,44,51,56,46,53,50,53,51,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,57,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,54,50,53,51,44,52,52,46,54,56,53,49,53,52,93,44,91,45,57,48,46,51,49,53,48,51,56,44,52,53,46,48,51,51,56,50,57,93,44,91,45,57,48,46,57,50,51,51,54,50,44,52,53,46,48,51,49,49,52,51,93,44,91,45,57,48,46,57,50,50,50,52,55,44,52,52,46,56,53,55,51,48,57,93,44,91,45,57,48,46,57,50,50,51,53,44,52,52,46,53,57,54,50,57,51,93,44,91,45,57,48,46,56,48,49,53,50,53,44,52,52,46,53,48,57,54,56,49,93,44,91,45,57,48,46,56,48,49,57,49,56,44,52,52,46,52,50,50,52,52,50,93,44,91,45,57,48,46,51,49,54,48,53,53,44,52,52,46,52,50,52,53,48,50,93,44,91,45,57,48,46,51,49,54,50,53,51,44,52,52,46,54,56,53,49,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,54,52,49,44,34,98,101,100,115,34,58,51,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,54,54,54,44,51,53,46,49,54,52,56,56,51,93,44,91,45,56,49,46,52,48,56,56,55,54,44,51,53,46,48,52,54,51,50,52,93,44,91,45,56,49,46,52,56,55,48,49,54,44,51,53,46,48,51,52,56,53,51,93,44,91,45,56,49,46,52,53,55,50,53,55,44,51,52,46,56,51,57,50,56,93,44,91,45,56,49,46,52,55,56,52,53,52,44,51,52,46,56,50,49,53,48,57,93,44,91,45,56,48,46,56,57,56,50,49,53,44,51,52,46,56,50,48,55,52,54,93,44,91,45,56,48,46,56,54,56,54,53,50,44,51,52,46,57,53,49,49,52,51,93,44,91,45,56,48,46,57,48,54,51,56,53,44,51,53,46,48,55,54,50,55,55,93,44,91,45,56,49,46,48,52,49,52,57,54,44,51,53,46,48,52,52,55,49,51,93,44,91,45,56,49,46,48,51,51,57,48,57,44,51,53,46,49,52,56,54,57,93,44,91,45,56,49,46,51,50,56,48,51,55,44,51,53,46,49,54,51,52,54,55,93,44,91,45,56,49,46,51,54,54,54,44,51,53,46,49,54,52,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,49,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,55,51,56,54,49,44,52,48,46,57,49,55,56,50,51,93,44,91,45,56,53,46,48,54,56,52,55,57,44,52,48,46,53,54,56,50,52,93,44,91,45,56,52,46,56,48,50,52,55,55,44,52,48,46,53,55,50,50,49,51,93,44,91,45,56,52,46,56,48,50,50,55,51,44,52,48,46,55,50,56,49,52,54,93,44,91,45,56,52,46,56,48,50,57,50,50,44,52,48,46,57,50,50,53,54,56,93,44,91,45,56,53,46,48,55,51,56,54,49,44,52,48,46,57,49,55,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,115,99,101,110,115,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,49,55,54,44,34,98,101,100,115,34,58,49,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,56,57,49,55,50,56,44,51,48,46,51,52,53,50,52,52,93,44,91,45,57,49,46,48,50,49,48,49,52,44,51,48,46,51,50,49,52,56,57,93,44,91,45,57,49,46,49,48,53,57,53,49,44,51,48,46,48,54,50,52,55,56,93,44,91,45,57,48,46,57,54,51,54,57,51,44,51,48,46,48,54,54,52,53,93,44,91,45,57,48,46,57,49,53,53,54,53,44,51,48,46,49,49,51,50,56,53,93,44,91,45,57,48,46,54,52,49,57,57,56,44,51,48,46,49,54,54,52,51,93,44,91,45,57,48,46,54,51,50,56,49,49,44,51,48,46,50,50,49,52,48,57,93,44,91,45,57,48,46,55,49,57,53,51,57,44,51,48,46,49,56,57,57,57,52,93,44,91,45,57,48,46,56,57,49,55,50,56,44,51,48,46,51,52,53,50,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,49,49,52,44,34,98,101,100,115,34,58,49,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,52,52,49,54,44,52,49,46,48,52,52,51,51,56,93,44,91,45,55,55,46,51,54,52,49,56,44,52,48,46,56,52,54,57,51,55,93,44,91,45,55,55,46,51,53,54,54,50,56,44,52,48,46,56,48,55,51,51,52,93,44,91,45,55,54,46,57,52,48,55,48,54,44,52,48,46,56,56,56,48,50,51,93,44,91,45,55,54,46,56,48,48,50,52,50,44,52,48,46,56,56,49,57,57,52,93,44,91,45,55,54,46,56,56,50,50,56,44,52,48,46,57,55,49,51,51,52,93,44,91,45,55,54,46,56,57,54,49,49,52,44,52,49,46,49,51,57,48,55,93,44,91,45,55,54,46,57,55,55,57,51,57,44,52,49,46,48,56,55,56,56,51,93,44,91,45,55,55,46,49,52,52,49,49,49,44,52,49,46,48,54,56,56,52,93,44,91,45,55,55,46,49,52,52,49,54,44,52,49,46,48,52,52,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,104,101,115,116,101,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,57,52,52,55,44,34,98,101,100,115,34,58,52,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,44,91,45,55,55,46,56,53,53,49,52,56,44,51,55,46,52,49,56,51,54,51,93,44,91,45,55,55,46,56,55,55,53,53,54,44,51,55,46,51,54,54,50,52,55,93,44,91,45,55,55,46,55,53,56,54,50,44,51,55,46,50,54,56,55,49,55,93,44,91,45,55,55,46,54,53,48,54,49,44,51,55,46,50,54,53,49,49,50,93,44,91,45,55,55,46,52,52,55,52,48,56,44,51,55,46,50,50,51,48,54,54,93,44,91,45,55,55,46,52,49,54,53,48,49,44,51,55,46,50,51,51,50,48,56,93,44,91,45,55,55,46,52,49,52,52,48,54,44,51,55,46,50,54,48,57,52,57,93,44,91,45,55,55,46,51,56,56,57,49,55,44,51,55,46,50,56,55,51,52,57,93,44,91,45,55,55,46,51,55,57,49,57,51,44,51,55,46,50,54,55,53,56,93,44,91,45,55,55,46,51,56,50,53,50,49,44,51,55,46,50,52,50,56,51,55,93,44,91,45,55,55,46,52,48,51,54,55,49,44,51,55,46,50,51,55,51,52,54,93,44,91,45,55,55,46,51,56,51,56,53,54,44,51,55,46,50,51,56,57,48,54,93,44,91,45,55,55,46,51,55,54,55,56,53,44,51,55,46,50,52,52,56,52,57,93,44,91,45,55,55,46,51,51,53,54,54,54,44,51,55,46,51,49,51,48,51,57,93,44,91,45,55,55,46,50,56,52,48,49,57,44,51,55,46,51,49,51,48,49,50,93,44,91,45,55,55,46,50,55,48,54,55,53,44,51,55,46,51,50,48,55,53,54,93,44,91,45,55,55,46,50,52,57,54,54,53,44,51,55,46,51,56,50,93,44,91,45,55,55,46,51,52,57,50,51,53,44,51,55,46,51,55,56,52,54,54,93,44,91,45,55,55,46,52,50,48,56,55,53,44,51,55,46,52,52,55,49,48,49,93,44,91,45,55,55,46,53,57,53,52,54,50,44,51,55,46,53,53,53,55,53,93,44,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,99,97,100,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,53,54,56,44,34,98,101,100,115,34,58,49,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,51,49,57,56,55,44,51,48,46,52,56,49,49,52,55,93,44,91,45,57,50,46,54,50,53,52,56,52,44,51,48,46,48,57,50,51,51,93,44,91,45,57,50,46,53,51,52,54,51,56,44,51,48,46,49,48,55,56,53,50,93,44,91,45,57,50,46,52,50,54,48,51,57,44,51,48,46,48,52,57,51,54,57,93,44,91,45,57,50,46,50,56,52,54,55,53,44,51,48,46,49,52,55,52,52,51,93,44,91,45,57,50,46,49,52,50,49,56,52,44,51,48,46,50,57,56,56,49,55,93,44,91,45,57,50,46,49,55,54,52,52,52,44,51,48,46,52,51,54,56,53,50,93,44,91,45,57,50,46,50,52,52,55,57,53,44,51,48,46,52,56,48,49,57,51,93,44,91,45,57,50,46,52,57,51,50,53,57,44,51,48,46,52,56,48,52,57,57,93,44,91,45,57,50,46,54,51,49,57,56,55,44,51,48,46,52,56,49,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,49,54,52,44,34,98,101,100,115,34,58,50,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,51,53,52,44,52,49,46,56,52,57,53,54,51,93,44,91,45,56,48,46,53,49,57,50,50,53,44,52,49,46,52,57,57,57,50,52,93,44,91,45,56,48,46,53,49,57,50,49,55,44,52,49,46,52,56,57,48,49,51,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,52,57,48,48,52,57,93,44,91,45,55,57,46,56,50,56,56,55,54,44,52,49,46,54,50,50,48,53,55,93,44,91,45,55,57,46,54,49,50,56,55,51,44,52,49,46,54,50,51,56,53,56,93,44,91,45,55,57,46,54,49,50,48,55,50,44,52,49,46,56,53,48,48,53,54,93,44,91,45,56,48,46,53,49,57,51,53,52,44,52,49,46,56,52,57,53,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,84,114,105,112,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,51,48,56,52,53,44,52,51,46,55,49,51,56,53,54,93,44,91,45,49,48,48,46,50,49,52,50,50,49,44,52,51,46,51,57,48,51,50,49,93,44,91,45,49,48,48,46,49,57,56,52,49,51,44,52,50,46,57,57,56,54,55,52,93,44,91,45,57,57,46,53,51,52,48,52,57,44,52,50,46,57,57,56,48,51,51,93,44,91,45,57,57,46,53,51,52,52,56,49,44,52,51,46,52,57,57,56,48,49,93,44,91,45,57,57,46,54,50,51,53,55,56,44,52,51,46,52,57,57,56,53,57,93,44,91,45,57,57,46,54,50,51,53,56,55,44,52,51,46,55,52,50,52,49,52,93,44,91,45,57,57,46,56,51,55,56,50,53,44,52,51,46,54,56,57,48,55,49,93,44,91,45,49,48,48,46,50,51,48,56,52,53,44,52,51,46,55,49,51,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,117,116,104,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,56,48,51,52,44,52,49,46,56,54,50,57,57,57,93,44,91,45,57,52,46,54,50,56,55,50,52,44,52,49,46,56,54,50,55,54,51,93,44,91,45,57,52,46,55,52,52,56,55,54,44,52,49,46,56,54,50,51,57,52,93,44,91,45,57,52,46,55,52,52,50,48,52,44,52,49,46,54,48,50,49,56,53,93,44,91,45,57,52,46,55,48,48,54,50,57,44,52,49,46,53,48,52,49,52,56,93,44,91,45,57,52,46,50,52,49,53,57,51,44,52,49,46,53,48,51,54,55,57,93,44,91,45,57,52,46,50,56,48,48,53,55,44,52,49,46,54,48,49,51,49,50,93,44,91,45,57,52,46,50,56,48,51,52,44,52,49,46,56,54,50,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,52,54,48,52,51,44,52,49,46,53,49,48,55,52,57,93,44,91,45,57,49,46,57,52,53,53,55,49,44,52,49,46,49,54,51,53,55,56,93,44,91,45,57,49,46,55,49,54,48,52,50,44,52,49,46,49,54,50,56,48,56,93,44,91,45,57,49,46,52,56,53,55,49,55,44,52,49,46,49,54,50,52,48,53,93,44,91,45,57,49,46,52,56,51,57,57,53,44,52,49,46,52,50,51,56,52,56,93,44,91,45,57,49,46,53,50,50,52,56,44,52,49,46,53,49,49,48,51,53,93,44,91,45,57,49,46,56,50,57,50,51,49,44,52,49,46,53,49,49,52,53,55,93,44,91,45,57,49,46,57,52,54,48,52,51,44,52,49,46,53,49,48,55,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,83,97,110,98,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,51,49,57,49,44,52,52,46,49,57,54,54,56,55,93,44,91,45,57,56,46,51,51,49,53,48,56,44,52,51,46,57,51,55,55,48,56,93,44,91,45,57,56,46,51,50,53,50,52,50,44,52,51,46,56,53,49,48,53,56,93,44,91,45,57,55,46,57,54,55,50,55,57,44,52,51,46,56,53,48,54,56,54,93,44,91,45,57,55,46,56,53,49,49,49,44,52,51,46,56,52,57,56,53,55,93,44,91,45,57,55,46,56,52,57,52,57,50,44,52,52,46,49,57,53,50,51,53,93,44,91,45,57,55,46,56,53,51,54,54,44,52,52,46,49,57,53,50,51,51,93,44,91,45,57,56,46,51,51,49,57,49,44,52,52,46,49,57,54,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,114,97,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,55,51,51,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,57,54,48,49,52,44,51,53,46,51,55,55,55,53,51,93,44,91,45,57,56,46,48,57,51,49,50,55,44,51,52,46,56,53,52,57,56,56,93,44,91,45,57,56,46,48,56,57,48,57,55,44,51,52,46,54,56,49,49,54,51,93,44,91,45,57,55,46,54,54,56,53,49,50,44,51,52,46,54,56,49,51,52,93,44,91,45,57,55,46,54,54,56,48,57,57,44,51,52,46,56,53,53,49,54,52,93,44,91,45,57,55,46,54,55,49,52,49,52,44,51,53,46,51,51,53,57,52,54,93,44,91,45,57,55,46,57,53,53,49,50,52,44,51,53,46,51,52,54,48,52,56,93,44,91,45,57,56,46,48,57,54,48,49,52,44,51,53,46,51,55,55,55,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,75,97,110,97,119,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,55,49,48,44,34,98,101,100,115,34,58,49,51,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,49,53,49,57,55,44,51,56,46,51,50,53,53,57,55,93,44,91,45,56,49,46,56,49,56,50,51,52,44,51,56,46,51,49,54,55,53,49,93,44,91,45,56,49,46,56,51,51,52,55,44,51,56,46,50,48,57,53,55,93,44,91,45,56,49,46,54,52,56,53,51,55,44,51,56,46,49,56,53,48,51,54,93,44,91,45,56,49,46,52,55,56,49,50,50,44,51,56,46,48,54,48,49,51,56,93,44,91,45,56,49,46,52,53,54,54,51,50,44,51,55,46,57,56,55,51,48,55,93,44,91,45,56,49,46,51,56,48,56,50,57,44,51,55,46,57,54,57,49,48,57,93,44,91,45,56,49,46,51,51,49,53,48,51,44,51,56,46,49,54,55,53,55,56,93,44,91,45,56,49,46,50,51,49,54,51,54,44,51,56,46,50,54,51,53,49,52,93,44,91,45,56,49,46,50,51,49,52,51,52,44,51,56,46,50,54,51,55,49,54,93,44,91,45,56,49,46,50,56,51,56,55,50,44,51,56,46,52,55,50,48,50,57,93,44,91,45,56,49,46,49,57,52,49,49,51,44,51,56,46,53,50,55,54,51,52,93,44,91,45,56,49,46,52,54,53,51,55,50,44,51,56,46,53,52,57,56,57,56,93,44,91,45,56,49,46,53,50,50,49,54,54,44,51,56,46,54,49,50,55,52,54,93,44,91,45,56,49,46,54,51,50,56,51,54,44,51,56,46,53,53,52,51,55,93,44,91,45,56,49,46,54,57,54,51,52,56,44,51,56,46,54,50,54,52,50,55,93,44,91,45,56,49,46,55,53,48,53,52,55,44,51,56,46,53,57,49,48,49,52,93,44,91,45,56,49,46,55,50,53,56,48,49,44,51,56,46,52,54,54,54,50,93,44,91,45,56,49,46,57,48,48,50,50,50,44,51,56,46,51,57,56,53,55,50,93,44,91,45,56,49,46,57,49,53,49,57,55,44,51,56,46,51,50,53,53,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,114,111,105,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,57,49,55,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,53,56,48,48,56,44,52,53,46,50,48,57,53,54,54,93,44,91,45,57,50,46,55,54,57,53,48,49,44,52,52,46,56,54,50,48,48,49,93,44,91,45,57,50,46,49,51,54,51,52,56,44,52,52,46,56,53,55,56,52,56,93,44,91,45,57,50,46,49,53,54,52,54,53,44,52,53,46,50,48,57,53,53,52,93,44,91,45,57,50,46,55,53,56,48,48,56,44,52,53,46,50,48,57,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,86,101,110,97,110,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,51,55,54,44,34,98,101,100,115,34,58,49,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,52,57,48,48,52,57,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,49,55,49,56,54,49,93,44,91,45,55,57,46,54,57,52,57,56,52,44,52,49,46,49,55,50,56,54,53,93,44,91,45,55,57,46,52,55,55,56,50,50,44,52,49,46,51,56,54,52,55,57,93,44,91,45,55,57,46,53,49,50,48,55,44,52,49,46,54,50,52,53,53,57,93,44,91,45,55,57,46,54,49,50,56,55,51,44,52,49,46,54,50,51,56,53,56,93,44,91,45,55,57,46,56,50,56,56,55,54,44,52,49,46,54,50,50,48,53,55,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,52,57,48,48,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,83,117,109,109,105,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,56,49,48,44,34,98,101,100,115,34,58,50,53,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,56,52,57,53,44,52,49,46,50,55,55,49,52,54,93,44,91,45,56,49,46,54,56,56,52,57,49,44,52,48,46,57,56,56,53,57,93,44,91,45,56,49,46,54,52,55,55,51,53,44,52,48,46,57,49,52,48,49,54,93,44,91,45,56,49,46,52,50,48,51,54,51,44,52,48,46,57,48,54,53,48,50,93,44,91,45,56,49,46,51,57,51,50,52,57,44,52,48,46,57,56,56,53,51,49,93,44,91,45,56,49,46,51,57,49,54,57,52,44,52,49,46,51,52,56,50,55,50,93,44,91,45,56,49,46,53,57,56,48,53,50,44,52,49,46,51,53,49,49,53,55,93,44,91,45,56,49,46,54,56,52,57,53,44,52,49,46,50,55,55,49,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,71,108,121,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,57,55,52,44,34,98,101,100,115,34,58,52,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,50,52,50,57,44,51,49,46,52,53,50,57,56,50,93,44,91,45,56,49,46,55,51,49,54,57,52,44,51,49,46,51,51,48,48,52,56,93,44,91,45,56,49,46,55,54,54,51,50,50,44,51,49,46,49,54,57,53,57,53,93,44,91,45,56,49,46,53,54,53,49,49,54,44,51,49,46,48,57,49,57,52,93,44,91,45,56,49,46,52,50,51,55,55,53,44,51,48,46,57,57,48,56,57,50,93,44,91,45,56,49,46,51,48,54,52,51,53,44,51,48,46,57,57,48,54,52,52,93,44,91,45,56,49,46,50,57,50,49,52,53,44,51,49,46,49,53,53,52,49,53,93,44,91,45,56,49,46,50,51,52,51,51,55,44,51,49,46,49,55,48,50,53,56,93,44,91,45,56,49,46,49,56,51,55,49,54,44,51,49,46,50,57,52,50,56,51,93,44,91,45,56,49,46,52,51,53,56,55,52,44,51,49,46,51,49,51,50,54,51,93,44,91,45,56,49,46,54,50,52,50,57,44,51,49,46,52,53,50,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,55,57,34,44,34,78,65,77,69,34,58,34,87,101,98,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,48,53,51,44,34,98,101,100,115,34,58,53,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,49,50,49,56,57,44,50,56,46,49,57,54,56,51,55,93,44,91,45,49,48,48,46,48,56,54,56,57,56,44,50,56,46,49,52,54,55,56,51,93,44,91,45,57,57,46,57,56,57,55,54,50,44,50,55,46,57,57,50,56,55,54,93,44,91,45,57,57,46,56,57,51,52,53,54,44,50,55,46,56,57,57,50,48,56,93,44,91,45,57,57,46,56,55,50,50,57,52,44,50,55,46,55,57,53,50,53,56,93,44,91,45,57,57,46,55,50,49,53,49,57,44,50,55,46,54,54,54,49,53,53,93,44,91,45,57,57,46,54,48,51,53,51,51,44,50,55,46,54,52,49,57,57,50,93,44,91,45,57,57,46,53,49,49,48,52,57,44,50,55,46,53,54,52,53,48,55,93,44,91,45,57,57,46,52,55,57,50,53,49,44,50,55,46,52,55,56,54,51,53,93,44,91,45,57,57,46,53,48,52,51,57,55,44,50,55,46,51,51,57,56,57,54,93,44,91,45,57,57,46,52,53,51,55,57,52,44,50,55,46,50,54,53,48,53,56,93,44,91,45,57,56,46,57,53,52,54,54,57,44,50,55,46,50,54,57,51,57,55,93,44,91,45,57,56,46,55,57,56,48,56,55,44,50,55,46,50,54,56,48,49,50,93,44,91,45,57,56,46,55,57,56,51,50,51,44,50,55,46,51,53,52,48,50,57,93,44,91,45,57,56,46,56,48,51,51,50,53,44,50,56,46,48,53,55,52,56,93,44,91,45,57,57,46,51,56,56,57,52,54,44,50,56,46,48,51,48,52,49,57,93,44,91,45,57,57,46,51,57,52,49,55,55,44,50,56,46,50,48,52,54,50,55,93,44,91,45,49,48,48,46,49,49,51,55,49,57,44,50,56,46,49,57,55,56,49,57,93,44,91,45,49,48,48,46,50,49,50,49,56,57,44,50,56,46,49,57,54,56,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,51,51,56,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,49,56,50,53,53,57,44,51,53,46,53,48,52,49,53,49,93,44,91,45,56,48,46,48,53,49,55,51,57,44,51,53,46,51,55,50,53,56,53,93,44,91,45,56,48,46,48,57,56,49,56,53,44,51,53,46,50,53,53,49,55,51,93,44,91,45,56,48,46,48,55,53,51,54,53,44,51,53,46,49,52,51,48,56,49,93,44,91,45,55,57,46,56,53,49,50,54,56,44,51,53,46,49,56,51,56,53,53,93,44,91,45,55,57,46,54,49,52,51,48,52,44,51,53,46,49,54,51,54,55,57,93,44,91,45,55,57,46,54,57,55,55,55,51,44,51,53,46,50,53,49,51,55,57,93,44,91,45,55,57,46,55,54,55,57,53,55,44,51,53,46,53,49,49,52,56,52,93,44,91,45,56,48,46,48,54,54,56,52,50,44,51,53,46,53,48,53,54,54,49,93,44,91,45,56,48,46,49,56,50,53,53,57,44,51,53,46,53,48,52,49,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,114,111,111,115,116,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,50,54,57,44,34,98,101,100,115,34,58,50,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,56,48,53,54,56,57,44,52,53,46,54,56,48,48,53,49,93,44,91,45,54,55,46,55,56,49,50,52,56,44,52,53,46,57,52,51,52,53,93,44,91,45,54,55,46,55,57,48,49,57,54,44,52,55,46,48,54,55,50,50,93,44,91,45,54,55,46,57,53,49,57,56,54,44,52,55,46,49,57,52,54,50,56,93,44,91,45,54,56,46,50,51,52,53,49,51,44,52,55,46,51,53,53,50,57,53,93,44,91,45,54,56,46,51,56,51,57,55,50,44,52,55,46,51,48,49,49,55,49,93,44,91,45,54,56,46,53,56,48,48,53,44,52,55,46,50,56,55,49,49,53,93,44,91,45,54,56,46,57,48,52,57,56,49,44,52,55,46,49,56,48,52,51,54,93,44,91,45,54,57,46,48,52,48,57,49,56,44,52,55,46,50,52,52,57,55,51,93,44,91,45,54,57,46,48,51,53,52,56,49,44,52,55,46,52,49,52,57,56,53,93,44,91,45,54,57,46,50,50,52,52,54,49,44,52,55,46,52,53,57,56,51,51,93,44,91,45,54,57,46,57,57,55,49,49,49,44,52,54,46,54,57,53,53,50,93,44,91,45,55,48,46,48,50,51,49,56,55,44,52,54,46,53,55,51,52,56,55,93,44,91,45,54,57,46,55,50,49,49,48,57,44,52,54,46,53,55,52,48,53,51,93,44,91,45,54,56,46,56,50,49,52,49,52,44,52,54,46,53,55,50,53,49,93,44,91,45,54,56,46,56,49,57,52,48,49,44,52,54,46,51,57,53,55,56,50,93,44,91,45,54,56,46,52,51,54,52,52,51,44,52,54,46,51,56,50,49,50,49,93,44,91,45,54,56,46,52,50,54,49,54,57,44,52,53,46,56,55,48,56,50,57,93,44,91,45,54,56,46,52,51,51,48,50,56,44,52,53,46,53,55,56,52,56,50,93,44,91,45,54,56,46,48,52,56,48,49,50,44,52,53,46,54,51,57,56,57,55,93,44,91,45,54,55,46,56,48,53,54,56,57,44,52,53,46,54,56,48,48,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,32,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,57,53,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,55,52,53,56,54,44,51,49,46,55,54,49,54,53,53,93,44,91,45,56,57,46,57,53,56,57,52,44,51,49,46,51,57,48,52,56,57,93,44,91,45,56,57,46,56,50,52,50,51,54,44,51,49,46,52,51,52,48,57,51,93,44,91,45,56,57,46,54,53,52,50,49,50,44,51,49,46,52,51,51,56,48,53,93,44,91,45,56,57,46,53,56,54,56,49,57,44,51,49,46,52,51,51,54,56,56,93,44,91,45,56,57,46,54,48,50,56,56,57,44,51,49,46,53,51,56,56,51,54,93,44,91,45,56,57,46,55,53,53,54,49,52,44,51,49,46,54,48,57,55,53,49,93,44,91,45,56,57,46,55,53,53,49,48,51,44,51,49,46,55,55,52,54,53,52,93,44,91,45,56,57,46,57,55,52,53,56,54,44,51,49,46,55,54,49,54,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,48,56,55,48,49,44,51,56,46,54,56,56,49,48,49,93,44,91,45,56,54,46,51,48,56,54,55,52,44,51,56,46,52,50,50,56,55,53,93,44,91,45,56,54,46,50,53,53,48,52,53,44,51,56,46,52,50,50,54,56,53,93,44,91,45,56,54,46,48,51,50,56,49,55,44,51,56,46,52,49,55,56,57,56,93,44,91,45,56,53,46,57,57,52,54,50,44,51,56,46,52,49,56,51,52,53,93,44,91,45,56,53,46,57,57,51,51,49,55,44,51,56,46,52,56,56,53,52,93,44,91,45,56,53,46,56,52,55,56,57,51,44,51,56,46,53,54,49,50,54,57,93,44,91,45,56,53,46,56,56,56,51,51,52,44,51,56,46,55,51,52,52,52,51,93,44,91,45,56,54,46,48,57,49,55,48,53,44,51,56,46,55,56,51,51,57,57,93,44,91,45,56,54,46,50,55,53,50,56,49,44,51,56,46,55,54,51,55,57,53,93,44,91,45,56,54,46,51,48,56,55,48,49,44,51,56,46,54,56,56,49,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,66,108,97,110,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,57,49,54,55,44,51,48,46,52,57,57,56,55,53,93,44,91,45,57,56,46,53,56,55,56,57,55,44,51,48,46,49,51,56,57,53,52,93,44,91,45,57,56,46,52,49,52,48,49,56,44,50,57,46,57,51,55,53,53,55,93,44,91,45,57,56,46,50,57,55,54,44,51,48,46,48,51,55,57,57,52,93,44,91,45,57,56,46,49,55,50,57,55,55,44,51,48,46,51,53,54,51,49,50,93,44,91,45,57,56,46,49,50,53,53,53,54,44,51,48,46,52,50,54,49,56,54,93,44,91,45,57,56,46,51,53,49,48,52,49,44,51,48,46,52,56,54,48,57,54,93,44,91,45,57,56,46,53,57,49,54,55,44,51,48,46,52,57,57,56,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,66,114,117,110,115,119,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,50,55,52,49,49,44,51,54,46,55,55,55,56,53,56,93,44,91,45,55,56,46,48,52,54,50,55,49,44,51,54,46,53,52,51,53,53,49,93,44,91,45,55,55,46,56,57,57,55,55,51,44,51,54,46,53,52,52,53,57,54,93,44,91,45,55,55,46,55,54,55,49,53,44,51,54,46,53,52,53,51,55,52,93,44,91,45,55,55,46,54,53,53,56,52,49,44,51,54,46,55,49,51,53,51,57,93,44,91,45,55,55,46,54,53,56,48,51,54,44,51,54,46,56,57,52,53,49,52,93,44,91,45,55,55,46,55,54,53,53,52,44,51,54,46,57,55,52,54,53,53,93,44,91,45,55,55,46,56,56,57,56,49,51,44,51,54,46,57,56,56,56,49,56,93,44,91,45,55,56,46,48,48,51,54,51,57,44,51,55,46,48,50,50,55,53,54,93,44,91,45,55,56,46,48,50,55,52,49,49,44,51,54,46,55,55,55,56,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,68,121,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,53,55,54,44,34,98,101,100,115,34,58,50,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,56,50,57,55,49,44,51,54,46,50,49,50,54,53,57,93,44,91,45,56,57,46,54,50,57,52,53,51,44,51,54,46,49,56,53,51,56,50,93,44,91,45,56,57,46,55,51,51,48,57,53,44,51,54,46,48,48,48,54,48,56,93,44,91,45,56,57,46,54,52,52,56,51,56,44,51,53,46,57,48,52,51,53,49,93,44,91,45,56,57,46,52,48,54,57,54,53,44,51,53,46,57,52,54,53,57,57,93,44,91,45,56,57,46,51,52,50,56,50,57,44,51,53,46,56,56,48,57,51,52,93,44,91,45,56,57,46,50,56,48,49,56,56,44,51,53,46,56,56,54,52,49,54,93,44,91,45,56,57,46,49,56,56,56,52,52,44,51,53,46,57,57,57,55,54,93,44,91,45,56,57,46,49,53,52,52,54,52,44,51,54,46,50,48,52,54,55,56,93,44,91,45,56,57,46,52,56,50,57,55,49,44,51,54,46,50,49,50,54,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,105,98,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,49,55,53,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,56,56,56,52,52,44,51,53,46,57,57,57,55,54,93,44,91,45,56,57,46,49,48,57,54,48,50,44,51,53,46,56,54,50,48,57,53,93,44,91,45,56,56,46,57,49,54,49,56,49,44,51,53,46,55,57,55,51,48,55,93,44,91,45,56,56,46,55,48,54,56,49,49,44,51,53,46,55,57,49,48,55,53,93,44,91,45,56,56,46,54,57,50,55,48,57,44,51,54,46,48,54,50,55,52,54,93,44,91,45,56,56,46,56,51,53,52,53,55,44,51,54,46,49,50,49,52,54,49,93,44,91,45,56,56,46,57,53,57,56,51,57,44,51,54,46,50,50,50,56,51,52,93,44,91,45,56,57,46,49,53,52,52,54,52,44,51,54,46,50,48,52,54,55,56,93,44,91,45,56,57,46,49,56,56,56,52,52,44,51,53,46,57,57,57,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,80,114,105,110,99,101,32,71,101,111,114,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,57,52,44,34,98,101,100,115,34,58,52,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,55,54,55,56,53,44,51,55,46,50,52,52,56,52,57,93,44,91,45,55,55,46,51,57,57,50,48,51,44,51,55,46,49,55,48,56,53,93,44,91,45,55,55,46,51,57,56,52,57,56,44,51,54,46,57,57,50,57,56,53,93,44,91,45,55,55,46,49,53,53,52,49,53,44,51,55,46,49,49,50,48,51,52,93,44,91,45,55,54,46,57,55,50,52,51,57,44,51,55,46,50,52,56,53,48,49,93,44,91,45,55,55,46,50,55,48,54,55,53,44,51,55,46,51,50,48,55,53,54,93,44,91,45,55,55,46,50,56,52,48,49,57,44,51,55,46,51,49,51,48,49,50,93,44,91,45,55,55,46,50,55,51,54,49,52,44,51,55,46,50,55,56,51,48,56,93,44,91,45,55,55,46,51,50,53,51,50,44,51,55,46,50,54,48,57,51,50,93,44,91,45,55,55,46,51,51,53,54,54,54,44,51,55,46,51,49,51,48,51,57,93,44,91,45,55,55,46,51,55,54,55,56,53,44,51,55,46,50,52,52,56,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,56,48,57,56,49,54,44,51,54,46,49,52,57,53,54,55,93,44,91,45,57,49,46,49,49,57,54,50,53,44,51,54,46,49,53,51,54,55,49,93,44,91,45,57,49,46,50,53,56,57,50,44,51,54,46,50,53,55,56,56,93,44,91,45,57,49,46,51,52,57,56,51,52,44,51,54,46,50,51,48,57,54,55,93,44,91,45,57,49,46,51,53,55,50,51,44,51,53,46,56,57,48,54,50,49,93,44,91,45,57,49,46,49,57,56,53,53,54,44,51,53,46,56,57,48,48,50,52,93,44,91,45,57,49,46,48,51,50,52,57,57,44,51,53,46,56,56,53,48,55,93,44,91,45,57,48,46,56,55,50,55,56,53,44,51,53,46,56,56,48,56,55,93,44,91,45,57,48,46,56,53,50,48,54,52,44,51,53,46,57,54,56,48,57,50,93,44,91,45,57,48,46,56,48,57,56,49,54,44,51,54,46,49,52,57,53,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,69,100,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,57,55,50,48,50,44,52,55,46,56,52,54,56,51,52,93,44,91,45,57,57,46,50,54,53,55,57,56,44,52,55,46,53,56,55,54,93,44,91,45,57,56,46,53,48,48,48,56,53,44,52,55,46,53,56,55,50,50,56,93,44,91,45,57,56,46,53,48,48,49,56,49,44,52,55,46,54,55,50,52,49,51,93,44,91,45,57,56,46,53,50,53,53,49,54,44,52,55,46,56,52,54,50,55,54,93,44,91,45,57,57,46,50,57,55,50,48,50,44,52,55,46,56,52,54,56,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,80,105,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,57,56,52,48,44,34,98,101,100,115,34,58,50,52,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,56,50,48,53,55,54,44,52,55,46,49,57,52,50,50,93,44,91,45,49,50,50,46,54,51,56,50,49,49,44,52,54,46,57,55,56,49,51,57,93,44,91,45,49,50,50,46,52,57,48,56,56,56,44,52,54,46,56,54,55,52,53,50,93,44,91,45,49,50,50,46,50,48,51,49,49,53,44,52,54,46,55,54,51,48,54,49,93,44,91,45,49,50,49,46,56,52,49,56,57,44,52,54,46,55,50,56,52,53,53,93,44,91,45,49,50,49,46,55,53,56,53,57,51,44,52,54,46,55,56,51,55,57,49,93,44,91,45,49,50,49,46,52,53,53,50,49,56,44,52,54,46,55,56,51,55,57,55,93,44,91,45,49,50,49,46,52,57,55,51,52,53,44,52,54,46,56,54,50,56,54,54,93,44,91,45,49,50,49,46,51,55,57,57,54,49,44,52,55,46,48,56,55,50,52,56,93,44,91,45,49,50,49,46,55,57,54,52,54,52,44,52,55,46,49,55,51,48,53,57,93,44,91,45,49,50,49,46,57,50,56,49,57,53,44,52,55,46,49,52,55,51,53,56,93,44,91,45,49,50,50,46,48,57,52,55,54,52,44,52,55,46,49,57,52,57,55,55,93,44,91,45,49,50,50,46,49,52,51,57,55,54,44,52,55,46,50,53,55,53,50,54,93,44,91,45,49,50,50,46,51,51,52,57,49,52,44,52,55,46,50,53,55,51,54,54,93,44,91,45,49,50,50,46,53,51,54,57,57,51,44,52,55,46,52,48,51,51,53,53,93,44,91,45,49,50,50,46,56,48,49,49,57,57,44,52,55,46,52,48,51,53,55,56,93,44,91,45,49,50,50,46,56,53,49,49,56,55,44,52,55,46,50,52,57,55,55,52,93,44,91,45,49,50,50,46,56,50,48,53,55,54,44,52,55,46,49,57,52,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,50,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,55,49,52,54,52,50,44,52,51,46,49,57,57,55,56,51,93,44,91,45,49,49,52,46,51,55,52,57,54,50,44,52,51,46,49,57,57,54,52,93,44,91,45,49,49,52,46,53,57,52,54,48,53,44,52,51,46,49,57,56,51,52,53,93,44,91,45,49,49,52,46,53,57,52,51,55,53,44,52,50,46,56,53,48,57,48,49,93,44,91,45,49,49,52,46,51,54,53,51,54,54,44,52,50,46,56,53,48,55,57,93,44,91,45,49,49,52,46,51,52,53,54,53,57,44,52,50,46,56,48,57,48,53,53,93,44,91,45,49,49,52,46,48,52,57,56,52,57,44,52,50,46,56,48,56,52,52,52,93,44,91,45,49,49,51,46,57,51,49,54,56,55,44,52,50,46,55,54,53,48,50,54,93,44,91,45,49,49,51,46,55,54,51,56,54,50,44,52,50,46,55,54,52,53,48,56,93,44,91,45,49,49,51,46,55,49,52,48,52,52,44,52,50,46,56,52,57,55,51,52,93,44,91,45,49,49,51,46,55,49,52,54,52,50,44,52,51,46,49,57,57,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,76,97,110,99,97,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,56,51,52,55,44,34,98,101,100,115,34,58,49,48,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,54,54,51,51,57,44,52,48,46,49,57,54,54,52,52,93,44,91,45,55,54,46,55,50,49,54,50,44,52,48,46,49,50,48,48,55,93,44,91,45,55,54,46,53,51,52,53,50,52,44,52,48,46,48,53,49,51,52,56,93,44,91,45,55,54,46,52,55,51,53,56,44,51,57,46,57,52,55,51,53,50,93,44,91,45,55,54,46,50,51,57,56,48,53,44,51,57,46,55,50,49,51,51,53,93,44,91,45,55,54,46,50,51,51,50,55,57,44,51,57,46,55,50,49,51,54,55,93,44,91,45,55,54,46,49,51,53,52,56,52,44,51,57,46,55,50,49,49,52,55,93,44,91,45,55,53,46,57,56,54,56,50,51,44,51,57,46,56,57,50,49,57,50,93,44,91,45,55,53,46,57,57,52,54,50,57,44,51,57,46,57,53,50,52,50,57,93,44,91,45,55,53,46,56,55,51,51,55,53,44,52,48,46,49,51,55,49,48,55,93,44,91,45,55,54,46,49,53,49,50,49,53,44,52,48,46,51,49,53,57,55,49,93,44,91,45,55,54,46,51,48,55,53,55,56,44,52,48,46,50,53,53,48,54,54,93,44,91,45,55,54,46,53,54,54,51,51,57,44,52,48,46,49,57,54,54,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,74,117,110,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,49,57,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,48,50,55,56,51,44,52,52,46,50,52,57,52,55,51,93,44,91,45,57,48,46,51,49,50,54,56,44,52,52,46,50,52,56,55,53,93,44,91,45,57,48,46,51,49,50,53,50,50,44,52,52,46,49,53,53,49,57,56,93,44,91,45,57,48,46,51,49,50,49,57,52,44,52,51,46,55,51,49,52,55,57,93,44,91,45,57,48,46,51,49,50,52,48,52,44,52,51,46,54,52,48,57,56,56,93,44,91,45,56,57,46,55,56,53,56,48,57,44,52,51,46,54,52,49,48,52,57,93,44,91,45,56,57,46,55,56,52,57,48,49,44,52,51,46,54,52,49,48,53,49,93,44,91,45,56,57,46,56,54,53,49,51,50,44,52,51,46,55,56,51,52,49,52,93,44,91,45,56,57,46,57,54,49,50,50,49,44,52,51,46,56,54,52,48,50,55,93,44,91,45,56,57,46,57,54,50,54,48,49,44,52,51,46,57,55,57,50,51,54,93,44,91,45,57,48,46,48,50,53,57,53,51,44,52,52,46,48,57,49,55,52,56,93,44,91,45,56,57,46,57,48,50,55,56,51,44,52,52,46,50,52,57,52,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,53,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,51,49,56,51,57,44,51,54,46,53,50,52,54,55,52,93,44,91,45,56,52,46,55,48,48,55,56,53,44,51,54,46,51,55,48,56,50,52,93,44,91,45,56,52,46,53,54,56,55,52,49,44,51,54,46,50,51,55,48,55,55,93,44,91,45,56,52,46,52,52,49,48,51,52,44,51,54,46,49,54,51,52,55,56,93,44,91,45,56,52,46,51,55,50,55,51,49,44,51,54,46,50,49,54,55,55,56,93,44,91,45,56,52,46,51,50,57,57,50,55,44,51,54,46,50,56,53,48,56,54,93,44,91,45,56,52,46,51,52,57,57,51,57,44,51,54,46,52,54,54,50,57,50,93,44,91,45,56,52,46,50,53,57,53,57,51,44,51,54,46,53,49,51,57,56,53,93,44,91,45,56,52,46,50,54,49,51,51,55,44,51,54,46,53,57,49,55,56,52,93,44,91,45,56,52,46,55,55,56,52,53,52,44,51,54,46,54,48,51,50,57,93,44,91,45,56,52,46,55,56,53,52,53,44,51,54,46,54,48,51,52,52,52,93,44,91,45,56,52,46,55,51,49,56,51,57,44,51,54,46,53,50,52,54,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,49,49,57,52,57,44,52,53,46,57,52,51,55,49,50,93,44,91,45,49,48,49,46,57,57,56,55,51,51,44,52,53,46,57,52,52,54,53,51,93,44,91,45,49,48,50,46,48,48,48,54,56,49,44,52,53,46,57,52,52,53,54,51,93,44,91,45,49,48,49,46,57,57,57,55,57,44,52,53,46,52,55,50,52,49,52,93,44,91,45,49,48,49,46,52,55,48,49,57,44,52,53,46,52,55,50,52,49,54,93,44,91,45,49,48,48,46,51,52,49,57,50,52,44,52,53,46,52,55,50,57,48,52,93,44,91,45,49,48,48,46,52,56,54,53,54,49,44,52,53,46,53,51,54,53,50,49,93,44,91,45,49,48,48,46,52,51,48,48,55,57,44,52,53,46,53,57,52,56,50,51,93,44,91,45,49,48,48,46,51,48,57,48,49,51,44,52,53,46,55,48,55,56,52,50,93,44,91,45,49,48,48,46,51,56,55,48,51,54,44,52,53,46,56,54,57,49,52,50,93,44,91,45,49,48,48,46,52,57,57,51,55,49,44,52,53,46,57,52,51,54,53,51,93,44,91,45,49,48,48,46,53,49,49,57,52,57,44,52,53,46,57,52,51,55,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,114,101,103,111,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,48,49,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,51,52,52,56,49,44,52,51,46,52,57,57,56,48,49,93,44,91,45,57,57,46,53,51,52,48,52,57,44,52,50,46,57,57,56,48,51,51,93,44,91,45,57,57,46,50,53,52,52,53,53,44,52,50,46,57,57,56,48,55,52,93,44,91,45,57,56,46,52,57,56,53,53,44,52,50,46,57,57,56,53,53,57,93,44,91,45,57,56,46,56,54,56,55,54,50,44,52,51,46,49,54,50,48,48,57,93,44,91,45,57,56,46,56,57,54,55,56,51,44,52,51,46,50,52,54,57,48,57,93,44,91,45,57,57,46,48,54,57,50,56,53,44,52,51,46,51,50,48,54,56,56,93,44,91,45,57,57,46,49,53,50,56,56,57,44,52,51,46,52,50,54,57,48,56,93,44,91,45,57,57,46,50,57,55,57,57,56,44,52,51,46,52,57,57,54,54,57,93,44,91,45,57,57,46,53,51,52,52,56,49,44,52,51,46,52,57,57,56,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,86,97,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,52,56,50,44,34,98,101,100,115,34,58,49,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,53,54,57,49,51,44,51,54,46,53,52,50,53,52,49,93,44,91,45,55,56,46,53,49,49,50,50,52,44,51,54,46,52,53,52,56,48,56,93,44,91,45,55,56,46,52,57,54,54,49,52,44,51,54,46,49,55,53,49,57,57,93,44,91,45,55,56,46,52,49,50,48,57,53,44,51,54,46,49,54,57,53,57,55,93,44,91,45,55,56,46,51,48,54,57,54,53,44,51,54,46,50,54,54,49,57,49,93,44,91,45,55,56,46,50,55,55,49,54,53,44,51,54,46,51,48,54,49,51,50,93,44,91,45,55,56,46,51,50,51,57,57,49,44,51,54,46,53,52,51,56,50,50,93,44,91,45,55,56,46,52,53,54,57,49,51,44,51,54,46,53,52,50,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,97,108,100,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,57,53,55,56,49,44,51,55,46,49,55,57,54,56,52,93,44,91,45,56,56,46,48,52,50,49,52,50,44,51,55,46,49,55,52,55,53,54,93,44,91,45,56,55,46,56,55,54,57,57,54,44,51,54,46,57,54,48,49,49,54,93,44,91,45,56,55,46,55,51,51,51,54,56,44,51,55,46,48,48,50,49,48,51,93,44,91,45,56,55,46,54,56,48,54,49,55,44,51,55,46,49,52,57,50,51,57,93,44,91,45,56,55,46,55,55,52,54,57,52,44,51,55,46,49,57,56,49,50,55,93,44,91,45,56,55,46,56,49,51,52,49,51,44,51,55,46,51,53,48,54,52,53,93,44,91,45,56,55,46,56,48,49,48,52,54,44,51,55,46,51,55,57,52,52,53,93,44,91,45,56,56,46,48,56,49,48,53,56,44,51,55,46,50,50,51,51,52,55,93,44,91,45,56,56,46,48,57,53,55,56,49,44,51,55,46,49,55,57,54,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,97,114,110,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,55,50,57,51,49,44,51,51,46,52,57,48,52,49,55,93,44,91,45,56,49,46,55,53,55,48,51,53,44,51,51,46,49,57,56,49,52,56,93,44,91,45,56,49,46,55,48,52,54,51,52,44,51,51,46,49,49,54,52,53,93,44,91,45,56,49,46,54,49,52,48,51,51,44,51,51,46,48,57,53,50,53,49,93,44,91,45,56,49,46,53,52,49,56,56,49,44,51,51,46,49,53,56,50,55,57,93,44,91,45,56,49,46,51,54,52,56,53,55,44,51,51,46,49,48,56,48,54,49,93,44,91,45,56,49,46,49,57,51,48,57,57,44,51,51,46,49,49,56,54,54,56,93,44,91,45,56,49,46,50,50,55,55,55,56,44,51,51,46,49,54,50,54,50,50,93,44,91,45,56,49,46,50,50,50,54,55,51,44,51,51,46,52,52,93,44,91,45,56,49,46,51,55,50,57,51,49,44,51,51,46,52,57,48,52,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,101,99,97,116,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,56,51,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,55,57,49,55,55,44,51,53,46,56,49,54,55,56,53,93,44,91,45,56,56,46,49,57,48,52,54,53,44,51,53,46,54,48,57,48,56,56,93,44,91,45,56,56,46,50,52,49,54,55,55,44,51,53,46,52,50,51,50,54,51,93,44,91,45,56,56,46,49,56,57,54,54,49,44,51,53,46,51,56,52,51,48,51,93,44,91,45,56,56,46,48,50,52,55,52,49,44,51,53,46,51,57,50,51,48,55,93,44,91,45,56,56,46,48,48,55,55,48,57,44,51,53,46,52,50,51,51,56,49,93,44,91,45,56,55,46,57,55,52,54,51,44,51,53,46,53,50,49,48,50,53,93,44,91,45,56,56,46,48,51,53,56,51,55,44,51,53,46,54,50,49,56,51,57,93,44,91,45,56,56,46,48,51,52,55,56,56,44,51,53,46,55,49,55,50,54,49,93,44,91,45,56,55,46,57,55,48,55,51,56,44,51,53,46,56,49,53,55,48,53,93,44,91,45,56,56,46,49,55,55,56,53,57,44,51,53,46,56,52,53,56,52,49,93,44,91,45,56,56,46,49,55,57,49,55,55,44,51,53,46,56,49,54,55,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,108,97,99,107,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,50,57,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,52,55,48,49,52,44,52,48,46,53,54,54,57,50,57,93,44,91,45,56,53,46,52,52,52,51,51,44,52,48,46,51,55,57,49,52,93,44,91,45,56,53,46,50,49,57,57,48,49,44,52,48,46,51,55,57,48,51,52,93,44,91,45,56,53,46,50,48,49,49,52,54,44,52,48,46,53,54,55,50,52,50,93,44,91,45,56,53,46,52,52,55,48,49,52,44,52,48,46,53,54,54,57,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,69,116,111,119,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,57,51,57,44,34,98,101,100,115,34,58,55,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,48,54,48,56,54,44,51,52,46,50,48,48,55,53,54,93,44,91,45,56,54,46,51,48,51,53,49,54,44,51,52,46,48,57,57,48,55,51,93,44,91,45,56,54,46,51,50,53,54,50,50,44,51,51,46,57,52,48,49,52,55,93,44,91,45,56,54,46,50,49,53,53,50,53,44,51,51,46,57,56,55,52,50,49,93,44,91,45,56,54,46,48,54,53,50,55,50,44,51,51,46,56,52,50,49,57,56,93,44,91,45,56,53,46,56,56,49,55,54,56,44,51,51,46,57,53,48,50,57,57,93,44,91,45,56,53,46,55,51,56,57,55,53,44,51,51,46,57,54,56,52,54,93,44,91,45,56,53,46,56,52,51,54,49,55,44,51,52,46,50,48,48,48,48,54,93,44,91,45,56,54,46,49,48,54,48,56,54,44,51,52,46,50,48,48,55,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,51,55,52,57,54,50,44,52,51,46,49,57,57,54,52,93,44,91,45,49,49,52,46,51,57,52,54,48,54,44,52,51,46,51,50,54,52,54,55,93,44,91,45,49,49,52,46,53,51,52,52,56,56,44,52,51,46,51,51,51,51,56,51,93,44,91,45,49,49,52,46,53,49,50,52,51,56,44,52,51,46,52,54,48,52,53,52,93,44,91,45,49,49,52,46,54,56,51,49,52,44,52,51,46,53,57,51,51,54,55,93,44,91,45,49,49,52,46,55,48,50,48,53,44,52,51,46,56,48,53,52,49,51,93,44,91,45,49,49,52,46,57,56,57,50,53,56,44,52,51,46,56,53,56,53,54,51,93,44,91,45,49,49,53,46,48,56,51,48,56,57,44,52,51,46,54,48,52,50,57,50,93,44,91,45,49,49,53,46,48,56,54,49,53,53,44,52,51,46,49,57,56,48,54,52,93,44,91,45,49,49,52,46,53,57,52,54,48,53,44,52,51,46,49,57,56,51,52,53,93,44,91,45,49,49,52,46,51,55,52,57,54,50,44,52,51,46,49,57,57,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,82,101,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,49,48,49,44,34,98,101,100,115,34,58,50,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,50,50,49,51,54,44,51,56,46,49,55,51,55,49,51,93,44,91,45,57,56,46,52,55,50,55,57,52,44,51,56,46,49,55,50,55,53,55,93,44,91,45,57,56,46,52,55,50,50,53,55,44,51,55,46,56,50,52,52,57,55,93,44,91,45,57,56,46,52,54,52,56,48,52,44,51,55,46,55,51,50,54,55,53,93,44,91,45,57,55,46,56,48,55,56,50,51,44,51,55,46,55,51,51,56,53,53,93,44,91,45,57,55,46,54,57,56,54,57,50,44,51,55,46,55,51,53,48,53,54,93,44,91,45,57,55,46,55,48,49,57,54,57,44,51,55,46,57,49,49,51,50,53,93,44,91,45,57,55,46,55,48,49,56,52,49,44,51,56,46,49,55,51,56,49,52,93,44,91,45,57,55,46,57,50,50,49,51,54,44,51,56,46,49,55,51,55,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,97,117,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,55,55,54,44,34,98,101,100,115,34,58,50,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,51,57,50,51,50,44,51,53,46,54,53,57,49,49,93,44,91,45,56,55,46,50,57,52,53,51,52,44,51,53,46,52,52,52,54,55,54,93,44,91,45,56,55,46,50,48,54,53,55,56,44,51,53,46,52,51,51,50,48,55,93,44,91,45,56,55,46,49,50,48,56,56,51,44,51,53,46,52,53,53,54,54,93,44,91,45,56,54,46,57,54,48,56,48,52,44,51,53,46,52,49,55,48,50,49,93,44,91,45,56,54,46,56,52,57,53,55,51,44,51,53,46,53,50,53,53,49,53,93,44,91,45,56,54,46,55,56,50,48,49,54,44,51,53,46,55,48,54,53,57,53,93,44,91,45,56,55,46,50,49,53,48,57,57,44,51,53,46,56,53,48,54,53,49,93,44,91,45,56,55,46,50,51,52,49,52,51,44,51,53,46,55,50,52,54,57,49,93,44,91,45,56,55,46,51,51,57,50,51,50,44,51,53,46,54,53,57,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,71,111,115,104,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,51,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,54,53,53,54,51,57,44,52,50,46,54,48,57,52,54,56,93,44,91,45,49,48,52,46,54,53,51,51,51,56,44,52,49,46,54,53,51,48,48,55,93,44,91,45,49,48,52,46,54,53,50,57,57,50,44,52,49,46,53,54,53,48,49,52,93,44,91,45,49,48,52,46,48,53,50,53,52,44,52,49,46,53,54,52,50,55,52,93,44,91,45,49,48,52,46,48,53,50,54,56,56,44,52,49,46,54,57,55,57,53,52,93,44,91,45,49,48,52,46,48,53,50,54,52,53,44,52,50,46,48,48,49,55,49,56,93,44,91,45,49,48,52,46,48,53,50,56,51,56,44,52,50,46,54,49,49,55,54,55,93,44,91,45,49,48,52,46,54,53,53,54,51,57,44,52,50,46,54,48,57,52,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,82,117,115,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,56,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,55,56,55,52,57,44,52,53,46,54,51,56,50,54,52,93,44,91,45,57,49,46,53,52,48,50,57,52,44,52,53,46,54,51,55,54,48,53,93,44,91,45,57,49,46,53,52,49,51,50,50,44,52,53,46,50,57,50,50,50,93,44,91,45,57,48,46,57,50,53,50,50,50,44,52,53,46,50,57,50,48,54,49,93,44,91,45,57,48,46,57,50,53,51,52,51,44,52,53,46,51,55,57,51,53,93,44,91,45,57,48,46,54,55,56,55,55,51,44,52,53,46,51,55,55,57,48,55,93,44,91,45,57,48,46,54,55,56,55,52,57,44,52,53,46,54,51,56,50,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,87,97,117,107,101,115,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,56,56,55,57,44,34,98,101,100,115,34,58,49,48,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,51,53,56,52,51,44,52,51,46,49,57,54,48,52,56,93,44,91,45,56,56,46,53,52,49,53,51,53,44,52,50,46,56,52,50,57,57,54,93,44,91,45,56,56,46,51,48,54,51,56,52,44,52,50,46,56,52,50,48,57,53,93,44,91,45,56,56,46,48,54,57,57,50,52,44,52,50,46,56,52,51,51,50,51,93,44,91,45,56,56,46,48,54,51,51,53,51,44,52,51,46,49,57,50,49,49,55,93,44,91,45,56,56,46,52,49,55,57,56,55,44,52,51,46,49,57,52,54,57,55,93,44,91,45,56,56,46,53,51,53,56,52,51,44,52,51,46,49,57,54,48,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,71,97,114,114,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,52,52,56,56,56,44,51,55,46,55,49,51,48,55,53,93,44,91,45,56,52,46,54,53,56,50,57,54,44,51,55,46,54,51,52,53,48,49,93,44,91,45,56,52,46,52,52,54,55,49,57,44,51,55,46,52,56,53,56,57,51,93,44,91,45,56,52,46,51,52,55,56,48,53,44,51,55,46,53,51,57,48,54,52,93,44,91,45,56,52,46,53,50,53,54,52,51,44,51,55,46,55,54,57,52,57,55,93,44,91,45,56,52,46,55,49,54,57,50,53,44,51,55,46,56,49,53,51,56,57,93,44,91,45,56,52,46,55,52,52,56,56,56,44,51,55,46,55,49,51,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,78,111,114,102,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,56,50,52,57,44,34,98,101,100,115,34,58,49,51,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,49,57,49,49,53,53,44,52,50,46,50,56,51,48,53,57,93,44,91,45,55,49,46,52,55,56,49,49,57,44,52,50,46,49,53,54,55,56,50,93,44,91,45,55,49,46,52,57,56,50,53,57,44,52,50,46,48,49,55,50,55,50,93,44,91,45,55,49,46,51,56,49,50,57,57,44,52,49,46,57,56,53,48,56,52,93,44,91,45,55,49,46,48,56,48,52,56,51,44,52,50,46,48,57,53,53,51,57,93,44,91,45,55,48,46,57,50,52,56,55,55,44,52,50,46,49,53,55,53,56,93,44,91,45,55,48,46,57,54,48,49,57,50,44,52,50,46,50,57,57,52,57,56,93,44,91,45,55,49,46,49,57,49,49,53,53,44,52,50,46,50,56,51,48,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,101,110,100,114,105,99,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,57,52,48,44,34,98,101,100,115,34,58,50,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,57,53,49,50,55,44,51,57,46,56,54,52,56,52,53,93,44,91,45,56,54,46,54,56,55,52,48,54,44,51,57,46,54,51,48,52,51,55,93,44,91,45,56,54,46,54,53,54,54,53,44,51,57,46,54,48,49,51,57,53,93,44,91,45,56,54,46,52,54,53,54,48,53,44,51,57,46,54,48,48,55,54,57,93,44,91,45,56,54,46,51,50,54,51,52,49,44,51,57,46,54,51,50,49,55,55,93,44,91,45,56,54,46,51,50,54,50,57,51,44,51,57,46,57,50,52,48,50,57,93,44,91,45,56,54,46,54,57,53,48,55,49,44,51,57,46,57,50,50,55,55,93,44,91,45,56,54,46,54,57,53,49,50,55,44,51,57,46,56,54,52,56,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,53,53,49,44,34,98,101,100,115,34,58,49,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,57,53,48,55,51,44,51,55,46,57,53,53,51,52,51,93,44,91,45,56,57,46,54,55,52,51,50,49,44,51,55,46,56,48,51,49,53,50,93,44,91,45,56,57,46,53,49,50,48,48,57,44,51,55,46,54,56,53,53,50,53,93,44,91,45,56,57,46,53,50,49,53,54,52,44,51,55,46,53,55,50,49,53,54,93,44,91,45,56,57,46,52,52,56,53,57,56,44,51,55,46,53,57,56,56,50,49,93,44,91,45,56,57,46,49,53,51,54,49,55,44,51,55,46,54,48,48,50,51,55,93,44,91,45,56,57,46,49,53,49,49,55,54,44,51,55,46,56,54,49,57,57,57,93,44,91,45,56,57,46,49,55,55,53,57,55,44,51,55,46,57,53,48,51,49,49,93,44,91,45,56,57,46,53,57,53,48,55,51,44,51,55,46,57,53,53,51,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,71,101,111,114,103,101,116,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,54,48,53,44,34,98,101,100,115,34,58,52,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,51,49,55,48,52,49,44,51,51,46,55,55,57,56,55,56,93,44,91,45,55,57,46,52,48,57,51,51,50,44,51,51,46,54,56,56,56,57,93,44,91,45,55,57,46,52,51,53,55,51,51,44,51,51,46,53,55,50,55,48,50,93,44,91,45,55,57,46,53,57,48,49,49,44,51,51,46,52,52,51,53,52,93,44,91,45,55,57,46,54,55,55,48,49,52,44,51,51,46,51,48,52,57,52,52,93,44,91,45,55,57,46,52,52,54,54,57,57,44,51,51,46,50,49,51,52,53,56,93,44,91,45,55,57,46,50,54,49,56,51,44,51,51,46,48,52,57,55,57,51,93,44,91,45,55,57,46,48,57,49,54,49,52,44,51,51,46,49,53,57,48,53,54,93,44,91,45,55,57,46,49,50,48,50,49,55,44,51,51,46,50,52,54,57,51,50,93,44,91,45,55,57,46,48,56,55,53,56,49,44,51,51,46,51,54,57,50,56,55,93,44,91,45,55,56,46,57,50,54,48,55,53,44,51,51,46,53,55,50,54,53,56,93,44,91,45,55,57,46,49,48,49,48,55,52,44,51,51,46,53,55,50,57,54,57,93,44,91,45,55,57,46,49,57,48,50,54,52,44,51,51,46,55,48,53,55,56,55,93,44,91,45,55,57,46,51,49,55,48,52,49,44,51,51,46,55,55,57,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,72,101,116,116,105,110,103,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,57,54,55,52,52,44,52,54,46,54,51,49,48,50,54,93,44,91,45,49,48,50,46,57,50,55,52,53,49,44,52,54,46,54,51,48,48,50,93,44,91,45,49,48,50,46,57,50,52,53,52,55,44,52,54,46,50,56,49,53,49,56,93,44,91,45,49,48,50,46,52,57,55,54,52,50,44,52,54,46,50,56,51,49,57,53,93,44,91,45,49,48,50,46,52,57,55,49,51,55,44,52,54,46,50,48,53,57,48,52,93,44,91,45,49,48,49,46,57,57,55,57,51,44,52,54,46,50,48,53,51,50,52,93,44,91,45,49,48,50,46,48,52,54,55,56,57,44,52,54,46,50,56,51,55,52,54,93,44,91,45,49,48,50,46,48,53,49,50,52,44,52,54,46,54,51,48,57,49,55,93,44,91,45,49,48,50,46,48,57,54,55,52,52,44,52,54,46,54,51,49,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,71,114,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,49,54,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,53,49,50,50,54,44,51,57,46,52,57,55,55,51,57,93,44,91,45,49,48,57,46,49,48,54,57,55,50,44,51,57,46,52,54,49,57,55,57,93,44,91,45,49,48,57,46,57,53,51,51,52,57,44,51,57,46,52,54,49,56,48,49,93,44,91,45,49,49,48,46,48,50,51,57,54,51,44,51,57,46,52,54,57,50,54,56,93,44,91,45,49,49,48,46,48,50,52,49,49,56,44,51,57,46,52,54,57,50,54,57,93,44,91,45,49,49,48,46,48,50,50,49,54,54,44,51,57,46,51,53,50,48,49,56,93,44,91,45,49,49,48,46,48,55,55,50,55,44,51,57,46,50,55,53,56,54,57,93,44,91,45,49,49,48,46,49,53,54,50,50,50,44,51,57,46,48,51,50,54,53,52,93,44,91,45,49,49,48,46,49,54,50,53,50,57,44,51,56,46,56,54,51,57,50,50,93,44,91,45,49,49,48,46,48,56,49,57,51,57,44,51,56,46,55,53,54,54,54,54,93,44,91,45,49,48,57,46,57,57,52,50,56,51,44,51,56,46,53,50,55,49,49,56,93,44,91,45,49,49,48,46,48,50,53,52,48,50,44,51,56,46,52,57,57,57,56,49,93,44,91,45,49,48,57,46,48,54,48,49,49,57,44,51,56,46,52,57,57,57,56,57,93,44,91,45,49,48,57,46,48,53,48,55,54,53,44,51,57,46,51,54,54,54,55,55,93,44,91,45,49,48,57,46,48,53,49,50,50,54,44,51,57,46,52,57,55,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,84,111,111,101,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,49,56,53,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,52,57,51,53,49,53,44,52,49,46,48,55,54,56,56,56,93,44,91,45,49,49,50,46,55,57,57,51,53,57,44,52,48,46,57,57,57,57,51,57,93,44,91,45,49,49,52,46,48,52,50,48,50,57,44,52,48,46,57,57,57,56,57,54,93,44,91,45,49,49,52,46,48,52,54,54,49,52,44,52,48,46,49,49,54,57,51,54,93,44,91,45,49,49,52,46,48,52,55,48,50,54,44,51,57,46,57,48,54,48,57,55,93,44,91,45,49,49,51,46,50,52,56,52,57,56,44,51,57,46,57,48,52,55,49,52,93,44,91,45,49,49,50,46,51,52,49,57,56,56,44,51,57,46,57,48,52,52,53,56,93,44,91,45,49,49,50,46,49,55,57,56,44,52,48,46,48,49,49,54,53,54,93,44,91,45,49,49,50,46,49,52,54,56,53,54,44,52,48,46,49,55,55,56,49,55,93,44,91,45,49,49,50,46,49,57,56,52,54,49,44,52,48,46,51,49,51,50,48,54,93,44,91,45,49,49,50,46,49,55,50,56,54,50,44,52,48,46,52,54,55,48,54,53,93,44,91,45,49,49,50,46,49,55,53,51,51,55,44,52,48,46,54,48,51,57,56,49,93,44,91,45,49,49,50,46,50,54,48,50,49,54,44,52,48,46,55,54,57,48,57,51,93,44,91,45,49,49,50,46,52,57,51,53,49,53,44,52,49,46,48,55,54,56,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,53,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,53,48,34,44,34,78,65,77,69,34,58,34,72,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,53,56,51,44,34,98,101,100,115,34,58,51,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,51,56,48,50,54,44,51,55,46,48,57,52,51,52,56,93,44,91,45,55,54,46,51,56,52,52,49,57,44,51,54,46,57,53,49,48,53,57,93,44,91,45,55,54,46,51,52,49,56,50,53,44,51,54,46,57,50,52,55,55,50,93,44,91,45,55,54,46,51,51,50,50,53,55,44,51,54,46,57,54,54,48,57,57,93,44,91,45,55,54,46,49,51,51,56,55,50,44,51,55,46,48,52,48,56,56,54,93,44,91,45,55,54,46,49,51,52,57,52,49,44,51,55,46,49,49,55,54,48,51,93,44,91,45,55,54,46,51,57,53,55,57,53,44,51,55,46,49,48,55,49,55,52,93,44,91,45,55,54,46,52,51,56,48,50,54,44,51,55,46,48,57,52,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,117,102,102,97,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,53,48,50,52,56,44,52,52,46,53,57,54,54,52,57,93,44,91,45,57,50,46,48,50,57,49,56,44,52,52,46,53,56,54,50,57,50,93,44,91,45,57,50,46,48,56,51,53,55,50,44,52,52,46,52,48,55,51,51,54,93,44,91,45,57,49,46,57,50,56,50,50,52,44,52,52,46,51,51,53,52,55,51,93,44,91,45,57,49,46,56,53,56,50,52,53,44,52,52,46,49,57,51,48,48,52,93,44,91,45,57,49,46,53,53,57,48,48,52,44,52,52,46,48,50,53,51,49,53,93,44,91,45,57,49,46,54,49,50,51,51,49,44,52,52,46,49,54,56,56,48,57,93,44,91,45,57,49,46,53,50,57,55,52,49,44,52,52,46,50,52,54,55,55,55,93,44,91,45,57,49,46,53,50,57,49,48,49,44,52,52,46,53,57,54,49,57,55,93,44,91,45,57,49,46,54,53,48,50,52,56,44,52,52,46,53,57,54,54,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,70,114,101,100,101,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,49,53,51,44,34,98,101,100,115,34,58,51,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,52,55,48,56,55,44,51,57,46,52,54,54,48,49,50,93,44,91,45,55,56,46,51,52,48,52,49,53,44,51,57,46,51,53,51,54,50,56,93,44,91,45,55,56,46,52,49,57,52,50,50,44,51,57,46,50,53,55,52,55,54,93,44,91,45,55,56,46,52,48,51,57,48,55,44,51,57,46,49,54,55,55,51,56,93,44,91,45,55,56,46,53,48,56,49,51,50,44,51,57,46,48,56,56,54,51,93,44,91,45,55,56,46,53,52,52,49,56,50,44,51,57,46,48,53,54,53,53,57,93,44,91,45,55,56,46,51,49,52,48,56,44,51,57,46,48,48,55,57,57,52,93,44,91,45,55,56,46,49,53,49,54,49,52,44,51,57,46,48,51,54,54,50,57,93,44,91,45,55,56,46,48,51,51,49,57,49,44,51,57,46,50,54,52,54,49,50,93,44,91,45,55,56,46,50,50,56,55,54,54,44,51,57,46,51,57,49,50,51,51,93,44,91,45,55,56,46,51,52,55,48,56,55,44,51,57,46,52,54,54,48,49,50,93,93,44,91,91,45,55,56,46,50,48,48,52,57,55,44,51,57,46,49,56,48,49,54,51,93,44,91,45,55,56,46,49,52,56,56,57,53,44,51,57,46,49,55,53,51,53,50,93,44,91,45,55,56,46,49,55,49,54,50,44,51,57,46,49,52,51,49,55,52,93,44,91,45,55,56,46,50,48,48,52,57,55,44,51,57,46,49,56,48,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,55,54,44,34,98,101,100,115,34,58,50,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,50,56,51,50,54,44,51,57,46,48,57,53,54,55,57,93,44,91,45,56,48,46,55,49,54,56,49,53,44,51,57,46,48,48,56,52,51,93,44,91,45,56,48,46,54,48,53,55,57,57,44,51,56,46,57,48,52,49,54,55,93,44,91,45,56,48,46,52,55,51,55,54,56,44,51,56,46,56,50,57,48,57,56,93,44,91,45,56,48,46,52,53,55,51,51,50,44,51,56,46,55,51,57,49,54,57,93,44,91,45,56,48,46,51,57,51,48,54,51,44,51,56,46,55,50,55,53,55,49,93,44,91,45,56,48,46,51,56,54,57,56,57,44,51,56,46,56,55,52,56,48,56,93,44,91,45,56,48,46,51,49,57,51,52,54,44,51,56,46,57,54,48,57,49,57,93,44,91,45,56,48,46,51,48,48,50,48,57,44,51,57,46,49,48,51,56,53,55,93,44,91,45,56,48,46,53,57,54,49,50,54,44,51,57,46,49,54,55,48,54,57,93,44,91,45,56,48,46,55,50,56,51,50,54,44,51,57,46,48,57,53,54,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,57,49,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,52,54,55,48,51,44,52,56,46,49,55,51,50,50,51,93,44,91,45,57,55,46,48,53,53,53,57,55,44,52,55,46,57,52,57,49,50,57,93,44,91,45,57,54,46,56,56,54,56,52,54,44,52,55,46,54,55,50,48,54,51,93,44,91,45,57,54,46,56,52,56,57,50,51,44,52,55,46,52,57,56,57,57,49,93,44,91,45,57,54,46,48,54,55,54,50,49,44,52,55,46,52,57,57,49,51,54,93,44,91,45,57,53,46,53,53,52,50,52,56,44,52,55,46,52,57,57,56,57,51,93,44,91,45,57,53,46,53,56,50,49,53,53,44,52,55,46,57,51,51,57,54,54,93,44,91,45,57,53,46,55,48,57,54,49,57,44,52,55,46,57,51,53,56,48,53,93,44,91,45,57,53,46,56,51,54,56,50,55,44,52,55,46,56,52,56,50,49,57,93,44,91,45,57,53,46,56,51,55,49,55,55,44,52,55,46,55,54,48,56,57,52,93,44,91,45,57,54,46,51,53,49,55,50,55,44,52,55,46,55,54,48,51,93,44,91,45,57,54,46,52,56,50,48,57,50,44,52,55,46,56,52,55,52,50,56,93,44,91,45,57,54,46,52,56,50,53,53,44,52,55,46,57,54,51,53,57,53,93,44,91,45,57,54,46,53,48,48,56,52,51,44,52,56,46,49,55,52,49,48,56,93,44,91,45,57,55,46,49,52,54,55,48,51,44,52,56,46,49,55,51,50,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,82,101,100,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,54,48,49,55,55,44,52,52,46,54,57,56,53,52,93,44,91,45,57,53,46,51,54,48,52,44,52,52,46,53,52,49,55,54,50,93,44,91,45,57,53,46,53,57,52,56,49,55,44,52,52,46,53,52,50,51,48,53,93,44,91,45,57,53,46,53,57,51,53,55,44,52,52,46,49,57,53,53,51,93,44,91,45,57,53,46,52,54,50,53,52,55,44,52,52,46,49,57,53,57,52,50,93,44,91,45,57,53,46,49,48,56,55,55,55,44,52,52,46,49,57,53,48,52,52,93,44,91,45,57,53,46,49,48,55,52,56,44,52,52,46,50,56,49,55,54,56,93,44,91,45,57,52,46,56,54,54,50,53,57,44,52,52,46,50,56,50,51,55,50,93,44,91,45,57,52,46,56,54,53,56,50,52,44,52,52,46,52,57,56,50,49,56,93,44,91,45,57,53,46,48,49,51,53,57,57,44,52,52,46,53,52,50,56,51,51,93,44,91,45,57,53,46,50,52,48,52,51,57,44,52,52,46,54,54,52,54,48,52,93,44,91,45,57,53,46,51,54,48,49,55,55,44,52,52,46,54,57,56,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,57,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,51,50,55,55,54,44,51,53,46,51,55,53,56,50,52,93,44,91,45,56,57,46,54,52,52,48,53,44,51,52,46,57,57,53,50,57,49,93,44,91,45,56,57,46,51,53,50,54,55,57,44,51,52,46,57,57,51,56,54,51,93,44,91,45,56,57,46,49,57,56,50,56,56,44,51,52,46,57,57,52,52,56,52,93,44,91,45,56,57,46,49,56,51,57,52,52,44,51,53,46,51,57,55,49,50,54,93,44,91,45,56,57,46,52,55,52,49,55,49,44,51,53,46,52,48,51,48,51,57,93,44,91,45,56,57,46,54,51,50,55,55,54,44,51,53,46,51,55,53,56,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,104,97,114,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,50,52,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,53,57,56,56,57,44,51,48,46,49,54,51,52,49,93,44,91,45,57,48,46,51,50,54,54,51,55,44,51,48,46,49,53,48,49,56,56,93,44,91,45,57,48,46,52,53,48,50,49,56,44,51,48,46,48,51,51,49,48,54,93,44,91,45,57,48,46,53,51,56,49,51,50,44,51,48,46,48,49,54,56,56,52,93,44,91,45,57,48,46,53,50,57,54,48,49,44,50,57,46,56,56,52,57,57,55,93,44,91,45,57,48,46,51,55,49,57,55,56,44,50,57,46,55,53,57,50,51,57,93,44,91,45,57,48,46,51,52,54,49,57,49,44,50,57,46,54,57,51,51,48,50,93,44,91,45,57,48,46,50,50,56,49,53,55,44,50,57,46,54,57,50,48,50,56,93,44,91,45,57,48,46,49,54,55,50,57,55,44,50,57,46,56,49,55,52,48,55,93,44,91,45,57,48,46,50,52,48,49,55,51,44,50,57,46,56,54,50,49,49,55,93,44,91,45,57,48,46,50,56,48,50,57,54,44,50,57,46,57,55,50,54,49,56,93,44,91,45,57,48,46,50,53,57,56,56,57,44,51,48,46,49,54,51,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,80,111,105,110,115,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,56,54,55,51,54,44,51,53,46,54,57,57,57,49,52,93,44,91,45,57,49,46,48,51,54,57,54,55,44,51,53,46,55,48,56,52,49,56,93,44,91,45,57,49,46,48,51,57,50,51,44,51,53,46,52,52,52,55,49,55,93,44,91,45,57,48,46,53,48,50,52,50,57,44,51,53,46,52,52,49,55,50,54,93,44,91,45,57,48,46,50,56,54,56,57,57,44,51,53,46,52,51,56,53,55,51,93,44,91,45,57,48,46,50,56,54,55,51,54,44,51,53,46,54,57,57,57,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,71,117,108,102,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,53,53,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,56,57,54,55,57,44,51,48,46,50,48,48,57,55,51,93,44,91,45,56,53,46,51,56,56,54,54,57,44,50,57,46,57,50,52,51,53,57,93,44,91,45,56,53,46,52,52,54,50,56,57,44,50,57,46,57,48,49,48,51,51,93,44,91,45,56,53,46,52,55,52,57,57,54,44,50,57,46,56,51,49,53,52,50,93,44,91,45,56,53,46,51,56,49,54,56,52,44,50,57,46,54,49,50,56,53,51,93,44,91,45,56,53,46,50,52,54,51,49,54,44,50,57,46,54,50,53,48,48,50,93,44,91,45,56,53,46,50,48,54,50,50,54,44,50,57,46,55,49,49,49,56,56,93,44,91,45,56,53,46,48,50,48,53,51,52,44,50,57,46,56,48,55,51,55,51,93,44,91,45,56,53,46,48,50,53,52,51,57,44,50,57,46,57,55,49,51,57,57,93,44,91,45,56,53,46,49,51,53,50,53,52,44,51,48,46,48,52,51,50,55,93,44,91,45,56,53,46,49,49,53,54,54,44,51,48,46,49,57,57,57,55,54,93,44,91,45,56,53,46,51,56,57,54,55,57,44,51,48,46,50,48,48,57,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,97,109,98,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,55,52,48,44,34,98,101,100,115,34,58,49,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,53,53,50,57,50,44,51,54,46,50,56,57,48,57,50,93,44,91,45,56,51,46,51,53,53,49,57,54,44,51,54,46,50,56,50,53,57,93,44,91,45,56,51,46,52,54,55,48,57,55,44,51,54,46,49,55,52,54,56,56,93,44,91,45,56,51,46,50,57,51,54,56,57,44,51,54,46,49,51,56,49,57,51,93,44,91,45,56,51,46,50,51,52,53,56,53,44,51,54,46,48,56,53,48,57,52,93,44,91,45,56,51,46,49,54,54,48,56,53,44,51,54,46,49,56,48,56,57,52,93,44,91,45,56,51,46,48,56,50,51,49,50,44,51,54,46,50,52,50,50,57,54,93,44,91,45,56,51,46,49,53,49,54,56,57,44,51,54,46,51,49,56,49,57,50,93,44,91,45,56,51,46,50,53,53,50,57,50,44,51,54,46,50,56,57,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,51,48,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,56,56,49,49,56,50,44,51,51,46,48,52,57,57,48,49,93,44,91,45,56,54,46,56,55,54,49,49,56,44,51,50,46,56,51,54,50,54,52,93,44,91,45,56,55,46,48,49,57,49,53,55,44,51,50,46,56,51,55,48,51,52,93,44,91,45,56,55,46,48,49,55,55,54,50,44,51,50,46,55,50,57,53,51,50,93,44,91,45,56,54,46,57,49,55,53,57,53,44,51,50,46,54,54,52,49,54,57,93,44,91,45,56,54,46,55,49,52,50,49,57,44,51,50,46,55,48,53,54,57,52,93,44,91,45,56,54,46,52,49,51,49,49,54,44,51,50,46,55,48,55,51,56,54,93,44,91,45,56,54,46,51,55,52,57,55,52,44,51,50,46,55,53,51,53,56,93,44,91,45,56,54,46,52,53,55,48,49,53,44,51,50,46,56,49,51,56,57,57,93,44,91,45,56,54,46,53,49,55,51,52,52,44,51,51,46,48,50,48,53,54,54,93,44,91,45,56,54,46,54,49,48,48,48,51,44,51,51,46,48,55,48,48,48,51,93,44,91,45,56,54,46,56,56,49,49,56,50,44,51,51,46,48,52,57,57,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,53,49,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,49,49,49,50,54,44,51,49,46,49,53,56,48,55,49,93,44,91,45,57,51,46,56,54,53,55,49,49,44,51,48,46,57,52,55,50,49,56,93,44,91,45,57,51,46,57,48,49,52,53,50,44,51,48,46,50,52,50,54,55,50,93,44,91,45,57,51,46,55,48,54,57,57,51,44,51,48,46,50,52,51,55,51,54,93,44,91,45,57,51,46,55,54,52,50,53,50,44,51,48,46,51,51,48,50,50,57,93,44,91,45,57,51,46,55,52,49,54,55,57,44,51,48,46,52,48,50,57,55,53,93,44,91,45,57,51,46,55,51,56,55,56,56,44,51,48,46,53,52,48,57,55,53,93,44,91,45,57,51,46,54,51,49,51,52,53,44,51,48,46,54,55,55,56,55,50,93,44,91,45,57,51,46,53,53,56,53,57,54,44,51,48,46,56,54,56,56,50,50,93,44,91,45,57,51,46,53,50,52,55,51,57,44,51,49,46,48,51,57,48,48,55,93,44,91,45,57,51,46,53,53,50,53,50,52,44,51,49,46,49,56,53,52,48,53,93,44,91,45,57,51,46,54,48,48,51,48,56,44,51,49,46,49,55,54,49,53,56,93,44,91,45,57,51,46,57,49,49,49,50,54,44,51,49,46,49,53,56,48,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,57,34,44,34,78,65,77,69,34,58,34,72,111,99,107,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,54,50,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,49,53,52,52,55,44,51,51,46,56,50,53,49,50,49,93,44,91,45,49,48,50,46,53,57,52,56,51,54,44,51,51,46,51,56,56,52,56,57,93,44,91,45,49,48,50,46,48,55,53,57,50,57,44,51,51,46,51,56,57,53,56,54,93,44,91,45,49,48,50,46,48,56,53,55,51,51,44,51,51,46,56,50,52,54,55,53,93,44,91,45,49,48,50,46,54,49,53,52,52,55,44,51,51,46,56,50,53,49,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,108,100,119,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,50,56,54,44,34,98,101,100,115,34,58,51,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,50,57,48,57,44,51,51,46,49,56,53,51,53,50,93,44,91,45,56,51,46,51,53,55,54,56,53,44,51,50,46,57,50,54,49,52,49,93,44,91,45,56,51,46,49,51,51,56,52,55,44,51,51,46,48,48,55,50,52,56,93,44,91,45,56,51,46,48,55,51,54,52,56,44,51,50,46,57,52,54,53,54,50,93,44,91,45,56,51,46,48,53,50,49,57,55,44,51,51,46,48,56,48,54,56,50,93,44,91,45,56,51,46,48,57,55,54,52,57,44,51,51,46,49,53,49,53,51,54,93,44,91,45,56,51,46,50,55,52,49,48,56,44,51,51,46,49,56,55,50,51,56,93,44,91,45,56,51,46,52,50,57,48,57,44,51,51,46,49,56,53,51,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,84,114,97,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,49,51,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,50,48,56,56,49,44,51,53,46,50,57,50,48,51,55,93,44,91,45,56,51,46,48,48,56,53,51,49,44,51,53,46,48,50,55,51,57,52,93,44,91,45,56,50,46,56,57,55,51,55,51,44,51,53,46,48,53,54,50,49,52,93,44,91,45,56,50,46,55,54,52,53,55,53,44,51,53,46,48,54,56,51,56,93,44,91,45,56,50,46,53,55,52,56,51,57,44,51,53,46,49,52,53,52,52,57,93,44,91,45,56,50,46,54,49,48,49,56,54,44,51,53,46,50,56,56,49,57,57,93,44,91,45,56,50,46,55,52,53,49,51,57,44,51,53,46,52,50,50,57,54,55,93,44,91,45,56,50,46,56,51,50,50,52,52,44,51,53,46,51,49,56,51,50,52,93,44,91,45,56,50,46,57,50,48,56,56,49,44,51,53,46,50,57,50,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,83,117,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,48,57,57,44,34,98,101,100,115,34,58,50,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,54,55,49,53,51,44,51,54,46,52,48,50,48,50,93,44,91,45,56,48,46,56,54,56,55,52,54,44,51,54,46,51,50,54,52,52,55,93,44,91,45,56,48,46,56,55,51,50,48,53,44,51,54,46,50,51,54,51,48,53,93,44,91,45,56,48,46,54,51,49,53,52,52,44,51,54,46,50,56,53,53,56,52,93,44,91,45,56,48,46,52,53,50,51,50,50,44,51,54,46,50,52,49,52,49,57,93,44,91,45,56,48,46,52,53,49,54,57,54,44,51,54,46,50,54,49,53,48,50,93,44,91,45,56,48,46,52,52,48,48,57,56,44,51,54,46,53,53,48,54,53,53,93,44,91,45,56,48,46,54,49,50,48,53,55,44,51,54,46,53,53,55,56,57,56,93,44,91,45,56,48,46,56,51,55,57,53,52,44,51,54,46,53,53,57,49,52,51,93,44,91,45,56,48,46,57,48,49,54,52,49,44,51,54,46,53,54,49,55,54,54,93,44,91,45,56,48,46,57,54,55,49,53,51,44,51,54,46,52,48,50,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,102,102,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,50,56,56,44,34,98,101,100,115,34,58,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,52,53,56,57,53,44,51,49,46,54,49,55,55,52,49,93,44,91,45,56,54,46,49,57,51,57,53,49,44,51,49,46,52,52,48,48,55,50,93,44,91,45,56,54,46,49,57,51,52,55,54,44,51,49,46,49,57,50,50,49,51,93,44,91,45,56,53,46,55,57,49,52,48,50,44,51,49,46,49,57,54,51,52,57,93,44,91,45,56,53,46,55,56,57,49,52,50,44,51,49,46,54,49,55,57,54,52,93,44,91,45,56,54,46,49,52,53,56,57,53,44,51,49,46,54,49,55,55,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,55,57,55,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,51,52,54,51,49,44,52,48,46,51,53,52,50,53,57,93,44,91,45,56,52,46,52,51,50,53,55,53,44,52,48,46,49,57,55,48,51,55,93,44,91,45,56,52,46,48,50,50,57,49,57,44,52,48,46,49,56,51,57,52,53,93,44,91,45,56,52,46,48,49,52,55,54,51,44,52,48,46,50,55,51,52,53,57,93,44,91,45,56,52,46,48,48,50,51,55,50,44,52,48,46,52,56,51,49,49,53,93,44,91,45,56,52,46,51,51,57,49,51,55,44,52,48,46,52,56,49,48,55,54,93,44,91,45,56,52,46,51,51,56,54,44,52,48,46,51,55,57,49,57,57,93,44,91,45,56,52,46,52,51,52,51,56,55,44,52,48,46,51,53,52,53,51,52,93,44,91,45,56,52,46,52,51,52,54,51,49,44,52,48,46,51,53,52,50,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,110,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,50,50,51,48,44,34,98,101,100,115,34,58,51,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,50,54,53,51,56,44,52,51,46,54,56,48,56,48,50,93,44,91,45,49,49,54,46,56,52,52,57,55,56,44,52,51,46,53,57,52,52,93,44,91,45,49,49,54,46,55,56,49,51,51,54,44,52,51,46,52,55,56,54,51,51,93,44,91,45,49,49,54,46,53,49,49,56,57,55,44,52,51,46,50,57,48,53,50,93,44,91,45,49,49,54,46,52,55,51,53,57,55,44,52,51,46,52,53,57,50,49,56,93,44,91,45,49,49,54,46,52,55,51,52,57,50,44,52,51,46,54,51,52,49,48,51,93,44,91,45,49,49,54,46,53,49,50,53,48,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,55,49,50,54,55,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,56,53,51,49,53,52,44,52,51,46,55,57,50,55,49,93,44,91,45,49,49,54,46,57,56,51,56,50,55,44,52,51,46,56,56,48,48,52,54,93,44,91,45,49,49,55,46,48,51,50,50,56,57,44,52,51,46,56,50,56,55,54,55,93,44,91,45,49,49,55,46,48,50,54,53,51,56,44,52,51,46,54,56,48,56,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,68,97,110,105,101,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,49,49,50,48,53,56,44,52,56,46,57,57,57,52,54,93,44,91,45,49,48,54,46,49,53,49,57,48,56,44,52,56,46,56,50,51,57,50,55,93,44,91,45,49,48,54,46,48,50,49,50,53,49,44,52,56,46,56,50,51,57,55,53,93,44,91,45,49,48,54,46,48,49,57,56,50,44,52,56,46,53,54,51,50,50,49,93,44,91,45,49,48,53,46,56,48,52,52,51,54,44,52,56,46,53,54,51,51,53,56,93,44,91,45,49,48,52,46,57,55,51,51,53,52,44,52,56,46,53,54,51,49,57,93,44,91,45,49,48,53,46,48,51,56,53,52,56,44,52,56,46,54,53,48,48,57,57,93,44,91,45,49,48,53,46,48,53,55,54,52,50,44,52,56,46,57,57,57,48,49,50,93,44,91,45,49,48,54,46,49,49,50,48,53,56,44,52,56,46,57,57,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,101,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,56,49,48,50,44,34,98,101,100,115,34,58,49,50,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,56,50,53,53,57,44,51,48,46,54,56,53,51,51,52,93,44,91,45,56,52,46,52,50,48,52,55,52,44,51,48,46,52,54,51,57,48,53,93,44,91,45,56,52,46,54,52,54,52,48,56,44,51,48,46,51,56,56,50,56,49,93,44,91,45,56,52,46,55,49,51,51,53,49,44,51,48,46,51,48,48,49,55,93,44,91,45,56,52,46,50,52,55,54,55,51,44,51,48,46,51,48,51,52,57,51,93,44,91,45,56,52,46,48,55,53,53,51,57,44,51,48,46,50,55,51,54,49,55,93,44,91,45,56,52,46,48,55,52,54,57,49,44,51,48,46,52,51,52,51,48,50,93,44,91,45,56,51,46,57,55,56,54,48,55,44,51,48,46,53,50,50,54,56,55,93,44,91,45,56,52,46,48,48,55,52,53,52,44,51,48,46,54,55,50,49,50,55,93,44,91,45,56,52,46,48,56,51,55,53,55,44,51,48,46,54,55,53,56,48,52,93,44,91,45,56,52,46,50,56,50,53,53,57,44,51,48,46,54,56,53,51,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,80,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,53,49,50,44,34,98,101,100,115,34,58,50,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,50,50,49,50,44,51,54,46,49,53,57,57,48,51,93,44,91,45,57,54,46,56,49,57,48,48,53,44,51,54,46,49,53,56,56,56,54,93,44,91,45,57,54,46,57,50,53,48,54,57,44,51,54,46,50,52,54,52,55,52,93,44,91,45,57,55,46,49,52,48,57,54,56,44,51,54,46,50,52,54,52,51,53,93,44,91,45,57,55,46,49,52,48,54,54,56,44,51,54,46,49,53,57,50,51,49,93,44,91,45,57,55,46,51,53,52,49,51,50,44,51,54,46,49,53,57,48,55,50,93,44,91,45,57,55,46,51,50,51,54,50,44,51,54,46,48,49,48,56,55,55,93,44,91,45,57,55,46,49,52,48,53,56,51,44,51,53,46,57,52,49,57,57,49,93,44,91,45,57,54,46,54,49,57,54,53,53,44,51,53,46,57,52,49,53,55,49,93,44,91,45,57,54,46,54,50,50,49,50,44,51,54,46,49,53,57,57,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,111,118,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,53,49,44,34,98,101,100,115,34,58,49,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,57,51,57,53,49,44,51,49,46,52,52,48,48,55,50,93,44,91,45,56,54,46,51,57,56,53,51,54,44,51,49,46,52,53,49,51,50,53,93,44,91,45,56,54,46,52,57,57,50,49,51,44,51,49,46,53,50,53,51,51,49,93,44,91,45,56,54,46,55,48,49,53,53,52,44,51,49,46,53,50,51,57,52,54,93,44,91,45,56,54,46,55,48,48,50,56,50,44,51,49,46,49,57,50,50,49,55,93,44,91,45,56,54,46,54,56,56,51,49,55,44,51,48,46,57,57,52,53,48,55,93,44,91,45,56,54,46,51,56,56,54,52,54,44,51,48,46,57,57,52,49,56,49,93,44,91,45,56,54,46,49,56,55,50,52,54,44,51,48,46,57,57,52,48,50,49,93,44,91,45,56,54,46,49,57,51,52,55,54,44,51,49,46,49,57,50,50,49,51,93,44,91,45,56,54,46,49,57,51,57,53,49,44,51,49,46,52,52,48,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,49,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,56,50,56,53,51,44,51,56,46,57,48,52,54,57,55,93,44,91,45,56,54,46,54,56,51,49,48,50,44,51,56,46,54,56,54,53,54,49,93,44,91,45,56,54,46,51,48,56,55,48,49,44,51,56,46,54,56,56,49,48,49,93,44,91,45,56,54,46,50,55,53,50,56,49,44,51,56,46,55,54,51,55,57,53,93,44,91,45,56,54,46,51,49,55,52,55,52,44,51,56,46,57,57,48,56,55,93,44,91,45,56,54,46,54,56,50,50,55,55,44,51,56,46,57,57,50,52,48,52,93,44,91,45,56,54,46,54,56,50,56,53,51,44,51,56,46,57,48,52,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,71,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,50,54,54,49,44,51,56,46,48,48,49,48,49,53,93,44,91,45,49,48,48,46,54,54,52,49,54,54,44,51,56,46,48,48,50,53,51,93,44,91,45,49,48,48,46,54,53,50,50,53,49,44,51,55,46,55,51,54,50,55,53,93,44,91,45,49,48,48,46,54,53,50,54,52,50,44,51,55,46,52,55,52,56,52,56,93,44,91,45,49,48,48,46,50,49,54,50,50,57,44,51,55,46,52,55,53,49,57,93,44,91,45,49,48,48,46,50,50,55,48,57,44,51,55,46,57,49,52,48,49,56,93,44,91,45,49,48,48,46,50,50,54,54,49,44,51,56,46,48,48,49,48,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,97,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,57,54,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,51,57,54,55,52,44,51,55,46,53,52,53,50,51,50,93,44,91,45,56,53,46,48,55,51,55,55,50,44,51,55,46,52,49,51,54,54,57,93,44,91,45,56,53,46,49,54,53,49,55,52,44,51,55,46,51,49,48,51,57,54,93,44,91,45,56,53,46,48,53,54,56,57,56,44,51,55,46,50,53,55,48,52,49,93,44,91,45,56,53,46,48,52,51,51,49,54,44,51,55,46,49,56,54,48,50,56,93,44,91,45,56,52,46,57,48,49,49,49,50,44,51,55,46,49,49,54,50,57,55,93,44,91,45,56,52,46,55,50,48,55,49,50,44,51,55,46,50,51,56,51,50,56,93,44,91,45,56,52,46,55,50,50,56,50,54,44,51,55,46,51,54,48,48,52,51,93,44,91,45,56,52,46,56,53,48,56,49,54,44,51,55,46,52,50,55,49,52,51,93,44,91,45,56,52,46,56,52,55,52,51,52,44,51,55,46,53,52,56,51,52,51,93,44,91,45,56,53,46,48,51,57,54,55,52,44,51,55,46,53,52,53,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,77,101,116,99,97,108,102,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,52,52,50,50,49,44,51,55,46,49,54,57,56,49,51,93,44,91,45,56,53,46,55,51,57,50,53,53,44,51,54,46,56,52,49,52,55,54,93,44,91,45,56,53,46,53,57,54,50,49,52,44,51,54,46,56,49,56,48,51,57,93,44,91,45,56,53,46,52,53,49,56,51,44,51,54,46,57,51,56,49,51,56,93,44,91,45,56,53,46,53,50,54,56,56,49,44,51,55,46,49,48,57,52,53,93,44,91,45,56,53,46,54,56,54,52,56,50,44,51,55,46,49,56,50,52,50,55,93,44,91,45,56,53,46,55,52,52,50,50,49,44,51,55,46,49,54,57,56,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,55,34,44,34,78,65,77,69,34,58,34,82,117,115,115,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,52,51,51,49,54,44,51,55,46,49,56,54,48,50,56,93,44,91,45,56,53,46,50,48,53,56,51,49,44,51,54,46,57,57,54,56,54,50,93,44,91,45,56,53,46,50,51,50,48,50,54,44,51,54,46,57,50,53,48,54,57,93,44,91,45,56,53,46,50,49,53,52,48,53,44,51,54,46,56,53,52,52,54,55,93,44,91,45,56,53,46,48,54,52,51,48,55,44,51,54,46,56,53,56,55,52,51,93,44,91,45,56,52,46,56,51,53,55,49,50,44,51,54,46,57,57,55,54,49,50,93,44,91,45,56,52,46,57,48,49,49,49,50,44,51,55,46,49,49,54,50,57,55,93,44,91,45,56,53,46,48,52,51,51,49,54,44,51,55,46,49,56,54,48,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,101,97,117,114,101,103,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,55,54,57,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,55,56,52,53,51,44,51,48,46,56,55,56,49,55,53,93,44,91,45,57,51,46,52,50,49,49,48,50,44,51,48,46,56,56,51,49,51,56,93,44,91,45,57,51,46,53,53,56,53,57,54,44,51,48,46,56,54,56,56,50,50,93,44,91,45,57,51,46,54,51,49,51,52,53,44,51,48,46,54,55,55,56,55,50,93,44,91,45,57,51,46,55,51,56,55,56,56,44,51,48,46,53,52,48,57,55,53,93,44,91,45,57,51,46,55,52,49,54,55,57,44,51,48,46,52,48,50,57,55,53,93,44,91,45,57,51,46,49,51,49,49,48,57,44,51,48,46,52,48,51,48,53,55,93,44,91,45,57,51,46,49,51,49,49,53,53,44,51,48,46,52,50,51,54,49,50,93,44,91,45,57,51,46,49,51,48,51,56,44,51,48,46,53,57,55,55,55,55,93,44,91,45,57,50,46,57,55,57,49,55,44,51,48,46,53,57,56,51,52,93,44,91,45,57,50,46,57,55,56,52,53,51,44,51,48,46,56,55,56,49,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,83,111,109,101,114,115,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,55,49,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,48,50,51,49,56,55,44,52,54,46,53,55,51,52,56,55,93,44,91,45,55,48,46,48,53,54,53,53,54,44,52,54,46,52,49,54,53,53,93,44,91,45,55,48,46,50,48,56,57,56,57,44,52,54,46,51,50,57,53,50,55,93,44,91,45,55,48,46,50,57,48,52,48,53,44,52,54,46,49,56,53,48,56,55,93,44,91,45,55,48,46,51,49,49,53,55,44,52,53,46,57,54,54,51,53,57,93,44,91,45,55,48,46,50,53,52,48,57,44,52,53,46,57,48,50,50,56,54,93,44,91,45,55,48,46,52,49,54,57,55,55,44,52,53,46,55,57,53,51,56,50,93,44,91,45,55,48,46,52,48,48,52,57,52,44,52,53,46,55,49,57,55,52,51,93,44,91,45,55,48,46,53,53,50,56,53,51,44,52,53,46,54,54,55,56,57,57,93,44,91,45,55,48,46,52,49,56,53,49,57,44,52,53,46,49,52,52,48,48,53,93,44,91,45,55,48,46,50,57,51,56,50,54,44,52,53,46,49,48,57,57,48,51,93,44,91,45,55,48,46,49,53,57,51,55,53,44,52,53,46,49,50,56,51,57,54,93,44,91,45,55,48,46,49,49,48,51,54,53,44,52,52,46,57,52,55,51,49,49,93,44,91,45,55,48,46,48,51,51,50,55,44,52,52,46,56,54,52,53,52,93,44,91,45,54,57,46,57,57,54,49,57,49,44,52,52,46,54,55,55,52,57,55,93,44,91,45,54,57,46,57,51,48,52,53,49,44,52,52,46,54,49,48,56,53,50,93,44,91,45,54,57,46,54,48,53,55,52,54,44,52,52,46,53,55,55,50,54,52,93,44,91,45,54,57,46,54,51,51,49,49,56,44,52,52,46,55,48,48,51,55,51,93,44,91,45,54,57,46,52,55,49,55,49,50,44,52,52,46,54,57,50,56,57,57,93,44,91,45,54,57,46,50,54,54,55,56,53,44,52,52,46,55,50,49,57,50,56,93,44,91,45,54,57,46,51,53,53,54,54,55,44,52,53,46,48,55,51,52,54,57,93,44,91,45,54,57,46,54,50,48,57,54,55,44,52,53,46,48,49,48,57,53,54,93,44,91,45,54,57,46,55,55,57,57,50,56,44,52,53,46,53,52,50,55,54,54,93,44,91,45,54,57,46,55,48,49,54,56,56,44,52,53,46,54,50,55,57,56,50,93,44,91,45,54,57,46,55,56,53,50,53,55,44,52,53,46,54,57,50,55,56,93,44,91,45,54,57,46,55,48,52,50,54,53,44,52,53,46,56,52,54,49,51,54,93,44,91,45,54,57,46,55,50,56,53,55,55,44,52,53,46,57,55,54,56,56,50,93,44,91,45,54,57,46,55,50,49,49,48,57,44,52,54,46,53,55,52,48,53,51,93,44,91,45,55,48,46,48,50,51,49,56,55,44,52,54,46,53,55,51,52,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,105,109,97,114,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,50,48,56,57,44,51,54,46,57,57,51,48,49,54,93,44,91,45,49,48,51,46,48,48,50,51,50,57,44,51,55,46,48,48,48,49,53,93,44,91,45,49,48,51,46,48,48,50,51,53,57,44,51,54,46,53,48,48,53,53,49,93,44,91,45,49,48,50,46,49,54,50,52,54,51,44,51,54,46,53,48,48,51,50,54,93,44,91,45,49,48,50,46,48,51,50,51,51,56,44,51,54,46,53,48,48,53,55,53,93,44,91,45,49,48,50,46,48,50,56,50,48,52,44,51,54,46,57,57,51,49,48,50,93,44,91,45,49,48,50,46,48,52,50,48,56,57,44,51,54,46,57,57,51,48,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,77,101,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,57,48,56,53,52,44,51,56,46,48,52,53,55,51,53,93,44,91,45,56,54,46,49,53,49,50,56,53,44,51,55,46,55,57,56,56,55,56,93,44,91,45,56,54,46,48,48,55,52,51,50,44,51,55,46,56,49,56,52,51,57,93,44,91,45,56,53,46,57,57,56,57,53,50,44,51,55,46,57,57,57,54,53,52,93,44,91,45,56,54,46,49,55,56,57,51,44,51,56,46,48,49,48,56,49,93,44,91,45,56,54,46,50,54,55,55,54,57,44,51,56,46,48,53,55,49,55,49,93,44,91,45,56,54,46,51,50,57,54,44,51,56,46,49,56,49,56,48,53,93,44,91,45,56,54,46,52,54,49,48,50,50,44,51,56,46,49,50,49,48,56,55,93,44,91,45,56,54,46,52,57,48,56,53,52,44,51,56,46,48,52,53,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,78,101,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,51,56,56,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,56,57,50,48,50,44,51,55,46,57,57,48,54,53,52,93,44,91,45,56,53,46,54,52,51,50,53,52,44,51,55,46,56,51,52,48,51,51,93,44,91,45,56,53,46,55,51,55,55,55,55,44,51,55,46,56,49,49,55,57,93,44,91,45,56,53,46,54,56,48,52,56,56,44,51,55,46,55,51,50,50,56,52,93,44,91,45,56,53,46,53,57,50,48,56,56,44,51,55,46,54,57,51,52,55,57,93,44,91,45,56,53,46,54,49,56,48,55,49,44,51,55,46,53,52,48,54,49,49,93,44,91,45,56,53,46,53,50,49,50,57,44,51,55,46,53,53,52,51,52,51,93,44,91,45,56,53,46,52,48,49,55,56,52,44,51,55,46,55,51,48,54,53,56,93,44,91,45,56,53,46,50,57,48,50,56,52,44,51,55,46,56,51,49,49,56,50,93,44,91,45,56,53,46,49,53,50,55,57,55,44,51,55,46,56,57,55,54,54,49,93,44,91,45,56,53,46,49,54,55,56,51,52,44,51,55,46,57,55,49,56,48,57,93,44,91,45,56,53,46,51,57,57,56,55,49,44,51,55,46,57,51,57,57,53,54,93,44,91,45,56,53,46,52,56,57,50,48,50,44,51,55,46,57,57,48,54,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,79,119,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,55,52,53,56,51,44,51,56,46,53,57,54,56,51,56,93,44,91,45,56,53,46,48,50,57,56,56,56,44,51,56,46,53,49,48,55,54,53,93,44,91,45,56,52,46,56,56,48,50,52,56,44,51,56,46,52,49,54,49,56,93,44,91,45,56,52,46,56,55,48,52,56,50,44,51,56,46,51,53,54,55,53,49,93,44,91,45,56,52,46,55,52,48,53,57,52,44,51,56,46,51,53,50,52,49,53,93,44,91,45,56,52,46,53,56,48,53,51,57,44,51,56,46,52,55,51,48,51,57,93,44,91,45,56,52,46,55,55,52,51,50,50,44,51,56,46,54,49,56,53,57,52,93,44,91,45,56,52,46,55,56,53,55,56,56,44,51,56,46,55,50,48,52,53,57,93,44,91,45,56,52,46,57,51,52,53,51,54,44,51,56,46,54,54,50,49,51,93,44,91,45,56,53,46,48,55,52,53,56,51,44,51,56,46,53,57,54,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,80,101,109,105,115,99,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,51,49,44,34,98,101,100,115,34,58,49,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,54,49,51,49,44,51,54,46,51,56,56,56,48,51,93,44,91,45,56,57,46,57,53,57,51,55,54,44,51,53,46,57,57,57,49,51,49,93,44,91,45,56,57,46,55,51,51,48,57,53,44,51,54,46,48,48,48,54,48,56,93,44,91,45,56,57,46,54,50,57,52,53,51,44,51,54,46,49,56,53,51,56,50,93,44,91,45,56,57,46,53,51,54,52,52,49,44,51,54,46,50,55,50,56,50,55,93,44,91,45,56,57,46,53,52,53,48,48,54,44,51,54,46,51,51,54,56,48,57,93,44,91,45,56,57,46,54,49,49,51,48,56,44,51,54,46,52,49,49,50,55,51,93,44,91,45,56,57,46,57,54,49,51,49,44,51,54,46,51,56,56,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,78,97,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,52,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,56,54,53,56,52,44,52,49,46,51,57,51,56,57,56,93,44,91,45,57,56,46,50,55,53,52,48,56,44,52,49,46,50,54,52,51,52,49,93,44,91,45,57,56,46,48,53,51,49,51,55,44,52,49,46,50,57,51,49,50,51,93,44,91,45,57,55,46,55,48,53,52,57,55,44,52,49,46,51,48,57,49,51,52,93,44,91,45,57,55,46,55,48,51,55,54,53,44,52,49,46,51,57,52,56,55,54,93,44,91,45,57,55,46,55,48,51,54,50,55,44,52,49,46,53,50,54,55,57,54,93,44,91,45,57,55,46,56,50,57,56,52,54,44,52,49,46,53,50,54,49,55,52,93,44,91,45,57,56,46,48,57,57,53,50,51,44,52,49,46,52,56,48,55,55,55,93,44,91,45,57,56,46,50,57,49,51,52,52,44,52,49,46,52,56,48,55,50,55,93,44,91,45,57,56,46,50,57,49,52,49,57,44,52,49,46,51,57,51,56,57,52,93,44,91,45,57,56,46,50,56,54,53,56,52,44,52,49,46,51,57,51,56,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,56,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,56,34,44,34,78,65,77,69,34,58,34,77,101,110,111,109,105,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,52,49,49,53,57,44,52,53,46,49,49,55,51,52,54,93,44,91,45,56,56,46,57,56,50,49,53,57,44,52,53,46,49,49,56,48,50,54,93,44,91,45,56,56,46,57,56,49,54,56,44,52,53,46,48,50,56,57,49,55,93,44,91,45,56,56,46,57,56,49,51,49,57,44,52,52,46,57,52,50,55,52,53,93,44,91,45,56,56,46,55,51,53,53,52,56,44,52,52,46,57,52,51,49,55,56,93,44,91,45,56,56,46,55,51,54,49,57,52,44,52,52,46,56,53,54,51,55,54,93,44,91,45,56,56,46,52,56,57,49,52,57,44,52,52,46,56,53,53,52,52,53,93,44,91,45,56,56,46,52,56,51,55,51,50,44,52,53,46,49,49,54,56,56,55,93,44,91,45,56,56,46,54,52,49,49,53,57,44,52,53,46,49,49,55,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,54,53,34,44,34,78,65,77,69,34,58,34,80,97,110,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,52,52,48,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,57,49,56,49,56,44,51,50,46,51,57,52,49,51,55,93,44,91,45,57,52,46,53,56,48,53,44,51,50,46,50,48,49,51,54,51,93,44,91,45,57,52,46,53,57,57,57,55,56,44,51,49,46,57,55,51,49,57,51,93,44,91,45,57,52,46,53,49,49,52,51,49,44,51,49,46,57,55,51,57,56,52,93,44,91,45,57,52,46,48,49,53,54,51,44,51,49,46,57,55,57,56,53,54,93,44,91,45,57,52,46,48,52,50,53,57,56,44,51,50,46,49,57,54,48,48,53,93,44,91,45,57,52,46,48,52,50,57,48,49,44,51,50,46,51,57,50,50,56,51,93,44,91,45,57,52,46,51,53,52,50,57,52,44,51,50,46,51,50,57,50,48,57,93,44,91,45,57,52,46,52,57,49,56,49,56,44,51,50,46,51,57,52,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,97,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,55,55,57,50,52,44,51,56,46,49,57,50,49,49,56,93,44,91,45,56,51,46,56,56,49,51,53,51,44,51,56,46,49,51,54,53,49,55,93,44,91,45,56,51,46,55,53,57,52,51,44,51,55,46,57,57,56,55,51,49,93,44,91,45,56,51,46,52,57,56,56,52,54,44,51,56,46,48,53,48,54,50,93,44,91,45,56,51,46,54,51,53,49,57,53,44,51,56,46,49,56,55,53,50,53,93,44,91,45,56,51,46,56,52,56,51,53,53,44,51,56,46,50,57,54,57,52,57,93,44,91,45,56,51,46,57,55,55,57,50,52,44,51,56,46,49,57,50,49,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,56,54,51,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,50,56,53,49,50,44,51,50,46,48,56,52,52,55,53,93,44,91,45,57,54,46,48,53,50,55,56,54,44,51,50,46,48,48,53,56,57,53,93,44,91,45,57,53,46,57,56,51,52,52,57,44,51,49,46,55,56,57,57,55,57,93,44,91,45,57,53,46,56,55,53,57,51,55,44,51,49,46,55,53,53,53,48,51,93,44,91,45,57,53,46,55,56,55,51,44,51,49,46,54,49,56,51,56,53,93,44,91,45,57,53,46,55,51,57,50,55,57,44,51,49,46,53,48,52,48,53,54,93,44,91,45,57,53,46,54,53,49,55,54,52,44,51,49,46,53,52,49,55,57,49,93,44,91,45,57,53,46,50,55,51,50,48,51,44,51,49,46,53,57,50,56,56,54,93,44,91,45,57,53,46,50,56,57,54,54,49,44,51,49,46,54,56,51,57,57,55,93,44,91,45,57,53,46,51,54,54,49,56,55,44,51,49,46,55,50,54,55,53,51,93,44,91,45,57,53,46,52,52,54,48,50,52,44,51,49,46,56,52,55,57,56,55,93,44,91,45,57,53,46,52,50,56,53,49,50,44,51,50,46,48,56,52,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,97,114,111,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,49,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,55,48,50,57,55,44,51,56,46,50,52,54,53,55,54,93,44,91,45,55,55,46,54,52,50,53,49,56,44,51,55,46,57,57,48,54,56,56,93,44,91,45,55,55,46,51,52,53,50,49,53,44,51,55,46,55,56,57,49,55,53,93,44,91,45,55,55,46,49,56,49,52,49,56,44,51,55,46,56,57,49,54,53,52,93,44,91,45,55,55,46,48,55,48,49,49,53,44,51,55,46,57,54,52,55,55,93,44,91,45,55,55,46,49,55,48,49,44,51,56,46,48,55,57,53,52,51,93,44,91,45,55,55,46,49,49,53,57,57,55,44,51,56,46,49,52,57,57,51,49,93,44,91,45,55,55,46,51,50,54,54,57,50,44,51,56,46,50,52,53,49,51,54,93,44,91,45,55,55,46,51,55,48,50,57,55,44,51,56,46,50,52,54,53,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,83,105,111,117,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,56,50,53,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,53,52,57,54,57,44,52,51,46,50,53,57,57,53,49,93,44,91,45,57,54,46,52,55,54,55,50,57,44,52,51,46,50,50,49,57,56,55,93,44,91,45,57,54,46,52,53,52,49,51,44,52,51,46,48,56,51,51,56,93,44,91,45,57,54,46,53,49,51,54,56,49,44,52,51,46,48,52,55,48,51,93,44,91,45,57,54,46,53,51,56,52,53,56,44,52,50,46,57,48,56,55,55,49,93,44,91,45,57,53,46,56,53,57,51,55,55,44,52,50,46,57,48,57,48,57,55,93,44,91,45,57,53,46,56,54,49,57,49,52,44,52,51,46,50,53,55,53,54,54,93,44,91,45,57,54,46,53,53,52,57,54,57,44,52,51,46,50,53,57,57,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,71,108,101,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,57,55,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,57,51,55,54,53,52,44,51,57,46,55,57,56,49,53,54,93,44,91,45,49,50,50,46,56,56,53,51,53,50,44,51,57,46,53,56,48,49,48,56,93,44,91,45,49,50,50,46,55,51,53,54,51,57,44,51,57,46,53,56,48,54,54,56,93,44,91,45,49,50,50,46,55,51,57,48,54,50,44,51,57,46,51,56,51,50,54,54,93,44,91,45,49,50,50,46,49,51,54,48,48,54,44,51,57,46,51,56,53,52,57,52,93,44,91,45,49,50,50,46,48,48,56,56,53,55,44,51,57,46,52,49,51,53,54,55,93,44,91,45,49,50,49,46,56,57,48,48,49,51,44,51,57,46,51,56,51,56,54,52,93,44,91,45,49,50,49,46,56,53,54,53,51,50,44,51,57,46,53,51,54,57,48,52,93,44,91,45,49,50,49,46,57,57,52,48,50,49,44,51,57,46,53,51,51,57,50,54,93,44,91,45,49,50,49,46,57,55,52,55,57,52,44,51,57,46,54,55,53,52,56,55,93,44,91,45,49,50,50,46,48,52,54,52,55,49,44,51,57,46,55,57,55,54,52,56,93,44,91,45,49,50,50,46,57,51,55,54,53,52,44,51,57,46,55,57,56,49,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,53,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,49,48,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,111,117,105,115,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,49,50,55,51,44,34,98,101,100,115,34,58,50,56,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,54,54,53,55,52,44,51,56,46,55,55,50,52,52,56,93,44,91,45,57,48,46,50,53,49,55,52,53,44,51,56,46,55,49,56,56,56,55,93,44,91,45,57,48,46,51,50,48,53,48,52,44,51,56,46,53,57,52,49,55,55,93,44,91,45,57,48,46,50,53,55,52,49,51,44,51,56,46,53,51,49,56,53,50,93,44,91,45,57,48,46,49,56,49,53,52,51,44,51,56,46,54,54,48,48,54,50,93,44,91,45,57,48,46,49,54,54,53,55,52,44,51,56,46,55,55,50,52,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,70,97,110,110,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,50,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,50,49,56,50,49,44,51,52,46,57,56,56,52,48,56,93,44,91,45,56,52,46,54,50,49,52,56,51,44,51,52,46,57,56,56,51,50,57,93,44,91,45,56,52,46,54,49,56,54,51,55,44,51,52,46,56,53,53,51,57,56,93,44,91,45,56,52,46,52,50,57,48,57,51,44,51,52,46,56,53,53,48,51,54,93,44,91,45,56,52,46,51,49,52,54,53,51,44,51,52,46,56,48,55,51,50,56,93,44,91,45,56,52,46,49,57,54,55,53,52,44,51,52,46,54,49,55,57,50,52,93,44,91,45,56,52,46,49,56,56,53,53,55,44,51,52,46,54,48,50,54,57,50,93,44,91,45,56,52,46,49,53,56,48,51,53,44,51,52,46,54,52,56,50,52,51,93,44,91,45,56,52,46,49,48,51,54,51,44,51,52,46,55,50,55,56,51,55,93,44,91,45,56,52,46,49,50,57,52,52,56,44,51,52,46,57,56,55,53,49,52,93,44,91,45,56,52,46,51,50,49,56,50,49,44,51,52,46,57,56,56,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,50,54,50,52,52,44,52,53,46,50,57,55,54,52,55,93,44,91,45,57,55,46,50,50,54,50,56,49,44,52,53,46,49,53,49,56,50,54,93,44,91,45,57,54,46,56,56,51,57,52,56,44,52,53,46,49,53,48,50,50,52,93,44,91,45,57,54,46,56,56,50,51,52,53,44,52,52,46,57,55,54,56,55,93,44,91,45,57,54,46,52,53,50,48,51,53,44,52,52,46,57,55,55,54,53,93,44,91,45,57,54,46,52,53,50,57,52,55,44,52,53,46,50,54,56,57,50,53,93,44,91,45,57,54,46,52,55,48,52,55,53,44,52,53,46,51,50,54,53,52,53,93,44,91,45,57,54,46,57,57,50,57,52,54,44,52,53,46,51,50,54,56,56,93,44,91,45,57,55,46,50,50,54,50,52,52,44,52,53,46,50,57,55,54,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,57,53,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,55,56,55,55,56,44,52,53,46,57,51,53,56,54,51,93,44,91,45,57,55,46,57,55,57,53,57,50,44,52,53,46,53,56,56,52,56,51,93,44,91,45,57,55,46,51,55,51,51,54,54,44,52,53,46,53,56,55,54,51,52,93,44,91,45,57,55,46,50,50,55,48,56,57,44,52,53,46,53,53,56,49,53,56,93,44,91,45,57,55,46,50,50,56,50,57,49,44,52,53,46,57,51,53,51,56,51,93,44,91,45,57,55,46,57,55,56,55,55,56,44,52,53,46,57,51,53,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,84,104,117,114,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,54,56,52,44,34,98,101,100,115,34,58,52,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,50,48,49,56,57,49,44,52,55,46,48,56,53,48,53,57,93,44,91,45,49,50,51,46,49,53,56,51,54,52,44,52,54,46,57,57,53,56,55,49,93,44,91,45,49,50,51,46,49,54,48,53,56,56,44,52,54,46,55,57,51,51,56,51,93,44,91,45,49,50,51,46,49,54,48,57,48,57,44,52,54,46,55,54,52,51,51,93,44,91,45,49,50,50,46,50,48,51,49,49,53,44,52,54,46,55,54,51,48,54,49,93,44,91,45,49,50,50,46,52,57,48,56,56,56,44,52,54,46,56,54,55,52,53,50,93,44,91,45,49,50,50,46,54,51,56,50,49,49,44,52,54,46,57,55,56,49,51,57,93,44,91,45,49,50,50,46,56,50,48,53,55,54,44,52,55,46,49,57,52,50,50,93,44,91,45,49,50,51,46,48,48,50,52,51,53,44,52,55,46,49,53,49,51,48,50,93,44,91,45,49,50,51,46,48,55,53,48,50,54,44,52,55,46,48,56,52,55,56,55,93,44,91,45,49,50,51,46,50,48,49,56,57,49,44,52,55,46,48,56,53,48,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,54,48,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,56,52,57,50,49,44,52,50,46,56,53,48,51,54,56,93,44,91,45,57,55,46,54,51,53,52,52,44,52,50,46,56,53,49,53,51,50,93,44,91,45,57,55,46,56,55,53,53,51,49,44,52,50,46,56,53,56,54,53,54,93,44,91,45,57,56,46,48,49,51,48,55,50,44,52,50,46,55,54,50,50,49,57,93,44,91,45,57,56,46,49,53,51,49,48,55,44,52,50,46,56,51,56,57,56,54,93,44,91,45,57,56,46,51,48,57,55,55,49,44,52,50,46,56,56,50,54,48,53,93,44,91,45,57,56,46,51,48,53,49,52,57,44,52,50,46,55,54,49,50,48,55,93,44,91,45,57,56,46,51,48,48,50,51,53,44,52,50,46,52,51,54,57,49,51,93,44,91,45,57,55,46,56,51,52,52,51,49,44,52,50,46,52,51,55,54,56,52,93,44,91,45,57,55,46,52,56,53,50,57,56,44,52,50,46,52,51,56,53,55,56,93,44,91,45,57,55,46,52,56,52,57,50,49,44,52,50,46,56,53,48,51,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,86,97,108,101,110,99,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,57,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,49,49,55,56,49,44,51,52,46,56,55,48,50,53,50,93,44,91,45,49,48,54,46,52,50,57,52,56,54,44,51,52,46,57,48,51,52,93,44,91,45,49,48,54,46,54,56,53,56,48,49,44,51,52,46,57,48,54,51,53,56,93,44,91,45,49,48,54,46,55,50,48,54,54,54,44,51,52,46,56,55,48,48,53,51,93,44,91,45,49,48,55,46,48,50,52,52,56,49,44,51,52,46,56,54,57,57,53,51,93,44,91,45,49,48,55,46,48,54,54,53,54,50,44,51,52,46,57,53,55,49,57,93,44,91,45,49,48,55,46,50,48,50,56,56,50,44,51,52,46,57,53,55,53,55,50,93,44,91,45,49,48,55,46,50,48,49,55,52,51,44,51,52,46,53,55,56,55,53,55,93,44,91,45,49,48,54,46,56,56,50,56,49,51,44,51,52,46,53,55,57,54,50,56,93,44,91,45,49,48,54,46,55,54,56,50,56,49,44,51,52,46,53,51,49,50,54,50,93,44,91,45,49,48,54,46,52,49,54,57,50,52,44,51,52,46,52,51,57,54,56,55,93,44,91,45,49,48,54,46,52,54,57,55,57,44,51,52,46,53,50,49,50,49,55,93,44,91,45,49,48,54,46,52,54,51,56,54,56,44,51,52,46,56,55,48,49,57,52,93,44,91,45,49,48,54,46,52,49,49,55,56,49,44,51,52,46,56,55,48,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,80,114,97,105,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,50,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,56,54,53,56,53,44,52,54,46,56,54,48,50,57,93,44,91,45,49,48,53,46,56,51,50,54,55,52,44,52,54,46,56,54,48,56,50,93,44,91,45,49,48,53,46,54,49,56,49,53,56,44,52,54,46,56,51,50,49,52,56,93,44,91,45,49,48,53,46,53,55,54,48,54,51,44,52,54,46,54,53,56,48,48,51,93,44,91,45,49,48,53,46,52,52,57,49,57,54,44,52,54,46,53,55,48,57,54,55,93,44,91,45,49,48,53,46,50,51,57,50,51,56,44,52,54,46,53,52,49,49,56,56,93,44,91,45,49,48,52,46,57,56,52,55,49,52,44,52,54,46,53,52,48,51,56,57,93,44,91,45,49,48,52,46,55,51,51,48,53,57,44,52,54,46,54,49,50,54,57,53,93,44,91,45,49,48,52,46,54,48,54,57,48,51,44,52,54,46,54,56,52,57,50,52,93,44,91,45,49,48,52,46,54,48,51,55,54,54,44,52,54,46,56,54,48,56,53,51,93,44,91,45,49,48,53,46,48,50,55,53,50,54,44,52,54,46,56,54,49,52,53,55,93,44,91,45,49,48,53,46,49,57,54,55,51,53,44,52,54,46,57,55,55,49,55,50,93,44,91,45,49,48,53,46,51,50,52,55,53,55,44,52,54,46,57,55,55,49,57,54,93,44,91,45,49,48,53,46,51,50,52,56,53,51,44,52,55,46,49,56,49,52,57,54,93,44,91,45,49,48,53,46,52,48,54,51,48,57,44,52,55,46,49,56,49,53,56,51,93,44,91,45,49,48,53,46,56,51,51,48,52,52,44,52,55,46,49,56,49,48,57,50,93,44,91,45,49,48,53,46,57,53,57,56,57,55,44,52,55,46,48,57,50,57,54,56,93,44,91,45,49,48,54,46,48,56,54,55,55,55,44,52,55,46,49,56,48,57,51,56,93,44,91,45,49,48,54,46,48,56,54,53,56,53,44,52,54,46,56,54,48,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,108,108,97,109,97,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,49,48,56,51,53,44,52,51,46,53,48,48,54,53,55,93,44,91,45,57,49,46,54,48,53,51,48,55,44,52,51,46,48,56,49,54,53,51,93,44,91,45,57,49,46,49,55,55,50,50,50,44,52,51,46,48,56,48,50,52,55,93,44,91,45,57,49,46,48,53,55,57,49,44,52,51,46,50,53,51,57,54,56,93,44,91,45,57,49,46,50,48,49,56,52,55,44,52,51,46,51,52,57,49,48,51,93,44,91,45,57,49,46,50,48,53,53,53,44,52,51,46,52,50,50,57,52,57,93,44,91,45,57,49,46,50,49,55,55,48,54,44,52,51,46,53,48,48,53,53,93,44,91,45,57,49,46,54,49,48,56,51,53,44,52,51,46,53,48,48,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,67,97,109,101,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,49,55,53,48,44,34,98,101,100,115,34,58,49,51,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,54,55,50,53,53,44,50,54,46,52,49,50,55,49,53,93,44,91,45,57,55,46,51,56,54,53,48,53,44,50,54,46,52,49,48,52,51,55,93,44,91,45,57,55,46,53,50,55,53,56,50,44,50,54,46,50,57,57,51,48,52,93,44,91,45,57,55,46,56,54,49,56,55,53,44,50,54,46,51,52,56,49,53,54,93,44,91,45,57,55,46,56,54,49,56,50,50,44,50,54,46,48,54,57,57,50,49,93,44,91,45,57,55,46,54,54,55,52,50,50,44,50,54,46,48,50,57,48,55,51,93,44,91,45,57,55,46,53,50,48,56,49,50,44,50,53,46,56,56,54,93,44,91,45,57,55,46,51,55,51,49,56,55,44,50,53,46,56,51,57,57,53,54,93,44,91,45,57,55,46,50,55,54,55,48,49,44,50,53,46,57,53,50,49,52,54,93,44,91,45,57,55,46,48,57,49,49,50,49,44,50,53,46,57,55,51,56,52,93,44,91,45,57,55,46,49,50,54,49,50,49,44,50,54,46,50,53,48,51,53,49,93,44,91,45,57,55,46,49,54,55,50,53,53,44,50,54,46,52,49,50,55,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,51,57,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,52,52,53,44,34,98,101,100,115,34,58,49,55,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,48,52,51,48,54,44,51,48,46,50,52,53,53,55,93,44,91,45,57,53,46,56,48,51,51,51,44,51,48,46,48,57,48,48,57,54,93,44,91,45,57,53,46,54,48,49,49,51,50,44,51,48,46,49,51,50,55,56,93,44,91,45,57,53,46,52,50,52,50,49,54,44,51,48,46,49,49,53,52,57,49,93,44,91,45,57,53,46,50,54,52,49,51,56,44,51,48,46,48,51,50,48,54,57,93,44,91,45,57,53,46,48,57,54,55,48,56,44,51,48,46,49,54,55,50,49,52,93,44,91,45,57,53,46,49,54,53,56,57,55,44,51,48,46,51,52,52,57,55,54,93,44,91,45,57,53,46,51,48,56,51,57,53,44,51,48,46,52,48,53,55,53,93,44,91,45,57,53,46,51,53,57,49,53,54,44,51,48,46,53,48,52,51,54,57,93,44,91,45,57,53,46,53,57,56,57,55,49,44,51,48,46,53,48,57,48,48,50,93,44,91,45,57,53,46,56,51,48,50,52,44,51,48,46,54,51,48,50,56,52,93,44,91,45,57,53,46,56,48,52,51,48,54,44,51,48,46,50,52,53,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,76,97,115,32,65,110,105,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,55,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,51,53,49,49,48,57,44,51,55,46,56,49,55,52,56,56,93,44,91,45,49,48,52,46,52,53,52,57,51,44,51,55,46,55,52,48,56,51,57,93,44,91,45,49,48,52,46,53,52,56,54,53,50,44,51,55,46,53,55,52,55,93,44,91,45,49,48,52,46,55,52,56,52,52,55,44,51,55,46,52,48,55,52,51,55,93,44,91,45,49,48,52,46,57,57,53,53,48,53,44,51,55,46,51,55,53,53,53,49,93,44,91,45,49,48,53,46,49,53,52,49,55,54,44,51,55,46,50,57,51,49,50,57,93,44,91,45,49,48,53,46,49,53,53,48,52,50,44,51,54,46,57,57,53,50,54,50,93,44,91,45,49,48,52,46,48,48,55,56,53,49,44,51,54,46,57,57,54,49,51,52,93,44,91,45,49,48,51,46,48,56,54,49,48,50,44,51,55,46,48,48,48,49,56,56,93,44,91,45,49,48,51,46,48,55,53,57,51,56,44,51,55,46,54,52,51,52,50,93,44,91,45,49,48,51,46,52,48,52,51,51,57,44,51,55,46,54,52,51,53,55,54,93,44,91,45,49,48,52,46,48,53,56,49,57,54,44,51,55,46,54,52,52,48,52,57,93,44,91,45,49,48,52,46,48,54,49,49,51,50,44,51,55,46,55,51,52,55,48,52,93,44,91,45,49,48,52,46,51,53,49,49,48,57,44,51,55,46,56,49,55,52,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,57,34,44,34,78,65,77,69,34,58,34,76,108,97,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,52,48,44,34,98,101,100,115,34,58,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,54,52,54,49,50,44,51,48,46,57,50,49,51,54,56,93,44,91,45,57,56,46,57,54,52,50,51,50,44,51,48,46,52,57,56,52,56,50,93,44,91,45,57,56,46,53,57,49,54,55,44,51,48,46,52,57,57,56,55,53,93,44,91,45,57,56,46,51,53,49,48,52,49,44,51,48,46,52,56,54,48,57,54,93,44,91,45,57,56,46,52,49,56,53,57,52,44,51,48,46,54,52,53,57,50,54,93,44,91,45,57,56,46,51,57,51,54,52,54,44,51,48,46,56,52,50,57,54,93,44,91,45,57,56,46,52,52,53,55,56,50,44,51,48,46,57,50,49,52,51,57,93,44,91,45,57,56,46,57,54,52,54,49,50,44,51,48,46,57,50,49,51,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,57,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,48,51,57,57,54,44,51,48,46,52,57,57,56,51,50,93,44,91,45,57,56,46,57,54,52,50,51,50,44,51,48,46,52,57,56,52,56,50,93,44,91,45,57,56,46,57,54,52,54,49,50,44,51,48,46,57,50,49,51,54,56,93,44,91,45,57,57,46,48,57,50,51,49,55,44,51,48,46,57,52,49,48,48,50,93,44,91,45,57,57,46,52,56,52,55,53,53,44,51,48,46,57,52,48,54,48,53,93,44,91,45,57,57,46,52,56,51,56,54,57,44,51,48,46,55,49,48,55,55,49,93,44,91,45,57,57,46,52,56,52,52,57,51,44,51,48,46,52,57,57,54,52,49,93,44,91,45,57,57,46,51,48,51,57,57,54,44,51,48,46,52,57,57,56,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,51,54,51,57,53,44,51,52,46,57,56,55,53,54,52,93,44,91,45,56,51,46,53,52,57,51,55,54,44,51,52,46,57,57,50,51,57,51,93,44,91,45,56,51,46,52,56,50,57,52,57,44,51,52,46,57,57,51,51,48,49,93,44,91,45,56,51,46,54,52,56,52,53,53,44,51,53,46,49,53,50,56,57,54,93,44,91,45,56,51,46,55,51,56,49,50,57,44,51,53,46,49,53,53,57,53,93,44,91,45,56,51,46,56,52,48,55,51,51,44,51,53,46,49,52,51,56,52,49,93,44,91,45,56,52,46,48,48,53,49,51,50,44,51,52,46,57,56,55,49,55,53,93,44,91,45,56,51,46,57,51,54,51,57,53,44,51,52,46,57,56,55,53,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,50,50,55,44,34,98,101,100,115,34,58,49,48,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,51,54,55,48,53,53,44,52,49,46,53,57,48,57,55,55,93,44,91,45,55,52,46,52,56,52,51,54,55,44,52,49,46,53,48,52,50,51,53,93,44,91,45,55,52,46,55,53,50,51,57,57,44,52,49,46,52,57,51,55,52,51,93,44,91,45,55,52,46,55,53,52,54,57,44,52,49,46,52,50,52,57,55,51,93,44,91,45,55,52,46,54,57,52,57,49,52,44,52,49,46,51,53,55,52,50,51,93,44,91,45,55,52,46,51,54,55,53,49,44,52,49,46,50,48,51,50,52,49,93,44,91,45,55,52,46,50,51,52,50,56,56,44,52,49,46,49,52,51,48,48,56,93,44,91,45,55,51,46,57,56,49,51,56,52,44,52,49,46,51,50,52,54,57,51,93,44,91,45,55,51,46,57,56,49,52,56,54,44,52,49,46,52,51,56,57,48,53,93,44,91,45,55,51,46,57,53,51,51,48,55,44,52,49,46,53,56,57,57,55,55,93,44,91,45,55,52,46,51,54,55,48,53,53,44,52,49,46,53,57,48,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,83,99,104,101,110,101,99,116,97,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,56,56,51,44,34,98,101,100,115,34,58,52,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,49,56,48,50,55,52,44,52,50,46,55,50,57,57,55,57,93,44,91,45,55,51,46,56,48,57,51,54,57,44,52,50,46,55,55,56,56,54,57,93,44,91,45,55,52,46,48,48,53,54,53,54,44,52,50,46,57,51,51,52,56,52,93,44,91,45,55,52,46,48,57,50,57,56,44,52,50,46,57,53,53,56,54,56,93,44,91,45,55,52,46,48,56,51,56,56,51,44,52,50,46,56,57,55,51,53,52,93,44,91,45,55,52,46,50,54,51,51,49,52,44,52,50,46,55,57,54,53,51,52,93,44,91,45,55,52,46,49,56,48,50,55,52,44,52,50,46,55,50,57,57,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,77,105,110,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,55,52,49,44,34,98,101,100,115,34,58,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,51,51,49,51,54,44,51,55,46,55,52,48,56,52,56,93,44,91,45,56,50,46,49,49,55,51,48,52,44,51,55,46,53,53,57,50,50,54,93,44,91,45,56,49,46,57,54,56,48,49,50,44,51,55,46,53,51,56,48,51,53,93,44,91,45,56,49,46,57,50,55,54,56,49,44,51,55,46,53,49,50,49,49,51,93,44,91,45,56,49,46,56,53,53,57,51,57,44,51,55,46,53,52,56,57,49,93,44,91,45,56,49,46,56,48,50,57,51,55,44,51,55,46,54,54,48,53,48,56,93,44,91,45,56,50,46,48,55,57,57,52,49,44,51,55,46,55,48,48,49,50,50,93,44,91,45,56,50,46,49,57,48,54,53,56,44,51,55,46,57,55,52,55,55,56,93,44,91,45,56,50,46,51,48,54,51,57,49,44,51,55,46,57,52,51,54,52,93,44,91,45,56,50,46,52,49,52,55,53,55,44,51,55,46,56,53,53,53,48,57,93,44,91,45,56,50,46,51,51,51,49,51,54,44,51,55,46,55,52,48,56,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,87,97,98,97,117,110,115,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,56,57,48,52,54,44,51,57,46,49,55,50,56,55,56,93,44,91,45,57,54,46,51,57,48,55,57,54,44,51,57,46,48,52,51,50,53,55,93,44,91,45,57,54,46,53,48,49,49,54,54,44,51,57,46,48,52,51,54,54,54,93,44,91,45,57,54,46,53,48,49,53,53,54,44,51,56,46,56,54,57,55,48,52,93,44,91,45,57,54,46,51,57,48,51,57,56,44,51,56,46,56,50,53,56,53,56,93,44,91,45,57,54,46,51,53,50,54,49,51,44,51,56,46,55,51,57,48,50,49,93,44,91,45,57,53,46,57,52,53,57,50,52,44,51,56,46,55,51,57,49,49,50,93,44,91,45,57,53,46,57,52,54,53,56,55,44,51,56,46,56,54,57,57,55,51,93,44,91,45,57,53,46,57,52,54,55,53,52,44,51,57,46,48,57,56,54,56,53,93,44,91,45,57,54,46,48,51,57,48,54,44,51,57,46,49,50,54,53,50,55,93,44,91,45,57,54,46,48,56,51,53,53,55,44,51,57,46,49,57,51,53,48,52,93,44,91,45,57,54,46,50,51,51,54,55,49,44,51,57,46,50,49,50,50,55,57,93,44,91,45,57,54,46,51,56,57,48,52,54,44,51,57,46,49,55,50,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,72,111,117,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,51,48,52,50,52,44,52,51,46,56,52,54,57,51,53,93,44,91,45,57,49,46,55,51,48,50,49,55,44,52,51,46,53,48,48,56,48,54,93,44,91,45,57,49,46,54,49,48,56,51,53,44,52,51,46,53,48,48,54,53,55,93,44,91,45,57,49,46,50,49,55,55,48,54,44,52,51,46,53,48,48,53,53,93,44,91,45,57,49,46,50,54,56,55,52,56,44,52,51,46,54,49,53,51,52,56,93,44,91,45,57,49,46,50,53,55,56,51,57,44,52,51,46,55,50,53,54,54,49,93,44,91,45,57,49,46,50,56,52,49,51,56,44,52,51,46,56,52,55,48,54,53,93,44,91,45,57,49,46,55,51,48,52,50,52,44,52,51,46,56,52,54,57,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,78,105,99,104,111,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,57,52,48,53,44,51,56,46,51,55,49,55,53,93,44,91,45,56,52,46,48,54,50,54,57,49,44,51,56,46,50,51,53,50,48,51,93,44,91,45,56,51,46,57,55,55,57,50,52,44,51,56,46,49,57,50,49,49,56,93,44,91,45,56,51,46,56,52,56,51,53,53,44,51,56,46,50,57,54,57,52,57,93,44,91,45,56,51,46,57,56,48,48,54,56,44,51,56,46,52,51,57,52,52,56,93,44,91,45,56,52,46,49,48,50,49,44,51,56,46,52,53,57,51,55,57,93,44,91,45,56,52,46,49,57,52,48,53,44,51,56,46,51,55,49,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,80,108,121,109,111,117,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,50,49,51,53,44,34,98,101,100,115,34,58,55,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,48,56,48,52,56,51,44,52,50,46,48,57,53,53,51,57,93,44,91,45,55,49,46,48,52,57,52,56,53,44,52,49,46,57,54,51,48,57,52,93,44,91,45,55,48,46,56,56,54,52,51,57,44,52,49,46,55,54,48,50,51,50,93,44,91,45,55,48,46,56,51,57,49,55,53,44,52,49,46,54,49,52,55,54,49,93,44,91,45,55,48,46,55,53,50,52,50,52,44,52,49,46,53,54,53,56,53,49,93,44,91,45,55,48,46,54,50,49,54,50,50,44,52,49,46,55,52,56,57,55,50,93,44,91,45,55,48,46,51,53,53,48,48,52,44,52,50,46,48,48,48,49,48,52,93,44,91,45,55,48,46,51,50,50,53,50,50,44,52,50,46,49,49,55,57,49,53,93,44,91,45,55,48,46,54,48,56,51,56,49,44,52,50,46,49,51,56,52,55,57,93,44,91,45,55,48,46,54,57,48,51,57,51,44,52,50,46,50,55,56,57,57,57,93,44,91,45,55,48,46,54,53,56,55,50,51,44,52,50,46,51,55,53,48,57,56,93,44,91,45,55,48,46,54,55,53,54,57,44,52,50,46,51,55,53,48,57,56,93,44,91,45,55,48,46,55,50,57,50,49,50,44,52,50,46,51,55,51,56,52,56,93,44,91,45,55,48,46,56,57,52,50,57,50,44,52,50,46,51,55,50,51,57,57,93,44,91,45,55,48,46,57,54,48,49,57,50,44,52,50,46,50,57,57,52,57,56,93,44,91,45,55,48,46,57,50,52,56,55,55,44,52,50,46,49,53,55,53,56,93,44,91,45,55,49,46,48,56,48,52,56,51,44,52,50,46,48,57,53,53,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,114,111,110,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,55,56,55,50,44,34,98,101,100,115,34,58,51,52,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,49,55,57,48,53,44,52,48,46,57,49,55,53,55,55,93,44,91,45,55,51,46,57,51,51,56,48,56,44,52,48,46,56,56,50,50,49,52,93,44,91,45,55,51,46,57,49,50,52,53,54,44,52,48,46,55,57,54,48,57,54,93,44,91,45,55,51,46,55,55,56,57,53,56,44,52,48,46,56,49,49,55,49,51,93,44,91,45,55,51,46,55,52,56,48,54,44,52,48,46,56,55,49,55,50,49,93,44,91,45,55,51,46,57,49,55,57,48,53,44,52,48,46,57,49,55,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,68,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,52,49,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,48,57,48,55,56,44,51,54,46,50,52,52,57,56,52,93,44,91,45,55,53,46,56,49,51,49,48,56,44,51,54,46,50,50,51,53,54,93,44,91,45,55,53,46,55,54,52,55,50,55,44,51,54,46,48,54,48,49,51,57,93,44,91,45,55,53,46,56,52,48,48,52,54,44,51,54,46,48,50,56,56,51,52,93,44,91,45,55,53,46,57,53,52,51,55,52,44,51,53,46,57,57,48,48,54,52,93,44,91,45,55,54,46,48,48,56,51,52,56,44,51,53,46,56,57,53,56,48,50,93,44,91,45,55,54,46,48,50,55,52,55,57,44,51,53,46,54,54,56,56,52,57,93,44,91,45,55,53,46,57,48,49,51,52,50,44,51,53,46,54,54,56,57,53,50,93,44,91,45,55,53,46,56,49,52,48,50,49,44,51,53,46,53,48,48,49,56,50,93,44,91,45,55,53,46,55,51,54,54,50,44,51,53,46,49,52,48,53,54,53,93,44,91,45,55,53,46,52,55,52,54,44,51,53,46,50,48,50,48,50,57,93,44,91,45,55,53,46,52,48,48,51,57,44,51,53,46,53,57,51,53,49,50,93,44,91,45,55,53,46,52,51,55,54,49,55,44,51,53,46,55,52,54,57,54,93,44,91,45,55,53,46,55,48,57,48,55,56,44,51,54,46,50,52,52,57,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,77,101,100,105,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,50,53,55,44,34,98,101,100,115,34,58,49,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,56,52,57,53,44,52,49,46,50,55,55,49,52,54,93,44,91,45,56,49,46,56,55,56,48,53,51,44,52,49,46,50,55,53,48,52,52,93,44,91,45,56,49,46,57,55,51,56,57,53,44,52,49,46,49,57,57,56,51,49,93,44,91,45,56,50,46,49,54,57,56,55,53,44,52,49,46,49,51,55,48,57,55,93,44,91,45,56,50,46,49,55,49,52,57,50,44,52,49,46,48,54,51,53,51,55,93,44,91,45,56,50,46,49,50,57,51,51,52,44,52,48,46,57,57,49,56,48,55,93,44,91,45,56,49,46,54,56,56,52,57,49,44,52,48,46,57,56,56,53,57,93,44,91,45,56,49,46,54,56,52,57,53,44,52,49,46,50,55,55,49,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,114,109,115,116,114,111,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,51,51,49,44,34,98,101,100,115,34,58,49,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,54,57,48,55,49,49,44,52,49,46,49,55,48,54,57,49,93,44,91,45,55,57,46,54,57,50,57,51,44,52,48,46,54,54,57,55,52,52,93,44,91,45,55,57,46,54,57,50,53,56,55,44,52,48,46,54,54,57,55,51,50,93,44,91,45,55,57,46,53,54,49,49,49,44,52,48,46,53,54,52,49,49,51,93,44,91,45,55,57,46,52,53,48,49,55,54,44,52,48,46,53,51,48,49,52,57,93,44,91,45,55,57,46,50,49,53,50,49,53,44,52,48,46,55,55,53,57,52,50,93,44,91,45,55,57,46,50,49,53,51,49,44,52,48,46,57,49,49,51,52,54,93,44,91,45,55,57,46,50,49,53,50,49,52,44,52,49,46,48,53,48,53,49,53,93,44,91,45,55,57,46,51,56,53,53,51,55,44,52,48,46,57,56,57,55,54,54,93,44,91,45,55,57,46,53,57,55,48,49,51,44,52,48,46,57,57,52,51,56,56,93,44,91,45,55,57,46,54,54,53,55,54,50,44,52,49,46,48,52,57,49,50,51,93,44,91,45,55,57,46,54,57,48,55,49,49,44,52,49,46,49,55,48,54,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,116,108,97,110,116,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,56,53,51,57,44,34,98,101,100,115,34,58,56,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,57,56,53,50,55,49,44,51,57,46,53,49,52,57,54,55,93,44,91,45,55,52,46,56,53,53,57,55,56,44,51,57,46,52,50,52,50,51,56,93,44,91,45,55,52,46,56,54,49,50,57,52,44,51,57,46,51,50,51,56,49,53,93,44,91,45,55,52,46,55,53,50,49,54,53,44,51,57,46,50,57,53,48,48,53,93,44,91,45,55,52,46,52,54,52,57,51,44,51,57,46,50,57,56,50,51,93,44,91,45,55,52,46,51,54,50,53,49,51,44,51,57,46,51,50,53,55,56,49,93,44,91,45,55,52,46,50,51,50,48,54,50,44,51,57,46,52,55,53,49,57,56,93,44,91,45,55,52,46,51,56,48,55,57,54,44,51,57,46,52,57,56,53,51,55,93,44,91,45,55,52,46,52,49,55,51,57,51,44,51,57,46,53,53,55,50,53,53,93,44,91,45,55,52,46,54,53,57,50,57,53,44,51,57,46,54,51,49,50,51,51,93,44,91,45,55,52,46,55,51,54,50,49,54,44,51,57,46,55,50,57,55,55,53,93,44,91,45,55,52,46,56,55,55,50,54,44,51,57,46,54,48,56,51,53,50,93,44,91,45,55,52,46,57,56,53,50,55,49,44,51,57,46,53,49,52,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,77,97,110,105,116,111,119,111,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,52,48,55,44,34,98,101,100,115,34,58,50,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,52,51,50,52,44,52,52,46,50,52,49,48,49,56,93,44,91,45,56,56,46,48,52,49,55,57,52,44,52,51,46,56,57,49,54,57,50,93,44,91,45,56,55,46,48,55,53,51,51,53,44,52,51,46,56,57,52,55,55,52,93,44,91,45,56,54,46,57,56,55,57,57,56,44,52,52,46,49,56,50,54,52,57,93,44,91,45,56,54,46,57,50,51,52,48,51,44,52,52,46,51,50,56,56,50,53,93,44,91,45,56,55,46,55,54,54,48,50,54,44,52,52,46,51,50,55,49,56,52,93,44,91,45,56,55,46,56,56,56,48,56,55,44,52,52,46,50,52,48,52,54,49,93,44,91,45,56,56,46,48,52,51,50,52,44,52,52,46,50,52,49,48,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,68,111,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,50,55,56,50,54,44,52,53,46,52,48,57,52,56,55,93,44,91,45,56,55,46,51,49,53,52,50,50,44,52,53,46,50,52,48,54,53,55,93,44,91,45,56,55,46,52,48,53,54,57,52,44,52,53,46,50,48,49,57,54,57,93,44,91,45,56,55,46,52,52,50,55,54,44,52,53,46,48,55,54,52,55,49,93,44,91,45,56,55,46,53,53,49,50,54,50,44,52,53,46,48,48,56,48,52,57,93,44,91,45,56,55,46,55,54,50,52,54,52,44,52,52,46,55,54,52,51,54,55,93,44,91,45,56,55,46,55,54,50,51,51,57,44,52,52,46,54,55,55,48,49,53,93,44,91,45,56,55,46,55,53,56,48,52,56,44,52,52,46,54,55,55,48,53,52,93,44,91,45,56,54,46,55,55,56,51,57,56,44,52,52,46,54,55,53,50,49,57,93,44,91,45,56,54,46,55,51,52,53,50,57,44,52,52,46,55,55,51,48,55,52,93,44,91,45,56,54,46,54,56,54,50,56,56,44,52,52,46,56,56,49,48,48,50,93,44,91,45,56,54,46,52,57,57,57,51,44,52,53,46,48,56,48,56,93,44,91,45,56,54,46,50,53,48,49,44,52,53,46,50,51,53,55,51,53,93,44,91,45,56,54,46,52,54,52,49,50,44,52,53,46,51,50,52,56,49,93,44,91,45,56,54,46,55,53,52,50,51,54,44,52,53,46,52,52,51,54,49,93,44,91,45,56,55,46,49,48,49,49,51,51,44,52,53,46,52,52,52,50,51,93,44,91,45,56,55,46,49,50,55,56,50,54,44,52,53,46,52,48,57,52,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,50,57,51,44,34,98,101,100,115,34,58,49,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,53,54,48,56,53,44,51,52,46,51,57,57,52,54,57,93,44,91,45,55,56,46,52,52,53,51,50,44,51,52,46,51,55,55,52,93,44,91,45,55,56,46,54,54,55,53,56,56,44,51,52,46,52,54,57,54,52,53,93,44,91,45,55,56,46,56,54,56,57,54,49,44,51,52,46,52,56,52,55,55,56,93,44,91,45,55,56,46,57,53,49,56,48,56,44,51,52,46,52,52,56,55,53,54,93,44,91,45,55,57,46,48,55,49,50,49,49,44,51,52,46,50,57,57,51,52,50,93,44,91,45,55,56,46,54,53,48,51,49,52,44,51,51,46,57,52,52,51,52,50,93,44,91,45,55,56,46,53,53,53,48,52,51,44,51,52,46,48,54,55,48,55,49,93,44,91,45,55,56,46,51,55,52,50,57,53,44,51,52,46,50,48,52,56,57,51,93,44,91,45,55,56,46,50,53,52,54,50,50,44,51,52,46,50,49,54,51,48,53,93,44,91,45,55,56,46,49,54,50,51,53,44,51,52,46,51,53,55,48,48,55,93,44,91,45,55,56,46,50,53,54,48,56,53,44,51,52,46,51,57,57,52,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,97,108,108,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,49,57,53,44,34,98,101,100,115,34,58,50,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,53,51,48,57,44,51,57,46,48,51,53,48,55,57,93,44,91,45,56,50,46,52,53,53,49,55,57,44,51,56,46,56,52,52,53,55,55,93,44,91,45,56,50,46,53,55,53,53,56,51,44,51,56,46,56,52,52,52,55,56,93,44,91,45,56,50,46,52,56,51,53,55,57,44,51,56,46,55,55,50,50,55,56,93,44,91,45,56,50,46,52,55,50,52,55,56,44,51,56,46,54,56,50,50,55,57,93,44,91,45,56,50,46,51,53,52,52,54,56,44,51,56,46,54,55,54,48,55,93,44,91,45,56,50,46,50,56,55,50,55,44,51,56,46,53,56,50,55,56,51,93,44,91,45,56,50,46,50,49,56,57,54,55,44,51,56,46,53,57,49,54,56,51,93,44,91,45,56,50,46,49,55,49,57,54,54,44,51,56,46,54,50,53,51,56,52,93,44,91,45,56,50,46,50,50,49,53,54,54,44,51,56,46,55,56,55,49,56,55,93,44,91,45,56,50,46,49,52,52,49,54,55,44,51,56,46,56,52,49,56,56,93,44,91,45,56,50,46,48,57,56,57,54,53,44,51,56,46,57,53,56,51,55,56,93,44,91,45,56,50,46,48,57,53,52,54,53,44,51,57,46,48,48,50,55,55,56,93,44,91,45,56,50,46,51,50,50,56,55,52,44,51,57,46,48,50,55,54,55,52,93,44,91,45,56,50,46,52,51,53,51,48,57,44,51,57,46,48,51,53,48,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,52,49,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,51,52,56,44,34,98,101,100,115,34,58,49,48,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,50,57,53,55,57,44,51,50,46,53,49,52,54,53,55,93,44,91,45,49,48,48,46,49,52,54,53,52,51,44,51,50,46,53,50,50,55,57,51,93,44,91,45,49,48,48,46,49,53,49,57,49,49,44,51,50,46,48,56,50,54,51,56,93,44,91,45,57,57,46,55,49,51,57,55,49,44,51,50,46,48,56,50,48,56,57,93,44,91,45,57,57,46,54,51,49,52,49,51,44,51,50,46,48,56,49,50,55,52,93,44,91,45,57,57,46,54,50,57,53,55,57,44,51,50,46,53,49,52,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,55,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,55,48,34,44,34,78,65,77,69,34,58,34,67,111,108,111,110,105,97,108,32,72,101,105,103,104,116,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,48,51,54,55,49,44,51,55,46,50,51,55,51,52,54,93,44,91,45,55,55,46,51,56,50,53,50,49,44,51,55,46,50,52,50,56,51,55,93,44,91,45,55,55,46,51,55,57,49,57,51,44,51,55,46,50,54,55,53,56,93,44,91,45,55,55,46,51,56,56,57,49,55,44,51,55,46,50,56,55,51,52,57,93,44,91,45,55,55,46,52,49,52,52,48,54,44,51,55,46,50,54,48,57,52,57,93,44,91,45,55,55,46,52,49,54,53,48,49,44,51,55,46,50,51,51,50,48,56,93,44,91,45,55,55,46,52,48,51,54,55,49,44,51,55,46,50,51,55,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,115,104,111,99,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,53,55,52,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,56,52,54,48,55,44,52,48,46,52,53,54,50,56,93,44,91,45,56,50,46,49,57,53,57,49,49,44,52,48,46,50,51,57,48,55,49,93,44,91,45,56,50,46,49,56,55,49,48,53,44,52,48,46,49,54,54,56,56,93,44,91,45,56,49,46,55,49,54,50,55,54,44,52,48,46,49,53,50,49,54,54,93,44,91,45,56,49,46,54,50,50,54,56,51,44,52,48,46,50,50,49,51,48,56,93,44,91,45,56,49,46,54,49,54,48,51,44,52,48,46,51,54,56,49,49,56,93,44,91,45,56,49,46,55,48,57,49,51,50,44,52,48,46,52,52,52,55,55,53,93,44,91,45,56,50,46,49,56,52,54,48,55,44,52,48,46,52,53,54,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,80,101,114,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,55,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,52,57,57,55,53,44,52,49,46,48,48,51,57,53,93,44,91,45,49,48,50,46,48,53,49,55,54,49,44,52,49,46,48,48,51,56,57,93,44,91,45,49,48,50,46,48,53,49,55,49,55,44,52,49,46,48,48,50,51,53,57,93,44,91,45,49,48,50,46,48,53,49,52,49,54,44,52,48,46,55,52,57,53,56,54,93,44,91,45,49,48,50,46,48,53,49,52,53,55,44,52,48,46,54,57,55,53,51,57,93,44,91,45,49,48,49,46,51,52,53,51,54,53,44,52,48,46,54,57,56,48,57,51,93,44,91,45,49,48,49,46,50,52,55,57,54,51,44,52,48,46,54,57,55,56,48,50,93,44,91,45,49,48,49,46,50,52,57,57,55,53,44,52,49,46,48,48,51,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,53,34,44,34,78,65,77,69,34,58,34,72,97,114,116,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,54,55,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,52,49,51,52,57,44,51,53,46,55,51,57,52,51,51,93,44,91,45,49,48,51,46,48,52,49,55,48,54,44,51,53,46,54,50,50,52,56,56,93,44,91,45,49,48,50,46,49,54,50,56,48,57,44,51,53,46,54,50,55,53,49,53,93,44,91,45,49,48,50,46,49,54,51,48,49,53,44,51,54,46,48,53,53,50,52,57,93,44,91,45,49,48,51,46,48,52,49,48,54,50,44,51,54,46,48,53,53,50,50,54,93,44,91,45,49,48,51,46,48,52,49,51,52,57,44,51,53,46,55,51,57,52,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,71,114,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,54,54,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,56,53,52,57,50,54,44,52,48,46,52,56,54,50,53,50,93,44,91,45,49,48,53,46,57,48,53,57,57,44,52,48,46,51,57,57,54,53,50,93,44,91,45,49,48,54,46,50,51,48,55,52,54,44,52,48,46,51,50,52,52,56,54,93,44,91,45,49,48,54,46,54,49,50,51,50,49,44,52,48,46,51,55,57,51,56,51,93,44,91,45,49,48,54,46,54,53,50,49,49,50,44,52,48,46,52,52,53,50,51,49,93,44,91,45,49,48,54,46,54,51,50,50,53,55,44,52,48,46,51,52,49,53,53,57,93,44,91,45,49,48,54,46,54,50,54,53,54,57,44,51,57,46,57,50,52,55,56,53,93,44,91,45,49,48,54,46,52,51,52,53,48,56,44,51,57,46,57,50,52,57,49,52,93,44,91,45,49,48,54,46,50,53,50,48,50,55,44,51,57,46,57,49,52,55,49,50,93,44,91,45,49,48,54,46,48,56,51,55,49,49,44,51,57,46,56,48,53,57,54,52,93,44,91,45,49,48,54,46,48,50,51,55,56,51,44,51,57,46,54,56,56,52,50,93,44,91,45,49,48,53,46,57,50,52,54,49,56,44,51,57,46,54,57,56,57,55,50,93,44,91,45,49,48,53,46,54,57,48,51,52,56,44,51,57,46,56,53,49,57,57,54,93,44,91,45,49,48,53,46,54,55,53,55,57,56,44,51,57,46,57,51,50,52,52,53,93,44,91,45,49,48,53,46,54,51,56,50,57,50,44,52,48,46,48,52,52,51,50,54,93,44,91,45,49,48,53,46,54,53,51,51,50,49,44,52,48,46,50,54,48,52,53,55,93,44,91,45,49,48,53,46,56,53,52,57,50,54,44,52,48,46,52,56,54,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,57,34,44,34,78,65,77,69,34,58,34,74,105,109,32,87,101,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,49,57,50,44,34,98,101,100,115,34,58,49,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,51,53,52,57,55,44,50,56,46,48,53,55,57,54,54,93,44,91,45,57,56,46,50,51,50,52,54,52,44,50,55,46,50,54,50,52,56,55,93,44,91,45,57,56,46,48,53,56,48,55,56,44,50,55,46,50,54,48,57,56,49,93,44,91,45,57,56,46,48,53,57,56,44,50,55,46,54,51,53,56,54,57,93,44,91,45,57,55,46,57,52,50,49,52,54,44,50,55,46,54,51,53,57,51,50,93,44,91,45,57,55,46,57,51,52,50,55,52,44,50,55,46,56,56,53,50,48,50,93,44,91,45,57,55,46,55,57,56,53,49,55,44,50,55,46,57,57,53,54,53,57,93,44,91,45,57,55,46,56,56,51,49,52,56,44,50,56,46,48,53,54,57,93,44,91,45,57,56,46,50,51,53,52,57,55,44,50,56,46,48,53,55,57,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,87,105,110,110,101,98,97,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,55,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,55,48,55,54,50,44,52,51,46,52,57,57,56,56,54,93,44,91,45,57,51,46,57,55,48,52,49,53,44,52,51,46,50,53,53,51,53,56,93,44,91,45,57,51,46,52,57,55,54,51,53,44,52,51,46,50,53,53,52,54,56,93,44,91,45,57,51,46,52,57,55,51,53,51,44,52,51,46,52,57,57,54,50,50,93,44,91,45,57,51,46,54,52,56,53,51,51,44,52,51,46,52,57,57,54,56,93,44,91,45,57,51,46,57,55,48,55,54,50,44,52,51,46,52,57,57,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,83,97,110,32,76,117,105,115,32,79,98,105,115,112,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,49,52,53,53,44,34,98,101,100,115,34,58,49,55,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,50,49,51,57,55,57,44,51,53,46,55,56,57,50,55,54,93,44,91,45,49,50,49,46,52,51,56,49,55,54,44,51,53,46,55,57,54,54,53,53,93,44,91,45,49,50,49,46,51,50,51,53,49,50,44,51,53,46,54,50,52,57,54,57,93,44,91,45,49,50,49,46,50,48,49,53,53,53,44,51,53,46,53,56,51,54,57,93,44,91,45,49,50,49,46,48,52,49,54,51,53,44,51,53,46,52,49,57,57,57,93,44,91,45,49,50,48,46,57,51,51,50,57,50,44,51,53,46,51,57,50,55,52,56,93,44,91,45,49,50,48,46,57,54,48,50,52,55,44,51,53,46,50,52,51,54,50,50,93,44,91,45,49,50,48,46,56,48,48,52,49,49,44,51,53,46,49,49,54,53,55,55,93,44,91,45,49,50,48,46,54,56,57,54,48,54,44,51,53,46,48,57,56,56,50,56,93,44,91,45,49,50,48,46,55,48,50,55,57,53,44,51,52,46,57,57,57,57,55,53,93,44,91,45,49,50,48,46,54,51,52,49,52,52,44,51,52,46,57,53,57,53,54,50,93,44,91,45,49,50,48,46,52,57,54,50,50,50,44,51,52,46,57,57,51,49,53,53,93,44,91,45,49,50,48,46,51,50,55,49,49,53,44,51,52,46,57,56,54,53,50,53,93,44,91,45,49,50,48,46,48,57,54,57,51,44,51,53,46,49,48,57,53,57,53,93,44,91,45,49,49,57,46,55,52,53,53,54,54,44,51,52,46,57,55,51,54,55,54,93,44,91,45,49,49,57,46,52,55,50,55,53,52,44,51,52,46,57,48,49,49,55,52,93,44,91,45,49,49,57,46,52,55,50,55,49,57,44,51,53,46,48,55,54,56,56,53,93,44,91,45,49,49,57,46,53,53,51,54,52,49,44,51,53,46,49,55,57,57,55,53,93,44,91,45,49,49,57,46,54,54,55,48,53,54,44,51,53,46,49,55,52,56,48,57,93,44,91,45,49,49,57,46,54,54,54,54,54,51,44,51,53,46,50,54,50,53,50,55,93,44,91,45,49,49,57,46,56,48,57,52,52,57,44,51,53,46,50,54,51,53,56,52,93,44,91,45,49,49,57,46,56,56,48,49,55,50,44,51,53,46,51,53,49,50,49,49,93,44,91,45,49,49,57,46,56,56,48,48,52,53,44,51,53,46,52,51,57,49,51,51,93,44,91,45,49,50,48,46,48,56,54,54,55,52,44,51,53,46,53,50,54,53,53,52,93,44,91,45,49,50,48,46,49,57,51,57,49,56,44,51,53,46,54,49,52,51,53,57,93,44,91,45,49,50,48,46,49,57,52,49,52,54,44,51,53,46,55,56,57,50,48,52,93,44,91,45,49,50,48,46,50,49,51,57,55,57,44,51,53,46,55,56,57,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,49,54,52,51,55,44,51,49,46,54,49,57,52,54,54,93,44,91,45,56,53,46,52,49,55,52,51,52,44,51,49,46,51,49,52,57,55,51,93,44,91,45,56,53,46,48,56,55,54,53,49,44,51,49,46,51,48,56,54,55,55,93,44,91,45,56,53,46,48,52,53,52,57,53,44,51,49,46,53,49,55,49,50,57,93,44,91,45,56,53,46,49,50,55,51,50,57,44,51,49,46,55,54,50,53,54,51,93,44,91,45,56,53,46,50,49,54,48,55,54,44,51,49,46,55,48,50,52,48,57,93,44,91,45,56,53,46,52,49,54,48,51,56,44,51,49,46,55,48,54,54,54,52,93,44,91,45,56,53,46,52,49,54,52,51,55,44,51,49,46,54,49,57,52,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,87,121,97,110,100,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,48,55,44,34,98,101,100,115,34,58,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,50,48,51,49,57,44,52,48,46,57,57,49,56,56,57,93,44,91,45,56,51,46,53,49,53,56,56,51,44,52,48,46,56,49,56,49,51,52,93,44,91,45,56,51,46,52,57,53,55,57,56,44,52,48,46,55,48,49,53,49,53,93,44,91,45,56,51,46,52,49,57,56,51,54,44,52,48,46,54,56,54,56,50,51,93,44,91,45,56,51,46,49,49,49,51,54,44,52,48,46,55,48,50,57,49,53,93,44,91,45,56,51,46,49,49,50,55,51,55,44,52,48,46,57,57,51,52,52,55,93,44,91,45,56,51,46,52,50,48,51,49,57,44,52,48,46,57,57,49,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,53,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,48,53,34,44,34,78,65,77,69,34,58,34,90,97,112,97,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,53,51,55,57,52,44,50,55,46,50,54,53,48,53,56,93,44,91,45,57,57,46,52,50,54,52,49,56,44,50,55,46,49,55,56,50,56,55,93,44,91,45,57,57,46,52,52,54,49,50,51,44,50,55,46,48,50,51,48,52,56,93,44,91,45,57,57,46,50,54,56,54,49,51,44,50,54,46,56,52,51,50,49,51,93,44,91,45,57,57,46,49,54,57,52,49,54,44,50,54,46,53,55,49,54,56,50,93,44,91,45,57,57,46,48,49,49,49,49,50,44,50,54,46,54,55,53,48,50,51,93,44,91,45,57,56,46,57,53,52,50,51,44,50,54,46,55,56,53,54,57,52,93,44,91,45,57,56,46,57,53,52,54,54,57,44,50,55,46,50,54,57,51,57,55,93,44,91,45,57,57,46,52,53,51,55,57,52,44,50,55,46,50,54,53,48,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,48,53,50,48,52,44,51,49,46,54,57,49,48,53,56,93,44,91,45,56,52,46,50,57,55,56,48,49,44,51,49,46,54,50,49,57,53,49,93,44,91,45,56,52,46,48,52,51,50,49,51,44,51,49,46,54,50,51,53,55,51,93,44,91,45,56,52,46,48,49,56,52,48,52,44,51,49,46,54,53,48,50,55,52,93,44,91,45,56,52,46,48,50,53,54,50,51,44,51,49,46,55,49,48,48,50,50,93,44,91,45,56,51,46,57,51,57,52,51,55,44,51,49,46,56,52,55,57,50,57,93,44,91,45,56,51,46,57,50,50,52,57,52,44,51,49,46,57,48,57,54,53,51,93,44,91,45,56,52,46,51,51,56,49,52,51,44,51,49,46,57,49,54,49,57,93,44,91,45,56,52,46,51,51,56,50,52,53,44,51,49,46,56,55,51,53,57,49,93,44,91,45,56,52,46,50,54,50,51,52,57,44,51,49,46,56,50,56,52,56,56,93,44,91,45,56,52,46,51,48,53,50,48,52,44,51,49,46,54,57,49,48,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,48,57,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,49,55,52,53,52,44,51,56,46,51,55,51,57,51,53,93,44,91,45,56,50,46,55,57,52,50,48,54,44,51,56,46,50,52,51,55,55,50,93,44,91,45,56,50,46,54,48,52,54,50,53,44,51,56,46,50,52,55,54,54,50,93,44,91,45,56,50,46,53,57,51,52,56,44,51,56,46,52,50,49,56,50,49,93,44,91,45,56,50,46,54,54,53,52,49,49,44,51,56,46,53,48,53,55,56,55,93,44,91,45,56,50,46,56,49,55,52,53,52,44,51,56,46,51,55,51,57,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,114,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,52,49,54,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,54,55,51,54,55,44,52,52,46,57,55,55,57,54,52,93,44,91,45,57,52,46,48,49,50,50,51,54,44,52,52,46,57,55,56,55,49,50,93,44,91,45,57,52,46,48,49,48,52,57,52,44,52,52,46,55,49,55,52,54,52,93,44,91,45,57,51,46,55,54,56,48,51,57,44,52,52,46,54,52,48,51,48,51,93,44,91,45,57,51,46,53,50,48,52,51,49,44,52,52,46,56,48,52,50,54,51,93,44,91,45,57,51,46,53,50,48,55,48,54,44,52,52,46,56,57,49,53,48,50,93,44,91,45,57,51,46,55,54,55,48,52,49,44,52,52,46,56,57,48,56,54,50,93,44,91,45,57,51,46,55,54,55,51,54,55,44,52,52,46,57,55,55,57,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,111,108,102,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,53,50,52,50,53,44,52,49,46,55,52,51,48,56,53,93,44,91,45,57,55,46,50,53,51,53,49,57,44,52,49,46,51,56,52,50,49,50,93,44,91,45,57,55,46,49,55,53,54,49,51,44,52,49,46,51,55,55,48,56,51,93,44,91,45,57,54,46,57,48,53,57,49,44,52,49,46,52,53,54,52,51,54,93,44,91,45,57,54,46,57,48,53,57,50,50,44,52,49,46,55,52,50,55,54,51,93,44,91,45,57,55,46,48,49,57,57,49,49,44,52,49,46,55,52,50,57,56,93,44,91,45,57,55,46,50,53,50,52,50,53,44,52,49,46,55,52,51,48,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,104,101,115,116,101,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,48,50,52,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,54,49,55,49,44,51,52,46,56,49,55,52,50,57,93,44,91,45,56,48,46,52,48,56,51,55,51,44,51,52,46,54,49,52,55,54,53,93,44,91,45,56,48,46,51,50,55,53,57,44,51,52,46,52,57,55,55,54,93,44,91,45,56,48,46,50,56,56,53,57,54,44,51,52,46,51,54,54,50,48,55,93,44,91,45,56,48,46,48,52,53,52,51,57,44,51,52,46,52,57,50,54,51,49,93,44,91,45,55,57,46,56,56,52,53,52,50,44,51,52,46,52,57,49,50,49,56,93,44,91,45,55,57,46,56,50,57,57,56,49,44,51,52,46,53,51,49,57,50,53,93,44,91,45,55,57,46,56,48,51,56,55,55,44,51,52,46,54,48,57,48,53,51,93,44,91,45,55,57,46,57,50,55,52,49,50,44,51,52,46,56,48,54,55,51,52,93,44,91,45,56,48,46,51,50,48,56,50,56,44,51,52,46,56,49,51,57,48,54,93,44,91,45,56,48,46,53,54,49,55,49,44,51,52,46,56,49,55,52,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,53,56,49,56,57,44,51,53,46,54,48,57,51,52,57,93,44,91,45,56,55,46,55,49,55,53,53,57,44,51,53,46,52,56,51,51,52,55,93,44,91,45,56,55,46,53,55,53,51,53,50,44,51,53,46,51,57,56,52,53,52,93,44,91,45,56,55,46,50,57,52,53,51,52,44,51,53,46,52,52,52,54,55,54,93,44,91,45,56,55,46,51,51,57,50,51,50,44,51,53,46,54,53,57,49,49,93,44,91,45,56,55,46,52,53,57,53,56,55,44,51,53,46,54,49,53,49,50,52,93,44,91,45,56,55,46,53,54,56,56,51,49,44,51,53,46,54,53,50,50,57,54,93,44,91,45,56,55,46,54,53,56,49,56,57,44,51,53,46,54,48,57,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,49,56,50,49,44,34,98,101,100,115,34,58,57,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,52,54,52,56,56,44,52,53,46,52,51,51,51,51,50,93,44,91,45,49,50,51,46,49,51,53,52,50,55,44,52,53,46,52,51,51,52,53,57,93,44,91,45,49,50,50,46,56,54,55,56,57,49,44,52,53,46,51,49,55,51,52,53,93,44,91,45,49,50,50,46,55,52,51,55,52,49,44,52,53,46,51,51,50,48,54,55,93,44,91,45,49,50,50,46,55,52,51,55,50,49,44,52,53,46,52,51,51,50,57,52,93,44,91,45,49,50,50,46,55,52,51,56,54,50,44,52,53,46,53,49,57,53,48,57,93,44,91,45,49,50,50,46,57,50,57,49,50,56,44,52,53,46,54,51,53,51,49,51,93,44,91,45,49,50,50,46,57,50,57,49,52,54,44,52,53,46,55,50,49,52,56,50,93,44,91,45,49,50,51,46,48,51,48,56,55,51,44,52,53,46,55,55,57,49,53,57,93,44,91,45,49,50,51,46,51,54,49,54,50,50,44,52,53,46,55,55,57,53,55,57,93,44,91,45,49,50,51,46,52,56,52,55,50,54,44,52,53,46,55,48,56,55,54,52,93,44,91,45,49,50,51,46,51,54,49,49,51,49,44,52,53,46,53,55,56,55,55,57,93,44,91,45,49,50,51,46,52,54,52,56,56,44,52,53,46,52,51,51,51,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,56,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,56,49,48,34,44,34,78,65,77,69,34,58,34,86,105,114,103,105,110,105,97,32,66,101,97,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,48,49,51,53,44,34,98,101,100,115,34,58,56,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,50,50,54,48,54,44,51,54,46,56,51,57,57,52,55,93,44,91,45,55,54,46,49,50,49,57,53,53,44,51,54,46,54,54,53,55,53,93,44,91,45,55,54,46,49,50,50,51,52,57,44,51,54,46,53,53,48,53,50,51,93,44,91,45,55,53,46,55,57,55,52,57,55,44,51,54,46,53,53,48,57,49,54,93,44,91,45,55,53,46,57,50,54,56,52,55,44,51,54,46,57,51,54,52,54,50,93,44,91,45,55,53,46,57,48,57,52,57,49,44,51,54,46,57,57,48,55,48,56,93,44,91,45,55,54,46,49,51,51,56,55,50,44,51,55,46,48,52,48,56,56,54,93,44,91,45,55,54,46,50,50,54,48,54,44,51,54,46,56,51,57,57,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,49,56,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,48,53,50,53,57,44,52,53,46,55,57,56,51,48,54,93,44,91,45,49,49,49,46,57,50,54,57,54,53,44,52,53,46,56,53,53,54,57,52,93,44,91,45,49,49,50,46,48,56,56,55,54,44,52,53,46,56,52,57,48,53,93,44,91,45,49,49,50,46,49,57,48,50,54,57,44,52,53,46,55,52,56,53,48,51,93,44,91,45,49,49,50,46,53,49,53,52,53,51,44,52,53,46,55,52,54,55,48,50,93,44,91,45,49,49,50,46,54,56,55,48,53,52,44,52,53,46,54,50,52,56,53,52,93,44,91,45,49,49,50,46,54,56,55,56,51,57,44,52,53,46,52,55,55,50,52,93,44,91,45,49,49,50,46,53,48,53,53,54,56,44,52,53,46,52,52,51,48,48,57,93,44,91,45,49,49,50,46,52,53,56,48,54,50,44,52,53,46,51,52,57,57,49,93,44,91,45,49,49,50,46,52,53,54,56,53,52,44,52,53,46,48,56,56,53,48,57,93,44,91,45,49,49,50,46,51,51,52,50,52,56,44,52,53,46,48,48,48,53,49,57,93,44,91,45,49,49,50,46,49,57,49,49,56,55,44,52,53,46,48,48,48,53,49,50,93,44,91,45,49,49,50,46,49,54,55,49,48,56,44,52,52,46,56,50,54,55,51,56,93,44,91,45,49,49,50,46,48,54,53,55,57,55,44,52,52,46,55,56,51,52,55,53,93,44,91,45,49,49,49,46,55,56,49,49,53,55,44,52,52,46,55,56,49,48,50,55,93,44,91,45,49,49,49,46,55,56,49,48,57,57,44,52,52,46,55,48,56,56,52,53,93,44,91,45,49,49,49,46,52,55,52,57,54,51,44,52,52,46,55,48,56,55,55,51,93,44,91,45,49,49,49,46,51,55,55,48,49,53,44,52,52,46,55,53,49,52,52,51,93,44,91,45,49,49,49,46,51,55,51,48,51,44,52,53,46,51,53,48,53,50,49,93,44,91,45,49,49,49,46,51,53,49,51,56,44,52,53,46,54,52,49,57,51,56,93,44,91,45,49,49,49,46,53,51,54,50,52,49,44,52,53,46,54,52,50,50,53,55,93,44,91,45,49,49,49,46,54,53,57,55,51,56,44,52,53,46,55,52,51,51,52,52,93,44,91,45,49,49,49,46,56,48,53,50,53,57,44,52,53,46,55,57,56,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,76,97,110,99,97,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,48,55,56,50,56,44,51,55,46,56,51,56,56,49,52,93,44,91,45,55,54,46,54,54,56,49,56,50,44,51,55,46,55,55,56,51,56,54,93,44,91,45,55,54,46,53,51,54,53,56,57,44,51,55,46,54,51,57,49,57,52,93,44,91,45,55,54,46,51,54,56,50,49,51,44,51,55,46,53,57,52,51,51,49,93,44,91,45,55,54,46,49,53,49,55,49,49,44,51,55,46,53,56,53,57,54,56,93,44,91,45,55,54,46,49,55,53,54,56,55,44,51,55,46,54,55,49,54,50,54,93,44,91,45,55,54,46,51,48,56,51,54,55,44,51,55,46,54,54,57,55,55,51,93,44,91,45,55,54,46,52,50,48,48,55,49,44,51,55,46,56,50,51,55,54,54,93,44,91,45,55,54,46,53,48,55,56,50,56,44,51,55,46,56,51,56,56,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,97,116,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,55,52,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,51,50,51,50,44,51,56,46,51,56,56,55,49,56,93,44,91,45,57,52,46,54,49,52,48,54,49,44,51,56,46,48,54,48,48,53,54,93,44,91,45,57,52,46,48,53,56,50,56,53,44,51,56,46,48,51,54,54,50,55,93,44,91,45,57,52,46,48,52,57,56,57,53,44,51,56,46,50,49,51,57,56,53,93,44,91,45,57,52,46,48,54,53,55,49,51,44,51,56,46,52,52,55,48,56,55,93,44,91,45,57,52,46,54,49,50,56,56,50,44,51,56,46,52,55,55,53,57,55,93,44,91,45,57,52,46,54,49,51,50,51,50,44,51,56,46,51,56,56,55,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,101,108,107,110,97,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,54,52,48,44,34,98,101,100,115,34,58,49,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,55,50,55,53,55,51,44,52,51,46,53,54,51,52,49,49,93,44,91,45,55,49,46,54,49,50,52,50,54,44,52,51,46,52,51,55,56,57,51,93,44,91,45,55,49,46,53,53,48,48,51,44,52,51,46,52,53,50,55,48,49,93,44,91,45,55,49,46,50,51,54,48,49,49,44,52,51,46,50,56,52,57,57,52,93,44,91,45,55,49,46,49,53,57,51,54,52,44,52,51,46,51,53,53,49,50,51,93,44,91,45,55,49,46,49,54,50,54,55,53,44,52,51,46,53,51,56,57,53,57,93,44,91,45,55,49,46,50,53,56,50,53,57,44,52,51,46,53,55,49,51,52,53,93,44,91,45,55,49,46,53,51,49,54,53,56,44,52,51,46,55,54,48,57,55,57,93,44,91,45,55,49,46,54,52,56,51,52,54,44,52,51,46,54,56,52,53,49,49,93,44,91,45,55,49,46,55,50,55,53,55,51,44,52,51,46,53,54,51,52,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,82,105,99,104,109,111,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,55,56,44,34,98,101,100,115,34,58,57,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,51,54,57,53,57,44,51,56,46,48,55,55,48,55,52,93,44,91,45,55,54,46,57,48,48,52,57,44,51,55,46,57,56,50,49,52,50,93,44,91,45,55,54,46,54,54,56,49,56,50,44,51,55,46,55,55,56,51,56,54,93,44,91,45,55,54,46,53,48,55,56,50,56,44,51,55,46,56,51,56,56,49,52,93,44,91,45,55,54,46,54,51,52,50,51,44,51,55,46,57,54,54,54,51,93,44,91,45,55,54,46,55,52,56,56,55,49,44,51,55,46,57,57,52,56,57,55,93,44,91,45,55,54,46,56,55,55,48,54,50,44,51,56,46,49,50,52,51,53,56,93,44,91,45,55,54,46,57,51,54,57,53,57,44,51,56,46,48,55,55,48,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,48,34,44,34,78,65,77,69,34,58,34,83,107,97,103,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,53,46,55,49,55,51,48,55,44,53,57,46,55,51,48,48,52,51,93,44,91,45,49,51,53,46,51,55,53,48,50,44,53,57,46,51,53,48,48,51,51,93,44,91,45,49,51,53,46,48,51,48,53,50,53,44,53,57,46,51,52,54,51,52,56,93,44,91,45,49,51,53,46,49,48,49,48,50,44,53,57,46,52,50,55,53,51,49,93,44,91,45,49,51,53,46,48,50,56,57,48,51,44,53,57,46,53,54,51,54,53,57,93,44,91,45,49,51,53,46,52,55,57,49,54,49,44,53,57,46,55,57,56,48,52,49,93,44,91,45,49,51,53,46,55,49,55,51,48,55,44,53,57,46,55,51,48,48,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,72,111,111,110,97,104,45,65,110,103,111,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,44,91,45,49,51,51,46,56,49,51,48,53,49,44,53,55,46,56,51,55,54,50,52,93,44,91,45,49,51,52,46,49,55,54,57,57,44,53,56,46,49,53,56,51,50,93,44,91,45,49,51,52,46,53,51,56,52,49,51,44,53,56,46,48,57,56,49,55,50,93,44,91,45,49,51,52,46,54,57,55,55,54,54,44,53,56,46,48,51,50,48,51,54,93,44,91,45,49,51,52,46,55,55,54,56,54,50,44,53,56,46,48,57,57,48,52,53,93,44,91,45,49,51,52,46,54,57,52,56,51,54,44,53,56,46,50,55,54,53,50,50,93,44,91,45,49,51,53,46,48,55,48,52,53,44,53,56,46,52,57,57,56,57,55,93,44,91,45,49,51,53,46,48,48,48,52,51,50,44,53,56,46,49,49,56,48,54,52,93,44,91,45,49,51,53,46,50,53,48,48,50,44,53,56,46,49,54,54,55,93,44,91,45,49,51,53,46,52,52,57,54,56,55,44,53,56,46,51,49,55,48,55,51,93,44,91,45,49,51,53,46,52,55,54,49,51,57,44,53,56,46,52,55,53,51,52,55,93,44,91,45,49,51,53,46,52,50,50,54,56,55,44,53,56,46,54,51,49,52,49,54,93,44,91,45,49,51,53,46,55,53,53,51,50,51,44,53,56,46,55,52,53,57,53,52,93,44,91,45,49,51,53,46,53,54,54,56,54,53,44,53,56,46,57,54,51,56,50,93,44,91,45,49,51,53,46,55,49,48,51,56,51,44,53,57,46,49,48,49,52,57,49,93,44,91,45,49,51,53,46,57,54,57,56,52,55,44,53,57,46,49,55,57,55,52,93,44,91,45,49,51,54,46,52,56,56,52,48,50,44,53,57,46,50,53,57,50,57,93,44,91,45,49,51,54,46,53,56,49,53,50,49,44,53,57,46,49,54,52,57,48,57,93,44,91,45,49,51,54,46,56,50,54,54,51,51,44,53,57,46,49,53,56,51,56,57,93,44,91,45,49,51,55,46,53,50,53,54,55,53,44,53,56,46,57,48,56,57,55,53,93,44,91,45,49,51,56,46,48,50,49,54,49,44,53,56,46,55,57,48,48,50,51,93,44,91,45,49,51,55,46,55,54,50,50,49,56,44,53,56,46,53,57,54,53,48,50,93,44,91,45,49,51,55,46,49,52,57,53,56,54,44,53,56,46,51,52,49,51,48,55,93,44,91,45,49,51,55,46,48,49,52,53,44,53,56,46,51,52,52,51,49,49,93,44,91,45,49,51,54,46,56,49,52,52,49,50,44,53,56,46,49,56,56,55,57,93,44,91,45,49,51,54,46,54,49,54,51,51,57,44,53,56,46,49,52,55,50,51,93,44,91,45,49,51,54,46,54,55,56,56,57,49,44,53,56,46,48,51,54,50,57,51,93,44,91,45,49,51,54,46,54,53,56,53,54,56,44,53,55,46,57,48,49,52,53,53,93,44,91,45,49,51,54,46,52,53,52,52,50,55,44,53,55,46,56,51,48,54,55,54,93,44,91,45,49,51,54,46,48,50,52,51,50,56,44,53,55,46,56,51,56,55,57,53,93,44,91,45,49,51,53,46,57,48,49,57,54,52,44,53,56,46,48,48,49,51,52,51,93,44,91,45,49,51,53,46,53,50,56,53,51,52,44,53,55,46,56,56,48,52,55,93,44,91,45,49,51,53,46,50,51,56,49,50,57,44,53,55,46,55,54,49,55,49,49,93,44,91,45,49,51,52,46,56,51,54,50,44,53,55,46,55,56,55,55,93,44,91,45,49,51,52,46,55,48,49,49,52,49,44,53,55,46,52,53,52,54,49,51,93,44,91,45,49,51,52,46,55,51,56,53,53,54,44,53,55,46,50,50,54,51,48,51,93,44,91,45,49,51,52,46,54,55,55,50,44,53,54,46,57,57,57,93,44,91,45,49,51,52,46,53,54,57,50,56,57,44,53,54,46,56,54,51,48,53,50,93,44,91,45,49,51,52,46,51,51,53,51,49,57,44,53,54,46,57,54,55,53,51,57,93,44,91,45,49,51,52,46,48,54,51,49,52,53,44,53,55,46,49,53,54,50,56,54,93,44,91,45,49,51,51,46,54,53,56,50,50,50,44,53,55,46,49,54,50,52,57,51,93,44,91,45,49,51,51,46,55,51,56,54,49,49,44,53,55,46,49,56,54,51,52,56,93,44,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,93,93,44,91,91,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,44,91,45,49,51,51,46,52,53,50,50,52,50,44,53,55,46,56,49,52,48,54,50,93,44,91,45,49,51,50,46,56,55,49,56,57,56,44,53,55,46,55,49,50,55,57,54,93,44,91,45,49,51,50,46,56,56,55,56,53,44,53,55,46,54,49,51,55,51,57,93,44,91,45,49,51,50,46,54,53,50,52,53,54,44,53,55,46,54,48,55,51,53,55,93,44,91,45,49,51,50,46,56,54,57,51,49,56,44,53,55,46,56,52,50,57,52,49,93,44,91,45,49,51,51,46,48,55,54,52,50,49,44,53,55,46,57,57,57,55,54,50,93,44,91,45,49,51,51,46,49,55,54,57,51,55,44,53,56,46,49,53,48,53,54,55,93,44,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,54,54,48,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,52,53,51,49,57,44,52,54,46,54,55,57,50,52,51,93,44,91,45,49,49,57,46,50,55,48,51,50,44,52,54,46,53,50,49,51,49,49,93,44,91,45,49,49,57,46,50,54,55,50,48,50,44,52,54,46,50,56,52,54,50,53,93,44,91,45,49,49,57,46,48,52,49,52,57,56,44,52,54,46,49,57,50,54,54,55,93,44,91,45,49,49,56,46,55,55,55,50,50,56,44,52,54,46,50,57,48,49,55,55,93,44,91,45,49,49,56,46,54,51,51,56,50,54,44,52,54,46,52,49,52,48,50,50,93,44,91,45,49,49,56,46,54,49,53,53,57,50,44,52,54,46,53,48,52,53,52,51,93,44,91,45,49,49,56,46,52,55,53,57,51,50,44,52,54,46,53,57,53,49,52,50,93,44,91,45,49,49,56,46,50,50,56,54,51,53,44,52,54,46,53,57,51,51,54,50,93,44,91,45,49,49,56,46,50,49,53,54,54,44,52,54,46,53,56,56,57,50,52,93,44,91,45,49,49,56,46,50,49,48,50,52,51,44,52,54,46,55,51,56,56,51,51,93,44,91,45,49,49,57,46,51,54,57,52,50,57,44,52,54,46,55,51,55,54,57,53,93,44,91,45,49,49,57,46,52,53,51,49,57,44,52,54,46,54,55,57,50,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,73,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,52,49,54,49,49,44,52,50,46,53,54,49,50,56,53,93,44,91,45,57,53,46,54,54,57,50,54,53,44,52,50,46,52,55,52,54,52,53,93,44,91,45,57,53,46,54,55,48,56,50,50,44,52,50,46,50,49,49,52,48,56,93,44,91,45,57,53,46,51,50,51,52,57,55,44,52,50,46,50,49,48,57,51,50,93,44,91,45,57,53,46,51,50,50,51,53,55,44,52,50,46,52,55,52,55,51,55,93,44,91,45,57,53,46,51,56,56,48,49,44,52,50,46,53,54,49,55,52,50,93,44,91,45,57,53,46,55,52,49,54,49,49,44,52,50,46,53,54,49,50,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,83,101,100,103,119,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,50,48,54,52,44,34,98,101,100,115,34,58,50,56,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,44,91,45,57,55,46,49,53,50,52,55,54,44,51,55,46,57,49,50,55,51,51,93,44,91,45,57,55,46,55,48,49,57,54,57,44,51,55,46,57,49,49,51,50,53,93,44,91,45,57,55,46,54,57,56,54,57,50,44,51,55,46,55,51,53,48,53,54,93,44,91,45,57,55,46,56,48,55,56,50,51,44,51,55,46,55,51,51,56,53,53,93,44,91,45,57,55,46,56,48,55,54,44,51,55,46,52,55,52,49,56,52,93,44,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,53,51,34,44,34,78,65,77,69,34,58,34,84,114,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,51,49,54,54,44,34,98,101,100,115,34,58,51,48,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,52,57,56,56,54,44,51,48,46,54,50,52,49,53,53,93,44,91,45,57,56,46,49,50,53,53,53,54,44,51,48,46,52,50,54,49,56,54,93,44,91,45,57,56,46,49,55,50,57,55,55,44,51,48,46,51,53,54,51,49,50,93,44,91,45,57,55,46,55,49,48,50,49,53,44,51,48,46,48,50,52,52,57,57,93,44,91,45,57,55,46,54,52,57,51,55,44,51,48,46,48,54,55,57,52,52,93,44,91,45,57,55,46,52,57,50,52,56,50,44,51,48,46,50,49,48,48,49,49,93,44,91,45,57,55,46,51,54,57,53,51,57,44,51,48,46,52,49,57,53,54,51,93,44,91,45,57,55,46,53,57,54,50,51,54,44,51,48,46,53,48,49,53,49,51,93,44,91,45,57,55,46,56,49,49,56,54,51,44,51,48,46,52,52,55,48,49,56,93,44,91,45,57,55,46,57,53,54,55,51,52,44,51,48,46,54,50,56,50,52,57,93,44,91,45,57,56,46,48,52,57,56,56,54,44,51,48,46,54,50,52,49,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,105,108,108,115,98,111,114,111,117,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,56,56,56,51,44,34,98,101,100,115,34,58,52,48,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,53,49,49,54,53,44,50,56,46,49,55,51,50,54,54,93,44,91,45,56,50,46,54,52,56,51,50,44,50,55,46,57,52,55,51,57,56,93,44,91,45,56,50,46,53,57,55,50,49,57,44,50,55,46,57,51,53,49,57,57,93,44,91,45,56,50,46,53,52,49,53,49,56,44,50,55,46,55,56,50,50,48,52,93,44,91,45,56,50,46,54,48,54,49,51,57,44,50,55,46,54,52,51,54,51,56,93,44,91,45,56,50,46,56,49,51,51,54,50,44,50,55,46,54,52,53,55,52,56,93,44,91,45,56,50,46,56,50,51,48,50,57,44,50,55,46,53,55,48,53,53,93,44,91,45,56,50,46,55,52,53,49,51,55,44,50,55,46,53,55,48,53,53,93,44,91,45,56,50,46,53,53,51,54,54,54,44,50,55,46,54,52,53,52,54,53,93,44,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,44,91,45,56,50,46,48,53,54,50,54,49,44,50,56,46,49,55,49,53,57,50,93,44,91,45,56,50,46,49,48,53,56,53,51,44,50,56,46,49,55,49,54,53,93,44,91,45,56,50,46,54,53,49,49,54,53,44,50,56,46,49,55,51,50,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,55,54,50,44,34,98,101,100,115,34,58,50,48,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,57,52,50,57,48,57,44,52,48,46,51,52,49,54,56,51,93,44,91,45,55,52,46,55,50,50,48,52,56,44,52,48,46,49,53,48,51,49,49,93,44,91,45,55,52,46,53,56,55,56,51,53,44,52,48,46,49,51,56,50,53,52,93,44,91,45,55,52,46,52,56,52,57,54,50,44,52,48,46,50,53,51,51,50,53,93,44,91,45,55,52,46,54,50,48,50,52,44,52,48,46,51,55,51,55,52,57,93,44,91,45,55,52,46,55,52,56,49,52,55,44,52,48,46,52,50,52,49,53,54,93,44,91,45,55,52,46,57,52,50,57,48,57,44,52,48,46,51,52,49,54,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,54,55,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,48,53,57,49,44,52,49,46,52,53,54,52,51,54,93,44,91,45,57,55,46,49,55,53,54,49,51,44,52,49,46,51,55,55,48,56,51,93,44,91,45,57,55,46,50,53,51,53,49,57,44,52,49,46,51,56,52,50,49,50,93,44,91,45,57,55,46,51,54,56,49,56,54,44,52,49,46,51,57,54,52,49,54,93,44,91,45,57,55,46,51,54,56,49,49,56,44,52,49,46,48,52,54,57,52,55,93,44,91,45,57,54,46,57,49,48,57,52,44,52,49,46,48,52,54,49,49,54,93,44,91,45,57,54,46,57,48,56,53,48,55,44,52,49,46,48,52,54,48,57,49,93,44,91,45,57,54,46,57,48,53,56,54,50,44,52,49,46,52,53,51,51,56,57,93,44,91,45,57,54,46,57,48,53,57,49,44,52,49,46,52,53,54,52,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,87,101,115,116,109,111,114,101,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,52,55,53,49,44,34,98,101,100,115,34,58,57,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,53,48,49,55,54,44,52,48,46,53,51,48,49,52,57,93,44,91,45,55,57,46,53,54,49,49,49,44,52,48,46,53,54,52,49,49,51,93,44,91,45,55,57,46,54,57,50,53,56,55,44,52,48,46,54,54,57,55,51,50,93,44,91,45,55,57,46,55,54,53,52,49,53,44,52,48,46,53,52,57,56,53,52,93,44,91,45,55,57,46,55,48,52,55,51,57,44,52,48,46,52,50,55,50,51,49,93,44,91,45,55,57,46,55,55,49,48,56,50,44,52,48,46,51,55,53,52,49,57,93,44,91,45,55,57,46,55,56,49,55,54,49,44,52,48,46,50,50,55,55,49,49,93,44,91,45,55,57,46,56,55,48,53,56,53,44,52,48,46,49,57,55,52,49,53,93,44,91,45,55,57,46,56,55,55,51,56,53,44,52,48,46,49,50,54,55,57,50,93,44,91,45,55,57,46,54,51,56,57,57,52,44,52,48,46,48,56,50,56,53,57,93,44,91,45,55,57,46,53,48,53,49,56,56,44,52,48,46,49,52,48,53,54,56,93,44,91,45,55,57,46,50,57,51,54,56,50,44,52,48,46,48,52,48,52,49,51,93,44,91,45,55,57,46,48,53,53,57,56,51,44,52,48,46,50,56,53,48,56,57,93,44,91,45,55,56,46,57,55,52,54,52,57,44,52,48,46,51,57,53,57,55,50,93,44,91,45,55,57,46,49,50,49,54,51,52,44,52,48,46,51,55,48,53,55,54,93,44,91,45,55,57,46,52,53,48,49,55,54,44,52,48,46,53,51,48,49,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,111,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,57,53,52,44,34,98,101,100,115,34,58,54,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,55,52,54,57,44,50,55,46,48,51,50,49,49,57,93,44,91,45,56,50,46,50,53,53,50,51,55,44,50,55,46,48,51,50,57,55,53,93,44,91,45,56,50,46,50,53,53,53,50,49,44,50,54,46,57,52,53,50,54,52,93,44,91,45,56,50,46,52,51,55,51,50,55,44,50,54,46,57,52,54,48,50,53,93,44,91,45,56,50,46,51,51,53,48,52,44,50,54,46,55,56,55,57,52,54,93,44,91,45,56,50,46,49,57,56,54,50,54,44,50,54,46,55,55,48,56,57,50,93,44,91,45,56,49,46,53,54,53,57,51,49,44,50,54,46,55,54,57,53,53,50,93,44,91,45,56,49,46,53,54,50,53,51,49,44,50,55,46,48,51,51,54,56,55,93,44,91,45,56,49,46,53,54,50,54,50,52,44,50,55,46,48,51,51,56,51,53,93,44,91,45,56,50,46,48,53,55,52,54,57,44,50,55,46,48,51,50,49,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,57,49,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,53,52,55,50,50,44,52,49,46,53,48,53,50,49,49,93,44,91,45,57,53,46,49,53,53,56,53,49,44,52,49,46,49,53,57,50,51,54,93,44,91,45,57,52,46,57,50,55,53,56,55,44,52,49,46,49,53,56,53,48,56,93,44,91,45,57,52,46,55,48,48,53,56,57,44,52,49,46,49,53,56,48,56,53,93,44,91,45,57,52,46,55,48,48,54,50,57,44,52,49,46,53,48,52,49,52,56,93,44,91,45,57,53,46,48,52,48,55,55,44,52,49,46,53,48,52,54,57,93,44,91,45,57,53,46,49,53,52,55,50,50,44,52,49,46,53,48,53,50,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,56,48,54,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,48,50,52,55,55,44,52,48,46,53,55,50,50,49,51,93,44,91,45,56,52,46,56,48,51,56,57,52,44,52,48,46,51,53,50,55,53,56,93,44,91,45,56,52,46,52,51,52,54,51,49,44,52,48,46,51,53,52,50,53,57,93,44,91,45,56,52,46,52,51,52,51,56,55,44,52,48,46,51,53,52,53,51,52,93,44,91,45,56,52,46,52,53,54,49,56,44,52,48,46,54,56,52,56,54,50,93,44,91,45,56,52,46,52,53,54,49,55,50,44,52,48,46,55,50,56,51,48,54,93,44,91,45,56,52,46,56,48,50,50,55,51,44,52,48,46,55,50,56,49,52,54,93,44,91,45,56,52,46,56,48,50,52,55,55,44,52,48,46,53,55,50,50,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,52,51,44,34,98,101,100,115,34,58,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,48,48,52,54,52,57,44,51,55,46,56,53,57,50,52,55,93,44,91,45,56,50,46,57,52,48,55,54,51,44,51,55,46,55,49,54,51,51,56,93,44,91,45,56,50,46,55,54,50,49,57,44,51,55,46,55,53,53,56,53,54,93,44,91,45,56,50,46,54,52,48,55,53,44,51,55,46,55,50,48,49,56,50,93,44,91,45,56,50,46,54,49,50,51,57,51,44,51,55,46,56,55,57,50,55,50,93,44,91,45,56,50,46,57,52,55,57,51,54,44,51,56,46,48,48,48,52,51,49,93,44,91,45,56,50,46,57,56,57,48,49,52,44,51,55,46,57,54,51,57,54,56,93,44,91,45,56,51,46,48,48,52,54,52,57,44,51,55,46,56,53,57,50,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,52,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,82,104,111,100,101,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,82,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,56,54,49,44,34,98,101,100,115,34,58,51,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,51,54,53,50,48,55,44,52,49,46,55,51,53,54,52,57,93,44,91,45,55,49,46,55,56,57,55,48,52,44,52,49,46,55,50,53,49,57,56,93,44,91,45,55,49,46,55,56,55,54,53,56,44,52,49,46,54,51,57,57,49,56,93,44,91,45,55,49,46,55,56,57,50,52,55,44,52,49,46,53,57,54,56,52,55,93,44,91,45,55,49,46,52,56,52,52,50,55,44,52,49,46,54,48,50,53,57,49,93,44,91,45,55,49,46,51,56,48,53,52,50,44,52,49,46,54,53,48,51,50,54,93,44,91,45,55,49,46,51,51,48,57,55,44,52,49,46,54,56,54,57,54,50,93,44,91,45,55,49,46,51,54,53,50,48,55,44,52,49,46,55,51,53,54,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,87,105,110,100,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,49,53,48,44,34,98,101,100,115,34,58,50,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,56,49,57,51,54,56,44,52,51,46,50,53,53,52,57,56,93,44,91,45,55,50,46,56,54,56,55,51,55,44,52,51,46,49,49,51,49,55,93,44,91,45,55,50,46,57,57,54,57,44,52,51,46,49,49,57,48,57,53,93,44,91,45,55,51,46,48,48,56,48,54,51,44,52,50,46,57,51,48,48,56,55,93,44,91,45,55,50,46,57,50,49,51,55,54,44,52,50,46,57,50,54,55,57,50,93,44,91,45,55,50,46,57,51,48,50,53,56,44,52,50,46,55,51,57,50,57,51,93,44,91,45,55,50,46,52,53,56,52,49,50,44,52,50,46,55,50,54,57,51,51,93,44,91,45,55,50,46,53,52,49,53,49,51,44,52,50,46,56,48,55,48,57,52,93,44,91,45,55,50,46,53,51,50,48,50,50,44,52,50,46,57,53,52,57,52,51,93,44,91,45,55,50,46,52,55,51,48,55,54,44,52,50,46,57,55,50,53,50,56,93,44,91,45,55,50,46,52,53,50,50,53,49,44,52,51,46,49,54,49,51,53,52,93,44,91,45,55,50,46,52,51,52,54,52,53,44,52,51,46,50,51,51,51,49,49,93,44,91,45,55,50,46,54,56,53,54,51,55,44,52,51,46,50,50,50,52,57,53,93,44,91,45,55,50,46,56,49,57,51,54,56,44,52,51,46,50,53,53,52,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,79,114,108,101,97,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,49,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,56,57,55,54,48,56,44,52,53,46,48,48,56,51,53,93,44,91,45,55,50,46,53,53,52,51,54,44,52,53,46,48,48,56,50,55,49,93,44,91,45,55,50,46,53,51,50,54,51,56,44,52,52,46,56,51,51,51,52,54,93,44,91,45,55,50,46,53,55,56,49,54,49,44,52,52,46,55,56,49,53,55,56,93,44,91,45,55,50,46,52,49,55,51,49,53,44,52,52,46,55,50,50,56,57,51,93,44,91,45,55,50,46,52,56,50,51,48,50,44,52,52,46,54,51,51,57,50,56,93,44,91,45,55,50,46,51,55,52,55,56,54,44,52,52,46,53,56,52,49,50,53,93,44,91,45,55,50,46,50,54,50,57,54,53,44,52,52,46,53,52,50,51,51,54,93,44,91,45,55,50,46,49,49,52,53,48,51,44,52,52,46,55,52,57,54,50,52,93,44,91,45,55,50,46,48,49,50,53,48,52,44,52,52,46,54,57,56,56,50,49,93,44,91,45,55,49,46,57,51,57,57,51,54,44,52,52,46,55,54,57,48,51,50,93,44,91,45,55,49,46,56,55,52,52,51,51,44,52,52,46,56,55,54,51,56,50,93,44,91,45,55,49,46,56,57,55,54,48,56,44,52,53,46,48,48,56,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,56,56,57,52,49,44,51,57,46,54,53,51,48,48,49,93,44,91,45,57,53,46,55,56,57,49,48,49,44,51,57,46,53,54,53,57,49,54,93,44,91,45,57,54,46,48,51,53,57,53,50,44,51,57,46,53,54,54,49,93,44,91,45,57,54,46,48,51,53,53,55,51,44,51,57,46,50,49,54,53,50,93,44,91,45,57,53,46,53,56,57,52,55,50,44,51,57,46,50,49,54,48,56,49,93,44,91,45,57,53,46,53,55,48,51,53,49,44,51,57,46,52,49,57,48,53,93,44,91,45,57,53,46,53,54,52,49,50,54,44,51,57,46,54,53,50,56,55,50,93,44,91,45,57,53,46,55,56,56,57,52,49,44,51,57,46,54,53,51,48,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,50,50,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,55,54,55,51,57,44,51,50,46,52,48,53,56,48,56,93,44,91,45,57,49,46,54,50,53,49,50,49,44,51,50,46,52,48,53,51,52,52,93,44,91,45,57,49,46,55,53,57,48,57,56,44,51,50,46,51,49,55,55,49,52,93,44,91,45,57,49,46,55,55,54,53,56,55,44,51,50,46,50,51,57,49,48,54,93,44,91,45,57,49,46,56,57,52,55,50,57,44,51,50,46,49,53,49,53,53,93,44,91,45,57,49,46,56,56,57,54,56,55,44,51,49,46,57,55,49,52,55,52,93,44,91,45,57,49,46,55,55,57,57,50,56,44,51,49,46,56,56,49,52,56,49,93,44,91,45,57,49,46,54,52,54,48,52,44,51,49,46,57,54,49,49,52,49,93,44,91,45,57,49,46,53,55,53,55,50,49,44,51,49,46,56,56,50,53,54,93,44,91,45,57,49,46,53,49,49,51,55,52,44,51,49,46,57,51,48,48,50,53,93,44,91,45,57,49,46,52,57,50,55,49,56,44,51,50,46,50,48,51,51,52,57,93,44,91,45,57,49,46,53,52,51,48,50,49,44,51,50,46,50,53,57,48,48,54,93,44,91,45,57,49,46,52,55,54,55,51,57,44,51,50,46,52,48,53,56,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,50,56,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,57,49,55,56,49,44,51,51,46,55,51,56,54,48,50,93,44,91,45,56,57,46,53,48,55,49,51,53,44,51,51,46,55,50,49,56,49,57,93,44,91,45,56,57,46,53,48,54,56,55,50,44,51,51,46,54,55,55,54,48,53,93,44,91,45,56,57,46,53,48,54,52,57,54,44,51,51,46,52,53,57,56,48,54,93,44,91,45,56,57,46,51,56,49,48,57,50,44,51,51,46,52,54,48,51,48,55,93,44,91,45,56,57,46,50,50,50,48,51,57,44,51,51,46,53,50,55,50,52,53,93,44,91,45,56,57,46,48,56,56,52,52,54,44,51,51,46,53,51,51,50,48,50,93,44,91,45,56,57,46,48,49,56,54,49,51,44,51,51,46,53,54,50,49,49,52,93,44,91,45,56,57,46,48,51,52,52,57,56,44,51,51,46,55,51,57,52,51,93,44,91,45,56,57,46,49,57,49,55,56,49,44,51,51,46,55,51,56,54,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,57,51,53,44,34,98,101,100,115,34,58,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,48,50,51,48,49,53,44,52,50,46,55,52,49,49,51,53,93,44,91,45,55,50,46,57,53,49,48,51,57,44,52,50,46,54,52,49,48,48,54,93,44,91,45,55,50,46,57,55,53,52,48,57,44,52,50,46,53,53,54,48,51,55,93,44,91,45,55,50,46,56,55,49,49,51,54,44,52,50,46,52,56,52,48,52,49,93,44,91,45,55,50,46,51,55,53,48,50,50,44,52,50,46,52,50,48,56,49,57,93,44,91,45,55,50,46,51,49,52,50,53,51,44,52,50,46,51,52,51,54,56,56,93,44,91,45,55,50,46,50,55,54,52,51,52,44,52,50,46,53,55,55,51,55,52,93,44,91,45,55,50,46,50,56,51,48,52,53,44,52,50,46,55,50,49,54,49,53,93,44,91,45,55,50,46,52,53,56,52,49,50,44,52,50,46,55,50,54,57,51,51,93,44,91,45,55,50,46,57,51,48,50,53,56,44,52,50,46,55,51,57,50,57,51,93,44,91,45,55,51,46,48,50,51,48,49,53,44,52,50,46,55,52,49,49,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,104,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,50,56,48,49,51,44,52,50,46,57,57,56,49,51,54,93,44,91,45,49,48,50,46,48,56,50,52,56,54,44,52,50,46,57,57,57,51,53,53,93,44,91,45,49,48,50,46,48,56,50,53,52,54,44,52,50,46,57,57,57,51,53,54,93,44,91,45,49,48,50,46,48,54,54,54,56,57,44,52,50,46,52,52,51,52,54,51,93,44,91,45,49,48,50,46,48,52,48,50,56,44,52,50,46,48,57,54,55,52,52,93,44,91,45,49,48,50,46,48,48,54,50,48,52,44,52,50,46,48,57,54,51,51,56,93,44,91,45,49,48,49,46,52,50,54,53,53,55,44,52,50,46,48,57,50,49,57,52,93,44,91,45,49,48,48,46,56,52,54,49,50,57,44,52,50,46,48,56,56,49,54,54,93,44,91,45,49,48,48,46,50,54,55,54,50,50,44,52,50,46,48,56,54,49,52,55,93,44,91,45,49,48,48,46,49,54,55,54,48,53,44,52,50,46,48,56,53,56,52,56,93,44,91,45,49,48,48,46,49,57,56,52,55,56,44,52,50,46,56,52,54,49,48,50,93,44,91,45,49,48,48,46,49,57,56,52,49,51,44,52,50,46,57,57,56,54,55,52,93,44,91,45,49,48,49,46,50,50,56,48,49,51,44,52,50,46,57,57,56,49,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,101,97,118,101,114,104,101,97,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,57,51,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,57,51,56,48,57,53,44,52,53,46,54,57,53,55,52,93,44,91,45,49,49,51,46,56,48,54,52,51,49,44,52,53,46,54,48,49,54,51,93,44,91,45,49,49,51,46,55,55,51,55,53,51,44,52,53,46,52,48,54,51,53,57,93,44,91,45,49,49,51,46,53,55,54,55,50,53,44,52,53,46,49,51,49,50,51,55,93,44,91,45,49,49,51,46,52,53,50,48,52,52,44,52,53,46,48,53,57,49,55,52,93,44,91,45,49,49,51,46,52,53,53,48,55,49,44,52,52,46,56,54,53,52,50,52,93,44,91,45,49,49,51,46,50,52,55,49,57,50,44,52,52,46,56,50,50,57,53,52,93,44,91,45,49,49,51,46,49,48,49,54,49,56,44,52,52,46,55,50,57,52,54,53,93,44,91,45,49,49,51,46,48,48,49,57,55,56,44,52,52,46,52,52,57,56,53,55,93,44,91,45,49,49,50,46,56,49,51,56,48,53,44,52,52,46,51,55,54,52,53,53,93,44,91,45,49,49,50,46,55,49,55,57,51,44,52,52,46,53,48,52,50,55,51,93,44,91,45,49,49,50,46,52,55,51,52,49,57,44,52,52,46,52,55,57,51,53,57,93,44,91,45,49,49,50,46,50,56,56,54,55,51,44,52,52,46,53,54,55,57,49,93,44,91,45,49,49,50,46,48,57,54,52,56,52,44,52,52,46,53,50,50,57,57,50,93,44,91,45,49,49,49,46,56,54,51,54,53,55,44,52,52,46,53,53,49,50,52,52,93,44,91,45,49,49,49,46,54,49,55,51,52,53,44,52,52,46,53,53,48,51,57,50,93,44,91,45,49,49,49,46,53,50,53,54,49,44,52,52,46,54,48,52,55,52,93,44,91,45,49,49,49,46,52,55,52,57,54,51,44,52,52,46,55,48,56,55,55,51,93,44,91,45,49,49,49,46,55,56,49,48,57,57,44,52,52,46,55,48,56,56,52,53,93,44,91,45,49,49,49,46,55,56,49,49,53,55,44,52,52,46,55,56,49,48,50,55,93,44,91,45,49,49,50,46,48,54,53,55,57,55,44,52,52,46,55,56,51,52,55,53,93,44,91,45,49,49,50,46,49,54,55,49,48,56,44,52,52,46,56,50,54,55,51,56,93,44,91,45,49,49,50,46,49,57,49,49,56,55,44,52,53,46,48,48,48,53,49,50,93,44,91,45,49,49,50,46,51,51,52,50,52,56,44,52,53,46,48,48,48,53,49,57,93,44,91,45,49,49,50,46,52,53,54,56,53,52,44,52,53,46,48,56,56,53,48,57,93,44,91,45,49,49,50,46,52,53,56,48,54,50,44,52,53,46,51,52,57,57,49,93,44,91,45,49,49,50,46,53,48,53,53,54,56,44,52,53,46,52,52,51,48,48,57,93,44,91,45,49,49,50,46,54,56,55,56,51,57,44,52,53,46,52,55,55,50,52,93,44,91,45,49,49,50,46,54,56,55,48,53,52,44,52,53,46,54,50,52,56,53,52,93,44,91,45,49,49,50,46,55,53,57,51,51,57,44,52,53,46,55,52,56,50,48,57,93,44,91,45,49,49,51,46,48,48,48,49,53,53,44,52,53,46,56,48,55,55,52,55,93,44,91,45,49,49,51,46,48,56,53,53,49,55,44,52,53,46,56,54,48,54,52,56,93,44,91,45,49,49,51,46,49,55,57,55,57,49,44,52,53,46,56,56,53,48,48,57,93,44,91,45,49,49,51,46,51,57,54,57,48,51,44,52,53,46,55,54,55,54,53,93,44,91,45,49,49,51,46,53,49,54,49,52,52,44,52,53,46,57,51,56,56,49,52,93,44,91,45,49,49,51,46,53,51,50,51,55,44,52,53,46,56,55,56,52,48,53,93,44,91,45,49,49,51,46,55,49,50,53,50,50,44,52,53,46,56,51,56,51,56,52,93,44,91,45,49,49,51,46,57,51,56,48,57,53,44,52,53,46,54,57,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,78,101,119,32,77,97,100,114,105,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,57,49,54,48,51,44,51,54,46,56,53,57,53,49,55,93,44,91,45,56,57,46,55,48,48,57,53,50,44,51,54,46,54,50,55,52,53,51,93,44,91,45,56,57,46,57,53,56,55,56,54,44,51,54,46,54,50,57,51,51,49,93,44,91,45,56,57,46,57,54,49,51,49,44,51,54,46,51,56,56,56,48,51,93,44,91,45,56,57,46,54,49,49,51,48,56,44,51,54,46,52,49,49,50,55,51,93,44,91,45,56,57,46,53,52,53,48,48,54,44,51,54,46,51,51,54,56,48,57,93,44,91,45,56,57,46,53,51,57,50,51,50,44,51,54,46,52,57,55,57,51,52,93,44,91,45,56,57,46,52,56,53,52,50,55,44,51,54,46,52,57,55,52,57,49,93,44,91,45,56,57,46,52,49,55,50,55,53,44,51,54,46,52,57,57,48,49,49,93,44,91,45,56,57,46,51,50,55,53,56,56,44,51,54,46,54,51,50,50,55,54,93,44,91,45,56,57,46,53,49,57,56,48,57,44,51,54,46,56,54,57,54,49,55,93,44,91,45,56,57,46,54,57,49,54,48,51,44,51,54,46,56,53,57,53,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,101,109,112,115,116,101,97,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,49,56,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,50,51,48,55,54,44,51,52,46,48,48,56,56,57,51,93,44,91,45,57,51,46,56,51,49,52,53,50,44,51,51,46,55,52,55,55,48,57,93,44,91,45,57,51,46,57,53,55,51,49,53,44,51,51,46,55,53,48,57,52,93,44,91,45,57,51,46,57,54,53,54,51,55,44,51,51,46,54,54,57,55,51,54,93,44,91,45,57,51,46,56,50,53,56,56,52,44,51,51,46,54,48,57,56,53,51,93,44,91,45,57,51,46,55,50,50,56,54,55,44,51,51,46,52,56,49,57,54,51,93,44,91,45,57,51,46,52,56,51,48,57,55,44,51,51,46,52,55,54,48,55,53,93,44,91,45,57,51,46,52,53,54,55,48,57,44,51,51,46,57,53,54,56,51,55,93,44,91,45,57,51,46,54,49,55,52,54,44,51,51,46,57,53,57,54,50,55,93,44,91,45,57,51,46,56,50,51,48,55,54,44,51,52,46,48,48,56,56,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,97,109,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,48,57,54,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,55,55,54,57,50,44,51,56,46,50,54,51,48,57,50,93,44,91,45,57,51,46,48,54,53,49,57,57,44,51,56,46,48,54,50,52,55,57,93,44,91,45,57,51,46,48,55,50,52,52,55,44,51,55,46,57,48,50,54,50,55,93,44,91,45,57,50,46,56,53,53,51,56,52,44,51,55,46,56,57,53,55,51,54,93,44,91,45,57,50,46,54,50,48,49,56,49,44,51,55,46,56,57,50,53,50,49,93,44,91,45,57,50,46,53,52,56,57,51,52,44,51,55,46,56,48,48,52,55,93,44,91,45,57,50,46,52,48,57,50,51,49,44,51,55,46,56,53,57,49,56,93,44,91,45,57,50,46,52,48,54,50,55,53,44,51,56,46,48,50,49,49,55,57,93,44,91,45,57,50,46,53,55,48,50,56,49,44,51,56,46,48,54,54,54,51,53,93,44,91,45,57,50,46,54,52,48,48,56,53,44,51,56,46,50,49,51,48,51,50,93,44,91,45,57,50,46,54,57,53,56,56,54,44,51,56,46,50,50,50,48,51,49,93,44,91,45,57,50,46,55,54,52,57,54,51,44,51,56,46,49,56,57,53,51,52,93,44,91,45,57,51,46,48,50,50,50,55,55,44,51,56,46,49,57,56,54,52,50,93,44,91,45,57,51,46,48,55,55,54,57,50,44,51,56,46,50,54,51,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,101,99,107,108,101,110,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,52,55,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,50,55,52,49,49,44,51,54,46,55,55,55,56,53,56,93,44,91,45,55,56,46,50,52,49,53,48,57,44,51,54,46,56,48,55,57,53,56,93,44,91,45,55,56,46,52,57,51,48,50,56,44,51,54,46,56,57,49,50,50,93,44,91,45,55,56,46,54,52,56,53,52,49,44,51,54,46,54,57,55,57,48,57,93,44,91,45,55,56,46,55,51,52,49,50,50,44,51,54,46,53,52,49,57,51,57,93,44,91,45,55,56,46,52,53,54,57,49,51,44,51,54,46,53,52,50,53,52,49,93,44,91,45,55,56,46,51,50,51,57,57,49,44,51,54,46,53,52,51,56,50,50,93,44,91,45,55,56,46,48,52,54,50,55,49,44,51,54,46,53,52,51,53,53,49,93,44,91,45,55,56,46,48,50,55,52,49,49,44,51,54,46,55,55,55,56,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,51,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,51,52,53,52,53,44,51,55,46,54,51,56,51,55,54,93,44,91,45,56,55,46,57,51,50,57,53,50,44,51,55,46,52,56,48,48,53,50,93,44,91,45,56,55,46,56,48,49,48,52,54,44,51,55,46,51,55,57,52,52,53,93,44,91,45,56,55,46,56,49,51,52,49,51,44,51,55,46,51,53,48,54,52,53,93,44,91,45,56,55,46,51,55,53,49,52,53,44,51,55,46,53,54,57,57,56,56,93,44,91,45,56,55,46,52,57,53,51,51,49,44,51,55,46,54,52,55,53,52,55,93,44,91,45,56,55,46,55,51,52,53,52,53,44,51,55,46,54,51,56,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,49,57,48,44,34,98,101,100,115,34,58,52,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,49,48,52,52,50,55,44,51,54,46,52,54,51,49,48,53,93,44,91,45,57,56,46,49,48,51,57,48,52,44,51,54,46,49,54,52,56,55,55,93,44,91,45,57,55,46,54,55,53,54,49,55,44,51,54,46,49,54,52,54,54,51,93,44,91,45,57,55,46,52,54,48,55,57,50,44,51,54,46,49,54,52,52,54,50,93,44,91,45,57,55,46,52,54,49,54,48,51,44,51,54,46,53,57,51,54,51,55,93,44,91,45,57,55,46,52,54,50,52,53,57,44,51,54,46,53,57,51,54,50,55,93,44,91,45,57,56,46,49,48,52,50,56,54,44,51,54,46,53,57,51,53,55,56,93,44,91,45,57,56,46,49,48,52,52,50,55,44,51,54,46,52,54,51,49,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,83,107,97,109,97,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,50,52,53,56,53,54,44,52,54,46,48,53,51,56,53,51,93,44,91,45,49,50,50,46,50,52,57,50,49,55,44,52,53,46,53,52,56,54,53,51,93,44,91,45,49,50,49,46,57,50,50,48,50,56,44,52,53,46,54,52,57,50,48,53,93,44,91,45,49,50,49,46,56,54,55,48,50,49,44,52,53,46,54,57,51,51,57,49,93,44,91,45,49,50,49,46,53,50,51,54,56,49,44,52,53,46,55,50,52,57,51,93,44,91,45,49,50,49,46,54,48,57,50,52,54,44,52,53,46,55,56,50,53,49,57,93,44,91,45,49,50,49,46,54,49,50,50,51,50,44,52,54,46,48,52,52,48,57,51,93,44,91,45,49,50,49,46,53,50,50,51,50,49,44,52,54,46,48,52,52,48,48,54,93,44,91,45,49,50,49,46,53,50,50,51,50,52,44,52,54,46,51,56,56,50,50,52,93,44,91,45,49,50,50,46,50,52,48,57,54,54,44,52,54,46,51,56,53,51,54,49,93,44,91,45,49,50,50,46,50,52,53,56,53,54,44,52,54,46,48,53,51,56,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,76,101,110,97,119,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,52,55,52,44,34,98,101,100,115,34,58,49,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,51,50,57,55,44,52,50,46,48,55,51,52,53,54,93,44,91,45,56,52,46,51,54,48,52,49,54,44,52,49,46,55,48,54,53,56,57,93,44,91,45,56,51,46,56,56,48,51,57,49,44,52,49,46,55,50,48,50,49,50,93,44,91,45,56,51,46,55,54,51,49,53,44,52,49,46,55,50,51,53,53,50,93,44,91,45,56,51,46,55,55,51,57,50,50,44,52,50,46,48,56,50,52,51,93,44,91,45,56,52,46,49,51,49,57,54,51,44,52,50,46,48,55,49,53,55,55,93,44,91,45,56,52,46,51,54,51,50,57,55,44,52,50,46,48,55,51,52,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,71,105,108,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,57,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,49,56,54,51,55,44,51,52,46,56,53,53,51,57,56,93,44,91,45,56,52,46,54,53,55,48,57,56,44,51,52,46,55,50,56,57,48,53,93,44,91,45,56,52,46,54,53,52,53,50,51,44,51,52,46,53,56,51,49,56,55,93,44,91,45,56,52,46,54,53,52,51,54,54,44,51,52,46,53,52,56,57,52,54,93,44,91,45,56,52,46,51,52,53,53,53,51,44,51,52,46,53,54,50,55,51,53,93,44,91,45,56,52,46,49,57,54,55,53,52,44,51,52,46,54,49,55,57,50,52,93,44,91,45,56,52,46,51,49,52,54,53,51,44,51,52,46,56,48,55,51,50,56,93,44,91,45,56,52,46,52,50,57,48,57,51,44,51,52,46,56,53,53,48,51,54,93,44,91,45,56,52,46,54,49,56,54,51,55,44,51,52,46,56,53,53,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,82,111,115,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,54,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,48,53,52,48,56,44,52,56,46,57,57,57,57,56,51,93,44,91,45,57,54,46,51,56,55,56,51,53,44,52,56,46,53,52,52,51,48,56,93,44,91,45,57,53,46,54,48,50,51,49,53,44,52,56,46,53,51,56,56,56,55,93,44,91,45,57,53,46,51,52,50,53,52,44,52,56,46,53,52,48,50,49,49,93,44,91,45,57,53,46,51,52,50,55,51,44,52,56,46,55,49,51,48,50,56,93,44,91,45,57,53,46,48,56,57,56,54,51,44,52,56,46,55,49,51,48,54,50,93,44,91,45,57,53,46,48,57,49,50,56,50,44,52,56,46,57,49,57,49,55,51,93,44,91,45,57,53,46,50,51,53,54,48,54,44,52,56,46,56,56,49,52,53,93,44,91,45,57,53,46,51,49,57,56,57,53,44,52,56,46,57,57,56,55,55,93,44,91,45,57,54,46,52,48,53,52,48,56,44,52,56,46,57,57,57,57,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,52,57,56,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,44,91,45,57,48,46,48,52,57,49,50,57,44,51,50,46,55,51,53,54,55,52,93,44,91,45,57,48,46,52,53,48,48,51,55,44,51,50,46,53,55,51,55,56,51,93,44,91,45,57,48,46,52,52,53,57,52,54,44,51,50,46,52,56,55,57,48,51,93,44,91,45,57,48,46,50,52,51,54,52,49,44,51,50,46,52,56,55,53,51,51,93,44,91,45,57,48,46,50,52,51,55,54,52,44,51,50,46,52,48,48,48,57,56,93,44,91,45,57,48,46,48,54,53,54,57,55,44,51,50,46,51,57,57,53,50,57,93,44,91,45,56,57,46,56,54,49,49,53,57,44,51,50,46,53,56,51,49,54,50,93,44,91,45,56,57,46,55,56,52,49,50,51,44,51,50,46,53,56,54,56,57,49,93,44,91,45,56,57,46,55,51,48,51,48,52,44,51,50,46,54,51,52,50,50,56,93,44,91,45,56,57,46,55,51,48,48,49,54,44,51,50,46,56,56,53,48,55,50,93,44,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,55,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,54,55,44,34,98,101,100,115,34,58,51,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,56,56,55,52,44,51,50,46,53,50,53,50,50,50,93,44,91,45,49,48,49,46,54,57,53,48,49,49,44,51,50,46,48,56,55,53,51,50,93,44,91,45,49,48,49,46,50,54,52,50,49,54,44,51,50,46,48,56,55,49,51,54,93,44,91,45,49,48,49,46,49,56,51,57,57,55,44,51,50,46,48,56,55,50,48,56,93,44,91,45,49,48,49,46,49,55,52,53,55,49,44,51,50,46,53,50,52,49,49,50,93,44,91,45,49,48,49,46,54,56,56,55,52,44,51,50,46,53,50,53,50,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,55,48,56,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,53,57,51,52,56,44,51,56,46,52,50,49,56,50,49,93,44,91,45,56,50,46,54,48,52,54,50,53,44,51,56,46,50,52,55,54,54,50,93,44,91,45,56,50,46,54,51,52,55,48,50,44,51,56,46,49,51,54,57,52,49,93,44,91,45,56,50,46,53,52,57,50,52,44,51,56,46,48,54,55,57,53,50,93,44,91,45,56,50,46,52,57,55,55,57,54,44,51,55,46,57,52,53,52,56,56,93,44,91,45,56,50,46,52,49,52,55,53,55,44,51,55,46,56,53,53,53,48,57,93,44,91,45,56,50,46,51,48,54,51,57,49,44,51,55,46,57,52,51,54,52,93,44,91,45,56,50,46,50,48,50,50,51,54,44,51,56,46,48,51,54,49,57,51,93,44,91,45,56,50,46,50,56,53,54,57,51,44,51,56,46,49,52,52,57,53,50,93,44,91,45,56,50,46,50,54,52,56,52,57,44,51,56,46,50,50,57,49,57,57,93,44,91,45,56,50,46,53,48,56,50,56,44,51,56,46,52,49,49,49,57,56,93,44,91,45,56,50,46,53,57,51,52,56,44,51,56,46,52,50,49,56,50,49,93,93,93,125,125,93,125]) \ No newline at end of file diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 000000000..cfa5f5102 --- /dev/null +++ b/netlify.toml @@ -0,0 +1,2 @@ +[functions] + directory = "functions/" \ No newline at end of file diff --git a/package.json b/package.json index a5c325feb..7e197e5f4 100644 --- a/package.json +++ b/package.json @@ -26,12 +26,16 @@ "@testing-library/jest-dom": "^5.11.4", "@testing-library/react": "^11.2.2", "@testing-library/user-event": "^12.6.0", + "axios": "^0.21.1", "comlink": "^4.3.1", + "cors-anywhere": "^0.4.4", "d3-dsv": "^2.0.0", "d3-scale": "^3.2.0", "file-saver": "^2.0.5", + "jsgeoda": "^0.2.3", "jszip": "^3.6.0", "lodash": "^4.17.20", + "node-fetch": "^2.6.1", "pbf": "^3.2.1", "react": "^17.0.1", "react-dom": "^17.0.1", @@ -64,7 +68,9 @@ ], "overrides": [ { - "files": ["**/*.js?(x)"], + "files": [ + "**/*.js?(x)" + ], "rules": { "react-hooks/exhaustive-deps": "off" } diff --git a/yarn.lock b/yarn.lock index f86f7be2d..ead693420 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1796,6 +1796,15 @@ dependencies: "@hapi/hoek" "^8.3.0" +"@iarna/cli@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@iarna/cli/-/cli-1.2.0.tgz#0f7af5e851afe895104583c4ca07377a8094d641" + integrity sha512-ukITQAqVs2n9HGmn3car/Ir7d3ta650iXhrG7pjr3EWdFmJuuOVWgYsu7ftsSe5VifEFFhjxVuX9+8F7L8hwcA== + dependencies: + signal-exit "^3.0.2" + update-notifier "^2.2.0" + yargs "^8.0.2" + "@istanbuljs/load-nyc-config@^1.0.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" @@ -3167,11 +3176,24 @@ resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== +JSONStream@^1.3.4, JSONStream@^1.3.5: + version "1.3.5" + resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" + integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ== + dependencies: + jsonparse "^1.2.0" + through ">=2.2.7 <3" + abab@^2.0.3: version "2.0.5" resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== +abbrev@1, abbrev@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7: version "1.3.7" resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" @@ -3221,6 +3243,27 @@ adjust-sourcemap-loader@3.0.0: loader-utils "^2.0.0" regex-parser "^2.2.11" +agent-base@4, agent-base@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.3.0.tgz#8165f01c436009bccad0b1d122f05ed770efc6ee" + integrity sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg== + dependencies: + es6-promisify "^5.0.0" + +agent-base@~4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.2.1.tgz#d89e5999f797875674c07d87f260fc41e83e8ca9" + integrity sha512-JVwXMr9nHYTUXsBFKUqhJwvlcYU/blreOEUkhNR2eXZIvwd+c+o5V4MgDPKWnMS/56awN3TRzIP+KoPn+roQtg== + dependencies: + es6-promisify "^5.0.0" + +agentkeepalive@^3.4.1: + version "3.5.2" + resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-3.5.2.tgz#a113924dd3fa24a0bc3b78108c450c2abee00f67" + integrity sha512-e0L/HNe6qkQ7H19kTlRRqUibEAwDK5AFk6y3PtMsuut2VAH6+Q4xZml1tNDJD7kSAyqmbG/K08K5WEJYtUrSlQ== + dependencies: + humanize-ms "^1.2.1" + aggregate-error@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" @@ -3264,6 +3307,13 @@ alphanum-sort@^1.0.0: resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM= +ansi-align@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" + integrity sha1-w2rsy6VjuJzrVW82kPCx2eNUf38= + dependencies: + string-width "^2.0.0" + ansi-colors@^3.0.0: version "3.2.4" resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" @@ -3291,6 +3341,11 @@ ansi-regex@^2.0.0: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= +ansi-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= + ansi-regex@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" @@ -3315,6 +3370,16 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" +ansicolors@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979" + integrity sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk= + +ansistyles@~0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/ansistyles/-/ansistyles-0.1.3.tgz#5de60415bda071bb37127854c864f41b23254539" + integrity sha1-XeYEFb2gcbs3EnhUyGT0GyMlRTk= + anymatch@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" @@ -3331,11 +3396,29 @@ anymatch@^3.0.3, anymatch@~3.1.1: normalize-path "^3.0.0" picomatch "^2.0.4" -aproba@^1.1.1: +aproba@^1.0.3, aproba@^1.1.1, aproba@^1.1.2: version "1.2.0" resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== +"aproba@^1.1.2 || 2", aproba@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" + integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== + +archy@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" + integrity sha1-+cjBN1fMHde8N5rHeyxipcKGjEA= + +are-we-there-yet@~1.1.2: + version "1.1.5" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" + integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== + dependencies: + delegates "^1.0.0" + readable-stream "^2.0.6" + argparse@^1.0.7: version "1.0.10" resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" @@ -3438,7 +3521,7 @@ arrify@^2.0.1: resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== -asap@~2.0.6: +asap@^2.0.0, asap@~2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= @@ -3553,6 +3636,13 @@ axe-core@^4.0.2: resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.1.2.tgz#7cf783331320098bfbef620df3b3c770147bc224" integrity sha512-V+Nq70NxKhYt89ArVcaNL9FDryB3vQOd+BFXZIfO3RP6rwtj+2yqqqdHEkacutglPaZLkJeuXKCjCJDMGPtPqg== +axios@^0.21.1: + version "0.21.1" + resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.1.tgz#22563481962f4d6bde9a76d516ef0e5d3c09b2b8" + integrity sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA== + dependencies: + follow-redirects "^1.10.0" + axobject-query@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be" @@ -3845,6 +3935,18 @@ big.js@^5.2.2: resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== +bin-links@^1.1.2, bin-links@^1.1.8: + version "1.1.8" + resolved "https://registry.yarnpkg.com/bin-links/-/bin-links-1.1.8.tgz#bd39aadab5dc4bdac222a07df5baf1af745b2228" + integrity sha512-KgmVfx+QqggqP9dA3iIc5pA4T1qEEEL+hOhOhNPaUm77OTrJoOXE/C05SJLNJe6m/2wUK7F1tDSou7n5TfCDzQ== + dependencies: + bluebird "^3.5.3" + cmd-shim "^3.0.0" + gentle-fs "^2.3.0" + graceful-fs "^4.1.15" + npm-normalize-package-bin "^1.0.0" + write-file-atomic "^2.3.0" + binary-extensions@^1.0.0: version "1.13.1" resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" @@ -3862,7 +3964,7 @@ bindings@^1.5.0: dependencies: file-uri-to-path "1.0.0" -bluebird@^3.5.5: +bluebird@^3.5.1, bluebird@^3.5.3, bluebird@^3.5.5: version "3.7.2" resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== @@ -3910,6 +4012,19 @@ boolbase@^1.0.0, boolbase@~1.0.0: resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= +boxen@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" + integrity sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw== + dependencies: + ansi-align "^2.0.0" + camelcase "^4.0.0" + chalk "^2.0.1" + cli-boxes "^1.0.0" + string-width "^2.0.0" + term-size "^1.2.0" + widest-line "^2.0.0" + brace-expansion@^1.1.7: version "1.1.11" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" @@ -4090,6 +4205,21 @@ builtin-status-codes@^3.0.0: resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= +builtins@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/builtins/-/builtins-1.0.3.tgz#cb94faeb61c8696451db36534e1422f94f0aee88" + integrity sha1-y5T662HIaWRR2zZTThQi+U8K7og= + +byline@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/byline/-/byline-5.0.0.tgz#741c5216468eadc457b03410118ad77de8c1ddb1" + integrity sha1-dBxSFkaOrcRXsDQQEYrXfejB3bE= + +byte-size@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/byte-size/-/byte-size-5.0.1.tgz#4b651039a5ecd96767e71a3d7ed380e48bed4191" + integrity sha512-/XuKeqWocKsYa/cBY1YbSJSWWqTi4cFgr9S6OyM7PBaPbr9zvNGwWP33vt0uqGhwDdN+y3yhbXVILEUpnwEWGw== + bytes@3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" @@ -4100,7 +4230,7 @@ bytes@3.1.0: resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== -cacache@^12.0.2: +cacache@^12.0.0, cacache@^12.0.2, cacache@^12.0.3: version "12.0.4" resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c" integrity sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ== @@ -4167,6 +4297,11 @@ call-bind@^1.0.0, call-bind@^1.0.2: function-bind "^1.1.1" get-intrinsic "^1.0.2" +call-limit@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/call-limit/-/call-limit-1.1.1.tgz#ef15f2670db3f1992557e2d965abc459e6e358d4" + integrity sha512-5twvci5b9eRBw2wCfPtN0GmlR2/gadZqyFpPhOK6CvMFoFgA+USnZ6Jpu1lhG9h85pQ3Ouil3PfXWRD4EUaRiQ== + caller-callsite@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" @@ -4204,6 +4339,11 @@ camelcase@5.3.1, camelcase@^5.0.0, camelcase@^5.3.1: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== +camelcase@^4.0.0, camelcase@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" + integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= + camelcase@^6.0.0, camelcase@^6.1.0, camelcase@^6.2.0: version "6.2.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" @@ -4241,6 +4381,11 @@ capture-exit@^2.0.0: dependencies: rsvp "^4.8.4" +capture-stack-trace@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz#a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d" + integrity sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw== + case-sensitive-paths-webpack-plugin@2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz#23ac613cc9a856e4f88ff8bb73bbb5e989825cf7" @@ -4256,7 +4401,7 @@ ccount@^1.0.0: resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.1.0.tgz#246687debb6014735131be8abab2d93898f8d043" integrity sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg== -chalk@2.4.2, chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2: +chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.1, chalk@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== @@ -4340,7 +4485,7 @@ chokidar@^3.4.1: optionalDependencies: fsevents "~2.3.1" -chownr@^1.1.1: +chownr@^1.1.1, chownr@^1.1.2, chownr@^1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== @@ -4357,11 +4502,23 @@ chrome-trace-event@^1.0.2: dependencies: tslib "^1.9.0" +ci-info@^1.5.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497" + integrity sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A== + ci-info@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== +cidr-regex@^2.0.10: + version "2.0.10" + resolved "https://registry.yarnpkg.com/cidr-regex/-/cidr-regex-2.0.10.tgz#af13878bd4ad704de77d6dc800799358b3afa70d" + integrity sha512-sB3ogMQXWvreNPbJUZMRApxuRYd+KoIo4RGQ81VatjmMW6WJPo+IJZ2846FGItr9VzKo5w7DXzijPLGtSd0N3Q== + dependencies: + ip-regex "^2.1.0" + cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: version "1.0.4" resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" @@ -4402,6 +4559,38 @@ clean-stack@^2.0.0: resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== +cli-boxes@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" + integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM= + +cli-columns@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/cli-columns/-/cli-columns-3.1.2.tgz#6732d972979efc2ae444a1f08e08fa139c96a18e" + integrity sha1-ZzLZcpee/CrkRKHwjgj6E5yWoY4= + dependencies: + string-width "^2.0.0" + strip-ansi "^3.0.1" + +cli-table3@^0.5.0, cli-table3@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.5.1.tgz#0252372d94dfc40dbd8df06005f48f31f656f202" + integrity sha512-7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw== + dependencies: + object-assign "^4.1.0" + string-width "^2.1.1" + optionalDependencies: + colors "^1.1.2" + +cliui@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" + integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + wrap-ansi "^2.0.0" + cliui@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" @@ -4438,11 +4627,24 @@ clone-deep@^4.0.1: kind-of "^6.0.2" shallow-clone "^3.0.0" +clone@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= + clsx@^1.0.4: version "1.1.1" resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.1.1.tgz#98b3134f9abbdf23b2663491ace13c5c03a73188" integrity sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA== +cmd-shim@^3.0.0, cmd-shim@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/cmd-shim/-/cmd-shim-3.0.3.tgz#2c35238d3df37d98ecdd7d5f6b8dc6b21cadc7cb" + integrity sha512-DtGg+0xiFhQIntSBRzL2fRQBnmtAVwXIDo4Qq46HPpObYquxMaZS4sb82U9nH91qJrlosC1wa9gwr0QyL/HypA== + dependencies: + graceful-fs "^4.1.2" + mkdirp "~0.5.0" + co@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" @@ -4457,6 +4659,11 @@ coa@^2.0.2: chalk "^2.4.1" q "^1.1.2" +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= + collect-v8-coverage@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" @@ -4520,6 +4727,19 @@ colorette@^1.2.2: resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== +colors@^1.1.2: + version "1.4.0" + resolved "https://registry.yarnpkg.com/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" + integrity sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA== + +columnify@~1.5.4: + version "1.5.4" + resolved "https://registry.yarnpkg.com/columnify/-/columnify-1.5.4.tgz#4737ddf1c7b69a8a7c340570782e947eec8e78bb" + integrity sha1-Rzfd8ce2mop8NAVweC6UfuyOeLs= + dependencies: + strip-ansi "^3.0.0" + wcwidth "^1.0.0" + combined-stream@^1.0.6, combined-stream@~1.0.6: version "1.0.8" resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" @@ -4609,6 +4829,26 @@ concat-stream@~2.0.0: readable-stream "^3.0.2" typedarray "^0.0.6" +config-chain@^1.1.12: + version "1.1.13" + resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.13.tgz#fad0795aa6a6cdaff9ed1b68e9dff94372c232f4" + integrity sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ== + dependencies: + ini "^1.3.4" + proto-list "~1.2.1" + +configstore@^3.0.0: + version "3.1.5" + resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.5.tgz#e9af331fadc14dabd544d3e7e76dc446a09a530f" + integrity sha512-nlOhI4+fdzoK5xmJ+NY+1gZK56bwEaWZr8fYuXohZ9Vkc1o3a4T/R3M+yE/w7x/ZVJ1zF8c+oaOvF0dztdUgmA== + dependencies: + dot-prop "^4.2.1" + graceful-fs "^4.1.2" + make-dir "^1.0.0" + unique-string "^1.0.0" + write-file-atomic "^2.0.0" + xdg-basedir "^3.0.0" + confusing-browser-globals@^1.0.10: version "1.0.10" resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz#30d1e7f3d1b882b25ec4933d1d1adac353d20a59" @@ -4624,6 +4864,11 @@ console-browserify@^1.1.0: resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== +console-control-strings@^1.0.0, console-control-strings@^1.1.0, console-control-strings@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= + constants-browserify@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" @@ -4721,6 +4966,14 @@ core-util-is@1.0.2, core-util-is@~1.0.0: resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= +cors-anywhere@^0.4.4: + version "0.4.4" + resolved "https://registry.yarnpkg.com/cors-anywhere/-/cors-anywhere-0.4.4.tgz#98892fcab55f408fff13a63e125135c18dc22ca8" + integrity sha512-8OBFwnzMgR4mNrAeAyOLB2EruS2z7u02of2bOu7i9kKYlZG+niS7CTHLPgEXKWW2NAOJWRry9RRCaL9lJRjNqg== + dependencies: + http-proxy "1.11.1" + proxy-from-env "0.0.1" + cosmiconfig@^5.0.0: version "5.2.1" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" @@ -4761,6 +5014,13 @@ create-ecdh@^4.0.0: bn.js "^4.1.0" elliptic "^6.5.3" +create-error-class@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" + integrity sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y= + dependencies: + capture-stack-trace "^1.0.0" + create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" @@ -4793,6 +5053,15 @@ cross-spawn@7.0.3, cross-spawn@^7.0.0, cross-spawn@^7.0.2: shebang-command "^2.0.0" which "^2.0.1" +cross-spawn@^5.0.1: + version "5.1.0" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= + dependencies: + lru-cache "^4.0.1" + shebang-command "^1.2.0" + which "^1.2.9" + cross-spawn@^6.0.0: version "6.0.5" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" @@ -5248,7 +5517,14 @@ debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9: dependencies: ms "2.0.0" -debug@^3.1.1, debug@^3.2.5: +debug@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" + integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== + dependencies: + ms "2.0.0" + +debug@^3.1.0, debug@^3.1.1, debug@^3.2.5: version "3.2.7" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== @@ -5262,7 +5538,12 @@ debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: dependencies: ms "2.1.2" -decamelize@^1.2.0: +debuglog@*, debuglog@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492" + integrity sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI= + +decamelize@^1.1.1, decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= @@ -5299,6 +5580,11 @@ deep-equal@^1.0.1: object-keys "^1.1.1" regexp.prototype.flags "^1.2.0" +deep-extend@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== + deep-is@^0.1.3, deep-is@~0.1.3: version "0.1.3" resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" @@ -5317,6 +5603,13 @@ default-gateway@^4.2.0: execa "^1.0.0" ip-regex "^2.1.0" +defaults@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" + integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730= + dependencies: + clone "^1.0.2" + define-properties@^1.1.2, define-properties@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" @@ -5364,6 +5657,11 @@ delayed-stream@~1.0.0: resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= + depd@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" @@ -5382,6 +5680,16 @@ destroy@~1.0.4: resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= +detect-indent@~5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" + integrity sha1-OHHMCmoALow+Wzz38zYmRnXwa50= + +detect-newline@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" + integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I= + detect-newline@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" @@ -5400,6 +5708,14 @@ detect-port-alt@1.1.6: address "^1.0.1" debug "^2.6.0" +dezalgo@^1.0.0, dezalgo@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.3.tgz#7f742de066fc748bc8db820569dddce49bf0d456" + integrity sha1-f3Qt4Gb8dIvI24IFad3c5Jvw1FY= + dependencies: + asap "^2.0.0" + wrappy "1" + diff-sequences@^26.6.2: version "26.6.2" resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1" @@ -5575,6 +5891,13 @@ dot-case@^3.0.4: no-case "^3.0.4" tslib "^2.0.3" +dot-prop@^4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.1.tgz#45884194a71fc2cda71cbb4bceb3a4dd2f433ba4" + integrity sha512-l0p4+mIuJIua0mhxGoh4a+iNL9bmeK5DvnSVQa6T0OhrVmaEa1XScX5Etc673FePCJOArq/4Pa2cLGODUWTPOQ== + dependencies: + is-obj "^1.0.0" + dot-prop@^5.2.0: version "5.3.0" resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" @@ -5592,11 +5915,21 @@ dotenv@8.2.0: resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== +dotenv@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-5.0.1.tgz#a5317459bd3d79ab88cff6e44057a6a3fbb1fcef" + integrity sha512-4As8uPrjfwb7VXC+WnLCbXK7y+Ueb2B3zgNCePYfhxS1PYeaO1YTeplffTEcbfLhvFNGLAz90VvJs9yomG7bow== + draco3d@^1.3.6: version "1.4.1" resolved "https://registry.yarnpkg.com/draco3d/-/draco3d-1.4.1.tgz#2abdcf7b59caaac50f7e189aec454176c57146b2" integrity sha512-9Rxonc70xiovBC+Bq1h57SNZIHzWTibU1VfIGp5z3Xx8dPtv4yT5uGhiH7P5uvJRR2jkrvHafRxR7bTANkvfpg== +duplexer3@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" + integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= + duplexer@^0.1.1, duplexer@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" @@ -5625,6 +5958,11 @@ ecc-jsbn@~0.1.1: jsbn "~0.1.0" safer-buffer "^2.1.0" +editor@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/editor/-/editor-1.0.0.tgz#60c7f87bd62bcc6a894fa8ccd6afb7823a24f742" + integrity sha1-YMf4e9YrzGqJT6jM1q+3gjok90I= + ee-first@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" @@ -5700,6 +6038,13 @@ encodeurl@~1.0.2: resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= +encoding@^0.1.11: + version "0.1.13" + resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9" + integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A== + dependencies: + iconv-lite "^0.6.2" + end-of-stream@^1.0.0, end-of-stream@^1.1.0: version "1.4.4" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" @@ -5733,6 +6078,16 @@ entities@^2.0.0: resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== +env-paths@^2.2.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" + integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== + +err-code@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/err-code/-/err-code-1.1.2.tgz#06e0116d3028f6aef4806849eb0ea6a748ae6960" + integrity sha1-BuARbTAo9q70gGhJ6w6mp0iuaWA= + errno@^0.1.3, errno@~0.1.7: version "0.1.8" resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f" @@ -5818,6 +6173,18 @@ es6-iterator@2.0.3, es6-iterator@~2.0.3: es5-ext "^0.10.35" es6-symbol "^3.1.1" +es6-promise@^4.0.3: + version "4.2.8" + resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.8.tgz#4eb21594c972bc40553d276e510539143db53e0a" + integrity sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w== + +es6-promisify@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/es6-promisify/-/es6-promisify-5.0.0.tgz#5109d62f3e56ea967c4b63505aef08291c8a5203" + integrity sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM= + dependencies: + es6-promise "^4.0.3" + es6-symbol@^3.1.1, es6-symbol@~3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" @@ -6111,6 +6478,11 @@ etag@~1.8.1: resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= +eventemitter3@1.x.x: + version "1.2.0" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" + integrity sha1-HIaZHYFq0eUEdQ5zh0Ik7PO+xQg= + eventemitter3@^4.0.0: version "4.0.7" resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" @@ -6141,6 +6513,19 @@ exec-sh@^0.3.2: resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.4.tgz#3a018ceb526cc6f6df2bb504b2bfe8e3a4934ec5" integrity sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A== +execa@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" + integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= + dependencies: + cross-spawn "^5.0.1" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + execa@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" @@ -6341,7 +6726,7 @@ fb-watchman@^2.0.0: dependencies: bser "2.1.1" -figgy-pudding@^3.5.1: +figgy-pudding@^3.4.1, figgy-pudding@^3.5.1: version "3.5.2" resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e" integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw== @@ -6400,6 +6785,11 @@ fill-range@^7.0.1: dependencies: to-regex-range "^5.0.1" +filter-obj@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/filter-obj/-/filter-obj-1.1.0.tgz#9b311112bc6c6127a16e016c6c5d7f19e0805c5b" + integrity sha1-mzERErxsYSehbgFsbF1/GeCAXFs= + finalhandler@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" @@ -6431,6 +6821,11 @@ find-cache-dir@^3.3.1: make-dir "^3.0.2" pkg-dir "^4.1.0" +find-npm-prefix@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/find-npm-prefix/-/find-npm-prefix-1.0.2.tgz#8d8ce2c78b3b4b9e66c8acc6a37c231eb841cfdf" + integrity sha512-KEftzJ+H90x6pcKtdXZEPsQse8/y/UnvzRKrOSQFprnrGaFuJ62fVkP34Iu2IYuMvyauCyoLTNkJZgrrGA2wkA== + find-up@4.1.0, find-up@^4.0.0, find-up@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" @@ -6484,6 +6879,11 @@ follow-redirects@^1.0.0: resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.2.tgz#dd73c8effc12728ba5cf4259d760ea5fb83e3147" integrity sha512-6mPTgLxYm3r6Bkkg0vNM0HTjfGrOEtsfbhagQvbxDEsEkpNhw582upBaoRZylzen6krEmxXJgt9Ju6HiI4O7BA== +follow-redirects@^1.10.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.1.tgz#d9114ded0a1cfdd334e164e6662ad02bfd91ff43" + integrity sha512-HWqDgT7ZEkqRzBvc2s64vSZ/hfOceEol3ac/7tKwzuvEyWx3/4UegXh5oBOIotkGsObyk3xznnSRVADBgWSQVg== + for-in@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" @@ -6533,6 +6933,14 @@ fresh@0.5.2: resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= +from2@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/from2/-/from2-1.3.0.tgz#88413baaa5f9a597cfde9221d86986cd3c061dfd" + integrity sha1-iEE7qqX5pZfP3pIh2GmGzTwGHf0= + dependencies: + inherits "~2.0.1" + readable-stream "~1.1.10" + from2@^2.1.0: version "2.3.0" resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" @@ -6569,6 +6977,13 @@ fs-extra@^9.0.1: jsonfile "^6.0.1" universalify "^2.0.0" +fs-minipass@^1.2.5: + version "1.2.7" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" + integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA== + dependencies: + minipass "^2.6.0" + fs-minipass@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" @@ -6576,7 +6991,16 @@ fs-minipass@^2.0.0: dependencies: minipass "^3.0.0" -fs-write-stream-atomic@^1.0.8: +fs-vacuum@^1.2.10, fs-vacuum@~1.2.10: + version "1.2.10" + resolved "https://registry.yarnpkg.com/fs-vacuum/-/fs-vacuum-1.2.10.tgz#b7629bec07a4031a2548fdf99f5ecf1cc8b31e36" + integrity sha1-t2Kb7AekAxolSP35n17PHMizHjY= + dependencies: + graceful-fs "^4.1.2" + path-is-inside "^1.0.1" + rimraf "^2.5.2" + +fs-write-stream-atomic@^1.0.8, fs-write-stream-atomic@~1.0.10: version "1.0.10" resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk= @@ -6614,16 +7038,57 @@ functional-red-black-tree@^1.0.1: resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= +gauge@~2.7.3: + version "2.7.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-unicode "^2.0.0" + object-assign "^4.1.0" + signal-exit "^3.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" + wide-align "^1.1.0" + +genfun@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/genfun/-/genfun-5.0.0.tgz#9dd9710a06900a5c4a5bf57aca5da4e52fe76537" + integrity sha512-KGDOARWVga7+rnB3z9Sd2Letx515owfk0hSxHGuqjANb1M+x2bGZGqHLiozPsYMdM2OubeMni/Hpwmjq6qIUhA== + gensync@^1.0.0-beta.1, gensync@^1.0.0-beta.2: version "1.0.0-beta.2" resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== +gentle-fs@^2.3.0, gentle-fs@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/gentle-fs/-/gentle-fs-2.3.1.tgz#11201bf66c18f930ddca72cf69460bdfa05727b1" + integrity sha512-OlwBBwqCFPcjm33rF2BjW+Pr6/ll2741l+xooiwTCeaX2CA1ZuclavyMBe0/KlR21/XGsgY6hzEQZ15BdNa13Q== + dependencies: + aproba "^1.1.2" + chownr "^1.1.2" + cmd-shim "^3.0.3" + fs-vacuum "^1.2.10" + graceful-fs "^4.1.11" + iferr "^0.1.5" + infer-owner "^1.0.4" + mkdirp "^0.5.1" + path-is-inside "^1.0.2" + read-cmd-shim "^1.0.1" + slide "^1.1.6" + geojson-vt@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/geojson-vt/-/geojson-vt-3.2.1.tgz#f8adb614d2c1d3f6ee7c4265cad4bbf3ad60c8b7" integrity sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg== +get-caller-file@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" + integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== + get-caller-file@^2.0.1, get-caller-file@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" @@ -6648,7 +7113,12 @@ get-package-type@^0.1.0: resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== -get-stream@^4.0.0: +get-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= + +get-stream@^4.0.0, get-stream@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== @@ -6706,6 +7176,13 @@ glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: once "^1.3.0" path-is-absolute "^1.0.0" +global-dirs@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" + integrity sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU= + dependencies: + ini "^1.3.4" + global-modules@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" @@ -6769,7 +7246,24 @@ globby@^6.1.0: pify "^2.0.0" pinkie-promise "^2.0.0" -graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4: +got@^6.7.1: + version "6.7.1" + resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" + integrity sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA= + dependencies: + create-error-class "^3.0.0" + duplexer3 "^0.1.4" + get-stream "^3.0.0" + is-redirect "^1.0.0" + is-retry-allowed "^1.0.0" + is-stream "^1.0.0" + lowercase-keys "^1.0.0" + safe-buffer "^5.0.1" + timed-out "^4.0.0" + unzip-response "^2.0.1" + url-parse-lax "^1.0.0" + +graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.4: version "4.2.6" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== @@ -6847,6 +7341,11 @@ has-symbols@^1.0.1: resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== +has-unicode@^2.0.0, has-unicode@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= + has-value@^0.3.1: version "0.3.1" resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" @@ -6950,6 +7449,11 @@ hosted-git-info@^2.1.4: resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== +hosted-git-info@^2.7.1, hosted-git-info@^2.8.9: + version "2.8.9" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + hpack.js@^2.1.6: version "2.1.6" resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" @@ -7052,6 +7556,11 @@ htmlparser2@^5.0: domutils "^2.4.2" entities "^2.0.0" +http-cache-semantics@^3.8.1: + version "3.8.1" + resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2" + integrity sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w== + http-deceiver@^1.2.7: version "1.2.7" resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" @@ -7094,6 +7603,14 @@ http-parser-js@>=0.5.1: resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.3.tgz#01d2709c79d41698bb01d4decc5e9da4e4a033d9" integrity sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg== +http-proxy-agent@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz#e4821beef5b2142a2026bd73926fe537631c5405" + integrity sha512-qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg== + dependencies: + agent-base "4" + debug "3.1.0" + http-proxy-middleware@0.19.1: version "0.19.1" resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz#183c7dc4aa1479150306498c210cdaf96080a43a" @@ -7104,6 +7621,14 @@ http-proxy-middleware@0.19.1: lodash "^4.17.11" micromatch "^3.1.10" +http-proxy@1.11.1: + version "1.11.1" + resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.11.1.tgz#71df55757e802d58ea810df2244019dda05ae85d" + integrity sha1-cd9VdX6ALVjqgQ3yJEAZ3aBa6F0= + dependencies: + eventemitter3 "1.x.x" + requires-port "0.x.x" + http-proxy@^1.17.0: version "1.18.1" resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" @@ -7127,11 +7652,26 @@ https-browserify@^1.0.0: resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= +https-proxy-agent@^2.2.3: + version "2.2.4" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz#4ee7a737abd92678a293d9b34a1af4d0d08c787b" + integrity sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg== + dependencies: + agent-base "^4.3.0" + debug "^3.1.0" + human-signals@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== +humanize-ms@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" + integrity sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0= + dependencies: + ms "^2.0.0" + hyphenate-style-name@^1.0.3: version "1.0.4" resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz#691879af8e220aea5750e8827db4ef62a54e361d" @@ -7144,6 +7684,13 @@ iconv-lite@0.4, iconv-lite@0.4.24: dependencies: safer-buffer ">= 2.1.2 < 3" +iconv-lite@^0.6.2: + version "0.6.3" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + icss-utils@^4.0.0, icss-utils@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467" @@ -7168,6 +7715,18 @@ iferr@^0.1.5: resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= +iferr@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/iferr/-/iferr-1.0.2.tgz#e9fde49a9da06dc4a4194c6c9ed6d08305037a6d" + integrity sha512-9AfeLfji44r5TKInjhz3W9DyZI1zR1JAf2hVBMGhddAKPqBsupb89jGfbCTHIGZd6fGZl9WlHdn4AObygyMKwg== + +ignore-walk@^3.0.1: + version "3.0.4" + resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.4.tgz#c9a09f69b7c7b479a5d74ac1a3c0d4236d2a6335" + integrity sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ== + dependencies: + minimatch "^3.0.4" + ignore@^4.0.6: version "4.0.6" resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" @@ -7218,6 +7777,11 @@ import-from@^2.1.0: dependencies: resolve-from "^3.0.0" +import-lazy@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" + integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= + import-local@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" @@ -7234,7 +7798,7 @@ import-local@^3.0.2: pkg-dir "^4.2.0" resolve-cwd "^3.0.0" -imurmurhash@^0.1.4: +imurmurhash@*, imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= @@ -7261,7 +7825,7 @@ infer-owner@^1.0.3, infer-owner@^1.0.4: resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== -inflight@^1.0.4: +inflight@^1.0.4, inflight@~1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= @@ -7284,11 +7848,30 @@ inherits@2.0.3: resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= -ini@^1.3.5: +ini@^1.3.4, ini@^1.3.5, ini@^1.3.8, ini@~1.3.0: version "1.3.8" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== +init-package-json@^1.10.3: + version "1.10.3" + resolved "https://registry.yarnpkg.com/init-package-json/-/init-package-json-1.10.3.tgz#45ffe2f610a8ca134f2bd1db5637b235070f6cbe" + integrity sha512-zKSiXKhQveNteyhcj1CoOP8tqp1QuxPIPBl8Bid99DGLFqA1p87M6lNgfjJHSBoWJJlidGOv5rWjyYKEB3g2Jw== + dependencies: + glob "^7.1.1" + npm-package-arg "^4.0.0 || ^5.0.0 || ^6.0.0" + promzard "^0.3.0" + read "~1.0.1" + read-package-json "1 || 2" + semver "2.x || 3.x || 4 || 5" + validate-npm-package-license "^3.0.1" + validate-npm-package-name "^3.0.0" + +install@^0.13.0: + version "0.13.0" + resolved "https://registry.yarnpkg.com/install/-/install-0.13.0.tgz#6af6e9da9dd0987de2ab420f78e60d9c17260776" + integrity sha512-zDml/jzr2PKU9I8J/xyZBQn8rPCAY//UOYNmR01XwNwyfhEWObo2SWfSl1+0tm1u6PhxLwDnfsT/6jB7OUxqFA== + internal-ip@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-4.3.0.tgz#845452baad9d2ca3b69c635a137acb9a0dad0907" @@ -7311,12 +7894,17 @@ internmap@^1.0.0: resolved "https://registry.yarnpkg.com/internmap/-/internmap-1.0.0.tgz#3c6bf0944b0eae457698000412108752bbfddb56" integrity sha512-SdoDWwNOTE2n4JWUsLn4KXZGuZPjPF9yyOGc8bnfWnBQh7BD/l80rzSznKc/r4Y0aQ7z3RTk9X+tV4tHBpu+dA== +invert-kv@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" + integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= + ip-regex@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk= -ip@^1.1.0, ip@^1.1.5: +ip@1.1.5, ip@^1.1.0, ip@^1.1.5: version "1.1.5" resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= @@ -7409,6 +7997,13 @@ is-callable@^1.1.4, is-callable@^1.2.2: resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e" integrity sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ== +is-ci@^1.0.10: + version "1.2.1" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.2.1.tgz#e3779c8ee17fccf428488f6e281187f2e632841c" + integrity sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg== + dependencies: + ci-info "^1.5.0" + is-ci@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" @@ -7416,6 +8011,13 @@ is-ci@^2.0.0: dependencies: ci-info "^2.0.0" +is-cidr@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/is-cidr/-/is-cidr-3.1.1.tgz#e92ef121bdec2782271a77ce487a8b8df3718ab7" + integrity sha512-Gx+oErgq1j2jAKCR2Kbq0b3wbH0vQKqZ0wOlHxm0o56nq51Cs/DZA8oz9dMDhbHyHEGgJ86eTeVudtgMMOx3Mw== + dependencies: + cidr-regex "^2.0.10" + is-color-stop@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345" @@ -7504,6 +8106,13 @@ is-extglob@^2.1.0, is-extglob@^2.1.1: resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= + dependencies: + number-is-nan "^1.0.0" + is-fullwidth-code-point@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" @@ -7543,6 +8152,14 @@ is-in-browser@^1.0.2, is-in-browser@^1.1.3: resolved "https://registry.yarnpkg.com/is-in-browser/-/is-in-browser-1.1.3.tgz#56ff4db683a078c6082eb95dad7dc62e1d04f835" integrity sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU= +is-installed-globally@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" + integrity sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA= + dependencies: + global-dirs "^0.1.0" + is-path-inside "^1.0.0" + is-module@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" @@ -7553,6 +8170,11 @@ is-negative-zero@^2.0.1: resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== +is-npm@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" + integrity sha1-8vtjpl5JBbQGyGBydloaTceTufQ= + is-number@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" @@ -7565,7 +8187,7 @@ is-number@^7.0.0: resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== -is-obj@^1.0.1: +is-obj@^1.0.0, is-obj@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= @@ -7587,6 +8209,13 @@ is-path-in-cwd@^2.0.0: dependencies: is-path-inside "^2.1.0" +is-path-inside@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" + integrity sha1-jvW33lBDej/cprToZe96pVy0gDY= + dependencies: + path-is-inside "^1.0.1" + is-path-inside@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-2.1.0.tgz#7c9810587d659a40d27bcdb4d5616eab059494b2" @@ -7616,6 +8245,11 @@ is-potential-custom-element-name@^1.0.0: resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz#0c52e54bcca391bb2c494b21e8626d7336c6e397" integrity sha1-DFLlS8yjkbssSUsh6GJtczbG45c= +is-redirect@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" + integrity sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ= + is-regex@^1.0.4, is-regex@^1.1.1: version "1.1.2" resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.2.tgz#81c8ebde4db142f2cf1c53fc86d6a45788266251" @@ -7634,12 +8268,17 @@ is-resolvable@^1.0.0: resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== +is-retry-allowed@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" + integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg== + is-root@2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c" integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg== -is-stream@^1.1.0: +is-stream@^1.0.0, is-stream@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= @@ -8268,7 +8907,15 @@ jsesc@~0.5.0: resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= -json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2: +jsgeoda@^0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/jsgeoda/-/jsgeoda-0.2.3.tgz#6b83a7f1def93829207c3b04c0aa4240b56b0331" + integrity sha512-5xYpy1K2z3g7nu7e0bH9L+t5gzZYNTOBEee76m+EHWzvYh5a4SarFPzYGHVn0OYEyaWaXE8FTeH/SzA2FHWvjQ== + dependencies: + install "^0.13.0" + npm "^6.14.8" + +json-parse-better-errors@^1.0.0, json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== @@ -8338,7 +8985,12 @@ jsonfile@^6.0.1: optionalDependencies: graceful-fs "^4.1.6" -jsprim@^1.2.2: +jsonparse@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" + integrity sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA= + +jsprim@^1.2.2: version "1.4.1" resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= @@ -8496,6 +9148,25 @@ last-call-webpack-plugin@^3.0.0: lodash "^4.17.5" webpack-sources "^1.1.0" +latest-version@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" + integrity sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU= + dependencies: + package-json "^4.0.0" + +lazy-property@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lazy-property/-/lazy-property-1.0.0.tgz#84ddc4b370679ba8bd4cdcfa4c06b43d57111147" + integrity sha1-hN3Es3Bnm6i9TNz6TAa0PVcREUc= + +lcid@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" + integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= + dependencies: + invert-kv "^1.0.0" + leven@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" @@ -8517,6 +9188,140 @@ levn@~0.3.0: prelude-ls "~1.1.2" type-check "~0.3.2" +libcipm@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/libcipm/-/libcipm-4.0.8.tgz#dcea4919e10dfbce420327e63901613b9141bc89" + integrity sha512-IN3hh2yDJQtZZ5paSV4fbvJg4aHxCCg5tcZID/dSVlTuUiWktsgaldVljJv6Z5OUlYspx6xQkbR0efNodnIrOA== + dependencies: + bin-links "^1.1.2" + bluebird "^3.5.1" + figgy-pudding "^3.5.1" + find-npm-prefix "^1.0.2" + graceful-fs "^4.1.11" + ini "^1.3.5" + lock-verify "^2.1.0" + mkdirp "^0.5.1" + npm-lifecycle "^3.0.0" + npm-logical-tree "^1.2.1" + npm-package-arg "^6.1.0" + pacote "^9.1.0" + read-package-json "^2.0.13" + rimraf "^2.6.2" + worker-farm "^1.6.0" + +libnpm@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/libnpm/-/libnpm-3.0.1.tgz#0be11b4c9dd4d1ffd7d95c786e92e55d65be77a2" + integrity sha512-d7jU5ZcMiTfBqTUJVZ3xid44fE5ERBm9vBnmhp2ECD2Ls+FNXWxHSkO7gtvrnbLO78gwPdNPz1HpsF3W4rjkBQ== + dependencies: + bin-links "^1.1.2" + bluebird "^3.5.3" + find-npm-prefix "^1.0.2" + libnpmaccess "^3.0.2" + libnpmconfig "^1.2.1" + libnpmhook "^5.0.3" + libnpmorg "^1.0.1" + libnpmpublish "^1.1.2" + libnpmsearch "^2.0.2" + libnpmteam "^1.0.2" + lock-verify "^2.0.2" + npm-lifecycle "^3.0.0" + npm-logical-tree "^1.2.1" + npm-package-arg "^6.1.0" + npm-profile "^4.0.2" + npm-registry-fetch "^4.0.0" + npmlog "^4.1.2" + pacote "^9.5.3" + read-package-json "^2.0.13" + stringify-package "^1.0.0" + +libnpmaccess@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/libnpmaccess/-/libnpmaccess-3.0.2.tgz#8b2d72345ba3bef90d3b4f694edd5c0417f58923" + integrity sha512-01512AK7MqByrI2mfC7h5j8N9V4I7MHJuk9buo8Gv+5QgThpOgpjB7sQBDDkeZqRteFb1QM/6YNdHfG7cDvfAQ== + dependencies: + aproba "^2.0.0" + get-stream "^4.0.0" + npm-package-arg "^6.1.0" + npm-registry-fetch "^4.0.0" + +libnpmconfig@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/libnpmconfig/-/libnpmconfig-1.2.1.tgz#c0c2f793a74e67d4825e5039e7a02a0044dfcbc0" + integrity sha512-9esX8rTQAHqarx6qeZqmGQKBNZR5OIbl/Ayr0qQDy3oXja2iFVQQI81R6GZ2a02bSNZ9p3YOGX1O6HHCb1X7kA== + dependencies: + figgy-pudding "^3.5.1" + find-up "^3.0.0" + ini "^1.3.5" + +libnpmhook@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/libnpmhook/-/libnpmhook-5.0.3.tgz#4020c0f5edbf08ebe395325caa5ea01885b928f7" + integrity sha512-UdNLMuefVZra/wbnBXECZPefHMGsVDTq5zaM/LgKNE9Keyl5YXQTnGAzEo+nFOpdRqTWI9LYi4ApqF9uVCCtuA== + dependencies: + aproba "^2.0.0" + figgy-pudding "^3.4.1" + get-stream "^4.0.0" + npm-registry-fetch "^4.0.0" + +libnpmorg@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/libnpmorg/-/libnpmorg-1.0.1.tgz#5d2503f6ceb57f33dbdcc718e6698fea6d5ad087" + integrity sha512-0sRUXLh+PLBgZmARvthhYXQAWn0fOsa6T5l3JSe2n9vKG/lCVK4nuG7pDsa7uMq+uTt2epdPK+a2g6btcY11Ww== + dependencies: + aproba "^2.0.0" + figgy-pudding "^3.4.1" + get-stream "^4.0.0" + npm-registry-fetch "^4.0.0" + +libnpmpublish@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/libnpmpublish/-/libnpmpublish-1.1.3.tgz#e3782796722d79eef1a0a22944c117e0c4ca4280" + integrity sha512-/3LsYqVc52cHXBmu26+J8Ed7sLs/hgGVFMH1mwYpL7Qaynb9RenpKqIKu0sJ130FB9PMkpMlWjlbtU8A4m7CQw== + dependencies: + aproba "^2.0.0" + figgy-pudding "^3.5.1" + get-stream "^4.0.0" + lodash.clonedeep "^4.5.0" + normalize-package-data "^2.4.0" + npm-package-arg "^6.1.0" + npm-registry-fetch "^4.0.0" + semver "^5.5.1" + ssri "^6.0.1" + +libnpmsearch@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/libnpmsearch/-/libnpmsearch-2.0.2.tgz#9a4f059102d38e3dd44085bdbfe5095f2a5044cf" + integrity sha512-VTBbV55Q6fRzTdzziYCr64+f8AopQ1YZ+BdPOv16UegIEaE8C0Kch01wo4s3kRTFV64P121WZJwgmBwrq68zYg== + dependencies: + figgy-pudding "^3.5.1" + get-stream "^4.0.0" + npm-registry-fetch "^4.0.0" + +libnpmteam@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/libnpmteam/-/libnpmteam-1.0.2.tgz#8b48bcbb6ce70dd8150c950fcbdbf3feb6eec820" + integrity sha512-p420vM28Us04NAcg1rzgGW63LMM6rwe+6rtZpfDxCcXxM0zUTLl7nPFEnRF3JfFBF5skF/yuZDUthTsHgde8QA== + dependencies: + aproba "^2.0.0" + figgy-pudding "^3.4.1" + get-stream "^4.0.0" + npm-registry-fetch "^4.0.0" + +libnpx@^10.2.4: + version "10.2.4" + resolved "https://registry.yarnpkg.com/libnpx/-/libnpx-10.2.4.tgz#ef0e3258e29aef2ec7ee3276115e20e67f67d4ee" + integrity sha512-BPc0D1cOjBeS8VIBKUu5F80s6njm0wbVt7CsGMrIcJ+SI7pi7V0uVPGpEMH9H5L8csOcclTxAXFE2VAsJXUhfA== + dependencies: + dotenv "^5.0.1" + npm-package-arg "^6.0.0" + rimraf "^2.6.2" + safe-buffer "^5.1.0" + update-notifier "^2.3.0" + which "^1.3.0" + y18n "^4.0.0" + yargs "^14.2.3" + lie@~3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/lie/-/lie-3.3.0.tgz#dcf82dee545f46074daf200c7c1c5a08e0f40f6a" @@ -8594,16 +9399,82 @@ locate-path@^5.0.0: dependencies: p-locate "^4.1.0" +lock-verify@^2.0.2, lock-verify@^2.1.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/lock-verify/-/lock-verify-2.2.1.tgz#81107948c51ed16f97b96ff8b60675affb243fc1" + integrity sha512-n0Zw2DVupKfZMazy/HIFVNohJ1z8fIoZ77WBnyyBGG6ixw83uJNyrbiJvvHWe1QKkGiBCjj8RCPlymltliqEww== + dependencies: + "@iarna/cli" "^1.2.0" + npm-package-arg "^6.1.0" + semver "^5.4.1" + +lockfile@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/lockfile/-/lockfile-1.0.4.tgz#07f819d25ae48f87e538e6578b6964a4981a5609" + integrity sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA== + dependencies: + signal-exit "^3.0.2" + +lodash._baseindexof@*: + version "3.1.0" + resolved "https://registry.yarnpkg.com/lodash._baseindexof/-/lodash._baseindexof-3.1.0.tgz#fe52b53a1c6761e42618d654e4a25789ed61822c" + integrity sha1-/lK1OhxnYeQmGNZU5KJXie1hgiw= + +lodash._baseuniq@~4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/lodash._baseuniq/-/lodash._baseuniq-4.6.0.tgz#0ebb44e456814af7905c6212fa2c9b2d51b841e8" + integrity sha1-DrtE5FaBSveQXGIS+iybLVG4Qeg= + dependencies: + lodash._createset "~4.0.0" + lodash._root "~3.0.0" + +lodash._bindcallback@*: + version "3.0.1" + resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" + integrity sha1-5THCdkTPi1epnhftlbNcdIeJOS4= + +lodash._cacheindexof@*: + version "3.0.2" + resolved "https://registry.yarnpkg.com/lodash._cacheindexof/-/lodash._cacheindexof-3.0.2.tgz#3dc69ac82498d2ee5e3ce56091bafd2adc7bde92" + integrity sha1-PcaayCSY0u5ePOVgkbr9Ktx73pI= + +lodash._createcache@*: + version "3.1.2" + resolved "https://registry.yarnpkg.com/lodash._createcache/-/lodash._createcache-3.1.2.tgz#56d6a064017625e79ebca6b8018e17440bdcf093" + integrity sha1-VtagZAF2JeeevKa4AY4XRAvc8JM= + dependencies: + lodash._getnative "^3.0.0" + +lodash._createset@~4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/lodash._createset/-/lodash._createset-4.0.3.tgz#0f4659fbb09d75194fa9e2b88a6644d363c9fe26" + integrity sha1-D0ZZ+7CddRlPqeK4imZE02PJ/iY= + +lodash._getnative@*, lodash._getnative@^3.0.0: + version "3.9.1" + resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" + integrity sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U= + lodash._reinterpolate@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= +lodash._root@~3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" + integrity sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI= + lodash.camelcase@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= +lodash.clonedeep@^4.5.0, lodash.clonedeep@~4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" + integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= + lodash.debounce@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" @@ -8614,6 +9485,11 @@ lodash.memoize@^4.1.2: resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= +lodash.restparam@*: + version "3.6.1" + resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" + integrity sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU= + lodash.sortby@^4.7.0: version "4.7.0" resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" @@ -8639,11 +9515,21 @@ lodash.throttle@^4.1.1: resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" integrity sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ= -lodash.uniq@^4.5.0: +lodash.union@~4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/lodash.union/-/lodash.union-4.6.0.tgz#48bb5088409f16f1821666641c44dd1aaae3cd88" + integrity sha1-SLtQiECfFvGCFmZkHETdGqrjzYg= + +lodash.uniq@^4.5.0, lodash.uniq@~4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= +lodash.without@~4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.without/-/lodash.without-4.4.0.tgz#3cd4574a00b67bae373a94b748772640507b7aac" + integrity sha1-PNRXSgC2e643OpS3SHcmQFB7eqw= + "lodash@>=3.5 <5", lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.5, lodash@~4.17.4: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" @@ -8678,6 +9564,19 @@ lower-case@^2.0.2: dependencies: tslib "^2.0.3" +lowercase-keys@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" + integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== + +lru-cache@^4.0.1: + version "4.1.5" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" + integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" + lru-cache@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" @@ -8704,6 +9603,13 @@ magic-string@^0.25.0, magic-string@^0.25.7: dependencies: sourcemap-codec "^1.4.4" +make-dir@^1.0.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" + integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ== + dependencies: + pify "^3.0.0" + make-dir@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" @@ -8719,6 +9625,23 @@ make-dir@^3.0.0, make-dir@^3.0.2: dependencies: semver "^6.0.0" +make-fetch-happen@^5.0.0: + version "5.0.2" + resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-5.0.2.tgz#aa8387104f2687edca01c8687ee45013d02d19bd" + integrity sha512-07JHC0r1ykIoruKO8ifMXu+xEU8qOXDFETylktdug6vJDACnP+HKevOu3PXyNPzFyTSlz8vrBYlBO1JZRe8Cag== + dependencies: + agentkeepalive "^3.4.1" + cacache "^12.0.0" + http-cache-semantics "^3.8.1" + http-proxy-agent "^2.1.0" + https-proxy-agent "^2.2.3" + lru-cache "^5.1.1" + mississippi "^3.0.0" + node-fetch-npm "^2.0.2" + promise-retry "^1.1.1" + socks-proxy-agent "^4.0.0" + ssri "^6.0.0" + makeerror@1.0.x: version "1.0.11" resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" @@ -8891,11 +9814,23 @@ mdn-data@2.0.4: resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b" integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== +meant@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/meant/-/meant-1.0.3.tgz#67769af9de1d158773e928ae82c456114903554c" + integrity sha512-88ZRGcNxAq4EH38cQ4D85PM57pikCwS8Z99EWHODxN7KBY+UuPiqzRTtZzS8KTXO/ywSWbdjjJST2Hly/EQxLw== + media-typer@0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= +mem@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" + integrity sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y= + dependencies: + mimic-fn "^1.0.0" + memory-fs@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" @@ -9047,6 +9982,11 @@ mime@^2.4.4: resolved "https://registry.yarnpkg.com/mime/-/mime-2.5.2.tgz#6e3dc6cc2b9510643830e5f19d5cb753da5eeabe" integrity sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg== +mimic-fn@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" + integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== + mimic-fn@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" @@ -9118,6 +10058,14 @@ minipass-pipeline@^1.2.2: dependencies: minipass "^3.0.0" +minipass@^2.3.5, minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6" + integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg== + dependencies: + safe-buffer "^5.1.2" + yallist "^3.0.0" + minipass@^3.0.0, minipass@^3.1.1: version "3.1.3" resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.3.tgz#7d42ff1f39635482e15f9cdb53184deebd5815fd" @@ -9125,6 +10073,13 @@ minipass@^3.0.0, minipass@^3.1.1: dependencies: yallist "^4.0.0" +minizlib@^1.2.1: + version "1.3.3" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" + integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q== + dependencies: + minipass "^2.9.0" + minizlib@^2.1.1: version "2.1.2" resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" @@ -9165,7 +10120,7 @@ mjolnir.js@^2.5.0: "@babel/runtime" "^7.0.0" hammerjs "^2.0.8" -mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@^0.5.5, mkdirp@~0.5.1: +mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@^0.5.5, mkdirp@~0.5.0, mkdirp@~0.5.1: version "0.5.5" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== @@ -9204,7 +10159,7 @@ ms@2.1.2: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== -ms@^2.1.1: +ms@^2.0.0, ms@^2.1.1: version "2.1.3" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== @@ -9227,6 +10182,11 @@ murmurhash-js@^1.0.0: resolved "https://registry.yarnpkg.com/murmurhash-js/-/murmurhash-js-1.0.0.tgz#b06278e21fc6c37fa5313732b0412bcb6ae15f51" integrity sha1-sGJ44h/Gw3+lMTcysEEry2rhX1E= +mute-stream@~0.0.4: + version "0.0.8" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== + nan@^2.12.1: version "2.14.2" resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.2.tgz#f5376400695168f4cc694ac9393d0c9585eeea19" @@ -9294,11 +10254,42 @@ no-case@^3.0.4: lower-case "^2.0.2" tslib "^2.0.3" +node-fetch-npm@^2.0.2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/node-fetch-npm/-/node-fetch-npm-2.0.4.tgz#6507d0e17a9ec0be3bec516958a497cec54bf5a4" + integrity sha512-iOuIQDWDyjhv9qSDrj9aq/klt6F9z1p2otB3AV7v3zBDcL/x+OfGsvGQZZCcMZbUf4Ujw1xGNQkjvGnVT22cKg== + dependencies: + encoding "^0.1.11" + json-parse-better-errors "^1.0.0" + safe-buffer "^5.1.1" + +node-fetch@^2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" + integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== + node-forge@^0.10.0: version "0.10.0" resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3" integrity sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA== +node-gyp@^5.0.2, node-gyp@^5.1.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-5.1.1.tgz#eb915f7b631c937d282e33aed44cb7a025f62a3e" + integrity sha512-WH0WKGi+a4i4DUt2mHnvocex/xPLp9pYt5R6M2JdFB7pJ7Z34hveZ4nDTGTiLXCkitA9T8HFZjhinBCiVHYcWw== + dependencies: + env-paths "^2.2.0" + glob "^7.1.4" + graceful-fs "^4.2.2" + mkdirp "^0.5.1" + nopt "^4.0.1" + npmlog "^4.1.2" + request "^2.88.0" + rimraf "^2.6.3" + semver "^5.7.1" + tar "^4.4.12" + which "^1.3.1" + node-int64@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" @@ -9360,7 +10351,15 @@ node-releases@^1.1.71: resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.72.tgz#14802ab6b1039a79a0c7d662b610a5bbd76eacbe" integrity sha512-LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw== -normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: +nopt@^4.0.1, nopt@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48" + integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg== + dependencies: + abbrev "1" + osenv "^0.1.4" + +normalize-package-data@^2.0.0, normalize-package-data@^2.3.2, normalize-package-data@^2.4.0, normalize-package-data@^2.5.0: version "2.5.0" resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== @@ -9402,6 +10401,107 @@ normalize-url@^3.0.0: resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559" integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg== +npm-audit-report@^1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/npm-audit-report/-/npm-audit-report-1.3.3.tgz#8226deeb253b55176ed147592a3995442f2179ed" + integrity sha512-8nH/JjsFfAWMvn474HB9mpmMjrnKb1Hx/oTAdjv4PT9iZBvBxiZ+wtDUapHCJwLqYGQVPaAfs+vL5+5k9QndXw== + dependencies: + cli-table3 "^0.5.0" + console-control-strings "^1.1.0" + +npm-bundled@^1.0.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.2.tgz#944c78789bd739035b70baa2ca5cc32b8d860bc1" + integrity sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ== + dependencies: + npm-normalize-package-bin "^1.0.1" + +npm-cache-filename@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/npm-cache-filename/-/npm-cache-filename-1.0.2.tgz#ded306c5b0bfc870a9e9faf823bc5f283e05ae11" + integrity sha1-3tMGxbC/yHCp6fr4I7xfKD4FrhE= + +npm-install-checks@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/npm-install-checks/-/npm-install-checks-3.0.2.tgz#ab2e32ad27baa46720706908e5b14c1852de44d9" + integrity sha512-E4kzkyZDIWoin6uT5howP8VDvkM+E8IQDcHAycaAxMbwkqhIg5eEYALnXOl3Hq9MrkdQB/2/g1xwBINXdKSRkg== + dependencies: + semver "^2.3.0 || 3.x || 4 || 5" + +npm-lifecycle@^3.0.0, npm-lifecycle@^3.1.5: + version "3.1.5" + resolved "https://registry.yarnpkg.com/npm-lifecycle/-/npm-lifecycle-3.1.5.tgz#9882d3642b8c82c815782a12e6a1bfeed0026309" + integrity sha512-lDLVkjfZmvmfvpvBzA4vzee9cn+Me4orq0QF8glbswJVEbIcSNWib7qGOffolysc3teCqbbPZZkzbr3GQZTL1g== + dependencies: + byline "^5.0.0" + graceful-fs "^4.1.15" + node-gyp "^5.0.2" + resolve-from "^4.0.0" + slide "^1.1.6" + uid-number "0.0.6" + umask "^1.1.0" + which "^1.3.1" + +npm-logical-tree@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/npm-logical-tree/-/npm-logical-tree-1.2.1.tgz#44610141ca24664cad35d1e607176193fd8f5b88" + integrity sha512-AJI/qxDB2PWI4LG1CYN579AY1vCiNyWfkiquCsJWqntRu/WwimVrC8yXeILBFHDwxfOejxewlmnvW9XXjMlYIg== + +npm-normalize-package-bin@^1.0.0, npm-normalize-package-bin@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" + integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== + +"npm-package-arg@^4.0.0 || ^5.0.0 || ^6.0.0", npm-package-arg@^6.0.0, npm-package-arg@^6.1.0, npm-package-arg@^6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-6.1.1.tgz#02168cb0a49a2b75bf988a28698de7b529df5cb7" + integrity sha512-qBpssaL3IOZWi5vEKUKW0cO7kzLeT+EQO9W8RsLOZf76KF9E/K9+wH0C7t06HXPpaH8WH5xF1MExLuCwbTqRUg== + dependencies: + hosted-git-info "^2.7.1" + osenv "^0.1.5" + semver "^5.6.0" + validate-npm-package-name "^3.0.0" + +npm-packlist@^1.1.12, npm-packlist@^1.4.8: + version "1.4.8" + resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.8.tgz#56ee6cc135b9f98ad3d51c1c95da22bbb9b2ef3e" + integrity sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A== + dependencies: + ignore-walk "^3.0.1" + npm-bundled "^1.0.1" + npm-normalize-package-bin "^1.0.1" + +npm-pick-manifest@^3.0.0, npm-pick-manifest@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/npm-pick-manifest/-/npm-pick-manifest-3.0.2.tgz#f4d9e5fd4be2153e5f4e5f9b7be8dc419a99abb7" + integrity sha512-wNprTNg+X5nf+tDi+hbjdHhM4bX+mKqv6XmPh7B5eG+QY9VARfQPfCEH013H5GqfNj6ee8Ij2fg8yk0mzps1Vw== + dependencies: + figgy-pudding "^3.5.1" + npm-package-arg "^6.0.0" + semver "^5.4.1" + +npm-profile@^4.0.2, npm-profile@^4.0.4: + version "4.0.4" + resolved "https://registry.yarnpkg.com/npm-profile/-/npm-profile-4.0.4.tgz#28ee94390e936df6d084263ee2061336a6a1581b" + integrity sha512-Ta8xq8TLMpqssF0H60BXS1A90iMoM6GeKwsmravJ6wYjWwSzcYBTdyWa3DZCYqPutacBMEm7cxiOkiIeCUAHDQ== + dependencies: + aproba "^1.1.2 || 2" + figgy-pudding "^3.4.1" + npm-registry-fetch "^4.0.0" + +npm-registry-fetch@^4.0.0, npm-registry-fetch@^4.0.7: + version "4.0.7" + resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-4.0.7.tgz#57951bf6541e0246b34c9f9a38ab73607c9449d7" + integrity sha512-cny9v0+Mq6Tjz+e0erFAB+RYJ/AVGzkjnISiobqP8OWj9c9FLoZZu8/SPSKJWE17F1tk4018wfjV+ZbIbqC7fQ== + dependencies: + JSONStream "^1.3.4" + bluebird "^3.5.1" + figgy-pudding "^3.4.1" + lru-cache "^5.1.1" + make-fetch-happen "^5.0.0" + npm-package-arg "^6.1.0" + safe-buffer "^5.2.0" + npm-run-path@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" @@ -9416,6 +10516,142 @@ npm-run-path@^4.0.0: dependencies: path-key "^3.0.0" +npm-user-validate@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/npm-user-validate/-/npm-user-validate-1.0.1.tgz#31428fc5475fe8416023f178c0ab47935ad8c561" + integrity sha512-uQwcd/tY+h1jnEaze6cdX/LrhWhoBxfSknxentoqmIuStxUExxjWd3ULMLFPiFUrZKbOVMowH6Jq2FRWfmhcEw== + +npm@^6.14.8: + version "6.14.13" + resolved "https://registry.yarnpkg.com/npm/-/npm-6.14.13.tgz#e88bcb6c48209869c40b5cedad8a1508e58e6f30" + integrity sha512-SRl4jJi0EBHY2xKuu98FLRMo3VhYQSA6otyLnjSEiHoSG/9shXCFNJy9tivpUJvtkN9s6VDdItHa5Rn+fNBzag== + dependencies: + JSONStream "^1.3.5" + abbrev "~1.1.1" + ansicolors "~0.3.2" + ansistyles "~0.1.3" + aproba "^2.0.0" + archy "~1.0.0" + bin-links "^1.1.8" + bluebird "^3.5.5" + byte-size "^5.0.1" + cacache "^12.0.3" + call-limit "^1.1.1" + chownr "^1.1.4" + ci-info "^2.0.0" + cli-columns "^3.1.2" + cli-table3 "^0.5.1" + cmd-shim "^3.0.3" + columnify "~1.5.4" + config-chain "^1.1.12" + detect-indent "~5.0.0" + detect-newline "^2.1.0" + dezalgo "~1.0.3" + editor "~1.0.0" + figgy-pudding "^3.5.1" + find-npm-prefix "^1.0.2" + fs-vacuum "~1.2.10" + fs-write-stream-atomic "~1.0.10" + gentle-fs "^2.3.1" + glob "^7.1.6" + graceful-fs "^4.2.4" + has-unicode "~2.0.1" + hosted-git-info "^2.8.9" + iferr "^1.0.2" + infer-owner "^1.0.4" + inflight "~1.0.6" + inherits "^2.0.4" + ini "^1.3.8" + init-package-json "^1.10.3" + is-cidr "^3.0.0" + json-parse-better-errors "^1.0.2" + lazy-property "~1.0.0" + libcipm "^4.0.8" + libnpm "^3.0.1" + libnpmaccess "^3.0.2" + libnpmhook "^5.0.3" + libnpmorg "^1.0.1" + libnpmsearch "^2.0.2" + libnpmteam "^1.0.2" + libnpx "^10.2.4" + lock-verify "^2.1.0" + lockfile "^1.0.4" + lodash._baseuniq "~4.6.0" + lodash.clonedeep "~4.5.0" + lodash.union "~4.6.0" + lodash.uniq "~4.5.0" + lodash.without "~4.4.0" + lru-cache "^5.1.1" + meant "^1.0.2" + mississippi "^3.0.0" + mkdirp "^0.5.5" + move-concurrently "^1.0.1" + node-gyp "^5.1.0" + nopt "^4.0.3" + normalize-package-data "^2.5.0" + npm-audit-report "^1.3.3" + npm-cache-filename "~1.0.2" + npm-install-checks "^3.0.2" + npm-lifecycle "^3.1.5" + npm-package-arg "^6.1.1" + npm-packlist "^1.4.8" + npm-pick-manifest "^3.0.2" + npm-profile "^4.0.4" + npm-registry-fetch "^4.0.7" + npm-user-validate "^1.0.1" + npmlog "~4.1.2" + once "~1.4.0" + opener "^1.5.2" + osenv "^0.1.5" + pacote "^9.5.12" + path-is-inside "~1.0.2" + promise-inflight "~1.0.1" + qrcode-terminal "^0.12.0" + query-string "^6.8.2" + qw "~1.0.1" + read "~1.0.7" + read-cmd-shim "^1.0.5" + read-installed "~4.0.3" + read-package-json "^2.1.1" + read-package-tree "^5.3.1" + readable-stream "^3.6.0" + readdir-scoped-modules "^1.1.0" + request "^2.88.0" + retry "^0.12.0" + rimraf "^2.7.1" + safe-buffer "^5.1.2" + semver "^5.7.1" + sha "^3.0.0" + slide "~1.1.6" + sorted-object "~2.0.1" + sorted-union-stream "~2.1.3" + ssri "^6.0.2" + stringify-package "^1.0.1" + tar "^4.4.13" + text-table "~0.2.0" + tiny-relative-date "^1.3.0" + uid-number "0.0.6" + umask "~1.1.0" + unique-filename "^1.1.1" + unpipe "~1.0.0" + update-notifier "^2.5.0" + uuid "^3.3.3" + validate-npm-package-license "^3.0.4" + validate-npm-package-name "~3.0.0" + which "^1.3.1" + worker-farm "^1.7.0" + write-file-atomic "^2.4.3" + +npmlog@^4.1.2, npmlog@~4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.7.3" + set-blocking "~2.0.0" + nth-check@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" @@ -9428,6 +10664,11 @@ num2fraction@^1.2.2: resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4= +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= + nwsapi@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" @@ -9550,7 +10791,7 @@ on-headers@~1.0.2: resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== -once@^1.3.0, once@^1.3.1, once@^1.4.0: +once@^1.3.0, once@^1.3.1, once@^1.4.0, once@~1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= @@ -9572,6 +10813,11 @@ open@^7.0.2, open@^7.3.1: is-docker "^2.0.0" is-wsl "^2.1.1" +opener@^1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598" + integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== + opn@^5.5.0: version "5.5.0" resolved "https://registry.yarnpkg.com/opn/-/opn-5.5.0.tgz#fc7164fab56d235904c51c3b27da6758ca3b9bfc" @@ -9623,6 +10869,33 @@ os-browserify@^0.3.0: resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= +os-homedir@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= + +os-locale@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" + integrity sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA== + dependencies: + execa "^0.7.0" + lcid "^1.0.0" + mem "^1.1.0" + +os-tmpdir@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= + +osenv@^0.1.4, osenv@^0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" + integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + p-each-series@^2.1.0: version "2.2.0" resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.2.0.tgz#105ab0357ce72b202a8a8b94933672657b5e2a9a" @@ -9704,6 +10977,52 @@ p-try@^2.0.0: resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== +package-json@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" + integrity sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0= + dependencies: + got "^6.7.1" + registry-auth-token "^3.0.1" + registry-url "^3.0.3" + semver "^5.1.0" + +pacote@^9.1.0, pacote@^9.5.12, pacote@^9.5.3: + version "9.5.12" + resolved "https://registry.yarnpkg.com/pacote/-/pacote-9.5.12.tgz#1e11dd7a8d736bcc36b375a9804d41bb0377bf66" + integrity sha512-BUIj/4kKbwWg4RtnBncXPJd15piFSVNpTzY0rysSr3VnMowTYgkGKcaHrbReepAkjTr8lH2CVWRi58Spg2CicQ== + dependencies: + bluebird "^3.5.3" + cacache "^12.0.2" + chownr "^1.1.2" + figgy-pudding "^3.5.1" + get-stream "^4.1.0" + glob "^7.1.3" + infer-owner "^1.0.4" + lru-cache "^5.1.1" + make-fetch-happen "^5.0.0" + minimatch "^3.0.4" + minipass "^2.3.5" + mississippi "^3.0.0" + mkdirp "^0.5.1" + normalize-package-data "^2.4.0" + npm-normalize-package-bin "^1.0.0" + npm-package-arg "^6.1.0" + npm-packlist "^1.1.12" + npm-pick-manifest "^3.0.0" + npm-registry-fetch "^4.0.0" + osenv "^0.1.5" + promise-inflight "^1.0.1" + promise-retry "^1.1.1" + protoduck "^5.0.1" + rimraf "^2.6.2" + safe-buffer "^5.1.2" + semver "^5.6.0" + ssri "^6.0.1" + tar "^4.4.10" + unique-filename "^1.1.1" + which "^1.3.1" + pako@~1.0.2, pako@~1.0.5: version "1.0.11" resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" @@ -9829,7 +11148,7 @@ path-is-absolute@^1.0.0: resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= -path-is-inside@^1.0.2: +path-is-inside@^1.0.1, path-is-inside@^1.0.2, path-is-inside@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= @@ -9907,6 +11226,11 @@ pify@^2.0.0: resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= + pify@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" @@ -10671,7 +11995,7 @@ prelude-ls@~1.1.2: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= -prepend-http@^1.0.0: +prepend-http@^1.0.0, prepend-http@^1.0.1: version "1.0.4" resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= @@ -10722,11 +12046,19 @@ progress@^2.0.0: resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== -promise-inflight@^1.0.1: +promise-inflight@^1.0.1, promise-inflight@~1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= +promise-retry@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-1.1.1.tgz#6739e968e3051da20ce6497fb2b50f6911df3d6d" + integrity sha1-ZznpaOMFHaIM5kl/srUPaRHfPW0= + dependencies: + err-code "^1.0.0" + retry "^0.10.0" + promise@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/promise/-/promise-8.1.0.tgz#697c25c3dfe7435dd79fcd58c38a135888eaf05e" @@ -10742,6 +12074,13 @@ prompts@2.4.0, prompts@^2.0.1: kleur "^3.0.3" sisteransi "^1.0.5" +promzard@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/promzard/-/promzard-0.3.0.tgz#26a5d6ee8c7dee4cb12208305acfb93ba382a9ee" + integrity sha1-JqXW7ox97kyxIggwWs+5O6OCqe4= + dependencies: + read "1" + prop-types@^15.6.0, prop-types@^15.6.2, prop-types@^15.7.2: version "15.7.2" resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" @@ -10751,11 +12090,23 @@ prop-types@^15.6.0, prop-types@^15.6.2, prop-types@^15.7.2: object-assign "^4.1.1" react-is "^16.8.1" +proto-list@~1.2.1: + version "1.2.4" + resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" + integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk= + protocol-buffers-schema@^3.3.1: version "3.5.1" resolved "https://registry.yarnpkg.com/protocol-buffers-schema/-/protocol-buffers-schema-3.5.1.tgz#8388e768d383ac8cbea23e1280dfadb79f4122ad" integrity sha512-YVCvdhxWNDP8/nJDyXLuM+UFsuPk4+1PB7WGPVDzm3HTHbzFLxQYeW2iZpS4mmnXrQJGBzt230t/BbEb7PrQaw== +protoduck@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/protoduck/-/protoduck-5.0.1.tgz#03c3659ca18007b69a50fd82a7ebcc516261151f" + integrity sha512-WxoCeDCoCBY55BMvj4cAEjdVUFGRWed9ZxPlqTKYyw1nDDTQ4pqmnIMAGfJlg7Dx35uB/M+PHJPTmGOvaCaPTg== + dependencies: + genfun "^5.0.0" + proxy-addr@~2.0.5: version "2.0.6" resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf" @@ -10764,11 +12115,21 @@ proxy-addr@~2.0.5: forwarded "~0.1.2" ipaddr.js "1.9.1" +proxy-from-env@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-0.0.1.tgz#b27c4946e9e6d5dbadb7598a6435d3014c4cfd49" + integrity sha1-snxJRunm1dutt1mKZDXTAUxM/Uk= + prr@~1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY= +pseudomap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= + psl@^1.1.28: version "1.8.0" resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" @@ -10831,6 +12192,11 @@ q@^1.1.2: resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= +qrcode-terminal@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz#bb5b699ef7f9f0505092a3748be4464fe71b5819" + integrity sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ== + qs@6.7.0: version "6.7.0" resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" @@ -10849,6 +12215,16 @@ query-string@^4.1.0: object-assign "^4.1.0" strict-uri-encode "^1.0.0" +query-string@^6.8.2: + version "6.14.1" + resolved "https://registry.yarnpkg.com/query-string/-/query-string-6.14.1.tgz#7ac2dca46da7f309449ba0f86b1fd28255b0c86a" + integrity sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw== + dependencies: + decode-uri-component "^0.2.0" + filter-obj "^1.1.0" + split-on-first "^1.0.0" + strict-uri-encode "^2.0.0" + querystring-es3@^0.2.0: version "0.2.1" resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" @@ -10879,6 +12255,11 @@ quickselect@^2.0.0: resolved "https://registry.yarnpkg.com/quickselect/-/quickselect-2.0.0.tgz#f19680a486a5eefb581303e023e98faaf25dd018" integrity sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw== +qw@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/qw/-/qw-1.0.1.tgz#efbfdc740f9ad054304426acb183412cc8b996d4" + integrity sha1-77/cdA+a0FQwRCassYNBLMi5ltQ= + raf@^3.4.0, raf@^3.4.1: version "3.4.1" resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39" @@ -10921,6 +12302,16 @@ raw-body@2.4.0: iconv-lite "0.4.24" unpipe "1.0.0" +rc@^1.0.1, rc@^1.1.6: + version "1.2.8" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== + dependencies: + deep-extend "^0.6.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + react-app-polyfill@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/react-app-polyfill/-/react-app-polyfill-2.0.0.tgz#a0bea50f078b8a082970a9d853dc34b6dcc6a3cf" @@ -11180,6 +12571,46 @@ react@^17.0.1: loose-envify "^1.1.0" object-assign "^4.1.1" +read-cmd-shim@^1.0.1, read-cmd-shim@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/read-cmd-shim/-/read-cmd-shim-1.0.5.tgz#87e43eba50098ba5a32d0ceb583ab8e43b961c16" + integrity sha512-v5yCqQ/7okKoZZkBQUAfTsQ3sVJtXdNfbPnI5cceppoxEVLYA3k+VtV2omkeo8MS94JCy4fSiUwlRBAwCVRPUA== + dependencies: + graceful-fs "^4.1.2" + +read-installed@~4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/read-installed/-/read-installed-4.0.3.tgz#ff9b8b67f187d1e4c29b9feb31f6b223acd19067" + integrity sha1-/5uLZ/GH0eTCm5/rMfayI6zRkGc= + dependencies: + debuglog "^1.0.1" + read-package-json "^2.0.0" + readdir-scoped-modules "^1.0.0" + semver "2 || 3 || 4 || 5" + slide "~1.1.3" + util-extend "^1.0.1" + optionalDependencies: + graceful-fs "^4.1.2" + +"read-package-json@1 || 2", read-package-json@^2.0.0, read-package-json@^2.0.13, read-package-json@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-2.1.2.tgz#6992b2b66c7177259feb8eaac73c3acd28b9222a" + integrity sha512-D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA== + dependencies: + glob "^7.1.1" + json-parse-even-better-errors "^2.3.0" + normalize-package-data "^2.0.0" + npm-normalize-package-bin "^1.0.0" + +read-package-tree@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/read-package-tree/-/read-package-tree-5.3.1.tgz#a32cb64c7f31eb8a6f31ef06f9cedf74068fe636" + integrity sha512-mLUDsD5JVtlZxjSlPPx1RETkNjjvQYuweKwNVt1Sn8kP5Jh44pvYuUHCp6xSVDZWbNxVxG5lyZJ921aJH61sTw== + dependencies: + read-package-json "^2.0.0" + readdir-scoped-modules "^1.0.0" + util-promisify "^2.1.0" + read-pkg-up@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" @@ -11216,7 +12647,14 @@ read-pkg@^5.2.0: parse-json "^5.0.0" type-fest "^0.6.0" -"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: +read@1, read@~1.0.1, read@~1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" + integrity sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ= + dependencies: + mute-stream "~0.0.4" + +"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: version "2.3.7" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== @@ -11238,6 +12676,26 @@ readable-stream@^3.0.2, readable-stream@^3.0.6, readable-stream@^3.1.1, readable string_decoder "^1.1.1" util-deprecate "^1.0.1" +readable-stream@~1.1.10: + version "1.1.14" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" + integrity sha1-fPTFTvZI44EwhMY23SB54WbAgdk= + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "0.0.1" + string_decoder "~0.10.x" + +readdir-scoped-modules@^1.0.0, readdir-scoped-modules@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz#8d45407b4f870a0dcaebc0e28670d18e74514309" + integrity sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw== + dependencies: + debuglog "^1.0.1" + dezalgo "^1.0.0" + graceful-fs "^4.1.2" + once "^1.3.0" + readdirp@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" @@ -11389,6 +12847,21 @@ regexpu-core@^4.7.1: unicode-match-property-ecmascript "^1.0.4" unicode-match-property-value-ecmascript "^1.2.0" +registry-auth-token@^3.0.1: + version "3.4.0" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.4.0.tgz#d7446815433f5d5ed6431cd5dca21048f66b397e" + integrity sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A== + dependencies: + rc "^1.1.6" + safe-buffer "^5.0.1" + +registry-url@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" + integrity sha1-PU74cPc93h138M+aOBQyRE4XSUI= + dependencies: + rc "^1.0.1" + regjsgen@^0.5.1: version "0.5.2" resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" @@ -11463,7 +12936,7 @@ request-promise-native@^1.0.8: stealthy-require "^1.1.1" tough-cookie "^2.3.3" -request@^2.88.2: +request@^2.88.0, request@^2.88.2: version "2.88.2" resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== @@ -11499,11 +12972,21 @@ require-from-string@^2.0.2: resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== +require-main-filename@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" + integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= + require-main-filename@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== +requires-port@0.x.x: + version "0.0.1" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-0.0.1.tgz#4b4414411d9df7c855995dd899a8c78a2951c16d" + integrity sha1-S0QUQR2d98hVmV3YmajHiilRwW0= + requires-port@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" @@ -11597,6 +13080,11 @@ ret@~0.1.10: resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== +retry@^0.10.0: + version "0.10.1" + resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" + integrity sha1-52OI0heZLCUnUCQdPTlW/tmNj/Q= + retry@^0.12.0: version "0.12.0" resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" @@ -11630,7 +13118,7 @@ rgba-regex@^1.0.0: resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= -rimraf@^2.5.4, rimraf@^2.6.3: +rimraf@^2.5.2, rimraf@^2.5.4, rimraf@^2.6.2, rimraf@^2.6.3, rimraf@^2.7.1: version "2.7.1" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== @@ -11752,7 +13240,7 @@ safe-regex@^1.1.0: dependencies: ret "~0.1.10" -"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: +"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== @@ -11847,7 +13335,14 @@ selfsigned@^1.10.7: dependencies: node-forge "^0.10.0" -"semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: +semver-diff@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" + integrity sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY= + dependencies: + semver "^5.0.3" + +"semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", "semver@^2.3.0 || 3.x || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.1: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== @@ -11930,7 +13425,7 @@ serve-static@1.14.1: parseurl "~1.3.3" send "0.17.1" -set-blocking@^2.0.0: +set-blocking@^2.0.0, set-blocking@~2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= @@ -11973,6 +13468,13 @@ sha.js@^2.4.0, sha.js@^2.4.8: inherits "^2.0.1" safe-buffer "^5.0.1" +sha@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/sha/-/sha-3.0.0.tgz#b2f2f90af690c16a3a839a6a6c680ea51fedd1ae" + integrity sha512-DOYnM37cNsLNSGIG/zZWch5CKIRNoLdYUQTQlcgkRkoYIUwDYjqDyye16YcDZg/OPdcbUgTKMjc4SY6TB7ZAPw== + dependencies: + graceful-fs "^4.1.2" + shallow-clone@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" @@ -12059,6 +13561,16 @@ slice-ansi@^4.0.0: astral-regex "^2.0.0" is-fullwidth-code-point "^3.0.0" +slide@^1.1.6, slide@~1.1.3, slide@~1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" + integrity sha1-VusCfWW00tzmyy4tMsTUr8nh1wc= + +smart-buffer@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.1.0.tgz#91605c25d91652f4661ea69ccf45f1b331ca21ba" + integrity sha512-iVICrxOzCynf/SNaBQCw34eM9jROU/s5rzIhpOvzhzuYHfJR/DhZfDkXiZSgKXfgv26HT3Yni3AV/DGw0cGnnw== + snapdragon-node@^2.0.1: version "2.1.1" resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" @@ -12110,6 +13622,22 @@ sockjs@0.3.20: uuid "^3.4.0" websocket-driver "0.6.5" +socks-proxy-agent@^4.0.0: + version "4.0.2" + resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-4.0.2.tgz#3c8991f3145b2799e70e11bd5fbc8b1963116386" + integrity sha512-NT6syHhI9LmuEMSK6Kd2V7gNv5KFZoLE7V5udWmn0de+3Mkj3UMA/AJPLyeNUVmElCurSHtUdM3ETpR3z770Wg== + dependencies: + agent-base "~4.2.1" + socks "~2.3.2" + +socks@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/socks/-/socks-2.3.3.tgz#01129f0a5d534d2b897712ed8aceab7ee65d78e3" + integrity sha512-o5t52PCNtVdiOvzMry7wU4aOqYWL0PeCXRWBEiJow4/i/wr+wpsJQ9awEu1EonLIqsfGd5qSgDdxEOvCdmBEpA== + dependencies: + ip "1.1.5" + smart-buffer "^4.1.0" + sort-keys@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" @@ -12117,6 +13645,19 @@ sort-keys@^1.0.0: dependencies: is-plain-obj "^1.0.0" +sorted-object@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/sorted-object/-/sorted-object-2.0.1.tgz#7d631f4bd3a798a24af1dffcfbfe83337a5df5fc" + integrity sha1-fWMfS9OnmKJK8d/8+/6DM3pd9fw= + +sorted-union-stream@~2.1.3: + version "2.1.3" + resolved "https://registry.yarnpkg.com/sorted-union-stream/-/sorted-union-stream-2.1.3.tgz#c7794c7e077880052ff71a8d4a2dbb4a9a638ac7" + integrity sha1-x3lMfgd4gAUv9xqNSi27Sppjisc= + dependencies: + from2 "^1.3.0" + stream-iterate "^1.1.0" + source-list-map@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" @@ -12248,6 +13789,11 @@ spdy@^4.0.2: select-hose "^2.0.0" spdy-transport "^3.0.0" +split-on-first@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/split-on-first/-/split-on-first-1.1.0.tgz#f610afeee3b12bce1d0c30425e76398b78249a5f" + integrity sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw== + split-string@^3.0.1, split-string@^3.0.2: version "3.1.0" resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" @@ -12275,6 +13821,13 @@ sshpk@^1.7.0: safer-buffer "^2.0.2" tweetnacl "~0.14.0" +ssri@^6.0.0, ssri@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.2.tgz#157939134f20464e7301ddba3e90ffa8f7728ac5" + integrity sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q== + dependencies: + figgy-pudding "^3.5.1" + ssri@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8" @@ -12351,6 +13904,14 @@ stream-http@^2.7.2: to-arraybuffer "^1.0.0" xtend "^4.0.0" +stream-iterate@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/stream-iterate/-/stream-iterate-1.2.0.tgz#2bd7c77296c1702a46488b8ad41f79865eecd4e1" + integrity sha1-K9fHcpbBcCpGSIuK1B95hl7s1OE= + dependencies: + readable-stream "^2.1.5" + stream-shift "^1.0.0" + stream-shift@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" @@ -12361,6 +13922,11 @@ strict-uri-encode@^1.0.0: resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM= +strict-uri-encode@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" + integrity sha1-ucczDHBChi9rFC3CdLvMWGbONUY= + string-length@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.1.tgz#4a973bf31ef77c4edbceadd6af2611996985f8a1" @@ -12374,6 +13940,23 @@ string-natural-compare@^3.0.1: resolved "https://registry.yarnpkg.com/string-natural-compare/-/string-natural-compare-3.0.1.tgz#7a42d58474454963759e8e8b7ae63d71c1e7fdf4" integrity sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw== +string-width@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + string-width@^3.0.0, string-width@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" @@ -12428,6 +14011,11 @@ string_decoder@^1.0.0, string_decoder@^1.1.1: dependencies: safe-buffer "~5.2.0" +string_decoder@~0.10.x: + version "0.10.31" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" + integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= + string_decoder@~1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" @@ -12444,6 +14032,11 @@ stringify-object@^3.3.0: is-obj "^1.0.1" is-regexp "^1.0.0" +stringify-package@^1.0.0, stringify-package@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/stringify-package/-/stringify-package-1.0.1.tgz#e5aa3643e7f74d0f28628b72f3dad5cecfc3ba85" + integrity sha512-sa4DUQsYciMP1xhKWGuFM04fB0LG/9DlluZoSVywUMRNvzid6XucHK0/90xGxRoHrAaROrcHK1aPKaijCtSrhg== + strip-ansi@6.0.0, strip-ansi@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" @@ -12458,6 +14051,13 @@ strip-ansi@^3.0.0, strip-ansi@^3.0.1: dependencies: ansi-regex "^2.0.0" +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= + dependencies: + ansi-regex "^3.0.0" + strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" @@ -12510,6 +14110,11 @@ strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= + style-loader@1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.3.0.tgz#828b4a3b3b7e7aa5847ce7bae9e874512114249e" @@ -12628,6 +14233,19 @@ tapable@^1.0.0, tapable@^1.1.3: resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== +tar@^4.4.10, tar@^4.4.12, tar@^4.4.13: + version "4.4.13" + resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" + integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA== + dependencies: + chownr "^1.1.1" + fs-minipass "^1.2.5" + minipass "^2.8.6" + minizlib "^1.2.1" + mkdirp "^0.5.0" + safe-buffer "^5.1.2" + yallist "^3.0.3" + tar@^6.0.2: version "6.1.0" resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.0.tgz#d1724e9bcc04b977b18d5c573b333a2207229a83" @@ -12677,6 +14295,13 @@ tempy@^0.6.0: type-fest "^0.16.0" unique-string "^2.0.0" +term-size@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" + integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk= + dependencies: + execa "^0.7.0" + terminal-link@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" @@ -12751,7 +14376,7 @@ test-exclude@^6.0.0: glob "^7.1.4" minimatch "^3.0.4" -text-table@0.2.0, text-table@^0.2.0: +text-table@0.2.0, text-table@^0.2.0, text-table@~0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= @@ -12769,11 +14394,21 @@ through2@^2.0.0: readable-stream "~2.3.6" xtend "~4.0.1" +"through@>=2.2.7 <3": + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= + thunky@^1.0.2: version "1.1.0" resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== +timed-out@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" + integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8= + timers-browserify@^2.0.4: version "2.0.12" resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee" @@ -12791,6 +14426,11 @@ tiny-invariant@^1.0.2: resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.1.0.tgz#634c5f8efdc27714b7f386c35e6760991d230875" integrity sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw== +tiny-relative-date@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/tiny-relative-date/-/tiny-relative-date-1.3.0.tgz#fa08aad501ed730f31cc043181d995c39a935e07" + integrity sha512-MOQHpzllWxDCHHaDno30hhLfbouoYlOI8YlMNtvKe1zXbjEVhbcEovQxvZrPvtiYW630GQDoMMarCnjfyfHA+A== + tiny-warning@^1.0.0, tiny-warning@^1.0.2, tiny-warning@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754" @@ -13017,6 +14657,16 @@ typedarray@^0.0.6: resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= +uid-number@0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" + integrity sha1-DqEOgDXo61uOREnwbaHHMGY7qoE= + +umask@^1.1.0, umask@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/umask/-/umask-1.1.0.tgz#f29cebf01df517912bb58ff9c4e50fde8e33320d" + integrity sha1-8pzr8B31F5ErtY/5xOUP3o4zMg0= + unicode-canonical-property-names-ecmascript@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" @@ -13162,11 +14812,32 @@ unset-value@^1.0.0: has-value "^0.3.1" isobject "^3.0.0" +unzip-response@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" + integrity sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c= + upath@^1.1.1, upath@^1.1.2, upath@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== +update-notifier@^2.2.0, update-notifier@^2.3.0, update-notifier@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.5.0.tgz#d0744593e13f161e406acb1d9408b72cad08aff6" + integrity sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw== + dependencies: + boxen "^1.2.1" + chalk "^2.0.1" + configstore "^3.0.0" + import-lazy "^2.1.0" + is-ci "^1.0.10" + is-installed-globally "^0.1.0" + is-npm "^1.0.0" + latest-version "^3.0.0" + semver-diff "^2.0.0" + xdg-basedir "^3.0.0" + uri-js@^4.2.2: version "4.4.1" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" @@ -13188,6 +14859,13 @@ url-loader@4.1.1: mime-types "^2.1.27" schema-utils "^3.0.0" +url-parse-lax@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" + integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM= + dependencies: + prepend-http "^1.0.1" + url-parse@^1.4.3: version "1.5.1" resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.1.tgz#d5fa9890af8a5e1f274a2c98376510f6425f6e3b" @@ -13214,6 +14892,18 @@ util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= +util-extend@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/util-extend/-/util-extend-1.0.3.tgz#a7c216d267545169637b3b6edc6ca9119e2ff93f" + integrity sha1-p8IW0mdUUWljeztu3GypEZ4v+T8= + +util-promisify@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/util-promisify/-/util-promisify-2.1.0.tgz#3c2236476c4d32c5ff3c47002add7c13b9a82a53" + integrity sha1-PCI2R2xNMsX/PEcAKt18E7moKlM= + dependencies: + object.getownpropertydescriptors "^2.0.3" + util.promisify@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" @@ -13256,7 +14946,7 @@ utils-merge@1.0.1: resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= -uuid@^3.3.2, uuid@^3.4.0: +uuid@^3.3.2, uuid@^3.3.3, uuid@^3.4.0: version "3.4.0" resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== @@ -13280,7 +14970,7 @@ v8-to-istanbul@^7.0.0: convert-source-map "^1.6.0" source-map "^0.7.3" -validate-npm-package-license@^3.0.1: +validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== @@ -13288,6 +14978,13 @@ validate-npm-package-license@^3.0.1: spdx-correct "^3.0.0" spdx-expression-parse "^3.0.0" +validate-npm-package-name@^3.0.0, validate-npm-package-name@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz#5fa912d81eb7d0c74afc140de7317f0ca7df437e" + integrity sha1-X6kS2B630MdK/BQN5zF/DKffQ34= + dependencies: + builtins "^1.0.3" + value-equal@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-1.0.1.tgz#1e0b794c734c5c0cade179c437d356d931a34d6c" @@ -13397,6 +15094,13 @@ wbuf@^1.1.0, wbuf@^1.7.3: dependencies: minimalistic-assert "^1.0.0" +wcwidth@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g= + dependencies: + defaults "^1.0.3" + web-vitals@^0.2.4: version "0.2.4" resolved "https://registry.yarnpkg.com/web-vitals/-/web-vitals-0.2.4.tgz#ec3df43c834a207fd7cdefd732b2987896e08511" @@ -13583,7 +15287,7 @@ which-module@^2.0.0: resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= -which@^1.2.9, which@^1.3.1: +which@^1.2.9, which@^1.3.0, which@^1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== @@ -13597,6 +15301,20 @@ which@^2.0.1, which@^2.0.2: dependencies: isexe "^2.0.0" +wide-align@^1.1.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" + integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== + dependencies: + string-width "^1.0.2 || 2" + +widest-line@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc" + integrity sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA== + dependencies: + string-width "^2.1.1" + word-wrap@^1.2.3, word-wrap@~1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" @@ -13910,7 +15628,7 @@ workbox-window@^6.1.5: dependencies: workbox-core "^6.1.5" -worker-farm@^1.7.0: +worker-farm@^1.6.0, worker-farm@^1.7.0: version "1.7.0" resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8" integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw== @@ -13932,6 +15650,14 @@ worker-rpc@^0.1.0: dependencies: microevent.ts "~0.1.1" +wrap-ansi@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" + integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + wrap-ansi@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" @@ -13964,6 +15690,15 @@ wrappy@1: resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= +write-file-atomic@^2.0.0, write-file-atomic@^2.3.0, write-file-atomic@^2.4.3: + version "2.4.3" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.3.tgz#1fd2e9ae1df3e75b8d8c367443c692d4ca81f481" + integrity sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ== + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + signal-exit "^3.0.2" + write-file-atomic@^3.0.0: version "3.0.3" resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" @@ -13986,6 +15721,11 @@ ws@^7.2.3: resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.3.tgz#1f9643de34a543b8edb124bdcbc457ae55a6e5cd" integrity sha512-hr6vCR76GsossIRsr8OLR9acVVm1jyfEWvhbNjtgPOrfvAlKzvyeg/P6r8RuDjRyrcQoPQT7K0DGEPc7Ae6jzA== +xdg-basedir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" + integrity sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ= + xml-name-validator@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" @@ -14001,6 +15741,11 @@ xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== +y18n@^3.2.1: + version "3.2.2" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.2.tgz#85c901bd6470ce71fc4bb723ad209b70f7f28696" + integrity sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ== + y18n@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz#8db2b83c31c5d75099bb890b23f3094891e247d4" @@ -14011,7 +15756,12 @@ y18n@^5.0.5: resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.5.tgz#8769ec08d03b1ea2df2500acef561743bbb9ab18" integrity sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg== -yallist@^3.0.2: +yallist@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= + +yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3: version "3.1.1" resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== @@ -14034,6 +15784,14 @@ yargs-parser@^13.1.2: camelcase "^5.0.0" decamelize "^1.2.0" +yargs-parser@^15.0.1: + version "15.0.3" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-15.0.3.tgz#316e263d5febe8b38eef61ac092b33dfcc9b1115" + integrity sha512-/MVEVjTXy/cGAjdtQf8dW3V9b97bPN7rNn8ETj6BmAQL7ibC7O1Q9SPJbGjgh3SlwoBNXMzj/ZGIj8mBgl12YA== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + yargs-parser@^18.1.2: version "18.1.3" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" @@ -14047,6 +15805,13 @@ yargs-parser@^20.2.2: resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.6.tgz#69f920addf61aafc0b8b89002f5d66e28f2d8b20" integrity sha512-AP1+fQIWSM/sMiET8fyayjx/J+JmTPt2Mr0FkrgqB4todtfa53sOsrSAcIrJRD5XS20bKUwaDIuMkWKCEiQLKA== +yargs-parser@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" + integrity sha1-jQrELxbqVd69MyyvTEA4s+P139k= + dependencies: + camelcase "^4.1.0" + yargs@^13.3.2: version "13.3.2" resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" @@ -14063,6 +15828,23 @@ yargs@^13.3.2: y18n "^4.0.0" yargs-parser "^13.1.2" +yargs@^14.2.3: + version "14.2.3" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-14.2.3.tgz#1a1c3edced1afb2a2fea33604bc6d1d8d688a414" + integrity sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg== + dependencies: + cliui "^5.0.0" + decamelize "^1.2.0" + find-up "^3.0.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^3.0.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^15.0.1" + yargs@^15.4.1: version "15.4.1" resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" @@ -14093,6 +15875,25 @@ yargs@^16.2.0: y18n "^5.0.5" yargs-parser "^20.2.2" +yargs@^8.0.2: + version "8.0.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" + integrity sha1-YpmpBVsc78lp/355wdkY3Osiw2A= + dependencies: + camelcase "^4.1.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^2.0.0" + read-pkg-up "^2.0.0" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^2.0.0" + which-module "^2.0.0" + y18n "^3.2.1" + yargs-parser "^7.0.0" + yocto-queue@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" From 1440bfe5b6ca0cee2f479bcbc3d195903821ab8c Mon Sep 17 00:00:00 2001 From: theuscovidatlas Date: Tue, 20 Jul 2021 16:44:31 -0500 Subject: [PATCH 02/40] Version fix --- netlify.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/netlify.toml b/netlify.toml index cfa5f5102..3e4554846 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1,2 +1,7 @@ [functions] - directory = "functions/" \ No newline at end of file + directory = "functions/" + + +[build.environment] + NODE_VERSION = "16.5.0" + AWS_LAMBDA_JS_RUNTIME = "16.5.0" \ No newline at end of file From da9dafe065efb8b645dda01967dcc0c5ef66cf2c Mon Sep 17 00:00:00 2001 From: theuscovidatlas Date: Tue, 20 Jul 2021 16:49:50 -0500 Subject: [PATCH 03/40] Remove Performance --- functions/countyMoran.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/functions/countyMoran.js b/functions/countyMoran.js index 87d44c769..970346061 100644 --- a/functions/countyMoran.js +++ b/functions/countyMoran.js @@ -34,7 +34,6 @@ function parseOrderedData(data, headers, ids, column=false){ exports.handler = async () => { try { - const t0 = performance.now(); const [geoda, raw] = await Promise.all([jsgeoda.New(), axios.get('https://raw.githubusercontent.com/GeoDaCenter/covid/master/public/csv/covid_confirmed_cdc.csv')]); const uid = await geoda.readGeoJSON(geom); @@ -42,8 +41,7 @@ exports.handler = async () => { const data = parseOrderedData(result, headers, geoidOrder) const weights = geoda.getQueenWeights(uid) - return { statusCode: 200, body: JSON.stringify( - { localMoran: geoda.localMoran(weights, data), time: performance.now() - t0 }) + return { statusCode: 200, body: JSON.stringify({ localMoran: geoda.localMoran(weights, data) }) }; } catch (error) { From 0bdc8157acdfb9cfdd4be2ad2389ea8ea11b6591 Mon Sep 17 00:00:00 2001 From: theuscovidatlas Date: Tue, 20 Jul 2021 17:29:18 -0500 Subject: [PATCH 04/40] Update cors.js --- functions/cors.js | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/functions/cors.js b/functions/cors.js index 497528013..7c3ddee8d 100644 --- a/functions/cors.js +++ b/functions/cors.js @@ -1,5 +1,6 @@ const cors_proxy = require('cors-anywhere'); const fetch = require('node-fetch'); +const createHttpTerminator = require('http-terminator'); const handleResponse = async (response, type) => { if (type === "json") { @@ -22,7 +23,6 @@ const handleResponse = async (response, type) => { } exports.handler = async (event) => { - console.log(event) try { if (!event.queryStringParameters.url) return { statusCode: 500, body: JSON.stringify({ error: 'No URL Supplied' })} if (!event.queryStringParameters.type) return { statusCode: 500, body: JSON.stringify({ error: 'No Data Type Supplied' })} @@ -30,22 +30,27 @@ exports.handler = async (event) => { const port = 8080; const cors_api_url = `http://localhost:${port}/${event.queryStringParameters.url}`; - cors_proxy.createServer({ + const server = cors_proxy.createServer({ originWhitelist: [], // Allow all origins requireHeader: [], removeHeaders: ['cookie', 'cookie2'] - }).listen(port, '0.0.0.0', function() { - console.log('Running CORS Anywhere on ' + '0.0.0.0' + ':' + port); + }) + server.listen(port, '0.0.0.0', function() {}); + + const httpTerminator = createHttpTerminator({ + server, }); const response = await fetch(cors_api_url, { method: 'GET' - }).then(r => r.json()) + }).then(r => { + httpTerminator.terminate() + return r + }).then( r => r.json()); return { statusCode: 200, body: JSON.stringify({ data: response }) }; } catch (error) { - console.log(error); return { statusCode: 500, body: JSON.stringify({ error: 'Failed fetching data' }), From 748fa02e1a76ec2cf9a9ecd1a09d4e8e6ff25d0c Mon Sep 17 00:00:00 2001 From: theuscovidatlas Date: Wed, 21 Jul 2021 09:54:49 -0500 Subject: [PATCH 05/40] P --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 7e197e5f4..29d26fe34 100644 --- a/package.json +++ b/package.json @@ -32,6 +32,7 @@ "d3-dsv": "^2.0.0", "d3-scale": "^3.2.0", "file-saver": "^2.0.5", + "http-terminator": "^3.0.0", "jsgeoda": "^0.2.3", "jszip": "^3.6.0", "lodash": "^4.17.20", From 56b3920e6420372267c33bcfcdf795cc050a8064 Mon Sep 17 00:00:00 2001 From: theuscovidatlas Date: Wed, 21 Jul 2021 12:12:56 -0500 Subject: [PATCH 06/40] Big Query test functions --- .gitignore | 1 + functions/bigquery.js | 45 +++++ functions/query.js | 90 ++++++++++ package.json | 1 + yarn.lock | 403 +++++++++++++++++++++++++++++++++++++----- 5 files changed, 498 insertions(+), 42 deletions(-) create mode 100644 functions/bigquery.js create mode 100644 functions/query.js diff --git a/.gitignore b/.gitignore index 3ae554756..b8f670d8d 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,4 @@ public/proto/node_modules/ data-scripts/safegraph/fullData2021-03-05.csv yarn.lock yarn.lock +.env diff --git a/functions/bigquery.js b/functions/bigquery.js new file mode 100644 index 000000000..57552d6a6 --- /dev/null +++ b/functions/bigquery.js @@ -0,0 +1,45 @@ +const {BigQuery} = require('@google-cloud/bigquery'); + +const options = { + credentials: { + "type": "service_account", + "project_id": process.env.project_id, + "private_key_id": process.env.PK_ID, + "private_key": process.env.PK, + "client_email": process.env.CLIENT_EMAIL, + "client_id": process.env.CLIENT_ID, + "auth_uri": "https://accounts.google.com/o/oauth2/auth", + "token_uri": "https://oauth2.googleapis.com/token", + "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", + "client_x509_cert_url": process.env.client_x509_cert_url + }, + projectId: 'covid-atlas', +}; + +async function query(queryString, bigquery) { + const options = { + query: queryString, + location: 'US', + }; + const [job] = await bigquery.createQueryJob(options); + return await job.getQueryResults(); +}; + +exports.handler = async (event) => { + try { + const bigquery = new BigQuery(options); + const result = await query( + event.queryStringParameters.q, + bigquery); + return { + statusCode: 200, + body: JSON.stringify({ result }) + }; + } catch (error) { + console.log(error); + return { + statusCode: 500, + body: JSON.stringify({ error: 'Failed fetching data' }), + }; + } +}; \ No newline at end of file diff --git a/functions/query.js b/functions/query.js new file mode 100644 index 000000000..859f02df2 --- /dev/null +++ b/functions/query.js @@ -0,0 +1,90 @@ +const jsgeoda = require('jsgeoda'); +const {BigQuery} = require('@google-cloud/bigquery'); + +const options = { + credentials: { + "type": "service_account", + "project_id": process.env.project_id, + "private_key_id": process.env.PK_ID, + "private_key": process.env.PK, + "client_email": process.env.CLIENT_EMAIL, + "client_id": process.env.CLIENT_ID, + "auth_uri": "https://accounts.google.com/o/oauth2/auth", + "token_uri": "https://oauth2.googleapis.com/token", + "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", + "client_x509_cert_url": process.env.client_x509_cert_url + }, + projectId: 'covid-atlas', +}; + +async function query(queryString, bigquery) { + const options = { + query: queryString, + location: 'US', + }; + const [job] = await bigquery.createQueryJob(options); + return await job.getQueryResults(); +}; + +function orderData(data, idColumn, idOrder, dataColumn){ + let result = []; + let indexed = {}; + + for (let i=0; i { + try { + if (event.queryStringParameters.lisa == 'true') { + const bigquery = new BigQuery(options); + const [geoda, raw] = await Promise.all([ + jsgeoda.New(), + query( + event.queryStringParameters.q, + bigquery) + ]); + const uid = geoda.readGeoJSON(geom); + const data = orderData( + raw[0], + idColumn, + geoidOrder, + dataColumn + ) + const weights = geoda.getQueenWeights(uid) + return { statusCode: 200, body: JSON.stringify({ localMoran: geoda.localMoran(weights, data) }) + }; + } else { + const bigquery = new BigQuery(options); + const result = await query( + event.queryStringParameters.q, + bigquery); + return { statusCode: 200, body: JSON.stringify({ result }) }; + } + + } catch (error) { + console.log(error); + return { + statusCode: 500, + body: JSON.stringify({ error: 'Failed fetching data' }), + }; + } +}; + +var geoidOrder = [31039,53069,35011,31109,31129,72085,46099,48327,6091,21053,39063,48189,1027,48011,39003,13189,55111,5137,41063,42007,28061,29083,8109,37037,49033,40001,39085,51775,51121,47065,35035,35003,1091,56023,29011,48057,51735,54075,48077,51095,31101,31137,22019,22111,40135,1049,36101,42053,22105,51179,26109,18073,13025,13171,18151,48361,39047,25015,21003,37001,20073,25025,16051,48177,47115,26007,21231,47185,48147,20043,48265,12053,12129,12131,28017,2130,26035,20157,12127,40017,72115,13115,32001,31181,17067,46067,41013,50011,26103,9007,37057,17025,29103,29117,42117,31043,26089,51181,48391,39017,13273,13063,56013,18115,13073,8115,30065,42043,46101,54079,34037,20039,18123,28145,31015,27095,38099,39115,39133,56041,32013,48247,8017,41005,5113,13193,18007,47129,46043,24047,17185,18069,21209,19053,18169,18003,18099,31171,38085,48127,27045,45023,27073,49005,55093,13049,13233,17113,23001,16055,32003,20147,31089,29101,55063,22021,21061,17005,17009,27085,55033,8027,29123,48353,42127,36091,48041,40095,24001,54103,55053,41007,53041,36003,19031,18117,13089,13227,30015,31017,47013,37069,24510,20111,19027,22107,47123,20075,19151,16045,5063,5085,18111,13119,12051,13265,48245,30059,8067,48027,28069,5019,41035,36075,72105,1019,48019,30087,35059,26153,36111,34007,17083,51085,20199,26003,5049,48215,37155,26123,41049,27153,5083,37109,5091,12095,8111,16041,13045,20161,48413,51167,37027,16065,18173,21001,21077,21097,23023,30097,48181,42059,2188,20051,1065,1105,1033,20151,21017,47149,13075,20101,40059,17147,48107,72053,1063,16033,19109,72151,38013,37063,19085,31103,19187,17151,47159,51089,51510,19101,30049,49013,40003,48119,47169,21193,46039,41029,72067,48507,31007,19121,12011,13279,26151,48397,26163,27105,27001,38071,37145,20195,28151,48133,28055,48123,48005,45081,29125,5001,29109,51540,17011,39145,37115,16053,39163,48309,16037,19089,12099,13181,1013,47165,51097,5015,51820,2220,41051,47061,27057,38081,36089,29179,6067,39125,18179,51063,6083,54005,28009,21055,19147,19159,37151,24015,18171,31077,31095,31151,21119,19045,27063,27039,27047,6009,25001,51119,42065,18089,47003,47027,17029,47097,41001,36097,26159,17131,21127,21175,21177,17049,47105,46025,15003,12041,18157,42109,48277,12086,31057,48289,8097,38035,18091,18057,51595,40081,20071,13145,13251,72127,48433,39069,33009,29145,18129,48311,17035,13297,27121,51157,51009,6111,17033,8093,6037,4027,13129,19025,12055,51580,50017,20113,4021,39051,8003,12017,72049,72051,47041,42031,46097,46073,18031,18037,51057,45089,36031,19195,40063,51027,51005,28087,18143,8099,48435,72121,40101,29043,72039,28073,18137,38057,13147,22049,51133,48157,55047,30073,55127,32021,17057,36103,18161,29119,31157,35047,1081,48367,38021,38003,27143,13293,6097,26033,16019,13013,13183,48271,40115,42033,26037,72133,17135,28003,28071,22043,29005,17115,26149,17055,30033,31001,27109,34039,72139,1097,46087,1057,1017,37131,8081,21087,18047,37013,72073,38015,37159,26071,27067,21237,48149,46081,23029,48045,26131,28015,41003,27133,42063,22061,42099,46137,48203,26013,40131,29019,72097,40015,8059,54011,48383,5141,8117,20035,5071,36041,51045,48083,2290,4017,28085,48357,48103,56003,47081,28143,29081,72029,18005,13223,39015,47141,38101,25027,39091,6031,6073,72123,13079,72103,29037,36027,48477,8101,29067,38009,37051,56017,26001,6061,5129,48305,36077,37153,37093,31131,42023,45035,27161,46015,47177,17023,21201,47095,45015,5051,20139,39155,48333,48359,42019,16049,20115,51029,37025,29225,49011,27033,12093,13291,19013,48403,39131,1125,1131,28097,31099,31087,10003,16081,17161,51073,5133,18017,16077,18015,42101,56043,37029,36109,5069,5079,55123,29093,48223,36001,48225,39111,20165,18107,20187,21129,27071,48029,8013,47089,40097,27165,16013,22053,46119,8031,40029,30011,48461,18051,31105,17093,11001,8085,27171,55059,8037,6075,8113,2020,12109,28019,29079,26085,26139,17031,17059,45047,20059,27027,47075,49003,28139,54051,54035,16039,24005,38005,29163,39087,29201,39001,48143,13137,13319,54061,39033,12027,9011,39059,26015,29209,51760,37169,19039,19065,6041,48381,48401,19181,39161,12043,13199,8023,48099,19001,13053,6043,29089,41047,55079,27139,39129,51145,8014,47099,26009,45069,16009,17103,31127,37031,20149,26075,48091,25019,45009,48007,13019,18165,26143,37005,6035,51610,12081,39119,8015,8025,8043,28109,28111,31041,12013,21117,19037,17037,19081,38089,26095,40019,37139,35055,28011,32023,47073,38011,42057,22055,48237,17175,40055,48211,16069,46129,6055,40033,29221,36011,48417,48407,19061,51075,20181,39139,17001,39021,33019,17075,19157,39169,13113,13141,48259,36039,51137,40089,13277,31025,46077,56009,36043,38047,26053,27005,1095,47173,54057,55003,17053,38029,6089,22113,5121,55085,22035,22037,22087,48481,2198,2195,48153,2275,21151,47009,30031,45031,1053,13143,20001,17041,51079,55137,5065,6053,35017,29131,37193,2110,29165,29021,1083,18065,31143,39123,27107,19165,24013,19011,21159,27025,21189,42015,54029,29051,26021,42061,31045,51141,26119,26135,35007,17163,17189,42009,5127,20099,42073,39067,37003,34009,33005,27089,51101,8055,48255,47023,17171,49027,49029,48257,4011,4013,26129,47087,17159,1009,30051,48131,29173,48251,13061,41023,41011,48159,36113,51113,40005,17129,13015,12069,40111,38083,18049,20091,24009,55129,53031,72003,27169,28149,29003,29139,20021,37083,35043,21051,42035,41043,55065,40147,54077,55135,48137,41037,29153,48473,1099,50009,51111,38097,13139,13283,13037,55125,27007,72043,72055,24019,42037,39023,48323,4019,35006,34005,50021,13099,25007,38049,31179,38045,16023,33007,38043,48273,18127,28101,37163,47127,12103,72019,17065,5105,20023,8029,19185,48165,1093,37189,51770,48317,48037,49057,29127,36045,19097,38063,36019,8045,29177,39073,1085,13043,19113,6105,13215,28135,20005,72081,48003,39109,48375,40133,45003,6045,51550,72153,56037,48169,54031,72001,55089,47163,45059,56011,55117,25013,48055,20029,6027,1037,19059,21095,20061,42011,47019,27083,51037,47179,45071,51093,41069,29023,22047,28125,51061,51750,32005,12037,18055,18139,55131,29105,42085,5031,29195,17193,17039,32033,27049,37173,12101,12119,36059,38091,18163,29071,37011,54107,55007,47161,55097,45063,24003,55039,54101,55061,48369,40151,21063,25003,29041,8103,8087,41045,34023,20167,17155,46055,47111,5023,1109,16003,25005,42107,38103,37045,5059,24021,17169,6051,6109,35013,13081,5027,38039,6095,19043,48449,54027,37125,20009,38087,22083,31071,22099,1119,1133,12117,28035,26065,20177,46061,27061,8073,36053,36115,18081,48445,35021,1121,55067,48155,19021,19129,48385,39041,37067,32510,19049,48065,13261,29223,45007,56007,30093,17177,26087,22027,28161,72093,26079,72005,22039,47069,4003,35023,38023,6071,8083,28023,19125,31055,51600,40057,29039,13059,16085,48275,5103,39037,40071,46041,41057,13077,28127,28131,6013,47017,51087,18119,36119,29017,54047,54033,37077,9009,31139,13023,13033,17181,17091,38051,31141,37185,72009,13197,46027,10005,13159,29175,20015,48209,48325,26105,45013,46135,55105,45077,53013,18023,17027,16067,42113,28121,48345,41039,48485,26155,20089,20123,12007,28091,28039,17085,18059,51620,48329,20171,30013,51660,17199,30029,72111,20189,21067,21091,46013,54001,47181,31013,42097,48469,51530,26147,31173,50015,51067,40011,53037,18135,49025,54093,72113,55023,1071,19123,20045,21059,21197,29097,41061,13151,38001,37137,21083,42021,47107,26093,8001,42069,40123,40037,48457,47175,40125,9013,35053,13003,12031,48145,5149,20033,21113,21171,40075,46079,37033,48377,39057,48489,72021,35028,2122,1003,19007,51127,13263,36049,54015,18077,51019,35033,31011,29149,47083,42131,37107,18167,18039,51077,48303,27093,39005,31119,12085,8079,13085,13167,5095,29059,51143,2068,20145,20209,12029,26157,2240,20065,22097,47055,39095,5093,72117,18043,20129,21081,21217,37075,54045,54073,51071,54019,53061,35015,31117,31145,31149,47085,17125,51197,13303,53077,5143,48213,55035,47153,48471,4005,20191,26127,27065,39007,6003,48167,1011,17105,39135,39079,48201,25017,72145,48115,36069,2261,1001,20121,13091,36023,13039,26161,18087,48371,13225,13311,13163,55083,48347,44009,53047,53063,55041,55113,34017,39151,48187,53029,54037,51153,42029,54055,47145,53009,53065,19177,31073,28095,12033,48439,24033,51169,48239,40085,13289,39099,1087,17191,48437,29151,17089,6017,45055,37073,8089,41019,42089,5101,38019,40103,20063,22077,31067,1115,28123,13095,18061,16017,13047,22059,23027,24027,49035,9003,9015,12087,39157,36085,39071,27077,16011,72023,72069,72077,45045,46085,55121,6113,48431,48495,46071,49041,51036,1023,18083,31047,20057,38105,38017,17069,31005,48163,19103,20133,21089,20107,49017,32011,31085,8095,5013,2090,21101,28051,28105,72037,72047,30027,24023,22119,26059,21141,46033,33013,42133,37161,46005,1043,13097,31097,37187,46075,37007,2100,38007,31003,29073,21031,56005,13211,5037,5107,22093,6115,1117,8091,35009,40149,37135,18131,26019,36029,24031,51685,51013,51035,29183,6069,24035,20013,13031,21071,30007,13309,37049,29087,48295,41009,45041,38061,49053,30003,42047,31165,28031,72099,18013,18019,21021,21065,48087,48089,17063,27081,13109,48497,2050,13307,13169,13135,55095,55045,72107,36079,51700,8011,40065,30089,48173,5047,40093,47125,53051,38055,41027,19197,48419,29055,51017,27111,22075,28115,22067,21029,1047,48093,30053,72129,72135,27021,8007,28163,55087,29107,37195,39117,30039,38031,5033,48053,29186,48179,17109,19137,5067,48229,22079,31111,48067,47079,51840,37061,37087,27037,41025,72095,55001,29045,21015,21229,22009,28137,29227,31163,46021,46063,26057,19175,17127,31113,31121,31161,21039,56025,13321,18109,48139,13229,18053,12035,28077,22127,17073,41041,23031,46029,13231,13259,34025,5021,5045,40041,19107,17061,27075,13285,6023,47043,27003,46009,47059,51183,18141,38067,46007,22115,23019,24041,13257,6065,5005,28007,19169,20011,51049,45085,2164,54109,6029,48097,45075,55119,27099,27101,44007,29161,28117,21235,18149,48491,72109,19131,13107,22025,42025,31133,47171,45083,55073,32007,54007,26165,48079,42013,29085,29009,27123,5081,32019,12071,41033,72091,28113,47031,16059,21183,31153,13071,27167,17157,23011,51173,35041,42111,51191,37081,16001,40039,39101,17149,17203,13245,1107,40045,17145,19075,8107,34035,6011,17087,8053,16031,27059,42049,28029,48467,51161,51015,2060,49031,21161,27009,48129,12005,1077,18045,17173,17051,39127,51590,13011,13305,40109,40069,37099,49043,29167,32015,19191,21023,55037,54087,27159,51670,17201,4007,24045,21043,37097,51083,37091,36057,27113,53073,41021,34029,5009,40031,48253,48185,26049,22007,28013,28041,30017,46109,17141,38077,55005,55051,27157,6015,40127,53007,26141,40027,36105,37149,37165,37085,37105,18159,20027,40145,30083,5003,5041,72147,47135,27163,51740,42051,54023,51171,48235,29025,12107,18025,29111,31075,72087,16071,17139,21107,16035,21013,27035,72011,4009,5123,13101,2070,20105,20183,12065,72041,28005,5097,26025,1029,8123,40009,6049,19153,13179,48349,48047,47187,56021,53003,27155,17017,13247,42067,42083,40049,31021,35045,36073,22031,6019,13105,1005,37017,48111,17167,40035,47035,26137,19161,49015,53019,30109,35027,40021,27173,48231,48335,48499,40113,37039,26107,21195,12067,37035,21025,48075,29181,17179,48243,51678,5135,8069,37177,27131,29219,21227,22017,46121,19127,40141,37113,54063,18155,21105,1061,17099,19055,20127,19051,16015,55081,37143,12047,2170,18035,12075,72063,72065,28045,13315,22081,47093,23017,29095,13281,28129,16075,16079,37095,19067,21145,21225,46125,47029,47067,47071,45067,72057,22117,29207,13093,27145,31155,27141,46035,47025,48337,48049,55101,55115,19009,48207,40083,36065,8065,40121,54017,54105,33003,54095,27079,53017,36009,55027,19105,20007,29169,1045,20109,6039,29075,31009,49009,56031,37071,35019,30037,37101,6085,45019,53005,29001,39043,17183,29189,17007,6103,55025,48151,22085,17137,13235,37015,37167,47143,37079,21131,24039,17123,21143,48095,48081,47133,26063,26069,13069,13299,38037,22051,22103,19083,22023,39027,27137,39093,72143,19015,48373,31051,24025,45037,51001,55015,21121,26067,37129,47131,21035,51003,47147,51043,53023,21109,27031,45073,22033,28021,24037,26081,37147,30009,31167,13001,19099,28153,48101,51081,12105,48503,1123,33015,8105,19149,36123,53033,41017,19155,29229,30101,36107,48287,13121,48073,29007,45029,55055,5055,48191,55013,35057,53049,37141,48221,46117,32031,21007,48009,48023,48405,32029,13249,9001,48313,6077,28159,21103,21167,31183,21135,27051,28053,1025,20017,21221,1069,46003,2013,31061,24029,20037,27023,46103,45049,16043,13029,51053,12111,36055,46083,55017,20207,21157,13065,13185,15005,15007,26099,13287,17079,48331,18147,21099,21137,30005,51710,48389,51155,37179,38053,12091,6001,17013,18085,28103,5147,34015,33011,30045,37121,30077,41053,41065,46105,19173,1129,39039,54025,17121,51051,51007,13243,35029,48355,56045,72137,17187,1089,47189,48063,40067,54085,19145,20087,22045,2158,37133,27043,47057,48161,42087,1041,51520,48399,48443,20153,20193,13161,19035,5145,28083,29053,26043,17197,48117,46011,29047,28027,18011,19057,19163,20143,12023,12059,28047,72141,47011,27017,48315,36095,40117,36007,48291,39009,39081,54083,54049,34011,6057,55031,21199,37065,48241,49001,13213,18075,26117,36083,12021,35031,13017,5077,12003,13173,20159,1015,28059,21037,21057,28107,48195,48071,13239,48199,9005,39143,23021,17153,40107,26145,35039,50005,51023,17119,48085,45001,31053,12115,55077,4015,4025,45051,42091,16061,72013,51720,34027,29211,20135,48039,51790,31029,39113,48447,13221,5029,29147,38073,26017,47157,6007,27115,48021,53039,53055,55009,20205,22069,22109,13155,2185,26011,19111,20141,26047,19071,23015,36099,21125,47121,29213,13269,51830,48415,8047,40087,54071,51139,40079,54089,37119,34013,29115,13209,41055,13133,46017,46095,48135,48293,53027,54003,72149,30067,48121,45021,37199,48387,48321,27149,13301,48197,17133,13165,21085,48363,13149,1079,72061,28093,20025,20081,22013,13295,19095,31019,40007,19023,30085,72017,53015,48297,29135,51193,37197,6047,40043,37023,37191,42123,5061,37059,37111,5099,8125,48421,48463,39011,22015,19063,20169,21153,48017,29027,56001,56029,42093,36081,12121,26031,26051,21173,45057,21123,19193,12123,17003,29099,29113,13051,12125,36037,19041,30025,46107,48109,23005,48013,20095,13241,54097,29215,5119,19047,16005,39055,72035,6107,72015,72125,36117,51163,38095,42045,36063,50003,12019,37183,39061,34003,32017,2180,30055,19019,17043,46047,27069,13219,48493,31059,12079,72031,18153,4012,13027,2016,2150,20185,13271,26115,18181,18113,21139,13201,47103,21211,31185,42001,45005,47037,49047,49049,18021,36047,29141,39075,19143,18079,16083,17165,26077,45061,56019,18027,26055,22003,46065,46069,45027,30095,47007,21219,47183,29077,42077,31159,36015,36121,6099,42095,1103,21027,28043,21213,50013,39029,51125,12097,5053,13175,36061,5007,72071,12083,51135,34041,36021,51690,40023,20041,48427,13103,40129,55103,35025,1075,72054,47117,51011,5087,56033,42041,42055,42079,26039,1113,39019,51065,17097,13195,5039,8057,8063,16073,55141,36013,13067,47091,39013,51195,29035,40013,31035,24017,19033,19073,21205,49055,29031,53071,29133,5025,48113,72079,18033,22073,22095,22091,29197,1059,21041,8019,48267,26097,48307,28141,48105,48217,8075,20055,20125,45039,31033,27091,47155,47139,48263,30099,31069,17117,39141,17195,48141,48301,40077,39167,29091,20047,21111,17107,55139,21075,20079,30021,54091,26111,28119,21093,17081,46057,55069,36033,51630,54081,35005,35049,6059,4023,37053,17101,18067,18125,21047,26045,19179,6025,26027,28157,2282,20179,28079,72025,72027,28025,28037,28099,46045,72119,1035,18029,18071,28081,22125,5035,12063,48125,51115,38075,48283,36067,19087,31083,30075,72075,55091,4001,29121,48279,20097,48015,29061,13253,26101,19119,48233,40139,40153,19003,6101,42105,48465,20077,19133,49023,40137,36017,17143,19091,31177,55049,27097,42003,29205,39097,20201,17019,16087,17045,8121,39065,26113,38093,29203,48423,40143,40091,48395,48171,26125,38033,56027,27117,51099,53025,27129,12001,31091,51147,49007,42017,46059,42081,16057,13237,51640,35037,48269,5073,48451,12049,39025,48501,41071,19115,20049,39121,39137,48425,42075,30035,32027,27087,34031,30047,48261,48033,29157,48411,40073,48051,36035,28133,27053,42027,48025,47077,19171,20175,19135,31147,17021,12089,12133,13007,13275,21005,21185,13057,38065,26133,47109,53001,29057,22101,50007,72045,15009,22057,19139,12113,18101,21203,21223,13055,45033,37103,29199,20131,20137,72007,72033,31065,13087,18177,21009,31093,38025,6005,47049,20031,26023,51031,39105,54067,40053,46115,50027,48455,35001,13205,15001,21147,21191,21215,30041,31175,48069,24043,21133,34033,51680,5125,54053,54021,28063,38079,30103,21049,72101,26005,47005,27015,47137,51109,18145,39049,49021,32009,26083,49039,20093,12009,18105,19117,21239,45053,48043,45065,45087,27103,55075,53011,55099,18103,20053,22123,12077,20083,20119,21149,28001,72083,28057,21073,23009,23013,13217,46049,26061,30061,47051,22029,22063,25009,46019,8035,45079,18095,40099,54009,54013,51021,30111,54043,6033,13131,8021,49037,18133,16047,47167,22121,29171,56039,55043,38059,37041,37021,6063,51730,50023,46093,18097,5017,13021,72059,72131,5115,51175,48183,36087,5089,51800,8041,29187,48475,8061,48487,41015,8119,29049,49051,16029,37157,5117,5011,48193,24011,27041,30043,51059,30023,47001,39077,13005,10001,39173,13157,20003,17095,30107,47015,23007,21165,46089,8051,26029,27151,39147,13267,48429,37117,30081,13317,53043,6081,39171,8009,16021,16007,39159,39035,48285,40105,13125,41059,46102,20117,22065,30105,13313,20203,46023,31027,53035,17111,30069,29033,53075,27147,31169,47033,19079,39165,13255,34019,29217,18121,19069,13035,8039,44001,48035,44005,39045,38069,17015,27125,41031,47021,46127,1051,13187,39083,19017,48175,37089,12061,48393,31049,36051,19141,48059,48379,20067,51105,35051,5043,31123,29015,5109,8077,29065,51185,42103,42115,48343,42125,50001,20103,26121,28049,48281,51107,29185,36025,30071,29129,53045,37127,51199,29159,30063,20019,48459,51047,40061,54069,54065,51165,18183,6093,46037,22071,1073,1127,29063,12039,13083,28033,51187,17047,47113,1111,37009,8033,39089,51683,5139,17071,1101,8005,21155,53057,28067,55021,37019,27029,51131,20163,18041,31079,31081,31115,30091,31063,72089,1007,28075,27011,27013,51091,51177,33017,13153,26041,5131,6087,13191,13207,29069,48483,13117,48409,28147,29137,26073,48341,45017,56035,21069,55019,45091,18001,22005,42119,51041,22001,42039,46123,19077,19183,46111,40051,54039,55109,42121,39153,13127,48479,37123,23003,28065,18175,48031,51025,47045,47053,51149,5075,38027,53053,16063,42071,55057,47151,46031,46053,37181,21033,45011,47039,18009,1055,16025,20155,47119,56015,55107,55133,21079,25021,18063,17077,45043,38041,49019,49045,51650,55011,51069,54041,27119,27127,47047,22089,5111,12045,47063,1021,48351,48219,13009,37175,37171,1031,39149,16027,30019,12073,40119,1039,18093,20069,21045,21169,21207,22011,23025,40025,21163,21179,21187,29155,31125,55078,48365,21011,48001,51033,19167,6021,29510,13111,46051,46091,53067,31107,35061,30079,19005,48061,48339,8071,48299,48319,37043,36071,36093,54059,20197,27055,21181,25023,36005,37055,39103,42005,34001,55071,55029,37047,39053,48441,51570,39031,31135,48205,8049,48249,19189,6079,1067,39175,48505,13177,21019,27019,31037,45025,47101,41067,51810,30057,51103,29013,33001,51159,2230,2105,53021,19093,20173,48453,12057,34021,31023,42129,12015,19029,39107,21115,44003,50025,50019,20085,22041,28155,25011,31031,30001,29143,5057,29029,51117,21233,40047,53059,26091,13123,27135,28089,48227,54099] + +var geom = new Uint8Array([123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,67,111,108,108,101,99,116,105,111,110,34,44,34,110,97,109,101,34,58,34,99,100,99,34,44,34,99,114,115,34,58,123,34,116,121,112,101,34,58,34,110,97,109,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,110,97,109,101,34,58,34,117,114,110,58,111,103,99,58,100,101,102,58,99,114,115,58,79,71,67,58,49,46,51,58,67,82,83,56,52,34,125,125,44,34,102,101,97,116,117,114,101,115,34,58,91,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,117,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,57,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,49,57,51,53,57,44,52,50,46,48,57,48,53,55,55,93,44,91,45,57,55,46,48,49,57,57,49,49,44,52,49,46,55,52,50,57,56,93,44,91,45,57,54,46,57,48,53,57,50,50,44,52,49,46,55,52,50,55,54,51,93,44,91,45,57,54,46,53,53,53,49,55,50,44,52,49,46,55,52,50,48,49,56,93,44,91,45,57,54,46,53,53,52,56,54,54,44,52,50,46,48,49,53,56,55,53,93,44,91,45,57,54,46,53,53,53,53,49,49,44,52,50,46,48,56,57,57,53,55,93,44,91,45,57,54,46,56,50,51,54,55,44,52,50,46,48,57,48,52,49,49,93,44,91,45,57,55,46,48,49,57,51,53,57,44,52,50,46,48,57,48,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,87,97,104,107,105,97,107,117,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,55,50,56,51,49,54,44,52,54,46,50,54,52,53,52,49,93,44,91,45,49,50,51,46,52,55,57,54,52,52,44,52,54,46,50,54,57,49,51,49,93,44,91,45,49,50,51,46,51,54,51,55,52,51,44,52,54,46,49,52,54,51,51,51,93,44,91,45,49,50,51,46,50,49,51,48,53,52,44,52,54,46,49,55,50,53,52,49,93,44,91,45,49,50,51,46,50,49,55,57,53,44,52,54,46,51,56,53,54,49,55,93,44,91,45,49,50,51,46,51,53,56,51,51,52,44,52,54,46,51,56,52,48,50,53,93,44,91,45,49,50,51,46,55,50,54,53,53,55,44,52,54,46,51,56,52,56,55,50,93,44,91,45,49,50,51,46,55,50,56,51,49,54,44,52,54,46,50,54,52,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,68,101,32,66,97,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,56,57,51,51,55,55,44,51,52,46,48,56,56,52,48,55,93,44,91,45,49,48,52,46,55,56,54,52,50,57,44,51,52,46,48,56,55,54,54,52,93,44,91,45,49,48,52,46,55,56,54,49,48,52,44,51,52,46,48,48,48,49,51,55,93,44,91,45,49,48,52,46,49,53,54,50,54,57,44,51,51,46,57,57,53,52,49,51,93,44,91,45,49,48,52,46,49,53,53,54,44,51,52,46,48,56,51,50,48,53,93,44,91,45,49,48,51,46,57,52,54,48,49,57,44,51,52,46,48,56,50,52,54,51,93,44,91,45,49,48,51,46,57,52,56,55,55,56,44,51,52,46,54,48,53,48,53,56,93,44,91,45,49,48,52,46,49,50,56,56,56,44,51,52,46,54,48,53,50,48,49,93,44,91,45,49,48,52,46,49,50,57,49,52,51,44,51,52,46,55,55,57,51,51,55,93,44,91,45,49,48,52,46,51,51,57,56,49,55,44,51,52,46,55,55,57,48,54,50,93,44,91,45,49,48,52,46,51,51,57,55,50,53,44,51,52,46,54,57,50,50,51,52,93,44,91,45,49,48,52,46,52,52,52,55,54,50,44,51,52,46,54,48,52,57,53,50,93,44,91,45,49,48,52,46,56,57,50,48,50,51,44,51,52,46,54,48,52,52,50,54,93,44,91,45,49,48,52,46,56,57,49,55,52,53,44,51,52,46,51,52,55,48,52,51,93,44,91,45,49,48,52,46,56,57,51,51,55,55,44,51,52,46,48,56,56,52,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,76,97,110,99,97,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,48,48,57,52,44,34,98,101,100,115,34,58,49,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,49,48,57,52,44,52,49,46,48,52,54,49,49,54,93,44,91,45,57,54,46,57,49,51,52,57,51,44,52,48,46,54,57,55,57,52,56,93,44,91,45,57,54,46,57,49,50,54,51,55,44,52,48,46,53,50,51,54,50,53,93,44,91,45,57,54,46,52,54,51,54,51,50,44,52,48,46,53,50,51,48,49,51,93,44,91,45,57,54,46,52,54,51,55,54,52,44,52,48,46,55,56,51,57,54,93,44,91,45,57,54,46,52,54,51,56,54,49,44,52,49,46,48,49,54,48,54,57,93,44,91,45,57,54,46,52,54,51,56,54,57,44,52,49,46,48,52,53,48,56,51,93,44,91,45,57,54,46,57,48,56,53,48,55,44,52,49,46,48,52,54,48,57,49,93,44,91,45,57,54,46,57,49,48,57,52,44,52,49,46,48,52,54,49,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,78,117,99,107,111,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,55,51,53,55,49,44,52,48,46,51,53,48,51,53,57,93,44,91,45,57,56,46,50,55,52,48,49,55,44,52,48,46,48,48,50,54,54,50,93,44,91,45,57,55,46,57,51,49,56,50,53,44,52,48,46,48,48,50,48,55,50,93,44,91,45,57,55,46,56,50,49,52,57,53,44,52,48,46,48,48,50,48,52,55,93,44,91,45,57,55,46,56,50,48,56,49,54,44,52,48,46,51,53,48,53,52,53,93,44,91,45,57,55,46,56,50,52,49,49,52,44,52,48,46,51,53,48,53,52,49,93,44,91,45,57,56,46,50,55,51,53,55,49,44,52,48,46,51,53,48,51,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,97,115,32,80,105,101,100,114,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,55,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,56,53,50,54,49,54,44,49,56,46,50,53,52,57,55,50,93,44,91,45,54,53,46,57,50,56,51,52,49,44,49,56,46,49,52,50,56,52,53,93,44,91,45,54,53,46,57,50,54,50,50,55,44,49,56,46,49,49,57,57,54,51,93,44,91,45,54,53,46,56,55,55,54,49,53,44,49,56,46,49,49,56,49,54,55,93,44,91,45,54,53,46,56,50,54,48,54,51,44,49,56,46,50,48,48,52,48,56,93,44,91,45,54,53,46,56,50,52,50,50,44,49,56,46,50,55,51,48,53,52,93,44,91,45,54,53,46,56,51,54,51,56,55,44,49,56,46,50,55,53,50,52,54,93,44,91,45,54,53,46,56,53,50,54,49,54,44,49,56,46,50,53,52,57,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,105,110,110,101,104,97,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,55,52,57,44,34,98,101,100,115,34,58,49,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,50,57,48,56,57,44,52,51,46,56,52,55,57,55,51,93,44,91,45,57,55,46,49,50,57,52,55,56,44,52,51,46,52,57,57,54,56,51,93,44,91,45,57,54,46,57,50,52,56,52,49,44,52,51,46,53,48,48,48,48,55,93,44,91,45,57,54,46,53,57,57,49,57,49,44,52,51,46,53,48,48,52,53,54,93,44,91,45,57,54,46,52,53,51,50,54,44,52,51,46,53,48,48,51,57,93,44,91,45,57,54,46,52,53,50,57,56,56,44,52,51,46,56,52,57,53,48,55,93,44,91,45,57,54,46,56,56,56,54,54,52,44,52,51,46,56,52,56,51,56,53,93,44,91,45,57,55,46,49,50,57,48,56,57,44,52,51,46,56,52,55,57,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,55,34,44,34,78,65,77,69,34,58,34,77,101,110,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,48,51,50,50,51,44,51,49,46,48,56,55,50,57,54,93,44,91,45,49,48,48,46,49,49,53,50,49,54,44,51,49,46,48,56,55,57,57,52,93,44,91,45,49,48,48,46,49,49,54,50,51,52,44,51,48,46,55,49,48,51,54,54,93,44,91,45,57,57,46,52,56,51,56,54,57,44,51,48,46,55,49,48,55,55,49,93,44,91,45,57,57,46,52,56,52,55,53,53,44,51,48,46,57,52,48,54,48,53,93,44,91,45,57,57,46,54,48,51,54,50,55,44,51,48,46,57,52,48,55,50,54,93,44,91,45,57,57,46,54,48,51,50,50,51,44,51,49,46,48,56,55,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,83,105,101,114,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,49,52,55,49,52,57,44,51,57,46,55,48,55,54,53,56,93,44,91,45,49,50,48,46,54,53,52,50,50,55,44,51,57,46,55,48,54,54,50,57,93,44,91,45,49,50,48,46,56,55,49,52,57,56,44,51,57,46,55,55,54,53,50,57,93,44,91,45,49,50,49,46,48,48,57,52,55,55,44,51,57,46,54,51,57,52,53,57,93,44,91,45,49,50,49,46,48,50,50,48,56,53,44,51,57,46,51,57,49,53,53,56,93,44,91,45,49,50,48,46,55,53,53,55,50,57,44,51,57,46,52,53,50,54,54,51,93,44,91,45,49,50,48,46,53,55,55,49,56,56,44,51,57,46,53,50,51,49,52,52,93,44,91,45,49,50,48,46,53,48,53,52,52,53,44,51,57,46,52,52,54,49,49,55,93,44,91,45,49,50,48,46,48,48,51,55,55,51,44,51,57,46,52,52,53,48,53,54,93,44,91,45,49,50,48,46,48,48,49,48,54,50,44,51,57,46,55,50,50,52,49,56,93,44,91,45,49,50,48,46,49,52,55,49,52,57,44,51,57,46,55,48,55,54,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,49,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,49,53,52,48,53,44,51,54,46,56,53,52,52,54,55,93,44,91,45,56,53,46,50,57,54,48,48,50,44,51,54,46,54,50,53,55,49,56,93,44,91,45,56,53,46,50,55,54,50,56,49,44,51,54,46,54,50,54,56,49,54,93,44,91,45,56,52,46,57,55,52,56,49,49,44,51,54,46,54,49,53,52,54,53,93,44,91,45,56,53,46,48,54,52,51,48,55,44,51,54,46,56,53,56,55,52,51,93,44,91,45,56,53,46,50,49,53,52,48,53,44,51,54,46,56,53,52,52,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,54,57,48,44,34,98,101,100,115,34,58,50,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,49,49,52,57,44,52,49,46,49,54,55,56,50,52,93,44,91,45,56,51,46,56,56,48,52,50,51,44,52,48,46,57,50,48,52,50,57,93,44,91,45,56,51,46,56,56,48,48,54,51,44,52,48,46,56,49,57,57,49,57,93,44,91,45,56,51,46,53,49,53,56,56,51,44,52,48,46,56,49,56,49,51,52,93,44,91,45,56,51,46,52,50,48,51,49,57,44,52,48,46,57,57,49,56,56,57,93,44,91,45,56,51,46,52,50,49,48,53,52,44,52,49,46,49,54,54,55,56,93,44,91,45,56,51,46,56,56,49,49,52,57,44,52,49,46,49,54,55,56,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,72,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,49,49,51,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,57,48,52,49,53,44,51,52,46,51,49,51,49,51,50,93,44,91,45,49,48,50,46,48,56,53,55,51,51,44,51,51,46,56,50,52,54,55,53,93,44,91,45,49,48,49,46,53,54,51,53,56,44,51,51,46,56,51,48,52,53,49,93,44,91,45,49,48,49,46,53,54,52,56,53,54,44,51,52,46,51,49,50,52,57,51,93,44,91,45,49,48,49,46,57,57,56,48,50,44,51,52,46,51,49,51,48,51,57,93,44,91,45,49,48,50,46,48,57,48,52,49,53,44,51,52,46,51,49,51,49,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,55,56,44,34,98,101,100,115,34,58,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,53,49,56,57,44,51,51,46,52,57,56,55,52,50,93,44,91,45,56,53,46,57,56,48,50,57,51,44,51,51,46,50,57,52,49,57,93,44,91,45,56,54,46,49,49,56,49,57,56,44,51,51,46,50,57,54,51,50,93,44,91,45,56,54,46,49,55,52,51,55,44,51,51,46,49,48,52,51,57,52,93,44,91,45,56,54,46,48,48,57,49,55,44,51,51,46,48,57,48,50,54,93,44,91,45,56,53,46,54,53,51,54,53,52,44,51,51,46,49,48,54,54,51,52,93,44,91,45,56,53,46,54,52,51,52,56,50,44,51,51,46,52,57,53,56,56,53,93,44,91,45,56,53,46,56,53,49,56,57,44,51,51,46,52,57,56,55,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,114,109,115,116,114,111,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,44,91,45,49,48,49,46,54,50,57,50,53,55,44,51,52,46,55,52,55,54,52,57,93,44,91,45,49,48,49,46,52,55,49,53,54,50,44,51,52,46,55,52,55,52,54,50,93,44,91,45,49,48,49,46,48,57,48,55,52,57,44,51,52,46,55,52,56,50,52,54,93,44,91,45,49,48,49,46,48,56,54,50,56,49,44,51,53,46,49,56,50,49,52,93,44,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,54,52,50,44,34,98,101,100,115,34,58,56,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,48,53,51,49,44,52,48,46,56,53,57,48,57,57,93,44,91,45,56,52,46,51,57,55,51,55,52,44,52,48,46,56,49,53,57,52,49,93,44,91,45,56,52,46,51,57,54,55,55,56,44,52,48,46,54,56,52,57,50,54,93,44,91,45,56,52,46,50,50,50,55,57,57,44,52,48,46,54,56,53,57,53,55,93,44,91,45,56,52,46,49,48,55,55,56,55,44,52,48,46,54,52,51,48,54,57,93,44,91,45,56,51,46,56,56,48,49,57,52,44,52,48,46,54,52,52,54,57,93,44,91,45,56,51,46,56,56,48,48,54,51,44,52,48,46,56,49,57,57,49,57,93,44,91,45,56,51,46,56,56,48,52,50,51,44,52,48,46,57,50,48,52,50,57,93,44,91,45,56,52,46,49,48,57,53,49,54,44,52,48,46,57,48,52,55,51,93,44,91,45,56,52,46,49,48,57,53,56,54,44,52,48,46,56,54,48,57,57,52,93,44,91,45,56,52,46,51,52,48,53,51,49,44,52,48,46,56,53,57,48,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,77,99,68,117,102,102,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,52,57,55,48,53,44,51,51,46,54,48,56,55,54,56,93,44,91,45,56,50,46,53,51,53,55,55,57,44,51,51,46,51,53,55,52,54,93,44,91,45,56,50,46,51,56,51,56,50,57,44,51,51,46,51,49,50,49,48,54,93,44,91,45,56,50,46,51,53,51,52,57,56,44,51,51,46,51,49,50,51,49,56,93,44,91,45,56,50,46,50,57,52,49,55,57,44,51,51,46,51,53,52,54,51,53,93,44,91,45,56,50,46,52,51,54,56,49,52,44,51,51,46,53,52,57,54,53,56,93,44,91,45,56,50,46,52,50,53,51,50,56,44,51,51,46,54,53,48,54,50,57,93,44,91,45,56,50,46,52,55,57,53,49,56,44,51,51,46,54,51,57,53,51,53,93,44,91,45,56,50,46,54,52,57,55,48,53,44,51,51,46,54,48,56,55,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,83,97,117,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,53,57,54,44,34,98,101,100,115,34,58,49,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,49,48,54,57,44,52,51,46,53,53,51,57,57,49,93,44,91,45,57,48,46,49,57,49,57,54,52,44,52,51,46,53,53,52,57,57,54,93,44,91,45,57,48,46,49,57,51,56,49,52,44,52,51,46,49,54,52,52,54,52,93,44,91,45,56,57,46,56,51,56,49,51,53,44,52,51,46,50,48,54,48,53,55,93,44,91,45,56,57,46,55,50,48,52,54,51,44,52,51,46,50,57,51,48,56,52,93,44,91,45,56,57,46,54,48,48,55,51,44,52,51,46,51,56,48,54,54,54,93,44,91,45,56,57,46,53,57,57,51,53,55,44,52,51,46,53,53,56,48,52,49,93,44,91,45,56,57,46,55,50,55,55,56,56,44,52,51,46,53,54,57,52,55,56,93,44,91,45,56,57,46,55,56,53,56,48,57,44,52,51,46,54,52,49,48,52,57,93,44,91,45,57,48,46,51,49,50,52,48,52,44,52,51,46,54,52,48,57,56,56,93,44,91,45,57,48,46,51,49,49,48,54,57,44,52,51,46,53,53,51,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,83,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,52,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,52,49,52,51,57,54,44,51,53,46,57,55,53,55,57,56,93,44,91,45,57,50,46,52,49,54,56,52,55,44,51,53,46,55,56,56,53,57,49,93,44,91,45,57,50,46,52,49,56,52,48,56,44,51,53,46,55,49,54,48,52,54,93,44,91,45,57,50,46,50,52,48,53,50,44,51,53,46,55,49,50,49,57,93,44,91,45,57,49,46,56,51,55,49,55,57,44,51,53,46,55,48,52,57,51,50,93,44,91,45,57,49,46,56,52,57,52,52,56,44,51,53,46,56,54,55,52,49,49,93,44,91,45,57,50,46,48,56,53,52,56,53,44,51,53,46,57,54,53,57,52,51,93,44,91,45,57,50,46,49,51,57,49,48,52,44,51,54,46,49,49,50,50,50,49,93,44,91,45,57,50,46,49,57,53,52,51,44,51,54,46,49,51,50,55,57,56,93,44,91,45,57,50,46,52,49,52,51,57,54,44,51,53,46,57,55,53,55,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,87,97,108,108,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,57,55,50,57,56,44,52,53,46,56,54,48,53,57,53,93,44,91,45,49,49,55,46,55,52,55,51,50,55,44,52,53,46,56,54,49,48,55,50,93,44,91,45,49,49,55,46,55,56,55,54,50,51,44,52,53,46,54,56,57,53,54,55,93,44,91,45,49,49,55,46,54,52,51,52,57,52,44,52,53,46,51,51,54,56,55,93,44,91,45,49,49,55,46,53,50,50,50,52,57,44,52,53,46,50,54,55,55,51,49,93,44,91,45,49,49,55,46,52,55,54,54,56,52,44,52,53,46,49,54,54,53,51,57,93,44,91,45,49,49,55,46,50,54,54,48,48,54,44,52,53,46,49,54,54,53,51,57,93,44,91,45,49,49,55,46,50,54,54,48,48,53,44,52,53,46,48,56,48,53,55,93,44,91,45,49,49,54,46,55,56,51,56,50,57,44,52,53,46,48,55,56,50,54,51,93,44,91,45,49,49,54,46,54,56,55,49,55,55,44,52,53,46,50,54,55,54,52,51,93,44,91,45,49,49,54,46,53,53,55,54,50,49,44,52,53,46,53,48,51,52,57,53,93,44,91,45,49,49,54,46,52,54,51,54,51,53,44,52,53,46,54,48,50,55,56,53,93,44,91,45,49,49,54,46,53,57,52,50,49,44,52,53,46,55,55,57,48,56,93,44,91,45,49,49,54,46,55,57,52,53,54,50,44,52,53,46,56,53,54,48,52,57,93,44,91,45,49,49,54,46,57,49,54,48,55,49,44,52,53,46,57,57,53,51,53,55,93,44,91,45,49,49,55,46,52,55,57,57,51,53,44,52,53,46,57,57,55,56,48,49,93,44,91,45,49,49,55,46,54,48,51,52,50,52,44,52,53,46,57,57,56,57,53,93,44,91,45,49,49,55,46,57,55,55,54,54,52,44,52,54,46,48,48,48,53,50,50,93,44,91,45,49,49,55,46,57,55,50,57,56,44,52,53,46,56,54,48,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,97,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,56,57,54,44,34,98,101,100,115,34,58,51,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,48,52,52,44,52,48,46,56,53,49,51,51,57,93,44,91,45,56,48,46,53,49,56,57,57,49,44,52,48,46,54,51,56,56,48,49,93,44,91,45,56,48,46,53,49,57,48,51,56,44,52,48,46,52,55,55,51,54,51,93,44,91,45,56,48,46,51,54,48,56,55,51,44,52,48,46,52,55,55,53,51,57,93,44,91,45,56,48,46,49,56,48,52,50,52,44,52,48,46,54,48,55,55,54,57,93,44,91,45,56,48,46,49,52,56,54,56,50,44,52,48,46,54,55,52,50,56,49,93,44,91,45,56,48,46,49,53,56,53,51,44,52,48,46,56,53,53,48,57,54,93,44,91,45,56,48,46,53,49,57,48,52,52,44,52,48,46,56,53,49,51,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,53,50,57,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,44,91,45,56,57,46,51,49,54,53,54,44,51,49,46,56,48,50,48,57,93,44,91,45,56,56,46,57,52,51,51,53,53,44,51,49,46,56,50,52,53,54,53,93,44,91,45,56,56,46,57,49,48,52,53,57,44,51,49,46,56,50,54,54,52,57,93,44,91,45,56,56,46,57,49,51,56,52,55,44,51,50,46,50,50,52,49,56,54,93,44,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,54,53,44,34,98,101,100,115,34,58,49,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,54,52,51,49,55,44,51,56,46,53,54,55,51,56,93,44,91,45,57,52,46,48,54,53,55,49,51,44,51,56,46,52,52,55,48,56,55,93,44,91,45,57,52,46,48,52,57,56,57,53,44,51,56,46,50,49,51,57,56,53,93,44,91,45,57,51,46,53,50,51,52,56,52,44,51,56,46,50,48,55,50,49,54,93,44,91,45,57,51,46,53,49,50,55,52,51,44,51,56,46,53,49,50,52,55,54,93,44,91,45,57,51,46,53,49,49,48,51,44,51,56,46,53,53,54,50,49,93,44,91,45,57,52,46,48,54,52,51,49,55,44,51,56,46,53,54,55,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,83,97,103,117,97,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,48,48,48,54,48,50,44,51,55,46,57,53,54,48,52,49,93,44,91,45,49,48,54,46,56,57,55,56,51,52,44,51,55,46,57,54,55,56,57,49,93,44,91,45,49,48,54,46,54,57,51,56,52,53,44,51,55,46,56,51,53,50,52,52,93,44,91,45,49,48,54,46,53,56,54,51,55,52,44,51,55,46,55,52,55,56,48,57,93,44,91,45,49,48,54,46,48,51,56,52,49,51,44,51,55,46,55,52,56,51,53,51,93,44,91,45,49,48,53,46,52,53,55,50,53,53,44,51,55,46,55,53,49,52,54,52,93,44,91,45,49,48,53,46,52,55,51,50,48,52,44,51,55,46,56,57,53,57,55,93,44,91,45,49,48,53,46,53,54,48,51,49,49,44,51,55,46,57,53,49,56,56,54,93,44,91,45,49,48,53,46,54,56,54,56,51,56,44,51,56,46,49,54,54,56,52,53,93,44,91,45,49,48,53,46,55,57,54,56,57,55,44,51,56,46,50,54,53,48,52,55,93,44,91,45,49,48,54,46,48,49,48,55,53,49,44,51,56,46,52,52,54,53,54,54,93,44,91,45,49,48,54,46,50,52,54,57,52,44,51,56,46,52,50,50,55,54,56,93,44,91,45,49,48,55,46,48,48,48,54,48,49,44,51,56,46,52,50,53,54,49,57,93,44,91,45,49,48,55,46,48,48,49,49,49,57,44,51,56,46,49,52,55,48,55,50,93,44,91,45,49,48,55,46,48,48,48,54,48,50,44,51,55,46,57,53,54,48,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,104,97,116,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,55,57,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,53,52,50,52,50,56,44,51,53,46,56,52,51,51,48,51,93,44,91,45,55,57,46,53,53,53,56,48,52,44,51,53,46,53,49,53,48,51,57,93,44,91,45,55,57,46,51,53,48,48,55,51,44,51,53,46,53,49,56,48,48,50,93,44,91,45,55,57,46,49,57,57,49,51,54,44,51,53,46,53,53,57,56,52,52,93,44,91,45,55,57,46,49,49,55,48,57,54,44,51,53,46,54,50,56,49,54,52,93,44,91,45,55,56,46,57,54,57,54,52,44,51,53,46,53,50,49,54,54,57,93,44,91,45,55,56,46,57,49,52,55,51,52,44,51,53,46,53,56,51,54,55,50,93,44,91,45,55,56,46,57,57,53,48,53,57,44,51,53,46,54,49,48,49,51,53,93,44,91,45,55,56,46,57,48,54,48,55,49,44,51,53,46,56,54,56,48,57,54,93,44,91,45,55,57,46,48,49,54,51,48,53,44,51,53,46,56,54,51,50,49,93,44,91,45,55,57,46,50,52,57,53,51,56,44,51,53,46,56,55,54,56,49,93,44,91,45,55,57,46,53,52,50,52,50,56,44,51,53,46,56,52,51,51,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,82,105,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,53,48,55,56,48,54,44,52,49,46,57,57,57,53,53,50,93,44,91,45,49,49,49,46,52,50,54,56,53,53,44,52,49,46,54,55,55,56,54,52,93,44,91,45,49,49,49,46,52,52,50,57,52,57,44,52,49,46,53,51,49,51,54,53,93,44,91,45,49,49,49,46,53,49,48,56,51,57,44,52,49,46,52,50,51,49,93,44,91,45,49,49,49,46,52,50,48,55,50,56,44,52,49,46,51,54,49,51,48,56,93,44,91,45,49,49,49,46,50,57,52,56,56,54,44,52,49,46,51,50,57,57,54,57,93,44,91,45,49,49,49,46,50,50,53,56,50,51,44,52,49,46,49,57,49,48,49,55,93,44,91,45,49,49,49,46,50,54,52,57,55,52,44,52,49,46,49,52,52,48,52,52,93,44,91,45,49,49,49,46,48,52,54,55,54,54,44,52,49,46,50,53,49,54,50,55,93,44,91,45,49,49,49,46,48,52,53,56,51,55,44,52,49,46,53,55,57,56,52,53,93,44,91,45,49,49,49,46,48,52,54,55,49,52,44,52,50,46,48,48,49,55,48,50,93,44,91,45,49,49,49,46,53,48,55,56,48,54,44,52,49,46,57,57,57,53,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,49,51,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,57,55,52,48,57,44,51,54,46,49,54,49,54,53,50,93,44,91,45,57,52,46,56,48,55,55,53,55,44,51,53,46,54,51,56,53,52,54,93,44,91,45,57,52,46,52,55,50,54,52,55,44,51,53,46,54,51,56,53,53,54,93,44,91,45,57,52,46,52,57,51,49,51,44,51,53,46,55,53,57,49,54,55,93,44,91,45,57,52,46,53,53,50,49,55,50,44,51,54,46,49,48,50,49,50,56,93,44,91,45,57,52,46,53,54,50,55,50,55,44,51,54,46,49,54,49,56,57,51,93,44,91,45,57,52,46,55,57,55,52,48,57,44,51,54,46,49,54,49,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,48,53,50,44,34,98,101,100,115,34,58,52,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,57,53,49,56,49,44,52,50,46,48,57,54,52,48,50,93,44,91,45,56,49,46,52,56,55,56,52,50,44,52,49,46,53,55,48,48,53,49,93,44,91,45,56,49,46,51,57,49,48,48,53,44,52,49,46,53,54,57,55,49,54,93,44,91,45,56,49,46,50,57,52,54,54,57,44,52,49,46,54,52,48,56,56,57,93,44,91,45,56,49,46,49,48,49,52,50,50,44,52,49,46,54,52,49,52,53,55,93,44,91,45,56,49,46,48,48,51,54,51,49,44,52,49,46,55,49,53,49,51,55,93,44,91,45,56,49,46,48,48,57,56,50,55,44,52,50,46,50,53,49,54,48,50,93,44,91,45,56,49,46,50,52,57,56,51,51,44,52,50,46,50,49,54,52,49,53,93,44,91,45,56,49,46,52,57,53,49,56,49,44,52,50,46,48,57,54,52,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,55,53,34,44,34,78,65,77,69,34,58,34,83,97,108,101,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,49,57,44,34,98,101,100,115,34,58,51,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,50,50,50,50,54,44,51,55,46,51,48,56,51,51,56,93,44,91,45,56,48,46,48,57,51,54,55,53,44,51,55,46,50,56,50,53,48,50,93,44,91,45,56,48,46,48,51,51,52,54,52,44,51,55,46,50,54,50,56,57,93,44,91,45,56,48,46,48,50,50,50,50,54,44,51,55,46,51,48,56,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,57,57,55,44,34,98,101,100,115,34,58,49,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,48,54,57,54,50,44,51,55,46,50,52,52,56,55,49,93,44,91,45,56,48,46,53,50,57,55,54,50,44,51,55,46,49,51,51,56,52,50,93,44,91,45,56,48,46,53,56,48,52,54,57,44,51,55,46,48,56,57,54,54,50,93,44,91,45,56,48,46,53,52,51,57,51,51,44,51,54,46,57,56,52,54,51,57,93,44,91,45,56,48,46,51,52,53,51,54,50,44,51,55,46,48,50,54,56,49,56,93,44,91,45,56,48,46,49,55,56,49,50,53,44,51,55,46,49,49,51,52,93,44,91,45,56,48,46,49,57,48,55,51,56,44,51,55,46,50,50,55,55,56,51,93,44,91,45,56,48,46,50,54,50,49,56,52,44,51,55,46,51,52,49,53,50,54,93,44,91,45,56,48,46,52,51,48,57,52,51,44,51,55,46,51,49,54,51,55,56,93,44,91,45,56,48,46,54,48,54,57,54,50,44,51,55,46,50,52,52,56,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,53,52,54,44,34,98,101,100,115,34,58,49,55,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,50,53,56,55,55,44,51,53,46,51,53,52,50,55,54,93,44,91,45,56,53,46,51,56,55,48,56,57,44,51,53,46,49,52,55,49,54,57,93,44,91,45,56,53,46,51,56,50,50,53,53,44,51,53,46,48,52,52,55,51,93,44,91,45,56,53,46,52,55,52,48,55,51,44,51,52,46,57,56,51,48,50,93,44,91,45,56,53,46,51,54,51,57,49,57,44,51,52,46,57,56,51,51,55,53,93,44,91,45,56,53,46,50,54,53,48,53,53,44,51,52,46,57,56,53,48,55,53,93,44,91,45,56,52,46,57,55,57,56,54,44,51,52,46,57,56,55,54,52,55,93,44,91,45,56,52,46,57,55,54,57,55,54,44,51,52,46,57,56,55,54,54,52,93,44,91,45,56,53,46,48,50,51,54,44,51,53,46,49,50,53,48,55,51,93,44,91,45,56,52,46,57,52,54,51,51,57,44,51,53,46,50,56,55,55,49,55,93,44,91,45,56,53,46,48,49,54,51,52,51,44,51,53,46,52,48,57,50,56,56,93,44,91,45,56,53,46,49,51,53,49,57,49,44,51,53,46,52,53,56,54,52,57,93,44,91,45,56,53,46,50,50,53,56,55,55,44,51,53,46,51,53,52,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,79,116,101,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,55,52,53,44,34,98,101,100,115,34,58,49,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,51,52,48,53,49,53,44,51,51,46,48,53,50,55,55,55,93,44,91,45,49,48,54,46,51,55,54,53,56,53,44,51,50,46,57,53,56,48,53,93,44,91,45,49,48,54,46,51,55,55,49,55,52,44,51,50,46,48,48,49,53,48,51,93,44,91,45,49,48,53,46,57,57,56,48,49,50,44,51,50,46,48,48,50,51,55,55,93,44,91,45,49,48,52,46,57,49,56,51,53,55,44,51,50,46,48,48,48,52,49,56,93,44,91,45,49,48,52,46,56,52,55,55,52,44,51,50,46,48,48,48,52,49,53,93,44,91,45,49,48,52,46,56,53,49,53,50,52,44,51,50,46,53,50,48,53,52,49,93,44,91,45,49,48,53,46,51,53,52,48,49,44,51,50,46,53,49,56,55,55,54,93,44,91,45,49,48,53,46,51,53,50,53,49,51,44,51,50,46,57,54,50,48,48,55,93,44,91,45,49,48,53,46,51,49,54,57,54,56,44,51,51,46,49,51,50,51,48,51,93,44,91,45,49,48,53,46,51,49,55,51,55,54,44,51,51,46,51,48,53,57,55,55,93,44,91,45,49,48,53,46,55,50,53,57,53,55,44,51,51,46,51,48,52,56,51,52,93,44,91,45,49,48,53,46,55,50,55,49,55,49,44,51,51,46,51,57,48,54,51,51,93,44,91,45,49,48,54,46,51,52,53,55,49,44,51,51,46,51,57,48,53,57,53,93,44,91,45,49,48,54,46,51,52,48,53,49,53,44,51,51,46,48,53,50,55,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,67,97,116,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,54,49,50,50,44,51,52,46,53,55,57,50,57,49,93,44,91,45,49,48,57,46,48,52,54,55,49,55,44,51,51,46,55,55,55,52,48,55,93,44,91,45,49,48,57,46,48,52,55,53,55,56,44,51,51,46,50,48,56,56,57,56,93,44,91,45,49,48,56,46,48,48,48,53,57,56,44,51,51,46,50,48,49,50,53,51,93,44,91,45,49,48,56,46,48,48,48,54,48,50,44,51,51,46,52,55,56,48,49,52,93,44,91,45,49,48,55,46,55,49,50,55,53,52,44,51,51,46,52,55,54,56,51,50,93,44,91,45,49,48,55,46,55,49,54,51,48,49,44,51,52,46,50,53,57,56,53,54,93,44,91,45,49,48,55,46,55,50,52,55,57,52,44,51,52,46,53,55,56,49,51,50,93,44,91,45,49,48,57,46,48,52,54,49,50,50,44,51,52,46,53,55,57,50,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,97,114,101,110,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,51,56,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,51,48,54,54,49,44,51,50,46,51,49,48,53,55,52,93,44,91,45,56,56,46,48,49,57,49,52,53,44,51,50,46,50,56,53,50,52,93,44,91,45,56,56,46,48,48,55,48,55,55,44,51,50,46,49,56,53,51,49,51,93,44,91,45,56,56,46,48,55,51,52,57,44,51,49,46,57,57,48,49,56,50,93,44,91,45,56,55,46,54,54,55,55,54,57,44,51,49,46,57,57,49,51,53,53,93,44,91,45,56,55,46,54,50,52,48,48,53,44,51,50,46,49,51,50,51,52,53,93,44,91,45,56,55,46,53,50,49,57,52,54,44,51,50,46,49,51,50,56,49,54,93,44,91,45,56,55,46,52,55,50,50,48,54,44,51,50,46,50,54,52,57,49,57,93,44,91,45,56,55,46,52,55,51,48,56,44,51,50,46,51,48,55,54,49,52,93,44,91,45,56,55,46,53,50,52,52,56,53,44,51,50,46,52,56,50,48,50,56,93,44,91,45,56,55,46,55,50,56,55,52,52,44,51,50,46,52,56,48,57,49,56,93,44,91,45,56,55,46,56,49,50,53,53,57,44,51,50,46,53,50,52,53,54,93,44,91,45,56,55,46,56,53,51,52,50,44,51,50,46,53,51,50,48,56,54,93,44,91,45,56,56,46,48,51,49,54,50,51,44,51,50,46,52,51,51,54,49,93,44,91,45,56,56,46,48,52,54,51,51,53,44,51,50,46,51,55,55,48,56,55,93,44,91,45,56,55,46,57,51,48,54,54,49,44,51,50,46,51,49,48,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,49,49,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,48,52,54,56,49,55,44,52,50,46,53,49,51,57,50,53,93,44,91,45,49,49,49,46,48,52,54,55,49,52,44,52,50,46,48,48,49,55,48,50,93,44,91,45,49,49,49,46,48,52,53,56,51,55,44,52,49,46,53,55,57,56,52,53,93,44,91,45,49,49,48,46,48,52,56,44,52,49,46,53,55,56,48,49,53,93,44,91,45,49,49,48,46,48,53,51,55,48,56,44,52,50,46,50,55,48,55,52,52,93,44,91,45,49,49,48,46,53,52,49,54,51,52,44,52,50,46,50,55,55,52,57,49,93,44,91,45,49,49,48,46,53,57,48,49,51,49,44,52,50,46,52,52,56,52,51,53,93,44,91,45,49,49,48,46,53,55,56,54,53,54,44,52,51,46,50,51,53,50,50,52,93,44,91,45,49,49,48,46,56,49,51,57,57,51,44,52,51,46,50,51,53,49,55,56,93,44,91,45,49,49,48,46,56,49,51,57,57,54,44,52,51,46,51,49,51,57,52,93,44,91,45,49,49,49,46,48,52,52,56,57,51,44,52,51,46,51,49,53,55,49,57,93,44,91,45,49,49,49,46,48,52,52,48,55,50,44,52,51,46,48,49,57,52,48,55,93,44,91,45,49,49,49,46,48,52,54,56,49,55,44,52,50,46,53,49,51,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,97,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,53,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,55,54,57,56,44,51,55,46,54,53,51,53,55,56,93,44,91,45,57,52,46,54,49,55,53,55,44,51,55,46,51,54,52,49,55,93,44,91,45,57,52,46,48,56,50,48,56,51,44,51,55,46,51,52,57,50,57,49,93,44,91,45,57,52,46,48,55,53,51,56,53,44,51,55,46,53,56,49,53,55,93,44,91,45,57,52,46,48,55,51,53,50,52,44,51,55,46,54,51,57,55,50,50,93,44,91,45,57,52,46,54,49,55,54,57,56,44,51,55,46,54,53,51,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,52,51,52,52,50,44,50,56,46,55,49,50,49,48,53,93,44,91,45,57,54,46,56,53,51,55,53,55,44,50,56,46,54,51,53,49,57,57,93,44,91,45,57,54,46,56,57,48,57,53,49,44,50,56,46,53,48,55,49,55,56,93,44,91,45,57,54,46,55,55,56,54,51,52,44,50,56,46,52,48,52,50,53,57,93,44,91,45,57,54,46,55,57,48,53,49,50,44,50,56,46,51,49,57,50,51,56,93,44,91,45,57,54,46,56,51,48,56,54,49,44,50,56,46,49,48,56,93,44,91,45,57,54,46,56,49,53,57,48,53,44,50,56,46,48,50,50,56,51,53,93,44,91,45,57,54,46,54,49,56,55,56,53,44,50,56,46,49,54,57,53,50,50,93,44,91,45,57,54,46,51,57,53,49,57,56,44,50,56,46,50,55,57,55,51,54,93,44,91,45,57,54,46,51,50,51,53,50,50,44,50,56,46,54,55,53,53,57,55,93,44,91,45,57,54,46,54,52,51,52,52,50,44,50,56,46,55,49,50,49,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,51,53,34,44,34,78,65,77,69,34,58,34,80,111,113,117,111,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,49,51,53,53,50,44,51,55,46,49,57,49,57,55,93,44,91,45,55,54,46,51,51,48,52,51,53,44,51,55,46,49,57,48,57,56,52,93,44,91,45,55,54,46,51,57,53,55,57,53,44,51,55,46,49,48,55,49,55,52,93,44,91,45,55,54,46,49,51,52,57,52,49,44,51,55,46,49,49,55,54,48,51,93,44,91,45,55,54,46,49,51,53,53,50,44,51,55,46,49,57,49,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,80,111,99,97,104,111,110,116,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,50,52,53,53,49,56,44,51,56,46,51,56,56,52,53,55,93,44,91,45,56,48,46,51,51,48,50,54,55,44,51,56,46,51,51,53,55,53,56,93,44,91,45,56,48,46,51,54,48,48,52,56,44,51,56,46,50,50,53,56,52,53,93,44,91,45,56,48,46,51,54,51,50,57,53,44,51,56,46,49,49,52,51,51,49,93,44,91,45,56,48,46,50,54,52,54,53,51,44,51,56,46,48,52,54,54,49,54,93,44,91,45,55,57,46,57,53,57,56,52,52,44,51,56,46,48,54,51,54,57,55,93,44,91,45,55,57,46,56,57,55,51,51,53,44,51,56,46,49,57,51,51,56,49,93,44,91,45,55,57,46,55,57,53,57,50,49,44,51,56,46,50,54,53,53,53,50,93,44,91,45,55,57,46,54,56,57,54,54,55,44,51,56,46,52,51,49,52,54,50,93,44,91,45,55,57,46,54,52,57,48,55,53,44,51,56,46,53,57,49,53,49,53,93,44,91,45,55,57,46,54,50,54,55,55,52,44,51,56,46,54,54,52,50,49,52,93,44,91,45,55,57,46,55,57,56,50,56,51,44,51,56,46,55,48,51,50,49,49,93,44,91,45,55,57,46,56,54,51,50,53,44,51,56,46,53,53,48,56,50,93,44,91,45,56,48,46,48,50,57,50,48,56,44,51,56,46,52,53,57,49,56,52,93,44,91,45,56,48,46,49,49,54,57,50,44,51,56,46,52,55,51,57,53,51,93,44,91,45,56,48,46,50,52,53,53,49,56,44,51,56,46,51,56,56,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,56,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,50,51,53,51,51,44,51,52,46,48,56,50,56,52,51,93,44,91,45,57,56,46,52,50,51,53,55,55,44,51,51,46,56,51,54,48,52,55,93,44,91,45,57,56,46,52,50,49,52,49,57,44,51,51,46,52,54,54,55,57,55,93,44,91,45,57,55,46,57,55,56,57,49,57,44,51,51,46,52,54,55,49,50,57,93,44,91,45,57,55,46,57,55,55,56,54,44,51,51,46,56,56,57,56,50,53,93,44,91,45,57,55,46,57,52,54,56,48,50,44,51,51,46,57,57,48,56,57,51,93,44,91,45,57,56,46,48,56,52,52,51,53,44,51,52,46,48,48,50,56,57,51,93,44,91,45,57,56,46,49,51,57,48,55,50,44,51,52,46,49,52,49,56,55,93,44,91,45,57,56,46,51,54,52,48,50,51,44,51,52,46,49,53,55,49,48,57,93,44,91,45,57,56,46,52,50,51,53,51,51,44,51,52,46,48,56,50,56,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,74,97,109,101,115,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,49,53,51,44,34,98,101,100,115,34,58,50,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,52,49,57,56,52,44,51,55,46,52,54,55,48,55,54,93,44,91,45,55,54,46,57,48,52,52,55,49,44,51,55,46,51,55,55,54,54,53,93,44,91,45,55,54,46,56,56,51,49,53,54,44,51,55,46,50,50,51,48,53,55,93,44,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,44,91,45,55,54,46,53,57,49,51,48,50,44,51,55,46,50,49,51,50,48,53,93,44,91,45,55,54,46,54,56,48,49,53,49,44,51,55,46,50,54,53,57,57,55,93,44,91,45,55,54,46,55,52,49,48,49,55,44,51,55,46,50,54,53,57,56,52,93,44,91,45,55,54,46,55,50,55,56,53,57,44,51,55,46,51,48,53,57,50,55,93,44,91,45,55,54,46,54,53,56,54,53,49,44,51,55,46,51,56,48,49,51,57,93,44,91,45,55,54,46,55,49,50,51,48,53,44,51,55,46,52,51,49,51,48,57,93,44,91,45,55,54,46,55,52,49,57,56,52,44,51,55,46,52,54,55,48,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,75,101,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,57,57,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,53,49,55,54,49,44,52,49,46,48,48,51,56,57,93,44,91,45,49,48,49,46,50,52,57,57,55,53,44,52,49,46,48,48,51,57,53,93,44,91,45,49,48,49,46,50,55,48,51,56,49,44,52,49,46,48,52,55,51,57,50,93,44,91,45,49,48,49,46,50,54,57,54,57,53,44,52,49,46,51,57,52,57,51,52,93,44,91,45,49,48,49,46,52,48,55,50,54,44,52,49,46,51,57,53,52,49,54,93,44,91,45,49,48,49,46,57,56,52,54,51,44,52,49,46,51,57,52,55,49,50,93,44,91,45,49,48,50,46,48,53,53,50,53,54,44,52,49,46,51,57,53,49,54,50,93,44,91,45,49,48,50,46,48,53,53,53,51,53,44,52,49,46,50,50,49,53,52,55,93,44,91,45,49,48,50,46,48,53,49,55,54,49,44,52,49,46,48,48,51,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,80,104,101,108,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,50,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,52,51,52,54,50,44,52,48,46,54,56,52,57,49,49,93,44,91,45,57,57,46,54,52,50,50,48,57,44,52,48,46,51,53,49,50,93,44,91,45,57,57,46,54,51,48,52,53,57,44,52,48,46,51,53,49,49,50,93,44,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,44,91,45,57,57,46,49,55,57,50,52,56,44,52,48,46,54,54,48,53,52,49,93,44,91,45,57,57,46,52,49,55,51,49,54,44,52,48,46,54,55,48,56,50,53,93,44,91,45,57,57,46,54,52,51,52,54,50,44,52,48,46,54,56,52,57,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,108,99,97,115,105,101,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,49,56,50,44,34,98,101,100,115,34,58,57,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,50,50,53,49,55,44,51,48,46,48,53,48,56,55,50,93,44,91,45,57,51,46,49,50,56,52,55,53,44,51,48,46,48,53,50,53,56,55,93,44,91,45,57,50,46,57,57,54,51,55,49,44,51,48,46,48,51,56,52,55,57,93,44,91,45,57,51,46,48,51,48,57,53,53,44,51,48,46,51,55,57,51,57,93,44,91,45,57,51,46,49,51,49,49,48,57,44,51,48,46,52,48,51,48,53,55,93,44,91,45,57,51,46,55,52,49,54,55,57,44,51,48,46,52,48,50,57,55,53,93,44,91,45,57,51,46,55,54,52,50,53,50,44,51,48,46,51,51,48,50,50,57,93,44,91,45,57,51,46,55,48,54,57,57,51,44,51,48,46,50,52,51,55,51,54,93,44,91,45,57,51,46,55,50,50,53,49,55,44,51,48,46,48,53,48,56,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,55,53,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,50,52,55,52,44,51,51,46,48,49,52,51,57,93,44,91,45,57,50,46,55,50,53,52,51,57,44,51,50,46,55,53,57,53,52,93,44,91,45,57,50,46,54,50,56,50,56,56,44,51,50,46,55,53,57,54,54,57,93,44,91,45,57,50,46,52,49,53,48,53,44,51,50,46,54,55,48,48,53,54,93,44,91,45,57,50,46,52,49,53,48,55,49,44,51,50,46,53,56,50,56,52,53,93,44,91,45,57,50,46,50,55,50,51,49,51,44,51,50,46,53,56,48,57,55,53,93,44,91,45,57,50,46,48,54,53,49,55,57,44,51,50,46,55,50,51,48,48,51,93,44,91,45,57,50,46,48,54,57,49,48,53,44,51,51,46,48,48,56,49,54,51,93,44,91,45,57,50,46,55,50,52,55,52,44,51,51,46,48,49,52,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,83,101,113,117,111,121,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,51,53,57,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,48,55,55,53,55,44,51,53,46,54,51,56,53,52,54,93,44,91,45,57,53,46,49,50,55,50,49,51,44,51,53,46,54,51,56,56,56,56,93,44,91,45,57,53,46,49,51,50,50,55,49,44,51,53,46,53,50,54,48,53,53,93,44,91,45,57,53,46,48,52,57,57,51,51,44,51,53,46,52,53,56,56,57,52,93,44,91,45,57,52,46,56,49,51,54,50,57,44,51,53,46,51,50,51,51,52,52,93,44,91,45,57,52,46,54,54,56,55,57,54,44,51,53,46,50,57,53,48,50,57,93,44,91,45,57,52,46,52,57,53,50,53,49,44,51,53,46,51,48,49,50,93,44,91,45,57,52,46,52,51,53,53,57,44,51,53,46,51,56,54,49,50,50,93,44,91,45,57,52,46,52,51,49,48,52,53,44,51,53,46,51,57,51,55,51,53,93,44,91,45,57,52,46,52,55,50,54,52,55,44,51,53,46,54,51,56,53,53,54,93,44,91,45,57,52,46,56,48,55,55,53,55,44,51,53,46,54,51,56,53,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,50,48,48,44,34,98,101,100,115,34,58,49,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,56,51,49,52,53,44,51,52,46,56,54,48,51,55,49,93,44,91,45,56,53,46,55,56,53,52,55,49,44,51,52,46,54,50,52,53,56,52,93,44,91,45,56,54,46,48,48,51,56,52,44,51,52,46,52,56,48,48,51,49,93,44,91,45,56,54,46,48,53,55,55,49,50,44,51,52,46,52,55,53,57,57,52,93,44,91,45,56,54,46,49,49,48,51,54,50,44,51,52,46,52,50,55,55,57,55,93,44,91,45,56,54,46,49,48,54,48,56,54,44,51,52,46,50,48,48,55,53,54,93,44,91,45,56,53,46,56,52,51,54,49,55,44,51,52,46,50,48,48,48,48,54,93,44,91,45,56,53,46,54,51,54,54,52,53,44,51,52,46,51,54,54,54,50,50,93,44,91,45,56,53,46,53,49,51,54,49,50,44,51,52,46,53,50,51,56,50,53,93,44,91,45,56,53,46,53,50,55,50,54,49,44,51,52,46,53,56,56,54,56,51,93,44,91,45,56,53,46,53,51,52,48,56,57,44,51,52,46,54,50,51,56,53,56,93,44,91,45,56,53,46,53,56,51,49,52,53,44,51,52,46,56,54,48,51,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,83,116,101,117,98,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,57,50,55,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,54,54,53,48,53,44,52,50,46,53,55,54,51,54,56,93,44,91,45,55,55,46,52,57,48,56,56,57,44,52,50,46,53,55,55,50,56,56,93,44,91,45,55,55,46,54,53,57,57,49,55,44,52,50,46,53,56,48,52,48,57,93,44,91,45,55,55,46,55,50,50,57,54,52,44,52,50,46,52,55,49,50,49,54,93,44,91,45,55,55,46,55,52,57,57,51,49,44,52,49,46,57,57,56,55,56,50,93,44,91,45,55,55,46,54,49,48,48,50,55,44,52,49,46,57,57,57,51,54,56,93,44,91,45,55,54,46,57,54,53,55,50,56,44,52,50,46,48,48,49,50,55,54,93,44,91,45,55,54,46,57,54,53,48,50,56,44,52,50,46,50,55,56,52,57,53,93,44,91,45,55,55,46,48,57,57,54,53,55,44,52,50,46,50,55,50,51,53,54,93,44,91,45,55,55,46,49,48,55,50,48,51,44,52,50,46,52,56,51,55,55,49,93,44,91,45,55,55,46,49,52,51,55,57,53,44,52,50,46,53,55,54,56,54,57,93,44,91,45,55,55,46,51,54,54,53,48,53,44,52,50,46,53,55,54,51,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,70,111,114,101,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,53,54,48,52,50,44,52,49,46,54,50,51,52,48,50,93,44,91,45,55,57,46,53,49,50,48,55,44,52,49,46,54,50,52,53,53,57,93,44,91,45,55,57,46,52,55,55,56,50,50,44,52,49,46,51,56,54,52,55,57,93,44,91,45,55,57,46,52,48,48,50,54,57,44,52,49,46,52,51,54,49,52,53,93,44,91,45,55,57,46,50,48,55,49,57,54,44,52,49,46,52,51,48,57,50,50,93,44,91,45,55,57,46,50,48,56,56,55,56,44,52,49,46,51,51,49,56,54,49,93,44,91,45,55,57,46,48,57,53,48,57,54,44,52,49,46,51,52,48,54,53,56,93,44,91,45,55,57,46,48,57,51,53,56,56,44,52,49,46,52,50,51,50,56,54,93,44,91,45,55,56,46,57,55,54,54,53,56,44,52,49,46,52,53,49,55,54,49,93,44,91,45,55,56,46,57,53,54,48,52,50,44,52,49,46,54,50,51,52,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,84,97,110,103,105,112,97,104,111,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,48,53,48,52,44,34,98,101,100,115,34,58,53,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,54,55,49,54,53,44,51,48,46,54,53,48,48,50,51,93,44,91,45,57,48,46,53,54,54,57,48,54,44,51,48,46,52,56,55,48,54,93,44,91,45,57,48,46,52,55,55,56,44,51,48,46,51,53,54,52,52,55,93,44,91,45,57,48,46,52,56,53,56,50,54,44,51,48,46,50,55,54,57,57,50,93,44,91,45,57,48,46,51,48,48,57,50,51,44,51,48,46,50,57,52,54,56,93,44,91,45,57,48,46,49,54,48,54,51,54,44,51,48,46,50,51,52,51,51,55,93,44,91,45,57,48,46,50,52,51,54,52,57,44,51,48,46,51,54,49,53,56,49,93,44,91,45,57,48,46,50,53,53,54,52,56,44,51,48,46,55,49,49,57,48,53,93,44,91,45,57,48,46,51,52,54,55,49,44,51,48,46,57,48,53,52,50,55,93,44,91,45,57,48,46,51,52,55,50,53,53,44,51,49,46,48,48,48,53,51,93,44,91,45,57,48,46,53,52,55,54,49,54,44,51,48,46,57,57,57,55,50,93,44,91,45,57,48,46,53,54,55,49,57,53,44,51,48,46,57,57,57,55,51,51,93,44,91,45,57,48,46,53,54,55,49,54,53,44,51,48,46,54,53,48,48,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,83,116,97,102,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,48,49,50,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,53,51,49,51,50,56,44,51,56,46,53,53,54,53,53,93,44,91,45,55,55,46,54,51,52,57,52,44,51,56,46,52,49,48,50,49,56,93,44,91,45,55,55,46,54,49,56,55,50,55,44,51,56,46,51,54,55,56,51,53,93,44,91,45,55,55,46,53,51,48,50,56,51,44,51,56,46,51,48,57,49,55,53,93,44,91,45,55,55,46,52,54,55,48,53,51,44,51,56,46,51,49,56,54,54,93,44,91,45,55,55,46,52,52,55,49,50,54,44,51,56,46,50,56,52,54,49,52,93,44,91,45,55,55,46,51,55,48,50,57,55,44,51,56,46,50,52,54,53,55,54,93,44,91,45,55,55,46,51,50,54,54,57,50,44,51,56,46,50,52,53,49,51,54,93,44,91,45,55,55,46,50,56,55,48,57,55,44,51,56,46,51,52,56,56,93,44,91,45,55,55,46,50,57,53,52,48,54,44,51,56,46,53,48,57,50,51,57,93,44,91,45,55,55,46,52,55,54,56,52,55,44,51,56,46,53,57,50,50,56,54,93,44,91,45,55,55,46,53,51,49,51,50,56,44,51,56,46,53,53,54,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,77,101,110,111,109,105,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,51,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,54,55,56,52,57,44,52,53,46,57,56,53,51,50,49,93,44,91,45,56,55,46,54,49,55,48,57,49,44,52,53,46,57,56,54,48,49,52,93,44,91,45,56,55,46,54,57,54,57,52,54,44,52,53,46,56,57,56,56,52,50,93,44,91,45,56,55,46,54,57,55,49,53,57,44,52,53,46,55,50,50,57,54,93,44,91,45,56,55,46,56,52,54,54,48,50,44,52,53,46,55,50,50,53,52,52,93,44,91,45,56,55,46,55,55,52,54,56,50,44,52,53,46,54,48,50,48,50,52,93,44,91,45,56,55,46,55,57,50,55,54,57,44,52,53,46,52,57,57,57,54,55,93,44,91,45,56,55,46,56,56,52,56,53,53,44,52,53,46,51,54,50,55,57,50,93,44,91,45,56,55,46,54,52,55,55,54,56,44,52,53,46,51,52,48,53,54,51,93,44,91,45,56,55,46,55,51,53,50,56,50,44,52,53,46,49,55,54,53,54,53,93,44,91,45,56,55,46,54,54,49,50,49,49,44,52,53,46,49,48,56,50,55,57,93,44,91,45,56,55,46,52,52,50,55,54,44,52,53,46,48,55,54,52,55,49,93,44,91,45,56,55,46,52,48,53,54,57,52,44,52,53,46,50,48,49,57,54,57,93,44,91,45,56,55,46,51,49,53,52,50,50,44,52,53,46,50,52,48,54,53,55,93,44,91,45,56,55,46,49,50,55,56,50,54,44,52,53,46,52,48,57,52,56,55,93,44,91,45,56,55,46,49,50,57,49,49,56,44,52,53,46,53,53,48,52,56,53,93,44,91,45,56,55,46,51,50,55,53,48,50,44,52,53,46,53,53,49,50,53,93,44,91,45,56,55,46,51,50,53,51,57,49,44,52,53,46,56,57,56,54,54,53,93,44,91,45,56,55,46,51,54,55,56,52,57,44,52,53,46,57,56,53,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,52,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,55,53,56,56,50,44,52,49,46,50,49,56,53,57,53,93,44,91,45,56,55,46,50,54,55,50,57,56,44,52,48,46,55,51,54,53,56,50,93,44,91,45,56,55,46,48,57,56,51,57,44,52,48,46,55,51,54,53,52,49,93,44,91,45,56,55,46,48,57,57,55,57,51,44,52,48,46,56,51,55,54,48,55,93,44,91,45,56,54,46,57,56,54,52,51,56,44,52,48,46,56,51,55,57,50,49,93,44,91,45,56,54,46,57,51,48,55,53,57,44,52,48,46,57,49,50,52,49,56,93,44,91,45,56,54,46,57,51,48,49,55,44,52,49,46,49,55,50,51,49,56,93,44,91,45,56,54,46,57,51,48,48,55,57,44,52,49,46,50,51,54,55,57,56,93,44,91,45,56,55,46,49,51,49,54,53,51,44,52,49,46,50,56,54,49,53,53,93,44,91,45,56,55,46,50,49,56,56,54,50,44,52,49,46,50,52,50,48,50,55,93,44,91,45,56,55,46,50,55,53,56,56,50,44,52,49,46,50,49,56,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,66,114,97,110,116,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,51,49,54,57,52,44,51,49,46,51,51,48,48,52,56,93,44,91,45,56,50,46,48,52,49,49,50,57,44,51,49,46,51,55,51,55,50,49,93,44,91,45,56,50,46,48,57,50,55,50,44,51,49,46,50,55,54,49,49,57,93,44,91,45,56,50,46,49,57,52,56,50,52,44,51,49,46,50,48,55,53,57,93,44,91,45,56,50,46,50,56,52,53,54,49,44,51,49,46,50,50,52,52,52,57,93,44,91,45,56,50,46,50,48,56,55,51,50,44,51,49,46,49,55,48,57,51,56,93,44,91,45,56,50,46,50,48,56,50,54,50,44,51,49,46,48,56,52,55,54,56,93,44,91,45,56,50,46,49,51,49,54,57,56,44,51,49,46,48,49,48,55,49,52,93,44,91,45,56,50,46,48,54,48,56,55,44,51,49,46,48,55,53,56,48,57,93,44,91,45,56,49,46,57,51,54,48,48,54,44,51,49,46,48,52,55,57,57,51,93,44,91,45,56,49,46,55,54,54,51,50,50,44,51,49,46,49,54,57,53,57,53,93,44,91,45,56,49,46,55,51,49,54,57,52,44,51,49,46,51,51,48,48,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,76,97,109,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,52,56,49,56,53,44,51,51,46,49,56,57,48,49,57,93,44,91,45,56,52,46,50,55,48,49,52,44,51,50,46,57,57,49,48,49,49,93,44,91,45,56,52,46,49,50,51,51,52,44,51,50,46,57,51,50,49,56,52,93,44,91,45,56,52,46,48,52,52,49,49,51,44,51,50,46,57,52,55,56,55,52,93,44,91,45,56,52,46,48,52,49,52,57,56,44,51,51,46,50,48,50,54,50,57,93,44,91,45,56,52,46,49,50,51,55,54,55,44,51,51,46,50,48,50,56,50,52,93,44,91,45,56,52,46,50,52,56,49,56,53,44,51,51,46,49,56,57,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,116,101,117,98,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,57,54,55,55,52,44,52,49,46,55,53,57,54,52,52,93,44,91,45,56,53,46,49,57,52,48,56,52,44,52,49,46,53,50,54,52,51,55,93,44,91,45,56,52,46,56,48,52,54,56,55,44,52,49,46,53,51,48,49,51,52,93,44,91,45,56,52,46,56,48,53,57,55,50,44,52,49,46,54,57,54,49,49,56,93,44,91,45,56,52,46,56,50,53,49,51,44,52,49,46,55,53,57,57,57,57,93,44,91,45,56,53,46,49,57,54,55,55,52,44,52,49,46,55,53,57,54,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,54,49,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,48,52,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,49,49,53,57,49,55,44,51,48,46,49,54,48,51,52,55,93,44,91,45,57,52,46,48,51,49,57,55,54,44,51,48,46,48,50,56,48,49,51,93,44,91,45,57,51,46,56,54,48,49,54,57,44,50,57,46,57,55,55,51,57,55,93,44,91,45,57,51,46,56,53,52,52,49,50,44,50,57,46,56,54,53,48,53,51,93,44,91,45,57,51,46,55,50,50,53,49,55,44,51,48,46,48,53,48,56,55,50,93,44,91,45,57,51,46,55,48,54,57,57,51,44,51,48,46,50,52,51,55,51,54,93,44,91,45,57,51,46,57,48,49,52,53,50,44,51,48,46,50,52,50,54,55,50,93,44,91,45,57,52,46,49,49,55,54,48,52,44,51,48,46,50,52,49,54,54,53,93,44,91,45,57,52,46,49,49,53,57,49,55,44,51,48,46,49,54,48,51,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,52,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,53,51,51,51,44,51,57,46,55,49,54,56,55,54,93,44,91,45,56,51,46,54,55,48,49,57,54,44,51,57,46,53,53,48,50,53,52,93,44,91,45,56,51,46,53,55,54,50,56,54,44,51,57,46,53,52,52,53,52,55,93,44,91,45,56,51,46,53,57,48,56,55,56,44,51,57,46,51,55,56,55,51,54,93,44,91,45,56,51,46,51,55,50,55,49,52,44,51,57,46,51,55,55,52,49,54,93,44,91,45,56,51,46,50,54,54,55,51,55,44,51,57,46,53,49,54,50,52,57,93,44,91,45,56,51,46,50,53,50,52,51,53,44,51,57,46,54,57,53,52,51,56,93,44,91,45,56,51,46,54,53,51,51,51,44,51,57,46,55,49,54,56,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,49,53,57,44,34,98,101,100,115,34,58,49,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,57,55,53,52,48,57,44,52,50,46,53,53,54,48,51,55,93,44,91,45,55,51,46,48,48,48,49,55,51,44,52,50,46,51,49,50,54,55,56,93,44,91,45,55,50,46,55,56,49,48,51,57,44,52,50,46,49,57,57,55,52,57,93,44,91,45,55,50,46,50,50,49,50,49,56,44,52,50,46,50,52,53,50,53,50,93,44,91,45,55,50,46,51,49,52,50,53,51,44,52,50,46,51,52,51,54,56,56,93,44,91,45,55,50,46,51,55,53,48,50,50,44,52,50,46,52,50,48,56,49,57,93,44,91,45,55,50,46,56,55,49,49,51,54,44,52,50,46,52,56,52,48,52,49,93,44,91,45,55,50,46,57,55,53,52,48,57,44,52,50,46,53,53,54,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,57,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,54,54,55,52,44,51,54,46,57,51,52,48,49,53,93,44,91,45,56,54,46,52,48,53,55,54,57,44,51,54,46,55,55,54,49,56,55,93,44,91,45,56,54,46,52,49,49,51,55,57,44,51,54,46,54,53,48,57,50,52,93,44,91,45,56,54,46,50,48,53,51,56,56,44,51,54,46,54,52,48,49,56,52,93,44,91,45,56,53,46,57,55,54,52,49,56,44,51,54,46,54,50,56,52,57,51,93,44,91,45,56,53,46,57,55,54,57,49,44,51,54,46,55,50,50,55,50,50,93,44,91,45,56,54,46,48,54,57,57,53,55,44,51,54,46,56,48,53,55,56,51,93,44,91,45,56,54,46,48,55,48,50,57,51,44,51,54,46,56,55,56,49,56,56,93,44,91,45,56,54,46,49,54,54,55,52,44,51,54,46,57,51,52,48,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,97,109,97,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,53,55,54,44,34,98,101,100,115,34,58,50,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,53,51,50,52,49,44,51,54,46,50,52,49,52,54,51,93,44,91,45,55,57,46,53,52,49,55,50,56,44,51,53,46,56,57,57,56,53,49,93,44,91,45,55,57,46,53,52,50,52,50,56,44,51,53,46,56,52,51,51,48,51,93,44,91,45,55,57,46,50,52,57,53,51,56,44,51,53,46,56,55,54,56,49,93,44,91,45,55,57,46,50,53,55,57,53,50,44,51,54,46,50,52,51,52,52,53,93,44,91,45,55,57,46,53,51,49,56,54,53,44,51,54,46,50,52,57,54,55,51,93,44,91,45,55,57,46,53,51,50,52,49,44,51,54,46,50,52,49,52,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,53,55,50,55,55,44,51,56,46,49,55,50,54,54,93,44,91,45,57,54,46,51,53,56,48,57,57,44,51,56,46,48,56,53,56,49,55,93,44,91,45,57,54,46,53,50,50,55,56,50,44,51,56,46,48,56,54,51,55,93,44,91,45,57,54,46,53,50,53,51,44,51,55,46,54,48,55,48,49,53,93,44,91,45,57,53,46,57,54,49,48,48,50,44,51,55,46,54,48,51,55,54,49,93,44,91,45,57,53,46,57,54,48,56,55,54,44,51,55,46,55,51,52,51,48,52,93,44,91,45,57,53,46,57,53,57,48,52,54,44,51,56,46,48,52,48,49,57,53,93,44,91,45,57,53,46,57,53,56,56,54,50,44,51,56,46,49,55,48,57,51,57,93,44,91,45,57,54,46,51,53,55,50,55,55,44,51,56,46,49,55,50,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,83,117,102,102,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,49,55,54,54,44,34,98,101,100,115,34,58,54,50,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,48,50,53,56,51,54,44,52,50,46,52,52,52,55,48,57,93,44,91,45,55,49,46,49,53,55,48,51,54,44,52,50,46,51,51,48,51,57,93,44,91,45,55,49,46,49,54,52,55,48,50,44,52,50,46,51,48,51,56,51,93,44,91,45,55,49,46,49,57,49,49,53,53,44,52,50,46,50,56,51,48,53,57,93,44,91,45,55,48,46,57,54,48,49,57,50,44,52,50,46,50,57,57,52,57,56,93,44,91,45,55,48,46,56,57,52,50,57,50,44,52,50,46,51,55,50,51,57,57,93,44,91,45,55,48,46,55,50,57,50,49,50,44,52,50,46,51,55,51,56,52,56,93,44,91,45,55,48,46,54,55,53,54,57,44,52,50,46,51,55,53,48,57,56,93,44,91,45,55,48,46,54,53,56,55,50,51,44,52,50,46,51,55,53,48,57,56,93,44,91,45,55,48,46,54,52,56,48,55,50,44,52,50,46,52,48,53,54,50,56,93,44,91,45,55,48,46,57,50,52,53,57,51,44,52,50,46,51,56,54,55,57,56,93,44,91,45,55,49,46,48,50,53,56,51,54,44,52,50,46,52,52,52,55,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,54,50,54,48,52,51,44,52,51,46,54,50,54,55,53,54,93,44,91,45,49,49,49,46,57,51,52,51,53,55,44,52,51,46,55,54,54,49,54,93,44,91,45,49,49,49,46,57,55,54,56,52,57,44,52,51,46,57,50,55,51,56,53,93,44,91,45,49,49,50,46,49,53,54,51,55,44,52,51,46,57,55,49,50,52,55,93,44,91,45,49,49,50,46,49,53,53,57,51,53,44,52,52,46,48,53,55,55,56,93,44,91,45,49,49,50,46,54,57,52,55,52,52,44,52,52,46,48,53,56,52,54,52,93,44,91,45,49,49,50,46,54,57,53,50,52,50,44,52,51,46,57,55,49,57,52,49,93,44,91,45,49,49,50,46,54,57,55,49,50,50,44,52,51,46,54,50,51,49,52,93,44,91,45,49,49,50,46,53,49,57,56,54,49,44,52,51,46,54,50,54,54,50,51,93,44,91,45,49,49,49,46,54,50,54,48,52,51,44,52,51,46,54,50,54,55,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,71,111,110,122,97,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,54,55,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,51,51,49,55,54,44,50,57,46,54,52,57,56,54,51,93,44,91,45,57,55,46,56,52,48,51,56,51,44,50,57,46,51,55,54,55,57,49,93,44,91,45,57,55,46,55,50,56,52,52,51,44,50,57,46,50,50,49,55,52,56,93,44,91,45,57,55,46,54,49,51,49,51,50,44,50,57,46,49,48,57,55,54,53,93,44,91,45,57,55,46,50,52,48,49,48,56,44,50,57,46,51,56,52,52,56,56,93,44,91,45,57,55,46,50,48,52,48,56,55,44,50,57,46,53,56,48,54,49,51,93,44,91,45,57,55,46,49,52,50,54,52,51,44,50,57,46,54,50,56,49,48,49,93,44,91,45,57,55,46,51,49,55,56,57,51,44,50,57,46,55,56,52,54,53,56,93,44,91,45,57,55,46,53,57,55,55,52,51,44,50,57,46,54,51,48,55,49,56,93,44,91,45,57,55,46,54,51,51,49,55,54,44,50,57,46,54,52,57,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,56,55,48,56,57,44,51,53,46,49,52,55,49,54,57,93,44,91,45,56,53,46,52,52,52,49,52,52,44,51,53,46,50,54,50,54,52,54,93,44,91,45,56,53,46,53,53,56,53,53,49,44,51,53,46,51,49,57,50,57,50,93,44,91,45,56,53,46,54,57,48,52,49,53,44,51,53,46,50,56,54,48,55,53,93,44,91,45,56,53,46,55,52,48,49,49,51,44,51,53,46,50,49,53,50,57,53,93,44,91,45,56,53,46,56,55,51,48,50,53,44,51,53,46,50,50,51,51,54,50,93,44,91,45,56,53,46,56,54,51,57,51,53,44,51,52,46,57,56,56,50,53,51,93,44,91,45,56,53,46,54,48,53,49,54,53,44,51,52,46,57,56,52,54,55,56,93,44,91,45,56,53,46,52,55,52,48,55,51,44,51,52,46,57,56,51,48,50,93,44,91,45,56,53,46,51,56,50,50,53,53,44,51,53,46,48,52,52,55,51,93,44,91,45,56,53,46,51,56,55,48,56,57,44,51,53,46,49,52,55,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,108,112,101,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,49,50,44,34,98,101,100,115,34,58,49,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,57,48,53,57,54,44,52,53,46,50,48,56,52,56,52,93,44,91,45,56,51,46,56,56,49,50,50,51,44,52,53,46,50,48,50,48,55,49,93,44,91,45,56,51,46,56,56,56,52,56,50,44,52,52,46,56,53,54,54,51,53,93,44,91,45,56,51,46,56,56,56,52,56,52,44,52,52,46,56,53,54,52,53,56,93,44,91,45,56,50,46,52,48,56,55,49,55,44,52,52,46,56,53,56,49,52,55,93,44,91,45,56,50,46,52,57,48,53,57,54,44,52,53,46,50,48,56,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,49,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,51,53,55,49,50,44,51,54,46,57,57,55,54,49,50,93,44,91,45,56,53,46,48,54,52,51,48,55,44,51,54,46,56,53,56,55,52,51,93,44,91,45,56,52,46,57,55,52,56,49,49,44,51,54,46,54,49,53,52,54,53,93,44,91,45,56,52,46,55,56,53,52,53,44,51,54,46,54,48,51,52,52,52,93,44,91,45,56,52,46,55,55,56,52,53,52,44,51,54,46,54,48,51,50,57,93,44,91,45,56,52,46,53,55,56,49,53,56,44,51,54,46,56,54,55,49,51,51,93,44,91,45,56,52,46,54,55,57,49,54,53,44,51,54,46,57,56,48,57,49,52,93,44,91,45,56,52,46,56,51,53,55,49,50,44,51,54,46,57,57,55,54,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,53,56,48,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,52,52,54,48,52,44,51,54,46,48,49,53,48,53,51,93,44,91,45,56,53,46,54,56,50,48,57,53,44,51,53,46,56,51,49,50,53,52,93,44,91,45,56,53,46,54,48,50,56,55,54,44,51,53,46,55,57,52,57,57,54,93,44,91,45,56,53,46,52,52,57,51,54,44,51,53,46,56,50,49,53,53,57,93,44,91,45,56,53,46,50,54,57,51,53,57,44,51,53,46,55,57,51,51,56,56,93,44,91,45,56,53,46,50,50,50,53,50,52,44,51,53,46,56,55,55,51,54,52,93,44,91,45,56,53,46,50,54,52,50,48,54,44,51,53,46,57,55,57,49,53,52,93,44,91,45,56,53,46,51,53,54,54,49,57,44,51,54,46,48,52,53,56,57,51,93,44,91,45,56,53,46,53,48,55,54,55,55,44,51,54,46,48,56,50,48,49,50,93,44,91,45,56,53,46,54,52,52,54,48,52,44,51,54,46,48,49,53,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,70,97,110,110,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,49,55,53,44,34,98,101,100,115,34,58,51,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,55,57,52,53,50,44,51,51,46,55,50,53,55,54,52,93,44,91,45,57,54,46,51,56,52,54,48,50,44,51,51,46,51,57,55,56,50,54,93,44,91,45,57,54,46,50,57,53,52,49,51,44,51,51,46,51,53,49,57,51,54,93,44,91,45,57,53,46,56,53,56,55,50,51,44,51,51,46,52,48,57,53,51,93,44,91,45,57,53,46,56,53,55,55,51,56,44,51,51,46,52,54,49,55,50,50,93,44,91,45,57,53,46,56,52,54,53,51,54,44,51,51,46,56,51,57,56,53,53,93,44,91,45,57,53,46,57,52,54,48,51,44,51,51,46,56,53,57,51,51,56,93,44,91,45,57,54,46,49,52,57,50,50,55,44,51,51,46,56,51,55,48,57,49,93,44,91,45,57,54,46,49,55,57,56,52,54,44,51,51,46,55,53,57,54,49,56,93,44,91,45,57,54,46,50,57,48,51,53,57,44,51,51,46,55,55,48,56,51,49,93,44,91,45,57,54,46,51,55,57,52,53,50,44,51,51,46,55,50,53,55,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,111,110,105,112,104,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,51,57,56,57,54,44,51,57,46,57,57,57,57,57,57,93,44,91,45,57,53,46,51,51,57,55,52,44,51,57,46,54,53,50,57,56,93,44,91,45,57,53,46,49,49,53,49,56,57,44,51,57,46,54,53,50,53,52,57,93,44,91,45,57,53,46,48,53,51,53,56,54,44,51,57,46,54,49,53,50,54,57,93,44,91,45,57,52,46,56,55,54,53,53,56,44,51,57,46,56,50,48,56,56,51,93,44,91,45,57,52,46,57,57,51,51,56,50,44,51,57,46,56,57,55,57,48,54,93,44,91,45,57,53,46,48,56,53,48,48,51,44,51,57,46,56,54,49,56,56,51,93,44,91,45,57,53,46,51,48,56,50,57,44,51,57,46,57,57,57,57,57,56,93,44,91,45,57,53,46,51,51,57,56,57,54,44,51,57,46,57,57,57,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,53,34,44,34,78,65,77,69,34,58,34,75,101,114,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,51,54,53,44,34,98,101,100,115,34,58,51,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,48,50,55,55,54,44,50,57,46,57,48,55,54,55,57,93,44,91,45,57,57,46,49,55,54,57,56,56,44,50,57,46,56,57,53,48,54,51,93,44,91,45,57,56,46,57,49,55,55,50,53,44,50,57,46,55,56,49,51,57,56,93,44,91,45,57,56,46,57,50,48,49,52,55,44,51,48,46,49,51,56,50,57,93,44,91,45,57,57,46,51,48,48,57,56,56,44,51,48,46,49,51,52,50,57,56,93,44,91,45,57,57,46,51,48,49,55,49,56,44,51,48,46,50,56,54,54,53,51,93,44,91,45,57,57,46,55,53,52,49,52,50,44,51,48,46,50,57,48,54,57,56,93,44,91,45,57,57,46,55,53,55,54,50,49,44,51,48,46,48,55,52,49,51,50,93,44,91,45,57,57,46,54,56,57,56,55,57,44,51,48,46,48,55,51,57,52,56,93,44,91,45,57,57,46,54,57,49,50,49,53,44,50,57,46,57,48,56,53,56,50,93,44,91,45,57,57,46,54,48,50,55,55,54,44,50,57,46,57,48,55,54,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,72,101,114,110,97,110,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,54,57,54,44,34,98,101,100,115,34,58,53,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,53,51,57,55,55,44,50,56,46,52,51,51,50,57,93,44,91,45,56,50,46,50,53,51,52,51,57,44,50,56,46,52,51,52,56,50,52,93,44,91,45,56,50,46,48,53,52,54,57,52,44,50,56,46,52,55,56,51,57,55,93,44,91,45,56,50,46,50,54,51,48,53,50,44,50,56,46,54,54,55,54,51,52,93,44,91,45,56,50,46,52,49,56,51,53,51,44,50,56,46,54,57,52,56,53,57,93,44,91,45,56,50,46,55,55,56,52,51,55,44,50,56,46,54,57,52,50,48,54,93,44,91,45,56,50,46,55,50,55,51,57,50,44,50,56,46,53,57,53,53,56,55,93,44,91,45,56,50,46,55,53,51,57,55,55,44,50,56,46,52,51,51,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,87,97,107,117,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,56,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,55,53,53,51,57,44,51,48,46,50,55,51,54,49,55,93,44,91,45,56,52,46,50,52,55,54,55,51,44,51,48,46,51,48,51,52,57,51,93,44,91,45,56,52,46,55,49,51,51,53,49,44,51,48,46,51,48,48,49,55,93,44,91,45,56,52,46,54,54,57,50,53,56,44,51,48,46,49,50,53,50,93,44,91,45,56,52,46,53,52,52,52,53,44,51,48,46,48,49,49,48,51,93,44,91,45,56,52,46,51,50,53,49,57,56,44,50,57,46,57,53,56,48,53,93,44,91,45,56,52,46,50,54,52,55,51,53,44,50,57,46,57,55,56,48,54,49,93,44,91,45,56,52,46,48,55,53,52,53,53,44,51,48,46,48,51,52,54,50,54,93,44,91,45,56,52,46,48,55,53,53,51,57,44,51,48,46,50,55,51,54,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,87,97,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,56,53,56,44,34,98,101,100,115,34,58,49,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,56,56,54,52,54,44,51,48,46,57,57,52,49,56,49,93,44,91,45,56,54,46,51,57,55,53,48,52,44,51,48,46,51,50,53,51,53,52,93,44,91,45,56,53,46,57,57,57,56,57,51,44,51,48,46,50,49,51,48,57,93,44,91,45,56,53,46,57,57,50,55,51,54,44,51,48,46,51,56,57,51,50,93,44,91,45,56,53,46,56,54,54,56,49,56,44,51,48,46,52,56,55,54,51,55,93,44,91,45,56,53,46,57,49,53,50,57,55,44,51,48,46,54,51,54,52,50,55,93,44,91,45,56,53,46,56,52,52,52,50,49,44,51,48,46,55,48,51,49,51,93,44,91,45,56,54,46,48,51,55,53,57,49,44,51,48,46,55,48,52,53,55,50,93,44,91,45,56,54,46,48,51,53,48,51,57,44,51,48,46,57,57,51,51,50,93,44,91,45,56,54,46,49,56,55,50,52,54,44,51,48,46,57,57,52,48,50,49,93,44,91,45,56,54,46,51,56,56,54,52,54,44,51,48,46,57,57,52,49,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,105,99,107,97,115,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,55,57,44,34,98,101,100,115,34,58,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,50,52,53,50,51,44,51,52,46,48,55,52,57,52,56,93,44,91,45,56,57,46,49,51,57,49,53,56,44,51,52,46,48,55,52,49,49,54,93,44,91,45,56,57,46,49,51,55,56,55,54,44,51,51,46,56,49,50,49,52,52,93,44,91,45,56,57,46,49,57,49,55,56,49,44,51,51,46,55,51,56,54,48,50,93,44,91,45,56,57,46,48,51,52,52,57,56,44,51,51,46,55,51,57,52,51,93,44,91,45,56,56,46,57,51,49,49,55,54,44,51,51,46,56,49,50,51,55,52,93,44,91,45,56,56,46,55,49,57,57,55,57,44,51,51,46,56,49,49,51,51,93,44,91,45,56,56,46,55,49,56,57,54,52,44,51,52,46,48,55,52,53,50,49,93,44,91,45,56,56,46,56,50,52,53,50,51,44,51,52,46,48,55,52,57,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,48,34,44,34,78,65,77,69,34,58,34,75,101,116,99,104,105,107,97,110,32,71,97,116,101,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,48,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,50,46,49,57,57,55,52,57,44,53,53,46,54,51,51,56,51,52,93,44,91,45,49,51,50,46,50,50,53,57,55,57,44,53,53,46,53,54,53,56,49,50,93,44,91,45,49,51,50,46,48,51,55,48,48,54,44,53,53,46,52,54,53,50,52,54,93,44,91,45,49,51,49,46,57,52,49,51,54,52,44,53,53,46,51,49,50,56,50,54,93,44,91,45,49,51,49,46,56,53,53,48,48,51,44,53,53,46,48,56,56,54,49,53,93,44,91,45,49,51,49,46,54,56,53,51,55,55,44,53,53,46,49,49,52,52,53,56,93,44,91,45,49,51,49,46,54,48,57,50,53,51,44,53,53,46,50,56,50,48,49,51,93,44,91,45,49,51,49,46,52,56,54,55,53,54,44,53,53,46,50,55,54,49,56,51,93,44,91,45,49,51,49,46,50,51,57,53,53,52,44,53,53,46,49,54,57,54,56,51,93,44,91,45,49,51,49,46,51,51,54,57,56,51,44,53,52,46,57,57,53,53,51,52,93,44,91,45,49,51,49,46,53,49,48,54,54,44,53,53,46,48,49,54,51,54,54,93,44,91,45,49,51,49,46,55,57,52,50,56,55,44,53,52,46,57,52,52,48,49,55,93,44,91,45,49,51,49,46,55,54,50,51,51,57,44,53,52,46,54,56,54,56,52,93,44,91,45,49,51,49,46,50,48,51,48,55,52,44,53,52,46,54,57,49,51,49,55,93,44,91,45,49,51,48,46,55,50,54,53,57,53,44,53,52,46,54,54,57,57,50,51,93,44,91,45,49,51,48,46,51,52,52,53,51,55,44,53,52,46,57,49,56,56,49,51,93,44,91,45,49,51,48,46,49,56,55,53,54,50,44,53,53,46,48,54,50,56,52,49,93,44,91,45,49,51,48,46,49,48,50,56,52,50,44,53,53,46,49,57,50,54,48,50,93,44,91,45,49,50,57,46,57,55,52,49,54,55,44,53,53,46,50,56,49,57,49,57,93,44,91,45,49,51,48,46,49,50,55,57,48,52,44,53,53,46,53,56,49,48,51,53,93,44,91,45,49,51,48,46,49,53,49,53,55,55,44,53,53,46,55,54,55,52,50,56,93,44,91,45,49,51,48,46,51,56,56,54,48,54,44,53,53,46,57,52,51,49,55,57,93,44,91,45,49,51,48,46,50,52,54,55,54,55,44,53,54,46,48,57,54,53,56,49,93,44,91,45,49,51,48,46,52,50,54,48,48,54,44,53,54,46,49,52,49,53,54,49,93,44,91,45,49,51,48,46,52,54,55,56,55,44,53,54,46,50,52,51,48,53,51,93,44,91,45,49,51,48,46,54,50,51,51,48,56,44,53,54,46,50,54,54,56,55,56,93,44,91,45,49,51,48,46,55,56,49,57,56,49,44,53,54,46,51,54,54,56,52,52,93,44,91,45,49,51,49,46,48,56,55,51,52,57,44,53,54,46,52,48,54,48,48,53,93,44,91,45,49,51,49,46,48,49,53,57,55,49,44,53,54,46,50,52,57,56,54,49,93,44,91,45,49,51,49,46,50,53,51,51,53,56,44,53,54,46,50,48,54,56,53,93,44,91,45,49,51,49,46,52,51,57,57,53,55,44,53,54,46,49,51,49,48,56,51,93,44,91,45,49,51,49,46,51,55,57,57,56,55,44,53,54,46,48,49,51,52,49,57,93,44,91,45,49,51,49,46,56,51,51,49,56,50,44,53,54,46,48,53,51,53,49,50,93,44,91,45,49,51,49,46,57,51,53,54,51,53,44,53,53,46,55,57,56,52,51,49,93,44,91,45,49,51,50,46,48,57,49,49,55,56,44,53,53,46,54,54,48,55,48,51,93,44,91,45,49,51,50,46,49,57,57,55,52,57,44,53,53,46,54,51,51,56,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,108,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,54,49,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,56,55,52,48,51,44,52,52,46,49,54,52,50,52,50,93,44,91,45,56,53,46,48,56,56,56,49,49,44,52,51,46,56,49,51,54,55,54,93,44,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,44,91,45,56,52,46,54,48,56,49,48,52,44,52,52,46,49,54,48,52,56,50,93,44,91,45,56,52,46,56,53,49,55,48,53,44,52,52,46,49,54,49,51,55,53,93,44,91,45,56,53,46,48,56,55,52,48,51,44,52,52,46,49,54,52,50,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,82,101,112,117,98,108,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,56,54,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,51,49,56,50,53,44,52,48,46,48,48,50,48,55,50,93,44,91,45,57,55,46,57,51,49,52,56,50,44,51,57,46,54,53,51,55,54,55,93,44,91,45,57,55,46,51,54,56,54,55,44,51,57,46,54,53,52,48,52,51,93,44,91,45,57,55,46,51,54,57,49,57,57,44,52,48,46,48,48,49,57,54,54,93,44,91,45,57,55,46,56,50,49,52,57,53,44,52,48,46,48,48,50,48,52,55,93,44,91,45,57,55,46,57,51,49,56,50,53,44,52,48,46,48,48,50,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,86,111,108,117,115,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,54,51,52,44,34,98,101,100,115,34,58,49,52,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,52,49,57,49,54,44,50,57,46,50,55,54,55,54,54,93,44,91,45,56,49,46,53,51,50,53,55,54,44,50,57,46,49,55,55,54,49,53,93,44,91,45,56,49,46,53,48,50,48,53,53,44,50,57,46,48,57,55,56,48,50,93,44,91,45,56,49,46,51,53,52,53,53,52,44,50,56,46,57,56,52,51,55,53,93,44,91,45,56,49,46,51,54,54,57,52,44,50,56,46,56,55,57,50,50,55,93,44,91,45,56,49,46,51,50,48,52,55,51,44,50,56,46,56,51,52,53,51,93,44,91,45,56,49,46,49,48,53,55,53,44,50,56,46,56,50,56,53,52,49,93,44,91,45,56,48,46,57,56,55,50,53,44,50,56,46,54,49,50,57,57,55,93,44,91,45,56,48,46,57,54,55,56,57,53,44,50,56,46,55,57,48,49,57,55,93,44,91,45,56,48,46,54,54,51,52,54,49,44,50,56,46,55,57,48,53,56,56,93,44,91,45,56,48,46,57,48,54,56,51,54,44,50,57,46,49,52,52,55,48,54,93,44,91,45,56,49,46,48,52,53,55,48,54,44,50,57,46,52,51,50,52,54,50,93,44,91,45,56,49,46,49,53,53,56,56,49,44,50,57,46,52,49,48,57,53,52,93,44,91,45,56,49,46,49,53,48,48,56,49,44,50,57,46,50,54,53,57,53,55,93,44,91,45,56,49,46,52,49,55,50,57,44,50,57,46,50,54,49,49,53,54,93,44,91,45,56,49,46,52,51,51,57,57,50,44,50,57,46,51,57,56,53,53,50,93,44,91,45,56,49,46,54,56,48,57,48,51,44,50,57,46,51,50,52,52,51,93,44,91,45,56,49,46,54,52,49,57,49,54,44,50,57,46,50,55,54,55,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,110,97,100,105,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,55,49,48,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,57,54,48,49,52,44,51,53,46,51,55,55,55,53,51,93,44,91,45,57,55,46,57,53,53,49,50,52,44,51,53,46,51,52,54,48,52,56,93,44,91,45,57,55,46,54,55,49,52,49,52,44,51,53,46,51,51,53,57,52,54,93,44,91,45,57,55,46,54,55,49,52,49,53,44,51,53,46,51,51,55,52,54,53,93,44,91,45,57,55,46,54,55,49,51,54,57,44,51,53,46,51,55,55,49,53,49,93,44,91,45,57,55,46,54,55,52,48,50,54,44,51,53,46,55,50,53,57,55,93,44,91,45,57,56,46,50,48,55,49,48,52,44,51,53,46,55,50,53,49,56,55,93,44,91,45,57,56,46,51,49,51,49,53,51,44,51,53,46,55,50,53,49,54,49,93,44,91,45,57,56,46,51,49,51,50,53,49,44,51,53,46,53,53,49,53,50,51,93,44,91,45,57,56,46,51,48,54,51,50,54,44,51,53,46,51,55,55,50,51,57,93,44,91,45,57,56,46,48,57,54,48,49,52,44,51,53,46,51,55,55,55,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,81,117,101,98,114,97,100,105,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,57,52,53,57,51,56,44,49,56,46,53,52,48,52,49,57,93,44,91,45,54,54,46,57,50,50,48,50,44,49,56,46,51,57,51,50,48,52,93,44,91,45,54,54,46,56,57,56,57,44,49,56,46,51,54,54,49,48,56,93,44,91,45,54,54,46,57,48,50,48,56,54,44,49,56,46,53,51,53,50,51,56,93,44,91,45,54,54,46,57,52,53,57,51,56,44,49,56,46,53,52,48,52,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,56,50,52,44,34,98,101,100,115,34,58,53,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,48,55,55,52,56,44,51,52,46,53,56,55,52,56,51,93,44,91,45,56,53,46,49,56,48,53,52,56,44,51,52,46,52,51,53,57,57,54,93,44,91,45,56,53,46,52,54,50,50,48,55,44,51,52,46,50,56,54,51,56,54,93,44,91,45,56,53,46,52,50,49,56,53,50,44,51,52,46,48,56,48,56,50,50,93,44,91,45,56,53,46,48,52,54,56,55,49,44,51,52,46,48,57,54,52,49,50,93,44,91,45,56,53,46,48,48,53,55,55,53,44,51,52,46,51,57,50,52,52,54,93,44,91,45,56,53,46,48,56,54,55,54,49,44,51,52,46,52,48,49,50,54,52,93,44,91,45,56,53,46,48,54,57,49,53,57,44,51,52,46,53,56,55,49,56,52,93,44,91,45,56,53,46,49,48,55,55,52,56,44,51,52,46,53,56,55,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,67,104,117,114,99,104,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,49,48,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,49,56,57,51,52,50,44,51,57,46,54,53,48,56,55,93,44,91,45,49,49,57,46,48,55,55,57,56,56,44,51,57,46,55,50,50,52,52,49,93,44,91,45,49,49,57,46,49,49,56,49,57,51,44,51,57,46,51,56,56,53,49,54,93,44,91,45,49,49,56,46,55,53,52,48,49,52,44,51,57,46,49,49,50,48,50,51,93,44,91,45,49,49,56,46,55,53,51,56,51,53,44,51,57,46,48,55,52,54,51,93,44,91,45,49,49,55,46,56,54,53,49,49,54,44,51,57,46,48,55,51,54,53,52,93,44,91,45,49,49,55,46,55,55,53,52,54,56,44,51,57,46,48,57,51,52,50,53,93,44,91,45,49,49,55,46,55,49,57,57,53,44,51,57,46,50,51,54,56,50,49,93,44,91,45,49,49,55,46,55,54,51,48,52,54,44,51,57,46,51,53,50,56,51,93,44,91,45,49,49,55,46,54,52,54,48,49,49,44,51,57,46,52,50,54,54,48,50,93,44,91,45,49,49,55,46,53,56,55,49,52,44,51,57,46,53,49,56,53,50,49,93,44,91,45,49,49,55,46,52,56,53,51,51,54,44,51,57,46,53,52,53,51,50,50,93,44,91,45,49,49,55,46,52,57,53,51,52,52,44,51,57,46,55,52,56,51,54,52,93,44,91,45,49,49,55,46,52,54,49,51,52,44,51,57,46,56,54,55,56,49,56,93,44,91,45,49,49,55,46,53,52,49,55,52,57,44,52,48,46,48,48,49,48,51,52,93,44,91,45,49,49,56,46,53,48,48,57,55,57,44,51,57,46,57,57,56,54,55,54,93,44,91,45,49,49,57,46,50,50,53,49,55,54,44,51,57,46,57,57,57,51,56,53,93,44,91,45,49,49,57,46,49,56,57,51,52,50,44,51,57,46,54,53,48,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,49,44,34,98,101,100,115,34,58,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,50,54,56,50,55,44,52,48,46,51,53,48,51,57,56,93,44,91,45,57,56,46,55,50,54,51,55,51,44,52,48,46,48,48,50,52,93,44,91,45,57,56,46,53,48,52,52,53,53,44,52,48,46,48,48,50,50,57,49,93,44,91,45,57,56,46,50,55,52,48,49,55,44,52,48,46,48,48,50,54,54,50,93,44,91,45,57,56,46,50,55,51,53,55,49,44,52,48,46,51,53,48,51,53,57,93,44,91,45,57,56,46,50,55,56,48,57,44,52,48,46,51,53,48,51,52,55,93,44,91,45,57,56,46,55,50,51,57,52,56,44,52,48,46,51,53,48,51,57,49,93,44,91,45,57,56,46,55,50,54,56,50,55,44,52,48,46,51,53,48,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,49,50,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,56,53,50,57,53,44,52,48,46,54,51,55,56,48,51,93,44,91,45,57,49,46,51,53,57,56,55,51,44,52,48,46,54,48,49,56,48,53,93,44,91,45,57,49,46,51,55,53,55,49,50,44,52,48,46,51,57,49,57,50,53,93,44,91,45,57,49,46,52,49,57,52,50,50,44,52,48,46,51,55,56,50,54,52,93,44,91,45,57,49,46,52,57,55,50,54,54,44,52,48,46,50,52,56,55,54,51,93,44,91,45,57,49,46,53,48,53,48,54,49,44,52,48,46,49,57,57,57,50,53,93,44,91,45,57,48,46,57,49,49,57,54,57,44,52,48,46,49,57,51,48,56,56,93,44,91,45,57,48,46,57,48,57,55,53,54,44,52,48,46,50,56,52,51,57,52,93,44,91,45,57,48,46,57,48,52,50,49,54,44,52,48,46,54,51,57,50,48,49,93,44,91,45,57,49,46,49,56,53,50,57,53,44,52,48,46,54,51,55,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,117,116,99,104,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,49,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,48,55,48,49,50,44,52,51,46,52,57,57,56,50,54,93,44,91,45,57,55,46,57,54,52,53,56,54,44,52,51,46,52,57,57,48,52,49,93,44,91,45,57,56,46,49,49,52,55,53,56,44,52,51,46,52,57,56,50,57,55,93,44,91,45,57,56,46,49,48,57,52,57,50,44,52,51,46,49,57,54,56,51,56,93,44,91,45,57,56,46,48,55,55,49,48,56,44,52,51,46,49,54,56,51,51,93,44,91,45,57,55,46,54,51,55,52,57,54,44,52,51,46,49,54,56,55,55,93,44,91,45,57,55,46,51,57,57,49,57,49,44,52,51,46,49,54,57,52,49,57,93,44,91,45,57,55,46,52,48,49,52,53,44,52,51,46,52,57,57,55,56,51,93,44,91,45,57,55,46,54,48,55,48,49,50,44,52,51,46,52,57,57,56,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,114,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,51,55,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,51,56,54,53,54,49,44,52,52,46,53,54,52,48,48,57,93,44,91,45,49,50,48,46,56,50,55,53,53,53,44,52,52,46,53,54,50,55,57,51,93,44,91,45,49,50,48,46,56,50,54,56,57,57,44,52,52,46,52,55,54,52,57,57,93,44,91,45,49,50,48,46,57,56,56,56,50,52,44,52,52,46,52,55,54,52,56,52,93,44,91,45,49,50,49,46,49,48,55,53,51,52,44,52,52,46,51,57,48,54,93,44,91,45,49,50,49,46,49,48,50,55,55,51,44,52,52,46,49,51,56,49,50,53,93,44,91,45,49,50,48,46,57,56,55,50,55,49,44,52,52,46,49,51,52,48,50,54,93,44,91,45,49,50,48,46,57,56,54,53,56,55,44,52,51,46,57,54,48,56,53,50,93,44,91,45,49,50,48,46,55,52,56,50,52,57,44,52,51,46,57,53,55,51,49,93,44,91,45,49,50,48,46,55,52,55,56,52,56,44,52,51,46,56,55,49,51,51,49,93,44,91,45,49,50,48,46,51,55,56,55,52,44,52,51,46,56,55,50,51,54,50,93,44,91,45,49,50,48,46,51,55,56,49,48,55,44,52,51,46,55,56,53,52,50,57,93,44,91,45,49,50,48,46,50,53,55,55,55,55,44,52,51,46,54,57,56,55,54,50,93,44,91,45,49,49,57,46,56,57,55,52,51,52,44,52,51,46,54,57,56,50,93,44,91,45,49,49,57,46,55,55,55,53,50,56,44,52,51,46,54,57,55,57,53,55,93,44,91,45,49,49,57,46,55,55,53,52,48,50,44,52,51,46,57,53,57,48,56,54,93,44,91,45,49,49,57,46,54,53,55,49,56,51,44,52,51,46,57,53,56,57,50,93,44,91,45,49,49,57,46,54,53,53,53,49,55,44,52,52,46,51,48,55,48,52,53,93,44,91,45,49,49,57,46,56,57,57,48,48,50,44,52,52,46,51,48,54,54,50,93,44,91,45,49,49,57,46,56,57,57,50,56,51,44,52,52,46,51,56,57,53,55,53,93,44,91,45,49,50,48,46,48,50,49,54,50,49,44,52,52,46,52,51,56,55,57,51,93,44,91,45,49,50,48,46,51,56,54,48,55,52,44,52,52,46,52,51,54,48,56,51,93,44,91,45,49,50,48,46,51,56,54,53,54,49,44,52,52,46,53,54,52,48,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,50,53,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,49,57,49,57,50,56,44,52,53,46,48,49,51,54,49,53,93,44,91,45,55,51,46,50,50,56,56,53,52,44,52,52,46,55,50,50,56,54,54,93,44,91,45,55,50,46,57,50,52,49,49,50,44,52,52,46,54,51,51,48,53,49,93,44,91,45,55,50,46,55,52,55,51,54,44,52,52,46,55,56,54,49,55,93,44,91,45,55,50,46,53,55,56,49,54,49,44,52,52,46,55,56,49,53,55,56,93,44,91,45,55,50,46,53,51,50,54,51,56,44,52,52,46,56,51,51,51,52,54,93,44,91,45,55,50,46,53,53,52,51,54,44,52,53,46,48,48,56,50,55,49,93,44,91,45,55,51,46,49,57,49,57,50,56,44,52,53,46,48,49,51,54,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,77,97,114,113,117,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,57,51,57,44,34,98,101,100,115,34,58,50,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,52,51,55,51,49,44,52,55,46,48,52,51,57,53,56,93,44,91,45,56,56,46,48,52,52,55,48,57,44,52,54,46,55,54,53,51,53,51,93,44,91,45,56,56,46,49,49,53,56,52,51,44,52,54,46,54,55,56,51,56,49,93,44,91,45,56,56,46,49,49,54,53,55,49,44,52,54,46,52,49,57,57,53,49,93,44,91,45,56,56,46,49,49,55,52,48,55,44,52,54,46,50,52,54,54,49,56,93,44,91,45,56,55,46,54,49,53,53,57,55,44,52,54,46,50,52,54,54,53,51,93,44,91,45,56,55,46,54,49,55,48,57,49,44,52,53,46,57,56,54,48,49,52,93,44,91,45,56,55,46,51,54,55,56,52,57,44,52,53,46,57,56,53,51,50,49,93,44,91,45,56,55,46,50,52,50,56,56,53,44,52,53,46,57,56,53,49,49,55,93,44,91,45,56,55,46,50,52,49,53,48,54,44,52,54,46,49,53,57,49,48,51,93,44,91,45,56,55,46,49,49,54,49,51,56,44,52,54,46,49,53,57,48,53,93,44,91,45,56,55,46,49,49,50,49,49,52,44,52,55,46,50,50,51,50,54,57,93,44,91,45,56,56,46,48,52,54,54,49,52,44,52,55,46,50,49,56,54,57,54,93,44,91,45,56,56,46,48,52,54,48,54,51,44,52,55,46,49,57,57,55,50,50,93,44,91,45,56,56,46,48,52,51,55,51,49,44,52,55,46,48,52,51,57,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,77,105,100,100,108,101,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,51,54,56,44,34,98,101,100,115,34,58,55,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,55,53,50,49,56,49,44,52,49,46,53,55,56,56,57,52,93,44,91,45,55,50,46,55,51,57,49,50,44,52,49,46,52,51,56,50,57,52,93,44,91,45,55,50,46,54,53,52,49,57,51,44,52,49,46,52,51,56,50,53,54,93,44,91,45,55,50,46,53,50,55,57,48,50,44,52,49,46,50,53,48,49,49,53,93,44,91,45,55,50,46,53,50,55,57,48,49,44,52,49,46,49,55,55,55,55,52,93,44,91,45,55,50,46,51,51,49,52,53,51,44,52,49,46,50,49,53,48,48,52,93,44,91,45,55,50,46,51,56,52,56,51,51,44,52,49,46,51,56,53,49,57,93,44,91,45,55,50,46,51,48,53,53,51,49,44,52,49,46,52,51,54,50,56,50,93,44,91,45,55,50,46,51,50,51,51,57,52,44,52,49,46,53,51,52,50,53,93,44,91,45,55,50,46,52,54,54,55,51,44,52,49,46,53,56,51,56,57,57,93,44,91,45,55,50,46,53,48,53,52,51,49,44,52,49,46,54,52,54,57,57,57,93,44,91,45,55,50,46,55,49,51,56,57,55,44,52,49,46,54,50,55,55,48,53,93,44,91,45,55,50,46,55,53,50,49,56,49,44,52,49,46,53,55,56,56,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,68,97,118,105,100,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,54,54,52,44,34,98,101,100,115,34,58,50,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,52,51,50,51,56,44,51,54,46,48,49,48,55,53,56,93,44,91,45,56,48,46,50,49,51,55,51,44,51,54,46,48,50,54,56,48,56,93,44,91,45,56,48,46,51,57,52,51,48,55,44,51,53,46,57,55,50,55,54,50,93,44,91,45,56,48,46,51,56,53,55,56,52,44,51,53,46,56,53,52,53,56,55,93,44,91,45,56,48,46,52,53,56,56,56,52,44,51,53,46,55,52,51,48,51,49,93,44,91,45,56,48,46,50,48,57,53,48,57,44,51,53,46,53,56,49,57,53,49,93,44,91,45,56,48,46,49,56,50,53,53,57,44,51,53,46,53,48,52,49,53,49,93,44,91,45,56,48,46,48,54,54,56,52,50,44,51,53,46,53,48,53,54,54,49,93,44,91,45,56,48,46,48,52,54,56,54,57,44,51,53,46,57,50,48,54,57,51,93,44,91,45,56,48,46,48,52,51,50,51,56,44,51,54,46,48,49,48,55,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,51,56,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,57,53,49,54,53,44,51,56,46,56,50,54,50,57,57,93,44,91,45,56,56,46,54,57,56,52,53,57,44,51,56,46,54,48,54,48,54,50,93,44,91,45,56,56,46,50,53,51,57,55,56,44,51,56,46,53,57,57,53,48,50,93,44,91,45,56,56,46,50,53,56,53,56,51,44,51,56,46,56,52,55,53,50,57,93,44,91,45,56,56,46,51,54,49,55,52,53,44,51,56,46,57,49,48,56,52,55,93,44,91,45,56,56,46,54,57,51,53,51,49,44,51,56,46,57,49,52,54,49,55,93,44,91,45,56,56,46,54,57,53,49,54,53,44,51,56,46,56,50,54,50,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,52,55,56,48,49,44,52,48,46,51,48,50,55,53,54,93,44,91,45,57,50,46,51,52,53,48,54,52,44,52,48,46,48,51,55,50,49,93,44,91,45,57,50,46,50,56,55,56,56,50,44,51,57,46,57,53,50,52,57,93,44,91,45,57,49,46,57,53,50,55,50,54,44,51,57,46,57,52,57,52,50,54,93,44,91,45,57,49,46,57,53,48,56,49,50,44,52,48,46,50,53,55,50,49,93,44,91,45,57,49,46,57,52,57,55,52,55,44,52,48,46,51,48,48,56,51,50,93,44,91,45,57,50,46,51,52,55,56,48,49,44,52,48,46,51,48,50,55,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,54,49,57,55,51,44,51,57,46,57,53,57,53,53,50,93,44,91,45,57,51,46,55,53,56,57,57,50,44,51,57,46,55,56,52,54,55,52,93,44,91,45,57,51,46,55,53,56,51,53,55,44,51,57,46,54,49,49,52,48,55,93,44,91,45,57,51,46,50,55,56,48,57,56,44,51,57,46,54,49,53,54,51,50,93,44,91,45,57,51,46,50,54,54,57,54,56,44,51,57,46,55,48,51,53,54,50,93,44,91,45,57,51,46,51,54,52,56,48,56,44,51,57,46,55,48,51,56,48,51,93,44,91,45,57,51,46,51,54,49,57,53,55,44,51,57,46,57,54,55,54,48,54,93,44,91,45,57,51,46,55,54,49,57,55,51,44,51,57,46,57,53,57,53,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,84,105,111,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,50,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,54,53,55,50,56,44,52,50,46,48,48,49,50,55,54,93,44,91,45,55,55,46,54,49,48,48,50,55,44,52,49,46,57,57,57,51,54,56,93,44,91,45,55,55,46,53,57,57,50,55,56,44,52,49,46,53,52,50,50,55,49,93,44,91,45,55,54,46,57,54,48,52,55,57,44,52,49,46,53,53,49,51,55,49,93,44,91,45,55,54,46,56,55,52,55,49,52,44,52,49,46,53,57,54,57,49,57,93,44,91,45,55,54,46,57,50,55,48,56,52,44,52,50,46,48,48,49,54,55,52,93,44,91,45,55,54,46,57,54,53,55,50,56,44,52,50,46,48,48,49,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,51,49,52,57,50,44,52,50,46,53,50,52,51,49,56,93,44,91,45,57,54,46,55,50,50,50,51,49,44,52,50,46,53,50,52,54,53,50,93,44,91,45,57,54,46,55,50,54,54,54,49,44,52,50,46,50,55,56,48,48,53,93,44,91,45,57,54,46,51,53,54,51,57,53,44,52,50,46,50,55,54,52,57,52,93,44,91,45,57,54,46,52,48,55,57,57,56,44,52,50,46,51,51,55,52,48,56,93,44,91,45,57,54,46,51,56,48,55,48,53,44,52,50,46,52,52,54,51,57,51,93,44,91,45,57,54,46,52,52,53,52,56,51,44,52,50,46,52,57,48,54,51,93,44,91,45,57,54,46,54,51,49,52,57,50,44,52,50,46,53,50,52,51,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,76,101,101,108,97,110,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,54,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,49,53,49,49,57,44,52,52,46,55,55,52,53,51,52,93,44,91,45,56,53,46,54,49,56,48,51,51,44,52,52,46,55,55,52,53,53,55,93,44,91,45,56,53,46,53,53,48,52,53,53,44,52,53,46,48,53,49,48,55,51,93,44,91,45,56,53,46,52,56,48,54,55,52,44,52,53,46,49,50,48,51,50,54,93,44,91,45,56,53,46,52,53,56,56,57,54,44,52,53,46,50,48,54,53,55,52,93,44,91,45,56,53,46,54,50,53,48,55,54,44,52,53,46,52,53,52,54,48,50,93,44,91,45,56,53,46,56,53,53,55,54,56,44,52,53,46,53,55,56,51,56,54,93,44,91,45,56,54,46,52,54,48,55,57,55,44,52,53,46,53,56,52,52,51,51,93,44,91,45,56,54,46,52,54,52,49,50,44,52,53,46,51,50,52,56,49,93,44,91,45,56,54,46,50,53,48,49,44,52,53,46,50,51,53,55,51,53,93,44,91,45,56,54,46,52,57,57,57,51,44,52,53,46,48,56,48,56,93,44,91,45,56,54,46,54,56,54,50,56,56,44,52,52,46,56,56,49,48,48,50,93,44,91,45,56,54,46,55,51,52,53,50,57,44,52,52,46,55,55,51,48,55,52,93,44,91,45,56,53,46,56,49,53,49,49,57,44,52,52,46,55,55,52,53,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,83,117,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,55,50,52,51,57,44,51,55,46,50,52,56,53,48,49,93,44,91,45,55,55,46,49,53,53,52,49,53,44,51,55,46,49,49,50,48,51,52,93,44,91,45,55,54,46,57,56,54,54,49,44,51,55,46,48,52,57,54,57,55,93,44,91,45,55,54,46,57,53,51,53,52,54,44,51,54,46,57,52,52,52,53,93,44,91,45,55,54,46,56,52,57,54,56,52,44,51,54,46,57,57,54,50,49,49,93,44,91,45,55,54,46,55,49,49,55,55,53,44,51,55,46,48,53,53,51,56,93,44,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,44,91,45,55,54,46,56,56,51,49,53,54,44,51,55,46,50,50,51,48,53,55,93,44,91,45,55,54,46,57,55,50,52,51,57,44,51,55,46,50,52,56,53,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,57,49,34,44,34,78,65,77,69,34,58,34,82,101,102,117,103,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,51,54,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,55,53,53,55,57,44,50,56,46,51,56,56,54,56,52,93,44,91,45,57,55,46,53,52,49,48,55,49,44,50,56,46,49,54,52,54,54,57,93,44,91,45,57,55,46,51,49,57,49,57,57,44,50,56,46,49,50,53,57,53,56,93,44,91,45,57,55,46,50,54,48,56,49,56,44,50,56,46,48,55,53,55,53,57,93,44,91,45,57,55,46,49,52,52,57,49,54,44,50,56,46,49,48,50,54,50,50,93,44,91,45,57,55,46,48,50,51,53,56,54,44,50,56,46,49,56,55,54,53,55,93,44,91,45,57,55,46,49,50,51,48,55,50,44,50,56,46,50,55,50,56,49,55,93,44,91,45,57,54,46,55,57,48,53,49,50,44,50,56,46,51,49,57,50,51,56,93,44,91,45,57,54,46,55,55,56,54,51,52,44,50,56,46,52,48,52,50,53,57,93,44,91,45,57,54,46,56,57,48,57,53,49,44,50,56,46,53,48,55,49,55,56,93,44,91,45,57,55,46,49,54,48,55,53,49,44,50,56,46,53,53,51,52,55,53,93,44,91,45,57,55,46,51,55,53,53,55,57,44,50,56,46,51,56,56,54,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,50,57,52,44,34,98,101,100,115,34,58,55,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,55,57,50,49,51,44,51,57,46,53,57,49,48,50,52,93,44,91,45,56,52,46,56,49,52,57,51,52,44,51,57,46,53,54,55,55,49,52,93,44,91,45,56,52,46,56,49,53,51,53,51,44,51,57,46,53,50,49,57,53,93,44,91,45,56,52,46,56,49,57,52,53,44,51,57,46,51,48,53,49,53,51,93,44,91,45,56,52,46,51,53,51,50,48,57,44,51,57,46,50,57,50,50,56,55,93,44,91,45,56,52,46,51,51,50,48,56,57,44,51,57,46,53,52,56,56,48,51,93,44,91,45,56,52,46,51,54,53,50,51,50,44,51,57,46,53,56,57,52,57,51,93,44,91,45,56,52,46,52,55,57,50,49,51,44,51,57,46,53,57,49,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,51,34,44,34,78,65,77,69,34,58,34,84,101,114,114,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,57,57,55,55,54,44,51,49,46,57,50,48,49,55,49,93,44,91,45,56,52,46,54,48,51,48,56,54,44,51,49,46,55,55,50,48,48,49,93,44,91,45,56,52,46,53,52,54,56,53,52,44,51,49,46,54,50,49,49,57,57,93,44,91,45,56,52,46,52,53,48,51,57,56,44,51,49,46,54,50,49,56,54,56,93,44,91,45,56,52,46,50,57,55,56,48,49,44,51,49,46,54,50,49,57,53,49,93,44,91,45,56,52,46,51,48,53,50,48,52,44,51,49,46,54,57,49,48,53,56,93,44,91,45,56,52,46,50,54,50,51,52,57,44,51,49,46,56,50,56,52,56,56,93,44,91,45,56,52,46,51,51,56,50,52,53,44,51,49,46,56,55,51,53,57,49,93,44,91,45,56,52,46,52,52,51,56,48,55,44,51,49,46,57,54,55,52,53,54,93,44,91,45,56,52,46,53,57,57,55,55,54,44,51,49,46,57,50,48,49,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,67,108,97,121,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,54,54,54,44,34,98,101,100,115,34,58,53,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,53,48,50,50,52,44,51,51,46,54,52,55,57,48,56,93,44,91,45,56,52,46,52,53,55,55,50,54,44,51,51,46,54,52,56,56,54,54,93,44,91,45,56,52,46,52,53,56,54,54,53,44,51,51,46,53,53,48,57,51,51,93,44,91,45,56,52,46,51,56,55,55,48,56,44,51,51,46,52,55,55,49,51,57,93,44,91,45,56,52,46,51,56,56,49,49,56,44,51,51,46,51,53,50,52,54,53,93,44,91,45,56,52,46,51,53,52,52,44,51,51,46,51,53,50,53,49,52,93,44,91,45,56,52,46,50,57,52,54,56,44,51,51,46,52,51,53,55,49,53,93,44,91,45,56,52,46,50,56,49,50,55,51,44,51,51,46,54,52,55,52,49,49,93,44,91,45,56,52,46,51,53,48,50,50,52,44,51,51,46,54,52,55,57,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,70,114,101,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,55,54,44,34,98,101,100,115,34,58,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,48,53,49,53,55,44,52,51,46,52,54,52,55,56,51,93,44,91,45,49,48,57,46,55,53,52,55,49,55,44,52,51,46,52,54,51,50,93,44,91,45,49,48,57,46,54,57,50,55,49,54,44,52,51,46,50,54,53,48,51,93,44,91,45,49,48,57,46,53,53,50,53,55,57,44,52,51,46,48,49,50,53,51,56,93,44,91,45,49,48,57,46,51,55,48,54,53,56,44,52,50,46,57,52,53,55,50,56,93,44,91,45,49,48,57,46,50,49,52,54,48,50,44,52,50,46,55,54,49,55,57,53,93,44,91,45,49,48,57,46,48,55,50,56,53,49,44,52,50,46,54,57,51,53,49,52,93,44,91,45,49,48,57,46,48,52,51,56,54,52,44,52,50,46,50,54,51,54,56,52,93,44,91,45,49,48,55,46,53,50,50,55,50,50,44,52,50,46,50,54,49,55,53,54,93,44,91,45,49,48,55,46,53,50,50,57,50,51,44,52,50,46,52,51,52,51,53,54,93,44,91,45,49,48,55,46,53,52,51,53,50,54,44,52,50,46,55,56,49,53,53,56,93,44,91,45,49,48,55,46,53,48,49,52,50,53,44,52,50,46,55,56,49,52,53,56,93,44,91,45,49,48,55,46,53,49,55,48,51,49,44,52,51,46,52,55,50,54,53,57,93,44,91,45,49,48,55,46,53,51,52,56,57,55,44,52,51,46,53,48,49,51,54,50,93,44,91,45,49,48,55,46,53,57,53,49,48,53,44,52,51,46,53,48,49,51,57,55,93,44,91,45,49,48,55,46,53,57,53,49,51,55,44,52,51,46,52,55,50,50,55,57,93,44,91,45,49,48,56,46,51,51,55,56,54,49,44,52,51,46,52,53,57,55,54,53,93,44,91,45,49,48,56,46,54,57,53,48,55,50,44,52,51,46,53,51,50,50,53,53,93,44,91,45,49,48,56,46,54,57,52,54,55,50,44,52,51,46,53,55,53,55,53,53,93,44,91,45,49,48,56,46,57,51,52,49,52,49,44,52,51,46,54,49,57,49,54,51,93,44,91,45,49,48,57,46,49,55,49,54,51,56,44,52,51,46,54,49,57,55,54,52,93,44,91,45,49,48,57,46,49,55,49,52,52,56,44,52,51,46,54,57,57,49,57,56,93,44,91,45,49,48,57,46,51,49,50,57,52,57,44,52,51,46,56,49,51,50,57,51,93,44,91,45,49,48,57,46,52,52,50,51,54,49,44,52,51,46,57,51,48,52,51,52,93,44,91,45,49,48,57,46,53,52,50,51,51,50,44,52,51,46,57,54,49,51,53,50,93,44,91,45,49,48,57,46,55,56,57,57,44,52,51,46,56,48,51,50,53,50,93,44,91,45,49,48,57,46,56,56,49,57,44,52,51,46,57,52,57,48,55,54,93,44,91,45,49,49,48,46,48,53,51,49,55,57,44,52,52,46,48,48,56,48,50,50,93,44,91,45,49,49,48,46,48,53,49,53,55,44,52,51,46,52,54,52,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,51,53,56,51,50,44,51,56,46,57,50,57,53,55,56,93,44,91,45,56,52,46,56,55,48,55,52,57,44,51,56,46,57,48,48,57,48,53,93,44,91,45,56,52,46,56,55,55,54,50,52,44,51,57,46,48,51,49,50,49,51,93,44,91,45,56,53,46,49,51,50,53,48,56,44,51,56,46,57,52,56,48,53,53,93,44,91,45,56,53,46,49,51,53,56,51,50,44,51,56,46,57,50,57,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,50,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,50,53,51,50,56,44,51,51,46,54,53,48,54,50,57,93,44,91,45,56,50,46,52,51,54,56,49,52,44,51,51,46,53,52,57,54,53,56,93,44,91,45,56,50,46,50,57,52,49,55,57,44,51,51,46,51,53,52,54,51,53,93,44,91,45,56,50,46,48,50,56,50,51,56,44,51,51,46,53,52,52,57,51,52,93,44,91,45,56,50,46,49,49,53,51,50,57,44,51,51,46,53,57,54,54,49,51,93,44,91,45,56,50,46,50,49,56,54,52,57,44,51,51,46,54,56,54,50,57,57,93,44,91,45,56,50,46,51,50,57,48,52,57,44,51,51,46,54,57,55,54,55,54,93,44,91,45,56,50,46,52,50,53,51,50,56,44,51,51,46,54,53,48,54,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,101,100,103,119,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,48,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,53,51,52,54,51,44,52,49,46,48,48,50,51,51,50,93,44,91,45,49,48,50,46,54,53,49,51,49,44,52,48,46,55,52,57,52,48,50,93,44,91,45,49,48,50,46,48,53,49,52,49,54,44,52,48,46,55,52,57,53,56,54,93,44,91,45,49,48,50,46,48,53,49,55,49,55,44,52,49,46,48,48,50,51,53,57,93,44,91,45,49,48,50,46,54,50,49,48,51,51,44,52,49,46,48,48,50,53,57,55,93,44,91,45,49,48,50,46,54,53,51,52,54,51,44,52,49,46,48,48,50,51,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,77,117,115,115,101,108,115,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,48,57,53,55,44,52,54,46,55,53,48,55,48,50,93,44,91,45,49,48,57,46,48,48,57,57,56,50,44,52,54,46,54,50,49,49,55,50,93,44,91,45,49,48,56,46,57,48,52,57,48,52,44,52,54,46,53,55,54,57,48,56,93,44,91,45,49,48,56,46,56,54,50,50,55,55,44,52,54,46,51,54,52,53,56,54,93,44,91,45,49,48,56,46,55,55,57,50,55,50,44,52,54,46,50,55,55,51,57,56,93,44,91,45,49,48,56,46,55,55,57,55,51,51,44,52,54,46,49,51,50,52,53,55,93,44,91,45,49,48,56,46,52,48,52,55,57,53,44,52,54,46,49,51,50,57,53,50,93,44,91,45,49,48,56,46,52,48,52,56,53,54,44,52,54,46,50,51,53,57,54,93,44,91,45,49,48,56,46,51,50,48,56,49,50,44,52,54,46,50,54,51,57,57,55,93,44,91,45,49,48,56,46,48,50,57,51,54,51,44,52,54,46,50,54,52,48,53,53,93,44,91,45,49,48,55,46,57,50,56,53,52,55,44,52,54,46,51,57,53,50,56,52,93,44,91,45,49,48,55,46,55,56,50,48,56,55,44,52,54,46,51,57,53,49,56,50,93,44,91,45,49,48,55,46,55,56,49,50,49,52,44,52,54,46,52,57,54,48,49,52,93,44,91,45,49,48,55,46,56,50,55,54,56,55,44,52,54,46,55,53,53,56,55,53,93,44,91,45,49,48,56,46,54,51,49,52,54,50,44,52,54,46,55,52,57,51,57,50,93,44,91,45,49,48,57,46,48,48,57,53,55,44,52,54,46,55,53,48,55,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,97,117,112,104,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,53,49,53,44,34,98,101,100,115,34,58,54,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,44,91,45,55,54,46,57,52,57,51,57,55,44,52,48,46,52,54,57,48,51,55,93,44,91,45,55,55,46,48,50,56,54,52,53,44,52,48,46,51,57,49,49,57,55,93,44,91,45,55,54,46,57,49,52,57,55,44,52,48,46,51,50,56,52,56,52,93,44,91,45,55,54,46,56,53,57,48,50,51,44,52,48,46,50,50,54,51,50,56,93,44,91,45,55,54,46,55,50,49,54,50,44,52,48,46,49,50,48,48,55,93,44,91,45,55,54,46,53,54,54,51,51,57,44,52,48,46,49,57,54,54,52,52,93,44,91,45,55,54,46,54,55,56,48,52,44,52,48,46,52,55,52,55,49,55,93,44,91,45,55,54,46,53,51,53,52,49,52,44,52,48,46,53,53,53,49,53,55,93,44,91,45,55,54,46,55,48,49,54,50,52,44,52,48,46,54,53,56,48,56,50,93,44,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,111,111,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,48,54,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,56,57,50,49,54,44,52,52,46,49,57,53,55,48,53,93,44,91,45,57,54,46,56,56,56,54,54,52,44,52,51,46,56,52,56,51,56,53,93,44,91,45,57,54,46,52,53,50,57,56,56,44,52,51,46,56,52,57,53,48,55,93,44,91,45,57,54,46,52,53,50,55,55,51,44,52,52,46,49,57,54,55,56,93,44,91,45,57,54,46,56,56,57,50,49,54,44,52,52,46,49,57,53,55,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,54,53,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,53,49,50,55,44,51,56,46,52,55,52,53,52,55,93,44,91,45,56,50,46,48,52,55,49,50,56,44,51,56,46,51,55,52,52,51,50,93,44,91,45,56,49,46,57,49,53,49,57,55,44,51,56,46,51,50,53,53,57,55,93,44,91,45,56,49,46,57,48,48,50,50,50,44,51,56,46,51,57,56,53,55,50,93,44,91,45,56,49,46,55,50,53,56,48,49,44,51,56,46,52,54,54,54,50,93,44,91,45,56,49,46,55,53,48,53,52,55,44,51,56,46,53,57,49,48,49,52,93,44,91,45,56,49,46,54,57,54,51,52,56,44,51,56,46,54,50,54,52,50,55,93,44,91,45,56,49,46,55,55,50,56,52,51,44,51,56,46,54,56,48,56,52,51,93,44,91,45,56,49,46,57,53,53,55,57,49,44,51,56,46,54,53,55,51,53,53,93,44,91,45,56,50,46,48,54,52,53,54,50,44,51,56,46,54,48,55,57,56,53,93,44,91,45,56,50,46,48,53,53,49,50,55,44,51,56,46,52,55,52,53,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,83,117,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,50,57,56,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,57,54,54,57,48,54,44,52,49,46,48,57,52,52,49,93,44,91,45,55,52,46,55,54,57,52,50,53,44,52,48,46,57,49,48,57,51,52,93,44,91,45,55,52,46,54,52,48,54,52,51,44,52,48,46,57,54,53,51,51,56,93,44,91,45,55,52,46,53,48,51,50,49,50,44,52,49,46,48,56,53,56,55,51,93,44,91,45,55,52,46,51,54,55,53,49,44,52,49,46,50,48,51,50,52,49,93,44,91,45,55,52,46,54,57,52,57,49,52,44,52,49,46,51,53,55,52,50,51,93,44,91,45,55,52,46,56,51,48,48,53,55,44,52,49,46,50,56,55,50,93,44,91,45,55,52,46,56,56,50,49,51,57,44,52,49,46,49,56,48,56,51,54,93,44,91,45,55,52,46,57,57,49,55,49,56,44,52,49,46,48,57,50,50,56,52,93,44,91,45,55,52,46,57,54,54,57,48,54,44,52,49,46,48,57,52,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,101,99,97,116,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,56,49,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,51,56,56,50,53,44,52,48,46,48,48,50,49,49,54,93,44,91,45,49,48,48,46,55,52,48,56,55,51,44,51,57,46,53,54,56,48,52,51,93,44,91,45,49,48,48,46,55,50,48,50,49,51,44,51,57,46,53,54,56,48,51,52,93,44,91,45,49,48,48,46,49,56,48,51,53,49,44,51,57,46,53,54,54,56,57,93,44,91,45,49,48,48,46,49,55,55,55,57,52,44,52,48,46,48,48,49,54,48,50,93,44,91,45,49,48,48,46,49,57,51,53,57,57,44,52,48,46,48,48,49,54,54,51,93,44,91,45,49,48,48,46,55,51,56,56,50,53,44,52,48,46,48,48,50,49,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,52,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,55,57,49,52,57,55,44,51,56,46,50,48,53,49,51,93,44,91,45,56,54,46,55,54,55,51,53,50,44,51,56,46,48,53,54,57,50,52,93,44,91,45,56,54,46,56,49,52,55,52,52,44,51,55,46,57,57,56,55,48,52,93,44,91,45,56,54,46,54,53,53,50,55,50,44,51,55,46,56,52,50,53,50,49,93,44,91,45,56,54,46,53,48,55,48,56,57,44,51,55,46,57,50,57,57,49,55,93,44,91,45,56,54,46,52,57,48,56,53,52,44,51,56,46,48,52,53,55,51,53,93,44,91,45,56,54,46,52,54,49,48,50,50,44,51,56,46,49,50,49,48,56,55,93,44,91,45,56,54,46,54,55,57,53,49,49,44,51,56,46,50,54,51,48,56,54,93,44,91,45,56,54,46,55,57,49,52,57,55,44,51,56,46,50,48,53,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,53,54,44,34,98,101,100,115,34,58,49,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,52,53,54,52,53,44,51,52,46,53,56,51,50,51,52,93,44,91,45,56,57,46,50,52,54,49,51,51,44,51,52,46,52,57,53,54,51,51,93,44,91,45,56,57,46,50,52,54,51,51,57,44,51,52,46,51,55,57,51,52,52,93,44,91,45,56,56,46,56,50,52,57,54,54,44,51,52,46,51,54,52,55,53,57,93,44,91,45,56,56,46,55,51,54,52,54,53,44,51,52,46,53,48,56,57,49,93,44,91,45,56,56,46,55,51,53,52,52,44,51,52,46,53,57,54,52,56,51,93,44,91,45,56,57,46,48,56,56,52,56,56,44,51,52,46,53,57,56,50,52,55,93,44,91,45,56,57,46,50,52,53,54,52,53,44,51,52,46,53,56,51,50,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,50,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,57,56,53,53,44,52,50,46,57,57,56,53,53,57,93,44,91,45,57,57,46,50,53,52,52,53,53,44,52,50,46,57,57,56,48,55,52,93,44,91,45,57,57,46,50,53,55,48,51,57,44,52,50,46,56,48,52,50,57,54,93,44,91,45,57,56,46,57,53,52,54,51,52,44,52,50,46,56,57,52,48,55,55,93,44,91,45,57,56,46,55,49,48,48,52,56,44,52,50,46,56,48,51,52,56,93,44,91,45,57,56,46,51,48,53,49,52,57,44,52,50,46,55,54,49,50,48,55,93,44,91,45,57,56,46,51,48,57,55,55,49,44,52,50,46,56,56,50,54,48,53,93,44,91,45,57,56,46,52,57,56,53,53,44,52,50,46,57,57,56,53,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,105,108,108,101,32,76,97,99,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,50,56,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,49,48,51,54,50,44,52,54,46,49,53,54,53,56,53,93,44,91,45,57,51,46,56,49,48,51,50,49,44,52,53,46,57,56,51,48,56,93,44,91,45,57,51,46,55,54,51,57,52,56,44,52,53,46,56,50,50,49,52,51,93,44,91,45,57,51,46,55,53,57,52,51,53,44,52,53,46,53,53,57,54,52,54,93,44,91,45,57,51,46,53,49,48,55,48,52,44,52,53,46,53,53,56,55,55,50,93,44,91,45,57,51,46,53,49,51,54,56,51,44,52,53,46,55,51,52,51,49,56,93,44,91,45,57,51,46,53,49,56,48,56,44,52,53,46,57,56,49,55,56,57,93,44,91,45,57,51,46,52,51,50,52,57,50,44,52,53,46,57,56,49,51,57,56,93,44,91,45,57,51,46,52,51,49,56,51,49,44,52,54,46,49,53,51,57,57,49,93,44,91,45,57,51,46,52,51,48,54,52,56,44,52,54,46,50,52,54,52,49,50,93,44,91,45,57,51,46,55,57,54,50,56,49,44,52,54,46,50,52,51,49,57,57,93,44,91,45,57,51,46,56,49,48,51,54,50,44,52,54,46,49,53,54,53,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,87,97,108,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,50,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,49,56,48,51,54,44,52,56,46,53,52,51,55,55,51,93,44,91,45,57,56,46,50,57,50,49,56,52,44,52,56,46,49,57,53,49,55,55,93,44,91,45,57,55,46,57,48,51,51,49,51,44,52,56,46,49,57,52,56,52,53,93,44,91,45,57,55,46,49,52,49,50,50,49,44,52,56,46,49,57,51,55,49,50,93,44,91,45,57,55,46,49,49,54,53,55,44,52,56,46,50,55,57,54,54,49,93,44,91,45,57,55,46,49,54,49,51,57,51,44,52,56,46,53,52,50,51,52,56,93,44,91,45,57,55,46,57,50,55,48,54,57,44,52,56,46,53,52,51,49,50,52,93,44,91,45,57,56,46,51,49,56,48,51,54,44,52,56,46,53,52,51,55,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,55,54,54,51,57,44,51,57,46,55,55,48,57,54,93,44,91,45,56,50,46,48,50,52,50,49,57,44,51,57,46,55,50,52,54,56,54,93,44,91,45,56,50,46,48,52,55,53,50,56,44,51,57,46,53,53,48,56,50,53,93,44,91,45,56,50,46,48,53,53,55,55,57,44,51,57,46,52,54,48,48,53,51,93,44,91,45,56,49,46,56,52,52,56,54,51,44,51,57,46,52,53,48,50,49,54,93,44,91,45,56,49,46,55,48,56,53,50,55,44,51,57,46,52,56,48,55,55,53,93,44,91,45,56,49,46,54,56,56,56,56,52,44,51,57,46,53,57,48,53,49,49,93,44,91,45,56,49,46,53,56,56,49,56,53,44,51,57,46,53,56,54,57,55,51,93,44,91,45,56,49,46,54,57,55,52,52,50,44,51,57,46,55,53,53,53,55,50,93,44,91,45,56,50,46,48,55,54,54,51,57,44,51,57,46,55,55,48,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,80,111,114,116,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,54,52,52,44,34,98,101,100,115,34,58,51,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,57,49,54,57,52,44,52,49,46,51,52,56,50,55,50,93,44,91,45,56,49,46,51,57,51,50,52,57,44,52,48,46,57,56,56,53,51,49,93,44,91,45,56,49,46,48,56,54,51,49,50,44,52,48,46,57,56,56,48,51,49,93,44,91,45,56,49,46,48,48,49,54,57,53,44,52,48,46,57,56,55,55,56,51,93,44,91,45,56,49,46,48,48,50,50,57,44,52,49,46,49,51,52,49,56,57,93,44,91,45,56,49,46,48,48,51,51,49,57,44,52,49,46,51,52,55,56,54,93,44,91,45,56,49,46,51,57,49,54,57,52,44,52,49,46,51,52,56,50,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,85,105,110,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,48,57,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,48,52,54,55,54,54,44,52,49,46,50,53,49,54,50,55,93,44,91,45,49,49,49,46,48,52,54,56,49,53,44,52,48,46,57,57,55,56,55,53,93,44,91,45,49,49,48,46,48,52,56,52,56,51,44,52,48,46,57,57,55,50,57,53,93,44,91,45,49,49,48,46,48,52,56,44,52,49,46,53,55,56,48,49,53,93,44,91,45,49,49,49,46,48,52,53,56,51,55,44,52,49,46,53,55,57,56,52,53,93,44,91,45,49,49,49,46,48,52,54,55,54,54,44,52,49,46,50,53,49,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,72,117,109,98,111,108,100,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,48,52,44,34,98,101,100,115,34,58,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,51,48,57,53,57,56,44,52,48,46,57,54,48,51,55,56,93,44,91,45,49,49,56,46,55,56,54,55,48,53,44,52,48,46,57,54,48,56,53,93,44,91,45,49,49,56,46,55,56,54,55,51,56,44,52,48,46,56,53,53,57,50,57,93,44,91,45,49,49,55,46,54,52,52,50,50,44,52,48,46,56,53,55,56,50,52,93,44,91,45,49,49,55,46,54,52,52,51,57,57,44,52,48,46,54,56,52,51,52,51,93,44,91,45,49,49,55,46,51,48,57,52,52,49,44,52,48,46,54,56,51,53,51,55,93,44,91,45,49,49,55,46,51,48,48,53,57,55,44,52,48,46,53,50,54,49,51,54,93,44,91,45,49,49,55,46,50,52,54,55,56,56,44,52,48,46,54,52,50,52,52,53,93,44,91,45,49,49,55,46,48,49,56,54,54,52,44,52,48,46,54,52,51,48,51,53,93,44,91,45,49,49,55,46,48,49,56,52,49,57,44,52,49,46,48,48,48,50,53,52,93,44,91,45,49,49,55,46,48,49,56,50,48,52,44,52,49,46,57,57,57,55,49,53,93,44,91,45,49,49,55,46,48,50,54,50,44,52,50,46,48,48,48,49,57,53,93,44,91,45,49,49,56,46,49,57,55,51,55,49,44,52,49,46,57,57,55,51,52,52,93,44,91,45,49,49,57,46,51,50,52,49,56,52,44,52,49,46,57,57,51,57,50,51,93,44,91,45,49,49,57,46,51,50,57,55,57,49,44,52,48,46,57,54,48,51,57,52,93,44,91,45,49,49,57,46,51,48,57,53,57,56,44,52,48,46,57,54,48,51,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,55,34,44,34,78,65,77,69,34,58,34,74,105,109,32,72,111,103,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,53,52,54,54,57,44,50,55,46,50,54,57,51,57,55,93,44,91,45,57,56,46,57,53,52,50,51,44,50,54,46,55,56,53,54,57,52,93,44,91,45,57,56,46,52,50,50,54,49,54,44,50,54,46,55,56,51,53,51,53,93,44,91,45,57,56,46,52,49,55,56,56,51,44,50,55,46,48,53,53,50,56,53,93,44,91,45,57,56,46,52,54,54,53,52,50,44,50,55,46,48,53,52,55,49,49,93,44,91,45,57,56,46,53,50,51,50,56,52,44,50,55,46,50,54,53,49,53,93,44,91,45,57,56,46,53,53,50,54,49,55,44,50,55,46,51,53,57,49,48,49,93,44,91,45,57,56,46,55,57,56,51,50,51,44,50,55,46,51,53,52,48,50,57,93,44,91,45,57,56,46,55,57,56,48,56,55,44,50,55,46,50,54,56,48,49,50,93,44,91,45,57,56,46,57,53,52,54,54,57,44,50,55,46,50,54,57,51,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,101,121,101,110,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,54,53,55,49,44,51,57,46,48,52,55,48,51,56,93,44,91,45,49,48,51,46,49,54,51,48,50,53,44,51,57,46,48,51,55,54,49,93,44,91,45,49,48,51,46,49,55,50,57,52,51,44,51,56,46,54,49,50,52,53,93,44,91,45,49,48,50,46,48,52,53,48,56,50,44,51,56,46,54,49,53,49,55,50,93,44,91,45,49,48,50,46,48,52,53,50,49,50,44,51,56,46,54,57,55,53,54,55,93,44,91,45,49,48,50,46,48,52,54,53,55,49,44,51,57,46,48,52,55,48,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,108,97,99,107,97,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,55,56,56,44,34,98,101,100,115,34,58,54,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,55,52,51,55,50,49,44,52,53,46,52,51,51,50,57,52,93,44,91,45,49,50,50,46,55,52,51,55,52,49,44,52,53,46,51,51,50,48,54,55,93,44,91,45,49,50,50,46,56,54,55,56,57,49,44,52,53,46,51,49,55,51,52,53,93,44,91,45,49,50,50,46,56,52,57,57,50,53,44,52,53,46,50,53,57,54,57,55,93,44,91,45,49,50,50,46,55,52,57,55,57,51,44,52,53,46,49,57,53,50,52,50,93,44,91,45,49,50,50,46,55,56,56,53,53,52,44,52,53,46,49,51,48,49,55,54,93,44,91,45,49,50,50,46,53,57,53,53,50,51,44,52,53,46,48,49,57,54,55,57,93,44,91,45,49,50,50,46,53,48,56,49,48,54,44,52,52,46,57,49,57,53,57,57,93,44,91,45,49,50,50,46,52,48,49,48,50,49,44,52,52,46,56,56,53,55,50,93,44,91,45,49,50,49,46,55,51,52,50,50,51,44,52,52,46,56,56,53,55,50,93,44,91,45,49,50,49,46,56,48,53,54,54,55,44,52,53,46,48,48,54,49,50,52,93,44,91,45,49,50,49,46,54,53,50,48,49,56,44,52,53,46,48,56,54,55,48,54,93,44,91,45,49,50,49,46,55,52,56,52,56,53,44,52,53,46,50,48,52,52,52,93,44,91,45,49,50,49,46,54,57,54,52,55,57,44,52,53,46,50,53,55,57,50,93,44,91,45,49,50,49,46,55,48,48,52,55,51,44,52,53,46,51,55,56,53,51,49,93,44,91,45,49,50,49,46,56,49,57,53,56,55,44,52,53,46,52,54,49,54,55,53,93,44,91,45,49,50,50,46,54,52,49,53,56,44,52,53,46,52,54,49,52,56,50,93,44,91,45,49,50,50,46,55,52,51,55,50,49,44,52,53,46,52,51,51,50,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,54,51,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,53,52,53,54,52,44,51,52,46,55,50,56,57,54,50,93,44,91,45,57,52,46,52,54,49,49,52,57,44,51,52,46,53,48,55,52,53,55,93,44,91,45,57,52,46,52,55,48,51,51,49,44,51,52,46,49,57,48,49,56,51,93,44,91,45,57,52,46,50,52,51,55,51,57,44,51,52,46,49,57,50,53,48,49,93,44,91,45,57,52,46,50,53,52,54,54,56,44,51,52,46,51,53,53,52,56,49,93,44,91,45,57,51,46,57,51,53,51,55,49,44,51,52,46,51,53,48,48,57,55,93,44,91,45,57,51,46,57,51,48,53,48,57,44,51,52,46,54,54,53,54,48,56,93,44,91,45,57,52,46,48,49,56,49,54,56,44,51,52,46,54,57,50,52,54,57,93,44,91,45,57,52,46,51,49,55,54,53,57,44,51,52,46,54,57,55,52,48,56,93,44,91,45,57,52,46,52,53,52,53,54,52,44,51,52,46,55,50,56,57,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,56,48,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,44,91,45,56,52,46,49,50,50,51,52,55,44,51,50,46,53,48,53,57,50,49,93,44,91,45,56,52,46,50,53,52,54,49,51,44,51,50,46,51,55,50,48,53,51,93,44,91,45,56,52,46,49,56,49,54,53,55,44,51,50,46,50,50,57,55,48,51,93,44,91,45,56,52,46,48,50,55,54,44,51,50,46,49,55,49,49,54,53,93,44,91,45,56,51,46,57,53,56,56,49,55,44,51,50,46,50,53,50,49,48,53,93,44,91,45,56,51,46,56,52,56,51,55,57,44,51,50,46,50,57,48,57,55,93,44,91,45,56,51,46,56,52,54,54,55,54,44,51,50,46,52,54,56,53,49,52,93,44,91,45,56,52,46,48,49,56,49,52,55,44,51,50,46,53,48,54,52,48,54,93,44,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,93,93,44,91,91,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,44,91,45,56,52,46,48,48,56,52,57,44,51,50,46,53,50,49,55,54,57,93,44,91,45,56,52,46,48,48,51,51,54,51,44,51,50,46,53,50,57,57,50,55,93,44,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,50,54,48,51,49,44,52,48,46,55,51,54,56,56,53,93,44,91,45,56,55,46,53,50,54,51,54,54,44,52,48,46,52,57,49,50,51,55,93,44,91,45,56,55,46,53,50,54,53,56,57,44,52,48,46,52,55,54,56,55,54,93,44,91,45,56,55,46,48,57,51,54,55,54,44,52,48,46,52,55,53,55,52,53,93,44,91,45,56,55,46,48,57,53,51,53,55,44,52,48,46,53,54,50,56,57,53,93,44,91,45,56,55,46,48,57,56,51,57,44,52,48,46,55,51,54,53,52,49,93,44,91,45,56,55,46,50,54,55,50,57,56,44,52,48,46,55,51,54,53,56,50,93,44,91,45,56,55,46,53,50,54,48,51,49,44,52,48,46,55,51,54,56,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,48,55,55,53,51,44,51,54,46,49,53,54,50,57,51,93,44,91,45,56,52,46,55,50,48,55,50,55,44,51,53,46,57,57,52,57,49,52,93,44,91,45,56,52,46,54,56,48,54,51,51,44,51,53,46,57,48,56,52,53,52,93,44,91,45,56,52,46,52,52,54,48,53,52,44,51,53,46,57,56,53,57,56,52,93,44,91,45,56,52,46,51,52,49,56,49,50,44,51,54,46,48,52,56,57,55,55,93,44,91,45,56,52,46,52,52,49,48,51,52,44,51,54,46,49,54,51,52,55,56,93,44,91,45,56,52,46,53,54,56,55,52,49,44,51,54,46,50,51,55,48,55,55,93,44,91,45,56,52,46,55,48,48,55,56,53,44,51,54,46,51,55,48,56,50,52,93,44,91,45,56,52,46,56,54,54,49,48,52,44,51,54,46,50,57,50,57,50,56,93,44,91,45,56,52,46,57,48,55,55,53,51,44,51,54,46,49,53,54,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,48,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,48,53,55,56,50,44,52,51,46,52,57,57,51,49,57,93,44,91,45,57,56,46,54,56,48,54,56,56,44,52,51,46,51,55,51,49,53,55,93,44,91,45,57,56,46,49,48,57,52,57,50,44,52,51,46,49,57,54,56,51,56,93,44,91,45,57,56,46,49,49,52,55,53,56,44,52,51,46,52,57,56,50,57,55,93,44,91,45,57,56,46,51,50,48,53,57,53,44,52,51,46,52,57,56,54,53,49,93,44,91,45,57,56,46,55,48,53,55,56,50,44,52,51,46,52,57,57,51,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,87,111,114,99,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,53,54,52,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,54,49,50,55,54,52,44,51,56,46,50,55,56,54,50,54,93,44,91,45,55,53,46,53,52,53,56,57,56,44,51,56,46,49,55,56,55,52,93,44,91,45,55,53,46,53,52,53,56,48,54,44,51,56,46,48,56,54,55,52,57,93,44,91,45,55,53,46,54,50,52,51,52,51,44,51,55,46,57,57,52,50,48,56,93,44,91,45,55,53,46,49,54,54,52,51,53,44,51,56,46,48,50,55,56,51,52,93,44,91,45,55,52,46,57,57,57,54,50,53,44,51,56,46,51,55,49,54,54,56,93,44,91,45,55,52,46,57,56,54,50,56,50,44,51,56,46,52,53,49,54,51,50,93,44,91,45,55,53,46,51,52,49,50,57,49,44,51,56,46,52,53,50,48,51,52,93,44,91,45,55,53,46,51,48,55,48,49,49,44,51,56,46,51,53,52,55,54,93,44,91,45,55,53,46,51,54,52,54,52,49,44,51,56,46,50,57,48,51,53,57,93,44,91,45,55,53,46,54,49,50,55,54,52,44,51,56,46,50,55,56,54,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,87,97,98,97,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,53,52,54,55,53,44,51,56,46,53,55,48,50,51,93,44,91,45,56,55,46,57,52,51,48,51,52,44,51,56,46,52,52,57,50,49,54,93,44,91,45,56,55,46,57,57,48,54,50,56,44,51,56,46,50,53,57,54,50,57,93,44,91,45,56,55,46,57,56,55,57,49,49,44,51,56,46,50,53,54,57,53,55,93,44,91,45,56,55,46,56,53,49,49,51,44,51,56,46,50,55,53,49,50,93,44,91,45,56,55,46,55,52,51,54,57,49,44,51,56,46,52,49,52,51,56,55,93,44,91,45,56,55,46,54,53,49,53,50,57,44,51,56,46,53,54,56,49,54,54,93,44,91,45,56,55,46,57,49,50,50,56,54,44,51,56,46,53,55,48,49,48,52,93,44,91,45,56,55,46,57,53,52,54,55,53,44,51,56,46,53,55,48,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,117,110,116,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,55,56,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,52,51,56,52,49,44,52,49,46,48,48,50,51,48,53,93,44,91,45,56,53,46,54,51,56,53,56,55,44,52,48,46,54,53,51,49,50,57,93,44,91,45,56,53,46,52,52,56,56,50,53,44,52,48,46,54,53,51,54,48,55,93,44,91,45,56,53,46,51,51,52,54,54,55,44,52,48,46,54,53,52,52,49,51,93,44,91,45,56,53,46,51,51,54,48,51,44,52,48,46,57,49,55,48,56,50,93,44,91,45,56,53,46,51,51,53,54,52,51,44,52,49,46,48,48,53,50,53,93,44,91,45,56,53,46,54,52,51,56,52,49,44,52,49,46,48,48,50,51,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,57,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,53,49,55,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,56,48,53,51,57,44,51,56,46,52,55,51,48,51,57,93,44,91,45,56,52,46,55,52,48,53,57,52,44,51,56,46,51,53,50,52,49,53,93,44,91,45,56,52,46,55,50,53,49,54,56,44,51,56,46,49,57,53,52,50,54,93,44,91,45,56,52,46,54,50,53,48,55,57,44,51,56,46,49,49,54,51,57,55,93,44,91,45,56,52,46,52,48,49,56,52,55,44,51,56,46,50,48,55,56,56,57,93,44,91,45,56,52,46,52,52,50,54,54,49,44,51,56,46,50,56,51,50,51,54,93,44,91,45,56,52,46,52,53,57,57,48,54,44,51,56,46,51,55,56,57,57,53,93,44,91,45,56,52,46,53,53,55,51,55,53,44,51,56,46,52,57,50,57,49,55,93,44,91,45,56,52,46,53,56,48,53,51,57,44,51,56,46,52,55,51,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,68,101,99,97,116,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,44,91,45,57,52,46,48,49,52,56,48,51,44,52,48,46,56,57,55,48,51,49,93,44,91,45,57,52,46,48,49,53,52,57,50,44,52,48,46,53,55,51,57,49,52,93,44,91,45,57,51,46,55,55,52,51,52,52,44,52,48,46,53,55,55,53,52,56,93,44,91,45,57,51,46,53,53,54,56,57,57,44,52,48,46,53,56,48,50,51,53,93,44,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,87,97,98,97,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,51,49,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,52,54,52,51,54,44,52,48,46,57,57,57,49,57,53,93,44,91,45,56,53,46,57,51,57,53,50,53,44,52,48,46,54,53,48,57,57,49,93,44,91,45,56,53,46,56,54,52,55,57,49,44,52,48,46,54,53,49,54,57,51,93,44,91,45,56,53,46,54,51,56,53,56,55,44,52,48,46,54,53,51,49,50,57,93,44,91,45,56,53,46,54,52,51,56,52,49,44,52,49,46,48,48,50,51,48,53,93,44,91,45,56,53,46,54,56,52,49,56,49,44,52,49,46,48,52,54,55,49,54,93,44,91,45,56,53,46,57,52,53,53,54,49,44,52,49,46,48,52,50,56,55,54,93,44,91,45,56,53,46,57,52,54,52,51,54,44,52,48,46,57,57,57,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,48,48,49,54,44,34,98,101,100,115,34,58,49,54,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,57,50,48,57,52,44,52,49,46,50,54,52,50,48,57,93,44,91,45,56,53,46,51,48,55,55,56,49,44,52,49,46,50,54,52,49,53,56,93,44,91,45,56,53,46,51,51,53,54,52,51,44,52,49,46,48,48,53,50,53,93,44,91,45,56,53,46,51,51,54,48,51,44,52,48,46,57,49,55,48,56,50,93,44,91,45,56,53,46,48,55,51,56,54,49,44,52,48,46,57,49,55,56,50,51,93,44,91,45,56,52,46,56,48,50,57,50,50,44,52,48,46,57,50,50,53,54,56,93,44,91,45,56,52,46,56,48,51,50,53,49,44,52,48,46,57,56,57,51,57,52,93,44,91,45,56,52,46,56,48,51,53,52,52,44,52,49,46,50,53,50,53,54,50,93,44,91,45,56,52,46,56,48,51,53,56,57,44,52,49,46,50,55,49,50,55,51,93,44,91,45,56,53,46,49,57,50,48,57,52,44,52,49,46,50,54,52,50,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,53,57,53,44,34,98,101,100,115,34,58,49,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,53,57,52,53,49,44,52,49,46,52,55,57,49,53,52,93,44,91,45,56,54,46,52,54,55,49,48,56,44,52,49,46,52,55,54,52,53,57,93,44,91,45,56,54,46,52,54,54,54,48,51,44,52,49,46,52,51,50,57,54,56,93,44,91,45,56,54,46,52,54,55,48,52,54,44,52,49,46,49,55,49,52,52,50,93,44,91,45,56,54,46,48,55,55,53,53,49,44,52,49,46,49,55,50,56,54,56,93,44,91,45,56,54,46,48,53,57,50,51,44,52,49,46,52,51,53,56,49,50,93,44,91,45,56,54,46,48,53,57,52,53,49,44,52,49,46,52,55,57,49,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,84,104,111,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,56,52,54,49,50,57,44,52,50,46,48,56,56,49,54,54,93,44,91,45,49,48,48,46,56,52,50,52,53,57,44,52,49,46,55,52,48,52,48,52,93,44,91,45,49,48,48,46,55,49,49,55,49,49,44,52,49,46,55,51,57,55,54,49,93,44,91,45,49,48,48,46,50,54,53,52,55,52,44,52,49,46,55,51,57,56,53,54,93,44,91,45,49,48,48,46,50,54,55,54,50,50,44,52,50,46,48,56,54,49,52,55,93,44,91,45,49,48,48,46,56,52,54,49,50,57,44,52,50,46,48,56,56,49,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,83,105,111,117,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,49,51,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,50,53,54,57,49,44,52,54,46,50,56,52,52,49,52,93,44,91,45,49,48,49,46,51,48,51,53,49,52,44,52,54,46,49,48,53,53,48,51,93,44,91,45,49,48,49,46,52,57,54,52,50,51,44,52,54,46,48,50,51,55,50,56,93,44,91,45,49,48,49,46,54,55,55,54,49,50,44,52,54,46,48,49,50,56,55,49,93,44,91,45,49,48,49,46,56,54,49,56,50,44,52,54,46,48,54,52,55,57,52,93,44,91,45,49,48,49,46,57,57,56,51,50,55,44,52,54,46,48,53,51,50,55,52,93,44,91,45,49,48,49,46,57,57,56,55,51,51,44,52,53,46,57,52,52,54,53,51,93,44,91,45,49,48,48,46,53,49,49,57,52,57,44,52,53,46,57,52,51,55,49,50,93,44,91,45,49,48,48,46,54,50,57,49,52,53,44,52,54,46,49,52,53,54,48,56,93,44,91,45,49,48,48,46,53,53,56,53,52,57,44,52,54,46,50,52,57,57,57,51,93,44,91,45,49,48,48,46,53,57,48,49,57,57,44,52,54,46,52,50,55,56,57,52,93,44,91,45,49,48,48,46,56,49,52,56,55,51,44,52,54,46,51,56,52,55,48,49,93,44,91,45,49,48,48,46,57,49,56,57,53,44,52,54,46,51,57,52,57,56,51,93,44,91,45,49,48,49,46,48,50,53,54,57,49,44,52,54,46,50,56,52,52,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,68,105,109,109,105,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,48,57,48,50,49,44,50,56,46,54,52,48,53,54,54,93,44,91,45,49,48,48,46,49,49,52,51,51,54,44,50,56,46,54,52,56,49,50,50,93,44,91,45,49,48,48,46,49,49,51,55,49,57,44,50,56,46,49,57,55,56,49,57,93,44,91,45,57,57,46,51,57,52,49,55,55,44,50,56,46,50,48,52,54,50,55,93,44,91,45,57,57,46,51,57,53,55,51,54,44,50,56,46,54,52,48,55,56,52,93,44,91,45,57,57,46,52,48,57,48,50,49,44,50,56,46,54,52,48,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,70,105,108,108,109,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,56,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,51,48,52,50,52,44,52,51,46,56,52,54,57,51,53,93,44,91,45,57,50,46,48,55,57,50,57,50,44,52,51,46,56,52,55,48,56,93,44,91,45,57,50,46,52,52,56,57,54,53,44,52,51,46,56,51,52,49,48,53,93,44,91,45,57,50,46,52,52,56,57,52,56,44,52,51,46,53,48,48,52,53,57,93,44,91,45,57,50,46,48,55,57,56,48,50,44,52,51,46,53,48,48,54,50,49,93,44,91,45,57,49,46,55,51,48,50,49,55,44,52,51,46,53,48,48,56,48,54,93,44,91,45,57,49,46,55,51,48,52,50,52,44,52,51,46,56,52,54,57,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,51,50,54,44,34,98,101,100,115,34,58,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,57,56,50,49,53,44,51,52,46,56,50,48,55,52,54,93,44,91,45,56,49,46,52,55,56,52,53,52,44,51,52,46,56,50,49,53,48,57,93,44,91,45,56,49,46,52,50,50,55,48,54,44,51,52,46,53,55,50,48,50,57,93,44,91,45,56,48,46,56,55,55,52,57,49,44,51,52,46,53,52,51,49,52,54,93,44,91,45,56,48,46,56,54,48,50,55,52,44,51,52,46,54,57,53,56,52,55,93,44,91,45,56,48,46,56,57,56,50,49,53,44,51,52,46,56,50,48,55,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,97,99,32,113,117,105,32,80,97,114,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,55,51,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,53,50,57,52,55,44,52,53,46,50,54,56,57,50,53,93,44,91,45,57,54,46,52,53,50,48,51,53,44,52,52,46,57,55,55,54,53,93,44,91,45,57,54,46,52,53,49,52,54,50,44,52,52,46,56,48,53,53,55,93,44,91,45,57,53,46,56,52,57,48,48,57,44,52,52,46,56,48,53,51,52,55,93,44,91,45,57,53,46,56,52,55,52,53,50,44,52,52,46,56,57,49,55,57,57,93,44,91,45,57,53,46,55,51,54,54,57,54,44,52,52,46,57,51,54,48,52,93,44,91,45,57,54,46,48,51,54,54,57,56,44,52,53,46,49,53,50,50,48,54,93,44,91,45,57,54,46,49,48,51,54,49,52,44,52,53,46,49,55,54,54,55,53,93,44,91,45,57,54,46,50,56,51,49,57,53,44,52,53,46,50,52,54,51,57,49,93,44,91,45,57,54,46,52,53,50,57,52,55,44,52,53,46,50,54,56,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,97,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,51,51,54,44,34,98,101,100,115,34,58,49,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,49,53,57,49,56,52,44,52,49,46,57,57,56,51,56,50,93,44,91,45,49,49,50,46,48,51,48,52,56,51,44,52,49,46,56,49,48,48,52,55,93,44,91,45,49,49,50,46,48,53,49,55,51,55,44,52,49,46,54,57,57,53,53,50,93,44,91,45,49,49,49,46,57,57,54,54,48,54,44,52,49,46,53,53,55,53,55,50,93,44,91,45,49,49,49,46,57,49,54,53,51,52,44,52,49,46,53,51,56,53,53,52,93,44,91,45,49,49,49,46,56,56,53,52,52,51,44,52,49,46,52,50,54,51,55,52,93,44,91,45,49,49,49,46,55,50,54,49,56,49,44,52,49,46,51,55,53,57,56,54,93,44,91,45,49,49,49,46,54,54,54,53,55,54,44,52,49,46,52,50,56,56,51,93,44,91,45,49,49,49,46,53,49,48,56,51,57,44,52,49,46,52,50,51,49,93,44,91,45,49,49,49,46,52,52,50,57,52,57,44,52,49,46,53,51,49,51,54,53,93,44,91,45,49,49,49,46,52,50,54,56,53,53,44,52,49,46,54,55,55,56,54,52,93,44,91,45,49,49,49,46,53,48,55,56,48,54,44,52,49,46,57,57,57,53,53,50,93,44,91,45,49,49,50,46,49,48,57,52,52,52,44,52,49,46,57,57,55,55,57,52,93,44,91,45,49,49,50,46,49,53,57,49,56,52,44,52,49,46,57,57,56,51,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,80,105,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,51,50,48,52,51,44,52,52,46,55,49,52,51,52,53,93,44,91,45,57,50,46,54,50,50,53,51,55,44,52,52,46,54,49,54,48,53,52,93,44,91,45,57,50,46,51,49,54,49,54,57,44,52,52,46,53,52,49,48,48,57,93,44,91,45,57,50,46,49,51,53,51,44,52,52,46,53,51,57,53,56,93,44,91,45,57,50,46,49,51,53,50,48,50,44,52,52,46,54,56,52,51,55,52,93,44,91,45,57,50,46,49,51,54,51,52,56,44,52,52,46,56,53,55,56,52,56,93,44,91,45,57,50,46,55,54,57,53,48,49,44,52,52,46,56,54,50,48,48,49,93,44,91,45,57,50,46,56,48,50,48,49,55,44,52,52,46,55,52,53,54,55,51,93,44,91,45,57,50,46,55,51,50,48,52,51,44,52,52,46,55,49,52,51,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,56,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,51,49,54,57,56,44,51,49,46,48,49,48,55,49,52,93,44,91,45,56,50,46,52,49,53,54,48,51,44,51,49,46,48,49,51,53,57,93,44,91,45,56,50,46,52,50,48,52,52,50,44,51,48,46,55,57,53,50,50,57,93,44,91,45,56,50,46,49,52,57,56,55,50,44,51,48,46,55,56,52,51,51,54,93,44,91,45,56,50,46,50,49,52,54,55,55,44,51,48,46,53,54,56,53,53,54,93,44,91,45,56,50,46,50,49,48,55,51,51,44,51,48,46,52,50,53,54,52,93,44,91,45,56,50,46,49,55,48,49,57,55,44,51,48,46,51,53,56,57,55,50,93,44,91,45,56,50,46,48,52,57,57,53,56,44,51,48,46,51,54,50,52,55,50,93,44,91,45,56,50,46,48,48,53,56,49,44,51,48,46,53,54,53,51,53,56,93,44,91,45,56,50,46,48,51,57,55,57,53,44,51,48,46,55,52,55,50,57,55,93,44,91,45,56,49,46,57,48,52,56,53,53,44,51,48,46,56,50,56,51,52,93,44,91,45,56,49,46,57,51,54,48,48,54,44,51,49,46,48,52,55,57,57,51,93,44,91,45,56,50,46,48,54,48,56,55,44,51,49,46,48,55,53,56,48,57,93,44,91,45,56,50,46,49,51,49,54,57,56,44,51,49,46,48,49,48,55,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,50,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,52,54,56,55,49,44,51,52,46,48,57,54,52,49,50,93,44,91,45,56,53,46,52,50,49,56,53,50,44,51,52,46,48,56,48,56,50,50,93,44,91,45,56,53,46,51,57,56,56,51,55,44,51,51,46,57,54,52,49,50,57,93,44,91,45,56,53,46,51,56,54,53,56,49,44,51,51,46,57,48,49,55,49,57,93,44,91,45,56,53,46,48,53,48,51,49,44,51,51,46,57,48,52,52,56,56,93,44,91,45,56,52,46,57,55,56,54,56,51,44,51,51,46,57,53,49,51,57,51,93,44,91,45,56,52,46,57,50,50,55,52,50,44,51,52,46,48,56,50,52,57,55,93,44,91,45,56,53,46,48,52,54,56,55,49,44,51,52,46,48,57,54,52,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,99,76,101,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,50,49,57,44,34,98,101,100,115,34,58,51,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,54,57,51,57,55,44,52,48,46,53,57,52,51,49,56,93,44,91,45,56,57,46,50,54,51,55,52,44,52,48,46,51,50,53,51,52,52,93,44,91,45,56,57,46,49,52,56,55,54,52,44,52,48,46,50,56,50,48,51,56,93,44,91,45,56,56,46,53,55,52,56,56,53,44,52,48,46,50,56,49,53,48,49,93,44,91,45,56,56,46,52,54,48,52,49,56,44,52,48,46,50,56,49,57,51,53,93,44,91,45,56,56,46,52,53,57,57,53,55,44,52,48,46,51,57,56,56,53,93,44,91,45,56,56,46,52,53,57,52,55,53,44,52,48,46,54,49,55,51,52,53,93,44,91,45,56,56,46,53,55,52,53,48,50,44,52,48,46,54,49,54,53,53,93,44,91,45,56,56,46,53,56,52,50,55,50,44,52,48,46,55,53,55,54,48,56,93,44,91,45,56,56,46,57,50,57,51,51,49,44,52,48,46,55,53,51,51,51,55,93,44,91,45,56,56,46,57,56,52,55,50,50,44,52,48,46,54,54,52,57,53,51,93,44,91,45,56,57,46,49,51,51,55,53,50,44,52,48,46,53,57,54,55,51,52,93,44,91,45,56,57,46,50,54,57,51,57,55,44,52,48,46,53,57,52,51,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,110,100,114,111,115,99,111,103,103,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,52,52,52,44,34,98,101,100,115,34,58,52,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,50,51,56,57,48,52,44,52,52,46,52,53,56,57,52,50,93,44,91,45,55,48,46,51,51,52,48,57,52,44,52,52,46,50,49,48,55,53,51,93,44,91,45,55,48,46,52,56,48,48,55,56,44,52,52,46,48,51,50,48,55,56,93,44,91,45,55,48,46,51,49,53,51,55,52,44,52,52,46,48,51,55,56,48,55,93,44,91,45,55,48,46,49,49,53,56,54,44,52,51,46,57,48,54,55,49,93,44,91,45,55,48,46,48,51,52,50,51,56,44,52,51,46,57,55,53,54,54,49,93,44,91,45,55,48,46,48,48,53,52,55,49,44,52,52,46,49,50,52,53,49,57,93,44,91,45,55,48,46,48,55,53,55,52,55,44,52,52,46,50,48,54,49,54,56,93,44,91,45,55,48,46,49,50,57,51,57,44,52,52,46,52,56,55,50,49,55,93,44,91,45,55,48,46,50,51,56,57,48,52,44,52,52,46,52,53,56,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,75,111,111,116,101,110,97,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,54,48,53,44,34,98,101,100,115,34,58,52,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,52,50,48,56,57,44,52,55,46,57,55,55,52,53,93,44,91,45,49,49,55,46,48,51,57,56,48,56,44,52,55,46,51,54,54,48,51,49,93,44,91,45,49,49,54,46,54,50,57,48,53,57,44,52,55,46,51,55,49,52,51,56,93,44,91,45,49,49,54,46,53,56,54,53,52,57,44,52,55,46,52,49,52,54,57,53,93,44,91,45,49,49,54,46,51,50,57,52,48,54,44,52,55,46,52,49,52,48,49,49,93,44,91,45,49,49,54,46,51,50,57,53,51,56,44,52,55,46,56,57,48,51,57,51,93,44,91,45,49,49,54,46,53,48,53,49,48,52,44,52,55,46,56,57,48,49,52,50,93,44,91,45,49,49,54,46,53,48,52,51,50,57,44,52,55,46,57,57,49,51,56,54,93,44,91,45,49,49,55,46,48,52,50,48,56,57,44,52,55,46,57,55,55,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,49,53,55,52,44,34,98,101,100,115,34,58,54,55,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,56,57,54,57,50,53,44,51,54,46,56,52,50,48,56,53,93,44,91,45,49,49,53,46,56,57,53,55,53,51,44,51,54,46,49,55,50,50,50,55,93,44,91,45,49,49,53,46,56,52,53,55,54,50,44,51,54,46,49,55,48,55,54,52,93,44,91,45,49,49,53,46,56,52,53,57,57,52,44,51,53,46,57,54,51,55,48,55,93,44,91,45,49,49,53,46,54,52,56,51,53,55,44,51,53,46,56,48,57,50,49,49,93,44,91,45,49,49,52,46,54,51,51,52,56,55,44,51,53,46,48,48,49,56,53,55,93,44,91,45,49,49,52,46,53,54,57,53,50,57,44,51,53,46,49,54,50,51,49,55,93,44,91,45,49,49,52,46,53,57,53,49,54,51,44,51,53,46,51,50,49,56,56,51,93,44,91,45,49,49,52,46,54,55,56,56,57,50,44,51,53,46,53,48,49,50,55,54,93,44,91,45,49,49,52,46,55,48,56,49,49,50,44,51,53,46,57,48,57,57,51,51,93,44,91,45,49,49,52,46,55,53,52,53,48,56,44,51,54,46,48,56,54,49,55,49,93,44,91,45,49,49,52,46,54,50,55,48,55,57,44,51,54,46,49,52,48,55,54,49,93,44,91,45,49,49,52,46,51,55,48,49,56,49,44,51,54,46,49,52,50,54,50,52,93,44,91,45,49,49,52,46,50,52,51,56,54,53,44,51,54,46,48,49,53,50,54,54,93,44,91,45,49,49,52,46,49,53,51,52,44,51,54,46,48,50,51,49,55,93,44,91,45,49,49,52,46,48,52,51,57,52,52,44,51,54,46,49,57,51,51,53,93,44,91,45,49,49,52,46,48,53,48,51,53,52,44,51,54,46,56,52,51,49,52,49,93,44,91,45,49,49,52,46,55,54,50,53,48,55,44,51,54,46,56,53,51,52,55,51,93,44,91,45,49,49,53,46,55,52,48,56,52,54,44,51,54,46,56,53,51,48,56,52,93,44,91,45,49,49,53,46,56,57,54,57,50,53,44,51,54,46,56,52,50,48,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,80,104,105,108,108,105,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,48,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,50,53,51,50,52,44,52,48,46,48,48,49,56,53,57,93,44,91,45,57,57,46,54,50,55,57,53,51,44,51,57,46,53,54,55,52,51,55,93,44,91,45,57,57,46,54,48,50,49,55,54,44,51,57,46,53,54,55,51,50,56,93,44,91,45,57,57,46,48,54,54,50,50,44,51,57,46,53,54,56,49,50,53,93,44,91,45,57,57,46,48,54,55,48,52,54,44,52,48,46,48,48,50,51,52,56,93,44,91,45,57,57,46,49,55,57,49,51,52,44,52,48,46,48,48,50,48,49,51,93,44,91,45,57,57,46,54,50,53,51,50,52,44,52,48,46,48,48,49,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,72,111,108,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,52,53,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,53,55,48,51,57,44,52,50,46,56,48,52,50,57,54,93,44,91,45,57,57,46,50,52,53,56,48,51,44,52,50,46,55,56,50,52,57,57,93,44,91,45,57,57,46,50,51,52,54,50,57,44,52,50,46,48,56,55,57,57,53,93,44,91,45,57,57,46,50,50,50,55,51,51,44,52,50,46,48,56,55,57,49,54,93,44,91,45,57,56,46,55,54,49,49,53,53,44,52,50,46,48,56,56,53,49,56,93,44,91,45,57,56,46,51,48,48,53,57,50,44,52,50,46,48,56,56,56,53,51,93,44,91,45,57,56,46,51,48,48,50,51,53,44,52,50,46,52,51,54,57,49,51,93,44,91,45,57,56,46,51,48,53,49,52,57,44,52,50,46,55,54,49,50,48,55,93,44,91,45,57,56,46,55,49,48,48,52,56,44,52,50,46,56,48,51,52,56,93,44,91,45,57,56,46,57,53,52,54,51,52,44,52,50,46,56,57,52,48,55,55,93,44,91,45,57,57,46,50,53,55,48,51,57,44,52,50,46,56,48,52,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,54,56,57,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,49,49,57,48,57,54,44,51,56,46,56,51,51,49,54,55,93,44,91,45,57,52,46,49,49,57,54,54,52,44,51,56,46,53,54,56,55,49,50,93,44,91,45,57,52,46,48,54,52,51,49,55,44,51,56,46,53,54,55,51,56,93,44,91,45,57,51,46,53,49,49,48,51,44,51,56,46,53,53,54,50,49,93,44,91,45,57,51,46,52,57,55,50,55,56,44,51,56,46,57,50,56,52,51,93,44,91,45,57,51,46,56,51,52,55,49,57,44,51,56,46,57,51,55,57,48,57,93,44,91,45,57,52,46,49,49,52,49,55,53,44,51,56,46,57,49,55,51,48,52,93,44,91,45,57,52,46,49,49,57,48,57,54,44,51,56,46,56,51,51,49,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,76,97,32,67,114,111,115,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,56,53,48,44,34,98,101,100,115,34,58,54,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,50,53,49,56,56,44,52,51,46,57,56,52,51,50,50,93,44,91,45,57,49,46,50,56,52,49,51,56,44,52,51,46,56,52,55,48,54,53,93,44,91,45,57,49,46,50,53,55,56,51,57,44,52,51,46,55,50,53,54,54,49,93,44,91,45,57,48,46,57,49,48,54,53,51,44,52,51,46,55,50,53,51,51,52,93,44,91,45,57,48,46,57,49,50,57,49,56,44,52,52,46,48,55,49,53,50,50,93,44,91,45,57,48,46,57,55,51,49,48,55,44,52,52,46,48,55,48,56,56,50,93,44,91,45,57,49,46,49,53,49,57,51,50,44,52,52,46,48,55,57,54,54,53,93,44,91,45,57,49,46,51,48,55,52,55,56,44,52,52,46,48,54,52,56,55,54,93,44,91,45,57,49,46,52,50,53,49,56,56,44,52,51,46,57,56,52,51,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,97,108,100,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,57,54,44,34,98,101,100,115,34,58,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,49,50,50,49,56,44,51,50,46,49,52,54,49,50,51,93,44,91,45,57,50,46,51,49,50,54,50,51,44,51,49,46,57,50,55,51,56,50,93,44,91,45,57,50,46,48,48,53,52,51,52,44,51,49,46,57,50,55,50,57,54,93,44,91,45,57,49,46,56,56,57,54,56,55,44,51,49,46,57,55,49,52,55,52,93,44,91,45,57,49,46,56,57,52,55,50,57,44,51,50,46,49,53,49,53,53,93,44,91,45,57,49,46,57,55,50,56,56,44,51,50,46,49,54,54,55,52,50,93,44,91,45,57,50,46,48,51,52,51,57,55,44,51,50,46,50,55,55,48,54,56,93,44,91,45,57,50,46,51,49,49,56,53,49,44,51,50,46,50,55,55,52,52,49,93,44,91,45,57,50,46,51,49,50,50,49,56,44,51,50,46,49,52,54,49,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,69,100,109,111,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,57,57,49,54,53,44,51,55,46,49,54,57,56,57,54,93,44,91,45,56,54,46,50,56,49,55,53,44,51,55,46,48,56,48,53,57,55,93,44,91,45,56,54,46,49,49,51,53,49,50,44,51,55,46,48,54,49,48,55,50,93,44,91,45,56,54,46,48,53,54,52,52,51,44,51,55,46,49,54,55,50,48,56,93,44,91,45,56,54,46,49,53,55,53,56,57,44,51,55,46,51,51,53,54,52,57,93,44,91,45,56,54,46,52,54,57,49,50,54,44,51,55,46,51,50,49,48,57,57,93,44,91,45,56,54,46,51,57,57,49,54,53,44,51,55,46,49,54,57,56,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,111,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,49,50,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,53,48,51,48,57,44,51,57,46,48,50,56,49,56,53,93,44,91,45,56,57,46,53,56,54,51,52,52,44,51,57,46,48,50,56,51,50,57,93,44,91,45,56,57,46,54,51,57,50,54,53,44,51,56,46,57,57,57,49,50,57,93,44,91,45,56,57,46,53,57,55,51,50,49,44,51,56,46,55,52,51,50,51,54,93,44,91,45,56,57,46,50,53,52,49,56,53,44,51,56,46,55,52,50,48,49,56,93,44,91,45,56,57,46,50,53,48,51,48,57,44,51,57,46,48,50,56,49,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,51,52,54,57,44,52,48,46,49,48,52,52,53,53,93,44,91,45,57,48,46,57,49,54,54,54,57,44,51,57,46,56,52,52,57,50,55,93,44,91,45,57,48,46,53,55,49,52,50,52,44,51,57,46,56,51,56,57,54,49,93,44,91,45,57,48,46,53,56,51,53,51,52,44,51,57,46,56,55,54,55,53,93,44,91,45,57,48,46,53,49,51,55,52,55,44,51,57,46,57,56,55,56,57,49,93,44,91,45,57,48,46,54,48,55,49,51,52,44,51,57,46,57,56,49,54,53,56,93,44,91,45,57,48,46,54,57,54,51,53,55,44,52,48,46,49,48,51,57,53,93,44,91,45,57,48,46,57,49,51,52,54,57,44,52,48,46,49,48,52,52,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,77,99,76,101,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,56,50,53,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,53,48,50,51,57,53,44,52,52,46,56,57,50,50,57,53,93,44,91,45,57,52,46,52,57,56,48,55,52,44,52,52,46,55,49,55,49,55,49,93,44,91,45,57,52,46,52,57,55,56,51,53,44,52,52,46,54,50,57,57,50,49,93,44,91,45,57,52,46,50,53,52,55,49,57,44,52,52,46,54,51,48,51,49,49,93,44,91,45,57,52,46,50,53,52,48,55,54,44,52,52,46,55,49,55,56,53,53,93,44,91,45,57,52,46,48,49,48,52,57,52,44,52,52,46,55,49,55,52,54,52,93,44,91,45,57,52,46,48,49,50,50,51,54,44,52,52,46,57,55,56,55,49,50,93,44,91,45,57,52,46,50,53,54,48,55,52,44,52,52,46,57,55,57,52,54,53,93,44,91,45,57,52,46,53,48,49,56,56,53,44,52,52,46,57,55,57,54,57,53,93,44,91,45,57,52,46,53,48,50,51,57,53,44,52,52,46,56,57,50,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,68,117,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,52,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,53,54,52,54,53,44,52,53,46,50,48,57,53,53,52,93,44,91,45,57,50,46,49,51,54,51,52,56,44,52,52,46,56,53,55,56,52,56,93,44,91,45,57,50,46,49,51,53,50,48,50,44,52,52,46,54,56,52,51,55,52,93,44,91,45,57,49,46,54,53,48,51,54,49,44,52,52,46,54,56,51,54,51,51,93,44,91,45,57,49,46,54,53,48,52,53,53,44,52,52,46,56,53,53,57,53,49,93,44,91,45,57,49,46,54,54,53,54,52,55,44,52,53,46,50,48,55,57,57,49,93,44,91,45,57,50,46,49,53,54,52,54,53,44,52,53,46,50,48,57,53,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,52,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,55,57,54,56,57,55,44,51,56,46,50,54,53,48,52,55,93,44,91,45,49,48,53,46,54,56,54,56,51,56,44,51,56,46,49,54,54,56,52,53,93,44,91,45,49,48,53,46,53,54,48,51,49,49,44,51,55,46,57,53,49,56,56,54,93,44,91,45,49,48,53,46,52,55,51,50,48,52,44,51,55,46,56,57,53,57,55,93,44,91,45,49,48,53,46,52,49,51,54,51,53,44,51,55,46,56,57,48,53,50,55,93,44,91,45,49,48,53,46,49,54,56,54,53,50,44,51,56,46,48,49,56,57,52,54,93,44,91,45,49,48,53,46,48,52,57,57,49,55,44,51,55,46,57,49,53,52,55,57,93,44,91,45,49,48,53,46,48,52,57,50,49,53,44,51,56,46,50,53,55,57,55,51,93,44,91,45,49,48,53,46,55,57,54,56,57,55,44,51,56,46,50,54,53,48,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,48,53,44,34,98,101,100,115,34,58,49,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,51,53,48,49,54,44,51,55,46,54,52,51,54,52,49,93,44,91,45,57,48,46,53,52,57,55,50,57,44,51,55,46,51,49,55,53,57,52,93,44,91,45,57,48,46,50,49,55,54,53,55,44,51,55,46,51,49,52,57,54,55,93,44,91,45,57,48,46,49,52,53,54,57,57,44,51,55,46,51,49,50,48,57,49,93,44,91,45,57,48,46,49,52,54,55,54,51,44,51,55,46,53,57,55,52,51,52,93,44,91,45,57,48,46,49,52,54,55,55,56,44,51,55,46,54,52,49,54,49,56,93,44,91,45,57,48,46,53,51,53,48,49,54,44,51,55,46,54,52,51,54,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,53,51,34,44,34,78,65,77,69,34,58,34,78,111,108,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,54,54,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,52,54,53,52,51,44,51,50,46,53,50,50,55,57,51,93,44,91,45,49,48,48,46,54,54,48,54,50,54,44,51,50,46,53,50,53,51,49,50,93,44,91,45,49,48,48,46,54,54,53,51,53,51,44,51,50,46,48,56,53,52,48,55,93,44,91,45,49,48,48,46,50,51,53,49,51,55,44,51,50,46,48,56,50,51,55,50,93,44,91,45,49,48,48,46,49,53,49,57,49,49,44,51,50,46,48,56,50,54,51,56,93,44,91,45,49,48,48,46,49,52,54,53,52,51,44,51,50,46,53,50,50,55,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,53,51,54,44,34,98,101,100,115,34,58,49,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,52,54,50,52,49,49,44,52,49,46,54,52,49,53,56,55,93,44,91,45,55,53,46,52,52,49,52,50,49,44,52,49,46,50,54,48,48,53,51,93,44,91,45,55,53,46,53,48,53,54,48,55,44,52,49,46,50,51,50,53,51,57,93,44,91,45,55,53,46,51,53,57,49,56,52,44,52,49,46,50,51,57,50,48,54,93,44,91,45,55,53,46,48,54,57,53,53,57,44,52,49,46,54,48,49,56,55,52,93,44,91,45,55,53,46,48,53,51,50,50,55,44,52,49,46,55,53,49,54,54,50,93,44,91,45,55,53,46,49,52,54,52,52,54,44,52,49,46,56,53,48,56,57,57,93,44,91,45,55,53,46,50,55,49,50,57,51,44,52,49,46,56,56,55,51,53,56,93,44,91,45,55,53,46,51,53,57,53,55,57,44,52,49,46,57,57,57,52,52,53,93,44,91,45,55,53,46,52,56,51,49,52,57,44,52,49,46,57,57,57,50,49,52,93,44,91,45,55,53,46,52,54,50,52,49,49,44,52,49,46,54,52,49,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,83,97,114,97,116,111,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,51,55,55,44,34,98,101,100,115,34,58,50,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,49,52,48,49,52,55,44,52,51,46,50,53,51,57,55,57,93,44,91,45,55,52,46,48,57,55,52,54,55,44,52,50,46,57,56,50,57,51,52,93,44,91,45,55,52,46,48,57,50,57,56,44,52,50,46,57,53,53,56,54,56,93,44,91,45,55,52,46,48,48,53,54,53,54,44,52,50,46,57,51,51,52,56,52,93,44,91,45,55,51,46,56,48,57,51,54,57,44,52,50,46,55,55,56,56,54,57,93,44,91,45,55,51,46,54,55,54,55,54,50,44,52,50,46,55,56,51,50,55,55,93,44,91,45,55,51,46,54,51,53,52,54,51,44,52,50,46,57,52,49,50,57,93,44,91,45,55,51,46,53,55,51,51,52,50,44,52,51,46,49,48,48,53,52,53,93,44,91,45,55,51,46,53,57,52,57,54,44,52,51,46,51,48,54,49,49,56,93,44,91,45,55,51,46,55,56,57,55,51,49,44,52,51,46,50,52,52,52,50,49,93,44,91,45,55,51,46,56,56,52,49,51,57,44,52,51,46,51,57,56,48,52,49,93,44,91,45,55,52,46,49,54,48,49,44,52,51,46,51,55,49,53,51,50,93,44,91,45,55,52,46,49,52,48,49,52,55,44,52,51,46,50,53,51,57,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,66,114,97,122,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,49,57,51,44,34,98,101,100,115,34,58,54,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,54,54,57,56,51,44,51,48,46,54,57,53,54,55,93,44,91,45,57,54,46,50,56,50,53,54,52,44,51,48,46,52,50,54,54,49,52,93,44,91,45,57,54,46,50,57,57,49,55,51,44,51,48,46,51,55,57,49,53,50,93,44,91,45,57,54,46,49,53,52,54,51,44,51,48,46,51,51,48,50,56,56,93,44,91,45,57,54,46,49,48,55,51,54,44,51,48,46,52,49,55,53,56,50,93,44,91,45,57,54,46,49,56,54,52,51,57,44,51,48,46,54,48,54,49,55,53,93,44,91,45,57,54,46,49,54,56,51,55,44,51,48,46,56,50,50,57,57,55,93,44,91,45,57,54,46,50,52,49,48,50,44,51,48,46,57,55,51,55,51,55,93,44,91,45,57,54,46,51,51,56,48,48,49,44,51,48,46,57,50,48,53,51,49,93,44,91,45,57,54,46,52,53,55,54,51,44,51,48,46,55,52,52,52,55,52,93,44,91,45,57,54,46,53,54,54,57,56,51,44,51,48,46,54,57,53,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,51,52,56,52,44,51,51,46,57,53,52,52,53,51,93,44,91,45,57,54,46,56,54,54,52,51,56,44,51,51,46,56,53,51,49,52,57,93,44,91,45,57,54,46,54,57,48,55,48,56,44,51,51,46,56,52,57,57,53,57,93,44,91,45,57,54,46,53,56,56,53,48,50,44,51,51,46,56,57,52,57,56,51,93,44,91,45,57,54,46,54,49,57,57,51,57,44,51,51,46,57,57,57,52,52,57,93,44,91,45,57,54,46,53,56,53,51,53,53,44,51,52,46,49,49,52,52,53,57,93,44,91,45,57,54,46,54,54,57,57,54,51,44,51,52,46,49,55,50,53,50,49,93,44,91,45,57,54,46,57,51,51,53,48,51,44,51,52,46,49,55,50,55,52,56,93,44,91,45,57,54,46,57,54,57,54,50,55,44,51,52,46,48,55,49,48,50,93,44,91,45,57,54,46,57,51,52,56,52,44,51,51,46,57,53,52,52,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,57,55,55,44,34,98,101,100,115,34,58,51,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,50,56,52,49,54,44,51,57,46,55,50,50,55,56,51,93,44,91,45,55,57,46,48,54,55,53,53,57,44,51,57,46,52,55,57,52,52,51,93,44,91,45,55,56,46,57,53,55,51,48,49,44,51,57,46,52,52,48,48,57,53,93,44,91,45,55,56,46,55,57,53,50,54,56,44,51,57,46,54,49,48,55,93,44,91,45,55,56,46,54,53,55,48,55,51,44,51,57,46,53,51,53,49,52,49,93,44,91,45,55,56,46,52,54,56,53,56,49,44,51,57,46,53,49,54,54,49,57,93,44,91,45,55,56,46,51,51,51,56,49,57,44,51,57,46,54,51,54,55,54,50,93,44,91,45,55,56,46,51,52,50,56,51,52,44,51,57,46,55,50,50,50,54,51,93,44,91,45,55,56,46,51,56,48,53,57,57,44,51,57,46,55,50,50,53,57,57,93,44,91,45,55,56,46,56,48,56,51,56,55,44,51,57,46,55,50,50,57,49,49,93,44,91,45,55,56,46,57,50,56,52,49,54,44,51,57,46,55,50,50,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,87,101,116,122,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,51,51,53,49,51,44,51,57,46,55,50,48,56,49,50,93,44,91,45,56,48,46,57,52,51,55,56,50,44,51,57,46,54,48,54,57,50,54,93,44,91,45,56,48,46,56,52,51,55,51,49,44,51,57,46,53,56,51,56,56,53,93,44,91,45,56,48,46,55,49,54,49,50,50,44,51,57,46,52,55,53,53,51,49,93,44,91,45,56,48,46,54,49,56,54,50,57,44,51,57,46,52,53,48,51,55,53,93,44,91,45,56,48,46,53,52,52,53,50,49,44,51,57,46,52,50,57,49,50,93,44,91,45,56,48,46,52,57,52,48,56,53,44,51,57,46,52,54,57,53,57,57,93,44,91,45,56,48,46,52,57,56,49,53,56,44,51,57,46,53,54,50,56,57,57,93,44,91,45,56,48,46,51,57,53,56,49,44,51,57,46,54,51,55,51,52,55,93,44,91,45,56,48,46,52,50,49,51,56,56,44,51,57,46,55,50,49,49,56,57,93,44,91,45,56,48,46,53,49,57,51,52,50,44,51,57,46,55,50,49,52,48,51,93,44,91,45,56,48,46,56,51,51,53,49,51,44,51,57,46,55,50,48,56,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,48,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,54,53,54,49,57,44,52,52,46,53,57,54,57,56,55,93,44,91,45,57,49,46,49,53,49,57,51,50,44,52,52,46,48,55,57,54,54,53,93,44,91,45,57,48,46,57,55,51,49,48,55,44,52,52,46,48,55,48,56,56,50,93,44,91,45,57,48,46,57,48,52,53,55,57,44,52,52,46,49,53,56,50,57,56,93,44,91,45,57,48,46,51,49,50,53,50,50,44,52,52,46,49,53,53,49,57,56,93,44,91,45,57,48,46,51,49,50,54,56,44,52,52,46,50,52,56,55,53,93,44,91,45,57,48,46,51,49,54,48,53,53,44,52,52,46,52,50,52,53,48,50,93,44,91,45,57,48,46,56,48,49,57,49,56,44,52,52,46,52,50,50,52,52,50,93,44,91,45,57,48,46,56,48,49,53,50,53,44,52,52,46,53,48,57,54,56,49,93,44,91,45,57,48,46,57,50,50,51,53,44,52,52,46,53,57,54,50,57,51,93,44,91,45,57,49,46,49,54,53,54,49,57,44,52,52,46,53,57,54,57,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,108,97,116,115,111,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,53,54,50,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,49,53,57,53,52,54,44,52,54,46,50,54,49,49,51,50,93,44,91,45,49,50,52,46,48,54,55,51,49,51,44,52,54,46,49,56,51,56,52,57,93,44,91,45,49,50,52,46,48,48,56,49,50,53,44,52,54,46,48,48,57,57,52,93,44,91,45,49,50,52,46,48,54,53,52,52,56,44,52,53,46,55,56,51,48,53,52,93,44,91,45,49,50,51,46,51,54,49,54,50,50,44,52,53,46,55,55,57,53,55,57,93,44,91,45,49,50,51,46,51,54,51,55,52,51,44,52,54,46,49,52,54,51,51,51,93,44,91,45,49,50,51,46,52,55,57,54,52,52,44,52,54,46,50,54,57,49,51,49,93,44,91,45,49,50,51,46,55,50,56,51,49,54,44,52,54,46,50,54,52,53,52,49,93,44,91,45,49,50,51,46,56,55,49,56,54,57,44,52,54,46,50,51,52,57,52,57,93,44,91,45,49,50,51,46,57,55,54,50,55,53,44,52,54,46,50,54,57,57,48,55,93,44,91,45,49,50,52,46,49,53,57,53,52,54,44,52,54,46,50,54,49,49,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,57,52,55,44,34,98,101,100,115,34,58,49,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,51,55,48,57,53,44,52,54,46,55,57,50,49,50,57,93,44,91,45,49,50,51,46,51,53,56,51,51,52,44,52,54,46,51,56,52,48,50,53,93,44,91,45,49,50,51,46,50,49,55,57,53,44,52,54,46,51,56,53,54,49,55,93,44,91,45,49,50,50,46,50,52,48,57,54,54,44,52,54,46,51,56,53,51,54,49,93,44,91,45,49,50,49,46,53,50,50,51,50,52,44,52,54,46,51,56,56,50,50,52,93,44,91,45,49,50,49,46,51,57,55,48,49,54,44,52,54,46,51,56,56,48,56,51,93,44,91,45,49,50,49,46,52,53,49,50,53,54,44,52,54,46,53,51,51,56,57,52,93,44,91,45,49,50,49,46,51,55,54,55,53,55,44,52,54,46,55,48,52,54,53,56,93,44,91,45,49,50,49,46,52,53,53,50,49,56,44,52,54,46,55,56,51,55,57,55,93,44,91,45,49,50,49,46,55,53,56,53,57,51,44,52,54,46,55,56,51,55,57,49,93,44,91,45,49,50,49,46,56,52,49,56,57,44,52,54,46,55,50,56,52,53,53,93,44,91,45,49,50,50,46,50,48,51,49,49,53,44,52,54,46,55,54,51,48,54,49,93,44,91,45,49,50,51,46,49,54,48,57,48,57,44,52,54,46,55,54,52,51,51,93,44,91,45,49,50,51,46,49,54,48,53,56,56,44,52,54,46,55,57,51,51,56,51,93,44,91,45,49,50,51,46,51,55,48,57,53,44,52,54,46,55,57,50,49,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,48,50,53,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,48,56,56,51,57,44,52,50,46,53,50,49,50,49,55,93,44,91,45,55,56,46,51,48,56,49,50,56,44,52,49,46,57,57,57,52,49,53,93,44,91,45,55,56,46,50,48,54,54,48,52,44,52,49,46,57,57,57,53,57,53,93,44,91,45,55,55,46,55,52,57,57,51,49,44,52,49,46,57,57,56,55,56,50,93,44,91,45,55,55,46,55,50,50,57,54,52,44,52,50,46,52,55,49,50,49,54,93,44,91,45,55,55,46,56,52,48,57,48,49,44,52,50,46,53,49,55,55,54,55,93,44,91,45,55,56,46,48,51,56,50,54,49,44,52,50,46,53,50,49,53,50,50,93,44,91,45,55,56,46,51,48,56,56,51,57,44,52,50,46,53,50,49,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,101,100,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,54,54,50,50,49,44,52,49,46,56,54,48,48,54,57,93,44,91,45,57,49,46,51,54,54,52,52,56,44,52,49,46,53,57,56,51,55,51,93,44,91,45,57,48,46,56,57,57,56,53,51,44,52,49,46,53,57,55,49,51,51,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,49,46,55,55,49,51,57,50,93,44,91,45,57,48,46,56,57,56,52,56,52,44,52,49,46,57,52,54,50,52,53,93,44,91,45,57,49,46,51,54,53,56,55,55,44,52,49,46,57,52,55,52,49,93,44,91,45,57,49,46,51,54,54,50,50,49,44,52,49,46,56,54,48,48,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,52,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,48,56,55,48,49,44,51,56,46,54,56,56,49,48,49,93,44,91,45,56,54,46,54,56,51,49,48,50,44,51,56,46,54,56,54,53,54,49,93,44,91,45,56,54,46,54,56,50,51,53,57,44,51,56,46,53,50,54,51,55,56,93,44,91,45,56,54,46,54,56,49,52,50,52,44,51,56,46,51,57,52,55,54,55,93,44,91,45,56,54,46,51,48,56,56,54,56,44,51,56,46,51,57,52,48,54,57,93,44,91,45,56,54,46,51,48,56,54,55,52,44,51,56,46,52,50,50,56,55,53,93,44,91,45,56,54,46,51,48,56,55,48,49,44,51,56,46,54,56,56,49,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,51,49,56,55,44,34,98,101,100,115,34,58,50,51,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,55,55,48,57,51,44,51,51,46,57,53,55,54,49,52,93,44,91,45,56,52,46,51,52,55,56,49,57,44,51,51,46,57,54,51,50,56,56,93,44,91,45,56,52,46,51,53,48,50,50,52,44,51,51,46,54,52,55,57,48,56,93,44,91,45,56,52,46,50,56,49,50,55,51,44,51,51,46,54,52,55,52,49,49,93,44,91,45,56,52,46,49,56,52,49,52,51,44,51,51,46,54,52,54,49,53,55,93,44,91,45,56,52,46,49,49,48,49,50,52,44,51,51,46,54,50,53,49,49,93,44,91,45,56,52,46,48,50,51,55,49,51,44,51,51,46,55,53,50,56,48,56,93,44,91,45,56,52,46,50,53,57,56,50,50,44,51,51,46,57,49,56,57,48,49,93,44,91,45,56,52,46,50,55,55,48,57,51,44,51,51,46,57,53,55,54,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,55,34,44,34,78,65,77,69,34,58,34,80,105,99,107,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,51,50,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,53,53,53,51,44,51,52,46,53,54,50,55,51,53,93,44,91,45,56,52,46,54,53,52,51,54,54,44,51,52,46,53,52,56,57,52,54,93,44,91,45,56,52,46,54,53,51,50,51,50,44,51,52,46,52,49,50,53,57,93,44,91,45,56,52,46,53,56,50,54,51,44,51,52,46,51,56,49,52,57,50,93,44,91,45,56,52,46,50,53,55,53,56,54,44,51,52,46,51,56,48,57,57,50,93,44,91,45,56,52,46,51,52,53,53,53,51,44,51,52,46,53,54,50,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,104,111,117,116,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,56,57,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,53,51,52,50,57,53,44,52,56,46,49,51,52,53,54,52,93,44,91,45,49,48,57,46,55,50,54,57,49,52,44,52,56,46,49,51,50,56,53,57,93,44,91,45,49,48,57,46,55,50,54,57,52,51,44,52,56,46,50,50,49,53,50,53,93,44,91,45,49,48,57,46,56,52,53,57,51,50,44,52,56,46,51,48,53,57,55,49,93,44,91,45,49,49,48,46,54,50,53,52,48,57,44,52,56,46,51,48,54,52,55,57,93,44,91,45,49,49,48,46,55,53,53,56,55,51,44,52,56,46,50,49,57,54,48,49,93,44,91,45,49,49,48,46,56,50,55,49,54,56,44,52,56,46,49,51,51,50,48,53,93,44,91,45,49,49,49,46,52,48,57,48,57,55,44,52,56,46,49,51,50,50,49,56,93,44,91,45,49,49,49,46,52,48,56,53,49,52,44,52,55,46,57,56,55,49,55,56,93,44,91,45,49,49,49,46,52,48,56,56,53,44,52,55,46,54,57,56,49,50,51,93,44,91,45,49,49,48,46,57,55,54,54,54,56,44,52,55,46,54,57,56,55,51,93,44,91,45,49,49,49,46,48,52,51,56,56,49,44,52,55,46,53,57,49,53,56,51,93,44,91,45,49,49,48,46,56,54,52,54,51,44,52,55,46,53,50,52,55,49,52,93,44,91,45,49,49,48,46,55,54,57,49,50,57,44,52,55,46,52,52,54,48,57,54,93,44,91,45,49,49,48,46,54,51,57,53,53,57,44,52,55,46,52,49,54,52,56,54,93,44,91,45,49,49,48,46,50,49,51,53,57,54,44,52,55,46,52,49,54,54,53,55,93,44,91,45,49,48,57,46,56,52,53,50,50,49,44,52,55,46,53,52,54,55,57,53,93,44,91,45,49,48,57,46,56,50,51,52,48,49,44,52,55,46,55,49,53,53,55,57,93,44,91,45,49,48,57,46,53,51,56,54,55,55,44,52,55,46,55,51,56,56,54,52,93,44,91,45,49,48,57,46,53,51,52,50,57,53,44,52,56,46,49,51,52,53,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,56,56,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,55,55,54,56,52,44,52,50,46,55,51,48,57,48,51,93,44,91,45,49,48,48,46,49,51,51,57,55,56,44,52,50,46,56,48,55,56,49,57,93,44,91,45,49,48,48,46,49,57,56,52,55,56,44,52,50,46,56,52,54,49,48,50,93,44,91,45,49,48,48,46,49,54,55,54,48,53,44,52,50,46,48,56,53,56,52,56,93,44,91,45,57,57,46,54,56,54,57,53,57,44,52,50,46,48,56,54,48,55,53,93,44,91,45,57,57,46,54,54,50,51,55,57,44,52,50,46,48,56,54,48,48,57,93,44,91,45,57,57,46,54,55,55,54,56,52,44,52,50,46,55,51,48,57,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,109,112,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,56,55,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,54,49,51,51,55,44,51,54,46,53,57,49,55,56,52,93,44,91,45,56,52,46,50,53,57,53,57,51,44,51,54,46,53,49,51,57,56,53,93,44,91,45,56,52,46,51,52,57,57,51,57,44,51,54,46,52,54,54,50,57,50,93,44,91,45,56,52,46,51,50,57,57,50,55,44,51,54,46,50,56,53,48,56,54,93,44,91,45,56,52,46,51,55,50,55,51,49,44,51,54,46,50,49,54,55,55,56,93,44,91,45,56,52,46,50,50,55,53,50,55,44,51,54,46,50,52,52,56,55,57,93,44,91,45,56,52,46,48,54,57,54,49,56,44,51,54,46,50,51,48,57,55,56,93,44,91,45,56,52,46,48,48,52,51,49,55,44,51,54,46,50,55,48,51,55,56,93,44,91,45,56,51,46,57,48,53,54,51,56,44,51,54,46,52,49,57,57,55,57,93,44,91,45,56,51,46,57,56,55,54,49,53,44,51,54,46,53,56,57,52,55,49,93,44,91,45,56,52,46,50,50,55,50,57,50,44,51,54,46,53,57,50,48,52,53,93,44,91,45,56,52,46,50,54,49,51,51,55,44,51,54,46,53,57,49,55,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,57,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,48,54,57,54,53,44,51,54,46,50,54,54,49,57,49,93,44,91,45,55,56,46,52,49,50,48,57,53,44,51,54,46,49,54,57,53,57,55,93,44,91,45,55,56,46,52,57,54,54,49,52,44,51,54,46,49,55,53,49,57,57,93,44,91,45,55,56,46,53,52,54,52,49,52,44,51,54,46,48,50,49,56,50,54,93,44,91,45,55,56,46,52,50,54,56,54,52,44,51,53,46,57,55,53,48,49,50,93,44,91,45,55,56,46,50,53,53,57,55,51,44,51,53,46,56,49,56,49,50,93,44,91,45,55,56,46,48,48,54,53,53,49,44,51,54,46,50,48,50,54,51,51,93,44,91,45,55,56,46,51,48,54,57,54,53,44,51,54,46,50,54,54,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,53,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,49,48,34,44,34,78,65,77,69,34,58,34,66,97,108,116,105,109,111,114,101,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,52,55,48,48,44,34,98,101,100,115,34,58,52,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,50,57,52,56,54,44,51,57,46,50,49,56,52,48,56,93,44,91,45,55,54,46,53,50,57,55,57,51,44,51,57,46,51,55,50,48,53,56,93,44,91,45,55,54,46,55,49,49,51,49,51,44,51,57,46,51,55,49,57,51,51,93,44,91,45,55,54,46,55,49,49,48,53,52,44,51,57,46,50,55,55,56,56,57,93,44,91,45,55,54,46,54,49,56,54,49,50,44,51,57,46,50,51,55,51,57,56,93,44,91,45,55,54,46,53,50,57,52,56,54,44,51,57,46,50,49,56,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,76,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,50,57,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,53,51,55,56,44,51,56,46,53,50,49,54,53,55,93,44,91,45,57,54,46,51,53,55,50,55,55,44,51,56,46,49,55,50,54,54,93,44,91,45,57,53,46,57,53,56,56,54,50,44,51,56,46,49,55,48,57,51,57,93,44,91,45,57,53,46,57,53,48,50,56,50,44,51,56,46,52,51,52,49,48,53,93,44,91,45,57,53,46,57,52,53,57,50,52,44,51,56,46,55,51,57,49,49,50,93,44,91,45,57,54,46,51,53,50,54,49,51,44,51,56,46,55,51,57,48,50,49,93,44,91,45,57,54,46,51,53,51,55,56,44,51,56,46,53,50,49,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,52,52,44,34,98,101,100,115,34,58,49,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,57,48,56,53,49,44,52,50,46,50,49,48,52,48,53,93,44,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,44,91,45,57,52,46,55,52,52,56,55,54,44,52,49,46,56,54,50,51,57,52,93,44,91,45,57,52,46,54,50,56,55,50,52,44,52,49,46,56,54,50,55,54,51,93,44,91,45,57,52,46,54,50,56,56,48,54,44,52,50,46,50,48,57,51,57,54,93,44,91,45,57,52,46,56,53,56,52,49,50,44,52,50,46,50,48,57,54,57,50,93,44,91,45,57,53,46,48,57,48,56,53,49,44,52,50,46,50,49,48,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,84,101,110,115,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,57,50,55,49,56,44,51,50,46,50,48,51,51,52,57,93,44,91,45,57,49,46,53,49,49,51,55,52,44,51,49,46,57,51,48,48,50,53,93,44,91,45,57,49,46,53,55,53,55,50,49,44,51,49,46,56,56,50,53,54,93,44,91,45,57,49,46,53,52,52,55,57,49,44,51,49,46,55,53,49,55,51,49,93,44,91,45,57,49,46,51,56,48,50,53,52,44,51,49,46,55,51,51,50,53,53,93,44,91,45,57,49,46,51,49,55,56,54,52,44,51,49,46,55,52,57,55,54,54,93,44,91,45,57,49,46,51,52,53,50,49,52,44,51,49,46,56,52,51,56,54,49,93,44,91,45,57,49,46,50,52,56,49,52,52,44,51,49,46,56,54,57,56,52,56,93,44,91,45,57,49,46,48,51,48,50,48,55,44,51,50,46,49,49,52,51,53,51,93,44,91,45,57,49,46,48,51,48,56,49,44,51,50,46,49,50,48,54,53,93,44,91,45,57,49,46,48,53,51,53,53,53,44,51,50,46,49,50,52,52,49,50,93,44,91,45,57,49,46,49,50,52,48,52,51,44,51,50,46,50,49,49,49,48,52,93,44,91,45,57,49,46,52,57,50,55,49,56,44,51,50,46,50,48,51,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,56,55,54,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,50,50,55,49,44,51,53,46,54,48,55,55,56,51,93,44,91,45,56,52,46,52,48,57,50,50,54,44,51,53,46,51,57,56,51,55,56,93,44,91,45,56,52,46,52,57,53,53,50,57,44,51,53,46,50,56,53,52,55,50,93,44,91,45,56,52,46,50,57,50,51,54,53,44,51,53,46,50,48,54,54,57,52,93,44,91,45,56,52,46,50,49,49,51,57,53,44,51,53,46,50,54,53,54,50,49,93,44,91,45,56,52,46,48,50,57,48,54,55,44,51,53,46,50,57,50,50,52,56,93,44,91,45,56,52,46,48,50,49,52,53,50,44,51,53,46,52,48,52,50,50,51,93,44,91,45,56,51,46,57,54,49,49,48,50,44,51,53,46,52,54,51,55,53,52,93,44,91,45,56,52,46,49,56,56,51,49,57,44,51,53,46,54,49,48,53,52,57,93,44,91,45,56,52,46,50,57,57,53,52,57,44,51,53,46,54,53,55,54,55,51,93,44,91,45,56,52,46,52,56,54,55,53,52,44,51,53,46,54,53,56,51,55,54,93,44,91,45,56,52,46,53,50,53,56,53,44,51,53,46,54,50,52,49,56,54,93,44,91,45,56,52,46,53,50,50,51,55,51,44,51,53,46,54,49,56,54,50,53,93,44,91,45,56,52,46,53,50,50,55,49,44,51,53,46,54,48,55,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,52,52,54,52,44,51,56,46,50,54,50,52,49,50,93,44,91,45,49,48,50,46,48,52,50,49,53,53,44,51,55,46,55,51,56,53,52,49,93,44,91,45,49,48,49,46,53,50,55,48,54,51,44,51,55,46,55,51,54,51,49,52,93,44,91,45,49,48,49,46,53,52,50,55,53,55,44,51,55,46,56,50,55,53,57,52,93,44,91,45,49,48,49,46,53,52,50,51,49,50,44,51,56,46,50,54,51,50,48,55,93,44,91,45,49,48,49,46,53,54,55,52,56,50,44,51,56,46,50,54,51,49,52,53,93,44,91,45,49,48,50,46,48,52,52,52,54,52,44,51,56,46,50,54,50,52,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,80,111,99,97,104,111,110,116,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,44,91,45,57,52,46,57,49,51,56,57,44,52,50,46,57,48,57,55,93,44,91,45,57,52,46,57,49,52,52,56,53,44,52,50,46,53,54,48,51,48,57,93,44,91,45,57,52,46,52,52,51,48,50,52,44,52,50,46,53,53,56,56,52,51,93,44,91,45,57,52,46,52,52,51,48,56,51,44,52,50,46,54,52,53,49,54,52,93,44,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,71,101,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,53,50,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,52,53,50,48,54,56,44,52,52,46,49,53,49,52,54,53,93,44,91,45,49,49,54,46,53,55,50,50,50,52,44,52,51,46,57,56,48,52,56,53,93,44,91,45,49,49,54,46,55,49,50,53,48,49,44,52,51,46,57,56,49,51,50,54,93,44,91,45,49,49,54,46,55,49,50,54,55,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,53,49,50,53,48,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,50,56,50,48,49,57,44,52,51,46,56,48,55,51,54,53,93,44,91,45,49,49,54,46,50,55,51,48,54,57,44,52,52,46,49,53,49,50,50,55,93,44,91,45,49,49,54,46,50,49,51,56,55,49,44,52,52,46,49,53,49,51,56,55,93,44,91,45,49,49,54,46,50,49,50,57,49,44,52,52,46,51,50,52,51,55,51,93,44,91,45,49,49,54,46,49,53,55,48,50,50,44,52,52,46,52,57,56,57,50,56,93,44,91,45,49,49,54,46,50,57,57,56,55,54,44,52,52,46,52,52,52,53,55,54,93,44,91,45,49,49,54,46,51,53,56,52,57,50,44,52,52,46,49,53,49,49,53,56,93,44,91,45,49,49,54,46,52,53,50,48,54,56,44,52,52,46,49,53,49,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,73,110,100,101,112,101,110,100,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,54,52,44,34,98,101,100,115,34,58,50,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,52,57,52,52,56,44,51,53,46,56,54,55,52,49,49,93,44,91,45,57,49,46,56,51,55,49,55,57,44,51,53,46,55,48,52,57,51,50,93,44,91,45,57,49,46,55,57,51,57,53,56,44,51,53,46,53,51,52,49,49,52,93,44,91,45,57,49,46,53,56,49,56,56,44,51,53,46,53,51,48,52,52,55,93,44,91,45,57,49,46,51,54,57,53,55,44,51,53,46,53,50,54,51,54,50,93,44,91,45,57,49,46,51,53,54,50,52,54,44,51,53,46,55,48,49,49,48,55,93,44,91,45,57,49,46,49,57,56,53,53,54,44,51,53,46,56,57,48,48,50,52,93,44,91,45,57,49,46,51,53,55,50,51,44,51,53,46,56,57,48,54,50,49,93,44,91,45,57,49,46,52,54,51,49,57,56,44,51,53,46,57,51,54,56,49,93,44,91,45,57,49,46,55,49,48,52,56,51,44,51,53,46,57,52,49,55,53,56,93,44,91,45,57,49,46,56,52,57,52,52,56,44,51,53,46,56,54,55,52,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,111,110,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,50,49,51,51,54,44,51,53,46,48,49,50,50,49,93,44,91,45,57,50,46,48,55,48,56,48,53,44,51,53,46,48,49,49,56,48,50,93,44,91,45,57,50,46,48,55,56,55,49,49,44,51,52,46,55,50,57,57,56,51,93,44,91,45,57,50,46,48,50,57,53,51,57,44,51,52,46,54,50,49,50,52,56,93,44,91,45,57,50,46,48,50,57,57,57,54,44,51,52,46,52,56,57,51,53,50,93,44,91,45,57,49,46,55,48,53,49,56,53,44,51,52,46,52,56,50,54,55,93,44,91,45,57,49,46,54,55,56,48,51,55,44,51,52,46,52,56,49,57,50,93,44,91,45,57,49,46,54,52,51,48,56,44,51,52,46,54,51,54,56,54,50,93,44,91,45,57,49,46,55,48,48,56,50,56,44,51,52,46,54,55,50,48,50,57,93,44,91,45,57,49,46,54,57,51,55,48,53,44,51,52,46,57,49,57,54,48,53,93,44,91,45,57,49,46,56,48,51,55,48,51,44,51,52,46,57,50,49,53,50,52,93,44,91,45,57,49,46,56,48,50,53,48,53,44,51,53,46,48,51,48,52,50,53,93,44,91,45,57,50,46,49,49,57,55,49,57,44,51,53,46,48,54,54,52,57,51,93,44,91,45,57,50,46,49,50,49,51,51,54,44,51,53,46,48,49,50,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,50,54,53,56,55,44,52,49,46,49,54,54,48,57,93,44,91,45,56,55,46,53,50,54,50,48,56,44,52,49,46,48,49,48,51,52,49,93,44,91,45,56,55,46,53,50,54,48,51,49,44,52,48,46,55,51,54,56,56,53,93,44,91,45,56,55,46,50,54,55,50,57,56,44,52,48,46,55,51,54,53,56,50,93,44,91,45,56,55,46,50,55,53,56,56,50,44,52,49,46,50,49,56,53,57,53,93,44,91,45,56,55,46,52,49,52,52,50,49,44,52,49,46,49,54,50,50,52,56,93,44,91,45,56,55,46,53,50,54,53,56,55,44,52,49,46,49,54,54,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,49,52,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,57,56,51,57,54,44,51,52,46,52,54,48,56,56,51,93,44,91,45,56,51,46,51,53,53,50,53,49,44,51,52,46,50,50,51,55,57,52,93,44,91,45,56,51,46,50,57,55,51,49,55,44,51,52,46,50,54,52,53,56,55,93,44,91,45,56,51,46,49,49,51,51,54,44,51,52,46,50,55,51,53,51,93,44,91,45,56,51,46,48,53,49,54,51,56,44,51,52,46,52,57,51,55,48,50,93,44,91,45,56,51,46,49,48,51,54,55,51,44,51,52,46,53,51,54,54,49,55,93,44,91,45,56,51,46,49,55,55,56,51,56,44,51,52,46,52,55,55,48,49,55,93,44,91,45,56,51,46,51,57,56,51,57,54,44,51,52,46,52,54,48,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,72,101,110,100,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,49,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,54,51,55,54,51,44,50,54,46,53,49,51,51,50,52,93,44,91,45,56,49,46,50,55,49,55,54,56,44,50,54,46,53,49,55,48,54,57,93,44,91,45,56,49,46,50,54,56,53,53,44,50,54,46,50,53,51,48,52,53,93,44,91,45,56,48,46,56,55,57,56,48,57,44,50,54,46,50,53,57,52,53,53,93,44,91,45,56,48,46,56,56,49,50,51,51,44,50,54,46,51,51,51,56,48,54,93,44,91,45,56,48,46,56,56,53,54,51,57,44,50,54,46,57,53,56,57,49,57,93,44,91,45,56,48,46,57,52,53,51,53,52,44,50,54,46,55,54,57,48,52,57,93,44,91,45,56,49,46,53,54,53,57,51,49,44,50,54,46,55,54,57,53,53,50,93,44,91,45,56,49,46,53,54,51,55,54,51,44,50,54,46,53,49,51,51,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,53,34,44,34,78,65,77,69,34,58,34,84,97,108,105,97,102,101,114,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,55,57,57,55,53,44,51,51,46,53,57,57,55,57,50,93,44,91,45,56,50,46,56,49,50,57,53,56,44,51,51,46,54,53,53,56,51,54,93,44,91,45,56,50,46,56,57,48,53,57,57,44,51,51,46,54,51,50,56,55,55,93,44,91,45,56,50,46,57,52,57,48,52,54,44,51,51,46,55,51,51,51,51,51,93,44,91,45,56,50,46,57,57,53,54,48,50,44,51,51,46,54,57,51,53,56,51,93,44,91,45,56,51,46,48,49,50,56,53,51,44,51,51,46,52,54,57,49,55,56,93,44,91,45,56,50,46,56,53,49,57,53,52,44,51,51,46,52,52,51,53,52,51,93,44,91,45,56,50,46,54,55,57,57,55,53,44,51,51,46,53,57,57,55,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,50,49,48,44,34,98,101,100,115,34,58,49,52,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,49,49,53,57,49,55,44,51,48,46,49,54,48,51,52,55,93,44,91,45,57,52,46,50,48,51,55,48,57,44,51,48,46,49,56,56,56,49,57,93,44,91,45,57,52,46,50,57,50,54,50,57,44,51,48,46,49,49,55,54,55,49,93,44,91,45,57,52,46,52,52,52,57,49,44,51,48,46,49,49,51,48,49,53,93,44,91,45,57,52,46,52,52,50,50,51,53,44,50,57,46,56,56,57,53,51,56,93,44,91,45,57,52,46,51,53,55,57,55,54,44,50,57,46,56,56,55,52,54,52,93,44,91,45,57,52,46,51,53,52,56,56,44,50,57,46,53,48,54,51,50,56,93,44,91,45,57,52,46,48,51,51,53,54,53,44,50,57,46,54,50,53,48,48,50,93,44,91,45,57,51,46,56,49,52,51,53,49,44,50,57,46,53,57,54,53,55,54,93,44,91,45,57,51,46,57,50,50,55,52,52,44,50,57,46,56,49,56,56,48,56,93,44,91,45,57,51,46,56,53,52,52,49,50,44,50,57,46,56,54,53,48,53,51,93,44,91,45,57,51,46,56,54,48,49,54,57,44,50,57,46,57,55,55,51,57,55,93,44,91,45,57,52,46,48,51,49,57,55,54,44,51,48,46,48,50,56,48,49,51,93,44,91,45,57,52,46,49,49,53,57,49,55,44,51,48,46,49,54,48,51,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,77,101,97,103,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,52,57,56,48,57,53,44,52,54,46,55,54,50,53,48,50,93,44,91,45,49,49,49,46,51,50,48,49,56,49,44,52,54,46,53,54,57,52,48,49,93,44,91,45,49,49,49,46,50,52,54,53,49,57,44,52,54,46,52,51,56,49,48,57,93,44,91,45,49,49,49,46,48,53,54,57,57,54,44,52,54,46,51,57,56,49,50,50,93,44,91,45,49,49,49,46,49,49,56,49,50,51,44,52,54,46,51,49,54,57,55,93,44,91,45,49,49,49,46,48,54,49,57,53,54,44,52,54,46,49,57,50,56,51,52,93,44,91,45,49,49,48,46,55,56,51,56,51,51,44,52,54,46,49,57,50,54,57,57,93,44,91,45,49,49,48,46,50,56,49,57,49,54,44,52,54,46,49,56,52,51,57,55,93,44,91,45,49,49,48,46,50,56,49,57,55,49,44,52,54,46,50,50,48,54,48,53,93,44,91,45,49,49,48,46,50,55,51,51,51,55,44,52,54,46,55,49,48,53,48,57,93,44,91,45,49,49,48,46,52,53,52,53,54,54,44,52,54,46,54,55,57,53,52,53,93,44,91,45,49,49,48,46,54,53,50,56,55,55,44,52,54,46,56,50,51,54,50,54,93,44,91,45,49,49,48,46,57,49,51,48,51,53,44,52,54,46,57,56,48,53,53,57,93,44,91,45,49,49,49,46,48,56,52,50,56,53,44,52,55,46,48,49,48,54,49,51,93,44,91,45,49,49,49,46,53,51,57,51,55,51,44,52,55,46,48,48,48,53,53,57,93,44,91,45,49,49,49,46,54,53,56,49,51,50,44,52,54,46,57,49,51,52,50,51,93,44,91,45,49,49,49,46,54,48,51,49,53,51,44,52,54,46,56,48,57,57,52,57,93,44,91,45,49,49,49,46,52,57,56,48,57,53,44,52,54,46,55,54,50,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,76,97,32,80,108,97,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,49,48,49,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,44,91,45,49,48,56,46,48,51,51,49,52,54,44,51,55,46,52,54,52,57,52,93,44,91,45,49,48,56,46,50,48,52,56,51,54,44,51,55,46,51,52,52,48,56,93,44,91,45,49,48,56,46,50,57,49,54,55,54,44,51,55,46,50,50,50,48,48,51,93,44,91,45,49,48,56,46,50,57,48,52,53,57,44,51,55,46,49,52,53,57,55,53,93,44,91,45,49,48,56,46,51,55,57,51,48,51,44,51,54,46,57,57,57,54,48,56,93,44,91,45,49,48,55,46,52,56,49,55,51,55,44,51,55,46,48,48,48,49,50,55,93,44,91,45,49,48,55,46,52,56,50,49,51,49,44,51,55,46,52,50,50,54,55,51,93,44,91,45,49,48,55,46,52,56,50,49,55,57,44,51,55,46,54,51,57,53,48,49,93,44,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,66,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,50,50,51,54,44,34,98,101,100,115,34,58,49,49,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,49,56,54,48,54,44,51,49,46,51,50,48,50,48,50,93,44,91,45,57,55,46,57,48,55,49,44,51,49,46,48,54,57,51,55,52,93,44,91,45,57,55,46,57,49,49,54,56,52,44,51,49,46,48,51,52,57,49,57,93,44,91,45,57,55,46,56,50,56,53,49,50,44,51,48,46,57,48,54,49,56,56,93,44,91,45,57,55,46,54,50,53,50,56,56,44,51,48,46,56,55,48,52,51,93,44,91,45,57,55,46,51,49,53,53,48,55,44,51,48,46,55,53,50,51,55,49,93,44,91,45,57,55,46,50,53,57,48,56,50,44,51,48,46,56,56,57,53,57,54,93,44,91,45,57,55,46,48,55,48,49,56,56,44,51,48,46,57,56,54,50,50,93,44,91,45,57,55,46,50,55,56,49,49,51,44,51,49,46,50,55,57,55,57,57,93,44,91,45,57,55,46,52,49,56,54,48,54,44,51,49,46,51,50,48,50,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,75,101,109,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,49,52,52,49,51,44,51,50,46,57,50,54,54,93,44,91,45,56,56,46,57,49,52,53,49,54,44,51,50,46,53,55,54,57,53,53,93,44,91,45,56,56,46,51,56,56,55,57,55,44,51,50,46,53,55,56,49,50,51,93,44,91,45,56,56,46,51,52,55,56,56,55,44,51,50,46,57,50,57,48,56,50,93,44,91,45,56,56,46,56,49,50,55,56,50,44,51,50,46,57,50,53,57,55,51,93,44,91,45,56,56,46,57,49,52,52,49,51,44,51,50,46,57,50,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,56,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,55,56,54,52,54,44,51,52,46,51,52,48,56,53,49,93,44,91,45,57,51,46,52,51,52,56,56,55,44,51,52,46,48,53,50,50,57,56,93,44,91,45,57,51,46,51,55,51,52,48,54,44,51,51,46,57,53,55,48,55,93,44,91,45,57,51,46,50,57,48,53,55,49,44,51,51,46,56,52,53,49,51,51,93,44,91,45,57,51,46,49,48,52,50,57,44,51,51,46,55,55,55,48,49,49,93,44,91,45,57,50,46,56,57,51,53,51,52,44,51,51,46,56,48,57,57,52,51,93,44,91,45,57,50,46,56,56,54,50,56,53,44,51,52,46,49,53,53,56,55,55,93,44,91,45,57,51,46,48,52,50,48,50,53,44,51,52,46,49,53,57,56,53,50,93,44,91,45,57,51,46,48,51,53,48,51,57,44,51,52,46,50,51,54,54,54,52,93,44,91,45,57,51,46,51,53,54,56,52,44,51,52,46,50,56,48,51,48,54,93,44,91,45,57,51,46,52,48,56,49,50,52,44,51,52,46,51,51,57,53,50,55,93,44,91,45,57,51,46,52,55,56,54,52,54,44,51,52,46,51,52,48,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,75,108,97,109,97,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,51,49,48,44,34,98,101,100,115,34,58,49,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,52,52,55,53,51,56,44,52,49,46,57,57,55,52,54,53,93,44,91,45,49,50,48,46,56,55,57,57,50,54,44,52,49,46,57,57,51,55,54,52,93,44,91,45,49,50,48,46,56,56,51,51,50,55,44,52,50,46,55,52,52,50,49,52,93,44,91,45,49,50,49,46,51,52,57,54,55,57,44,52,50,46,55,52,54,54,52,52,93,44,91,45,49,50,49,46,51,52,56,52,55,49,44,52,51,46,51,53,54,55,53,51,93,44,91,45,49,50,49,46,51,51,50,57,54,57,44,52,51,46,54,49,54,54,52,53,93,44,91,45,49,50,50,46,48,48,50,51,54,50,44,52,51,46,54,49,53,52,57,56,93,44,91,45,49,50,50,46,49,51,48,54,56,57,44,52,51,46,53,53,55,49,52,51,93,44,91,45,49,50,50,46,49,51,50,48,51,52,44,52,51,46,52,52,48,50,50,49,93,44,91,45,49,50,50,46,48,50,50,54,54,50,44,52,51,46,51,54,50,51,48,52,93,44,91,45,49,50,49,46,57,56,48,53,53,52,44,52,51,46,50,54,53,49,56,93,44,91,45,49,50,50,46,48,57,51,55,55,54,44,52,51,46,48,55,54,50,53,55,93,44,91,45,49,50,50,46,50,56,50,53,56,53,44,52,51,46,48,54,55,55,49,57,93,44,91,45,49,50,50,46,50,56,50,55,51,44,52,50,46,57,57,54,52,57,57,93,44,91,45,49,50,50,46,50,56,57,55,52,56,44,52,50,46,48,48,56,48,57,56,93,44,91,45,49,50,49,46,52,52,55,53,51,56,44,52,49,46,57,57,55,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,79,115,119,101,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,49,48,52,44,34,98,101,100,115,34,58,49,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,52,52,55,49,50,44,52,51,46,55,48,51,52,54,54,93,44,91,45,55,54,46,54,48,53,48,49,50,44,52,51,46,50,53,51,53,55,93,44,91,45,55,54,46,52,55,57,50,50,52,44,52,51,46,50,50,55,53,49,57,93,44,91,45,55,54,46,49,54,57,48,52,55,44,52,51,46,50,52,54,54,54,56,93,44,91,45,55,53,46,57,57,51,51,57,52,44,52,51,46,49,56,51,51,55,54,93,44,91,45,55,53,46,56,56,52,50,55,53,44,52,51,46,49,53,53,53,54,50,93,44,91,45,55,53,46,56,49,52,54,50,55,44,52,51,46,52,56,51,53,55,56,93,44,91,45,55,53,46,55,53,54,50,49,51,44,52,51,46,52,55,48,51,56,56,93,44,91,45,55,53,46,55,55,52,53,53,51,44,52,51,46,54,56,56,56,56,52,93,44,91,45,55,54,46,48,50,50,48,48,51,44,52,51,46,54,54,56,49,52,51,93,44,91,45,55,54,46,54,52,52,55,49,50,44,52,51,46,55,48,51,52,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,78,97,114,97,110,106,105,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,53,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,50,55,56,48,55,54,44,49,56,46,51,50,57,57,55,53,93,44,91,45,54,54,46,51,49,51,50,57,57,44,49,56,46,50,52,57,51,50,52,93,44,91,45,54,54,46,50,54,54,52,54,54,44,49,56,46,50,52,53,50,55,93,44,91,45,54,54,46,50,48,54,49,51,53,44,49,56,46,50,55,54,54,54,93,44,91,45,54,54,46,50,48,52,55,51,52,44,49,56,46,51,49,54,48,51,53,93,44,91,45,54,54,46,50,55,56,48,55,54,44,49,56,46,51,50,57,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,53,51,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,52,51,54,49,55,44,51,52,46,50,48,48,48,48,54,93,44,91,45,56,53,46,55,51,56,57,55,53,44,51,51,46,57,54,56,52,54,93,44,91,45,56,53,46,53,51,48,48,57,52,44,51,51,46,57,52,49,52,50,51,93,44,91,45,56,53,46,51,57,56,56,51,55,44,51,51,46,57,54,52,49,50,57,93,44,91,45,56,53,46,52,50,49,56,53,50,44,51,52,46,48,56,48,56,50,50,93,44,91,45,56,53,46,52,54,50,50,48,55,44,51,52,46,50,56,54,51,56,54,93,44,91,45,56,53,46,53,49,51,54,49,50,44,51,52,46,53,50,51,56,50,53,93,44,91,45,56,53,46,54,51,54,54,52,53,44,51,52,46,51,54,54,54,50,50,93,44,91,45,56,53,46,56,52,51,54,49,55,44,51,52,46,50,48,48,48,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,97,110,100,101,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,49,49,56,49,55,44,50,57,46,54,50,55,53,49,52,93,44,91,45,57,56,46,57,56,51,55,56,55,44,50,57,46,54,50,51,52,53,93,44,91,45,57,56,46,57,50,55,49,54,49,44,50,57,46,53,54,50,50,53,93,44,91,45,57,56,46,56,48,54,53,53,50,44,50,57,46,54,57,48,55,48,57,93,44,91,45,57,56,46,55,55,56,55,56,50,44,50,57,46,55,50,48,49,54,55,93,44,91,45,57,56,46,57,49,55,55,50,53,44,50,57,46,55,56,49,51,57,56,93,44,91,45,57,57,46,49,55,54,57,56,56,44,50,57,46,56,57,53,48,54,51,93,44,91,45,57,57,46,54,48,50,55,55,54,44,50,57,46,57,48,55,54,55,57,93,44,91,45,57,57,46,54,48,51,49,51,44,50,57,46,54,50,55,49,56,49,93,44,91,45,57,57,46,52,49,49,56,49,55,44,50,57,46,54,50,55,53,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,82,111,115,101,98,117,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,53,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,55,51,56,53,52,56,44,52,54,46,52,56,49,56,48,54,93,44,91,45,49,48,55,46,49,55,52,53,51,49,44,52,54,46,52,56,50,55,49,51,93,44,91,45,49,48,55,46,49,53,51,52,52,52,44,52,54,46,51,57,53,54,49,51,93,44,91,45,49,48,55,46,48,50,56,52,50,50,44,52,54,46,51,57,53,52,54,93,44,91,45,49,48,55,46,48,48,53,53,51,52,44,52,54,46,49,51,54,54,54,57,93,44,91,45,49,48,54,46,57,51,57,48,54,55,44,52,54,46,49,51,54,54,54,55,93,44,91,45,49,48,54,46,57,51,57,48,57,53,44,52,53,46,56,55,48,48,52,49,93,44,91,45,49,48,54,46,57,49,50,57,53,57,44,52,53,46,54,56,51,57,49,53,93,44,91,45,49,48,54,46,55,50,57,53,55,49,44,52,53,46,54,55,50,56,53,93,44,91,45,49,48,54,46,55,50,57,53,52,51,44,52,53,46,51,53,49,52,56,93,44,91,45,49,48,54,46,55,54,56,48,49,52,44,52,53,46,49,55,57,55,50,56,93,44,91,45,49,48,54,46,50,55,57,55,48,57,44,52,53,46,49,55,57,55,50,56,93,44,91,45,49,48,54,46,50,51,53,55,49,54,44,52,53,46,51,53,49,55,57,54,93,44,91,45,49,48,54,46,50,51,52,53,48,50,44,52,53,46,55,56,56,53,55,56,93,44,91,45,49,48,54,46,49,57,49,55,51,52,44,52,53,46,55,56,56,54,93,44,91,45,49,48,54,46,49,57,49,54,50,57,44,52,54,46,49,51,55,49,56,51,93,44,91,45,49,48,54,46,49,53,51,52,51,51,44,52,54,46,49,51,55,50,54,93,44,91,45,49,48,54,46,49,53,53,49,52,51,44,52,54,46,52,56,51,54,51,52,93,44,91,45,49,48,54,46,49,50,48,51,54,54,44,52,54,46,52,56,51,54,52,56,93,44,91,45,49,48,54,46,49,50,48,54,51,44,52,54,46,56,51,49,52,51,56,93,44,91,45,49,48,54,46,48,56,54,52,54,51,44,52,54,46,56,52,53,56,56,49,93,44,91,45,49,48,54,46,55,50,48,49,53,55,44,52,54,46,56,53,57,54,48,51,93,44,91,45,49,48,55,46,56,57,50,50,51,51,44,52,54,46,56,53,49,50,49,53,93,44,91,45,49,48,55,46,56,50,55,54,56,55,44,52,54,46,55,53,53,56,55,53,93,44,91,45,49,48,55,46,55,56,49,50,49,52,44,52,54,46,52,57,54,48,49,52,93,44,91,45,49,48,55,46,55,51,56,53,52,56,44,52,54,46,52,56,49,56,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,48,55,56,53,49,44,51,54,46,57,57,54,49,51,52,93,44,91,45,49,48,52,46,48,48,56,56,50,51,44,51,54,46,50,49,56,49,49,53,93,44,91,45,49,48,51,46,55,57,51,57,57,49,44,51,54,46,49,55,51,57,55,50,93,44,91,45,49,48,51,46,55,57,52,53,50,53,44,51,54,46,48,56,53,55,51,56,93,44,91,45,49,48,51,46,51,54,52,57,55,55,44,51,54,46,48,56,54,48,53,93,44,91,45,49,48,51,46,51,55,53,49,49,55,44,51,53,46,55,51,57,53,49,54,93,44,91,45,49,48,51,46,48,52,49,51,52,57,44,51,53,46,55,51,57,52,51,51,93,44,91,45,49,48,51,46,48,52,49,48,54,50,44,51,54,46,48,53,53,50,50,54,93,44,91,45,49,48,51,46,48,52,49,55,49,51,44,51,54,46,53,48,48,52,51,57,93,44,91,45,49,48,51,46,48,48,50,51,53,57,44,51,54,46,53,48,48,53,53,49,93,44,91,45,49,48,51,46,48,48,50,51,50,57,44,51,55,46,48,48,48,49,53,93,44,91,45,49,48,51,46,48,56,54,49,48,50,44,51,55,46,48,48,48,49,56,56,93,44,91,45,49,48,52,46,48,48,55,56,53,49,44,51,54,46,57,57,54,49,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,83,99,104,111,111,108,99,114,97,102,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,54,57,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,52,57,51,50,44,52,54,46,53,48,52,55,53,56,93,44,91,45,56,54,46,51,54,52,57,53,51,44,52,54,46,53,48,53,56,53,50,93,44,91,45,56,54,46,51,54,52,57,56,57,44,52,54,46,51,51,49,57,50,55,93,44,91,45,56,54,46,54,49,53,51,57,55,44,52,54,46,51,51,51,50,54,51,93,44,91,45,56,54,46,54,49,53,54,48,49,44,52,54,46,49,53,56,54,57,49,93,44,91,45,56,54,46,52,57,48,49,52,50,44,52,54,46,49,53,56,49,55,56,93,44,91,45,56,54,46,52,53,57,49,49,52,44,52,53,46,56,57,54,51,54,51,93,44,91,45,56,54,46,52,54,48,55,57,55,44,52,53,46,53,56,52,52,51,51,93,44,91,45,56,53,46,56,53,53,55,54,56,44,52,53,46,53,55,56,51,56,54,93,44,91,45,56,53,46,56,54,56,50,52,49,44,52,53,46,56,49,57,55,57,53,93,44,91,45,56,53,46,56,54,53,48,50,53,44,52,54,46,50,52,52,54,51,49,93,44,91,45,56,53,46,56,54,52,57,51,50,44,52,54,46,53,48,52,55,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,85,108,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,51,48,51,44,34,98,101,100,115,34,58,51,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,56,48,54,57,51,44,52,50,46,48,49,54,51,55,53,93,44,91,45,55,52,46,52,53,51,54,56,53,44,52,49,46,56,55,53,53,57,53,93,44,91,45,55,52,46,53,55,53,48,56,54,44,52,49,46,55,52,53,50,53,56,93,44,91,45,55,52,46,51,57,53,48,55,49,44,52,49,46,54,52,52,56,55,54,93,44,91,45,55,52,46,51,54,55,48,53,53,44,52,49,46,53,57,48,57,55,55,93,44,91,45,55,51,46,57,53,51,51,48,55,44,52,49,46,53,56,57,57,55,55,93,44,91,45,55,51,46,57,54,50,50,50,49,44,52,49,46,57,48,49,48,50,93,44,91,45,55,51,46,57,50,57,54,50,54,44,52,50,46,48,55,56,55,55,56,93,44,91,45,55,51,46,57,49,48,54,55,53,44,52,50,46,49,50,55,50,57,51,93,44,91,45,55,52,46,48,48,50,52,53,44,52,50,46,49,55,54,57,57,50,93,44,91,45,55,52,46,48,55,52,55,57,55,44,52,50,46,48,57,54,53,56,57,93,44,91,45,55,52,46,51,48,55,53,55,49,44,52,50,46,49,49,52,51,52,54,93,44,91,45,55,52,46,52,53,49,55,49,51,44,52,50,46,49,54,57,50,50,53,93,44,91,45,55,52,46,55,56,48,54,57,51,44,52,50,46,48,49,54,51,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,97,109,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,55,51,54,55,44,34,98,101,100,115,34,58,49,57,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,48,53,57,57,49,51,44,51,57,46,57,57,49,53,50,57,93,44,91,45,55,53,46,49,51,57,56,51,50,44,51,57,46,56,56,56,51,49,55,93,44,91,45,55,52,46,56,55,55,50,54,44,51,57,46,54,48,56,51,53,50,93,44,91,45,55,52,46,55,51,54,50,49,54,44,51,57,46,55,50,57,55,55,53,93,44,91,45,55,52,46,57,48,50,57,54,51,44,51,57,46,55,57,49,49,48,56,93,44,91,45,55,52,46,57,51,48,55,52,53,44,51,57,46,56,56,53,57,48,56,93,44,91,45,55,53,46,48,53,57,57,49,51,44,51,57,46,57,57,49,53,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,54,57,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,48,51,53,54,57,44,51,57,46,49,49,55,53,57,50,93,44,91,45,57,48,46,53,55,48,49,54,57,44,51,56,46,57,57,51,50,57,93,44,91,45,57,48,46,52,53,48,56,49,51,44,51,56,46,57,54,55,55,54,57,93,44,91,45,57,48,46,50,55,53,55,48,50,44,51,56,46,57,50,51,53,50,57,93,44,91,45,57,48,46,49,52,53,57,56,52,44,51,56,46,57,57,57,51,48,51,93,44,91,45,57,48,46,49,52,56,49,50,49,44,51,57,46,50,54,49,57,52,55,93,44,91,45,57,48,46,51,49,51,50,56,57,44,51,57,46,49,55,52,50,56,57,93,44,91,45,57,48,46,53,54,48,48,55,49,44,51,57,46,49,56,55,52,51,93,44,91,45,57,48,46,54,48,51,53,54,57,44,51,57,46,49,49,55,53,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,97,110,111,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,52,52,57,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,51,48,54,55,44,51,55,46,55,48,53,54,55,51,93,44,91,45,55,55,46,52,57,51,57,57,44,51,55,46,55,48,49,48,48,56,93,44,91,45,55,55,46,51,56,49,55,53,53,44,51,55,46,53,57,52,53,49,51,93,44,91,45,55,55,46,50,52,48,57,56,56,44,51,55,46,53,51,56,48,56,56,93,44,91,45,55,55,46,49,50,51,54,55,53,44,51,55,46,54,50,54,56,56,49,93,44,91,45,55,55,46,51,52,53,50,49,53,44,51,55,46,55,56,57,49,55,53,93,44,91,45,55,55,46,54,52,50,53,49,56,44,51,55,46,57,57,48,54,56,56,93,44,91,45,55,55,46,54,56,55,52,54,57,44,51,56,46,48,48,55,56,48,54,93,44,91,45,55,55,46,55,57,55,51,48,54,44,51,55,46,55,50,57,51,53,56,93,44,91,45,55,55,46,54,51,48,54,55,44,51,55,46,55,48,53,54,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,87,97,108,108,97,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,55,56,49,57,53,44,51,57,46,49,51,52,55,54,49,93,44,91,45,49,48,50,46,48,52,55,49,54,49,44,51,57,46,49,51,51,49,52,55,93,44,91,45,49,48,50,46,48,52,54,53,55,49,44,51,57,46,48,52,55,48,51,56,93,44,91,45,49,48,50,46,48,52,53,50,49,50,44,51,56,46,54,57,55,53,54,55,93,44,91,45,49,48,49,46,53,54,55,48,57,52,44,51,56,46,54,57,57,54,54,57,93,44,91,45,49,48,49,46,52,56,52,51,56,51,44,51,56,46,55,48,48,49,54,54,93,44,91,45,49,48,49,46,52,55,56,49,57,53,44,51,57,46,49,51,52,55,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,103,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,57,52,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,49,50,49,49,52,44,52,55,46,50,50,51,50,54,57,93,44,91,45,56,55,46,49,49,54,49,51,56,44,52,54,46,49,53,57,48,53,93,44,91,45,56,54,46,54,49,53,54,48,49,44,52,54,46,49,53,56,54,57,49,93,44,91,45,56,54,46,54,49,53,51,57,55,44,52,54,46,51,51,51,50,54,51,93,44,91,45,56,54,46,51,54,52,57,56,57,44,52,54,46,51,51,49,57,50,55,93,44,91,45,56,54,46,51,54,52,57,53,51,44,52,54,46,53,48,53,56,53,50,93,44,91,45,56,53,46,56,54,52,57,51,50,44,52,54,46,53,48,52,55,53,56,93,44,91,45,56,53,46,56,53,52,56,54,50,44,52,55,46,51,48,53,52,56,50,93,44,91,45,56,55,46,49,49,50,54,57,53,44,52,55,46,56,49,55,57,57,56,93,44,91,45,56,55,46,49,49,50,49,49,52,44,52,55,46,50,50,51,50,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,53,48,50,57,53,44,51,54,46,52,57,56,54,49,93,44,91,45,57,50,46,49,53,54,57,57,44,51,54,46,50,54,49,50,52,56,93,44,91,45,57,49,46,54,57,49,52,51,53,44,51,54,46,50,53,51,51,48,49,93,44,91,45,57,49,46,53,54,54,48,55,56,44,51,54,46,50,52,57,57,52,53,93,44,91,45,57,49,46,53,54,53,56,54,54,44,51,54,46,51,51,55,52,93,44,91,45,57,49,46,52,53,52,52,51,55,44,51,54,46,51,51,53,52,54,53,93,44,91,45,57,49,46,52,53,48,48,48,50,44,51,54,46,52,57,55,54,53,93,44,91,45,57,49,46,54,55,50,51,52,51,44,51,54,46,52,57,57,52,54,51,93,44,91,45,57,50,46,49,50,48,52,51,44,51,54,46,52,57,56,55,93,44,91,45,57,50,46,49,53,48,50,57,53,44,51,54,46,52,57,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,53,34,44,34,78,65,77,69,34,58,34,72,105,100,97,108,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,57,51,56,57,44,34,98,101,100,115,34,58,49,52,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,56,54,55,49,53,44,50,54,46,50,53,55,53,52,50,93,44,91,45,57,56,46,52,54,50,55,49,52,44,50,54,46,50,50,53,56,48,50,93,44,91,45,57,56,46,49,57,56,52,54,54,44,50,54,46,48,53,53,51,57,55,93,44,91,45,57,56,46,48,51,56,51,54,55,44,50,54,46,48,52,50,49,48,55,93,44,91,45,57,55,46,56,54,49,56,50,50,44,50,54,46,48,54,57,57,50,49,93,44,91,45,57,55,46,56,54,49,56,55,53,44,50,54,46,51,52,56,49,53,54,93,44,91,45,57,55,46,56,54,49,57,50,44,50,54,46,52,51,51,53,55,57,93,44,91,45,57,56,46,48,48,52,49,56,57,44,50,54,46,52,52,56,55,56,52,93,44,91,45,57,55,46,57,53,55,52,48,53,44,50,54,46,54,49,49,55,54,57,93,44,91,45,57,55,46,57,56,53,52,57,52,44,50,54,46,55,56,48,57,49,55,93,44,91,45,57,56,46,51,50,48,54,55,44,50,54,46,55,56,51,48,56,49,93,44,91,45,57,56,46,53,56,54,55,49,53,44,50,54,46,50,53,55,53,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,82,111,98,101,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,52,52,50,44,34,98,101,100,115,34,58,52,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,53,48,48,50,52,44,51,52,46,54,50,49,48,53,51,93,44,91,45,55,57,46,48,55,49,50,49,49,44,51,52,46,50,57,57,51,52,50,93,44,91,45,55,56,46,57,53,49,56,48,56,44,51,52,46,52,52,56,55,53,54,93,44,91,45,55,56,46,56,54,56,57,54,49,44,51,52,46,52,56,52,55,55,56,93,44,91,45,55,56,46,56,48,53,56,51,52,44,51,52,46,54,56,57,53,54,93,44,91,45,55,56,46,57,48,49,57,57,56,44,51,52,46,56,51,53,50,54,56,93,44,91,45,55,57,46,48,51,56,55,52,55,44,51,52,46,57,53,50,55,49,53,93,44,91,45,55,57,46,49,57,49,51,57,49,44,51,52,46,56,51,51,55,49,55,93,44,91,45,55,57,46,51,52,55,56,54,56,44,51,52,46,56,51,56,53,53,51,93,44,91,45,55,57,46,51,51,48,57,52,57,44,51,52,46,55,55,51,56,50,49,93,44,91,45,55,57,46,52,54,49,53,48,54,44,51,52,46,54,51,48,51,55,57,93,44,91,45,55,57,46,52,53,48,48,50,52,44,51,52,46,54,50,49,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,78,101,119,97,121,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,49,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,44,91,45,56,54,46,48,51,55,56,56,52,44,52,51,46,56,49,53,54,49,49,93,44,91,45,56,54,46,48,51,57,52,57,49,44,52,51,46,52,54,55,52,52,55,93,44,91,45,56,54,46,48,51,56,57,53,51,44,52,51,46,50,57,51,53,49,57,93,44,91,45,56,53,46,55,57,48,52,52,56,44,52,51,46,50,57,51,48,48,51,93,44,91,45,56,53,46,53,54,50,53,51,56,44,52,51,46,50,57,52,50,55,49,93,44,91,45,56,53,46,53,54,50,51,52,56,44,52,51,46,52,54,56,49,51,93,44,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,77,111,114,114,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,49,53,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,57,57,57,53,48,49,44,52,53,46,56,49,50,53,49,55,93,44,91,45,49,50,48,46,48,48,54,53,53,53,44,52,53,46,50,53,55,55,48,54,93,44,91,45,49,49,57,46,55,57,48,54,57,57,44,52,53,46,48,54,55,56,50,51,93,44,91,45,49,49,57,46,54,55,50,50,50,56,44,52,52,46,57,57,53,49,49,55,93,44,91,45,49,49,57,46,49,54,50,57,54,54,44,52,52,46,57,57,54,50,52,49,93,44,91,45,49,49,57,46,49,52,54,52,50,52,44,52,53,46,48,56,50,57,52,93,44,91,45,49,49,57,46,49,52,53,49,52,52,44,52,53,46,53,49,53,57,48,57,93,44,91,45,49,49,57,46,50,52,56,53,52,55,44,52,53,46,54,48,49,57,51,53,93,44,91,45,49,49,57,46,52,51,52,54,52,44,52,53,46,54,48,50,57,56,53,93,44,91,45,49,49,57,46,52,51,50,49,53,44,52,53,46,57,49,56,50,55,49,93,44,91,45,49,49,57,46,53,55,49,54,48,50,44,52,53,46,57,50,53,52,55,56,93,44,91,45,49,49,57,46,54,54,57,57,55,52,44,52,53,46,56,53,54,57,48,56,93,44,91,45,49,49,57,46,56,54,56,51,49,50,44,52,53,46,56,51,54,49,57,56,93,44,91,45,49,49,57,46,57,57,57,53,48,49,44,52,53,46,56,49,50,53,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,84,111,100,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,52,48,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,53,53,53,55,44,52,54,46,51,54,56,56,56,93,44,91,45,57,53,46,49,52,53,56,56,44,52,54,46,49,48,54,55,54,49,93,44,91,45,57,53,46,49,51,57,55,51,49,44,52,53,46,55,55,51,52,49,54,93,44,91,45,57,52,46,54,52,51,57,57,44,52,53,46,55,55,51,57,53,93,44,91,45,57,52,46,54,53,51,52,54,50,44,52,54,46,51,52,56,54,55,56,93,44,91,45,57,52,46,55,51,49,52,52,50,44,52,54,46,51,54,56,54,48,53,93,44,91,45,57,53,46,49,53,53,53,55,44,52,54,46,51,54,56,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,53,55,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,49,48,48,55,54,44,51,53,46,51,55,53,50,52,50,93,44,91,45,57,51,46,57,50,48,49,53,55,44,51,53,46,50,50,57,53,56,53,93,44,91,45,57,52,46,48,50,56,56,56,54,44,51,53,46,50,49,51,56,52,49,93,44,91,45,57,52,46,48,51,49,50,51,54,44,51,53,46,49,52,48,57,48,56,93,44,91,45,57,52,46,49,52,48,53,55,49,44,51,53,46,48,57,57,54,55,56,93,44,91,45,57,52,46,48,55,52,52,52,57,44,51,53,46,48,50,54,52,51,50,93,44,91,45,57,51,46,55,48,52,56,56,53,44,51,53,46,48,49,57,55,49,53,93,44,91,45,57,51,46,55,48,54,56,52,50,44,51,53,46,49,51,52,57,52,51,93,44,91,45,57,51,46,53,50,57,55,51,57,44,51,53,46,49,52,53,52,51,51,93,44,91,45,57,51,46,52,53,55,48,50,50,44,51,53,46,50,49,53,55,56,50,93,44,91,45,57,51,46,50,55,57,57,50,57,44,51,53,46,50,49,50,53,53,54,93,44,91,45,57,51,46,50,55,56,49,51,54,44,51,53,46,51,49,55,53,48,51,93,44,91,45,57,51,46,50,57,57,48,49,44,51,53,46,51,50,55,54,52,52,93,44,91,45,57,51,46,52,51,48,52,49,44,51,53,46,52,50,51,55,51,55,93,44,91,45,57,51,46,55,49,48,48,55,54,44,51,53,46,51,55,53,50,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,52,52,49,44,34,98,101,100,115,34,58,49,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,53,53,54,44,51,53,46,52,49,57,56,49,49,93,44,91,45,56,48,46,57,53,52,56,54,44,51,53,46,52,48,48,48,55,56,93,44,91,45,56,48,46,57,52,55,51,52,52,44,51,53,46,52,56,56,52,55,51,93,44,91,45,56,48,46,57,54,48,48,50,53,44,51,53,46,53,52,55,48,50,93,44,91,45,56,49,46,53,51,53,52,48,51,44,51,53,46,53,54,56,49,51,55,93,44,91,45,56,49,46,53,51,55,53,57,57,44,51,53,46,53,54,52,50,50,56,93,44,91,45,56,49,46,52,53,53,54,44,51,53,46,52,49,57,56,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,105,108,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,55,53,57,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,52,51,52,53,44,51,51,46,53,53,50,50,53,51,93,44,91,45,57,52,46,48,52,50,57,56,55,44,51,51,46,50,55,49,50,52,50,93,44,91,45,57,52,46,48,52,50,57,54,52,44,51,51,46,48,49,57,50,49,57,93,44,91,45,57,51,46,56,49,52,53,53,51,44,51,51,46,48,49,57,51,55,49,93,44,91,45,57,51,46,56,48,52,57,51,44,51,51,46,48,49,57,51,53,55,93,44,91,45,57,51,46,56,53,57,48,56,55,44,51,51,46,48,56,57,53,51,55,93,44,91,45,57,51,46,54,56,51,55,49,53,44,51,51,46,50,56,49,48,57,50,93,44,91,45,57,51,46,55,50,50,56,54,55,44,51,51,46,52,56,49,57,54,51,93,44,91,45,57,51,46,56,50,53,56,56,52,44,51,51,46,54,48,57,56,53,51,93,44,91,45,57,51,46,57,51,53,54,48,54,44,51,51,46,53,53,48,49,55,54,93,44,91,45,57,52,46,48,52,51,52,53,44,51,51,46,53,53,50,50,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,49,49,57,52,44,34,98,101,100,115,34,58,52,51,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,49,52,52,52,54,44,50,56,46,55,56,52,57,53,53,93,44,91,45,56,49,46,54,53,56,53,57,55,44,50,56,46,55,54,54,56,55,93,44,91,45,56,49,46,54,53,55,50,54,56,44,50,56,46,51,52,55,48,57,56,93,44,91,45,56,48,46,56,54,50,57,48,56,44,50,56,46,51,52,55,52,56,55,93,44,91,45,56,48,46,56,56,53,57,48,50,44,50,56,46,53,49,48,50,51,56,93,44,91,45,56,48,46,57,56,55,50,53,44,50,56,46,54,49,50,57,57,55,93,44,91,45,56,49,46,51,50,55,56,57,44,50,56,46,54,49,48,50,55,55,93,44,91,45,56,49,46,52,53,57,55,50,56,44,50,56,46,54,52,48,49,57,54,93,44,91,45,56,49,46,52,49,52,52,52,54,44,50,56,46,55,56,52,57,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,117,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,56,54,48,56,52,53,44,51,55,46,55,55,53,53,49,55,93,44,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,44,91,45,49,48,55,46,52,56,50,49,55,57,44,51,55,46,54,51,57,53,48,49,93,44,91,45,49,48,55,46,52,56,50,50,52,53,44,51,55,46,55,54,56,51,53,51,93,44,91,45,49,48,55,46,53,54,56,56,55,53,44,51,55,46,57,54,53,48,49,53,93,44,91,45,49,48,55,46,55,51,56,50,56,51,44,51,55,46,57,48,53,52,51,50,93,44,91,45,49,48,55,46,56,54,48,56,52,53,44,51,55,46,55,55,53,53,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,55,57,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,55,53,54,51,54,44,52,50,46,52,49,54,49,53,56,93,44,91,45,49,49,49,46,56,57,54,55,50,56,44,52,50,46,50,53,54,50,55,54,93,44,91,45,49,49,50,46,49,50,54,49,57,52,44,52,50,46,50,56,53,50,50,57,93,44,91,45,49,49,50,46,49,48,57,52,52,52,44,52,49,46,57,57,55,55,57,52,93,44,91,45,49,49,49,46,53,48,55,56,48,54,44,52,49,46,57,57,57,53,53,50,93,44,91,45,49,49,49,46,53,57,53,55,52,51,44,52,50,46,48,57,52,50,49,93,44,91,45,49,49,49,46,54,50,54,49,48,52,44,52,50,46,50,48,55,53,52,50,93,44,91,45,49,49,49,46,53,54,54,54,50,56,44,52,50,46,50,55,51,53,55,52,93,44,91,45,49,49,49,46,53,57,57,50,50,55,44,52,50,46,52,49,53,51,57,53,93,44,91,45,49,49,49,46,56,55,53,54,51,54,44,52,50,46,52,49,54,49,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,48,50,50,44,34,98,101,100,115,34,58,51,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,51,55,57,50,54,44,51,51,46,56,49,49,57,52,50,93,44,91,45,56,53,46,48,53,48,56,56,57,44,51,51,46,55,49,52,54,51,50,93,44,91,45,56,53,46,51,51,56,50,51,44,51,51,46,54,53,51,49,49,55,93,44,91,45,56,53,46,51,48,52,52,51,57,44,51,51,46,52,56,50,56,56,52,93,44,91,45,56,53,46,50,57,51,56,48,53,44,51,51,46,52,50,56,48,57,56,93,44,91,45,56,53,46,48,49,53,51,53,56,44,51,51,46,52,50,53,53,48,54,93,44,91,45,56,52,46,56,53,48,55,49,51,44,51,51,46,53,49,49,52,53,55,93,44,91,45,56,52,46,56,48,56,57,51,52,44,51,51,46,53,55,52,48,56,53,93,44,91,45,56,52,46,57,48,53,55,56,56,44,51,51,46,53,55,51,51,55,56,93,44,91,45,56,52,46,57,48,49,54,56,56,44,51,51,46,55,56,48,55,48,51,93,44,91,45,56,53,46,48,51,55,57,50,54,44,51,51,46,56,49,49,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,82,105,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,50,57,54,44,34,98,101,100,115,34,58,49,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,53,56,55,49,57,44,51,57,46,53,54,54,52,48,49,93,44,91,45,57,54,46,57,54,49,54,57,51,44,51,57,46,50,50,48,48,55,54,93,44,91,45,57,54,46,56,52,57,56,55,57,44,51,57,46,50,49,57,48,49,50,93,44,91,45,57,54,46,56,53,49,52,48,57,44,51,57,46,48,56,56,49,55,54,93,44,91,45,57,54,46,53,48,48,57,54,50,44,51,57,46,48,55,50,54,56,49,93,44,91,45,57,54,46,53,48,49,49,54,54,44,51,57,46,48,52,51,54,54,54,93,44,91,45,57,54,46,51,57,48,55,57,54,44,51,57,46,48,52,51,50,53,55,93,44,91,45,57,54,46,51,56,57,48,52,54,44,51,57,46,49,55,50,56,55,56,93,44,91,45,57,54,46,53,49,54,55,44,51,57,46,49,55,49,49,51,93,44,91,45,57,54,46,55,49,57,49,53,56,44,51,57,46,51,57,52,51,51,56,93,44,91,45,57,54,46,53,56,48,51,54,50,44,51,57,46,53,54,54,51,51,50,93,44,91,45,57,54,46,56,48,54,53,52,52,44,51,57,46,53,54,54,52,50,51,93,44,91,45,57,54,46,57,53,56,55,49,57,44,51,57,46,53,54,54,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,49,51,34,44,34,78,65,77,69,34,58,34,83,99,104,108,101,105,99,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,54,49,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,53,50,49,54,44,51,49,46,48,56,55,57,57,52,93,44,91,45,49,48,48,46,54,56,56,55,54,52,44,51,49,46,48,56,54,53,55,54,93,44,91,45,49,48,48,46,57,54,50,49,55,54,44,51,49,46,48,56,50,52,57,93,44,91,45,49,48,48,46,57,54,48,53,56,55,44,51,48,46,55,48,54,48,55,49,93,44,91,45,49,48,48,46,49,49,54,50,51,52,44,51,48,46,55,49,48,51,54,54,93,44,91,45,49,48,48,46,49,49,53,50,49,54,44,51,49,46,48,56,55,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,82,117,115,115,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,48,56,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,48,48,56,57,50,44,51,55,46,49,52,50,53,53,51,93,44,91,45,56,50,46,49,52,57,51,55,53,44,51,55,46,48,52,49,54,52,49,93,44,91,45,56,50,46,51,50,55,56,51,44,51,54,46,57,55,48,57,56,50,93,44,91,45,56,50,46,52,48,54,54,51,51,44,51,54,46,56,55,54,51,53,54,93,44,91,45,56,50,46,51,51,50,48,55,56,44,51,54,46,55,48,56,57,54,57,93,44,91,45,56,49,46,57,52,57,50,55,54,44,51,54,46,56,54,52,52,55,51,93,44,91,45,56,49,46,56,51,55,48,57,54,44,51,54,46,57,50,57,48,51,57,93,44,91,45,56,49,46,55,56,48,53,52,53,44,51,54,46,57,53,56,54,50,57,93,44,91,45,56,49,46,57,48,48,56,57,50,44,51,55,46,49,52,50,53,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,108,100,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,55,55,57,44,34,98,101,100,115,34,58,49,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,49,48,53,49,54,44,51,54,46,49,49,49,53,49,49,93,44,91,45,56,49,46,55,51,53,54,55,51,44,51,54,46,48,54,55,53,56,52,93,44,91,45,56,49,46,56,48,55,49,54,50,44,51,53,46,57,54,49,57,53,53,93,44,91,45,56,49,46,53,53,53,57,57,52,44,51,53,46,55,55,55,53,51,56,93,44,91,45,56,49,46,51,54,51,55,57,54,44,51,53,46,55,54,55,56,48,50,93,44,91,45,56,49,46,51,51,52,50,55,50,44,51,53,46,55,57,54,50,56,49,93,44,91,45,56,49,46,51,50,56,51,50,52,44,51,53,46,57,57,54,53,56,51,93,44,91,45,56,49,46,53,52,53,52,56,56,44,51,54,46,49,49,55,52,55,53,93,44,91,45,56,49,46,56,49,48,53,49,54,44,51,54,46,49,49,49,53,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,55,48,53,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,57,55,54,56,52,57,44,52,51,46,57,50,55,51,56,53,93,44,91,45,49,49,49,46,57,51,52,51,53,55,44,52,51,46,55,54,54,49,54,93,44,91,45,49,49,49,46,54,50,54,48,52,51,44,52,51,46,54,50,54,55,53,54,93,44,91,45,49,49,49,46,51,57,57,55,54,53,44,52,51,46,54,50,49,57,55,54,93,44,91,45,49,49,49,46,51,57,56,55,56,49,44,52,51,46,57,50,50,56,57,93,44,91,45,49,49,49,46,53,53,56,56,51,51,44,52,51,46,56,56,51,51,48,53,93,44,91,45,49,49,49,46,57,55,54,56,52,57,44,52,51,46,57,50,55,51,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,87,97,114,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,57,50,56,44,34,98,101,100,115,34,58,51,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,49,54,56,57,51,44,51,56,46,50,52,54,48,55,55,93,44,91,45,56,55,46,52,54,55,50,56,52,44,51,56,46,49,54,53,52,48,51,93,44,91,45,56,55,46,52,53,49,49,57,57,44,51,55,46,57,52,48,57,53,52,93,44,91,45,56,55,46,51,48,50,57,51,50,44,51,55,46,56,57,55,55,53,93,44,91,45,56,55,46,50,54,56,57,57,53,44,51,55,46,56,55,56,48,50,54,93,44,91,45,56,55,46,50,50,53,55,48,49,44,51,55,46,57,55,49,54,54,55,93,44,91,45,56,55,46,48,49,55,52,53,51,44,51,56,46,49,49,56,51,48,49,93,44,91,45,56,55,46,48,49,55,52,57,44,51,56,46,50,48,51,53,56,93,44,91,45,56,55,46,48,55,51,48,54,55,44,51,56,46,50,51,50,53,57,54,93,44,91,45,56,55,46,51,49,54,56,57,51,44,51,56,46,50,52,54,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,53,50,55,55,49,44,51,55,46,49,57,50,52,51,50,93,44,91,45,56,53,46,53,50,54,56,56,49,44,51,55,46,49,48,57,52,53,93,44,91,45,56,53,46,52,53,49,56,51,44,51,54,46,57,51,56,49,51,56,93,44,91,45,56,53,46,50,51,50,48,50,54,44,51,54,46,57,50,53,48,54,57,93,44,91,45,56,53,46,50,48,53,56,51,49,44,51,54,46,57,57,54,56,54,50,93,44,91,45,56,53,46,48,52,51,51,49,54,44,51,55,46,49,56,54,48,50,56,93,44,91,45,56,53,46,48,53,54,56,57,56,44,51,55,46,50,53,55,48,52,49,93,44,91,45,56,53,46,49,54,53,49,55,52,44,51,55,46,51,49,48,51,57,54,93,44,91,45,56,53,46,51,53,50,55,55,49,44,51,55,46,49,57,50,52,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,97,108,108,97,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,50,51,53,49,57,44,51,56,46,55,54,49,56,55,93,44,91,45,56,52,46,57,51,52,53,51,54,44,51,56,46,54,54,50,49,51,93,44,91,45,56,52,46,55,56,53,55,56,56,44,51,56,46,55,50,48,52,53,57,93,44,91,45,56,52,46,54,54,48,49,48,55,44,51,56,46,55,55,55,50,57,51,93,44,91,45,56,52,46,55,57,53,48,51,57,44,51,56,46,56,53,55,50,55,93,44,91,45,56,53,46,48,50,51,53,49,57,44,51,56,46,55,54,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,54,56,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,48,53,51,52,54,44,51,56,46,53,56,50,48,51,57,93,44,91,45,56,52,46,52,55,54,50,57,57,44,51,56,46,53,52,50,55,50,51,93,44,91,45,56,52,46,53,53,55,51,55,53,44,51,56,46,52,57,50,57,49,55,93,44,91,45,56,52,46,52,53,57,57,48,54,44,51,56,46,51,55,56,57,57,53,93,44,91,45,56,52,46,52,52,50,54,54,49,44,51,56,46,50,56,51,50,51,54,93,44,91,45,56,52,46,51,52,53,52,55,54,44,51,56,46,50,56,53,48,57,57,93,44,91,45,56,52,46,49,57,52,48,53,44,51,56,46,51,55,49,55,53,93,44,91,45,56,52,46,49,48,50,49,44,51,56,46,52,53,57,51,55,57,93,44,91,45,56,52,46,49,54,50,48,51,49,44,51,56,46,53,53,52,49,50,53,93,44,91,45,56,52,46,50,48,53,51,52,54,44,51,56,46,53,56,50,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,83,97,103,97,100,97,104,111,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,50,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,48,48,53,52,55,49,44,52,52,46,49,50,52,53,49,57,93,44,91,45,55,48,46,48,51,52,50,51,56,44,52,51,46,57,55,53,54,54,49,93,44,91,45,54,57,46,56,57,51,50,51,50,44,52,51,46,56,55,56,53,49,56,93,44,91,45,54,57,46,56,56,49,56,57,53,44,52,51,46,54,51,54,52,54,54,93,44,91,45,54,57,46,54,54,52,55,52,53,44,52,51,46,55,49,49,55,52,56,93,44,91,45,54,57,46,55,48,48,48,57,55,44,52,52,46,48,48,54,54,56,53,93,44,91,45,54,57,46,56,49,51,53,52,57,44,52,52,46,48,50,54,48,49,49,93,44,91,45,54,57,46,55,53,56,50,48,56,44,52,52,46,49,51,57,51,51,52,93,44,91,45,55,48,46,48,48,53,52,55,49,44,52,52,46,49,50,52,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,83,119,101,101,116,32,71,114,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,50,56,49,57,49,54,44,52,54,46,49,56,52,51,57,55,93,44,91,45,49,49,48,46,50,57,50,54,54,50,44,52,53,46,55,56,53,48,53,55,93,44,91,45,49,49,48,46,50,50,48,57,48,56,44,52,53,46,55,56,52,57,55,51,93,44,91,45,49,49,48,46,50,50,56,48,53,50,44,52,53,46,49,55,50,49,50,57,93,44,91,45,49,49,48,46,48,54,52,53,49,56,44,52,53,46,49,55,50,49,50,57,93,44,91,45,49,49,48,46,48,54,52,53,56,49,44,52,53,46,51,52,56,55,53,53,93,44,91,45,49,48,57,46,57,51,49,57,56,52,44,52,53,46,51,52,56,55,53,53,93,44,91,45,49,48,57,46,57,51,50,48,50,53,44,52,53,46,53,50,50,52,53,54,93,44,91,45,49,48,57,46,54,56,53,51,56,53,44,52,53,46,54,48,57,48,50,50,93,44,91,45,49,48,57,46,53,54,50,48,55,44,52,53,46,54,48,57,49,49,57,93,44,91,45,49,48,57,46,53,54,51,57,48,55,44,52,53,46,55,56,51,52,55,49,93,44,91,45,49,48,57,46,53,48,54,54,48,52,44,52,53,46,57,53,57,49,49,50,93,44,91,45,49,48,57,46,52,49,55,49,53,56,44,52,54,46,48,52,52,55,53,57,93,44,91,45,49,48,57,46,54,48,53,49,53,51,44,52,54,46,48,52,52,57,57,52,93,44,91,45,49,48,57,46,54,53,51,56,55,49,44,52,54,46,50,49,57,52,48,52,93,44,91,45,49,49,48,46,50,56,49,57,55,49,44,52,54,46,50,50,48,54,48,53,93,44,91,45,49,49,48,46,50,56,49,57,49,54,44,52,54,46,49,56,52,51,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,71,114,97,121,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,53,54,48,44,34,98,101,100,115,34,58,54,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,52,52,54,49,49,44,51,51,46,57,52,57,50,49,55,93,44,91,45,57,54,46,57,52,51,56,54,44,51,51,46,52,49,54,52,49,93,44,91,45,57,54,46,56,51,52,49,49,44,51,51,46,52,48,53,52,57,56,93,44,91,45,57,54,46,51,56,52,54,48,50,44,51,51,46,51,57,55,56,50,54,93,44,91,45,57,54,46,51,55,57,52,53,50,44,51,51,46,55,50,53,55,54,52,93,44,91,45,57,54,46,53,48,48,57,56,52,44,51,51,46,55,55,50,56,48,49,93,44,91,45,57,54,46,53,56,56,53,48,50,44,51,51,46,56,57,52,57,56,51,93,44,91,45,57,54,46,54,57,48,55,48,56,44,51,51,46,56,52,57,57,53,57,93,44,91,45,57,54,46,56,54,54,52,51,56,44,51,51,46,56,53,51,49,52,57,93,44,91,45,57,54,46,57,51,52,56,52,44,51,51,46,57,53,52,52,53,51,93,44,91,45,57,54,46,57,52,52,54,49,49,44,51,51,46,57,52,57,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,49,52,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,48,57,49,44,51,57,46,57,54,50,50,93,44,91,45,56,48,46,53,49,57,51,52,50,44,51,57,46,55,50,49,52,48,51,93,44,91,45,56,48,46,52,50,49,51,56,56,44,51,57,46,55,50,49,49,56,57,93,44,91,45,55,57,46,57,49,54,50,56,44,51,57,46,55,50,48,55,55,55,93,44,91,45,55,57,46,57,50,53,53,57,55,44,51,57,46,57,50,52,55,57,53,93,44,91,45,55,57,46,57,57,56,48,49,52,44,51,57,46,57,56,51,51,50,50,93,44,91,45,56,48,46,50,56,55,52,50,49,44,52,48,46,48,49,57,50,48,54,93,44,91,45,56,48,46,53,49,57,48,57,49,44,51,57,46,57,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,56,56,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,56,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,119,101,115,116,32,65,114,99,116,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,51,52,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,53,46,51,49,56,55,52,52,44,54,56,46,48,48,48,48,51,50,93,44,91,45,49,53,53,46,51,49,56,55,52,56,44,54,56,46,48,51,52,57,52,50,93,44,91,45,49,53,54,46,50,51,54,56,49,55,44,54,56,46,48,51,52,57,50,54,93,44,91,45,49,53,54,46,50,51,54,56,51,49,44,54,56,46,49,50,49,52,57,56,93,44,91,45,49,53,55,46,49,53,52,57,49,44,54,56,46,49,50,49,52,56,51,93,44,91,45,49,53,55,46,49,53,52,57,50,52,44,54,56,46,50,48,56,48,53,52,93,44,91,45,49,53,56,46,52,53,55,56,51,54,44,54,56,46,50,48,56,48,49,54,93,44,91,45,49,53,57,46,54,57,51,52,55,55,44,54,56,46,50,48,55,57,57,50,93,44,91,45,49,53,57,46,54,57,51,52,56,55,44,54,56,46,50,57,52,53,54,52,93,44,91,45,49,54,48,46,49,53,57,52,53,50,44,54,56,46,50,57,52,53,53,51,93,44,91,45,49,54,48,46,49,53,57,52,52,44,54,56,46,50,48,55,57,56,50,93,44,91,45,49,54,49,46,48,57,49,51,53,49,44,54,56,46,50,48,55,57,54,49,93,44,91,45,49,54,49,46,48,57,49,51,54,52,44,54,56,46,50,57,52,53,51,50,93,44,91,45,49,54,49,46,53,53,55,51,50,44,54,56,46,50,57,52,53,50,49,93,44,91,45,49,54,49,46,53,53,55,51,50,56,44,54,56,46,50,48,55,57,52,57,93,44,91,45,49,54,50,46,48,50,51,50,54,49,44,54,56,46,50,48,55,57,52,93,44,91,45,49,54,50,46,48,50,51,50,55,51,44,54,56,46,50,57,52,53,49,49,93,44,91,45,49,54,50,46,55,50,50,50,48,50,44,54,56,46,50,57,52,52,57,54,93,44,91,45,49,54,50,46,55,50,50,49,57,44,54,56,46,50,48,55,57,50,54,93,44,91,45,49,54,52,46,52,57,57,52,54,51,44,54,56,46,50,48,55,56,57,93,44,91,45,49,54,52,46,52,57,57,52,51,55,44,54,56,46,48,51,52,55,52,56,93,44,91,45,49,54,53,46,53,57,54,48,52,54,44,54,56,46,48,51,52,55,50,55,93,44,91,45,49,54,53,46,52,57,57,52,53,51,44,54,56,46,48,49,56,55,56,50,93,44,91,45,49,54,52,46,54,54,52,57,50,49,44,54,55,46,54,57,56,50,49,54,93,44,91,45,49,54,52,46,49,55,53,52,50,57,44,54,55,46,53,52,55,53,57,57,93,44,91,45,49,54,52,46,48,48,52,53,49,44,54,55,46,51,57,55,56,48,56,93,44,91,45,49,54,51,46,56,56,50,53,51,52,44,54,55,46,50,49,52,57,55,54,93,44,91,45,49,54,51,46,57,57,49,50,51,44,54,55,46,49,52,55,56,56,51,93,44,91,45,49,54,51,46,55,56,49,53,50,52,44,54,55,46,48,54,57,55,54,93,44,91,45,49,54,51,46,48,52,57,52,55,49,44,54,54,46,57,56,54,54,49,49,93,44,91,45,49,54,50,46,56,51,50,48,51,50,44,54,54,46,57,50,54,56,49,51,93,44,91,45,49,54,51,46,54,50,54,50,49,53,44,54,54,46,54,50,52,49,55,52,93,44,91,45,49,54,51,46,56,48,53,48,57,51,44,54,54,46,54,52,49,50,56,54,93,44,91,45,49,54,52,46,52,54,49,52,52,57,44,54,54,46,54,50,54,53,48,57,93,44,91,45,49,54,52,46,51,49,56,57,51,54,44,54,54,46,52,55,54,51,49,57,93,44,91,45,49,54,52,46,51,49,56,57,49,51,44,54,54,46,49,50,57,57,52,52,93,44,91,45,49,54,52,46,50,52,52,49,57,49,44,54,54,46,49,50,57,57,52,54,93,44,91,45,49,54,52,46,50,52,52,49,50,55,44,54,53,46,55,56,51,53,53,51,93,44,91,45,49,54,51,46,57,54,51,53,49,54,44,54,53,46,55,56,51,53,54,49,93,44,91,45,49,54,51,46,57,54,51,52,57,56,44,54,53,46,54,49,48,51,54,51,93,44,91,45,49,54,51,46,55,53,53,52,48,55,44,54,53,46,54,49,48,51,54,55,93,44,91,45,49,54,51,46,55,53,53,51,57,49,44,54,53,46,52,51,55,49,54,53,93,44,91,45,49,54,49,46,53,52,54,56,57,50,44,54,53,46,52,51,55,50,48,51,93,44,91,45,49,53,57,46,56,48,49,54,57,50,44,54,53,46,52,51,55,50,51,49,93,44,91,45,49,53,57,46,53,57,51,53,48,54,44,54,53,46,53,50,51,56,51,53,93,44,91,45,49,53,57,46,54,48,52,56,49,51,44,54,53,46,57,53,54,56,51,93,44,91,45,49,53,56,46,57,55,50,49,55,53,44,54,53,46,57,53,54,56,52,57,93,44,91,45,49,53,56,46,57,55,50,49,56,53,44,54,54,46,49,51,48,48,50,55,93,44,91,45,49,53,55,46,57,48,54,50,57,53,44,54,54,46,49,51,48,48,52,57,93,44,91,45,49,53,55,46,57,48,54,51,49,44,54,54,46,52,55,54,52,50,52,93,44,91,45,49,53,55,46,48,53,49,50,56,52,44,54,54,46,52,55,54,52,51,56,93,44,91,45,49,53,55,46,48,53,49,50,54,54,44,54,54,46,51,48,51,50,53,52,93,44,91,45,49,53,54,46,54,50,51,55,53,55,44,54,54,46,51,48,51,50,53,57,93,44,91,45,49,53,54,46,54,50,51,55,55,44,54,54,46,52,55,54,52,52,50,93,44,91,45,49,53,54,46,49,57,54,50,50,52,44,54,54,46,52,55,54,53,56,50,93,44,91,45,49,53,53,46,57,56,50,53,48,52,44,54,54,46,51,56,57,56,54,93,44,91,45,49,53,53,46,57,56,50,52,57,57,44,54,54,46,51,48,51,50,54,56,93,44,91,45,49,53,53,46,53,53,52,57,57,51,44,54,54,46,51,48,51,50,55,52,93,44,91,45,49,53,53,46,53,49,48,53,56,53,44,54,54,46,53,54,51,48,53,49,93,44,91,45,49,53,52,46,56,54,48,52,51,49,44,54,54,46,53,54,51,48,54,52,93,44,91,45,49,53,52,46,56,54,48,52,52,54,44,54,54,46,55,51,54,50,52,50,93,44,91,45,49,53,52,46,50,49,48,51,48,50,44,54,54,46,55,51,54,50,53,53,93,44,91,45,49,53,52,46,49,52,54,50,50,49,44,54,54,46,56,50,50,56,52,51,93,44,91,45,49,53,52,46,49,52,54,51,49,52,44,54,55,46,49,54,57,49,55,56,93,44,91,45,49,53,52,46,51,48,51,49,49,44,54,55,46,50,53,53,55,53,57,93,44,91,45,49,53,52,46,55,52,56,57,48,52,44,54,55,46,50,53,53,55,53,51,93,44,91,45,49,53,52,46,55,52,56,57,51,57,44,54,55,46,53,49,53,52,57,53,93,44,91,45,49,53,53,46,51,54,56,57,57,57,44,54,55,46,55,55,53,50,49,54,93,44,91,45,49,53,53,46,51,49,56,55,52,52,44,54,56,46,48,48,48,48,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,69,108,108,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,56,55,56,44,34,98,101,100,115,34,58,49,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,57,49,55,55,54,44,51,57,46,49,51,50,51,53,55,93,44,91,45,57,57,46,53,57,56,51,50,51,44,51,56,46,54,57,54,53,49,52,93,44,91,45,57,57,46,53,56,53,48,56,55,44,51,56,46,54,57,54,53,51,55,93,44,91,45,57,57,46,48,52,50,54,50,54,44,51,56,46,54,57,54,56,48,55,93,44,91,45,57,57,46,48,51,55,53,44,51,57,46,49,51,51,49,50,49,93,44,91,45,57,57,46,48,52,55,54,56,55,44,51,57,46,49,51,51,48,49,52,93,44,91,45,57,57,46,53,57,49,55,55,54,44,51,57,46,49,51,50,51,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,56,55,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,49,53,55,48,57,44,51,51,46,48,48,54,56,50,52,93,44,91,45,56,55,46,56,51,49,53,56,54,44,51,50,46,56,54,52,56,54,54,93,44,91,45,56,55,46,55,56,54,53,55,49,44,51,50,46,54,56,50,52,56,49,93,44,91,45,56,55,46,56,49,50,53,53,57,44,51,50,46,53,50,52,53,54,93,44,91,45,56,55,46,55,50,56,55,52,52,44,51,50,46,52,56,48,57,49,56,93,44,91,45,56,55,46,53,50,52,52,56,53,44,51,50,46,52,56,50,48,50,56,93,44,91,45,56,55,46,52,55,51,57,49,53,44,51,50,46,54,53,53,56,54,55,93,44,91,45,56,55,46,52,55,50,49,55,52,44,51,50,46,56,51,48,54,50,93,44,91,45,56,55,46,52,50,49,50,44,51,50,46,56,55,52,53,48,56,93,44,91,45,56,55,46,52,50,49,57,51,54,44,51,51,46,48,48,51,51,55,57,93,44,91,45,56,55,46,55,49,53,55,48,57,44,51,51,46,48,48,54,56,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,50,49,50,44,51,50,46,56,55,52,53,48,56,93,44,91,45,56,55,46,52,55,50,49,55,52,44,51,50,46,56,51,48,54,50,93,44,91,45,56,55,46,52,55,51,57,49,53,44,51,50,46,54,53,53,56,54,55,93,44,91,45,56,55,46,53,50,52,52,56,53,44,51,50,46,52,56,50,48,50,56,93,44,91,45,56,55,46,52,55,51,48,56,44,51,50,46,51,48,55,54,49,52,93,44,91,45,56,55,46,52,50,51,49,53,51,44,51,50,46,52,56,50,57,54,53,93,44,91,45,56,55,46,49,49,50,51,54,50,44,51,50,46,52,56,56,54,53,93,44,91,45,56,55,46,48,49,55,55,54,50,44,51,50,46,55,50,57,53,51,50,93,44,91,45,56,55,46,48,49,57,49,53,55,44,51,50,46,56,51,55,48,51,52,93,44,91,45,56,55,46,51,49,57,49,56,52,44,51,50,46,56,51,49,53,50,50,93,44,91,45,56,55,46,52,50,49,50,44,51,50,46,56,55,52,53,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,111,108,98,101,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,52,57,53,44,34,98,101,100,115,34,58,51,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,50,54,53,49,44,51,52,46,56,48,48,48,50,50,93,44,91,45,56,55,46,53,50,52,51,54,51,44,51,52,46,56,51,50,51,56,52,93,44,91,45,56,55,46,56,51,53,56,51,51,44,51,52,46,55,52,49,50,51,57,93,44,91,45,56,55,46,57,55,51,50,50,50,44,51,52,46,56,56,50,53,53,93,44,91,45,56,56,46,48,57,55,56,56,56,44,51,52,46,56,57,50,50,48,50,93,44,91,45,56,56,46,49,51,57,57,56,56,44,51,52,46,53,56,49,55,48,51,93,44,91,45,56,55,46,53,50,57,54,54,55,44,51,52,46,53,54,55,48,56,49,93,44,91,45,56,55,46,52,51,51,48,54,44,51,52,46,55,49,55,52,56,53,93,44,91,45,56,55,46,52,50,54,53,49,44,51,52,46,56,48,48,48,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,80,114,97,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,56,50,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,49,51,53,53,44,51,55,46,55,51,50,57,55,93,44,91,45,57,57,46,48,49,50,53,57,56,44,51,55,46,52,55,48,52,50,49,93,44,91,45,57,56,46,52,54,52,54,54,51,44,51,55,46,52,55,49,48,49,51,93,44,91,45,57,56,46,52,54,52,56,48,52,44,51,55,46,55,51,50,54,55,53,93,44,91,45,57,56,46,52,55,50,50,53,55,44,51,55,46,56,50,52,52,57,55,93,44,91,45,57,57,46,48,49,51,51,49,56,44,51,55,46,56,50,53,51,51,54,93,44,91,45,57,57,46,48,49,51,53,53,44,51,55,46,55,51,50,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,111,117,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,52,52,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,57,52,48,53,44,51,56,46,51,55,49,55,53,93,44,91,45,56,52,46,51,52,53,52,55,54,44,51,56,46,50,56,53,48,57,57,93,44,91,45,56,52,46,52,52,50,54,54,49,44,51,56,46,50,56,51,50,51,54,93,44,91,45,56,52,46,52,48,49,56,52,55,44,51,56,46,50,48,55,56,56,57,93,44,91,45,56,52,46,51,56,48,55,56,56,44,51,56,46,49,49,51,57,54,93,44,91,45,56,52,46,50,56,54,52,54,49,44,51,56,46,48,54,55,48,50,56,93,44,91,45,56,52,46,48,56,48,53,50,55,44,51,56,46,49,49,53,49,49,56,93,44,91,45,56,51,46,57,55,55,57,50,52,44,51,56,46,49,57,50,49,49,56,93,44,91,45,56,52,46,48,54,50,54,57,49,44,51,56,46,50,51,53,50,48,51,93,44,91,45,56,52,46,49,57,52,48,53,44,51,56,46,51,55,49,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,82,117,116,104,101,114,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,55,49,50,56,44,34,98,101,100,115,34,58,56,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,49,56,56,57,50,44,51,53,46,57,54,56,50,50,52,93,44,91,45,56,54,46,54,49,51,51,50,56,44,51,53,46,55,57,48,51,51,49,93,44,91,45,56,54,46,54,56,54,49,57,51,44,51,53,46,55,49,48,48,53,49,93,44,91,45,56,54,46,54,51,57,52,51,54,44,51,53,46,54,56,53,57,93,44,91,45,56,54,46,53,52,51,49,49,54,44,51,53,46,54,57,55,54,49,55,93,44,91,45,56,54,46,52,49,51,54,55,56,44,51,53,46,54,50,51,49,55,55,93,44,91,45,56,54,46,50,52,53,49,54,53,44,51,53,46,54,51,49,57,49,51,93,44,91,45,56,54,46,50,48,55,49,52,55,44,51,53,46,55,48,51,55,57,93,44,91,45,56,54,46,49,53,51,50,49,52,44,51,53,46,57,53,52,51,57,57,93,44,91,45,56,54,46,51,50,54,50,53,50,44,51,53,46,57,56,53,48,48,56,93,44,91,45,56,54,46,53,49,53,53,56,57,44,51,54,46,49,48,48,54,49,93,44,91,45,56,54,46,54,49,56,56,57,50,44,51,53,46,57,54,56,50,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,67,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,56,52,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,49,50,54,48,55,44,51,49,46,51,50,55,52,48,53,93,44,91,45,56,51,46,53,48,57,56,49,44,51,49,46,50,48,54,49,56,49,93,44,91,45,56,51,46,53,55,52,56,53,55,44,51,49,46,48,55,56,49,51,53,93,44,91,45,56,51,46,52,55,53,54,49,55,44,51,49,46,48,51,49,57,54,52,93,44,91,45,56,51,46,50,57,53,48,53,50,44,51,49,46,48,50,55,50,55,56,93,44,91,45,56,51,46,51,51,53,57,52,57,44,51,49,46,50,52,52,53,55,57,93,44,91,45,56,51,46,52,51,52,52,57,50,44,51,49,46,51,53,48,51,54,49,93,44,91,45,56,51,46,53,49,50,54,48,55,44,51,49,46,51,50,55,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,76,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,52,55,50,44,51,56,46,54,57,56,49,54,53,93,44,91,45,49,48,48,46,54,56,56,48,48,54,44,51,56,46,55,48,48,48,50,49,93,44,91,45,49,48,48,46,54,56,52,54,57,57,44,51,56,46,50,54,52,49,51,55,93,44,91,45,49,48,48,46,50,52,52,51,57,51,44,51,56,46,50,54,50,50,57,93,44,91,45,49,48,48,46,50,52,55,50,44,51,56,46,54,57,56,49,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,97,114,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,52,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,52,49,49,49,54,44,51,54,46,57,57,57,54,49,93,44,91,45,49,48,48,46,48,48,50,53,54,51,44,51,55,46,48,48,49,55,48,54,93,44,91,45,49,48,48,46,48,48,51,49,54,44,51,54,46,53,57,51,50,53,93,44,91,45,57,57,46,54,48,53,54,51,52,44,51,54,46,53,57,50,55,53,52,93,44,91,45,57,57,46,50,57,53,49,57,51,44,51,54,46,53,57,53,48,51,49,93,44,91,45,57,57,46,50,57,53,49,56,54,44,51,54,46,56,49,57,53,54,54,93,44,91,45,57,57,46,52,53,54,50,48,51,44,51,54,46,57,57,57,52,55,49,93,44,91,45,57,57,46,53,52,49,49,49,54,44,51,54,46,57,57,57,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,80,105,97,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,50,55,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,52,53,49,54,52,44,52,48,46,48,53,53,49,57,49,93,44,91,45,56,56,46,55,52,53,54,55,49,44,51,57,46,55,57,50,49,52,54,93,44,91,45,56,56,46,52,55,51,49,56,50,44,51,57,46,55,57,49,56,51,55,93,44,91,45,56,56,46,52,54,50,50,48,55,44,51,57,46,56,55,57,48,57,50,93,44,91,45,56,56,46,52,54,48,52,49,56,44,52,48,46,50,56,49,57,51,53,93,44,91,45,56,56,46,53,55,52,56,56,53,44,52,48,46,50,56,49,53,48,49,93,44,91,45,56,56,46,55,52,53,49,54,52,44,52,48,46,48,53,53,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,67,114,111,115,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,54,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,44,91,45,49,48,49,46,53,54,51,53,56,44,51,51,46,56,51,48,52,53,49,93,44,91,45,49,48,49,46,53,53,54,56,56,52,44,51,51,46,51,57,52,55,54,93,44,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,44,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,70,97,106,97,114,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,48,48,49,44,34,98,101,100,115,34,58,50,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,54,52,54,48,56,51,44,49,56,46,52,52,50,50,50,93,44,91,45,54,53,46,54,56,53,57,50,44,49,56,46,51,50,57,57,57,49,93,44,91,45,54,53,46,55,53,51,53,57,49,44,49,56,46,50,57,54,55,53,53,93,44,91,45,54,53,46,54,50,52,54,48,53,44,49,56,46,50,56,55,55,52,53,93,44,91,45,54,53,46,52,54,57,49,51,50,44,49,56,46,51,57,54,52,49,93,44,91,45,54,53,46,54,52,54,48,56,51,44,49,56,46,52,52,50,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,50,54,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,55,49,56,53,50,44,51,50,46,57,57,53,56,54,93,44,91,45,56,56,46,50,48,55,51,49,54,44,51,50,46,57,50,52,55,56,50,93,44,91,45,56,56,46,49,51,50,54,56,53,44,51,50,46,56,51,50,56,53,51,93,44,91,45,56,56,46,48,53,53,48,48,52,44,51,50,46,54,52,54,52,56,50,93,44,91,45,56,55,46,57,50,56,54,56,57,44,51,50,46,54,51,50,50,56,52,93,44,91,45,56,55,46,56,53,51,52,50,44,51,50,46,53,51,50,48,56,54,93,44,91,45,56,55,46,56,49,50,53,53,57,44,51,50,46,53,50,52,53,54,93,44,91,45,56,55,46,55,56,54,53,55,49,44,51,50,46,54,56,50,52,56,49,93,44,91,45,56,55,46,56,51,49,53,56,54,44,51,50,46,56,54,52,56,54,54,93,44,91,45,56,55,46,55,49,53,55,48,57,44,51,51,46,48,48,54,56,50,52,93,44,91,45,56,55,46,56,51,50,50,51,51,44,51,51,46,48,49,55,50,53,56,93,44,91,45,56,55,46,56,51,55,53,50,49,44,51,51,46,49,53,51,54,51,55,93,44,91,45,56,56,46,49,55,49,56,53,50,44,51,50,46,57,57,53,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,54,49,55,51,52,53,44,52,52,46,53,53,48,51,57,50,93,44,91,45,49,49,49,46,56,54,51,54,53,55,44,52,52,46,53,53,49,50,52,52,93,44,91,45,49,49,50,46,48,57,54,52,56,52,44,52,52,46,53,50,50,57,57,50,93,44,91,45,49,49,50,46,50,56,56,54,55,51,44,52,52,46,53,54,55,57,49,93,44,91,45,49,49,50,46,52,55,51,52,49,57,44,52,52,46,52,55,57,51,53,57,93,44,91,45,49,49,50,46,55,49,55,57,51,44,52,52,46,53,48,52,50,55,51,93,44,91,45,49,49,50,46,56,49,51,56,48,53,44,52,52,46,51,55,54,52,53,53,93,44,91,45,49,49,50,46,56,49,51,55,57,50,44,52,52,46,50,51,48,50,56,49,93,44,91,45,49,49,50,46,57,57,53,48,57,49,44,52,52,46,50,51,52,49,50,54,93,44,91,45,49,49,50,46,57,57,52,51,50,51,44,52,51,46,57,55,50,51,54,50,93,44,91,45,49,49,50,46,54,57,53,50,52,50,44,52,51,46,57,55,49,57,52,49,93,44,91,45,49,49,50,46,54,57,52,55,52,52,44,52,52,46,48,53,56,52,54,52,93,44,91,45,49,49,50,46,49,53,53,57,51,53,44,52,52,46,48,53,55,55,56,93,44,91,45,49,49,50,46,48,51,51,54,54,52,44,52,52,46,49,52,52,48,52,57,93,44,91,45,49,49,49,46,56,53,55,56,53,49,44,52,52,46,49,56,55,55,53,57,93,44,91,45,49,49,49,46,56,53,50,50,55,54,44,52,52,46,51,49,54,57,57,54,93,44,91,45,49,49,49,46,55,57,49,54,50,52,44,52,52,46,52,48,49,54,49,93,44,91,45,49,49,49,46,54,49,55,52,51,55,44,52,52,46,52,48,49,50,53,52,93,44,91,45,49,49,49,46,54,49,55,51,52,53,44,52,52,46,53,53,48,51,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,75,111,115,115,117,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,52,51,49,51,55,44,52,51,46,50,53,53,48,49,52,93,44,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,44,91,45,57,51,46,57,55,49,50,51,56,44,52,50,46,57,48,55,55,54,50,93,44,91,45,57,51,46,57,55,48,52,49,53,44,52,51,46,50,53,53,51,53,56,93,44,91,45,57,51,46,57,55,48,55,54,50,44,52,51,46,52,57,57,56,56,54,93,44,91,45,57,52,46,50,52,55,57,54,56,44,52,51,46,53,48,48,49,51,51,93,44,91,45,57,52,46,52,52,50,56,53,44,52,51,46,53,48,48,52,50,50,93,44,91,45,57,52,46,52,52,51,49,51,55,44,52,51,46,50,53,53,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,89,97,98,117,99,111,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,49,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,50,54,50,50,55,44,49,56,46,49,49,57,57,54,51,93,44,91,45,54,54,46,48,49,48,50,52,53,44,49,56,46,48,55,53,53,54,53,93,44,91,45,54,53,46,57,56,56,53,50,51,44,49,56,46,48,53,56,57,52,49,93,44,91,45,54,53,46,56,54,55,56,48,50,44,49,56,46,48,50,54,48,48,55,93,44,91,45,54,53,46,56,49,54,52,52,57,44,49,55,46,57,54,53,53,48,52,93,44,91,45,54,53,46,55,51,57,49,49,50,44,49,56,46,48,55,48,55,55,56,93,44,91,45,54,53,46,56,55,55,54,49,53,44,49,56,46,49,49,56,49,54,55,93,44,91,45,54,53,46,57,50,54,50,50,55,44,49,56,46,49,49,57,57,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,117,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,57,51,56,57,53,55,44,52,56,46,57,57,57,51,51,93,44,91,45,49,48,50,46,57,51,57,57,51,50,44,52,56,46,55,50,48,52,54,57,93,44,91,45,49,48,50,46,56,56,53,55,55,53,44,52,56,46,54,51,51,50,57,56,93,44,91,45,49,48,50,46,56,56,53,55,54,51,44,52,56,46,53,52,54,51,57,93,44,91,45,49,48,50,46,50,51,51,56,57,50,44,52,56,46,53,52,54,51,51,57,93,44,91,45,49,48,50,46,50,51,51,54,44,52,56,46,55,50,48,50,57,93,44,91,45,49,48,50,46,49,53,50,49,54,52,44,52,56,46,56,48,55,50,93,44,91,45,49,48,50,46,48,50,49,54,52,51,44,52,56,46,56,48,55,49,48,56,93,44,91,45,49,48,50,46,48,50,49,49,52,52,44,52,56,46,57,57,57,48,49,53,93,44,91,45,49,48,50,46,57,51,56,57,53,55,44,52,56,46,57,57,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,68,117,114,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,54,52,53,55,44,34,98,101,100,115,34,58,49,52,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,53,48,53,57,55,44,51,54,46,50,51,57,51,50,93,44,91,45,55,57,46,48,49,54,51,48,53,44,51,53,46,56,54,51,50,49,93,44,91,45,55,56,46,57,48,54,48,55,49,44,51,53,46,56,54,56,48,57,54,93,44,91,45,55,56,46,56,50,57,57,54,53,44,51,53,46,56,54,54,57,55,56,93,44,91,45,55,56,46,54,57,57,51,49,54,44,51,54,46,48,49,49,52,52,56,93,44,91,45,55,56,46,55,53,49,50,55,51,44,51,54,46,48,55,48,56,51,52,93,44,91,45,55,56,46,56,48,52,54,57,44,51,54,46,48,57,52,53,53,49,93,44,91,45,55,56,46,56,48,50,51,51,53,44,51,54,46,50,51,53,55,57,52,93,44,91,45,55,56,46,57,53,48,53,57,55,44,51,54,46,50,51,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,49,51,57,48,48,56,44,52,49,46,56,54,54,50,55,55,93,44,91,45,57,54,46,48,54,52,56,57,55,44,52,49,46,55,57,49,54,55,51,93,44,91,45,57,54,46,49,50,50,54,48,52,44,52,49,46,54,56,51,48,52,93,44,91,45,57,54,46,48,53,55,51,51,49,44,52,49,46,53,49,49,48,53,49,93,44,91,45,57,53,46,57,57,54,49,57,52,44,52,49,46,53,48,54,57,54,93,44,91,45,57,53,46,52,57,55,57,57,55,44,52,49,46,53,48,54,48,55,52,93,44,91,45,57,53,46,53,53,56,49,52,51,44,52,49,46,54,48,50,51,56,51,93,44,91,45,57,53,46,53,53,55,50,55,55,44,52,49,46,56,54,51,52,52,57,93,44,91,45,57,53,46,54,55,50,55,55,49,44,52,49,46,56,54,51,49,52,55,93,44,91,45,57,54,46,49,51,57,48,48,56,44,52,49,46,56,54,54,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,75,101,121,97,32,80,97,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,57,56,52,55,56,44,52,50,46,56,52,54,49,48,50,93,44,91,45,49,48,48,46,49,51,51,57,55,56,44,52,50,46,56,48,55,56,49,57,93,44,91,45,57,57,46,54,55,55,54,56,52,44,52,50,46,55,51,48,57,48,51,93,44,91,45,57,57,46,53,51,55,52,57,49,44,52,50,46,55,49,55,54,50,54,93,44,91,45,57,57,46,50,53,55,48,51,57,44,52,50,46,56,48,52,50,57,54,93,44,91,45,57,57,46,50,53,52,52,53,53,44,52,50,46,57,57,56,48,55,52,93,44,91,45,57,57,46,53,51,52,48,52,57,44,52,50,46,57,57,56,48,51,51,93,44,91,45,49,48,48,46,49,57,56,52,49,51,44,52,50,46,57,57,56,54,55,52,93,44,91,45,49,48,48,46,49,57,56,52,55,56,44,52,50,46,56,52,54,49,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,55,53,55,44,34,98,101,100,115,34,58,50,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,52,51,48,50,52,44,52,50,46,53,53,56,56,52,51,93,44,91,45,57,52,46,51,57,55,54,55,49,44,52,50,46,52,55,51,51,93,44,91,45,57,52,46,51,57,55,53,50,54,44,52,50,46,50,48,57,49,54,49,93,44,91,45,57,52,46,49,54,52,55,48,52,44,52,50,46,50,48,57,57,50,93,44,91,45,57,51,46,57,51,49,53,56,44,52,50,46,50,48,57,57,48,56,93,44,91,45,57,51,46,57,51,49,54,56,52,44,52,50,46,52,55,50,48,49,49,93,44,91,45,57,51,46,57,55,49,53,56,51,44,52,50,46,53,53,56,49,51,57,93,44,91,45,57,51,46,57,55,49,55,49,52,44,52,50,46,54,52,52,55,48,55,93,44,91,45,57,52,46,52,52,51,48,56,51,44,52,50,46,54,52,53,49,54,52,93,44,91,45,57,52,46,52,52,51,48,50,52,44,52,50,46,53,53,56,56,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,80,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,49,48,55,51,56,44,51,55,46,51,51,55,48,56,49,93,44,91,45,56,56,46,52,57,48,51,51,44,51,55,46,49,53,57,52,54,50,93,44,91,45,56,56,46,52,57,48,52,49,49,44,51,55,46,48,54,56,53,55,57,93,44,91,45,56,56,46,52,50,52,54,48,51,44,51,55,46,49,53,49,55,54,52,93,44,91,45,56,56,46,53,48,55,48,54,50,44,51,55,46,50,53,57,54,56,57,93,44,91,45,56,56,46,52,55,52,48,57,44,51,55,46,51,57,49,56,54,51,93,44,91,45,56,56,46,52,49,53,52,48,54,44,51,55,46,52,50,51,57,55,50,93,44,91,45,56,56,46,52,49,50,54,57,55,44,51,55,46,53,57,57,54,50,53,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,48,53,57,93,44,91,45,56,56,46,55,49,48,55,51,56,44,51,55,46,51,51,55,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,83,109,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,51,54,56,48,51,44,51,54,46,50,57,53,56,53,57,93,44,91,45,56,54,46,48,53,57,55,48,54,44,51,54,46,48,56,54,48,50,52,93,44,91,45,56,53,46,56,48,55,52,49,53,44,51,54,46,49,51,49,53,56,50,93,44,91,45,56,53,46,55,56,48,49,52,56,44,51,54,46,50,51,56,48,49,49,93,44,91,45,56,53,46,56,52,54,52,56,51,44,51,54,46,50,56,56,49,54,55,93,44,91,45,56,53,46,56,50,56,48,50,54,44,51,54,46,52,49,49,56,51,54,93,44,91,45,56,53,46,57,55,56,56,57,51,44,51,54,46,52,50,54,48,55,51,93,44,91,45,56,54,46,49,51,54,56,48,51,44,51,54,46,50,57,53,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,53,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,52,49,52,57,51,44,51,54,46,55,57,52,51,54,53,93,44,91,45,56,48,46,48,57,52,51,56,57,44,51,54,46,55,55,57,53,53,50,93,44,91,45,56,48,46,48,53,51,52,53,57,44,51,54,46,53,52,50,53,50,51,93,44,91,45,56,48,46,48,50,55,51,51,57,44,51,54,46,53,52,50,52,56,93,44,91,45,55,57,46,55,49,52,56,52,57,44,51,54,46,53,52,49,57,54,53,93,44,91,45,55,57,46,54,52,48,54,53,50,44,51,54,46,56,53,54,49,51,57,93,44,91,45,55,57,46,56,48,50,48,53,54,44,51,54,46,55,57,50,49,51,55,93,44,91,45,55,57,46,57,57,57,55,55,49,44,51,54,46,56,51,48,55,51,56,93,44,91,45,56,48,46,48,52,49,52,57,51,44,51,54,46,55,57,52,51,54,53,93,93,44,91,91,45,55,57,46,57,48,52,48,55,55,44,51,54,46,54,56,52,49,50,55,93,44,91,45,55,57,46,56,55,52,55,54,44,51,54,46,55,49,53,50,51,55,93,44,91,45,55,57,46,56,51,55,51,53,57,44,51,54,46,55,48,52,49,51,55,93,44,91,45,55,57,46,56,53,57,50,54,44,51,54,46,54,54,49,55,51,55,93,44,91,45,55,57,46,57,48,52,48,55,55,44,51,54,46,54,56,52,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,49,48,34,44,34,78,65,77,69,34,58,34,65,108,101,120,97,110,100,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,53,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,49,48,55,57,57,44,51,56,46,56,52,51,52,52,54,93,44,91,45,55,55,46,48,52,49,51,54,50,44,51,56,46,55,56,53,52,49,53,93,44,91,45,55,55,46,48,51,57,48,48,54,44,51,56,46,55,57,49,54,52,53,93,44,91,45,55,55,46,48,52,56,48,50,44,51,56,46,56,52,49,50,54,49,93,44,91,45,55,55,46,49,49,48,55,57,57,44,51,56,46,56,52,51,52,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,55,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,55,57,57,55,52,44,52,49,46,49,54,50,54,54,50,93,44,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,44,91,45,57,49,46,55,49,56,49,56,44,52,48,46,57,48,49,48,56,55,93,44,91,45,57,49,46,55,49,54,48,52,50,44,52,49,46,49,54,50,56,48,56,93,44,91,45,57,49,46,57,52,53,53,55,49,44,52,49,46,49,54,51,53,55,56,93,44,91,45,57,50,46,49,55,57,57,55,52,44,52,49,46,49,54,50,54,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,32,97,110,100,32,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,48,55,55,44,34,98,101,100,115,34,58,49,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,49,52,52,51,54,56,44,52,55,46,53,57,53,53,48,55,93,44,91,45,49,49,51,46,48,53,57,49,57,57,44,52,55,46,52,56,56,53,57,57,93,44,91,45,49,49,51,46,48,53,57,48,53,51,44,52,55,46,49,55,57,53,55,93,44,91,45,49,49,50,46,55,57,53,56,48,56,44,52,55,46,49,55,55,48,48,52,93,44,91,45,49,49,50,46,55,57,53,54,52,50,44,52,54,46,56,51,49,54,54,53,93,44,91,45,49,49,50,46,53,51,53,55,52,56,44,52,54,46,56,51,52,50,51,52,93,44,91,45,49,49,50,46,53,51,53,53,57,55,44,52,54,46,54,57,57,52,56,50,93,44,91,45,49,49,50,46,51,50,48,56,55,49,44,52,54,46,54,53,53,57,50,55,93,44,91,45,49,49,50,46,51,49,48,53,55,51,44,52,54,46,52,50,49,49,55,49,93,44,91,45,49,49,50,46,49,55,54,50,51,53,44,52,54,46,52,53,54,51,52,50,93,44,91,45,49,49,50,46,48,50,57,50,51,49,44,52,54,46,53,54,56,56,48,53,93,44,91,45,49,49,49,46,55,56,55,57,52,57,44,52,54,46,53,54,57,52,54,53,93,44,91,45,49,49,49,46,54,52,48,48,57,53,44,52,54,46,53,56,50,52,54,51,93,44,91,45,49,49,49,46,54,51,57,50,54,49,44,52,54,46,55,51,56,49,56,93,44,91,45,49,49,49,46,52,57,56,48,57,53,44,52,54,46,55,54,50,53,48,50,93,44,91,45,49,49,49,46,54,48,51,49,53,51,44,52,54,46,56,48,57,57,52,57,93,44,91,45,49,49,49,46,54,53,56,49,51,50,44,52,54,46,57,49,51,52,50,51,93,44,91,45,49,49,49,46,55,57,48,50,51,54,44,52,54,46,57,49,51,55,54,52,93,44,91,45,49,49,49,46,55,56,57,50,55,56,44,52,55,46,49,50,56,57,50,50,93,44,91,45,49,49,50,46,48,52,52,56,50,57,44,52,55,46,49,57,50,55,49,49,93,44,91,45,49,49,50,46,48,52,55,55,56,49,44,52,55,46,53,49,54,48,51,52,93,44,91,45,49,49,50,46,50,55,56,44,52,55,46,53,48,53,54,50,51,93,44,91,45,49,49,50,46,52,51,50,55,49,49,44,52,55,46,54,48,54,49,48,52,93,44,91,45,49,49,50,46,53,54,56,54,54,44,52,55,46,54,51,54,48,49,56,93,44,91,45,49,49,50,46,56,53,52,55,48,49,44,52,55,46,54,50,57,50,51,52,93,44,91,45,49,49,50,46,57,49,51,56,55,52,44,52,55,46,54,57,55,49,57,57,93,44,91,45,49,49,50,46,57,49,51,50,53,54,44,52,55,46,56,50,54,50,49,54,93,44,91,45,49,49,50,46,57,56,52,55,51,52,44,52,55,46,57,53,51,57,49,56,93,44,91,45,49,49,51,46,48,54,50,56,55,54,44,52,55,46,56,56,53,53,54,51,93,44,91,45,49,49,51,46,48,56,48,57,57,55,44,52,55,46,55,52,57,57,49,55,93,44,91,45,49,49,51,46,49,54,53,56,49,49,44,52,55,46,55,49,57,55,54,52,93,44,91,45,49,49,51,46,49,52,52,51,54,56,44,52,55,46,53,57,53,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,68,117,99,104,101,115,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,49,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,56,53,55,55,56,44,51,57,46,56,49,51,50,56,53,93,44,91,45,49,48,57,46,57,55,54,56,49,52,44,51,57,46,56,48,54,50,51,93,44,91,45,49,48,57,46,57,55,54,52,48,50,44,52,48,46,56,48,57,54,56,54,93,44,91,45,49,49,48,46,48,48,48,55,49,49,44,52,48,46,56,49,51,54,55,56,93,44,91,45,49,49,48,46,50,54,48,57,54,55,44,52,48,46,56,51,52,56,50,52,93,44,91,45,49,49,48,46,51,55,56,57,54,50,44,52,48,46,55,56,55,49,56,93,44,91,45,49,49,48,46,54,53,54,52,56,50,44,52,48,46,55,52,48,50,55,53,93,44,91,45,49,49,48,46,55,53,48,55,51,51,44,52,48,46,55,52,55,55,48,54,93,44,91,45,49,49,48,46,57,48,49,57,55,52,44,52,48,46,54,55,56,49,54,50,93,44,91,45,49,49,48,46,56,57,49,54,53,53,44,51,57,46,56,57,57,54,53,52,93,44,91,45,49,49,48,46,56,53,55,55,56,44,51,57,46,56,49,51,50,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,102,97,108,102,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,52,52,54,54,49,44,51,54,46,57,57,56,55,53,57,93,44,91,45,57,56,46,53,51,51,54,49,55,44,51,54,46,52,54,51,50,51,93,44,91,45,57,56,46,49,48,52,52,50,55,44,51,54,46,52,54,51,49,48,53,93,44,91,45,57,56,46,49,48,52,50,56,54,44,51,54,46,53,57,51,53,55,56,93,44,91,45,57,56,46,49,49,49,57,56,53,44,51,54,46,57,57,56,48,57,51,93,44,91,45,57,56,46,51,52,55,49,52,57,44,51,54,46,57,57,56,49,53,53,93,44,91,45,57,56,46,53,52,52,54,54,49,44,51,54,46,57,57,56,55,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,68,101,108,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,48,56,54,51,55,44,51,51,46,51,56,48,54,54,50,93,44,91,45,57,53,46,54,50,49,48,50,55,44,51,51,46,52,56,55,48,54,93,44,91,45,57,53,46,56,53,55,55,51,56,44,51,51,46,52,54,49,55,50,50,93,44,91,45,57,53,46,56,53,56,55,50,51,44,51,51,46,52,48,57,53,51,93,44,91,45,57,53,46,56,54,49,55,55,56,44,51,51,46,50,49,57,51,51,93,44,91,45,57,53,46,55,50,57,48,57,52,44,51,51,46,51,48,53,52,50,56,93,44,91,45,57,53,46,53,56,49,49,55,53,44,51,51,46,51,53,56,57,55,55,93,44,91,45,57,53,46,51,48,56,53,57,51,44,51,51,46,51,55,55,49,57,93,44,91,45,57,53,46,51,48,54,54,52,44,51,51,46,51,55,56,48,50,55,93,44,91,45,57,53,46,51,48,56,54,51,55,44,51,51,46,51,56,48,54,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,84,114,111,117,115,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,50,56,52,51,52,44,51,54,46,52,56,55,52,55,50,93,44,91,45,56,54,46,50,56,51,50,53,54,44,51,54,46,51,52,55,53,93,44,91,45,56,54,46,49,51,54,56,48,51,44,51,54,46,50,57,53,56,53,57,93,44,91,45,56,53,46,57,55,56,56,57,51,44,51,54,46,52,50,54,48,55,51,93,44,91,45,56,54,46,49,54,56,50,54,49,44,51,54,46,52,52,52,50,57,51,93,44,91,45,56,54,46,50,50,56,52,51,52,44,51,54,46,52,56,55,52,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,49,55,44,34,98,101,100,115,34,58,51,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,48,55,56,56,54,44,51,55,46,50,51,53,56,55,55,93,44,91,45,56,51,46,52,54,48,57,57,50,44,51,55,46,50,57,51,56,52,56,93,44,91,45,56,51,46,50,48,56,49,50,49,44,51,55,46,49,55,52,54,53,57,93,44,91,45,56,51,46,49,56,50,49,48,52,44,51,55,46,48,50,49,49,49,53,93,44,91,45,56,51,46,49,50,50,48,57,44,51,55,46,48,48,48,57,57,55,93,44,91,45,56,51,46,48,48,48,49,52,50,44,51,55,46,49,57,53,55,49,93,44,91,45,56,51,46,49,48,49,53,54,51,44,51,55,46,50,51,53,52,51,55,93,44,91,45,56,51,46,49,50,52,51,52,56,44,51,55,46,52,48,52,57,55,51,93,44,91,45,56,51,46,49,57,57,55,51,52,44,51,55,46,52,49,52,54,54,93,44,91,45,56,51,46,52,48,51,57,56,56,44,51,55,46,51,51,56,51,51,50,93,44,91,45,56,51,46,53,52,55,54,50,56,44,51,55,46,51,51,52,52,49,56,93,44,91,45,56,51,46,53,50,54,57,48,55,44,51,55,46,50,53,56,53,50,57,93,44,91,45,56,51,46,53,48,55,56,56,54,44,51,55,46,50,51,53,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,101,117,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,48,54,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,56,52,53,55,44,52,52,46,56,48,52,52,51,54,93,44,91,45,57,54,46,56,56,53,53,48,52,44,52,52,46,53,52,51,55,55,51,93,44,91,45,57,54,46,52,53,49,56,50,44,52,52,46,53,52,51,54,53,50,93,44,91,45,57,54,46,52,53,49,53,54,54,44,52,52,46,54,51,49,51,52,57,93,44,91,45,57,54,46,52,53,49,52,54,50,44,52,52,46,56,48,53,53,55,93,44,91,45,57,54,46,52,53,50,48,51,53,44,52,52,46,57,55,55,54,53,93,44,91,45,57,54,46,56,56,50,51,52,53,44,52,52,46,57,55,54,56,55,93,44,91,45,57,54,46,56,56,52,53,55,44,52,52,46,56,48,52,52,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,50,54,55,44,34,98,101,100,115,34,58,53,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,50,56,50,55,51,44,52,50,46,57,57,54,52,57,57,93,44,91,45,49,50,50,46,52,48,49,48,50,53,44,52,50,46,57,57,54,54,51,50,93,44,91,45,49,50,50,46,53,54,48,50,55,51,44,52,50,46,57,51,57,49,56,53,93,44,91,45,49,50,50,46,55,57,52,55,55,54,44,52,50,46,55,55,56,50,50,49,93,44,91,45,49,50,51,46,49,53,50,50,51,51,44,52,50,46,55,53,53,56,51,53,93,44,91,45,49,50,51,46,50,50,57,54,49,57,44,52,50,46,55,48,50,54,49,93,44,91,45,49,50,51,46,50,51,49,49,49,51,44,52,50,46,48,48,51,57,52,51,93,44,91,45,49,50,50,46,50,56,57,55,52,56,44,52,50,46,48,48,56,48,57,56,93,44,91,45,49,50,50,46,50,56,50,55,51,44,52,50,46,57,57,54,52,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,111,114,109,105,103,117,101,114,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,53,57,55,51,51,44,49,56,46,49,53,51,50,50,55,93,44,91,45,54,55,46,49,48,48,52,57,50,44,49,56,46,49,48,54,51,57,53,93,44,91,45,54,55,46,48,56,54,51,53,57,44,49,56,46,49,52,57,56,50,57,93,44,91,45,54,55,46,49,53,57,55,51,51,44,49,56,46,49,53,51,50,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,53,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,48,55,34,44,34,78,65,77,69,34,58,34,90,97,118,97,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,49,52,48,54,44,50,57,46,48,56,54,51,49,56,93,44,91,45,49,48,48,46,49,49,52,51,51,54,44,50,56,46,54,52,56,49,50,50,93,44,91,45,57,57,46,52,48,57,48,50,49,44,50,56,46,54,52,48,53,54,54,93,44,91,45,57,57,46,52,49,51,56,56,44,50,57,46,48,57,49,51,51,53,93,44,91,45,49,48,48,46,49,49,49,52,48,54,44,50,57,46,48,56,54,51,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,97,110,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,50,54,56,56,44,52,49,46,54,57,55,57,53,52,93,44,91,45,49,48,52,46,48,53,50,53,52,44,52,49,46,53,54,52,50,55,52,93,44,91,45,49,48,52,46,48,53,50,50,56,55,44,52,49,46,51,57,51,50,49,52,93,44,91,45,49,48,51,46,51,55,55,54,50,44,52,49,46,51,57,52,54,51,51,93,44,91,45,49,48,51,46,51,54,57,48,50,52,44,52,49,46,52,51,55,54,53,53,93,44,91,45,49,48,51,46,51,55,48,51,57,49,44,52,49,46,54,57,57,50,49,93,44,91,45,49,48,52,46,48,53,50,54,56,56,44,52,49,46,54,57,55,57,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,57,48,54,49,50,44,52,49,46,53,49,49,57,49,54,93,44,91,45,57,52,46,50,52,49,53,57,51,44,52,49,46,53,48,51,54,55,57,93,44,91,45,57,52,46,50,52,49,54,51,55,44,52,49,46,49,53,55,49,51,52,93,44,91,45,57,52,46,48,49,52,49,56,57,44,52,49,46,49,53,54,55,54,50,93,44,91,45,57,51,46,55,56,57,49,57,54,44,52,49,46,49,54,50,48,51,53,93,44,91,45,57,51,46,55,57,48,54,49,50,44,52,49,46,53,49,49,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,114,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,57,49,53,49,44,34,98,101,100,115,34,58,53,56,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,49,53,50,55,54,44,50,54,46,51,50,48,57,53,54,93,44,91,45,56,48,46,50,57,54,57,56,54,44,50,54,46,51,51,52,51,53,54,93,44,91,45,56,48,46,56,56,49,50,51,51,44,50,54,46,51,51,51,56,48,54,93,44,91,45,56,48,46,56,55,57,56,48,57,44,50,54,46,50,53,57,52,53,53,93,44,91,45,56,48,46,56,55,50,57,51,50,44,50,53,46,57,55,57,52,51,52,93,44,91,45,56,48,46,54,56,48,48,49,54,44,50,53,46,57,53,54,56,53,55,93,44,91,45,56,48,46,50,57,52,57,55,50,44,50,53,46,57,53,54,55,55,93,44,91,45,56,48,46,48,53,50,50,53,55,44,50,53,46,57,55,52,57,53,54,93,44,91,45,56,48,46,48,49,53,50,55,54,44,50,54,46,51,50,48,57,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,57,34,44,34,78,65,77,69,34,58,34,84,111,111,109,98,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,48,52,56,44,34,98,101,100,115,34,58,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,48,57,49,51,44,51,50,46,51,53,51,55,51,56,93,44,91,45,56,50,46,52,56,51,49,51,49,44,51,49,46,57,54,56,57,54,49,93,44,91,45,56,50,46,52,51,49,53,51,49,44,51,49,46,57,54,54,49,56,50,93,44,91,45,56,50,46,50,50,53,48,52,50,44,51,49,46,57,49,51,48,55,52,93,44,91,45,56,50,46,49,56,50,55,50,55,44,51,50,46,49,54,48,52,52,50,93,44,91,45,56,50,46,50,51,50,55,56,56,44,51,50,46,51,49,56,56,51,56,93,44,91,45,56,50,46,51,53,52,53,52,54,44,51,50,46,50,57,50,49,57,52,93,44,91,45,56,50,46,52,48,57,49,49,56,44,51,50,46,51,53,51,56,51,93,44,91,45,56,50,46,52,48,57,49,51,44,51,50,46,51,53,51,55,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,97,110,105,108,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,51,55,54,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,49,55,56,52,52,44,52,51,46,54,55,53,52,57,51,93,44,91,45,56,51,46,49,50,48,51,57,54,44,52,51,46,51,50,55,48,52,57,93,44,91,45,56,51,46,48,48,48,52,51,44,52,51,46,50,56,52,57,49,51,93,44,91,45,56,50,46,57,57,54,50,53,55,44,52,51,46,49,53,52,48,57,57,93,44,91,45,56,50,46,51,51,52,48,55,51,44,52,51,46,49,55,48,52,49,51,93,44,91,45,56,50,46,49,50,50,57,55,49,44,52,51,46,53,57,48,56,50,55,93,44,91,45,56,50,46,49,52,53,53,48,49,44,52,51,46,54,57,53,53,56,55,93,44,91,45,56,51,46,49,49,55,56,52,52,44,52,51,46,54,55,53,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,57,55,34,44,34,78,65,77,69,34,58,34,82,111,99,107,119,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,54,52,50,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,57,55,50,50,55,44,51,50,46,57,56,49,55,53,50,93,44,91,45,57,54,46,53,49,54,56,54,54,44,51,50,46,57,56,50,51,48,56,93,44,91,45,57,54,46,53,49,56,57,55,44,51,50,46,56,49,51,54,49,54,93,44,91,45,57,54,46,50,57,55,51,50,50,44,51,50,46,56,52,49,55,50,51,93,44,91,45,57,54,46,50,57,55,50,50,55,44,51,50,46,57,56,49,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,49,51,56,50,44,34,98,101,100,115,34,58,54,50,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,48,56,51,51,57,51,44,52,50,46,52,52,55,49,53,51,93,44,91,45,56,51,46,53,53,49,57,48,55,44,52,50,46,52,51,53,49,54,54,93,44,91,45,56,51,46,53,51,57,51,57,54,44,52,50,46,48,56,53,53,57,56,93,44,91,45,56,51,46,50,57,53,48,54,51,44,52,50,46,48,57,52,50,51,55,93,44,91,45,56,51,46,49,52,51,57,53,54,44,52,50,46,48,50,55,57,51,93,44,91,45,56,51,46,49,50,54,51,54,49,44,52,50,46,50,51,56,52,49,50,93,44,91,45,56,51,46,48,54,51,54,51,55,44,52,50,46,51,49,54,56,53,55,93,44,91,45,56,50,46,56,51,48,50,53,44,52,50,46,51,55,51,52,57,50,93,44,91,45,56,50,46,55,52,57,57,48,56,44,52,50,46,52,53,49,48,57,50,93,44,91,45,56,51,46,48,56,51,51,57,51,44,52,50,46,52,52,55,49,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,78,111,98,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,51,57,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,54,50,52,50,55,44,52,51,46,56,52,55,57,49,49,93,44,91,45,57,54,46,48,53,50,51,50,44,52,51,46,56,52,57,48,55,93,44,91,45,57,54,46,48,53,51,49,54,50,44,52,51,46,53,48,48,49,53,53,93,44,91,45,57,53,46,56,54,48,57,52,55,44,52,51,46,53,48,48,48,51,54,93,44,91,45,57,53,46,52,53,52,52,51,51,44,52,51,46,53,48,48,54,52,54,93,44,91,45,57,53,46,52,53,50,53,48,50,44,52,51,46,56,52,55,57,53,51,93,44,91,45,57,53,46,52,54,50,52,50,55,44,52,51,46,56,52,55,57,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,105,116,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,51,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,55,54,48,50,52,44,52,54,46,56,48,50,56,57,49,93,44,91,45,57,51,46,56,49,49,52,54,52,44,52,54,46,53,56,52,50,51,56,93,44,91,45,57,51,46,55,57,54,50,56,49,44,52,54,46,50,52,51,49,57,57,93,44,91,45,57,51,46,52,51,48,54,52,56,44,52,54,46,50,52,54,52,49,50,93,44,91,45,57,51,46,52,51,49,56,51,49,44,52,54,46,49,53,51,57,57,49,93,44,91,45,57,51,46,48,53,51,56,55,49,44,52,54,46,49,53,56,49,50,93,44,91,45,57,51,46,48,53,52,56,52,55,44,52,54,46,52,49,57,50,54,57,93,44,91,45,57,51,46,48,54,49,53,50,57,44,52,54,46,55,54,54,53,53,93,44,91,45,57,51,46,48,53,53,57,52,51,44,52,55,46,48,50,54,52,49,53,93,44,91,45,57,51,46,55,55,53,50,53,55,44,52,55,46,48,51,48,52,49,56,93,44,91,45,57,51,46,55,55,54,48,50,52,44,52,54,46,56,48,50,56,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,82,97,109,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,53,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,55,48,51,57,50,44,52,56,46,53,52,52,50,51,50,93,44,91,45,57,56,46,57,55,48,56,52,50,44,52,56,46,51,55,48,52,49,52,93,44,91,45,57,57,46,50,48,48,51,48,54,44,52,56,46,51,55,48,54,53,56,93,44,91,45,57,57,46,49,57,57,57,49,49,44,52,56,46,49,53,53,51,48,57,93,44,91,45,57,57,46,48,55,48,52,52,51,44,52,56,46,49,48,55,56,53,55,93,44,91,45,57,56,46,57,56,54,57,48,49,44,52,56,46,48,48,55,52,57,56,93,44,91,45,57,56,46,56,48,55,53,57,51,44,52,56,46,48,53,57,56,48,49,93,44,91,45,57,56,46,54,50,53,51,56,52,44,52,55,46,57,49,54,51,57,57,93,44,91,45,57,56,46,53,50,53,53,53,53,44,52,55,46,57,49,53,48,53,54,93,44,91,45,57,56,46,52,50,50,52,55,52,44,52,56,46,48,50,49,48,56,93,44,91,45,57,56,46,52,50,50,48,53,55,44,52,56,46,49,57,52,55,56,50,93,44,91,45,57,56,46,50,57,50,49,56,52,44,52,56,46,49,57,53,49,55,55,93,44,91,45,57,56,46,51,49,56,48,51,54,44,52,56,46,53,52,51,55,55,51,93,44,91,45,57,56,46,57,55,48,51,57,50,44,52,56,46,53,52,52,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,80,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,51,48,53,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,49,51,56,51,50,44,51,54,46,53,52,49,57,55,53,93,44,91,45,55,57,46,49,53,51,57,57,55,44,51,54,46,50,52,49,56,55,53,93,44,91,45,55,56,46,57,53,48,53,57,55,44,51,54,46,50,51,57,51,50,93,44,91,45,55,56,46,56,48,50,51,51,53,44,51,54,46,50,51,53,55,57,52,93,44,91,45,55,56,46,55,57,54,50,55,52,44,51,54,46,53,52,49,55,52,49,93,44,91,45,55,57,46,49,51,56,51,50,44,51,54,46,53,52,49,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,84,114,101,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,52,55,57,52,44,51,57,46,49,51,50,49,55,57,93,44,91,45,49,48,48,46,49,53,51,56,50,51,44,51,56,46,54,57,55,51,52,49,93,44,91,45,57,57,46,53,57,56,51,50,51,44,51,56,46,54,57,54,53,49,52,93,44,91,45,57,57,46,53,57,49,55,55,54,44,51,57,46,49,51,50,51,53,55,93,44,91,45,57,57,46,54,48,53,49,56,55,44,51,57,46,49,51,50,52,56,49,93,44,91,45,49,48,48,46,49,52,55,57,52,44,51,57,46,49,51,50,49,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,48,56,54,44,34,98,101,100,115,34,58,50,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,54,51,53,48,57,44,51,51,46,53,50,57,51,56,57,93,44,91,45,57,49,46,50,49,53,54,55,49,44,51,51,46,53,50,57,52,50,51,93,44,91,45,57,49,46,49,54,57,52,53,57,44,51,51,46,52,53,50,49,51,55,93,44,91,45,57,49,46,48,56,55,53,56,57,44,51,51,46,49,52,53,49,55,54,93,44,91,45,57,49,46,49,54,54,50,56,50,44,51,51,46,48,49,49,51,51,49,93,44,91,45,57,48,46,57,49,52,51,51,55,44,51,51,46,48,48,55,54,57,55,93,44,91,45,57,48,46,57,49,52,52,54,53,44,51,51,46,48,57,55,52,49,55,93,44,91,45,57,48,46,55,48,49,56,52,53,44,51,51,46,48,57,54,50,57,52,93,44,91,45,57,48,46,55,49,54,50,55,55,44,51,51,46,50,55,48,48,51,50,93,44,91,45,57,48,46,55,54,51,55,55,51,44,51,51,46,50,55,48,51,53,57,93,44,91,45,57,48,46,55,54,51,53,48,57,44,51,51,46,53,50,57,51,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,69,97,115,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,55,48,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,55,54,50,53,54,44,51,50,46,53,49,53,49,54,51,93,44,91,45,57,57,46,48,57,54,48,53,44,51,50,46,53,49,52,55,54,56,93,44,91,45,57,57,46,49,49,52,50,57,51,44,51,50,46,53,49,52,56,49,49,93,44,91,45,57,57,46,49,49,56,54,54,53,44,51,50,46,48,55,57,53,56,53,93,44,91,45,57,56,46,57,50,52,52,48,49,44,51,50,46,48,55,56,48,49,56,93,44,91,45,57,56,46,53,53,49,49,53,56,44,51,50,46,50,54,49,52,51,54,93,44,91,45,57,56,46,52,55,52,54,56,53,44,51,50,46,50,57,57,48,56,52,93,44,91,45,57,56,46,52,55,53,49,55,55,44,51,50,46,53,49,51,48,51,57,93,44,91,45,57,56,46,53,55,54,50,53,54,44,51,50,46,53,49,53,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,73,115,115,97,113,117,101,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,52,51,51,55,44,51,51,46,48,48,55,54,57,55,93,44,91,45,57,49,46,49,54,54,50,56,50,44,51,51,46,48,49,49,51,51,49,93,44,91,45,57,49,46,49,54,54,48,55,51,44,51,51,46,48,48,52,49,48,54,93,44,91,45,57,49,46,50,49,50,56,51,55,44,51,50,46,57,50,50,49,48,51,93,44,91,45,57,49,46,49,52,51,53,53,57,44,51,50,46,56,52,52,55,51,56,93,44,91,45,57,49,46,49,53,50,54,57,57,44,51,50,46,54,52,48,55,53,55,93,44,91,45,57,49,46,48,52,51,53,53,50,44,51,50,46,53,55,54,50,55,49,93,44,91,45,57,48,46,57,54,52,48,52,51,44,51,50,46,53,55,53,54,48,53,93,44,91,45,57,48,46,57,53,49,50,52,44,51,50,46,52,52,52,51,56,57,93,44,91,45,57,48,46,56,54,49,51,54,52,44,51,50,46,52,52,50,49,49,53,93,44,91,45,57,48,46,56,54,48,53,54,54,44,51,50,46,53,55,53,49,55,51,93,44,91,45,57,48,46,55,50,48,49,48,50,44,51,50,46,54,49,56,56,53,56,93,44,91,45,57,48,46,55,50,51,49,53,57,44,51,50,46,54,54,50,49,50,56,93,44,91,45,57,48,46,57,54,52,56,54,52,44,51,50,46,54,54,50,55,57,56,93,44,91,45,57,48,46,57,54,51,55,53,51,44,51,50,46,56,51,56,49,51,51,93,44,91,45,57,48,46,57,49,52,51,51,55,44,51,51,46,48,48,55,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,68,101,87,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,51,53,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,48,53,57,49,54,44,50,56,46,56,54,52,48,51,55,93,44,91,45,57,54,46,57,55,54,51,55,56,44,50,57,46,49,48,52,48,52,54,93,44,91,45,57,55,46,50,52,48,49,48,56,44,50,57,46,51,56,52,52,56,56,93,44,91,45,57,55,46,54,49,51,49,51,50,44,50,57,46,49,48,57,55,54,53,93,44,91,45,57,55,46,55,53,53,49,49,44,50,57,46,48,48,55,49,49,51,93,44,91,45,57,55,46,53,55,52,54,51,57,44,50,56,46,56,49,51,51,93,44,91,45,57,55,46,52,49,55,51,52,44,50,56,46,57,50,53,50,50,56,93,44,91,45,57,55,46,51,48,53,57,49,54,44,50,56,46,56,54,52,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,110,103,101,108,105,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,54,48,55,44,34,98,101,100,115,34,58,52,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,53,56,49,49,44,51,49,46,51,56,54,57,51,93,44,91,45,57,52,46,56,57,57,48,49,55,44,51,49,46,51,50,54,57,55,50,93,44,91,45,57,52,46,56,52,50,57,52,55,44,51,49,46,49,52,54,53,55,56,93,44,91,45,57,52,46,53,54,49,57,52,51,44,51,49,46,48,53,56,57,53,50,93,44,91,45,57,52,46,52,53,55,56,49,54,44,51,49,46,48,51,51,51,50,53,93,44,91,45,57,52,46,49,50,57,54,51,50,44,51,49,46,48,57,57,50,56,93,44,91,45,57,52,46,51,50,54,54,49,54,44,51,49,46,50,50,52,55,53,52,93,44,91,45,57,52,46,52,54,54,54,55,54,44,51,49,46,51,55,56,48,48,57,93,44,91,45,57,52,46,53,53,52,56,51,56,44,51,49,46,52,51,53,49,50,51,93,44,91,45,57,52,46,55,50,56,52,53,54,44,51,49,46,52,53,55,49,52,55,93,44,91,45,57,52,46,56,54,53,56,53,55,44,51,49,46,53,50,54,57,49,54,93,44,91,45,57,53,46,48,48,51,51,52,53,44,51,49,46,52,50,53,55,49,93,44,91,45,57,52,46,57,53,56,49,49,44,51,49,46,51,56,54,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,83,97,108,117,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,55,48,48,56,52,44,51,52,46,49,51,53,51,53,55,93,44,91,45,56,50,46,48,48,56,50,57,56,44,51,51,46,57,54,49,54,52,54,93,44,91,45,56,49,46,56,57,52,53,57,53,44,51,51,46,57,55,53,52,49,53,93,44,91,45,56,49,46,56,51,54,56,48,51,44,51,51,46,56,54,54,53,48,49,93,44,91,45,56,49,46,54,53,49,55,53,57,44,51,51,46,56,49,52,53,49,93,44,91,45,56,49,46,53,55,49,52,56,55,44,51,51,46,56,55,55,51,49,56,93,44,91,45,56,49,46,52,55,49,57,55,50,44,51,52,46,48,55,54,53,53,50,93,44,91,45,56,49,46,53,51,56,56,57,57,44,51,52,46,48,56,49,55,52,52,93,44,91,45,56,49,46,55,51,49,54,49,52,44,51,52,46,49,56,55,54,49,51,93,44,91,45,56,49,46,56,55,48,48,56,52,44,51,52,46,49,51,53,51,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,57,53,54,55,53,44,51,56,46,50,57,50,50,51,55,93,44,91,45,57,50,46,49,56,53,51,55,44,51,56,46,48,49,54,51,51,56,93,44,91,45,57,50,46,48,50,49,49,54,53,44,51,56,46,48,49,48,54,51,57,93,44,91,45,57,49,46,56,57,53,51,52,55,44,51,56,46,48,53,49,49,57,57,93,44,91,45,57,49,46,54,51,50,52,51,49,44,51,56,46,48,53,48,57,53,49,93,44,91,45,57,49,46,54,51,48,53,53,52,44,51,56,46,49,53,51,53,49,57,93,44,91,45,57,49,46,54,52,52,55,50,57,44,51,56,46,50,56,56,53,49,93,44,91,45,57,50,46,49,57,53,54,55,53,44,51,56,46,50,57,50,50,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,50,52,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,55,55,56,50,44,51,52,46,53,54,51,52,56,93,44,91,45,57,49,46,53,57,52,52,50,57,44,51,52,46,53,54,56,48,53,93,44,91,45,57,49,46,54,55,56,48,51,55,44,51,52,46,52,56,49,57,50,93,44,91,45,57,49,46,55,48,53,49,56,53,44,51,52,46,52,56,50,54,55,93,44,91,45,57,49,46,55,49,49,55,57,53,44,51,52,46,50,51,51,57,49,57,93,44,91,45,57,49,46,53,52,48,49,55,56,44,51,52,46,50,50,52,53,57,57,93,44,91,45,57,49,46,52,52,53,54,49,52,44,51,52,46,48,56,48,49,52,55,93,44,91,45,57,49,46,52,50,49,55,49,53,44,51,52,46,48,49,52,52,55,50,93,44,91,45,57,49,46,50,49,52,51,51,56,44,51,51,46,57,55,50,52,48,51,93,44,91,45,57,49,46,49,57,52,50,55,56,44,51,52,46,48,55,48,57,51,56,93,44,91,45,57,49,46,49,49,55,57,48,53,44,51,52,46,49,49,57,49,48,53,93,44,91,45,57,49,46,48,53,54,50,55,54,44,51,52,46,51,51,54,54,48,53,93,44,91,45,57,49,46,50,54,51,54,48,54,44,51,52,46,53,48,49,56,54,55,93,44,91,45,57,49,46,51,55,55,56,50,44,51,52,46,53,54,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,49,51,51,44,34,98,101,100,115,34,58,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,53,50,51,49,51,44,51,55,46,50,57,48,48,55,56,93,44,91,45,57,52,46,48,53,57,50,49,49,44,51,55,46,48,52,56,49,50,55,93,44,91,45,57,52,46,48,54,50,55,52,44,51,54,46,57,51,49,55,55,53,93,44,91,45,57,51,46,54,49,49,48,48,51,44,51,54,46,57,50,50,56,51,49,93,44,91,45,57,51,46,54,49,48,49,50,54,44,51,54,46,57,57,53,56,49,93,44,91,45,57,51,46,54,48,56,56,57,57,44,51,55,46,48,57,56,49,53,51,93,44,91,45,57,51,46,54,50,53,56,52,52,44,51,55,46,50,56,50,48,49,49,93,44,91,45,57,52,46,48,53,50,51,49,51,44,51,55,46,50,57,48,48,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,52,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,52,48,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,111,116,116,101,115,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,48,52,50,44,34,98,101,100,115,34,58,53,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,53,50,51,54,56,44,51,56,46,48,50,50,51,50,55,93,44,91,45,55,56,46,52,54,57,53,48,52,44,51,56,46,48,49,49,55,52,53,93,44,91,45,55,56,46,52,53,52,55,51,50,44,51,56,46,48,52,53,50,55,56,93,44,91,45,55,56,46,52,56,53,50,48,50,44,51,56,46,48,54,56,57,55,52,93,44,91,45,55,56,46,53,50,51,54,56,44,51,56,46,48,50,50,51,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,117,114,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,51,56,49,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,54,50,51,53,49,44,52,49,46,53,56,52,48,48,53,93,44,91,45,56,57,46,56,53,55,54,49,54,44,52,49,46,50,51,52,52,55,57,93,44,91,45,56,57,46,54,51,56,55,48,56,44,52,49,46,50,51,51,56,54,50,93,44,91,45,56,57,46,54,51,56,53,51,54,44,52,49,46,49,52,56,53,52,53,93,44,91,45,56,57,46,52,54,54,49,48,49,44,52,49,46,49,52,56,53,50,52,93,44,91,45,56,57,46,52,54,54,51,56,57,44,52,49,46,50,51,51,56,55,50,93,44,91,45,56,57,46,51,51,52,57,48,49,44,52,49,46,51,48,48,56,55,55,93,44,91,45,56,57,46,49,54,51,55,48,53,44,52,49,46,51,49,48,49,56,55,93,44,91,45,56,57,46,49,54,54,53,54,49,44,52,49,46,53,56,53,50,56,57,93,44,91,45,56,57,46,54,51,49,52,57,52,44,52,49,46,53,56,52,57,52,57,93,44,91,45,56,57,46,56,54,50,51,53,49,44,52,49,46,53,56,52,48,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,83,99,105,111,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,51,55,55,44,34,98,101,100,115,34,58,52,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,48,55,48,57,44,51,56,46,57,52,56,48,55,51,93,44,91,45,56,51,46,50,49,50,49,48,55,44,51,56,46,57,54,48,49,52,56,93,44,91,45,56,51,46,50,55,48,56,49,55,44,51,57,46,48,49,53,55,57,49,93,44,91,45,56,51,46,50,54,55,54,49,51,44,51,56,46,54,49,56,52,50,93,44,91,45,56,51,46,49,51,52,55,53,52,44,51,56,46,54,51,50,48,49,51,93,44,91,45,56,51,46,48,51,48,56,53,56,44,51,56,46,55,50,53,53,50,52,93,44,91,45,56,50,46,56,57,55,49,56,57,44,51,56,46,55,53,54,50,49,52,93,44,91,45,56,50,46,56,49,53,57,55,57,44,51,56,46,53,55,48,56,48,50,93,44,91,45,56,50,46,55,52,48,51,56,51,44,51,56,46,53,57,55,49,54,55,93,44,91,45,56,50,46,54,54,50,56,56,54,44,51,56,46,55,52,55,57,55,55,93,44,91,45,56,50,46,54,53,48,48,51,57,44,51,56,46,56,52,57,48,55,51,93,44,91,45,56,50,46,55,54,48,54,57,44,51,56,46,56,53,52,56,55,53,93,44,91,45,56,50,46,56,48,55,48,57,44,51,56,46,57,52,56,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,57,56,51,49,55,44,51,53,46,57,52,52,57,54,55,93,44,91,45,56,50,46,57,54,49,55,53,52,44,51,53,46,55,57,48,57,53,57,93,44,91,45,56,50,46,56,56,51,57,48,57,44,51,53,46,54,55,56,50,51,53,93,44,91,45,56,50,46,56,48,55,48,53,54,44,51,53,46,54,56,53,56,55,52,93,44,91,45,56,50,46,53,49,51,49,54,49,44,51,53,46,56,48,51,51,56,93,44,91,45,56,50,46,52,48,56,54,48,50,44,51,53,46,56,49,56,49,55,56,93,44,91,45,56,50,46,53,48,53,52,50,53,44,51,53,46,57,55,55,52,51,50,93,44,91,45,56,50,46,54,48,50,57,56,44,51,54,46,48,51,57,54,55,55,93,44,91,45,56,50,46,54,51,55,50,51,44,51,54,46,48,54,53,56,50,93,44,91,45,56,50,46,56,57,56,51,49,55,44,51,53,46,57,52,52,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,74,101,114,111,109,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,52,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,57,51,49,54,56,55,44,52,50,46,55,54,53,48,50,54,93,44,91,45,49,49,52,46,48,52,57,56,52,57,44,52,50,46,56,48,56,52,52,52,93,44,91,45,49,49,52,46,51,52,53,54,53,57,44,52,50,46,56,48,57,48,53,53,93,44,91,45,49,49,52,46,51,54,53,51,54,54,44,52,50,46,56,53,48,55,57,93,44,91,45,49,49,52,46,53,57,52,51,55,53,44,52,50,46,56,53,48,57,48,49,93,44,91,45,49,49,52,46,54,49,54,52,56,55,44,52,50,46,54,52,57,50,57,56,93,44,91,45,49,49,52,46,50,52,52,55,48,51,44,52,50,46,53,53,57,50,52,52,93,44,91,45,49,49,52,46,49,50,52,57,51,52,44,52,50,46,52,57,54,49,51,93,44,91,45,49,49,52,46,48,48,48,51,56,56,44,52,50,46,53,50,54,51,55,51,93,44,91,45,49,49,51,46,57,51,49,55,57,57,44,52,50,46,53,51,53,50,52,51,93,44,91,45,49,49,51,46,57,51,49,54,56,55,44,52,50,46,55,54,53,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,86,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,52,56,53,57,49,44,51,57,46,51,54,56,49,54,53,93,44,91,45,56,50,46,55,54,50,56,57,50,44,51,57,46,50,48,55,57,54,55,93,44,91,45,56,50,46,53,51,54,51,48,54,44,51,57,46,49,56,48,55,53,55,93,44,91,45,56,50,46,52,50,52,54,55,55,44,51,57,46,49,51,55,57,55,50,93,44,91,45,56,50,46,52,51,53,51,48,57,44,51,57,46,48,51,53,48,55,57,93,44,91,45,56,50,46,51,50,50,56,55,52,44,51,57,46,48,50,55,54,55,52,93,44,91,45,56,50,46,50,54,56,53,56,51,44,51,57,46,50,48,51,55,54,93,44,91,45,56,50,46,50,56,57,54,54,51,44,51,57,46,51,56,52,49,57,53,93,44,91,45,56,50,46,55,52,56,53,57,49,44,51,57,46,51,54,56,49,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,57,34,44,34,78,65,77,69,34,58,34,77,99,76,101,110,110,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,52,50,57,44,34,98,101,100,115,34,58,52,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,55,55,50,54,53,44,51,49,46,55,52,53,52,57,50,93,44,91,45,57,55,46,54,48,53,50,51,44,51,49,46,53,56,55,55,54,50,93,44,91,45,57,55,46,52,49,56,54,48,54,44,51,49,46,51,50,48,50,48,50,93,44,91,45,57,55,46,50,55,56,49,49,51,44,51,49,46,50,55,57,55,57,57,93,44,91,45,57,54,46,56,48,49,49,50,51,44,51,49,46,53,50,50,50,54,57,93,44,91,45,57,54,46,57,51,50,50,49,53,44,51,49,46,55,48,56,56,56,55,93,44,91,45,57,55,46,48,51,55,50,54,54,44,51,49,46,56,54,51,48,55,57,93,44,91,45,57,55,46,50,55,55,50,54,53,44,51,49,46,55,52,53,52,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,57,55,49,51,53,49,44,52,51,46,57,51,56,51,48,56,93,44,91,45,49,49,52,46,50,57,50,52,56,52,44,52,51,46,56,56,55,48,54,50,93,44,91,45,49,49,52,46,49,51,50,55,51,50,44,52,51,46,55,53,48,55,53,55,93,44,91,45,49,49,51,46,57,56,54,52,57,52,44,52,51,46,55,50,53,51,57,93,44,91,45,49,49,51,46,55,57,56,52,52,49,44,52,51,46,53,54,57,50,49,55,93,44,91,45,49,49,51,46,55,54,49,49,55,44,52,51,46,54,50,49,49,57,52,93,44,91,45,49,49,51,46,53,50,55,56,48,52,44,52,51,46,55,49,57,49,51,53,93,44,91,45,49,49,51,46,51,55,55,56,55,55,44,52,51,46,56,48,57,55,93,44,91,45,49,49,51,46,52,52,52,56,57,49,44,52,51,46,57,49,56,53,52,50,93,44,91,45,49,49,51,46,52,49,54,53,50,53,44,52,52,46,50,51,51,51,54,52,93,44,91,45,49,49,51,46,51,50,48,54,48,57,44,52,52,46,50,51,51,49,54,52,93,44,91,45,49,49,51,46,51,51,57,54,49,55,44,52,52,46,51,49,54,51,49,51,93,44,91,45,49,49,51,46,53,48,49,53,49,57,44,52,52,46,52,50,50,51,48,51,93,44,91,45,49,49,51,46,56,49,54,50,49,53,44,52,52,46,52,57,51,57,54,51,93,44,91,45,49,49,52,46,48,49,57,50,48,52,44,52,52,46,54,53,49,53,52,49,93,44,91,45,49,49,52,46,48,55,53,57,51,55,44,52,52,46,55,52,53,53,55,56,93,44,91,45,49,49,52,46,51,51,57,49,57,54,44,52,52,46,55,57,51,53,57,52,93,44,91,45,49,49,52,46,52,53,49,56,52,44,52,52,46,54,49,49,55,52,49,93,44,91,45,49,49,52,46,54,48,50,51,54,50,44,52,52,46,53,57,52,56,53,54,93,44,91,45,49,49,52,46,56,49,57,56,56,57,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,49,52,46,56,49,50,52,48,55,44,52,52,46,56,48,56,51,52,54,93,44,91,45,49,49,52,46,57,53,54,49,49,54,44,52,52,46,55,50,48,57,56,50,93,44,91,45,49,49,53,46,48,57,49,57,50,50,44,52,52,46,55,54,54,55,50,54,93,44,91,45,49,49,53,46,49,54,53,54,48,53,44,52,52,46,54,53,48,51,48,54,93,44,91,45,49,49,53,46,51,48,52,57,57,52,44,52,52,46,53,55,57,56,53,55,93,44,91,45,49,49,53,46,50,50,56,50,50,50,44,52,52,46,52,50,51,53,50,49,93,44,91,45,49,49,53,46,50,57,52,54,49,52,44,52,52,46,51,51,57,52,52,53,93,44,91,45,49,49,53,46,49,54,55,54,56,52,44,52,52,46,50,48,50,56,52,93,44,91,45,49,49,53,46,48,50,52,49,56,49,44,52,52,46,49,53,53,52,55,56,93,44,91,45,49,49,53,46,48,52,55,55,50,44,52,52,46,48,53,48,54,53,53,93,44,91,45,49,49,52,46,57,57,48,55,55,55,44,52,51,46,57,52,57,55,50,51,93,44,91,45,49,49,52,46,57,55,49,51,53,49,44,52,51,46,57,51,56,51,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,54,52,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,51,49,50,56,44,52,51,46,53,48,48,50,49,56,93,44,91,45,57,50,46,53,53,52,51,56,49,44,52,51,46,50,49,50,56,49,51,93,44,91,45,57,50,46,48,56,48,57,55,54,44,52,51,46,50,49,50,57,52,55,93,44,91,45,57,50,46,48,55,57,56,48,50,44,52,51,46,53,48,48,54,50,49,93,44,91,45,57,50,46,52,52,56,57,52,56,44,52,51,46,53,48,48,52,53,57,93,44,91,45,57,50,46,53,53,51,49,50,56,44,52,51,46,53,48,48,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,80,97,108,109,32,66,101,97,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,54,50,55,55,44,34,98,101,100,115,34,58,52,51,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,50,50,55,53,52,44,50,54,46,57,55,48,51,57,50,93,44,91,45,56,48,46,49,52,50,48,48,55,44,50,54,46,57,53,54,54,52,93,44,91,45,56,48,46,56,56,53,54,51,57,44,50,54,46,57,53,56,57,49,57,93,44,91,45,56,48,46,56,56,49,50,51,51,44,50,54,46,51,51,51,56,48,54,93,44,91,45,56,48,46,50,57,54,57,56,54,44,50,54,46,51,51,52,51,53,54,93,44,91,45,56,48,46,48,49,53,50,55,54,44,50,54,46,51,50,48,57,53,54,93,44,91,45,55,57,46,57,56,48,54,52,56,44,50,54,46,53,57,53,52,52,55,93,44,91,45,55,57,46,57,55,53,52,50,53,44,50,54,46,56,48,48,50,53,93,44,91,45,56,48,46,48,50,50,55,53,52,44,50,54,46,57,55,48,51,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,52,53,52,53,49,44,51,51,46,57,56,52,49,57,53,93,44,91,45,56,50,46,53,55,51,54,53,50,44,51,51,46,55,56,54,49,49,54,93,44,91,45,56,50,46,52,55,57,53,49,56,44,51,51,46,54,51,57,53,51,53,93,44,91,45,56,50,46,52,50,53,51,50,56,44,51,51,46,54,53,48,54,50,57,93,44,91,45,56,50,46,51,50,57,48,52,57,44,51,51,46,54,57,55,54,55,54,93,44,91,45,56,50,46,50,49,56,54,52,57,44,51,51,46,54,56,54,50,57,57,93,44,91,45,56,50,46,51,52,54,57,51,51,44,51,51,46,56,51,52,50,57,56,93,44,91,45,56,50,46,53,54,52,52,57,49,44,51,51,46,57,53,53,55,51,51,93,44,91,45,56,50,46,54,52,53,52,53,49,44,51,51,46,57,56,52,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,50,53,44,34,98,101,100,115,34,58,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,48,53,56,57,57,44,51,49,46,55,53,51,48,51,53,93,44,91,45,56,54,46,57,48,54,55,54,57,44,51,49,46,54,51,50,54,55,49,93,44,91,45,56,54,46,56,51,57,51,56,54,44,51,49,46,53,50,53,50,48,52,93,44,91,45,56,54,46,55,48,49,53,53,52,44,51,49,46,53,50,51,57,52,54,93,44,91,45,56,54,46,52,57,57,50,49,51,44,51,49,46,53,50,53,51,51,49,93,44,91,45,56,54,46,52,52,56,54,51,53,44,51,49,46,54,53,53,54,49,55,93,44,91,45,56,54,46,52,52,56,49,57,56,44,51,49,46,57,54,52,54,50,57,93,44,91,45,56,54,46,56,53,55,53,56,51,44,51,49,46,57,54,50,49,54,55,93,44,91,45,56,54,46,57,48,54,56,57,57,44,51,49,46,56,51,48,54,50,56,93,44,91,45,56,54,46,57,48,53,56,57,57,44,51,49,46,55,53,51,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,83,117,109,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,52,55,51,44,34,98,101,100,115,34,58,50,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,54,51,57,48,57,44,51,54,46,54,51,51,53,54,50,93,44,91,45,56,54,46,54,57,53,48,54,52,44,51,54,46,52,50,49,51,49,57,93,44,91,45,56,54,46,55,53,52,55,57,53,44,51,54,46,52,48,53,52,57,54,93,44,91,45,56,54,46,53,57,52,50,56,54,44,51,54,46,50,52,53,49,48,53,93,44,91,45,56,54,46,52,53,49,55,50,49,44,51,54,46,51,51,53,54,50,57,93,44,91,45,56,54,46,50,56,51,50,53,54,44,51,54,46,51,52,55,53,93,44,91,45,56,54,46,50,50,56,52,51,52,44,51,54,46,52,56,55,52,55,50,93,44,91,45,56,54,46,50,48,53,51,56,56,44,51,54,46,54,52,48,49,56,52,93,44,91,45,56,54,46,52,49,49,51,55,57,44,51,54,46,54,53,48,57,50,52,93,44,91,45,56,54,46,53,54,51,57,48,57,44,51,54,46,54,51,51,53,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,75,105,110,103,32,97,110,100,32,81,117,101,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,53,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,56,49,52,49,56,44,51,55,46,56,57,49,54,53,52,93,44,91,45,55,55,46,48,51,51,50,55,51,44,51,55,46,55,50,48,56,48,57,93,44,91,45,55,54,46,57,50,55,53,44,51,55,46,54,57,48,52,56,53,93,44,91,45,55,54,46,55,55,55,55,50,57,44,51,55,46,53,53,52,52,52,54,93,44,91,45,55,54,46,55,57,50,49,56,52,44,51,55,46,53,49,55,53,57,52,93,44,91,45,55,54,46,55,52,49,57,56,52,44,51,55,46,52,54,55,48,55,54,93,44,91,45,55,54,46,55,49,50,51,48,53,44,51,55,46,52,51,49,51,48,57,93,44,91,45,55,54,46,54,53,52,48,55,54,44,51,55,46,54,48,51,49,55,52,93,44,91,45,55,54,46,55,53,49,48,55,50,44,51,55,46,55,50,56,54,48,53,93,44,91,45,55,55,46,48,51,53,53,49,50,44,51,55,46,56,54,53,56,49,56,93,44,91,45,55,55,46,48,55,48,49,49,53,44,51,55,46,57,54,52,55,55,93,44,91,45,55,55,46,49,56,49,52,49,56,44,51,55,46,56,57,49,54,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,56,55,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,54,54,54,56,57,44,51,54,46,52,57,56,55,51,53,93,44,91,45,57,51,46,56,54,54,57,54,49,44,51,54,46,51,52,56,53,55,57,93,44,91,45,57,51,46,56,49,53,48,55,56,44,51,54,46,51,48,54,53,53,49,93,44,91,45,57,51,46,54,53,55,54,56,57,44,51,54,46,51,48,51,48,56,50,93,44,91,45,57,51,46,53,53,49,49,51,53,44,51,54,46,49,50,54,50,55,49,93,44,91,45,57,51,46,52,55,57,53,50,56,44,51,54,46,49,50,53,48,55,50,93,44,91,45,57,51,46,51,48,48,56,50,44,51,54,46,49,50,49,53,53,93,44,91,45,57,51,46,50,57,51,52,54,55,44,51,54,46,52,57,56,50,55,54,93,44,91,45,57,51,46,51,49,53,51,51,50,44,51,54,46,52,57,56,49,52,93,44,91,45,57,51,46,53,56,52,50,54,50,44,51,54,46,52,57,57,49,54,55,93,44,91,45,57,51,46,56,54,54,54,56,57,44,51,54,46,52,57,56,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,56,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,56,50,48,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,115,98,111,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,52,56,53,48,57,44,51,56,46,48,54,56,49,48,52,93,44,91,45,55,56,46,56,57,49,55,55,50,44,51,56,46,48,51,57,52,51,56,93,44,91,45,55,56,46,56,54,50,54,55,55,44,51,56,46,48,56,57,57,55,50,93,44,91,45,55,56,46,57,48,51,55,57,53,44,51,56,46,48,57,57,56,48,50,93,44,91,45,55,56,46,57,52,56,53,48,57,44,51,56,46,48,54,56,49,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,48,34,44,34,78,65,77,69,34,58,34,83,105,116,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,51,56,44,34,98,101,100,115,34,58,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,54,46,52,53,52,52,50,55,44,53,55,46,56,51,48,54,55,54,93,44,91,45,49,51,53,46,56,54,52,49,44,53,54,46,57,57,54,55,93,44,91,45,49,51,52,46,56,53,57,50,50,50,44,53,54,46,50,52,52,57,52,50,93,44,91,45,49,51,52,46,54,54,54,51,57,54,44,53,54,46,49,52,55,53,56,54,93,44,91,45,49,51,52,46,54,54,54,54,54,56,44,53,54,46,50,56,51,51,51,52,93,44,91,45,49,51,52,46,52,50,57,50,52,55,44,53,54,46,50,56,50,55,51,55,93,44,91,45,49,51,52,46,52,57,54,50,49,54,44,53,54,46,54,57,57,54,51,49,93,44,91,45,49,51,52,46,53,54,57,50,56,57,44,53,54,46,56,54,51,48,53,50,93,44,91,45,49,51,52,46,54,55,55,50,44,53,54,46,57,57,57,93,44,91,45,49,51,52,46,55,51,56,53,53,54,44,53,55,46,50,50,54,51,48,51,93,44,91,45,49,51,52,46,55,48,49,49,52,49,44,53,55,46,52,53,52,54,49,51,93,44,91,45,49,51,52,46,56,51,54,50,44,53,55,46,55,56,55,55,93,44,91,45,49,51,53,46,50,51,56,49,50,57,44,53,55,46,55,54,49,55,49,49,93,44,91,45,49,51,53,46,53,50,56,53,51,52,44,53,55,46,56,56,48,52,55,93,44,91,45,49,51,53,46,57,48,49,57,54,52,44,53,56,46,48,48,49,51,52,51,93,44,91,45,49,51,54,46,48,50,52,51,50,56,44,53,55,46,56,51,56,55,57,53,93,44,91,45,49,51,54,46,52,53,52,52,50,55,44,53,55,46,56,51,48,54,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,77,117,108,116,110,111,109,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,56,54,52,55,44,34,98,101,100,115,34,58,50,57,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,57,50,57,49,52,54,44,52,53,46,55,50,49,52,56,50,93,44,91,45,49,50,50,46,57,50,57,49,50,56,44,52,53,46,54,51,53,51,49,51,93,44,91,45,49,50,50,46,55,52,51,56,54,50,44,52,53,46,53,49,57,53,48,57,93,44,91,45,49,50,50,46,55,52,51,55,50,49,44,52,53,46,52,51,51,50,57,52,93,44,91,45,49,50,50,46,54,52,49,53,56,44,52,53,46,52,54,49,52,56,50,93,44,91,45,49,50,49,46,56,49,57,53,56,55,44,52,53,46,52,54,49,54,55,53,93,44,91,45,49,50,49,46,57,48,54,54,50,56,44,52,53,46,53,50,49,49,52,55,93,44,91,45,49,50,49,46,57,50,50,48,50,56,44,52,53,46,54,52,57,50,48,53,93,44,91,45,49,50,50,46,50,52,57,50,49,55,44,52,53,46,53,52,56,54,53,51,93,44,91,45,49,50,50,46,52,51,56,54,55,52,44,52,53,46,53,54,51,53,56,53,93,44,91,45,49,50,50,46,55,54,51,56,49,44,52,53,46,54,53,55,49,51,56,93,44,91,45,49,50,50,46,55,54,50,52,51,55,44,52,53,46,55,50,56,54,54,53,93,44,91,45,49,50,50,46,57,50,57,49,52,54,44,52,53,46,55,50,49,52,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,71,114,117,110,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,49,51,53,57,51,44,51,53,46,50,56,57,49,56,57,93,44,91,45,56,53,46,56,55,51,48,50,53,44,51,53,46,50,50,51,51,54,50,93,44,91,45,56,53,46,55,52,48,49,49,51,44,51,53,46,50,49,53,50,57,53,93,44,91,45,56,53,46,54,57,48,52,49,53,44,51,53,46,50,56,54,48,55,53,93,44,91,45,56,53,46,53,53,56,53,53,49,44,51,53,46,51,49,57,50,57,50,93,44,91,45,56,53,46,52,56,53,54,51,53,44,51,53,46,52,48,54,52,51,51,93,44,91,45,56,53,46,54,48,55,51,50,54,44,51,53,46,53,51,49,54,53,49,93,44,91,45,56,53,46,56,55,54,57,54,50,44,51,53,46,53,50,52,48,57,53,93,44,91,45,56,53,46,57,49,51,53,57,51,44,51,53,46,50,56,57,49,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,117,98,98,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,56,54,50,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,56,51,50,49,54,44,52,55,46,52,49,50,55,55,51,93,44,91,45,57,53,46,49,54,57,49,55,50,44,52,55,46,49,53,50,53,49,53,93,44,91,45,57,53,46,49,54,51,48,49,44,52,54,46,56,48,52,55,50,93,44,91,45,57,52,46,55,56,55,49,50,54,44,52,54,46,56,48,51,57,52,51,93,44,91,45,57,52,46,54,53,57,57,52,50,44,52,54,46,56,48,51,55,49,54,93,44,91,45,57,52,46,54,55,48,50,49,52,44,52,55,46,52,49,48,49,53,49,93,44,91,45,57,53,46,49,56,51,50,49,54,44,52,55,46,52,49,50,55,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,83,97,114,103,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,48,54,55,49,53,44,52,54,46,50,56,50,54,50,54,93,44,91,45,57,56,46,48,48,56,49,48,50,44,52,53,46,57,51,53,56,57,54,93,44,91,45,57,55,46,57,55,56,55,55,56,44,52,53,46,57,51,53,56,54,51,93,44,91,45,57,55,46,50,50,56,50,57,49,44,52,53,46,57,51,53,51,56,51,93,44,91,45,57,55,46,50,53,57,54,51,50,44,52,53,46,57,57,55,49,56,53,93,44,91,45,57,55,46,50,56,48,53,54,54,44,52,54,46,50,56,50,51,57,51,93,44,91,45,57,56,46,48,48,54,55,49,53,44,52,54,46,50,56,50,54,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,53,53,56,44,34,98,101,100,115,34,58,52,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,50,54,50,50,56,44,52,52,46,57,57,52,56,54,51,93,44,91,45,55,52,46,57,55,50,52,57,49,44,52,52,46,57,56,51,52,48,53,93,44,91,45,55,53,46,50,55,51,53,52,53,44,52,52,46,56,53,51,48,56,52,93,44,91,45,55,53,46,55,54,54,50,50,54,44,52,52,46,53,49,53,56,52,55,93,44,91,45,55,53,46,56,54,48,48,52,54,44,52,52,46,52,48,51,50,54,51,93,44,91,45,55,53,46,52,52,54,49,50,52,44,52,52,46,50,49,55,54,53,53,93,44,91,45,55,53,46,49,55,48,49,53,57,44,52,52,46,48,57,54,57,53,57,93,44,91,45,55,53,46,48,54,50,55,55,57,44,52,52,46,48,53,48,52,93,44,91,45,55,52,46,56,53,52,49,55,49,44,52,52,46,48,55,48,48,56,57,93,44,91,45,55,52,46,53,51,53,49,53,54,44,52,52,46,48,57,57,50,53,93,44,91,45,55,52,46,53,50,53,54,56,51,44,52,52,46,49,55,48,54,51,54,93,44,91,45,55,52,46,54,52,49,56,55,50,44,52,52,46,57,53,50,54,50,49,93,44,91,45,55,52,46,55,50,54,50,50,56,44,52,52,46,57,57,52,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,82,101,121,110,111,108,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,49,49,56,54,51,44,51,55,46,52,49,53,50,55,55,93,44,91,45,57,49,46,49,50,54,48,50,56,44,51,55,46,49,57,57,52,56,93,44,91,45,57,49,46,48,49,55,55,54,54,44,51,55,46,48,57,53,54,55,55,93,44,91,45,57,48,46,57,54,52,52,54,54,44,51,55,46,48,53,51,53,56,52,93,44,91,45,57,48,46,55,55,57,53,53,51,44,51,55,46,48,53,48,51,50,52,93,44,91,45,57,48,46,55,51,53,52,53,51,44,51,55,46,50,55,49,48,52,93,44,91,45,57,48,46,55,55,50,57,52,57,44,51,55,46,51,55,51,54,53,57,93,44,91,45,57,48,46,55,54,56,54,57,53,44,51,55,46,54,48,51,48,49,49,93,44,91,45,57,49,46,49,53,53,48,55,51,44,51,55,46,53,56,56,48,57,50,93,44,91,45,57,49,46,51,49,50,52,53,56,44,51,55,46,53,57,50,56,50,52,93,44,91,45,57,49,46,51,49,52,50,51,54,44,51,55,46,53,48,53,49,51,50,93,44,91,45,57,49,46,50,49,49,56,54,51,44,51,55,46,52,49,53,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,83,97,99,114,97,109,101,110,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,48,48,50,51,44,34,98,101,100,115,34,58,51,50,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,49,52,49,53,57,53,44,51,56,46,55,49,49,57,51,57,93,44,91,45,49,50,49,46,52,56,52,51,57,54,44,51,56,46,55,51,52,53,57,56,93,44,91,45,49,50,49,46,54,48,50,56,57,52,44,51,56,46,55,51,53,56,51,56,93,44,91,45,49,50,49,46,53,48,50,57,56,50,44,51,56,46,52,52,48,55,49,56,93,44,91,45,49,50,49,46,53,57,51,50,55,51,44,51,56,46,51,49,51,48,56,57,93,44,91,45,49,50,49,46,54,49,53,52,49,51,44,51,56,46,49,57,53,54,57,54,93,44,91,45,49,50,49,46,55,49,51,57,50,54,44,51,56,46,48,56,52,53,52,50,93,44,91,45,49,50,49,46,56,54,50,52,54,50,44,51,56,46,48,54,54,48,51,93,44,91,45,49,50,49,46,55,51,55,56,50,52,44,51,56,46,48,50,54,54,51,93,44,91,45,49,50,49,46,53,56,48,48,50,50,44,51,56,46,48,57,52,52,49,52,93,44,91,45,49,50,49,46,52,55,48,57,53,56,44,51,56,46,50,53,57,57,48,50,93,44,91,45,49,50,49,46,51,52,52,48,50,52,44,51,56,46,50,50,56,50,54,93,44,91,45,49,50,49,46,48,50,55,48,56,52,44,51,56,46,51,48,48,50,53,50,93,44,91,45,49,50,49,46,48,50,55,53,48,55,44,51,56,46,53,48,56,50,57,50,93,44,91,45,49,50,49,46,49,52,49,53,57,53,44,51,56,46,55,49,49,57,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,80,97,117,108,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,55,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,48,51,53,52,52,44,52,49,46,50,53,50,53,54,50,93,44,91,45,56,52,46,56,48,51,50,53,49,44,52,48,46,57,56,57,51,57,52,93,44,91,45,56,52,46,51,57,57,52,56,54,44,52,48,46,57,57,48,51,49,53,93,44,91,45,56,52,46,51,52,49,54,48,50,44,52,49,46,49,54,53,53,50,52,93,44,91,45,56,52,46,52,53,55,50,49,55,44,52,49,46,50,53,51,52,56,53,93,44,91,45,56,52,46,56,48,51,53,52,52,44,52,49,46,50,53,50,53,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,87,101,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,52,55,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,55,51,56,54,49,44,52,48,46,57,49,55,56,50,51,93,44,91,45,56,53,46,51,51,54,48,51,44,52,48,46,57,49,55,48,56,50,93,44,91,45,56,53,46,51,51,52,54,54,55,44,52,48,46,54,53,52,52,49,51,93,44,91,45,56,53,46,52,52,56,56,50,53,44,52,48,46,54,53,51,54,48,55,93,44,91,45,56,53,46,52,52,55,48,49,52,44,52,48,46,53,54,54,57,50,57,93,44,91,45,56,53,46,50,48,49,49,52,54,44,52,48,46,53,54,55,50,52,50,93,44,91,45,56,53,46,48,54,56,52,55,57,44,52,48,46,53,54,56,50,52,93,44,91,45,56,53,46,48,55,51,56,54,49,44,52,48,46,57,49,55,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,49,55,56,49,50,53,44,51,55,46,49,49,51,52,93,44,91,45,56,48,46,51,52,53,51,54,50,44,51,55,46,48,50,54,56,49,56,93,44,91,45,56,48,46,53,52,51,57,51,51,44,51,54,46,57,56,52,54,51,57,93,44,91,45,56,48,46,54,51,51,57,56,55,44,51,54,46,57,51,49,55,56,93,44,91,45,56,48,46,52,54,52,49,56,44,51,54,46,55,48,56,55,49,56,93,44,91,45,56,48,46,51,56,53,51,55,51,44,51,54,46,55,57,56,54,53,56,93,44,91,45,56,48,46,50,51,53,52,53,53,44,51,54,46,56,55,50,49,51,93,44,91,45,56,48,46,49,52,53,56,52,52,44,51,54,46,57,52,57,53,55,56,93,44,91,45,56,48,46,49,50,56,54,55,52,44,51,55,46,49,50,50,57,48,49,93,44,91,45,56,48,46,49,55,56,49,50,53,44,51,55,46,49,49,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,66,97,114,98,97,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,51,55,51,56,44,34,98,101,100,115,34,58,56,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,50,48,46,55,48,50,55,57,53,44,51,52,46,57,57,57,57,55,53,93,44,91,45,49,50,48,46,55,51,51,56,50,44,51,52,46,56,57,54,48,52,49,93,44,91,45,49,50,48,46,54,55,51,50,56,49,44,51,52,46,56,51,56,54,50,52,93,44,91,45,49,50,48,46,54,54,52,54,57,49,44,51,52,46,54,57,54,51,52,52,93,44,91,45,49,50,48,46,55,49,50,55,53,55,44,51,52,46,53,54,56,50,57,55,93,44,91,45,49,50,48,46,53,53,57,52,51,57,44,51,52,46,52,56,56,52,54,54,93,44,91,45,49,50,48,46,52,53,48,57,57,56,44,51,52,46,51,57,49,49,56,52,93,44,91,45,49,50,48,46,50,56,55,49,50,53,44,51,52,46,52,49,55,54,48,57,93,44,91,45,49,50,48,46,48,52,52,56,49,52,44,51,52,46,52,49,50,52,53,52,93,44,91,45,49,49,57,46,56,57,56,53,48,50,44,51,52,46,51,54,48,51,53,56,93,44,91,45,49,49,57,46,55,48,55,53,57,51,44,51,52,46,51,51,55,51,50,52,93,44,91,45,49,49,57,46,54,53,49,51,53,55,44,51,52,46,51,54,54,55,48,56,93,44,91,45,49,49,57,46,53,48,48,57,53,51,44,51,52,46,51,50,54,57,50,50,93,44,91,45,49,49,57,46,52,52,50,50,50,50,44,51,52,46,52,53,53,57,49,93,44,91,45,49,49,57,46,52,52,50,51,53,50,44,51,52,46,57,48,49,50,55,52,93,44,91,45,49,49,57,46,52,55,50,55,53,52,44,51,52,46,57,48,49,49,55,52,93,44,91,45,49,49,57,46,55,52,53,53,54,54,44,51,52,46,57,55,51,54,55,54,93,44,91,45,49,50,48,46,48,57,54,57,51,44,51,53,46,49,48,57,53,57,53,93,44,91,45,49,50,48,46,51,50,55,49,49,53,44,51,52,46,57,56,54,53,50,53,93,44,91,45,49,50,48,46,52,57,54,50,50,50,44,51,52,46,57,57,51,49,53,53,93,44,91,45,49,50,48,46,54,51,52,49,52,52,44,51,52,46,57,53,57,53,54,50,93,44,91,45,49,50,48,46,55,48,50,55,57,53,44,51,52,46,57,57,57,57,55,53,93,93,93,44,91,91,91,45,49,49,57,46,52,54,56,48,54,52,44,51,52,46,48,54,51,49,51,57,93,44,91,45,49,49,57,46,53,54,53,53,50,50,44,51,52,46,49,48,56,56,48,57,93,44,91,45,49,49,57,46,54,53,52,57,51,49,44,51,52,46,48,55,49,50,49,56,93,44,91,45,49,49,57,46,57,50,56,55,57,53,44,51,52,46,49,50,57,57,48,50,93,44,91,45,49,50,48,46,48,48,48,57,54,51,44,51,52,46,48,55,54,56,49,57,93,44,91,45,49,50,48,46,50,53,50,56,52,54,44,51,52,46,48,53,56,48,51,49,93,44,91,45,49,50,48,46,51,54,49,57,55,56,44,51,52,46,49,52,56,55,56,93,44,91,45,49,50,48,46,53,54,48,57,57,56,44,51,52,46,49,52,48,54,54,52,93,44,91,45,49,50,48,46,53,55,51,56,48,56,44,51,52,46,48,55,53,57,54,54,93,44,91,45,49,50,48,46,52,54,54,55,55,55,44,51,51,46,57,55,54,49,49,54,93,44,91,45,49,50,48,46,50,57,56,57,55,51,44,51,51,46,57,54,56,52,53,55,93,44,91,45,49,50,48,46,50,50,49,49,50,56,44,51,51,46,56,56,52,49,56,55,93,44,91,45,49,50,48,46,49,48,52,48,56,56,44,51,51,46,56,52,50,51,57,54,93,44,91,45,49,49,57,46,57,50,56,55,57,57,44,51,51,46,57,48,53,52,55,49,93,44,91,45,49,49,57,46,55,48,55,52,57,49,44,51,51,46,57,49,48,51,56,56,93,44,91,45,49,49,57,46,52,57,50,50,57,44,51,51,46,57,56,51,50,49,53,93,44,91,45,49,49,57,46,52,54,56,48,54,52,44,51,52,46,48,54,51,49,51,57,93,93,93,44,91,91,91,45,49,49,57,46,49,49,55,49,55,52,44,51,51,46,53,48,53,54,93,44,91,45,49,49,57,46,48,55,49,56,57,51,44,51,51,46,52,49,51,55,57,57,93,44,91,45,49,49,56,46,57,56,48,53,49,50,44,51,51,46,52,50,56,53,57,51,93,44,91,45,49,49,56,46,57,56,50,49,52,57,44,51,51,46,53,50,52,50,54,93,44,91,45,49,49,57,46,49,49,55,49,55,52,44,51,51,46,53,48,53,54,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,51,51,52,55,44,51,56,46,50,48,57,53,55,93,44,91,45,56,49,46,57,51,50,52,52,52,44,51,56,46,49,53,48,48,56,53,93,44,91,45,56,49,46,57,51,50,53,48,55,44,51,56,46,48,50,53,51,53,54,93,44,91,45,56,49,46,55,56,53,54,52,49,44,51,55,46,57,51,54,52,48,52,93,44,91,45,56,49,46,55,50,50,49,51,54,44,51,55,46,56,48,57,53,48,55,93,44,91,45,56,49,46,54,48,55,53,51,50,44,51,55,46,55,56,56,55,48,57,93,44,91,45,56,49,46,53,49,52,50,50,56,44,51,55,46,55,57,49,50,49,49,93,44,91,45,56,49,46,53,55,49,51,51,52,44,51,55,46,57,50,56,49,48,55,93,44,91,45,56,49,46,52,53,54,54,51,50,44,51,55,46,57,56,55,51,48,55,93,44,91,45,56,49,46,52,55,56,49,50,50,44,51,56,46,48,54,48,49,51,56,93,44,91,45,56,49,46,54,52,56,53,51,55,44,51,56,46,49,56,53,48,51,54,93,44,91,45,56,49,46,56,51,51,52,55,44,51,56,46,50,48,57,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,53,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,53,50,54,55,57,44,51,52,46,57,57,51,56,54,51,93,44,91,45,56,57,46,50,57,57,50,50,55,44,51,52,46,56,52,52,52,49,53,93,44,91,45,56,57,46,50,57,56,51,51,52,44,51,52,46,53,56,50,57,50,54,93,44,91,45,56,57,46,50,52,53,54,52,53,44,51,52,46,53,56,51,50,51,52,93,44,91,45,56,57,46,48,56,56,52,56,56,44,51,52,46,53,57,56,50,52,55,93,44,91,45,56,57,46,48,56,56,48,54,53,44,51,52,46,56,49,53,51,48,55,93,44,91,45,56,57,46,48,49,55,53,53,49,44,51,52,46,56,53,56,55,50,51,93,44,91,45,56,57,46,48,49,55,49,50,55,44,51,52,46,57,57,52,57,55,49,93,44,91,45,56,57,46,49,57,56,50,56,56,44,51,52,46,57,57,52,52,56,52,93,44,91,45,56,57,46,51,53,50,54,55,57,44,51,52,46,57,57,51,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,67,114,105,116,116,101,110,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,56,51,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,53,56,52,54,54,44,51,55,46,52,48,52,55,53,50,93,44,91,45,56,56,46,50,49,56,57,56,44,51,55,46,50,55,51,49,52,53,93,44,91,45,56,56,46,49,57,51,53,49,57,44,51,55,46,49,52,55,50,53,54,93,44,91,45,56,56,46,48,57,53,55,56,49,44,51,55,46,49,55,57,54,56,52,93,44,91,45,56,56,46,48,56,49,48,53,56,44,51,55,46,50,50,51,51,52,55,93,44,91,45,56,55,46,56,48,49,48,52,54,44,51,55,46,51,55,57,52,52,53,93,44,91,45,56,55,46,57,51,50,57,53,50,44,51,55,46,52,56,48,48,53,50,93,44,91,45,56,56,46,48,54,49,51,51,50,44,51,55,46,53,48,53,51,51,50,93,44,91,45,56,56,46,50,55,57,50,48,55,44,51,55,46,52,53,51,50,57,50,93,44,91,45,56,56,46,51,53,56,52,54,54,44,51,55,46,52,48,52,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,80,97,108,111,32,65,108,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,53,53,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,44,91,45,57,52,46,57,49,51,56,57,44,52,50,46,57,48,57,55,93,44,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,44,91,45,57,52,46,52,52,51,49,51,55,44,52,51,46,50,53,53,48,49,52,93,44,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,82,105,110,103,103,111,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,56,52,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,55,48,55,55,57,44,52,48,46,56,57,57,53,48,50,93,44,91,45,57,52,46,52,55,49,50,49,51,44,52,48,46,53,55,48,56,50,53,93,44,91,45,57,52,46,50,51,50,50,52,44,52,48,46,53,55,49,57,48,49,93,44,91,45,57,52,46,48,49,53,52,57,50,44,52,48,46,53,55,51,57,49,52,93,44,91,45,57,52,46,48,49,52,56,48,51,44,52,48,46,56,57,55,48,51,49,93,44,91,45,57,52,46,52,55,48,55,55,57,44,52,48,46,56,57,57,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,57,53,56,44,34,98,101,100,115,34,58,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,53,52,49,55,50,56,44,51,53,46,56,57,57,56,53,49,93,44,91,45,56,48,46,48,52,54,56,54,57,44,51,53,46,57,50,48,54,57,51,93,44,91,45,56,48,46,48,54,54,56,52,50,44,51,53,46,53,48,53,54,54,49,93,44,91,45,55,57,46,55,54,55,57,53,55,44,51,53,46,53,49,49,52,56,52,93,44,91,45,55,57,46,53,53,53,56,48,52,44,51,53,46,53,49,53,48,51,57,93,44,91,45,55,57,46,53,52,50,52,50,56,44,51,53,46,56,52,51,51,48,51,93,44,91,45,55,57,46,53,52,49,55,50,56,44,51,53,46,56,57,57,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,101,99,105,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,53,49,55,44,34,98,101,100,115,34,58,49,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,56,56,53,57,54,44,51,57,46,55,50,50,49,57,57,93,44,91,45,55,54,46,49,51,53,52,56,52,44,51,57,46,55,50,49,49,52,55,93,44,91,45,55,54,46,50,51,51,50,55,57,44,51,57,46,55,50,49,51,54,55,93,44,91,45,55,54,46,48,52,49,57,55,54,44,51,57,46,52,57,52,50,50,56,93,44,91,45,55,54,46,48,55,57,57,50,53,44,51,57,46,52,48,53,53,48,54,93,44,91,45,55,53,46,57,48,56,48,51,53,44,51,57,46,51,54,52,53,48,49,93,44,91,45,55,53,46,55,54,54,53,57,52,44,51,57,46,51,55,55,53,54,51,93,44,91,45,55,53,46,55,56,56,53,57,54,44,51,57,46,55,50,50,49,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,52,55,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,50,54,53,56,57,44,52,48,46,52,55,54,56,55,54,93,44,91,45,56,55,46,53,51,49,52,52,57,44,52,48,46,49,52,56,49,50,55,93,44,91,45,56,55,46,52,48,54,54,54,55,44,52,48,46,49,50,55,53,48,56,93,44,91,45,56,55,46,50,52,52,56,57,56,44,52,48,46,51,48,57,50,53,50,93,44,91,45,56,55,46,48,57,50,49,52,56,44,52,48,46,51,54,54,54,49,50,93,44,91,45,56,55,46,48,57,51,54,55,54,44,52,48,46,52,55,53,55,52,53,93,44,91,45,56,55,46,53,50,54,53,56,57,44,52,48,46,52,55,54,56,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,53,50,50,50,53,44,52,49,46,55,52,48,51,55,50,93,44,91,45,57,56,46,55,53,49,53,53,56,44,52,49,46,51,57,52,48,56,52,93,44,91,45,57,56,46,55,52,52,51,51,44,52,49,46,51,57,52,49,55,56,93,44,91,45,57,56,46,50,57,49,52,49,57,44,52,49,46,51,57,51,56,57,52,93,44,91,45,57,56,46,50,57,49,51,52,52,44,52,49,46,52,56,48,55,50,55,93,44,91,45,57,56,46,50,57,53,55,54,44,52,49,46,55,52,49,49,55,56,93,44,91,45,57,56,46,55,53,50,50,50,53,44,52,49,46,55,52,48,51,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,56,56,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,44,91,45,57,55,46,51,54,57,49,57,57,44,52,48,46,48,48,49,57,54,54,93,44,91,45,57,54,46,57,49,54,52,48,55,44,52,48,46,48,48,49,53,49,49,93,44,91,45,57,54,46,57,49,54,48,53,53,44,52,48,46,51,52,57,55,50,55,93,44,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,56,56,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,52,48,49,44,52,48,46,54,57,56,54,50,53,93,44,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,44,91,45,57,54,46,57,49,54,48,53,53,44,52,48,46,51,52,57,55,50,55,93,44,91,45,57,54,46,57,49,50,54,51,55,44,52,48,46,53,50,51,54,50,53,93,44,91,45,57,54,46,57,49,51,52,57,51,44,52,48,46,54,57,55,57,52,56,93,44,91,45,57,55,46,51,54,56,52,48,49,44,52,48,46,54,57,56,54,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,75,110,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,52,56,53,52,52,44,51,55,46,53,48,51,49,54,55,93,44,91,45,56,51,46,48,53,48,50,48,49,44,51,55,46,53,50,53,51,49,52,93,44,91,45,56,51,46,49,50,52,51,52,56,44,51,55,46,52,48,52,57,55,51,93,44,91,45,56,51,46,49,48,49,53,54,51,44,51,55,46,50,51,53,52,51,55,93,44,91,45,56,51,46,48,48,48,49,52,50,44,51,55,46,49,57,53,55,49,93,44,91,45,56,50,46,55,51,50,54,57,51,44,51,55,46,50,55,49,53,48,50,93,44,91,45,56,50,46,55,49,48,56,48,53,44,51,55,46,50,56,53,51,50,51,93,44,91,45,56,50,46,56,51,49,52,55,51,44,51,55,46,52,54,54,57,57,93,44,91,45,56,50,46,57,50,53,52,54,44,51,55,46,52,56,54,53,50,53,93,44,91,45,56,50,46,57,52,56,53,52,52,44,51,55,46,53,48,51,49,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,50,49,56,44,34,98,101,100,115,34,58,50,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,53,52,50,50,49,44,52,50,46,48,51,51,48,55,51,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,50,46,48,51,51,53,52,56,93,44,91,45,57,48,46,56,57,56,52,56,52,44,52,49,46,57,52,54,50,52,53,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,49,46,55,55,49,51,57,50,93,44,91,45,57,48,46,55,48,50,49,52,50,44,52,49,46,55,51,55,55,50,56,93,44,91,45,57,48,46,53,51,55,54,49,54,44,52,49,46,55,55,54,51,57,53,93,44,91,45,57,48,46,51,49,54,53,54,50,44,52,49,46,55,50,56,57,50,56,93,44,91,45,57,48,46,50,52,50,51,56,44,52,49,46,55,56,50,57,54,52,93,44,91,45,57,48,46,49,53,49,57,56,44,52,49,46,57,50,56,57,49,55,93,44,91,45,57,48,46,49,53,52,50,50,49,44,52,50,46,48,51,51,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,52,55,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,53,50,53,48,50,44,52,51,46,56,52,55,57,53,51,93,44,91,45,57,53,46,52,53,52,52,51,51,44,52,51,46,53,48,48,54,52,54,93,44,91,45,57,53,46,51,56,55,55,56,55,44,52,51,46,53,48,48,50,50,54,93,44,91,45,57,52,46,57,49,52,53,56,50,44,52,51,46,53,48,48,56,53,51,93,44,91,45,57,52,46,56,53,52,53,53,53,44,52,51,46,53,48,48,57,50,53,93,44,91,45,57,52,46,56,53,52,52,52,52,44,52,51,46,56,52,56,48,57,57,93,44,91,45,57,52,46,56,53,57,51,56,56,44,52,51,46,56,52,56,48,57,51,93,44,91,45,57,53,46,52,53,50,53,48,50,44,52,51,46,56,52,55,57,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,111,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,52,53,57,49,44,52,52,46,49,57,54,55,49,54,93,44,91,45,57,51,46,48,52,53,57,54,54,44,52,51,46,56,52,56,52,54,55,93,44,91,45,57,50,46,54,56,57,51,57,49,44,52,51,46,56,52,56,53,55,93,44,91,45,57,50,46,54,55,56,55,49,55,44,52,52,46,49,57,53,53,49,54,93,44,91,45,57,51,46,48,52,49,49,53,57,44,52,52,46,49,57,54,55,50,54,93,44,91,45,57,51,46,48,52,53,57,49,44,52,52,46,49,57,54,55,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,114,101,101,98,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,50,54,44,34,98,101,100,115,34,58,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,52,56,50,57,44,52,51,46,56,52,56,49,51,57,93,44,91,45,57,51,46,54,52,56,53,51,51,44,52,51,46,52,57,57,54,56,93,44,91,45,57,51,46,52,57,55,51,53,51,44,52,51,46,52,57,57,54,50,50,93,44,91,45,57,51,46,48,52,57,49,57,50,44,52,51,46,52,57,57,55,48,53,93,44,91,45,57,51,46,48,52,57,53,50,52,44,52,51,46,56,52,56,52,52,51,93,44,91,45,57,51,46,52,48,54,54,52,50,44,52,51,46,56,52,56,49,50,93,44,91,45,57,51,46,54,52,56,50,57,44,52,51,46,56,52,56,49,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,97,108,97,118,101,114,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,50,51,53,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,55,50,52,56,52,44,51,56,46,53,48,57,56,54,57,93,44,91,45,49,50,48,46,53,48,52,54,52,44,51,56,46,52,51,57,51,55,56,93,44,91,45,49,50,48,46,54,52,54,54,49,51,44,51,56,46,51,51,52,53,56,54,93,44,91,45,49,50,48,46,57,57,53,52,57,55,44,51,56,46,50,50,53,52,48,50,93,44,91,45,49,50,48,46,57,50,54,52,52,57,44,51,56,46,48,55,55,52,50,49,93,44,91,45,49,50,48,46,54,53,51,50,55,52,44,51,55,46,56,51,49,56,53,56,93,44,91,45,49,50,48,46,53,49,52,57,53,50,44,51,55,46,57,53,51,51,57,93,44,91,45,49,50,48,46,49,55,54,54,49,51,44,51,56,46,51,55,51,53,49,93,44,91,45,49,50,48,46,48,49,57,57,53,49,44,51,56,46,52,51,51,53,50,49,93,44,91,45,49,50,48,46,48,55,50,52,56,52,44,51,56,46,53,48,57,56,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,97,114,110,115,116,97,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,54,57,48,44,34,98,101,100,115,34,58,52,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,55,53,56,52,54,52,44,52,49,46,53,54,48,57,51,49,93,44,91,45,55,48,46,53,48,50,56,51,50,44,52,49,46,53,48,48,54,51,53,93,44,91,45,55,48,46,51,57,53,49,54,52,44,52,49,46,53,53,54,55,50,50,93,44,91,45,55,48,46,49,54,48,51,53,55,44,52,49,46,53,57,57,51,55,93,44,91,45,55,48,46,49,49,52,51,57,52,44,52,49,46,52,56,52,48,56,51,93,44,91,45,54,57,46,57,52,54,54,49,51,44,52,49,46,53,49,50,49,53,50,93,44,91,45,54,57,46,56,54,50,56,55,54,44,52,49,46,54,55,51,49,53,51,93,44,91,45,54,57,46,56,54,54,53,50,53,44,52,49,46,56,49,55,48,49,49,93,44,91,45,54,57,46,57,50,57,49,48,57,44,52,49,46,57,55,56,52,55,54,93,44,91,45,55,48,46,48,49,49,53,57,49,44,52,50,46,48,55,51,51,55,56,93,44,91,45,55,48,46,49,55,50,53,52,50,44,52,50,46,49,51,52,53,49,53,93,44,91,45,55,48,46,51,50,50,53,50,50,44,52,50,46,49,49,55,57,49,53,93,44,91,45,55,48,46,51,53,53,48,48,52,44,52,50,46,48,48,48,49,48,52,93,44,91,45,55,48,46,54,50,49,54,50,50,44,52,49,46,55,52,56,57,55,50,93,44,91,45,55,48,46,55,53,50,52,50,52,44,52,49,46,53,54,53,56,53,49,93,44,91,45,55,48,46,55,53,56,52,54,52,44,52,49,46,53,54,48,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,105,100,100,108,101,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,53,52,48,55,54,44,51,55,46,54,48,51,49,55,52,93,44,91,45,55,54,46,52,51,55,53,54,49,44,51,55,46,53,49,52,51,54,93,44,91,45,55,54,46,49,52,48,56,51,53,44,51,55,46,53,52,50,50,50,93,44,91,45,55,54,46,49,53,49,55,49,49,44,51,55,46,53,56,53,57,54,56,93,44,91,45,55,54,46,51,54,56,50,49,51,44,51,55,46,53,57,52,51,51,49,93,44,91,45,55,54,46,53,51,54,53,56,57,44,51,55,46,54,51,57,49,57,52,93,44,91,45,55,54,46,54,54,56,49,56,50,44,51,55,46,55,55,56,51,56,54,93,44,91,45,55,54,46,55,53,49,48,55,50,44,51,55,46,55,50,56,54,48,53,93,44,91,45,55,54,46,54,53,52,48,55,54,44,51,55,46,54,48,51,49,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,48,56,52,44,34,98,101,100,115,34,58,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,48,56,56,55,56,44,52,49,46,51,51,49,56,54,49,93,44,91,45,55,57,46,50,49,53,50,49,52,44,52,49,46,48,53,48,53,49,53,93,44,91,45,55,57,46,50,49,53,51,49,44,52,48,46,57,49,49,51,52,54,93,44,91,45,55,56,46,56,48,53,49,54,55,44,52,48,46,57,48,53,57,56,93,44,91,45,55,56,46,56,48,52,53,51,50,44,52,49,46,49,51,50,49,56,54,93,44,91,45,55,56,46,55,49,48,50,52,56,44,52,49,46,50,48,49,56,53,57,93,44,91,45,55,56,46,55,51,53,50,56,44,52,49,46,50,54,50,57,49,53,93,44,91,45,55,56,46,57,53,57,49,53,55,44,52,49,46,51,54,50,49,54,49,93,44,91,45,55,57,46,48,57,53,48,57,54,44,52,49,46,51,52,48,54,53,56,93,44,91,45,55,57,46,50,48,56,56,55,56,44,52,49,46,51,51,49,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,54,56,52,57,44,34,98,101,100,115,34,58,49,55,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,50,49,44,52,49,46,55,54,48,56,56,57,93,44,91,45,56,55,46,53,50,51,54,54,49,44,52,49,46,55,53,57,57,48,55,93,44,91,45,56,55,46,53,50,53,55,48,53,44,52,49,46,52,55,48,50,56,51,93,44,91,45,56,55,46,53,50,54,55,51,49,44,52,49,46,50,57,56,48,53,50,93,44,91,45,56,55,46,53,50,54,53,56,55,44,52,49,46,49,54,54,48,57,93,44,91,45,56,55,46,52,49,52,52,50,49,44,52,49,46,49,54,50,50,52,56,93,44,91,45,56,55,46,50,55,53,56,56,50,44,52,49,46,50,49,56,53,57,53,93,44,91,45,56,55,46,50,49,56,56,54,50,44,52,49,46,50,52,50,48,50,55,93,44,91,45,56,55,46,50,50,49,44,52,49,46,55,54,48,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,53,53,56,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,51,57,52,51,54,44,51,53,46,54,56,53,57,93,44,91,45,56,54,46,54,53,56,50,52,55,44,51,53,46,52,51,53,50,56,49,93,44,91,45,56,54,46,53,57,57,52,55,56,44,51,53,46,51,54,52,57,53,93,44,91,45,56,54,46,53,50,53,51,48,54,44,51,53,46,51,53,52,55,49,56,93,44,91,45,56,54,46,52,50,49,54,55,50,44,51,53,46,51,49,57,50,54,55,93,44,91,45,56,54,46,50,53,55,53,57,44,51,53,46,52,49,50,52,55,54,93,44,91,45,56,54,46,50,52,53,49,54,53,44,51,53,46,54,51,49,57,49,51,93,44,91,45,56,54,46,52,49,51,54,55,56,44,51,53,46,54,50,51,49,55,55,93,44,91,45,56,54,46,53,52,51,49,49,54,44,51,53,46,54,57,55,54,49,55,93,44,91,45,56,54,46,54,51,57,52,51,54,44,51,53,46,54,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,49,51,56,56,53,44,51,54,46,52,57,57,52,55,51,93,44,91,45,56,53,46,55,48,52,48,55,53,44,51,54,46,53,50,50,51,57,53,93,44,91,45,56,53,46,52,57,53,52,50,50,44,51,54,46,52,48,51,48,55,52,93,44,91,45,56,53,46,52,51,56,56,48,56,44,51,54,46,53,48,49,49,48,50,93,44,91,45,56,53,46,50,56,52,56,55,56,44,51,54,46,53,51,49,50,57,51,93,44,91,45,56,53,46,50,55,54,50,56,49,44,51,54,46,54,50,54,56,49,54,93,44,91,45,56,53,46,50,57,54,48,48,50,44,51,54,46,54,50,53,55,49,56,93,44,91,45,56,53,46,52,51,54,52,52,50,44,51,54,46,54,49,56,54,53,53,93,44,91,45,56,53,46,55,56,56,55,50,54,44,51,54,46,54,50,50,48,52,56,93,44,91,45,56,53,46,56,49,51,56,56,53,44,51,54,46,52,57,57,52,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,51,54,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,54,54,51,52,55,44,51,57,46,54,56,53,57,55,51,93,44,91,45,56,56,46,48,54,51,53,49,56,44,51,57,46,54,53,50,54,53,55,93,44,91,45,56,56,46,52,55,50,48,55,51,44,51,57,46,54,53,49,53,56,56,93,44,91,45,56,56,46,52,55,48,53,48,53,44,51,57,46,52,52,55,48,52,49,93,44,91,45,56,56,46,52,55,48,56,51,44,51,57,46,51,55,52,53,49,53,93,44,91,45,56,56,46,48,49,50,49,50,49,44,51,57,46,51,55,56,57,54,56,93,44,91,45,56,55,46,57,54,48,49,55,57,44,51,57,46,52,56,49,51,48,57,93,44,91,45,56,55,46,57,54,54,51,52,55,44,51,57,46,54,56,53,57,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,76,97,117,100,101,114,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,57,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,52,52,56,51,56,44,51,53,46,57,48,52,51,53,49,93,44,91,45,56,57,46,55,52,50,54,48,54,44,51,53,46,57,48,54,54,53,51,93,44,91,45,56,57,46,56,50,48,56,55,54,44,51,53,46,55,53,54,56,54,56,93,44,91,45,56,57,46,57,53,48,50,55,55,44,51,53,46,55,51,56,52,57,52,93,44,91,45,56,57,46,57,48,57,55,57,55,44,51,53,46,53,51,55,57,49,52,93,44,91,45,56,57,46,55,57,51,49,52,53,44,51,53,46,54,51,55,51,53,54,93,44,91,45,56,57,46,54,49,50,57,55,54,44,51,53,46,54,52,51,50,51,54,93,44,91,45,56,57,46,53,48,50,49,49,56,44,51,53,46,53,56,48,54,50,49,93,44,91,45,56,57,46,52,48,49,56,48,53,44,51,53,46,56,50,50,54,53,55,93,44,91,45,56,57,46,51,53,54,48,51,51,44,51,53,46,56,49,55,54,51,53,93,44,91,45,56,57,46,51,52,50,56,50,57,44,51,53,46,56,56,48,57,51,52,93,44,91,45,56,57,46,52,48,54,57,54,53,44,51,53,46,57,52,54,53,57,57,93,44,91,45,56,57,46,54,52,52,56,51,56,44,51,53,46,57,48,52,51,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,97,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,56,52,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,50,54,54,48,48,53,44,52,53,46,48,56,48,53,55,93,44,91,45,49,49,55,46,53,54,51,52,56,54,44,52,53,46,48,55,57,52,52,54,93,44,91,45,49,49,55,46,53,54,52,48,51,51,44,52,52,46,57,57,50,56,54,54,93,44,91,45,49,49,55,46,55,55,55,53,48,52,44,52,52,46,57,57,50,49,54,49,93,44,91,45,49,49,55,46,56,52,51,52,51,44,52,53,46,48,53,56,52,55,55,93,44,91,45,49,49,55,46,57,54,56,51,57,52,44,52,52,46,57,57,54,48,48,50,93,44,91,45,49,49,56,46,49,51,49,51,55,49,44,52,53,46,48,52,52,54,57,93,44,91,45,49,49,56,46,50,52,52,54,54,50,44,52,52,46,57,53,56,51,57,54,93,44,91,45,49,49,56,46,51,49,56,55,50,53,44,52,52,46,56,51,54,50,55,57,93,44,91,45,49,49,56,46,50,56,53,52,51,57,44,52,52,46,55,53,48,57,55,53,93,44,91,45,49,49,56,46,53,49,54,52,53,50,44,52,52,46,55,48,50,52,54,50,93,44,91,45,49,49,56,46,51,48,53,55,55,56,44,52,52,46,53,56,56,56,49,93,44,91,45,49,49,56,46,52,50,50,49,55,51,44,52,52,46,52,52,56,57,56,52,93,44,91,45,49,49,56,46,52,48,57,55,55,52,44,52,52,46,51,55,56,54,49,57,93,44,91,45,49,49,56,46,52,57,55,52,57,57,44,52,52,46,50,53,53,50,52,56,93,44,91,45,49,49,56,46,50,51,50,50,49,52,44,52,52,46,50,53,54,49,50,57,93,44,91,45,49,49,56,46,49,53,50,57,52,53,44,52,52,46,50,55,48,54,56,52,93,44,91,45,49,49,55,46,57,55,49,55,56,55,44,52,52,46,52,52,51,56,52,57,93,44,91,45,49,49,55,46,53,57,48,56,52,57,44,52,52,46,52,52,52,53,55,51,93,44,91,45,49,49,55,46,52,56,54,55,52,52,44,52,52,46,51,56,55,50,52,54,93,44,91,45,49,49,55,46,52,56,55,48,49,52,44,52,52,46,51,48,48,51,49,55,93,44,91,45,49,49,55,46,50,50,48,48,52,56,44,52,52,46,51,48,49,52,48,52,93,44,91,45,49,49,55,46,50,50,52,49,48,52,44,52,52,46,52,56,51,55,51,52,93,44,91,45,49,49,55,46,49,52,52,49,54,49,44,52,52,46,53,52,53,54,52,55,93,44,91,45,49,49,55,46,48,52,52,50,49,55,44,52,52,46,55,52,53,49,52,93,44,91,45,49,49,54,46,56,57,57,55,49,49,44,52,52,46,56,52,48,54,48,57,93,44,91,45,49,49,54,46,55,56,51,56,50,57,44,52,53,46,48,55,56,50,54,51,93,44,91,45,49,49,55,46,50,54,54,48,48,53,44,52,53,46,48,56,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,83,99,104,117,121,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,57,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,54,53,48,50,56,44,52,50,46,50,55,56,52,57,53,93,44,91,45,55,54,46,54,49,57,51,48,51,44,52,50,46,50,56,50,56,53,51,93,44,91,45,55,54,46,54,57,49,52,48,54,44,52,50,46,50,56,52,51,48,55,93,44,91,45,55,54,46,54,57,54,54,53,53,44,52,50,46,53,52,54,55,57,93,44,91,45,55,54,46,56,57,53,53,57,54,44,52,50,46,53,52,49,53,51,55,93,44,91,45,55,54,46,56,56,57,56,48,53,44,52,50,46,52,54,51,48,53,52,93,44,91,45,55,55,46,49,48,55,50,48,51,44,52,50,46,52,56,51,55,55,49,93,44,91,45,55,55,46,48,57,57,54,53,55,44,52,50,46,50,55,50,51,53,54,93,44,91,45,55,54,46,57,54,53,48,50,56,44,52,50,46,50,55,56,52,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,86,97,110,32,66,117,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,50,55,50,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,54,52,54,57,55,44,52,50,46,52,50,48,55,49,53,93,44,91,45,56,55,46,48,52,48,48,52,54,44,52,50,46,52,49,54,57,57,51,93,44,91,45,56,55,46,48,56,56,51,51,56,44,52,50,46,50,51,53,51,51,52,93,44,91,45,56,54,46,50,50,51,53,54,51,44,52,50,46,50,52,51,51,55,57,93,44,91,45,56,54,46,50,50,50,57,52,44,52,50,46,48,55,49,52,56,52,93,44,91,45,56,53,46,55,54,50,57,52,51,44,52,50,46,48,54,57,51,50,55,93,44,91,45,56,53,46,55,54,52,54,57,55,44,52,50,46,52,50,48,55,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,57,51,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,55,50,48,55,44,52,49,46,51,51,51,51,54,49,93,44,91,45,57,49,46,49,49,52,49,56,54,44,52,49,46,50,53,48,48,50,57,93,44,91,45,57,48,46,57,56,57,54,54,50,44,52,49,46,49,53,53,55,48,55,93,44,91,45,57,48,46,57,52,57,51,56,49,44,52,49,46,48,55,50,55,49,93,44,91,45,57,48,46,57,52,56,57,56,57,44,52,49,46,48,55,48,50,53,93,44,91,45,57,48,46,55,56,53,49,57,52,44,52,49,46,48,54,56,55,52,57,93,44,91,45,57,48,46,52,51,57,52,50,51,44,52,49,46,48,54,51,57,57,53,93,44,91,45,57,48,46,52,51,55,54,53,50,44,52,49,46,49,53,49,52,54,51,93,44,91,45,57,48,46,52,51,51,55,51,55,44,52,49,46,51,50,54,57,56,57,93,44,91,45,57,49,46,48,55,50,48,55,44,52,49,46,51,51,51,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,56,51,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,48,52,54,50,53,44,51,56,46,50,52,55,54,54,50,93,44,91,45,56,50,46,55,57,52,50,48,54,44,51,56,46,50,52,51,55,55,50,93,44,91,45,56,50,46,57,50,52,56,48,53,44,51,56,46,49,55,53,49,49,52,93,44,91,45,56,50,46,56,56,57,48,53,57,44,51,56,46,49,49,49,53,56,55,93,44,91,45,56,51,46,48,50,50,49,49,53,44,51,56,46,48,48,55,48,52,55,93,44,91,45,56,50,46,57,56,57,48,49,52,44,51,55,46,57,54,51,57,54,56,93,44,91,45,56,50,46,57,52,55,57,51,54,44,51,56,46,48,48,48,52,51,49,93,44,91,45,56,50,46,54,49,50,51,57,51,44,51,55,46,56,55,57,50,55,50,93,44,91,45,56,50,46,52,57,55,55,57,54,44,51,55,46,57,52,53,52,56,56,93,44,91,45,56,50,46,53,52,57,50,52,44,51,56,46,48,54,55,57,53,50,93,44,91,45,56,50,46,54,51,52,55,48,50,44,51,56,46,49,51,54,57,52,49,93,44,91,45,56,50,46,54,48,52,54,50,53,44,51,56,46,50,52,55,54,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,56,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,51,51,57,52,50,44,51,56,46,48,51,51,57,55,52,93,44,91,45,56,51,46,52,57,53,48,56,44,51,55,46,56,54,49,57,48,54,93,44,91,45,56,51,46,50,54,50,49,55,50,44,51,55,46,55,49,50,54,53,55,93,44,91,45,56,51,46,50,55,48,51,56,55,44,51,55,46,55,54,54,56,52,53,93,44,91,45,56,51,46,48,56,57,52,48,57,44,51,55,46,56,57,48,51,52,93,44,91,45,56,51,46,48,48,52,54,52,57,44,51,55,46,56,53,57,50,52,55,93,44,91,45,56,50,46,57,56,57,48,49,52,44,51,55,46,57,54,51,57,54,56,93,44,91,45,56,51,46,48,50,50,49,49,53,44,51,56,46,48,48,55,48,52,55,93,44,91,45,56,51,46,49,57,52,52,52,53,44,51,56,46,48,49,48,54,52,57,93,44,91,45,56,51,46,50,54,51,50,56,57,44,51,56,46,49,49,53,51,56,54,93,44,91,45,56,51,46,52,51,51,57,52,50,44,51,56,46,48,51,51,57,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,77,117,104,108,101,110,98,101,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,48,56,49,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,57,53,57,54,53,44,51,55,46,51,57,49,56,49,57,93,44,91,45,56,55,46,51,56,56,55,48,55,44,51,55,46,50,54,50,49,56,93,44,91,45,56,55,46,51,51,51,55,52,49,44,51,55,46,49,53,55,49,56,54,93,44,91,45,56,55,46,50,53,57,51,55,49,44,51,55,46,48,55,50,52,48,49,93,44,91,45,56,55,46,48,53,51,49,54,52,44,51,55,46,48,54,49,48,49,57,93,44,91,45,56,54,46,57,52,49,51,57,49,44,51,55,46,48,54,56,57,56,49,93,44,91,45,56,54,46,56,57,57,50,54,56,44,51,55,46,50,49,50,51,49,51,93,44,91,45,56,55,46,48,57,57,56,48,51,44,51,55,46,52,49,54,48,52,50,93,44,91,45,56,55,46,50,57,53,57,54,53,44,51,55,46,51,57,49,56,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,69,102,102,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,49,55,52,44,34,98,101,100,115,34,58,49,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,48,53,51,50,53,44,51,57,46,50,49,54,50,54,51,93,44,91,45,56,56,46,56,48,54,55,57,53,44,51,56,46,57,49,49,53,56,53,93,44,91,45,56,56,46,54,57,51,53,51,49,44,51,56,46,57,49,52,54,49,55,93,44,91,45,56,56,46,51,54,49,55,52,53,44,51,56,46,57,49,48,56,52,55,93,44,91,45,56,56,46,51,54,48,54,53,52,44,51,57,46,49,55,49,49,49,56,93,44,91,45,56,56,46,52,55,48,57,48,54,44,51,57,46,50,49,53,48,50,57,93,44,91,45,56,56,46,56,48,53,51,50,53,44,51,57,46,50,49,54,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,111,117,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,54,49,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,54,51,51,56,51,44,51,53,46,56,57,54,57,52,93,44,91,45,56,52,46,53,51,57,57,54,51,44,51,53,46,54,55,48,52,54,53,93,44,91,45,56,52,46,53,56,52,52,55,50,44,51,53,46,54,52,52,52,50,52,93,44,91,45,56,52,46,53,50,53,56,53,44,51,53,46,54,50,52,49,56,54,93,44,91,45,56,52,46,52,56,54,55,53,52,44,51,53,46,54,53,56,51,55,54,93,44,91,45,56,52,46,50,57,57,53,52,57,44,51,53,46,54,53,55,54,55,51,93,44,91,45,56,52,46,49,56,56,51,49,57,44,51,53,46,54,49,48,53,52,57,93,44,91,45,56,52,46,49,54,54,50,54,55,44,51,53,46,56,48,53,49,48,54,93,44,91,45,56,52,46,50,54,51,51,56,51,44,51,53,46,56,57,54,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,55,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,56,49,55,57,50,44,52,53,46,49,53,51,50,57,53,93,44,91,45,57,55,46,57,55,55,55,57,49,44,52,52,46,54,51,49,54,48,50,93,44,91,45,57,55,46,56,53,51,48,50,56,44,52,52,46,53,52,52,51,57,56,93,44,91,45,57,55,46,52,57,50,50,54,54,44,52,52,46,53,52,51,56,56,52,93,44,91,45,57,55,46,52,57,49,51,52,54,44,52,52,46,56,48,52,48,51,53,93,44,91,45,57,55,46,52,57,52,50,53,52,44,52,53,46,49,53,49,54,51,49,93,44,91,45,57,55,46,57,56,49,55,57,50,44,52,53,46,49,53,51,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,72,111,110,111,108,117,108,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,72,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,55,54,51,56,44,34,98,101,100,115,34,58,50,57,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,56,46,51,50,56,54,53,50,44,50,49,46,53,52,54,93,44,91,45,49,53,56,46,49,54,52,51,53,52,44,50,49,46,50,55,50,51,51,53,93,44,91,45,49,53,56,46,49,49,48,48,55,55,44,50,49,46,50,51,55,48,55,49,93,44,91,45,49,53,55,46,56,57,56,54,53,54,44,50,49,46,50,52,57,57,51,57,93,44,91,45,49,53,55,46,56,49,48,50,50,57,44,50,49,46,49,57,57,50,51,56,93,44,91,45,49,53,55,46,54,55,53,55,55,55,44,50,49,46,50,49,51,56,48,49,93,44,91,45,49,53,55,46,54,48,55,54,57,51,44,50,49,46,50,54,57,49,51,52,93,44,91,45,49,53,55,46,54,54,48,57,52,57,44,50,49,46,52,57,54,55,56,57,93,44,91,45,49,53,55,46,55,53,48,57,50,52,44,50,49,46,53,49,54,52,53,56,93,44,91,45,49,53,55,46,57,52,49,55,56,53,44,50,49,46,55,53,52,53,55,57,93,44,91,45,49,53,56,46,48,53,48,49,52,52,44,50,49,46,55,51,57,56,56,49,93,44,91,45,49,53,56,46,49,52,56,56,52,54,44,50,49,46,54,52,49,57,57,57,93,44,91,45,49,53,56,46,51,50,52,50,52,55,44,50,49,46,54,49,53,54,55,53,93,44,91,45,49,53,56,46,51,50,56,54,53,50,44,50,49,46,53,52,54,93,93,93,44,91,91,91,45,49,55,54,46,48,52,51,51,53,52,44,50,55,46,55,57,53,56,57,55,93,44,91,45,49,55,53,46,57,54,57,53,57,56,44,50,55,46,54,57,51,52,48,50,93,44,91,45,49,55,53,46,55,51,52,49,51,52,44,50,55,46,55,51,56,56,53,53,93,44,91,45,49,55,53,46,54,55,48,49,50,56,44,50,55,46,57,52,49,54,48,49,93,44,91,45,49,55,53,46,56,48,54,55,51,51,44,50,56,46,48,48,55,49,57,50,93,44,91,45,49,55,53,46,57,54,54,51,51,53,44,50,55,46,57,50,57,57,49,49,93,44,91,45,49,55,54,46,48,52,51,51,53,52,44,50,55,46,55,57,53,56,57,55,93,93,93,44,91,91,91,45,49,54,54,46,51,56,54,53,51,50,44,50,51,46,56,52,54,51,54,51,93,44,91,45,49,54,54,46,51,49,53,56,50,51,44,50,51,46,55,52,48,49,50,93,44,91,45,49,54,54,46,50,48,53,52,49,53,44,50,51,46,54,57,49,54,48,49,93,44,91,45,49,54,54,46,49,48,54,55,56,44,50,51,46,55,52,50,53,50,50,93,44,91,45,49,54,54,46,49,56,50,51,52,55,44,50,51,46,57,48,50,51,50,53,93,44,91,45,49,54,54,46,51,48,55,48,55,50,44,50,51,46,57,50,52,56,56,51,93,44,91,45,49,54,54,46,51,56,54,53,51,50,44,50,51,46,56,52,54,51,54,51,93,93,93,44,91,91,91,45,49,55,56,46,52,52,51,53,57,51,44,50,56,46,52,49,56,57,56,54,93,44,91,45,49,55,56,46,51,57,53,54,49,44,50,56,46,51,52,49,57,48,49,93,44,91,45,49,55,56,46,50,51,51,48,49,56,44,50,56,46,51,55,53,93,44,91,45,49,55,56,46,50,51,56,52,54,57,44,50,56,46,52,53,54,49,53,93,44,91,45,49,55,56,46,51,49,53,49,50,49,44,50,56,46,53,49,54,51,51,52,93,44,91,45,49,55,56,46,52,52,51,53,57,51,44,50,56,46,52,49,56,57,56,54,93,93,93,44,91,91,91,45,49,55,52,46,48,54,55,51,55,52,44,50,54,46,48,53,57,54,49,52,93,44,91,45,49,55,52,46,48,48,54,52,48,52,44,50,53,46,57,57,48,50,56,57,93,44,91,45,49,55,51,46,57,50,53,57,54,56,44,50,54,46,48,49,57,54,50,55,93,44,91,45,49,55,51,46,57,53,55,57,49,54,44,50,54,46,49,51,53,54,57,93,44,91,45,49,55,52,46,48,54,55,51,55,52,44,50,54,46,48,53,57,54,49,52,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,71,105,108,99,104,114,105,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,50,48,54,48,56,44,50,57,46,56,50,52,49,52,51,93,44,91,45,56,50,46,57,51,55,51,50,57,44,50,57,46,53,57,49,49,57,54,93,44,91,45,56,50,46,54,53,54,51,48,49,44,50,57,46,53,54,52,56,49,49,93,44,91,45,56,50,46,54,53,56,53,53,52,44,50,57,46,56,51,48,49,52,52,93,44,91,45,56,50,46,56,48,48,52,55,55,44,50,57,46,57,51,50,49,50,54,93,44,91,45,56,50,46,56,55,57,56,48,50,44,50,57,46,56,56,54,56,52,55,93,44,91,45,56,50,46,57,48,51,57,53,54,44,50,57,46,56,50,52,50,57,52,93,44,91,45,56,50,46,57,49,56,55,48,56,44,50,57,46,56,50,52,48,56,51,93,44,91,45,56,50,46,57,50,48,54,48,56,44,50,57,46,56,50,52,49,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,84,105,112,112,101,99,97,110,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,57,50,57,52,44,34,98,101,100,115,34,58,52,55,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,57,50,49,52,56,44,52,48,46,51,54,54,54,49,50,93,44,91,45,56,55,46,48,57,50,53,54,51,44,52,48,46,50,49,52,56,48,54,93,44,91,45,56,54,46,54,57,53,54,51,55,44,52,48,46,50,49,52,51,54,55,93,44,91,45,56,54,46,54,57,52,54,54,53,44,52,48,46,52,51,50,49,53,54,93,44,91,45,56,54,46,55,55,49,50,57,51,44,52,48,46,53,54,50,48,56,50,93,44,91,45,56,55,46,48,57,53,51,53,55,44,52,48,46,53,54,50,56,57,53,93,44,91,45,56,55,46,48,57,51,54,55,54,44,52,48,46,52,55,53,55,52,53,93,44,91,45,56,55,46,48,57,50,49,52,56,44,52,48,46,51,54,54,54,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,83,110,121,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,52,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,56,48,48,50,52,50,44,52,48,46,56,56,49,57,57,52,93,44,91,45,55,54,46,57,52,48,55,48,54,44,52,48,46,56,56,56,48,50,51,93,44,91,45,55,55,46,51,53,54,54,50,56,44,52,48,46,56,48,55,51,51,52,93,44,91,45,55,55,46,50,56,55,57,52,49,44,52,48,46,54,57,51,53,57,53,93,44,91,45,55,55,46,48,51,53,53,52,57,44,52,48,46,54,55,54,57,49,56,93,44,91,45,55,54,46,57,51,57,55,52,57,44,52,48,46,54,51,56,51,55,56,93,44,91,45,55,54,46,56,53,53,51,54,50,44,52,48,46,55,50,56,56,50,49,93,44,91,45,55,54,46,56,48,48,50,52,50,44,52,48,46,56,56,49,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,55,34,44,34,78,65,77,69,34,58,34,76,97,109,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,53,51,50,44,34,98,101,100,115,34,58,50,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,52,54,53,51,54,44,51,51,46,56,51,57,56,53,53,93,44,91,45,57,53,46,56,53,55,55,51,56,44,51,51,46,52,54,49,55,50,50,93,44,91,45,57,53,46,54,50,49,48,50,55,44,51,51,46,52,56,55,48,54,93,44,91,45,57,53,46,51,48,56,54,51,55,44,51,51,46,51,56,48,54,54,50,93,44,91,45,57,53,46,51,49,48,52,57,55,44,51,51,46,56,55,55,50,48,52,93,44,91,45,57,53,46,53,51,51,55,57,56,44,51,51,46,56,56,49,49,53,51,93,44,91,45,57,53,46,53,53,50,55,57,57,44,51,51,46,57,50,52,51,49,49,93,44,91,45,57,53,46,55,54,49,53,50,44,51,51,46,56,55,51,49,49,56,93,44,91,45,57,53,46,56,52,54,53,51,54,44,51,51,46,56,51,57,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,54,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,54,34,44,34,78,65,77,69,34,58,34,77,105,97,109,105,45,68,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,49,53,53,49,54,44,34,98,101,100,115,34,58,56,51,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,53,50,50,53,55,44,50,53,46,57,55,52,57,53,54,93,44,91,45,56,48,46,50,57,52,57,55,50,44,50,53,46,57,53,54,55,55,93,44,91,45,56,48,46,54,56,48,48,49,54,44,50,53,46,57,53,54,56,53,55,93,44,91,45,56,48,46,56,55,50,57,51,50,44,50,53,46,57,55,57,52,51,52,93,44,91,45,56,48,46,56,55,51,48,57,54,44,50,53,46,56,48,53,51,55,55,93,44,91,45,56,48,46,56,55,51,49,57,44,50,53,46,51,54,51,57,57,51,93,44,91,45,56,48,46,56,53,56,49,54,55,44,50,53,46,49,55,54,54,48,55,93,44,91,45,56,48,46,55,48,53,51,55,57,44,50,53,46,49,52,57,48,49,55,93,44,91,45,56,48,46,54,53,49,50,55,57,44,50,53,46,49,57,50,53,57,54,93,44,91,45,56,48,46,52,50,57,51,48,54,44,50,53,46,50,51,53,54,54,49,93,44,91,45,56,48,46,51,55,50,49,50,49,44,50,53,46,51,49,48,50,49,53,93,44,91,45,56,48,46,50,54,53,52,55,50,44,50,53,46,51,53,52,50,57,54,93,44,91,45,56,48,46,49,53,48,50,52,55,44,50,53,46,51,49,52,49,52,57,93,44,91,45,56,48,46,48,53,54,48,53,54,44,50,53,46,56,51,55,54,56,56,93,44,91,45,56,48,46,48,53,50,50,53,55,44,50,53,46,57,55,52,57,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,68,117,110,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,51,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,51,52,50,55,56,56,44,52,48,46,51,53,48,52,52,52,93,44,91,45,49,48,50,46,48,53,49,53,56,54,44,52,48,46,51,52,57,50,49,51,93,44,91,45,49,48,50,46,48,53,49,55,52,52,44,52,48,46,48,48,51,48,55,56,93,44,91,45,49,48,49,46,52,49,49,48,50,57,44,52,48,46,48,48,50,53,50,50,93,44,91,45,49,48,49,46,51,50,53,53,49,52,44,52,48,46,48,48,50,55,48,50,93,44,91,45,49,48,49,46,51,50,51,51,53,51,44,52,48,46,51,53,48,53,53,51,93,44,91,45,49,48,49,46,51,52,50,55,56,56,44,52,48,46,51,53,48,52,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,57,34,44,34,78,65,77,69,34,58,34,76,101,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,56,55,51,44,51,49,46,54,49,56,51,56,53,93,44,91,45,57,54,46,50,51,54,54,50,57,44,51,49,46,52,49,51,51,57,50,93,44,91,45,57,54,46,51,49,57,49,54,53,44,51,49,46,51,53,55,49,50,57,93,44,91,45,57,54,46,51,50,55,54,51,44,51,49,46,50,56,52,56,55,54,93,44,91,45,57,54,46,50,52,49,48,50,44,51,48,46,57,55,51,55,51,55,93,44,91,45,57,53,46,57,55,51,56,52,49,44,51,49,46,48,57,50,49,53,93,44,91,45,57,53,46,55,54,52,52,49,44,51,49,46,48,57,52,50,49,49,93,44,91,45,57,53,46,55,50,53,50,50,54,44,51,49,46,50,55,49,48,56,52,93,44,91,45,57,53,46,54,53,53,53,52,53,44,51,49,46,51,50,57,54,52,93,44,91,45,57,53,46,55,51,57,50,55,57,44,51,49,46,53,48,52,48,53,54,93,44,91,45,57,53,46,55,56,55,51,44,51,49,46,54,49,56,51,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,80,105,116,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,51,57,52,52,56,54,44,51,57,46,50,53,54,50,57,57,93,44,91,45,49,48,55,46,50,56,50,52,57,44,51,57,46,49,49,56,55,49,56,93,44,91,45,49,48,55,46,48,54,54,51,50,44,51,57,46,49,49,56,56,48,53,93,44,91,45,49,48,54,46,57,48,56,49,57,54,44,51,56,46,57,57,50,53,55,57,93,44,91,45,49,48,54,46,56,48,49,56,55,52,44,51,56,46,57,55,56,51,48,51,93,44,91,45,49,48,54,46,55,52,48,54,57,53,44,51,57,46,48,52,53,57,48,54,93,44,91,45,49,48,54,46,53,57,57,50,49,52,44,51,56,46,57,57,55,57,57,52,93,44,91,45,49,48,54,46,53,55,55,57,54,54,44,51,57,46,48,53,55,57,48,56,93,44,91,45,49,48,54,46,52,57,51,54,52,57,44,51,57,46,49,57,56,51,50,54,93,44,91,45,49,48,54,46,53,48,50,54,57,44,51,57,46,50,57,56,48,54,55,93,44,91,45,49,48,54,46,52,50,54,52,56,55,44,51,57,46,51,54,49,56,55,49,93,44,91,45,49,48,55,46,49,49,51,52,52,54,44,51,57,46,51,54,54,48,54,54,93,44,91,45,49,48,55,46,52,51,48,57,52,57,44,51,57,46,51,54,54,49,55,56,93,44,91,45,49,48,55,46,51,57,52,52,56,54,44,51,57,46,50,53,54,50,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,71,114,97,110,100,32,70,111,114,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,52,48,48,44,34,98,101,100,115,34,58,52,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,48,51,51,49,51,44,52,56,46,49,57,52,56,52,53,93,44,91,45,57,55,46,56,56,50,48,54,53,44,52,56,46,48,50,48,56,52,52,93,44,91,45,57,55,46,56,56,50,50,55,49,44,52,55,46,54,55,50,49,55,57,93,44,91,45,57,55,46,52,55,50,55,52,53,44,52,55,46,54,55,50,48,53,49,93,44,91,45,57,54,46,56,56,54,56,52,54,44,52,55,46,54,55,50,48,54,51,93,44,91,45,57,55,46,48,53,53,53,57,55,44,52,55,46,57,52,57,49,50,57,93,44,91,45,57,55,46,49,52,54,55,48,51,44,52,56,46,49,55,51,50,50,51,93,44,91,45,57,55,46,49,52,49,50,50,49,44,52,56,46,49,57,51,55,49,50,93,44,91,45,57,55,46,57,48,51,51,49,51,44,52,56,46,49,57,52,56,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,76,97,80,111,114,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,53,53,50,44,34,98,101,100,115,34,58,50,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,51,51,51,51,52,44,52,49,46,55,54,49,48,51,53,93,44,91,45,56,54,46,57,51,48,48,55,57,44,52,49,46,50,51,54,55,57,56,93,44,91,45,56,54,46,55,56,51,52,55,51,44,52,49,46,50,56,53,52,54,53,93,44,91,45,56,54,46,55,48,48,54,51,44,52,49,46,52,48,49,57,56,50,93,44,91,45,56,54,46,53,50,52,55,49,49,44,52,49,46,52,51,50,56,56,54,93,44,91,45,56,54,46,52,56,54,52,51,51,44,52,49,46,53,55,48,53,52,53,93,44,91,45,56,54,46,53,50,52,50,49,55,44,52,49,46,55,53,57,54,53,57,93,44,91,45,56,54,46,57,51,51,51,51,52,44,52,49,46,55,54,49,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,48,57,53,44,34,98,101,100,115,34,58,54,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,49,57,48,51,44,52,48,46,50,49,56,57,51,54,93,44,91,45,56,54,46,50,52,50,55,52,51,44,52,48,46,50,49,53,56,51,52,93,44,91,45,56,54,46,50,52,50,51,54,53,44,52,48,46,49,56,48,55,55,56,93,44,91,45,56,54,46,50,51,57,55,51,57,44,51,57,46,57,50,54,48,53,53,93,44,91,45,56,53,46,57,51,55,53,56,55,44,51,57,46,57,50,55,49,51,55,93,44,91,45,56,53,46,56,54,50,52,56,57,44,51,57,46,57,52,51,54,49,56,93,44,91,45,56,53,46,56,54,49,57,48,51,44,52,48,46,50,49,56,57,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,57,53,34,44,34,78,65,77,69,34,58,34,69,109,112,111,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,56,49,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,53,54,51,56,56,56,44,51,54,46,55,48,51,48,54,55,93,44,91,45,55,55,46,53,53,54,53,50,52,44,51,54,46,54,55,52,56,55,52,93,44,91,45,55,55,46,53,48,57,50,52,54,44,51,54,46,54,56,50,57,57,56,93,44,91,45,55,55,46,53,48,57,51,54,53,44,51,54,46,55,49,54,51,57,56,93,44,91,45,55,55,46,53,54,51,56,56,56,44,51,54,46,55,48,51,48,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,56,53,52,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,52,48,53,56,51,44,51,53,46,57,52,49,57,57,49,93,44,91,45,57,55,46,49,52,49,48,54,54,44,51,53,46,55,50,52,52,48,49,93,44,91,45,57,55,46,49,52,49,52,57,44,51,53,46,52,54,51,57,55,55,93,44,91,45,57,54,46,54,50,52,54,56,49,44,51,53,46,52,54,50,55,48,55,93,44,91,45,57,54,46,54,50,48,56,50,56,44,51,53,46,54,51,57,48,48,53,93,44,91,45,57,54,46,54,49,57,54,53,53,44,51,53,46,57,52,49,53,55,49,93,44,91,45,57,55,46,49,52,48,53,56,51,44,51,53,46,57,52,49,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,71,114,101,101,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,48,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,53,48,56,50,44,51,56,46,54,49,53,49,55,50,93,44,91,45,49,48,50,46,48,52,52,52,55,53,44,51,56,46,50,54,56,55,52,57,93,44,91,45,49,48,50,46,48,52,52,52,54,52,44,51,56,46,50,54,50,52,49,50,93,44,91,45,49,48,49,46,53,54,55,52,56,50,44,51,56,46,50,54,51,49,52,53,93,44,91,45,49,48,49,46,53,54,55,48,57,52,44,51,56,46,54,57,57,54,54,57,93,44,91,45,49,48,50,46,48,52,53,50,49,50,44,51,56,46,54,57,55,53,54,55,93,44,91,45,49,48,50,46,48,52,53,48,56,50,44,51,56,46,54,49,53,49,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,51,53,48,51,56,44,51,50,46,55,52,54,53,51,93,44,91,45,56,53,46,48,56,48,55,56,52,44,51,50,46,54,48,56,48,55,50,93,44,91,45,56,52,46,54,57,52,54,48,51,44,51,50,46,53,56,51,57,52,53,93,44,91,45,56,52,46,55,48,48,53,51,56,44,51,50,46,56,52,52,54,52,93,44,91,45,56,52,46,56,54,49,55,54,56,44,51,50,46,56,55,50,52,57,53,93,44,91,45,56,53,46,49,56,52,49,51,49,44,51,50,46,56,55,48,53,50,53,93,44,91,45,56,53,46,49,51,53,48,51,56,44,51,50,46,55,52,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,49,34,44,34,78,65,77,69,34,58,34,83,99,114,101,118,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,52,49,56,51,49,44,51,51,46,48,52,53,54,53,52,93,44,91,45,56,49,46,55,54,55,53,53,51,44,51,50,46,57,48,57,52,49,49,93,44,91,45,56,49,46,56,54,55,57,51,56,44,51,50,46,54,56,49,49,53,93,44,91,45,56,49,46,56,52,49,48,48,53,44,51,50,46,54,52,57,48,57,51,93,44,91,45,56,49,46,54,56,55,57,50,55,44,51,50,46,53,52,54,48,55,93,44,91,45,56,49,46,53,52,56,48,48,54,44,51,50,46,52,56,57,50,56,54,93,44,91,45,56,49,46,51,56,57,50,48,53,44,51,50,46,53,57,53,52,49,54,93,44,91,45,56,49,46,52,48,53,48,53,52,44,51,50,46,55,52,52,57,53,55,93,44,91,45,56,49,46,52,50,54,52,55,53,44,51,50,46,56,52,48,55,55,51,93,44,91,45,56,49,46,53,52,49,56,51,49,44,51,51,46,48,52,53,54,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,117,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,54,48,54,44,34,98,101,100,115,34,58,50,48,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,50,57,52,48,51,44,49,56,46,52,54,53,54,51,50,93,44,91,45,54,54,46,49,48,56,50,56,49,44,49,56,46,52,51,56,57,48,50,93,44,91,45,54,54,46,48,56,48,52,55,53,44,49,56,46,50,57,55,50,57,53,93,44,91,45,54,54,46,48,54,54,49,48,51,44,49,56,46,51,48,51,51,50,49,93,44,91,45,54,54,46,48,52,49,53,51,53,44,49,56,46,51,49,50,51,52,52,93,44,91,45,54,53,46,57,57,57,53,53,54,44,49,56,46,51,56,48,48,54,53,93,44,91,45,54,54,46,48,51,51,57,55,44,49,56,46,53,49,52,50,54,57,93,44,91,45,54,54,46,49,50,56,57,56,54,44,49,56,46,53,50,52,52,48,51,93,44,91,45,54,54,46,49,50,57,52,48,51,44,49,56,46,52,54,53,54,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,51,51,34,44,34,78,65,77,69,34,58,34,83,116,111,110,101,119,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,53,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,49,55,52,52,57,44,51,51,46,51,57,55,56,54,54,93,44,91,45,49,48,48,46,53,49,57,50,48,56,44,51,50,46,57,54,50,57,50,54,93,44,91,45,49,48,48,46,49,52,52,50,50,52,44,51,50,46,57,53,57,57,55,56,93,44,91,45,57,57,46,57,56,56,56,50,55,44,51,50,46,57,54,48,49,50,49,93,44,91,45,57,57,46,57,57,48,57,56,44,51,51,46,51,57,55,52,48,52,93,44,91,45,49,48,48,46,53,49,55,52,52,57,44,51,51,46,51,57,55,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,51,49,54,44,34,98,101,100,115,34,58,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,49,54,54,52,44,52,49,46,52,50,55,53,54,56,93,44,91,45,56,52,46,50,50,56,52,53,52,44,52,49,46,52,50,55,56,49,93,44,91,45,56,52,46,50,50,56,50,50,50,44,52,49,46,49,54,53,56,54,50,93,44,91,45,56,51,46,56,56,49,49,52,57,44,52,49,46,49,54,55,56,50,52,93,44,91,45,56,51,46,56,56,51,50,51,52,44,52,49,46,52,49,52,53,48,51,93,44,91,45,56,51,46,56,56,50,57,52,51,44,52,49,46,52,56,55,53,52,51,93,44,91,45,56,52,46,51,52,49,57,48,50,44,52,49,46,52,56,53,53,49,57,93,44,91,45,56,52,46,51,52,49,54,54,52,44,52,49,46,52,50,55,53,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,71,114,97,102,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,56,49,49,44,34,98,101,100,115,34,58,53,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,48,51,57,56,50,44,52,52,46,49,53,53,55,51,93,44,91,45,55,50,46,48,51,50,51,50,57,44,52,52,46,48,56,48,56,54,57,93,44,91,45,55,50,46,49,49,54,57,53,54,44,52,51,46,57,57,50,54,51,54,93,44,91,45,55,50,46,50,48,53,50,49,57,44,52,51,46,55,55,48,57,54,52,93,44,91,45,55,50,46,51,48,53,49,51,51,44,52,51,46,54,57,53,51,50,49,93,44,91,45,55,50,46,51,50,57,56,57,57,44,52,51,46,54,48,48,50,49,52,93,44,91,45,55,49,46,57,51,53,51,49,44,52,51,46,53,50,56,56,56,93,44,91,45,55,49,46,55,50,55,53,55,51,44,52,51,46,53,54,51,52,49,49,93,44,91,45,55,49,46,54,52,56,51,52,54,44,52,51,46,54,56,52,53,49,49,93,44,91,45,55,49,46,53,51,49,54,53,56,44,52,51,46,55,54,48,57,55,57,93,44,91,45,55,49,46,53,54,52,54,48,51,44,52,51,46,56,57,51,49,55,50,93,44,91,45,55,49,46,51,54,49,57,54,53,44,52,51,46,57,49,53,57,51,56,93,44,91,45,55,49,46,51,54,54,51,53,53,44,52,52,46,48,54,56,53,50,52,93,44,91,45,55,49,46,52,49,53,56,57,56,44,52,52,46,50,49,50,49,54,57,93,44,91,45,55,49,46,53,55,53,56,49,57,44,52,52,46,50,53,52,53,57,54,93,44,91,45,55,49,46,55,54,53,54,56,52,44,52,52,46,52,48,54,50,57,53,93,44,91,45,55,49,46,56,51,55,56,53,51,44,52,52,46,51,52,55,57,57,51,93,44,91,45,55,49,46,57,56,49,52,50,52,44,52,52,46,51,51,55,51,54,54,93,44,91,45,55,50,46,48,54,56,52,55,56,44,52,52,46,50,55,48,56,48,49,93,44,91,45,55,50,46,48,52,50,57,53,54,44,52,52,46,49,53,54,52,57,55,93,44,91,45,55,50,46,48,51,57,56,50,44,52,52,46,49,53,53,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,50,48,50,44,34,98,101,100,115,34,58,54,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,55,57,54,52,44,51,54,46,57,57,56,57,48,53,93,44,91,45,57,52,46,54,49,56,51,48,55,44,51,54,46,55,54,54,53,54,93,44,91,45,57,52,46,48,54,56,56,57,56,44,51,54,46,55,52,55,56,49,56,93,44,91,45,57,52,46,48,54,50,55,52,44,51,54,46,57,51,49,55,55,53,93,44,91,45,57,52,46,48,53,57,50,49,49,44,51,55,46,48,52,56,49,50,55,93,44,91,45,57,52,46,54,49,55,56,52,57,44,51,55,46,48,53,54,55,57,55,93,44,91,45,57,52,46,54,49,55,57,54,52,44,51,54,46,57,57,56,57,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,80,111,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,56,51,55,51,50,44,51,56,46,50,51,48,51,53,52,93,44,91,45,56,55,46,57,49,48,57,50,52,44,51,56,46,49,54,50,53,53,55,93,44,91,45,56,56,46,48,49,51,49,49,56,44,51,56,46,49,48,51,53,50,55,93,44,91,45,56,56,46,48,49,51,51,53,53,44,51,55,46,56,57,52,56,53,52,93,44,91,45,56,56,46,48,57,51,48,52,57,44,51,55,46,56,57,49,54,48,52,93,44,91,45,56,56,46,48,50,56,48,49,54,44,51,55,46,55,57,57,49,56,56,93,44,91,45,56,55,46,57,48,54,57,51,57,44,51,55,46,56,48,55,53,57,51,93,44,91,45,56,55,46,57,50,55,48,54,56,44,51,55,46,57,48,49,54,56,53,93,44,91,45,56,55,46,55,48,48,55,54,50,44,51,55,46,56,57,55,53,53,54,93,44,91,45,56,55,46,54,56,56,51,55,52,44,51,56,46,49,54,56,52,49,57,93,44,91,45,56,55,46,55,57,57,49,54,57,44,51,56,46,50,50,56,53,56,93,44,91,45,56,55,46,57,56,51,55,51,50,44,51,56,46,50,51,48,51,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,49,34,44,34,78,65,77,69,34,58,34,77,99,77,117,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,48,56,52,56,44,50,56,46,54,52,55,51,48,54,93,44,91,45,57,56,46,56,48,51,51,50,53,44,50,56,46,48,53,55,52,56,93,44,91,45,57,56,46,51,51,52,51,50,51,44,50,56,46,48,53,55,56,93,44,91,45,57,56,46,51,51,53,48,51,49,44,50,56,46,54,49,50,54,53,56,93,44,91,45,57,56,46,51,51,53,48,52,55,44,50,56,46,54,52,56,50,55,53,93,44,91,45,57,56,46,56,48,48,56,52,56,44,50,56,46,54,52,55,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,55,48,56,51,44,51,57,46,51,55,52,53,49,53,93,44,91,45,56,56,46,52,55,48,57,48,54,44,51,57,46,50,49,53,48,50,57,93,44,91,45,56,56,46,51,54,48,54,53,52,44,51,57,46,49,55,49,49,49,56,93,44,91,45,56,56,46,48,48,55,55,54,54,44,51,57,46,49,55,51,57,50,53,93,44,91,45,56,56,46,48,49,50,49,50,49,44,51,57,46,51,55,56,57,54,56,93,44,91,45,56,56,46,52,55,48,56,51,44,51,57,46,51,55,52,53,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,55,34,44,34,78,65,77,69,34,58,34,87,97,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,49,51,50,44,34,98,101,100,115,34,58,49,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,56,50,48,51,51,44,51,51,46,55,56,54,48,53,52,93,44,91,45,56,51,46,57,49,52,56,50,51,44,51,51,46,55,52,52,50,48,51,93,44,91,45,56,51,46,54,56,48,56,57,54,44,51,51,46,53,57,54,57,49,57,93,44,91,45,56,51,46,53,48,53,57,50,56,44,51,51,46,56,49,55,55,54,93,44,91,45,56,51,46,54,52,55,48,51,49,44,51,51,46,57,48,54,49,57,56,93,44,91,45,56,51,46,55,57,57,49,48,52,44,51,51,46,57,50,57,56,52,52,93,44,91,45,56,51,46,57,56,50,48,51,51,44,51,51,46,55,56,54,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,80,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,56,48,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,53,56,53,48,56,44,52,53,46,55,53,57,57,51,50,93,44,91,45,57,53,46,55,52,55,52,48,50,44,52,53,46,52,49,50,51,49,51,93,44,91,45,57,53,46,50,53,53,50,49,51,44,52,53,46,52,49,50,55,51,57,93,44,91,45,57,53,46,49,51,49,55,51,44,52,53,46,52,49,50,52,48,50,93,44,91,45,57,53,46,49,51,57,54,55,44,52,53,46,55,53,56,56,57,49,93,44,91,45,57,53,46,55,53,56,53,48,56,44,52,53,46,55,53,57,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,82,97,112,112,97,104,97,110,110,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,51,48,53,55,52,44,51,56,46,56,54,52,56,54,53,93,44,91,45,55,56,46,50,56,52,56,48,53,44,51,56,46,55,53,57,51,49,53,93,44,91,45,55,56,46,51,51,56,49,55,54,44,51,56,46,54,50,55,51,49,50,93,44,91,45,55,56,46,50,51,49,56,48,51,44,51,56,46,53,51,50,53,51,57,93,44,91,45,55,56,46,49,54,56,55,57,50,44,51,56,46,53,50,51,56,48,57,93,44,91,45,55,55,46,57,51,53,51,53,53,44,51,56,46,54,57,53,56,52,93,44,91,45,55,56,46,49,51,48,53,55,52,44,51,56,46,56,54,52,56,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,109,104,101,114,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,56,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,49,55,50,49,51,49,44,51,55,46,56,48,51,48,57,55,93,44,91,45,55,57,46,50,54,52,54,55,52,44,51,55,46,55,57,52,54,57,52,93,44,91,45,55,57,46,51,52,53,50,51,53,44,51,55,46,54,54,48,54,50,53,93,44,91,45,55,57,46,52,51,54,57,52,55,44,51,55,46,54,49,55,48,53,55,93,44,91,45,55,57,46,51,52,49,54,55,44,51,55,46,53,49,56,48,49,53,93,44,91,45,55,57,46,49,56,53,55,48,50,44,51,55,46,52,54,53,56,50,93,44,91,45,55,57,46,48,56,53,49,50,51,44,51,55,46,51,57,52,56,55,53,93,44,91,45,55,57,46,48,50,49,54,56,55,44,51,55,46,52,50,57,50,52,51,93,44,91,45,55,56,46,56,54,57,50,52,53,44,51,55,46,53,52,50,48,57,50,93,44,91,45,55,56,46,57,54,54,57,50,54,44,51,55,46,54,55,55,48,48,52,93,44,91,45,55,57,46,49,55,50,49,51,49,44,51,55,46,56,48,51,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,86,101,110,116,117,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,56,49,49,50,44,34,98,101,100,115,34,58,49,52,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,49,57,46,53,48,48,57,53,51,44,51,52,46,51,50,54,57,50,50,93,44,91,45,49,49,57,46,51,51,53,57,50,54,44,51,52,46,50,51,55,53,50,51,93,44,91,45,49,49,57,46,50,49,55,57,57,51,44,51,52,46,48,54,50,52,57,49,93,44,91,45,49,49,56,46,57,53,49,55,50,49,44,51,51,46,57,57,50,56,53,56,93,44,91,45,49,49,56,46,57,52,48,57,54,53,44,51,52,46,48,55,52,56,51,93,44,91,45,49,49,56,46,55,56,56,56,56,57,44,51,52,46,49,54,56,50,49,52,93,44,91,45,49,49,56,46,54,54,56,49,53,50,44,51,52,46,49,54,56,49,57,53,93,44,91,45,49,49,56,46,54,51,54,55,56,57,44,51,52,46,50,57,49,56,48,52,93,44,91,45,49,49,56,46,56,56,49,51,54,52,44,51,52,46,55,57,48,54,50,57,93,44,91,45,49,49,57,46,50,52,51,54,52,53,44,51,52,46,56,49,52,49,55,56,93,44,91,45,49,49,57,46,50,55,54,57,52,54,44,51,52,46,56,55,57,54,55,53,93,44,91,45,49,49,57,46,52,52,50,51,53,50,44,51,52,46,57,48,49,50,55,52,93,44,91,45,49,49,57,46,52,52,50,50,50,50,44,51,52,46,52,53,53,57,49,93,44,91,45,49,49,57,46,53,48,48,57,53,51,44,51,52,46,51,50,54,57,50,50,93,93,93,44,91,91,91,45,49,49,57,46,54,51,54,48,54,56,44,51,51,46,50,56,48,55,49,51,93,44,91,45,49,49,57,46,53,55,52,49,57,50,44,51,51,46,49,56,54,52,56,52,93,44,91,45,49,49,57,46,52,51,51,55,49,55,44,51,51,46,49,54,54,57,56,55,93,44,91,45,49,49,57,46,51,54,48,57,50,54,44,51,51,46,50,52,50,48,54,93,44,91,45,49,49,57,46,53,50,53,51,49,51,44,51,51,46,51,51,52,56,54,50,93,44,91,45,49,49,57,46,54,51,54,48,54,56,44,51,51,46,50,56,48,55,49,51,93,93,93,44,91,91,91,45,49,49,57,46,52,54,56,48,54,52,44,51,52,46,48,54,51,49,51,57,93,44,91,45,49,49,57,46,52,57,50,50,57,44,51,51,46,57,56,51,50,49,53,93,44,91,45,49,49,57,46,51,56,48,52,53,54,44,51,51,46,57,53,51,54,49,49,93,44,91,45,49,49,57,46,51,52,50,52,54,50,44,51,52,46,48,54,56,57,54,52,93,44,91,45,49,49,57,46,52,54,56,48,54,52,44,51,52,46,48,54,51,49,51,57,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,56,56,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,53,48,51,56,53,44,51,57,46,49,55,52,56,56,50,93,44,91,45,56,55,46,57,52,53,57,49,57,44,51,56,46,56,53,48,49,52,56,93,44,91,45,56,55,46,57,48,56,49,49,51,44,51,56,46,56,53,48,49,48,55,93,44,91,45,56,55,46,53,51,49,49,52,53,44,51,56,46,56,53,50,53,48,55,93,44,91,45,56,55,46,53,50,50,57,51,57,44,51,56,46,57,48,50,51,57,93,44,91,45,56,55,46,54,50,56,55,57,56,44,51,57,46,49,53,55,53,49,51,93,44,91,45,56,55,46,57,53,48,51,56,53,44,51,57,46,49,55,52,56,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,80,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,57,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,49,57,49,48,48,54,44,51,57,46,48,53,54,48,55,51,93,44,91,45,49,48,54,46,49,48,53,55,53,56,44,51,56,46,57,52,48,51,54,52,93,44,91,45,49,48,54,46,48,50,56,49,51,56,44,51,56,46,57,52,50,56,52,57,93,44,91,45,49,48,53,46,57,48,54,53,56,55,44,51,56,46,56,48,54,57,54,50,93,44,91,45,49,48,53,46,57,54,57,55,53,44,51,56,46,54,57,51,53,53,49,93,44,91,45,49,48,53,46,51,50,57,49,51,52,44,51,56,46,54,57,55,50,48,53,93,44,91,45,49,48,53,46,51,51,48,52,52,52,44,51,57,46,49,50,57,54,56,53,93,44,91,45,49,48,53,46,51,57,55,56,55,53,44,51,57,46,49,50,57,53,54,52,93,44,91,45,49,48,53,46,51,57,56,57,52,57,44,51,57,46,53,54,54,48,53,54,93,44,91,45,49,48,53,46,56,50,57,54,54,50,44,51,57,46,53,54,52,56,54,53,93,44,91,45,49,48,53,46,57,53,49,54,57,56,44,51,57,46,52,49,52,54,49,57,93,44,91,45,49,48,54,46,49,51,53,53,50,57,44,51,57,46,51,55,57,53,52,54,93,44,91,45,49,48,54,46,49,56,51,57,55,50,44,51,57,46,51,48,57,51,53,52,93,44,91,45,49,48,54,46,49,57,49,48,48,54,44,51,57,46,48,53,54,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,76,111,115,32,65,110,103,101,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,57,56,48,53,50,44,34,98,101,100,115,34,58,50,52,48,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,49,56,46,56,56,49,51,54,52,44,51,52,46,55,57,48,54,50,57,93,44,91,45,49,49,56,46,54,51,54,55,56,57,44,51,52,46,50,57,49,56,48,52,93,44,91,45,49,49,56,46,54,54,56,49,53,50,44,51,52,46,49,54,56,49,57,53,93,44,91,45,49,49,56,46,55,56,56,56,56,57,44,51,52,46,49,54,56,50,49,52,93,44,91,45,49,49,56,46,57,52,48,57,54,53,44,51,52,46,48,55,52,56,51,93,44,91,45,49,49,56,46,57,53,49,55,50,49,44,51,51,46,57,57,50,56,53,56,93,44,91,45,49,49,56,46,56,50,52,56,57,51,44,51,51,46,57,52,57,48,52,50,93,44,91,45,49,49,56,46,53,53,55,51,53,54,44,51,51,46,57,56,55,54,55,51,93,44,91,45,49,49,56,46,52,52,51,57,54,56,44,51,51,46,56,51,57,48,53,55,93,44,91,45,49,49,56,46,52,54,54,57,54,50,44,51,51,46,55,50,53,53,50,52,93,44,91,45,49,49,56,46,51,52,53,52,49,53,44,51,51,46,54,54,51,52,50,55,93,44,91,45,49,49,56,46,49,50,53,57,44,51,51,46,54,57,55,49,53,49,93,44,91,45,49,49,56,46,48,53,56,57,49,56,44,51,51,46,56,52,54,49,50,49,93,44,91,45,49,49,55,46,57,55,54,52,57,56,44,51,51,46,57,52,54,48,53,93,44,91,45,49,49,55,46,55,56,51,50,56,55,44,51,51,46,57,52,54,52,49,49,93,44,91,45,49,49,55,46,54,55,56,53,48,49,44,51,52,46,49,54,49,57,57,51,93,44,91,45,49,49,55,46,54,52,54,51,55,52,44,51,52,46,50,56,57,49,55,93,44,91,45,49,49,55,46,54,54,55,50,57,50,44,51,52,46,56,50,50,53,50,54,93,44,91,45,49,49,56,46,56,53,52,48,49,44,51,52,46,56,49,55,51,51,57,93,44,91,45,49,49,56,46,56,56,49,51,54,52,44,51,52,46,55,57,48,54,50,57,93,93,93,44,91,91,91,45,49,49,56,46,54,54,56,50,48,51,44,51,51,46,52,56,53,57,51,55,93,44,91,45,49,49,56,46,53,53,51,51,55,54,44,51,51,46,51,56,48,50,50,54,93,44,91,45,49,49,56,46,53,49,56,48,51,55,44,51,51,46,50,57,54,54,53,93,44,91,45,49,49,56,46,51,50,55,57,57,51,44,51,51,46,50,52,56,48,56,51,93,44,91,45,49,49,56,46,50,54,50,55,52,56,44,51,51,46,51,55,48,52,52,93,44,91,45,49,49,56,46,51,53,57,51,57,51,44,51,51,46,52,54,52,57,50,50,93,44,91,45,49,49,56,46,53,50,51,50,51,54,44,51,51,46,53,51,48,49,53,51,93,44,91,45,49,49,56,46,54,54,56,50,48,51,44,51,51,46,52,56,53,57,51,55,93,93,93,44,91,91,91,45,49,49,56,46,54,55,56,50,48,52,44,51,51,46,48,51,57,55,50,54,93,44,91,45,49,49,56,46,53,51,56,49,57,55,44,51,50,46,56,49,50,55,55,93,44,91,45,49,49,56,46,52,51,54,53,51,56,44,51,50,46,55,53,48,48,52,93,44,91,45,49,49,56,46,51,50,51,56,49,57,44,51,50,46,55,55,51,53,49,52,93,44,91,45,49,49,56,46,50,57,55,50,53,44,51,50,46,56,52,53,48,57,52,93,44,91,45,49,49,56,46,52,52,56,56,54,51,44,51,50,46,57,54,49,55,53,93,44,91,45,49,49,56,46,53,52,50,49,48,51,44,51,51,46,48,55,51,55,56,56,93,44,91,45,49,49,56,46,54,55,56,50,48,52,44,51,51,46,48,51,57,55,50,54,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,89,117,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,56,50,57,44,34,98,101,100,115,34,58,52,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,55,49,57,52,57,55,44,51,50,46,55,49,56,55,51,57,93,44,91,45,49,49,52,46,56,48,57,52,51,55,44,51,50,46,54,49,53,57,56,54,93,44,91,45,49,49,52,46,56,49,51,54,57,50,44,51,50,46,52,57,52,48,54,57,93,44,91,45,49,49,51,46,56,51,54,50,50,54,44,51,50,46,49,57,54,48,55,54,93,44,91,45,49,49,51,46,51,51,51,55,54,55,44,51,50,46,48,51,56,57,50,55,93,44,91,45,49,49,51,46,51,51,51,56,57,52,44,51,50,46,53,48,53,49,56,56,93,44,91,45,49,49,51,46,51,51,53,48,52,56,44,51,51,46,51,55,55,52,54,57,93,44,91,45,49,49,51,46,57,53,55,52,56,57,44,51,51,46,51,55,55,51,54,50,93,44,91,45,49,49,51,46,57,53,55,53,49,52,44,51,51,46,52,54,52,52,49,51,93,44,91,45,49,49,52,46,50,54,56,56,48,56,44,51,51,46,52,54,52,52,48,50,93,44,91,45,49,49,52,46,50,54,56,56,44,51,51,46,48,50,57,57,54,49,93,44,91,45,49,49,52,46,53,49,54,56,52,50,44,51,51,46,48,50,55,56,56,54,93,44,91,45,49,49,52,46,52,54,50,57,50,57,44,51,50,46,57,48,55,57,52,52,93,44,91,45,49,49,52,46,53,50,54,56,53,54,44,51,50,46,55,53,55,48,57,52,93,44,91,45,49,49,52,46,55,49,57,52,57,55,44,51,50,46,55,49,56,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,71,111,114,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,55,57,48,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,54,57,49,53,57,44,51,52,46,53,56,55,49,56,52,93,44,91,45,56,53,46,48,56,54,55,54,49,44,51,52,46,52,48,49,50,54,52,93,44,91,45,56,53,46,48,48,53,55,55,53,44,51,52,46,51,57,50,52,52,54,93,44,91,45,56,52,46,54,53,51,50,51,50,44,51,52,46,52,49,50,53,57,93,44,91,45,56,52,46,54,53,52,51,54,54,44,51,52,46,53,52,56,57,52,54,93,44,91,45,56,52,46,54,53,52,53,50,51,44,51,52,46,53,56,51,49,56,55,93,44,91,45,56,52,46,57,49,51,52,53,54,44,51,52,46,54,51,52,49,50,56,93,44,91,45,56,53,46,48,53,48,52,52,54,44,51,52,46,54,50,50,52,56,50,93,44,91,45,56,53,46,48,54,57,49,53,57,44,51,52,46,53,56,55,49,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,49,52,52,56,53,44,52,50,46,53,54,48,51,48,57,93,44,91,45,57,52,46,56,53,54,54,56,57,44,52,50,46,52,55,51,57,57,54,93,44,91,45,57,52,46,56,53,56,52,49,50,44,52,50,46,50,48,57,54,57,50,93,44,91,45,57,52,46,54,50,56,56,48,54,44,52,50,46,50,48,57,51,57,54,93,44,91,45,57,52,46,51,57,55,53,50,54,44,52,50,46,50,48,57,49,54,49,93,44,91,45,57,52,46,51,57,55,54,55,49,44,52,50,46,52,55,51,51,93,44,91,45,57,52,46,52,52,51,48,50,52,44,52,50,46,53,53,56,56,52,51,93,44,91,45,57,52,46,57,49,52,52,56,53,44,52,50,46,53,54,48,51,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,72,105,103,104,108,97,110,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,48,49,44,34,98,101,100,115,34,58,50,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,54,51,53,51,51,44,50,55,46,54,52,54,54,52,53,93,44,91,45,56,49,46,53,54,52,48,54,50,44,50,55,46,51,52,48,54,52,49,93,44,91,45,56,49,46,53,54,50,54,50,52,44,50,55,46,48,51,51,56,51,53,93,44,91,45,56,49,46,53,54,50,53,51,49,44,50,55,46,48,51,51,54,56,55,93,44,91,45,56,49,46,50,54,55,50,49,54,44,50,55,46,48,51,50,52,55,52,93,44,91,45,56,49,46,50,54,55,54,55,55,44,50,55,46,49,50,49,48,57,55,93,44,91,45,56,49,46,49,54,56,50,56,49,44,50,55,46,49,50,49,55,51,52,93,44,91,45,56,49,46,49,54,57,49,51,56,44,50,55,46,50,48,57,53,56,53,93,44,91,45,56,48,46,57,52,48,54,55,54,44,50,55,46,50,48,53,57,51,57,93,44,91,45,56,49,46,50,48,53,51,56,56,44,50,55,46,52,57,48,50,53,52,93,44,91,45,56,49,46,49,52,50,49,54,52,44,50,55,46,54,52,51,50,51,56,93,44,91,45,56,49,46,53,54,51,53,51,51,44,50,55,46,54,52,54,54,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,56,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,56,48,34,44,34,78,65,77,69,34,58,34,67,111,118,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,48,56,57,57,52,44,51,55,46,55,54,50,53,56,55,93,44,91,45,55,57,46,57,55,56,50,49,52,44,51,55,46,55,54,52,57,55,53,93,44,91,45,55,57,46,57,54,55,48,55,49,44,51,55,46,56,48,51,52,48,53,93,44,91,45,55,57,46,57,57,50,48,53,53,44,51,55,46,55,57,57,56,49,93,44,91,45,56,48,46,48,48,56,57,57,52,44,51,55,46,55,54,50,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,51,55,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,51,54,56,51,53,51,44,52,52,46,50,48,52,48,53,55,93,44,91,45,55,50,46,52,52,51,48,51,50,44,52,52,46,49,50,56,54,54,57,93,44,91,45,55,50,46,53,56,57,56,53,53,44,52,52,46,49,53,57,51,52,51,93,44,91,45,55,50,46,55,52,50,51,48,51,44,52,52,46,48,50,57,54,53,53,93,44,91,45,55,50,46,55,57,49,51,51,54,44,52,51,46,57,54,49,56,53,53,93,44,91,45,55,50,46,55,56,51,50,48,56,44,52,51,46,57,50,56,57,54,55,93,44,91,45,55,50,46,50,48,53,50,49,57,44,52,51,46,55,55,48,57,54,52,93,44,91,45,55,50,46,49,49,54,57,53,54,44,52,51,46,57,57,50,54,51,54,93,44,91,45,55,50,46,48,51,50,51,50,57,44,52,52,46,48,56,48,56,54,57,93,44,91,45,55,50,46,48,51,57,56,50,44,52,52,46,49,53,53,55,51,93,44,91,45,55,50,46,48,52,50,57,53,54,44,52,52,46,49,53,54,52,57,55,93,44,91,45,55,50,46,51,54,56,51,53,51,44,52,52,46,50,48,52,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,99,80,104,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,51,48,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,50,52,50,54,57,44,51,56,46,53,50,50,55,53,53,93,44,91,45,57,55,46,57,50,50,49,51,54,44,51,56,46,49,55,51,55,49,51,93,44,91,45,57,55,46,55,48,49,56,52,49,44,51,56,46,49,55,51,56,49,52,93,44,91,45,57,55,46,51,55,49,55,53,44,51,56,46,49,55,51,54,55,51,93,44,91,45,57,55,46,51,55,49,57,49,49,44,51,56,46,54,48,57,51,53,51,93,44,91,45,57,55,46,57,50,52,55,57,53,44,51,56,46,54,48,57,56,56,93,44,91,45,57,55,46,57,50,52,50,54,57,44,51,56,46,53,50,50,55,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,80,105,110,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,57,55,50,49,44,34,98,101,100,115,34,58,52,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,48,51,57,57,55,54,44,51,51,46,52,54,54,48,49,57,93,44,91,45,49,49,49,46,53,56,48,54,51,52,44,51,51,46,52,54,53,56,93,44,91,45,49,49,49,46,53,56,50,54,51,49,44,51,51,46,50,48,53,52,48,56,93,44,91,45,49,49,50,46,48,56,49,57,52,54,44,51,51,46,50,48,52,54,56,54,93,44,91,45,49,49,50,46,49,57,49,54,48,56,44,51,51,46,50,54,52,54,57,56,93,44,91,45,49,49,50,46,50,48,51,54,50,52,44,51,50,46,53,48,54,55,50,49,93,44,91,45,49,49,49,46,53,54,57,50,53,54,44,51,50,46,53,48,54,55,54,57,93,44,91,45,49,49,48,46,52,53,49,53,50,50,44,51,50,46,53,49,51,57,57,53,93,44,91,45,49,49,48,46,52,52,57,48,50,49,44,51,51,46,49,57,52,53,50,54,93,44,91,45,49,49,48,46,54,51,52,52,49,50,44,51,51,46,49,52,50,51,54,54,93,44,91,45,49,49,48,46,55,56,51,49,51,54,44,51,50,46,57,56,52,54,54,93,44,91,45,49,49,48,46,57,52,54,54,56,52,44,51,51,46,50,53,48,48,53,51,93,44,91,45,49,49,49,46,48,51,57,57,55,54,44,51,51,46,52,54,54,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,51,48,53,44,34,98,101,100,115,34,58,49,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,57,57,53,52,54,44,52,49,46,55,48,53,56,49,54,93,44,91,45,56,52,46,51,56,48,55,51,53,44,52,49,46,53,49,51,57,52,50,93,44,91,45,56,52,46,51,52,49,57,48,50,44,52,49,46,52,56,53,53,49,57,93,44,91,45,56,51,46,56,56,50,57,52,51,44,52,49,46,52,56,55,53,52,51,93,44,91,45,56,51,46,56,56,48,51,57,49,44,52,49,46,55,50,48,50,49,50,93,44,91,45,56,52,46,51,54,48,52,49,54,44,52,49,46,55,48,54,53,56,57,93,44,91,45,56,52,46,51,57,57,53,52,54,44,52,49,46,55,48,53,56,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,97,109,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,52,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,51,56,52,49,51,44,51,55,46,55,52,56,51,53,51,93,44,91,45,49,48,54,46,48,51,57,51,51,49,44,51,55,46,52,48,48,56,53,50,93,44,91,45,49,48,54,46,48,51,56,57,49,50,44,51,55,46,51,53,54,57,53,51,93,44,91,45,49,48,53,46,55,52,51,51,51,57,44,51,55,46,51,53,54,55,57,56,93,44,91,45,49,48,53,46,52,56,53,53,49,54,44,51,55,46,53,55,55,56,57,57,93,44,91,45,49,48,53,46,52,53,55,50,53,53,44,51,55,46,55,53,49,52,54,52,93,44,91,45,49,48,54,46,48,51,56,52,49,51,44,51,55,46,55,52,56,51,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,105,116,114,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,48,56,55,44,34,98,101,100,115,34,58,51,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,55,56,52,51,55,44,50,56,46,54,57,52,50,48,54,93,44,91,45,56,50,46,52,49,56,51,53,51,44,50,56,46,54,57,52,56,53,57,93,44,91,45,56,50,46,50,54,51,48,53,50,44,50,56,46,54,54,55,54,51,52,93,44,91,45,56,50,46,49,55,49,52,48,50,44,50,56,46,55,56,57,56,52,56,93,44,91,45,56,50,46,51,49,49,54,57,55,44,50,56,46,57,54,48,51,57,49,93,44,91,45,56,50,46,52,55,55,54,51,57,44,50,57,46,48,53,50,52,56,52,93,44,91,45,56,50,46,53,51,53,53,57,49,44,50,57,46,48,52,52,56,53,53,93,44,91,45,56,50,46,55,49,49,53,51,44,50,57,46,48,51,48,57,56,56,93,44,91,45,56,50,46,56,52,56,50,52,56,44,50,56,46,57,49,52,53,50,57,93,44,91,45,56,50,46,55,55,56,52,51,55,44,50,56,46,54,57,52,50,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,117,108,101,98,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,52,50,50,55,48,54,44,49,56,46,50,57,48,55,50,56,93,44,91,45,54,53,46,50,56,54,54,56,44,49,56,46,50,50,53,57,57,93,44,91,45,54,53,46,49,57,49,49,51,52,44,49,56,46,50,53,56,56,56,52,93,44,91,45,54,53,46,49,56,49,55,54,50,44,49,56,46,51,53,55,55,50,55,93,44,91,45,54,53,46,51,54,50,53,54,54,44,49,56,46,52,49,57,52,55,50,93,44,91,45,54,53,46,52,50,52,52,51,49,44,49,56,46,51,57,48,56,56,93,44,91,45,54,53,46,52,50,50,55,48,54,44,49,56,46,50,57,48,55,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,68,111,114,97,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,48,56,51,49,51,44,49,56,46,53,50,57,55,56,56,93,44,91,45,54,54,46,51,48,51,54,54,51,44,49,56,46,51,56,52,48,55,55,93,44,91,45,54,54,46,50,53,50,53,53,52,44,49,56,46,51,57,52,49,56,55,93,44,91,45,54,54,46,49,56,55,50,55,49,44,49,56,46,53,50,54,50,55,49,93,44,91,45,54,54,46,51,48,56,51,49,51,44,49,56,46,53,50,57,55,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,54,48,49,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,53,57,55,48,54,44,51,54,46,48,56,54,48,50,52,93,44,91,45,56,54,46,48,49,52,56,52,57,44,51,53,46,57,54,49,48,54,93,44,91,45,56,53,46,56,56,53,49,53,54,44,51,53,46,56,51,57,54,53,56,93,44,91,45,56,53,46,54,56,50,48,57,53,44,51,53,46,56,51,49,50,53,52,93,44,91,45,56,53,46,54,52,52,54,48,52,44,51,54,46,48,49,53,48,53,51,93,44,91,45,56,53,46,56,48,55,52,49,53,44,51,54,46,49,51,49,53,56,50,93,44,91,45,56,54,46,48,53,57,55,48,54,44,51,54,46,48,56,54,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,108,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,50,55,44,34,98,101,100,115,34,58,49,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,55,55,56,50,50,44,52,49,46,51,56,54,52,55,57,93,44,91,45,55,57,46,54,57,52,57,56,52,44,52,49,46,49,55,50,56,54,53,93,44,91,45,55,57,46,54,57,48,55,49,49,44,52,49,46,49,55,48,54,57,49,93,44,91,45,55,57,46,54,54,53,55,54,50,44,52,49,46,48,52,57,49,50,51,93,44,91,45,55,57,46,53,57,55,48,49,51,44,52,48,46,57,57,52,51,56,56,93,44,91,45,55,57,46,51,56,53,53,51,55,44,52,48,46,57,56,57,55,54,54,93,44,91,45,55,57,46,50,49,53,50,49,52,44,52,49,46,48,53,48,53,49,53,93,44,91,45,55,57,46,50,48,56,56,55,56,44,52,49,46,51,51,49,56,54,49,93,44,91,45,55,57,46,50,48,55,49,57,54,44,52,49,46,52,51,48,57,50,50,93,44,91,45,55,57,46,52,48,48,50,54,57,44,52,49,46,52,51,54,49,52,53,93,44,91,45,55,57,46,52,55,55,56,50,50,44,52,49,46,51,56,54,52,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,105,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,50,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,52,57,52,57,50,44,52,52,46,49,57,53,50,51,53,93,44,91,45,57,55,46,56,53,49,49,49,44,52,51,46,56,52,57,56,53,55,93,44,91,45,57,55,46,54,48,56,53,49,55,44,52,51,46,56,52,57,48,53,57,93,44,91,45,57,55,46,51,54,57,52,54,51,44,52,51,46,56,52,56,53,50,54,93,44,91,45,57,55,46,51,55,48,49,49,53,44,52,52,46,49,57,52,57,55,49,93,44,91,45,57,55,46,56,52,57,52,57,50,44,52,52,46,49,57,53,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,74,101,114,97,117,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,57,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,51,49,57,49,44,52,52,46,49,57,54,54,56,55,93,44,91,45,57,56,46,55,48,48,52,53,51,44,52,52,46,49,57,54,55,50,55,93,44,91,45,57,56,46,57,50,53,57,53,51,44,52,52,46,49,57,54,53,55,53,93,44,91,45,57,56,46,57,50,54,57,57,55,44,52,51,46,57,51,53,49,52,51,93,44,91,45,57,56,46,56,48,55,55,55,49,44,52,51,46,57,51,53,50,50,51,93,44,91,45,57,56,46,51,51,49,53,48,56,44,52,51,46,57,51,55,55,48,56,93,44,91,45,57,56,46,51,51,49,57,49,44,52,52,46,49,57,54,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,101,99,97,116,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,53,53,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,57,55,53,55,53,44,51,57,46,52,53,51,50,55,53,93,44,91,45,56,53,46,54,50,57,51,50,55,44,51,57,46,52,53,50,55,53,93,44,91,45,56,53,46,54,56,52,53,49,53,44,51,57,46,51,53,48,48,52,57,93,44,91,45,56,53,46,54,56,54,55,56,51,44,51,57,46,49,51,48,56,53,57,93,44,91,45,56,53,46,53,54,54,51,50,44,51,57,46,49,51,50,55,54,49,93,44,91,45,56,53,46,52,52,48,48,53,52,44,51,57,46,49,57,53,54,49,55,93,44,91,45,56,53,46,50,57,54,53,52,44,51,57,46,50,54,56,50,57,49,93,44,91,45,56,53,46,50,57,55,53,55,53,44,51,57,46,52,53,51,50,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,117,98,111,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,52,49,56,44,34,98,101,100,115,34,58,49,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,55,50,51,54,57,44,51,56,46,53,49,52,55,93,44,91,45,56,55,46,48,55,51,48,54,55,44,51,56,46,50,51,50,53,57,54,93,44,91,45,56,55,46,48,49,55,52,57,44,51,56,46,50,48,51,53,56,93,44,91,45,56,54,46,55,57,49,52,57,55,44,51,56,46,50,48,53,49,51,93,44,91,45,56,54,46,54,55,57,53,49,49,44,51,56,46,50,54,51,48,56,54,93,44,91,45,56,54,46,54,56,49,52,50,52,44,51,56,46,51,57,52,55,54,55,93,44,91,45,56,54,46,54,56,50,51,53,57,44,51,56,46,53,50,54,51,55,56,93,44,91,45,56,54,46,57,50,52,49,56,54,44,51,56,46,53,48,53,51,53,56,93,44,91,45,56,55,46,48,55,50,51,54,57,44,51,56,46,53,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,69,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,51,54,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,48,55,48,49,49,53,44,51,55,46,57,54,52,55,55,93,44,91,45,55,55,46,48,51,53,53,49,50,44,51,55,46,56,54,53,56,49,56,93,44,91,45,55,54,46,55,53,49,48,55,50,44,51,55,46,55,50,56,54,48,53,93,44,91,45,55,54,46,54,54,56,49,56,50,44,51,55,46,55,55,56,51,56,54,93,44,91,45,55,54,46,57,48,48,52,57,44,51,55,46,57,56,50,49,52,50,93,44,91,45,55,54,46,57,51,54,57,53,57,44,51,56,46,48,55,55,48,55,52,93,44,91,45,55,55,46,48,54,49,54,57,53,44,51,56,46,49,54,49,54,51,49,93,44,91,45,55,55,46,49,49,53,57,57,55,44,51,56,46,49,52,57,57,51,49,93,44,91,45,55,55,46,49,55,48,49,44,51,56,46,48,55,57,53,52,51,93,44,91,45,55,55,46,48,55,48,49,49,53,44,51,55,46,57,54,52,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,55,57,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,55,53,54,50,44,51,51,46,56,56,53,50,52,53,93,44,91,45,55,57,46,57,57,53,54,51,56,44,51,51,46,55,54,55,57,48,54,93,44,91,45,55,57,46,57,55,52,51,56,50,44,51,51,46,55,50,49,53,57,93,44,91,45,56,48,46,49,48,49,54,57,55,44,51,51,46,52,57,54,56,57,49,93,44,91,45,55,57,46,57,55,49,57,54,51,44,51,51,46,53,48,48,57,51,55,93,44,91,45,55,57,46,54,55,55,48,49,52,44,51,51,46,51,48,52,57,52,52,93,44,91,45,55,57,46,53,57,48,49,49,44,51,51,46,52,52,51,53,52,93,44,91,45,55,57,46,52,51,53,55,51,51,44,51,51,46,53,55,50,55,48,50,93,44,91,45,55,57,46,52,48,57,51,51,50,44,51,51,46,54,56,56,56,57,93,44,91,45,55,57,46,51,49,55,48,52,49,44,51,51,46,55,55,57,56,55,56,93,44,91,45,55,57,46,51,50,52,51,49,55,44,51,51,46,55,57,57,49,50,51,93,44,91,45,55,57,46,52,57,54,52,56,54,44,51,51,46,55,55,53,51,53,55,93,44,91,45,55,57,46,55,57,56,51,55,44,51,51,46,56,51,53,53,54,50,93,44,91,45,55,57,46,56,55,53,54,50,44,51,51,46,56,56,53,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,69,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,55,53,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,51,56,54,51,54,44,52,52,46,53,52,54,56,52,52,93,44,91,45,55,51,46,52,57,55,53,54,55,44,52,52,46,52,56,54,50,51,93,44,91,45,55,51,46,57,48,57,54,56,55,44,52,52,46,52,50,57,54,57,57,93,44,91,45,55,52,46,49,52,49,52,50,52,44,52,52,46,52,48,55,50,54,56,93,44,91,45,55,52,46,48,57,51,52,57,44,52,52,46,49,51,55,54,49,53,93,44,91,45,55,52,46,50,56,49,56,55,44,52,52,46,49,50,48,53,53,50,93,44,91,45,55,52,46,50,53,53,57,57,56,44,52,51,46,57,54,57,55,57,55,93,44,91,45,55,52,46,51,51,54,56,50,54,44,52,51,46,57,50,53,50,50,51,93,44,91,45,55,52,46,50,49,51,55,51,52,44,52,51,46,56,49,48,56,55,53,93,44,91,45,55,52,46,48,53,55,48,48,53,44,52,51,46,55,52,52,53,49,51,93,44,91,45,55,51,46,52,51,56,49,50,44,52,51,46,56,48,51,54,56,55,93,44,91,45,55,51,46,51,55,57,50,56,49,44,52,51,46,56,48,56,52,56,49,93,44,91,45,55,51,46,52,51,55,57,48,53,44,52,52,46,48,52,53,49,50,53,93,44,91,45,55,51,46,51,57,48,54,50,53,44,52,52,46,49,57,49,48,54,56,93,44,91,45,55,51,46,51,49,51,50,56,51,44,52,52,46,50,54,52,49,51,93,44,91,45,55,51,46,50,57,54,48,53,50,44,52,52,46,52,50,56,51,51,52,93,44,91,45,55,51,46,51,51,56,54,51,54,44,52,52,46,53,52,54,56,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,87,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,57,55,51,53,51,44,52,51,46,52,57,57,54,50,50,93,44,91,45,57,51,46,52,57,55,54,51,53,44,52,51,46,50,53,53,52,54,56,93,44,91,45,57,51,46,48,50,52,49,52,51,44,52,51,46,50,53,53,53,51,56,93,44,91,45,57,51,46,48,50,52,51,52,53,44,52,51,46,52,57,57,55,51,51,93,44,91,45,57,51,46,48,52,57,49,57,50,44,52,51,46,52,57,57,55,48,53,93,44,91,45,57,51,46,52,57,55,51,53,51,44,52,51,46,52,57,57,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,117,103,104,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,52,49,51,54,56,44,51,53,46,50,57,48,49,50,50,93,44,91,45,57,54,46,52,57,48,52,51,52,44,51,53,46,49,49,53,56,53,55,93,44,91,45,57,54,46,52,57,48,55,56,54,44,51,52,46,57,49,48,53,56,53,93,44,91,45,57,54,46,52,49,51,55,56,49,44,51,52,46,57,49,53,54,49,57,93,44,91,45,57,54,46,52,48,54,52,56,51,44,51,52,46,55,54,55,51,50,56,93,44,91,45,57,54,46,48,57,50,48,48,49,44,51,52,46,55,54,55,52,55,57,93,44,91,45,57,54,46,48,56,56,55,57,50,44,51,53,46,48,52,57,56,55,53,93,44,91,45,57,53,46,57,56,51,48,55,55,44,51,53,46,49,53,49,54,57,53,93,44,91,45,57,53,46,57,56,49,53,49,49,44,51,53,46,50,56,57,55,56,93,44,91,45,57,54,46,52,52,49,51,54,56,44,51,53,46,50,57,48,49,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,66,117,99,104,97,110,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,51,56,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,49,52,49,57,53,44,51,55,46,50,57,54,48,55,53,93,44,91,45,56,50,46,49,52,57,51,55,53,44,51,55,46,48,52,49,54,52,49,93,44,91,45,56,49,46,57,48,48,56,57,50,44,51,55,46,49,52,50,53,53,51,93,44,91,45,56,49,46,55,52,48,49,50,52,44,51,55,46,50,51,55,55,53,50,93,44,91,45,56,49,46,56,53,51,53,53,51,44,51,55,46,50,56,55,55,48,54,93,44,91,45,56,49,46,57,57,54,53,55,56,44,51,55,46,52,55,54,55,48,53,93,44,91,45,56,49,46,57,50,55,54,56,49,44,51,55,46,53,49,50,49,49,51,93,44,91,45,56,49,46,57,54,56,48,49,50,44,51,55,46,53,51,56,48,51,53,93,44,91,45,56,50,46,51,49,52,49,57,53,44,51,55,46,50,57,54,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,104,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,56,54,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,53,54,48,53,54,44,51,55,46,57,53,49,57,53,57,93,44,91,45,56,48,46,49,54,50,50,48,50,44,51,55,46,56,55,53,49,50,50,93,44,91,45,56,48,46,50,57,54,49,51,56,44,51,55,46,54,57,49,55,56,51,93,44,91,45,56,48,46,50,50,48,57,56,52,44,51,55,46,54,50,55,55,54,55,93,44,91,45,56,48,46,49,52,52,51,57,52,44,51,55,46,53,57,54,54,50,55,93,44,91,45,56,48,46,48,50,48,53,53,52,44,51,55,46,54,52,55,52,52,50,93,44,91,45,55,57,46,56,49,54,54,56,53,44,51,55,46,56,48,48,57,54,52,93,44,91,45,55,57,46,54,55,52,49,54,50,44,51,55,46,55,54,51,48,57,51,93,44,91,45,55,57,46,54,52,55,53,56,57,44,51,55,46,56,55,52,53,51,56,93,44,91,45,55,57,46,56,56,55,51,50,57,44,51,55,46,56,57,50,57,55,49,93,44,91,45,55,57,46,57,51,53,51,54,52,44,51,55,46,57,53,52,51,54,53,93,44,91,45,56,48,46,48,53,54,48,53,54,44,51,55,46,57,53,49,57,53,57,93,93,44,91,91,45,56,48,46,48,48,56,57,57,52,44,51,55,46,55,54,50,53,56,55,93,44,91,45,55,57,46,57,57,50,48,53,53,44,51,55,46,55,57,57,56,49,93,44,91,45,55,57,46,57,54,55,48,55,49,44,51,55,46,56,48,51,52,48,53,93,44,91,45,55,57,46,57,55,56,50,49,52,44,51,55,46,55,54,52,57,55,53,93,44,91,45,56,48,46,48,48,56,57,57,52,44,51,55,46,55,54,50,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,76,111,119,110,100,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,52,51,55,44,34,98,101,100,115,34,58,51,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,52,56,57,49,54,44,51,51,46,55,52,52,57,55,55,93,44,91,45,56,56,46,53,49,51,57,49,55,44,51,51,46,54,53,48,50,48,57,93,44,91,45,56,56,46,52,57,50,53,48,52,44,51,51,46,53,52,51,49,53,52,93,44,91,45,56,56,46,54,55,49,50,53,44,51,51,46,53,48,54,49,54,56,93,44,91,45,56,56,46,54,54,57,48,55,54,44,51,51,46,50,56,54,57,50,50,93,44,91,45,56,56,46,51,48,52,52,51,52,44,51,51,46,50,56,56,51,50,93,44,91,45,56,56,46,50,55,52,54,49,57,44,51,51,46,53,51,52,48,48,56,93,44,91,45,56,56,46,50,52,56,57,49,54,44,51,51,46,55,52,52,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,55,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,56,51,56,51,57,44,51,56,46,56,49,53,52,48,54,93,44,91,45,56,53,46,55,57,53,51,53,55,44,51,56,46,56,48,55,53,48,56,93,44,91,45,56,53,46,56,56,56,51,51,52,44,51,56,46,55,51,52,52,52,51,93,44,91,45,56,53,46,56,52,55,56,57,51,44,51,56,46,53,54,49,50,54,57,93,44,91,45,56,53,46,55,57,51,53,56,52,44,51,56,46,54,48,52,56,49,52,93,44,91,45,56,53,46,53,54,57,57,56,44,51,56,46,54,48,54,49,53,53,93,44,91,45,56,53,46,53,55,48,57,51,44,51,56,46,54,55,56,55,48,54,93,44,91,45,56,53,46,54,56,51,51,51,56,44,51,56,46,55,51,54,55,51,49,93,44,91,45,56,53,46,54,56,51,56,51,57,44,51,56,46,56,49,53,52,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,80,114,111,119,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,53,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,52,52,55,53,44,51,56,46,50,54,56,55,52,57,93,44,91,45,49,48,50,46,55,52,50,51,51,44,51,56,46,50,54,54,57,55,49,93,44,91,45,49,48,50,46,55,52,55,54,49,53,44,51,55,46,54,52,51,54,52,50,93,44,91,45,49,48,50,46,48,52,49,53,56,53,44,51,55,46,54,52,52,50,56,50,93,44,91,45,49,48,50,46,48,52,50,49,53,53,44,51,55,46,55,51,56,53,52,49,93,44,91,45,49,48,50,46,48,52,52,52,54,52,44,51,56,46,50,54,50,52,49,50,93,44,91,45,49,48,50,46,48,52,52,52,55,53,44,51,56,46,50,54,56,55,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,51,53,34,44,34,78,65,77,69,34,58,34,83,117,116,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,54,53,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,54,50,51,52,44,51,48,46,55,49,48,51,54,54,93,44,91,45,49,48,48,46,57,54,48,53,56,55,44,51,48,46,55,48,54,48,55,49,93,44,91,45,49,48,48,46,57,54,48,54,52,51,44,51,48,46,50,56,55,55,55,54,93,44,91,45,49,48,48,46,55,48,48,51,57,51,44,51,48,46,50,56,56,50,55,54,93,44,91,45,49,48,48,46,49,49,54,52,54,49,44,51,48,46,50,57,48,50,57,54,93,44,91,45,49,48,48,46,49,49,54,50,51,52,44,51,48,46,55,49,48,51,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,83,97,98,97,110,97,32,71,114,97,110,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,57,55,55,56,53,53,44,49,56,46,49,52,51,55,57,57,93,44,91,45,54,54,46,57,56,51,51,51,55,44,49,56,46,48,53,50,53,49,56,93,44,91,45,54,54,46,57,53,56,55,52,56,44,49,56,46,48,51,50,52,55,55,93,44,91,45,54,54,46,56,56,52,54,53,51,44,49,56,46,48,50,52,56,49,54,93,44,91,45,54,54,46,57,50,54,53,49,55,44,49,56,46,49,53,49,50,54,55,93,44,91,45,54,54,46,57,55,55,56,53,53,44,49,56,46,49,52,51,55,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,117,115,107,111,103,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,48,56,52,44,34,98,101,100,115,34,58,51,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,49,50,57,53,51,44,51,53,46,53,53,49,55,51,56,93,44,91,45,57,53,46,51,52,52,55,57,57,44,51,53,46,53,53,49,55,53,49,93,44,91,45,57,53,46,51,52,52,55,54,54,44,51,53,46,50,57,51,48,51,53,93,44,91,45,57,53,46,49,55,49,55,54,51,44,51,53,46,51,48,53,53,53,51,93,44,91,45,57,53,46,48,52,57,57,51,51,44,51,53,46,52,53,56,56,57,52,93,44,91,45,57,53,46,49,51,50,50,55,49,44,51,53,46,53,50,54,48,53,53,93,44,91,45,57,53,46,49,50,55,50,49,51,44,51,53,46,54,51,56,56,56,56,93,44,91,45,57,53,46,49,50,55,49,54,51,44,51,53,46,56,49,50,55,53,53,93,44,91,45,57,53,46,50,54,53,54,55,57,44,51,53,46,56,49,51,50,54,54,93,44,91,45,57,53,46,54,51,57,55,55,57,44,51,53,46,55,57,49,56,48,55,93,44,91,45,57,53,46,55,54,54,49,49,52,44,51,53,46,56,53,54,50,56,52,93,44,91,45,57,53,46,55,49,51,48,56,49,44,51,53,46,55,50,53,56,48,55,93,44,91,45,57,53,46,55,49,50,57,53,51,44,51,53,46,53,53,49,55,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,104,114,105,115,116,105,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,50,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,49,48,49,50,54,44,51,54,46,57,57,53,56,49,93,44,91,45,57,51,46,51,51,55,52,53,49,44,51,54,46,57,57,50,52,57,52,93,44,91,45,57,51,46,51,48,52,51,53,57,44,51,54,46,56,49,54,56,54,54,93,44,91,45,57,50,46,57,48,57,51,51,54,44,51,54,46,56,48,57,49,55,56,93,44,91,45,57,50,46,57,48,51,50,55,51,44,51,55,46,48,55,48,54,53,49,93,44,91,45,57,51,46,48,54,53,50,55,52,44,51,55,46,48,56,56,54,57,52,93,44,91,45,57,51,46,54,48,56,56,57,57,44,51,55,46,48,57,56,49,53,51,93,44,91,45,57,51,46,54,49,48,49,50,54,44,51,54,46,57,57,53,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,105,97,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,51,51,54,50,51,44,49,56,46,51,53,49,51,51,51,93,44,91,45,54,54,46,53,57,48,55,56,53,44,49,56,46,51,51,56,48,54,93,44,91,45,54,54,46,54,48,54,57,56,57,44,49,56,46,51,50,56,49,56,54,93,44,91,45,54,54,46,53,54,54,54,50,44,49,56,46,50,57,56,53,52,57,93,44,91,45,54,54,46,53,52,51,49,51,51,44,49,56,46,49,54,51,48,57,56,93,44,91,45,54,54,46,52,53,53,55,48,51,44,49,56,46,50,53,55,55,50,54,93,44,91,45,54,54,46,52,54,51,50,49,49,44,49,56,46,51,55,49,52,55,51,93,44,91,45,54,54,46,53,51,51,54,50,51,44,49,56,46,51,53,49,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,97,109,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,50,50,51,44,34,98,101,100,115,34,58,50,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,53,52,50,49,50,44,51,49,46,52,51,51,56,48,53,93,44,91,45,56,57,46,54,53,52,48,51,56,44,51,49,46,48,48,50,53,48,50,93,44,91,45,56,57,46,52,55,54,48,50,50,44,51,48,46,57,56,50,57,48,49,93,44,91,45,56,57,46,51,52,56,57,53,44,51,49,46,48,49,48,51,55,93,44,91,45,56,57,46,51,52,55,56,54,51,44,51,49,46,51,52,54,55,93,44,91,45,56,57,46,52,53,49,48,55,51,44,51,49,46,51,52,54,51,56,51,93,44,91,45,56,57,46,52,53,49,54,49,54,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,53,56,54,56,49,57,44,51,49,46,52,51,51,54,56,56,93,44,91,45,56,57,46,54,53,52,50,49,50,44,51,49,46,52,51,51,56,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,82,105,112,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,52,48,48,53,52,44,51,57,46,49,57,53,54,49,55,93,44,91,45,56,53,46,52,52,52,56,57,55,44,51,56,46,57,49,50,57,57,56,93,44,91,45,56,53,46,50,48,51,49,54,54,44,51,56,46,57,49,51,56,48,51,93,44,91,45,56,53,46,49,51,53,56,51,50,44,51,56,46,57,50,57,53,55,56,93,44,91,45,56,53,46,49,51,50,53,48,56,44,51,56,46,57,52,56,48,53,53,93,44,91,45,56,53,46,48,54,53,53,55,52,44,51,57,46,51,48,55,50,51,50,93,44,91,45,56,53,46,50,57,54,53,52,44,51,57,46,50,54,56,50,57,49,93,44,91,45,56,53,46,52,52,48,48,53,52,44,51,57,46,49,57,53,54,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,55,48,44,34,98,101,100,115,34,58,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,53,55,48,51,49,44,52,55,46,50,54,52,56,57,53,93,44,91,45,49,48,49,46,51,52,53,55,51,53,44,52,55,46,50,57,49,56,57,55,93,44,91,45,49,48,49,46,52,52,48,49,51,57,44,52,55,46,52,55,55,50,57,57,93,44,91,45,49,48,49,46,52,51,54,53,50,49,44,52,55,46,53,54,52,49,53,55,93,44,91,45,49,48,49,46,56,57,50,48,49,55,44,52,55,46,53,48,53,49,51,51,93,44,91,45,49,48,50,46,48,51,54,54,52,56,44,52,55,46,53,55,50,55,48,53,93,44,91,45,49,48,50,46,50,48,53,51,53,44,52,55,46,53,55,52,53,48,54,93,44,91,45,49,48,50,46,50,48,53,53,53,54,44,52,55,46,51,50,56,48,55,49,93,44,91,45,49,48,50,46,49,52,52,52,53,51,44,52,55,46,51,50,56,48,55,57,93,44,91,45,49,48,50,46,49,52,52,55,55,49,44,52,55,46,48,49,48,51,48,55,93,44,91,45,49,48,50,46,48,57,53,57,48,52,44,52,54,46,57,56,49,51,50,57,93,44,91,45,49,48,49,46,55,54,52,51,57,50,44,52,54,46,57,56,49,51,48,54,93,44,91,45,49,48,49,46,55,54,52,54,52,55,44,52,55,46,50,52,49,53,49,56,93,44,91,45,49,48,49,46,50,53,55,54,51,51,44,52,55,46,50,52,49,51,52,51,93,44,91,45,49,48,49,46,50,53,55,48,51,49,44,52,55,46,50,54,52,56,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,72,97,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,48,53,49,54,51,56,44,51,52,46,52,57,51,55,48,50,93,44,91,45,56,51,46,49,49,51,51,54,44,51,52,46,50,55,51,53,51,93,44,91,45,56,51,46,48,55,56,48,48,52,44,51,52,46,50,50,51,54,48,54,93,44,91,45,56,50,46,57,56,48,57,48,53,44,51,52,46,50,49,49,53,48,53,93,44,91,45,56,50,46,55,55,51,52,49,44,51,52,46,50,56,56,56,54,52,93,44,91,45,56,50,46,56,54,52,52,44,51,52,46,52,53,57,55,56,53,93,44,91,45,56,50,46,57,57,50,50,51,50,44,51,52,46,52,55,57,50,53,56,93,44,91,45,56,51,46,48,53,49,54,51,56,44,51,52,46,52,57,51,55,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,50,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,55,55,49,57,55,44,51,50,46,52,53,51,52,53,53,93,44,91,45,57,50,46,55,55,52,57,51,54,44,51,50,46,50,51,55,48,53,53,93,44,91,45,57,50,46,56,49,52,55,51,55,44,51,50,46,49,52,54,57,48,55,93,44,91,45,57,50,46,51,49,50,50,49,56,44,51,50,46,49,52,54,49,50,51,93,44,91,45,57,50,46,51,49,49,56,53,49,44,51,50,46,50,55,55,52,52,49,93,44,91,45,57,50,46,52,49,53,52,49,56,44,51,50,46,52,48,55,56,49,50,93,44,91,45,57,50,46,52,49,53,51,53,44,51,50,46,52,57,53,52,56,54,93,44,91,45,57,50,46,54,50,50,51,51,53,44,51,50,46,52,57,54,52,48,54,93,44,91,45,57,50,46,55,55,55,49,57,55,44,51,50,46,52,53,51,52,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,51,52,50,51,44,51,55,46,57,54,54,54,51,93,44,91,45,55,54,46,53,48,55,56,50,56,44,51,55,46,56,51,56,56,49,52,93,44,91,45,55,54,46,52,50,48,48,55,49,44,51,55,46,56,50,51,55,54,54,93,44,91,45,55,54,46,51,48,56,51,54,55,44,51,55,46,54,54,57,55,55,51,93,44,91,45,55,54,46,49,55,53,54,56,55,44,51,55,46,54,55,49,54,50,54,93,44,91,45,55,54,46,50,51,54,52,53,56,44,51,55,46,56,56,54,54,48,53,93,44,91,45,55,54,46,50,51,54,49,52,49,44,51,55,46,56,56,56,52,54,56,93,44,91,45,55,54,46,53,49,54,51,54,57,44,51,56,46,48,51,52,55,50,52,93,44,91,45,55,54,46,54,51,52,50,51,44,51,55,46,57,54,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,70,111,114,116,32,66,101,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,57,51,52,50,44,34,98,101,100,115,34,58,49,49,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,51,50,55,49,49,44,50,57,46,55,50,55,57,52,52,93,44,91,45,57,54,46,48,56,56,57,49,50,44,50,57,46,54,48,49,54,53,56,93,44,91,45,57,54,46,48,54,48,54,55,54,44,50,57,46,52,55,54,52,55,51,93,44,91,45,57,53,46,57,53,48,54,52,51,44,50,57,46,51,51,54,53,55,55,93,44,91,45,57,53,46,56,52,55,54,53,54,44,50,57,46,50,54,50,53,57,93,44,91,45,57,53,46,55,53,50,56,54,54,44,50,57,46,51,50,52,53,48,51,93,44,91,45,57,53,46,53,57,48,55,57,51,44,50,57,46,51,50,55,52,56,53,93,44,91,45,57,53,46,53,52,57,57,57,52,44,50,57,46,52,51,56,52,51,57,93,44,91,45,57,53,46,52,54,50,53,48,51,44,50,57,46,52,51,57,50,52,93,44,91,45,57,53,46,52,50,52,49,49,56,44,50,57,46,53,56,48,50,51,51,93,44,91,45,57,53,46,56,50,54,50,50,44,50,57,46,55,56,56,50,56,93,44,91,45,57,54,46,48,51,50,55,49,49,44,50,57,46,55,50,55,57,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,32,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,55,53,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,54,56,54,49,50,44,52,51,46,57,56,50,56,51,52,93,44,91,45,56,57,46,49,54,56,49,50,49,44,52,51,46,56,55,54,52,55,93,44,91,45,56,57,46,50,52,53,51,55,53,44,52,51,46,55,53,57,56,49,51,93,44,91,45,56,57,46,50,52,53,52,51,55,44,52,51,46,54,52,51,48,56,51,93,44,91,45,56,57,46,48,48,54,56,52,56,44,52,51,46,54,51,51,48,52,53,93,44,91,45,56,56,46,56,56,54,48,53,50,44,52,51,46,54,51,51,53,52,93,44,91,45,56,56,46,56,56,53,54,57,55,44,52,51,46,56,57,53,49,56,52,93,44,91,45,56,56,46,56,56,54,49,57,51,44,52,51,46,57,56,51,50,51,51,93,44,91,45,56,57,46,49,54,56,54,49,50,44,52,51,46,57,56,50,56,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,80,111,110,100,101,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,52,52,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,49,56,52,55,56,52,44,52,56,46,52,55,55,53,55,56,93,44,91,45,49,49,50,46,53,55,54,57,56,50,44,52,56,46,52,56,51,51,52,56,93,44,91,45,49,49,50,46,53,56,48,52,56,52,44,52,56,46,51,48,57,57,51,50,93,44,91,45,49,49,51,46,51,52,57,48,52,54,44,52,56,46,51,49,48,50,54,51,93,44,91,45,49,49,51,46,50,51,48,55,50,51,44,52,56,46,49,56,50,48,48,50,93,44,91,45,49,49,51,46,48,49,52,56,49,49,44,52,56,46,49,51,49,48,51,93,44,91,45,49,49,50,46,49,55,55,56,51,51,44,52,56,46,49,51,48,55,49,50,93,44,91,45,49,49,50,46,48,52,55,57,57,57,44,52,56,46,48,56,54,54,49,50,93,44,91,45,49,49,49,46,57,56,52,50,54,51,44,52,55,46,57,56,52,53,57,50,93,44,91,45,49,49,49,46,52,48,56,53,49,52,44,52,55,46,57,56,55,49,55,56,93,44,91,45,49,49,49,46,52,48,57,48,57,55,44,52,56,46,49,51,50,50,49,56,93,44,91,45,49,49,49,46,52,48,57,48,49,56,44,52,56,46,50,49,57,53,52,50,93,44,91,45,49,49,49,46,54,54,53,53,57,57,44,52,56,46,50,49,57,53,52,57,93,44,91,45,49,49,49,46,54,54,53,55,53,54,44,52,56,46,51,52,57,52,53,54,93,44,91,45,49,49,49,46,55,57,53,57,49,44,52,56,46,51,57,51,48,56,49,93,44,91,45,49,49,49,46,57,57,48,56,56,57,44,52,56,46,51,57,52,50,54,53,93,44,91,45,49,49,50,46,48,48,52,52,51,54,44,52,56,46,52,52,56,56,56,54,93,44,91,45,49,49,50,46,49,56,52,55,56,52,44,52,56,46,52,55,55,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,87,97,108,119,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,48,49,51,44,34,98,101,100,115,34,58,49,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,52,49,53,51,53,44,52,50,46,56,52,50,57,57,54,93,44,91,45,56,56,46,55,55,55,48,55,54,44,52,50,46,56,52,50,54,57,52,93,44,91,45,56,56,46,55,55,54,52,57,51,44,52,50,46,52,57,49,57,49,50,93,44,91,45,56,56,46,55,48,55,52,50,49,44,52,50,46,52,57,51,53,57,54,93,44,91,45,56,56,46,51,48,52,54,57,50,44,52,50,46,52,57,52,54,49,56,93,44,91,45,56,56,46,51,48,53,56,57,49,44,52,50,46,54,49,48,56,49,55,93,44,91,45,56,56,46,51,48,54,51,56,52,44,52,50,46,56,52,50,48,57,53,93,44,91,45,56,56,46,53,52,49,53,51,53,44,52,50,46,56,52,50,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,77,105,110,101,114,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,52,56,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,55,53,51,56,51,53,44,51,57,46,48,55,52,54,51,93,44,91,45,49,49,56,46,57,50,57,55,51,55,44,51,57,46,48,55,51,54,57,56,93,44,91,45,49,49,57,46,48,49,52,56,51,55,44,51,56,46,57,52,51,51,50,51,93,44,91,45,49,49,57,46,48,49,52,53,50,56,44,51,56,46,56,53,49,51,93,44,91,45,49,49,56,46,57,48,50,49,50,52,44,51,56,46,56,53,50,49,53,56,93,44,91,45,49,49,56,46,57,48,54,56,54,49,44,51,56,46,52,49,52,54,55,55,93,44,91,45,49,49,57,46,49,53,54,57,55,56,44,51,56,46,52,49,52,55,52,54,93,44,91,45,49,49,56,46,52,50,56,49,52,52,44,51,55,46,56,57,54,50,50,93,44,91,45,49,49,56,46,51,53,49,52,56,52,44,51,55,46,56,57,51,55,48,53,93,44,91,45,49,49,55,46,54,57,49,48,50,49,44,51,56,46,52,55,51,55,57,55,93,44,91,45,49,49,56,46,49,57,54,50,51,53,44,51,56,46,57,49,57,48,53,56,93,44,91,45,49,49,56,46,49,57,54,50,55,52,44,51,56,46,57,57,57,57,50,54,93,44,91,45,49,49,55,46,56,54,53,49,49,54,44,51,57,46,48,55,51,54,53,52,93,44,91,45,49,49,56,46,55,53,51,56,51,53,44,51,57,46,48,55,52,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,52,49,56,44,34,98,101,100,115,34,58,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,52,53,54,50,55,44,52,48,46,54,50,55,54,51,56,93,44,91,45,57,48,46,52,53,48,50,50,55,44,52,48,46,50,55,54,51,51,53,93,44,91,45,57,48,46,52,53,49,57,49,54,44,52,48,46,49,56,56,56,48,51,93,44,91,45,57,48,46,49,57,57,54,51,53,44,52,48,46,49,56,51,56,49,50,93,44,91,45,57,48,46,49,49,56,57,54,54,44,52,48,46,50,51,53,50,54,51,93,44,91,45,57,48,46,48,51,51,48,50,54,44,52,48,46,51,55,55,56,48,54,93,44,91,45,56,57,46,57,50,52,54,56,44,52,48,46,52,51,53,57,50,49,93,44,91,45,56,57,46,56,55,50,52,54,51,44,52,48,46,53,49,51,49,50,55,93,44,91,45,56,57,46,56,55,51,54,56,44,52,48,46,54,50,52,57,55,53,93,44,91,45,56,57,46,57,56,54,48,54,52,44,52,48,46,55,49,50,51,54,49,93,44,91,45,57,48,46,52,52,52,51,51,57,44,52,48,46,55,49,52,56,54,56,93,44,91,45,57,48,46,52,52,53,54,50,55,44,52,48,46,54,50,55,54,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,83,117,102,102,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,55,57,48,49,44,34,98,101,100,115,34,58,51,57,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,53,50,55,57,48,49,44,52,49,46,49,55,55,55,55,52,93,44,91,45,55,50,46,57,57,57,53,52,55,44,52,49,46,48,56,55,49,48,56,93,44,91,45,55,51,46,52,51,49,57,49,57,44,52,48,46,57,56,57,48,48,57,93,44,91,45,55,51,46,52,57,55,52,48,53,44,52,48,46,57,50,51,55,54,54,93,44,91,45,55,51,46,52,50,51,50,54,57,44,52,48,46,54,55,48,56,57,51,93,44,91,45,55,51,46,52,50,53,51,49,44,52,48,46,53,51,52,50,54,53,93,44,91,45,55,51,46,50,55,52,48,50,53,44,52,48,46,53,53,49,51,49,52,93,44,91,45,55,50,46,51,55,52,53,50,57,44,52,48,46,56,49,56,53,57,53,93,44,91,45,55,49,46,56,51,55,48,56,56,44,52,49,46,48,49,48,56,57,50,93,44,91,45,55,49,46,55,55,55,52,57,49,44,52,49,46,48,54,55,50,57,50,93,44,91,45,55,49,46,55,57,48,57,55,50,44,52,49,46,49,56,52,49,48,49,93,44,91,45,55,49,46,57,48,55,50,53,56,44,52,49,46,51,48,52,52,56,51,93,44,91,45,55,50,46,51,51,49,52,53,51,44,52,49,46,50,49,53,48,48,52,93,44,91,45,55,50,46,53,50,55,57,48,49,44,52,49,46,49,55,55,55,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,53,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,51,52,53,55,53,44,51,57,46,55,49,52,55,54,52,93,44,91,45,56,53,46,48,51,54,48,56,55,44,51,57,46,53,50,54,50,49,51,93,44,91,45,56,52,46,56,49,53,51,53,51,44,51,57,46,53,50,49,57,53,93,44,91,45,56,52,46,56,49,52,57,51,52,44,51,57,46,53,54,55,55,49,52,93,44,91,45,56,52,46,56,49,52,51,55,51,44,51,57,46,55,50,54,54,50,93,44,91,45,56,53,46,48,51,52,53,55,53,44,51,57,46,55,49,52,55,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,99,68,111,110,97,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,56,51,48,55,44,51,54,46,55,54,54,53,54,93,44,91,45,57,52,46,54,49,56,48,55,55,44,51,54,46,54,54,55,57,50,49,93,44,91,45,57,52,46,54,49,55,57,49,57,44,51,54,46,52,57,57,52,49,52,93,44,91,45,57,52,46,48,55,55,48,56,57,44,51,54,46,52,57,56,55,51,93,44,91,45,57,52,46,48,54,56,56,57,56,44,51,54,46,55,52,55,56,49,56,93,44,91,45,57,52,46,54,49,56,51,48,55,44,51,54,46,55,54,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,115,32,66,108,117,102,102,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,50,53,53,44,34,98,101,100,115,34,58,49,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,50,54,52,53,44,52,50,46,48,48,49,55,49,56,93,44,91,45,49,48,52,46,48,53,50,54,56,56,44,52,49,46,54,57,55,57,53,52,93,44,91,45,49,48,51,46,51,55,48,51,57,49,44,52,49,46,54,57,57,50,49,93,44,91,45,49,48,51,46,51,54,51,51,51,55,44,52,50,46,48,48,50,57,51,93,44,91,45,49,48,51,46,52,48,49,54,51,57,44,52,50,46,48,48,51,53,52,93,44,91,45,49,48,52,46,48,53,50,54,52,53,44,52,50,46,48,48,49,55,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,83,97,110,32,77,105,103,117,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,48,51,52,44,34,98,101,100,115,34,58,50,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,55,50,48,53,50,57,44,51,53,46,56,55,49,49,56,53,93,44,91,45,49,48,53,46,55,49,52,52,49,57,44,51,53,46,48,52,49,54,48,53,93,44,91,45,49,48,53,46,50,57,48,55,57,49,44,51,53,46,48,52,50,48,51,93,44,91,45,49,48,53,46,50,57,49,49,54,57,44,51,53,46,50,49,54,52,56,57,93,44,91,45,49,48,52,46,49,50,53,49,51,54,44,51,53,46,50,49,53,54,57,54,93,44,91,45,49,48,52,46,49,50,53,49,50,49,44,51,53,46,49,52,50,48,53,56,93,44,91,45,49,48,51,46,56,53,55,53,51,44,51,53,46,50,52,50,52,48,53,93,44,91,45,49,48,51,46,54,51,55,49,51,44,51,53,46,50,52,48,56,49,57,93,44,91,45,49,48,51,46,54,51,55,48,53,51,44,51,53,46,51,56,57,54,54,50,93,44,91,45,49,48,51,46,55,50,51,54,48,57,44,51,53,46,52,50,50,55,56,53,93,44,91,45,49,48,51,46,57,55,54,57,48,49,44,51,53,46,56,48,49,55,52,55,93,44,91,45,49,48,52,46,48,50,49,55,48,50,44,51,53,46,55,56,49,52,57,52,93,44,91,45,49,48,52,46,51,55,48,49,50,44,51,53,46,55,55,57,51,48,50,93,44,91,45,49,48,53,46,48,48,54,52,49,55,44,51,53,46,55,55,49,50,53,54,93,44,91,45,49,48,53,46,51,52,55,56,51,44,51,53,46,56,55,48,54,57,53,93,44,91,45,49,48,53,46,55,50,48,53,50,57,44,51,53,46,56,55,49,49,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,50,56,55,44,34,98,101,100,115,34,58,53,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,51,53,48,51,56,44,51,50,46,55,52,54,53,51,93,44,91,45,56,53,46,53,57,51,49,53,49,44,51,50,46,55,50,56,53,51,93,44,91,45,56,53,46,54,57,54,55,53,53,44,51,50,46,54,57,55,52,50,57,93,44,91,45,56,53,46,54,57,53,56,53,52,44,51,50,46,53,57,53,57,51,51,93,44,91,45,56,53,46,52,56,57,51,52,56,44,51,50,46,52,57,54,57,51,55,93,44,91,45,56,53,46,52,51,52,48,52,53,44,51,50,46,52,48,57,56,52,93,44,91,45,56,53,46,51,51,51,56,52,51,44,51,50,46,52,54,56,54,51,57,93,44,91,45,56,53,46,48,53,57,50,57,52,44,51,50,46,52,55,50,57,48,57,93,44,91,45,56,53,46,48,48,49,48,50,44,51,50,46,53,49,48,49,53,55,93,44,91,45,56,53,46,48,56,48,55,56,52,44,51,50,46,54,48,56,48,55,50,93,44,91,45,56,53,46,49,51,53,48,51,56,44,51,50,46,55,52,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,54,55,34,44,34,78,65,77,69,34,58,34,80,97,114,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,56,48,50,44,34,98,101,100,115,34,58,49,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,53,54,48,57,52,44,51,51,46,48,48,51,51,51,50,93,44,91,45,57,56,46,48,54,54,56,51,54,44,51,50,46,53,53,56,56,50,50,93,44,91,45,57,55,46,54,49,55,48,54,54,44,51,50,46,53,53,53,52,56,52,93,44,91,45,57,55,46,53,53,48,53,56,50,44,51,50,46,53,53,53,51,57,49,93,44,91,45,57,55,46,53,52,52,49,56,49,44,51,50,46,57,57,52,49,55,55,93,44,91,45,57,55,46,57,50,49,54,52,50,44,51,51,46,48,48,49,50,56,52,93,44,91,45,57,56,46,48,53,54,48,57,52,44,51,51,46,48,48,51,51,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,68,105,99,107,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,55,48,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,51,52,53,53,54,44,52,54,46,50,56,50,54,53,55,93,44,91,45,57,57,46,48,48,51,49,49,56,44,52,54,46,50,56,50,56,57,56,93,44,91,45,57,57,46,48,48,53,55,53,56,44,52,53,46,57,51,57,55,51,49,93,44,91,45,57,56,46,55,50,52,51,55,53,44,52,53,46,57,51,56,55,51,49,93,44,91,45,57,56,46,48,48,56,49,48,50,44,52,53,46,57,51,53,56,57,54,93,44,91,45,57,56,46,48,48,54,55,49,53,44,52,54,46,50,56,50,54,50,54,93,44,91,45,57,56,46,48,51,52,53,53,54,44,52,54,46,50,56,50,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,97,114,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,51,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,54,55,48,54,54,44,52,55,46,50,52,48,52,48,52,93,44,91,45,57,56,46,52,51,57,55,51,52,44,52,54,46,57,55,57,54,51,49,93,44,91,45,57,56,46,52,51,57,48,53,54,44,52,54,46,54,51,49,49,50,93,44,91,45,57,56,46,48,51,51,56,54,50,44,52,54,46,54,51,48,55,50,55,93,44,91,45,57,55,46,54,56,50,48,48,54,44,52,54,46,54,50,57,57,50,56,93,44,91,45,57,55,46,54,56,49,53,48,56,44,52,54,46,57,55,56,52,56,49,93,44,91,45,57,55,46,55,48,53,57,51,53,44,52,55,46,50,51,57,57,55,55,93,44,91,45,57,55,46,57,54,49,50,49,49,44,52,55,46,50,52,48,51,50,53,93,44,91,45,57,56,46,52,54,55,48,54,54,44,52,55,46,50,52,48,52,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,83,105,98,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,49,50,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,49,48,52,57,52,44,52,52,46,55,49,55,52,54,52,93,44,91,45,57,52,46,50,53,52,48,55,54,44,52,52,46,55,49,55,56,53,53,93,44,91,45,57,52,46,50,53,52,55,49,57,44,52,52,46,54,51,48,51,49,49,93,44,91,45,57,52,46,52,57,55,56,51,53,44,52,52,46,54,50,57,57,50,49,93,44,91,45,57,52,46,52,57,56,48,55,52,44,52,52,46,55,49,55,49,55,49,93,44,91,45,57,52,46,54,50,57,52,56,57,44,52,52,46,55,49,54,54,54,51,93,44,91,45,57,52,46,54,50,52,50,44,52,52,46,52,53,54,48,51,93,44,91,45,57,51,46,57,50,57,53,53,44,52,52,46,52,53,54,55,49,54,93,44,91,45,57,51,46,57,49,48,52,48,53,44,52,52,46,53,52,51,49,54,51,93,44,91,45,57,51,46,55,54,56,48,51,57,44,52,52,46,54,52,48,51,48,51,93,44,91,45,57,52,46,48,49,48,52,57,52,44,52,52,46,55,49,55,52,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,51,34,44,34,78,65,77,69,34,58,34,85,112,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,49,54,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,57,56,54,54,53,44,51,50,46,57,57,57,54,55,49,93,44,91,45,56,52,46,53,50,55,48,50,44,51,50,46,57,55,48,53,52,56,93,44,91,45,56,52,46,53,48,54,56,56,56,44,51,50,46,56,56,49,55,56,56,93,44,91,45,56,52,46,50,56,54,50,52,54,44,51,50,46,55,52,55,54,50,54,93,44,91,45,56,52,46,50,48,50,54,50,56,44,51,50,46,54,57,48,48,49,56,93,44,91,45,56,52,46,49,50,52,50,55,53,44,51,50,46,56,52,57,53,54,50,93,44,91,45,56,52,46,49,50,51,51,52,44,51,50,46,57,51,50,49,56,52,93,44,91,45,56,52,46,50,55,48,49,52,44,51,50,46,57,57,49,48,49,49,93,44,91,45,56,52,46,50,57,56,54,54,53,44,51,50,46,57,57,57,54,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,83,111,110,111,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,49,51,49,55,44,34,98,101,100,115,34,58,56,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,49,51,52,53,50,51,44,51,56,46,50,57,54,50,54,51,93,44,91,45,49,50,50,46,57,48,49,55,50,54,44,51,56,46,51,49,54,57,52,51,93,44,91,45,49,50,50,46,55,51,57,57,44,51,56,46,50,48,55,48,49,56,93,44,91,45,49,50,50,46,53,55,56,50,48,49,44,51,56,46,49,56,51,53,56,51,93,44,91,45,49,50,50,46,53,48,50,56,50,44,51,56,46,49,49,51,48,48,50,93,44,91,45,49,50,50,46,51,52,55,52,53,52,44,51,56,46,48,55,51,50,54,93,44,91,45,49,50,50,46,52,48,54,55,56,54,44,51,56,46,49,53,53,54,51,50,93,44,91,45,49,50,50,46,51,53,57,57,50,52,44,51,56,46,50,51,48,53,48,49,93,44,91,45,49,50,50,46,53,52,51,56,57,51,44,51,56,46,53,49,57,57,54,54,93,44,91,45,49,50,50,46,54,52,54,50,54,56,44,51,56,46,53,57,57,49,50,93,44,91,45,49,50,50,46,54,50,55,51,57,54,44,51,56,46,54,54,55,53,48,54,93,44,91,45,49,50,50,46,56,50,49,53,57,50,44,51,56,46,56,53,48,49,52,93,44,91,45,49,50,51,46,48,56,48,57,57,55,44,51,56,46,56,53,50,52,51,56,93,44,91,45,49,50,51,46,49,51,54,50,53,51,44,51,56,46,56,48,57,49,51,54,93,44,91,45,49,50,51,46,51,54,56,51,57,52,44,51,56,46,56,48,54,54,52,93,44,91,45,49,50,51,46,54,51,50,52,57,55,44,51,56,46,55,53,56,49,49,57,93,44,91,45,49,50,51,46,53,49,48,53,56,44,51,56,46,54,56,48,56,57,93,44,91,45,49,50,51,46,51,54,48,57,50,57,44,51,56,46,53,49,48,50,48,50,93,44,91,45,49,50,51,46,50,50,48,50,50,44,51,56,46,52,52,49,57,53,52,93,44,91,45,49,50,51,46,49,51,52,53,50,51,44,51,56,46,50,57,54,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,104,105,112,112,101,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,51,52,44,34,98,101,100,115,34,58,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,51,54,56,54,55,44,52,53,46,55,55,51,57,52,52,93,44,91,45,56,51,46,52,51,51,53,53,56,44,52,53,46,57,57,56,56,57,53,93,44,91,45,56,51,46,53,55,49,52,54,55,44,52,54,46,49,48,53,57,57,56,93,44,91,45,56,51,46,56,50,54,50,52,51,44,52,54,46,49,49,57,50,56,56,93,44,91,45,56,51,46,57,53,53,52,50,52,44,52,54,46,48,53,55,49,56,56,93,44,91,45,56,52,46,49,48,56,48,56,57,44,52,54,46,50,52,49,50,51,56,93,44,91,45,56,52,46,49,52,54,49,55,50,44,52,54,46,52,49,56,53,50,93,44,91,45,56,52,46,49,49,49,50,50,53,44,52,54,46,53,48,52,49,49,57,93,44,91,45,56,52,46,52,50,48,50,55,52,44,52,54,46,53,48,49,48,55,55,93,44,91,45,56,52,46,53,53,54,57,55,54,44,52,54,46,52,54,48,54,53,93,44,91,45,56,52,46,55,54,50,57,53,55,44,52,54,46,54,51,52,51,50,52,93,44,91,45,56,52,46,56,53,57,51,51,53,44,52,54,46,56,56,56,56,52,51,93,44,91,45,56,53,46,50,51,52,51,51,44,52,55,46,48,52,55,54,49,93,44,91,45,56,53,46,50,51,55,56,51,57,44,52,54,46,50,52,53,52,51,93,44,91,45,56,53,46,49,49,50,53,49,51,44,52,54,46,49,53,56,50,54,51,93,44,91,45,56,52,46,51,54,51,53,48,51,44,52,54,46,49,53,55,57,56,52,93,44,91,45,56,52,46,51,54,51,48,57,44,52,54,46,48,55,49,53,55,52,93,44,91,45,56,52,46,50,51,57,51,51,50,44,52,53,46,57,56,52,57,49,52,93,44,91,45,56,52,46,49,49,52,49,56,54,44,52,53,46,57,56,53,49,53,50,93,44,91,45,56,52,46,49,50,51,48,57,56,44,52,53,46,55,55,55,54,54,56,93,44,91,45,56,51,46,54,51,54,56,54,55,44,52,53,46,55,55,51,57,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,111,110,110,101,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,51,57,55,44,34,98,101,100,115,34,58,51,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,53,49,57,56,54,49,44,52,51,46,54,50,54,54,50,51,93,44,91,45,49,49,50,46,53,50,48,48,50,52,44,52,51,46,52,50,53,49,55,93,44,91,45,49,49,50,46,49,48,51,50,57,56,44,52,51,46,52,50,53,48,53,55,93,44,91,45,49,49,50,46,48,52,51,56,50,49,44,52,51,46,51,54,54,55,48,56,93,44,91,45,49,49,49,46,56,50,50,52,55,53,44,52,51,46,51,54,54,48,51,53,93,44,91,45,49,49,49,46,56,50,50,52,57,52,44,52,51,46,50,56,50,50,56,54,93,44,91,45,49,49,49,46,53,56,56,48,52,57,44,52,51,46,50,56,49,56,52,49,93,44,91,45,49,49,49,46,53,56,57,52,56,57,44,52,51,46,48,50,48,48,53,50,93,44,91,45,49,49,49,46,48,52,52,48,55,50,44,52,51,46,48,49,57,52,48,55,93,44,91,45,49,49,49,46,48,52,52,56,57,51,44,52,51,46,51,49,53,55,49,57,93,44,91,45,49,49,49,46,48,52,53,52,55,51,44,52,51,46,53,48,49,48,53,49,93,44,91,45,49,49,49,46,50,48,55,53,54,49,44,52,51,46,53,52,51,56,53,55,93,44,91,45,49,49,49,46,50,52,51,56,51,57,44,52,51,46,54,50,49,56,53,51,93,44,91,45,49,49,49,46,51,57,57,55,54,53,44,52,51,46,54,50,49,57,55,54,93,44,91,45,49,49,49,46,54,50,54,48,52,51,44,52,51,46,54,50,54,55,53,54,93,44,91,45,49,49,50,46,53,49,57,56,54,49,44,52,51,46,54,50,54,54,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,97,114,114,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,56,56,55,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,49,55,54,56,50,44,51,52,46,49,50,55,52,57,51,93,44,91,45,56,51,46,56,54,56,57,51,49,44,51,52,46,48,48,52,55,56,54,93,44,91,45,56,51,46,55,57,57,49,48,52,44,51,51,46,57,50,57,56,52,52,93,44,91,45,56,51,46,54,52,55,48,51,49,44,51,51,46,57,48,54,49,57,56,93,44,91,45,56,51,46,53,51,55,51,56,53,44,51,51,46,57,54,53,57,49,50,93,44,91,45,56,51,46,53,54,51,50,49,53,44,51,52,46,48,51,49,55,53,55,93,44,91,45,56,51,46,55,53,49,51,56,49,44,51,52,46,48,54,52,50,48,49,93,44,91,45,56,51,46,56,49,55,54,56,50,44,51,52,46,49,50,55,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,76,111,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,54,57,48,53,50,44,51,49,46,55,56,57,51,50,52,93,44,91,45,56,49,46,56,50,51,57,50,49,44,51,49,46,54,53,49,56,48,57,93,44,91,45,56,49,46,54,54,51,50,48,54,44,51,49,46,53,51,56,54,54,55,93,44,91,45,56,49,46,53,54,54,48,48,57,44,51,49,46,53,55,54,52,54,55,93,44,91,45,56,49,46,52,57,49,55,57,56,44,51,49,46,54,57,57,53,55,53,93,44,91,45,56,49,46,54,52,49,55,54,49,44,51,49,46,55,54,53,52,53,49,93,44,91,45,56,49,46,55,54,53,51,53,55,44,51,49,46,56,55,52,53,52,93,44,91,45,56,49,46,55,53,48,50,53,55,44,51,49,46,57,55,51,50,48,55,93,44,91,45,56,49,46,56,50,52,52,48,53,44,51,50,46,48,49,52,56,56,50,93,44,91,45,56,49,46,57,54,57,48,53,50,44,51,49,46,55,56,57,51,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,49,34,44,34,78,65,77,69,34,58,34,75,105,110,110,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,57,52,54,50,55,44,50,57,46,50,52,49,54,49,50,93,44,91,45,49,48,48,46,54,54,55,53,52,56,44,50,57,46,48,56,52,50,57,50,93,44,91,45,49,48,48,46,49,49,49,52,48,54,44,50,57,46,48,56,54,51,49,56,93,44,91,45,49,48,48,46,49,49,50,48,57,56,44,50,57,46,54,50,51,50,54,51,93,44,91,45,49,48,48,46,54,57,57,57,51,50,44,50,57,46,54,50,51,56,57,55,93,44,91,45,49,48,48,46,54,57,57,49,52,49,44,50,57,46,52,49,57,55,52,55,93,44,91,45,49,48,48,46,55,52,53,51,48,56,44,50,57,46,50,54,52,56,57,56,93,44,91,45,49,48,48,46,55,57,52,54,50,55,44,50,57,46,50,52,49,54,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,79,116,116,97,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,54,54,44,34,98,101,100,115,34,58,49,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,48,55,54,50,44,51,54,46,57,57,57,53,49,52,93,44,91,45,57,52,46,57,57,57,52,48,51,44,51,54,46,54,55,48,54,51,49,93,44,91,45,57,52,46,54,49,56,48,55,55,44,51,54,46,54,54,55,57,50,49,93,44,91,45,57,52,46,54,49,56,51,48,55,44,51,54,46,55,54,54,53,54,93,44,91,45,57,52,46,54,49,55,57,54,52,44,51,54,46,57,57,56,57,48,53,93,44,91,45,57,53,46,48,48,55,54,50,44,51,54,46,57,57,57,53,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,108,101,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,50,49,54,44,34,98,101,100,115,34,58,51,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,55,49,48,50,52,56,44,52,49,46,50,48,49,56,53,57,93,44,91,45,55,56,46,56,48,52,53,51,50,44,52,49,46,49,51,50,49,56,54,93,44,91,45,55,56,46,56,48,53,49,54,55,44,52,48,46,57,48,53,57,56,93,44,91,45,55,56,46,56,48,49,54,57,55,44,52,48,46,55,50,52,53,51,57,93,44,91,45,55,56,46,51,53,48,52,51,44,52,48,46,55,50,52,56,50,55,93,44,91,45,55,56,46,51,53,57,57,49,50,44,52,48,46,55,51,50,53,57,50,93,44,91,45,55,56,46,50,49,57,56,49,51,44,52,48,46,57,49,50,55,52,49,93,44,91,45,55,56,46,48,55,55,55,52,44,52,48,46,57,53,56,56,50,52,93,44,91,45,55,56,46,48,51,56,50,48,51,44,52,49,46,49,53,51,54,51,51,93,44,91,45,55,56,46,48,57,51,51,56,49,44,52,49,46,50,49,54,57,51,49,93,44,91,45,55,56,46,50,51,54,56,49,55,44,52,49,46,50,51,48,52,55,53,93,44,91,45,55,56,46,54,52,54,54,54,54,44,52,49,46,50,53,51,55,55,56,93,44,91,45,55,56,46,55,49,48,50,52,56,44,52,49,46,50,48,49,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,56,57,54,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,44,91,45,56,52,46,56,51,55,48,56,53,44,52,50,46,55,55,48,52,55,57,93,44,91,45,56,52,46,54,48,50,55,54,49,44,52,50,46,55,54,57,56,56,93,44,91,45,56,52,46,51,54,51,54,53,57,44,52,50,46,55,55,53,55,55,56,93,44,91,45,56,52,46,51,54,55,55,54,44,52,51,46,49,49,55,57,52,50,93,44,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,73,115,97,98,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,52,50,54,57,56,57,44,49,56,46,48,52,50,54,50,55,93,44,91,45,54,54,46,52,50,52,53,55,53,44,49,55,46,56,56,49,57,51,56,93,44,91,45,54,54,46,51,50,51,50,50,44,49,55,46,56,55,55,54,54,55,93,44,91,45,54,54,46,51,51,49,50,52,52,44,49,56,46,48,49,53,56,57,49,93,44,91,45,54,54,46,52,50,54,57,56,57,44,49,56,46,48,52,50,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,48,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,48,49,54,54,49,44,51,57,46,53,50,51,51,49,54,93,44,91,45,56,57,46,54,57,56,53,53,53,44,51,56,46,57,57,56,57,55,57,93,44,91,45,56,57,46,54,51,57,50,54,53,44,51,56,46,57,57,57,49,50,57,93,44,91,45,56,57,46,53,56,54,51,52,52,44,51,57,46,48,50,56,51,50,57,93,44,91,45,56,57,46,50,53,48,51,48,57,44,51,57,46,48,50,56,49,56,53,93,44,91,45,56,57,46,50,53,48,53,49,51,44,51,57,46,50,49,55,53,49,50,93,44,91,45,56,57,46,49,51,57,52,54,52,44,51,57,46,50,49,55,55,55,51,93,44,91,45,56,57,46,49,51,57,56,48,55,44,51,57,46,51,52,56,56,56,56,93,44,91,45,56,57,46,53,51,48,56,51,54,44,51,57,46,51,52,56,56,54,52,93,44,91,45,56,57,46,53,51,51,54,53,53,44,51,57,46,53,50,52,53,57,50,93,44,91,45,56,57,46,55,48,49,54,54,49,44,51,57,46,53,50,51,51,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,99,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,49,56,48,44,34,98,101,100,115,34,58,50,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,56,48,53,48,56,44,51,52,46,57,57,53,54,49,93,44,91,45,56,56,46,55,56,54,54,49,50,44,51,52,46,57,57,53,50,53,50,93,44,91,45,56,56,46,56,50,51,48,53,49,44,51,52,46,57,57,53,50,50,49,93,44,91,45,56,56,46,56,50,51,52,55,51,44,51,52,46,56,53,56,54,50,57,93,44,91,45,56,56,46,55,49,56,53,48,56,44,51,52,46,55,53,54,55,56,49,93,44,91,45,56,56,46,51,54,53,52,55,50,44,51,52,46,55,53,53,54,48,52,93,44,91,45,56,56,46,51,54,51,53,51,49,44,51,52,46,57,57,53,52,55,53,93,44,91,45,56,56,46,51,56,48,53,48,56,44,51,52,46,57,57,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,52,53,57,44,34,98,101,100,115,34,58,50,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,52,54,49,51,51,44,51,52,46,52,57,53,54,51,51,93,44,91,45,56,57,46,52,55,54,54,52,50,44,51,52,46,53,53,52,49,54,56,93,44,91,45,56,57,46,54,54,56,52,52,56,44,51,52,46,53,53,52,51,54,55,93,44,91,45,56,57,46,55,50,49,51,52,49,44,51,52,46,53,53,52,50,55,52,93,44,91,45,56,57,46,55,50,49,48,53,44,51,52,46,49,57,50,53,52,53,93,44,91,45,56,57,46,53,48,57,55,52,56,44,51,52,46,49,54,50,48,56,50,93,44,91,45,56,57,46,50,52,53,52,56,53,44,51,52,46,49,54,49,49,56,54,93,44,91,45,56,57,46,50,52,54,51,51,57,44,51,52,46,51,55,57,51,52,52,93,44,91,45,56,57,46,50,52,54,49,51,51,44,51,52,46,52,57,53,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,55,51,53,50,57,44,51,49,46,55,48,56,57,50,50,93,44,91,45,57,50,46,57,48,56,51,49,51,44,51,49,46,54,50,53,49,54,57,93,44,91,45,57,50,46,56,48,54,50,48,54,44,51,49,46,53,57,56,53,52,56,93,44,91,45,57,50,46,55,49,56,57,56,51,44,51,49,46,53,49,55,53,57,52,93,44,91,45,57,50,46,54,51,49,57,52,52,44,51,49,46,51,57,48,52,55,56,93,44,91,45,57,50,46,49,57,54,49,51,49,44,51,49,46,52,55,55,56,55,55,93,44,91,45,57,50,46,50,56,50,48,56,49,44,51,49,46,53,48,51,52,56,54,93,44,91,45,57,50,46,51,55,50,52,55,54,44,51,49,46,55,48,49,53,49,57,93,44,91,45,57,50,46,51,54,50,54,48,56,44,51,49,46,55,57,54,54,51,51,93,44,91,45,57,50,46,54,49,57,50,50,52,44,51,49,46,55,57,55,49,52,57,93,44,91,45,57,50,46,54,49,57,57,55,54,44,51,49,46,55,48,57,53,55,50,93,44,91,45,57,50,46,57,55,51,53,50,57,44,51,49,46,55,48,56,57,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,116,99,104,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,48,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,48,57,57,55,52,44,52,48,46,53,50,51,55,57,56,93,44,91,45,57,53,46,53,53,52,56,49,55,44,52,48,46,50,54,52,52,54,93,44,91,45,57,53,46,49,56,48,54,49,52,44,52,48,46,50,54,49,55,48,54,93,44,91,45,57,53,46,50,48,50,50,54,53,44,52,48,46,53,55,56,52,56,56,93,44,91,45,57,53,46,51,55,51,57,50,51,44,52,48,46,53,56,48,53,48,51,93,44,91,45,57,53,46,55,54,53,54,52,53,44,52,48,46,53,56,53,50,48,56,93,44,91,45,57,53,46,55,48,57,57,55,52,44,52,48,46,53,50,51,55,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,53,49,50,44,34,98,101,100,115,34,58,53,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,49,55,52,55,51,44,51,57,46,56,49,51,54,54,54,93,44,91,45,56,57,46,49,52,49,57,54,55,44,51,57,46,56,48,49,50,55,51,93,44,91,45,56,57,46,49,51,57,49,50,53,44,51,57,46,54,53,53,49,51,49,93,44,91,45,56,57,46,48,50,53,54,56,44,51,57,46,54,53,52,49,56,51,93,44,91,45,56,56,46,56,49,48,53,55,53,44,51,57,46,54,53,51,50,50,50,93,44,91,45,56,56,46,55,52,53,54,55,49,44,51,57,46,55,57,50,49,52,54,93,44,91,45,56,56,46,55,52,53,49,54,52,44,52,48,46,48,53,53,49,57,49,93,44,91,45,56,57,46,49,52,52,55,54,52,44,52,48,46,48,52,56,56,53,51,93,44,91,45,56,57,46,50,49,55,56,52,54,44,51,57,46,57,49,54,57,57,93,44,91,45,56,57,46,50,49,55,52,55,51,44,51,57,46,56,49,51,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,74,111,115,101,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,56,57,55,44,34,98,101,100,115,34,58,49,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,54,50,57,52,51,44,52,50,46,48,54,57,51,50,55,93,44,91,45,56,53,46,55,54,48,49,56,54,44,52,49,46,55,57,56,56,49,52,93,44,91,45,56,53,46,55,57,49,51,51,53,44,52,49,46,55,53,57,48,55,56,93,44,91,45,56,53,46,54,53,57,55,53,44,52,49,46,55,53,57,48,54,56,93,44,91,45,56,53,46,50,57,50,49,55,57,44,52,49,46,55,53,57,56,56,57,93,44,91,45,56,53,46,50,57,51,54,50,54,44,52,50,46,48,55,49,53,53,51,93,44,91,45,56,53,46,55,54,50,57,52,51,44,52,50,46,48,54,57,51,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,49,50,55,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,50,57,54,51,50,44,51,56,46,49,50,52,55,54,55,93,44,91,45,56,57,46,49,55,55,53,57,55,44,51,55,46,57,53,48,51,49,49,93,44,91,45,56,57,46,49,53,49,49,55,54,44,51,55,46,56,54,49,57,57,57,93,44,91,45,56,56,46,55,48,54,55,53,57,44,51,55,46,56,54,51,52,53,55,93,44,91,45,56,56,46,55,48,54,54,50,50,44,51,55,46,57,48,54,55,57,55,93,44,91,45,56,56,46,55,48,52,54,48,54,44,51,56,46,49,50,53,49,57,53,93,44,91,45,56,57,46,49,50,57,54,51,50,44,51,56,46,49,50,52,55,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,49,44,34,98,101,100,115,34,58,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,57,48,57,49,50,44,52,55,46,52,53,48,54,57,50,93,44,91,45,49,48,55,46,57,53,54,54,50,52,44,52,55,46,51,54,48,57,52,51,93,44,91,45,49,48,55,46,57,53,52,51,52,55,44,52,55,46,49,50,48,54,53,50,93,44,91,45,49,48,55,46,56,56,52,55,49,56,44,52,54,46,57,56,52,50,52,57,93,44,91,45,49,48,55,46,56,57,50,50,51,51,44,52,54,46,56,53,49,50,49,53,93,44,91,45,49,48,54,46,55,50,48,49,53,55,44,52,54,46,56,53,57,54,48,51,93,44,91,45,49,48,54,46,48,56,54,52,54,51,44,52,54,46,56,52,53,56,56,49,93,44,91,45,49,48,54,46,48,56,54,53,56,53,44,52,54,46,56,54,48,50,57,93,44,91,45,49,48,54,46,48,56,54,55,55,55,44,52,55,46,49,56,48,57,51,56,93,44,91,45,49,48,54,46,49,55,48,52,50,44,52,55,46,49,56,48,56,50,54,93,44,91,45,49,48,54,46,49,55,48,54,55,53,44,52,55,46,51,53,52,52,57,53,93,44,91,45,49,48,54,46,50,57,56,49,53,56,44,52,55,46,51,53,52,50,57,56,93,44,91,45,49,48,54,46,50,54,49,49,50,49,44,52,55,46,53,50,57,48,53,50,93,44,91,45,49,48,54,46,50,54,48,57,51,50,44,52,55,46,56,54,56,52,51,49,93,44,91,45,49,48,54,46,52,49,56,54,50,44,52,55,46,57,53,55,52,53,55,93,44,91,45,49,48,54,46,53,55,49,48,48,51,44,52,55,46,56,49,50,57,51,51,93,44,91,45,49,48,54,46,56,54,49,54,54,56,44,52,55,46,55,51,55,51,55,50,93,44,91,45,49,48,54,46,56,56,49,49,54,50,44,52,55,46,54,55,56,49,50,56,93,44,91,45,49,48,55,46,50,52,57,44,52,55,46,54,54,49,53,54,54,93,44,91,45,49,48,55,46,52,49,52,56,56,54,44,52,55,46,54,57,49,55,51,52,93,44,91,45,49,48,55,46,53,57,52,50,53,44,52,55,46,54,52,57,55,51,49,93,44,91,45,49,48,55,46,56,54,52,57,50,50,44,52,55,46,53,49,51,55,52,93,44,91,45,49,48,55,46,57,48,57,49,50,44,52,55,46,52,53,48,54,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,56,51,44,34,98,101,100,115,34,58,49,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,50,52,51,56,55,44,52,48,46,54,56,57,55,55,50,93,44,91,45,57,56,46,55,50,51,57,52,56,44,52,48,46,51,53,48,51,57,49,93,44,91,45,57,56,46,50,55,56,48,57,44,52,48,46,51,53,48,51,52,55,93,44,91,45,57,56,46,50,55,56,49,48,51,44,52,48,46,54,57,56,50,57,49,93,44,91,45,57,56,46,50,56,50,56,53,49,44,52,48,46,54,57,56,50,56,52,93,44,91,45,57,56,46,55,50,49,52,51,44,52,48,46,54,57,56,57,48,51,93,44,91,45,57,56,46,55,50,52,51,56,55,44,52,48,46,54,56,57,55,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,79,108,109,115,116,101,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,48,54,53,44,34,98,101,100,115,34,58,50,49,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,48,56,55,49,44,52,52,46,49,57,52,57,49,54,93,44,91,45,57,50,46,54,55,56,55,49,55,44,52,52,46,49,57,53,53,49,54,93,44,91,45,57,50,46,54,56,57,51,57,49,44,52,51,46,56,52,56,53,55,93,44,91,45,57,50,46,52,52,56,57,54,53,44,52,51,46,56,51,52,49,48,53,93,44,91,45,57,50,46,48,55,57,50,57,50,44,52,51,46,56,52,55,48,56,93,44,91,45,57,50,46,48,55,57,52,57,49,44,52,52,46,49,48,54,57,56,56,93,44,91,45,57,50,46,51,49,56,57,55,49,44,52,52,46,49,48,55,55,51,52,93,44,91,45,57,50,46,51,49,56,57,56,54,44,52,52,46,49,57,52,48,53,55,93,44,91,45,57,50,46,53,53,48,56,55,49,44,52,52,46,49,57,52,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,51,48,54,54,44,34,98,101,100,115,34,58,49,51,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,51,55,49,55,51,56,44,52,48,46,55,51,57,54,52,93,44,91,45,55,52,46,52,54,49,48,51,53,44,52,48,46,54,55,51,53,48,52,93,44,91,45,55,52,46,52,54,51,50,57,49,44,52,48,46,53,57,57,49,56,55,93,44,91,45,55,52,46,50,48,51,54,56,56,44,52,48,46,53,57,50,54,57,49,93,44,91,45,55,52,46,49,54,49,52,50,56,44,52,48,46,54,52,52,49,52,56,93,44,91,45,55,52,46,49,51,54,55,48,51,44,52,48,46,54,55,52,52,52,52,93,44,91,45,55,52,46,51,55,49,55,51,56,44,52,48,46,55,51,57,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,84,114,117,106,105,108,108,111,32,65,108,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,55,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,57,57,53,53,54,44,49,56,46,51,56,48,48,54,53,93,44,91,45,54,54,46,48,52,49,53,51,53,44,49,56,46,51,49,50,51,52,52,93,44,91,45,54,54,46,48,50,49,55,52,55,44,49,56,46,51,48,53,48,51,52,93,44,91,45,54,53,46,57,52,50,52,50,57,44,49,56,46,50,57,51,52,54,57,93,44,91,45,54,53,46,57,57,57,53,53,54,44,49,56,46,51,56,48,48,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,111,98,105,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,52,54,53,57,44,34,98,101,100,115,34,58,49,57,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,50,53,52,51,50,44,51,48,46,57,57,56,51,50,51,93,44,91,45,56,56,46,52,49,50,54,49,50,44,51,48,46,55,51,53,53,57,93,44,91,45,56,56,46,51,56,52,52,51,49,44,51,48,46,49,53,56,53,52,51,93,44,91,45,56,56,46,49,54,50,48,50,50,44,51,48,46,50,48,48,48,57,51,93,44,91,45,56,56,46,48,51,55,51,48,57,44,51,48,46,49,52,54,53,54,49,93,44,91,45,56,55,46,57,56,55,56,51,57,44,51,48,46,54,51,55,49,52,57,93,44,91,45,56,56,46,48,50,54,51,49,57,44,51,48,46,55,53,51,51,53,56,93,44,91,45,56,55,46,57,52,49,53,54,49,44,51,49,46,48,54,49,51,52,50,93,44,91,45,56,55,46,57,55,50,56,54,57,44,51,49,46,49,54,50,54,57,52,93,44,91,45,56,56,46,48,50,50,54,52,57,44,51,49,46,49,52,52,50,54,55,93,44,91,45,56,56,46,51,50,57,55,56,50,44,51,49,46,49,52,51,56,50,49,93,44,91,45,56,56,46,52,51,50,48,48,55,44,51,49,46,49,49,52,50,57,56,93,44,91,45,56,56,46,52,50,53,52,51,50,44,51,48,46,57,57,56,51,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,99,67,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,48,56,53,49,55,44,52,51,46,56,52,57,48,53,57,93,44,91,45,57,55,46,54,48,55,48,49,50,44,52,51,46,52,57,57,56,50,54,93,44,91,45,57,55,46,52,48,49,52,53,44,52,51,46,52,57,57,55,56,51,93,44,91,45,57,55,46,49,50,57,52,55,56,44,52,51,46,52,57,57,54,56,51,93,44,91,45,57,55,46,49,50,57,48,56,57,44,52,51,46,56,52,55,57,55,51,93,44,91,45,57,55,46,51,54,57,52,54,51,44,52,51,46,56,52,56,53,50,54,93,44,91,45,57,55,46,54,48,56,53,49,55,44,52,51,46,56,52,57,48,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,53,56,53,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,53,49,55,56,53,44,51,51,46,57,49,57,57,51,93,44,91,45,56,55,46,57,52,54,53,49,57,44,51,51,46,53,50,52,48,54,53,93,44,91,45,56,55,46,56,52,48,54,56,51,44,51,51,46,53,50,52,56,51,57,93,44,91,45,56,55,46,54,54,54,54,54,49,44,51,51,46,53,50,49,54,54,55,93,44,91,45,56,55,46,54,51,49,55,49,56,44,51,51,46,54,48,57,56,51,51,93,44,91,45,56,55,46,52,50,51,55,48,49,44,51,51,46,54,48,50,48,57,54,93,44,91,45,56,55,46,52,50,51,56,52,51,44,51,51,46,54,56,57,49,49,50,93,44,91,45,56,55,46,53,50,56,51,51,56,44,51,51,46,54,57,50,48,52,57,93,44,91,45,56,55,46,53,51,49,54,48,50,44,51,51,46,56,54,55,54,49,56,93,44,91,45,56,55,46,54,51,53,57,51,50,44,51,51,46,57,49,53,50,53,49,93,44,91,45,56,55,46,57,53,49,55,56,53,44,51,51,46,57,49,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,97,109,98,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,50,54,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,57,51,49,55,55,44,51,51,46,49,48,55,51,52,93,44,91,45,56,53,46,53,57,51,49,53,49,44,51,50,46,55,50,56,53,51,93,44,91,45,56,53,46,49,51,53,48,51,56,44,51,50,46,55,52,54,53,51,93,44,91,45,56,53,46,49,56,52,49,51,49,44,51,50,46,56,55,48,53,50,53,93,44,91,45,56,53,46,50,51,50,51,55,56,44,51,51,46,49,48,56,48,55,55,93,44,91,45,56,53,46,53,57,51,49,55,55,44,51,51,46,49,48,55,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,50,57,54,56,55,53,44,51,54,46,53,52,52,56,53,53,93,44,91,45,55,55,46,55,54,55,49,53,44,51,54,46,53,52,53,51,55,52,93,44,91,45,55,55,46,56,57,57,55,55,51,44,51,54,46,53,52,52,53,57,54,93,44,91,45,55,55,46,56,57,57,53,50,52,44,51,54,46,53,48,52,50,53,57,93,44,91,45,55,55,46,54,52,57,56,51,53,44,51,54,46,52,56,49,52,52,51,93,44,91,45,55,55,46,52,52,53,56,56,54,44,51,54,46,51,50,52,56,56,56,93,44,91,45,55,55,46,51,56,54,53,57,53,44,51,54,46,50,49,51,53,52,56,93,44,91,45,55,55,46,50,57,49,53,49,57,44,51,54,46,49,54,56,51,52,50,93,44,91,45,55,55,46,50,48,56,52,54,56,44,51,54,46,50,52,54,53,55,56,93,44,91,45,55,55,46,48,57,51,50,50,52,44,51,54,46,53,49,56,50,49,54,93,44,91,45,55,55,46,49,54,52,51,55,55,44,51,54,46,53,52,54,51,50,57,93,44,91,45,55,55,46,50,57,54,56,55,53,44,51,54,46,53,52,52,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,77,111,102,102,97,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,48,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,56,57,52,52,44,52,48,46,54,54,50,54,48,49,93,44,91,45,49,48,57,46,48,53,48,57,52,57,44,52,48,46,50,50,50,54,52,55,93,44,91,45,49,48,56,46,49,49,51,49,55,57,44,52,48,46,50,50,49,54,55,93,44,91,45,49,48,55,46,52,51,57,51,56,54,44,52,48,46,50,50,51,51,55,57,93,44,91,45,49,48,55,46,52,50,56,56,49,51,44,52,48,46,53,52,50,50,48,55,93,44,91,45,49,48,55,46,51,49,52,49,53,51,44,52,48,46,54,48,48,50,56,49,93,44,91,45,49,48,55,46,51,49,55,55,57,52,44,52,49,46,48,48,50,57,50,93,44,91,45,49,48,55,46,57,49,56,52,50,49,44,52,49,46,48,48,50,48,51,54,93,44,91,45,49,48,57,46,48,53,48,48,50,54,44,52,49,46,48,48,48,54,57,49,93,44,91,45,49,48,57,46,48,52,56,57,52,52,44,52,48,46,54,54,50,54,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,50,51,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,55,51,51,50,44,51,55,46,52,50,49,57,57,54,93,44,91,45,56,53,46,54,57,55,51,50,53,44,51,55,46,51,48,49,56,51,56,93,44,91,45,56,53,46,54,56,54,52,56,50,44,51,55,46,49,56,50,52,50,55,93,44,91,45,56,53,46,53,50,54,56,56,49,44,51,55,46,49,48,57,52,53,93,44,91,45,56,53,46,51,53,50,55,55,49,44,51,55,46,49,57,50,52,51,50,93,44,91,45,56,53,46,53,56,51,52,57,55,44,51,55,46,52,54,57,57,49,55,93,44,91,45,56,53,46,54,53,55,51,51,50,44,51,55,46,52,50,49,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,52,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,57,55,53,55,53,44,51,57,46,52,53,51,50,55,53,93,44,91,45,56,53,46,50,57,54,53,52,44,51,57,46,50,54,56,50,57,49,93,44,91,45,56,53,46,48,54,53,53,55,52,44,51,57,46,51,48,55,50,51,50,93,44,91,45,56,52,46,56,49,57,52,53,44,51,57,46,51,48,53,49,53,51,93,44,91,45,56,52,46,56,49,53,51,53,51,44,51,57,46,53,50,49,57,53,93,44,91,45,56,53,46,48,51,54,48,56,55,44,51,57,46,53,50,54,50,49,51,93,44,91,45,56,53,46,50,57,56,49,49,44,51,57,46,53,50,53,52,55,54,93,44,91,45,56,53,46,50,57,55,53,55,53,44,51,57,46,52,53,51,50,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,101,97,117,102,111,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,50,52,51,44,34,98,101,100,115,34,58,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,55,52,44,51,53,46,55,51,50,56,51,49,93,44,91,45,55,55,46,49,56,57,49,49,53,44,51,53,46,52,49,56,51,54,50,93,44,91,45,55,54,46,56,57,53,57,49,57,44,51,53,46,50,53,51,56,56,57,93,44,91,45,55,54,46,56,52,53,53,48,53,44,51,53,46,50,49,54,48,53,57,93,44,91,45,55,54,46,54,51,50,53,54,49,44,51,53,46,50,51,53,51,50,52,93,44,91,45,55,54,46,54,49,55,52,57,54,44,51,53,46,51,50,56,56,57,51,93,44,91,45,55,54,46,53,50,50,49,51,49,44,51,53,46,51,53,51,54,50,51,93,44,91,45,55,54,46,53,56,53,51,50,44,51,53,46,52,53,53,48,55,53,93,44,91,45,55,54,46,53,56,56,49,57,49,44,51,53,46,54,50,48,54,53,52,93,44,91,45,55,54,46,54,51,55,53,49,51,44,51,53,46,55,48,53,50,49,53,93,44,91,45,55,54,46,56,52,55,50,54,52,44,51,53,46,55,49,57,57,56,50,93,44,91,45,55,54,46,57,56,53,56,52,50,44,51,53,46,54,53,56,56,52,56,93,44,91,45,55,55,46,49,55,52,44,51,53,46,55,51,50,56,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,74,97,121,117,121,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,54,54,54,50,44,49,56,46,50,57,56,53,52,57,93,44,91,45,54,54,46,54,52,57,52,54,55,44,49,56,46,49,53,56,56,53,55,93,44,91,45,54,54,46,53,53,50,55,54,54,44,49,56,46,49,53,50,48,53,55,93,44,91,45,54,54,46,53,52,55,50,50,44,49,56,46,49,53,51,49,51,93,44,91,45,54,54,46,53,52,51,49,51,51,44,49,56,46,49,54,51,48,57,56,93,44,91,45,54,54,46,53,54,54,54,50,44,49,56,46,50,57,56,53,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,117,114,108,101,105,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,55,51,55,44,34,98,101,100,115,34,58,53,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,54,55,51,50,49,44,52,55,46,51,50,55,54,52,54,93,44,91,45,49,48,48,46,55,52,57,51,51,52,44,52,55,46,51,50,55,54,56,53,93,44,91,45,49,48,48,46,55,52,57,51,55,44,52,55,46,49,53,55,50,52,53,93,44,91,45,49,48,48,46,57,54,53,52,52,44,52,55,46,49,53,55,49,51,52,93,44,91,45,49,48,48,46,56,56,50,49,55,50,44,52,55,46,48,49,53,49,49,53,93,44,91,45,49,48,48,46,57,51,53,57,56,51,44,52,54,46,57,56,50,56,52,93,44,91,45,49,48,48,46,55,56,56,55,54,56,44,52,54,46,54,57,49,55,48,49,93,44,91,45,49,48,48,46,54,54,50,48,49,53,44,52,54,46,54,51,52,54,93,44,91,45,49,48,48,46,48,56,49,49,57,56,44,52,54,46,54,51,51,51,57,54,93,44,91,45,49,48,48,46,48,55,53,50,50,57,44,52,54,46,57,56,49,50,56,50,93,44,91,45,49,48,48,46,49,49,52,54,51,55,44,52,54,46,57,56,49,54,54,54,93,44,91,45,49,48,48,46,49,49,51,50,54,49,44,52,55,46,51,50,55,50,54,50,93,44,91,45,49,48,48,46,54,55,51,50,49,44,52,55,46,51,50,55,54,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,82,111,119,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,54,48,53,44,34,98,101,100,115,34,58,50,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,48,55,56,50,54,44,51,53,46,56,53,50,57,50,57,93,44,91,45,56,48,46,55,55,49,53,56,50,44,51,53,46,54,55,50,49,54,51,93,44,91,45,56,48,46,55,51,55,51,55,57,44,51,53,46,53,48,53,56,48,52,93,44,91,45,56,48,46,50,57,53,52,50,49,44,51,53,46,53,48,50,57,50,93,44,91,45,56,48,46,49,56,50,53,53,57,44,51,53,46,53,48,52,49,53,49,93,44,91,45,56,48,46,50,48,57,53,48,57,44,51,53,46,53,56,49,57,53,49,93,44,91,45,56,48,46,52,53,56,56,56,52,44,51,53,46,55,52,51,48,51,49,93,44,91,45,56,48,46,54,51,50,55,50,52,44,51,53,46,56,52,53,56,53,52,93,44,91,45,56,48,46,55,48,55,56,50,54,44,51,53,46,56,53,50,57,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,73,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,49,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,57,49,50,51,54,44,52,54,46,52,49,57,55,48,52,93,44,91,45,56,56,46,57,57,49,48,49,50,44,52,54,46,51,51,50,51,48,56,93,44,91,45,56,56,46,57,57,48,56,54,52,44,52,54,46,48,57,55,51,56,49,93,44,91,45,56,56,46,57,51,50,55,53,55,44,52,54,46,48,55,51,54,54,56,93,44,91,45,56,56,46,54,56,51,51,49,50,44,52,54,46,48,49,52,49,49,51,93,44,91,45,56,56,46,53,48,55,52,56,44,52,54,46,48,49,56,53,49,54,93,44,91,45,56,56,46,49,49,54,56,52,53,44,52,53,46,57,50,49,54,50,55,93,44,91,45,56,56,46,49,49,55,52,48,55,44,52,54,46,50,52,54,54,49,56,93,44,91,45,56,56,46,49,49,54,53,55,49,44,52,54,46,52,49,57,57,53,49,93,44,91,45,56,56,46,54,55,57,51,57,50,44,52,54,46,52,50,48,49,51,57,93,44,91,45,56,56,46,57,57,49,50,51,54,44,52,54,46,52,49,57,55,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,75,97,110,100,105,121,111,104,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,54,53,56,44,34,98,101,100,115,34,58,49,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,50,53,53,50,49,51,44,52,53,46,52,49,50,55,51,57,93,44,91,45,57,53,46,50,52,54,52,56,57,44,52,53,46,49,53,50,52,51,49,93,44,91,45,57,53,46,50,52,56,53,50,44,52,52,46,56,57,49,51,49,93,44,91,45,57,52,46,55,53,56,49,56,57,44,52,52,46,56,57,50,48,57,55,93,44,91,45,57,52,46,55,54,51,48,56,44,52,53,46,51,50,54,49,93,44,91,45,57,52,46,55,54,50,57,51,52,44,52,53,46,52,49,50,56,54,49,93,44,91,45,57,53,46,49,51,49,55,51,44,52,53,46,52,49,50,52,48,50,93,44,91,45,57,53,46,50,53,53,50,49,51,44,52,53,46,52,49,50,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,55,34,44,34,78,65,77,69,34,58,34,87,111,108,102,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,57,53,48,56,44,51,55,46,56,54,49,57,48,54,93,44,91,45,56,51,46,54,51,49,48,54,44,51,55,46,56,50,53,51,55,50,93,44,91,45,56,51,46,55,48,55,57,55,52,44,51,55,46,55,49,54,52,54,51,93,44,91,45,56,51,46,53,50,50,51,48,56,44,51,55,46,54,51,56,53,49,54,93,44,91,45,56,51,46,52,49,56,52,55,52,44,51,55,46,54,57,48,55,50,57,93,44,91,45,56,51,46,50,52,56,54,57,50,44,51,55,46,54,54,57,54,49,54,93,44,91,45,56,51,46,50,54,50,49,55,50,44,51,55,46,55,49,50,54,53,55,93,44,91,45,56,51,46,52,57,53,48,56,44,51,55,46,56,54,49,57,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,54,54,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,50,52,52,54,49,44,51,48,46,48,53,49,52,51,53,93,44,91,45,57,55,46,51,49,53,56,50,51,44,50,57,46,55,56,54,53,52,49,93,44,91,45,57,55,46,51,49,55,56,57,51,44,50,57,46,55,56,52,54,53,56,93,44,91,45,57,55,46,49,52,50,54,52,51,44,50,57,46,54,50,56,49,48,49,93,44,91,45,57,54,46,56,55,52,50,50,50,44,50,57,46,54,51,50,55,48,54,93,44,91,45,57,54,46,53,54,57,56,52,52,44,50,57,46,57,54,49,53,49,54,93,44,91,45,57,54,46,54,50,49,57,56,44,51,48,46,48,52,52,50,56,51,93,44,91,45,57,54,46,54,56,51,51,57,52,44,51,48,46,49,53,49,48,51,56,93,44,91,45,57,54,46,55,57,52,53,53,50,44,51,48,46,49,54,48,53,52,53,93,44,91,45,57,55,46,48,50,52,52,54,49,44,51,48,46,48,53,49,52,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,51,52,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,53,57,52,51,44,52,52,46,53,55,49,48,50,53,93,44,91,45,49,48,52,46,48,53,52,52,56,55,44,52,52,46,49,56,48,51,56,49,93,44,91,45,49,48,52,46,48,53,52,53,56,56,44,52,52,46,49,52,49,48,56,49,93,44,91,45,49,48,51,46,52,53,50,52,53,51,44,52,52,46,49,52,48,55,55,50,93,44,91,45,49,48,51,46,52,53,51,48,49,54,44,52,52,46,50,53,54,54,48,57,93,44,91,45,49,48,51,46,53,55,52,51,57,54,44,52,52,46,50,53,54,48,55,55,93,44,91,45,49,48,51,46,53,54,55,54,53,51,44,52,52,46,54,48,52,48,57,56,93,44,91,45,49,48,51,46,56,50,48,54,51,57,44,52,52,46,54,48,52,55,55,55,93,44,91,45,49,48,52,46,48,53,53,57,52,51,44,52,52,46,53,55,49,48,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,57,52,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,56,46,48,53,52,57,56,53,44,52,53,46,50,53,50,53,55,55,93,44,91,45,54,55,46,57,56,49,56,53,49,44,52,52,46,57,53,53,56,56,53,93,44,91,45,54,56,46,49,48,53,48,49,55,44,52,52,46,57,51,57,48,56,56,93,44,91,45,54,55,46,57,56,49,57,56,56,44,52,52,46,52,55,51,55,53,54,93,44,91,45,54,55,46,57,50,53,49,55,56,44,52,52,46,51,52,49,52,51,52,93,44,91,45,54,55,46,56,48,53,53,54,57,44,52,52,46,51,57,49,48,49,53,93,44,91,45,54,55,46,53,54,55,53,56,53,44,52,52,46,51,57,55,50,48,57,93,44,91,45,54,55,46,52,51,57,54,57,53,44,52,52,46,53,48,53,51,56,52,93,44,91,45,54,55,46,50,52,56,48,53,50,44,52,52,46,53,53,52,56,57,56,93,44,91,45,54,54,46,56,56,53,52,52,52,44,52,52,46,55,57,52,50,48,56,93,44,91,45,54,54,46,57,54,53,51,49,55,44,52,52,46,56,50,56,57,48,53,93,44,91,45,54,55,46,49,53,56,56,55,49,44,52,53,46,49,54,50,48,51,53,93,44,91,45,54,55,46,51,52,48,57,50,52,44,52,53,46,49,50,53,48,57,50,93,44,91,45,54,55,46,52,55,54,51,55,50,44,52,53,46,50,55,53,51,55,49,93,44,91,45,54,55,46,52,50,55,51,50,53,44,52,53,46,51,57,48,55,50,49,93,44,91,45,54,55,46,53,48,48,48,55,50,44,52,53,46,52,57,48,56,52,57,93,44,91,45,54,55,46,52,50,48,55,51,50,44,52,53,46,53,52,57,54,57,53,93,44,91,45,54,55,46,56,48,53,54,56,57,44,52,53,46,54,56,48,48,53,49,93,44,91,45,54,56,46,48,52,56,48,49,50,44,52,53,46,54,51,57,56,57,55,93,44,91,45,54,55,46,57,51,57,55,54,44,52,53,46,50,54,55,56,52,53,93,44,91,45,54,56,46,48,53,52,57,56,53,44,52,53,46,50,53,50,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,66,114,105,115,99,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,57,48,55,52,57,44,51,52,46,55,52,56,50,52,54,93,44,91,45,49,48,49,46,52,55,49,53,54,50,44,51,52,46,55,52,55,52,54,50,93,44,91,45,49,48,49,46,52,55,49,53,56,44,51,52,46,51,49,50,50,57,93,44,91,45,49,48,49,46,48,52,49,52,56,52,44,51,52,46,51,49,50,52,52,52,93,44,91,45,49,48,48,46,57,52,54,49,51,50,44,51,52,46,51,49,50,55,53,57,93,44,91,45,49,48,48,46,57,52,52,57,51,57,44,51,52,46,55,52,56,50,56,49,93,44,91,45,49,48,49,46,48,57,48,55,52,57,44,51,52,46,55,52,56,50,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,79,110,116,111,110,97,103,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,57,49,50,51,54,44,52,54,46,52,49,57,55,48,52,93,44,91,45,56,56,46,57,56,57,53,50,57,44,52,54,46,54,56,48,49,49,57,93,44,91,45,56,56,46,57,51,50,52,56,44,52,54,46,55,54,52,55,56,55,93,44,91,45,56,56,46,57,52,56,56,54,57,44,52,55,46,52,55,55,49,52,53,93,44,91,45,56,57,46,54,56,48,55,51,44,52,55,46,55,49,52,53,53,50,93,44,91,45,56,57,46,57,53,55,49,48,50,44,52,55,46,50,57,49,49,48,51,93,44,91,45,57,48,46,49,49,49,54,56,57,44,52,55,46,48,52,49,57,54,52,93,44,91,45,57,48,46,48,48,48,49,54,49,44,52,54,46,57,57,57,57,51,55,93,44,91,45,57,48,46,48,48,48,49,55,49,44,52,54,46,55,54,53,53,50,57,93,44,91,45,56,57,46,56,54,51,55,57,51,44,52,54,46,55,54,53,52,48,53,93,44,91,45,56,57,46,56,54,52,52,50,44,52,54,46,53,57,50,54,52,51,93,44,91,45,56,57,46,55,52,48,53,54,56,44,52,54,46,53,48,53,54,52,50,93,44,91,45,56,57,46,51,54,53,48,57,52,44,52,54,46,53,48,53,57,52,57,93,44,91,45,56,57,46,51,54,53,53,48,55,44,52,54,46,51,51,51,48,55,56,93,44,91,45,56,56,46,57,57,49,48,49,50,44,52,54,46,51,51,50,51,48,56,93,44,91,45,56,56,46,57,57,49,50,51,54,44,52,54,46,52,49,57,55,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,50,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,56,54,56,57,44,51,51,46,54,55,54,55,50,55,93,44,91,45,57,48,46,49,50,55,55,55,53,44,51,51,46,54,55,54,57,53,54,93,44,91,45,57,48,46,49,48,49,52,48,49,44,51,51,46,52,53,56,57,52,93,44,91,45,57,48,46,49,55,52,54,49,52,44,51,51,46,51,51,51,51,55,56,93,44,91,45,56,57,46,55,52,57,52,52,49,44,51,51,46,50,49,52,52,55,56,93,44,91,45,56,57,46,54,52,53,50,56,44,51,51,46,50,56,53,53,49,53,93,44,91,45,56,57,46,54,52,54,51,49,52,44,51,51,46,52,48,50,53,52,52,93,44,91,45,56,57,46,55,56,53,50,50,55,44,51,51,46,52,49,54,50,55,53,93,44,91,45,56,57,46,55,56,54,56,57,44,51,51,46,54,55,54,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,55,56,48,44,34,98,101,100,115,34,58,49,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,49,52,57,48,50,53,44,52,52,46,55,50,48,50,50,53,93,44,91,45,49,50,51,46,54,48,50,54,48,57,44,52,52,46,55,50,49,49,53,52,93,44,91,45,49,50,51,46,53,57,55,54,55,55,44,52,52,46,52,51,51,49,48,57,93,44,91,45,49,50,51,46,55,50,48,48,55,49,44,52,52,46,52,51,51,51,55,52,93,44,91,45,49,50,51,46,55,55,53,53,57,56,44,52,52,46,50,56,51,53,52,55,93,44,91,45,49,50,51,46,49,56,48,51,56,56,44,52,52,46,50,56,51,55,50,53,93,44,91,45,49,50,51,46,50,52,48,55,52,52,44,52,52,46,51,51,55,55,56,57,93,44,91,45,49,50,51,46,50,49,49,57,54,55,44,52,52,46,53,48,49,50,49,56,93,44,91,45,49,50,51,46,50,54,48,49,53,49,44,52,52,46,53,53,53,49,52,56,93,44,91,45,49,50,51,46,49,52,57,48,50,53,44,52,52,46,55,50,48,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,82,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,49,51,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,53,50,57,56,56,44,52,51,46,56,52,57,53,48,55,93,44,91,45,57,54,46,52,53,51,50,54,44,52,51,46,53,48,48,51,57,93,44,91,45,57,54,46,48,53,51,49,54,50,44,52,51,46,53,48,48,49,53,53,93,44,91,45,57,54,46,48,53,50,51,50,44,52,51,46,56,52,57,48,55,93,44,91,45,57,54,46,48,54,52,54,50,44,52,51,46,56,52,57,48,51,57,93,44,91,45,57,54,46,52,53,50,57,56,56,44,52,51,46,56,52,57,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,55,53,53,44,34,98,101,100,115,34,58,49,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,49,53,51,49,44,52,48,46,57,49,49,51,52,54,93,44,91,45,55,57,46,50,49,53,50,49,53,44,52,48,46,55,55,53,57,52,50,93,44,91,45,55,57,46,52,53,48,49,55,54,44,52,48,46,53,51,48,49,52,57,93,44,91,45,55,57,46,49,50,49,54,51,52,44,52,48,46,51,55,48,53,55,54,93,44,91,45,55,56,46,57,55,52,54,52,57,44,52,48,46,51,57,53,57,55,50,93,44,91,45,55,56,46,56,48,49,54,57,55,44,52,48,46,55,50,52,53,51,57,93,44,91,45,55,56,46,56,48,53,49,54,55,44,52,48,46,57,48,53,57,56,93,44,91,45,55,57,46,50,49,53,51,49,44,52,48,46,57,49,49,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,51,53,54,44,34,98,101,100,115,34,58,50,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,55,55,49,57,55,44,51,50,46,52,53,51,52,53,53,93,44,91,45,57,50,46,54,50,50,51,51,53,44,51,50,46,52,57,54,52,48,54,93,44,91,45,57,50,46,52,49,53,51,53,44,51,50,46,52,57,53,52,56,54,93,44,91,45,57,50,46,52,49,53,48,55,49,44,51,50,46,53,56,50,56,52,53,93,44,91,45,57,50,46,52,49,53,48,53,44,51,50,46,54,55,48,48,53,54,93,44,91,45,57,50,46,54,50,56,50,56,56,44,51,50,46,55,53,57,54,54,57,93,44,91,45,57,50,46,55,50,53,52,51,57,44,51,50,46,55,53,57,53,52,93,44,91,45,57,50,46,56,50,56,53,51,53,44,51,50,46,55,53,56,56,49,52,93,44,91,45,57,50,46,56,56,48,56,48,53,44,51,50,46,53,56,53,50,55,55,93,44,91,45,57,50,46,56,55,57,50,54,56,44,51,50,46,52,53,52,49,49,56,93,44,91,45,57,50,46,55,55,55,49,57,55,44,51,50,46,52,53,51,52,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,57,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,44,91,45,55,55,46,50,56,57,53,57,50,44,52,48,46,53,49,56,52,53,55,93,44,91,45,55,55,46,53,52,48,49,52,49,44,52,48,46,51,57,57,50,50,49,93,44,91,45,55,55,46,54,55,49,55,54,49,44,52,48,46,50,56,57,56,50,53,93,44,91,45,55,55,46,54,49,52,54,54,53,44,52,48,46,49,57,56,53,52,57,93,44,91,45,55,55,46,52,50,54,53,57,53,44,52,48,46,50,56,54,54,49,93,44,91,45,55,55,46,50,55,48,48,53,55,44,52,48,46,50,55,56,54,53,50,93,44,91,45,55,54,46,57,49,52,57,55,44,52,48,46,51,50,56,52,56,52,93,44,91,45,55,55,46,48,50,56,54,52,53,44,52,48,46,51,57,49,49,57,55,93,44,91,45,55,54,46,57,52,57,51,57,55,44,52,48,46,52,54,57,48,51,55,93,44,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,90,105,101,98,97,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,49,52,44,34,98,101,100,115,34,58,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,57,57,57,57,57,44,52,53,46,48,51,56,50,55,52,93,44,91,45,49,48,50,46,48,48,48,52,51,50,44,52,52,46,53,49,49,54,54,51,93,44,91,45,49,48,49,46,55,56,48,55,51,51,44,52,52,46,53,51,54,52,51,54,93,44,91,45,49,48,49,46,55,49,53,48,51,56,44,52,52,46,53,55,57,52,56,51,93,44,91,45,49,48,49,46,53,51,49,48,51,53,44,52,52,46,53,54,55,56,55,53,93,44,91,45,49,48,49,46,51,50,56,50,52,53,44,52,52,46,54,57,48,57,53,54,93,44,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,48,49,46,49,51,54,49,54,50,44,52,52,46,57,57,52,48,55,52,93,44,91,45,49,48,49,46,53,48,49,48,53,51,44,52,52,46,57,57,51,55,57,53,93,44,91,45,49,48,49,46,52,55,48,49,57,44,52,53,46,52,55,50,52,49,54,93,44,91,45,49,48,49,46,57,57,57,55,57,44,52,53,46,52,55,50,52,49,52,93,44,91,45,49,48,49,46,57,57,57,57,57,44,52,53,46,48,51,56,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,51,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,54,52,53,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,48,49,55,57,44,51,50,46,54,53,50,50,48,57,93,44,91,45,57,52,46,55,48,49,57,56,54,44,51,50,46,52,50,49,55,56,50,93,44,91,45,57,52,46,53,55,57,50,49,57,44,51,50,46,51,57,52,57,49,54,93,44,91,45,57,52,46,52,57,49,56,49,56,44,51,50,46,51,57,52,49,51,55,93,44,91,45,57,52,46,51,53,52,50,57,52,44,51,50,46,51,50,57,50,48,57,93,44,91,45,57,52,46,48,52,50,57,48,49,44,51,50,46,51,57,50,50,56,51,93,44,91,45,57,52,46,48,52,51,49,52,55,44,51,50,46,54,57,51,48,51,93,44,91,45,57,52,46,49,55,50,49,51,54,44,51,50,46,54,57,54,57,93,44,91,45,57,52,46,50,56,51,48,50,56,44,51,50,46,55,52,54,55,50,57,93,44,91,45,57,52,46,51,57,48,55,56,51,44,51,50,46,54,57,52,51,55,55,93,44,91,45,57,52,46,53,48,55,51,50,51,44,51,50,46,54,57,51,55,51,56,93,44,91,45,57,52,46,55,48,50,49,52,44,51,50,46,55,57,51,48,56,56,93,44,91,45,57,52,46,55,48,49,55,57,44,51,50,46,54,53,50,50,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,97,114,97,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,48,55,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,52,51,55,51,49,44,52,55,46,48,52,51,57,53,56,93,44,91,45,56,56,46,52,53,49,50,44,52,54,46,57,51,56,57,55,54,93,44,91,45,56,56,46,53,53,49,57,52,51,44,52,54,46,56,53,49,55,57,53,93,44,91,45,56,56,46,54,55,56,57,56,51,44,52,54,46,56,53,49,56,50,50,93,44,91,45,56,56,46,54,55,57,51,57,50,44,52,54,46,52,50,48,49,51,57,93,44,91,45,56,56,46,49,49,54,53,55,49,44,52,54,46,52,49,57,57,53,49,93,44,91,45,56,56,46,49,49,53,56,52,51,44,52,54,46,54,55,56,51,56,49,93,44,91,45,56,56,46,48,52,52,55,48,57,44,52,54,46,55,54,53,51,53,51,93,44,91,45,56,56,46,48,52,51,55,51,49,44,52,55,46,48,52,51,57,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,82,111,103,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,56,49,52,44,34,98,101,100,115,34,58,49,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,51,49,53,55,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,56,48,57,53,52,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,56,49,50,51,52,50,44,51,54,46,52,50,51,53,56,93,44,91,45,57,53,46,56,49,53,52,44,51,54,46,49,54,50,54,51,93,44,91,45,57,53,46,55,54,49,54,53,44,51,54,46,49,54,50,55,53,93,44,91,45,57,53,46,54,49,56,53,50,44,51,54,46,49,54,50,53,49,50,93,44,91,45,57,53,46,53,53,50,53,56,55,44,51,54,46,48,57,49,52,56,54,93,44,91,45,57,53,46,52,51,57,57,55,44,51,54,46,48,55,53,50,93,44,91,45,57,53,46,52,51,53,54,49,44,51,54,46,53,49,48,49,54,93,44,91,45,57,53,46,51,50,56,49,55,44,51,54,46,53,49,48,50,52,93,44,91,45,57,53,46,52,51,49,53,55,44,51,54,46,53,57,55,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,53,49,53,44,34,98,101,100,115,34,58,49,50,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,52,51,48,50,50,57,44,51,57,46,50,52,56,55,57,53,93,44,91,45,57,50,46,53,53,56,48,56,54,44,51,56,46,57,55,48,54,57,50,93,44,91,45,57,50,46,52,57,56,51,55,55,44,51,56,46,57,50,50,48,56,52,93,44,91,45,57,50,46,51,55,57,54,49,52,44,51,56,46,56,48,48,48,55,54,93,44,91,45,57,50,46,51,57,52,56,54,54,44,51,56,46,55,51,57,49,51,93,44,91,45,57,50,46,51,53,55,56,49,51,44,51,56,46,54,55,57,53,49,55,93,44,91,45,57,50,46,50,50,48,54,54,49,44,51,56,46,54,52,51,49,54,55,93,44,91,45,57,50,46,49,51,53,51,57,55,44,51,56,46,56,49,53,53,56,49,93,44,91,45,57,50,46,49,54,53,49,49,55,44,51,56,46,57,48,48,57,52,56,93,44,91,45,57,50,46,49,49,48,51,56,55,44,51,57,46,48,54,52,50,48,52,93,44,91,45,57,50,46,49,48,52,51,55,52,44,51,57,46,50,51,57,56,48,57,93,44,91,45,57,50,46,51,49,52,52,55,49,44,51,57,46,50,52,54,52,53,52,93,44,91,45,57,50,46,52,51,48,50,50,57,44,51,57,46,50,52,56,55,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,97,121,97,103,195,188,101,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,50,53,53,44,34,98,101,100,115,34,58,49,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,54,55,46,57,57,56,54,57,49,44,49,56,46,49,55,48,55,54,93,44,91,45,54,55,46,57,55,54,49,51,54,44,49,56,46,48,51,57,53,57,51,93,44,91,45,54,55,46,56,50,50,52,52,49,44,49,56,46,48,50,54,52,51,49,93,44,91,45,54,55,46,55,57,49,57,56,54,44,49,56,46,49,48,55,52,53,56,93,44,91,45,54,55,46,56,53,50,52,52,51,44,49,56,46,49,55,48,49,49,49,93,44,91,45,54,55,46,57,57,56,54,57,49,44,49,56,46,49,55,48,55,54,93,93,93,44,91,91,91,45,54,55,46,50,50,53,54,54,52,44,49,56,46,49,57,54,49,53,51,93,44,91,45,54,55,46,49,53,57,55,51,51,44,49,56,46,49,53,51,50,50,55,93,44,91,45,54,55,46,48,56,54,51,53,57,44,49,56,46,49,52,57,56,50,57,93,44,91,45,54,55,46,48,53,49,52,54,49,44,49,56,46,49,55,52,48,53,51,93,44,91,45,54,55,46,48,49,57,56,51,54,44,49,56,46,49,57,53,52,55,49,93,44,91,45,54,55,46,48,56,50,48,48,50,44,49,56,46,50,53,52,57,52,54,93,44,91,45,54,55,46,50,52,51,53,53,57,44,49,56,46,50,54,56,57,50,50,93,44,91,45,54,55,46,50,53,52,50,44,49,56,46,50,53,50,54,51,56,93,44,91,45,54,55,46,50,50,53,54,54,52,44,49,56,46,49,57,54,49,53,51,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,100,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,52,50,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,50,51,51,51,54,44,51,53,46,52,54,52,50,50,53,93,44,91,45,57,56,46,54,50,48,54,57,50,44,51,53,46,48,57,55,55,54,53,93,44,91,45,57,56,46,54,49,57,56,49,54,44,51,52,46,56,53,53,51,52,93,44,91,45,57,56,46,48,57,51,49,50,55,44,51,52,46,56,53,52,57,56,56,93,44,91,45,57,56,46,48,57,54,48,49,52,44,51,53,46,51,55,55,55,53,51,93,44,91,45,57,56,46,51,48,54,51,50,54,44,51,53,46,51,55,55,50,51,57,93,44,91,45,57,56,46,51,49,51,50,53,49,44,51,53,46,53,53,49,53,50,51,93,44,91,45,57,56,46,54,50,51,50,52,52,44,51,53,46,53,53,49,53,50,50,93,44,91,45,57,56,46,54,50,51,51,51,54,44,51,53,46,52,54,52,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,48,52,50,55,44,34,98,101,100,115,34,58,54,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,51,57,55,57,52,57,44,51,57,46,55,52,54,48,52,93,44,91,45,49,48,53,46,51,57,56,57,52,57,44,51,57,46,53,54,54,48,53,54,93,44,91,45,49,48,53,46,51,57,55,56,55,53,44,51,57,46,49,50,57,53,54,52,93,44,91,45,49,48,53,46,51,51,48,52,52,52,44,51,57,46,49,50,57,54,56,53,93,44,91,45,49,48,53,46,51,50,57,50,50,44,51,57,46,49,50,57,54,56,57,93,44,91,45,49,48,53,46,50,51,51,57,51,56,44,51,57,46,50,52,54,56,54,56,93,44,91,45,49,48,53,46,48,52,56,55,52,44,51,57,46,53,54,54,48,56,56,93,44,91,45,49,48,53,46,48,53,51,52,51,55,44,51,57,46,54,50,48,57,56,52,93,44,91,45,49,48,53,46,48,57,54,57,48,57,44,51,57,46,54,49,52,52,50,51,93,44,91,45,49,48,53,46,48,53,51,50,53,54,44,51,57,46,54,54,55,55,56,53,93,44,91,45,49,48,53,46,48,53,51,50,52,54,44,51,57,46,55,57,49,48,54,51,93,44,91,45,49,48,53,46,48,53,50,56,57,50,44,51,57,46,57,49,52,50,50,52,93,44,91,45,49,48,53,46,49,52,55,49,52,51,44,51,57,46,57,49,51,56,56,57,93,44,91,45,49,48,53,46,51,57,55,56,52,57,44,51,57,46,57,49,50,56,56,54,93,44,91,45,49,48,53,46,51,57,55,57,52,57,44,51,57,46,55,52,54,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,97,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,51,49,56,44,34,98,101,100,115,34,58,49,48,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,56,55,50,55,44,51,56,46,53,56,50,55,56,51,93,44,91,45,56,50,46,51,50,51,57,57,57,44,51,56,46,52,52,57,50,54,56,93,44,91,45,56,50,46,53,48,56,50,56,44,51,56,46,52,49,49,49,57,56,93,44,91,45,56,50,46,50,54,52,56,52,57,44,51,56,46,50,50,57,49,57,57,93,44,91,45,56,50,46,49,57,53,55,53,49,44,51,56,46,51,50,51,52,57,57,93,44,91,45,56,50,46,48,52,55,49,50,56,44,51,56,46,51,55,52,52,51,50,93,44,91,45,56,50,46,48,53,53,49,50,55,44,51,56,46,52,55,52,53,52,55,93,44,91,45,56,50,46,50,49,56,57,54,55,44,51,56,46,53,57,49,54,56,51,93,44,91,45,56,50,46,50,56,55,50,55,44,51,56,46,53,56,50,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,56,51,34,44,34,78,65,77,69,34,58,34,82,101,97,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,53,50,44,34,98,101,100,115,34,58,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,55,55,53,56,48,50,44,51,49,46,54,53,49,51,49,57,93,44,91,45,49,48,49,46,55,55,54,49,57,49,44,51,49,46,48,55,57,55,56,52,93,44,91,45,49,48,49,46,50,55,52,55,57,57,44,51,49,46,48,55,57,51,55,57,93,44,91,45,49,48,49,46,50,54,55,57,52,55,44,51,49,46,53,50,56,54,56,56,93,44,91,45,49,48,49,46,50,54,55,54,51,44,51,49,46,53,53,54,52,54,50,93,44,91,45,49,48,49,46,50,54,55,49,50,50,44,51,49,46,54,53,48,56,53,52,93,44,91,45,49,48,49,46,55,55,53,56,48,50,44,51,49,46,54,53,49,51,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,86,97,110,32,66,117,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,56,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,48,57,55,54,51,44,51,53,46,55,50,50,52,48,49,93,44,91,45,57,50,46,56,49,51,52,49,55,44,51,53,46,53,52,57,93,44,91,45,57,50,46,56,53,48,54,50,52,44,51,53,46,52,54,50,57,53,93,44,91,45,57,50,46,52,55,57,50,54,56,44,51,53,46,52,53,53,51,53,55,93,44,91,45,57,50,46,52,56,49,52,54,57,44,51,53,46,51,54,56,51,57,50,93,44,91,45,57,50,46,50,53,50,55,53,57,44,51,53,46,51,54,51,55,49,56,93,44,91,45,57,50,46,50,52,48,53,50,44,51,53,46,55,49,50,49,57,93,44,91,45,57,50,46,52,49,56,52,48,56,44,51,53,46,55,49,54,48,52,54,93,44,91,45,57,50,46,52,49,54,56,52,55,44,51,53,46,55,56,56,53,57,49,93,44,91,45,57,50,46,54,50,57,56,51,55,44,51,53,46,55,57,48,56,50,51,93,44,91,45,57,50,46,54,51,49,50,48,55,44,51,53,46,55,49,56,51,54,53,93,44,91,45,57,50,46,56,48,57,55,54,51,44,51,53,46,55,50,50,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,83,117,109,109,105,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,52,50,57,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,51,52,53,48,56,44,51,57,46,57,50,52,57,49,52,93,44,91,45,49,48,54,46,51,56,53,52,55,56,44,51,57,46,55,54,55,49,54,52,93,44,91,45,49,48,54,46,49,55,54,49,49,53,44,51,57,46,54,49,52,50,50,49,93,44,91,45,49,48,54,46,50,52,56,50,57,53,44,51,57,46,53,52,52,50,53,49,93,44,91,45,49,48,54,46,50,48,54,55,51,50,44,51,57,46,51,55,57,54,51,54,93,44,91,45,49,48,54,46,49,51,53,53,50,57,44,51,57,46,51,55,57,53,52,54,93,44,91,45,49,48,53,46,57,53,49,54,57,56,44,51,57,46,52,49,52,54,49,57,93,44,91,45,49,48,53,46,56,50,57,54,54,50,44,51,57,46,53,54,52,56,54,53,93,44,91,45,49,48,53,46,55,56,50,54,55,52,44,51,57,46,54,50,57,48,50,52,93,44,91,45,49,48,53,46,57,50,52,54,49,56,44,51,57,46,54,57,56,57,55,50,93,44,91,45,49,48,54,46,48,50,51,55,56,51,44,51,57,46,54,56,56,52,50,93,44,91,45,49,48,54,46,48,56,51,55,49,49,44,51,57,46,56,48,53,57,54,52,93,44,91,45,49,48,54,46,50,53,50,48,50,55,44,51,57,46,57,49,52,55,49,50,93,44,91,45,49,48,54,46,52,51,52,53,48,56,44,51,57,46,57,50,52,57,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,111,119,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,57,49,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,44,91,45,57,55,46,49,52,55,55,50,49,44,51,54,46,57,57,57,48,51,51,93,44,91,45,57,54,46,55,52,57,56,51,56,44,51,54,46,57,57,56,57,56,56,93,44,91,45,57,54,46,53,50,53,53,56,50,44,51,54,46,57,57,56,55,49,93,44,91,45,57,54,46,53,50,52,56,55,51,44,51,55,46,51,48,50,55,51,93,44,91,45,57,54,46,53,50,53,54,57,44,51,55,46,52,55,54,52,48,53,93,44,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,57,49,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,57,53,57,56,49,44,51,53,46,55,54,56,54,52,57,93,44,91,45,57,51,46,55,49,48,48,55,54,44,51,53,46,51,55,53,50,52,50,93,44,91,45,57,51,46,52,51,48,52,49,44,51,53,46,52,50,51,55,51,55,93,44,91,45,57,51,46,50,57,57,48,49,44,51,53,46,51,50,55,54,52,52,93,44,91,45,57,51,46,50,57,53,57,49,44,51,53,46,52,54,57,57,49,53,93,44,91,45,57,51,46,50,50,51,54,51,51,44,51,53,46,52,54,56,53,57,51,93,44,91,45,57,51,46,49,54,55,56,44,51,53,46,53,57,55,54,57,53,93,44,91,45,57,51,46,49,54,52,52,53,50,44,51,53,46,55,50,56,56,51,49,93,44,91,45,57,51,46,53,49,57,53,55,53,44,51,53,46,55,51,52,52,50,50,93,44,91,45,57,51,46,53,49,57,50,48,52,44,51,53,46,55,54,51,53,50,49,93,44,91,45,57,51,46,54,57,53,57,56,49,44,51,53,46,55,54,56,54,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,56,53,52,49,55,49,44,52,52,46,48,55,48,48,56,57,93,44,91,45,55,52,46,55,55,53,54,49,55,44,52,51,46,52,56,54,54,55,55,93,44,91,45,55,52,46,56,54,55,55,49,50,44,52,51,46,51,51,57,56,50,54,93,44,91,45,55,52,46,55,49,50,54,49,53,44,52,51,46,50,56,54,49,52,51,93,44,91,45,55,52,46,53,51,52,54,53,55,44,52,51,46,50,50,56,49,49,53,93,44,91,45,55,52,46,49,52,48,49,52,55,44,52,51,46,50,53,51,57,55,57,93,44,91,45,55,52,46,49,54,48,49,44,52,51,46,51,55,49,53,51,50,93,44,91,45,55,52,46,50,49,52,54,50,53,44,52,51,46,55,50,56,55,48,51,93,44,91,45,55,52,46,48,53,55,48,48,53,44,52,51,46,55,52,52,53,49,51,93,44,91,45,55,52,46,50,49,51,55,51,52,44,52,51,46,56,49,48,56,55,53,93,44,91,45,55,52,46,51,51,54,56,50,54,44,52,51,46,57,50,53,50,50,51,93,44,91,45,55,52,46,50,53,53,57,57,56,44,52,51,46,57,54,57,55,57,55,93,44,91,45,55,52,46,50,56,49,56,55,44,52,52,46,49,50,48,53,53,50,93,44,91,45,55,52,46,53,51,53,49,53,54,44,52,52,46,48,57,57,50,53,93,44,91,45,55,52,46,56,53,52,49,55,49,44,52,52,46,48,55,48,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,114,97,105,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,52,55,50,55,56,50,44,51,55,46,52,50,51,55,51,93,44,91,45,56,48,46,52,51,48,57,52,51,44,51,55,46,51,49,54,51,55,56,93,44,91,45,56,48,46,50,54,50,49,56,52,44,51,55,46,51,52,49,53,50,54,93,44,91,45,56,48,46,48,55,52,49,49,57,44,51,55,46,52,50,50,52,54,57,93,44,91,45,55,57,46,57,54,57,48,55,49,44,51,55,46,53,52,52,52,48,56,93,44,91,45,56,48,46,48,50,48,53,53,52,44,51,55,46,54,52,55,52,52,50,93,44,91,45,56,48,46,49,52,52,51,57,52,44,51,55,46,53,57,54,54,50,55,93,44,91,45,56,48,46,50,50,48,57,56,52,44,51,55,46,54,50,55,55,54,55,93,44,91,45,56,48,46,50,57,57,55,56,57,44,51,55,46,53,48,56,50,55,49,93,44,91,45,56,48,46,52,55,50,55,56,50,44,51,55,46,52,50,51,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,67,111,108,101,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,57,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,55,49,51,57,55,49,44,51,50,46,48,56,50,48,56,57,93,44,91,45,57,57,46,55,50,49,54,57,56,44,51,49,46,53,55,54,55,53,57,93,44,91,45,57,57,46,54,48,49,56,53,44,51,49,46,52,57,49,57,53,93,44,91,45,57,57,46,51,48,50,54,48,53,44,51,49,46,52,51,50,53,48,52,93,44,91,45,57,57,46,50,48,50,55,54,56,44,51,49,46,52,54,55,50,51,52,93,44,91,45,57,57,46,49,57,53,56,55,49,44,51,50,46,48,55,57,50,51,53,93,44,91,45,57,57,46,54,51,49,52,49,51,44,51,50,46,48,56,49,50,55,52,93,44,91,45,57,57,46,55,49,51,57,55,49,44,51,50,46,48,56,50,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,57,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,48,34,44,34,78,65,77,69,34,58,34,89,117,107,111,110,45,75,111,121,117,107,117,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,49,46,48,48,50,54,57,52,44,54,56,46,52,57,56,51,54,52,93,44,91,45,49,52,51,46,53,50,56,56,50,51,44,54,56,46,53,48,48,48,50,49,93,44,91,45,49,52,54,44,54,56,46,53,93,44,91,45,49,52,54,44,54,56,93,44,91,45,49,52,55,46,55,53,51,49,49,55,44,54,55,46,57,57,57,57,56,56,93,44,91,45,49,52,57,46,51,50,53,52,51,44,54,55,46,57,57,57,57,57,57,93,44,91,45,49,53,48,46,56,57,48,48,50,56,44,54,56,46,48,48,48,48,48,52,93,44,91,45,49,53,49,46,57,48,48,50,55,54,44,54,56,46,48,48,48,48,48,55,93,44,91,45,49,53,51,46,52,48,52,49,53,50,44,54,56,93,44,91,45,49,53,53,46,51,49,56,55,52,52,44,54,56,46,48,48,48,48,51,50,93,44,91,45,49,53,53,46,51,54,56,57,57,57,44,54,55,46,55,55,53,50,49,54,93,44,91,45,49,53,52,46,55,52,56,57,51,57,44,54,55,46,53,49,53,52,57,53,93,44,91,45,49,53,52,46,55,52,56,57,48,52,44,54,55,46,50,53,53,55,53,51,93,44,91,45,49,53,52,46,51,48,51,49,49,44,54,55,46,50,53,53,55,53,57,93,44,91,45,49,53,52,46,49,52,54,51,49,52,44,54,55,46,49,54,57,49,55,56,93,44,91,45,49,53,52,46,49,52,54,50,50,49,44,54,54,46,56,50,50,56,52,51,93,44,91,45,49,53,52,46,50,49,48,51,48,50,44,54,54,46,55,51,54,50,53,53,93,44,91,45,49,53,52,46,56,54,48,52,52,54,44,54,54,46,55,51,54,50,52,50,93,44,91,45,49,53,52,46,56,54,48,52,51,49,44,54,54,46,53,54,51,48,54,52,93,44,91,45,49,53,53,46,53,49,48,53,56,53,44,54,54,46,53,54,51,48,53,49,93,44,91,45,49,53,53,46,53,53,52,57,57,51,44,54,54,46,51,48,51,50,55,52,93,44,91,45,49,53,53,46,57,56,50,52,57,57,44,54,54,46,51,48,51,50,54,56,93,44,91,45,49,53,53,46,57,56,50,53,48,52,44,54,54,46,51,56,57,56,54,93,44,91,45,49,53,54,46,49,57,54,50,50,52,44,54,54,46,52,55,54,53,56,50,93,44,91,45,49,53,54,46,54,50,51,55,55,44,54,54,46,52,55,54,52,52,50,93,44,91,45,49,53,54,46,54,50,51,55,53,55,44,54,54,46,51,48,51,50,53,57,93,44,91,45,49,53,55,46,48,53,49,50,54,54,44,54,54,46,51,48,51,50,53,52,93,44,91,45,49,53,55,46,48,53,49,50,56,52,44,54,54,46,52,55,54,52,51,56,93,44,91,45,49,53,55,46,57,48,54,51,49,44,54,54,46,52,55,54,52,50,52,93,44,91,45,49,53,55,46,57,48,54,50,57,53,44,54,54,46,49,51,48,48,52,57,93,44,91,45,49,53,56,46,57,55,50,49,56,53,44,54,54,46,49,51,48,48,50,55,93,44,91,45,49,53,56,46,57,55,50,49,55,53,44,54,53,46,57,53,54,56,52,57,93,44,91,45,49,53,57,46,54,48,52,56,49,51,44,54,53,46,57,53,54,56,51,93,44,91,45,49,53,57,46,53,57,51,53,48,54,44,54,53,46,53,50,51,56,51,53,93,44,91,45,49,53,57,46,51,56,53,53,55,56,44,54,53,46,53,50,51,56,51,53,93,44,91,45,49,53,57,46,51,55,55,51,54,53,44,54,53,46,50,54,52,48,51,51,93,44,91,45,49,53,57,46,53,56,50,55,51,54,44,54,53,46,50,54,52,48,50,54,93,44,91,45,49,53,57,46,53,55,50,49,55,51,44,54,52,46,57,49,55,53,57,55,93,44,91,45,49,53,57,46,55,55,52,57,50,49,44,54,52,46,57,49,55,53,54,53,93,44,91,45,49,53,57,46,55,55,52,56,57,55,44,54,52,46,55,52,52,51,56,50,93,44,91,45,49,53,57,46,57,54,50,50,57,44,54,52,46,55,52,52,51,55,55,93,44,91,45,49,53,57,46,57,52,55,50,56,56,44,54,52,46,48,53,49,52,53,57,93,44,91,45,49,53,57,46,55,51,55,52,55,53,44,54,52,46,48,53,49,52,53,57,93,44,91,45,49,53,57,46,55,51,55,52,53,49,44,54,51,46,55,57,49,53,57,49,93,44,91,45,49,53,57,46,57,51,50,55,51,49,44,54,51,46,55,57,49,53,56,57,93,44,91,45,49,54,48,46,49,49,49,52,57,56,44,54,51,46,55,48,52,57,55,50,93,44,91,45,49,54,48,46,49,49,49,53,50,50,44,54,51,46,54,49,56,51,53,49,93,44,91,45,49,54,48,46,52,57,55,51,56,49,44,54,51,46,54,49,56,51,52,51,93,44,91,45,49,54,48,46,54,57,48,50,57,52,44,54,51,46,53,51,49,54,56,57,93,44,91,45,49,54,48,46,54,54,55,51,54,49,44,54,51,46,50,55,49,56,52,53,93,44,91,45,49,54,48,46,56,53,56,48,48,52,44,54,51,46,50,55,49,56,51,56,93,44,91,45,49,54,48,46,56,53,55,57,57,44,54,51,46,48,49,49,57,53,51,93,44,91,45,49,54,48,46,57,57,54,50,49,53,44,54,50,46,56,57,56,57,51,54,93,44,91,45,49,54,48,46,57,57,54,50,48,49,44,54,50,46,53,53,50,52,50,52,93,44,91,45,49,54,49,46,48,52,56,49,55,54,44,54,50,46,53,53,50,52,49,93,44,91,45,49,54,49,46,48,52,56,49,54,53,44,54,50,46,50,48,53,56,54,57,93,44,91,45,49,54,48,46,57,49,53,57,54,52,44,54,50,46,50,48,53,56,54,54,93,44,91,45,49,54,48,46,57,49,53,57,53,51,44,54,49,46,57,52,53,57,52,51,93,44,91,45,49,54,48,46,53,51,52,54,55,49,44,54,49,46,57,52,53,57,52,93,44,91,45,49,53,57,46,50,54,53,48,51,55,44,54,49,46,57,52,53,57,53,55,93,44,91,45,49,53,57,46,50,54,53,48,51,53,44,54,50,46,48,51,50,53,57,56,93,44,91,45,49,53,56,46,53,51,49,51,53,49,44,54,50,46,48,51,50,54,50,93,44,91,45,49,53,56,46,53,51,49,51,54,49,44,54,50,46,49,49,57,50,54,52,93,44,91,45,49,53,55,46,48,54,51,56,54,52,44,54,50,46,49,49,57,50,55,49,93,44,91,45,49,53,55,46,48,54,51,56,53,50,44,54,50,46,48,51,50,54,51,52,93,44,91,45,49,53,53,46,52,57,55,54,52,53,44,54,50,46,48,51,50,54,53,57,93,44,91,45,49,53,51,46,55,54,49,56,55,53,44,54,50,46,48,51,50,54,56,57,93,44,91,45,49,53,51,46,55,54,49,56,55,49,44,54,50,46,49,49,57,51,51,53,93,44,91,45,49,53,51,46,51,57,53,48,48,57,44,54,50,46,49,49,57,51,52,55,93,44,91,45,49,53,51,46,51,57,53,48,48,57,44,54,50,46,50,48,53,57,57,93,44,91,45,49,53,51,46,48,55,48,49,50,51,44,54,50,46,50,48,54,48,49,53,93,44,91,45,49,53,50,46,57,57,57,56,51,57,44,54,50,46,50,57,50,54,50,49,93,44,91,45,49,53,50,46,57,57,55,54,52,55,44,54,50,46,55,50,55,52,48,49,93,44,91,45,49,53,50,46,52,50,56,48,56,52,44,54,51,46,49,56,51,49,55,49,93,44,91,45,49,53,50,46,52,50,56,48,57,56,44,54,51,46,51,48,52,50,53,57,93,44,91,45,49,53,50,46,56,49,48,57,51,49,44,54,51,46,51,52,55,53,54,51,93,44,91,45,49,53,50,46,56,55,51,51,57,50,44,54,51,46,52,55,55,53,93,44,91,45,49,53,50,46,56,55,51,52,49,44,54,51,46,54,53,48,55,52,53,93,44,91,45,49,53,50,46,50,50,56,52,51,57,44,54,51,46,54,53,48,55,54,93,44,91,45,49,53,50,46,50,50,57,50,53,54,44,54,51,46,56,50,52,48,48,49,93,44,91,45,49,53,50,46,48,53,53,49,51,50,44,54,51,46,56,50,52,48,48,54,93,44,91,45,49,53,50,46,48,53,53,55,53,56,44,54,51,46,57,57,55,50,52,50,93,44,91,45,49,53,49,46,55,57,51,57,55,54,44,54,52,46,48,54,57,52,51,93,44,91,45,49,53,49,46,50,56,49,57,57,53,44,54,51,46,57,57,55,50,54,53,93,44,91,45,49,53,48,46,55,50,57,51,56,53,44,54,52,46,51,53,56,49,55,51,93,44,91,45,49,52,57,46,49,51,50,54,53,51,44,54,52,46,51,53,56,50,49,52,93,44,91,45,49,52,56,46,48,52,54,54,57,54,44,54,52,46,51,52,51,56,48,50,93,44,91,45,49,52,56,46,53,53,48,55,52,50,44,54,52,46,54,49,55,50,48,56,93,44,91,45,49,52,56,46,54,52,56,50,48,55,44,54,52,46,53,56,53,51,55,49,93,44,91,45,49,52,56,46,54,54,49,49,57,57,44,54,53,46,50,48,57,56,55,53,93,44,91,45,49,52,55,46,53,53,55,55,55,49,44,54,53,46,50,48,57,56,57,53,93,44,91,45,49,52,55,46,51,49,54,56,48,57,44,54,53,46,50,55,53,50,51,50,93,44,91,45,49,52,54,46,57,48,51,49,52,50,44,54,53,46,50,56,51,51,55,53,93,44,91,45,49,52,54,46,53,52,56,54,53,52,44,54,53,46,51,52,53,48,48,51,93,44,91,45,49,52,54,46,50,48,53,55,48,52,44,54,53,46,52,53,50,57,57,54,93,44,91,45,49,52,54,46,48,48,55,56,57,57,44,54,53,46,51,53,57,52,51,52,93,44,91,45,49,52,54,46,48,56,49,48,50,56,44,54,53,46,50,52,57,57,52,50,93,44,91,45,49,52,53,46,54,51,51,55,56,57,44,54,53,46,49,53,51,55,57,49,93,44,91,45,49,52,53,46,53,49,57,52,51,54,44,54,53,46,48,54,50,54,56,50,93,44,91,45,49,52,53,46,50,50,53,57,52,52,44,54,53,46,48,54,57,50,49,54,93,44,91,45,49,52,52,46,57,56,51,53,49,52,44,54,53,46,49,51,54,57,56,56,93,44,91,45,49,52,52,46,52,54,48,48,50,44,54,53,46,48,54,48,55,49,49,93,44,91,45,49,52,52,46,51,51,49,51,55,55,44,54,53,46,49,48,55,55,48,55,93,44,91,45,49,52,51,46,57,55,51,54,51,57,44,54,53,46,49,49,57,51,48,52,93,44,91,45,49,52,51,46,57,50,49,48,57,52,44,54,53,46,48,53,56,55,56,93,44,91,45,49,52,52,46,49,48,52,55,52,52,44,54,52,46,56,52,57,50,51,49,93,44,91,45,49,52,52,46,48,54,57,48,50,57,44,54,52,46,54,56,51,53,54,50,93,44,91,45,49,52,51,46,55,53,50,48,57,49,44,54,52,46,54,52,55,54,49,56,93,44,91,45,49,52,51,46,53,51,51,55,52,56,44,54,52,46,55,55,56,55,53,53,93,44,91,45,49,52,51,46,52,54,57,54,54,55,44,54,52,46,57,56,50,49,56,57,93,44,91,45,49,52,51,46,48,52,52,48,53,53,44,54,53,46,49,51,50,51,50,55,93,44,91,45,49,52,50,46,56,54,52,51,52,52,44,54,53,46,49,52,48,51,56,55,93,44,91,45,49,52,50,46,55,51,49,57,44,54,53,46,50,51,51,54,51,57,93,44,91,45,49,52,50,46,54,54,51,55,55,50,44,54,53,46,51,55,49,56,55,54,93,44,91,45,49,52,50,46,52,56,55,51,48,49,44,54,53,46,51,55,49,56,57,56,93,44,91,45,49,52,50,46,49,52,50,57,50,50,44,54,53,46,52,54,51,49,55,52,93,44,91,45,49,52,49,46,56,53,53,55,54,49,44,54,53,46,52,52,53,55,56,54,93,44,91,45,49,52,49,46,55,56,57,48,53,44,54,53,46,53,48,49,53,52,54,93,44,91,45,49,52,49,46,51,56,55,56,52,50,44,54,53,46,54,49,52,51,57,53,93,44,91,45,49,52,49,46,51,51,54,50,50,52,44,54,53,46,55,49,49,54,49,52,93,44,91,45,49,52,49,46,48,48,50,52,55,50,44,54,53,46,56,51,57,52,50,49,93,44,91,45,49,52,49,46,48,48,50,53,57,54,44,54,54,46,53,49,52,50,55,93,44,91,45,49,52,49,46,48,48,50,54,57,51,44,54,55,46,54,55,49,57,50,57,93,44,91,45,49,52,49,46,48,48,50,54,57,52,44,54,56,46,52,57,56,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,78,97,118,97,106,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,55,48,53,44,34,98,101,100,115,34,58,49,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,55,53,48,54,57,44,51,55,46,48,48,51,48,48,55,93,44,91,45,49,49,48,46,55,53,48,54,57,55,44,51,53,46,56,50,48,53,56,57,93,44,91,45,49,49,48,46,55,53,48,54,57,51,44,51,53,46,49,52,48,51,48,57,93,44,91,45,49,49,48,46,55,53,48,54,55,56,44,51,52,46,50,54,51,51,49,52,93,44,91,45,49,49,48,46,55,53,48,54,55,50,44,51,52,46,48,48,48,48,52,56,93,44,91,45,49,49,48,46,48,48,48,54,54,44,51,52,46,48,48,48,48,52,54,93,44,91,45,49,49,48,46,48,48,48,54,52,57,44,51,51,46,53,55,54,57,51,93,44,91,45,49,48,57,46,56,57,49,54,55,54,44,51,51,46,53,54,55,56,55,52,93,44,91,45,49,48,57,46,56,53,57,50,55,52,44,51,51,46,55,55,55,54,56,51,93,44,91,45,49,48,57,46,56,52,56,50,52,54,44,51,52,46,52,55,51,52,48,49,93,44,91,45,49,48,57,46,56,54,52,57,56,57,44,51,52,46,53,54,54,56,57,51,93,44,91,45,49,48,57,46,56,52,52,54,50,52,44,51,52,46,56,50,50,53,54,50,93,44,91,45,49,48,57,46,56,52,51,55,54,52,44,51,53,46,53,49,55,56,55,53,93,44,91,45,49,48,57,46,56,50,54,57,54,52,44,51,53,46,54,54,50,56,56,55,93,44,91,45,49,49,48,46,48,48,48,54,55,52,44,51,53,46,54,54,51,48,56,55,93,44,91,45,49,49,48,46,48,48,48,54,55,54,44,51,54,46,52,52,53,50,56,52,93,44,91,45,49,49,48,46,48,48,48,54,56,56,44,51,54,46,57,57,56,51,52,57,93,44,91,45,49,49,48,46,55,53,48,54,57,44,51,55,46,48,48,51,48,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,51,50,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,52,53,49,57,49,44,51,49,46,55,49,55,53,50,52,93,44,91,45,57,48,46,50,55,57,57,53,51,44,51,49,46,54,57,57,56,54,53,93,44,91,45,57,48,46,55,51,54,56,50,52,44,51,49,46,54,57,56,52,57,49,93,44,91,45,57,48,46,55,51,55,51,51,44,51,49,46,54,49,49,49,50,52,93,44,91,45,57,48,46,54,51,51,50,51,49,44,51,49,46,54,49,49,52,48,57,93,44,91,45,57,48,46,54,51,51,51,48,50,44,51,49,46,51,52,57,51,48,54,93,44,91,45,57,48,46,53,52,56,49,57,57,44,51,49,46,51,52,57,53,55,52,93,44,91,45,57,48,46,50,54,48,51,57,49,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,50,52,51,56,57,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,50,52,53,49,57,49,44,51,49,46,55,49,55,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,53,55,34,44,34,78,65,77,69,34,58,34,79,99,104,105,108,116,114,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,52,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,56,53,55,49,54,44,51,54,46,48,53,55,53,55,50,93,44,91,45,49,48,48,46,53,52,54,55,50,52,44,51,54,46,48,53,54,53,51,54,93,44,91,45,49,48,48,46,53,52,54,49,52,53,44,51,54,46,52,57,57,51,52,51,93,44,91,45,49,48,48,46,57,53,52,49,53,51,44,51,54,46,52,57,57,57,49,54,93,44,91,45,49,48,49,46,48,56,53,49,53,54,44,51,54,46,52,57,57,50,52,52,93,44,91,45,49,48,49,46,48,56,53,55,49,54,44,51,54,46,48,53,55,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,67,114,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,55,54,55,50,52,54,44,51,49,46,54,53,49,55,49,52,93,44,91,45,49,48,50,46,55,54,55,51,54,53,44,51,49,46,50,57,51,56,48,51,93,44,91,45,49,48,50,46,54,55,51,50,52,52,44,51,49,46,51,50,56,49,48,53,93,44,91,45,49,48,50,46,52,51,48,49,50,51,44,51,49,46,49,57,51,57,49,56,93,44,91,45,49,48,50,46,51,56,56,56,48,52,44,51,49,46,48,56,55,49,53,54,93,44,91,45,49,48,50,46,51,48,49,50,49,50,44,51,49,46,48,56,54,50,49,50,93,44,91,45,49,48,50,46,51,49,56,48,53,44,51,49,46,54,53,49,51,50,55,93,44,91,45,49,48,50,46,55,54,55,50,52,54,44,51,49,46,54,53,49,55,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,105,103,32,72,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,54,50,49,51,49,53,44,52,53,46,48,48,48,51,54,49,93,44,91,45,49,48,56,46,53,57,50,50,57,54,44,52,52,46,56,55,49,52,52,52,93,44,91,45,49,48,56,46,53,53,48,53,54,50,44,52,52,46,49,54,56,52,53,53,93,44,91,45,49,48,55,46,49,52,54,56,48,56,44,52,52,46,49,54,53,54,54,54,93,44,91,45,49,48,55,46,49,52,53,48,48,49,44,52,52,46,51,50,52,48,48,52,93,44,91,45,49,48,55,46,50,48,50,48,51,56,44,52,52,46,52,52,54,51,48,53,93,44,91,45,49,48,55,46,51,54,57,54,50,49,44,52,52,46,53,53,57,56,51,55,93,44,91,45,49,48,55,46,53,50,56,50,55,57,44,52,52,46,54,54,53,53,56,52,93,44,91,45,49,48,55,46,55,52,49,53,52,51,44,52,52,46,55,49,52,51,53,50,93,44,91,45,49,48,55,46,56,51,49,54,50,50,44,52,52,46,55,57,57,55,56,55,93,44,91,45,49,48,55,46,57,49,49,53,50,51,44,52,53,46,48,48,48,54,55,56,93,44,91,45,49,48,56,46,50,52,57,52,49,50,44,52,52,46,57,57,57,57,48,52,93,44,91,45,49,48,56,46,54,50,49,51,49,53,44,52,53,46,48,48,48,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,72,105,99,107,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,54,55,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,49,54,55,54,44,51,53,46,56,51,56,55,53,93,44,91,45,56,55,46,55,52,51,55,53,44,51,53,46,54,54,51,57,53,50,93,44,91,45,56,55,46,54,53,56,49,56,57,44,51,53,46,54,48,57,51,52,57,93,44,91,45,56,55,46,53,54,56,56,51,49,44,51,53,46,54,53,50,50,57,54,93,44,91,45,56,55,46,52,53,57,53,56,55,44,51,53,46,54,49,53,49,50,52,93,44,91,45,56,55,46,51,51,57,50,51,50,44,51,53,46,54,53,57,49,49,93,44,91,45,56,55,46,50,51,52,49,52,51,44,51,53,46,55,50,52,54,57,49,93,44,91,45,56,55,46,50,49,53,48,57,57,44,51,53,46,56,53,48,54,53,49,93,44,91,45,56,55,46,50,48,52,50,52,50,44,51,53,46,57,53,57,49,56,54,93,44,91,45,56,55,46,53,51,52,53,51,44,51,53,46,57,57,51,48,55,52,93,44,91,45,56,55,46,55,48,54,57,54,44,51,53,46,57,48,53,56,56,52,93,44,91,45,56,55,46,55,49,54,55,54,44,51,53,46,56,51,56,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,84,117,110,105,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,55,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,48,55,57,57,49,44,51,52,46,56,51,50,57,55,93,44,91,45,57,48,46,53,49,55,49,54,56,44,51,52,46,54,51,48,57,50,56,93,44,91,45,57,48,46,53,56,51,50,50,52,44,51,52,46,54,52,49,51,56,57,93,44,91,45,57,48,46,53,54,57,51,52,55,44,51,52,46,53,50,52,56,54,55,93,44,91,45,57,48,46,51,57,57,52,57,56,44,51,52,46,52,50,51,56,48,55,93,44,91,45,57,48,46,51,48,52,51,49,55,44,51,52,46,53,48,57,54,50,49,93,44,91,45,57,48,46,49,57,56,53,51,54,44,51,52,46,53,49,49,48,56,56,93,44,91,45,57,48,46,49,57,56,54,51,49,44,51,52,46,53,53,52,52,50,53,93,44,91,45,57,48,46,50,52,51,57,50,52,44,51,52,46,54,48,50,49,53,93,44,91,45,57,48,46,50,48,48,49,57,57,44,51,52,46,55,50,52,52,49,56,93,44,91,45,57,48,46,50,48,50,49,50,54,44,51,52,46,56,54,48,51,55,52,93,44,91,45,57,48,46,51,48,52,53,51,50,44,51,52,46,56,54,48,53,56,56,93,44,91,45,57,48,46,52,48,55,57,57,49,44,51,52,46,56,51,50,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,53,52,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,51,50,50,52,44,52,48,46,53,55,49,57,48,49,93,44,91,45,57,52,46,50,49,52,50,55,56,44,52,48,46,51,56,52,50,53,52,93,44,91,45,57,52,46,50,49,54,54,57,54,44,52,48,46,49,51,54,54,50,54,93,44,91,45,57,51,46,55,54,52,48,50,49,44,52,48,46,49,51,50,57,48,57,93,44,91,45,57,51,46,55,54,51,51,50,52,44,52,48,46,50,54,51,57,56,56,93,44,91,45,57,51,46,55,55,52,51,52,52,44,52,48,46,53,55,55,53,52,56,93,44,91,45,57,52,46,48,49,53,52,57,50,44,52,48,46,53,55,51,57,49,52,93,44,91,45,57,52,46,50,51,50,50,52,44,52,48,46,53,55,49,57,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,97,110,195,179,118,97,110,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,49,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,49,57,50,55,56,44,49,56,46,52,48,50,57,57,51,93,44,91,45,54,53,46,57,49,56,53,51,53,44,49,56,46,50,55,48,49,51,93,44,91,45,54,53,46,56,53,50,54,49,54,44,49,56,46,50,53,52,57,55,50,93,44,91,45,54,53,46,56,51,54,51,56,55,44,49,56,46,50,55,53,50,52,54,93,44,91,45,54,53,46,56,54,55,52,52,55,44,49,56,46,51,55,56,49,57,56,93,44,91,45,54,53,46,57,49,57,50,55,56,44,49,56,46,52,48,50,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,114,116,104,111,108,111,109,101,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,56,57,51,44,34,98,101,100,115,34,58,50,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,56,53,54,48,49,44,51,57,46,51,52,52,49,56,57,93,44,91,45,56,54,46,48,56,48,50,55,50,44,51,57,46,48,53,48,50,55,93,44,91,45,56,53,46,56,54,48,53,55,51,44,51,57,46,48,52,48,57,49,93,44,91,45,56,53,46,55,57,56,56,48,52,44,51,57,46,48,54,56,53,51,54,93,44,91,45,56,53,46,54,56,54,55,56,51,44,51,57,46,49,51,48,56,53,57,93,44,91,45,56,53,46,54,56,52,53,49,53,44,51,57,46,51,53,48,48,52,57,93,44,91,45,56,53,46,57,53,50,48,48,53,44,51,57,46,51,52,55,51,55,51,93,44,91,45,56,54,46,48,56,53,54,48,49,44,51,57,46,51,52,52,49,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,51,34,44,34,78,65,77,69,34,58,34,80,97,117,108,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,56,52,48,44,34,98,101,100,115,34,58,49,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,50,50,55,52,50,44,51,52,46,48,56,50,52,57,55,93,44,91,45,56,52,46,57,55,56,54,56,51,44,51,51,46,57,53,49,51,57,51,93,44,91,45,56,53,46,48,53,48,51,49,44,51,51,46,57,48,52,52,56,56,93,44,91,45,56,53,46,48,51,55,57,50,54,44,51,51,46,56,49,49,57,52,50,93,44,91,45,56,52,46,57,48,49,54,56,56,44,51,51,46,55,56,48,55,48,51,93,44,91,45,56,52,46,55,50,52,49,51,57,44,51,51,46,56,48,54,49,55,93,44,91,45,56,52,46,55,51,55,56,51,54,44,51,52,46,48,55,57,51,57,57,93,44,91,45,56,52,46,57,50,50,55,52,50,44,51,52,46,48,56,50,52,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,54,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,57,51,49,50,44,51,57,46,50,53,52,50,51,53,93,44,91,45,56,52,46,48,53,50,55,48,57,44,51,56,46,55,55,49,50,50,54,93,44,91,45,56,51,46,57,48,51,57,48,49,44,51,56,46,55,54,56,49,56,50,93,44,91,45,56,51,46,55,48,53,51,49,49,44,51,56,46,54,51,57,56,53,51,93,44,91,45,56,51,46,54,55,51,48,49,56,44,51,57,46,48,50,48,52,51,93,44,91,45,56,51,46,56,55,50,50,49,52,44,51,57,46,48,50,49,51,48,52,93,44,91,45,56,51,46,56,54,53,54,55,57,44,51,57,46,50,52,55,51,51,51,93,44,91,45,56,51,46,57,57,51,49,50,44,51,57,46,50,53,52,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,52,52,48,44,34,98,101,100,115,34,58,50,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,57,53,49,50,52,44,51,54,46,51,48,50,50,55,56,93,44,91,45,56,53,46,54,51,52,49,53,56,44,51,54,46,50,49,51,51,52,54,93,44,91,45,56,53,46,55,56,48,49,52,56,44,51,54,46,50,51,56,48,49,49,93,44,91,45,56,53,46,56,48,55,52,49,53,44,51,54,46,49,51,49,53,56,50,93,44,91,45,56,53,46,54,52,52,54,48,52,44,51,54,46,48,49,53,48,53,51,93,44,91,45,56,53,46,53,48,55,54,55,55,44,51,54,46,48,56,50,48,49,50,93,44,91,45,56,53,46,51,53,54,54,49,57,44,51,54,46,48,52,53,56,57,51,93,44,91,45,56,53,46,50,54,52,50,48,54,44,51,53,46,57,55,57,49,53,52,93,44,91,45,56,53,46,50,51,53,55,53,55,44,51,54,46,49,48,53,55,53,50,93,44,91,45,56,53,46,49,48,48,50,49,51,44,51,54,46,49,51,56,53,54,49,93,44,91,45,56,53,46,49,49,57,53,56,51,44,51,54,46,49,52,52,55,49,57,93,44,91,45,56,53,46,52,49,57,52,51,50,44,51,54,46,50,51,54,49,52,53,93,44,91,45,56,53,46,52,57,53,49,50,52,44,51,54,46,51,48,50,50,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,87,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,48,51,52,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,50,51,51,56,57,50,44,52,56,46,53,52,54,51,51,57,93,44,91,45,49,48,49,46,57,55,51,50,56,50,44,52,56,46,53,52,54,52,56,53,93,44,91,45,49,48,49,46,57,50,50,50,51,55,44,52,56,46,51,55,50,51,51,93,44,91,45,49,48,49,46,57,50,50,49,50,51,44,52,56,46,48,50,51,49,55,51,93,44,91,45,49,48,49,46,56,55,49,56,54,50,44,52,55,46,56,52,55,53,56,57,93,44,91,45,49,48,48,46,57,55,49,49,53,56,44,52,55,46,56,52,56,54,57,54,93,44,91,45,49,48,49,46,48,49,53,48,50,52,44,52,56,46,48,50,50,55,51,57,93,44,91,45,49,48,49,46,48,49,52,50,51,50,44,52,56,46,51,55,49,52,51,50,93,44,91,45,49,48,49,46,48,53,57,56,51,51,44,52,56,46,52,53,56,52,52,56,93,44,91,45,49,48,49,46,56,52,50,56,52,49,44,52,56,46,52,53,57,52,51,57,93,44,91,45,49,48,49,46,56,52,50,50,52,52,44,52,56,46,55,50,48,48,54,52,93,44,91,45,49,48,50,46,48,50,49,52,50,56,44,52,56,46,55,50,48,50,56,51,93,44,91,45,49,48,50,46,48,50,49,54,52,51,44,52,56,46,56,48,55,49,48,56,93,44,91,45,49,48,50,46,49,53,50,49,54,52,44,52,56,46,56,48,55,50,93,44,91,45,49,48,50,46,50,51,51,54,44,52,56,46,55,50,48,50,57,93,44,91,45,49,48,50,46,50,51,51,56,57,50,44,52,56,46,53,52,54,51,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,87,111,114,99,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,50,50,56,48,44,34,98,101,100,115,34,58,50,52,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,51,49,52,50,53,51,44,52,50,46,51,52,51,54,56,56,93,44,91,45,55,50,46,50,50,49,50,49,56,44,52,50,46,50,52,53,50,53,50,93,44,91,45,55,50,46,49,51,53,48,49,49,44,52,50,46,49,54,49,55,56,52,93,44,91,45,55,50,46,49,51,53,55,49,53,44,52,50,46,48,51,48,50,50,50,93,44,91,45,55,50,46,49,48,50,49,55,44,52,50,46,48,50,56,56,54,57,93,44,91,45,55,49,46,55,57,57,49,56,56,44,52,50,46,48,48,56,48,53,51,93,44,91,45,55,49,46,52,57,56,50,53,57,44,52,50,46,48,49,55,50,55,50,93,44,91,45,55,49,46,52,55,56,49,49,57,44,52,50,46,49,53,54,55,56,50,93,44,91,45,55,49,46,53,56,50,57,49,44,52,50,46,49,57,53,53,53,57,93,44,91,45,55,49,46,53,56,53,50,49,44,52,50,46,51,49,48,57,53,50,93,44,91,45,55,49,46,53,51,49,51,55,55,44,52,50,46,53,50,48,51,53,50,93,44,91,45,55,49,46,54,54,52,54,48,49,44,52,50,46,54,49,49,53,57,56,93,44,91,45,55,49,46,56,52,52,56,52,51,44,52,50,46,54,51,55,57,56,53,93,44,91,45,55,49,46,56,57,56,55,55,51,44,52,50,46,55,49,49,51,49,50,93,44,91,45,55,49,46,57,50,56,57,57,51,44,52,50,46,55,49,50,49,48,50,93,44,91,45,55,50,46,50,56,51,48,52,53,44,52,50,46,55,50,49,54,49,53,93,44,91,45,55,50,46,50,55,54,52,51,52,44,52,50,46,53,55,55,51,55,52,93,44,91,45,55,50,46,51,49,52,50,53,51,44,52,50,46,51,52,51,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,51,48,55,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,50,48,50,50,55,44,52,48,46,53,48,52,48,55,55,93,44,91,45,56,51,46,56,56,48,48,51,57,44,52,48,46,53,51,56,54,57,52,93,44,91,45,56,52,46,48,48,50,51,55,50,44,52,48,46,52,56,51,49,49,53,93,44,91,45,56,52,46,48,49,52,55,54,51,44,52,48,46,50,55,51,52,53,57,93,44,91,45,56,51,46,53,53,49,51,51,56,44,52,48,46,50,50,57,51,55,93,44,91,45,56,51,46,53,50,48,50,50,55,44,52,48,46,53,48,52,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,75,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,48,55,53,44,34,98,101,100,115,34,58,49,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,53,55,51,49,57,52,44,51,54,46,52,56,56,56,51,53,93,44,91,45,49,49,57,46,54,54,54,50,57,44,51,54,46,52,49,56,57,54,93,44,91,45,49,49,57,46,57,53,57,50,50,55,44,51,54,46,52,48,48,57,55,53,93,44,91,45,49,49,57,46,57,53,57,50,49,44,51,54,46,49,56,49,52,48,51,93,44,91,45,49,50,48,46,51,49,53,48,54,56,44,51,53,46,57,48,55,49,56,54,93,44,91,45,49,50,48,46,50,49,51,57,55,57,44,51,53,46,55,56,57,50,55,54,93,44,91,45,49,50,48,46,49,57,52,49,52,54,44,51,53,46,55,56,57,50,48,52,93,44,91,45,49,49,57,46,53,51,56,49,49,54,44,51,53,46,55,56,57,53,54,55,93,44,91,45,49,49,57,46,53,50,57,51,53,56,44,51,54,46,50,54,57,56,53,93,44,91,45,49,49,57,46,52,55,52,56,57,50,44,51,54,46,52,48,48,57,53,51,93,44,91,45,49,49,57,46,53,55,51,49,57,52,44,51,54,46,52,56,56,56,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,83,97,110,32,68,105,101,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,48,50,56,51,51,44,34,98,101,100,115,34,58,54,56,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,54,49,49,48,56,49,44,51,51,46,51,51,51,57,57,50,93,44,91,45,49,49,55,46,52,51,53,53,54,51,44,51,51,46,49,55,55,53,49,50,93,44,91,45,49,49,55,46,51,50,51,50,55,57,44,51,50,46,57,48,51,48,54,52,93,44,91,45,49,49,55,46,51,50,48,57,51,57,44,51,50,46,54,56,57,56,52,55,93,44,91,45,49,49,55,46,50,50,51,51,48,50,44,51,50,46,54,50,49,50,51,56,93,44,91,45,49,49,55,46,50,48,52,57,49,55,44,51,50,46,53,50,56,56,51,50,93,44,91,45,49,49,54,46,49,48,54,49,54,56,44,51,50,46,54,49,56,52,56,93,44,91,45,49,49,54,46,49,48,51,50,53,50,44,51,51,46,48,55,52,54,55,93,44,91,45,49,49,54,46,48,56,53,49,54,53,44,51,51,46,52,50,53,57,51,50,93,44,91,45,49,49,55,46,48,51,48,56,54,49,44,51,51,46,52,50,54,57,51,49,93,44,91,45,49,49,55,46,50,52,49,50,55,49,44,51,51,46,52,51,49,57,57,51,93,44,91,45,49,49,55,46,51,55,48,57,50,53,44,51,51,46,52,57,48,53,52,57,93,44,91,45,49,49,55,46,53,48,57,55,50,50,44,51,51,46,53,48,53,48,49,57,93,44,91,45,49,49,55,46,53,55,56,52,56,44,51,51,46,52,53,51,57,50,55,93,44,91,45,49,49,55,46,54,49,49,48,56,49,44,51,51,46,51,51,51,57,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,51,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,50,53,55,53,50,55,44,49,56,46,48,55,53,56,56,52,93,44,91,45,54,54,46,51,51,49,50,52,52,44,49,56,46,48,49,53,56,57,49,93,44,91,45,54,54,46,51,50,51,50,50,44,49,55,46,56,55,55,54,54,55,93,44,91,45,54,54,46,49,56,55,51,52,50,44,49,55,46,56,55,55,48,51,54,93,44,91,45,54,54,46,50,50,53,50,55,53,44,49,55,46,57,50,52,54,53,50,93,44,91,45,54,54,46,49,54,54,49,52,53,44,49,56,46,48,53,48,48,54,51,93,44,91,45,54,54,46,50,50,52,52,57,44,49,56,46,48,57,53,51,51,57,93,44,91,45,54,54,46,50,53,55,53,50,55,44,49,56,46,48,55,53,56,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,52,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,48,50,54,50,56,44,51,50,46,54,57,48,48,49,56,93,44,91,45,56,52,46,49,48,52,57,54,54,44,51,50,46,54,55,51,51,56,53,93,44,91,45,56,52,46,48,48,51,51,54,51,44,51,50,46,53,50,57,57,50,55,93,44,91,45,56,51,46,55,54,54,57,54,51,44,51,50,46,54,57,50,52,57,53,93,44,91,45,56,51,46,55,48,49,48,57,44,51,50,46,54,57,49,53,57,56,93,44,91,45,56,51,46,55,48,49,49,53,50,44,51,50,46,54,57,50,49,54,57,93,44,91,45,56,51,46,56,48,56,50,54,55,44,51,50,46,55,50,56,54,56,50,93,44,91,45,56,51,46,56,57,49,57,50,50,44,51,50,46,56,52,56,51,53,49,93,44,91,45,56,52,46,49,50,52,50,55,53,44,51,50,46,56,52,57,53,54,50,93,44,91,45,56,52,46,50,48,50,54,50,56,44,51,50,46,54,57,48,48,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,78,97,103,117,97,98,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,56,50,54,48,54,51,44,49,56,46,50,48,48,52,48,56,93,44,91,45,54,53,46,54,57,57,51,51,53,44,49,56,46,49,49,54,49,49,51,93,44,91,45,54,53,46,54,53,52,55,50,56,44,49,56,46,49,51,51,51,51,53,93,44,91,45,54,53,46,54,55,49,44,49,56,46,50,50,51,48,53,50,93,44,91,45,54,53,46,55,54,54,56,51,49,44,49,56,46,50,56,48,48,48,52,93,44,91,45,54,53,46,56,50,52,50,50,44,49,56,46,50,55,51,48,53,52,93,44,91,45,54,53,46,56,50,54,48,54,51,44,49,56,46,50,48,48,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,54,55,56,44,34,98,101,100,115,34,58,49,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,56,48,51,51,44,51,56,46,56,52,55,50,48,55,93,44,91,45,57,52,46,54,48,57,48,56,44,51,56,46,55,51,56,48,57,57,93,44,91,45,57,52,46,54,49,50,56,56,50,44,51,56,46,52,55,55,53,57,55,93,44,91,45,57,52,46,48,54,53,55,49,51,44,51,56,46,52,52,55,48,56,55,93,44,91,45,57,52,46,48,54,52,51,49,55,44,51,56,46,53,54,55,51,56,93,44,91,45,57,52,46,49,49,57,54,54,52,44,51,56,46,53,54,56,55,49,50,93,44,91,45,57,52,46,49,49,57,48,57,54,44,51,56,46,56,51,51,49,54,55,93,44,91,45,57,52,46,54,48,56,48,51,51,44,51,56,46,56,52,55,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,68,117,116,99,104,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,56,57,52,44,34,98,101,100,115,34,58,57,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,50,57,54,50,54,44,52,50,46,48,55,56,55,55,56,93,44,91,45,55,51,46,57,54,50,50,50,49,44,52,49,46,57,48,49,48,50,93,44,91,45,55,51,46,57,53,51,51,48,55,44,52,49,46,53,56,57,57,55,55,93,44,91,45,55,51,46,57,56,49,52,56,54,44,52,49,46,52,51,56,57,48,53,93,44,91,45,55,51,46,57,51,51,55,55,53,44,52,49,46,52,56,56,50,55,57,93,44,91,45,55,51,46,53,51,48,48,54,55,44,52,49,46,53,50,55,49,57,52,93,44,91,45,55,51,46,53,49,56,48,56,44,52,49,46,54,54,54,55,50,51,93,44,91,45,55,51,46,52,56,55,51,49,57,44,52,50,46,48,52,57,53,50,53,93,44,91,45,55,51,46,52,57,55,48,49,56,44,52,50,46,48,52,57,54,50,52,93,44,91,45,55,51,46,53,50,55,48,55,50,44,52,49,46,57,55,55,57,56,93,44,91,45,55,51,46,55,49,48,57,51,44,52,50,46,48,48,53,52,56,56,93,44,91,45,55,51,46,57,50,57,54,50,54,44,52,50,46,48,55,56,55,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,55,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,55,57,54,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,57,57,49,55,51,44,51,48,46,51,55,57,49,53,50,93,44,91,45,57,54,46,54,52,48,56,56,51,44,51,48,46,50,57,54,55,56,54,93,44,91,45,57,54,46,55,57,52,53,53,50,44,51,48,46,49,54,48,53,52,53,93,44,91,45,57,54,46,54,56,51,51,57,52,44,51,48,46,49,53,49,48,51,56,93,44,91,45,57,54,46,54,50,49,57,56,44,51,48,46,48,52,52,50,56,51,93,44,91,45,57,54,46,50,57,50,56,52,57,44,51,48,46,48,57,54,49,53,93,44,91,45,57,54,46,49,52,54,48,53,50,44,51,48,46,48,55,48,50,50,52,93,44,91,45,57,54,46,49,57,49,52,49,56,44,51,48,46,49,51,52,54,54,57,93,44,91,45,57,54,46,48,57,51,49,54,53,44,51,48,46,50,50,53,49,56,55,93,44,91,45,57,54,46,49,53,52,54,51,44,51,48,46,51,51,48,50,56,56,93,44,91,45,57,54,46,50,57,57,49,55,51,44,51,48,46,51,55,57,49,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,80,117,101,98,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,54,56,53,44,34,98,101,100,115,34,58,49,50,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,52,49,53,51,51,44,51,56,46,53,49,57,53,54,57,93,44,91,45,49,48,52,46,57,52,48,51,54,54,44,51,56,46,50,53,56,50,55,53,93,44,91,45,49,48,53,46,48,52,57,50,49,53,44,51,56,46,50,53,55,57,55,51,93,44,91,45,49,48,53,46,48,52,57,57,49,55,44,51,55,46,57,49,53,52,55,57,93,44,91,45,49,48,53,46,48,49,51,55,50,57,44,51,55,46,56,56,49,50,55,49,93,44,91,45,49,48,52,46,54,52,54,51,56,51,44,51,55,46,57,48,48,53,50,55,93,44,91,45,49,48,52,46,51,53,49,49,48,57,44,51,55,46,56,49,55,52,56,56,93,44,91,45,49,48,52,46,48,54,49,49,51,50,44,51,55,46,55,51,52,55,48,52,93,44,91,45,49,48,52,46,48,53,56,50,52,50,44,51,56,46,49,52,54,52,57,50,93,44,91,45,49,48,52,46,48,53,51,57,50,49,44,51,56,46,53,50,50,51,57,51,93,44,91,45,49,48,52,46,57,52,49,53,51,51,44,51,56,46,53,49,57,53,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,55,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,56,53,56,54,55,44,51,55,46,48,54,55,48,53,49,93,44,91,45,57,50,46,57,48,51,50,55,51,44,51,55,46,48,55,48,54,53,49,93,44,91,45,57,50,46,57,48,57,51,51,54,44,51,54,46,56,48,57,49,55,56,93,44,91,45,57,50,46,55,54,52,56,54,57,44,51,54,46,56,48,54,48,57,55,93,44,91,45,57,50,46,49,49,50,51,52,54,44,51,54,46,55,57,52,50,51,49,93,44,91,45,57,50,46,48,56,56,55,48,56,44,51,55,46,48,53,54,50,52,56,93,44,91,45,57,50,46,50,53,49,51,53,57,44,51,55,46,48,53,57,54,53,51,93,44,91,45,57,50,46,54,56,53,56,54,55,44,51,55,46,48,54,55,48,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,111,116,116,105,110,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,57,54,53,53,50,44,52,56,46,57,57,57,52,50,49,93,44,91,45,49,48,49,46,52,57,54,54,56,52,44,52,56,46,55,50,48,48,55,56,93,44,91,45,49,48,49,46,52,53,49,50,55,53,44,52,56,46,53,52,54,48,55,57,93,44,91,45,49,48,49,46,48,53,57,54,54,51,44,52,56,46,53,52,53,52,49,57,93,44,91,45,49,48,49,46,48,53,57,54,50,52,44,52,56,46,54,51,50,51,54,49,93,44,91,45,49,48,48,46,52,48,54,55,56,44,52,56,46,54,51,49,56,55,56,93,44,91,45,49,48,48,46,50,55,54,54,49,57,44,52,56,46,53,52,52,56,49,51,93,44,91,45,49,48,48,46,49,52,53,56,53,56,44,52,56,46,53,52,53,50,49,49,93,44,91,45,49,48,48,46,49,56,51,48,51,52,44,52,56,46,55,49,56,57,48,57,93,44,91,45,49,48,48,46,49,56,50,54,48,56,44,52,56,46,57,57,57,50,48,52,93,44,91,45,49,48,49,46,52,57,54,53,53,50,44,52,56,46,57,57,57,52,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,50,49,48,54,44,34,98,101,100,115,34,58,56,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,49,55,49,50,55,44,51,53,46,50,52,53,53,55,56,93,44,91,45,55,56,46,55,57,51,52,52,55,44,51,53,46,50,54,53,57,55,54,93,44,91,45,55,57,46,48,57,53,56,48,56,44,51,53,46,49,57,50,48,54,56,93,44,91,45,55,57,46,48,57,55,53,57,49,44,51,53,46,49,55,52,50,50,53,93,44,91,45,55,57,46,48,57,48,50,57,49,44,51,53,46,48,52,50,48,51,49,93,44,91,45,55,57,46,48,51,56,55,52,55,44,51,52,46,57,53,50,55,49,53,93,44,91,45,55,56,46,57,48,49,57,57,56,44,51,52,46,56,51,53,50,54,56,93,44,91,45,55,56,46,52,57,52,55,48,53,44,51,52,46,56,53,54,49,56,50,93,44,91,45,55,56,46,54,52,55,55,51,52,44,51,52,46,57,57,52,55,52,93,44,91,45,55,56,46,54,55,48,54,53,44,51,53,46,48,57,50,53,57,50,93,44,91,45,55,56,46,54,49,55,49,50,55,44,51,53,46,50,52,53,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,72,111,116,32,83,112,114,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,51,49,50,57,52,57,44,52,51,46,56,49,51,50,57,51,93,44,91,45,49,48,57,46,49,55,49,52,52,56,44,52,51,46,54,57,57,49,57,56,93,44,91,45,49,48,57,46,49,55,49,54,51,56,44,52,51,46,54,49,57,55,54,52,93,44,91,45,49,48,56,46,57,51,52,49,52,49,44,52,51,46,54,49,57,49,54,51,93,44,91,45,49,48,56,46,54,57,52,54,55,50,44,52,51,46,53,55,53,55,53,53,93,44,91,45,49,48,56,46,54,57,53,48,55,50,44,52,51,46,53,51,50,50,53,53,93,44,91,45,49,48,56,46,51,51,55,56,54,49,44,52,51,46,52,53,57,55,54,53,93,44,91,45,49,48,55,46,53,57,53,49,51,55,44,52,51,46,52,55,50,50,55,57,93,44,91,45,49,48,55,46,53,57,53,49,48,53,44,52,51,46,53,48,49,51,57,55,93,44,91,45,49,48,55,46,53,57,53,49,53,55,44,52,51,46,54,52,54,52,50,55,93,44,91,45,49,48,55,46,55,49,53,56,55,54,44,52,51,46,55,51,51,51,52,51,93,44,91,45,49,48,55,46,57,53,54,53,55,55,44,52,51,46,55,51,51,52,52,54,93,44,91,45,49,48,55,46,57,53,54,52,52,56,44,52,51,46,56,49,56,54,54,54,93,44,91,45,49,48,56,46,49,55,51,54,49,55,44,52,51,46,56,49,56,57,53,51,93,44,91,45,49,48,56,46,52,50,57,53,54,51,44,52,51,46,57,48,51,51,53,53,93,44,91,45,49,48,56,46,53,53,48,55,53,56,44,52,52,46,48,55,57,52,48,51,93,44,91,45,49,48,56,46,55,57,50,50,55,55,44,52,52,46,48,55,57,54,49,54,93,44,91,45,49,48,56,46,55,57,49,55,55,57,44,52,51,46,57,57,49,48,53,51,93,44,91,45,49,48,56,46,57,49,50,55,56,51,44,52,51,46,57,48,52,55,53,52,93,44,91,45,49,48,57,46,48,57,50,56,55,56,44,52,51,46,57,48,52,52,55,52,93,44,91,45,49,48,57,46,48,57,51,54,48,51,44,52,51,46,56,49,55,54,49,57,93,44,91,45,49,48,57,46,51,49,50,57,52,57,44,52,51,46,56,49,51,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,99,111,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,56,52,56,52,44,52,52,46,56,53,54,52,53,56,93,44,91,45,56,51,46,56,56,54,54,51,52,44,52,52,46,53,48,56,57,55,54,93,44,91,45,56,50,46,51,50,57,53,49,57,44,52,52,46,53,49,50,56,51,52,93,44,91,45,56,50,46,52,48,56,55,49,55,44,52,52,46,56,53,56,49,52,55,93,44,91,45,56,51,46,56,56,56,52,56,52,44,52,52,46,56,53,54,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,80,108,97,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,48,55,55,44,34,98,101,100,115,34,58,55,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,48,54,51,50,51,44,51,57,46,51,49,54,52,57,54,93,44,91,45,49,50,48,46,54,52,53,55,57,53,44,51,57,46,51,49,53,49,53,53,93,44,91,45,49,50,48,46,55,50,55,56,57,51,44,51,57,46,50,56,56,48,56,49,93,44,91,45,49,50,48,46,57,54,54,48,56,44,51,57,46,49,50,55,57,50,56,93,44,91,45,49,50,49,46,48,52,49,54,48,56,44,51,57,46,48,49,51,55,57,49,93,44,91,45,49,50,49,46,50,55,57,53,51,51,44,51,57,46,48,51,52,54,49,56,93,44,91,45,49,50,49,46,52,49,52,55,55,57,44,51,56,46,57,57,54,52,53,50,93,44,91,45,49,50,49,46,52,54,57,51,53,54,44,51,56,46,57,50,53,57,57,50,93,44,91,45,49,50,49,46,52,56,52,51,57,54,44,51,56,46,55,51,52,53,57,56,93,44,91,45,49,50,49,46,49,52,49,53,57,53,44,51,56,46,55,49,49,57,51,57,93,44,91,45,49,50,49,46,48,53,50,57,49,49,44,51,56,46,57,48,48,49,52,52,93,44,91,45,49,50,48,46,57,51,52,54,53,51,44,51,56,46,57,54,51,55,57,49,93,44,91,45,49,50,48,46,55,51,48,49,55,52,44,51,57,46,48,48,51,57,53,56,93,44,91,45,49,50,48,46,53,55,50,51,53,50,44,51,56,46,57,49,52,52,93,44,91,45,49,50,48,46,52,51,53,50,52,44,51,57,46,48,50,56,51,57,55,93,44,91,45,49,50,48,46,49,56,52,48,57,56,44,51,57,46,48,51,49,48,49,52,93,44,91,45,49,50,48,46,48,48,50,52,54,49,44,51,57,46,48,54,55,52,56,57,93,44,91,45,49,50,48,46,48,48,51,52,50,57,44,51,57,46,49,49,50,54,56,55,93,44,91,45,49,50,48,46,48,48,52,50,57,55,44,51,57,46,49,54,53,54,48,51,93,44,91,45,49,50,48,46,48,48,54,51,50,51,44,51,57,46,51,49,54,52,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,83,101,97,114,99,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,52,52,54,54,54,44,51,54,46,49,49,53,49,50,51,93,44,91,45,57,50,46,57,53,49,51,49,53,44,51,53,46,55,50,52,54,54,51,93,44,91,45,57,50,46,56,48,57,55,54,51,44,51,53,46,55,50,50,52,48,49,93,44,91,45,57,50,46,54,51,49,50,48,55,44,51,53,46,55,49,56,51,54,53,93,44,91,45,57,50,46,54,50,57,56,51,55,44,51,53,46,55,57,48,56,50,51,93,44,91,45,57,50,46,52,49,54,56,52,55,44,51,53,46,55,56,56,53,57,49,93,44,91,45,57,50,46,52,49,52,51,57,54,44,51,53,46,57,55,53,55,57,56,93,44,91,45,57,50,46,52,49,49,53,48,50,44,51,54,46,48,54,50,55,53,54,93,44,91,45,57,50,46,56,51,55,55,55,54,44,51,54,46,48,55,48,49,50,52,93,44,91,45,57,50,46,56,57,48,54,57,53,44,51,54,46,49,49,52,49,51,50,93,44,91,45,57,50,46,57,52,52,54,54,54,44,51,54,46,49,49,53,49,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,53,34,44,34,78,65,77,69,34,58,34,76,121,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,48,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,53,54,56,56,52,44,51,51,46,51,57,52,55,54,93,44,91,45,49,48,50,46,48,55,53,57,50,57,44,51,51,46,51,56,57,53,56,54,93,44,91,45,49,48,50,46,48,55,54,50,49,52,44,51,50,46,57,53,57,55,48,50,93,44,91,45,49,48,49,46,54,57,49,50,56,52,44,51,50,46,57,54,49,56,51,56,93,44,91,45,49,48,49,46,53,53,55,52,51,52,44,51,50,46,57,54,49,48,50,53,93,44,91,45,49,48,49,46,53,53,54,56,56,52,44,51,51,46,51,57,52,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,79,116,115,101,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,50,52,52,44,34,98,101,100,115,34,58,50,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,50,57,53,56,55,55,44,52,50,46,55,52,52,49,48,54,93,44,91,45,55,53,46,51,51,50,57,52,57,44,52,50,46,53,54,54,51,49,50,93,44,91,45,55,53,46,52,48,52,52,54,52,44,52,50,46,52,55,57,49,49,55,93,44,91,45,55,53,46,52,49,53,51,49,57,44,52,50,46,51,49,52,49,53,49,93,44,91,45,55,53,46,48,49,57,56,49,56,44,52,50,46,52,50,57,48,52,53,93,44,91,45,55,52,46,56,52,52,49,50,49,44,52,50,46,53,49,50,53,57,49,93,44,91,45,55,52,46,55,49,49,53,56,44,52,50,46,53,49,55,55,57,57,93,44,91,45,55,52,46,54,51,48,54,51,49,44,52,50,46,54,50,54,54,55,52,93,44,91,45,55,52,46,54,52,56,50,57,56,44,52,50,46,56,50,57,53,53,56,93,44,91,45,55,52,46,55,54,51,51,48,51,44,52,50,46,56,54,51,50,51,55,93,44,91,45,55,52,46,57,48,54,55,51,56,44,52,50,46,56,50,52,57,52,51,93,44,91,45,55,53,46,49,48,48,57,57,57,44,52,50,46,57,48,56,51,54,51,93,44,91,45,55,53,46,50,49,50,49,53,56,44,52,50,46,56,55,57,57,55,51,93,44,91,45,55,53,46,50,52,55,57,54,51,44,52,50,46,56,55,49,54,48,52,93,44,91,45,55,53,46,50,57,53,56,55,55,44,52,50,46,55,52,52,49,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,82,105,99,104,109,111,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,49,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,55,53,51,54,53,44,51,53,46,49,52,51,48,56,49,93,44,91,45,55,57,46,57,52,54,49,50,50,44,51,53,46,49,49,56,53,57,51,93,44,91,45,55,57,46,56,52,57,53,51,54,44,51,52,46,57,48,48,48,48,54,93,44,91,45,55,57,46,57,50,55,52,49,50,44,51,52,46,56,48,54,55,51,52,93,44,91,45,55,57,46,54,57,50,57,52,52,44,51,52,46,56,48,53,49,53,53,93,44,91,45,55,57,46,53,54,49,56,53,54,44,51,52,46,57,49,48,51,53,93,44,91,45,55,57,46,53,55,51,52,50,51,44,51,52,46,57,57,50,50,49,93,44,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,44,91,45,55,57,46,53,54,54,52,57,55,44,51,53,46,48,54,52,48,49,49,93,44,91,45,55,57,46,54,49,52,51,48,52,44,51,53,46,49,54,51,54,55,57,93,44,91,45,55,57,46,56,53,49,50,54,56,44,51,53,46,49,56,51,56,53,53,93,44,91,45,56,48,46,48,55,53,51,54,53,44,51,53,46,49,52,51,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,72,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,50,51,57,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,44,91,45,55,57,46,51,53,51,51,49,50,44,51,52,46,57,52,50,53,54,49,93,44,91,45,55,57,46,51,52,55,56,54,56,44,51,52,46,56,51,56,53,53,51,93,44,91,45,55,57,46,49,57,49,51,57,49,44,51,52,46,56,51,51,55,49,55,93,44,91,45,55,57,46,48,51,56,55,52,55,44,51,52,46,57,53,50,55,49,53,93,44,91,45,55,57,46,48,57,48,50,57,49,44,51,53,46,48,52,50,48,51,49,93,44,91,45,55,57,46,48,57,55,53,57,49,44,51,53,46,49,55,52,50,50,53,93,44,91,45,55,57,46,50,50,57,55,49,50,44,51,53,46,50,49,48,54,48,50,93,44,91,45,55,57,46,51,51,53,52,55,55,44,51,53,46,49,54,49,53,56,56,93,44,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,79,116,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,57,54,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,54,51,55,54,52,44,52,48,46,55,56,51,57,54,93,44,91,45,57,54,46,52,54,51,54,51,50,44,52,48,46,53,50,51,48,49,51,93,44,91,45,57,54,46,48,54,55,48,49,50,44,52,48,46,53,50,51,49,52,56,93,44,91,45,57,53,46,55,48,57,57,55,52,44,52,48,46,53,50,51,55,57,56,93,44,91,45,57,53,46,55,54,53,54,52,53,44,52,48,46,53,56,53,50,48,56,93,44,91,45,57,53,46,56,56,49,53,50,57,44,52,48,46,55,53,48,54,49,49,93,44,91,45,57,53,46,56,51,52,49,50,44,52,48,46,55,56,51,55,56,51,93,44,91,45,57,54,46,52,54,51,55,54,52,44,52,48,46,55,56,51,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,97,109,101,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,49,57,49,49,56,44,52,49,46,54,48,50,49,56,56,93,44,91,45,55,56,46,52,50,48,48,50,56,44,52,49,46,52,48,53,48,52,54,93,44,91,45,55,56,46,50,53,51,57,53,57,44,52,49,46,52,48,52,55,50,49,93,44,91,45,55,56,46,50,51,54,56,49,55,44,52,49,46,50,51,48,52,55,53,93,44,91,45,55,56,46,48,57,51,51,56,49,44,52,49,46,50,49,54,57,51,49,93,44,91,45,55,55,46,57,56,56,55,56,54,44,52,49,46,51,54,55,52,53,51,93,44,91,45,55,55,46,57,56,57,49,57,52,44,52,49,46,52,55,52,56,50,50,93,44,91,45,55,56,46,48,53,48,52,52,50,44,52,49,46,52,55,53,52,54,50,93,44,91,45,55,56,46,50,48,51,52,50,50,44,52,49,46,54,49,56,49,53,55,93,44,91,45,55,56,46,52,49,57,49,49,56,44,52,49,46,54,48,50,49,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,68,111,114,99,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,52,55,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,51,54,49,56,53,49,44,51,51,46,50,53,55,52,52,51,93,44,91,45,56,48,46,53,48,50,55,57,44,51,51,46,51,51,52,52,57,54,93,44,91,45,56,48,46,55,57,48,50,57,54,44,51,51,46,49,56,48,56,52,93,44,91,45,56,48,46,54,50,51,56,49,53,44,51,51,46,48,54,54,57,50,55,93,44,91,45,56,48,46,52,48,50,50,50,54,44,51,51,46,48,53,51,50,51,56,93,44,91,45,56,48,46,52,48,49,51,52,44,51,50,46,56,53,56,52,54,54,93,44,91,45,56,48,46,49,53,55,50,54,53,44,51,50,46,56,49,56,49,56,55,93,44,91,45,56,48,46,48,55,57,48,50,56,44,51,50,46,57,50,55,56,49,49,93,44,91,45,56,48,46,49,52,57,50,52,54,44,51,51,46,48,50,49,54,48,49,93,44,91,45,56,48,46,51,51,53,57,52,44,51,51,46,49,52,53,52,54,51,93,44,91,45,56,48,46,51,54,49,56,53,49,44,51,51,46,50,53,55,52,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,87,97,115,101,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,48,57,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,54,55,57,55,49,44,52,52,46,49,57,53,56,51,54,93,44,91,45,57,51,46,55,54,55,55,54,49,44,52,51,46,56,52,55,57,53,54,93,44,91,45,57,51,46,54,52,56,50,57,44,52,51,46,56,52,56,49,51,57,93,44,91,45,57,51,46,52,48,54,54,52,50,44,52,51,46,56,52,56,49,50,93,44,91,45,57,51,46,52,48,54,53,54,53,44,52,52,46,49,57,54,51,55,55,93,44,91,45,57,51,46,53,50,53,50,51,49,44,52,52,46,49,57,54,49,51,52,93,44,91,45,57,51,46,55,54,55,57,55,49,44,52,52,46,49,57,53,56,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,114,117,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,53,53,56,54,52,44,52,51,46,57,51,52,51,55,49,93,44,91,45,57,57,46,51,49,48,56,50,54,44,52,51,46,56,53,53,50,49,54,93,44,91,45,57,57,46,52,49,48,49,53,44,52,51,46,55,55,52,54,49,57,93,44,91,45,57,57,46,52,48,54,57,54,49,44,52,51,46,55,48,53,50,55,55,93,44,91,45,57,57,46,50,57,55,56,56,50,44,52,51,46,52,57,57,56,53,54,93,44,91,45,57,56,46,55,57,52,53,56,56,44,52,51,46,52,57,57,49,56,55,93,44,91,45,57,56,46,56,48,55,55,55,49,44,52,51,46,57,51,53,50,50,51,93,44,91,45,57,56,46,57,50,54,57,57,55,44,52,51,46,57,51,53,49,52,51,93,44,91,45,57,57,46,51,53,53,56,54,52,44,52,51,46,57,51,52,51,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,52,53,52,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,56,53,48,54,50,44,51,53,46,54,54,48,49,48,56,93,44,91,45,56,53,46,56,55,54,57,54,50,44,51,53,46,53,50,52,48,57,53,93,44,91,45,56,53,46,54,48,55,51,50,54,44,51,53,46,53,51,49,54,53,49,93,44,91,45,56,53,46,53,53,55,53,51,53,44,51,53,46,53,51,50,57,55,55,93,44,91,45,56,53,46,53,57,52,54,51,50,44,51,53,46,54,49,55,56,57,56,93,44,91,45,56,53,46,54,48,50,56,55,54,44,51,53,46,55,57,52,57,57,54,93,44,91,45,56,53,46,54,56,50,48,57,53,44,51,53,46,56,51,49,50,53,52,93,44,91,45,56,53,46,56,56,53,49,53,54,44,51,53,46,56,51,57,54,53,56,93,44,91,45,56,53,46,57,56,52,56,57,49,44,51,53,46,55,51,52,53,53,51,93,44,91,45,56,53,46,57,56,53,48,54,50,44,51,53,46,54,54,48,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,49,50,49,50,49,44,51,57,46,51,55,56,57,54,56,93,44,91,45,56,56,46,48,48,55,55,54,54,44,51,57,46,49,55,51,57,50,53,93,44,91,45,56,55,46,57,53,48,51,56,53,44,51,57,46,49,55,52,56,56,50,93,44,91,45,56,55,46,54,50,56,55,57,56,44,51,57,46,49,53,55,53,49,51,93,44,91,45,56,55,46,54,48,52,49,52,49,44,51,57,46,50,53,57,52,53,56,93,44,91,45,56,55,46,53,51,49,54,52,54,44,51,57,46,51,52,55,56,56,56,93,44,91,45,56,55,46,53,51,49,54,52,44,51,57,46,52,55,55,49,48,53,93,44,91,45,56,55,46,57,54,48,49,55,57,44,51,57,46,52,56,49,51,48,57,93,44,91,45,56,56,46,48,49,50,49,50,49,44,51,57,46,51,55,56,57,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,82,111,98,101,114,116,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,54,50,48,51,49,44,51,56,46,53,53,52,49,50,53,93,44,91,45,56,52,46,49,48,50,49,44,51,56,46,52,53,57,51,55,57,93,44,91,45,56,51,46,57,56,48,48,54,56,44,51,56,46,52,51,57,52,52,56,93,44,91,45,56,51,46,57,51,48,51,52,56,44,51,56,46,52,57,50,50,55,56,93,44,91,45,56,51,46,57,57,49,54,48,53,44,51,56,46,53,57,51,55,48,49,93,44,91,45,56,52,46,49,54,50,48,51,49,44,51,56,46,53,53,52,49,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,51,57,50,51,50,44,51,54,46,52,57,55,57,51,52,93,44,91,45,56,57,46,53,52,53,48,48,54,44,51,54,46,51,51,54,56,48,57,93,44,91,45,56,57,46,53,51,54,52,52,49,44,51,54,46,50,55,50,56,50,55,93,44,91,45,56,57,46,54,50,57,52,53,51,44,51,54,46,49,56,53,51,56,50,93,44,91,45,56,57,46,52,56,50,57,55,49,44,51,54,46,50,49,50,54,53,57,93,44,91,45,56,57,46,51,54,48,49,50,44,51,54,46,52,48,57,50,55,55,93,44,91,45,56,57,46,51,52,54,48,54,54,44,51,54,46,53,48,51,50,51,50,93,44,91,45,56,57,46,52,49,55,50,55,53,44,51,54,46,52,57,57,48,49,49,93,44,91,45,56,57,46,52,56,53,52,50,55,44,51,54,46,52,57,55,52,57,49,93,44,91,45,56,57,46,53,51,57,50,51,50,44,51,54,46,52,57,55,57,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,101,114,107,101,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,48,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,51,54,49,56,53,49,44,51,51,46,50,53,55,52,52,51,93,44,91,45,56,48,46,51,51,53,57,52,44,51,51,46,49,52,53,52,54,51,93,44,91,45,56,48,46,49,52,57,50,52,54,44,51,51,46,48,50,49,54,48,49,93,44,91,45,56,48,46,48,53,53,53,57,53,44,51,50,46,57,57,56,55,49,93,44,91,45,55,57,46,57,53,54,52,51,51,44,51,50,46,56,53,57,55,57,49,93,44,91,45,55,57,46,56,52,49,48,54,55,44,51,50,46,57,49,50,52,54,57,93,44,91,45,55,57,46,54,52,51,51,48,49,44,51,51,46,49,50,51,52,53,51,93,44,91,45,55,57,46,53,49,56,56,52,52,44,51,51,46,49,52,56,50,57,55,93,44,91,45,55,57,46,52,52,54,54,57,57,44,51,51,46,50,49,51,52,53,56,93,44,91,45,55,57,46,54,55,55,48,49,52,44,51,51,46,51,48,52,57,52,52,93,44,91,45,55,57,46,57,55,49,57,54,51,44,51,51,46,53,48,48,57,51,55,93,44,91,45,56,48,46,49,48,49,54,57,55,44,51,51,46,52,57,54,56,57,49,93,44,91,45,56,48,46,50,50,50,50,54,55,44,51,51,46,52,52,51,55,49,54,93,44,91,45,56,48,46,50,53,53,54,52,50,44,51,51,46,51,48,48,48,48,50,93,44,91,45,56,48,46,51,54,49,56,53,49,44,51,51,46,50,53,55,52,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,97,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,50,57,54,44,34,98,101,100,115,34,58,53,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,48,55,50,50,49,44,51,52,46,51,57,55,52,52,55,93,44,91,45,57,50,46,57,52,56,48,55,49,44,51,52,46,51,56,57,50,53,53,93,44,91,45,57,50,46,57,49,53,48,55,57,44,51,52,46,53,48,54,49,49,52,93,44,91,45,57,50,46,55,57,51,49,57,55,44,51,52,46,53,48,51,54,48,54,93,44,91,45,57,50,46,56,48,56,48,50,56,44,51,52,46,53,57,48,52,48,54,93,44,91,45,57,50,46,57,55,57,57,48,50,44,51,52,46,54,51,55,50,50,50,93,44,91,45,57,50,46,57,54,57,50,53,44,51,52,46,55,55,50,50,54,54,93,44,91,45,57,51,46,48,55,53,49,55,56,44,51,52,46,55,55,49,56,57,50,93,44,91,45,57,51,46,50,56,55,55,56,53,44,51,52,46,55,55,51,49,57,51,93,44,91,45,57,51,46,51,57,52,50,56,57,44,51,52,46,55,52,51,51,57,51,93,44,91,45,57,51,46,52,48,55,50,50,49,44,51,52,46,51,57,55,52,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,79,115,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,52,53,57,50,52,44,51,56,46,55,51,57,49,49,50,93,44,91,45,57,53,46,57,53,48,50,56,50,44,51,56,46,52,51,52,49,48,53,93,44,91,45,57,53,46,53,48,56,50,54,55,44,51,56,46,52,51,51,57,51,51,93,44,91,45,57,53,46,53,48,48,55,51,56,44,51,56,46,55,51,56,56,48,56,93,44,91,45,57,53,46,53,48,48,55,50,52,44,51,56,46,56,54,57,56,49,53,93,44,91,45,57,53,46,57,52,54,53,56,55,44,51,56,46,56,54,57,57,55,51,93,44,91,45,57,53,46,57,52,53,57,50,52,44,51,56,46,55,51,57,49,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,84,114,117,109,98,117,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,55,57,52,44,34,98,101,100,115,34,58,55,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,48,51,51,49,57,44,52,49,46,51,52,55,56,54,93,44,91,45,56,49,46,48,48,50,50,57,44,52,49,46,49,51,52,49,56,57,93,44,91,45,56,48,46,53,49,57,48,52,56,44,52,49,46,49,51,51,51,57,52,93,44,91,45,56,48,46,53,49,57,50,49,55,44,52,49,46,52,56,57,48,49,51,93,44,91,45,56,48,46,53,49,57,50,50,53,44,52,49,46,52,57,57,57,50,52,93,44,91,45,56,49,46,48,48,51,49,50,53,44,52,49,46,53,48,49,54,56,53,93,44,91,45,56,49,46,48,48,51,51,49,57,44,52,49,46,51,52,55,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,51,51,34,44,34,78,65,77,69,34,58,34,77,105,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,57,49,54,48,56,44,51,49,46,52,56,52,48,55,49,93,44,91,45,57,56,46,57,54,51,53,57,51,44,51,49,46,52,52,54,50,53,49,93,44,91,45,57,56,46,54,57,54,54,51,52,44,51,49,46,52,48,55,50,56,55,93,44,91,45,57,56,46,54,50,53,54,50,56,44,51,49,46,50,54,57,55,57,56,93,44,91,45,57,56,46,53,54,50,55,51,57,44,51,49,46,50,51,48,53,56,50,93,44,91,45,57,56,46,50,55,49,48,55,44,51,49,46,52,49,54,51,57,56,93,44,91,45,57,56,46,52,54,51,55,51,54,44,51,49,46,54,56,51,57,56,57,93,44,91,45,57,56,46,52,57,50,56,48,50,44,51,49,46,55,50,51,54,48,56,93,44,91,45,57,56,46,54,54,56,52,52,49,44,51,49,46,55,48,48,53,49,52,93,44,91,45,57,56,46,57,57,49,54,48,56,44,51,49,46,52,56,52,48,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,53,57,34,44,34,78,65,77,69,34,58,34,79,108,100,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,49,54,50,56,48,57,44,51,53,46,54,50,55,53,49,53,93,44,91,45,49,48,51,46,48,52,49,55,48,54,44,51,53,46,54,50,50,52,56,56,93,44,91,45,49,48,51,46,48,52,50,53,49,49,44,51,53,46,49,56,51,49,53,55,93,44,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,44,91,45,49,48,50,46,49,54,50,55,53,50,44,51,53,46,54,50,48,48,51,53,93,44,91,45,49,48,50,46,49,54,50,56,48,57,44,51,53,46,54,50,55,53,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,53,54,54,44,34,98,101,100,115,34,58,50,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,57,56,50,57,52,44,52,49,46,48,55,49,48,53,52,93,44,91,45,56,48,46,49,54,54,52,55,50,44,52,49,46,48,48,48,57,50,56,93,44,91,45,56,48,46,49,53,56,53,51,44,52,48,46,56,53,53,48,57,54,93,44,91,45,56,48,46,49,52,56,54,56,50,44,52,48,46,54,55,52,50,56,49,93,44,91,45,55,57,46,54,57,50,57,51,44,52,48,46,54,54,57,55,52,52,93,44,91,45,55,57,46,54,57,48,55,49,49,44,52,49,46,49,55,48,54,57,49,93,44,91,45,55,57,46,54,57,52,57,56,52,44,52,49,46,49,55,50,56,54,53,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,49,55,49,56,54,49,93,44,91,45,56,48,46,48,57,56,50,57,52,44,52,49,46,48,55,49,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,51,55,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,44,91,45,49,49,54,46,49,51,51,53,55,44,52,54,46,50,49,53,50,51,49,93,44,91,45,49,49,54,46,51,48,51,55,49,51,44,52,54,46,49,54,54,55,55,56,93,44,91,45,49,49,54,46,52,53,52,49,49,55,44,52,54,46,49,57,50,48,51,50,93,44,91,45,49,49,54,46,53,49,52,55,48,55,44,52,54,46,48,51,56,55,53,55,93,44,91,45,49,49,54,46,55,48,49,56,49,57,44,52,53,46,57,57,54,51,56,49,93,44,91,45,49,49,54,46,55,57,52,53,54,50,44,52,53,46,56,53,54,48,52,57,93,44,91,45,49,49,54,46,53,57,52,50,49,44,52,53,46,55,55,57,48,56,93,44,91,45,49,49,54,46,52,54,51,54,51,53,44,52,53,46,54,48,50,55,56,53,93,44,91,45,49,49,54,46,53,53,55,54,50,49,44,52,53,46,53,48,51,52,57,53,93,44,91,45,49,49,54,46,54,56,55,49,55,55,44,52,53,46,50,54,55,54,52,51,93,44,91,45,49,49,54,46,51,52,50,56,55,54,44,52,53,46,50,54,55,56,55,50,93,44,91,45,49,49,54,46,50,56,53,57,54,57,44,52,53,46,49,50,56,55,51,50,93,44,91,45,49,49,54,46,49,52,52,51,56,54,44,52,53,46,49,48,55,54,53,49,93,44,91,45,49,49,53,46,57,55,53,55,56,55,44,52,53,46,49,57,53,50,56,50,93,44,91,45,49,49,52,46,54,57,52,48,48,49,44,52,53,46,49,57,55,49,56,50,93,44,91,45,49,49,52,46,54,48,51,57,52,44,52,53,46,50,57,53,56,50,54,93,44,91,45,49,49,52,46,55,57,51,50,48,55,44,52,53,46,52,51,54,51,51,52,93,44,91,45,49,49,52,46,54,54,54,50,50,51,44,52,53,46,52,55,49,51,50,53,93,44,91,45,49,49,52,46,53,54,52,57,57,57,44,52,53,46,53,53,55,56,48,51,93,44,91,45,49,49,52,46,52,57,57,54,54,55,44,52,53,46,54,54,56,53,49,51,93,44,91,45,49,49,52,46,53,54,54,51,52,56,44,52,53,46,55,55,50,55,51,57,93,44,91,45,49,49,52,46,52,48,53,57,49,55,44,52,53,46,56,55,48,52,93,44,91,45,49,49,52,46,52,56,48,53,51,55,44,52,54,46,48,51,48,52,51,57,93,44,91,45,49,49,52,46,52,52,53,50,51,52,44,52,54,46,49,54,55,57,52,54,93,44,91,45,49,49,52,46,52,55,48,55,57,53,44,52,54,46,50,54,53,51,55,55,93,44,91,45,49,49,52,46,51,52,50,57,56,53,44,52,54,46,53,49,56,48,52,93,44,91,45,49,49,52,46,51,51,50,55,57,54,44,52,54,46,54,54,48,53,56,49,93,44,91,45,49,49,52,46,53,57,52,54,51,52,44,52,54,46,54,51,51,52,52,56,93,44,91,45,49,49,53,46,54,50,56,57,53,55,44,52,54,46,52,55,51,54,49,56,93,44,91,45,49,49,53,46,55,56,48,56,49,56,44,52,54,46,50,54,55,50,53,93,44,91,45,49,49,53,46,57,53,55,50,54,56,44,52,54,46,50,56,56,57,51,49,93,44,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,55,49,57,49,49,44,51,56,46,54,48,57,51,53,51,93,44,91,45,57,55,46,51,55,49,55,53,44,51,56,46,49,55,51,54,55,51,93,44,91,45,57,55,46,49,53,51,48,57,51,44,51,56,46,49,55,52,54,51,52,93,44,91,45,57,55,46,49,53,50,57,49,51,44,51,56,46,48,56,55,55,48,52,93,44,91,45,57,54,46,56,52,48,55,55,50,44,51,56,46,48,56,53,54,50,50,93,44,91,45,57,54,46,56,49,57,53,48,57,44,51,56,46,53,50,50,52,52,57,93,44,91,45,57,54,46,57,51,48,50,56,54,44,51,56,46,54,48,57,51,54,50,93,44,91,45,57,55,46,51,55,49,57,49,49,44,51,56,46,54,48,57,51,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,66,117,99,107,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,56,50,53,50,51,56,44,51,55,46,53,53,50,53,52,50,93,44,91,45,55,56,46,54,56,51,50,50,52,44,51,55,46,52,50,56,57,55,52,93,44,91,45,55,56,46,53,57,52,52,51,54,44,51,55,46,51,57,55,57,55,52,93,44,91,45,55,56,46,52,54,53,48,56,57,44,51,55,46,51,51,57,54,55,55,93,44,91,45,55,56,46,50,52,57,48,50,49,44,51,55,46,54,51,53,53,52,54,93,44,91,45,55,56,46,50,51,57,55,52,56,44,51,55,46,54,57,48,52,57,53,93,44,91,45,55,56,46,52,48,53,53,57,54,44,51,55,46,55,51,53,50,54,51,93,44,91,45,55,56,46,52,57,49,51,52,53,44,51,55,46,55,57,54,57,53,54,93,44,91,45,55,56,46,54,52,51,57,49,56,44,51,55,46,55,51,51,48,56,52,93,44,91,45,55,56,46,56,50,53,50,51,56,44,51,55,46,53,53,50,53,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,98,97,114,114,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,52,52,56,44,34,98,101,100,115,34,58,52,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,56,52,49,54,55,44,51,53,46,53,48,54,48,49,55,93,44,91,45,56,48,46,54,54,54,52,56,44,51,53,46,50,54,55,57,51,52,93,44,91,45,56,48,46,53,53,48,51,52,57,44,51,53,46,50,48,56,52,49,50,93,44,91,45,56,48,46,53,48,52,57,56,53,44,51,53,46,49,56,52,57,57,56,93,44,91,45,56,48,46,50,57,53,52,50,49,44,51,53,46,53,48,50,57,50,93,44,91,45,56,48,46,55,51,55,51,55,57,44,51,53,46,53,48,53,56,48,52,93,44,91,45,56,48,46,55,56,52,49,54,55,44,51,53,46,53,48,54,48,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,53,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,55,51,51,56,44,51,55,46,52,49,52,57,56,57,93,44,91,45,57,51,46,48,54,53,50,55,52,44,51,55,46,48,56,56,54,57,52,93,44,91,45,57,50,46,57,48,51,50,55,51,44,51,55,46,48,55,48,54,53,49,93,44,91,45,57,50,46,54,56,53,56,54,55,44,51,55,46,48,54,55,48,53,49,93,44,91,45,57,50,46,54,56,54,54,55,49,44,51,55,46,52,56,49,53,52,53,93,44,91,45,57,50,46,56,53,51,52,56,49,44,51,55,46,52,56,51,57,55,93,44,91,45,57,51,46,48,55,49,53,56,52,44,51,55,46,52,56,55,52,52,52,93,44,91,45,57,51,46,48,55,51,51,56,44,51,55,46,52,49,52,57,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,48,54,50,49,44,34,98,101,100,115,34,58,52,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,55,51,56,55,52,52,44,52,48,46,56,54,48,57,57,56,93,44,91,45,49,49,49,46,56,49,53,52,49,52,44,52,48,46,57,53,55,52,51,93,44,91,45,49,49,49,46,56,53,54,50,52,55,44,52,49,46,49,51,57,48,56,51,93,44,91,45,49,49,50,46,49,56,54,54,57,51,44,52,49,46,49,53,51,48,50,56,93,44,91,45,49,49,50,46,52,57,51,53,49,53,44,52,49,46,48,55,54,56,56,56,93,44,91,45,49,49,50,46,50,54,48,50,49,54,44,52,48,46,55,54,57,48,57,51,93,44,91,45,49,49,50,46,48,48,54,53,54,54,44,52,48,46,57,50,49,56,52,54,93,44,91,45,49,49,49,46,57,52,54,50,56,57,44,52,48,46,56,50,49,55,57,93,44,91,45,49,49,49,46,55,51,56,55,52,52,44,52,48,46,56,54,48,57,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,111,116,116,111,110,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,55,50,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,54,50,53,52,55,44,52,52,46,49,57,53,57,52,50,93,44,91,45,57,53,46,52,54,50,52,50,55,44,52,51,46,56,52,55,57,49,49,93,44,91,45,57,53,46,52,53,50,53,48,50,44,52,51,46,56,52,55,57,53,51,93,44,91,45,57,52,46,56,53,57,51,56,56,44,52,51,46,56,52,56,48,57,51,93,44,91,45,57,52,46,56,53,57,56,48,51,44,52,52,46,49,48,56,48,49,54,93,44,91,45,57,53,46,49,48,48,50,50,49,44,52,52,46,49,48,56,48,51,52,93,44,91,45,57,53,46,49,48,56,55,55,55,44,52,52,46,49,57,53,48,52,52,93,44,91,45,57,53,46,52,54,50,53,52,55,44,52,52,46,49,57,53,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,79,107,101,101,99,104,111,98,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,55,50,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,52,50,49,54,52,44,50,55,46,54,52,51,50,51,56,93,44,91,45,56,49,46,50,48,53,51,56,56,44,50,55,46,52,57,48,50,53,52,93,44,91,45,56,48,46,57,52,48,54,55,54,44,50,55,46,50,48,53,57,51,57,93,44,91,45,56,48,46,56,55,49,49,54,57,44,50,55,46,49,53,52,57,53,49,93,44,91,45,56,48,46,56,56,53,54,51,57,44,50,54,46,57,53,56,57,49,57,93,44,91,45,56,48,46,54,55,55,52,50,55,44,50,55,46,49,50,49,54,49,57,93,44,91,45,56,48,46,54,55,55,56,54,50,44,50,55,46,50,48,53,57,56,56,93,44,91,45,56,48,46,54,55,57,56,50,49,44,50,55,46,53,53,56,52,55,93,44,91,45,56,48,46,55,55,55,49,54,54,44,50,55,46,53,53,56,55,51,51,93,44,91,45,56,48,46,56,55,51,49,53,44,50,55,46,54,52,50,50,56,56,93,44,91,45,56,49,46,49,52,50,49,54,52,44,50,55,46,54,52,51,50,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,49,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,55,53,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,50,57,52,52,56,44,51,52,46,57,56,55,53,49,52,93,44,91,45,56,52,46,49,48,51,54,51,44,51,52,46,55,50,55,56,51,55,93,44,91,45,56,52,46,49,53,56,48,51,53,44,51,52,46,54,52,56,50,52,51,93,44,91,45,56,52,46,48,51,54,50,55,54,44,51,52,46,54,52,50,48,56,55,93,44,91,45,56,51,46,57,51,57,48,48,55,44,51,52,46,55,52,48,56,53,57,93,44,91,45,56,51,46,56,53,54,53,48,54,44,51,52,46,55,50,50,49,57,49,93,44,91,45,56,51,46,55,56,48,51,52,54,44,51,52,46,55,57,50,57,48,53,93,44,91,45,56,51,46,56,48,52,57,54,50,44,51,52,46,56,57,53,57,51,52,93,44,91,45,56,51,46,57,51,54,51,57,53,44,51,52,46,57,56,55,53,54,52,93,44,91,45,56,52,46,48,48,53,49,51,50,44,51,52,46,57,56,55,49,55,53,93,44,91,45,56,52,46,49,50,57,52,52,56,44,51,52,46,57,56,55,53,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,108,97,99,107,32,72,97,119,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,48,48,57,44,34,98,101,100,115,34,58,54,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,52,51,44,52,50,46,53,53,53,56,53,52,93,44,91,45,57,50,46,53,51,51,53,49,44,52,50,46,50,57,55,48,48,49,93,44,91,45,57,50,46,50,57,56,55,57,50,44,52,50,46,50,57,55,53,50,55,93,44,91,45,57,50,46,48,54,52,55,54,54,44,52,50,46,50,57,55,50,53,57,93,44,91,45,57,50,46,48,56,49,54,54,49,44,52,50,46,54,52,50,48,53,54,93,44,91,45,57,50,46,53,53,52,52,57,50,44,52,50,46,54,52,50,51,49,52,93,44,91,45,57,50,46,53,53,52,51,44,52,50,46,53,53,53,56,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,48,51,34,44,34,78,65,77,69,34,58,34,83,97,98,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,56,52,52,54,49,44,51,49,46,53,54,57,52,49,57,93,44,91,45,57,51,46,57,56,51,50,51,57,44,51,49,46,52,54,54,49,49,52,93,44,91,45,57,52,46,48,52,52,49,53,52,44,51,49,46,52,48,57,57,55,57,93,44,91,45,57,52,46,48,51,57,48,51,52,44,51,49,46,49,51,52,50,55,49,93,44,91,45,57,51,46,57,49,49,49,50,54,44,51,49,46,49,53,56,48,55,49,93,44,91,45,57,51,46,54,48,48,51,48,56,44,51,49,46,49,55,54,49,53,56,93,44,91,45,57,51,46,54,56,55,53,49,49,44,51,49,46,51,49,48,56,49,51,93,44,91,45,57,51,46,54,57,50,54,51,49,44,51,49,46,52,51,55,49,57,50,93,44,91,45,57,51,46,56,51,52,57,49,56,44,51,49,46,53,56,54,50,49,50,93,44,91,45,57,51,46,57,56,52,52,54,49,44,51,49,46,53,54,57,52,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,50,49,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,56,53,54,51,55,44,51,57,46,48,53,53,49,57,55,93,44,91,45,56,51,46,50,55,48,56,49,55,44,51,57,46,48,49,53,55,57,49,93,44,91,45,56,51,46,50,49,50,49,48,55,44,51,56,46,57,54,48,49,52,56,93,44,91,45,56,50,46,56,48,55,48,57,44,51,56,46,57,52,56,48,55,51,93,44,91,45,56,50,46,55,56,53,56,57,49,44,51,57,46,49,54,56,55,54,57,93,44,91,45,56,51,46,51,53,51,53,51,49,44,51,57,46,49,57,55,53,56,53,93,44,91,45,56,51,46,51,56,53,54,51,55,44,51,57,46,48,53,53,49,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,84,117,115,99,97,108,111,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,50,49,51,44,34,98,101,100,115,34,58,49,48,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,56,51,55,53,50,49,44,51,51,46,49,53,51,54,51,55,93,44,91,45,56,55,46,56,51,50,50,51,51,44,51,51,46,48,49,55,50,53,56,93,44,91,45,56,55,46,55,49,53,55,48,57,44,51,51,46,48,48,54,56,50,52,93,44,91,45,56,55,46,52,50,49,57,51,54,44,51,51,46,48,48,51,51,55,57,93,44,91,45,56,55,46,51,49,56,53,51,57,44,51,51,46,48,48,54,49,55,57,93,44,91,45,56,55,46,50,56,49,57,52,53,44,51,51,46,49,51,51,48,54,93,44,91,45,56,55,46,48,54,53,55,51,56,44,51,51,46,50,52,54,57,48,55,93,44,91,45,56,55,46,49,55,57,54,51,56,44,51,51,46,51,50,49,49,49,50,93,44,91,45,56,55,46,50,56,52,51,54,51,44,51,51,46,52,52,48,53,55,56,93,44,91,45,56,55,46,50,54,54,57,50,51,44,51,51,46,53,49,50,57,50,57,93,44,91,45,56,55,46,51,49,56,53,51,50,44,51,51,46,53,56,55,51,57,51,93,44,91,45,56,55,46,52,50,51,55,48,49,44,51,51,46,54,48,50,48,57,54,93,44,91,45,56,55,46,54,51,49,55,49,56,44,51,51,46,54,48,57,56,51,51,93,44,91,45,56,55,46,54,54,54,54,54,49,44,51,51,46,53,50,49,54,54,55,93,44,91,45,56,55,46,56,52,48,54,56,51,44,51,51,46,53,50,52,56,51,57,93,44,91,45,56,55,46,56,51,55,53,50,49,44,51,51,46,49,53,51,54,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,87,105,108,99,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,57,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,55,50,50,48,54,44,51,50,46,50,54,52,57,49,57,93,44,91,45,56,55,46,53,50,49,57,52,54,44,51,50,46,49,51,50,56,49,54,93,44,91,45,56,55,46,54,50,52,48,48,53,44,51,50,46,49,51,50,51,52,53,93,44,91,45,56,55,46,54,54,55,55,54,57,44,51,49,46,57,57,49,51,53,53,93,44,91,45,56,55,46,54,50,48,49,49,50,44,51,49,46,56,50,55,49,50,51,93,44,91,45,56,55,46,53,48,48,57,51,44,51,49,46,56,50,57,50,53,49,93,44,91,45,56,54,46,57,48,54,56,57,57,44,51,49,46,56,51,48,54,50,56,93,44,91,45,56,54,46,56,53,55,53,56,51,44,51,49,46,57,54,50,49,54,55,93,44,91,45,56,54,46,57,48,54,57,53,54,44,51,50,46,48,52,55,57,55,93,44,91,45,56,55,46,49,55,55,56,54,44,51,50,46,48,52,55,53,49,52,93,44,91,45,56,55,46,51,50,53,54,52,52,44,51,50,46,49,57,54,50,55,50,93,44,91,45,56,55,46,52,55,50,50,48,54,44,51,50,46,50,54,52,57,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,48,54,56,55,50,44,51,51,46,54,55,55,54,48,53,93,44,91,45,56,57,46,55,56,54,56,57,44,51,51,46,54,55,54,55,50,55,93,44,91,45,56,57,46,55,56,53,50,50,55,44,51,51,46,52,49,54,50,55,53,93,44,91,45,56,57,46,54,52,54,51,49,52,44,51,51,46,52,48,50,53,52,52,93,44,91,45,56,57,46,54,52,53,50,56,44,51,51,46,50,56,53,53,49,53,93,44,91,45,56,57,46,52,53,51,56,48,56,44,51,51,46,50,56,53,57,52,50,93,44,91,45,56,57,46,52,53,52,48,53,44,51,51,46,52,51,51,50,93,44,91,45,56,57,46,51,56,49,48,57,50,44,51,51,46,52,54,48,51,48,55,93,44,91,45,56,57,46,53,48,54,52,57,54,44,51,51,46,52,53,57,56,48,54,93,44,91,45,56,57,46,53,48,54,56,55,50,44,51,51,46,54,55,55,54,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,75,101,97,114,110,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,53,50,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,55,57,50,52,56,44,52,48,46,54,54,48,53,52,49,93,44,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,44,91,45,57,56,46,55,50,54,56,50,55,44,52,48,46,51,53,48,51,57,56,93,44,91,45,57,56,46,55,50,51,57,52,56,44,52,48,46,51,53,48,51,57,49,93,44,91,45,57,56,46,55,50,52,51,56,55,44,52,48,46,54,56,57,55,55,50,93,44,91,45,57,56,46,57,48,54,48,57,54,44,52,48,46,54,53,50,55,50,50,93,44,91,45,57,57,46,49,55,57,50,52,56,44,52,48,46,54,54,48,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,72,105,116,99,104,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,51,50,51,51,53,51,44,52,48,46,51,53,48,53,53,51,93,44,91,45,49,48,49,46,51,50,53,53,49,52,44,52,48,46,48,48,50,55,48,50,93,44,91,45,49,48,48,46,55,53,56,56,51,44,52,48,46,48,48,50,51,48,50,93,44,91,45,49,48,48,46,55,53,56,52,51,53,44,52,48,46,51,52,57,53,48,55,93,44,91,45,49,48,48,46,55,55,55,51,55,54,44,52,48,46,51,52,57,52,54,54,93,44,91,45,49,48,49,46,51,50,51,51,53,51,44,52,48,46,51,53,48,53,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,78,101,119,32,67,97,115,116,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,68,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,53,49,51,51,44,34,98,101,100,115,34,58,50,48,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,53,57,52,56,56,44,51,57,46,56,51,55,53,50,53,93,44,91,45,55,53,46,55,56,56,53,57,54,44,51,57,46,55,50,50,49,57,57,93,44,91,45,55,53,46,55,54,54,53,57,52,44,51,57,46,51,55,55,53,54,51,93,44,91,45,55,53,46,55,54,48,48,55,52,44,51,57,46,50,57,54,56,49,57,93,44,91,45,55,53,46,53,55,52,52,50,57,44,51,57,46,51,49,51,54,49,49,93,44,91,45,55,53,46,52,56,49,51,54,44,51,57,46,51,56,55,53,53,53,93,44,91,45,55,53,46,53,54,48,53,51,56,44,51,57,46,52,53,53,54,52,53,93,44,91,45,55,53,46,53,49,50,55,55,44,51,57,46,53,55,56,50,57,93,44,91,45,55,53,46,53,53,56,55,55,51,44,51,57,46,54,50,57,57,56,55,93,44,91,45,55,53,46,52,48,53,52,56,57,44,51,57,46,55,57,54,51,54,56,93,44,91,45,55,53,46,52,49,53,48,54,50,44,51,57,46,56,48,49,57,49,57,93,44,91,45,55,53,46,53,55,57,57,50,54,44,51,57,46,56,51,56,56,54,50,93,44,91,45,55,53,46,53,57,51,48,57,57,44,51,57,46,56,51,55,55,50,51,93,44,91,45,55,53,46,53,57,52,56,56,44,51,57,46,56,51,55,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,84,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,56,48,44,34,98,101,100,115,34,58,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,51,57,56,55,56,49,44,52,51,46,57,50,50,56,57,93,44,91,45,49,49,49,46,51,57,57,55,54,53,44,52,51,46,54,50,49,57,55,54,93,44,91,45,49,49,49,46,50,52,51,56,51,57,44,52,51,46,54,50,49,56,53,51,93,44,91,45,49,49,49,46,50,48,55,53,54,49,44,52,51,46,53,52,51,56,53,55,93,44,91,45,49,49,49,46,48,52,53,52,55,51,44,52,51,46,53,48,49,48,53,49,93,44,91,45,49,49,49,46,48,52,55,49,53,55,44,52,51,46,57,56,51,52,53,57,93,44,91,45,49,49,49,46,49,56,55,50,53,54,44,52,51,46,57,51,50,49,49,52,93,44,91,45,49,49,49,46,51,57,56,55,56,49,44,52,51,46,57,50,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,82,111,99,107,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,50,55,53,44,34,98,101,100,115,34,58,52,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,54,53,54,50,44,52,49,46,55,50,56,57,50,56,93,44,91,45,57,48,46,51,52,51,50,50,56,44,52,49,46,53,56,55,56,51,51,93,44,91,45,57,48,46,52,54,49,52,51,50,44,52,49,46,53,50,51,53,51,51,93,44,91,45,57,48,46,55,56,54,50,56,50,44,52,49,46,52,53,50,56,56,56,93,44,91,45,57,49,46,48,52,56,50,53,57,44,52,49,46,52,48,57,55,52,56,93,44,91,45,57,49,46,48,55,50,48,52,53,44,52,49,46,51,51,51,53,57,57,93,44,91,45,57,49,46,48,55,50,48,55,44,52,49,46,51,51,51,51,54,49,93,44,91,45,57,48,46,52,51,51,55,51,55,44,52,49,46,51,50,54,57,56,57,93,44,91,45,57,48,46,52,51,49,57,51,44,52,49,46,52,53,54,56,51,52,93,44,91,45,57,48,46,49,56,53,53,51,54,44,52,49,46,53,56,52,53,55,52,93,44,91,45,57,48,46,50,52,50,51,56,44,52,49,46,55,56,50,57,54,52,93,44,91,45,57,48,46,51,49,54,53,54,50,44,52,49,46,55,50,56,57,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,108,111,117,99,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,49,54,49,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,49,50,51,48,53,44,51,55,46,52,51,49,51,48,57,93,44,91,45,55,54,46,54,53,56,54,53,49,44,51,55,46,51,56,48,49,51,57,93,44,91,45,55,54,46,53,49,54,48,53,55,44,51,55,46,50,52,56,55,53,50,93,44,91,45,55,54,46,51,48,52,53,44,51,55,46,50,55,56,51,54,49,93,44,91,45,55,54,46,52,52,52,55,51,54,44,51,55,46,52,49,56,53,51,57,93,44,91,45,55,54,46,52,51,55,53,54,49,44,51,55,46,53,49,52,51,54,93,44,91,45,55,54,46,54,53,52,48,55,54,44,51,55,46,54,48,51,49,55,52,93,44,91,45,55,54,46,55,49,50,51,48,53,44,51,55,46,52,51,49,51,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,83,101,118,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,55,48,51,51,49,44,51,52,46,49,57,48,49,56,51,93,44,91,45,57,52,46,52,55,55,50,57,57,44,51,51,46,57,52,48,57,51,50,93,44,91,45,57,52,46,49,56,49,56,49,44,51,51,46,55,56,56,56,53,50,93,44,91,45,57,51,46,57,53,56,56,50,56,44,51,51,46,55,53,48,57,57,52,93,44,91,45,57,52,46,48,53,50,57,52,51,44,51,51,46,56,56,54,48,56,50,93,44,91,45,57,52,46,48,57,56,53,48,49,44,51,52,46,49,57,49,50,48,51,93,44,91,45,57,52,46,50,52,51,55,51,57,44,51,52,46,49,57,50,53,48,49,93,44,91,45,57,52,46,52,55,48,51,51,49,44,51,52,46,49,57,48,49,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,56,52,44,34,98,101,100,115,34,58,49,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,56,49,53,51,50,44,52,48,46,57,49,48,57,50,53,93,44,91,45,56,54,46,53,56,49,55,51,57,44,52,48,46,55,51,53,55,54,53,93,44,91,45,56,54,46,51,55,51,53,50,49,44,52,48,46,54,57,50,52,54,93,44,91,45,56,54,46,51,55,52,52,49,55,44,52,48,46,53,54,49,51,54,49,93,44,91,45,56,54,46,49,54,53,48,50,52,44,52,48,46,53,54,50,54,52,57,93,44,91,45,56,54,46,49,54,57,48,49,50,44,52,48,46,57,48,57,56,51,54,93,44,91,45,56,54,46,52,54,56,53,48,57,44,52,48,46,57,48,57,56,56,57,93,44,91,45,56,54,46,53,56,49,53,51,50,44,52,48,46,57,49,48,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,80,111,119,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,49,51,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,50,51,54,57,54,56,44,52,50,46,54,50,53,50,53,52,93,44,91,45,49,49,51,46,48,48,50,55,57,50,44,52,50,46,53,56,56,48,48,51,93,44,91,45,49,49,50,46,57,57,57,57,54,53,44,52,50,46,51,50,55,52,50,55,93,44,91,45,49,49,50,46,54,53,52,48,50,56,44,52,50,46,51,50,56,56,55,50,93,44,91,45,49,49,50,46,54,53,51,57,56,57,44,52,50,46,52,49,54,49,54,57,93,44,91,45,49,49,50,46,52,57,55,56,52,57,44,52,50,46,52,49,53,57,57,56,93,44,91,45,49,49,50,46,52,49,57,56,50,53,44,52,50,46,53,48,51,48,51,56,93,44,91,45,49,49,50,46,51,56,57,52,49,56,44,52,50,46,54,50,52,51,56,50,93,44,91,45,49,49,50,46,52,57,54,57,49,44,52,50,46,55,51,51,48,49,51,93,44,91,45,49,49,50,46,53,49,53,53,49,57,44,52,50,46,57,48,57,57,55,53,93,44,91,45,49,49,50,46,53,55,57,50,56,55,44,52,50,46,57,55,50,52,53,49,93,44,91,45,49,49,50,46,55,53,48,53,54,50,44,52,50,46,57,53,49,53,50,56,93,44,91,45,49,49,50,46,56,49,54,53,55,56,44,52,50,46,56,54,51,50,51,49,93,44,91,45,49,49,51,46,48,48,55,55,54,44,52,50,46,56,54,51,48,53,49,93,44,91,45,49,49,51,46,48,48,55,55,49,50,44,52,51,46,49,49,48,57,51,51,93,44,91,45,49,49,51,46,50,52,51,52,55,56,44,52,51,46,49,49,48,57,52,54,93,44,91,45,49,49,51,46,50,51,54,57,54,56,44,52,50,46,54,50,53,50,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,55,55,49,50,57,51,44,52,48,46,53,54,50,48,56,50,93,44,91,45,56,54,46,54,57,52,54,54,53,44,52,48,46,52,51,50,49,53,54,93,44,91,45,56,54,46,51,55,53,55,54,50,44,52,48,46,52,51,49,56,53,49,93,44,91,45,56,54,46,51,55,52,52,49,55,44,52,48,46,53,54,49,51,54,49,93,44,91,45,56,54,46,51,55,51,53,50,49,44,52,48,46,54,57,50,52,54,93,44,91,45,56,54,46,53,56,49,55,51,57,44,52,48,46,55,51,53,55,54,53,93,44,91,45,56,54,46,55,52,55,55,54,52,44,52,48,46,55,51,55,53,52,93,44,91,45,56,54,46,55,55,49,50,57,51,44,52,48,46,53,54,50,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,80,104,105,108,97,100,101,108,112,104,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,53,53,50,50,44,34,98,101,100,115,34,58,55,53,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,50,55,54,52,56,50,44,51,57,46,57,55,54,57,53,57,93,44,91,45,55,53,46,50,49,49,52,54,51,44,51,57,46,56,54,55,48,48,52,93,44,91,45,55,53,46,49,51,57,56,51,50,44,51,57,46,56,56,56,51,49,55,93,44,91,45,55,53,46,48,53,57,57,49,51,44,51,57,46,57,57,49,53,50,57,93,44,91,45,55,52,46,57,55,51,57,56,49,44,52,48,46,48,52,56,53,57,53,93,44,91,45,55,53,46,48,49,53,48,54,54,44,52,48,46,49,51,55,57,57,50,93,44,91,45,55,53,46,49,48,57,52,51,49,44,52,48,46,48,52,53,56,55,52,93,44,91,45,55,53,46,50,50,51,54,49,44,52,48,46,48,57,50,57,48,55,93,44,91,45,55,53,46,50,55,54,52,56,50,44,51,57,46,57,55,54,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,97,107,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,50,57,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,53,53,48,55,53,56,44,52,52,46,48,55,57,52,48,51,93,44,91,45,49,48,56,46,52,50,57,53,54,51,44,52,51,46,57,48,51,51,53,53,93,44,91,45,49,48,56,46,49,55,51,54,49,55,44,52,51,46,56,49,56,57,53,51,93,44,91,45,49,48,55,46,57,53,54,52,52,56,44,52,51,46,56,49,56,54,54,54,93,44,91,45,49,48,55,46,57,53,54,53,55,55,44,52,51,46,55,51,51,52,52,54,93,44,91,45,49,48,55,46,55,49,53,56,55,54,44,52,51,46,55,51,51,51,52,51,93,44,91,45,49,48,55,46,53,57,53,49,53,55,44,52,51,46,54,52,54,52,50,55,93,44,91,45,49,48,55,46,53,57,53,49,48,53,44,52,51,46,53,48,49,51,57,55,93,44,91,45,49,48,55,46,53,51,52,56,57,55,44,52,51,46,53,48,49,51,54,50,93,44,91,45,49,48,55,46,49,49,48,55,51,52,44,52,51,46,53,48,48,50,56,54,93,44,91,45,49,48,55,46,49,52,54,56,48,56,44,52,52,46,49,54,53,54,54,54,93,44,91,45,49,48,56,46,53,53,48,53,54,50,44,52,52,46,49,54,56,52,53,53,93,44,91,45,49,48,56,46,53,53,48,55,53,56,44,52,52,46,48,55,57,52,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,97,109,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,52,55,44,34,98,101,100,115,34,58,49,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,57,49,51,51,54,44,51,54,46,53,49,48,54,55,55,93,44,91,45,55,54,46,50,51,56,50,52,52,44,51,54,46,51,55,49,53,56,56,93,44,91,45,55,54,46,48,54,56,54,48,53,44,51,54,46,50,49,54,53,57,93,44,91,45,55,54,46,48,50,50,54,48,55,44,51,54,46,48,57,54,55,50,53,93,44,91,45,55,53,46,57,48,54,50,57,53,44,51,54,46,48,56,53,56,55,55,93,44,91,45,55,53,46,56,56,55,57,56,52,44,51,54,46,49,54,51,51,49,49,93,44,91,45,55,53,46,57,54,57,54,50,53,44,51,54,46,51,48,54,51,49,50,93,44,91,45,55,54,46,49,49,52,48,54,57,44,51,54,46,51,53,55,52,57,56,93,44,91,45,55,54,46,51,49,51,51,48,51,44,51,54,46,53,53,48,53,50,93,44,91,45,55,54,46,52,57,49,52,57,54,44,51,54,46,53,53,48,54,52,56,93,44,91,45,55,54,46,53,52,49,57,54,54,44,51,54,46,53,53,48,54,53,51,93,44,91,45,55,54,46,52,57,49,51,51,54,44,51,54,46,53,49,48,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,84,111,109,112,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,57,54,50,44,34,98,101,100,115,34,58,50,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,54,54,53,52,51,44,52,50,46,54,50,51,52,53,55,93,44,91,45,55,54,46,54,57,54,54,53,53,44,52,50,46,53,52,54,55,57,93,44,91,45,55,54,46,54,57,49,52,48,54,44,52,50,46,50,56,52,51,48,55,93,44,91,45,55,54,46,54,49,57,51,48,51,44,52,50,46,50,56,50,56,53,51,93,44,91,45,55,54,46,53,51,56,51,52,57,44,52,50,46,50,56,49,55,53,53,93,44,91,45,55,54,46,52,49,53,51,48,53,44,52,50,46,51,49,56,51,54,56,93,44,91,45,55,54,46,50,53,48,49,52,57,44,52,50,46,50,57,54,54,55,54,93,44,91,45,55,54,46,50,53,51,51,53,57,44,52,50,46,52,48,55,53,54,56,93,44,91,45,55,54,46,50,54,53,53,56,52,44,52,50,46,54,50,51,53,56,56,93,44,91,45,55,54,46,54,54,54,53,52,51,44,52,50,46,54,50,51,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,52,50,52,44,34,98,101,100,115,34,58,52,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,48,56,48,52,49,44,51,52,46,52,57,50,55,54,53,93,44,91,45,57,50,46,50,51,51,51,55,54,44,51,52,46,48,54,50,51,49,50,93,44,91,45,57,49,46,57,53,51,55,57,57,44,51,52,46,48,54,52,49,52,49,93,44,91,45,57,49,46,55,52,52,57,57,44,51,52,46,48,57,52,48,50,49,93,44,91,45,57,49,46,55,50,55,50,55,54,44,51,52,46,49,55,52,48,57,51,93,44,91,45,57,49,46,52,52,53,54,49,52,44,51,52,46,48,56,48,49,52,55,93,44,91,45,57,49,46,53,52,48,49,55,56,44,51,52,46,50,50,52,53,57,57,93,44,91,45,57,49,46,55,49,49,55,57,53,44,51,52,46,50,51,51,57,49,57,93,44,91,45,57,49,46,55,48,53,49,56,53,44,51,52,46,52,56,50,54,55,93,44,91,45,57,50,46,48,50,57,57,57,54,44,51,52,46,52,56,57,51,53,50,93,44,91,45,57,50,46,50,48,56,48,52,49,44,51,52,46,52,57,50,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,52,53,54,49,52,44,51,52,46,48,56,48,49,52,55,93,44,91,45,57,49,46,55,50,55,50,55,54,44,51,52,46,49,55,52,48,57,51,93,44,91,45,57,49,46,55,52,52,57,57,44,51,52,46,48,57,52,48,50,49,93,44,91,45,57,49,46,57,53,51,55,57,57,44,51,52,46,48,54,52,49,52,49,93,44,91,45,57,49,46,57,55,53,57,55,52,44,51,51,46,55,57,49,55,56,55,93,44,91,45,57,49,46,53,53,55,54,52,56,44,51,51,46,55,56,51,51,56,52,93,44,91,45,57,49,46,53,52,56,54,54,56,44,51,51,46,57,55,54,55,57,57,93,44,91,45,57,49,46,52,50,49,55,49,53,44,51,52,46,48,49,52,52,55,50,93,44,91,45,57,49,46,52,52,53,54,49,52,44,51,52,46,48,56,48,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,86,101,114,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,49,54,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,48,54,53,51,44,52,51,46,55,50,53,51,51,52,93,44,91,45,57,49,46,50,53,55,56,51,57,44,52,51,46,55,50,53,54,54,49,93,44,91,45,57,49,46,50,54,56,55,52,56,44,52,51,46,54,49,53,51,52,56,93,44,91,45,57,49,46,50,49,55,55,48,54,44,52,51,46,53,48,48,53,53,93,44,91,45,57,49,46,50,48,53,53,53,44,52,51,46,52,50,50,57,52,57,93,44,91,45,57,48,46,54,54,56,53,54,49,44,52,51,46,52,50,50,57,57,52,93,44,91,45,57,48,46,54,55,49,54,53,50,44,52,51,46,53,53,50,56,53,54,93,44,91,45,57,48,46,51,49,49,48,54,57,44,52,51,46,53,53,51,57,57,49,93,44,91,45,57,48,46,51,49,50,52,48,52,44,52,51,46,54,52,48,57,56,56,93,44,91,45,57,48,46,51,49,50,49,57,52,44,52,51,46,55,51,49,52,55,57,93,44,91,45,57,48,46,57,49,48,54,53,51,44,52,51,46,55,50,53,51,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,73,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,50,49,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,53,53,48,55,51,44,51,55,46,53,56,56,48,57,50,93,44,91,45,57,48,46,55,54,56,54,57,53,44,51,55,46,54,48,51,48,49,49,93,44,91,45,57,48,46,55,55,50,57,52,57,44,51,55,46,51,55,51,54,53,57,93,44,91,45,57,48,46,55,51,53,52,53,51,44,51,55,46,50,55,49,48,52,93,44,91,45,57,48,46,53,52,57,55,50,57,44,51,55,46,51,49,55,53,57,52,93,44,91,45,57,48,46,53,51,53,48,49,54,44,51,55,46,54,52,51,54,52,49,93,44,91,45,57,48,46,54,52,55,56,55,52,44,51,55,46,54,52,50,56,48,57,93,44,91,45,57,48,46,54,52,53,49,51,53,44,51,55,46,55,51,52,56,49,51,93,44,91,45,57,49,46,49,48,48,48,49,55,44,51,55,46,55,52,48,48,49,50,93,44,91,45,57,49,46,49,53,51,51,52,53,44,51,55,46,54,57,55,51,52,93,44,91,45,57,49,46,49,53,53,48,55,51,44,51,55,46,53,56,56,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,51,34,44,34,78,65,77,69,34,58,34,72,111,112,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,50,52,48,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,48,56,53,57,51,44,51,51,46,51,55,55,49,57,93,44,91,45,57,53,46,53,56,49,49,55,53,44,51,51,46,51,53,56,57,55,55,93,44,91,45,57,53,46,55,50,57,48,57,52,44,51,51,46,51,48,53,52,50,56,93,44,91,45,57,53,46,56,54,49,55,55,56,44,51,51,46,50,49,57,51,51,93,44,91,45,57,53,46,56,54,50,53,50,49,44,51,50,46,57,55,57,53,55,49,93,44,91,45,57,53,46,54,54,53,51,56,57,44,51,50,46,57,54,48,52,51,52,93,44,91,45,57,53,46,51,48,56,57,53,55,44,51,50,46,57,54,50,53,55,50,93,44,91,45,57,53,46,51,48,56,53,57,51,44,51,51,46,51,55,55,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,98,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,55,52,50,54,44,34,98,101,100,115,34,58,49,53,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,56,48,57,51,54,57,44,52,50,46,55,55,56,56,54,57,93,44,91,45,55,52,46,49,56,48,50,55,52,44,52,50,46,55,50,57,57,55,57,93,44,91,45,55,52,46,50,53,52,51,48,51,44,52,50,46,52,48,56,50,48,55,93,44,91,45,55,51,46,55,56,51,55,50,49,44,52,50,46,52,54,52,50,51,49,93,44,91,45,55,51,46,55,54,49,50,54,53,44,52,50,46,54,49,48,51,55,57,93,44,91,45,55,51,46,54,55,54,55,54,50,44,52,50,46,55,56,51,50,55,55,93,44,91,45,55,51,46,56,48,57,51,54,57,44,52,50,46,55,55,56,56,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,53,34,44,34,78,65,77,69,34,58,34,72,111,117,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,57,53,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,51,57,50,55,57,44,51,49,46,53,48,52,48,53,54,93,44,91,45,57,53,46,54,53,53,53,52,53,44,51,49,46,51,50,57,54,52,93,44,91,45,57,53,46,55,50,53,50,50,54,44,51,49,46,50,55,49,48,56,52,93,44,91,45,57,53,46,55,54,52,52,49,44,51,49,46,48,57,52,50,49,49,93,44,91,45,57,53,46,54,53,54,52,56,55,44,51,49,46,48,55,57,51,51,57,93,44,91,45,57,53,46,54,55,50,53,57,55,44,51,48,46,57,55,54,50,55,56,93,44,91,45,57,53,46,54,49,55,56,55,50,44,51,48,46,57,51,48,52,49,56,93,44,91,45,57,53,46,52,51,52,55,56,49,44,51,49,46,48,53,56,48,57,56,93,44,91,45,57,52,46,57,53,56,49,49,44,51,49,46,51,56,54,57,51,93,44,91,45,57,53,46,48,48,51,51,52,53,44,51,49,46,52,50,53,55,49,93,44,91,45,57,53,46,49,52,57,49,57,56,44,51,49,46,53,54,56,56,48,55,93,44,91,45,57,53,46,50,55,51,50,48,51,44,51,49,46,53,57,50,56,56,54,93,44,91,45,57,53,46,54,53,49,55,54,52,44,51,49,46,53,52,49,55,57,49,93,44,91,45,57,53,46,55,51,57,50,55,57,44,51,49,46,53,48,52,48,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,57,48,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,50,49,50,55,57,44,51,57,46,56,52,57,57,56,50,93,44,91,45,56,49,46,50,51,55,51,49,54,44,51,57,46,56,54,55,56,50,56,93,44,91,45,56,49,46,51,49,51,53,57,49,44,51,57,46,56,54,57,52,55,49,93,44,91,45,56,49,46,51,49,57,49,50,53,44,51,57,46,55,48,55,51,54,93,44,91,45,56,49,46,50,56,51,48,55,53,44,51,57,46,54,48,53,55,57,54,93,44,91,45,56,49,46,48,51,56,55,49,50,44,51,57,46,53,51,57,56,56,54,93,44,91,45,56,48,46,57,52,51,55,56,50,44,51,57,46,54,48,54,57,50,54,93,44,91,45,56,48,46,56,51,51,53,49,51,44,51,57,46,55,50,48,56,49,50,93,44,91,45,56,48,46,56,50,49,50,55,57,44,51,57,46,56,52,57,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,82,117,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,48,50,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,56,53,48,56,55,44,51,56,46,54,57,54,53,51,55,93,44,91,45,57,57,46,53,56,52,55,57,52,44,51,56,46,51,52,57,51,56,54,93,44,91,45,57,57,46,48,51,50,52,48,56,44,51,56,46,51,52,56,51,51,52,93,44,91,45,57,57,46,48,51,50,57,55,49,44,51,56,46,54,57,54,55,53,57,93,44,91,45,57,57,46,48,52,50,54,50,54,44,51,56,46,54,57,54,56,48,55,93,44,91,45,57,57,46,53,56,53,48,56,55,44,51,56,46,54,57,54,53,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,50,55,54,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,57,50,53,54,51,44,52,48,46,50,49,52,56,48,54,93,44,91,45,56,55,46,48,57,49,48,48,54,44,51,57,46,57,53,51,48,48,57,93,44,91,45,56,55,46,48,48,57,52,55,55,44,51,57,46,56,54,54,55,48,53,93,44,91,45,56,54,46,54,57,53,49,50,55,44,51,57,46,56,54,52,56,52,53,93,44,91,45,56,54,46,54,57,53,48,55,49,44,51,57,46,57,50,50,55,55,93,44,91,45,56,54,46,54,57,53,56,48,52,44,52,48,46,49,55,56,54,53,55,93,44,91,45,56,54,46,54,57,53,54,51,55,44,52,48,46,50,49,52,51,54,55,93,44,91,45,56,55,46,48,57,50,53,54,51,44,52,48,46,50,49,52,56,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,83,116,97,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,51,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,49,54,52,50,44,51,55,46,51,56,57,49,57,93,44,91,45,49,48,49,46,53,53,54,54,48,54,44,51,55,46,51,56,56,52,56,53,93,44,91,45,49,48,49,46,53,50,53,56,49,44,51,55,46,51,56,56,51,57,50,93,44,91,45,49,48,49,46,53,50,55,48,54,51,44,51,55,46,55,51,54,51,49,52,93,44,91,45,49,48,50,46,48,52,50,49,53,53,44,51,55,46,55,51,56,53,52,49,93,44,91,45,49,48,50,46,48,52,49,53,56,53,44,51,55,46,54,52,52,50,56,50,93,44,91,45,49,48,50,46,48,52,49,54,52,50,44,51,55,46,51,56,57,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,50,50,49,44,51,55,46,55,49,54,52,50,93,44,91,45,56,51,46,56,50,51,48,51,44,51,55,46,54,53,57,56,55,50,93,44,91,45,56,51,46,57,48,53,53,55,44,51,55,46,53,52,50,56,53,54,93,44,91,45,56,51,46,56,56,53,50,54,50,44,51,55,46,53,49,55,54,56,56,93,44,91,45,56,51,46,53,55,57,49,56,54,44,51,55,46,53,48,54,50,52,57,93,44,91,45,56,51,46,53,50,50,51,48,56,44,51,55,46,54,51,56,53,49,54,93,44,91,45,56,51,46,55,48,55,57,55,52,44,51,55,46,55,49,54,52,54,51,93,44,91,45,56,51,46,55,50,50,49,44,51,55,46,55,49,54,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,75,111,111,99,104,105,99,104,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,56,56,52,51,56,44,52,56,46,54,50,55,53,57,55,93,44,91,45,57,51,46,50,48,55,52,50,54,44,52,56,46,54,52,50,52,49,57,93,44,91,45,57,51,46,52,54,53,57,56,50,44,52,56,46,53,56,55,50,56,55,93,44,91,45,57,51,46,52,54,55,53,48,50,44,52,56,46,53,52,53,54,54,49,93,44,91,45,57,51,46,55,57,52,52,53,53,44,52,56,46,53,49,53,57,56,54,93,44,91,45,57,51,46,56,52,52,48,49,51,44,52,56,46,54,50,57,51,56,52,93,44,91,45,57,52,46,50,52,52,51,57,56,44,52,56,46,54,53,51,52,50,49,93,44,91,45,57,52,46,52,51,48,50,55,51,44,52,56,46,55,48,48,57,48,57,93,44,91,45,57,52,46,52,50,56,55,48,50,44,52,56,46,51,54,55,51,51,51,93,44,91,45,57,52,46,52,49,56,53,52,51,44,52,55,46,56,52,53,56,49,54,93,44,91,45,57,51,46,55,55,54,49,55,51,44,52,55,46,56,52,54,52,48,52,93,44,91,45,57,51,46,55,55,53,55,55,50,44,52,55,46,56,57,56,57,53,93,44,91,45,57,51,46,48,56,49,49,53,56,44,52,55,46,56,57,49,56,55,93,44,91,45,57,51,46,48,57,54,52,56,56,44,52,56,46,48,54,55,56,50,54,93,44,91,45,57,51,46,48,56,56,52,51,56,44,52,56,46,54,50,55,53,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,66,101,120,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,53,56,54,53,44,34,98,101,100,115,34,58,55,52,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,54,53,53,50,44,50,57,46,54,57,48,55,48,57,93,44,91,45,57,56,46,56,48,52,55,54,51,44,50,57,46,50,53,48,54,57,51,93,44,91,45,57,56,46,52,48,55,51,51,54,44,50,57,46,49,49,52,52,51,53,93,44,91,45,57,56,46,49,51,52,49,55,49,44,50,57,46,52,52,49,55,53,49,93,44,91,45,57,56,46,51,49,48,57,50,56,44,50,57,46,53,57,52,52,55,51,93,44,91,45,57,56,46,51,56,48,49,54,49,44,50,57,46,55,48,51,57,50,57,93,44,91,45,57,56,46,53,52,51,55,49,56,44,50,57,46,55,53,50,48,53,50,93,44,91,45,57,56,46,54,52,54,49,50,52,44,50,57,46,55,52,53,49,56,49,93,44,91,45,57,56,46,55,55,56,55,56,50,44,50,57,46,55,50,48,49,54,55,93,44,91,45,57,56,46,56,48,54,53,53,50,44,50,57,46,54,57,48,55,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,111,117,108,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,49,48,51,48,44,34,98,101,100,115,34,58,56,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,54,53,51,51,50,49,44,52,48,46,50,54,48,52,53,55,93,44,91,45,49,48,53,46,54,51,56,50,57,50,44,52,48,46,48,52,52,51,50,54,93,44,91,45,49,48,53,46,54,55,53,55,57,56,44,51,57,46,57,51,50,52,52,53,93,44,91,45,49,48,53,46,51,57,55,56,52,57,44,51,57,46,57,49,50,56,56,54,93,44,91,45,49,48,53,46,49,52,55,49,52,51,44,51,57,46,57,49,51,56,56,57,93,44,91,45,49,48,53,46,48,53,50,56,50,51,44,52,48,46,48,48,48,50,54,93,44,91,45,49,48,53,46,48,53,53,48,56,57,44,52,48,46,50,54,49,55,57,51,93,44,91,45,49,48,53,46,54,53,51,51,50,49,44,52,48,46,50,54,48,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,50,52,55,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,54,55,48,57,55,44,51,54,46,49,55,52,54,56,56,93,44,91,45,56,51,46,53,57,55,55,54,54,44,51,54,46,49,54,52,49,56,50,93,44,91,45,56,51,46,54,54,55,52,54,44,51,54,46,48,56,48,53,56,55,93,44,91,45,56,51,46,54,55,51,50,57,55,44,51,54,46,48,51,56,52,56,54,93,44,91,45,56,51,46,52,55,52,57,48,49,44,51,53,46,57,50,50,56,57,51,93,44,91,45,56,51,46,51,49,48,55,56,50,44,51,53,46,56,57,53,56,52,54,93,44,91,45,56,51,46,50,51,52,53,56,53,44,51,54,46,48,56,53,48,57,52,93,44,91,45,56,51,46,50,57,51,54,56,57,44,51,54,46,49,51,56,49,57,51,93,44,91,45,56,51,46,52,54,55,48,57,55,44,51,54,46,49,55,52,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,97,121,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,57,56,48,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,50,56,49,55,44,51,54,46,53,49,48,50,52,93,44,91,45,57,53,46,52,51,53,54,49,44,51,54,46,53,49,48,49,54,93,44,91,45,57,53,46,52,51,57,57,55,44,51,54,46,48,55,53,50,93,44,91,45,57,53,46,50,48,55,57,52,54,44,51,54,46,48,55,52,55,48,56,93,44,91,45,57,53,46,49,49,56,53,44,51,54,46,49,54,49,54,51,93,44,91,45,57,53,46,48,49,49,51,48,57,44,51,54,46,49,54,49,55,54,51,93,44,91,45,57,53,46,48,48,53,55,51,44,51,54,46,53,48,57,56,57,93,44,91,45,57,53,46,51,50,56,49,55,44,51,54,46,53,49,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,87,97,116,111,110,119,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,55,51,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,53,57,56,48,51,44,52,52,46,49,48,56,48,49,54,93,44,91,45,57,52,46,56,53,57,51,56,56,44,52,51,46,56,52,56,48,57,51,93,44,91,45,57,52,46,56,53,52,52,52,52,44,52,51,46,56,52,56,48,57,57,93,44,91,45,57,52,46,51,54,56,57,55,52,44,52,51,46,56,52,56,48,52,55,93,44,91,45,57,52,46,51,54,56,56,53,44,52,52,46,49,48,56,54,57,56,93,44,91,45,57,52,46,56,53,57,56,48,51,44,52,52,46,49,48,56,48,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,108,97,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,57,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,57,56,57,50,53,56,44,52,51,46,56,53,56,53,54,51,93,44,91,45,49,49,52,46,55,48,50,48,53,44,52,51,46,56,48,53,52,49,51,93,44,91,45,49,49,52,46,54,56,51,49,52,44,52,51,46,53,57,51,51,54,55,93,44,91,45,49,49,52,46,53,49,50,52,51,56,44,52,51,46,52,54,48,52,53,52,93,44,91,45,49,49,52,46,53,51,52,52,56,56,44,52,51,46,51,51,51,51,56,51,93,44,91,45,49,49,52,46,51,57,52,54,48,54,44,52,51,46,51,50,54,52,54,55,93,44,91,45,49,49,52,46,51,55,52,57,54,50,44,52,51,46,49,57,57,54,52,93,44,91,45,49,49,51,46,55,49,52,54,52,50,44,52,51,46,49,57,57,55,56,51,93,44,91,45,49,49,51,46,52,49,51,56,54,55,44,52,51,46,49,57,57,56,53,57,93,44,91,45,49,49,51,46,52,49,51,49,51,56,44,52,50,46,56,52,57,49,54,57,93,44,91,45,49,49,51,46,52,55,50,49,53,53,44,52,50,46,56,52,57,50,48,49,93,44,91,45,49,49,51,46,52,55,50,49,55,55,44,52,50,46,54,54,57,51,53,50,93,44,91,45,49,49,51,46,51,55,53,48,54,50,44,52,50,46,54,56,55,56,51,50,93,44,91,45,49,49,51,46,50,51,54,57,54,56,44,52,50,46,54,50,53,50,53,52,93,44,91,45,49,49,51,46,50,52,51,52,55,56,44,52,51,46,49,49,48,57,52,54,93,44,91,45,49,49,51,46,48,48,55,55,49,50,44,52,51,46,49,49,48,57,51,51,93,44,91,45,49,49,51,46,48,48,55,51,49,56,44,52,51,46,50,56,52,55,55,56,93,44,91,45,49,49,51,46,51,54,49,57,53,56,44,52,51,46,50,56,52,54,55,56,93,44,91,45,49,49,51,46,51,54,49,57,49,44,52,51,46,51,54,55,49,54,93,44,91,45,49,49,51,46,54,51,53,50,51,44,52,51,46,51,54,55,53,52,54,93,44,91,45,49,49,51,46,54,51,52,51,51,53,44,52,51,46,52,57,55,51,48,56,93,44,91,45,49,49,51,46,55,48,49,49,53,51,44,52,51,46,53,56,52,53,53,51,93,44,91,45,49,49,51,46,55,57,56,52,52,49,44,52,51,46,53,54,57,50,49,55,93,44,91,45,49,49,51,46,57,56,54,52,57,52,44,52,51,46,55,50,53,51,57,93,44,91,45,49,49,52,46,49,51,50,55,51,50,44,52,51,46,55,53,48,55,53,55,93,44,91,45,49,49,52,46,50,57,50,52,56,52,44,52,51,46,56,56,55,48,54,50,93,44,91,45,49,49,52,46,57,55,49,51,53,49,44,52,51,46,57,51,56,51,48,56,93,44,91,45,49,49,52,46,57,56,57,50,53,56,44,52,51,46,56,53,56,53,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,32,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,52,54,55,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,49,51,49,49,48,57,44,51,48,46,52,48,51,48,53,55,93,44,91,45,57,51,46,48,51,48,57,53,53,44,51,48,46,51,55,57,51,57,93,44,91,45,57,50,46,57,57,54,51,55,49,44,51,48,46,48,51,56,52,55,57,93,44,91,45,57,50,46,55,51,56,54,48,52,44,51,48,46,48,51,55,51,50,51,93,44,91,45,57,50,46,54,50,53,52,56,52,44,51,48,46,48,57,50,51,51,93,44,91,45,57,50,46,54,51,49,57,56,55,44,51,48,46,52,56,49,49,52,55,93,44,91,45,57,50,46,54,51,48,51,52,55,44,51,48,46,52,56,55,56,55,51,93,44,91,45,57,50,46,55,55,53,53,53,52,44,51,48,46,52,51,55,54,53,54,93,44,91,45,57,51,46,49,51,49,49,53,53,44,51,48,46,52,50,51,54,49,50,93,44,91,45,57,51,46,49,51,49,49,48,57,44,51,48,46,52,48,51,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,83,117,108,108,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,55,52,50,53,50,44,52,52,46,56,57,55,53,48,51,93,44,91,45,49,48,48,46,52,48,52,55,53,51,44,52,52,46,56,57,55,54,57,53,93,44,91,45,49,48,48,46,53,52,51,52,56,52,44,52,52,46,55,54,49,48,56,55,93,44,91,45,49,48,48,46,55,49,55,54,52,52,44,52,52,46,55,55,48,57,51,93,44,91,45,49,48,48,46,54,49,51,56,48,53,44,52,52,46,55,48,55,49,51,53,93,44,91,45,49,48,48,46,54,52,48,48,54,49,44,52,52,46,53,56,51,55,50,51,93,44,91,45,49,48,48,46,53,50,54,52,57,56,44,52,52,46,53,52,55,52,50,50,93,44,91,45,57,57,46,54,55,54,51,57,56,44,52,52,46,53,52,56,49,49,49,93,44,91,45,57,57,46,54,55,52,50,53,50,44,52,52,46,56,57,55,53,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,101,110,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,51,52,49,55,44,34,98,101,100,115,34,58,50,54,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,53,51,50,52,54,44,51,57,46,55,57,49,48,54,51,93,44,91,45,49,48,53,46,48,53,51,50,53,54,44,51,57,46,54,54,55,55,56,53,93,44,91,45,49,48,53,46,48,57,54,57,48,57,44,51,57,46,54,49,52,52,50,51,93,44,91,45,49,48,53,46,48,53,51,52,51,55,44,51,57,46,54,50,48,57,56,52,93,44,91,45,49,48,53,46,48,53,51,52,51,57,44,51,57,46,54,50,52,51,56,55,93,44,91,45,49,48,53,46,48,53,51,51,51,44,51,57,46,54,50,55,57,56,57,93,44,91,45,49,48,53,46,48,53,51,52,53,55,44,51,57,46,54,50,57,53,50,54,93,44,91,45,49,48,53,46,48,53,51,52,49,49,44,51,57,46,54,51,49,53,56,54,93,44,91,45,49,48,52,46,56,56,52,54,52,54,44,51,57,46,55,52,48,49,53,54,93,44,91,45,49,48,53,46,48,53,51,50,52,54,44,51,57,46,55,57,49,48,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,49,56,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,48,55,48,55,52,44,51,52,46,52,49,56,51,57,93,44,91,45,57,54,46,49,52,53,52,50,51,44,51,52,46,52,49,56,51,49,51,93,44,91,45,57,54,46,48,57,50,48,49,50,44,51,52,46,53,48,54,48,53,57,93,44,91,45,57,54,46,48,57,50,48,52,51,44,51,52,46,54,56,48,53,53,54,93,44,91,45,57,54,46,48,57,50,48,48,49,44,51,52,46,55,54,55,52,55,57,93,44,91,45,57,54,46,52,48,54,52,56,51,44,51,52,46,55,54,55,51,50,56,93,44,91,45,57,54,46,53,49,50,49,55,49,44,51,52,46,54,56,48,48,54,53,93,44,91,45,57,54,46,53,49,51,55,56,55,44,51,52,46,53,48,53,51,57,54,93,44,91,45,57,54,46,52,48,55,48,55,52,44,51,52,46,52,49,56,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,56,49,57,52,44,52,53,46,55,56,54,57,56,50,93,44,91,45,49,48,52,46,57,56,55,51,49,56,44,52,53,46,51,53,50,48,52,93,44,91,45,49,48,53,46,48,51,56,50,48,53,44,52,53,46,51,53,50,48,51,53,93,44,91,45,49,48,53,46,48,51,56,50,52,57,44,52,53,46,48,48,48,49,48,54,93,44,91,45,49,48,52,46,48,53,55,56,55,57,44,52,52,46,57,57,55,54,48,53,93,44,91,45,49,48,52,46,48,52,48,48,48,52,44,52,53,46,50,49,50,56,57,49,93,44,91,45,49,48,52,46,48,52,52,49,57,52,44,52,53,46,56,56,49,57,55,53,93,44,91,45,49,48,52,46,49,51,52,56,52,50,44,52,53,46,57,54,56,56,51,51,93,44,91,45,49,48,52,46,51,57,48,56,55,54,44,52,53,46,57,55,48,51,54,51,93,44,91,45,49,48,52,46,51,57,48,55,52,52,44,52,54,46,48,53,52,56,50,54,93,44,91,45,49,48,52,46,53,49,54,49,50,54,44,52,54,46,49,51,54,49,57,54,93,44,91,45,49,48,52,46,56,56,53,52,57,53,44,52,54,46,49,51,54,53,57,53,93,44,91,45,49,48,52,46,57,51,57,50,48,53,44,52,54,46,49,51,54,53,55,53,93,44,91,45,49,48,52,46,57,51,57,50,56,57,44,52,53,46,55,56,54,57,54,52,93,44,91,45,49,48,52,46,57,56,49,57,52,44,52,53,46,55,56,54,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,54,49,34,44,34,78,65,77,69,34,58,34,85,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,52,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,51,48,49,50,49,50,44,51,49,46,48,56,54,50,49,50,93,44,91,45,49,48,49,46,55,55,54,49,57,49,44,51,49,46,48,55,57,55,56,52,93,44,91,45,49,48,49,46,55,55,53,56,48,50,44,51,49,46,54,53,49,51,49,57,93,44,91,45,49,48,50,46,50,56,55,51,52,53,44,51,49,46,54,53,49,50,55,54,93,44,91,45,49,48,50,46,51,49,56,48,53,44,51,49,46,54,53,49,51,50,55,93,44,91,45,49,48,50,46,51,48,49,50,49,50,44,51,49,46,48,56,54,50,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,105,98,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,57,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,52,51,54,57,49,44,51,56,46,52,49,52,51,56,55,93,44,91,45,56,55,46,56,53,49,49,51,44,51,56,46,50,55,53,49,50,93,44,91,45,56,55,46,57,56,55,57,49,49,44,51,56,46,50,53,54,57,53,55,93,44,91,45,56,55,46,57,56,51,55,51,50,44,51,56,46,50,51,48,51,53,52,93,44,91,45,56,55,46,55,57,57,49,54,57,44,51,56,46,50,50,56,53,56,93,44,91,45,56,55,46,54,56,56,51,55,52,44,51,56,46,49,54,56,52,49,57,93,44,91,45,56,55,46,52,54,55,50,56,52,44,51,56,46,49,54,53,52,48,51,93,44,91,45,56,55,46,51,49,54,56,57,51,44,51,56,46,50,52,54,48,55,55,93,44,91,45,56,55,46,51,49,53,57,51,44,51,56,46,51,55,53,48,52,56,93,44,91,45,56,55,46,52,48,55,53,56,51,44,51,56,46,51,55,53,53,48,49,93,44,91,45,56,55,46,52,54,50,56,57,50,44,51,56,46,53,51,51,53,49,57,93,44,91,45,56,55,46,55,52,51,54,57,49,44,51,56,46,52,49,52,51,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,75,105,109,98,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,55,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,51,55,55,54,50,44,52,49,46,51,57,52,54,51,51,93,44,91,45,49,48,52,46,48,53,50,50,56,55,44,52,49,46,51,57,51,50,49,52,93,44,91,45,49,48,52,46,48,53,51,50,52,57,44,52,49,46,48,48,49,52,48,54,93,44,91,45,49,48,51,46,53,55,51,55,55,52,44,52,49,46,48,48,49,55,49,54,93,44,91,45,49,48,51,46,51,56,50,52,57,50,44,52,49,46,48,48,50,50,53,50,93,44,91,45,49,48,51,46,51,55,55,54,50,44,52,49,46,51,57,52,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,75,101,110,100,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,54,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,54,49,57,53,50,44,52,49,46,55,50,52,54,53,50,93,44,91,45,56,56,46,54,48,49,57,51,51,44,52,49,46,55,49,57,53,54,51,93,44,91,45,56,56,46,54,48,50,50,52,44,52,49,46,54,51,49,51,56,57,93,44,91,45,56,56,46,53,57,53,57,54,49,44,52,49,46,52,53,55,49,50,57,93,44,91,45,56,56,46,50,53,50,50,51,49,44,52,49,46,52,54,51,48,54,54,93,44,91,45,56,56,46,50,54,49,50,55,53,44,52,49,46,55,50,52,54,53,54,93,44,91,45,56,56,46,50,54,49,57,53,50,44,52,49,46,55,50,52,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,68,105,115,116,114,105,99,116,32,111,102,32,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,68,105,115,116,114,105,99,116,32,111,102,32,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,68,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,52,57,56,44,34,98,101,100,115,34,58,52,49,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,48,48,50,52,51,54,44,51,56,46,57,54,53,54,55,51,93,44,91,45,55,55,46,49,49,57,55,53,57,44,51,56,46,57,51,52,51,52,51,93,44,91,45,55,55,46,48,52,56,48,50,44,51,56,46,56,52,49,50,54,49,93,44,91,45,55,55,46,48,51,57,48,48,54,44,51,56,46,55,57,49,54,52,53,93,44,91,45,55,54,46,57,48,57,51,57,51,44,51,56,46,56,57,50,56,53,50,93,44,91,45,55,55,46,48,48,50,52,51,54,44,51,56,46,57,54,53,54,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,77,111,110,116,114,111,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,54,56,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,51,55,56,54,57,56,44,51,56,46,54,54,56,48,57,55,93,44,91,45,49,48,56,46,51,55,57,49,51,54,44,51,56,46,52,57,57,57,56,55,93,44,91,45,49,48,57,46,48,54,48,49,49,57,44,51,56,46,52,57,57,57,56,57,93,44,91,45,49,48,57,46,48,52,50,53,56,51,44,51,56,46,49,53,51,48,50,56,93,44,91,45,49,48,55,46,57,54,53,55,56,57,44,51,56,46,49,53,50,51,50,56,93,44,91,45,49,48,55,46,57,51,55,53,56,56,44,51,56,46,50,49,56,57,57,50,93,44,91,45,49,48,56,46,48,56,54,54,48,52,44,51,56,46,50,53,53,50,48,50,93,44,91,45,49,48,56,46,49,51,50,51,56,44,51,56,46,51,51,49,53,55,51,93,44,91,45,49,48,55,46,54,51,53,54,57,55,44,51,56,46,51,51,50,49,52,56,93,44,91,45,49,48,55,46,54,51,53,48,52,44,51,56,46,51,48,49,56,57,54,93,44,91,45,49,48,55,46,53,48,48,48,50,44,51,56,46,51,48,49,57,50,54,93,44,91,45,49,48,55,46,53,48,48,54,53,53,44,51,56,46,54,54,56,53,53,51,93,44,91,45,49,48,56,46,51,55,56,54,57,56,44,51,56,46,54,54,56,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,87,114,105,103,104,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,55,52,53,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,54,48,56,50,49,44,52,53,46,50,56,51,57,52,49,93,44,91,45,57,52,46,50,53,54,48,55,52,44,52,52,46,57,55,57,52,54,53,93,44,91,45,57,52,46,48,49,50,50,51,54,44,52,52,46,57,55,56,55,49,50,93,44,91,45,57,51,46,55,54,55,51,54,55,44,52,52,46,57,55,55,57,54,52,93,44,91,45,57,51,46,55,54,54,56,48,56,44,52,53,46,48,53,55,51,49,50,93,44,91,45,57,51,46,54,53,56,57,49,55,44,52,53,46,49,57,51,53,53,49,93,44,91,45,57,51,46,53,50,49,54,53,51,44,52,53,46,50,52,54,54,49,56,93,44,91,45,57,51,46,53,55,57,51,57,44,52,53,46,50,57,50,49,50,50,93,44,91,45,57,51,46,55,53,54,54,49,44,52,53,46,50,57,52,55,50,49,93,44,91,45,57,52,46,48,52,55,51,50,55,44,52,53,46,52,50,50,56,54,49,93,44,91,45,57,52,46,49,49,54,55,54,53,44,52,53,46,51,50,56,48,49,57,93,44,91,45,57,52,46,50,54,48,56,50,49,44,52,53,46,50,56,51,57,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,75,101,110,111,115,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,51,51,48,44,34,98,101,100,115,34,58,51,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,52,51,56,57,57,44,52,50,46,54,54,51,55,50,57,93,44,91,45,56,56,46,49,56,56,51,48,54,44,52,50,46,54,54,57,55,48,57,93,44,91,45,56,56,46,51,48,53,56,57,49,44,52,50,46,54,49,48,56,49,55,93,44,91,45,56,56,46,51,48,52,54,57,50,44,52,50,46,52,57,52,54,49,56,93,44,91,45,56,56,46,49,57,57,51,56,57,44,52,50,46,52,57,53,49,51,51,93,44,91,45,56,55,46,48,49,57,57,51,53,44,52,50,46,52,57,51,52,57,56,93,44,91,45,56,55,46,48,52,51,56,57,57,44,52,50,46,54,54,51,55,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,69,97,103,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,51,53,55,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,48,51,51,57,54,56,44,51,57,46,57,49,56,57,49,51,93,44,91,45,49,48,55,46,49,49,51,54,55,50,44,51,57,46,57,49,57,49,49,50,93,44,91,45,49,48,55,46,49,49,51,52,52,54,44,51,57,46,51,54,54,48,54,54,93,44,91,45,49,48,54,46,52,50,54,52,56,55,44,51,57,46,51,54,49,56,55,49,93,44,91,45,49,48,54,46,50,48,54,55,51,50,44,51,57,46,51,55,57,54,51,54,93,44,91,45,49,48,54,46,50,52,56,50,57,53,44,51,57,46,53,52,52,50,53,49,93,44,91,45,49,48,54,46,49,55,54,49,49,53,44,51,57,46,54,49,52,50,50,49,93,44,91,45,49,48,54,46,51,56,53,52,55,56,44,51,57,46,55,54,55,49,54,52,93,44,91,45,49,48,54,46,52,51,52,53,48,56,44,51,57,46,57,50,52,57,49,52,93,44,91,45,49,48,54,46,54,50,54,53,54,57,44,51,57,46,57,50,52,55,56,53,93,44,91,45,49,48,55,46,48,51,51,57,54,56,44,51,57,46,57,49,56,57,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,83,97,110,32,70,114,97,110,99,105,115,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,48,48,52,52,44,34,98,101,100,115,34,58,51,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,50,50,46,54,49,50,50,56,53,44,51,55,46,56,49,53,50,50,52,93,44,91,45,49,50,50,46,53,55,53,49,56,57,44,51,55,46,55,48,54,55,50,49,93,44,91,45,49,50,50,46,50,56,49,55,56,44,51,55,46,55,48,56,50,51,93,44,91,45,49,50,50,46,51,55,51,55,56,50,44,51,55,46,56,56,51,55,50,53,93,44,91,45,49,50,50,46,52,51,50,50,56,51,44,51,55,46,57,50,57,56,50,52,93,44,91,45,49,50,50,46,52,49,56,54,55,51,44,51,55,46,56,53,50,53,48,53,93,44,91,45,49,50,50,46,54,49,50,50,56,53,44,51,55,46,56,49,53,50,50,52,93,93,93,44,91,91,91,45,49,50,51,46,49,55,51,56,50,53,44,51,55,46,55,55,53,55,50,55,93,44,91,45,49,50,51,46,48,48,48,57,49,50,44,51,55,46,54,51,57,57,51,93,44,91,45,49,50,50,46,57,52,57,57,56,53,44,51,55,46,55,51,50,49,56,55,93,44,91,45,49,50,51,46,48,55,48,52,57,52,44,51,55,46,56,49,51,56,51,93,44,91,45,49,50,51,46,49,55,51,56,50,53,44,51,55,46,55,55,53,55,50,55,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,83,97,110,32,77,105,103,117,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,49,57,57,50,44,51,55,46,56,56,49,48,56,51,93,44,91,45,49,48,56,46,56,49,54,55,49,44,51,55,46,56,57,53,53,51,56,93,44,91,45,49,48,56,46,50,53,54,52,57,56,44,51,55,46,56,57,52,54,48,55,93,44,91,45,49,48,56,46,50,48,57,48,57,51,44,51,55,46,56,50,48,57,51,54,93,44,91,45,49,48,55,46,57,56,57,50,48,56,44,51,55,46,56,53,54,54,52,93,44,91,45,49,48,55,46,56,54,48,56,52,53,44,51,55,46,55,55,53,53,49,55,93,44,91,45,49,48,55,46,55,51,56,50,56,51,44,51,55,46,57,48,53,52,51,50,93,44,91,45,49,48,55,46,55,57,53,52,54,57,44,51,55,46,57,56,56,53,50,93,44,91,45,49,48,55,46,57,48,48,49,57,51,44,51,56,46,48,50,54,50,52,57,93,44,91,45,49,48,55,46,57,54,53,55,56,57,44,51,56,46,49,53,50,51,50,56,93,44,91,45,49,48,57,46,48,52,50,53,56,51,44,51,56,46,49,53,51,48,50,56,93,44,91,45,49,48,57,46,48,52,49,57,57,50,44,51,55,46,56,56,49,48,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,48,34,44,34,78,65,77,69,34,58,34,65,110,99,104,111,114,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,54,49,49,50,44,34,98,101,100,115,34,58,49,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,56,46,52,54,50,52,55,49,44,54,49,46,52,50,54,50,54,55,93,44,91,45,49,52,57,46,49,56,48,48,54,50,44,54,49,46,52,50,54,50,53,93,44,91,45,49,52,57,46,51,53,57,52,52,44,54,49,46,52,56,52,48,50,53,93,44,91,45,49,52,57,46,55,52,56,51,54,57,44,54,49,46,51,57,55,51,55,49,93,44,91,45,49,52,57,46,57,56,55,52,57,53,44,54,49,46,50,50,52,48,54,52,93,44,91,45,49,53,48,46,52,50,52,49,52,56,44,54,49,46,49,54,54,51,48,56,93,44,91,45,49,53,48,46,50,52,55,55,52,54,44,54,49,46,48,55,57,54,51,55,93,44,91,45,49,53,48,46,48,54,57,50,51,56,44,54,49,46,48,55,57,54,51,54,93,44,91,45,49,52,57,46,51,53,57,51,57,57,44,54,48,46,57,48,54,51,51,93,44,91,45,49,52,57,46,48,51,52,48,56,44,54,48,46,56,52,56,53,51,52,93,44,91,45,49,52,57,46,48,51,55,55,52,49,44,54,48,46,55,51,50,57,56,55,93,44,91,45,49,52,56,46,55,52,53,54,49,56,44,54,48,46,55,51,51,48,48,55,93,44,91,45,49,52,56,46,55,51,56,51,54,51,44,54,48,46,56,52,56,53,52,54,93,44,91,45,49,52,56,46,52,55,50,48,54,53,44,54,48,46,56,52,56,53,50,93,44,91,45,49,52,56,46,52,54,50,52,55,49,44,54,49,46,52,50,54,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,74,111,104,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,53,48,51,44,34,98,101,100,115,34,58,51,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,50,48,49,56,53,44,51,48,46,50,53,50,57,50,93,44,91,45,56,49,46,52,51,54,57,50,57,44,51,48,46,50,53,50,51,51,53,93,44,91,45,56,49,46,52,51,51,55,51,55,44,51,48,46,49,48,54,48,50,56,93,44,91,45,56,49,46,54,56,48,50,49,53,44,51,48,46,49,50,49,50,52,93,44,91,45,56,49,46,54,56,56,56,55,54,44,51,48,46,48,50,56,53,54,54,93,44,91,45,56,49,46,54,49,48,49,52,54,44,50,57,46,57,55,48,50,51,53,93,44,91,45,56,49,46,53,56,49,50,48,55,44,50,57,46,56,52,48,49,55,54,93,44,91,45,56,49,46,53,50,53,50,51,44,50,57,46,55,53,57,52,57,55,93,44,91,45,56,49,46,53,50,51,54,54,44,50,57,46,54,50,50,52,51,50,93,44,91,45,56,49,46,51,50,52,48,53,57,44,50,57,46,54,50,53,54,49,93,44,91,45,56,49,46,49,53,48,56,49,55,44,50,57,46,54,55,49,48,56,55,93,44,91,45,56,49,46,50,48,53,49,55,55,44,50,57,46,56,50,50,52,51,51,93,44,91,45,56,49,46,51,50,48,49,56,53,44,51,48,46,50,53,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,104,111,99,116,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,50,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,56,49,48,57,50,44,51,51,46,52,54,48,51,48,55,93,44,91,45,56,57,46,52,53,52,48,53,44,51,51,46,52,51,51,50,93,44,91,45,56,57,46,52,53,51,56,48,56,44,51,51,46,50,56,53,57,52,50,93,44,91,45,56,57,46,51,49,54,52,48,56,44,51,51,46,50,56,53,53,53,54,93,44,91,45,56,57,46,51,49,55,56,53,53,44,51,51,46,49,48,56,56,55,49,93,44,91,45,56,57,46,50,49,51,57,50,49,44,51,51,46,49,48,57,52,48,50,93,44,91,45,56,57,46,50,49,51,52,50,50,44,51,51,46,49,57,55,53,52,51,93,44,91,45,56,57,46,49,48,56,57,44,51,51,46,49,57,56,48,53,57,93,44,91,45,56,57,46,48,56,56,50,53,53,44,51,51,46,50,56,54,48,48,51,93,44,91,45,56,57,46,48,56,56,52,52,54,44,51,51,46,53,51,51,50,48,50,93,44,91,45,56,57,46,50,50,50,48,51,57,44,51,51,46,53,50,55,50,52,53,93,44,91,45,56,57,46,51,56,49,48,57,50,44,51,51,46,52,54,48,51,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,71,114,117,110,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,54,52,48,50,49,44,52,48,46,49,51,50,57,48,57,93,44,91,45,57,51,46,55,54,49,57,55,51,44,51,57,46,57,53,57,53,53,50,93,44,91,45,57,51,46,51,54,49,57,53,55,44,51,57,46,57,54,55,54,48,54,93,44,91,45,57,51,46,51,54,49,57,53,49,44,52,48,46,48,51,51,48,57,56,93,44,91,45,57,51,46,51,54,55,50,49,52,44,52,48,46,50,54,54,51,49,52,93,44,91,45,57,51,46,55,54,51,51,50,52,44,52,48,46,50,54,51,57,56,56,93,44,91,45,57,51,46,55,54,52,48,50,49,44,52,48,46,49,51,50,57,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,52,51,53,48,55,44,52,52,46,49,54,55,48,56,56,93,44,91,45,56,54,46,48,51,55,56,56,52,44,52,51,46,56,49,53,54,49,49,93,44,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,44,91,45,56,53,46,53,54,52,53,53,52,44,52,52,46,49,54,52,56,54,49,93,44,91,45,56,53,46,56,50,49,49,56,54,44,52,52,46,49,54,52,49,57,55,93,44,91,45,56,54,46,48,52,51,53,48,55,44,52,52,46,49,54,55,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,79,116,116,97,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,48,51,52,44,34,98,101,100,115,34,58,51,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,48,54,54,50,44,52,51,46,50,48,53,49,54,55,93,44,91,45,56,53,46,57,48,55,52,51,53,44,52,51,46,49,49,56,57,49,49,93,44,91,45,56,55,46,49,48,55,54,54,57,44,52,51,46,49,49,56,50,52,51,93,44,91,45,56,55,46,48,54,57,52,49,57,44,52,50,46,56,52,50,49,52,54,93,44,91,45,56,55,46,48,53,56,55,49,54,44,52,50,46,55,54,53,50,48,50,93,44,91,45,56,53,46,55,56,50,52,57,56,44,52,50,46,55,54,56,50,93,44,91,45,56,53,46,55,57,48,54,54,50,44,52,51,46,50,48,53,49,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,50,51,55,49,57,44,34,98,101,100,115,34,58,49,56,54,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,51,56,52,52,57,44,52,50,46,49,53,52,50,52,57,93,44,91,45,56,56,46,50,54,50,56,55,53,44,52,49,46,57,56,54,51,55,56,93,44,91,45,56,55,46,57,50,48,52,55,54,44,52,49,46,57,57,51,56,56,54,93,44,91,45,56,55,46,57,49,52,50,54,52,44,52,49,46,55,49,54,53,57,56,93,44,91,45,56,56,46,48,50,56,57,55,51,44,52,49,46,54,56,53,50,52,50,93,44,91,45,56,55,46,55,57,50,55,57,51,44,52,49,46,53,53,56,53,52,93,44,91,45,56,55,46,55,57,48,51,48,51,44,52,49,46,52,54,57,56,52,54,93,44,91,45,56,55,46,53,50,53,55,48,53,44,52,49,46,52,55,48,50,56,51,93,44,91,45,56,55,46,53,50,51,54,54,49,44,52,49,46,55,53,57,57,48,55,93,44,91,45,56,55,46,50,50,49,44,52,49,46,55,54,48,56,56,57,93,44,91,45,56,55,46,50,48,55,55,55,52,44,52,49,46,55,54,48,57,53,54,93,44,91,45,56,55,46,49,49,49,49,54,50,44,52,50,46,49,52,57,52,48,57,93,44,91,45,56,56,46,49,57,57,53,56,52,44,52,50,46,49,53,52,50,54,93,44,91,45,56,56,46,50,51,56,52,52,57,44,52,50,46,49,53,52,50,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,71,97,108,108,97,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,55,52,53,51,44,51,55,46,57,48,55,54,55,56,93,44,91,45,56,56,46,51,55,53,52,51,52,44,51,55,46,53,57,57,53,57,53,93,44,91,45,56,56,46,49,51,51,52,51,52,44,51,55,46,53,55,52,51,51,56,93,44,91,45,56,56,46,49,54,48,51,56,57,44,51,55,46,54,53,54,49,51,49,93,44,91,45,56,56,46,48,50,56,48,49,54,44,51,55,46,55,57,57,49,56,56,93,44,91,45,56,56,46,48,57,51,48,52,57,44,51,55,46,56,57,49,54,48,52,93,44,91,45,56,56,46,51,55,52,53,50,49,44,51,55,46,57,48,56,51,57,49,93,44,91,45,56,56,46,51,55,52,53,51,44,51,55,46,57,48,55,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,50,54,52,44,34,98,101,100,115,34,58,52,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,52,54,51,51,55,44,51,52,46,52,48,57,54,55,54,93,44,91,45,56,50,46,51,51,52,50,51,52,44,51,52,46,51,52,50,54,51,93,44,91,45,56,50,46,50,52,55,55,52,55,44,51,52,46,50,49,57,54,49,57,93,44,91,45,56,50,46,51,50,54,57,52,55,44,51,52,46,48,54,52,49,50,93,44,91,45,56,50,46,50,48,48,50,56,54,44,51,51,46,57,55,56,53,57,55,93,44,91,45,56,50,46,48,52,54,57,55,52,44,51,51,46,57,53,51,50,49,93,44,91,45,56,50,46,48,48,56,50,57,56,44,51,51,46,57,54,49,54,52,54,93,44,91,45,56,49,46,56,55,48,48,56,52,44,51,52,46,49,51,53,51,53,55,93,44,91,45,56,49,46,57,52,53,48,49,57,44,51,52,46,50,48,51,49,52,56,93,44,91,45,56,50,46,49,54,57,50,57,55,44,51,52,46,51,51,48,55,52,54,93,44,91,45,56,50,46,50,52,54,51,51,55,44,51,52,46,52,48,57,54,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,54,51,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,48,48,55,51,56,44,51,56,46,55,51,56,56,48,56,93,44,91,45,57,53,46,53,48,56,50,54,55,44,51,56,46,52,51,51,57,51,51,93,44,91,45,57,53,46,53,48,56,51,50,56,44,51,56,46,51,57,48,50,55,56,93,44,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,44,91,45,57,53,46,48,53,54,52,49,50,44,51,56,46,55,51,56,53,56,55,93,44,91,45,57,53,46,53,48,48,55,51,56,44,51,56,46,55,51,56,56,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,56,48,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,52,48,49,50,50,44,52,55,46,49,53,48,52,55,53,93,44,91,45,57,54,46,56,51,52,56,51,57,44,52,55,46,48,48,55,50,53,52,93,44,91,45,57,54,46,55,54,49,54,57,51,44,52,54,46,57,51,52,53,53,56,93,44,91,45,57,54,46,55,57,56,49,50,56,44,52,54,46,54,51,48,51,50,54,93,44,91,45,57,54,46,55,56,52,51,56,49,44,52,54,46,54,51,48,53,48,52,93,44,91,45,57,54,46,50,56,48,57,55,55,44,52,54,46,54,51,48,55,54,53,93,44,91,45,57,54,46,49,55,52,53,56,55,44,52,54,46,55,49,55,56,53,52,93,44,91,45,57,54,46,49,57,52,54,55,49,44,52,55,46,49,53,49,49,52,57,93,44,91,45,57,54,46,56,52,48,49,50,50,44,52,55,46,49,53,48,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,72,97,121,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,53,54,48,51,51,44,51,53,46,56,49,55,54,51,53,93,44,91,45,56,57,46,52,48,49,56,48,53,44,51,53,46,56,50,50,54,53,55,93,44,91,45,56,57,46,53,48,50,49,49,56,44,51,53,46,53,56,48,54,50,49,93,44,91,45,56,57,46,52,55,52,49,55,49,44,51,53,46,52,48,51,48,51,57,93,44,91,45,56,57,46,49,56,51,57,52,52,44,51,53,46,51,57,55,49,50,54,93,44,91,45,56,57,46,48,55,56,56,55,54,44,51,53,46,52,51,49,52,50,56,93,44,91,45,56,57,46,48,54,57,53,52,52,44,51,53,46,54,57,50,54,55,57,93,44,91,45,56,57,46,50,55,49,50,50,52,44,51,53,46,55,53,52,57,50,50,93,44,91,45,56,57,46,51,53,54,48,51,51,44,51,53,46,56,49,55,54,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,111,120,32,69,108,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,48,48,49,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,56,53,52,52,51,44,52,49,46,52,50,54,51,55,52,93,44,91,45,49,49,49,46,57,49,54,53,51,52,44,52,49,46,53,51,56,53,53,52,93,44,91,45,49,49,49,46,57,57,54,54,48,54,44,52,49,46,53,53,55,53,55,50,93,44,91,45,49,49,50,46,48,53,49,55,51,55,44,52,49,46,54,57,57,53,53,50,93,44,91,45,49,49,50,46,48,51,48,52,56,51,44,52,49,46,56,49,48,48,52,55,93,44,91,45,49,49,50,46,49,53,57,49,56,52,44,52,49,46,57,57,56,51,56,50,93,44,91,45,49,49,51,46,48,48,48,48,52,49,44,52,49,46,57,57,56,50,48,52,93,44,91,45,49,49,51,46,56,49,52,56,56,52,44,52,49,46,57,56,56,54,53,52,93,44,91,45,49,49,52,46,48,52,49,52,55,55,44,52,49,46,57,57,51,56,55,51,93,44,91,45,49,49,52,46,48,52,50,48,50,57,44,52,48,46,57,57,57,56,57,54,93,44,91,45,49,49,50,46,55,57,57,51,53,57,44,52,48,46,57,57,57,57,51,57,93,44,91,45,49,49,50,46,52,57,51,53,49,53,44,52,49,46,48,55,54,56,56,56,93,44,91,45,49,49,50,46,50,51,56,48,54,53,44,52,49,46,51,51,54,53,53,50,93,44,91,45,49,49,50,46,48,50,56,54,55,50,44,52,49,46,51,51,54,53,49,50,93,44,91,45,49,49,49,46,56,56,53,52,52,51,44,52,49,46,52,50,54,51,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,84,105,112,112,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,49,55,49,50,55,44,51,52,46,57,57,52,57,55,49,93,44,91,45,56,57,46,48,49,55,53,53,49,44,51,52,46,56,53,56,55,50,51,93,44,91,45,56,57,46,48,56,56,48,54,53,44,51,52,46,56,49,53,51,48,55,93,44,91,45,56,57,46,48,56,56,52,56,56,44,51,52,46,53,57,56,50,52,55,93,44,91,45,56,56,46,55,51,53,52,52,44,51,52,46,53,57,54,52,56,51,93,44,91,45,56,56,46,55,49,56,53,48,56,44,51,52,46,55,53,54,55,56,49,93,44,91,45,56,56,46,56,50,51,52,55,51,44,51,52,46,56,53,56,54,50,57,93,44,91,45,56,56,46,56,50,51,48,53,49,44,51,52,46,57,57,53,50,50,49,93,44,91,45,56,57,46,48,49,55,49,50,55,44,51,52,46,57,57,52,57,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,52,53,44,34,98,101,100,115,34,58,49,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,51,51,56,48,51,44,52,48,46,48,51,51,52,48,57,93,44,91,45,56,48,46,55,53,54,49,49,51,44,51,57,46,57,49,51,52,48,50,93,44,91,45,56,48,46,56,50,49,50,55,57,44,51,57,46,56,52,57,57,56,50,93,44,91,45,56,48,46,56,51,51,53,49,51,44,51,57,46,55,50,48,56,49,50,93,44,91,45,56,48,46,53,49,57,51,52,50,44,51,57,46,55,50,49,52,48,51,93,44,91,45,56,48,46,53,49,57,48,57,49,44,51,57,46,57,54,50,50,93,44,91,45,56,48,46,53,49,57,49,50,44,52,48,46,48,49,54,52,49,93,44,91,45,56,48,46,55,51,51,56,48,51,44,52,48,46,48,51,51,52,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,49,56,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,52,55,50,53,52,44,51,57,46,48,57,53,51,55,57,93,44,91,45,56,49,46,55,56,49,56,50,44,51,56,46,57,54,52,57,51,53,93,44,91,45,56,49,46,57,48,56,54,52,53,44,51,56,46,56,55,56,52,54,93,44,91,45,56,49,46,55,55,50,56,52,51,44,51,56,46,54,56,48,56,52,51,93,44,91,45,56,49,46,54,57,54,51,52,56,44,51,56,46,54,50,54,52,50,55,93,44,91,45,56,49,46,54,51,50,56,51,54,44,51,56,46,53,53,52,51,55,93,44,91,45,56,49,46,53,50,50,49,54,54,44,51,56,46,54,49,50,55,52,54,93,44,91,45,56,49,46,53,52,54,54,51,49,44,51,56,46,54,55,50,51,56,55,93,44,91,45,56,49,46,53,48,50,54,50,56,44,51,56,46,57,49,55,57,50,50,93,44,91,45,56,49,46,53,56,49,52,52,55,44,51,57,46,48,50,54,49,55,57,93,44,91,45,56,49,46,55,52,55,50,53,52,44,51,57,46,48,57,53,51,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,69,108,109,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,51,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,57,57,48,55,55,55,44,52,51,46,57,52,57,55,50,51,93,44,91,45,49,49,53,46,49,51,54,50,48,57,44,52,51,46,57,56,51,56,53,57,93,44,91,45,49,49,53,46,53,48,56,55,50,50,44,52,51,46,56,56,52,56,53,53,93,44,91,45,49,49,53,46,54,52,53,56,48,50,44,52,51,46,55,48,48,50,54,93,44,91,45,49,49,53,46,56,50,55,57,50,44,52,51,46,54,48,55,54,54,55,93,44,91,45,49,49,53,46,57,55,53,55,49,57,44,52,51,46,53,57,49,52,51,56,93,44,91,45,49,49,53,46,57,55,56,54,53,49,44,52,51,46,49,49,51,52,51,50,93,44,91,45,49,49,54,46,50,54,54,50,48,55,44,52,51,46,49,49,50,50,54,57,93,44,91,45,49,49,54,46,50,48,49,55,52,44,52,51,46,48,52,56,57,51,93,44,91,45,49,49,53,46,57,54,48,57,57,57,44,52,50,46,57,56,57,48,56,52,93,44,91,45,49,49,53,46,52,52,49,53,50,50,44,52,50,46,57,51,49,49,50,55,93,44,91,45,49,49,53,46,52,53,52,50,50,52,44,52,50,46,55,54,55,57,51,54,93,44,91,45,49,49,53,46,48,51,55,54,57,55,44,52,50,46,55,54,56,52,49,52,93,44,91,45,49,49,53,46,48,51,55,55,55,52,44,52,50,46,57,49,49,56,54,52,93,44,91,45,49,49,53,46,48,56,54,56,53,50,44,52,50,46,57,49,52,53,54,93,44,91,45,49,49,53,46,48,56,54,49,53,53,44,52,51,46,49,57,56,48,54,52,93,44,91,45,49,49,53,46,48,56,51,48,56,57,44,52,51,46,54,48,52,50,57,50,93,44,91,45,49,49,52,46,57,56,57,50,53,56,44,52,51,46,56,53,56,53,54,51,93,44,91,45,49,49,52,46,57,55,49,51,53,49,44,52,51,46,57,51,56,51,48,56,93,44,91,45,49,49,52,46,57,57,48,55,55,55,44,52,51,46,57,52,57,55,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,108,116,105,109,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,55,54,50,53,44,34,98,101,100,115,34,58,49,57,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,56,55,48,57,54,44,51,57,46,55,50,48,56,93,44,91,45,55,54,46,56,56,51,50,57,52,44,51,57,46,52,55,52,55,53,49,93,44,91,45,55,54,46,56,56,50,50,55,52,44,51,57,46,51,53,48,49,56,53,93,44,91,45,55,54,46,54,57,55,48,56,53,44,51,57,46,50,49,52,48,57,50,93,44,91,45,55,54,46,54,49,56,54,49,50,44,51,57,46,50,51,55,51,57,56,93,44,91,45,55,54,46,55,49,49,48,53,52,44,51,57,46,50,55,55,56,56,57,93,44,91,45,55,54,46,55,49,49,51,49,51,44,51,57,46,51,55,49,57,51,51,93,44,91,45,55,54,46,53,50,57,55,57,51,44,51,57,46,51,55,50,48,53,56,93,44,91,45,55,54,46,53,50,57,52,56,54,44,51,57,46,50,49,56,52,48,56,93,44,91,45,55,54,46,51,52,57,52,55,57,44,51,57,46,49,53,54,54,50,51,93,44,91,45,55,54,46,50,56,55,54,56,57,44,51,57,46,50,53,52,49,48,52,93,44,91,45,55,54,46,51,57,49,54,56,56,44,51,57,46,52,54,52,53,51,50,93,44,91,45,55,54,46,53,51,50,49,55,52,44,51,57,46,53,52,51,57,55,55,93,44,91,45,55,54,46,53,54,57,52,52,57,44,51,57,46,55,50,49,49,55,56,93,44,91,45,55,54,46,55,56,55,48,57,54,44,51,57,46,55,50,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,101,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,57,50,57,49,57,44,52,56,46,51,55,48,57,52,54,93,44,91,45,57,57,46,56,52,55,48,52,54,44,52,56,46,51,55,49,50,93,44,91,45,57,57,46,56,52,56,50,50,50,44,52,56,46,48,50,49,52,50,52,93,44,91,45,57,57,46,56,49,50,49,54,55,44,52,55,46,56,52,55,50,53,55,93,44,91,45,57,57,46,50,57,55,50,48,50,44,52,55,46,56,52,54,56,51,52,93,44,91,45,57,56,46,53,50,53,53,49,54,44,52,55,46,56,52,54,50,55,54,93,44,91,45,57,56,46,53,50,53,53,53,53,44,52,55,46,57,49,53,48,53,54,93,44,91,45,57,56,46,54,50,53,51,56,52,44,52,55,46,57,49,54,51,57,57,93,44,91,45,57,56,46,56,48,55,53,57,51,44,52,56,46,48,53,57,56,48,49,93,44,91,45,57,56,46,57,56,54,57,48,49,44,52,56,46,48,48,55,52,57,56,93,44,91,45,57,57,46,48,55,48,52,52,51,44,52,56,46,49,48,55,56,53,55,93,44,91,45,57,57,46,49,57,57,57,49,49,44,52,56,46,49,53,53,51,48,57,93,44,91,45,57,57,46,50,48,48,51,48,54,44,52,56,46,51,55,48,54,53,56,93,44,91,45,57,57,46,52,57,50,57,49,57,44,52,56,46,51,55,48,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,55,56,48,49,50,44,51,57,46,53,57,56,49,57,54,93,44,91,45,57,49,46,52,54,48,52,52,50,44,51,57,46,52,53,48,55,50,50,93,44,91,45,57,49,46,52,51,56,50,51,53,44,51,57,46,51,49,56,55,49,54,93,44,91,45,57,49,46,52,48,57,48,51,51,44,51,57,46,49,52,50,53,52,50,93,44,91,45,57,49,46,50,54,48,50,51,50,44,51,57,46,49,51,57,56,52,53,93,44,91,45,57,49,46,49,56,50,57,52,50,44,51,57,46,50,50,55,50,51,51,93,44,91,45,57,48,46,55,50,49,56,51,53,44,51,57,46,50,50,52,49,48,56,93,44,91,45,57,48,46,57,51,54,55,50,56,44,51,57,46,51,57,57,53,49,49,93,44,91,45,57,49,46,48,51,56,50,55,44,51,57,46,52,52,56,52,51,53,93,44,91,45,57,49,46,49,55,56,48,49,50,44,51,57,46,53,57,56,49,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,54,50,50,44,34,98,101,100,115,34,58,52,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,53,48,48,51,57,44,51,56,46,56,52,57,48,55,51,93,44,91,45,56,50,46,54,54,50,56,56,54,44,51,56,46,55,52,55,57,55,55,93,44,91,45,56,50,46,55,52,48,51,56,51,44,51,56,46,53,57,55,49,54,55,93,44,91,45,56,50,46,56,49,53,57,55,57,44,51,56,46,53,55,48,56,48,50,93,44,91,45,56,50,46,54,54,53,52,49,49,44,51,56,46,53,48,53,55,56,55,93,44,91,45,56,50,46,53,57,51,52,56,44,51,56,46,52,50,49,56,50,49,93,44,91,45,56,50,46,53,48,56,50,56,44,51,56,46,52,49,49,49,57,56,93,44,91,45,56,50,46,51,50,51,57,57,57,44,51,56,46,52,52,57,50,54,56,93,44,91,45,56,50,46,50,56,55,50,55,44,51,56,46,53,56,50,55,56,51,93,44,91,45,56,50,46,51,53,52,52,54,56,44,51,56,46,54,55,54,48,55,93,44,91,45,56,50,46,52,55,50,52,55,56,44,51,56,46,54,56,50,50,55,57,93,44,91,45,56,50,46,52,56,51,53,55,57,44,51,56,46,55,55,50,50,55,56,93,44,91,45,56,50,46,53,55,53,53,56,51,44,51,56,46,56,52,52,52,55,56,93,44,91,45,56,50,46,54,53,48,48,51,57,44,51,56,46,56,52,57,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,55,50,57,44,34,98,101,100,115,34,58,49,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,56,56,55,50,44,51,55,46,50,53,49,52,53,55,93,44,91,45,56,57,46,54,50,48,50,53,54,44,51,55,46,50,51,51,48,48,56,93,44,91,45,56,57,46,55,54,53,50,49,49,44,51,55,46,49,50,54,48,54,54,93,44,91,45,56,57,46,55,56,54,56,49,57,44,51,55,46,48,56,55,56,50,52,93,44,91,45,56,57,46,54,56,54,54,50,44,51,54,46,57,50,56,50,57,51,93,44,91,45,56,57,46,54,57,49,54,48,51,44,51,54,46,56,53,57,53,49,55,93,44,91,45,56,57,46,53,49,57,56,48,57,44,51,54,46,56,54,57,54,49,55,93,44,91,45,56,57,46,51,49,50,55,48,52,44,51,55,46,48,48,56,57,55,49,93,44,91,45,56,57,46,51,55,54,54,51,50,44,51,55,46,48,51,56,52,56,50,93,44,91,45,56,57,46,52,56,56,55,50,44,51,55,46,50,53,49,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,55,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,55,51,48,49,56,44,51,57,46,48,50,48,52,51,93,44,91,45,56,51,46,55,48,53,51,49,49,44,51,56,46,54,51,57,56,53,51,93,44,91,45,56,51,46,54,52,52,57,49,51,44,51,56,46,54,51,54,51,52,51,93,44,91,45,56,51,46,53,50,48,55,53,53,44,51,56,46,55,48,51,48,57,52,93,44,91,45,56,51,46,50,54,55,54,49,51,44,51,56,46,54,49,56,52,50,93,44,91,45,56,51,46,50,55,48,56,49,55,44,51,57,46,48,49,53,55,57,49,93,44,91,45,56,51,46,51,56,53,54,51,55,44,51,57,46,48,53,53,49,57,55,93,44,91,45,56,51,46,54,55,51,48,49,56,44,51,57,46,48,50,48,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,69,114,97,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,52,56,50,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,55,53,49,55,55,44,51,50,46,53,49,51,48,51,57,93,44,91,45,57,56,46,52,55,52,54,56,53,44,51,50,46,50,57,57,48,56,52,93,44,91,45,57,56,46,53,53,49,49,53,56,44,51,50,46,50,54,49,52,51,54,93,44,91,45,57,56,46,51,50,55,52,57,57,44,51,49,46,57,52,49,50,54,49,93,44,91,45,57,56,46,50,48,56,51,56,54,44,51,49,46,57,49,55,53,49,49,93,44,91,45,57,56,46,48,48,53,52,54,50,44,51,50,46,48,49,55,56,57,55,93,44,91,45,57,55,46,56,54,52,56,54,52,44,51,50,46,48,56,55,51,50,56,93,44,91,45,57,55,46,57,52,53,54,50,53,44,51,50,46,50,51,51,52,54,56,93,44,91,45,57,56,46,48,54,56,53,52,53,44,51,50,46,53,49,49,54,50,54,93,44,91,45,57,56,46,52,55,53,49,55,55,44,51,50,46,53,49,51,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,72,97,98,101,114,115,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,50,56,57,44,34,98,101,100,115,34,58,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,56,49,53,57,54,44,51,52,46,56,48,48,56,56,50,93,44,91,45,56,51,46,54,50,51,50,57,54,44,51,52,46,55,51,50,49,57,52,93,44,91,45,56,51,46,54,51,50,51,49,55,44,51,52,46,53,50,56,53,56,55,93,44,91,45,56,51,46,54,54,54,52,49,53,44,51,52,46,53,48,51,54,48,50,93,44,91,45,56,51,46,54,49,53,50,53,49,44,51,52,46,52,51,49,55,52,56,93,44,91,45,56,51,46,52,53,57,55,55,44,51,52,46,52,56,49,49,52,50,93,44,91,45,56,51,46,51,51,56,50,51,52,44,51,52,46,54,56,55,49,56,55,93,44,91,45,56,51,46,51,53,50,52,52,56,44,51,52,46,55,49,54,49,50,53,93,44,91,45,56,51,46,53,52,56,57,56,56,44,51,52,46,55,52,57,52,53,49,93,44,91,45,56,51,46,54,53,50,49,57,52,44,51,52,46,56,50,50,57,57,51,93,44,91,45,56,51,46,54,56,49,53,57,54,44,51,52,46,56,48,48,56,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,57,34,44,34,78,65,77,69,34,58,34,87,105,108,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,48,54,57,57,44,51,50,46,56,57,56,50,50,93,44,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,44,91,45,56,50,46,57,53,55,48,54,54,44,51,50,46,55,48,56,51,49,56,93,44,91,45,56,50,46,57,52,54,57,54,54,44,51,50,46,55,53,57,51,53,56,93,44,91,45,56,51,46,48,55,51,54,52,56,44,51,50,46,57,52,54,53,54,50,93,44,91,45,56,51,46,49,51,51,56,52,55,44,51,51,46,48,48,55,50,52,56,93,44,91,45,56,51,46,51,53,55,54,56,53,44,51,50,46,57,50,54,49,52,49,93,44,91,45,56,51,46,52,48,54,57,57,44,51,50,46,56,57,56,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,77,111,110,111,110,103,97,108,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,50,53,50,44,34,98,101,100,115,34,58,57,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,49,54,50,56,44,51,57,46,55,50,48,55,55,55,93,44,91,45,56,48,46,52,50,49,51,56,56,44,51,57,46,55,50,49,49,56,57,93,44,91,45,56,48,46,51,57,53,56,49,44,51,57,46,54,51,55,51,52,55,93,44,91,45,56,48,46,49,53,51,53,51,50,44,51,57,46,54,49,48,52,50,54,93,44,91,45,55,57,46,57,51,56,56,55,56,44,51,57,46,52,53,50,52,54,53,93,44,91,45,55,57,46,56,57,52,54,56,56,44,51,57,46,52,51,53,53,56,56,93,44,91,45,55,57,46,55,54,51,55,55,52,44,51,57,46,55,50,48,55,55,54,93,44,91,45,55,57,46,57,49,54,50,56,44,51,57,46,55,50,48,55,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,48,50,49,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,50,57,53,49,50,44,52,48,46,57,57,54,54,50,52,93,44,91,45,56,51,46,49,49,50,55,51,55,44,52,48,46,57,57,51,52,52,55,93,44,91,45,56,51,46,49,49,49,51,54,44,52,48,46,55,48,50,57,49,53,93,44,91,45,56,50,46,56,53,56,51,48,50,44,52,48,46,55,48,53,48,49,57,93,44,91,45,56,50,46,55,50,55,49,54,52,44,52,48,46,55,49,49,50,48,51,93,44,91,45,56,50,46,55,50,52,55,57,50,44,52,48,46,57,57,53,54,51,56,93,44,91,45,56,50,46,56,50,57,53,49,50,44,52,48,46,57,57,54,54,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,68,101,83,111,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,57,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,54,52,48,54,50,44,50,55,46,51,52,48,54,52,49,93,44,91,45,56,50,46,48,53,53,55,53,51,44,50,55,46,51,51,56,50,54,52,93,44,91,45,56,50,46,48,53,54,52,57,55,44,50,55,46,50,48,55,55,54,57,93,44,91,45,56,50,46,48,53,55,52,54,57,44,50,55,46,48,51,50,49,49,57,93,44,91,45,56,49,46,53,54,50,54,50,52,44,50,55,46,48,51,51,56,51,53,93,44,91,45,56,49,46,53,54,52,48,54,50,44,50,55,46,51,52,48,54,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,78,101,119,32,76,111,110,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,56,56,56,49,44,34,98,101,100,115,34,58,52,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,50,51,57,53,53,57,44,52,49,46,55,49,52,49,57,49,93,44,91,45,55,50,46,52,49,48,51,54,55,44,52,49,46,54,48,50,53,56,49,93,44,91,45,55,50,46,52,54,54,55,51,44,52,49,46,53,56,51,56,57,57,93,44,91,45,55,50,46,51,50,51,51,57,52,44,52,49,46,53,51,52,50,53,93,44,91,45,55,50,46,51,48,53,53,51,49,44,52,49,46,52,51,54,50,56,50,93,44,91,45,55,50,46,51,56,52,56,51,51,44,52,49,46,51,56,53,49,57,93,44,91,45,55,50,46,51,51,49,52,53,51,44,52,49,46,50,49,53,48,48,52,93,44,91,45,55,49,46,57,48,55,50,53,56,44,52,49,46,51,48,52,52,56,51,93,44,91,45,55,49,46,55,57,55,55,52,55,44,52,49,46,52,49,54,56,51,52,93,44,91,45,55,49,46,55,56,57,50,52,55,44,52,49,46,53,57,54,56,52,55,93,44,91,45,55,49,46,55,56,55,54,53,56,44,52,49,46,54,51,57,57,49,56,93,44,91,45,55,49,46,57,53,49,57,51,54,44,52,49,46,54,51,52,51,50,56,93,44,91,45,55,50,46,49,53,49,55,52,55,44,52,49,46,54,54,55,53,49,54,93,44,91,45,55,50,46,50,51,57,53,53,57,44,52,49,46,55,49,52,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,71,117,101,114,110,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,50,55,52,44,34,98,101,100,115,34,58,50,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,50,50,54,56,51,44,52,48,46,50,50,49,51,48,56,93,44,91,45,56,49,46,55,49,54,50,55,54,44,52,48,46,49,53,50,49,54,54,93,44,91,45,56,49,46,55,50,56,54,49,49,44,51,57,46,57,51,49,55,50,56,93,44,91,45,56,49,46,54,57,52,49,52,54,44,51,57,46,56,52,50,54,51,54,93,44,91,45,56,49,46,51,56,54,48,48,54,44,51,57,46,57,53,48,54,57,52,93,44,91,45,56,49,46,50,51,52,48,53,51,44,51,57,46,57,53,49,50,55,93,44,91,45,56,49,46,50,50,53,57,50,52,44,52,48,46,49,55,48,48,55,53,93,44,91,45,56,49,46,51,51,56,48,53,55,44,52,48,46,50,49,52,50,53,51,93,44,91,45,56,49,46,54,50,50,54,56,51,44,52,48,46,50,50,49,51,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,97,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,48,53,55,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,48,57,54,50,54,44,52,50,46,55,54,57,56,55,56,93,44,91,45,56,53,46,53,52,53,53,54,52,44,52,50,46,55,54,56,49,51,57,93,44,91,45,56,53,46,53,52,51,49,57,49,44,52,50,46,52,50,49,52,51,51,93,44,91,45,56,53,46,50,57,56,56,55,57,44,52,50,46,52,49,57,56,52,57,93,44,91,45,56,53,46,48,55,49,54,48,57,44,52,50,46,52,50,49,52,50,56,93,44,91,45,56,53,46,48,55,52,50,52,53,44,52,50,46,55,55,48,55,56,52,93,44,91,45,56,53,46,51,48,57,54,50,54,44,52,50,46,55,54,57,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,57,34,44,34,78,65,77,69,34,58,34,83,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,49,49,48,48,51,44,51,54,46,57,50,50,56,51,49,93,44,91,45,57,51,46,53,55,51,56,44,51,54,46,56,50,48,48,51,50,93,44,91,45,57,51,46,53,56,52,50,54,50,44,51,54,46,52,57,57,49,54,55,93,44,91,45,57,51,46,51,49,53,51,51,50,44,51,54,46,52,57,56,49,52,93,44,91,45,57,51,46,51,48,52,51,53,57,44,51,54,46,56,49,54,56,54,54,93,44,91,45,57,51,46,51,51,55,52,53,49,44,51,54,46,57,57,50,52,57,52,93,44,91,45,57,51,46,54,49,48,49,50,54,44,51,54,46,57,57,53,56,49,93,44,91,45,57,51,46,54,49,49,48,48,51,44,51,54,46,57,50,50,56,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,54,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,54,48,34,44,34,78,65,77,69,34,58,34,82,105,99,104,109,111,110,100,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,55,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,53,57,53,52,54,50,44,51,55,46,53,53,53,55,53,93,44,91,45,55,55,46,52,50,48,56,55,53,44,51,55,46,52,52,55,49,48,49,93,44,91,45,55,55,46,51,57,49,51,48,54,44,51,55,46,53,51,48,49,50,50,93,44,91,45,55,55,46,52,52,55,53,56,49,44,51,55,46,54,48,50,56,49,93,44,91,45,55,55,46,53,57,53,52,54,50,44,51,55,46,53,53,53,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,83,116,111,107,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,57,48,53,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,52,52,48,48,57,56,44,51,54,46,53,53,48,54,53,53,93,44,91,45,56,48,46,52,53,49,54,57,54,44,51,54,46,50,54,49,53,48,50,93,44,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,44,91,45,56,48,46,48,50,55,51,51,57,44,51,54,46,53,52,50,52,56,93,44,91,45,56,48,46,48,53,51,52,53,57,44,51,54,46,53,52,50,53,50,51,93,44,91,45,56,48,46,52,52,48,48,57,56,44,51,54,46,53,53,48,54,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,56,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,49,52,49,56,57,44,52,49,46,49,53,54,55,54,50,93,44,91,45,57,52,46,48,49,52,56,48,51,44,52,48,46,56,57,55,48,51,49,93,44,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,44,91,45,57,51,46,53,53,55,53,53,54,44,52,49,46,49,54,49,50,55,49,93,44,91,45,57,51,46,55,56,57,49,57,54,44,52,49,46,49,54,50,48,51,53,93,44,91,45,57,52,46,48,49,52,49,56,57,44,52,49,46,49,53,54,55,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,50,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,56,49,53,54,56,44,52,50,46,57,48,55,48,49,51,93,44,91,45,57,50,46,48,56,49,54,54,49,44,52,50,46,54,52,50,48,53,54,93,44,91,45,57,49,46,54,48,55,48,53,57,44,52,50,46,54,52,51,57,55,51,93,44,91,45,57,49,46,54,48,53,51,48,55,44,52,51,46,48,56,49,54,53,51,93,44,91,45,57,50,46,48,56,49,49,52,54,44,52,51,46,48,56,50,55,57,52,93,44,91,45,57,50,46,48,56,49,53,54,56,44,52,50,46,57,48,55,48,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,77,97,114,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,50,57,53,44,34,98,101,100,115,34,58,52,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,49,51,52,53,50,51,44,51,56,46,50,57,54,50,54,51,93,44,91,45,49,50,51,46,48,49,52,56,49,55,44,51,56,46,49,52,57,49,51,50,93,44,91,45,49,50,51,46,48,56,51,56,56,44,51,55,46,57,56,51,51,54,54,93,44,91,45,49,50,51,46,48,50,50,53,48,55,44,51,55,46,57,52,50,48,54,53,93,44,91,45,49,50,50,46,56,56,57,50,57,49,44,51,55,46,57,55,52,49,48,57,93,44,91,45,49,50,50,46,55,53,50,52,54,54,44,51,55,46,56,53,55,54,57,57,93,44,91,45,49,50,50,46,54,49,50,50,56,53,44,51,55,46,56,49,53,50,50,52,93,44,91,45,49,50,50,46,52,49,56,54,55,51,44,51,55,46,56,53,50,53,48,53,93,44,91,45,49,50,50,46,52,51,50,50,56,51,44,51,55,46,57,50,57,56,50,52,93,44,91,45,49,50,50,46,51,52,55,52,53,52,44,51,56,46,48,55,51,50,54,93,44,91,45,49,50,50,46,53,48,50,56,50,44,51,56,46,49,49,51,48,48,50,93,44,91,45,49,50,50,46,53,55,56,50,48,49,44,51,56,46,49,56,51,53,56,51,93,44,91,45,49,50,50,46,55,51,57,57,44,51,56,46,50,48,55,48,49,56,93,44,91,45,49,50,50,46,57,48,49,55,50,54,44,51,56,46,51,49,54,57,52,51,93,44,91,45,49,50,51,46,49,51,52,53,50,51,44,51,56,46,50,57,54,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,56,49,34,44,34,78,65,77,69,34,58,34,82,97,110,100,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,52,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,44,91,45,49,48,50,46,49,54,56,56,51,57,44,51,52,46,55,52,55,52,49,55,93,44,91,45,49,48,49,46,57,57,56,52,57,51,44,51,52,46,55,52,56,49,57,93,44,91,45,49,48,49,46,54,50,57,50,53,55,44,51,52,46,55,52,55,54,52,57,93,44,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,44,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,48,49,34,44,34,78,65,77,69,34,58,34,82,117,115,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,53,57,53,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,56,53,52,49,49,44,51,50,46,51,55,48,56,50,93,44,91,45,57,52,46,57,56,53,50,55,50,44,51,50,46,49,51,55,57,56,57,93,44,91,45,57,52,46,57,56,53,48,51,55,44,51,49,46,56,52,54,49,57,51,93,44,91,45,57,52,46,57,51,55,53,51,50,44,51,49,46,56,52,53,53,53,53,93,44,91,45,57,52,46,52,53,50,52,49,54,44,51,49,46,56,52,52,50,56,49,93,44,91,45,57,52,46,53,49,49,52,51,49,44,51,49,46,57,55,51,57,56,52,93,44,91,45,57,52,46,53,57,57,57,55,56,44,51,49,46,57,55,51,49,57,51,93,44,91,45,57,52,46,53,56,48,53,44,51,50,46,50,48,49,51,54,51,93,44,91,45,57,52,46,52,57,49,56,49,56,44,51,50,46,51,57,52,49,51,55,93,44,91,45,57,52,46,53,55,57,50,49,57,44,51,50,46,51,57,52,57,49,54,93,44,91,45,57,52,46,54,51,56,51,52,55,44,51,50,46,51,55,48,53,51,57,93,44,91,45,57,52,46,57,56,53,52,49,49,44,51,50,46,51,55,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,51,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,50,56,52,48,55,44,52,49,46,52,57,48,57,50,49,93,44,91,45,57,51,46,52,50,50,56,53,52,44,52,49,46,53,49,49,52,52,52,93,44,91,45,57,51,46,55,57,48,54,49,50,44,52,49,46,53,49,49,57,49,54,93,44,91,45,57,51,46,55,56,57,49,57,54,44,52,49,46,49,54,50,48,51,53,93,44,91,45,57,51,46,53,53,55,53,53,54,44,52,49,46,49,54,49,50,55,49,93,44,91,45,57,51,46,51,50,55,56,56,54,44,52,49,46,49,54,48,54,53,57,93,44,91,45,57,51,46,51,50,56,52,48,55,44,52,49,46,52,57,48,57,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,86,97,110,32,87,101,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,50,56,49,44,34,98,101,100,115,34,58,49,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,48,50,57,50,50,44,52,48,46,57,50,50,53,54,56,93,44,91,45,56,52,46,56,48,50,50,55,51,44,52,48,46,55,50,56,49,52,54,93,44,91,45,56,52,46,52,53,54,49,55,50,44,52,48,46,55,50,56,51,48,54,93,44,91,45,56,52,46,52,53,54,49,56,44,52,48,46,54,56,52,56,54,50,93,44,91,45,56,52,46,51,57,54,55,55,56,44,52,48,46,54,56,52,57,50,54,93,44,91,45,56,52,46,51,57,55,51,55,52,44,52,48,46,56,49,53,57,52,49,93,44,91,45,56,52,46,51,52,48,53,51,49,44,52,48,46,56,53,57,48,57,57,93,44,91,45,56,52,46,51,57,57,52,56,54,44,52,48,46,57,57,48,51,49,53,93,44,91,45,56,52,46,56,48,51,50,53,49,44,52,48,46,57,56,57,51,57,52,93,44,91,45,56,52,46,56,48,50,57,50,50,44,52,48,46,57,50,50,53,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,71,108,97,100,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,52,48,54,55,54,44,50,55,46,50,48,53,57,51,57,93,44,91,45,56,49,46,49,54,57,49,51,56,44,50,55,46,50,48,57,53,56,53,93,44,91,45,56,49,46,49,54,56,50,56,49,44,50,55,46,49,50,49,55,51,52,93,44,91,45,56,49,46,50,54,55,54,55,55,44,50,55,46,49,50,49,48,57,55,93,44,91,45,56,49,46,50,54,55,50,49,54,44,50,55,46,48,51,50,52,55,52,93,44,91,45,56,49,46,53,54,50,53,51,49,44,50,55,46,48,51,51,54,56,55,93,44,91,45,56,49,46,53,54,53,57,51,49,44,50,54,46,55,54,57,53,53,50,93,44,91,45,56,48,46,57,52,53,51,53,52,44,50,54,46,55,54,57,48,52,57,93,44,91,45,56,48,46,56,56,53,54,51,57,44,50,54,46,57,53,56,57,49,57,93,44,91,45,56,48,46,56,55,49,49,54,57,44,50,55,46,49,53,52,57,53,49,93,44,91,45,56,48,46,57,52,48,54,55,54,44,50,55,46,50,48,53,57,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,77,101,114,105,119,101,116,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,49,51,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,54,50,51,53,57,44,51,51,46,49,57,49,49,55,51,93,44,91,45,56,52,46,56,54,49,55,54,56,44,51,50,46,56,55,50,52,57,53,93,44,91,45,56,52,46,55,48,48,53,51,56,44,51,50,46,56,52,52,54,52,93,44,91,45,56,52,46,53,48,54,56,56,56,44,51,50,46,56,56,49,55,56,56,93,44,91,45,56,52,46,53,50,55,48,50,44,51,50,46,57,55,48,53,52,56,93,44,91,45,56,52,46,52,57,54,55,56,51,44,51,51,46,49,56,51,56,54,54,93,44,91,45,56,52,46,53,48,50,51,53,50,44,51,51,46,50,50,49,48,53,53,93,44,91,45,56,52,46,56,53,50,51,54,44,51,51,46,50,50,51,53,57,93,44,91,45,56,52,46,56,54,50,51,53,57,44,51,51,46,49,57,49,49,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,111,115,116,105,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,55,52,51,51,51,57,44,51,55,46,51,53,54,55,57,56,93,44,91,45,49,48,53,46,55,49,56,52,54,51,44,51,54,46,57,57,53,56,52,49,93,44,91,45,49,48,53,46,50,50,48,53,48,54,44,51,54,46,57,57,52,57,55,52,93,44,91,45,49,48,53,46,49,53,53,48,52,50,44,51,54,46,57,57,53,50,54,50,93,44,91,45,49,48,53,46,49,53,52,49,55,54,44,51,55,46,50,57,51,49,50,57,93,44,91,45,49,48,53,46,49,57,51,50,51,55,44,51,55,46,53,57,50,49,54,56,93,44,91,45,49,48,53,46,50,57,53,53,56,55,44,51,55,46,54,53,52,52,49,54,93,44,91,45,49,48,53,46,52,56,53,53,49,54,44,51,55,46,53,55,55,56,57,57,93,44,91,45,49,48,53,46,55,52,51,51,51,57,44,51,55,46,51,53,54,55,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,67,111,114,121,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,51,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,54,54,52,51,49,44,51,49,46,54,55,50,52,54,49,93,44,91,45,57,56,46,49,56,48,48,48,54,44,51,49,46,52,54,51,55,49,55,93,44,91,45,57,55,46,57,48,55,49,44,51,49,46,48,54,57,51,55,52,93,44,91,45,57,55,46,52,49,56,54,48,54,44,51,49,46,51,50,48,50,48,50,93,44,91,45,57,55,46,54,48,53,50,51,44,51,49,46,53,56,55,55,54,50,93,44,91,45,57,55,46,54,56,57,56,51,52,44,51,49,46,55,49,49,48,49,57,93,44,91,45,57,55,46,55,54,54,52,51,49,44,51,49,46,54,55,50,52,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,48,48,54,50,57,44,52,49,46,53,48,52,49,52,56,93,44,91,45,57,52,46,55,48,48,53,56,57,44,52,49,46,49,53,56,48,56,53,93,44,91,45,57,52,46,52,55,48,54,48,51,44,52,49,46,49,53,55,53,54,54,93,44,91,45,57,52,46,50,52,49,54,51,55,44,52,49,46,49,53,55,49,51,52,93,44,91,45,57,52,46,50,52,49,53,57,51,44,52,49,46,53,48,51,54,55,57,93,44,91,45,57,52,46,55,48,48,54,50,57,44,52,49,46,53,48,52,49,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,67,104,97,116,116,97,104,111,111,99,104,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,54,55,44,34,98,101,100,115,34,58,50,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,55,49,57,54,50,44,51,50,46,51,55,55,54,57,56,93,44,91,45,56,52,46,57,50,51,48,50,55,44,51,50,46,50,51,48,56,53,49,93,44,91,45,56,52,46,54,53,56,57,50,44,51,50,46,50,51,50,56,53,50,93,44,91,45,56,52,46,54,51,55,51,50,51,44,51,50,46,53,51,52,56,53,53,93,44,91,45,56,52,46,54,57,52,53,49,44,51,50,46,53,49,56,55,51,50,93,44,91,45,56,52,46,55,57,50,57,53,49,44,51,50,46,52,49,51,56,52,93,44,91,45,56,52,46,57,55,49,57,54,50,44,51,50,46,51,55,55,54,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,77,97,114,105,112,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,52,48,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,51,56,55,54,55,44,51,55,46,54,51,51,51,54,52,93,44,91,45,49,50,48,46,50,54,54,48,49,44,51,55,46,52,48,48,54,48,55,93,44,91,45,49,50,48,46,49,52,51,56,50,54,44,51,55,46,50,51,57,49,57,50,93,44,91,45,49,50,48,46,48,53,50,48,53,53,44,51,55,46,49,56,51,49,48,56,93,44,91,45,49,49,57,46,55,54,49,56,48,57,44,51,55,46,52,49,55,49,49,52,93,44,91,45,49,49,57,46,54,53,49,49,57,49,44,51,55,46,52,49,55,56,51,50,93,44,91,45,49,49,57,46,53,56,51,53,56,53,44,51,55,46,53,54,48,51,51,53,93,44,91,45,49,49,57,46,51,48,56,57,57,53,44,51,55,46,55,55,55,57,56,54,93,44,91,45,49,49,57,46,53,51,51,57,57,57,44,51,55,46,57,48,50,57,50,50,93,44,91,45,49,49,57,46,54,54,55,50,48,51,44,51,55,46,56,48,49,50,50,52,93,44,91,45,49,49,57,46,56,48,53,52,57,56,44,51,55,46,55,53,57,54,49,56,93,44,91,45,49,49,57,46,57,51,56,52,49,52,44,51,55,46,55,54,51,48,50,54,93,44,91,45,49,50,48,46,48,50,54,53,57,51,44,51,55,46,56,49,49,56,55,55,93,44,91,45,49,50,48,46,51,52,53,52,51,55,44,51,55,46,55,50,52,55,56,55,93,44,91,45,49,50,48,46,51,56,55,54,49,51,44,51,55,46,54,51,51,55,48,52,93,44,91,45,49,50,48,46,51,56,55,54,55,44,51,55,46,54,51,51,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,52,57,50,50,52,44,51,57,46,50,50,54,50,49,56,93,44,91,45,57,50,46,57,51,52,53,54,57,44,51,57,46,48,54,52,53,52,55,93,44,91,45,57,50,46,56,52,49,54,49,55,44,51,56,46,57,55,57,56,50,49,93,44,91,45,57,50,46,53,53,56,48,56,54,44,51,56,46,57,55,48,54,57,50,93,44,91,45,57,50,46,52,51,48,50,50,57,44,51,57,46,50,52,56,55,57,53,93,44,91,45,57,50,46,55,48,55,51,54,55,44,51,57,46,51,50,49,54,49,52,93,44,91,45,57,50,46,55,57,48,51,54,57,44,51,57,46,51,52,51,53,56,54,93,44,91,45,57,50,46,56,52,57,50,50,52,44,51,57,46,50,50,54,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,53,53,51,44,34,98,101,100,115,34,58,49,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,56,52,57,57,50,53,44,52,53,46,50,53,57,54,57,55,93,44,91,45,49,50,51,46,48,48,48,55,56,56,44,52,53,46,50,53,57,51,52,55,93,44,91,45,49,50,51,46,48,54,56,54,54,55,44,52,53,46,48,55,52,56,54,93,44,91,45,49,50,51,46,48,52,52,57,48,51,44,52,52,46,57,52,52,48,50,56,93,44,91,45,49,50,51,46,49,55,57,51,56,55,44,52,52,46,56,51,53,55,50,57,93,44,91,45,49,50,51,46,49,52,51,56,52,51,44,52,52,46,55,52,56,57,49,52,93,44,91,45,49,50,51,46,48,48,55,55,52,51,44,52,52,46,54,56,56,48,55,49,93,44,91,45,49,50,50,46,56,48,50,52,53,55,44,52,52,46,55,57,48,56,54,52,93,44,91,45,49,50,50,46,50,55,54,54,55,53,44,52,52,46,55,52,54,49,51,53,93,44,91,45,49,50,50,46,48,51,51,48,48,54,44,52,52,46,54,56,53,54,57,49,93,44,91,45,49,50,49,46,56,48,48,48,49,53,44,52,52,46,54,56,51,52,50,53,93,44,91,45,49,50,49,46,55,53,50,57,57,52,44,52,52,46,56,50,57,57,49,57,93,44,91,45,49,50,49,46,55,51,52,50,50,51,44,52,52,46,56,56,53,55,50,93,44,91,45,49,50,50,46,52,48,49,48,50,49,44,52,52,46,56,56,53,55,50,93,44,91,45,49,50,50,46,53,48,56,49,48,54,44,52,52,46,57,49,57,53,57,57,93,44,91,45,49,50,50,46,53,57,53,53,50,51,44,52,53,46,48,49,57,54,55,57,93,44,91,45,49,50,50,46,55,56,56,53,53,52,44,52,53,46,49,51,48,49,55,54,93,44,91,45,49,50,50,46,55,52,57,55,57,51,44,52,53,46,49,57,53,50,52,50,93,44,91,45,49,50,50,46,56,52,57,57,50,53,44,52,53,46,50,53,57,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,77,105,108,119,97,117,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,52,50,48,57,44,34,98,101,100,115,34,58,51,56,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,49,57,48,48,56,44,52,51,46,49,57,48,56,49,54,93,44,91,45,56,56,46,48,54,51,51,53,51,44,52,51,46,49,57,50,49,49,55,93,44,91,45,56,56,46,48,54,57,57,50,52,44,52,50,46,56,52,51,51,50,51,93,44,91,45,56,55,46,48,54,57,52,49,57,44,52,50,46,56,52,50,49,52,54,93,44,91,45,56,55,46,49,48,55,54,54,57,44,52,51,46,49,49,56,50,52,51,93,44,91,45,56,55,46,49,49,57,48,48,56,44,52,51,46,49,57,48,56,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,51,55,50,44,34,98,101,100,115,34,58,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,50,48,52,51,49,44,52,52,46,56,48,52,50,54,51,93,44,91,45,57,51,46,55,54,56,48,51,57,44,52,52,46,54,52,48,51,48,51,93,44,91,45,57,51,46,57,49,48,52,48,53,44,52,52,46,53,52,51,49,54,51,93,44,91,45,57,51,46,53,50,52,51,50,55,44,52,52,46,53,52,51,54,49,56,93,44,91,45,57,51,46,50,56,49,53,50,49,44,52,52,46,53,52,51,57,53,55,93,44,91,45,57,51,46,51,50,57,54,49,53,44,52,52,46,55,57,49,48,56,54,93,44,91,45,57,51,46,53,50,48,52,51,49,44,52,52,46,56,48,52,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,80,105,99,107,97,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,52,50,48,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,50,52,50,53,52,44,51,57,46,55,57,52,57,57,54,93,44,91,45,56,51,46,50,52,51,55,48,50,44,51,57,46,56,49,50,53,48,51,93,44,91,45,56,51,46,50,53,50,52,51,53,44,51,57,46,54,57,53,52,51,56,93,44,91,45,56,51,46,50,54,54,55,51,55,44,51,57,46,53,49,54,50,52,57,93,44,91,45,56,50,46,57,56,52,53,54,44,51,57,46,53,48,54,55,53,52,93,44,91,45,56,50,46,55,52,48,55,50,57,44,51,57,46,52,54,56,51,53,93,44,91,45,56,50,46,55,51,49,53,49,56,44,51,57,46,53,53,52,52,52,53,93,44,91,45,56,50,46,56,52,50,57,53,51,44,51,57,46,53,54,49,52,56,93,44,91,45,56,50,46,56,50,52,50,53,52,44,51,57,46,55,57,52,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,80,111,119,104,97,116,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,53,55,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,44,91,45,55,55,46,56,57,55,50,57,50,44,51,55,46,54,54,56,49,56,49,93,44,91,45,55,56,46,48,55,50,49,55,52,44,51,55,46,54,53,55,51,56,53,93,44,91,45,55,56,46,49,51,50,48,52,56,44,51,55,46,52,53,52,54,56,54,93,44,91,45,55,55,46,57,56,54,49,57,44,51,55,46,52,56,54,50,54,57,93,44,91,45,55,55,46,56,53,53,49,52,56,44,51,55,46,52,49,56,51,54,51,93,44,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,52,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,52,34,44,34,78,65,77,69,34,58,34,66,114,111,111,109,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,49,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,49,52,55,49,52,51,44,51,57,46,57,49,51,56,56,57,93,44,91,45,49,48,53,46,48,53,50,56,57,50,44,51,57,46,57,49,52,50,50,52,93,44,91,45,49,48,52,46,57,54,49,52,48,53,44,52,48,46,48,48,48,51,51,55,93,44,91,45,49,48,53,46,48,53,50,56,50,51,44,52,48,46,48,48,48,50,54,93,44,91,45,49,48,53,46,49,52,55,49,52,51,44,51,57,46,57,49,51,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,57,51,55,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,57,52,53,51,52,44,51,53,46,52,52,52,54,55,54,93,44,91,45,56,55,46,53,55,53,51,53,50,44,51,53,46,51,57,56,52,53,52,93,44,91,45,56,55,46,53,55,55,55,57,54,44,51,53,46,49,53,57,52,93,44,91,45,56,55,46,54,48,54,48,51,49,44,51,53,46,48,48,51,52,50,53,93,44,91,45,56,55,46,50,50,52,48,53,50,44,51,52,46,57,57,57,51,55,55,93,44,91,45,56,55,46,50,48,54,53,55,56,44,51,53,46,52,51,51,50,48,55,93,44,91,45,56,55,46,50,57,52,53,51,52,44,51,53,46,52,52,52,54,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,110,116,114,105,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,53,55,52,53,50,44,52,53,46,49,49,54,55,48,55,93,44,91,45,56,53,46,50,50,51,54,56,49,44,52,53,46,49,49,55,56,54,49,93,44,91,45,56,53,46,50,50,50,55,48,55,44,52,53,46,50,48,53,53,54,93,44,91,45,56,53,46,52,53,56,56,57,54,44,52,53,46,50,48,54,53,55,52,93,44,91,45,56,53,46,52,56,48,54,55,52,44,52,53,46,49,50,48,51,50,54,93,44,91,45,56,53,46,52,50,55,54,56,56,44,52,52,46,57,54,53,50,55,51,93,44,91,45,56,53,46,52,55,51,56,52,49,44,52,52,46,56,53,57,52,52,57,93,44,91,45,56,53,46,51,51,50,56,51,54,44,52,52,46,56,49,50,51,55,50,93,44,91,45,56,53,46,50,57,49,55,49,54,44,52,52,46,56,53,57,54,48,56,93,44,91,45,56,52,46,56,52,55,51,48,57,44,52,52,46,56,53,56,48,51,55,93,44,91,45,56,52,46,56,53,55,52,53,50,44,52,53,46,49,49,54,55,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,77,97,114,108,98,111,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,49,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,50,55,52,49,50,44,51,52,46,56,48,54,55,51,52,93,44,91,45,55,57,46,56,48,51,56,55,55,44,51,52,46,54,48,57,48,53,51,93,44,91,45,55,57,46,56,50,57,57,56,49,44,51,52,46,53,51,49,57,50,53,93,44,91,45,55,57,46,54,56,53,50,50,55,44,51,52,46,52,48,48,54,54,57,93,44,91,45,55,57,46,54,53,55,55,54,52,44,51,52,46,51,48,53,49,57,93,44,91,45,55,57,46,54,51,51,52,49,51,44,51,52,46,50,57,55,57,57,52,93,44,91,45,55,57,46,52,53,48,48,50,52,44,51,52,46,54,50,49,48,53,51,93,44,91,45,55,57,46,52,54,49,53,48,54,44,51,52,46,54,51,48,51,55,57,93,44,91,45,55,57,46,54,57,50,57,52,52,44,51,52,46,56,48,53,49,53,53,93,44,91,45,55,57,46,57,50,55,52,49,50,44,51,52,46,56,48,54,55,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,101,110,101,119,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,56,54,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,51,57,56,55,56,44,52,55,46,50,53,57,50,55,50,93,44,91,45,49,49,55,46,48,51,57,55,53,50,44,52,55,46,49,50,55,50,54,57,93,44,91,45,49,49,54,46,56,51,53,50,54,57,44,52,55,46,48,51,50,52,53,50,93,44,91,45,49,49,54,46,51,50,57,52,49,56,44,52,55,46,48,50,49,57,49,53,93,44,91,45,49,49,54,46,51,50,57,52,48,54,44,52,55,46,52,49,52,48,49,49,93,44,91,45,49,49,54,46,53,56,54,53,52,57,44,52,55,46,52,49,52,54,57,53,93,44,91,45,49,49,54,46,54,50,57,48,53,57,44,52,55,46,51,55,49,52,51,56,93,44,91,45,49,49,55,46,48,51,57,56,48,56,44,52,55,46,51,54,54,48,51,49,93,44,91,45,49,49,55,46,48,51,57,56,55,56,44,52,55,46,50,53,57,50,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,53,50,55,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,50,57,51,51,44,52,49,46,57,48,49,54,49,55,93,44,91,45,56,57,46,54,51,49,52,57,52,44,52,49,46,53,56,52,57,52,57,93,44,91,45,56,57,46,49,54,54,53,54,49,44,52,49,46,53,56,53,50,56,57,93,44,91,45,56,56,46,57,51,56,54,55,57,44,52,49,46,54,50,56,51,49,54,93,44,91,45,56,56,46,57,52,49,50,55,57,44,52,49,46,56,57,49,55,53,50,93,44,91,45,56,57,46,51,54,48,53,55,56,44,52,49,46,56,56,56,48,49,56,93,44,91,45,56,57,46,54,50,57,51,51,44,52,49,46,57,48,49,54,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,78,101,109,97,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,48,52,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,54,55,48,49,50,44,52,48,46,53,50,51,49,52,56,93,44,91,45,57,54,46,48,54,54,55,51,54,44,52,48,46,50,54,50,48,51,56,93,44,91,45,57,54,46,48,49,48,49,55,54,44,52,48,46,50,54,49,52,56,50,93,44,91,45,57,53,46,53,53,50,52,55,51,44,52,48,46,50,54,49,57,48,52,93,44,91,45,57,53,46,53,53,52,56,49,55,44,52,48,46,50,54,52,52,54,93,44,91,45,57,53,46,55,48,57,57,55,52,44,52,48,46,53,50,51,55,57,56,93,44,91,45,57,54,46,48,54,55,48,49,50,44,52,48,46,53,50,51,49,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,57,50,48,44,34,98,101,100,115,34,58,49,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,49,49,53,56,44,51,52,46,57,56,49,55,54,56,93,44,91,45,55,54,46,54,57,51,48,49,56,44,51,52,46,56,54,57,49,56,93,44,91,45,55,55,46,48,55,56,50,54,51,44,51,52,46,56,49,49,51,50,50,93,44,91,45,55,55,46,49,54,53,57,56,54,44,51,52,46,55,56,53,48,51,50,93,44,91,45,55,55,46,48,57,54,57,55,50,44,51,52,46,54,55,50,52,48,49,93,44,91,45,55,55,46,49,49,55,49,57,56,44,51,52,46,53,56,52,51,54,55,93,44,91,45,55,54,46,56,49,56,57,51,55,44,51,52,46,54,52,51,50,53,51,93,44,91,45,55,54,46,54,49,52,55,50,50,44,51,52,46,54,49,56,50,55,56,93,44,91,45,55,54,46,52,57,49,57,57,49,44,51,52,46,53,52,54,53,51,50,93,44,91,45,55,54,46,51,55,52,54,51,56,44,51,52,46,55,49,53,57,57,49,93,44,91,45,55,54,46,50,52,57,54,51,50,44,51,52,46,56,51,52,54,51,49,93,44,91,45,55,54,46,48,48,54,57,51,54,44,51,53,46,48,48,54,48,51,49,93,44,91,45,55,54,46,48,54,53,55,55,52,44,51,53,46,49,50,52,57,51,55,93,44,91,45,55,54,46,51,48,52,49,51,54,44,51,53,46,50,48,49,52,53,51,93,44,91,45,55,54,46,55,49,49,53,56,44,51,52,46,57,56,49,55,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,80,111,116,116,97,119,97,116,111,109,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,52,53,44,34,98,101,100,115,34,58,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,56,48,51,54,50,44,51,57,46,53,54,54,51,51,50,93,44,91,45,57,54,46,55,49,57,49,53,56,44,51,57,46,51,57,52,51,51,56,93,44,91,45,57,54,46,53,49,54,55,44,51,57,46,49,55,49,49,51,93,44,91,45,57,54,46,51,56,57,48,52,54,44,51,57,46,49,55,50,56,55,56,93,44,91,45,57,54,46,50,51,51,54,55,49,44,51,57,46,50,49,50,50,55,57,93,44,91,45,57,54,46,48,56,51,53,53,55,44,51,57,46,49,57,51,53,48,52,93,44,91,45,57,54,46,48,51,57,48,54,44,51,57,46,49,50,54,53,50,55,93,44,91,45,57,54,46,48,51,53,53,55,51,44,51,57,46,50,49,54,53,50,93,44,91,45,57,54,46,48,51,53,57,53,50,44,51,57,46,53,54,54,49,93,44,91,45,57,54,46,50,51,56,57,54,57,44,51,57,46,53,54,54,50,50,93,44,91,45,57,54,46,53,56,48,51,54,50,44,51,57,46,53,54,54,51,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,57,49,51,44,34,98,101,100,115,34,58,53,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,49,56,52,57,51,44,52,50,46,52,50,49,53,50,93,44,91,45,56,52,46,55,48,57,53,53,54,44,52,50,46,48,55,48,51,54,54,93,44,91,45,56,52,46,51,54,51,50,57,55,44,52,50,46,48,55,51,52,53,54,93,44,91,45,56,52,46,49,51,49,57,54,51,44,52,50,46,48,55,49,53,55,55,93,44,91,45,56,52,46,49,51,49,49,51,54,44,52,50,46,52,50,52,53,54,55,93,44,91,45,56,52,46,49,52,48,55,49,51,44,52,50,46,52,50,52,54,49,49,93,44,91,45,56,52,46,54,48,48,52,48,51,44,52,50,46,52,50,49,57,56,52,93,44,91,45,56,52,46,55,49,56,52,57,51,44,52,50,46,52,50,49,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,67,111,109,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,48,57,55,44,34,98,101,100,115,34,58,50,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,52,54,49,50,52,44,50,57,46,55,52,53,49,56,49,93,44,91,45,57,56,46,53,52,51,55,49,56,44,50,57,46,55,53,50,48,53,50,93,44,91,45,57,56,46,51,56,48,49,54,49,44,50,57,46,55,48,51,57,50,57,93,44,91,45,57,56,46,51,49,48,57,50,56,44,50,57,46,53,57,52,52,55,51,93,44,91,45,57,56,46,48,56,57,50,55,55,44,50,57,46,54,56,51,57,51,49,93,44,91,45,57,55,46,57,57,57,50,55,49,44,50,57,46,55,53,50,52,52,52,93,44,91,45,57,56,46,48,51,48,53,50,51,44,50,57,46,56,52,56,53,51,57,93,44,91,45,57,56,46,50,57,55,54,44,51,48,46,48,51,55,57,57,52,93,44,91,45,57,56,46,52,49,52,48,49,56,44,50,57,46,57,51,55,53,53,55,93,44,91,45,57,56,46,54,52,54,49,50,52,44,50,57,46,55,52,53,49,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,78,97,110,116,117,99,107,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,48,49,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,52,57,51,51,48,56,44,52,49,46,50,55,57,57,55,53,93,44,91,45,55,48,46,51,52,52,48,56,51,44,52,49,46,50,55,54,49,52,54,93,44,91,45,55,48,46,49,48,57,54,56,52,44,52,49,46,49,56,57,56,48,51,93,44,91,45,54,57,46,57,49,48,51,49,57,44,52,49,46,50,50,54,56,52,57,93,44,91,45,54,57,46,57,49,48,48,57,51,44,52,49,46,51,49,55,50,54,51,93,44,91,45,55,48,46,48,48,54,52,54,55,44,52,49,46,52,51,51,56,57,56,93,44,91,45,55,48,46,50,51,52,51,51,44,52,49,46,51,56,51,50,50,57,93,44,91,45,55,48,46,51,50,56,49,56,50,44,52,49,46,51,56,48,49,53,57,93,44,91,45,55,48,46,52,57,51,51,48,56,44,52,49,46,50,55,57,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,109,98,101,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,54,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,50,50,54,55,51,44,51,51,46,52,52,93,44,91,45,56,49,46,50,50,55,55,55,56,44,51,51,46,49,54,50,54,50,50,93,44,91,45,56,49,46,49,57,51,48,57,57,44,51,51,46,49,49,56,54,54,56,93,44,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,44,91,45,56,48,46,55,57,55,57,49,50,44,51,51,46,49,55,54,57,52,52,93,44,91,45,56,48,46,57,52,56,55,53,54,44,51,51,46,51,48,56,48,52,55,93,44,91,45,56,49,46,50,50,50,54,55,51,44,51,51,46,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,114,97,110,115,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,55,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,55,57,48,53,49,50,44,50,56,46,51,49,57,50,51,56,93,44,91,45,57,55,46,49,50,51,48,55,50,44,50,56,46,50,55,50,56,49,55,93,44,91,45,57,55,46,48,50,51,53,56,54,44,50,56,46,49,56,55,54,53,55,93,44,91,45,57,55,46,49,52,52,57,49,54,44,50,56,46,49,48,50,54,50,50,93,44,91,45,57,55,46,50,54,48,56,49,56,44,50,56,46,48,55,53,55,53,57,93,44,91,45,57,55,46,49,51,54,51,49,50,44,50,55,46,57,48,52,51,57,93,44,91,45,57,54,46,57,56,52,50,56,49,44,50,55,46,56,48,51,55,56,51,93,44,91,45,57,54,46,57,53,57,52,57,53,44,50,55,46,56,55,53,51,48,50,93,44,91,45,57,54,46,56,49,53,57,48,53,44,50,56,46,48,50,50,56,51,53,93,44,91,45,57,54,46,56,51,48,56,54,49,44,50,56,46,49,48,56,93,44,91,45,57,54,46,55,57,48,53,49,50,44,50,56,46,51,49,57,50,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,101,114,114,105,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,50,53,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,51,52,52,57,50,44,51,49,46,51,53,48,51,54,49,93,44,91,45,56,51,46,51,51,53,57,52,57,44,51,49,46,50,52,52,53,55,57,93,44,91,45,56,51,46,50,57,53,48,53,50,44,51,49,46,48,50,55,50,55,56,93,44,91,45,56,51,46,49,57,55,57,55,49,44,51,49,46,48,50,53,52,48,53,93,44,91,45,56,51,46,49,54,53,48,55,50,44,51,49,46,49,52,55,49,57,56,93,44,91,45,56,51,46,48,52,54,56,56,53,44,51,49,46,49,56,51,54,56,93,44,91,45,56,51,46,48,52,54,57,56,56,44,51,49,46,50,56,50,57,54,54,93,44,91,45,56,51,46,49,52,48,52,56,51,44,51,49,46,52,50,48,51,57,53,93,44,91,45,56,51,46,49,52,53,53,56,55,44,51,49,46,52,55,50,50,55,54,93,44,91,45,56,51,46,51,51,56,55,50,56,44,51,49,46,52,55,53,57,57,49,93,44,91,45,56,51,46,52,51,52,52,57,50,44,51,49,46,51,53,48,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,86,101,114,109,105,108,108,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,51,49,52,52,57,44,52,48,46,49,52,56,49,50,55,93,44,91,45,56,55,46,53,51,51,50,50,56,44,51,57,46,56,56,51,93,44,91,45,56,55,46,53,51,50,49,57,52,44,51,57,46,54,48,55,51,48,54,93,44,91,45,56,55,46,51,56,50,52,49,56,44,51,57,46,54,48,55,57,51,55,93,44,91,45,56,55,46,51,54,56,56,54,51,44,51,57,46,56,57,48,52,55,49,93,44,91,45,56,55,46,52,50,48,50,50,49,44,51,57,46,57,53,50,52,53,50,93,44,91,45,56,55,46,52,48,54,54,54,55,44,52,48,46,49,50,55,53,48,56,93,44,91,45,56,55,46,53,51,49,52,52,57,44,52,48,46,49,52,56,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,82,111,115,99,111,109,109,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,55,48,54,52,51,44,52,52,46,53,48,55,50,50,51,93,44,91,45,56,52,46,56,53,48,57,50,57,44,52,52,46,53,49,49,48,54,57,93,44,91,45,56,52,46,56,53,49,55,48,53,44,52,52,46,49,54,49,51,55,53,93,44,91,45,56,52,46,54,48,56,49,48,52,44,52,52,46,49,54,48,52,56,50,93,44,91,45,56,52,46,51,54,56,48,51,57,44,52,52,46,49,54,48,53,51,56,93,44,91,45,56,52,46,51,55,48,54,52,51,44,52,52,46,53,48,55,50,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,104,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,55,51,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,53,51,50,53,57,44,51,54,46,53,55,52,54,57,50,93,44,91,45,56,49,46,50,53,51,54,52,57,44,51,54,46,51,54,54,54,48,49,93,44,91,45,56,49,46,48,57,53,49,49,50,44,51,54,46,52,52,48,55,55,51,93,44,91,45,56,48,46,57,54,55,49,53,51,44,51,54,46,52,48,50,48,50,93,44,91,45,56,48,46,57,48,49,54,52,49,44,51,54,46,53,54,49,55,54,54,93,44,91,45,56,49,46,51,53,51,50,53,57,44,51,54,46,53,55,52,54,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,76,97,115,115,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,49,56,53,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,51,51,49,55,56,54,44,52,49,46,49,56,51,56,56,54,93,44,91,45,49,50,49,46,51,50,49,49,56,54,44,52,48,46,56,56,56,55,48,50,93,44,91,45,49,50,49,46,51,50,55,56,50,54,44,52,48,46,52,52,53,51,54,55,93,44,91,45,49,50,49,46,48,54,49,52,49,55,44,52,48,46,52,52,54,53,51,54,93,44,91,45,49,50,49,46,48,54,49,52,57,51,44,52,48,46,50,53,54,52,49,55,93,44,91,45,49,50,48,46,56,55,49,55,56,50,44,52,48,46,50,52,49,54,52,93,44,91,45,49,50,48,46,55,54,52,52,48,51,44,52,48,46,51,49,54,48,49,93,44,91,45,49,50,48,46,53,55,54,56,50,53,44,52,48,46,50,56,53,52,51,93,44,91,45,49,50,48,46,51,52,49,51,56,53,44,52,48,46,49,49,53,50,52,51,93,44,91,45,49,50,48,46,50,48,57,54,52,49,44,52,48,46,48,56,54,48,48,56,93,44,91,45,49,50,48,46,49,48,56,55,54,49,44,51,57,46,57,51,57,53,49,93,44,91,45,49,50,48,46,49,49,48,54,50,55,44,51,57,46,55,54,53,55,55,57,93,44,91,45,49,50,48,46,49,52,55,49,52,57,44,51,57,46,55,48,55,54,53,56,93,44,91,45,49,50,48,46,48,48,49,48,54,50,44,51,57,46,55,50,50,52,49,56,93,44,91,45,49,49,57,46,57,57,53,55,48,53,44,52,48,46,51,55,53,56,51,93,44,91,45,49,49,57,46,57,57,57,56,54,54,44,52,49,46,49,56,51,57,55,52,93,44,91,45,49,50,49,46,51,51,49,55,56,54,44,52,49,46,49,56,51,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,49,48,34,44,34,78,65,77,69,34,58,34,70,97,108,108,115,32,67,104,117,114,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,55,50,50,55,54,44,51,56,46,56,57,51,50,52,53,93,44,91,45,55,55,46,49,56,57,55,53,52,44,51,56,46,56,55,56,49,51,54,93,44,91,45,55,55,46,49,52,57,55,48,49,44,51,56,46,56,55,53,54,55,93,44,91,45,55,55,46,49,55,50,50,55,54,44,51,56,46,56,57,51,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,77,97,110,97,116,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,56,53,51,44,34,98,101,100,115,34,58,56,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,44,91,45,56,50,46,53,53,51,54,54,54,44,50,55,46,54,52,53,52,54,53,93,44,91,45,56,50,46,55,52,53,49,51,55,44,50,55,46,53,55,48,53,53,93,44,91,45,56,50,46,56,50,51,48,50,57,44,50,55,46,53,55,48,53,53,93,44,91,45,56,50,46,55,48,53,52,51,56,44,50,55,46,51,56,57,54,54,56,93,44,91,45,56,50,46,50,53,50,50,54,52,44,50,55,46,51,56,54,50,52,51,93,44,91,45,56,50,46,50,53,51,53,57,54,44,50,55,46,50,48,56,57,49,54,93,44,91,45,56,50,46,48,53,54,52,57,55,44,50,55,46,50,48,55,55,54,57,93,44,91,45,56,50,46,48,53,53,55,53,51,44,50,55,46,51,51,56,50,54,52,93,44,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,117,115,107,105,110,103,117,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,48,55,54,44,34,98,101,100,115,34,58,51,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,56,55,49,48,53,44,52,48,46,49,54,54,56,56,93,44,91,45,56,50,46,49,57,56,55,55,50,44,51,57,46,57,53,48,49,52,93,44,91,45,56,50,46,50,51,51,57,55,52,44,51,57,46,57,49,51,50,54,93,44,91,45,56,50,46,48,55,54,54,51,57,44,51,57,46,55,55,48,57,54,93,44,91,45,56,49,46,54,57,55,52,52,50,44,51,57,46,55,53,53,53,55,50,93,44,91,45,56,49,46,54,57,52,49,52,54,44,51,57,46,56,52,50,54,51,54,93,44,91,45,56,49,46,55,50,56,54,49,49,44,51,57,46,57,51,49,55,50,56,93,44,91,45,56,49,46,55,49,54,50,55,54,44,52,48,46,49,53,50,49,54,54,93,44,91,45,56,50,46,49,56,55,49,48,53,44,52,48,46,49,54,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,104,97,102,102,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,53,57,57,50,49,52,44,51,56,46,57,57,55,57,57,52,93,44,91,45,49,48,54,46,52,54,53,48,51,50,44,51,56,46,57,49,48,51,53,52,93,44,91,45,49,48,54,46,52,49,54,50,54,51,44,51,56,46,56,50,51,56,53,93,44,91,45,49,48,54,46,52,51,48,49,53,57,44,51,56,46,54,53,51,52,54,56,93,44,91,45,49,48,54,46,51,52,56,49,48,56,44,51,56,46,53,49,50,52,57,57,93,44,91,45,49,48,54,46,50,52,54,57,52,44,51,56,46,52,50,50,55,54,56,93,44,91,45,49,48,54,46,48,49,48,55,53,49,44,51,56,46,52,52,54,53,54,54,93,44,91,45,49,48,53,46,57,48,56,55,49,55,44,51,56,46,53,48,53,54,51,49,93,44,91,45,49,48,53,46,56,55,57,49,55,54,44,51,56,46,54,48,55,51,49,50,93,44,91,45,49,48,53,46,57,54,57,55,53,44,51,56,46,54,57,51,53,53,49,93,44,91,45,49,48,53,46,57,48,54,53,56,55,44,51,56,46,56,48,54,57,54,50,93,44,91,45,49,48,54,46,48,50,56,49,51,56,44,51,56,46,57,52,50,56,52,57,93,44,91,45,49,48,54,46,49,48,53,55,53,56,44,51,56,46,57,52,48,51,54,52,93,44,91,45,49,48,54,46,49,57,49,48,48,54,44,51,57,46,48,53,54,48,55,51,93,44,91,45,49,48,54,46,53,55,55,57,54,54,44,51,57,46,48,53,55,57,48,56,93,44,91,45,49,48,54,46,53,57,57,50,49,52,44,51,56,46,57,57,55,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,114,111,119,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,48,52,54,54,54,44,51,56,46,53,49,54,52,48,57,93,44,91,45,49,48,52,46,48,53,51,57,50,49,44,51,56,46,53,50,50,51,57,51,93,44,91,45,49,48,52,46,48,53,56,50,52,50,44,51,56,46,49,52,54,52,57,50,93,44,91,45,49,48,51,46,56,51,53,54,49,54,44,51,56,46,49,49,51,51,52,93,44,91,45,49,48,51,46,54,49,57,49,55,50,44,51,56,46,49,49,51,51,53,53,93,44,91,45,49,48,51,46,53,48,57,51,54,52,44,51,56,46,49,55,50,53,49,52,93,44,91,45,49,48,51,46,53,48,49,55,54,52,44,51,56,46,50,54,53,48,49,54,93,44,91,45,49,48,51,46,53,48,52,54,54,54,44,51,56,46,53,49,54,52,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,70,114,101,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,48,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,52,50,52,50,54,44,51,56,46,54,52,57,56,56,50,93,44,91,45,49,48,53,46,50,52,48,51,54,50,44,51,56,46,54,52,55,53,57,53,93,44,91,45,49,48,53,46,51,50,57,49,51,52,44,51,56,46,54,57,55,50,48,53,93,44,91,45,49,48,53,46,57,54,57,55,53,44,51,56,46,54,57,51,53,53,49,93,44,91,45,49,48,53,46,56,55,57,49,55,54,44,51,56,46,54,48,55,51,49,50,93,44,91,45,49,48,53,46,57,48,56,55,49,55,44,51,56,46,53,48,53,54,51,49,93,44,91,45,49,48,54,46,48,49,48,55,53,49,44,51,56,46,52,52,54,53,54,54,93,44,91,45,49,48,53,46,55,57,54,56,57,55,44,51,56,46,50,54,53,48,52,55,93,44,91,45,49,48,53,46,48,52,57,50,49,53,44,51,56,46,50,53,55,57,55,51,93,44,91,45,49,48,52,46,57,52,48,51,54,54,44,51,56,46,50,53,56,50,55,53,93,44,91,45,49,48,52,46,57,52,49,53,51,51,44,51,56,46,53,49,57,53,54,57,93,44,91,45,49,48,52,46,57,52,50,52,50,54,44,51,56,46,54,52,57,56,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,80,101,97,114,108,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,49,52,57,44,34,98,101,100,115,34,58,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,52,56,57,53,44,51,49,46,48,49,48,51,55,93,44,91,45,56,57,46,52,55,54,48,50,50,44,51,48,46,57,56,50,57,48,49,93,44,91,45,56,57,46,54,53,52,48,51,56,44,51,49,46,48,48,50,53,48,50,93,44,91,45,56,57,46,55,50,56,49,49,57,44,51,49,46,48,48,50,51,93,44,91,45,56,57,46,56,52,50,51,51,44,51,48,46,54,54,54,48,49,53,93,44,91,45,56,57,46,55,53,50,56,48,55,44,51,48,46,53,48,50,57,54,50,93,44,91,45,56,57,46,54,57,48,48,51,53,44,51,48,46,52,53,57,51,51,51,93,44,91,45,56,57,46,53,52,52,53,49,44,51,48,46,53,49,54,56,54,50,93,44,91,45,56,57,46,53,52,52,50,51,50,44,51,48,46,54,52,56,51,54,56,93,44,91,45,56,57,46,51,52,49,52,52,54,44,51,48,46,54,52,55,55,50,93,44,91,45,56,57,46,51,52,48,56,48,54,44,51,48,46,57,48,57,57,49,50,93,44,91,45,56,57,46,51,52,56,57,53,44,51,49,46,48,49,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,50,56,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,52,51,52,54,56,44,51,49,46,52,51,51,52,53,56,93,44,91,45,56,57,46,49,52,54,48,57,50,44,51,49,46,52,51,52,48,53,50,93,44,91,45,56,57,46,49,51,55,57,54,55,44,51,48,46,57,48,57,56,55,55,93,44,91,45,56,56,46,56,56,53,48,51,56,44,51,48,46,57,49,48,55,56,56,93,44,91,45,56,56,46,56,51,52,51,51,57,44,51,48,46,57,57,55,57,56,51,93,44,91,45,56,56,46,56,52,49,55,48,55,44,51,49,46,52,51,51,55,48,51,93,44,91,45,56,56,46,57,52,51,52,54,56,44,51,49,46,52,51,51,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,51,48,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,56,54,56,51,52,44,52,49,46,55,52,48,51,50,54,93,44,91,45,49,48,48,46,50,53,49,50,50,52,44,52,49,46,55,51,57,56,49,55,93,44,91,45,49,48,48,46,50,53,49,48,57,56,44,52,49,46,51,57,51,50,57,56,93,44,91,45,49,48,48,46,50,50,52,50,51,53,44,52,49,46,48,52,54,53,57,55,93,44,91,45,57,57,46,52,50,53,57,56,54,44,52,49,46,48,52,54,52,55,49,93,44,91,45,57,57,46,50,48,55,53,54,52,44,52,49,46,48,52,55,48,48,51,93,44,91,45,57,57,46,50,48,51,50,54,49,44,52,49,46,51,57,52,49,52,93,44,91,45,57,57,46,50,49,50,48,49,54,44,52,49,46,55,52,48,54,49,51,93,44,91,45,57,57,46,50,50,49,56,51,44,52,49,46,55,52,48,55,57,50,93,44,91,45,57,57,46,54,56,54,56,51,52,44,52,49,46,55,52,48,51,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,44,91,45,56,53,46,49,54,52,55,52,52,44,51,48,46,54,48,56,48,55,57,93,44,91,45,56,53,46,49,55,49,56,57,49,44,51,48,46,53,54,52,51,51,54,93,44,91,45,56,53,46,51,56,51,57,52,56,44,51,48,46,53,54,54,56,53,54,93,44,91,45,56,53,46,51,56,57,54,55,57,44,51,48,46,50,48,48,57,55,51,93,44,91,45,56,53,46,49,49,53,54,54,44,51,48,46,49,57,57,57,55,54,93,44,91,45,56,53,46,48,53,50,55,55,55,44,51,48,46,50,56,55,52,48,54,93,44,91,45,56,53,46,48,51,50,57,51,49,44,51,48,46,52,50,48,50,57,57,93,44,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,75,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,54,56,56,44,34,98,101,100,115,34,58,55,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,50,51,52,56,56,44,51,57,46,48,55,52,50,56,50,93,44,91,45,56,52,46,54,49,53,54,54,52,44,51,56,46,56,48,50,50,55,55,93,44,91,45,56,52,46,53,51,50,50,56,56,44,51,56,46,55,57,49,57,51,55,93,44,91,45,56,52,46,52,49,56,49,48,55,44,51,56,46,56,48,54,53,57,54,93,44,91,45,56,52,46,52,50,55,50,56,53,44,51,56,46,57,56,48,56,54,51,93,44,91,45,56,52,46,53,48,54,49,54,49,44,51,57,46,48,57,53,49,55,55,93,44,91,45,56,52,46,54,50,51,52,56,56,44,51,57,46,48,55,52,50,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,104,105,99,107,97,115,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,57,57,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,52,51,56,49,44,52,51,46,50,49,50,56,49,51,93,44,91,45,57,50,46,53,53,52,50,49,49,44,52,50,46,57,48,55,49,49,50,93,44,91,45,57,50,46,48,56,49,53,54,56,44,52,50,46,57,48,55,48,49,51,93,44,91,45,57,50,46,48,56,49,49,52,54,44,52,51,46,48,56,50,55,57,52,93,44,91,45,57,50,46,48,56,48,57,55,54,44,52,51,46,50,49,50,57,52,55,93,44,91,45,57,50,46,53,53,52,51,56,49,44,52,51,46,50,49,50,56,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,50,48,48,44,34,98,101,100,115,34,58,49,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,51,57,55,51,50,44,52,50,46,49,53,50,51,50,93,44,91,45,56,56,46,57,52,49,50,55,57,44,52,49,46,56,57,49,55,53,50,93,44,91,45,56,56,46,57,51,56,54,55,57,44,52,49,46,54,50,56,51,49,54,93,44,91,45,56,56,46,54,48,50,50,52,44,52,49,46,54,51,49,51,56,57,93,44,91,45,56,56,46,54,48,49,57,51,51,44,52,49,46,55,49,57,53,54,51,93,44,91,45,56,56,46,53,56,56,54,53,55,44,52,50,46,49,53,51,53,57,93,44,91,45,56,56,46,55,48,53,53,56,53,44,52,50,46,49,53,51,53,51,55,93,44,91,45,56,56,46,57,51,57,55,51,50,44,52,50,46,49,53,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,56,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,55,48,52,49,53,44,52,51,46,50,53,53,51,53,56,93,44,91,45,57,51,46,57,55,49,50,51,56,44,52,50,46,57,48,55,55,54,50,93,44,91,45,57,51,46,52,57,56,54,49,55,44,52,50,46,57,48,56,53,49,50,93,44,91,45,57,51,46,52,57,55,54,51,53,44,52,51,46,50,53,53,52,54,56,93,44,91,45,57,51,46,57,55,48,52,49,53,44,52,51,46,50,53,53,51,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,116,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,49,52,52,55,55,49,44,52,55,46,48,49,48,51,48,55,93,44,91,45,49,48,50,46,53,50,53,51,54,52,44,52,54,46,57,56,49,50,56,56,93,44,91,45,49,48,51,46,48,51,50,54,56,49,44,52,54,46,57,56,48,53,56,93,44,91,45,49,48,51,46,50,51,49,48,53,54,44,52,54,46,57,56,48,50,57,54,93,44,91,45,49,48,51,46,50,51,49,54,53,54,44,52,54,46,54,50,57,55,54,52,93,44,91,45,49,48,50,46,57,50,55,52,53,49,44,52,54,46,54,51,48,48,50,93,44,91,45,49,48,50,46,48,57,54,55,52,52,44,52,54,46,54,51,49,48,50,54,93,44,91,45,49,48,50,46,48,57,54,50,52,44,52,54,46,55,49,55,55,55,50,93,44,91,45,49,48,50,46,48,57,53,57,48,52,44,52,54,46,57,56,49,51,50,57,93,44,91,45,49,48,50,46,49,52,52,55,55,49,44,52,55,46,48,49,48,51,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,76,117,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,53,52,56,54,50,44,52,55,46,51,48,53,52,56,50,93,44,91,45,56,53,46,56,54,52,57,51,50,44,52,54,46,53,48,52,55,53,56,93,44,91,45,56,53,46,56,54,53,48,50,53,44,52,54,46,50,52,52,54,51,49,93,44,91,45,56,53,46,50,51,55,56,51,57,44,52,54,46,50,52,53,52,51,93,44,91,45,56,53,46,50,51,52,51,51,44,52,55,46,48,52,55,54,49,93,44,91,45,56,53,46,56,53,52,56,54,50,44,52,55,46,51,48,53,52,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,48,54,44,34,98,101,100,115,34,58,50,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,53,54,50,53,49,50,44,51,52,46,50,56,57,49,56,51,93,44,91,45,57,55,46,53,54,48,55,54,49,44,51,52,46,48,55,49,49,53,93,44,91,45,57,54,46,57,54,57,54,50,55,44,51,52,46,48,55,49,48,50,93,44,91,45,57,54,46,57,51,51,53,48,51,44,51,52,46,49,55,50,55,52,56,93,44,91,45,57,54,46,57,51,51,51,48,53,44,51,52,46,51,51,50,53,54,49,93,44,91,45,57,55,46,48,51,56,50,51,57,44,51,52,46,51,55,53,55,48,55,93,44,91,45,57,55,46,51,53,50,49,49,53,44,51,52,46,51,55,54,49,56,56,93,44,91,45,57,55,46,51,53,50,49,56,51,44,51,52,46,53,48,54,55,57,54,93,44,91,45,57,55,46,53,54,50,51,50,51,44,51,52,46,53,48,55,48,51,54,93,44,91,45,57,55,46,53,54,50,53,49,50,44,51,52,46,50,56,57,49,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,80,97,115,113,117,111,116,97,110,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,53,51,55,49,49,44,51,54,46,51,55,56,48,57,50,93,44,91,45,55,54,46,49,53,55,57,53,51,44,51,54,46,48,53,57,53,49,55,93,44,91,45,55,54,46,48,50,50,54,48,55,44,51,54,46,48,57,54,55,50,53,93,44,91,45,55,54,46,48,54,56,54,48,53,44,51,54,46,50,49,54,53,57,93,44,91,45,55,54,46,50,51,56,50,52,52,44,51,54,46,51,55,49,53,56,56,93,44,91,45,55,54,46,52,57,49,51,51,54,44,51,54,46,53,49,48,54,55,55,93,44,91,45,55,54,46,52,53,51,55,49,49,44,51,54,46,51,55,56,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,84,97,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,56,56,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,48,54,51,49,54,44,51,54,46,57,57,53,50,54,55,93,44,91,45,49,48,53,46,57,55,49,56,56,57,44,51,54,46,56,56,54,50,52,55,93,44,91,45,49,48,53,46,57,55,49,56,51,54,44,51,54,46,54,51,50,52,52,52,93,44,91,45,49,48,53,46,57,51,56,55,53,52,44,51,54,46,52,54,50,52,48,50,93,44,91,45,49,48,53,46,57,54,49,52,49,52,44,51,54,46,51,53,51,48,54,54,93,44,91,45,49,48,54,46,48,53,56,51,54,52,44,51,54,46,50,57,54,57,55,56,93,44,91,45,49,48,53,46,56,53,54,57,52,55,44,51,54,46,50,51,48,52,51,52,93,44,91,45,49,48,53,46,55,51,53,56,56,51,44,51,54,46,49,48,48,49,51,51,93,44,91,45,49,48,53,46,53,51,48,51,56,44,51,54,46,48,49,51,48,49,52,93,44,91,45,49,48,53,46,51,52,49,50,54,52,44,51,54,46,50,54,49,56,54,51,93,44,91,45,49,48,53,46,51,50,54,54,55,52,44,51,54,46,53,48,48,48,51,49,93,44,91,45,49,48,53,46,51,55,48,54,51,56,44,51,54,46,54,56,49,48,51,50,93,44,91,45,49,48,53,46,50,51,48,54,51,50,44,51,54,46,55,50,51,55,56,52,93,44,91,45,49,48,53,46,50,48,48,49,49,55,44,51,54,46,57,49,53,54,50,56,93,44,91,45,49,48,53,46,50,50,48,53,48,54,44,51,54,46,57,57,52,57,55,52,93,44,91,45,49,48,53,46,55,49,56,52,54,51,44,51,54,46,57,57,53,56,52,49,93,44,91,45,49,48,54,46,48,48,54,51,49,54,44,51,54,46,57,57,53,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,111,108,105,118,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,57,50,44,34,98,101,100,115,34,58,49,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,53,55,48,48,50,44,51,51,46,57,56,55,53,56,54,93,44,91,45,57,48,46,54,53,57,52,53,55,44,51,52,46,49,49,56,56,54,55,93,44,91,45,57,48,46,57,53,53,57,55,52,44,51,52,46,49,50,48,49,50,53,93,44,91,45,57,48,46,57,53,53,49,55,44,51,52,46,49,49,56,56,51,51,93,44,91,45,57,49,46,48,49,49,53,49,44,51,51,46,57,50,52,55,51,51,93,44,91,45,57,49,46,48,55,51,48,49,49,44,51,51,46,56,53,55,52,52,57,93,44,91,45,57,49,46,48,54,56,50,57,44,51,51,46,55,49,54,52,55,55,93,44,91,45,57,49,46,49,51,48,52,52,53,44,51,51,46,54,48,54,48,51,52,93,44,91,45,57,49,46,50,51,48,56,57,55,44,51,51,46,53,54,49,52,93,44,91,45,57,49,46,50,49,53,54,55,49,44,51,51,46,53,50,57,52,50,51,93,44,91,45,57,48,46,55,54,51,53,48,57,44,51,51,46,53,50,57,51,56,57,93,44,91,45,57,48,46,54,53,56,54,44,51,51,46,54,49,54,50,55,50,93,44,91,45,57,48,46,54,53,55,48,48,50,44,51,51,46,57,56,55,53,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,78,121,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,55,48,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,54,48,48,57,52,54,44,51,57,46,49,54,49,52,54,51,93,44,91,45,49,49,55,46,51,51,49,56,53,55,44,51,57,46,49,54,51,52,51,93,44,91,45,49,49,55,46,55,55,53,52,54,56,44,51,57,46,48,57,51,52,50,53,93,44,91,45,49,49,55,46,56,54,53,49,49,54,44,51,57,46,48,55,51,54,53,52,93,44,91,45,49,49,56,46,49,57,54,50,55,52,44,51,56,46,57,57,57,57,50,54,93,44,91,45,49,49,56,46,49,57,54,50,51,53,44,51,56,46,57,49,57,48,53,56,93,44,91,45,49,49,55,46,54,57,49,48,50,49,44,51,56,46,52,55,51,55,57,55,93,44,91,45,49,49,55,46,49,54,53,54,49,50,44,51,56,46,48,48,49,54,57,50,93,44,91,45,49,49,55,46,49,54,54,48,48,49,44,51,54,46,57,55,49,49,49,49,93,44,91,45,49,49,54,46,51,56,48,51,52,55,44,51,54,46,51,55,52,57,54,49,93,44,91,45,49,49,53,46,56,52,53,57,57,52,44,51,53,46,57,54,51,55,48,55,93,44,91,45,49,49,53,46,56,52,53,55,54,50,44,51,54,46,49,55,48,55,54,52,93,44,91,45,49,49,53,46,56,57,53,55,53,51,44,51,54,46,49,55,50,50,50,55,93,44,91,45,49,49,53,46,56,57,54,57,50,53,44,51,54,46,56,52,50,48,56,53,93,44,91,45,49,49,53,46,56,57,51,56,53,55,44,51,56,46,48,53,48,53,51,49,93,44,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,48,53,48,55,53,55,93,44,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,54,55,55,51,50,50,93,44,91,45,49,49,53,46,57,48,55,48,55,49,44,51,57,46,49,54,49,56,52,56,93,44,91,45,49,49,54,46,54,48,48,57,52,54,44,51,57,46,49,54,49,52,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,72,97,119,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,52,48,50,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,51,48,52,51,51,44,51,54,46,53,57,51,55,54,49,93,44,91,45,56,51,46,49,49,57,51,57,51,44,51,54,46,53,49,52,50,57,93,44,91,45,56,51,46,50,56,48,53,57,53,44,51,54,46,51,57,52,54,56,57,93,44,91,45,56,51,46,50,53,53,50,57,50,44,51,54,46,50,56,57,48,57,50,93,44,91,45,56,51,46,49,53,49,54,56,57,44,51,54,46,51,49,56,49,57,50,93,44,91,45,56,51,46,48,56,50,51,49,50,44,51,54,46,50,52,50,50,57,54,93,44,91,45,56,50,46,56,52,48,52,56,49,44,51,54,46,51,55,48,54,57,56,93,44,91,45,56,50,46,55,48,50,53,54,54,44,51,54,46,52,49,48,52,49,50,93,44,91,45,56,50,46,54,56,48,54,55,55,44,51,54,46,52,51,49,56,93,44,91,45,56,50,46,54,48,57,49,55,54,44,51,54,46,53,57,52,48,57,57,93,44,91,45,56,50,46,56,51,48,52,51,51,44,51,54,46,53,57,51,55,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,111,119,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,57,53,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,53,53,53,57,44,52,54,46,50,56,48,48,56,49,93,44,91,45,49,48,52,46,48,52,53,53,52,55,44,52,53,46,57,52,53,51,48,56,93,44,91,45,49,48,50,46,57,57,53,50,52,56,44,52,53,46,57,52,53,49,54,55,93,44,91,45,49,48,50,46,57,57,53,50,52,53,44,52,54,46,50,56,48,54,53,49,93,44,91,45,49,48,52,46,48,52,53,53,53,57,44,52,54,46,50,56,48,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,48,54,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,51,52,56,54,51,44,52,48,46,49,54,53,49,51,49,93,44,91,45,55,56,46,50,57,57,48,48,51,44,51,57,46,56,50,53,53,93,44,91,45,55,56,46,51,56,48,53,57,57,44,51,57,46,55,50,50,53,57,57,93,44,91,45,55,56,46,51,52,50,56,51,52,44,51,57,46,55,50,50,50,54,51,93,44,91,45,55,56,46,48,57,57,52,48,51,44,51,57,46,55,50,50,48,57,57,93,44,91,45,55,56,46,48,48,50,55,44,51,57,46,56,50,54,53,57,57,93,44,91,45,55,55,46,56,54,52,52,56,57,44,52,48,46,48,54,49,53,54,56,93,44,91,45,55,56,46,49,51,52,56,54,51,44,52,48,46,49,54,53,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,48,57,49,44,34,98,101,100,115,34,58,49,52,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,56,52,54,55,53,44,51,48,46,49,52,55,52,52,51,93,44,91,45,57,50,46,50,48,50,55,50,50,44,51,48,46,49,52,50,56,54,93,44,91,45,57,49,46,57,54,52,52,53,56,44,51,48,46,48,51,54,57,49,56,93,44,91,45,57,49,46,57,53,48,57,57,56,44,51,48,46,48,55,51,50,49,51,93,44,91,45,57,49,46,57,55,57,57,51,50,44,51,48,46,49,56,50,53,56,53,93,44,91,45,57,49,46,57,52,57,48,52,55,44,51,48,46,50,55,54,55,55,49,93,44,91,45,57,49,46,57,56,56,55,49,56,44,51,48,46,51,54,56,53,57,56,93,44,91,45,57,50,46,49,52,50,49,56,52,44,51,48,46,50,57,56,56,49,55,93,44,91,45,57,50,46,50,56,52,54,55,53,44,51,48,46,49,52,55,52,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,52,50,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,50,48,54,54,54,44,51,51,46,51,57,54,49,57,53,93,44,91,45,57,56,46,52,50,54,53,53,51,44,51,51,46,48,48,55,57,49,51,93,44,91,45,57,56,46,48,53,54,48,57,52,44,51,51,46,48,48,51,51,51,50,93,44,91,45,57,55,46,57,50,49,54,52,50,44,51,51,46,48,48,49,50,56,52,93,44,91,45,57,55,46,57,49,56,49,56,57,44,51,51,46,52,51,51,56,55,51,93,44,91,45,57,55,46,57,55,56,57,49,57,44,51,51,46,52,54,55,49,50,57,93,44,91,45,57,56,46,52,50,49,52,49,57,44,51,51,46,52,54,54,55,57,55,93,44,91,45,57,56,46,52,50,48,54,54,54,44,51,51,46,51,57,54,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,83,116,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,56,52,53,53,57,44,52,49,46,49,52,57,51,57,52,93,44,91,45,56,57,46,57,56,53,52,55,57,44,52,48,46,57,55,52,52,57,53,93,44,91,45,56,57,46,54,51,56,55,50,55,44,52,48,46,57,55,51,55,48,55,93,44,91,45,56,57,46,54,51,56,53,51,54,44,52,49,46,49,52,56,53,52,53,93,44,91,45,56,57,46,54,51,56,55,48,56,44,52,49,46,50,51,51,56,54,50,93,44,91,45,56,57,46,56,53,55,54,49,54,44,52,49,46,50,51,52,52,55,57,93,44,91,45,56,57,46,56,54,56,49,53,50,44,52,49,46,49,52,57,52,57,51,93,44,91,45,56,57,46,57,56,52,53,53,57,44,52,49,46,49,52,57,51,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,52,51,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,56,56,56,52,52,52,44,51,53,46,48,50,57,56,56,57,93,44,91,45,57,57,46,56,56,56,50,50,50,44,51,52,46,57,52,51,56,57,55,93,44,91,45,57,57,46,55,51,49,48,57,50,44,51,52,46,57,52,52,48,53,56,93,44,91,45,57,57,46,55,49,57,55,57,55,44,51,52,46,55,54,56,52,53,49,93,44,91,45,57,57,46,54,54,54,56,52,57,44,51,52,46,55,50,52,53,53,53,93,44,91,45,57,57,46,52,50,51,50,48,49,44,51,52,46,55,50,53,48,50,93,44,91,45,57,57,46,52,48,53,56,50,49,44,51,52,46,56,49,51,48,51,56,93,44,91,45,57,57,46,50,52,54,52,54,50,44,51,52,46,56,50,50,49,49,52,93,44,91,45,57,57,46,51,48,54,50,50,44,51,52,46,56,53,55,54,51,50,93,44,91,45,57,57,46,51,50,54,55,53,55,44,51,53,46,48,49,56,57,49,50,93,44,91,45,57,57,46,52,48,57,50,57,49,44,51,53,46,49,49,52,53,48,57,93,44,91,45,57,57,46,55,56,50,55,50,55,44,51,53,46,49,49,54,57,52,93,44,91,45,57,57,46,56,56,56,52,52,52,44,51,53,46,48,50,57,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,49,34,44,34,78,65,77,69,34,58,34,72,101,109,112,104,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,54,49,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,52,48,50,50,49,44,51,54,46,48,53,54,52,57,49,93,44,91,45,49,48,48,46,53,52,48,49,53,56,44,51,53,46,54,49,57,50,57,54,93,44,91,45,49,48,48,46,48,48,48,51,57,50,44,51,53,46,54,49,57,49,49,53,93,44,91,45,49,48,48,46,48,48,48,51,57,54,44,51,53,46,56,56,49,50,51,51,93,44,91,45,49,48,48,46,48,48,48,51,57,57,44,51,54,46,48,53,53,54,55,55,93,44,91,45,49,48,48,46,53,52,48,50,50,49,44,51,54,46,48,53,54,52,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,78,101,122,32,80,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,49,53,53,44,34,98,101,100,115,34,58,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,52,53,54,48,57,56,44,52,54,46,54,50,57,48,57,55,93,44,91,45,49,49,54,46,54,49,49,55,52,44,52,54,46,54,51,49,50,52,53,93,44,91,45,49,49,54,46,55,49,57,48,56,53,44,52,54,46,53,52,50,56,55,52,93,44,91,45,49,49,55,46,48,51,57,54,57,52,44,52,54,46,53,52,49,55,48,57,93,44,91,45,49,49,55,46,48,51,57,55,54,54,44,52,54,46,52,50,53,56,56,55,93,44,91,45,49,49,54,46,57,50,49,51,53,44,52,54,46,49,54,52,53,49,52,93,44,91,45,49,49,54,46,57,49,54,48,55,49,44,52,53,46,57,57,53,51,53,55,93,44,91,45,49,49,54,46,55,57,52,53,54,50,44,52,53,46,56,53,54,48,52,57,93,44,91,45,49,49,54,46,55,48,49,56,49,57,44,52,53,46,57,57,54,51,56,49,93,44,91,45,49,49,54,46,55,49,51,52,57,54,44,52,54,46,51,50,53,53,50,55,93,44,91,45,49,49,54,46,51,54,56,56,48,49,44,52,54,46,51,52,51,50,49,55,93,44,91,45,49,49,54,46,51,54,57,49,50,50,44,52,54,46,52,54,54,57,50,51,93,44,91,45,49,49,54,46,52,53,49,55,57,50,44,52,54,46,53,48,48,54,57,56,93,44,91,45,49,49,54,46,52,53,54,48,57,56,44,52,54,46,54,50,57,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,87,97,108,119,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,54,48,50,50,51,44,52,53,46,50,52,54,56,49,93,44,91,45,57,57,46,55,48,56,57,56,55,44,52,53,46,50,52,53,56,54,54,93,44,91,45,57,57,46,55,48,55,55,48,53,44,52,53,46,53,57,51,51,57,49,93,44,91,45,57,57,46,55,49,55,52,54,54,44,52,53,46,53,57,51,52,50,56,93,44,91,45,49,48,48,46,52,51,48,48,55,57,44,52,53,46,53,57,52,56,50,51,93,44,91,45,49,48,48,46,52,56,54,53,54,49,44,52,53,46,53,51,54,53,50,49,93,44,91,45,49,48,48,46,51,52,49,57,50,52,44,52,53,46,52,55,50,57,48,52,93,44,91,45,49,48,48,46,50,55,52,49,55,54,44,52,53,46,51,56,49,56,52,53,93,44,91,45,49,48,48,46,50,54,48,50,50,51,44,52,53,46,50,52,54,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,78,97,112,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,53,51,48,44,34,98,101,100,115,34,58,52,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,51,57,53,48,53,54,44,51,56,46,56,54,52,50,52,53,93,44,91,45,49,50,50,46,52,54,51,56,57,44,51,56,46,55,48,53,50,48,51,93,44,91,45,49,50,50,46,54,50,55,51,57,54,44,51,56,46,54,54,55,53,48,54,93,44,91,45,49,50,50,46,54,52,54,50,54,56,44,51,56,46,53,57,57,49,50,93,44,91,45,49,50,50,46,53,52,51,56,57,51,44,51,56,46,53,49,57,57,54,54,93,44,91,45,49,50,50,46,51,53,57,57,50,52,44,51,56,46,50,51,48,53,48,49,93,44,91,45,49,50,50,46,52,48,54,55,56,54,44,51,56,46,49,53,53,54,51,50,93,44,91,45,49,50,50,46,49,57,53,51,56,44,51,56,46,49,53,53,48,49,55,93,44,91,45,49,50,50,46,50,48,53,57,56,50,44,51,56,46,51,49,53,55,49,51,93,44,91,45,49,50,50,46,48,54,52,55,55,57,44,51,56,46,51,49,53,57,49,50,93,44,91,45,49,50,50,46,49,50,54,51,56,57,44,51,56,46,52,50,56,57,49,56,93,44,91,45,49,50,50,46,49,48,51,50,56,49,44,51,56,46,53,49,51,51,52,56,93,44,91,45,49,50,50,46,50,56,55,57,57,56,44,51,56,46,56,51,57,57,51,49,93,44,91,45,49,50,50,46,51,57,53,48,53,54,44,51,56,46,56,54,52,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,111,116,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,50,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,54,49,57,53,54,44,51,52,46,52,48,53,57,52,56,93,44,91,45,57,56,46,54,48,57,54,54,44,51,52,46,51,51,51,55,50,93,44,91,45,57,56,46,54,48,57,57,56,55,44,51,52,46,49,53,55,49,53,52,93,44,91,45,57,56,46,52,56,54,51,50,56,44,51,52,46,48,54,50,53,57,56,93,44,91,45,57,56,46,52,50,51,53,51,51,44,51,52,46,48,56,50,56,52,51,93,44,91,45,57,56,46,51,54,52,48,50,51,44,51,52,46,49,53,55,49,48,57,93,44,91,45,57,56,46,49,51,57,48,55,50,44,51,52,46,49,52,49,56,55,93,44,91,45,57,56,46,49,51,57,50,50,55,44,51,52,46,50,56,57,56,50,52,93,44,91,45,57,56,46,49,52,50,49,52,56,44,51,52,46,53,48,54,57,57,52,93,44,91,45,57,56,46,50,57,53,57,50,56,44,51,52,46,52,52,57,48,52,51,93,44,91,45,57,56,46,53,48,52,57,53,56,44,51,52,46,52,52,57,52,49,52,93,44,91,45,57,56,46,54,54,49,57,53,54,44,51,52,46,52,48,53,57,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,57,53,55,54,53,44,51,56,46,50,48,52,48,56,51,93,44,91,45,57,49,46,49,48,48,48,49,55,44,51,55,46,55,52,48,48,49,50,93,44,91,45,57,48,46,54,52,53,49,51,53,44,51,55,46,55,51,52,56,49,51,93,44,91,45,57,48,46,54,51,57,57,56,44,51,56,46,48,55,54,53,52,56,93,44,91,45,57,48,46,55,56,48,49,56,53,44,51,56,46,50,48,52,49,49,50,93,44,91,45,57,49,46,48,57,53,55,54,53,44,51,56,46,50,48,52,48,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,97,121,117,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,56,54,56,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,49,51,56,48,54,44,52,51,46,48,50,52,48,51,53,93,44,91,45,55,54,46,55,51,51,52,53,52,44,52,50,46,55,50,55,56,57,53,93,44,91,45,55,54,46,54,54,54,53,52,51,44,52,50,46,54,50,51,52,53,55,93,44,91,45,55,54,46,50,54,53,53,56,52,44,52,50,46,54,50,51,53,56,56,93,44,91,45,55,54,46,50,55,52,54,55,51,44,52,50,46,55,55,49,50,53,55,93,44,91,45,55,54,46,51,53,54,57,55,52,44,52,50,46,56,52,57,52,53,93,44,91,45,55,54,46,52,53,48,55,51,56,44,52,50,46,56,52,53,55,54,93,44,91,45,55,54,46,52,55,57,50,50,52,44,52,51,46,50,50,55,53,49,57,93,44,91,45,55,54,46,54,48,53,48,49,50,44,52,51,46,50,53,51,53,55,93,44,91,45,55,54,46,54,52,52,55,49,50,44,52,51,46,55,48,51,52,54,54,93,44,91,45,55,54,46,55,51,52,55,50,53,44,52,51,46,55,48,56,49,50,49,93,44,91,45,55,54,46,55,53,51,53,51,56,44,52,51,46,54,56,52,50,55,53,93,44,91,45,55,54,46,55,48,50,51,50,53,44,52,51,46,48,56,48,51,57,51,93,44,91,45,55,54,46,55,49,51,56,48,54,44,52,51,46,48,50,52,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,49,55,34,44,34,78,65,77,69,34,58,34,83,104,97,99,107,101,108,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,57,54,48,53,44,51,50,46,53,49,52,55,54,56,93,44,91,45,57,57,46,48,57,54,48,49,54,44,51,50,46,57,53,55,48,51,55,93,44,91,45,57,57,46,52,55,49,50,53,56,44,51,50,46,57,53,55,48,50,53,93,44,91,45,57,57,46,54,49,50,48,48,49,44,51,50,46,57,53,54,57,54,50,93,44,91,45,57,57,46,54,49,50,48,50,54,44,51,50,46,53,49,52,54,53,52,93,44,91,45,57,57,46,49,49,52,50,57,51,44,51,50,46,53,49,52,56,49,49,93,44,91,45,57,57,46,48,57,54,48,53,44,51,50,46,53,49,52,55,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,48,55,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,97,99,105,110,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,50,55,52,56,44,51,48,46,56,53,57,53,52,55,93,44,91,45,57,53,46,51,53,57,49,53,54,44,51,48,46,53,48,52,51,54,57,93,44,91,45,57,53,46,51,48,56,51,57,53,44,51,48,46,52,48,53,55,53,93,44,91,45,57,53,46,49,54,53,56,57,55,44,51,48,46,51,52,52,57,55,54,93,44,91,45,57,52,46,56,52,57,52,49,52,44,51,48,46,52,57,51,53,53,51,93,44,91,45,57,53,46,48,50,52,52,52,51,44,51,48,46,54,54,48,53,48,51,93,44,91,45,57,53,46,49,52,53,52,50,54,44,51,48,46,55,49,51,55,57,57,93,44,91,45,57,53,46,50,48,48,49,56,44,51,48,46,56,50,52,53,54,54,93,44,91,45,57,53,46,51,50,55,52,56,44,51,48,46,56,53,57,53,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,68,117,98,117,113,117,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,56,48,50,44,34,98,101,100,115,34,58,52,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,51,50,55,54,54,44,52,50,46,54,52,53,56,52,52,93,44,91,45,57,49,46,49,51,48,48,55,57,44,52,50,46,50,57,53,55,54,49,93,44,91,45,57,48,46,56,57,56,48,50,44,52,50,46,50,57,53,50,51,54,93,44,91,45,57,48,46,54,54,53,53,53,49,44,52,50,46,50,57,52,54,57,57,93,44,91,45,57,48,46,54,54,53,48,50,57,44,52,50,46,51,56,50,49,53,53,93,44,91,45,57,48,46,52,55,51,55,57,56,44,52,50,46,51,56,49,52,53,56,93,44,91,45,57,48,46,54,52,50,56,52,51,44,52,50,46,53,48,56,52,56,49,93,44,91,45,57,48,46,55,50,48,50,48,57,44,52,50,46,54,52,48,55,53,56,93,44,91,45,57,48,46,56,57,54,57,53,49,44,52,50,46,54,55,53,48,56,50,93,44,91,45,57,49,46,49,51,50,55,54,54,44,52,50,46,54,52,53,56,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,71,111,111,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,53,57,51,50,54,44,51,55,46,55,52,56,53,50,56,93,44,91,45,55,56,46,48,55,50,49,55,52,44,51,55,46,54,53,55,51,56,53,93,44,91,45,55,55,46,56,57,55,50,57,50,44,51,55,46,54,54,56,49,56,49,93,44,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,44,91,45,55,55,46,54,51,48,54,55,44,51,55,46,55,48,53,54,55,51,93,44,91,45,55,55,46,55,57,55,51,48,54,44,51,55,46,55,50,57,51,53,56,93,44,91,45,55,56,46,48,54,50,52,56,49,44,51,55,46,57,48,52,54,56,53,93,44,91,45,55,56,46,49,53,57,51,50,54,44,51,55,46,55,52,56,53,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,83,104,101,114,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,54,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,57,55,54,52,44,51,57,46,53,54,56,49,56,93,44,91,45,49,48,50,46,48,52,55,49,54,49,44,51,57,46,49,51,51,49,52,55,93,44,91,45,49,48,49,46,52,55,56,49,57,53,44,51,57,46,49,51,52,55,54,49,93,44,91,45,49,48,49,46,51,57,49,55,49,55,44,51,57,46,49,51,53,49,49,55,93,44,91,45,49,48,49,46,51,56,57,48,54,56,44,51,57,46,53,54,56,51,54,57,93,44,91,45,49,48,49,46,52,49,51,57,49,51,44,51,57,46,53,54,56,51,54,49,93,44,91,45,49,48,50,46,48,52,57,55,54,52,44,51,57,46,53,54,56,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,51,50,52,44,34,98,101,100,115,34,58,52,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,50,52,55,57,50,44,52,48,46,57,57,53,54,51,56,93,44,91,45,56,50,46,55,50,55,49,54,52,44,52,48,46,55,49,49,50,48,51,93,44,91,45,56,50,46,54,50,55,55,54,55,44,52,48,46,55,48,57,51,53,50,93,44,91,45,56,50,46,54,50,51,54,48,57,44,52,48,46,53,52,57,56,55,57,93,44,91,45,56,50,46,51,51,54,57,54,50,44,52,48,46,53,53,53,48,48,49,93,44,91,45,56,50,46,51,51,57,50,49,49,44,52,48,46,55,50,54,54,56,51,93,44,91,45,56,50,46,52,49,54,56,52,55,44,52,48,46,56,49,52,53,54,55,93,44,91,45,56,50,46,52,51,50,56,53,50,44,52,48,46,57,57,50,57,52,52,93,44,91,45,56,50,46,55,50,52,55,57,50,44,52,48,46,57,57,53,54,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,52,50,55,44,34,98,101,100,115,34,58,51,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,51,53,53,49,55,44,51,57,46,57,52,53,50,50,50,93,44,91,45,57,49,46,52,51,51,55,57,56,44,51,57,46,56,52,49,56,54,53,93,44,91,45,57,49,46,51,54,53,49,50,53,44,51,57,46,55,53,56,55,50,51,93,44,91,45,57,48,46,57,49,53,57,54,49,44,51,57,46,55,53,55,50,93,44,91,45,57,48,46,57,49,54,54,54,57,44,51,57,46,56,52,52,57,50,55,93,44,91,45,57,48,46,57,49,51,52,54,57,44,52,48,46,49,48,52,52,53,53,93,44,91,45,57,48,46,57,49,49,57,54,57,44,52,48,46,49,57,51,48,56,56,93,44,91,45,57,49,46,53,48,53,48,54,49,44,52,48,46,49,57,57,57,50,53,93,44,91,45,57,49,46,52,57,52,56,55,56,44,52,48,46,48,51,54,52,53,51,93,44,91,45,57,49,46,52,51,53,53,49,55,44,51,57,46,57,52,53,50,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,97,109,112,97,105,103,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,49,52,55,54,51,44,52,48,46,50,55,51,52,53,57,93,44,91,45,56,52,46,48,50,50,57,49,57,44,52,48,46,49,56,51,57,52,53,93,44,91,45,56,52,46,48,51,54,48,54,57,44,52,48,46,48,52,48,49,56,50,93,44,91,45,56,51,46,53,49,54,49,53,53,44,52,48,46,48,49,48,49,56,56,93,44,91,45,56,51,46,53,48,51,55,49,52,44,52,48,46,49,49,49,52,54,56,93,44,91,45,56,51,46,53,53,49,51,51,56,44,52,48,46,50,50,57,51,55,93,44,91,45,56,52,46,48,49,52,55,54,51,44,52,48,46,50,55,51,52,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,49,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,51,50,57,56,57,57,44,52,51,46,54,48,48,50,49,52,93,44,91,45,55,50,46,51,55,51,56,44,52,51,46,53,55,57,49,49,57,93,44,91,45,55,50,46,52,51,52,54,52,53,44,52,51,46,50,51,51,51,49,49,93,44,91,45,55,50,46,52,53,50,50,53,49,44,52,51,46,49,54,49,51,53,52,93,44,91,45,55,50,46,49,53,54,54,54,49,44,52,51,46,49,56,49,57,54,56,93,44,91,45,55,50,46,48,51,56,49,52,57,44,52,51,46,49,50,56,56,48,55,93,44,91,45,55,50,46,48,48,57,48,55,52,44,52,51,46,49,56,55,56,56,50,93,44,91,45,55,50,46,48,57,48,49,52,54,44,52,51,46,51,50,50,53,53,51,93,44,91,45,55,49,46,57,51,53,51,49,44,52,51,46,53,50,56,56,56,93,44,91,45,55,50,46,51,50,57,56,57,57,44,52,51,46,54,48,48,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,73,114,111,113,117,111,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,49,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,51,49,57,51,53,44,52,48,46,57,57,55,55,55,55,93,44,91,45,56,56,46,49,49,55,55,56,57,44,52,48,46,52,56,55,56,54,93,44,91,45,56,55,46,57,51,53,51,48,57,44,52,48,46,52,56,53,57,50,51,93,44,91,45,56,55,46,53,50,54,51,54,54,44,52,48,46,52,57,49,50,51,55,93,44,91,45,56,55,46,53,50,54,48,51,49,44,52,48,46,55,51,54,56,56,53,93,44,91,45,56,55,46,53,50,54,50,48,56,44,52,49,46,48,49,48,51,52,49,93,44,91,45,56,56,46,49,51,49,57,51,53,44,52,48,46,57,57,55,55,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,80,111,119,101,115,104,105,101,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,48,53,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,54,53,57,57,57,44,52,49,46,56,54,50,51,55,51,93,44,91,45,57,50,46,55,53,54,53,48,56,44,52,49,46,53,48,56,55,57,52,93,44,91,45,57,50,46,52,49,49,57,57,53,44,52,49,46,53,48,57,53,52,56,93,44,91,45,57,50,46,50,57,55,52,57,52,44,52,49,46,53,48,57,55,57,93,44,91,45,57,50,46,50,57,56,49,54,52,44,52,49,46,56,54,50,55,55,57,93,44,91,45,57,50,46,55,54,53,57,57,57,44,52,49,46,56,54,50,51,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,50,48,56,44,34,98,101,100,115,34,58,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,52,55,55,51,53,44,52,48,46,57,49,52,48,49,54,93,44,91,45,56,49,46,54,56,56,52,57,49,44,52,48,46,57,56,56,53,57,93,44,91,45,56,50,46,49,50,57,51,51,52,44,52,48,46,57,57,49,56,48,55,93,44,91,45,56,50,46,49,50,54,49,57,57,44,52,48,46,54,54,56,50,50,57,93,44,91,45,56,49,46,54,53,48,48,52,53,44,52,48,46,54,54,56,49,49,55,93,44,91,45,56,49,46,54,52,55,55,51,53,44,52,48,46,57,49,52,48,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,51,54,57,44,34,98,101,100,115,34,58,50,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,53,56,54,54,53,44,51,51,46,53,53,48,57,51,51,93,44,91,45,56,52,46,54,48,57,53,52,44,51,51,46,53,48,50,53,49,49,93,44,91,45,56,52,46,53,56,54,48,52,55,44,51,51,46,51,53,55,56,56,53,93,44,91,45,56,52,46,52,57,55,53,50,55,44,51,51,46,50,53,55,52,50,50,93,44,91,45,56,52,46,51,56,56,49,49,56,44,51,51,46,51,53,50,52,54,53,93,44,91,45,56,52,46,51,56,55,55,48,56,44,51,51,46,52,55,55,49,51,57,93,44,91,45,56,52,46,52,53,56,54,54,53,44,51,51,46,53,53,48,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,54,52,50,48,55,44,51,51,46,51,53,53,48,51,93,44,91,45,56,51,46,50,55,52,49,48,56,44,51,51,46,49,56,55,50,51,56,93,44,91,45,56,51,46,48,57,55,54,52,57,44,51,51,46,49,53,49,53,51,54,93,44,91,45,56,51,46,48,53,50,49,57,55,44,51,51,46,48,56,48,54,56,50,93,44,91,45,56,50,46,56,56,56,56,54,54,44,51,51,46,49,51,56,54,48,51,93,44,91,45,56,50,46,55,52,56,51,49,49,44,51,51,46,50,51,56,51,52,56,93,44,91,45,56,50,46,55,53,53,56,52,54,44,51,51,46,50,53,51,52,52,93,44,91,45,56,50,46,56,53,49,57,53,52,44,51,51,46,52,52,51,53,52,51,93,44,91,45,56,51,46,48,49,50,56,53,51,44,51,51,46,52,54,57,49,55,56,93,44,91,45,56,51,46,49,54,52,50,48,55,44,51,51,46,51,53,53,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,57,34,44,34,78,65,77,69,34,58,34,75,101,110,100,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,57,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,50,48,49,52,55,44,51,48,46,49,51,56,50,57,93,44,91,45,57,56,46,57,49,55,55,50,53,44,50,57,46,55,56,49,51,57,56,93,44,91,45,57,56,46,55,55,56,55,56,50,44,50,57,46,55,50,48,49,54,55,93,44,91,45,57,56,46,54,52,54,49,50,52,44,50,57,46,55,52,53,49,56,49,93,44,91,45,57,56,46,52,49,52,48,49,56,44,50,57,46,57,51,55,53,53,55,93,44,91,45,57,56,46,53,56,55,56,57,55,44,51,48,46,49,51,56,57,53,52,93,44,91,45,57,56,46,57,50,48,49,52,55,44,51,48,46,49,51,56,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,54,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,52,52,51,53,48,54,44,52,50,46,51,53,53,48,49,55,93,44,91,45,55,52,46,53,51,55,51,49,44,52,50,46,50,48,49,52,50,52,93,44,91,45,55,52,46,52,53,49,55,49,51,44,52,50,46,49,54,57,50,50,53,93,44,91,45,55,52,46,51,48,55,53,55,49,44,52,50,46,49,49,52,51,52,54,93,44,91,45,55,52,46,48,55,52,55,57,55,44,52,50,46,48,57,54,53,56,57,93,44,91,45,55,52,46,48,48,50,52,53,44,52,50,46,49,55,54,57,57,50,93,44,91,45,55,51,46,57,49,48,54,55,53,44,52,50,46,49,50,55,50,57,51,93,44,91,45,55,51,46,55,56,57,53,48,50,44,52,50,46,50,54,55,55,51,56,93,44,91,45,55,51,46,55,56,51,55,50,49,44,52,50,46,52,54,52,50,51,49,93,44,91,45,55,52,46,50,53,52,51,48,51,44,52,50,46,52,48,56,50,48,55,93,44,91,45,55,52,46,52,52,51,53,48,54,44,52,50,46,51,53,53,48,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,54,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,57,52,52,57,56,44,51,56,46,51,49,49,50,52,50,93,44,91,45,55,56,46,50,50,49,49,48,52,44,51,56,46,50,51,48,48,56,57,93,44,91,45,55,56,46,50,56,56,56,51,55,44,51,56,46,50,55,50,54,53,54,93,44,91,45,55,56,46,51,54,56,55,52,51,44,51,56,46,49,56,52,48,55,52,93,44,91,45,55,56,46,50,48,57,51,56,52,44,51,56,46,49,51,49,49,50,56,93,44,91,45,55,56,46,49,48,49,55,52,56,44,51,56,46,49,53,50,53,54,55,93,44,91,45,55,55,46,57,53,51,54,51,57,44,51,56,46,49,49,56,53,48,49,93,44,91,45,55,55,46,55,48,50,56,52,51,44,51,56,46,51,54,48,56,52,93,44,91,45,55,55,46,57,48,56,57,55,57,44,51,56,46,51,56,49,53,48,51,93,44,91,45,55,56,46,48,57,52,52,57,56,44,51,56,46,51,49,49,50,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,99,67,117,114,116,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,54,54,44,34,98,101,100,115,34,58,55,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,51,55,54,48,52,44,51,52,46,53,48,55,50,57,54,93,44,91,45,57,53,46,48,52,54,55,52,54,44,51,52,46,53,48,55,50,55,54,93,44,91,45,57,53,46,48,52,54,53,56,53,44,51,52,46,50,52,51,55,55,54,93,44,91,45,57,53,46,49,53,49,51,50,51,44,51,52,46,50,52,51,55,51,55,93,44,91,45,57,53,46,49,53,54,53,50,49,44,51,52,46,49,53,54,57,54,53,93,44,91,45,57,53,46,49,53,53,56,56,50,44,51,51,46,57,51,54,53,55,50,93,44,91,45,57,52,46,57,57,56,48,49,57,44,51,51,46,56,54,48,53,48,52,93,44,91,45,57,52,46,56,54,48,54,56,55,44,51,51,46,55,52,49,57,52,53,93,44,91,45,57,52,46,55,52,54,48,57,54,44,51,51,46,55,48,51,48,49,54,93,44,91,45,57,52,46,53,54,52,48,55,54,44,51,51,46,54,50,54,50,54,53,93,44,91,45,57,52,46,52,56,53,56,55,56,44,51,51,46,54,51,55,56,54,53,93,44,91,45,57,52,46,52,55,55,50,57,57,44,51,51,46,57,52,48,57,51,50,93,44,91,45,57,52,46,52,55,48,51,51,49,44,51,52,46,49,57,48,49,56,51,93,44,91,45,57,52,46,52,54,49,49,52,57,44,51,52,46,53,48,55,52,53,55,93,44,91,45,57,52,46,57,51,55,54,48,52,44,51,52,46,53,48,55,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,55,34,44,34,78,65,77,69,34,58,34,84,105,102,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,49,48,44,34,98,101,100,115,34,58,49,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,52,57,51,56,52,44,51,49,46,53,54,55,57,55,55,93,44,91,45,56,51,46,54,53,52,48,57,44,51,49,46,51,51,48,54,54,49,93,44,91,45,56,51,46,53,49,50,54,48,55,44,51,49,46,51,50,55,52,48,53,93,44,91,45,56,51,46,52,51,52,52,57,50,44,51,49,46,51,53,48,51,54,49,93,44,91,45,56,51,46,51,51,56,55,50,56,44,51,49,46,52,55,53,57,57,49,93,44,91,45,56,51,46,53,48,48,55,48,50,44,51,49,46,53,57,51,57,57,93,44,91,45,56,51,46,54,52,57,51,56,52,44,51,49,46,53,54,55,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,55,57,52,56,55,44,52,49,46,48,53,51,50,57,57,93,44,91,45,57,54,46,48,53,54,50,53,54,44,52,49,46,48,54,53,51,53,54,93,44,91,45,57,54,46,50,48,55,54,52,56,44,52,48,46,57,57,53,54,50,56,93,44,91,45,57,54,46,51,49,57,49,57,49,44,52,49,46,48,52,52,57,57,56,93,44,91,45,57,54,46,52,54,51,56,54,49,44,52,49,46,48,49,54,48,54,57,93,44,91,45,57,54,46,52,54,51,55,54,52,44,52,48,46,55,56,51,57,54,93,44,91,45,57,53,46,56,51,52,49,50,44,52,48,46,55,56,51,55,56,51,93,44,91,45,57,53,46,56,49,51,52,54,53,44,52,48,46,57,48,49,54,57,51,93,44,91,45,57,53,46,56,55,57,52,56,55,44,52,49,46,48,53,51,50,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,75,105,110,103,115,98,117,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,54,55,44,34,98,101,100,115,34,58,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,53,51,48,50,56,44,52,52,46,53,52,52,51,57,56,93,44,91,45,57,55,46,56,53,51,54,54,44,52,52,46,49,57,53,50,51,51,93,44,91,45,57,55,46,56,52,57,52,57,50,44,52,52,46,49,57,53,50,51,53,93,44,91,45,57,55,46,51,55,48,49,49,53,44,52,52,46,49,57,52,57,55,49,93,44,91,45,57,55,46,49,50,57,54,55,49,44,52,52,46,49,57,53,57,51,51,93,44,91,45,57,55,46,49,50,56,48,50,52,44,52,52,46,53,52,51,49,50,54,93,44,91,45,57,55,46,52,57,50,50,54,54,44,52,52,46,53,52,51,56,56,52,93,44,91,45,57,55,46,56,53,51,48,50,56,44,52,52,46,53,52,52,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,111,110,118,101,114,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,57,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,55,51,52,48,51,44,52,50,46,52,51,51,50,51,54,93,44,91,45,49,48,53,46,53,53,54,48,52,50,44,52,50,46,52,51,48,53,56,51,93,44,91,45,49,48,53,46,54,49,51,56,54,53,44,52,50,46,51,48,52,52,53,53,93,44,91,45,49,48,53,46,51,55,53,53,52,49,44,52,50,46,50,57,48,49,51,57,93,44,91,45,49,48,53,46,50,56,51,57,49,44,52,50,46,52,51,49,52,48,50,93,44,91,45,49,48,53,46,50,56,54,53,49,49,44,52,50,46,54,48,53,56,50,54,93,44,91,45,49,48,52,46,56,57,50,52,51,55,44,52,50,46,54,48,56,57,51,57,93,44,91,45,49,48,52,46,56,57,57,57,52,49,44,52,51,46,52,57,57,54,52,93,44,91,45,49,48,53,46,48,55,57,55,57,55,44,52,51,46,52,57,56,52,52,53,93,44,91,45,49,48,54,46,48,49,55,51,54,54,44,52,51,46,52,57,52,57,54,57,93,44,91,45,49,48,54,46,48,55,56,48,54,56,44,52,51,46,52,57,52,52,55,49,93,44,91,45,49,48,54,46,48,55,53,56,53,50,44,52,50,46,52,51,51,50,49,56,93,44,91,45,49,48,54,46,48,55,51,52,48,51,44,52,50,46,52,51,51,50,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,72,101,114,107,105,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,53,48,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,49,49,48,49,54,44,52,51,46,54,49,53,50,50,57,93,44,91,45,55,53,46,48,54,57,49,54,53,44,52,51,46,50,50,55,51,51,51,93,44,91,45,55,53,46,50,49,57,49,48,54,44,52,51,46,48,53,50,52,54,57,93,44,91,45,55,53,46,50,49,50,49,53,56,44,52,50,46,56,55,57,57,55,51,93,44,91,45,55,53,46,49,48,48,57,57,57,44,52,50,46,57,48,56,51,54,51,93,44,91,45,55,52,46,57,48,54,55,51,56,44,52,50,46,56,50,52,57,52,51,93,44,91,45,55,52,46,55,54,51,51,48,51,44,52,50,46,56,54,51,50,51,55,93,44,91,45,55,52,46,55,53,57,56,57,53,44,52,51,46,48,52,55,52,50,51,93,44,91,45,55,52,46,54,57,54,55,56,55,44,52,51,46,49,56,51,49,49,54,93,44,91,45,55,52,46,55,49,50,54,49,53,44,52,51,46,50,56,54,49,52,51,93,44,91,45,55,52,46,56,54,55,55,49,50,44,52,51,46,51,51,57,56,50,54,93,44,91,45,55,52,46,55,55,53,54,49,55,44,52,51,46,52,56,54,54,55,55,93,44,91,45,55,52,46,56,53,52,49,55,49,44,52,52,46,48,55,48,48,56,57,93,44,91,45,55,53,46,48,54,50,55,55,57,44,52,52,46,48,53,48,52,93,44,91,45,55,53,46,49,55,48,49,53,57,44,52,52,46,48,57,54,57,53,57,93,44,91,45,55,53,46,49,49,48,49,54,44,52,51,46,54,49,53,50,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,52,57,55,50,44,52,54,46,54,51,49,54,51,93,44,91,45,57,57,46,57,49,53,53,56,54,44,52,54,46,54,51,50,57,50,54,93,44,91,45,57,57,46,57,49,54,55,53,56,44,52,54,46,50,56,51,49,55,49,93,44,91,45,57,57,46,56,55,56,51,53,52,44,52,54,46,50,56,50,56,50,57,93,44,91,45,57,57,46,48,51,55,50,56,57,44,52,54,46,50,56,50,56,55,49,93,44,91,45,57,57,46,48,51,54,54,50,53,44,52,54,46,54,51,48,50,49,49,93,44,91,45,57,57,46,52,52,57,55,50,44,52,54,46,54,51,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,111,103,101,98,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,49,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,54,57,54,50,50,44,52,54,46,55,57,56,49,56,50,93,44,91,45,57,48,46,52,49,56,51,57,50,44,52,54,46,53,54,54,48,57,57,93,44,91,45,57,48,46,50,49,54,49,55,50,44,52,54,46,53,48,49,50,55,50,93,44,91,45,57,48,46,49,50,48,53,55,50,44,52,54,46,51,51,55,48,51,57,93,44,91,45,56,57,46,57,50,57,49,53,56,44,52,54,46,50,57,57,55,52,56,93,44,91,45,56,57,46,48,57,49,54,51,56,44,52,54,46,49,51,56,52,52,55,93,44,91,45,56,56,46,57,57,48,56,54,52,44,52,54,46,48,57,55,51,56,49,93,44,91,45,56,56,46,57,57,49,48,49,50,44,52,54,46,51,51,50,51,48,56,93,44,91,45,56,57,46,51,54,53,53,48,55,44,52,54,46,51,51,51,48,55,56,93,44,91,45,56,57,46,51,54,53,48,57,52,44,52,54,46,53,48,53,57,52,57,93,44,91,45,56,57,46,55,52,48,53,54,56,44,52,54,46,53,48,53,54,52,50,93,44,91,45,56,57,46,56,54,52,52,50,44,52,54,46,53,57,50,54,52,51,93,44,91,45,56,57,46,56,54,51,55,57,51,44,52,54,46,55,54,53,52,48,53,93,44,91,45,57,48,46,48,48,48,49,55,49,44,52,54,46,55,54,53,53,50,57,93,44,91,45,57,48,46,48,48,48,49,54,49,44,52,54,46,57,57,57,57,51,55,93,44,91,45,57,48,46,49,49,49,54,56,57,44,52,55,46,48,52,49,57,54,52,93,44,91,45,57,48,46,50,54,57,54,50,50,44,52,54,46,55,57,56,49,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,101,99,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,55,55,51,44,34,98,101,100,115,34,58,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,49,57,52,54,55,49,44,52,55,46,49,53,49,49,52,57,93,44,91,45,57,54,46,49,55,52,53,56,55,44,52,54,46,55,49,55,56,53,52,93,44,91,45,57,53,46,49,54,51,55,49,44,52,54,46,55,49,55,54,52,93,44,91,45,57,53,46,49,54,51,48,49,44,52,54,46,56,48,52,55,50,93,44,91,45,57,53,46,49,54,57,49,55,50,44,52,55,46,49,53,50,53,49,53,93,44,91,45,57,53,46,53,53,49,49,56,54,44,52,55,46,49,53,49,52,53,51,93,44,91,45,57,54,46,48,54,55,48,54,57,44,52,55,46,49,53,49,56,49,51,93,44,91,45,57,54,46,49,57,52,54,55,49,44,52,55,46,49,53,49,49,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,49,52,53,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,53,48,49,54,54,44,51,52,46,53,52,53,57,54,51,93,44,91,45,56,54,46,53,56,49,57,51,54,44,51,52,46,51,48,52,54,57,52,93,44,91,45,56,54,46,52,53,51,48,50,44,51,52,46,50,53,57,51,49,55,93,44,91,45,56,54,46,51,48,51,53,49,54,44,51,52,46,48,57,57,48,55,51,93,44,91,45,56,54,46,49,48,54,48,56,54,44,51,52,46,50,48,48,55,53,54,93,44,91,45,56,54,46,49,49,48,51,54,50,44,51,52,46,52,50,55,55,57,55,93,44,91,45,56,54,46,48,53,55,55,49,50,44,51,52,46,52,55,53,57,57,52,93,44,91,45,56,54,46,49,52,57,56,48,54,44,51,52,46,53,51,51,54,51,51,93,44,91,45,56,54,46,49,52,56,52,54,52,44,51,52,46,53,57,57,48,54,57,93,44,91,45,56,54,46,51,50,54,56,53,51,44,51,52,46,53,57,57,52,48,51,93,44,91,45,56,54,46,51,49,49,49,56,55,44,51,52,46,53,51,57,50,55,55,93,44,91,45,56,54,46,52,50,53,52,56,50,44,51,52,46,52,55,57,50,55,55,93,44,91,45,56,54,46,53,53,48,49,54,54,44,51,52,46,53,52,53,57,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,48,52,51,49,55,44,51,54,46,50,55,48,51,55,56,93,44,91,45,56,51,46,57,52,49,55,49,49,44,51,54,46,49,56,54,51,55,56,93,44,91,45,56,51,46,55,51,50,55,48,52,44,51,54,46,49,54,52,53,56,51,93,44,91,45,56,51,46,54,54,55,52,48,56,44,51,54,46,51,52,52,51,56,49,93,44,91,45,56,51,46,57,48,53,54,51,56,44,51,54,46,52,49,57,57,55,57,93,44,91,45,56,52,46,48,48,52,51,49,55,44,51,54,46,50,55,48,51,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,77,105,110,101,114,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,55,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,53,55,48,55,51,44,51,57,46,53,51,53,49,52,49,93,44,91,45,55,56,46,55,57,53,50,54,56,44,51,57,46,54,49,48,55,93,44,91,45,55,56,46,57,53,55,51,48,49,44,51,57,46,52,52,48,48,57,53,93,44,91,45,55,57,46,48,54,55,53,53,57,44,51,57,46,52,55,57,52,52,51,93,44,91,45,55,57,46,50,55,49,54,57,53,44,51,57,46,51,50,55,57,57,57,93,44,91,45,55,57,46,49,51,52,52,53,54,44,51,57,46,51,49,50,53,48,49,93,44,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,44,91,45,55,56,46,56,53,48,55,50,51,44,51,57,46,51,51,49,48,57,51,93,44,91,45,55,56,46,54,53,55,48,55,51,44,51,57,46,53,51,53,49,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,115,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,49,50,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,56,54,55,51,49,56,44,52,55,46,50,49,48,57,54,50,93,44,91,45,57,48,46,55,51,51,55,53,54,44,52,54,46,56,56,54,56,57,53,93,44,91,45,57,48,46,56,51,56,50,55,54,44,52,54,46,55,51,57,57,57,50,93,44,91,45,57,48,46,56,51,48,50,49,54,44,52,54,46,54,54,51,52,55,50,93,44,91,45,57,48,46,57,50,55,48,53,55,44,52,54,46,53,56,53,52,49,53,93,44,91,45,57,48,46,57,50,52,53,56,51,44,52,54,46,49,53,52,54,49,54,93,44,91,45,57,48,46,57,50,53,49,55,52,44,52,53,46,57,56,49,48,53,53,93,44,91,45,57,48,46,54,55,54,57,54,56,44,52,53,46,57,56,49,53,53,52,93,44,91,45,57,48,46,51,48,50,48,54,51,44,52,53,46,57,56,49,51,52,57,93,44,91,45,57,48,46,51,48,51,48,55,50,44,52,54,46,49,53,52,56,52,57,93,44,91,45,57,48,46,52,50,53,57,55,56,44,52,54,46,50,52,48,52,53,93,44,91,45,57,48,46,53,53,50,50,50,55,44,52,54,46,50,52,48,56,53,49,93,44,91,45,57,48,46,53,52,57,56,56,44,52,54,46,53,56,51,53,53,50,93,44,91,45,57,48,46,52,52,56,57,53,54,44,52,54,46,55,57,55,52,48,49,93,44,91,45,57,48,46,50,54,57,54,50,50,44,52,54,46,55,57,56,49,56,50,93,44,91,45,57,48,46,49,49,49,54,56,57,44,52,55,46,48,52,49,57,54,52,93,44,91,45,56,57,46,57,53,55,49,48,50,44,52,55,46,50,57,49,49,48,51,93,44,91,45,57,48,46,54,53,52,54,54,44,52,55,46,51,48,57,56,50,50,93,44,91,45,57,48,46,55,57,53,49,56,57,44,52,55,46,50,52,52,50,57,57,93,44,91,45,57,48,46,56,54,55,51,49,56,44,52,55,46,50,49,48,57,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,70,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,57,56,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,52,55,51,44,52,48,46,57,57,52,53,54,93,44,91,45,56,56,46,50,51,52,57,53,44,52,48,46,54,49,56,50,48,56,93,44,91,45,56,56,46,52,53,57,52,55,53,44,52,48,46,54,49,55,51,52,53,93,44,91,45,56,56,46,52,53,57,57,53,55,44,52,48,46,51,57,56,56,53,93,44,91,45,56,55,46,57,51,50,51,56,55,44,52,48,46,51,57,57,52,93,44,91,45,56,55,46,57,51,53,51,48,57,44,52,48,46,52,56,53,57,50,51,93,44,91,45,56,56,46,49,49,55,55,56,57,44,52,48,46,52,56,55,56,54,93,44,91,45,56,56,46,49,51,49,57,51,53,44,52,48,46,57,57,55,55,55,55,93,44,91,45,56,56,46,50,52,55,51,44,52,48,46,57,57,52,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,69,109,109,111,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,50,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,57,48,49,57,57,44,52,54,46,52,50,55,56,57,52,93,44,91,45,49,48,48,46,53,53,56,53,52,57,44,52,54,46,50,52,57,57,57,51,93,44,91,45,49,48,48,46,54,50,57,49,52,53,44,52,54,46,49,52,53,54,48,56,93,44,91,45,49,48,48,46,53,49,49,57,52,57,44,52,53,46,57,52,51,55,49,50,93,44,91,45,49,48,48,46,52,57,57,51,55,49,44,52,53,46,57,52,51,54,53,51,93,44,91,45,57,57,46,56,56,48,48,54,44,52,53,46,57,52,49,52,50,51,93,44,91,45,57,57,46,56,55,56,51,53,52,44,52,54,46,50,56,50,56,50,57,93,44,91,45,57,57,46,57,49,54,55,53,56,44,52,54,46,50,56,51,49,55,49,93,44,91,45,57,57,46,57,49,53,53,56,54,44,52,54,46,54,51,50,57,50,54,93,44,91,45,49,48,48,46,48,56,49,49,57,56,44,52,54,46,54,51,51,51,57,54,93,44,91,45,49,48,48,46,54,54,50,48,49,53,44,52,54,46,54,51,52,54,93,44,91,45,49,48,48,46,53,52,52,53,53,53,44,52,54,46,53,51,51,55,54,54,93,44,91,45,49,48,48,46,53,57,48,49,57,57,44,52,54,46,52,50,55,56,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,104,97,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,48,56,53,44,34,98,101,100,115,34,58,53,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,52,57,56,51,55,54,44,52,49,46,49,56,50,54,55,53,93,44,91,45,49,50,50,46,53,50,55,55,53,51,44,52,49,46,48,49,52,51,57,53,93,44,91,45,49,50,50,46,53,57,56,53,50,56,44,52,48,46,57,55,53,56,52,55,93,44,91,45,49,50,50,46,54,54,57,56,51,57,44,52,48,46,55,55,51,53,54,55,93,44,91,45,49,50,50,46,55,53,50,48,50,51,44,52,48,46,54,56,57,56,56,50,93,44,91,45,49,50,50,46,54,57,51,48,57,57,44,52,48,46,53,56,48,55,52,55,93,44,91,45,49,50,50,46,57,51,49,50,54,55,44,52,48,46,52,52,53,53,53,55,93,44,91,45,49,50,51,46,48,54,53,52,50,54,44,52,48,46,50,56,54,57,55,49,93,44,91,45,49,50,50,46,55,52,56,54,48,56,44,52,48,46,51,54,53,54,57,52,93,44,91,45,49,50,50,46,54,53,48,50,54,51,44,52,48,46,51,50,56,54,51,93,44,91,45,49,50,50,46,53,49,57,57,56,56,44,52,48,46,51,57,51,54,55,53,93,44,91,45,49,50,50,46,51,49,48,52,49,50,44,52,48,46,51,55,49,48,54,52,93,44,91,45,49,50,50,46,48,49,48,51,49,54,44,52,48,46,52,50,54,53,53,56,93,44,91,45,49,50,49,46,54,56,53,54,55,57,44,52,48,46,52,53,51,49,50,49,93,44,91,45,49,50,49,46,52,57,55,54,51,53,44,52,48,46,52,52,53,53,57,49,93,44,91,45,49,50,49,46,51,50,55,56,50,54,44,52,48,46,52,52,53,51,54,55,93,44,91,45,49,50,49,46,51,50,49,49,56,54,44,52,48,46,56,56,56,55,48,50,93,44,91,45,49,50,49,46,51,51,49,55,56,54,44,52,49,46,49,56,51,56,56,54,93,44,91,45,49,50,49,46,52,52,54,52,57,53,44,52,49,46,49,56,51,52,56,52,93,44,91,45,49,50,50,46,52,57,56,51,55,54,44,52,49,46,49,56,50,54,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,86,101,114,109,105,108,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,56,54,55,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,56,52,54,55,53,44,51,48,46,49,52,55,52,52,51,93,44,91,45,57,50,46,52,50,54,48,51,57,44,51,48,46,48,52,57,51,54,57,93,44,91,45,57,50,46,53,51,52,54,51,56,44,51,48,46,49,48,55,56,53,50,93,44,91,45,57,50,46,54,50,53,52,56,52,44,51,48,46,48,57,50,51,51,93,44,91,45,57,50,46,55,51,56,54,48,52,44,51,48,46,48,51,55,51,50,51,93,44,91,45,57,50,46,54,49,53,54,49,44,51,48,46,48,51,56,49,54,56,93,44,91,45,57,50,46,54,49,55,51,48,54,44,50,57,46,53,50,55,49,50,57,93,44,91,45,57,50,46,50,57,51,54,55,44,50,57,46,52,56,49,52,57,54,93,44,91,45,57,50,46,49,52,54,54,54,54,44,50,57,46,53,51,50,48,51,55,93,44,91,45,57,50,46,48,52,53,54,49,54,44,50,57,46,53,48,53,56,48,54,93,44,91,45,57,49,46,57,55,57,57,48,56,44,50,57,46,54,53,48,49,50,56,93,44,91,45,57,49,46,57,57,48,51,57,54,44,50,57,46,57,55,48,51,50,54,93,44,91,45,57,49,46,57,54,52,52,53,56,44,51,48,46,48,51,54,57,49,56,93,44,91,45,57,50,46,50,48,50,55,50,50,44,51,48,46,49,52,50,56,54,93,44,91,45,57,50,46,50,56,52,54,55,53,44,51,48,46,49,52,55,52,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,48,51,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,48,55,49,51,56,44,51,54,46,52,57,55,48,56,49,93,44,91,45,57,49,46,50,55,52,57,52,44,51,54,46,51,55,52,49,50,93,44,91,45,57,49,46,50,53,56,57,50,44,51,54,46,50,53,55,56,56,93,44,91,45,57,49,46,49,49,57,54,50,53,44,51,54,46,49,53,51,54,55,49,93,44,91,45,57,48,46,56,48,57,56,49,54,44,51,54,46,49,52,57,53,54,55,93,44,91,45,57,48,46,56,48,54,54,49,53,44,51,54,46,50,54,54,56,54,53,93,44,91,45,57,48,46,55,53,49,56,49,44,51,54,46,50,56,51,56,51,54,93,44,91,45,57,48,46,55,56,52,52,50,52,44,51,54,46,52,57,56,53,51,52,93,44,91,45,57,49,46,49,50,54,53,50,57,44,51,54,46,52,57,55,55,49,50,93,44,91,45,57,49,46,52,48,55,49,51,56,44,51,54,46,52,57,55,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,79,110,101,105,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,52,53,44,34,98,101,100,115,34,58,49,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,52,51,52,49,52,44,52,53,46,53,53,53,48,56,50,93,44,91,45,56,57,46,52,50,56,50,53,56,44,52,53,46,53,53,53,51,53,51,93,44,91,45,56,57,46,52,50,52,56,50,52,44,52,53,46,52,54,55,49,54,54,93,44,91,45,56,57,46,48,52,54,52,57,44,52,53,46,52,54,52,52,51,57,93,44,91,45,56,57,46,48,52,55,54,48,49,44,52,53,46,56,57,53,51,53,53,93,44,91,45,57,48,46,48,52,50,56,53,55,44,52,53,46,56,57,55,50,54,51,93,44,91,45,57,48,46,48,52,51,52,49,52,44,52,53,46,53,53,53,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,69,97,115,116,32,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,53,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,54,53,48,49,56,44,51,51,46,48,48,53,48,56,51,93,44,91,45,57,49,46,51,51,53,52,54,51,44,51,50,46,56,54,54,49,48,52,93,44,91,45,57,49,46,51,52,52,56,52,53,44,51,50,46,55,53,54,54,53,57,93,44,91,45,57,49,46,52,52,53,50,57,57,44,51,50,46,53,56,49,57,53,54,93,44,91,45,57,49,46,52,53,55,54,52,51,44,51,50,46,53,51,55,56,48,55,93,44,91,45,57,49,46,49,51,51,55,49,51,44,51,50,46,53,51,55,57,49,50,93,44,91,45,57,49,46,48,54,57,55,57,50,44,51,50,46,53,54,50,56,48,51,93,44,91,45,57,49,46,48,52,51,53,53,50,44,51,50,46,53,55,54,50,55,49,93,44,91,45,57,49,46,49,53,50,54,57,57,44,51,50,46,54,52,48,55,53,55,93,44,91,45,57,49,46,49,52,51,53,53,57,44,51,50,46,56,52,52,55,51,56,93,44,91,45,57,49,46,50,49,50,56,51,55,44,51,50,46,57,50,50,49,48,51,93,44,91,45,57,49,46,49,54,54,48,55,51,44,51,51,46,48,48,52,49,48,54,93,44,91,45,57,49,46,50,54,53,48,49,56,44,51,51,46,48,48,53,48,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,69,97,115,116,32,70,101,108,105,99,105,97,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,57,57,44,34,98,101,100,115,34,58,54,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,55,54,49,52,44,51,48,46,57,57,57,48,56,93,44,91,45,57,49,46,50,52,48,52,57,52,44,51,48,46,55,56,55,49,54,51,93,44,91,45,57,49,46,51,49,48,48,54,49,44,51,48,46,54,53,51,57,54,49,93,44,91,45,57,49,46,50,57,55,54,53,56,44,51,48,46,54,52,57,53,52,56,93,44,91,45,57,49,46,50,53,52,52,49,57,44,51,48,46,55,48,53,50,57,52,93,44,91,45,57,48,46,56,52,57,48,52,49,44,51,48,46,55,49,57,51,49,49,93,44,91,45,57,48,46,56,54,49,48,49,57,44,51,48,46,57,51,53,51,55,51,93,44,91,45,57,48,46,56,50,53,56,50,57,44,51,48,46,57,57,57,51,54,49,93,44,91,45,57,49,46,48,54,48,50,49,57,44,51,48,46,57,57,56,57,50,55,93,44,91,45,57,49,46,49,55,54,49,52,44,51,48,46,57,57,57,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,66,101,114,110,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,57,52,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,50,53,48,53,52,44,51,48,46,49,53,51,52,57,51,93,44,91,45,56,57,46,54,56,51,50,51,44,51,48,46,48,55,54,52,48,54,93,44,91,45,56,57,46,56,56,49,53,57,57,44,50,57,46,57,56,54,50,93,44,91,45,56,57,46,57,49,48,55,48,56,44,50,57,46,56,54,55,56,54,53,93,44,91,45,56,57,46,56,54,57,55,50,44,50,57,46,55,57,53,52,53,49,93,44,91,45,56,57,46,55,50,49,48,52,53,44,50,57,46,55,53,55,54,53,50,93,44,91,45,56,57,46,52,56,52,53,57,49,44,50,57,46,54,49,55,53,53,49,93,44,91,45,56,56,46,56,55,57,50,51,53,44,50,57,46,54,52,55,52,48,57,93,44,91,45,56,56,46,56,48,49,56,49,55,44,50,57,46,55,53,48,49,57,55,93,44,91,45,56,56,46,55,53,56,51,56,56,44,50,57,46,57,49,56,50,55,49,93,44,91,45,56,56,46,55,56,51,54,54,54,44,51,48,46,48,50,54,54,56,53,93,44,91,45,56,56,46,56,56,57,48,51,44,51,48,46,49,51,57,56,52,53,93,44,91,45,56,57,46,48,57,54,52,55,54,44,51,48,46,49,54,53,56,50,57,93,44,91,45,56,57,46,49,56,51,54,54,57,44,51,48,46,50,49,50,49,53,53,93,44,91,45,56,57,46,51,48,54,49,51,53,44,51,48,46,49,55,55,57,52,49,93,44,91,45,56,57,46,52,57,52,57,55,51,44,51,48,46,49,54,48,55,53,93,44,91,45,56,57,46,54,50,53,48,53,52,44,51,48,46,49,53,51,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,56,49,34,44,34,78,65,77,69,34,58,34,87,104,97,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,53,53,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,49,55,53,52,50,50,44,50,57,46,54,51,51,56,48,54,93,44,91,45,57,54,46,51,48,55,54,55,50,44,50,57,46,53,49,52,53,50,51,93,44,91,45,57,54,46,51,52,57,50,49,55,44,50,57,46,52,48,54,48,53,50,93,44,91,45,57,54,46,54,52,48,51,49,53,44,50,57,46,50,52,55,56,48,52,93,44,91,45,57,54,46,51,48,57,49,55,56,44,50,56,46,57,54,51,50,57,49,93,44,91,45,57,53,46,57,54,53,49,57,54,44,50,57,46,49,52,54,56,54,53,93,44,91,45,57,53,46,56,55,52,48,50,56,44,50,57,46,50,50,57,55,48,50,93,44,91,45,57,53,46,56,52,55,54,53,54,44,50,57,46,50,54,50,53,57,93,44,91,45,57,53,46,57,53,48,54,52,51,44,50,57,46,51,51,54,53,55,55,93,44,91,45,57,54,46,48,54,48,54,55,54,44,50,57,46,52,55,54,52,55,51,93,44,91,45,57,54,46,48,56,56,57,49,50,44,50,57,46,54,48,49,54,53,56,93,44,91,45,57,54,46,49,55,53,52,50,50,44,50,57,46,54,51,51,56,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,57,56,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,56,34,44,34,78,65,77,69,34,58,34,80,114,105,110,99,101,32,111,102,32,87,97,108,101,115,45,72,121,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,55,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,51,49,46,55,54,50,51,51,57,44,53,52,46,54,56,54,56,52,93,44,91,45,49,51,49,46,55,57,52,50,56,55,44,53,52,46,57,52,52,48,49,55,93,44,91,45,49,51,49,46,53,49,48,54,54,44,53,53,46,48,49,54,51,54,54,93,44,91,45,49,51,49,46,51,51,54,57,56,51,44,53,52,46,57,57,53,53,51,52,93,44,91,45,49,51,49,46,50,51,57,53,53,52,44,53,53,46,49,54,57,54,56,51,93,44,91,45,49,51,49,46,52,56,54,55,53,54,44,53,53,46,50,55,54,49,56,51,93,44,91,45,49,51,49,46,54,48,57,50,53,51,44,53,53,46,50,56,50,48,49,51,93,44,91,45,49,51,49,46,54,56,53,51,55,55,44,53,53,46,49,49,52,52,53,56,93,44,91,45,49,51,49,46,56,53,53,48,48,51,44,53,53,46,48,56,56,54,49,53,93,44,91,45,49,51,49,46,57,52,49,51,54,52,44,53,53,46,51,49,50,56,50,54,93,44,91,45,49,51,50,46,48,51,55,48,48,54,44,53,53,46,52,54,53,50,52,54,93,44,91,45,49,51,50,46,50,50,53,57,55,57,44,53,53,46,53,54,53,56,49,50,93,44,91,45,49,51,50,46,49,57,57,55,52,57,44,53,53,46,54,51,51,56,51,52,93,44,91,45,49,51,50,46,51,53,53,56,54,52,44,53,53,46,55,57,53,55,56,49,93,44,91,45,49,51,51,46,48,48,55,55,50,55,44,53,54,46,49,51,52,56,55,51,93,44,91,45,49,51,51,46,48,52,50,54,57,44,53,54,46,50,52,57,54,54,93,44,91,45,49,51,51,46,49,54,57,48,55,57,44,53,54,46,51,53,53,48,57,51,93,44,91,45,49,51,51,46,52,49,55,52,54,49,44,53,54,46,51,57,52,54,48,54,93,44,91,45,49,51,51,46,52,50,54,56,57,44,53,54,46,54,49,56,53,51,56,93,44,91,45,49,51,51,46,52,56,51,56,54,54,44,53,54,46,54,53,49,54,48,50,93,44,91,45,49,51,51,46,52,56,54,54,49,53,44,53,54,46,56,54,54,51,57,56,93,44,91,45,49,51,51,46,50,55,52,48,49,50,44,53,54,46,57,50,49,56,49,53,93,44,91,45,49,51,51,46,51,50,52,57,57,57,44,53,55,46,48,54,51,54,49,49,93,44,91,45,49,51,51,46,54,53,56,50,50,50,44,53,55,46,49,54,50,52,57,51,93,44,91,45,49,51,52,46,48,54,51,49,52,53,44,53,55,46,49,53,54,50,56,54,93,44,91,45,49,51,52,46,51,51,53,51,49,57,44,53,54,46,57,54,55,53,51,57,93,44,91,45,49,51,52,46,53,54,57,50,56,57,44,53,54,46,56,54,51,48,53,50,93,44,91,45,49,51,52,46,52,57,54,50,49,54,44,53,54,46,54,57,57,54,51,49,93,44,91,45,49,51,52,46,52,50,57,50,52,55,44,53,54,46,50,56,50,55,51,55,93,44,91,45,49,51,52,46,54,54,54,54,54,56,44,53,54,46,50,56,51,51,51,52,93,44,91,45,49,51,52,46,54,54,54,51,57,54,44,53,54,46,49,52,55,53,56,54,93,44,91,45,49,51,52,46,52,57,52,49,55,51,44,53,53,46,57,57,57,54,51,56,93,44,91,45,49,51,52,46,54,52,53,54,56,53,44,53,53,46,56,55,49,52,55,50,93,44,91,45,49,51,52,46,53,54,57,51,55,44,53,53,46,56,48,52,48,49,93,44,91,45,49,51,52,46,49,57,50,48,50,55,44,53,53,46,54,57,51,48,53,51,93,44,91,45,49,51,52,46,48,52,54,54,48,57,44,53,53,46,56,53,48,52,55,55,93,44,91,45,49,51,51,46,56,56,53,57,44,53,53,46,55,56,48,50,51,53,93,44,91,45,49,51,51,46,55,57,56,50,52,54,44,53,53,46,54,51,51,50,51,49,93,44,91,45,49,51,51,46,56,55,51,57,49,55,44,53,53,46,51,57,56,56,52,93,44,91,45,49,51,51,46,54,49,51,54,54,44,53,53,46,49,55,48,50,54,53,93,44,91,45,49,51,51,46,55,57,48,53,50,56,44,53,53,46,48,48,48,53,56,49,93,44,91,45,49,51,51,46,54,52,56,57,48,51,44,53,52,46,54,51,50,48,52,53,93,44,91,45,49,51,49,46,55,54,50,51,51,57,44,53,52,46,54,56,54,56,52,93,93,93,44,91,91,91,45,49,51,48,46,50,52,54,55,54,55,44,53,54,46,48,57,54,53,56,49,93,44,91,45,49,51,48,46,51,56,56,54,48,54,44,53,53,46,57,52,51,49,55,57,93,44,91,45,49,51,48,46,49,53,49,53,55,55,44,53,53,46,55,54,55,52,50,56,93,44,91,45,49,51,48,46,48,49,55,54,55,57,44,53,53,46,57,49,49,57,52,53,93,44,91,45,49,51,48,46,48,48,51,52,56,53,44,53,54,46,48,48,56,48,55,53,93,44,91,45,49,51,48,46,49,48,51,55,57,56,44,53,54,46,49,50,50,55,57,56,93,44,91,45,49,51,48,46,50,52,54,55,54,55,44,53,54,46,48,57,54,53,56,49,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,80,101,116,101,114,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,53,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,44,91,45,49,51,51,46,55,51,56,54,49,49,44,53,55,46,49,56,54,51,52,56,93,44,91,45,49,51,51,46,54,53,56,50,50,50,44,53,55,46,49,54,50,52,57,51,93,44,91,45,49,51,51,46,51,50,52,57,57,57,44,53,55,46,48,54,51,54,49,49,93,44,91,45,49,51,51,46,50,55,52,48,49,50,44,53,54,46,57,50,49,56,49,53,93,44,91,45,49,51,51,46,52,56,54,54,49,53,44,53,54,46,56,54,54,51,57,56,93,44,91,45,49,51,51,46,52,56,51,56,54,54,44,53,54,46,54,53,49,54,48,50,93,44,91,45,49,51,51,46,52,50,54,56,57,44,53,54,46,54,49,56,53,51,56,93,44,91,45,49,51,51,46,52,49,55,52,54,49,44,53,54,46,51,57,52,54,48,54,93,44,91,45,49,51,51,46,49,54,57,48,55,57,44,53,54,46,51,53,53,48,57,51,93,44,91,45,49,51,50,46,57,56,48,57,51,44,53,54,46,52,54,55,54,54,55,93,44,91,45,49,51,50,46,55,53,54,54,53,57,44,53,54,46,52,56,52,51,56,56,93,44,91,45,49,51,50,46,53,49,56,50,55,52,44,53,54,46,53,56,54,50,49,51,93,44,91,45,49,51,50,46,53,57,49,55,52,56,44,53,54,46,54,54,54,50,53,51,93,44,91,45,49,51,50,46,52,51,57,53,57,57,44,53,54,46,55,55,48,52,48,57,93,44,91,45,49,51,50,46,49,49,53,57,51,53,44,53,54,46,56,57,48,51,52,93,44,91,45,49,51,50,46,48,52,53,49,57,49,44,53,55,46,48,52,53,48,53,57,93,44,91,45,49,51,50,46,51,54,56,57,56,51,44,53,55,46,48,57,49,53,49,51,93,44,91,45,49,51,50,46,50,52,55,57,50,49,44,53,55,46,50,49,49,50,53,51,93,44,91,45,49,51,50,46,54,53,50,52,53,54,44,53,55,46,54,48,55,51,53,55,93,44,91,45,49,51,50,46,56,56,55,56,53,44,53,55,46,54,49,51,55,51,57,93,44,91,45,49,51,50,46,56,55,49,56,57,56,44,53,55,46,55,49,50,55,57,54,93,44,91,45,49,51,51,46,52,53,50,50,52,50,44,53,55,46,56,49,52,48,54,50,93,44,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,55,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,54,52,56,53,54,44,51,52,46,51,49,50,52,57,51,93,44,91,45,49,48,49,46,53,54,51,53,56,44,51,51,46,56,51,48,52,53,49,93,44,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,44,91,45,49,48,49,46,48,52,49,52,56,52,44,51,52,46,51,49,50,52,52,52,93,44,91,45,49,48,49,46,52,55,49,53,56,44,51,52,46,51,49,50,50,57,93,44,91,45,49,48,49,46,53,54,52,56,53,54,44,51,52,46,51,49,50,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,53,34,44,34,78,65,77,69,34,58,34,87,114,97,110,103,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,52,44,34,98,101,100,115,34,58,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,50,46,49,49,53,57,51,53,44,53,54,46,56,57,48,51,52,93,44,91,45,49,51,50,46,52,51,57,53,57,57,44,53,54,46,55,55,48,52,48,57,93,44,91,45,49,51,50,46,53,57,49,55,52,56,44,53,54,46,54,54,54,50,53,51,93,44,91,45,49,51,50,46,53,49,56,50,55,52,44,53,54,46,53,56,54,50,49,51,93,44,91,45,49,51,50,46,55,53,54,54,53,57,44,53,54,46,52,56,52,51,56,56,93,44,91,45,49,51,50,46,57,56,48,57,51,44,53,54,46,52,54,55,54,54,55,93,44,91,45,49,51,51,46,49,54,57,48,55,57,44,53,54,46,51,53,53,48,57,51,93,44,91,45,49,51,51,46,48,52,50,54,57,44,53,54,46,50,52,57,54,54,93,44,91,45,49,51,51,46,48,48,55,55,50,55,44,53,54,46,49,51,52,56,55,51,93,44,91,45,49,51,50,46,51,53,53,56,54,52,44,53,53,46,55,57,53,55,56,49,93,44,91,45,49,51,50,46,49,57,57,55,52,57,44,53,53,46,54,51,51,56,51,52,93,44,91,45,49,51,50,46,48,57,49,49,55,56,44,53,53,46,54,54,48,55,48,51,93,44,91,45,49,51,49,46,57,51,53,54,51,53,44,53,53,46,55,57,56,52,51,49,93,44,91,45,49,51,49,46,56,51,51,49,56,50,44,53,54,46,48,53,51,53,49,50,93,44,91,45,49,51,49,46,51,55,57,57,56,55,44,53,54,46,48,49,51,52,49,57,93,44,91,45,49,51,49,46,52,51,57,57,53,55,44,53,54,46,49,51,49,48,56,51,93,44,91,45,49,51,49,46,50,53,51,51,53,56,44,53,54,46,50,48,54,56,53,93,44,91,45,49,51,49,46,48,49,53,57,55,49,44,53,54,46,50,52,57,56,54,49,93,44,91,45,49,51,49,46,48,56,55,51,52,57,44,53,54,46,52,48,54,48,48,53,93,44,91,45,49,51,49,46,53,56,49,48,54,55,44,53,54,46,54,49,50,50,51,50,93,44,91,45,49,51,49,46,56,51,53,51,50,55,44,53,54,46,53,57,57,50,48,51,93,44,91,45,49,51,49,46,56,55,50,56,55,54,44,53,54,46,56,48,53,57,57,53,93,44,91,45,49,51,50,46,49,49,53,57,51,53,44,53,54,46,56,57,48,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,55,48,48,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,50,53,54,52,51,44,51,55,46,55,54,57,52,57,55,93,44,91,45,56,52,46,51,52,55,56,48,53,44,51,55,46,53,51,57,48,54,52,93,44,91,45,56,52,46,49,57,57,52,56,57,44,51,55,46,53,50,50,56,53,56,93,44,91,45,56,52,46,48,57,48,51,54,52,44,51,55,46,53,54,54,50,50,55,93,44,91,45,56,52,46,49,50,54,57,52,56,44,51,55,46,54,52,50,52,50,49,93,44,91,45,56,52,46,48,56,48,51,51,55,44,51,55,46,56,53,51,48,54,54,93,44,91,45,56,52,46,51,51,55,51,57,51,44,51,55,46,56,57,50,48,48,55,93,44,91,45,56,52,46,52,51,53,55,50,44,51,55,46,56,52,55,50,48,50,93,44,91,45,56,52,46,53,50,53,54,52,51,44,51,55,46,55,54,57,52,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,108,111,117,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,52,52,51,44,34,98,101,100,115,34,58,51,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,57,52,50,55,53,44,51,53,46,56,56,55,49,50,53,93,44,91,45,56,51,46,57,53,48,52,56,49,44,51,53,46,56,55,53,51,54,50,93,44,91,45,56,52,46,49,54,54,50,54,55,44,51,53,46,56,48,53,49,48,54,93,44,91,45,56,52,46,49,56,56,51,49,57,44,51,53,46,54,49,48,53,52,57,93,44,91,45,56,51,46,57,54,49,49,48,50,44,51,53,46,52,54,51,55,53,52,93,44,91,45,56,51,46,57,53,50,57,55,50,44,51,53,46,52,54,48,53,53,50,93,44,91,45,56,51,46,55,55,48,53,56,55,44,51,53,46,53,54,49,55,52,51,93,44,91,45,56,51,46,54,54,50,57,57,57,44,51,53,46,53,54,57,52,54,56,93,44,91,45,56,51,46,55,57,52,50,55,53,44,51,53,46,56,56,55,49,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,71,97,108,108,97,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,55,50,57,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,48,53,50,53,57,44,52,53,46,55,57,56,51,48,54,93,44,91,45,49,49,49,46,54,53,57,55,51,56,44,52,53,46,55,52,51,51,52,52,93,44,91,45,49,49,49,46,53,51,54,50,52,49,44,52,53,46,54,52,50,50,53,55,93,44,91,45,49,49,49,46,51,53,49,51,56,44,52,53,46,54,52,49,57,51,56,93,44,91,45,49,49,49,46,51,55,51,48,51,44,52,53,46,51,53,48,53,50,49,93,44,91,45,49,49,49,46,51,55,55,48,49,53,44,52,52,46,55,53,49,52,52,51,93,44,91,45,49,49,49,46,50,49,57,51,49,57,44,52,52,46,54,50,50,53,50,49,93,44,91,45,49,49,49,46,49,51,48,54,53,57,44,52,52,46,53,48,48,49,51,49,93,44,91,45,49,49,49,46,48,53,50,52,51,52,44,52,52,46,52,55,56,52,49,49,93,44,91,45,49,49,49,46,48,53,51,52,52,55,44,52,52,46,54,54,54,50,54,56,93,44,91,45,49,49,49,46,48,52,53,48,54,54,44,52,53,46,48,48,48,57,53,93,44,91,45,49,49,49,46,48,51,56,49,54,57,44,52,53,46,51,53,49,51,57,49,93,44,91,45,49,49,48,46,57,49,55,56,57,57,44,52,53,46,51,53,49,50,55,51,93,44,91,45,49,49,48,46,57,49,57,50,50,50,44,52,53,46,53,50,52,56,54,49,93,44,91,45,49,49,48,46,55,57,52,55,55,52,44,52,53,46,53,57,48,54,56,50,93,44,91,45,49,49,48,46,55,56,51,56,51,51,44,52,54,46,49,57,50,54,57,57,93,44,91,45,49,49,49,46,48,54,49,57,53,54,44,52,54,46,49,57,50,56,51,52,93,44,91,45,49,49,49,46,51,52,54,54,53,50,44,52,54,46,49,56,55,55,56,53,93,44,91,45,49,49,49,46,52,49,57,54,49,56,44,52,53,46,57,57,54,51,50,50,93,44,91,45,49,49,49,46,54,54,48,48,53,55,44,52,53,46,56,51,51,53,93,44,91,45,49,49,49,46,56,48,53,50,53,57,44,52,53,46,55,57,56,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,97,114,108,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,50,53,51,44,34,98,101,100,115,34,58,49,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,50,57,57,56,49,44,51,52,46,53,51,49,57,50,53,93,44,91,45,55,57,46,56,56,52,53,52,50,44,51,52,46,52,57,49,50,49,56,93,44,91,45,56,48,46,48,52,53,52,51,57,44,51,52,46,52,57,50,54,51,49,93,44,91,45,56,48,46,50,56,56,53,57,54,44,51,52,46,51,54,54,50,48,55,93,44,91,45,56,48,46,50,56,56,54,57,50,44,51,52,46,51,54,52,49,51,57,93,44,91,45,56,48,46,49,51,53,52,49,51,44,51,52,46,50,56,52,53,53,50,93,44,91,45,56,48,46,48,54,57,56,55,56,44,51,52,46,48,56,54,49,57,49,93,44,91,45,55,57,46,55,50,57,53,54,54,44,51,52,46,50,57,53,49,57,93,44,91,45,55,57,46,54,53,55,55,54,52,44,51,52,46,51,48,53,49,57,93,44,91,45,55,57,46,54,56,53,50,50,55,44,51,52,46,52,48,48,54,54,57,93,44,91,45,55,57,46,56,50,57,57,56,49,44,51,52,46,53,51,49,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,69,115,99,97,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,50,56,44,34,98,101,100,115,34,58,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,49,53,56,57,44,51,49,46,50,52,52,52,53,56,93,44,91,45,56,55,46,53,57,56,56,50,57,44,51,48,46,57,57,55,52,53,53,93,44,91,45,56,55,46,49,54,51,54,53,51,44,51,48,46,57,57,57,48,50,57,93,44,91,45,56,54,46,55,56,53,54,57,50,44,51,48,46,57,57,54,57,56,93,44,91,45,56,54,46,54,56,56,51,49,55,44,51,48,46,57,57,52,53,48,55,93,44,91,45,56,54,46,55,48,48,50,56,50,44,51,49,46,49,57,50,50,49,55,93,44,91,45,56,54,46,55,54,51,57,54,49,44,51,49,46,50,54,49,50,57,51,93,44,91,45,56,55,46,52,50,55,52,53,53,44,51,49,46,50,54,48,51,56,54,93,44,91,45,56,55,46,54,49,53,56,57,44,51,49,46,50,52,52,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,72,97,114,97,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,53,48,51,49,44,51,51,46,57,48,52,52,56,56,93,44,91,45,56,53,46,51,56,54,53,56,49,44,51,51,46,57,48,49,55,49,57,93,44,91,45,56,53,46,51,51,56,50,51,44,51,51,46,54,53,51,49,49,55,93,44,91,45,56,53,46,48,53,48,56,56,57,44,51,51,46,55,49,52,54,51,50,93,44,91,45,56,53,46,48,51,55,57,50,54,44,51,51,46,56,49,49,57,52,50,93,44,91,45,56,53,46,48,53,48,51,49,44,51,51,46,57,48,52,52,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,49,56,57,55,44,51,56,46,48,51,56,50,51,93,44,91,45,57,53,46,53,50,53,52,57,57,44,51,55,46,55,51,50,55,53,57,93,44,91,45,57,53,46,48,56,56,48,56,50,44,51,55,46,55,51,50,52,55,54,93,44,91,45,57,53,46,48,55,55,56,55,54,44,51,56,46,48,51,55,55,48,54,93,44,91,45,57,53,46,53,49,56,57,55,44,51,56,46,48,51,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,44,91,45,56,56,46,52,54,50,50,48,55,44,51,57,46,56,55,57,48,57,50,93,44,91,45,56,56,46,52,55,51,49,56,50,44,51,57,46,55,57,49,56,51,55,93,44,91,45,56,56,46,52,55,50,48,55,51,44,51,57,46,54,53,49,53,56,56,93,44,91,45,56,56,46,48,54,51,53,49,56,44,51,57,46,54,53,50,54,53,55,93,44,91,45,56,55,46,57,54,54,51,52,55,44,51,57,46,54,56,53,57,55,51,93,44,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,54,51,49,52,53,44,51,56,46,50,55,55,57,51,51,93,44,91,45,55,56,46,51,54,56,55,52,51,44,51,56,46,49,56,52,48,55,52,93,44,91,45,55,56,46,50,56,56,56,51,55,44,51,56,46,50,55,50,54,53,54,93,44,91,45,55,56,46,52,50,57,54,50,54,44,51,56,46,51,54,54,55,48,52,93,44,91,45,55,56,46,52,53,50,56,48,49,44,51,56,46,52,55,53,53,50,55,93,44,91,45,55,56,46,52,56,53,55,52,44,51,56,46,52,50,49,53,55,57,93,44,91,45,55,56,46,54,54,51,49,52,53,44,51,56,46,50,55,55,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,87,97,117,115,104,97,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,57,55,57,56,44,52,52,46,50,52,53,55,50,53,93,44,91,45,56,57,46,53,57,55,57,53,44,52,51,46,57,56,50,49,93,44,91,45,56,57,46,49,54,56,54,49,50,44,52,51,46,57,56,50,56,51,52,93,44,91,45,56,56,46,56,56,54,49,57,51,44,52,51,46,57,56,51,50,51,51,93,44,91,45,56,56,46,56,56,54,54,55,51,44,52,52,46,50,52,50,54,50,50,93,44,91,45,56,57,46,50,50,52,56,49,51,44,52,52,46,50,52,51,51,57,51,93,44,91,45,56,57,46,53,57,55,57,56,44,52,52,46,50,52,53,55,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,73,122,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,53,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,57,53,52,51,44,51,54,46,49,51,50,55,57,56,93,44,91,45,57,50,46,49,51,57,49,48,52,44,51,54,46,49,49,50,50,50,49,93,44,91,45,57,50,46,48,56,53,52,56,53,44,51,53,46,57,54,53,57,52,51,93,44,91,45,57,49,46,56,52,57,52,52,56,44,51,53,46,56,54,55,52,49,49,93,44,91,45,57,49,46,55,49,48,52,56,51,44,51,53,46,57,52,49,55,53,56,93,44,91,45,57,49,46,54,56,50,50,55,55,44,51,54,46,48,48,48,53,51,53,93,44,91,45,57,49,46,54,57,49,52,51,53,44,51,54,46,50,53,51,51,48,49,93,44,91,45,57,50,46,49,53,54,57,57,44,51,54,46,50,54,49,50,52,56,93,44,91,45,57,50,46,49,57,53,52,51,44,51,54,46,49,51,50,55,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,101,114,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,51,50,49,50,44,34,98,101,100,115,34,58,55,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,48,53,49,56,55,56,44,51,54,46,56,49,57,54,93,44,91,45,49,50,50,46,48,48,49,49,50,52,44,51,54,46,54,52,55,55,48,52,93,44,91,45,49,50,50,46,48,52,50,55,52,56,44,51,54,46,53,57,54,54,50,55,93,44,91,45,49,50,49,46,57,53,57,48,53,51,44,51,54,46,50,56,55,49,48,56,93,44,91,45,49,50,49,46,55,55,48,54,57,51,44,51,54,46,49,54,50,48,49,52,93,44,91,45,49,50,49,46,54,52,56,49,56,44,51,53,46,57,57,56,54,49,55,93,44,91,45,49,50,49,46,53,54,49,52,54,49,44,51,53,46,57,52,51,56,49,56,93,44,91,45,49,50,49,46,52,51,56,49,55,54,44,51,53,46,55,57,54,54,53,53,93,44,91,45,49,50,48,46,50,49,51,57,55,57,44,51,53,46,55,56,57,50,55,54,93,44,91,45,49,50,48,46,51,49,53,48,54,56,44,51,53,46,57,48,55,49,56,54,93,44,91,45,49,50,48,46,54,52,56,55,56,52,44,51,54,46,49,48,55,57,57,93,44,91,45,49,50,48,46,54,55,56,53,56,50,44,51,54,46,50,54,55,51,49,57,93,44,91,45,49,50,48,46,55,54,49,52,56,51,44,51,54,46,50,48,51,53,56,93,44,91,45,49,50,48,46,56,54,51,57,56,55,44,51,54,46,50,57,49,57,51,49,93,44,91,45,49,50,49,46,48,52,48,55,57,55,44,51,54,46,51,50,51,57,54,57,93,44,91,45,49,50,49,46,51,50,56,54,57,55,44,51,54,46,53,53,52,55,52,93,44,91,45,49,50,49,46,51,49,56,54,56,57,44,51,54,46,54,49,48,51,50,56,93,44,91,45,49,50,49,46,54,52,52,48,48,49,44,51,54,46,56,57,51,57,57,54,93,44,91,45,49,50,50,46,48,53,49,56,55,56,44,51,54,46,56,49,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,48,54,49,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,55,54,52,51,44,51,50,46,55,55,55,56,48,50,93,44,91,45,49,48,56,46,56,53,52,53,56,49,44,51,50,46,55,55,55,50,55,54,93,44,91,45,49,48,56,46,56,53,50,57,49,57,44,51,50,46,54,48,51,51,55,52,93,44,91,45,49,48,56,46,54,52,54,53,50,51,44,51,50,46,54,48,51,55,51,93,44,91,45,49,48,56,46,54,52,54,55,55,44,51,50,46,53,49,54,53,50,49,93,44,91,45,49,48,56,46,53,51,55,48,49,49,44,51,50,46,53,49,54,54,49,56,93,44,91,45,49,48,56,46,53,51,55,54,55,54,44,51,50,46,48,55,57,56,51,50,93,44,91,45,49,48,56,46,53,50,52,53,51,56,44,51,49,46,56,54,51,54,49,52,93,44,91,45,49,48,56,46,50,49,55,49,52,51,44,51,49,46,56,54,52,49,51,57,93,44,91,45,49,48,56,46,50,50,57,57,53,49,44,51,50,46,48,55,57,56,55,93,44,91,45,49,48,56,46,50,50,57,51,52,51,44,51,50,46,53,49,54,56,51,55,93,44,91,45,49,48,55,46,57,50,51,55,54,54,44,51,50,46,53,49,55,52,49,54,93,44,91,45,49,48,55,46,57,50,51,57,57,55,44,51,50,46,54,48,52,51,55,57,93,44,91,45,49,48,55,46,54,48,56,52,56,53,44,51,50,46,54,48,53,52,52,57,93,44,91,45,49,48,55,46,55,51,50,50,56,50,44,51,50,46,54,50,55,51,53,51,93,44,91,45,49,48,55,46,55,50,49,51,56,55,44,51,50,46,55,55,56,48,55,55,93,44,91,45,49,48,55,46,55,56,48,53,52,56,44,51,50,46,57,53,50,55,55,54,93,44,91,45,49,48,55,46,56,53,54,54,55,50,44,51,51,46,48,48,50,53,51,57,93,44,91,45,49,48,55,46,56,54,53,48,48,57,44,51,51,46,49,57,57,57,55,52,93,44,91,45,49,48,56,46,48,48,48,53,57,56,44,51,51,46,50,48,49,50,53,51,93,44,91,45,49,48,57,46,48,52,55,53,55,56,44,51,51,46,50,48,56,56,57,56,93,44,91,45,49,48,57,46,48,52,55,54,52,51,44,51,50,46,55,55,55,56,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,77,105,108,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,50,53,49,56,57,44,51,56,46,52,51,48,55,55,56,93,44,91,45,57,50,46,54,56,57,56,51,52,44,51,56,46,51,52,56,52,55,50,93,44,91,45,57,50,46,54,57,53,56,56,54,44,51,56,46,50,50,50,48,51,49,93,44,91,45,57,50,46,54,52,48,48,56,53,44,51,56,46,50,49,51,48,51,50,93,44,91,45,57,50,46,53,55,48,50,56,49,44,51,56,46,48,54,54,54,51,53,93,44,91,45,57,50,46,52,48,54,50,55,53,44,51,56,46,48,50,49,49,55,57,93,44,91,45,57,50,46,49,56,53,51,55,44,51,56,46,48,49,54,51,51,56,93,44,91,45,57,50,46,49,57,53,54,55,53,44,51,56,46,50,57,50,50,51,55,93,44,91,45,57,50,46,49,57,52,52,55,54,44,51,56,46,51,51,53,53,51,54,93,44,91,45,57,50,46,52,48,56,52,48,55,44,51,56,46,51,52,49,51,52,52,93,44,91,45,57,50,46,52,57,53,49,56,53,44,51,56,46,52,50,55,56,50,57,93,44,91,45,57,50,46,54,50,53,49,56,57,44,51,56,46,52,51,48,55,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,87,105,108,107,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,54,48,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,53,51,54,52,57,44,51,54,46,51,54,54,54,48,49,93,44,91,45,56,49,46,52,55,55,53,49,54,44,51,54,46,50,52,48,50,53,93,44,91,45,56,49,46,53,52,53,52,56,56,44,51,54,46,49,49,55,52,55,53,93,44,91,45,56,49,46,51,50,56,51,50,52,44,51,53,46,57,57,54,53,56,51,93,44,91,45,56,49,46,48,50,56,56,51,51,44,51,54,46,48,52,53,54,53,50,93,44,91,45,56,48,46,56,56,49,53,57,49,44,51,54,46,48,53,53,55,49,56,93,44,91,45,56,48,46,56,55,51,50,48,53,44,51,54,46,50,51,54,51,48,53,93,44,91,45,56,48,46,56,54,56,55,52,54,44,51,54,46,51,50,54,52,52,55,93,44,91,45,56,48,46,57,54,55,49,53,51,44,51,54,46,52,48,50,48,50,93,44,91,45,56,49,46,48,57,53,49,49,50,44,51,54,46,52,52,48,55,55,51,93,44,91,45,56,49,46,50,53,51,54,52,57,44,51,54,46,51,54,54,54,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,48,34,44,34,78,65,77,69,34,58,34,74,117,110,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,51,51,48,44,34,98,101,100,115,34,58,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,52,46,51,50,49,52,52,54,44,53,56,46,57,54,51,54,50,57,93,44,91,45,49,51,53,46,50,49,57,49,50,56,44,53,56,46,57,55,52,57,55,50,93,44,91,45,49,51,53,46,48,55,48,52,53,44,53,56,46,52,57,57,56,57,55,93,44,91,45,49,51,52,46,54,57,52,56,51,54,44,53,56,46,50,55,54,53,50,50,93,44,91,45,49,51,52,46,55,55,54,56,54,50,44,53,56,46,48,57,57,48,52,53,93,44,91,45,49,51,52,46,54,57,55,55,54,54,44,53,56,46,48,51,50,48,51,54,93,44,91,45,49,51,52,46,53,51,56,52,49,51,44,53,56,46,48,57,56,49,55,50,93,44,91,45,49,51,52,46,49,55,54,57,57,44,53,56,46,49,53,56,51,50,93,44,91,45,49,51,51,46,56,49,51,48,53,49,44,53,55,46,56,51,55,54,50,52,93,44,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,44,91,45,49,51,51,46,49,55,54,57,51,55,44,53,56,46,49,53,48,53,54,55,93,44,91,45,49,51,51,46,52,54,49,53,48,52,44,53,56,46,51,56,55,55,50,51,93,44,91,45,49,51,51,46,51,55,55,51,48,51,44,53,56,46,52,51,48,53,52,56,93,44,91,45,49,51,51,46,55,48,55,49,49,56,44,53,56,46,54,49,50,50,55,52,93,44,91,45,49,51,51,46,56,52,48,53,48,55,44,53,56,46,55,50,57,52,52,52,93,44,91,45,49,51,52,46,50,53,56,48,55,52,44,53,56,46,56,54,49,48,51,54,93,44,91,45,49,51,52,46,51,50,49,52,52,54,44,53,56,46,57,54,51,54,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,80,108,97,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,56,50,52,44,34,98,101,100,115,34,58,49,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,54,56,57,55,51,44,51,57,46,52,49,56,56,55,57,93,44,91,45,57,52,46,56,57,56,53,49,54,44,51,57,46,50,57,56,52,53,93,44,91,45,57,52,46,55,55,53,53,51,50,44,51,57,46,50,48,48,54,48,54,93,44,91,45,57,52,46,54,48,49,55,51,51,44,51,57,46,49,53,57,54,48,51,93,44,91,45,57,52,46,54,48,48,56,49,57,44,51,57,46,52,53,54,49,53,53,93,44,91,45,57,52,46,54,48,49,50,49,53,44,51,57,46,53,51,48,49,55,93,44,91,45,57,53,46,49,48,50,56,56,56,44,51,57,46,53,51,51,51,52,55,93,44,91,45,57,52,46,57,54,56,57,55,51,44,51,57,46,52,49,56,56,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,117,99,104,97,110,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,48,55,54,44,34,98,101,100,115,34,58,53,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,55,54,53,53,56,44,51,57,46,56,50,48,56,56,51,93,44,91,45,57,53,46,48,53,51,53,56,54,44,51,57,46,54,49,53,50,54,57,93,44,91,45,57,53,46,49,48,50,56,56,56,44,51,57,46,53,51,51,51,52,55,93,44,91,45,57,52,46,54,48,49,50,49,53,44,51,57,46,53,51,48,49,55,93,44,91,45,57,52,46,54,48,50,50,53,55,44,51,57,46,55,52,55,49,57,53,93,44,91,45,57,52,46,54,48,50,56,51,44,51,57,46,56,49,57,57,48,54,93,44,91,45,57,52,46,56,55,54,53,53,56,44,51,57,46,56,50,48,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,105,109,101,115,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,48,53,50,44,34,98,101,100,115,34,58,49,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,49,48,55,53,57,44,51,52,46,57,57,57,48,50,52,93,44,91,45,56,55,46,50,49,52,57,49,52,44,51,52,46,56,49,54,48,49,49,93,44,91,45,56,55,46,50,54,48,54,55,54,44,51,52,46,55,53,56,54,50,54,93,44,91,45,56,55,46,49,48,53,48,55,51,44,51,52,46,54,56,54,48,51,55,93,44,91,45,56,54,46,57,48,55,50,48,53,44,51,52,46,53,55,57,55,57,50,93,44,91,45,56,54,46,55,57,48,48,53,54,44,51,52,46,53,53,48,55,57,93,44,91,45,56,54,46,55,56,51,54,50,56,44,51,52,46,57,57,49,57,52,56,93,44,91,45,56,54,46,56,51,54,51,48,54,44,51,52,46,57,57,49,56,57,57,93,44,91,45,56,55,46,50,49,48,55,53,57,44,51,52,46,57,57,57,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,56,51,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,55,54,49,57,55,44,52,48,46,48,55,55,49,52,51,93,44,91,45,56,53,46,53,55,54,49,57,50,44,51,57,46,57,52,53,55,53,54,93,44,91,45,56,53,46,53,57,54,57,49,54,44,51,57,46,55,56,54,53,49,57,93,44,91,45,56,53,46,51,48,49,53,56,52,44,51,57,46,55,56,55,53,55,57,93,44,91,45,56,53,46,50,50,49,49,49,56,44,51,57,46,55,56,56,52,52,57,93,44,91,45,56,53,46,50,48,49,52,55,51,44,52,48,46,48,48,52,53,50,49,93,44,91,45,56,53,46,50,49,52,51,56,54,44,52,48,46,48,55,54,56,56,57,93,44,91,45,56,53,46,53,55,54,49,57,55,44,52,48,46,48,55,55,49,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,53,53,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,53,57,56,50,53,51,44,52,49,46,51,51,51,49,49,57,93,44,91,45,57,55,46,56,50,56,50,53,54,44,52,49,46,49,55,51,52,51,57,93,44,91,45,57,55,46,56,50,54,50,56,55,44,52,49,46,48,52,54,53,56,49,93,44,91,45,57,55,46,51,54,56,49,49,56,44,52,49,46,48,52,54,57,52,55,93,44,91,45,57,55,46,51,54,56,49,56,54,44,52,49,46,51,57,54,52,49,54,93,44,91,45,57,55,46,53,57,56,50,53,51,44,52,49,46,51,51,51,49,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,79,116,116,97,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,55,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,49,53,57,52,49,44,52,49,46,54,49,57,49,49,93,44,91,45,56,51,46,52,49,52,54,50,54,44,52,49,46,53,48,48,50,50,56,93,44,91,45,56,51,46,51,51,56,49,57,54,44,52,49,46,52,53,55,53,48,56,93,44,91,45,56,50,46,57,53,50,50,50,52,44,52,49,46,52,53,56,50,51,57,93,44,91,45,56,50,46,55,49,57,50,51,54,44,52,49,46,52,56,50,52,50,51,93,44,91,45,56,50,46,55,56,55,52,48,50,44,52,49,46,53,56,55,55,51,56,93,44,91,45,56,50,46,55,50,54,52,50,55,44,52,49,46,54,57,56,51,48,56,93,44,91,45,56,50,46,57,57,53,53,55,50,44,52,49,46,56,50,56,57,54,57,93,44,91,45,56,51,46,49,54,52,53,49,49,44,52,49,46,54,50,51,50,52,55,93,44,91,45,56,51,46,52,49,53,57,52,49,44,52,49,46,54,49,57,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,78,111,114,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,53,57,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,52,56,57,50,51,44,52,55,46,52,57,56,57,57,49,93,44,91,45,57,54,46,56,51,51,51,57,51,44,52,55,46,50,51,56,48,52,49,93,44,91,45,57,54,46,56,52,48,49,50,50,44,52,55,46,49,53,48,52,55,53,93,44,91,45,57,54,46,49,57,52,54,55,49,44,52,55,46,49,53,49,49,52,57,93,44,91,45,57,54,46,48,54,55,48,54,57,44,52,55,46,49,53,49,56,49,51,93,44,91,45,57,54,46,48,54,55,54,50,49,44,52,55,46,52,57,57,49,51,54,93,44,91,45,57,54,46,56,52,56,57,50,51,44,52,55,46,52,57,56,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,57,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,44,91,45,57,53,46,53,53,55,50,55,55,44,52,49,46,56,54,51,52,52,57,93,44,91,45,57,53,46,53,53,56,49,52,51,44,52,49,46,54,48,50,51,56,51,93,44,91,45,57,53,46,52,57,55,57,57,55,44,52,49,46,53,48,54,48,55,52,93,44,91,45,57,53,46,49,53,52,55,50,50,44,52,49,46,53,48,53,50,49,49,93,44,91,45,57,53,46,48,52,48,55,55,44,52,49,46,53,48,52,54,57,93,44,91,45,57,53,46,48,57,50,53,50,44,52,49,46,54,48,50,48,53,53,93,44,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,53,50,50,44,34,98,101,100,115,34,58,54,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,50,49,55,48,50,52,44,51,57,46,55,49,57,56,54,49,93,44,91,45,55,55,46,50,57,57,55,55,44,51,57,46,54,49,50,50,56,52,93,44,91,45,55,55,46,49,48,54,56,51,57,44,51,57,46,52,57,49,54,54,49,93,44,91,45,55,55,46,49,54,56,48,56,44,51,57,46,51,53,51,57,53,55,93,44,91,45,55,54,46,56,56,50,50,55,52,44,51,57,46,51,53,48,49,56,53,93,44,91,45,55,54,46,56,56,51,50,57,52,44,51,57,46,52,55,52,55,53,49,93,44,91,45,55,54,46,55,56,55,48,57,54,44,51,57,46,55,50,48,56,93,44,91,45,55,54,46,57,57,57,51,49,56,44,51,57,46,55,50,48,49,48,54,93,44,91,45,55,55,46,50,49,55,48,50,52,44,51,57,46,55,49,57,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,50,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,57,56,55,57,50,44,52,50,46,50,57,55,53,50,55,93,44,91,45,57,50,46,50,57,56,49,54,52,44,52,49,46,56,54,50,55,55,57,93,44,91,45,57,49,46,56,51,49,51,55,57,44,52,49,46,56,54,49,56,53,49,93,44,91,45,57,49,46,56,51,49,48,56,57,44,52,50,46,50,57,57,48,54,51,93,44,91,45,57,50,46,48,54,52,55,54,54,44,52,50,46,50,57,55,50,53,57,93,44,91,45,57,50,46,50,57,56,55,57,50,44,52,50,46,50,57,55,53,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,49,52,55,53,55,44,51,55,46,56,53,53,53,48,57,93,44,91,45,56,50,46,52,57,55,55,57,54,44,51,55,46,57,52,53,52,56,56,93,44,91,45,56,50,46,54,49,50,51,57,51,44,51,55,46,56,55,57,50,55,50,93,44,91,45,56,50,46,54,52,48,55,53,44,51,55,46,55,50,48,49,56,50,93,44,91,45,56,50,46,53,54,51,53,54,49,44,51,55,46,54,56,52,56,52,52,93,44,91,45,56,50,46,52,53,54,49,51,52,44,51,55,46,54,54,56,55,57,53,93,44,91,45,56,50,46,51,51,51,49,51,54,44,51,55,46,55,52,48,56,52,56,93,44,91,45,56,50,46,52,49,52,55,53,55,44,51,55,46,56,53,53,53,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,104,105,115,97,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,55,50,55,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,49,52,49,55,57,51,44,52,53,46,55,51,48,54,53,55,93,44,91,45,57,51,46,49,52,49,57,55,52,44,52,53,46,53,53,56,49,48,57,93,44,91,45,57,51,46,48,50,50,50,55,52,44,52,53,46,53,53,55,49,53,52,93,44,91,45,57,51,46,48,49,57,53,54,51,44,52,53,46,52,49,49,55,55,93,44,91,45,57,51,46,48,49,57,52,52,44,52,53,46,50,57,54,57,50,57,93,44,91,45,57,50,46,55,52,53,54,56,51,44,52,53,46,50,57,54,48,52,50,93,44,91,45,57,50,46,54,52,54,54,48,50,44,52,53,46,52,52,49,54,51,53,93,44,91,45,57,50,46,56,56,55,48,54,55,44,52,53,46,54,52,52,49,52,56,93,44,91,45,57,50,46,56,52,49,48,53,49,44,52,53,46,55,51,48,48,50,52,93,44,91,45,57,51,46,49,52,49,55,57,51,44,52,53,46,55,51,48,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,79,119,115,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,55,57,49,56,54,44,51,55,46,53,48,54,50,52,57,93,44,91,45,56,51,46,56,56,53,50,54,50,44,51,55,46,53,49,55,54,56,56,93,44,91,45,56,51,46,55,56,52,57,55,53,44,51,55,46,51,52,56,55,49,55,93,44,91,45,56,51,46,54,51,56,53,55,50,44,51,55,46,51,52,52,49,54,54,93,44,91,45,56,51,46,53,50,54,57,48,55,44,51,55,46,50,53,56,53,50,57,93,44,91,45,56,51,46,53,52,55,54,50,56,44,51,55,46,51,51,52,52,49,56,93,44,91,45,56,51,46,53,55,57,49,56,54,44,51,55,46,53,48,54,50,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,114,97,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,51,48,52,44,34,98,101,100,115,34,58,51,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,50,55,48,56,52,44,52,50,46,48,48,49,54,55,52,93,44,91,45,55,54,46,56,55,52,55,49,52,44,52,49,46,53,57,54,57,49,57,93,44,91,45,55,54,46,56,49,51,55,51,49,44,52,49,46,53,57,48,48,51,52,93,44,91,45,55,54,46,50,50,48,49,51,57,44,52,49,46,53,52,49,50,56,53,93,44,91,45,55,54,46,49,49,53,49,55,50,44,52,49,46,54,53,49,56,50,53,93,44,91,45,55,54,46,49,52,53,53,49,57,44,52,49,46,57,57,56,56,52,50,93,44,91,45,55,54,46,53,53,55,54,50,52,44,52,50,46,48,48,48,49,54,93,44,91,45,55,54,46,57,50,55,48,56,52,44,52,50,46,48,48,49,54,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,54,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,54,55,57,53,55,44,52,48,46,53,56,50,52,57,54,93,44,91,45,56,48,46,53,57,52,54,54,52,44,52,48,46,52,55,49,51,56,57,93,44,91,45,56,48,46,54,50,57,54,56,52,44,52,48,46,51,57,52,57,55,56,93,44,91,45,56,48,46,53,49,55,57,57,49,44,52,48,46,51,57,57,54,52,52,93,44,91,45,56,48,46,53,49,57,48,51,56,44,52,48,46,52,55,55,51,54,51,93,44,91,45,56,48,46,53,49,56,57,57,49,44,52,48,46,54,51,56,56,48,49,93,44,91,45,56,48,46,54,54,55,57,53,55,44,52,48,46,53,56,50,52,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,67,111,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,55,52,48,44,34,98,101,100,115,34,58,50,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,57,52,56,54,54,44,51,56,46,55,51,57,49,51,93,44,91,45,57,50,46,52,57,53,49,56,53,44,51,56,46,52,50,55,56,50,57,93,44,91,45,57,50,46,52,48,56,52,48,55,44,51,56,46,51,52,49,51,52,52,93,44,91,45,57,50,46,49,57,52,52,55,54,44,51,56,46,51,51,53,53,51,54,93,44,91,45,57,50,46,49,52,57,50,57,49,44,51,56,46,52,51,49,49,53,50,93,44,91,45,57,50,46,48,48,56,55,44,51,56,46,53,48,48,48,51,56,93,44,91,45,57,50,46,48,48,56,57,56,51,44,51,56,46,53,55,48,57,93,44,91,45,57,50,46,49,48,57,50,56,50,44,51,56,46,53,54,49,52,51,93,44,91,45,57,50,46,50,50,48,54,54,49,44,51,56,46,54,52,51,49,54,55,93,44,91,45,57,50,46,51,53,55,56,49,51,44,51,56,46,54,55,57,53,49,55,93,44,91,45,57,50,46,51,57,52,56,54,54,44,51,56,46,55,51,57,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,101,114,114,105,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,56,48,55,44,34,98,101,100,115,34,58,50,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,50,50,57,52,44,52,50,46,48,55,49,52,56,52,93,44,91,45,56,54,46,50,50,51,53,54,51,44,52,50,46,50,52,51,51,55,57,93,44,91,45,56,55,46,48,56,56,51,51,56,44,52,50,46,50,51,53,51,51,52,93,44,91,45,56,55,46,49,49,49,49,54,50,44,52,50,46,49,52,57,52,48,57,93,44,91,45,56,55,46,50,48,55,55,55,52,44,52,49,46,55,54,48,57,53,54,93,44,91,45,56,54,46,57,51,51,51,51,52,44,52,49,46,55,54,49,48,51,53,93,44,91,45,56,54,46,53,50,52,50,49,55,44,52,49,46,55,53,57,54,53,57,93,44,91,45,56,54,46,50,50,54,48,57,53,44,52,49,46,55,54,48,52,48,54,93,44,91,45,56,54,46,50,50,50,57,52,44,52,50,46,48,55,49,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,117,110,116,105,110,103,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,52,50,49,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,49,54,53,50,49,44,52,48,46,55,51,57,49,50,55,93,44,91,45,55,56,46,50,50,49,57,55,44,52,48,46,54,55,52,53,51,57,93,44,91,45,55,56,46,49,51,48,48,56,49,44,52,48,46,52,56,49,57,57,93,44,91,45,55,56,46,50,53,55,51,48,53,44,52,48,46,50,57,55,56,56,51,93,44,91,45,55,56,46,49,51,52,56,54,51,44,52,48,46,49,54,53,49,51,49,93,44,91,45,55,55,46,56,54,52,52,56,57,44,52,48,46,48,54,49,53,54,56,93,44,91,45,55,55,46,55,48,51,48,51,44,52,48,46,50,54,51,53,55,54,93,44,91,45,55,55,46,55,53,50,49,50,44,52,48,46,51,55,56,53,52,53,93,44,91,45,55,55,46,57,49,51,56,52,52,44,52,48,46,51,57,56,54,55,57,93,44,91,45,55,55,46,56,49,54,53,49,51,44,52,48,46,53,48,48,48,55,52,93,44,91,45,55,55,46,56,52,49,56,50,55,44,52,48,46,53,53,48,48,51,53,93,44,91,45,55,55,46,54,56,55,48,56,44,52,48,46,54,55,54,55,53,93,44,91,45,55,55,46,54,56,49,51,51,52,44,52,48,46,55,50,57,55,53,56,93,44,91,45,55,55,46,56,50,52,53,48,54,44,52,48,46,55,52,51,54,56,49,93,44,91,45,55,55,46,57,52,52,50,53,44,52,48,46,54,57,49,53,53,55,93,44,91,45,55,56,46,49,49,54,53,50,49,44,52,48,46,55,51,57,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,68,97,119,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,57,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,48,53,49,44,52,51,46,48,48,48,55,55,93,44,91,45,49,48,51,46,52,56,48,52,48,51,44,52,50,46,55,56,52,57,54,54,93,44,91,45,49,48,51,46,52,56,48,48,56,50,44,52,50,46,52,51,55,50,54,55,93,44,91,45,49,48,51,46,52,52,52,53,51,50,44,52,50,46,52,51,55,51,53,52,93,44,91,45,49,48,50,46,55,55,51,51,54,54,44,52,50,46,52,51,57,57,50,50,93,44,91,45,49,48,50,46,55,55,51,51,54,57,44,52,50,46,55,56,53,50,54,53,93,44,91,45,49,48,50,46,55,57,50,49,49,49,44,52,50,46,57,57,57,57,56,93,44,91,45,49,48,51,46,48,48,48,54,48,57,44,52,51,46,48,48,48,55,53,49,93,44,91,45,49,48,51,46,53,48,53,49,44,52,51,46,48,48,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,80,97,116,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,50,51,53,52,53,53,44,51,54,46,56,55,50,49,51,93,44,91,45,56,48,46,51,56,53,51,55,51,44,51,54,46,55,57,56,54,53,56,93,44,91,45,56,48,46,52,54,52,49,56,44,51,54,46,55,48,56,55,49,56,93,44,91,45,56,48,46,54,49,50,48,53,55,44,51,54,46,53,53,55,56,57,56,93,44,91,45,56,48,46,52,52,48,48,57,56,44,51,54,46,53,53,48,54,53,53,93,44,91,45,56,48,46,48,53,51,52,53,57,44,51,54,46,53,52,50,53,50,51,93,44,91,45,56,48,46,48,57,52,51,56,57,44,51,54,46,55,55,57,53,53,50,93,44,91,45,56,48,46,48,52,49,52,57,51,44,51,54,46,55,57,52,51,54,53,93,44,91,45,56,48,46,48,54,54,52,52,57,44,51,54,46,56,52,49,48,53,55,93,44,91,45,56,48,46,50,51,53,52,53,53,44,51,54,46,56,55,50,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,111,110,116,109,111,114,101,110,99,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,54,54,49,52,44,52,53,46,49,57,56,55,51,55,93,44,91,45,56,52,46,51,55,49,55,51,55,44,52,52,46,56,53,53,48,51,57,93,44,91,45,56,51,46,56,56,56,52,56,50,44,52,52,46,56,53,54,54,51,53,93,44,91,45,56,51,46,56,56,49,50,50,51,44,52,53,46,50,48,50,48,55,49,93,44,91,45,56,52,46,50,52,54,54,51,52,44,52,53,46,49,57,56,55,50,55,93,44,91,45,56,52,46,51,54,54,54,49,52,44,52,53,46,49,57,56,55,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,79,115,99,111,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,56,52,56,50,44,52,52,46,56,53,54,54,51,53,93,44,91,45,56,52,46,51,55,49,55,51,55,44,52,52,46,56,53,53,48,51,57,93,44,91,45,56,52,46,51,55,48,54,52,51,44,52,52,46,53,48,55,50,50,51,93,44,91,45,56,51,46,56,56,54,54,51,52,44,52,52,46,53,48,56,57,55,54,93,44,91,45,56,51,46,56,56,56,52,56,52,44,52,52,46,56,53,54,52,53,56,93,44,91,45,56,51,46,56,56,56,52,56,50,44,52,52,46,56,53,54,54,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,111,108,102,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,48,55,56,53,49,44,51,54,46,57,57,54,49,51,52,93,44,91,45,49,48,53,46,49,53,53,48,52,50,44,51,54,46,57,57,53,50,54,50,93,44,91,45,49,48,53,46,50,50,48,53,48,54,44,51,54,46,57,57,52,57,55,52,93,44,91,45,49,48,53,46,50,48,48,49,49,55,44,51,54,46,57,49,53,54,50,56,93,44,91,45,49,48,53,46,50,51,48,54,51,50,44,51,54,46,55,50,51,55,56,52,93,44,91,45,49,48,53,46,51,55,48,54,51,56,44,51,54,46,54,56,49,48,51,50,93,44,91,45,49,48,53,46,51,50,54,54,55,52,44,51,54,46,53,48,48,48,51,49,93,44,91,45,49,48,53,46,51,52,49,50,54,52,44,51,54,46,50,54,49,56,54,51,93,44,91,45,49,48,52,46,56,54,53,50,52,52,44,51,54,46,50,54,49,52,49,57,93,44,91,45,49,48,52,46,56,54,53,52,48,50,44,51,54,46,50,49,55,56,54,57,93,44,91,45,49,48,52,46,52,51,54,48,53,54,44,51,54,46,50,49,56,53,51,52,93,44,91,45,49,48,52,46,48,48,56,56,50,51,44,51,54,46,50,49,56,49,49,53,93,44,91,45,49,48,52,46,48,48,55,56,53,49,44,51,54,46,57,57,54,49,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,108,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,51,52,54,51,44,34,98,101,100,115,34,58,55,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,56,49,53,52,51,44,51,56,46,54,54,48,48,54,50,93,44,91,45,57,48,46,50,53,55,52,49,51,44,51,56,46,53,51,49,56,53,50,93,44,91,45,57,48,46,50,54,52,49,50,51,44,51,56,46,53,50,48,55,50,56,93,44,91,45,57,48,46,48,51,54,49,49,51,44,51,56,46,51,50,51,51,55,55,93,44,91,45,56,57,46,57,49,51,50,50,55,44,51,56,46,51,48,56,50,54,57,93,44,91,45,56,57,46,56,57,57,48,52,51,44,51,56,46,50,50,48,55,53,53,93,44,91,45,56,57,46,55,48,51,50,53,54,44,51,56,46,50,49,57,52,48,52,93,44,91,45,56,57,46,55,48,52,50,52,53,44,51,56,46,52,49,53,55,55,57,93,44,91,45,56,57,46,55,48,54,57,52,57,44,51,56,46,54,53,53,48,49,57,93,44,91,45,57,48,46,49,56,49,53,52,51,44,51,56,46,54,54,48,48,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,53,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,48,52,50,52,53,44,51,56,46,52,49,53,55,55,57,93,44,91,45,56,57,46,55,48,51,50,53,54,44,51,56,46,50,49,57,52,48,52,93,44,91,45,56,57,46,53,57,50,55,57,55,44,51,56,46,50,49,57,50,55,49,93,44,91,45,56,57,46,49,52,55,53,57,55,44,51,56,46,50,49,50,56,57,53,93,44,91,45,56,57,46,49,52,52,51,56,56,44,51,56,46,52,55,51,56,55,56,93,44,91,45,56,57,46,49,52,51,56,54,54,44,51,56,46,53,48,51,48,56,57,93,44,91,45,56,57,46,51,50,57,52,54,57,44,51,56,46,53,49,48,50,49,51,93,44,91,45,56,57,46,53,55,57,51,50,53,44,51,56,46,52,56,48,49,56,52,93,44,91,45,56,57,46,55,48,52,50,52,53,44,51,56,46,52,49,53,55,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,101,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,54,49,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,53,56,52,48,57,44,52,48,46,50,52,50,57,51,51,93,44,91,45,55,56,46,55,54,51,50,48,54,44,52,48,46,48,53,55,48,48,53,93,44,91,45,55,56,46,55,53,55,50,52,49,44,51,57,46,56,50,51,52,56,52,93,44,91,45,55,56,46,56,48,56,51,56,55,44,51,57,46,55,50,50,57,49,49,93,44,91,45,55,56,46,51,56,48,53,57,57,44,51,57,46,55,50,50,53,57,57,93,44,91,45,55,56,46,50,57,57,48,48,51,44,51,57,46,56,50,53,53,93,44,91,45,55,56,46,49,51,52,56,54,51,44,52,48,46,49,54,53,49,51,49,93,44,91,45,55,56,46,50,53,55,51,48,53,44,52,48,46,50,57,55,56,56,51,93,44,91,45,55,56,46,54,50,48,51,56,51,44,52,48,46,51,50,55,48,50,53,93,44,91,45,55,56,46,54,53,56,52,48,57,44,52,48,46,50,52,50,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,52,50,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,49,52,48,53,55,49,44,51,53,46,48,57,57,54,55,56,93,44,91,45,57,52,46,50,50,56,50,50,54,44,51,53,46,48,55,49,57,53,53,93,44,91,45,57,52,46,50,51,48,53,50,52,44,51,52,46,57,54,56,53,50,55,93,44,91,45,57,52,46,52,52,55,55,55,52,44,51,52,46,57,51,51,57,51,55,93,44,91,45,57,52,46,52,53,52,53,54,52,44,51,52,46,55,50,56,57,54,50,93,44,91,45,57,52,46,51,49,55,54,53,57,44,51,52,46,54,57,55,52,48,56,93,44,91,45,57,52,46,48,49,56,49,54,56,44,51,52,46,54,57,50,52,54,57,93,44,91,45,57,51,46,57,51,48,53,48,57,44,51,52,46,54,54,53,54,48,56,93,44,91,45,57,51,46,55,49,48,50,57,55,44,51,52,46,55,52,53,50,57,54,93,44,91,45,57,51,46,55,48,52,56,56,53,44,51,53,46,48,49,57,55,49,53,93,44,91,45,57,52,46,48,55,52,52,52,57,44,51,53,46,48,50,54,52,51,50,93,44,91,45,57,52,46,49,52,48,53,55,49,44,51,53,46,48,57,57,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,76,97,98,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,54,55,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,50,49,49,51,44,51,55,46,51,56,51,57,57,93,44,91,45,57,53,46,53,50,50,52,49,53,44,51,54,46,57,57,57,50,56,93,44,91,45,57,53,46,52,48,55,55,51,51,44,51,54,46,57,57,57,51,49,49,93,44,91,45,57,53,46,48,55,51,53,48,52,44,51,54,46,57,57,57,53,53,50,93,44,91,45,57,53,46,48,55,53,49,54,54,44,51,55,46,51,51,57,57,51,55,93,44,91,45,57,53,46,48,56,56,49,56,57,44,51,55,46,51,56,51,56,51,55,93,44,91,45,57,53,46,53,50,49,49,51,44,51,55,46,51,56,51,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,51,56,50,44,34,98,101,100,115,34,58,50,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,48,51,55,44,52,49,46,49,50,53,48,57,51,93,44,91,45,56,48,46,53,49,57,49,53,44,52,48,46,57,48,48,51,50,54,93,44,91,45,56,48,46,53,49,57,48,52,52,44,52,48,46,56,53,49,51,51,57,93,44,91,45,56,48,46,49,53,56,53,51,44,52,48,46,56,53,53,48,57,54,93,44,91,45,56,48,46,49,54,54,52,55,50,44,52,49,46,48,48,48,57,50,56,93,44,91,45,56,48,46,48,57,56,50,57,52,44,52,49,46,48,55,49,48,53,52,93,44,91,45,56,48,46,50,53,55,57,51,51,44,52,49,46,49,50,56,49,54,53,93,44,91,45,56,48,46,53,49,57,48,51,55,44,52,49,46,49,50,53,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,54,57,57,53,49,44,52,48,46,52,51,51,52,56,54,93,44,91,45,56,49,46,50,55,53,51,49,57,44,52,48,46,51,48,51,52,51,52,93,44,91,45,56,49,46,51,51,56,48,53,55,44,52,48,46,50,49,52,50,53,51,93,44,91,45,56,49,46,50,50,53,57,50,52,44,52,48,46,49,55,48,48,55,53,93,44,91,45,56,48,46,56,56,50,56,57,50,44,52,48,46,49,53,57,52,57,53,93,44,91,45,56,48,46,56,54,53,53,48,52,44,52,48,46,52,50,50,57,50,57,93,44,91,45,56,48,46,57,52,49,57,49,49,44,52,48,46,52,50,52,55,93,44,91,45,56,49,46,50,54,57,57,53,49,44,52,48,46,52,51,51,52,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,101,120,97,110,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,49,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,50,56,51,50,52,44,51,53,46,57,57,54,53,56,51,93,44,91,45,56,49,46,51,51,52,50,55,50,44,51,53,46,55,57,54,50,56,49,93,44,91,45,56,49,46,49,52,50,51,51,56,44,51,53,46,56,50,55,52,51,52,93,44,91,45,56,49,46,49,48,57,53,48,55,44,51,53,46,55,55,54,53,57,52,93,44,91,45,56,49,46,48,48,53,53,52,49,44,51,53,46,57,53,56,50,56,55,93,44,91,45,56,49,46,48,50,56,56,51,51,44,51,54,46,48,52,53,54,53,50,93,44,91,45,56,49,46,51,50,56,51,50,52,44,51,53,46,57,57,54,53,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,97,112,101,32,77,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,55,48,53,44,34,98,101,100,115,34,58,50,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,52,54,52,57,51,44,51,57,46,50,57,56,50,51,93,44,91,45,55,52,46,55,53,50,49,54,53,44,51,57,46,50,57,53,48,48,53,93,44,91,45,55,52,46,56,54,49,50,57,52,44,51,57,46,51,50,51,56,49,53,93,44,91,45,55,52,46,57,49,53,54,56,57,44,51,57,46,49,55,53,55,53,53,93,44,91,45,55,53,46,49,54,56,52,54,50,44,51,57,46,48,53,54,49,55,57,93,44,91,45,55,53,46,49,51,56,52,54,49,44,51,57,46,48,48,50,54,57,55,93,44,91,45,55,53,46,48,49,53,49,50,51,44,51,56,46,55,56,56,54,53,55,93,44,91,45,55,52,46,55,50,56,52,48,50,44,51,56,46,57,55,52,50,52,57,93,44,91,45,55,52,46,54,52,52,50,55,57,44,51,57,46,49,49,52,56,50,52,93,44,91,45,55,52,46,52,54,52,57,51,44,51,57,46,50,57,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,104,101,115,104,105,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,50,54,51,44,34,98,101,100,115,34,58,49,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,52,53,50,50,53,49,44,52,51,46,49,54,49,51,53,52,93,44,91,45,55,50,46,52,55,51,48,55,54,44,52,50,46,57,55,50,53,50,56,93,44,91,45,55,50,46,53,51,50,48,50,50,44,52,50,46,57,53,52,57,52,51,93,44,91,45,55,50,46,53,52,49,53,49,51,44,52,50,46,56,48,55,48,57,52,93,44,91,45,55,50,46,52,53,56,52,49,50,44,52,50,46,55,50,54,57,51,51,93,44,91,45,55,50,46,50,56,51,48,52,53,44,52,50,46,55,50,49,54,49,53,93,44,91,45,55,49,46,57,50,56,57,57,51,44,52,50,46,55,49,50,49,48,50,93,44,91,45,55,50,46,48,48,54,49,57,44,52,50,46,57,52,51,55,56,57,93,44,91,45,55,50,46,48,51,56,49,52,57,44,52,51,46,49,50,56,56,48,55,93,44,91,45,55,50,46,49,53,54,54,54,49,44,52,51,46,49,56,49,57,54,56,93,44,91,45,55,50,46,52,53,50,50,53,49,44,52,51,46,49,54,49,51,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,57,50,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,54,49,51,57,51,44,52,56,46,53,52,50,51,52,56,93,44,91,45,57,55,46,49,49,54,53,55,44,52,56,46,50,55,57,54,54,49,93,44,91,45,57,55,46,49,52,49,50,50,49,44,52,56,46,49,57,51,55,49,50,93,44,91,45,57,55,46,49,52,54,55,48,51,44,52,56,46,49,55,51,50,50,51,93,44,91,45,57,54,46,53,48,48,56,52,51,44,52,56,46,49,55,52,49,48,56,93,44,91,45,57,53,46,53,57,51,55,56,56,44,52,56,46,49,55,50,57,49,54,93,44,91,45,57,53,46,54,48,50,51,49,53,44,52,56,46,53,51,56,56,56,55,93,44,91,45,57,54,46,51,56,55,56,51,53,44,52,56,46,53,52,52,51,48,56,93,44,91,45,57,55,46,49,54,51,51,53,53,44,52,56,46,53,52,51,57,54,55,93,44,91,45,57,55,46,49,54,49,51,57,51,44,52,56,46,53,52,50,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,75,105,110,103,32,87,105,108,108,105,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,52,53,50,49,53,44,51,55,46,55,56,57,49,55,53,93,44,91,45,55,55,46,49,50,51,54,55,53,44,51,55,46,54,50,54,56,56,49,93,44,91,45,55,54,46,55,57,50,49,56,52,44,51,55,46,53,49,55,53,57,52,93,44,91,45,55,54,46,55,55,55,55,50,57,44,51,55,46,53,53,52,52,52,54,93,44,91,45,55,54,46,57,50,55,53,44,51,55,46,54,57,48,52,56,53,93,44,91,45,55,55,46,48,51,51,50,55,51,44,51,55,46,55,50,48,56,48,57,93,44,91,45,55,55,46,49,56,49,52,49,56,44,51,55,46,56,57,49,54,53,52,93,44,91,45,55,55,46,51,52,53,50,49,53,44,51,55,46,55,56,57,49,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,72,117,101,114,102,97,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,56,51,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,52,56,53,53,49,54,44,51,55,46,53,55,55,56,57,57,93,44,91,45,49,48,53,46,50,57,53,53,56,55,44,51,55,46,54,53,52,52,49,54,93,44,91,45,49,48,53,46,49,57,51,50,51,55,44,51,55,46,53,57,50,49,54,56,93,44,91,45,49,48,53,46,49,53,52,49,55,54,44,51,55,46,50,57,51,49,50,57,93,44,91,45,49,48,52,46,57,57,53,53,48,53,44,51,55,46,51,55,53,53,53,49,93,44,91,45,49,48,52,46,55,52,56,52,52,55,44,51,55,46,52,48,55,52,51,55,93,44,91,45,49,48,52,46,53,52,56,54,53,50,44,51,55,46,53,55,52,55,93,44,91,45,49,48,52,46,52,53,52,57,51,44,51,55,46,55,52,48,56,51,57,93,44,91,45,49,48,52,46,51,53,49,49,48,57,44,51,55,46,56,49,55,52,56,56,93,44,91,45,49,48,52,46,54,52,54,51,56,51,44,51,55,46,57,48,48,53,50,55,93,44,91,45,49,48,53,46,48,49,51,55,50,57,44,51,55,46,56,56,49,50,55,49,93,44,91,45,49,48,53,46,48,52,57,57,49,55,44,51,55,46,57,49,53,52,55,57,93,44,91,45,49,48,53,46,49,54,56,54,53,50,44,51,56,46,48,49,56,57,52,54,93,44,91,45,49,48,53,46,52,49,51,54,51,53,44,51,55,46,56,57,48,53,50,55,93,44,91,45,49,48,53,46,52,55,51,50,48,52,44,51,55,46,56,57,53,57,55,93,44,91,45,49,48,53,46,52,53,55,50,53,53,44,51,55,46,55,53,49,52,54,52,93,44,91,45,49,48,53,46,52,56,53,53,49,54,44,51,55,46,53,55,55,56,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,53,34,44,34,78,65,77,69,34,58,34,75,97,114,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,56,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,50,56,52,52,51,44,50,57,46,50,50,49,55,52,56,93,44,91,45,57,56,46,49,57,48,57,57,49,44,50,56,46,56,56,50,51,51,51,93,44,91,45,57,56,46,48,57,56,51,49,53,44,50,56,46,55,56,54,57,52,57,93,44,91,45,57,56,46,48,48,53,50,53,50,44,50,56,46,54,57,48,50,51,57,93,44,91,45,57,55,46,57,49,53,49,48,54,44,50,56,46,55,49,57,54,52,56,93,44,91,45,57,55,46,55,55,56,53,51,44,50,56,46,54,54,56,48,50,55,93,44,91,45,57,55,46,53,55,52,54,51,57,44,50,56,46,56,49,51,51,93,44,91,45,57,55,46,55,53,53,49,49,44,50,57,46,48,48,55,49,49,51,93,44,91,45,57,55,46,54,49,51,49,51,50,44,50,57,46,49,48,57,55,54,53,93,44,91,45,57,55,46,55,50,56,52,52,51,44,50,57,46,50,50,49,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,53,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,49,51,54,49,49,44,51,53,46,53,56,56,48,56,57,93,44,91,45,56,56,46,54,55,53,56,54,55,44,51,53,46,52,56,57,49,54,51,93,44,91,45,56,56,46,56,52,49,54,48,55,44,51,53,46,52,50,55,56,50,54,93,44,91,45,56,56,46,55,56,49,55,54,56,44,51,53,46,50,52,55,53,56,55,93,44,91,45,56,56,46,55,49,57,55,54,49,44,51,53,46,50,52,55,53,53,93,44,91,45,56,56,46,54,52,48,57,51,52,44,51,53,46,51,54,49,48,49,55,93,44,91,45,56,56,46,51,54,50,53,55,50,44,51,53,46,51,56,48,57,57,52,93,44,91,45,56,56,46,51,54,48,56,50,57,44,51,53,46,52,49,56,57,55,50,93,44,91,45,56,56,46,52,49,52,53,56,50,44,51,53,46,52,56,50,51,51,57,93,44,91,45,56,56,46,54,49,51,54,49,49,44,51,53,46,53,56,56,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,52,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,57,57,49,48,53,44,51,57,46,55,57,48,48,54,93,44,91,45,57,48,46,54,52,53,57,57,44,51,57,46,55,48,51,51,54,56,93,44,91,45,57,48,46,53,56,49,48,53,53,44,51,57,46,53,50,49,55,50,56,93,44,91,45,57,48,46,51,48,49,56,51,49,44,51,57,46,53,50,48,51,52,52,93,44,91,45,57,48,46,51,48,48,54,54,54,44,51,57,46,54,51,54,53,52,49,93,44,91,45,57,48,46,51,55,49,50,53,54,44,51,57,46,55,53,51,49,50,50,93,44,91,45,57,48,46,53,57,57,49,48,53,44,51,57,46,55,57,48,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,77,105,108,108,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,51,51,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,48,49,54,48,48,51,44,51,57,46,51,49,52,53,54,49,93,44,91,45,49,49,50,46,49,56,56,57,50,50,44,51,57,46,51,50,57,51,57,50,93,44,91,45,49,49,50,46,50,49,50,48,52,53,44,51,57,46,53,53,51,57,56,55,93,44,91,45,49,49,51,46,49,48,55,52,55,53,44,51,57,46,53,53,50,53,49,51,93,44,91,45,49,49,51,46,56,49,53,55,52,51,44,51,57,46,53,53,50,54,52,52,93,44,91,45,49,49,52,46,48,52,55,54,52,57,44,51,57,46,53,52,50,55,52,50,93,44,91,45,49,49,52,46,48,52,57,56,48,55,44,51,56,46,54,55,55,51,54,53,93,44,91,45,49,49,52,46,48,52,57,57,55,55,44,51,56,46,53,55,50,57,55,52,93,44,91,45,49,49,50,46,53,49,53,51,57,52,44,51,56,46,53,55,50,56,52,53,93,44,91,45,49,49,50,46,52,52,55,53,49,55,44,51,56,46,54,56,49,50,55,93,44,91,45,49,49,50,46,51,48,57,57,53,51,44,51,56,46,54,55,54,50,57,93,44,91,45,49,49,50,46,50,49,56,51,53,54,44,51,56,46,55,50,55,51,54,49,93,44,91,45,49,49,50,46,50,50,52,52,54,49,44,51,56,46,56,54,52,56,48,51,93,44,91,45,49,49,50,46,48,49,52,48,56,51,44,51,57,46,48,52,53,53,49,56,93,44,91,45,49,49,50,46,48,49,54,48,48,51,44,51,57,46,51,49,52,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,57,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,53,54,50,52,55,44,52,49,46,49,51,57,48,56,51,93,44,91,45,49,49,49,46,56,49,53,52,49,52,44,52,48,46,57,53,55,52,51,93,44,91,45,49,49,49,46,55,51,56,55,52,52,44,52,48,46,56,54,48,57,57,56,93,44,91,45,49,49,49,46,54,52,49,48,53,50,44,52,48,46,55,57,56,57,50,53,93,44,91,45,49,49,49,46,53,50,55,52,54,53,44,52,48,46,55,56,53,55,53,50,93,44,91,45,49,49,49,46,52,56,54,49,53,57,44,52,48,46,56,55,51,49,50,52,93,44,91,45,49,49,49,46,53,48,55,53,49,44,52,49,46,48,54,51,50,51,52,93,44,91,45,49,49,49,46,50,54,52,57,55,52,44,52,49,46,49,52,52,48,52,52,93,44,91,45,49,49,49,46,50,50,53,56,50,51,44,52,49,46,49,57,49,48,49,55,93,44,91,45,49,49,49,46,50,57,52,56,56,54,44,52,49,46,51,50,57,57,54,57,93,44,91,45,49,49,49,46,52,50,48,55,50,56,44,52,49,46,51,54,49,51,48,56,93,44,91,45,49,49,49,46,52,57,54,56,49,53,44,52,49,46,50,51,48,54,49,93,44,91,45,49,49,49,46,54,53,56,54,51,54,44,52,49,46,49,56,53,55,49,56,93,44,91,45,49,49,49,46,56,53,55,55,57,57,44,52,49,46,49,57,55,55,53,51,93,44,91,45,49,49,49,46,56,53,54,50,52,55,44,52,49,46,49,51,57,48,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,55,34,44,34,78,65,77,69,34,58,34,75,97,117,102,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,57,49,48,44,34,98,101,100,115,34,58,51,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,49,56,57,55,44,51,50,46,56,49,51,54,49,54,93,44,91,45,57,54,46,53,50,57,57,56,55,44,51,50,46,53,52,53,50,56,50,93,44,91,45,57,54,46,52,51,53,50,51,51,44,51,50,46,52,48,56,57,56,54,93,44,91,45,57,54,46,52,53,50,49,51,56,44,51,50,46,51,53,56,54,51,49,93,44,91,45,57,54,46,48,55,53,56,57,57,44,51,50,46,51,53,55,53,48,53,93,44,91,45,57,54,46,48,55,54,56,48,49,44,51,50,46,56,51,56,52,56,57,93,44,91,45,57,54,46,50,57,55,51,50,50,44,51,50,46,56,52,49,55,50,51,93,44,91,45,57,54,46,53,49,56,57,55,44,51,50,46,56,49,51,54,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,108,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,52,57,53,52,52,44,51,51,46,54,53,50,54,57,55,93,44,91,45,49,48,57,46,52,57,53,55,52,44,51,51,46,48,55,56,52,48,57,93,44,91,45,49,48,57,46,50,52,53,48,48,53,44,51,50,46,55,52,49,57,56,53,93,44,91,45,49,48,57,46,50,48,54,50,52,57,44,51,50,46,54,51,53,56,48,51,93,44,91,45,49,48,57,46,50,50,54,48,55,44,51,50,46,53,50,57,48,57,54,93,44,91,45,49,48,57,46,49,49,52,49,56,44,51,50,46,52,50,54,51,53,51,93,44,91,45,49,48,57,46,48,52,55,57,49,56,44,51,50,46,52,50,54,51,55,54,93,44,91,45,49,48,57,46,48,52,55,54,52,51,44,51,50,46,55,55,55,56,48,50,93,44,91,45,49,48,57,46,48,52,55,53,55,56,44,51,51,46,50,48,56,56,57,56,93,44,91,45,49,48,57,46,48,52,54,55,49,55,44,51,51,46,55,55,55,52,48,55,93,44,91,45,49,48,57,46,51,52,56,53,56,49,44,51,51,46,55,55,56,49,50,51,93,44,91,45,49,48,57,46,52,57,53,52,52,44,51,51,46,54,53,50,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,77,97,114,105,99,111,112,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,53,51,57,49,51,44,34,98,101,100,115,34,58,49,48,57,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,52,57,52,55,55,56,44,51,51,46,57,57,57,56,49,55,93,44,91,45,49,49,49,46,55,50,53,51,49,44,51,51,46,57,57,57,56,52,57,93,44,91,45,49,49,50,46,49,54,51,50,53,51,44,51,52,46,48,52,55,52,55,49,93,44,91,45,49,49,50,46,50,55,54,48,52,44,51,51,46,56,56,50,51,49,50,93,44,91,45,49,49,50,46,55,52,51,57,53,49,44,51,51,46,57,57,57,56,57,56,93,44,91,45,49,49,51,46,51,51,51,55,53,51,44,51,51,46,57,57,57,50,50,55,93,44,91,45,49,49,51,46,51,51,53,48,52,56,44,51,51,46,51,55,55,52,54,57,93,44,91,45,49,49,51,46,51,51,51,56,57,52,44,51,50,46,53,48,53,49,56,56,93,44,91,45,49,49,50,46,50,48,51,54,50,52,44,51,50,46,53,48,54,55,50,49,93,44,91,45,49,49,50,46,49,57,49,54,48,56,44,51,51,46,50,54,52,54,57,56,93,44,91,45,49,49,50,46,48,56,49,57,52,54,44,51,51,46,50,48,52,54,56,54,93,44,91,45,49,49,49,46,53,56,50,54,51,49,44,51,51,46,50,48,53,52,48,56,93,44,91,45,49,49,49,46,53,56,48,54,51,52,44,51,51,46,52,54,53,56,93,44,91,45,49,49,49,46,48,51,57,57,55,54,44,51,51,46,52,54,54,48,49,57,93,44,91,45,49,49,49,46,49,53,51,51,53,52,44,51,51,46,54,55,55,54,48,54,93,44,91,45,49,49,49,46,50,54,49,55,51,44,51,51,46,54,50,50,53,55,49,93,44,91,45,49,49,49,46,51,56,54,56,49,50,44,51,51,46,55,53,48,48,52,52,93,44,91,45,49,49,49,46,51,55,50,51,49,55,44,51,51,46,56,50,51,57,50,52,93,44,91,45,49,49,49,46,52,57,52,55,55,56,44,51,51,46,57,57,57,56,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,79,103,101,109,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,50,56,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,54,54,51,52,44,52,52,46,53,48,56,57,55,54,93,44,91,45,56,52,46,51,55,48,54,52,51,44,52,52,46,53,48,55,50,50,51,93,44,91,45,56,52,46,51,54,56,48,51,57,44,52,52,46,49,54,48,53,51,56,93,44,91,45,56,52,46,49,54,54,49,48,55,44,52,52,46,49,54,49,55,56,56,93,44,91,45,56,51,46,56,56,51,57,55,55,44,52,52,46,49,54,49,55,56,54,93,44,91,45,56,51,46,56,56,54,54,51,52,44,52,52,46,53,48,56,57,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,50,56,48,50,54,44,51,54,46,52,49,49,56,51,54,93,44,91,45,56,53,46,56,52,54,52,56,51,44,51,54,46,50,56,56,49,54,55,93,44,91,45,56,53,46,55,56,48,49,52,56,44,51,54,46,50,51,56,48,49,49,93,44,91,45,56,53,46,54,51,52,49,53,56,44,51,54,46,50,49,51,51,52,54,93,44,91,45,56,53,46,52,57,53,49,50,52,44,51,54,46,51,48,50,50,55,56,93,44,91,45,56,53,46,52,57,53,52,50,50,44,51,54,46,52,48,51,48,55,52,93,44,91,45,56,53,46,55,48,52,48,55,53,44,51,54,46,53,50,50,51,57,53,93,44,91,45,56,53,46,56,49,51,56,56,53,44,51,54,46,52,57,57,52,55,51,93,44,91,45,56,53,46,56,50,56,48,50,54,44,51,54,46,52,49,49,56,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,56,49,44,34,98,101,100,115,34,58,49,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,52,53,57,49,57,44,51,56,46,56,53,48,49,52,56,93,44,91,45,56,56,46,50,53,56,53,56,51,44,51,56,46,56,52,55,53,50,57,93,44,91,45,56,56,46,50,53,51,57,55,56,44,51,56,46,53,57,57,53,48,50,93,44,91,45,56,56,46,49,52,55,56,48,51,44,51,56,46,53,54,57,48,51,55,93,44,91,45,56,55,46,57,53,52,54,55,53,44,51,56,46,53,55,48,50,51,93,44,91,45,56,55,46,57,49,50,50,56,54,44,51,56,46,53,55,48,49,48,52,93,44,91,45,56,55,46,57,48,56,49,49,51,44,51,56,46,56,53,48,49,48,55,93,44,91,45,56,55,46,57,52,53,57,49,57,44,51,56,46,56,53,48,49,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,108,111,117,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,54,52,53,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,53,51,48,50,44,51,52,46,50,53,57,51,49,55,93,44,91,45,56,54,46,53,49,57,54,48,51,44,51,52,46,50,53,49,55,54,54,93,44,91,45,56,54,46,53,57,57,55,56,53,44,51,52,46,49,50,49,55,50,93,44,91,45,56,54,46,54,56,55,54,57,55,44,51,52,46,48,56,48,55,51,53,93,44,91,45,56,54,46,55,54,51,57,57,57,44,51,51,46,57,55,52,49,56,55,93,44,91,45,56,54,46,57,54,51,51,53,56,44,51,51,46,56,53,56,50,50,49,93,44,91,45,56,54,46,57,53,51,54,54,52,44,51,51,46,56,49,53,50,57,55,93,44,91,45,56,54,46,55,53,57,49,52,52,44,51,51,46,56,52,48,54,49,55,93,44,91,45,56,54,46,53,55,55,55,57,57,44,51,51,46,55,54,53,51,49,54,93,44,91,45,56,54,46,52,48,53,57,56,49,44,51,51,46,56,51,53,56,57,54,93,44,91,45,56,54,46,51,50,53,54,50,50,44,51,51,46,57,52,48,49,52,55,93,44,91,45,56,54,46,51,48,51,53,49,54,44,51,52,46,48,57,57,48,55,51,93,44,91,45,56,54,46,52,53,51,48,50,44,51,52,46,50,53,57,51,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,76,105,98,101,114,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,55,52,51,48,54,52,44,52,56,46,57,57,56,54,48,54,93,44,91,45,49,49,49,46,50,54,57,56,54,50,44,52,56,46,57,57,55,50,51,93,44,91,45,49,49,49,46,50,55,53,51,48,54,44,52,56,46,50,49,57,53,51,49,93,44,91,45,49,49,49,46,52,48,57,48,49,56,44,52,56,46,50,49,57,53,52,50,93,44,91,45,49,49,49,46,52,48,57,48,57,55,44,52,56,46,49,51,50,50,49,56,93,44,91,45,49,49,48,46,56,50,55,49,54,56,44,52,56,46,49,51,51,50,48,53,93,44,91,45,49,49,48,46,55,53,53,56,55,51,44,52,56,46,50,49,57,54,48,49,93,44,91,45,49,49,48,46,55,52,51,48,54,52,44,52,56,46,57,57,56,54,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,68,117,118,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,51,51,50,53,44,50,56,46,48,53,55,52,56,93,44,91,45,57,56,46,55,57,56,51,50,51,44,50,55,46,51,53,52,48,50,57,93,44,91,45,57,56,46,53,53,50,54,49,55,44,50,55,46,51,53,57,49,48,49,93,44,91,45,57,56,46,53,50,51,50,56,52,44,50,55,46,50,54,53,49,53,93,44,91,45,57,56,46,50,51,50,52,54,52,44,50,55,46,50,54,50,52,56,55,93,44,91,45,57,56,46,50,51,53,52,57,55,44,50,56,46,48,53,55,57,54,54,93,44,91,45,57,56,46,51,51,52,51,50,51,44,50,56,46,48,53,55,56,93,44,91,45,57,56,46,56,48,51,51,50,53,44,50,56,46,48,53,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,82,97,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,49,53,50,52,55,44,51,57,46,54,53,55,54,52,52,93,44,91,45,57,49,46,55,49,55,57,54,56,44,51,57,46,51,51,57,49,50,50,93,44,91,45,57,49,46,52,51,56,50,51,53,44,51,57,46,51,49,56,55,49,54,93,44,91,45,57,49,46,52,54,48,52,52,50,44,51,57,46,52,53,48,55,50,50,93,44,91,45,57,49,46,49,55,56,48,49,50,44,51,57,46,53,57,56,49,57,54,93,44,91,45,57,49,46,51,48,54,54,57,51,44,51,57,46,54,56,52,56,54,53,93,44,91,45,57,49,46,55,49,53,52,57,55,44,51,57,46,54,56,54,52,57,50,93,44,91,45,57,49,46,55,49,53,50,52,55,44,51,57,46,54,53,55,54,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,52,55,53,44,34,98,101,100,115,34,58,49,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,56,54,56,51,52,44,51,50,46,53,52,57,52,50,56,93,44,91,45,57,55,46,53,53,48,53,56,50,44,51,50,46,53,53,53,51,57,49,93,44,91,45,57,55,46,54,49,55,48,54,54,44,51,50,46,53,53,53,52,56,52,93,44,91,45,57,55,46,54,49,53,50,56,54,44,51,50,46,51,49,56,54,49,56,93,44,91,45,57,55,46,54,49,53,48,53,53,44,51,50,46,50,48,51,53,56,49,93,44,91,45,57,55,46,52,55,54,48,56,54,44,51,50,46,49,55,51,52,54,93,44,91,45,57,55,46,48,56,54,49,57,49,44,51,50,46,50,54,53,52,53,49,93,44,91,45,57,55,46,48,56,54,56,51,52,44,51,50,46,53,52,57,52,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,50,55,51,50,57,44,51,49,46,55,54,50,53,54,51,93,44,91,45,56,53,46,48,52,53,52,57,53,44,51,49,46,53,49,55,49,50,57,93,44,91,45,56,52,46,56,49,57,56,48,55,44,51,49,46,53,48,49,49,57,50,93,44,91,45,56,52,46,56,49,55,56,52,51,44,51,49,46,54,49,57,55,55,49,93,44,91,45,56,52,46,57,52,50,51,53,51,44,51,49,46,54,49,56,54,54,57,93,44,91,45,56,52,46,57,53,56,54,52,44,51,49,46,55,55,55,56,53,52,93,44,91,45,56,53,46,49,52,49,49,51,44,51,49,46,55,56,48,52,54,51,93,44,91,45,56,53,46,49,50,55,51,50,57,44,51,49,46,55,54,50,53,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,56,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,54,55,50,50,50,56,44,52,52,46,57,57,53,49,49,55,93,44,91,45,49,49,57,46,54,53,50,52,51,49,44,52,52,46,56,50,51,50,57,57,93,44,91,45,49,49,57,46,54,53,53,53,49,55,44,52,52,46,51,48,55,48,52,53,93,44,91,45,49,49,57,46,54,53,55,49,56,51,44,52,51,46,57,53,56,57,50,93,44,91,45,49,49,56,46,56,49,54,57,51,49,44,52,51,46,57,54,48,55,51,51,93,44,91,45,49,49,56,46,56,49,54,56,57,44,52,52,46,48,52,55,56,50,56,93,44,91,45,49,49,56,46,50,50,55,54,52,53,44,52,52,46,48,51,57,56,54,50,93,44,91,45,49,49,56,46,50,51,50,50,49,52,44,52,52,46,50,53,54,49,50,57,93,44,91,45,49,49,56,46,52,57,55,52,57,57,44,52,52,46,50,53,53,50,52,56,93,44,91,45,49,49,56,46,52,48,57,55,55,52,44,52,52,46,51,55,56,54,49,57,93,44,91,45,49,49,56,46,52,50,50,49,55,51,44,52,52,46,52,52,56,57,56,52,93,44,91,45,49,49,56,46,51,48,53,55,55,56,44,52,52,46,53,56,56,56,49,93,44,91,45,49,49,56,46,53,49,54,52,53,50,44,52,52,46,55,48,50,52,54,50,93,44,91,45,49,49,56,46,50,56,53,52,51,57,44,52,52,46,55,53,48,57,55,53,93,44,91,45,49,49,56,46,51,49,56,55,50,53,44,52,52,46,56,51,54,50,55,57,93,44,91,45,49,49,56,46,50,52,52,54,54,50,44,52,52,46,57,53,56,51,57,54,93,44,91,45,49,49,56,46,53,49,56,54,56,57,44,52,52,46,57,57,53,56,55,55,93,44,91,45,49,49,57,46,49,54,50,57,54,54,44,52,52,46,57,57,54,50,52,49,93,44,91,45,49,49,57,46,54,55,50,50,50,56,44,52,52,46,57,57,53,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,111,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,51,48,56,44,34,98,101,100,115,34,58,50,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,50,57,48,50,51,54,44,52,51,46,54,49,48,57,53,57,93,44,91,45,49,50,52,46,51,56,48,50,55,52,44,52,51,46,52,48,50,56,52,54,93,44,91,45,49,50,52,46,52,55,54,57,52,56,44,52,51,46,51,50,57,51,55,49,93,44,91,45,49,50,52,46,52,54,53,50,51,53,44,52,51,46,50,48,48,51,48,56,93,44,91,45,49,50,52,46,53,53,50,51,55,51,44,52,50,46,57,53,52,51,49,49,93,44,91,45,49,50,52,46,50,53,56,51,56,56,44,52,50,46,57,53,52,57,52,54,93,44,91,45,49,50,52,46,49,54,49,51,48,56,44,52,50,46,56,56,51,52,57,57,93,44,91,45,49,50,52,46,49,51,56,55,52,56,44,52,50,46,54,55,49,49,49,53,93,44,91,45,49,50,51,46,57,57,54,50,57,49,44,52,50,46,54,56,53,54,53,49,93,44,91,45,49,50,51,46,57,50,53,55,49,55,44,52,50,46,55,55,52,53,49,52,93,44,91,45,49,50,51,46,56,49,49,53,53,51,44,52,50,46,55,56,56,56,51,55,93,44,91,45,49,50,51,46,56,50,49,49,49,56,44,52,50,46,57,57,54,50,57,49,93,44,91,45,49,50,51,46,55,48,50,49,52,52,44,52,51,46,48,56,55,48,56,51,93,44,91,45,49,50,51,46,55,48,52,55,53,50,44,52,51,46,50,53,55,55,52,49,93,44,91,45,49,50,51,46,55,54,49,53,50,56,44,52,51,46,52,50,50,50,57,52,93,44,91,45,49,50,51,46,56,55,53,54,50,56,44,52,51,46,53,49,53,57,52,55,93,44,91,45,49,50,51,46,56,55,53,54,57,56,44,52,51,46,54,48,56,52,48,55,93,44,91,45,49,50,52,46,50,57,48,50,51,54,44,52,51,46,54,49,48,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,48,56,53,57,51,44,51,51,46,51,55,55,49,57,93,44,91,45,57,53,46,51,48,56,57,53,55,44,51,50,46,57,54,50,53,55,50,93,44,91,45,57,53,46,49,53,50,50,48,54,44,51,51,46,48,49,51,52,53,93,44,91,45,57,53,46,49,50,54,49,51,44,51,51,46,48,51,52,53,56,49,93,44,91,45,57,53,46,49,50,53,52,53,49,44,51,51,46,51,56,57,52,53,52,93,44,91,45,57,53,46,51,48,54,54,52,44,51,51,46,51,55,56,48,50,55,93,44,91,45,57,53,46,51,48,56,53,57,51,44,51,51,46,51,55,55,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,52,56,48,44,34,98,101,100,115,34,58,52,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,48,53,55,48,48,53,44,52,51,46,55,52,52,53,49,51,93,44,91,45,55,52,46,50,49,52,54,50,53,44,52,51,46,55,50,56,55,48,51,93,44,91,45,55,52,46,49,54,48,49,44,52,51,46,51,55,49,53,51,50,93,44,91,45,55,51,46,56,56,52,49,51,57,44,52,51,46,51,57,56,48,52,49,93,44,91,45,55,51,46,55,56,57,55,51,49,44,52,51,46,50,52,52,52,50,49,93,44,91,45,55,51,46,53,57,52,57,54,44,52,51,46,51,48,54,49,49,56,93,44,91,45,55,51,46,54,50,56,57,52,44,52,51,46,52,56,54,51,57,49,93,44,91,45,55,51,46,52,57,52,51,49,52,44,52,51,46,54,53,51,57,54,54,93,44,91,45,55,51,46,52,51,56,49,50,44,52,51,46,56,48,51,54,56,55,93,44,91,45,55,52,46,48,53,55,48,48,53,44,52,51,46,55,52,52,53,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,51,56,49,55,54,44,51,56,46,54,50,55,51,49,50,93,44,91,45,55,56,46,52,53,50,56,48,49,44,51,56,46,52,55,53,53,50,55,93,44,91,45,55,56,46,52,50,57,54,50,54,44,51,56,46,51,54,54,55,48,52,93,44,91,45,55,56,46,50,56,56,56,51,55,44,51,56,46,50,55,50,54,53,54,93,44,91,45,55,56,46,50,50,49,49,48,52,44,51,56,46,50,51,48,48,56,57,93,44,91,45,55,56,46,48,57,52,52,57,56,44,51,56,46,51,49,49,50,52,50,93,44,91,45,55,56,46,48,57,54,48,56,51,44,51,56,46,52,48,52,51,52,51,93,44,91,45,55,56,46,50,51,49,56,48,51,44,51,56,46,53,51,50,53,51,57,93,44,91,45,55,56,46,51,51,56,49,55,54,44,51,56,46,54,50,55,51,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,116,111,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,57,50,48,52,51,44,51,52,46,54,56,48,53,53,54,93,44,91,45,57,54,46,48,57,50,48,49,50,44,51,52,46,53,48,54,48,53,57,93,44,91,45,57,54,46,49,52,53,52,50,51,44,51,52,46,52,49,56,51,49,51,93,44,91,45,57,54,46,52,48,55,48,55,52,44,51,52,46,52,49,56,51,57,93,44,91,45,57,54,46,52,48,55,53,49,55,44,51,52,46,49,53,55,51,49,55,93,44,91,45,57,53,46,57,57,49,53,55,56,44,51,52,46,49,53,54,56,48,53,93,44,91,45,57,53,46,55,55,57,51,55,54,44,51,52,46,49,53,54,54,57,57,93,44,91,45,57,53,46,55,55,57,49,51,52,44,51,52,46,53,48,54,54,52,52,93,44,91,45,57,53,46,54,55,49,55,53,44,51,52,46,53,48,54,55,57,52,93,44,91,45,57,53,46,54,55,49,56,49,44,51,52,46,53,57,51,55,51,50,93,44,91,45,57,53,46,56,56,49,57,56,55,44,51,52,46,53,57,51,53,50,56,93,44,91,45,57,53,46,56,56,50,49,57,54,44,51,52,46,54,56,48,53,51,52,93,44,91,45,57,54,46,48,57,50,48,52,51,44,51,52,46,54,56,48,53,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,77,101,110,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,57,53,48,57,44,52,48,46,49,48,56,57,48,56,93,44,91,45,56,57,46,57,57,52,53,48,54,44,51,57,46,57,48,49,57,50,53,93,44,91,45,56,57,46,55,54,57,49,54,56,44,51,57,46,57,48,50,51,53,93,44,91,45,56,57,46,54,57,56,50,53,57,44,51,57,46,57,55,53,51,48,57,93,44,91,45,56,57,46,53,55,56,50,56,57,44,51,57,46,57,55,54,49,50,55,93,44,91,45,56,57,46,54,48,49,54,56,56,44,52,48,46,49,50,50,51,55,56,93,44,91,45,56,57,46,57,55,52,54,48,52,44,52,48,46,49,51,53,55,48,53,93,44,91,45,56,57,46,57,57,53,48,57,44,52,48,46,49,48,56,57,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,97,114,116,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,54,50,48,44,34,98,101,100,115,34,58,49,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,48,53,55,55,53,44,51,52,46,51,57,50,52,52,54,93,44,91,45,56,53,46,48,52,54,56,55,49,44,51,52,46,48,57,54,52,49,50,93,44,91,45,56,52,46,57,50,50,55,52,50,44,51,52,46,48,56,50,52,57,55,93,44,91,45,56,52,46,55,51,55,56,51,54,44,51,52,46,48,55,57,51,57,57,93,44,91,45,56,52,46,54,53,57,50,52,49,44,51,52,46,48,55,56,50,52,93,44,91,45,56,52,46,54,53,51,50,51,50,44,51,52,46,52,49,50,53,57,93,44,91,45,56,53,46,48,48,53,55,55,53,44,51,52,46,51,57,50,52,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,51,54,50,44,34,98,101,100,115,34,58,56,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,53,52,49,57,44,50,56,46,57,54,48,48,53,51,93,44,91,45,56,49,46,57,53,55,54,52,49,44,50,56,46,51,52,53,49,56,93,44,91,45,56,49,46,54,53,55,50,54,56,44,50,56,46,51,52,55,48,57,56,93,44,91,45,56,49,46,54,53,56,53,57,55,44,50,56,46,55,54,54,56,55,93,44,91,45,56,49,46,52,49,52,52,52,54,44,50,56,46,55,56,52,57,53,53,93,44,91,45,56,49,46,51,54,54,57,52,44,50,56,46,56,55,57,50,50,55,93,44,91,45,56,49,46,51,53,52,53,53,52,44,50,56,46,57,56,52,51,55,53,93,44,91,45,56,49,46,53,48,50,48,53,53,44,50,57,46,48,57,55,56,48,50,93,44,91,45,56,49,46,53,51,50,53,55,54,44,50,57,46,49,55,55,54,49,53,93,44,91,45,56,49,46,54,52,49,57,49,54,44,50,57,46,50,55,54,55,54,54,93,44,91,45,56,49,46,54,53,56,54,57,56,44,50,56,46,57,54,48,51,52,53,93,44,91,45,56,49,46,57,53,52,49,57,44,50,56,46,57,54,48,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,79,107,109,117,108,103,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,56,57,44,34,98,101,100,115,34,58,49,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,51,51,49,49,56,44,51,53,46,56,53,54,56,50,52,93,44,91,45,57,54,46,49,57,50,52,48,51,44,51,53,46,56,53,54,57,57,51,93,44,91,45,57,54,46,49,57,50,53,54,51,44,51,53,46,54,51,57,48,56,55,93,44,91,45,57,54,46,48,56,55,55,55,55,44,51,53,46,53,53,50,48,48,51,93,44,91,45,57,54,46,48,56,55,53,51,44,51,53,46,51,55,54,56,55,55,93,44,91,45,57,53,46,57,56,49,52,54,53,44,51,53,46,51,55,54,55,56,56,93,44,91,45,57,53,46,56,55,53,52,48,53,44,51,53,46,51,55,54,54,57,93,44,91,45,57,53,46,56,50,50,51,54,49,44,51,53,46,53,53,49,54,57,51,93,44,91,45,57,53,46,55,49,50,57,53,51,44,51,53,46,53,53,49,55,51,56,93,44,91,45,57,53,46,55,49,51,48,56,49,44,51,53,46,55,50,53,56,48,55,93,44,91,45,57,53,46,55,54,54,49,49,52,44,51,53,46,56,53,54,50,56,52,93,44,91,45,57,53,46,56,49,57,52,53,57,44,51,53,46,56,53,54,50,53,53,93,44,91,45,57,54,46,48,51,51,49,49,56,44,51,53,46,56,53,54,56,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,83,104,101,114,105,100,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,56,53,49,55,57,44,52,55,46,56,52,55,55,54,49,93,44,91,45,49,48,48,46,53,56,53,48,54,50,44,52,55,46,54,55,52,48,56,56,93,44,91,45,49,48,48,46,54,55,50,50,54,50,44,52,55,46,54,55,52,49,50,56,93,44,91,45,49,48,48,46,54,55,51,50,49,44,52,55,46,51,50,55,54,52,54,93,44,91,45,49,48,48,46,49,49,51,50,54,49,44,52,55,46,51,50,55,50,54,50,93,44,91,45,49,48,48,46,48,51,51,50,57,50,44,52,55,46,51,50,55,49,54,53,93,44,91,45,49,48,48,46,48,51,50,56,48,55,44,52,55,46,54,55,51,54,54,57,93,44,91,45,49,48,48,46,48,54,57,51,49,49,44,52,55,46,56,52,55,52,51,49,93,44,91,45,49,48,48,46,49,57,55,57,57,54,44,52,55,46,56,52,55,54,53,50,93,44,91,45,49,48,48,46,53,56,53,49,55,57,44,52,55,46,56,52,55,55,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,49,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,52,53,53,54,49,44,52,49,46,48,52,50,56,55,54,93,44,91,45,56,54,46,48,55,53,57,51,57,44,52,49,46,48,56,52,56,55,56,93,44,91,45,56,54,46,48,55,55,53,53,49,44,52,49,46,49,55,50,56,54,56,93,44,91,45,56,54,46,52,54,55,48,52,54,44,52,49,46,49,55,49,52,52,50,93,44,91,45,56,54,46,52,54,56,53,48,57,44,52,48,46,57,48,57,56,56,57,93,44,91,45,56,54,46,49,54,57,48,49,50,44,52,48,46,57,48,57,56,51,54,93,44,91,45,56,54,46,49,54,56,52,53,57,44,52,48,46,57,57,54,48,57,55,93,44,91,45,56,53,46,57,52,54,52,51,54,44,52,48,46,57,57,57,49,57,53,93,44,91,45,56,53,46,57,52,53,53,54,49,44,52,49,46,48,52,50,56,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,53,53,48,50,44,34,98,101,100,115,34,58,49,56,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,55,51,56,50,44,51,57,46,48,52,52,48,56,54,93,44,91,45,57,52,46,56,55,50,52,52,50,44,51,57,46,48,53,57,48,56,56,93,44,91,45,57,52,46,57,48,56,55,54,53,44,51,56,46,57,57,49,52,48,49,93,44,91,45,57,53,46,48,53,54,50,53,56,44,51,56,46,57,56,50,49,50,93,44,91,45,57,53,46,48,53,54,52,49,50,44,51,56,46,55,51,56,53,56,55,93,44,91,45,57,52,46,54,48,57,48,56,44,51,56,46,55,51,56,48,57,57,93,44,91,45,57,52,46,54,48,56,48,51,51,44,51,56,46,56,52,55,50,48,55,93,44,91,45,57,52,46,54,48,55,51,56,50,44,51,57,46,48,52,52,48,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,97,108,118,101,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,48,56,50,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,56,54,51,53,56,44,51,56,46,55,52,56,52,55,53,93,44,91,45,55,54,46,54,55,53,52,53,55,44,51,56,46,53,51,53,56,55,54,93,44,91,45,55,54,46,54,55,52,49,49,56,44,51,56,46,52,57,57,54,50,50,93,44,91,45,55,54,46,52,52,53,51,51,52,44,51,56,46,51,48,53,50,49,93,44,91,45,55,54,46,51,50,49,57,48,56,44,51,56,46,51,50,55,50,56,52,93,44,91,45,55,54,46,52,51,56,56,49,52,44,51,56,46,53,55,53,51,51,54,93,44,91,45,55,54,46,52,54,51,54,51,54,44,51,56,46,55,49,49,48,57,57,93,44,91,45,55,54,46,54,56,54,51,53,56,44,51,56,46,55,52,56,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,98,117,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,56,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,52,57,54,51,54,44,52,54,46,49,53,55,53,57,55,93,44,91,45,57,50,46,48,51,49,52,49,55,44,52,53,46,54,51,57,57,50,56,93,44,91,45,57,49,46,53,52,48,50,57,52,44,52,53,46,54,51,55,54,48,53,93,44,91,45,57,49,46,53,53,49,50,56,50,44,52,54,46,49,53,55,48,52,53,93,44,91,45,57,50,46,48,52,57,54,51,54,44,52,54,46,49,53,55,53,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,57,53,50,51,56,54,44,52,56,46,51,52,57,55,48,54,93,44,91,45,49,50,50,46,57,52,57,49,54,55,44,52,55,46,56,54,54,56,50,50,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,56,56,49,48,56,93,44,91,45,49,50,52,46,55,49,53,48,49,54,44,52,55,46,56,55,57,56,53,57,93,44,91,45,49,50,52,46,52,54,49,52,48,50,44,52,55,46,54,50,52,57,54,93,44,91,45,49,50,52,46,52,50,57,53,53,51,44,52,55,46,53,51,50,57,52,57,93,44,91,45,49,50,52,46,48,52,54,55,52,44,52,55,46,53,49,56,53,50,53,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,53,49,55,55,49,54,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,54,48,52,54,49,53,93,44,91,45,49,50,50,46,57,53,48,54,50,49,44,52,55,46,54,48,54,51,48,56,93,44,91,45,49,50,50,46,55,56,51,50,51,55,44,52,55,46,54,55,50,55,53,52,93,44,91,45,49,50,50,46,55,50,49,57,55,49,44,52,55,46,55,56,55,54,54,53,93,44,91,45,49,50,50,46,53,57,57,51,54,52,44,52,55,46,56,55,52,56,49,53,93,44,91,45,49,50,50,46,54,48,54,55,54,44,52,55,46,57,55,50,57,53,51,93,44,91,45,49,50,50,46,54,52,50,50,53,54,44,52,56,46,48,57,51,55,55,93,44,91,45,49,50,50,46,56,54,50,54,56,52,44,52,56,46,50,52,51,54,53,56,93,44,91,45,49,50,50,46,56,54,51,48,55,56,44,52,56,46,51,55,48,51,54,49,93,44,91,45,49,50,50,46,57,53,50,51,56,54,44,52,56,46,51,52,57,55,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,103,117,97,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,54,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,50,52,57,51,56,52,44,49,56,46,52,49,56,57,50,52,93,44,91,45,54,55,46,49,56,50,56,53,50,44,49,56,46,51,49,51,48,50,54,93,44,91,45,54,55,46,49,51,48,49,54,55,44,49,56,46,51,49,55,57,50,55,93,44,91,45,54,55,46,49,51,50,50,49,44,49,56,46,51,56,57,51,57,49,93,44,91,45,54,55,46,50,48,55,57,51,55,44,49,56,46,52,52,50,50,56,93,44,91,45,54,55,46,50,52,57,51,56,52,44,49,56,46,52,49,56,57,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,87,105,110,111,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,56,52,55,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,55,57,52,57,49,44,52,52,46,49,48,54,57,56,56,93,44,91,45,57,50,46,48,55,57,50,57,50,44,52,51,46,56,52,55,48,56,93,44,91,45,57,49,46,55,51,48,52,50,52,44,52,51,46,56,52,54,57,51,53,93,44,91,45,57,49,46,50,56,52,49,51,56,44,52,51,46,56,52,55,48,54,53,93,44,91,45,57,49,46,52,50,53,49,56,56,44,52,51,46,57,56,52,51,50,50,93,44,91,45,57,49,46,53,53,57,48,48,52,44,52,52,46,48,50,53,51,49,53,93,44,91,45,57,49,46,56,53,56,50,52,53,44,52,52,46,49,57,51,48,48,52,93,44,91,45,57,50,46,48,55,56,53,51,50,44,52,52,46,49,57,50,57,55,57,93,44,91,45,57,50,46,48,55,57,52,57,49,44,52,52,46,49,48,54,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,48,55,53,44,34,98,101,100,115,34,58,51,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,54,57,55,57,50,44,51,50,46,53,54,50,56,48,51,93,44,91,45,57,49,46,49,49,54,55,48,56,44,51,50,46,53,48,48,49,51,56,93,44,91,45,57,48,46,57,56,54,54,55,50,44,51,50,46,51,53,49,55,54,93,44,91,45,57,48,46,57,56,51,51,56,49,44,51,50,46,50,49,49,55,54,55,93,44,91,45,57,49,46,49,50,52,48,52,51,44,51,50,46,50,49,49,49,48,52,93,44,91,45,57,49,46,48,53,51,53,53,53,44,51,50,46,49,50,52,52,49,50,93,44,91,45,57,49,46,48,51,48,56,49,44,51,50,46,49,50,48,54,53,93,44,91,45,57,49,46,48,51,48,50,48,55,44,51,50,46,49,49,52,51,53,51,93,44,91,45,57,48,46,57,53,54,55,56,55,44,51,50,46,48,56,51,53,57,55,93,44,91,45,57,48,46,55,55,52,56,50,44,51,50,46,49,53,51,57,57,51,93,44,91,45,57,48,46,55,50,56,54,50,50,44,51,50,46,50,50,53,49,49,57,93,44,91,45,57,48,46,54,56,51,53,55,49,44,51,50,46,51,53,50,55,56,52,93,44,91,45,57,48,46,53,53,51,56,50,49,44,51,50,46,53,48,55,53,55,52,93,44,91,45,57,48,46,55,50,48,49,48,50,44,51,50,46,54,49,56,56,53,56,93,44,91,45,57,48,46,56,54,48,53,54,54,44,51,50,46,53,55,53,49,55,51,93,44,91,45,57,48,46,56,54,49,51,54,52,44,51,50,46,52,52,50,49,49,53,93,44,91,45,57,48,46,57,53,49,50,52,44,51,50,46,52,52,52,51,56,57,93,44,91,45,57,48,46,57,54,52,48,52,51,44,51,50,46,53,55,53,54,48,53,93,44,91,45,57,49,46,48,52,51,53,53,50,44,51,50,46,53,55,54,50,55,49,93,44,91,45,57,49,46,48,54,57,55,57,50,44,51,50,46,53,54,50,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,100,114,101,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,52,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,53,57,52,50,44,52,48,46,49,50,54,49,50,55,93,44,91,45,57,53,46,48,52,51,48,56,44,52,48,46,49,51,48,48,57,54,93,44,91,45,57,52,46,57,57,51,51,56,50,44,51,57,46,56,57,55,57,48,54,93,44,91,45,57,52,46,56,55,54,53,53,56,44,51,57,46,56,50,48,56,56,51,93,44,91,45,57,52,46,54,48,50,56,51,44,51,57,46,56,49,57,57,48,54,93,44,91,45,57,52,46,54,48,53,51,55,55,44,52,48,46,48,51,57,50,49,55,93,44,91,45,57,52,46,54,48,53,57,52,50,44,52,48,46,49,50,54,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,51,51,57,57,56,44,51,57,46,48,53,57,48,53,55,93,44,91,45,57,49,46,54,52,55,49,55,49,44,51,56,46,55,48,51,51,57,54,93,44,91,45,57,49,46,54,52,48,51,55,50,44,51,56,46,55,48,51,55,57,50,93,44,91,45,57,49,46,53,52,53,51,49,51,44,51,56,46,54,55,54,56,56,50,93,44,91,45,57,49,46,52,49,56,54,51,55,44,51,56,46,55,48,57,55,55,56,93,44,91,45,57,49,46,52,49,53,56,51,50,44,51,56,46,56,52,53,51,93,44,91,45,57,49,46,50,54,52,57,50,55,44,51,56,46,56,52,51,56,51,51,93,44,91,45,57,49,46,50,54,52,50,56,55,44,51,56,46,57,57,50,55,54,50,93,44,91,45,57,49,46,50,54,48,50,51,50,44,51,57,46,49,51,57,56,52,53,93,44,91,45,57,49,46,52,48,57,48,51,51,44,51,57,46,49,52,50,53,52,50,93,44,91,45,57,49,46,54,50,57,53,57,56,44,51,57,46,49,52,55,56,53,51,93,44,91,45,57,49,46,54,51,51,57,57,56,44,51,57,46,48,53,57,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,51,49,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,55,53,49,54,54,44,51,55,46,51,51,57,57,51,55,93,44,91,45,57,53,46,48,55,51,53,48,52,44,51,54,46,57,57,57,53,53,50,93,44,91,45,57,53,46,48,48,55,54,50,44,51,54,46,57,57,57,53,49,52,93,44,91,45,57,52,46,54,49,55,57,54,52,44,51,54,46,57,57,56,57,48,53,93,44,91,45,57,52,46,54,49,55,56,52,57,44,51,55,46,48,53,54,55,57,55,93,44,91,45,57,52,46,54,49,55,55,50,50,44,51,55,46,51,51,56,52,49,56,93,44,91,45,57,53,46,48,55,53,49,54,54,44,51,55,46,51,51,57,57,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,97,108,105,102,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,51,55,44,34,98,101,100,115,34,58,50,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,57,57,53,50,52,44,51,54,46,53,48,52,50,53,57,93,44,91,45,55,55,46,57,49,49,57,54,51,44,51,54,46,51,56,50,52,52,54,93,44,91,45,55,56,46,48,48,54,53,53,49,44,51,54,46,50,48,50,54,51,51,93,44,91,45,55,55,46,56,56,55,50,52,44,51,54,46,49,52,51,56,52,93,44,91,45,55,55,46,54,57,55,57,53,54,44,51,54,46,49,53,51,49,53,93,44,91,45,55,55,46,53,51,51,49,54,49,44,51,54,46,48,57,48,54,53,57,93,44,91,45,55,55,46,52,48,50,54,49,52,44,51,54,46,48,48,52,57,54,54,93,44,91,45,55,55,46,51,50,55,53,54,57,44,51,54,46,48,55,49,51,54,49,93,44,91,45,55,55,46,50,57,49,53,49,57,44,51,54,46,49,54,56,51,52,50,93,44,91,45,55,55,46,51,56,54,53,57,53,44,51,54,46,50,49,51,53,52,56,93,44,91,45,55,55,46,52,52,53,56,56,54,44,51,54,46,51,50,52,56,56,56,93,44,91,45,55,55,46,54,52,57,56,51,53,44,51,54,46,52,56,49,52,52,51,93,44,91,45,55,55,46,56,57,57,53,50,52,44,51,54,46,53,48,52,50,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,83,97,110,100,111,118,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,55,54,57,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,49,57,55,50,52,52,44,51,53,46,50,49,57,52,53,57,93,44,91,45,49,48,54,46,50,52,52,50,49,54,44,51,53,46,50,49,53,54,53,55,93,44,91,45,49,48,54,46,50,53,48,52,57,57,44,51,53,46,55,53,53,56,49,56,93,44,91,45,49,48,54,46,52,48,48,55,44,51,53,46,56,48,55,53,54,55,93,44,91,45,49,48,54,46,51,57,57,55,49,51,44,51,53,46,57,54,48,48,57,53,93,44,91,45,49,48,54,46,50,52,56,49,54,49,44,51,53,46,57,54,54,51,50,55,93,44,91,45,49,48,54,46,50,52,55,49,54,52,44,51,54,46,48,48,49,52,51,52,93,44,91,45,49,48,54,46,56,56,53,51,49,55,44,51,53,46,57,57,56,57,54,57,93,44,91,45,49,48,54,46,56,56,53,48,53,51,44,51,54,46,50,49,54,53,55,93,44,91,45,49,48,55,46,54,50,52,50,56,51,44,51,54,46,50,49,57,56,48,57,93,44,91,45,49,48,55,46,54,50,54,53,49,49,44,51,54,46,48,48,48,50,56,56,93,44,91,45,49,48,55,46,51,48,56,54,54,55,44,51,53,46,57,57,56,53,53,54,93,44,91,45,49,48,55,46,51,48,57,51,56,54,44,51,53,46,51,48,53,54,56,55,93,44,91,45,49,48,55,46,49,57,55,50,52,52,44,51,53,46,50,49,57,52,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,50,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,52,51,55,49,56,44,51,55,46,50,53,48,53,53,49,93,44,91,45,56,51,46,57,54,56,57,57,44,51,55,46,49,55,52,55,57,52,93,44,91,45,56,51,46,56,55,49,51,49,53,44,51,55,46,48,53,52,57,49,57,93,44,91,45,56,51,46,53,56,57,53,50,49,44,51,54,46,57,53,53,55,56,54,93,44,91,45,56,51,46,53,48,57,48,56,51,44,51,54,46,57,51,56,53,48,57,93,44,91,45,56,51,46,53,53,49,51,48,51,44,51,55,46,49,54,55,53,49,93,44,91,45,56,51,46,53,48,55,56,56,54,44,51,55,46,50,51,53,56,55,55,93,44,91,45,56,51,46,53,50,54,57,48,55,44,51,55,46,50,53,56,53,50,57,93,44,91,45,56,51,46,54,51,56,53,55,50,44,51,55,46,51,52,52,49,54,54,93,44,91,45,56,51,46,55,56,52,57,55,53,44,51,55,46,51,52,56,55,49,55,93,44,91,45,56,51,46,57,52,51,55,49,56,44,51,55,46,50,53,48,53,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,48,55,52,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,51,56,50,48,51,44,52,49,46,49,53,51,54,51,51,93,44,91,45,55,55,46,55,57,56,53,54,44,52,49,46,49,56,49,57,53,93,44,91,45,55,55,46,55,52,49,57,49,49,44,52,49,46,49,48,55,54,49,52,93,44,91,45,55,55,46,54,50,49,55,53,57,44,52,49,46,48,57,49,49,56,53,93,44,91,45,55,55,46,53,48,56,53,57,54,44,52,48,46,57,54,50,57,51,56,93,44,91,45,55,55,46,49,52,52,49,54,44,52,49,46,48,52,52,51,51,56,93,44,91,45,55,55,46,49,52,52,49,49,49,44,52,49,46,48,54,56,56,52,93,44,91,45,55,55,46,53,50,54,53,51,55,44,52,49,46,51,53,56,53,50,56,93,44,91,45,55,55,46,53,57,56,49,50,57,44,52,49,46,52,55,56,53,55,54,93,44,91,45,55,55,46,57,56,57,49,57,52,44,52,49,46,52,55,52,56,50,50,93,44,91,45,55,55,46,57,56,56,55,56,54,44,52,49,46,51,54,55,52,53,51,93,44,91,45,55,56,46,48,57,51,51,56,49,44,52,49,46,50,49,54,57,51,49,93,44,91,45,55,56,46,48,51,56,50,48,51,44,52,49,46,49,53,51,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,76,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,56,55,48,44,34,98,101,100,115,34,58,49,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,49,52,57,48,50,53,44,52,52,46,55,50,48,50,50,53,93,44,91,45,49,50,51,46,50,54,48,49,53,49,44,52,52,46,53,53,53,49,52,56,93,44,91,45,49,50,51,46,50,49,49,57,54,55,44,52,52,46,53,48,49,50,49,56,93,44,91,45,49,50,51,46,50,52,48,55,52,52,44,52,52,46,51,51,55,55,56,57,93,44,91,45,49,50,51,46,49,56,48,51,56,56,44,52,52,46,50,56,51,55,50,53,93,44,91,45,49,50,51,46,49,54,53,52,50,56,44,52,52,46,50,48,48,48,55,49,93,44,91,45,49,50,50,46,57,48,53,55,53,53,44,52,52,46,50,48,48,55,51,54,93,44,91,45,49,50,50,46,56,54,53,52,55,56,44,52,52,46,50,56,55,49,51,52,93,44,91,45,49,50,50,46,55,54,50,55,51,53,44,52,52,46,50,57,48,53,51,55,93,44,91,45,49,50,50,46,53,48,55,50,48,51,44,52,52,46,50,50,51,52,52,56,93,44,91,45,49,50,50,46,51,50,55,49,53,44,52,52,46,50,53,50,56,52,49,93,44,91,45,49,50,49,46,56,49,57,52,50,57,44,52,52,46,50,54,50,51,57,52,93,44,91,45,49,50,49,46,56,52,51,49,51,56,44,52,52,46,51,57,50,54,51,93,44,91,45,49,50,49,46,56,48,48,48,49,53,44,52,52,46,54,56,51,52,50,53,93,44,91,45,49,50,50,46,48,51,51,48,48,54,44,52,52,46,54,56,53,54,57,49,93,44,91,45,49,50,50,46,50,55,54,54,55,53,44,52,52,46,55,52,54,49,51,53,93,44,91,45,49,50,50,46,56,48,50,52,53,55,44,52,52,46,55,57,48,56,54,52,93,44,91,45,49,50,51,46,48,48,55,55,52,51,44,52,52,46,54,56,56,48,55,49,93,44,91,45,49,50,51,46,49,52,51,56,52,51,44,52,52,46,55,52,56,57,49,52,93,44,91,45,49,50,51,46,49,52,57,48,50,53,44,52,52,46,55,50,48,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,51,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,50,54,57,48,50,44,52,50,46,56,49,50,56,54,50,93,44,91,45,57,48,46,52,50,54,51,55,55,44,52,50,46,53,48,55,49,55,51,93,44,91,45,56,57,46,57,50,54,52,54,54,44,52,50,46,53,48,53,55,55,50,93,44,91,45,56,57,46,56,51,55,53,56,55,44,52,50,46,53,48,53,55,49,93,44,91,45,56,57,46,56,51,56,52,49,44,52,50,46,56,49,51,55,57,57,93,44,91,45,57,48,46,52,50,54,57,48,50,44,52,50,46,56,49,50,56,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,48,48,49,44,34,98,101,100,115,34,58,49,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,48,48,56,49,44,51,54,46,57,57,56,56,54,93,44,91,45,57,54,46,48,48,49,49,55,49,44,51,54,46,52,50,51,54,56,54,93,44,91,45,57,53,46,56,49,50,51,52,50,44,51,54,46,52,50,51,53,56,93,44,91,45,57,53,46,56,48,57,53,52,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,56,48,57,56,50,44,51,54,46,57,52,49,57,51,93,44,91,45,57,53,46,55,56,54,55,54,50,44,51,54,46,57,57,57,51,49,93,44,91,45,57,53,46,57,54,52,50,55,44,51,54,46,57,57,57,49,48,52,93,44,91,45,57,54,46,48,48,48,56,49,44,51,54,46,57,57,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,80,114,101,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,51,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,55,54,51,55,55,52,44,51,57,46,55,50,48,55,55,54,93,44,91,45,55,57,46,56,57,52,54,56,56,44,51,57,46,52,51,53,53,56,56,93,44,91,45,55,57,46,56,57,53,53,51,54,44,51,57,46,50,57,57,53,56,52,93,44,91,45,55,57,46,56,48,57,55,50,57,44,51,57,46,50,51,48,53,50,54,93,44,91,45,55,57,46,54,56,55,50,56,51,44,51,57,46,50,55,49,51,57,56,93,44,91,45,55,57,46,52,56,55,49,55,53,44,51,57,46,49,57,52,57,48,54,93,44,91,45,55,57,46,52,56,54,56,55,53,44,51,57,46,50,48,53,56,57,54,93,44,91,45,55,57,46,52,55,54,54,54,50,44,51,57,46,55,50,49,48,55,56,93,44,91,45,55,57,46,55,54,51,55,55,52,44,51,57,46,55,50,48,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,87,97,117,112,97,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,52,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,50,51,55,52,53,44,52,52,46,54,56,49,51,54,53,93,44,91,45,56,57,46,50,50,52,56,49,51,44,52,52,46,50,52,51,51,57,51,93,44,91,45,56,56,46,56,56,54,54,55,51,44,52,52,46,50,52,50,54,50,50,93,44,91,45,56,56,46,55,51,57,55,55,44,52,52,46,50,52,51,51,48,51,93,44,91,45,56,56,46,55,51,54,56,48,50,44,52,52,46,53,57,48,54,48,53,93,44,91,45,56,56,46,54,48,54,48,56,51,44,52,52,46,53,57,48,53,49,53,93,44,91,45,56,56,46,54,48,53,49,53,57,44,52,52,46,54,55,56,51,51,49,93,44,91,45,56,57,46,50,50,51,55,52,53,44,52,52,46,54,56,49,51,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,69,100,119,97,114,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,54,52,54,49,44,51,48,46,50,57,48,50,57,54,93,44,91,45,49,48,48,46,55,48,48,51,57,51,44,51,48,46,50,56,56,50,55,54,93,44,91,45,49,48,48,46,54,57,57,57,51,50,44,50,57,46,54,50,51,56,57,55,93,44,91,45,49,48,48,46,49,49,50,48,57,56,44,50,57,46,54,50,51,50,54,51,93,44,91,45,49,48,48,46,48,49,52,49,56,56,44,50,57,46,54,50,51,52,57,53,93,44,91,45,49,48,48,46,48,52,53,55,57,49,44,50,57,46,54,57,52,57,50,52,93,44,91,45,57,57,46,57,54,55,54,50,54,44,51,48,46,48,56,50,51,53,54,93,44,91,45,57,57,46,55,53,55,54,50,49,44,51,48,46,48,55,52,49,51,50,93,44,91,45,57,57,46,55,53,52,49,52,50,44,51,48,46,50,57,48,54,57,56,93,44,91,45,49,48,48,46,49,49,54,52,54,49,44,51,48,46,50,57,48,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,52,51,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,51,51,50,57,54,57,44,52,51,46,54,49,54,54,52,53,93,44,91,45,49,50,49,46,51,52,56,52,55,49,44,52,51,46,51,53,54,55,53,51,93,44,91,45,49,50,49,46,51,52,57,54,55,57,44,52,50,46,55,52,54,54,52,52,93,44,91,45,49,50,48,46,56,56,51,51,50,55,44,52,50,46,55,52,52,50,49,52,93,44,91,45,49,50,48,46,56,55,57,57,50,54,44,52,49,46,57,57,51,55,54,52,93,44,91,45,49,49,57,46,57,57,57,50,51,52,44,52,49,46,57,57,52,57,52,52,93,44,91,45,49,49,57,46,51,54,48,49,50,50,44,52,49,46,57,57,52,50,55,56,93,44,91,45,49,49,57,46,51,54,53,51,51,55,44,52,50,46,55,52,56,57,53,56,93,44,91,45,49,49,57,46,57,52,51,55,55,57,44,52,50,46,55,52,54,51,55,49,93,44,91,45,49,49,57,46,57,51,50,54,49,49,44,52,51,46,49,55,56,57,54,51,93,44,91,45,49,49,57,46,56,57,54,57,54,57,44,52,51,46,49,55,57,48,49,55,93,44,91,45,49,49,57,46,56,57,54,53,56,49,44,52,51,46,54,49,49,49,54,52,93,44,91,45,49,50,49,46,51,51,50,57,54,57,44,52,51,46,54,49,54,54,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,79,122,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,49,50,51,52,54,44,51,54,46,55,57,52,50,51,49,93,44,91,45,57,50,46,55,54,52,56,54,57,44,51,54,46,56,48,54,48,57,55,93,44,91,45,57,50,46,55,55,50,51,52,51,44,51,54,46,52,57,55,54,54,50,93,44,91,45,57,50,46,53,50,57,49,50,56,44,51,54,46,52,57,56,53,57,57,93,44,91,45,57,50,46,49,53,48,50,57,53,44,51,54,46,52,57,56,54,49,93,44,91,45,57,50,46,49,50,48,52,51,44,51,54,46,52,57,56,55,93,44,91,45,57,50,46,49,49,50,51,52,54,44,51,54,46,55,57,52,50,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,55,51,34,44,34,78,65,77,69,34,58,34,87,97,108,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,57,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,48,52,51,48,54,44,51,48,46,50,52,53,53,55,93,44,91,45,57,54,46,48,57,51,49,54,53,44,51,48,46,50,50,53,49,56,55,93,44,91,45,57,54,46,49,57,49,52,49,56,44,51,48,46,49,51,52,54,54,57,93,44,91,45,57,54,46,49,52,54,48,53,50,44,51,48,46,48,55,48,50,50,52,93,44,91,45,57,54,46,48,56,52,53,52,49,44,51,48,46,48,48,53,49,51,55,93,44,91,45,57,54,46,49,51,49,54,53,44,50,57,46,57,51,55,53,48,52,93,44,91,45,57,54,46,49,48,50,52,57,54,44,50,57,46,56,48,57,54,54,53,93,44,91,45,57,54,46,48,51,50,55,49,49,44,50,57,46,55,50,55,57,52,52,93,44,91,45,57,53,46,56,50,54,50,50,44,50,57,46,55,56,56,50,56,93,44,91,45,57,53,46,57,54,48,55,51,51,44,51,48,46,49,54,51,52,49,53,93,44,91,45,57,53,46,56,48,51,51,51,44,51,48,46,48,57,48,48,57,54,93,44,91,45,57,53,46,56,48,52,51,48,54,44,51,48,46,50,52,53,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,49,50,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,48,48,57,51,44,51,49,46,56,50,57,50,53,49,93,44,91,45,56,55,46,53,54,54,56,52,49,44,51,49,46,54,57,55,49,49,53,93,44,91,45,56,55,46,53,54,53,55,48,56,44,51,49,46,52,56,49,54,56,51,93,44,91,45,56,55,46,54,48,51,49,51,55,44,51,49,46,52,48,57,53,53,54,93,44,91,45,56,55,46,55,48,54,48,52,53,44,51,49,46,52,48,48,57,53,55,93,44,91,45,56,55,46,55,54,53,49,53,50,44,51,49,46,50,57,55,51,52,54,93,44,91,45,56,55,46,54,49,53,56,57,44,51,49,46,50,52,52,52,53,56,93,44,91,45,56,55,46,52,50,55,52,53,53,44,51,49,46,50,54,48,51,56,54,93,44,91,45,56,55,46,49,54,54,53,56,49,44,51,49,46,53,49,57,53,54,49,93,44,91,45,56,55,46,49,51,53,48,53,49,44,51,49,46,54,52,50,52,49,55,93,44,91,45,56,54,46,57,48,53,56,57,57,44,51,49,46,55,53,51,48,51,53,93,44,91,45,56,54,46,57,48,54,56,57,57,44,51,49,46,56,51,48,54,50,56,93,44,91,45,56,55,46,53,48,48,57,51,44,51,49,46,56,50,57,50,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,69,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,56,57,55,54,48,56,44,52,53,46,48,48,56,51,53,93,44,91,45,55,49,46,56,55,52,52,51,51,44,52,52,46,56,55,54,51,56,50,93,44,91,45,55,49,46,57,51,57,57,51,54,44,52,52,46,55,54,57,48,51,50,93,44,91,45,55,49,46,57,49,48,48,56,53,44,52,52,46,54,52,55,49,56,93,44,91,45,55,49,46,57,51,51,50,56,56,44,52,52,46,52,52,49,49,55,52,93,44,91,45,55,49,46,56,51,55,56,53,51,44,52,52,46,51,52,55,57,57,51,93,44,91,45,55,49,46,55,54,53,54,56,52,44,52,52,46,52,48,54,50,57,53,93,44,91,45,55,49,46,54,48,48,49,53,55,44,52,52,46,52,56,53,56,51,51,93,44,91,45,55,49,46,53,53,51,55,53,54,44,52,52,46,54,51,48,52,50,54,93,44,91,45,55,49,46,54,50,57,57,49,57,44,52,52,46,55,53,51,53,55,56,93,44,91,45,55,49,46,52,57,54,48,57,51,44,52,52,46,57,48,55,56,52,57,93,44,91,45,55,49,46,53,48,49,48,56,50,44,52,53,46,48,49,51,51,53,53,93,44,91,45,55,49,46,56,57,55,54,48,56,44,52,53,46,48,48,56,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,76,117,110,101,110,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,51,57,51,53,52,44,51,55,46,49,50,48,48,56,57,93,44,91,45,55,56,46,52,52,51,54,52,52,44,51,55,46,48,55,57,51,55,49,93,44,91,45,55,56,46,52,57,51,48,50,56,44,51,54,46,56,57,49,50,50,93,44,91,45,55,56,46,50,52,49,53,48,57,44,51,54,46,56,48,55,57,53,56,93,44,91,45,55,56,46,48,50,55,52,49,49,44,51,54,46,55,55,55,56,53,56,93,44,91,45,55,56,46,48,48,51,54,51,57,44,51,55,46,48,50,50,55,53,54,93,44,91,45,55,56,46,49,55,48,56,57,53,44,51,55,46,48,53,51,57,52,57,93,44,91,45,55,56,46,50,51,57,51,53,52,44,51,55,46,49,50,48,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,84,114,97,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,49,57,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,55,50,55,52,53,44,52,55,46,54,55,50,48,53,49,93,44,91,45,57,55,46,52,55,52,50,50,56,44,52,55,46,51,50,52,54,50,49,93,44,91,45,57,55,46,52,53,49,53,49,50,44,52,55,46,50,51,57,48,54,49,93,44,91,45,57,54,46,56,51,51,51,57,51,44,52,55,46,50,51,56,48,52,49,93,44,91,45,57,54,46,56,52,56,57,50,51,44,52,55,46,52,57,56,57,57,49,93,44,91,45,57,54,46,56,56,54,56,52,54,44,52,55,46,54,55,50,48,54,51,93,44,91,45,57,55,46,52,55,50,55,52,53,44,52,55,46,54,55,50,48,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,72,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,57,54,49,44,34,98,101,100,115,34,58,54,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,52,51,52,48,53,44,51,52,46,53,48,53,52,57,52,93,44,91,45,56,51,46,57,56,48,54,52,57,44,51,52,46,52,49,56,51,56,57,93,44,91,45,56,51,46,57,53,55,48,55,55,44,51,52,46,51,51,52,48,49,49,93,44,91,45,56,51,46,57,50,55,50,56,52,44,51,52,46,50,55,57,51,57,57,93,44,91,45,56,52,46,48,54,50,56,52,49,44,51,52,46,49,54,55,56,55,51,93,44,91,45,56,51,46,56,54,56,48,51,44,51,52,46,48,57,56,50,56,49,93,44,91,45,56,51,46,56,49,55,54,56,50,44,51,52,46,49,50,55,52,57,51,93,44,91,45,56,51,46,54,50,48,49,49,53,44,51,52,46,50,57,53,50,55,54,93,44,91,45,56,51,46,54,49,53,50,53,49,44,51,52,46,52,51,49,55,52,56,93,44,91,45,56,51,46,54,54,54,52,49,53,44,51,52,46,53,48,51,54,48,50,93,44,91,45,56,51,46,56,52,51,52,48,53,44,51,52,46,53,48,53,52,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,51,34,44,34,78,65,77,69,34,58,34,84,114,101,117,116,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,52,55,55,51,51,44,51,50,46,53,49,50,53,48,55,93,44,91,45,56,50,46,55,50,49,57,54,52,44,51,50,46,51,48,57,50,56,51,93,44,91,45,56,50,46,54,53,53,52,56,54,44,51,50,46,50,57,55,53,54,49,93,44,91,45,56,50,46,52,48,57,49,51,44,51,50,46,51,53,51,55,51,56,93,44,91,45,56,50,46,52,48,57,49,49,56,44,51,50,46,51,53,51,56,51,93,44,91,45,56,50,46,51,56,54,49,48,54,44,51,50,46,52,52,48,51,55,93,44,91,45,56,50,46,52,57,57,57,55,49,44,51,50,46,52,57,56,51,55,56,93,44,91,45,56,50,46,54,52,55,55,51,51,44,51,50,46,53,49,50,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,49,55,56,52,51,44,51,49,46,54,49,57,55,55,49,93,44,91,45,56,52,46,56,49,57,56,48,55,44,51,49,46,53,48,49,49,57,50,93,44,91,45,56,52,46,55,56,57,48,51,50,44,51,49,46,52,51,54,51,53,54,93,44,91,45,56,52,46,54,51,55,53,55,57,44,51,49,46,52,51,51,57,50,54,93,44,91,45,56,52,46,52,50,57,56,55,54,44,51,49,46,52,51,54,54,54,49,93,44,91,45,56,52,46,52,53,48,51,57,56,44,51,49,46,54,50,49,56,54,56,93,44,91,45,56,52,46,53,52,54,56,53,52,44,51,49,46,54,50,49,49,57,57,93,44,91,45,56,52,46,56,49,55,56,52,51,44,51,49,46,54,49,57,55,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,86,105,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,57,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,50,57,49,53,56,44,52,54,46,50,57,57,55,52,56,93,44,91,45,56,57,46,57,50,56,56,51,55,44,52,53,46,57,56,49,57,54,55,93,44,91,45,57,48,46,48,52,51,57,53,56,44,52,53,46,57,56,49,57,52,56,93,44,91,45,57,48,46,48,52,50,56,53,55,44,52,53,46,56,57,55,50,54,51,93,44,91,45,56,57,46,48,52,55,54,48,49,44,52,53,46,56,57,53,51,53,53,93,44,91,45,56,56,46,57,51,51,50,50,50,44,52,53,46,57,56,50,50,55,54,93,44,91,45,56,56,46,57,51,50,55,53,55,44,52,54,46,48,55,51,54,54,56,93,44,91,45,56,56,46,57,57,48,56,54,52,44,52,54,46,48,57,55,51,56,49,93,44,91,45,56,57,46,48,57,49,54,51,56,44,52,54,46,49,51,56,52,52,55,93,44,91,45,56,57,46,57,50,57,49,53,56,44,52,54,46,50,57,57,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,108,116,114,97,109,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,49,49,55,44,34,98,101,100,115,34,58,49,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,54,48,50,51,49,53,44,52,56,46,53,51,56,56,56,55,93,44,91,45,57,53,46,53,57,51,55,56,56,44,52,56,46,49,55,50,57,49,54,93,44,91,45,57,53,46,53,56,50,56,56,55,44,52,56,46,48,50,48,53,53,55,93,44,91,45,57,53,46,50,50,57,49,51,51,44,52,56,46,48,49,57,57,53,56,93,44,91,45,57,53,46,50,55,55,56,51,52,44,52,55,46,57,50,53,51,52,54,93,44,91,45,57,53,46,49,57,51,55,48,53,44,52,55,46,56,55,50,53,52,52,93,44,91,45,57,53,46,49,56,51,50,49,54,44,52,55,46,52,49,50,55,55,51,93,44,91,45,57,52,46,54,55,48,50,49,52,44,52,55,46,52,49,48,49,53,49,93,44,91,45,57,52,46,52,49,54,50,55,57,44,52,55,46,52,52,52,56,50,56,93,44,91,45,57,52,46,52,49,56,53,52,51,44,52,55,46,56,52,53,56,49,54,93,44,91,45,57,52,46,52,50,56,55,48,50,44,52,56,46,51,54,55,51,51,51,93,44,91,45,57,53,46,50,49,48,57,53,51,44,52,56,46,51,54,53,57,55,49,93,44,91,45,57,53,46,50,49,49,57,54,54,44,52,56,46,53,51,57,57,54,49,93,44,91,45,57,53,46,51,52,50,53,52,44,52,56,46,53,52,48,50,49,49,93,44,91,45,57,53,46,54,48,50,51,49,53,44,52,56,46,53,51,56,56,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,111,97,109,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,50,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,52,52,52,53,54,44,49,56,46,49,55,54,54,55,52,93,44,91,45,54,54,46,52,51,48,51,49,52,44,49,56,46,48,56,50,48,53,51,93,44,91,45,54,54,46,52,50,54,57,56,57,44,49,56,46,48,52,50,54,50,55,93,44,91,45,54,54,46,51,51,49,50,52,52,44,49,56,46,48,49,53,56,57,49,93,44,91,45,54,54,46,50,53,55,53,50,55,44,49,56,46,48,55,53,56,56,52,93,44,91,45,54,54,46,51,49,52,56,52,56,44,49,56,46,49,53,50,48,56,56,93,44,91,45,54,54,46,51,55,51,55,54,56,44,49,56,46,49,55,51,54,57,52,93,44,91,45,54,54,46,52,52,52,53,54,44,49,56,46,49,55,54,54,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,117,195,161,110,105,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,56,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,57,53,56,55,52,56,44,49,56,46,48,51,50,52,55,55,93,44,91,45,54,54,46,57,57,57,54,49,57,44,49,55,46,56,56,51,57,93,44,91,45,54,54,46,56,51,57,57,50,57,44,49,55,46,56,57,56,57,57,51,93,44,91,45,54,54,46,56,53,56,50,51,51,44,49,55,46,57,53,48,56,50,53,93,44,91,45,54,54,46,56,56,52,54,53,51,44,49,56,46,48,50,52,56,49,54,93,44,91,45,54,54,46,57,53,56,55,52,56,44,49,56,46,48,51,50,52,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,68,111,114,99,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,54,49,44,34,98,101,100,115,34,58,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,57,52,53,50,52,56,44,51,56,46,54,55,52,49,48,57,93,44,91,45,55,54,46,48,50,51,52,52,53,44,51,56,46,53,55,51,56,55,53,93,44,91,45,55,54,46,50,52,48,49,53,44,51,56,46,54,54,51,50,48,52,93,44,91,45,55,54,46,52,51,56,56,49,52,44,51,56,46,53,55,53,51,51,54,93,44,91,45,55,54,46,51,50,49,57,48,56,44,51,56,46,51,50,55,50,56,52,93,44,91,45,55,54,46,50,48,52,55,49,57,44,51,56,46,48,53,56,52,49,93,44,91,45,55,54,46,48,55,56,53,55,53,44,51,56,46,48,54,48,57,50,93,44,91,45,55,53,46,57,52,56,52,53,52,44,51,56,46,50,49,53,57,54,93,44,91,45,55,53,46,56,50,51,55,48,54,44,51,56,46,52,56,49,48,50,50,93,44,91,45,55,53,46,55,48,49,53,54,57,44,51,56,46,53,54,48,55,51,54,93,44,91,45,55,53,46,55,48,55,52,52,55,44,51,56,46,54,51,53,51,57,54,93,44,91,45,55,53,46,56,51,55,57,55,52,44,51,56,46,55,48,51,57,57,93,44,91,45,55,53,46,57,52,53,50,52,56,44,51,56,46,54,55,52,49,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,50,50,48,44,34,98,101,100,115,34,58,49,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,52,55,53,57,55,44,52,49,46,50,55,53,54,50,57,93,44,91,45,55,54,46,54,52,48,55,54,55,44,52,49,46,49,53,53,55,49,56,93,44,91,45,55,54,46,54,49,56,57,55,49,44,52,49,46,48,54,51,55,53,57,93,44,91,45,55,54,46,53,49,50,52,50,49,44,52,48,46,57,52,54,49,48,50,93,44,91,45,55,54,46,53,50,56,48,51,52,44,52,48,46,56,56,50,53,49,53,93,44,91,45,55,54,46,51,56,48,49,53,50,44,52,48,46,55,55,53,53,49,49,93,44,91,45,55,54,46,50,48,55,56,50,55,44,52,48,46,57,52,57,55,52,93,44,91,45,55,54,46,51,49,57,50,51,54,44,52,49,46,50,48,56,48,57,50,93,44,91,45,55,54,46,51,49,48,49,51,51,44,52,49,46,51,49,48,49,57,57,93,44,91,45,55,54,46,52,52,55,53,57,55,44,52,49,46,50,55,53,54,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,49,57,56,44,34,98,101,100,115,34,58,50,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,51,54,48,54,57,44,52,48,46,48,52,48,49,56,50,93,44,91,45,56,52,46,48,53,49,48,49,50,44,51,57,46,56,55,57,56,49,93,44,91,45,56,52,46,48,53,51,55,51,54,44,51,57,46,56,53,48,52,53,56,93,44,91,45,56,51,46,56,50,55,52,50,53,44,51,57,46,56,50,50,54,53,49,93,44,91,45,56,51,46,54,52,55,49,54,57,44,51,57,46,55,55,51,48,50,57,93,44,91,45,56,51,46,53,56,56,48,52,49,44,51,57,46,55,54,56,55,55,56,93,44,91,45,56,51,46,53,49,54,49,53,53,44,52,48,46,48,49,48,49,56,56,93,44,91,45,56,52,46,48,51,54,48,54,57,44,52,48,46,48,52,48,49,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,51,34,44,34,78,65,77,69,34,58,34,77,97,118,101,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,57,55,48,44,34,98,101,100,115,34,58,49,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,54,54,55,53,52,56,44,50,57,46,48,56,52,50,57,50,93,44,91,45,49,48,48,46,54,51,49,54,49,49,44,50,56,46,57,48,50,56,51,57,93,44,91,45,49,48,48,46,53,52,54,53,55,54,44,50,56,46,56,50,52,57,50,51,93,44,91,45,49,48,48,46,53,48,48,51,53,52,44,50,56,46,54,54,49,57,54,93,44,91,45,49,48,48,46,51,51,54,49,56,55,44,50,56,46,52,51,48,49,56,49,93,44,91,45,49,48,48,46,50,57,52,50,57,54,44,50,56,46,50,56,52,51,56,93,44,91,45,49,48,48,46,50,49,50,49,56,57,44,50,56,46,49,57,54,56,51,55,93,44,91,45,49,48,48,46,49,49,51,55,49,57,44,50,56,46,49,57,55,56,49,57,93,44,91,45,49,48,48,46,49,49,52,51,51,54,44,50,56,46,54,52,56,49,50,50,93,44,91,45,49,48,48,46,49,49,49,52,48,54,44,50,57,46,48,56,54,51,49,56,93,44,91,45,49,48,48,46,54,54,55,53,52,56,44,50,57,46,48,56,52,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,80,105,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,57,55,50,50,44,34,98,101,100,115,34,58,51,50,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,52,53,49,53,50,50,44,51,50,46,53,49,51,57,57,53,93,44,91,45,49,49,49,46,53,54,57,50,53,54,44,51,50,46,53,48,54,55,54,57,93,44,91,45,49,49,50,46,50,48,51,54,50,52,44,51,50,46,53,48,54,55,50,49,93,44,91,45,49,49,51,46,51,51,51,56,57,52,44,51,50,46,53,48,53,49,56,56,93,44,91,45,49,49,51,46,51,51,51,55,54,55,44,51,50,46,48,51,56,57,50,55,93,44,91,45,49,49,50,46,49,52,57,55,49,50,44,51,49,46,54,55,51,56,55,49,93,44,91,45,49,49,49,46,51,54,54,51,55,50,44,51,49,46,52,50,54,48,54,49,93,44,91,45,49,49,49,46,51,54,54,57,50,50,44,51,49,46,53,50,49,51,54,49,93,44,91,45,49,49,49,46,49,54,51,55,49,55,44,51,49,46,53,50,49,55,50,52,93,44,91,45,49,49,49,46,49,54,52,49,56,51,44,51,49,46,55,50,53,56,57,93,44,91,45,49,49,48,46,52,53,50,51,44,51,49,46,55,51,49,50,49,57,93,44,91,45,49,49,48,46,52,53,49,48,48,50,44,51,50,46,52,50,55,53,52,54,93,44,91,45,49,49,48,46,52,53,49,53,50,50,44,51,50,46,53,49,51,57,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,54,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,54,34,44,34,78,65,77,69,34,58,34,67,105,98,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,55,56,44,34,98,101,100,115,34,58,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,51,48,57,51,56,54,44,51,53,46,51,48,53,54,56,55,93,44,91,45,49,48,56,46,52,54,56,55,49,53,44,51,53,46,51,48,54,54,53,56,93,44,91,45,49,48,56,46,52,54,57,52,48,50,44,51,52,46,57,53,57,48,56,49,93,44,91,45,49,48,57,46,48,52,53,57,57,54,44,51,52,46,57,53,57,56,49,57,93,44,91,45,49,48,57,46,48,52,54,49,50,50,44,51,52,46,53,55,57,50,57,49,93,44,91,45,49,48,55,46,55,50,52,55,57,52,44,51,52,46,53,55,56,49,51,50,93,44,91,45,49,48,55,46,50,48,49,55,52,51,44,51,52,46,53,55,56,55,53,55,93,44,91,45,49,48,55,46,50,48,50,56,56,50,44,51,52,46,57,53,55,53,55,50,93,44,91,45,49,48,55,46,48,54,54,53,54,50,44,51,52,46,57,53,55,49,57,93,44,91,45,49,48,55,46,49,57,55,50,52,52,44,51,53,46,50,49,57,52,53,57,93,44,91,45,49,48,55,46,51,48,57,51,56,54,44,51,53,46,51,48,53,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,117,114,108,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,54,51,54,55,44,34,98,101,100,115,34,58,57,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,50,50,48,52,56,44,52,48,46,49,53,48,51,49,49,93,44,91,45,55,52,46,57,55,51,57,56,49,44,52,48,46,48,52,56,53,57,53,93,44,91,45,55,53,46,48,53,57,57,49,51,44,51,57,46,57,57,49,53,50,57,93,44,91,45,55,52,46,57,51,48,55,52,53,44,51,57,46,56,56,53,57,48,56,93,44,91,45,55,52,46,57,48,50,57,54,51,44,51,57,46,55,57,49,49,48,56,93,44,91,45,55,52,46,55,51,54,50,49,54,44,51,57,46,55,50,57,55,55,53,93,44,91,45,55,52,46,54,53,57,50,57,53,44,51,57,46,54,51,49,50,51,51,93,44,91,45,55,52,46,52,49,55,51,57,51,44,51,57,46,53,53,55,50,53,53,93,44,91,45,55,52,46,51,56,57,55,48,56,44,51,57,46,55,55,51,50,56,51,93,44,91,45,55,52,46,53,53,51,49,48,53,44,52,48,46,48,55,57,49,51,93,44,91,45,55,52,46,53,56,55,56,51,53,44,52,48,46,49,51,56,50,53,52,93,44,91,45,55,52,46,55,50,50,48,52,56,44,52,48,46,49,53,48,51,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,82,117,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,50,55,51,44,34,98,101,100,115,34,58,49,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,54,50,56,50,51,44,52,51,46,55,53,51,48,56,52,93,44,91,45,55,51,46,52,50,55,57,49,44,52,51,46,54,51,52,52,50,56,93,44,91,45,55,51,46,51,48,50,53,53,51,44,52,51,46,54,50,53,55,48,57,93,44,91,45,55,51,46,50,52,54,56,52,52,44,52,51,46,53,49,55,50,53,50,93,44,91,45,55,51,46,50,53,52,54,51,51,44,52,51,46,51,49,52,54,55,53,93,44,91,45,55,50,46,56,54,55,57,48,50,44,52,51,46,51,48,48,55,52,50,93,44,91,45,55,50,46,55,53,57,55,57,57,44,52,51,46,51,53,52,49,52,52,93,44,91,45,55,50,46,55,56,56,57,56,55,44,52,51,46,53,48,48,48,55,93,44,91,45,55,50,46,55,48,48,57,52,53,44,52,51,46,54,56,50,56,51,49,93,44,91,45,55,50,46,56,50,48,48,52,51,44,52,51,46,55,49,54,56,51,52,93,44,91,45,55,50,46,55,56,50,56,49,50,44,52,51,46,56,48,52,51,51,56,93,44,91,45,55,50,46,57,53,56,56,53,51,44,52,51,46,56,50,54,53,52,50,93,44,91,45,55,51,46,50,49,56,57,53,54,44,52,51,46,56,51,55,50,57,49,93,44,91,45,55,51,46,50,48,54,51,50,50,44,52,51,46,55,54,54,55,55,53,93,44,91,45,55,51,46,51,54,50,56,50,51,44,52,51,46,55,53,51,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,69,97,114,108,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,52,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,51,55,53,55,57,44,51,49,46,52,51,51,57,50,54,93,44,91,45,56,52,46,55,56,57,48,51,50,44,51,49,46,52,51,54,51,53,54,93,44,91,45,56,52,46,56,49,57,56,48,55,44,51,49,46,53,48,49,49,57,50,93,44,91,45,56,53,46,48,52,53,52,57,53,44,51,49,46,53,49,55,49,50,57,93,44,91,45,56,53,46,48,56,55,54,53,49,44,51,49,46,51,48,56,54,55,55,93,44,91,45,56,53,46,48,57,57,54,52,55,44,51,49,46,49,54,52,57,52,50,93,44,91,45,56,53,46,48,50,56,53,54,52,44,51,49,46,48,55,53,53,50,51,93,44,91,45,56,52,46,57,50,50,52,50,51,44,51,49,46,48,55,50,53,57,93,44,91,45,56,52,46,57,49,55,52,50,49,44,51,49,46,50,53,53,57,57,93,44,91,45,56,52,46,54,52,49,54,55,51,44,51,49,46,50,53,56,57,54,55,93,44,91,45,56,52,46,54,51,55,53,55,57,44,51,49,46,52,51,51,57,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,68,117,107,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,48,53,49,56,53,52,44,52,49,46,52,49,54,55,50,57,93,44,91,45,55,48,46,57,48,49,56,54,54,44,52,49,46,51,54,49,55,55,93,44,91,45,55,48,46,56,55,55,51,50,55,44,52,49,46,50,50,52,49,52,52,93,44,91,45,55,48,46,56,48,53,57,53,44,52,49,46,49,57,56,55,52,50,93,44,91,45,55,48,46,54,56,53,48,50,44,52,49,46,50,57,51,49,55,54,93,44,91,45,55,48,46,52,57,51,51,48,56,44,52,49,46,50,55,57,57,55,53,93,44,91,45,55,48,46,51,50,56,49,56,50,44,52,49,46,51,56,48,49,53,57,93,44,91,45,55,48,46,50,51,52,51,51,44,52,49,46,51,56,51,50,50,57,93,44,91,45,55,48,46,51,50,51,53,57,51,44,52,49,46,51,57,49,54,48,55,93,44,91,45,55,48,46,53,48,50,56,51,50,44,52,49,46,53,48,48,54,51,53,93,44,91,45,55,48,46,55,53,56,52,54,52,44,52,49,46,53,54,48,57,51,49,93,44,91,45,55,49,46,48,53,49,56,53,52,44,52,49,46,52,49,54,55,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,77,99,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,53,57,56,51,51,44,52,56,46,52,53,56,52,52,56,93,44,91,45,49,48,49,46,48,49,52,50,51,50,44,52,56,46,51,55,49,52,51,50,93,44,91,45,49,48,49,46,48,49,53,48,50,52,44,52,56,46,48,50,50,55,51,57,93,44,91,45,49,48,48,46,57,55,49,49,53,56,44,52,55,46,56,52,56,54,57,54,93,44,91,45,49,48,48,46,53,56,53,49,55,57,44,52,55,46,56,52,55,55,54,49,93,44,91,45,49,48,48,46,49,57,55,57,57,54,44,52,55,46,56,52,55,54,53,50,93,44,91,45,49,48,48,46,50,51,55,48,50,50,44,52,56,46,48,50,49,56,54,54,93,44,91,45,49,48,48,46,50,51,55,48,57,57,44,52,56,46,51,55,49,50,52,52,93,44,91,45,49,48,48,46,50,55,54,54,49,57,44,52,56,46,53,52,52,56,49,51,93,44,91,45,49,48,48,46,52,48,54,55,56,44,52,56,46,54,51,49,56,55,56,93,44,91,45,49,48,49,46,48,53,57,54,50,52,44,52,56,46,54,51,50,51,54,49,93,44,91,45,49,48,49,46,48,53,57,54,54,51,44,52,56,46,53,52,53,52,49,57,93,44,91,45,49,48,49,46,48,53,57,56,51,51,44,52,56,46,52,53,56,52,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,54,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,55,55,50,52,44,52,50,46,51,53,49,56,54,49,93,44,91,45,57,55,46,51,54,56,52,48,52,44,52,50,46,48,57,48,57,50,50,93,44,91,45,57,55,46,48,49,57,51,53,57,44,52,50,46,48,57,48,53,55,55,93,44,91,45,57,54,46,56,50,51,54,55,44,52,50,46,48,57,48,52,49,49,93,44,91,45,57,54,46,56,50,50,52,57,55,44,52,50,46,50,54,52,50,57,50,93,44,91,45,57,55,46,48,49,55,55,51,44,52,50,46,50,54,52,52,53,51,93,44,91,45,57,55,46,48,49,55,55,56,57,44,52,50,46,51,53,49,51,52,55,93,44,91,45,57,55,46,51,54,55,55,50,52,44,52,50,46,51,53,49,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,76,97,77,111,117,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,51,54,54,50,53,44,52,54,46,54,51,48,50,49,49,93,44,91,45,57,57,46,48,51,55,50,56,57,44,52,54,46,50,56,50,56,55,49,93,44,91,45,57,57,46,48,48,51,49,49,56,44,52,54,46,50,56,50,56,57,56,93,44,91,45,57,56,46,48,51,52,53,53,54,44,52,54,46,50,56,50,54,53,55,93,44,91,45,57,56,46,48,51,51,56,54,50,44,52,54,46,54,51,48,55,50,55,93,44,91,45,57,56,46,52,51,57,48,53,54,44,52,54,46,54,51,49,49,50,93,44,91,45,57,57,46,48,51,54,54,50,53,44,52,54,46,54,51,48,50,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,117,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,50,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,51,50,48,54,48,57,44,52,52,46,50,51,51,49,54,52,93,44,91,45,49,49,51,46,52,49,54,53,50,53,44,52,52,46,50,51,51,51,54,52,93,44,91,45,49,49,51,46,52,52,52,56,57,49,44,52,51,46,57,49,56,53,52,50,93,44,91,45,49,49,51,46,51,55,55,56,55,55,44,52,51,46,56,48,57,55,93,44,91,45,49,49,51,46,53,50,55,56,48,52,44,52,51,46,55,49,57,49,51,53,93,44,91,45,49,49,51,46,55,54,49,49,55,44,52,51,46,54,50,49,49,57,52,93,44,91,45,49,49,51,46,55,57,56,52,52,49,44,52,51,46,53,54,57,50,49,55,93,44,91,45,49,49,51,46,55,48,49,49,53,51,44,52,51,46,53,56,52,53,53,51,93,44,91,45,49,49,51,46,54,51,52,51,51,53,44,52,51,46,52,57,55,51,48,56,93,44,91,45,49,49,51,46,54,51,53,50,51,44,52,51,46,51,54,55,53,52,54,93,44,91,45,49,49,51,46,51,54,49,57,49,44,52,51,46,51,54,55,49,54,93,44,91,45,49,49,51,46,51,54,49,57,53,56,44,52,51,46,50,56,52,54,55,56,93,44,91,45,49,49,51,46,48,48,55,51,49,56,44,52,51,46,50,56,52,55,55,56,93,44,91,45,49,49,50,46,57,51,54,56,51,53,44,52,51,46,52,52,57,51,56,54,93,44,91,45,49,49,50,46,54,57,55,49,50,50,44,52,51,46,54,50,51,49,52,93,44,91,45,49,49,50,46,54,57,53,50,52,50,44,52,51,46,57,55,49,57,52,49,93,44,91,45,49,49,50,46,57,57,52,51,50,51,44,52,51,46,57,55,50,51,54,50,93,44,91,45,49,49,50,46,57,57,53,48,57,49,44,52,52,46,50,51,52,49,50,54,93,44,91,45,49,49,51,46,51,50,48,54,48,57,44,52,52,46,50,51,51,49,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,111,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,48,51,56,44,34,98,101,100,115,34,58,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,53,48,49,48,56,50,44,52,53,46,48,49,51,51,53,53,93,44,91,45,55,49,46,52,57,54,48,57,51,44,52,52,46,57,48,55,56,52,57,93,44,91,45,55,49,46,54,50,57,57,49,57,44,52,52,46,55,53,51,53,55,56,93,44,91,45,55,49,46,53,53,51,55,53,54,44,52,52,46,54,51,48,52,50,54,93,44,91,45,55,49,46,54,48,48,49,53,55,44,52,52,46,52,56,53,56,51,51,93,44,91,45,55,49,46,55,54,53,54,56,52,44,52,52,46,52,48,54,50,57,53,93,44,91,45,55,49,46,53,55,53,56,49,57,44,52,52,46,50,53,52,53,57,54,93,44,91,45,55,49,46,52,49,53,56,57,56,44,52,52,46,50,49,50,49,54,57,93,44,91,45,55,49,46,51,48,54,48,51,54,44,52,52,46,49,51,55,50,55,50,93,44,91,45,55,49,46,50,53,49,57,53,55,44,52,52,46,50,52,52,50,54,54,93,44,91,45,55,49,46,48,52,50,50,56,44,52,52,46,50,51,55,53,49,52,93,44,91,45,55,49,46,48,48,57,57,55,54,44,52,52,46,50,56,52,56,57,57,93,44,91,45,55,49,46,48,51,51,53,50,52,44,52,52,46,54,57,55,54,51,55,93,44,91,45,55,49,46,48,56,51,57,50,56,44,52,53,46,51,48,53,52,56,52,93,44,91,45,55,49,46,49,51,50,57,49,44,52,53,46,50,52,52,53,49,50,93,44,91,45,55,49,46,50,56,55,57,49,51,44,52,53,46,51,48,48,57,48,56,93,44,91,45,55,49,46,51,57,55,54,54,44,52,53,46,50,48,53,51,50,55,93,44,91,45,55,49,46,53,48,49,48,56,50,44,52,53,46,48,49,51,51,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,75,105,100,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,51,50,54,49,44,52,55,46,51,50,55,50,54,50,93,44,91,45,49,48,48,46,49,49,52,54,51,55,44,52,54,46,57,56,49,54,54,54,93,44,91,45,49,48,48,46,48,55,53,50,50,57,44,52,54,46,57,56,49,50,56,50,93,44,91,45,49,48,48,46,48,56,49,49,57,56,44,52,54,46,54,51,51,51,57,54,93,44,91,45,57,57,46,57,49,53,53,56,54,44,52,54,46,54,51,50,57,50,54,93,44,91,45,57,57,46,52,52,57,55,50,44,52,54,46,54,51,49,54,51,93,44,91,45,57,57,46,52,52,53,56,57,49,44,52,54,46,57,56,48,49,56,57,93,44,91,45,57,57,46,52,56,49,48,50,44,52,54,46,57,56,48,51,54,57,93,44,91,45,57,57,46,52,56,49,48,57,53,44,52,55,46,51,50,55,48,50,55,93,44,91,45,49,48,48,46,48,51,51,50,57,50,44,52,55,46,51,50,55,49,54,53,93,44,91,45,49,48,48,46,49,49,51,50,54,49,44,52,55,46,51,50,55,50,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,51,34,44,34,78,65,77,69,34,58,34,75,108,101,98,101,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,52,50,53,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,52,50,49,52,54,44,50,55,46,54,51,53,57,51,50,93,44,91,45,57,56,46,48,53,57,56,44,50,55,46,54,51,53,56,54,57,93,44,91,45,57,56,46,48,53,56,48,55,56,44,50,55,46,50,54,48,57,56,49,93,44,91,45,57,55,46,57,56,53,56,56,55,44,50,55,46,50,48,57,51,48,56,93,44,91,45,57,55,46,56,49,52,57,51,52,44,50,55,46,50,55,49,56,57,51,93,44,91,45,57,55,46,50,56,56,51,51,55,44,50,55,46,50,55,55,53,56,52,93,44,91,45,57,55,46,49,54,53,48,57,55,44,50,55,46,53,54,56,51,93,44,91,45,57,55,46,56,52,48,54,55,56,44,50,55,46,53,53,56,51,53,56,93,44,91,45,57,55,46,57,52,50,49,52,54,44,50,55,46,54,51,53,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,80,111,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,48,52,49,44,34,98,101,100,115,34,58,50,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,50,49,44,52,49,46,55,54,48,56,56,57,93,44,91,45,56,55,46,50,49,56,56,54,50,44,52,49,46,50,52,50,48,50,55,93,44,91,45,56,55,46,49,51,49,54,53,51,44,52,49,46,50,56,54,49,53,53,93,44,91,45,56,54,46,57,51,48,48,55,57,44,52,49,46,50,51,54,55,57,56,93,44,91,45,56,54,46,57,51,51,51,51,52,44,52,49,46,55,54,49,48,51,53,93,44,91,45,56,55,46,50,48,55,55,55,52,44,52,49,46,55,54,48,57,53,54,93,44,91,45,56,55,46,50,50,49,44,52,49,46,55,54,48,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,50,50,53,57,56,44,51,50,46,53,55,54,52,51,51,93,44,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,44,91,45,56,56,46,57,49,51,56,52,55,44,51,50,46,50,50,52,49,56,54,93,44,91,45,56,56,46,57,49,52,53,49,54,44,51,50,46,53,55,54,57,53,53,93,44,91,45,56,57,46,51,49,55,53,56,56,44,51,50,46,53,55,54,52,53,56,93,44,91,45,56,57,46,51,50,50,53,57,56,44,51,50,46,53,55,54,52,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,83,97,109,112,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,53,54,49,44,34,98,101,100,115,34,58,49,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,49,55,49,50,55,44,51,53,46,50,52,53,53,55,56,93,44,91,45,55,56,46,54,55,48,54,53,44,51,53,46,48,57,50,53,57,50,93,44,91,45,55,56,46,54,52,55,55,51,52,44,51,52,46,57,57,52,55,52,93,44,91,45,55,56,46,52,57,52,55,48,53,44,51,52,46,56,53,54,49,56,50,93,44,91,45,55,56,46,51,50,52,53,50,44,51,52,46,54,54,54,48,57,53,93,44,91,45,55,56,46,50,53,52,52,52,49,44,51,52,46,53,53,51,53,57,53,93,44,91,45,55,56,46,49,49,52,48,48,55,44,51,52,46,55,50,49,55,57,53,93,44,91,45,55,56,46,49,57,56,54,52,50,44,51,52,46,55,52,49,54,51,55,93,44,91,45,55,56,46,49,52,55,49,50,57,44,51,52,46,57,48,50,53,48,54,93,44,91,45,55,56,46,49,54,51,52,50,44,51,53,46,49,56,57,55,49,54,93,44,91,45,55,56,46,51,48,54,53,56,44,51,53,46,50,56,55,54,48,52,93,44,91,45,55,56,46,52,49,49,55,51,52,44,51,53,46,50,53,52,54,54,51,93,44,91,45,55,56,46,53,51,56,51,52,57,44,51,53,46,51,49,54,52,49,93,44,91,45,55,56,46,54,49,55,49,50,55,44,51,53,46,50,52,53,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,77,111,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,53,55,53,57,44,51,53,46,52,49,50,52,55,54,93,44,91,45,56,54,46,52,50,49,54,55,50,44,51,53,46,51,49,57,50,54,55,93,44,91,45,56,54,46,53,50,53,51,48,54,44,51,53,46,51,53,52,55,49,56,93,44,91,45,56,54,46,51,49,56,49,54,56,44,51,53,46,49,50,54,57,56,54,93,44,91,45,56,54,46,50,54,49,52,56,57,44,51,53,46,51,51,51,53,55,57,93,44,91,45,56,54,46,50,53,55,53,57,44,51,53,46,52,49,50,52,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,80,105,110,101,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,55,56,55,53,44,34,98,101,100,115,34,58,51,56,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,48,52,54,49,53,44,50,56,46,49,55,49,56,55,50,93,44,91,45,56,50,46,56,55,56,49,48,53,44,50,56,46,48,52,50,56,50,93,44,91,45,56,50,46,57,48,49,51,51,55,44,50,55,46,56,51,57,49,48,55,93,44,91,45,56,50,46,56,48,53,55,44,50,55,46,55,48,57,51,56,52,93,44,91,45,56,50,46,56,49,51,51,54,50,44,50,55,46,54,52,53,55,52,56,93,44,91,45,56,50,46,54,48,54,49,51,57,44,50,55,46,54,52,51,54,51,56,93,44,91,45,56,50,46,53,52,49,53,49,56,44,50,55,46,55,56,50,50,48,52,93,44,91,45,56,50,46,53,57,55,50,49,57,44,50,55,46,57,51,53,49,57,57,93,44,91,45,56,50,46,54,52,56,51,50,44,50,55,46,57,52,55,51,57,56,93,44,91,45,56,50,46,54,53,49,49,54,53,44,50,56,46,49,55,51,50,54,54,93,44,91,45,56,50,46,57,48,52,54,49,53,44,50,56,46,49,55,49,56,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,97,114,114,97,110,113,117,105,116,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,55,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,53,48,55,57,51,44,49,56,46,50,52,49,50,51,53,93,44,91,45,54,54,46,51,55,51,55,54,56,44,49,56,46,49,55,51,54,57,52,93,44,91,45,54,54,46,51,49,52,56,52,56,44,49,56,46,49,53,50,48,56,56,93,44,91,45,54,54,46,50,52,50,55,51,53,44,49,56,46,49,56,48,50,52,56,93,44,91,45,54,54,46,50,52,48,52,54,44,49,56,46,49,56,52,55,57,52,93,44,91,45,54,54,46,50,54,54,52,54,54,44,49,56,46,50,52,53,50,55,93,44,91,45,54,54,46,51,49,51,50,57,57,44,49,56,46,50,52,57,51,50,52,93,44,91,45,54,54,46,51,53,48,55,57,51,44,49,56,46,50,52,49,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,50,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,48,52,54,48,54,44,51,56,46,49,50,53,49,57,53,93,44,91,45,56,56,46,55,48,54,54,50,50,44,51,55,46,57,48,54,55,57,55,93,44,91,45,56,56,46,51,55,52,53,51,44,51,55,46,57,48,55,54,55,56,93,44,91,45,56,56,46,51,55,52,53,50,49,44,51,55,46,57,48,56,51,57,49,93,44,91,45,56,56,46,51,55,48,51,55,53,44,51,56,46,50,53,53,51,49,57,93,44,91,45,56,56,46,55,48,50,51,57,49,44,51,56,46,50,53,54,54,54,49,93,44,91,45,56,56,46,55,48,52,54,48,54,44,51,56,46,49,50,53,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,52,54,56,53,44,51,53,46,49,49,51,50,55,55,93,44,91,45,57,50,46,55,49,54,51,51,49,44,51,53,46,48,55,49,55,52,50,93,44,91,45,57,51,46,48,52,48,53,50,53,44,51,53,46,48,55,54,57,50,51,93,44,91,45,57,51,46,50,56,56,50,56,52,44,51,52,46,56,54,48,57,57,50,93,44,91,45,57,51,46,50,56,55,55,56,53,44,51,52,46,55,55,51,49,57,51,93,44,91,45,57,51,46,48,55,53,49,55,56,44,51,52,46,55,55,49,56,57,50,93,44,91,45,57,51,46,48,55,51,56,55,55,44,51,52,46,56,53,56,48,57,49,93,44,91,45,57,50,46,55,51,57,55,55,57,44,51,52,46,56,53,51,52,53,57,93,44,91,45,57,50,46,55,53,51,54,50,54,44,51,52,46,57,49,49,50,52,56,93,44,91,45,57,50,46,53,52,52,51,52,49,44,51,52,46,57,53,51,51,49,57,93,44,91,45,57,50,46,53,57,51,53,56,53,44,51,53,46,48,49,49,55,54,49,93,44,91,45,57,50,46,53,53,52,54,56,53,44,51,53,46,49,49,51,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,101,121,101,110,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,55,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,53,49,55,52,52,44,52,48,46,48,48,51,48,55,56,93,44,91,45,49,48,50,46,48,52,57,56,48,54,44,51,57,46,53,55,52,48,53,56,93,44,91,45,49,48,50,46,48,52,57,55,54,52,44,51,57,46,53,54,56,49,56,93,44,91,45,49,48,49,46,52,49,51,57,49,51,44,51,57,46,53,54,56,51,54,49,93,44,91,45,49,48,49,46,52,49,49,48,50,57,44,52,48,46,48,48,50,53,50,50,93,44,91,45,49,48,50,46,48,53,49,55,52,52,44,52,48,46,48,48,51,48,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,68,101,108,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,51,52,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,53,48,48,54,48,54,44,51,57,46,50,49,55,57,49,54,93,44,91,45,49,48,55,46,55,54,53,48,53,57,44,51,57,46,48,52,52,54,56,51,93,44,91,45,49,48,55,46,57,56,50,49,55,51,44,51,57,46,48,53,57,56,55,56,93,44,91,45,49,48,56,46,49,53,50,52,55,56,44,51,56,46,57,48,49,50,54,56,93,44,91,45,49,48,56,46,51,55,56,57,53,51,44,51,56,46,56,50,57,49,48,56,93,44,91,45,49,48,56,46,51,55,56,54,57,56,44,51,56,46,54,54,56,48,57,55,93,44,91,45,49,48,55,46,53,48,48,54,53,53,44,51,56,46,54,54,56,53,53,51,93,44,91,45,49,48,55,46,53,48,48,54,48,54,44,51,57,46,50,49,55,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,44,91,45,57,51,46,53,53,54,56,57,57,44,52,48,46,53,56,48,50,51,53,93,44,91,45,57,51,46,51,55,52,51,56,54,44,52,48,46,53,56,48,51,51,51,93,44,91,45,57,51,46,48,57,55,50,57,54,44,52,48,46,53,56,52,48,49,52,93,44,91,45,57,51,46,48,57,55,53,57,53,44,52,48,46,56,57,56,52,53,49,93,44,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,71,97,105,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,50,49,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,53,57,53,48,50,51,44,51,50,46,57,53,56,56,51,49,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,57,53,57,48,57,57,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,53,50,50,49,57,51,93,44,91,45,49,48,50,46,50,49,49,48,51,55,44,51,50,46,53,50,51,50,52,52,93,44,91,45,49,48,50,46,50,48,50,55,48,51,44,51,50,46,53,50,51,50,55,49,93,44,91,45,49,48,50,46,50,48,56,53,50,44,51,50,46,57,53,56,57,53,54,93,44,91,45,49,48,50,46,53,57,53,48,50,51,44,51,50,46,57,53,56,56,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,57,54,53,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,48,51,56,54,52,44,51,52,46,48,56,54,53,54,52,93,44,91,45,56,56,46,50,48,55,50,50,57,44,51,52,46,48,53,56,51,51,51,93,44,91,45,56,55,46,57,56,54,57,51,44,51,52,46,48,53,50,49,48,50,93,44,91,45,56,55,46,57,53,49,55,56,53,44,51,51,46,57,49,57,57,51,93,44,91,45,56,55,46,54,51,53,57,51,50,44,51,51,46,57,49,53,50,53,49,93,44,91,45,56,55,46,54,51,54,49,49,56,44,51,52,46,48,48,50,50,48,51,93,44,91,45,56,55,46,54,51,52,55,50,53,44,51,52,46,51,48,54,57,57,55,93,44,91,45,56,56,46,49,55,51,54,51,50,44,51,52,46,51,50,49,48,53,52,93,44,91,45,56,56,46,50,48,51,56,54,52,44,51,52,46,48,56,54,53,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,87,97,116,97,117,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,49,55,44,34,98,101,100,115,34,58,49,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,49,56,49,49,57,44,51,54,46,50,56,55,49,50,57,93,44,91,45,56,49,46,56,49,48,53,49,54,44,51,54,46,49,49,49,53,49,49,93,44,91,45,56,49,46,53,52,53,52,56,56,44,51,54,46,49,49,55,52,55,53,93,44,91,45,56,49,46,52,55,55,53,49,54,44,51,54,46,50,52,48,50,53,93,44,91,45,56,49,46,55,50,56,55,56,49,44,51,54,46,51,57,49,51,48,57,93,44,91,45,56,49,46,57,49,56,49,49,57,44,51,54,46,50,56,55,49,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,55,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,55,48,34,44,34,78,65,77,69,34,58,34,82,111,97,110,111,107,101,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,54,50,49,44,34,98,101,100,115,34,58,54,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,51,51,52,54,52,44,51,55,46,50,54,50,56,57,93,44,91,45,55,57,46,57,52,54,56,49,55,44,51,55,46,50,49,51,48,51,55,93,44,91,45,55,57,46,57,48,53,52,54,44,51,55,46,51,50,49,56,51,53,93,44,91,45,56,48,46,48,50,50,50,50,54,44,51,55,46,51,48,56,51,51,56,93,44,91,45,56,48,46,48,51,51,52,54,52,44,51,55,46,50,54,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,55,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,49,52,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,57,53,48,49,49,44,51,50,46,48,56,55,53,51,50,93,44,91,45,49,48,49,46,54,56,56,55,52,44,51,50,46,53,50,53,50,50,50,93,44,91,45,49,48,50,46,50,48,50,55,48,51,44,51,50,46,53,50,51,50,55,49,93,44,91,45,49,48,50,46,50,49,49,48,51,55,44,51,50,46,53,50,51,50,52,52,93,44,91,45,49,48,50,46,50,49,49,50,52,57,44,51,50,46,48,56,54,56,93,44,91,45,49,48,49,46,55,55,54,48,56,53,44,51,50,46,48,56,54,57,50,53,93,44,91,45,49,48,49,46,54,57,53,48,49,49,44,51,50,46,48,56,55,53,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,66,111,119,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,56,53,56,44,34,98,101,100,115,34,58,56,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,52,54,48,57,54,44,51,51,46,55,48,51,48,49,54,93,44,91,45,57,52,46,55,52,54,57,50,53,44,51,51,46,51,50,56,57,51,56,93,44,91,45,57,52,46,54,53,50,50,54,44,51,51,46,50,54,56,56,54,49,93,44,91,45,57,52,46,52,54,56,52,52,50,44,51,51,46,50,57,52,51,49,51,93,44,91,45,57,52,46,50,51,49,51,51,51,44,51,51,46,50,52,49,48,55,51,93,44,91,45,57,52,46,50,49,56,55,55,55,44,51,51,46,50,57,54,52,48,50,93,44,91,45,57,52,46,48,52,50,57,56,55,44,51,51,46,50,55,49,50,52,50,93,44,91,45,57,52,46,48,52,51,52,53,44,51,51,46,53,53,50,50,53,51,93,44,91,45,57,52,46,50,57,49,50,49,50,44,51,51,46,53,56,49,52,55,56,93,44,91,45,57,52,46,51,56,57,53,51,44,51,51,46,53,52,54,55,51,57,93,44,91,45,57,52,46,52,56,53,56,55,56,44,51,51,46,54,51,55,56,54,53,93,44,91,45,57,52,46,53,54,52,48,55,54,44,51,51,46,54,50,54,50,54,53,93,44,91,45,57,52,46,55,52,54,48,57,54,44,51,51,46,55,48,51,48,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,87,101,98,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,55,55,51,49,44,34,98,101,100,115,34,58,53,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,56,53,52,52,51,44,52,49,46,52,50,54,51,55,52,93,44,91,45,49,49,50,46,48,50,56,54,55,50,44,52,49,46,51,51,54,53,49,50,93,44,91,45,49,49,50,46,50,51,56,48,54,53,44,52,49,46,51,51,54,53,53,50,93,44,91,45,49,49,50,46,52,57,51,53,49,53,44,52,49,46,48,55,54,56,56,56,93,44,91,45,49,49,50,46,49,56,54,54,57,51,44,52,49,46,49,53,51,48,50,56,93,44,91,45,49,49,49,46,56,53,54,50,52,55,44,52,49,46,49,51,57,48,56,51,93,44,91,45,49,49,49,46,56,53,55,55,57,57,44,52,49,46,49,57,55,55,53,51,93,44,91,45,49,49,49,46,54,53,56,54,51,54,44,52,49,46,49,56,53,55,49,56,93,44,91,45,49,49,49,46,52,57,54,56,49,53,44,52,49,46,50,51,48,54,49,93,44,91,45,49,49,49,46,52,50,48,55,50,56,44,52,49,46,51,54,49,51,48,56,93,44,91,45,49,49,49,46,53,49,48,56,51,57,44,52,49,46,52,50,51,49,93,44,91,45,49,49,49,46,54,54,54,53,55,54,44,52,49,46,52,50,56,56,51,93,44,91,45,49,49,49,46,55,50,54,49,56,49,44,52,49,46,51,55,53,57,56,54,93,44,91,45,49,49,49,46,56,56,53,52,52,51,44,52,49,46,52,50,54,51,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,55,50,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,52,48,51,53,51,44,51,57,46,57,52,56,50,51,53,93,44,91,45,57,49,46,56,52,54,55,52,51,44,51,57,46,54,53,56,53,49,51,93,44,91,45,57,49,46,55,49,53,50,52,55,44,51,57,46,54,53,55,54,52,52,93,44,91,45,57,49,46,55,49,53,52,57,55,44,51,57,46,54,56,54,52,57,50,93,44,91,45,57,49,46,51,48,54,54,57,51,44,51,57,46,54,56,52,56,54,53,93,44,91,45,57,49,46,51,54,53,49,50,53,44,51,57,46,55,53,56,55,50,51,93,44,91,45,57,49,46,52,51,51,55,57,56,44,51,57,46,56,52,49,56,54,53,93,44,91,45,57,49,46,52,51,53,53,49,55,44,51,57,46,57,52,53,50,50,50,93,44,91,45,57,49,46,56,52,48,51,53,51,44,51,57,46,57,52,56,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,52,52,56,44,34,98,101,100,115,34,58,51,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,54,48,48,52,54,44,52,52,46,52,48,51,50,54,51,93,44,91,45,55,54,46,49,54,49,56,50,53,44,52,52,46,50,56,48,55,55,54,93,44,91,45,55,54,46,52,51,56,50,56,55,44,52,52,46,48,57,52,49,55,50,93,44,91,45,55,54,46,55,51,52,55,50,53,44,52,51,46,55,48,56,49,50,49,93,44,91,45,55,54,46,54,52,52,55,49,50,44,52,51,46,55,48,51,52,54,54,93,44,91,45,55,54,46,48,50,50,48,48,51,44,52,51,46,54,54,56,49,52,51,93,44,91,45,55,53,46,55,55,52,53,53,51,44,52,51,46,54,56,56,56,56,52,93,44,91,45,55,53,46,55,53,56,49,53,55,44,52,51,46,56,55,56,55,56,53,93,44,91,45,55,53,46,52,56,52,53,50,56,44,52,52,46,48,55,52,49,55,50,93,44,91,45,55,53,46,52,52,54,49,50,52,44,52,52,46,50,49,55,54,53,53,93,44,91,45,55,53,46,56,54,48,48,52,54,44,52,52,46,52,48,51,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,51,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,55,51,55,57,56,44,52,50,46,51,56,49,52,53,56,93,44,91,45,57,48,46,54,54,53,48,50,57,44,52,50,46,51,56,50,49,53,53,93,44,91,45,57,48,46,54,54,53,53,53,49,44,52,50,46,50,57,52,54,57,57,93,44,91,45,57,48,46,56,57,56,48,50,44,52,50,46,50,57,53,50,51,54,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,50,46,48,51,51,53,52,56,93,44,91,45,57,48,46,49,53,52,50,50,49,44,52,50,46,48,51,51,48,55,51,93,44,91,45,57,48,46,49,54,50,56,57,53,44,52,50,46,49,49,54,55,49,56,93,44,91,45,57,48,46,51,49,55,51,57,53,44,52,50,46,49,57,51,54,52,53,93,44,91,45,57,48,46,51,57,49,49,48,56,44,52,50,46,50,50,53,52,55,51,93,44,91,45,57,48,46,52,55,51,55,57,56,44,52,50,46,51,56,49,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,78,101,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,50,48,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,57,50,49,56,52,44,52,56,46,49,57,53,49,55,55,93,44,91,45,57,56,46,52,50,50,48,53,55,44,52,56,46,49,57,52,55,56,50,93,44,91,45,57,56,46,52,50,50,52,55,52,44,52,56,46,48,50,49,48,56,93,44,91,45,57,56,46,53,50,53,53,53,53,44,52,55,46,57,49,53,48,53,54,93,44,91,45,57,56,46,53,50,53,53,49,54,44,52,55,46,56,52,54,50,55,54,93,44,91,45,57,56,46,53,48,48,49,56,49,44,52,55,46,54,55,50,52,49,51,93,44,91,45,57,55,46,57,56,52,50,52,56,44,52,55,46,54,55,50,51,48,51,93,44,91,45,57,55,46,56,56,50,50,55,49,44,52,55,46,54,55,50,49,55,57,93,44,91,45,57,55,46,56,56,50,48,54,53,44,52,56,46,48,50,48,56,52,52,93,44,91,45,57,55,46,57,48,51,51,49,51,44,52,56,46,49,57,52,56,52,53,93,44,91,45,57,56,46,50,57,50,49,56,52,44,52,56,46,49,57,53,49,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,55,57,52,44,34,98,101,100,115,34,58,51,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,48,50,55,51,56,57,44,52,52,46,57,57,53,54,56,53,93,44,91,45,55,51,46,57,56,54,51,56,50,44,52,52,46,55,48,55,55,55,51,93,44,91,45,55,51,46,57,48,57,54,56,55,44,52,52,46,52,50,57,54,57,57,93,44,91,45,55,51,46,52,57,55,53,54,55,44,52,52,46,52,56,54,50,51,93,44,91,45,55,51,46,51,51,56,54,51,54,44,52,52,46,53,52,54,56,52,52,93,44,91,45,55,51,46,51,54,49,52,53,53,44,52,52,46,53,54,51,53,54,51,93,44,91,45,55,51,46,51,56,57,56,50,44,52,52,46,54,49,55,50,49,49,93,44,91,45,55,51,46,51,51,53,48,52,52,44,52,52,46,56,48,52,49,48,57,93,44,91,45,55,51,46,51,52,51,49,50,52,44,52,53,46,48,49,48,56,52,93,44,91,45,55,52,46,48,50,55,51,56,57,44,52,52,46,57,57,53,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,53,51,56,44,34,98,101,100,115,34,58,49,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,48,51,55,51,54,51,44,52,48,46,48,57,49,53,51,56,93,44,91,45,49,48,55,46,51,49,54,57,57,51,44,52,48,46,48,57,48,55,54,53,93,44,91,45,49,48,55,46,51,49,56,55,53,49,44,51,57,46,57,49,52,57,54,56,93,44,91,45,49,48,55,46,52,51,49,55,55,44,51,57,46,56,50,56,51,55,55,93,44,91,45,49,48,55,46,57,51,56,53,48,50,44,51,57,46,56,50,52,57,57,54,93,44,91,45,49,48,55,46,57,51,56,53,52,54,44,51,57,46,54,57,52,52,54,52,93,44,91,45,49,48,56,46,53,53,52,55,50,50,44,51,57,46,54,57,51,54,52,93,44,91,45,49,48,56,46,53,53,52,54,50,55,44,51,57,46,54,53,48,49,54,52,93,44,91,45,49,48,57,46,48,53,49,50,50,55,44,51,57,46,54,54,48,52,54,54,93,44,91,45,49,48,57,46,48,53,49,50,50,54,44,51,57,46,52,57,55,55,51,57,93,44,91,45,49,48,57,46,48,53,48,55,54,53,44,51,57,46,51,54,54,54,55,55,93,44,91,45,49,48,56,46,52,48,57,54,48,55,44,51,57,46,51,54,53,57,56,51,93,44,91,45,49,48,55,46,52,51,48,57,52,57,44,51,57,46,51,54,54,49,55,56,93,44,91,45,49,48,55,46,49,49,51,52,52,54,44,51,57,46,51,54,54,48,54,54,93,44,91,45,49,48,55,46,49,49,51,54,55,50,44,51,57,46,57,49,57,49,49,50,93,44,91,45,49,48,55,46,48,51,51,57,54,56,44,51,57,46,57,49,56,57,49,51,93,44,91,45,49,48,55,46,48,51,55,51,54,51,44,52,48,46,48,57,49,53,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,82,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,50,53,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,49,48,54,52,50,44,51,57,46,52,53,52,54,56,50,93,44,91,45,57,52,46,50,49,50,53,49,53,44,51,57,46,50,48,55,48,56,54,93,44,91,45,57,52,46,49,48,52,56,50,51,44,51,57,46,49,52,51,53,48,55,93,44,91,45,57,52,46,48,50,56,56,50,50,44,51,57,46,49,57,49,53,57,53,93,44,91,45,57,51,46,55,53,56,52,54,51,44,51,57,46,50,48,55,48,50,49,93,44,91,45,57,51,46,55,53,57,49,56,51,44,51,57,46,53,50,52,53,53,56,93,44,91,45,57,52,46,50,48,56,52,50,51,44,51,57,46,53,50,55,50,93,44,91,45,57,52,46,50,49,48,54,52,50,44,51,57,46,52,53,52,54,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,72,111,99,107,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,55,52,53,51,49,44,51,57,46,54,53,52,57,53,57,93,44,91,45,56,50,46,52,57,54,49,50,51,44,51,57,46,54,48,50,56,52,57,93,44,91,45,56,50,46,55,51,49,53,49,56,44,51,57,46,53,53,52,52,52,53,93,44,91,45,56,50,46,55,52,48,55,50,57,44,51,57,46,52,54,56,51,53,93,44,91,45,56,50,46,55,52,56,53,57,49,44,51,57,46,51,54,56,49,54,53,93,44,91,45,56,50,46,50,56,57,54,54,51,44,51,57,46,51,56,52,49,57,53,93,44,91,45,56,50,46,50,56,48,52,49,44,51,57,46,52,55,50,57,48,54,93,44,91,45,56,50,46,49,54,55,51,55,57,44,51,57,46,52,54,54,51,48,55,93,44,91,45,56,50,46,49,53,57,49,54,49,44,51,57,46,53,53,54,53,55,52,93,44,91,45,56,50,46,51,55,57,56,57,44,51,57,46,53,57,54,55,51,56,93,44,91,45,56,50,46,51,55,52,53,51,49,44,51,57,46,54,53,52,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,111,119,110,100,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,57,54,55,55,52,44,51,50,46,51,52,52,52,51,55,93,44,91,45,56,54,46,54,53,51,52,49,57,44,51,50,46,51,57,55,50,52,55,93,44,91,45,56,54,46,56,49,52,57,49,50,44,51,50,46,51,52,48,56,48,51,93,44,91,45,56,54,46,57,48,56,51,48,50,44,51,50,46,50,50,53,48,50,56,93,44,91,45,56,54,46,57,48,54,57,53,54,44,51,50,46,48,52,55,57,55,93,44,91,45,56,54,46,56,53,55,53,56,51,44,51,49,46,57,54,50,49,54,55,93,44,91,45,56,54,46,52,52,56,49,57,56,44,51,49,46,57,54,52,54,50,57,93,44,91,45,56,54,46,52,48,54,50,55,54,44,51,50,46,48,53,48,55,51,49,93,44,91,45,56,54,46,52,48,56,55,55,49,44,51,50,46,50,52,52,51,48,57,93,44,91,45,56,54,46,52,57,54,55,55,52,44,51,50,46,51,52,52,52,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,97,110,100,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,51,48,50,51,51,44,51,50,46,53,51,56,55,55,93,44,91,45,56,50,46,49,52,56,51,51,56,44,51,50,46,53,50,48,52,50,57,93,44,91,45,56,50,46,50,53,50,55,53,55,44,51,50,46,51,53,51,51,49,93,44,91,45,56,50,46,50,51,50,55,56,56,44,51,50,46,51,49,56,56,51,56,93,44,91,45,56,50,46,48,50,53,51,51,57,44,51,50,46,50,55,56,56,56,51,93,44,91,45,56,49,46,57,54,57,48,54,57,44,51,50,46,50,54,56,55,56,51,93,44,91,45,56,49,46,57,49,56,54,53,50,44,51,50,46,52,49,53,48,55,51,93,44,91,45,56,50,46,48,51,48,50,51,51,44,51,50,46,53,51,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,76,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,50,49,50,49,44,34,98,101,100,115,34,58,57,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,51,49,48,56,57,44,52,50,46,50,57,57,48,54,51,93,44,91,45,57,49,46,56,51,49,51,55,57,44,52,49,46,56,54,49,56,53,49,93,44,91,45,57,49,46,51,54,54,50,50,49,44,52,49,46,56,54,48,48,54,57,93,44,91,45,57,49,46,51,54,53,56,55,55,44,52,49,46,57,52,55,52,49,93,44,91,45,57,49,46,51,54,51,50,54,51,44,52,50,46,50,57,54,52,52,53,93,44,91,45,57,49,46,53,57,54,57,56,49,44,52,50,46,50,57,54,52,48,56,93,44,91,45,57,49,46,56,51,49,48,56,57,44,52,50,46,50,57,57,48,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,84,114,105,110,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,54,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,52,48,56,50,57,49,44,52,49,46,49,55,57,57,52,52,93,44,91,45,49,50,51,46,52,52,55,57,53,54,44,52,48,46,57,52,51,55,53,56,93,44,91,45,49,50,51,46,54,49,53,56,50,55,44,52,48,46,57,49,52,48,54,56,93,44,91,45,49,50,51,46,53,52,51,55,52,57,44,52,48,46,55,51,57,48,49,53,93,44,91,45,49,50,51,46,53,52,52,52,53,56,44,52,48,46,48,48,49,57,50,51,93,44,91,45,49,50,51,46,53,52,52,53,54,51,44,51,57,46,57,55,55,48,49,53,93,44,91,45,49,50,50,46,57,51,52,48,49,51,44,51,57,46,57,55,56,49,51,49,93,44,91,45,49,50,50,46,57,56,57,48,49,53,44,52,48,46,50,53,48,49,52,53,93,44,91,45,49,50,51,46,48,54,53,52,50,54,44,52,48,46,50,56,54,57,55,49,93,44,91,45,49,50,50,46,57,51,49,50,54,55,44,52,48,46,52,52,53,53,53,55,93,44,91,45,49,50,50,46,54,57,51,48,57,57,44,52,48,46,53,56,48,55,52,55,93,44,91,45,49,50,50,46,55,53,50,48,50,51,44,52,48,46,54,56,57,56,56,50,93,44,91,45,49,50,50,46,54,54,57,56,51,57,44,52,48,46,55,55,51,53,54,55,93,44,91,45,49,50,50,46,53,57,56,53,50,56,44,52,48,46,57,55,53,56,52,55,93,44,91,45,49,50,50,46,53,50,55,55,53,51,44,52,49,46,48,49,52,51,57,53,93,44,91,45,49,50,50,46,52,57,56,51,55,54,44,52,49,46,49,56,50,54,55,53,93,44,91,45,49,50,50,46,53,48,52,50,53,52,44,52,49,46,51,51,52,55,49,93,44,91,45,49,50,50,46,53,57,48,56,48,56,44,52,49,46,51,50,53,57,49,93,44,91,45,49,50,50,46,56,49,49,51,52,50,44,52,49,46,50,48,50,52,53,49,93,44,91,45,49,50,50,46,56,57,55,48,54,54,44,52,49,46,50,48,49,48,48,54,93,44,91,45,49,50,51,46,48,51,54,56,48,56,44,52,49,46,48,48,52,48,53,56,93,44,91,45,49,50,51,46,49,48,57,48,55,55,44,52,49,46,48,55,53,52,50,57,93,44,91,45,49,50,51,46,50,52,53,50,50,50,44,52,49,46,48,55,55,57,56,55,93,44,91,45,49,50,51,46,52,48,56,50,57,49,44,52,49,46,49,55,57,57,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,53,34,44,34,78,65,77,69,34,58,34,77,117,115,99,111,103,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,54,54,55,48,44,34,98,101,100,115,34,58,49,49,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,56,48,55,56,52,44,51,50,46,54,48,56,48,55,50,93,44,91,45,56,53,46,48,48,49,48,50,44,51,50,46,53,49,48,49,53,55,93,44,91,45,56,52,46,57,55,49,57,54,50,44,51,50,46,51,55,55,54,57,56,93,44,91,45,56,52,46,55,57,50,57,53,49,44,51,50,46,52,49,51,56,52,93,44,91,45,56,52,46,54,57,52,53,49,44,51,50,46,53,49,56,55,51,50,93,44,91,45,56,52,46,54,57,52,54,48,51,44,51,50,46,53,56,51,57,52,53,93,44,91,45,56,53,46,48,56,48,55,56,52,44,51,50,46,54,48,56,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,84,97,108,108,97,104,97,116,99,104,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,54,49,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,51,53,52,53,54,44,51,52,46,49,54,48,48,55,52,93,44,91,45,57,48,46,49,51,53,54,57,53,44,51,52,46,48,55,50,57,93,44,91,45,57,48,46,52,53,48,57,56,49,44,51,52,46,48,55,50,57,51,50,93,44,91,45,57,48,46,52,53,49,48,49,50,44,51,51,46,57,56,53,54,56,57,93,44,91,45,57,48,46,52,53,49,54,52,51,44,51,51,46,56,49,49,51,57,93,44,91,45,57,48,46,49,56,50,53,56,52,44,51,51,46,56,48,57,51,50,50,93,44,91,45,57,48,46,49,51,54,55,56,55,44,51,51,46,55,50,49,54,52,56,93,44,91,45,57,48,46,49,51,54,52,57,49,44,51,51,46,56,48,57,51,49,57,93,44,91,45,56,57,46,57,50,54,50,57,52,44,51,51,46,56,50,51,56,53,52,93,44,91,45,56,57,46,57,50,54,48,57,57,44,51,51,46,56,57,55,57,53,55,93,44,91,45,56,57,46,57,51,49,52,56,53,44,51,52,46,49,54,52,51,48,51,93,44,91,45,57,48,46,49,51,53,52,53,54,44,51,52,46,49,54,48,48,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,116,99,104,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,54,52,49,50,54,44,51,57,46,54,53,50,56,55,50,93,44,91,45,57,53,46,53,55,48,51,53,49,44,51,57,46,52,49,57,48,53,93,44,91,45,57,53,46,49,56,48,56,57,49,44,51,57,46,52,49,57,50,49,56,93,44,91,45,57,52,46,57,54,56,57,55,51,44,51,57,46,52,49,56,56,55,57,93,44,91,45,57,53,46,49,48,50,56,56,56,44,51,57,46,53,51,51,51,52,55,93,44,91,45,57,53,46,48,53,51,53,56,54,44,51,57,46,54,49,53,50,54,57,93,44,91,45,57,53,46,49,49,53,49,56,57,44,51,57,46,54,53,50,53,52,57,93,44,91,45,57,53,46,51,51,57,55,52,44,51,57,46,54,53,50,57,56,93,44,91,45,57,53,46,53,54,52,49,50,54,44,51,57,46,54,53,50,56,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,97,114,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,56,57,51,51,51,57,44,49,56,46,51,54,55,48,56,57,93,44,91,45,54,54,46,57,48,55,50,51,54,44,49,56,46,50,53,51,48,57,93,44,91,45,54,54,46,56,57,55,57,54,52,44,49,56,46,49,56,55,55,52,52,93,44,91,45,54,54,46,56,51,54,55,54,44,49,56,46,49,55,48,53,53,51,93,44,91,45,54,54,46,56,50,55,51,50,55,44,49,56,46,49,55,49,50,52,50,93,44,91,45,54,54,46,56,49,55,50,55,49,44,49,56,46,50,51,48,51,51,54,93,44,91,45,54,54,46,56,50,54,49,50,56,44,49,56,46,51,50,51,51,56,50,93,44,91,45,54,54,46,56,50,52,50,50,51,44,49,56,46,51,52,50,57,57,56,93,44,91,45,54,54,46,56,57,51,51,51,57,44,49,56,46,51,54,55,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,100,114,101,119,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,49,56,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,54,52,53,49,54,44,51,50,46,48,56,55,48,53,49,93,44,91,45,49,48,50,46,55,57,57,48,56,54,44,51,50,46,48,56,53,55,57,53,93,44,91,45,49,48,50,46,50,56,55,48,52,56,44,51,50,46,48,56,54,57,57,49,93,44,91,45,49,48,50,46,50,49,49,50,52,57,44,51,50,46,48,56,54,56,93,44,91,45,49,48,50,46,50,49,49,48,51,55,44,51,50,46,53,50,51,50,52,52,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,53,50,50,49,57,51,93,44,91,45,49,48,51,46,48,54,52,53,49,54,44,51,50,46,48,56,55,48,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,77,105,97,109,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,56,48,48,44,34,98,101,100,115,34,58,49,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,51,50,53,55,53,44,52,48,46,49,57,55,48,51,55,93,44,91,45,56,52,46,52,50,53,57,48,50,44,51,57,46,57,49,57,54,50,50,93,44,91,45,56,52,46,49,53,55,54,55,49,44,51,57,46,57,50,50,57,55,93,44,91,45,56,52,46,48,53,49,48,49,50,44,51,57,46,56,55,57,56,49,93,44,91,45,56,52,46,48,51,54,48,54,57,44,52,48,46,48,52,48,49,56,50,93,44,91,45,56,52,46,48,50,50,57,49,57,44,52,48,46,49,56,51,57,52,53,93,44,91,45,56,52,46,52,51,50,53,55,53,44,52,48,46,49,57,55,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,55,53,34,44,34,78,65,77,69,34,58,34,80,111,116,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,56,57,57,44,34,98,101,100,115,34,58,57,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,44,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,44,91,45,49,48,49,46,54,50,50,56,44,51,53,46,54,50,48,49,57,54,93,44,91,45,49,48,50,46,49,54,50,55,53,50,44,51,53,46,54,50,48,48,51,53,93,44,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,83,101,109,105,110,111,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,55,49,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,50,51,54,57,57,44,51,53,46,52,48,48,55,50,50,93,44,91,45,57,54,46,55,55,54,54,57,52,44,51,53,46,52,48,53,52,49,55,93,44,91,45,57,54,46,55,55,53,54,56,49,44,51,52,46,56,57,57,57,53,56,93,44,91,45,57,54,46,54,54,55,54,57,50,44,51,52,46,57,50,57,53,56,51,93,44,91,45,57,54,46,52,57,48,55,56,54,44,51,52,46,57,49,48,53,56,53,93,44,91,45,57,54,46,52,57,48,52,51,52,44,51,53,46,49,49,53,56,53,55,93,44,91,45,57,54,46,52,52,49,51,54,56,44,51,53,46,50,57,48,49,50,50,93,44,91,45,57,54,46,52,52,53,53,56,52,44,51,53,46,52,53,56,55,55,49,93,44,91,45,57,54,46,54,50,51,54,57,57,44,51,53,46,52,48,48,55,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,105,107,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,57,50,54,44,34,98,101,100,115,34,58,50,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,53,49,55,53,57,44,51,51,46,56,49,52,53,49,93,44,91,45,56,50,46,48,49,50,52,55,44,51,51,46,53,51,50,49,49,54,93,44,91,45,56,49,46,57,51,52,49,51,54,44,51,51,46,52,54,56,51,51,55,93,44,91,45,56,49,46,57,49,56,51,51,55,44,51,51,46,51,51,50,56,52,50,93,44,91,45,56,49,46,56,53,50,48,55,54,44,51,51,46,50,52,55,50,56,56,93,44,91,45,56,49,46,55,53,55,48,51,53,44,51,51,46,49,57,56,49,52,56,93,44,91,45,56,49,46,51,55,50,57,51,49,44,51,51,46,52,57,48,52,49,55,93,44,91,45,56,49,46,49,56,55,50,55,49,44,51,51,46,54,53,50,57,51,55,93,44,91,45,56,49,46,52,49,53,51,48,56,44,51,51,46,55,51,50,49,54,49,93,44,91,45,56,49,46,53,55,49,52,56,55,44,51,51,46,56,55,55,51,49,56,93,44,91,45,56,49,46,54,53,49,55,53,57,44,51,51,46,56,49,52,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,77,101,110,100,111,99,105,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,52,50,50,44,34,98,101,100,115,34,58,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,49,51,52,56,56,57,44,52,48,46,48,48,50,52,55,93,44,91,45,49,50,51,46,57,51,56,53,57,49,44,51,57,46,56,49,52,57,52,52,93,44,91,45,49,50,51,46,56,53,55,49,56,51,44,51,57,46,54,55,52,54,57,51,93,44,91,45,49,50,51,46,56,51,52,54,52,57,44,51,57,46,53,52,57,49,57,52,93,44,91,45,49,50,51,46,56,57,51,48,56,53,44,51,57,46,51,51,55,52,57,52,93,44,91,45,49,50,51,46,55,54,49,57,54,53,44,51,57,46,48,52,49,48,57,49,93,44,91,45,49,50,51,46,55,56,52,54,55,54,44,51,56,46,56,57,51,55,50,56,93,44,91,45,49,50,51,46,54,51,50,52,57,55,44,51,56,46,55,53,56,49,49,57,93,44,91,45,49,50,51,46,51,54,56,51,57,52,44,51,56,46,56,48,54,54,52,93,44,91,45,49,50,51,46,49,51,54,50,53,51,44,51,56,46,56,48,57,49,51,54,93,44,91,45,49,50,51,46,48,56,48,57,57,55,44,51,56,46,56,53,50,52,51,56,93,44,91,45,49,50,50,46,56,50,49,53,57,50,44,51,56,46,56,53,48,49,52,93,44,91,45,49,50,50,46,57,52,56,56,54,53,44,51,56,46,57,48,48,50,50,93,44,91,45,49,50,50,46,57,56,54,54,52,44,51,56,46,57,57,55,50,56,51,93,44,91,45,49,50,51,46,48,57,51,48,49,51,44,51,57,46,48,55,49,57,57,52,93,44,91,45,49,50,51,46,48,49,50,55,49,44,51,57,46,50,51,54,49,56,56,93,44,91,45,49,50,51,46,48,55,53,49,49,52,44,51,57,46,52,48,55,54,56,51,93,44,91,45,49,50,51,46,48,54,51,49,56,49,44,51,57,46,53,48,51,53,51,57,93,44,91,45,49,50,50,46,56,57,48,51,49,44,51,57,46,53,50,57,48,49,52,93,44,91,45,49,50,50,46,56,56,53,51,53,50,44,51,57,46,53,56,48,49,48,56,93,44,91,45,49,50,50,46,57,51,55,54,53,52,44,51,57,46,55,57,56,49,53,54,93,44,91,45,49,50,50,46,57,51,52,48,49,51,44,51,57,46,57,55,56,49,51,49,93,44,91,45,49,50,51,46,53,52,52,53,54,51,44,51,57,46,57,55,55,48,49,53,93,44,91,45,49,50,51,46,53,52,52,52,53,56,44,52,48,46,48,48,49,57,50,51,93,44,91,45,49,50,52,46,49,51,52,56,56,57,44,52,48,46,48,48,50,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,53,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,53,48,34,44,34,78,65,77,69,34,58,34,67,104,101,115,97,112,101,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,55,56,50,48,44,34,98,101,100,115,34,58,51,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,50,48,51,54,56,44,51,54,46,56,54,54,51,52,56,93,44,91,45,55,54,46,52,53,55,52,54,57,44,51,54,46,56,49,52,56,52,49,93,44,91,45,55,54,46,52,57,49,52,57,54,44,51,54,46,53,53,48,54,52,56,93,44,91,45,55,54,46,51,49,51,51,48,51,44,51,54,46,53,53,48,53,50,93,44,91,45,55,54,46,49,50,50,51,52,57,44,51,54,46,53,53,48,53,50,51,93,44,91,45,55,54,46,49,50,49,57,53,53,44,51,54,46,54,54,53,55,53,93,44,91,45,55,54,46,50,50,54,48,54,44,51,54,46,56,51,57,57,52,55,93,44,91,45,55,54,46,50,56,57,57,54,50,44,51,54,46,56,50,50,48,52,56,93,44,91,45,55,54,46,52,50,48,51,54,56,44,51,54,46,56,54,54,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,89,97,117,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,52,51,57,44,34,98,101,100,115,34,58,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,57,50,54,53,49,55,44,49,56,46,49,53,49,50,54,55,93,44,91,45,54,54,46,56,56,52,54,53,51,44,49,56,46,48,50,52,56,49,54,93,44,91,45,54,54,46,56,53,56,50,51,51,44,49,55,46,57,53,48,56,50,53,93,44,91,45,54,54,46,55,57,55,53,53,55,44,49,56,46,49,51,51,52,52,53,93,44,91,45,54,54,46,56,50,55,51,50,55,44,49,56,46,49,55,49,50,52,50,93,44,91,45,54,54,46,56,51,54,55,54,44,49,56,46,49,55,48,53,53,51,93,44,91,45,54,54,46,57,50,54,53,49,55,44,49,56,46,49,53,49,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,83,119,101,101,116,119,97,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,49,49,55,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,51,56,54,52,44,52,50,46,50,54,51,54,56,52,93,44,91,45,49,49,48,46,48,53,51,55,48,56,44,52,50,46,50,55,48,55,52,52,93,44,91,45,49,49,48,46,48,52,56,44,52,49,46,53,55,56,48,49,53,93,44,91,45,49,49,48,46,48,52,56,52,56,51,44,52,48,46,57,57,55,50,57,53,93,44,91,45,49,49,48,46,48,48,48,55,49,55,44,52,48,46,57,57,55,52,53,93,44,91,45,49,48,57,46,48,53,48,48,50,54,44,52,49,46,48,48,48,54,57,49,93,44,91,45,49,48,55,46,57,49,56,52,50,49,44,52,49,46,48,48,50,48,51,54,93,44,91,45,49,48,55,46,57,50,57,55,51,54,44,52,49,46,54,53,57,53,57,54,93,44,91,45,49,48,55,46,53,48,57,55,50,44,52,49,46,54,53,55,52,53,50,93,44,91,45,49,48,55,46,53,48,51,56,50,49,44,52,50,46,48,56,55,57,53,55,93,44,91,45,49,48,55,46,53,50,50,55,50,50,44,52,50,46,50,54,49,55,53,54,93,44,91,45,49,48,57,46,48,52,51,56,54,52,44,52,50,46,50,54,51,54,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,71,97,114,122,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,44,91,45,49,48,49,46,53,53,54,56,56,52,44,51,51,46,51,57,52,55,54,93,44,91,45,49,48,49,46,53,53,55,52,51,52,44,51,50,46,57,54,49,48,50,53,93,44,91,45,49,48,49,46,49,55,51,51,55,56,44,51,50,46,57,54,51,53,57,55,93,44,91,45,49,48,49,46,48,51,56,54,54,44,51,50,46,57,55,48,50,50,53,93,44,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,72,97,114,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,52,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,44,91,45,55,57,46,48,56,57,54,53,53,44,51,57,46,48,51,56,50,48,56,93,44,91,45,55,57,46,48,52,53,57,53,51,44,51,56,46,57,50,56,55,49,93,44,91,45,55,57,46,49,51,52,50,57,54,44,51,56,46,56,49,51,51,52,93,44,91,45,55,57,46,48,53,55,50,53,51,44,51,56,46,55,54,49,52,49,51,93,44,91,45,55,56,46,57,57,51,55,54,49,44,51,56,46,56,53,48,48,50,49,93,44,91,45,55,56,46,56,54,57,50,54,49,44,51,56,46,55,54,50,57,56,93,44,91,45,55,56,46,55,56,56,48,51,49,44,51,56,46,56,56,53,49,50,51,93,44,91,45,55,56,46,54,56,48,52,53,54,44,51,56,46,57,50,53,51,49,51,93,44,91,45,55,56,46,53,52,52,49,56,50,44,51,57,46,48,53,54,53,53,57,93,44,91,45,55,56,46,53,48,56,49,51,50,44,51,57,46,48,56,56,54,51,93,44,91,45,55,56,46,56,57,57,54,57,53,44,51,57,46,49,57,57,49,51,55,93,44,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,106,117,110,116,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,56,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,56,49,55,50,55,49,44,49,56,46,50,51,48,51,51,54,93,44,91,45,54,54,46,56,50,55,51,50,55,44,49,56,46,49,55,49,50,52,50,93,44,91,45,54,54,46,55,57,55,53,53,55,44,49,56,46,49,51,51,52,52,53,93,44,91,45,54,54,46,55,54,57,48,52,57,44,49,56,46,49,51,52,57,56,51,93,44,91,45,54,54,46,54,57,52,48,55,44,49,56,46,49,51,48,53,51,52,93,44,91,45,54,54,46,54,55,48,52,57,52,44,49,56,46,49,53,50,56,51,49,93,44,91,45,54,54,46,54,57,50,53,55,50,44,49,56,46,50,49,53,56,56,51,93,44,91,45,54,54,46,56,49,55,50,55,49,44,49,56,46,50,51,48,51,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,79,122,97,117,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,50,56,52,44,34,98,101,100,115,34,58,51,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,52,48,53,50,56,44,52,51,46,53,52,50,51,54,49,93,44,91,45,56,56,46,48,54,51,51,53,51,44,52,51,46,49,57,50,49,49,55,93,44,91,45,56,55,46,49,49,57,48,48,56,44,52,51,46,49,57,48,56,49,54,93,44,91,45,56,55,46,49,52,48,51,51,49,44,52,51,46,52,55,49,52,51,54,93,44,91,45,56,55,46,49,51,52,55,55,56,44,52,51,46,53,52,49,52,51,51,93,44,91,45,56,56,46,48,52,48,53,50,56,44,52,51,46,53,52,50,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,55,51,52,44,34,98,101,100,115,34,58,49,50,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,57,52,49,51,52,44,51,54,46,53,57,53,54,57,55,93,44,91,45,56,50,46,54,48,57,49,55,54,44,51,54,46,53,57,52,48,57,57,93,44,91,45,56,50,46,54,56,48,54,55,55,44,51,54,46,52,51,49,56,93,44,91,45,56,50,46,52,51,56,51,53,53,44,51,54,46,52,52,53,54,51,57,93,44,91,45,56,50,46,50,57,57,56,53,57,44,51,54,46,51,57,54,53,48,53,93,44,91,45,56,50,46,49,56,56,48,53,51,44,51,54,46,52,48,48,54,48,56,93,44,91,45,56,49,46,57,56,51,56,52,51,44,51,54,46,53,48,56,51,49,52,93,44,91,45,56,49,46,56,50,54,55,52,50,44,51,54,46,54,49,52,50,49,53,93,44,91,45,56,50,46,49,52,53,53,55,51,44,51,54,46,53,57,52,55,50,53,93,44,91,45,56,50,46,50,52,51,51,56,50,44,51,54,46,53,57,53,54,53,49,93,44,91,45,56,50,46,50,57,52,49,51,52,44,51,54,46,53,57,53,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,76,97,117,114,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,55,49,48,44,34,98,101,100,115,34,58,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,52,54,55,57,50,44,51,52,46,55,56,53,53,53,52,93,44,91,45,56,50,46,50,51,56,48,53,52,44,51,52,46,53,56,54,57,53,54,93,44,91,45,56,50,46,51,49,51,57,57,54,44,51,52,46,52,56,52,48,48,50,93,44,91,45,56,50,46,50,52,54,51,51,55,44,51,52,46,52,48,57,54,55,54,93,44,91,45,56,50,46,49,54,57,50,57,55,44,51,52,46,51,51,48,55,52,54,93,44,91,45,56,49,46,57,52,53,48,49,57,44,51,52,46,50,48,51,49,52,56,93,44,91,45,56,49,46,56,56,51,48,55,54,44,51,52,46,51,49,49,57,54,52,93,44,91,45,56,49,46,55,56,50,54,50,55,44,51,52,46,51,54,53,48,56,57,93,44,91,45,56,49,46,54,52,51,53,53,50,44,51,52,46,53,51,51,54,53,50,93,44,91,45,56,49,46,56,53,52,48,48,50,44,51,52,46,53,57,52,53,52,57,93,44,91,45,56,50,46,48,55,49,51,49,53,44,51,52,46,55,48,51,55,93,44,91,45,56,50,46,49,52,54,55,57,50,44,51,52,46,55,56,53,53,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,114,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,49,48,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,55,54,54,48,49,44,52,52,46,57,57,57,57,50,54,93,44,91,45,49,48,53,46,48,56,53,52,53,49,44,52,52,46,55,56,54,56,48,49,93,44,91,45,49,48,53,46,48,55,57,50,56,49,44,52,52,46,49,55,54,49,56,50,93,44,91,45,49,48,52,46,48,53,52,52,56,55,44,52,52,46,49,56,48,51,56,49,93,44,91,45,49,48,52,46,48,53,53,57,52,51,44,52,52,46,53,55,49,48,50,53,93,44,91,45,49,48,52,46,48,53,55,56,55,57,44,52,52,46,57,57,55,54,48,53,93,44,91,45,49,48,53,46,48,51,56,50,52,57,44,52,53,46,48,48,48,49,48,54,93,44,91,45,49,48,53,46,48,55,54,54,48,49,44,52,52,46,57,57,57,57,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,83,104,101,98,111,121,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,50,48,53,44,34,98,101,100,115,34,58,51,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,54,50,50,55,52,44,52,51,46,56,57,49,53,49,49,93,44,91,45,56,56,46,49,54,48,56,55,51,44,52,51,46,53,52,50,57,52,51,93,44,91,45,56,56,46,48,52,48,53,50,56,44,52,51,46,53,52,50,51,54,49,93,44,91,45,56,55,46,49,51,52,55,55,56,44,52,51,46,53,52,49,52,51,51,93,44,91,45,56,55,46,48,57,51,49,48,57,44,52,51,46,56,50,48,49,49,51,93,44,91,45,56,55,46,48,55,53,51,51,53,44,52,51,46,56,57,52,55,55,52,93,44,91,45,56,56,46,48,52,49,55,57,52,44,52,51,46,56,57,49,54,57,50,93,44,91,45,56,56,46,49,54,50,50,55,52,44,52,51,46,56,57,49,53,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,72,97,109,112,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,57,49,49,54,44,34,98,101,100,115,34,58,49,53,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,48,48,48,49,55,51,44,52,50,46,51,49,50,54,55,56,93,44,91,45,55,51,46,48,53,51,50,56,56,44,52,50,46,48,51,57,56,54,53,93,44,91,45,55,51,46,48,48,56,55,54,54,44,52,50,46,48,51,56,55,56,53,93,44,91,45,55,50,46,53,48,57,50,51,51,44,52,50,46,48,51,52,51,55,54,93,44,91,45,55,50,46,49,51,53,55,49,53,44,52,50,46,48,51,48,50,50,50,93,44,91,45,55,50,46,49,51,53,48,49,49,44,52,50,46,49,54,49,55,56,52,93,44,91,45,55,50,46,50,50,49,50,49,56,44,52,50,46,50,52,53,50,53,50,93,44,91,45,55,50,46,55,56,49,48,51,57,44,52,50,46,49,57,57,55,52,57,93,44,91,45,55,51,46,48,48,48,49,55,51,44,52,50,46,51,49,50,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,67,97,108,100,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,52,48,49,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,49,48,50,49,53,44,51,48,46,48,50,52,52,57,57,93,44,91,45,57,55,46,56,55,53,50,53,57,44,50,57,46,56,53,56,50,48,56,93,44,91,45,57,55,46,55,51,53,55,50,44,50,57,46,54,57,49,49,57,56,93,44,91,45,57,55,46,54,51,51,49,55,54,44,50,57,46,54,52,57,56,54,51,93,44,91,45,57,55,46,53,57,55,55,52,51,44,50,57,46,54,51,48,55,49,56,93,44,91,45,57,55,46,51,49,55,56,57,51,44,50,57,46,55,56,52,54,53,56,93,44,91,45,57,55,46,51,49,53,56,50,51,44,50,57,46,55,56,54,53,52,49,93,44,91,45,57,55,46,54,52,57,51,55,44,51,48,46,48,54,55,57,52,52,93,44,91,45,57,55,46,55,49,48,50,49,53,44,51,48,46,48,50,52,52,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,108,111,117,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,51,49,56,52,52,44,51,57,46,53,54,54,57,50,49,93,44,91,45,57,55,46,57,50,57,48,57,55,44,51,57,46,51,48,54,51,57,55,93,44,91,45,57,55,46,51,54,57,56,51,57,44,51,57,46,51,48,54,48,49,49,93,44,91,45,57,55,46,51,54,56,53,55,52,44,51,57,46,53,54,55,48,49,56,93,44,91,45,57,55,46,51,54,56,54,55,44,51,57,46,54,53,52,48,52,51,93,44,91,45,57,55,46,57,51,49,52,56,50,44,51,57,46,54,53,51,55,54,55,93,44,91,45,57,55,46,57,51,49,56,52,52,44,51,57,46,53,54,54,57,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,73,110,121,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,56,53,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,51,54,48,53,56,54,44,51,54,46,55,52,52,55,55,51,93,44,91,45,49,49,56,46,50,52,56,57,50,44,51,54,46,52,56,54,53,51,53,93,44,91,45,49,49,56,46,49,48,48,49,49,54,44,51,54,46,51,50,56,56,50,51,93,44,91,45,49,49,56,46,49,50,55,54,48,49,44,51,54,46,50,56,48,51,52,56,93,44,91,45,49,49,55,46,57,56,50,52,55,51,44,51,53,46,56,57,53,55,57,54,93,44,91,45,49,49,56,46,48,48,56,48,52,51,44,51,53,46,55,56,57,49,54,49,93,44,91,45,49,49,55,46,54,51,50,57,57,54,44,51,53,46,55,57,55,50,53,49,93,44,91,45,49,49,54,46,56,55,48,54,51,50,44,51,53,46,55,57,53,51,55,54,93,44,91,45,49,49,53,46,55,51,53,56,57,49,44,51,53,46,55,57,51,54,50,93,44,91,45,49,49,53,46,54,52,56,51,53,55,44,51,53,46,56,48,57,50,49,49,93,44,91,45,49,49,53,46,56,52,53,57,57,52,44,51,53,46,57,54,51,55,48,55,93,44,91,45,49,49,54,46,51,56,48,51,52,55,44,51,54,46,51,55,52,57,54,49,93,44,91,45,49,49,55,46,49,54,54,48,48,49,44,51,54,46,57,55,49,49,49,49,93,44,91,45,49,49,55,46,56,51,50,55,50,54,44,51,55,46,52,54,52,57,50,57,93,44,91,45,49,49,56,46,55,55,53,48,49,52,44,51,55,46,52,54,51,48,53,50,93,44,91,45,49,49,56,46,55,56,54,55,51,54,44,51,55,46,51,52,51,51,56,93,44,91,45,49,49,56,46,55,49,54,48,49,54,44,51,55,46,51,50,56,50,48,56,93,44,91,45,49,49,56,46,54,53,52,53,57,51,44,51,55,46,49,52,49,56,50,54,93,44,91,45,49,49,56,46,53,48,51,49,48,51,44,51,55,46,48,57,53,50,50,49,93,44,91,45,49,49,56,46,52,50,50,53,57,53,44,51,55,46,48,50,52,51,54,93,44,91,45,49,49,56,46,51,54,48,56,51,49,44,51,54,46,56,56,55,55,51,52,93,44,91,45,49,49,56,46,51,54,48,53,56,54,44,51,54,46,55,52,52,55,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,111,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,48,57,49,55,44,51,51,46,48,57,48,50,54,93,44,91,45,56,54,46,49,55,52,51,55,44,51,51,46,49,48,52,51,57,52,93,44,91,45,56,54,46,52,57,49,48,50,57,44,51,51,46,49,48,50,57,52,52,93,44,91,45,56,54,46,53,49,55,51,52,52,44,51,51,46,48,50,48,53,54,54,93,44,91,45,56,54,46,52,53,55,48,49,53,44,51,50,46,56,49,51,56,57,57,93,44,91,45,56,54,46,51,55,52,57,55,52,44,51,50,46,55,53,51,53,56,93,44,91,45,56,54,46,48,48,55,49,56,55,44,51,50,46,55,53,52,57,56,52,93,44,91,45,56,54,46,48,48,57,49,55,44,51,51,46,48,57,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,68,105,99,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,53,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,56,55,55,56,55,44,52,51,46,53,48,48,50,50,54,93,44,91,45,57,53,46,51,56,56,48,55,56,44,52,51,46,50,53,53,50,50,49,93,44,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,44,91,45,57,52,46,57,49,52,53,56,50,44,52,51,46,53,48,48,56,53,51,93,44,91,45,57,53,46,51,56,55,55,56,55,44,52,51,46,53,48,48,50,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,72,97,114,108,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,49,51,52,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,56,57,56,49,51,44,51,54,46,56,57,53,52,49,51,93,44,91,45,56,51,46,53,48,48,56,57,49,44,51,54,46,55,51,51,50,53,52,93,44,91,45,56,51,46,52,54,49,48,49,54,44,51,54,46,54,54,52,56,54,93,44,91,45,56,51,46,49,57,52,50,53,50,44,51,54,46,55,51,57,53,49,57,93,44,91,45,56,51,46,48,55,50,56,51,54,44,51,54,46,56,53,52,52,53,55,93,44,91,45,56,50,46,56,55,56,52,44,51,54,46,56,57,50,57,53,51,93,44,91,45,56,50,46,56,54,57,49,57,50,44,51,54,46,57,55,52,49,56,54,93,44,91,45,56,50,46,57,51,57,52,54,54,44,51,55,46,48,49,53,53,50,93,44,91,45,56,51,46,49,50,50,48,57,44,51,55,46,48,48,48,57,57,55,93,44,91,45,56,51,46,49,56,50,49,48,52,44,51,55,46,48,50,49,49,49,53,93,44,91,45,56,51,46,50,54,48,48,50,44,51,54,46,57,54,56,57,53,49,93,44,91,45,56,51,46,52,56,57,56,49,51,44,51,54,46,56,57,53,52,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,71,101,97,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,56,57,53,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,54,51,49,55,55,44,51,57,46,49,51,50,51,93,44,91,45,57,54,46,57,54,51,52,55,44,51,56,46,57,54,52,57,48,49,93,44,91,45,57,54,46,56,57,48,50,52,53,44,51,56,46,56,55,48,48,54,55,93,44,91,45,57,54,46,53,48,49,53,53,54,44,51,56,46,56,54,57,55,48,52,93,44,91,45,57,54,46,53,48,49,49,54,54,44,51,57,46,48,52,51,54,54,54,93,44,91,45,57,54,46,53,48,48,57,54,50,44,51,57,46,48,55,50,54,56,49,93,44,91,45,57,54,46,56,53,49,52,48,57,44,51,57,46,48,56,56,49,55,54,93,44,91,45,57,54,46,56,52,57,56,55,57,44,51,57,46,50,49,57,48,49,50,93,44,91,45,57,54,46,57,54,49,54,57,51,44,51,57,46,50,50,48,48,55,54,93,44,91,45,57,54,46,57,54,51,49,55,55,44,51,57,46,49,51,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,101,114,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,54,52,50,44,34,98,101,100,115,34,58,49,51,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,57,49,52,55,51,44,52,48,46,54,55,55,50,55,93,44,91,45,55,54,46,49,55,49,54,50,52,44,52,48,46,53,51,52,57,52,55,93,44,91,45,55,54,46,52,52,48,49,56,49,44,52,48,46,52,57,53,57,53,50,93,44,91,45,55,54,46,49,53,49,50,49,53,44,52,48,46,51,49,53,57,55,49,93,44,91,45,55,53,46,56,55,51,51,55,53,44,52,48,46,49,51,55,49,48,55,93,44,91,45,55,53,46,54,57,54,55,56,50,44,52,48,46,50,52,49,56,54,51,93,44,91,45,55,53,46,53,50,57,54,57,52,44,52,48,46,52,52,54,57,57,53,93,44,91,45,55,53,46,56,57,49,52,55,51,44,52,48,46,54,55,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,57,49,44,34,98,101,100,115,34,58,49,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,57,57,56,53,57,44,51,54,46,51,57,54,53,48,53,93,44,91,45,56,50,46,51,52,48,52,54,44,51,54,46,50,53,50,56,48,55,93,44,91,45,56,50,46,50,50,50,48,54,52,44,51,54,46,49,53,54,57,54,93,44,91,45,56,50,46,48,56,49,48,55,57,44,51,54,46,49,48,51,49,55,93,44,91,45,56,49,46,57,51,51,48,54,53,44,51,54,46,50,54,52,56,55,51,93,44,91,45,56,50,46,48,52,52,49,52,53,44,51,54,46,51,54,51,55,49,54,93,44,91,45,56,49,46,57,56,51,56,52,51,44,51,54,46,53,48,56,51,49,52,93,44,91,45,56,50,46,49,56,56,48,53,51,44,51,54,46,52,48,48,54,48,56,93,44,91,45,56,50,46,50,57,57,56,53,57,44,51,54,46,51,57,54,53,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,51,57,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,57,52,56,49,55,44,52,52,46,53,52,50,51,48,53,93,44,91,45,57,53,46,54,48,52,48,48,49,44,52,52,46,54,50,57,57,52,53,93,44,91,45,57,54,46,48,57,50,57,53,44,52,52,46,54,51,48,52,56,54,93,44,91,45,57,54,46,48,55,56,53,56,44,52,52,46,49,57,54,54,50,93,44,91,45,57,54,46,48,54,51,55,55,56,44,52,52,46,49,57,54,52,50,53,93,44,91,45,57,53,46,53,57,51,53,55,44,52,52,46,49,57,53,53,51,93,44,91,45,57,53,46,53,57,52,56,49,55,44,52,52,46,53,52,50,51,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,111,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,56,50,52,50,48,57,44,51,55,46,50,48,53,51,54,49,93,44,91,45,55,56,46,57,48,52,53,56,55,44,51,55,46,48,50,50,50,56,56,93,44,91,45,55,56,46,55,55,52,55,49,53,44,51,54,46,57,56,48,57,55,54,93,44,91,45,55,56,46,54,55,49,52,54,51,44,51,54,46,56,53,55,57,53,49,93,44,91,45,55,56,46,54,52,56,53,52,49,44,51,54,46,54,57,55,57,48,57,93,44,91,45,55,56,46,52,57,51,48,50,56,44,51,54,46,56,57,49,50,50,93,44,91,45,55,56,46,52,52,51,54,52,52,44,51,55,46,48,55,57,51,55,49,93,44,91,45,55,56,46,54,57,50,52,55,50,44,51,55,46,50,48,52,55,56,54,93,44,91,45,55,56,46,54,56,49,53,55,51,44,51,55,46,50,52,56,55,53,57,93,44,91,45,55,56,46,56,50,52,50,48,57,44,51,55,46,50,48,53,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,48,53,53,44,34,98,101,100,115,34,58,54,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,57,57,56,53,57,44,51,54,46,51,57,54,53,48,53,93,44,91,45,56,50,46,52,51,56,51,53,53,44,51,54,46,52,52,53,54,51,57,93,44,91,45,56,50,46,54,56,48,54,55,55,44,51,54,46,52,51,49,56,93,44,91,45,56,50,46,55,48,50,53,54,54,44,51,54,46,52,49,48,52,49,50,93,44,91,45,56,50,46,54,50,57,54,52,49,44,51,54,46,52,49,49,53,52,93,44,91,45,56,50,46,54,52,55,55,54,57,44,51,54,46,49,52,54,52,48,52,93,44,91,45,56,50,46,53,57,53,48,54,53,44,51,54,46,48,57,54,50,48,53,93,44,91,45,56,50,46,52,51,55,50,53,49,44,51,54,46,49,53,52,55,48,57,93,44,91,45,56,50,46,51,52,48,52,54,44,51,54,46,50,53,50,56,48,55,93,44,91,45,56,50,46,50,57,57,56,53,57,44,51,54,46,51,57,54,53,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,78,101,119,98,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,54,56,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,52,51,53,53,50,44,51,52,46,53,51,51,54,53,50,93,44,91,45,56,49,46,55,56,50,54,50,55,44,51,52,46,51,54,53,48,56,57,93,44,91,45,56,49,46,56,56,51,48,55,54,44,51,52,46,51,49,49,57,54,52,93,44,91,45,56,49,46,57,52,53,48,49,57,44,51,52,46,50,48,51,49,52,56,93,44,91,45,56,49,46,56,55,48,48,56,52,44,51,52,46,49,51,53,51,53,55,93,44,91,45,56,49,46,55,51,49,54,49,52,44,51,52,46,49,56,55,54,49,51,93,44,91,45,56,49,46,53,51,56,56,57,57,44,51,52,46,48,56,49,55,52,52,93,44,91,45,56,49,46,52,55,49,57,55,50,44,51,52,46,48,55,54,53,53,50,93,44,91,45,56,49,46,51,51,56,57,54,49,44,51,52,46,49,57,55,53,56,55,93,44,91,45,56,49,46,51,49,54,57,49,49,44,51,52,46,50,51,57,52,53,56,93,44,91,45,56,49,46,52,50,51,50,52,49,44,51,52,46,52,57,52,51,55,57,93,44,91,45,56,49,46,53,53,51,50,48,52,44,51,52,46,52,55,55,49,49,52,93,44,91,45,56,49,46,54,52,51,53,53,50,44,51,52,46,53,51,51,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,73,115,108,101,32,111,102,32,87,105,103,104,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,55,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,44,91,45,55,54,46,55,49,49,55,55,53,44,51,55,46,48,53,53,51,56,93,44,91,45,55,54,46,56,52,57,54,56,52,44,51,54,46,57,57,54,50,49,49,93,44,91,45,55,54,46,56,49,52,57,52,49,44,51,54,46,57,48,48,52,54,53,93,44,91,45,55,54,46,57,50,52,54,50,57,44,51,54,46,55,48,55,55,50,57,93,44,91,45,55,54,46,57,48,57,54,55,50,44,51,54,46,54,52,56,49,55,53,93,44,91,45,55,54,46,56,57,55,53,57,50,44,51,54,46,54,52,52,48,53,93,44,91,45,55,54,46,53,51,51,53,50,44,51,54,46,57,49,53,53,54,51,93,44,91,45,55,54,46,52,52,53,51,48,49,44,51,54,46,57,52,49,56,57,49,93,44,91,45,55,54,46,54,50,56,50,48,53,44,51,55,46,48,57,50,55,53,53,93,44,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,87,104,101,101,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,51,55,49,52,52,49,44,52,52,46,56,50,49,55,54,57,93,44,91,45,49,50,48,46,51,56,54,53,54,49,44,52,52,46,53,54,52,48,48,57,93,44,91,45,49,50,48,46,51,56,54,48,55,52,44,52,52,46,52,51,54,48,56,51,93,44,91,45,49,50,48,46,48,50,49,54,50,49,44,52,52,46,52,51,56,55,57,51,93,44,91,45,49,49,57,46,56,57,57,50,56,51,44,52,52,46,51,56,57,53,55,53,93,44,91,45,49,49,57,46,56,57,57,48,48,50,44,52,52,46,51,48,54,54,50,93,44,91,45,49,49,57,46,54,53,53,53,49,55,44,52,52,46,51,48,55,48,52,53,93,44,91,45,49,49,57,46,54,53,50,52,51,49,44,52,52,46,56,50,51,50,57,57,93,44,91,45,49,49,57,46,54,55,50,50,50,56,44,52,52,46,57,57,53,49,49,55,93,44,91,45,49,49,57,46,55,57,48,54,57,57,44,52,53,46,48,54,55,56,50,51,93,44,91,45,49,50,48,46,52,57,53,49,54,44,52,53,46,48,54,56,50,55,57,93,44,91,45,49,50,48,46,52,53,53,51,56,57,44,52,52,46,56,54,54,48,52,54,93,44,91,45,49,50,48,46,51,55,49,52,52,49,44,52,52,46,56,50,49,55,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,55,51,51,44,34,98,101,100,115,34,58,52,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,55,56,53,54,50,44,51,54,46,57,50,54,52,57,93,44,91,45,57,48,46,54,54,50,54,49,55,44,51,54,46,56,49,49,52,53,51,93,44,91,45,57,48,46,53,57,50,49,54,54,44,51,54,46,54,55,57,51,54,56,93,44,91,45,57,48,46,53,55,54,49,55,57,44,51,54,46,52,57,56,53,52,55,93,44,91,45,57,48,46,50,50,48,55,51,50,44,51,54,46,52,57,55,56,53,57,93,44,91,45,57,48,46,49,52,56,51,57,56,44,51,54,46,54,51,48,54,53,54,93,44,91,45,57,48,46,49,53,56,48,53,44,51,54,46,55,50,50,57,55,54,93,44,91,45,57,48,46,50,53,56,53,54,51,44,51,54,46,57,50,50,48,52,51,93,44,91,45,57,48,46,54,55,56,53,54,50,44,51,54,46,57,50,54,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,73,98,101,114,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,53,54,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,48,48,57,51,51,44,51,48,46,52,57,55,52,51,51,93,44,91,45,57,49,46,54,52,48,48,57,57,44,51,48,46,52,52,50,55,50,56,93,44,91,45,57,49,46,54,50,49,48,53,53,44,51,48,46,51,48,57,57,51,56,93,44,91,45,57,49,46,53,48,56,50,54,56,44,51,48,46,50,52,48,50,57,55,93,44,91,45,57,49,46,52,54,51,56,51,51,44,51,48,46,49,48,50,52,57,51,93,44,91,45,57,49,46,51,54,56,56,51,53,44,51,48,46,48,53,56,56,50,52,93,44,91,45,57,49,46,50,50,52,51,53,54,44,51,48,46,48,50,53,51,51,54,93,44,91,45,57,49,46,49,48,53,57,53,49,44,51,48,46,48,54,50,52,55,56,93,44,91,45,57,49,46,48,50,49,48,49,52,44,51,48,46,51,50,49,52,56,57,93,44,91,45,57,49,46,49,52,50,49,48,53,44,51,48,46,51,50,51,50,57,51,93,44,91,45,57,49,46,51,49,49,54,54,44,51,48,46,51,50,50,52,55,49,93,44,91,45,57,49,46,52,56,53,48,56,57,44,51,48,46,52,57,55,49,51,56,93,44,91,45,57,49,46,55,48,48,57,51,51,44,51,48,46,52,57,55,52,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,83,104,97,114,107,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,49,49,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,52,51,51,55,44,51,51,46,48,48,55,54,57,55,93,44,91,45,57,48,46,57,54,51,55,53,51,44,51,50,46,56,51,56,49,51,51,93,44,91,45,57,48,46,57,54,52,56,54,52,44,51,50,46,54,54,50,55,57,56,93,44,91,45,57,48,46,55,50,51,49,53,57,44,51,50,46,54,54,50,49,50,56,93,44,91,45,57,48,46,54,57,51,48,54,49,44,51,50,46,55,53,52,50,57,55,93,44,91,45,57,48,46,55,53,57,55,53,51,44,51,50,46,56,51,53,55,54,51,93,44,91,45,57,48,46,54,53,54,54,51,50,44,51,50,46,57,50,50,53,49,93,44,91,45,57,48,46,55,48,49,56,52,53,44,51,51,46,48,57,54,50,57,52,93,44,91,45,57,48,46,57,49,52,52,54,53,44,51,51,46,48,57,55,52,49,55,93,44,91,45,57,48,46,57,49,52,51,51,55,44,51,51,46,48,48,55,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,70,97,117,113,117,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,49,53,44,34,98,101,100,115,34,58,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,53,53,49,54,57,44,51,56,46,57,52,50,54,53,54,93,44,91,45,55,55,46,57,54,50,50,48,51,44,51,57,46,48,49,51,55,51,51,93,44,91,45,55,56,46,48,48,52,51,49,51,44,51,56,46,57,55,57,52,51,56,93,44,91,45,55,56,46,49,51,48,53,55,52,44,51,56,46,56,54,52,56,54,53,93,44,91,45,55,55,46,57,51,53,51,53,53,44,51,56,46,54,57,53,56,52,93,44,91,45,55,55,46,55,51,53,57,48,49,44,51,56,46,52,49,51,52,53,56,93,44,91,45,55,55,46,54,51,52,57,52,44,51,56,46,52,49,48,50,49,56,93,44,91,45,55,55,46,53,51,49,51,50,56,44,51,56,46,53,53,54,53,53,93,44,91,45,55,55,46,55,49,53,55,49,53,44,51,56,46,56,51,50,49,51,54,93,44,91,45,55,55,46,54,53,53,49,54,57,44,51,56,46,57,52,50,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,53,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,53,48,34,44,34,78,65,77,69,34,58,34,82,97,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,50,57,55,54,50,44,51,55,46,49,51,51,56,52,50,93,44,91,45,56,48,46,53,57,54,52,48,57,44,51,55,46,49,49,56,56,56,57,93,44,91,45,56,48,46,53,56,48,52,54,57,44,51,55,46,48,56,57,54,54,50,93,44,91,45,56,48,46,53,50,57,55,54,50,44,51,55,46,49,51,51,56,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,56,50,56,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,57,48,52,51,49,53,44,51,56,46,57,51,51,51,50,52,93,44,91,45,49,49,57,46,53,56,53,52,51,55,44,51,56,46,55,49,51,50,49,50,93,44,91,45,49,49,57,46,51,50,56,51,57,56,44,51,56,46,53,51,52,55,57,50,93,44,91,45,49,49,57,46,51,52,57,56,56,52,44,51,56,46,55,50,57,49,57,51,93,44,91,45,49,49,57,46,52,48,54,50,55,57,44,51,56,46,55,51,51,51,54,50,93,44,91,45,49,49,57,46,52,50,48,56,51,55,44,51,56,46,57,53,52,55,49,53,93,44,91,45,49,49,57,46,51,49,48,55,48,50,44,51,56,46,57,57,48,55,49,57,93,44,91,45,49,49,57,46,51,49,49,55,49,52,44,51,57,46,48,56,51,54,49,53,93,44,91,45,49,49,57,46,53,53,49,48,50,44,51,57,46,48,56,53,55,57,49,93,44,91,45,49,49,57,46,55,54,49,50,49,51,44,51,57,46,49,49,52,48,48,57,93,44,91,45,49,50,48,46,48,48,51,52,50,57,44,51,57,46,49,49,50,54,56,55,93,44,91,45,49,50,48,46,48,48,50,52,54,49,44,51,57,46,48,54,55,52,56,57,93,44,91,45,49,49,57,46,57,48,52,51,49,53,44,51,56,46,57,51,51,51,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,51,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,52,52,52,53,44,51,48,46,48,49,49,48,51,93,44,91,45,56,53,46,48,48,55,54,50,54,44,51,48,46,48,49,51,56,56,51,93,44,91,45,56,53,46,48,50,53,52,51,57,44,50,57,46,57,55,49,51,57,57,93,44,91,45,56,53,46,48,50,48,53,51,52,44,50,57,46,56,48,55,51,55,51,93,44,91,45,56,53,46,50,48,54,50,50,54,44,50,57,46,55,49,49,49,56,56,93,44,91,45,56,53,46,50,52,54,51,49,54,44,50,57,46,54,50,53,48,48,50,93,44,91,45,56,53,46,48,51,49,49,54,56,44,50,57,46,53,51,57,48,56,56,93,44,91,45,56,52,46,55,51,53,55,53,44,50,57,46,54,53,54,51,55,53,93,44,91,45,56,52,46,53,52,50,50,56,54,44,50,57,46,55,54,57,55,57,55,93,44,91,45,56,52,46,52,52,54,56,54,44,50,57,46,56,53,56,55,51,50,93,44,91,45,56,52,46,50,57,56,55,57,54,44,50,57,46,56,54,55,49,50,54,93,44,91,45,56,52,46,50,54,52,55,51,53,44,50,57,46,57,55,56,48,54,49,93,44,91,45,56,52,46,51,50,53,49,57,56,44,50,57,46,57,53,56,48,53,93,44,91,45,56,52,46,53,52,52,52,53,44,51,48,46,48,49,49,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,52,48,55,51,55,44,51,57,46,49,55,49,55,55,51,93,44,91,45,56,55,46,50,52,49,48,50,55,44,51,56,46,57,48,55,56,55,52,93,44,91,45,56,55,46,48,57,56,55,55,49,44,51,56,46,57,48,51,57,55,52,93,44,91,45,56,54,46,57,48,52,50,53,50,44,51,56,46,57,48,52,50,48,52,93,44,91,45,56,54,46,54,56,50,56,53,51,44,51,56,46,57,48,52,54,57,55,93,44,91,45,56,54,46,54,56,50,50,55,55,44,51,56,46,57,57,50,52,48,52,93,44,91,45,56,54,46,54,56,51,48,48,50,44,51,57,46,49,54,53,55,52,54,93,44,91,45,56,55,46,48,53,52,53,55,56,44,51,57,46,49,54,56,48,56,54,93,44,91,45,56,55,46,50,52,48,55,51,55,44,51,57,46,49,55,49,55,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,82,117,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,48,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,51,51,50,50,56,44,51,57,46,54,57,56,52,54,50,93,44,91,45,56,53,46,54,50,57,51,50,55,44,51,57,46,52,53,50,55,53,93,44,91,45,56,53,46,50,57,55,53,55,53,44,51,57,46,52,53,51,50,55,53,93,44,91,45,56,53,46,50,57,56,49,49,44,51,57,46,53,50,53,52,55,54,93,44,91,45,56,53,46,51,48,49,53,56,52,44,51,57,46,55,56,55,53,55,57,93,44,91,45,56,53,46,53,57,54,57,49,54,44,51,57,46,55,56,54,53,49,57,93,44,91,45,56,53,46,54,51,51,50,50,56,44,51,57,46,54,57,56,52,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,53,51,53,44,34,98,101,100,115,34,58,49,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,54,51,51,53,51,44,52,51,46,49,57,50,49,49,55,93,44,91,45,56,56,46,48,52,48,53,50,56,44,52,51,46,53,52,50,51,54,49,93,44,91,45,56,56,46,49,54,48,56,55,51,44,52,51,46,53,52,50,57,52,51,93,44,91,45,56,56,46,52,48,48,52,50,54,44,52,51,46,53,52,51,53,51,50,93,44,91,45,56,56,46,52,49,55,57,56,55,44,52,51,46,49,57,52,54,57,55,93,44,91,45,56,56,46,48,54,51,51,53,51,44,52,51,46,49,57,50,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,97,99,108,101,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,48,55,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,53,53,51,56,52,44,51,55,46,56,57,53,55,51,54,93,44,91,45,57,50,46,56,53,51,52,56,49,44,51,55,46,52,56,51,57,55,93,44,91,45,57,50,46,54,56,54,54,55,49,44,51,55,46,52,56,49,53,52,53,93,44,91,45,57,50,46,50,53,50,50,54,49,44,51,55,46,52,55,50,57,52,52,93,44,91,45,57,50,46,50,52,57,52,54,51,44,51,55,46,54,48,52,53,52,51,93,44,91,45,57,50,46,52,49,51,54,54,57,44,51,55,46,55,49,51,57,52,49,93,44,91,45,57,50,46,52,48,57,50,51,49,44,51,55,46,56,53,57,49,56,93,44,91,45,57,50,46,53,52,56,57,51,52,44,51,55,46,56,48,48,52,55,93,44,91,45,57,50,46,54,50,48,49,56,49,44,51,55,46,56,57,50,53,50,49,93,44,91,45,57,50,46,56,53,53,51,56,52,44,51,55,46,56,57,53,55,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,54,51,48,44,34,98,101,100,115,34,58,52,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,50,49,55,44,52,49,46,52,56,57,48,49,51,93,44,91,45,56,48,46,53,49,57,48,52,56,44,52,49,46,49,51,51,51,57,52,93,44,91,45,56,48,46,53,49,57,48,51,55,44,52,49,46,49,50,53,48,57,51,93,44,91,45,56,48,46,50,53,55,57,51,51,44,52,49,46,49,50,56,49,54,53,93,44,91,45,56,48,46,48,57,56,50,57,52,44,52,49,46,48,55,49,48,53,52,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,49,55,49,56,54,49,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,52,57,48,48,52,57,93,44,91,45,56,48,46,53,49,57,50,49,55,44,52,49,46,52,56,57,48,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,114,97,105,103,104,101,97,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,55,48,49,44,34,98,101,100,115,34,58,55,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,55,55,56,57,44,51,53,46,57,57,53,54,56,51,93,44,91,45,57,48,46,51,56,55,51,55,56,44,51,53,46,57,54,52,55,48,56,93,44,91,45,57,48,46,56,53,50,48,54,52,44,51,53,46,57,54,56,48,57,50,93,44,91,45,57,48,46,56,55,50,55,56,53,44,51,53,46,56,56,48,56,55,93,44,91,45,57,49,46,48,51,50,52,57,57,44,51,53,46,56,56,53,48,55,93,44,91,45,57,49,46,48,51,54,57,54,55,44,51,53,46,55,48,56,52,49,56,93,44,91,45,57,48,46,50,56,54,55,51,54,44,51,53,46,54,57,57,57,49,52,93,44,91,45,57,48,46,50,56,56,57,52,55,44,51,53,46,57,57,54,52,49,93,44,91,45,57,48,46,51,55,55,56,57,44,51,53,46,57,57,53,54,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,48,50,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,55,55,50,51,51,44,51,57,46,50,57,50,55,57,54,93,44,91,45,57,51,46,52,57,54,51,55,55,44,51,56,46,57,52,50,56,51,55,93,44,91,45,57,51,46,48,53,48,52,53,51,44,51,56,46,57,50,56,50,52,52,93,44,91,45,57,50,46,57,51,52,53,54,57,44,51,57,46,48,54,52,53,52,55,93,44,91,45,57,50,46,56,52,57,50,50,52,44,51,57,46,50,50,54,50,49,56,93,44,91,45,57,51,46,48,55,50,57,49,53,44,51,57,46,51,51,53,53,50,93,44,91,45,57,51,46,49,48,52,52,56,53,44,51,57,46,51,56,51,54,53,54,93,44,91,45,57,51,46,50,50,49,50,48,52,44,51,57,46,51,51,49,54,53,54,93,44,91,45,57,51,46,52,55,55,50,51,51,44,51,57,46,50,57,50,55,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,50,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,53,48,56,57,49,44,51,56,46,50,53,54,49,53,54,93,44,91,45,56,56,46,51,55,48,51,55,53,44,51,56,46,50,53,53,51,49,57,93,44,91,45,56,56,46,51,55,52,53,50,49,44,51,55,46,57,48,56,51,57,49,93,44,91,45,56,56,46,48,57,51,48,52,57,44,51,55,46,56,57,49,54,48,52,93,44,91,45,56,56,46,48,49,51,51,53,53,44,51,55,46,56,57,52,56,53,52,93,44,91,45,56,56,46,48,49,51,49,49,56,44,51,56,46,49,48,51,53,50,55,93,44,91,45,56,55,46,57,49,48,57,50,52,44,51,56,46,49,54,50,53,53,55,93,44,91,45,56,55,46,57,56,51,55,51,50,44,51,56,46,50,51,48,51,53,52,93,44,91,45,56,55,46,57,56,55,57,49,49,44,51,56,46,50,53,54,57,53,55,93,44,91,45,56,55,46,57,57,48,54,50,56,44,51,56,46,50,53,57,54,50,57,93,44,91,45,56,56,46,49,53,48,56,57,49,44,51,56,46,50,53,54,49,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,101,32,87,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,52,56,55,54,52,44,52,48,46,50,56,50,48,51,56,93,44,91,45,56,57,46,49,52,52,55,54,52,44,52,48,46,48,52,56,56,53,51,93,44,91,45,56,56,46,55,52,53,49,54,52,44,52,48,46,48,53,53,49,57,49,93,44,91,45,56,56,46,53,55,52,56,56,53,44,52,48,46,50,56,49,53,48,49,93,44,91,45,56,57,46,49,52,56,55,54,52,44,52,48,46,50,56,50,48,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,32,80,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,51,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,56,51,52,57,54,57,44,52,48,46,49,50,55,56,52,50,93,44,91,45,49,49,53,46,55,57,52,56,54,52,44,51,57,46,56,53,51,49,48,52,93,44,91,45,49,49,53,46,56,51,51,49,48,49,44,51,57,46,55,50,57,52,49,50,93,44,91,45,49,49,53,46,56,49,51,52,55,54,44,51,57,46,53,57,51,53,50,49,93,44,91,45,49,49,53,46,57,48,55,54,53,57,44,51,57,46,52,54,52,52,51,50,93,44,91,45,49,49,53,46,57,48,55,48,55,49,44,51,57,46,49,54,49,56,52,56,93,44,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,54,55,55,51,50,50,93,44,91,45,49,49,52,46,48,52,57,56,48,55,44,51,56,46,54,55,55,51,54,53,93,44,91,45,49,49,52,46,48,52,55,54,52,57,44,51,57,46,53,52,50,55,52,50,93,44,91,45,49,49,52,46,48,52,55,48,50,54,44,51,57,46,57,48,54,48,57,55,93,44,91,45,49,49,52,46,48,52,54,54,49,52,44,52,48,46,49,49,54,57,51,54,93,44,91,45,49,49,52,46,57,48,49,56,50,53,44,52,48,46,49,50,50,48,56,50,93,44,91,45,49,49,53,46,56,51,52,57,54,57,44,52,48,46,49,50,55,56,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,71,111,111,100,104,117,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,50,49,55,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,51,50,48,52,51,44,52,52,46,55,49,52,51,52,53,93,44,91,45,57,50,46,55,57,50,55,49,53,44,52,52,46,53,52,51,50,52,93,44,91,45,57,50,46,57,49,56,57,55,55,44,52,52,46,53,52,51,50,53,93,44,91,45,57,51,46,48,51,57,52,56,53,44,52,52,46,52,55,49,56,55,49,93,44,91,45,57,51,46,48,52,49,49,53,57,44,52,52,46,49,57,54,55,50,54,93,44,91,45,57,50,46,54,55,56,55,49,55,44,52,52,46,49,57,53,53,49,54,93,44,91,45,57,50,46,53,53,48,56,55,49,44,52,52,46,49,57,52,57,49,54,93,44,91,45,57,50,46,53,53,48,55,51,51,44,52,52,46,51,54,56,53,50,49,93,44,91,45,57,50,46,52,51,48,50,55,55,44,52,52,46,52,53,53,51,50,49,93,44,91,45,57,50,46,50,52,50,48,49,44,52,52,46,52,53,52,50,53,52,93,44,91,45,57,50,46,51,49,54,49,54,57,44,52,52,46,53,52,49,48,48,57,93,44,91,45,57,50,46,54,50,50,53,51,55,44,52,52,46,54,49,54,48,53,52,93,44,91,45,57,50,46,55,51,50,48,52,51,44,52,52,46,55,49,52,51,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,83,119,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,53,52,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,53,52,50,53,55,44,51,53,46,54,57,53,53,57,51,93,44,91,45,56,51,46,52,56,53,56,51,52,44,51,53,46,53,54,56,49,57,93,44,91,45,56,51,46,54,54,50,57,57,57,44,51,53,46,53,54,57,52,54,56,93,44,91,45,56,51,46,55,55,48,53,56,55,44,51,53,46,53,54,49,55,52,51,93,44,91,45,56,51,46,57,53,50,57,55,50,44,51,53,46,52,54,48,53,53,50,93,44,91,45,56,51,46,53,56,50,53,53,56,44,51,53,46,52,49,48,52,56,57,93,44,91,45,56,51,46,54,56,48,49,49,52,44,51,53,46,50,55,57,53,93,44,91,45,56,51,46,51,51,57,54,48,57,44,51,53,46,51,51,48,57,57,51,93,44,91,45,56,51,46,51,54,51,55,54,54,44,51,53,46,52,50,54,57,50,51,93,44,91,45,56,51,46,49,56,54,51,50,50,44,51,53,46,53,49,52,51,54,56,93,44,91,45,56,51,46,49,56,50,57,57,57,44,51,53,46,54,55,48,54,50,53,93,44,91,45,56,51,46,50,53,52,50,53,55,44,51,53,46,54,57,53,53,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,80,97,115,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,48,53,57,51,44,34,98,101,100,115,34,58,49,51,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,52,54,57,52,44,50,56,46,52,55,56,51,57,55,93,44,91,45,56,50,46,50,53,51,52,51,57,44,50,56,46,52,51,52,56,50,52,93,44,91,45,56,50,46,55,53,51,57,55,55,44,50,56,46,52,51,51,50,57,93,44,91,45,56,50,46,55,57,53,50,55,54,44,50,56,46,50,57,57,55,54,52,93,44,91,45,56,50,46,56,55,56,57,50,53,44,50,56,46,50,53,53,53,50,56,93,44,91,45,56,50,46,57,48,52,54,49,53,44,50,56,46,49,55,49,56,55,50,93,44,91,45,56,50,46,54,53,49,49,54,53,44,50,56,46,49,55,51,50,54,54,93,44,91,45,56,50,46,49,48,53,56,53,51,44,50,56,46,49,55,49,54,53,93,44,91,45,56,50,46,48,53,53,56,49,57,44,50,56,46,51,49,50,55,57,52,93,44,91,45,56,50,46,48,53,52,54,57,52,44,50,56,46,52,55,56,51,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,83,117,109,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,57,57,57,44,34,98,101,100,115,34,58,51,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,49,49,54,57,55,44,50,56,46,57,54,48,51,57,49,93,44,91,45,56,50,46,49,55,49,52,48,50,44,50,56,46,55,56,57,56,52,56,93,44,91,45,56,50,46,50,54,51,48,53,50,44,50,56,46,54,54,55,54,51,52,93,44,91,45,56,50,46,48,53,52,54,57,52,44,50,56,46,52,55,56,51,57,55,93,44,91,45,56,50,46,48,53,53,56,49,57,44,50,56,46,51,49,50,55,57,52,93,44,91,45,56,49,46,57,53,55,54,52,49,44,50,56,46,51,52,53,49,56,93,44,91,45,56,49,46,57,53,52,49,57,44,50,56,46,57,54,48,48,53,51,93,44,91,45,56,50,46,51,49,49,54,57,55,44,50,56,46,57,54,48,51,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,78,97,115,115,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,54,53,54,52,44,34,98,101,100,115,34,58,52,55,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,54,49,50,56,56,53,44,52,48,46,57,53,48,57,52,51,93,44,91,45,55,51,46,55,52,56,48,54,44,52,48,46,56,55,49,55,50,49,93,44,91,45,55,51,46,55,55,56,57,53,56,44,52,48,46,56,49,49,55,49,51,93,44,91,45,55,51,46,55,48,49,54,51,51,44,52,48,46,55,53,50,52,57,51,93,44,91,45,55,51,46,55,54,56,55,56,49,44,52,48,46,53,51,51,55,52,55,93,44,91,45,55,51,46,52,50,53,51,49,44,52,48,46,53,51,52,50,54,53,93,44,91,45,55,51,46,52,50,51,50,54,57,44,52,48,46,54,55,48,56,57,51,93,44,91,45,55,51,46,52,57,55,52,48,53,44,52,48,46,57,50,51,55,54,54,93,44,91,45,55,51,46,52,51,49,57,49,57,44,52,48,46,57,56,57,48,48,57,93,44,91,45,55,51,46,54,49,50,56,56,53,44,52,48,46,57,53,48,57,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,83,116,101,101,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,56,52,50,52,56,44,52,55,46,54,55,50,51,48,51,93,44,91,45,57,55,46,57,56,54,52,50,56,44,52,55,46,51,50,54,50,48,49,93,44,91,45,57,55,46,57,54,49,50,49,49,44,52,55,46,50,52,48,51,50,53,93,44,91,45,57,55,46,55,48,53,57,51,53,44,52,55,46,50,51,57,57,55,55,93,44,91,45,57,55,46,52,53,49,53,49,50,44,52,55,46,50,51,57,48,54,49,93,44,91,45,57,55,46,52,55,52,50,50,56,44,52,55,46,51,50,52,54,50,49,93,44,91,45,57,55,46,52,55,50,55,52,53,44,52,55,46,54,55,50,48,53,49,93,44,91,45,57,55,46,56,56,50,50,55,49,44,52,55,46,54,55,50,49,55,57,93,44,91,45,57,55,46,57,56,52,50,52,56,44,52,55,46,54,55,50,51,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,86,97,110,100,101,114,98,117,114,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,51,49,51,44,34,98,101,100,115,34,58,57,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,56,56,51,55,52,44,51,56,46,49,54,56,52,49,57,93,44,91,45,56,55,46,55,48,48,55,54,50,44,51,55,46,56,57,55,53,53,54,93,44,91,45,56,55,46,52,53,49,49,57,57,44,51,55,46,57,52,48,57,53,52,93,44,91,45,56,55,46,52,54,55,50,56,52,44,51,56,46,49,54,53,52,48,51,93,44,91,45,56,55,46,54,56,56,51,55,52,44,51,56,46,49,54,56,52,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,55,56,49,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,54,57,49,57,50,44,51,56,46,54,57,57,51,50,52,93,44,91,45,57,49,46,51,54,55,52,56,50,44,51,56,46,50,48,57,55,52,49,93,44,91,45,57,49,46,48,57,53,55,54,53,44,51,56,46,50,48,52,48,56,51,93,44,91,45,57,48,46,55,56,48,49,56,53,44,51,56,46,50,48,52,49,49,50,93,44,91,45,57,48,46,55,51,54,51,49,49,44,51,56,46,52,54,54,54,52,51,93,44,91,45,57,48,46,55,51,50,51,50,56,44,51,56,46,54,51,57,51,48,50,93,44,91,45,57,48,46,57,49,54,53,53,52,44,51,56,46,53,51,52,55,50,53,93,44,91,45,57,48,46,57,54,52,52,54,49,44,51,56,46,53,52,55,53,52,53,93,44,91,45,57,49,46,49,51,50,53,51,53,44,51,56,46,53,57,56,50,55,57,93,44,91,45,57,49,46,51,49,51,48,57,51,44,51,56,46,55,48,54,55,49,53,93,44,91,45,57,49,46,51,54,57,49,57,50,44,51,56,46,54,57,57,51,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,118,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,48,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,51,51,48,54,53,44,51,54,46,50,54,52,56,55,51,93,44,91,45,56,50,46,48,56,49,48,55,57,44,51,54,46,49,48,51,49,55,93,44,91,45,56,50,46,48,51,52,49,48,52,44,51,53,46,57,52,50,48,53,55,93,44,91,45,56,49,46,57,56,49,57,53,52,44,51,53,46,57,49,49,51,54,49,93,44,91,45,56,49,46,57,52,51,49,56,56,44,51,53,46,57,54,48,48,53,93,44,91,45,56,49,46,56,48,55,49,54,50,44,51,53,46,57,54,49,57,53,53,93,44,91,45,56,49,46,55,51,53,54,55,51,44,51,54,46,48,54,55,53,56,52,93,44,91,45,56,49,46,56,49,48,53,49,54,44,51,54,46,49,49,49,53,49,49,93,44,91,45,56,49,46,57,49,56,49,49,57,44,51,54,46,50,56,55,49,50,57,93,44,91,45,56,49,46,57,51,51,48,54,53,44,51,54,46,50,54,52,56,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,87,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,53,53,54,44,34,98,101,100,115,34,58,51,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,55,49,50,54,44,51,57,46,51,52,49,57,50,52,93,44,91,45,56,49,46,52,53,54,49,52,51,44,51,57,46,52,48,57,50,55,52,93,44,91,45,56,49,46,54,55,55,53,57,53,44,51,57,46,50,55,52,49,55,49,93,44,91,45,56,49,46,55,50,53,54,50,50,44,51,57,46,50,49,53,57,48,53,93,44,91,45,56,49,46,55,53,54,48,56,44,51,57,46,49,56,48,53,54,93,44,91,45,56,49,46,55,52,55,50,53,52,44,51,57,46,48,57,53,51,55,57,93,44,91,45,56,49,46,53,56,49,52,52,55,44,51,57,46,48,50,54,49,55,57,93,44,91,45,56,49,46,52,50,52,57,48,54,44,51,57,46,49,51,53,54,55,57,93,44,91,45,56,49,46,50,57,56,48,49,55,44,51,57,46,49,56,53,53,55,50,93,44,91,45,56,49,46,50,51,57,52,55,55,44,51,57,46,50,54,56,51,50,56,93,44,91,45,56,49,46,51,55,49,50,54,44,51,57,46,51,52,49,57,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,97,121,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,57,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,50,52,53,56,51,44,52,54,46,49,53,52,54,49,54,93,44,91,45,57,48,46,57,50,55,48,53,55,44,52,54,46,53,56,53,52,49,53,93,44,91,45,57,48,46,56,51,48,50,49,54,44,52,54,46,54,54,51,52,55,50,93,44,91,45,57,48,46,56,51,56,50,55,54,44,52,54,46,55,51,57,57,57,50,93,44,91,45,57,48,46,55,51,51,55,53,54,44,52,54,46,56,56,54,56,57,53,93,44,91,45,57,48,46,56,54,55,51,49,56,44,52,55,46,50,49,48,57,54,50,93,44,91,45,57,49,46,53,52,57,51,56,53,44,52,54,46,56,57,51,50,49,51,93,44,91,45,57,49,46,53,53,49,50,56,50,44,52,54,46,49,53,55,48,52,53,93,44,91,45,57,48,46,57,50,52,53,56,51,44,52,54,46,49,53,52,54,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,83,116,101,119,97,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,48,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,53,51,50,57,51,44,51,54,46,52,57,55,48,53,56,93,44,91,45,56,55,46,57,57,48,57,50,44,51,54,46,51,54,48,49,51,51,93,44,91,45,56,55,46,57,56,48,55,52,44,51,54,46,51,53,51,51,48,55,93,44,91,45,56,55,46,56,50,49,56,49,54,44,51,54,46,51,50,56,55,50,52,93,44,91,45,56,55,46,53,57,50,51,53,56,44,51,54,46,51,54,55,54,54,51,93,44,91,45,56,55,46,54,52,49,49,53,55,44,51,54,46,54,51,56,49,48,57,93,44,91,45,56,55,46,54,57,52,49,57,50,44,51,54,46,54,51,55,49,48,56,93,44,91,45,56,56,46,48,55,48,53,52,49,44,51,54,46,54,55,56,50,53,53,93,44,91,45,56,56,46,48,53,51,50,57,51,44,51,54,46,52,57,55,48,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,80,111,114,116,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,53,57,57,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,52,52,57,51,49,44,52,52,46,54,56,52,57,52,53,93,44,91,45,56,57,46,56,52,52,53,52,54,44,52,52,46,53,49,49,53,48,51,93,44,91,45,56,57,46,55,50,54,55,50,53,44,52,52,46,53,49,49,49,57,50,93,44,91,45,56,57,46,55,50,52,55,52,54,44,52,52,46,50,52,55,54,55,56,93,44,91,45,56,57,46,53,57,55,57,56,44,52,52,46,50,52,53,55,50,53,93,44,91,45,56,57,46,50,50,52,56,49,51,44,52,52,46,50,52,51,51,57,51,93,44,91,45,56,57,46,50,50,51,55,52,53,44,52,52,46,54,56,49,51,54,53,93,44,91,45,56,57,46,56,52,52,57,51,49,44,52,52,46,54,56,52,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,76,101,120,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,51,49,54,44,34,98,101,100,115,34,58,53,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,51,56,57,54,49,44,51,52,46,49,57,55,53,56,55,93,44,91,45,56,49,46,52,55,49,57,55,50,44,51,52,46,48,55,54,53,53,50,93,44,91,45,56,49,46,53,55,49,52,56,55,44,51,51,46,56,55,55,51,49,56,93,44,91,45,56,49,46,52,49,53,51,48,56,44,51,51,46,55,51,50,49,54,49,93,44,91,45,56,49,46,49,56,55,50,55,49,44,51,51,46,54,53,50,57,51,55,93,44,91,45,56,49,46,48,52,50,56,53,52,44,51,51,46,55,48,55,49,51,49,93,44,91,45,56,49,46,48,49,50,51,51,44,51,51,46,56,56,48,48,56,93,44,91,45,56,49,46,48,54,55,54,49,53,44,51,52,46,48,48,56,57,53,51,93,44,91,45,56,49,46,50,48,49,56,51,57,44,51,52,46,48,57,55,49,54,56,93,44,91,45,56,49,46,50,55,53,56,52,53,44,51,52,46,48,57,55,51,56,49,93,44,91,45,56,49,46,51,51,56,57,54,49,44,51,52,46,49,57,55,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,110,101,32,65,114,117,110,100,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,55,54,57,54,44,34,98,101,100,115,34,58,54,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,57,55,48,56,53,44,51,57,46,50,49,52,48,57,50,93,44,91,45,55,54,46,56,52,48,51,54,50,44,51,57,46,49,48,51,49,52,50,93,44,91,45,55,54,46,54,57,56,50,54,56,44,51,56,46,57,56,51,54,52,55,93,44,91,45,55,54,46,54,56,54,51,53,56,44,51,56,46,55,52,56,52,55,53,93,44,91,45,55,54,46,52,54,51,54,51,54,44,51,56,46,55,49,49,48,57,57,93,44,91,45,55,54,46,52,51,54,52,57,50,44,51,56,46,56,48,55,51,57,55,93,44,91,45,55,54,46,51,53,49,55,51,44,51,57,46,48,53,54,50,51,50,93,44,91,45,55,54,46,51,52,57,52,55,57,44,51,57,46,49,53,54,54,50,51,93,44,91,45,55,54,46,53,50,57,52,56,54,44,51,57,46,50,49,56,52,48,56,93,44,91,45,55,54,46,54,49,56,54,49,50,44,51,57,46,50,51,55,51,57,56,93,44,91,45,55,54,46,54,57,55,48,56,53,44,51,57,46,50,49,52,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,70,111,110,100,32,100,117,32,76,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,51,49,53,44,34,98,101,100,115,34,58,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,56,53,54,57,55,44,52,51,46,56,57,53,49,56,52,93,44,91,45,56,56,46,56,56,54,48,53,50,44,52,51,46,54,51,51,53,52,93,44,91,45,56,56,46,52,48,49,48,52,49,44,52,51,46,54,51,48,57,51,51,93,44,91,45,56,56,46,52,48,48,52,50,54,44,52,51,46,53,52,51,53,51,50,93,44,91,45,56,56,46,49,54,48,56,55,51,44,52,51,46,53,52,50,57,52,51,93,44,91,45,56,56,46,49,54,50,50,55,52,44,52,51,46,56,57,49,53,49,49,93,44,91,45,56,56,46,49,54,49,54,53,52,44,52,51,46,57,51,55,54,56,51,93,44,91,45,56,56,46,52,48,52,49,56,55,44,52,51,46,57,51,56,50,93,44,91,45,56,56,46,52,48,51,49,57,53,44,52,51,46,56,57,50,57,55,55,93,44,91,45,56,56,46,56,56,53,54,57,55,44,52,51,46,56,57,53,49,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,52,53,55,51,51,50,44,51,56,46,55,51,57,49,54,57,93,44,91,45,56,48,46,53,48,56,54,53,53,44,51,56,46,54,52,53,53,53,51,93,44,91,45,56,48,46,54,53,48,55,56,54,44,51,56,46,53,50,54,53,57,93,44,91,45,56,48,46,54,48,57,51,55,56,44,51,56,46,51,53,56,54,48,54,93,44,91,45,56,48,46,52,51,54,53,49,52,44,51,56,46,50,54,55,51,51,52,93,44,91,45,56,48,46,51,54,48,48,52,56,44,51,56,46,50,50,53,56,52,53,93,44,91,45,56,48,46,51,51,48,50,54,55,44,51,56,46,51,51,53,55,53,56,93,44,91,45,56,48,46,50,52,53,53,49,56,44,51,56,46,51,56,56,52,53,55,93,44,91,45,56,48,46,49,56,51,57,51,49,44,51,56,46,53,50,53,51,56,54,93,44,91,45,56,48,46,50,56,48,48,53,57,44,51,56,46,54,57,52,56,54,55,93,44,91,45,56,48,46,51,57,51,48,54,51,44,51,56,46,55,50,55,53,55,49,93,44,91,45,56,48,46,52,53,55,51,51,50,44,51,56,46,55,51,57,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,75,101,119,97,117,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,53,56,48,52,56,44,52,52,46,54,55,55,48,53,52,93,44,91,45,56,55,46,55,54,54,48,50,54,44,52,52,46,51,50,55,49,56,52,93,44,91,45,56,54,46,57,50,51,52,48,51,44,52,52,46,51,50,56,56,50,53,93,44,91,45,56,54,46,56,52,54,57,50,56,44,52,52,46,53,49,57,52,50,57,93,44,91,45,56,54,46,55,55,56,51,57,56,44,52,52,46,54,55,53,50,49,57,93,44,91,45,56,55,46,55,53,56,48,52,56,44,52,52,46,54,55,55,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,54,57,34,44,34,78,65,77,69,34,58,34,80,97,114,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,53,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,52,50,57,56,50,44,51,52,46,55,52,55,51,54,49,93,44,91,45,49,48,51,46,48,52,51,55,54,50,44,51,52,46,51,49,50,55,53,93,44,91,45,49,48,50,46,54,49,53,49,53,44,51,52,46,51,49,50,56,57,49,93,44,91,45,49,48,50,46,53,50,53,54,51,49,44,51,52,46,51,49,51,48,51,52,93,44,91,45,49,48,50,46,53,50,53,49,56,52,44,51,52,46,55,52,54,57,51,49,93,44,91,45,49,48,51,46,48,52,50,57,56,50,44,51,52,46,55,52,55,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,87,111,111,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,48,48,51,48,49,44,51,54,46,57,57,57,52,54,55,93,44,91,45,57,57,46,52,53,54,50,48,51,44,51,54,46,57,57,57,52,55,49,93,44,91,45,57,57,46,50,57,53,49,56,54,44,51,54,46,56,49,57,53,54,54,93,44,91,45,57,57,46,49,51,57,56,53,53,44,51,54,46,55,56,51,48,52,93,44,91,45,57,56,46,57,53,57,57,55,51,44,51,54,46,53,57,56,57,57,49,93,44,91,45,57,56,46,57,54,48,51,51,52,44,51,54,46,53,48,54,57,49,52,93,44,91,45,57,56,46,54,50,53,51,54,49,44,51,54,46,51,57,50,53,57,53,93,44,91,45,57,56,46,53,51,51,54,49,55,44,51,54,46,52,54,51,50,51,93,44,91,45,57,56,46,53,52,52,54,54,49,44,51,54,46,57,57,56,55,53,57,93,44,91,45,57,57,46,48,48,48,51,48,49,44,51,54,46,57,57,57,52,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,69,108,108,105,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,50,52,56,48,53,44,51,56,46,49,55,53,49,49,52,93,44,91,45,56,51,46,49,51,53,48,48,56,44,51,56,46,50,52,50,48,51,55,93,44,91,45,56,51,46,50,52,52,51,48,54,44,51,56,46,49,57,50,51,56,93,44,91,45,56,51,46,50,54,51,50,56,57,44,51,56,46,49,49,53,51,56,54,93,44,91,45,56,51,46,49,57,52,52,52,53,44,51,56,46,48,49,48,54,52,57,93,44,91,45,56,51,46,48,50,50,49,49,53,44,51,56,46,48,48,55,48,52,55,93,44,91,45,56,50,46,56,56,57,48,53,57,44,51,56,46,49,49,49,53,56,55,93,44,91,45,56,50,46,57,50,52,56,48,53,44,51,56,46,49,55,53,49,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,114,107,115,104,105,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,51,50,56,44,34,98,101,100,115,34,58,51,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,53,50,52,50,57,44,52,50,46,53,49,48,48,49,55,93,44,91,45,55,51,46,53,48,56,50,49,44,52,50,46,48,56,54,49,51,52,93,44,91,45,55,51,46,52,57,55,48,49,56,44,52,50,46,48,52,57,54,50,52,93,44,91,45,55,51,46,52,56,55,51,49,57,44,52,50,46,48,52,57,53,50,53,93,44,91,45,55,51,46,48,53,51,50,56,56,44,52,50,46,48,51,57,56,54,53,93,44,91,45,55,51,46,48,48,48,49,55,51,44,52,50,46,51,49,50,54,55,56,93,44,91,45,55,50,46,57,55,53,52,48,57,44,52,50,46,53,53,54,48,51,55,93,44,91,45,55,50,46,57,53,49,48,51,57,44,52,50,46,54,52,49,48,48,54,93,44,91,45,55,51,46,48,50,51,48,49,53,44,52,50,46,55,52,49,49,51,53,93,44,91,45,55,51,46,50,54,52,56,50,55,44,52,50,46,55,52,53,56,53,49,93,44,91,45,55,51,46,51,53,50,52,50,57,44,52,50,46,53,49,48,48,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,104,97,114,105,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,55,56,48,57,56,44,51,57,46,54,49,53,54,51,50,93,44,91,45,57,51,46,50,55,53,57,51,50,44,51,57,46,52,56,52,51,55,49,93,44,91,45,57,51,46,49,48,52,52,56,53,44,51,57,46,51,56,51,54,53,54,93,44,91,45,57,51,46,48,55,50,57,49,53,44,51,57,46,51,51,53,53,50,93,44,91,45,57,50,46,56,52,57,50,50,52,44,51,57,46,50,50,54,50,49,56,93,44,91,45,57,50,46,55,57,48,51,54,57,44,51,57,46,51,52,51,53,56,54,93,44,91,45,57,50,46,55,48,55,51,54,55,44,51,57,46,51,50,49,54,49,52,93,44,91,45,57,50,46,54,57,50,49,52,57,44,51,57,46,54,49,48,50,54,53,93,44,91,45,57,50,46,54,56,57,51,51,49,44,51,57,46,54,57,56,48,57,52,93,44,91,45,57,50,46,56,53,55,57,50,44,51,57,46,54,57,57,57,56,53,93,44,91,45,57,51,46,50,54,54,57,54,56,44,51,57,46,55,48,51,53,54,50,93,44,91,45,57,51,46,50,55,56,48,57,56,44,51,57,46,54,49,53,54,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,82,105,111,32,66,108,97,110,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,54,53,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,52,51,57,51,56,54,44,52,48,46,50,50,51,51,55,57,93,44,91,45,49,48,56,46,49,49,51,49,55,57,44,52,48,46,50,50,49,54,55,93,44,91,45,49,48,57,46,48,53,48,57,52,57,44,52,48,46,50,50,50,54,52,55,93,44,91,45,49,48,57,46,48,53,49,50,50,55,44,51,57,46,54,54,48,52,54,54,93,44,91,45,49,48,56,46,53,53,52,54,50,55,44,51,57,46,54,53,48,49,54,52,93,44,91,45,49,48,56,46,53,53,52,55,50,50,44,51,57,46,54,57,51,54,52,93,44,91,45,49,48,55,46,57,51,56,53,52,54,44,51,57,46,54,57,52,52,54,52,93,44,91,45,49,48,55,46,57,51,56,53,48,50,44,51,57,46,56,50,52,57,57,54,93,44,91,45,49,48,55,46,52,51,49,55,55,44,51,57,46,56,50,56,51,55,55,93,44,91,45,49,48,55,46,51,49,56,55,53,49,44,51,57,46,57,49,52,57,54,56,93,44,91,45,49,48,55,46,51,49,54,57,57,51,44,52,48,46,48,57,48,55,54,53,93,44,91,45,49,48,55,46,48,51,55,51,54,51,44,52,48,46,48,57,49,53,51,56,93,44,91,45,49,48,55,46,48,51,55,57,50,56,44,52,48,46,50,50,53,51,55,50,93,44,91,45,49,48,55,46,52,51,57,51,56,54,44,52,48,46,50,50,51,51,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,50,53,55,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,56,49,56,52,52,44,52,48,46,53,50,51,51,56,51,93,44,91,45,49,48,52,46,49,52,55,55,49,52,44,52,48,46,53,50,52,51,56,57,93,44,91,45,49,48,52,46,49,53,48,51,51,50,44,52,48,46,48,48,48,56,53,54,93,44,91,45,49,48,51,46,55,48,53,55,48,49,44,52,48,46,48,48,49,51,54,54,93,44,91,45,49,48,51,46,52,55,49,57,57,44,52,48,46,48,48,49,53,48,50,93,44,91,45,49,48,51,46,52,54,53,51,55,55,44,52,48,46,52,51,54,51,52,54,93,44,91,45,49,48,51,46,53,56,49,56,52,52,44,52,48,46,53,50,51,51,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,77,97,108,104,101,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,52,51,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,50,50,55,54,52,53,44,52,52,46,48,51,57,56,54,50,93,44,91,45,49,49,56,46,50,50,56,55,57,51,44,52,50,46,57,49,52,54,50,53,93,44,91,45,49,49,56,46,50,49,52,54,57,56,44,52,50,46,50,55,53,56,57,49,93,44,91,45,49,49,56,46,49,57,55,51,55,49,44,52,49,46,57,57,55,51,52,52,93,44,91,45,49,49,55,46,48,50,54,50,44,52,50,46,48,48,48,49,57,53,93,44,91,45,49,49,55,46,48,50,54,56,55,52,44,52,51,46,49,50,55,48,48,53,93,44,91,45,49,49,55,46,48,50,54,53,51,56,44,52,51,46,54,56,48,56,48,50,93,44,91,45,49,49,55,46,48,51,50,50,56,57,44,52,51,46,56,50,56,55,54,55,93,44,91,45,49,49,54,46,57,56,51,56,50,55,44,52,51,46,56,56,48,48,52,54,93,44,91,45,49,49,54,46,56,57,55,55,57,44,52,52,46,49,53,50,53,57,93,44,91,45,49,49,55,46,49,49,57,56,54,49,44,52,52,46,50,55,56,50,55,50,93,44,91,45,49,49,55,46,50,50,48,48,52,56,44,52,52,46,51,48,49,52,48,52,93,44,91,45,49,49,55,46,52,56,55,48,49,52,44,52,52,46,51,48,48,51,49,55,93,44,91,45,49,49,55,46,52,56,54,55,52,52,44,52,52,46,51,56,55,50,52,54,93,44,91,45,49,49,55,46,53,57,48,56,52,57,44,52,52,46,52,52,52,53,55,51,93,44,91,45,49,49,55,46,57,55,49,55,56,55,44,52,52,46,52,52,51,56,52,57,93,44,91,45,49,49,56,46,49,53,50,57,52,53,44,52,52,46,50,55,48,54,56,52,93,44,91,45,49,49,56,46,50,51,50,50,49,52,44,52,52,46,50,53,54,49,50,57,93,44,91,45,49,49,56,46,50,50,55,54,52,53,44,52,52,46,48,51,57,56,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,77,105,100,100,108,101,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,54,54,57,56,44,34,98,101,100,115,34,58,50,49,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,52,54,51,50,57,49,44,52,48,46,53,57,57,49,56,55,93,44,91,45,55,52,46,52,53,57,56,54,51,44,52,48,46,52,57,49,48,52,54,93,44,91,45,55,52,46,54,50,48,50,52,44,52,48,46,51,55,51,55,52,57,93,44,91,45,55,52,46,52,56,52,57,54,50,44,52,48,46,50,53,51,51,50,53,93,44,91,45,55,52,46,51,57,51,52,51,56,44,52,48,46,50,55,57,53,52,56,93,44,91,45,55,52,46,50,52,55,56,57,52,44,52,48,46,52,48,54,54,48,53,93,44,91,45,55,52,46,50,50,56,49,53,51,44,52,48,46,52,55,55,51,57,57,93,44,91,45,55,52,46,50,48,51,54,56,56,44,52,48,46,53,57,50,54,57,49,93,44,91,45,55,52,46,52,54,51,50,57,49,44,52,48,46,53,57,57,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,82,117,115,115,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,55,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,51,55,53,44,51,57,46,49,51,51,49,50,49,93,44,91,45,57,57,46,48,52,50,54,50,54,44,51,56,46,54,57,54,56,48,55,93,44,91,45,57,57,46,48,51,50,57,55,49,44,51,56,46,54,57,54,55,53,57,93,44,91,45,57,56,46,52,56,54,49,48,56,44,51,56,46,54,57,54,56,55,56,93,44,91,45,57,56,46,52,56,52,56,54,49,44,51,56,46,56,55,48,55,57,49,93,44,91,45,57,56,46,52,56,57,57,57,55,44,51,57,46,49,51,50,54,57,55,93,44,91,45,57,57,46,48,51,55,53,44,51,57,46,49,51,51,49,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,54,54,49,48,49,44,52,49,46,49,52,56,53,50,52,93,44,91,45,56,57,46,51,53,56,52,51,55,44,52,49,46,49,48,51,56,52,57,93,44,91,45,56,57,46,49,54,50,50,51,55,44,52,49,46,49,48,52,48,48,56,93,44,91,45,56,57,46,49,54,51,55,48,53,44,52,49,46,51,49,48,49,56,55,93,44,91,45,56,57,46,51,51,52,57,48,49,44,52,49,46,51,48,48,56,55,55,93,44,91,45,56,57,46,52,54,54,51,56,57,44,52,49,46,50,51,51,56,55,50,93,44,91,45,56,57,46,52,54,54,49,48,49,44,52,49,46,49,52,56,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,72,97,97,107,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,56,50,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,48,49,46,51,50,56,50,52,53,44,52,52,46,54,57,48,57,53,54,93,44,91,45,49,48,49,46,53,51,49,48,51,53,44,52,52,46,53,54,55,56,55,53,93,44,91,45,49,48,49,46,55,49,53,48,51,56,44,52,52,46,53,55,57,52,56,51,93,44,91,45,49,48,49,46,55,56,48,55,51,51,44,52,52,46,53,51,54,52,51,54,93,44,91,45,49,48,50,46,48,48,48,52,51,50,44,52,52,46,53,49,49,54,54,51,93,44,91,45,49,48,50,46,48,48,49,48,54,56,44,52,52,46,53,49,48,57,50,54,93,44,91,45,49,48,50,46,48,48,55,51,51,54,44,52,51,46,57,57,52,53,51,93,44,91,45,49,48,49,46,48,54,52,48,54,56,44,52,51,46,57,57,52,57,50,57,93,44,91,45,49,48,49,46,48,52,54,57,49,54,44,52,52,46,49,54,56,52,56,52,93,44,91,45,49,48,49,46,49,54,54,55,53,51,44,52,52,46,49,54,56,48,56,53,93,44,91,45,49,48,49,46,49,53,52,53,49,54,44,52,52,46,54,56,57,57,52,55,93,44,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,52,56,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,48,53,51,56,56,44,51,54,46,54,52,48,49,56,52,93,44,91,45,56,54,46,50,50,56,52,51,52,44,51,54,46,52,56,55,52,55,50,93,44,91,45,56,54,46,49,54,56,50,54,49,44,51,54,46,52,52,52,50,57,51,93,44,91,45,56,53,46,57,55,56,56,57,51,44,51,54,46,52,50,54,48,55,51,93,44,91,45,56,53,46,56,50,56,48,50,54,44,51,54,46,52,49,49,56,51,54,93,44,91,45,56,53,46,56,49,51,56,56,53,44,51,54,46,52,57,57,52,55,51,93,44,91,45,56,53,46,55,56,56,55,50,54,44,51,54,46,54,50,50,48,52,56,93,44,91,45,56,53,46,57,55,54,52,49,56,44,51,54,46,54,50,56,52,57,51,93,44,91,45,56,54,46,50,48,53,51,56,56,44,51,54,46,54,52,48,49,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,108,101,98,117,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,52,48,53,50,44,51,53,46,55,49,50,49,57,93,44,91,45,57,50,46,50,53,50,55,53,57,44,51,53,46,51,54,51,55,49,56,93,44,91,45,57,50,46,49,49,49,52,54,51,44,51,53,46,51,54,50,55,50,53,93,44,91,45,57,49,46,56,53,49,57,53,56,44,51,53,46,51,53,56,50,56,55,93,44,91,45,57,49,46,55,57,51,57,53,56,44,51,53,46,53,51,52,49,49,52,93,44,91,45,57,49,46,56,51,55,49,55,57,44,51,53,46,55,48,52,57,51,50,93,44,91,45,57,50,46,50,52,48,53,50,44,51,53,46,55,49,50,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,52,48,51,44,34,98,101,100,115,34,58,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,57,54,56,53,51,44,51,50,46,48,53,49,48,52,57,93,44,91,45,56,53,46,57,57,53,53,54,51,44,51,49,46,57,54,55,53,53,52,93,44,91,45,56,54,46,49,57,49,51,55,57,44,51,49,46,57,54,54,52,53,51,93,44,91,45,56,54,46,49,52,56,51,51,57,44,51,49,46,55,57,48,57,53,49,93,44,91,45,56,54,46,49,52,53,56,57,53,44,51,49,46,54,49,55,55,52,49,93,44,91,45,56,53,46,55,56,57,49,52,50,44,51,49,46,54,49,55,57,54,52,93,44,91,45,56,53,46,55,52,56,50,53,49,44,51,49,46,54,49,56,48,52,56,93,44,91,45,56,53,46,54,54,50,54,57,50,44,51,49,46,55,56,51,51,49,57,93,44,91,45,56,53,46,54,53,55,54,54,56,44,51,49,46,56,56,48,50,55,53,93,44,91,45,56,53,46,55,57,49,48,52,55,44,51,49,46,56,56,48,51,53,55,93,44,91,45,56,53,46,55,57,48,48,52,56,44,51,49,46,57,54,55,50,53,52,93,44,91,45,56,53,46,56,57,51,54,53,50,44,51,50,46,48,52,55,51,53,49,93,44,91,45,56,53,46,57,57,54,56,53,51,44,51,50,46,48,53,49,48,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,52,52,51,56,54,44,52,53,46,49,48,55,54,53,49,93,44,91,45,49,49,54,46,50,56,53,57,54,57,44,52,53,46,49,50,56,55,51,50,93,44,91,45,49,49,54,46,51,52,50,56,55,54,44,52,53,46,50,54,55,56,55,50,93,44,91,45,49,49,54,46,54,56,55,49,55,55,44,52,53,46,50,54,55,54,52,51,93,44,91,45,49,49,54,46,55,56,51,56,50,57,44,52,53,46,48,55,56,50,54,51,93,44,91,45,49,49,54,46,56,57,57,55,49,49,44,52,52,46,56,52,48,54,48,57,93,44,91,45,49,49,54,46,54,50,53,48,51,52,44,52,52,46,56,51,56,57,53,50,93,44,91,45,49,49,54,46,54,50,52,49,53,51,44,52,52,46,54,54,51,50,54,57,93,44,91,45,49,49,54,46,53,50,57,49,54,55,44,52,52,46,54,49,53,49,53,52,93,44,91,45,49,49,54,46,53,50,56,56,57,56,44,52,52,46,52,57,49,53,52,53,93,44,91,45,49,49,54,46,50,57,57,56,55,54,44,52,52,46,52,52,52,53,55,54,93,44,91,45,49,49,54,46,49,53,55,48,50,50,44,52,52,46,52,57,56,57,50,56,93,44,91,45,49,49,54,46,49,53,55,54,48,50,44,52,52,46,55,48,51,55,52,51,93,44,91,45,49,49,54,46,49,57,55,48,49,49,44,52,52,46,56,54,52,50,49,54,93,44,91,45,49,49,54,46,48,57,48,49,52,51,44,52,53,46,48,54,52,48,49,51,93,44,91,45,49,49,54,46,49,52,52,51,56,54,44,52,53,46,49,48,55,54,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,114,105,115,116,111,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,56,57,48,53,44,34,98,101,100,115,34,58,49,49,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,51,56,49,50,57,57,44,52,49,46,57,56,53,48,56,52,93,44,91,45,55,49,46,51,49,55,56,55,51,44,52,49,46,55,55,54,49,57,57,93,44,91,45,55,49,46,50,48,56,51,55,49,44,52,49,46,54,57,48,53,57,56,93,44,91,45,55,49,46,49,51,50,53,53,55,44,52,49,46,54,54,48,51,54,51,93,44,91,45,55,49,46,48,56,56,53,55,49,44,52,49,46,52,51,49,51,49,53,93,44,91,45,55,49,46,48,53,49,56,53,52,44,52,49,46,52,49,54,55,50,57,93,44,91,45,55,48,46,55,53,56,52,54,52,44,52,49,46,53,54,48,57,51,49,93,44,91,45,55,48,46,55,53,50,52,50,52,44,52,49,46,53,54,53,56,53,49,93,44,91,45,55,48,46,56,51,57,49,55,53,44,52,49,46,54,49,52,55,54,49,93,44,91,45,55,48,46,56,56,54,52,51,57,44,52,49,46,55,54,48,50,51,50,93,44,91,45,55,49,46,48,52,57,52,56,53,44,52,49,46,57,54,51,48,57,52,93,44,91,45,55,49,46,48,56,48,52,56,51,44,52,50,46,48,57,53,53,51,57,93,44,91,45,55,49,46,51,56,49,50,57,57,44,52,49,46,57,56,53,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,83,99,104,117,121,108,107,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,53,53,53,44,34,98,101,100,115,34,58,51,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,50,48,55,56,50,55,44,52,48,46,57,52,57,55,52,93,44,91,45,55,54,46,51,56,48,49,53,50,44,52,48,46,55,55,53,53,49,49,93,44,91,45,55,54,46,55,48,49,54,50,52,44,52,48,46,54,53,56,48,56,50,93,44,91,45,55,54,46,53,51,53,52,49,52,44,52,48,46,53,53,53,49,53,55,93,44,91,45,55,54,46,52,52,48,49,56,49,44,52,48,46,52,57,53,57,53,50,93,44,91,45,55,54,46,49,55,49,54,50,52,44,52,48,46,53,51,52,57,52,55,93,44,91,45,55,53,46,56,57,49,52,55,51,44,52,48,46,54,55,55,50,55,93,44,91,45,55,53,46,55,53,55,56,48,55,44,52,48,46,55,51,53,52,49,52,93,44,91,45,55,53,46,57,57,55,51,52,56,44,52,48,46,57,49,50,57,56,53,93,44,91,45,55,54,46,50,48,55,56,50,55,44,52,48,46,57,52,57,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,87,101,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,48,54,57,51,49,49,44,52,55,46,56,52,55,52,51,49,93,44,91,45,49,48,48,46,48,51,50,56,48,55,44,52,55,46,54,55,51,54,54,57,93,44,91,45,49,48,48,46,48,51,51,50,57,50,44,52,55,46,51,50,55,49,54,53,93,44,91,45,57,57,46,52,56,49,48,57,53,44,52,55,46,51,50,55,48,50,55,93,44,91,45,57,57,46,50,54,54,50,49,53,44,52,55,46,51,50,54,57,57,57,93,44,91,45,57,57,46,50,54,53,55,57,56,44,52,55,46,53,56,55,54,93,44,91,45,57,57,46,50,57,55,50,48,50,44,52,55,46,56,52,54,56,51,52,93,44,91,45,57,57,46,56,49,50,49,54,55,44,52,55,46,56,52,55,50,53,55,93,44,91,45,49,48,48,46,48,54,57,51,49,49,44,52,55,46,56,52,55,52,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,108,101,118,101,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,49,53,57,44,34,98,101,100,115,34,58,51,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,54,56,49,48,50,44,51,53,46,49,56,48,54,49,49,93,44,91,45,56,49,46,51,54,54,54,44,51,53,46,49,54,52,56,56,51,93,44,91,45,56,49,46,51,50,56,48,51,55,44,51,53,46,49,54,51,52,54,55,93,44,91,45,56,49,46,51,53,54,54,56,50,44,51,53,46,51,51,48,54,48,52,93,44,91,45,56,49,46,52,53,53,54,44,51,53,46,52,49,57,56,49,49,93,44,91,45,56,49,46,53,51,55,53,57,57,44,51,53,46,53,54,52,50,50,56,93,44,91,45,56,49,46,54,57,49,57,56,57,44,51,53,46,53,56,48,48,52,49,93,44,91,45,56,49,46,55,48,50,56,53,51,44,51,53,46,51,53,55,51,48,52,93,44,91,45,56,49,46,55,54,56,49,48,50,44,51,53,46,49,56,48,54,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,111,116,32,83,112,114,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,50,48,44,34,98,101,100,115,34,58,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,57,51,49,57,55,44,51,52,46,53,48,51,54,48,54,93,44,91,45,57,50,46,57,49,53,48,55,57,44,51,52,46,53,48,54,49,49,52,93,44,91,45,57,50,46,57,52,56,48,55,49,44,51,52,46,51,56,57,50,53,53,93,44,91,45,57,51,46,52,48,55,50,50,49,44,51,52,46,51,57,55,52,52,55,93,44,91,45,57,51,46,52,48,56,49,50,52,44,51,52,46,51,51,57,53,50,55,93,44,91,45,57,51,46,51,53,54,56,52,44,51,52,46,50,56,48,51,48,54,93,44,91,45,57,51,46,48,51,53,48,51,57,44,51,52,46,50,51,54,54,54,52,93,44,91,45,57,51,46,48,52,50,48,50,53,44,51,52,46,49,53,57,56,53,50,93,44,91,45,57,50,46,56,56,54,50,56,53,44,51,52,46,49,53,53,56,55,55,93,44,91,45,57,50,46,54,55,56,51,56,51,44,51,52,46,49,52,57,54,50,50,93,44,91,45,57,50,46,54,54,56,55,49,49,44,51,52,46,52,49,52,50,51,55,93,44,91,45,57,50,46,55,57,51,49,57,55,44,51,52,46,53,48,51,54,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,70,114,101,100,101,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,52,55,50,44,34,98,101,100,115,34,58,50,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,54,57,49,52,53,44,51,57,46,55,50,48,48,49,56,93,44,91,45,55,55,46,53,55,48,49,56,50,44,51,57,46,54,49,57,57,57,56,93,44,91,45,55,55,46,54,55,55,49,54,52,44,51,57,46,51,50,52,53,51,52,93,44,91,45,55,55,46,53,54,56,55,53,51,44,51,57,46,51,48,54,52,52,55,93,44,91,45,55,55,46,52,53,56,56,48,56,44,51,57,46,50,50,48,50,55,93,44,91,45,55,55,46,49,54,56,56,48,49,44,51,57,46,51,53,51,53,48,50,93,44,91,45,55,55,46,49,54,56,48,56,44,51,57,46,51,53,51,57,53,55,93,44,91,45,55,55,46,49,48,54,56,51,57,44,51,57,46,52,57,49,54,54,49,93,44,91,45,55,55,46,50,57,57,55,55,44,51,57,46,54,49,50,50,56,52,93,44,91,45,55,55,46,50,49,55,48,50,52,44,51,57,46,55,49,57,56,54,49,93,44,91,45,55,55,46,52,53,57,49,51,52,44,51,57,46,55,49,57,57,56,52,93,44,91,45,55,55,46,52,54,57,49,52,53,44,51,57,46,55,50,48,48,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,83,99,104,117,121,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,54,52,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,57,57,54,51,53,44,52,48,46,49,56,51,56,49,50,93,44,91,45,57,48,46,52,53,49,57,49,54,44,52,48,46,49,56,56,56,48,51,93,44,91,45,57,48,46,52,53,48,50,50,55,44,52,48,46,50,55,54,51,51,53,93,44,91,45,57,48,46,57,48,57,55,53,54,44,52,48,46,50,56,52,51,57,52,93,44,91,45,57,48,46,57,49,49,57,54,57,44,52,48,46,49,57,51,48,56,56,93,44,91,45,57,48,46,57,49,51,52,54,57,44,52,48,46,49,48,52,52,53,53,93,44,91,45,57,48,46,54,57,54,51,53,55,44,52,48,46,49,48,51,57,53,93,44,91,45,57,48,46,54,48,55,49,51,52,44,51,57,46,57,56,49,54,53,56,93,44,91,45,57,48,46,53,49,51,55,52,55,44,51,57,46,57,56,55,56,57,49,93,44,91,45,57,48,46,51,53,52,53,50,52,44,52,48,46,49,50,52,50,49,55,93,44,91,45,57,48,46,49,57,57,54,51,53,44,52,48,46,49,56,51,56,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,77,111,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,55,52,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,54,51,57,50,48,53,44,51,56,46,51,50,54,56,56,93,44,91,45,49,49,57,46,53,55,54,52,57,54,44,51,56,46,49,53,55,54,54,49,93,44,91,45,49,49,57,46,51,52,57,56,52,53,44,51,56,46,48,56,53,53,54,54,93,44,91,45,49,49,57,46,51,48,56,51,56,57,44,51,55,46,57,52,54,56,50,52,93,44,91,45,49,49,57,46,50,48,48,48,56,51,44,51,55,46,56,56,52,53,50,55,93,44,91,45,49,49,57,46,50,54,56,57,55,57,44,51,55,46,55,51,57,50,51,93,44,91,45,49,49,57,46,49,50,52,51,49,50,44,51,55,46,55,51,51,57,52,52,93,44,91,45,49,49,57,46,48,50,50,51,54,51,44,51,55,46,53,56,53,55,51,55,93,44,91,45,49,49,56,46,55,55,53,48,49,52,44,51,55,46,52,54,51,48,53,50,93,44,91,45,49,49,55,46,56,51,50,55,50,54,44,51,55,46,52,54,52,57,50,57,93,44,91,45,49,49,56,46,52,50,56,49,52,52,44,51,55,46,56,57,54,50,50,93,44,91,45,49,49,57,46,49,53,54,57,55,56,44,51,56,46,52,49,52,55,52,54,93,44,91,45,49,49,57,46,51,50,56,51,57,56,44,51,56,46,53,51,52,55,57,50,93,44,91,45,49,49,57,46,53,56,53,52,51,55,44,51,56,46,55,49,51,50,49,50,93,44,91,45,49,49,57,46,54,49,57,48,54,54,44,51,56,46,54,48,51,53,50,57,93,44,91,45,49,49,57,46,53,52,54,48,57,50,44,51,56,46,52,57,57,51,53,93,44,91,45,49,49,57,46,54,51,57,50,48,53,44,51,56,46,51,50,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,84,117,111,108,117,109,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,57,51,50,44,34,98,101,100,115,34,58,49,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,49,57,57,53,49,44,51,56,46,52,51,51,53,50,49,93,44,91,45,49,50,48,46,49,55,54,54,49,51,44,51,56,46,51,55,51,53,49,93,44,91,45,49,50,48,46,53,49,52,57,53,50,44,51,55,46,57,53,51,51,57,93,44,91,45,49,50,48,46,54,53,51,50,55,52,44,51,55,46,56,51,49,56,53,56,93,44,91,45,49,50,48,46,51,56,55,54,49,51,44,51,55,46,54,51,51,55,48,52,93,44,91,45,49,50,48,46,51,52,53,52,51,55,44,51,55,46,55,50,52,55,56,55,93,44,91,45,49,50,48,46,48,50,54,53,57,51,44,51,55,46,56,49,49,56,55,55,93,44,91,45,49,49,57,46,57,51,56,52,49,52,44,51,55,46,55,54,51,48,50,54,93,44,91,45,49,49,57,46,56,48,53,52,57,56,44,51,55,46,55,53,57,54,49,56,93,44,91,45,49,49,57,46,54,54,55,50,48,51,44,51,55,46,56,48,49,50,50,52,93,44,91,45,49,49,57,46,53,51,51,57,57,57,44,51,55,46,57,48,50,57,50,50,93,44,91,45,49,49,57,46,51,48,56,57,57,53,44,51,55,46,55,55,55,57,56,54,93,44,91,45,49,49,57,46,50,54,56,57,55,57,44,51,55,46,55,51,57,50,51,93,44,91,45,49,49,57,46,50,48,48,48,56,51,44,51,55,46,56,56,52,53,50,55,93,44,91,45,49,49,57,46,51,48,56,51,56,57,44,51,55,46,57,52,54,56,50,52,93,44,91,45,49,49,57,46,51,52,57,56,52,53,44,51,56,46,48,56,53,53,54,54,93,44,91,45,49,49,57,46,53,55,54,52,57,54,44,51,56,46,49,53,55,54,54,49,93,44,91,45,49,49,57,46,54,51,57,50,48,53,44,51,56,46,51,50,54,56,56,93,44,91,45,49,49,57,46,55,53,51,52,56,49,44,51,56,46,52,49,54,55,53,57,93,44,91,45,49,49,57,46,56,56,52,55,52,57,44,51,56,46,51,53,54,49,56,53,93,44,91,45,49,50,48,46,48,49,57,57,53,49,44,51,56,46,52,51,51,53,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,68,111,195,177,97,32,65,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,51,51,56,44,34,98,101,100,115,34,58,54,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,50,57,57,54,51,49,44,51,50,46,54,48,53,51,55,93,44,91,45,49,48,55,46,50,57,54,55,57,51,44,51,49,46,55,56,51,54,52,49,93,44,91,45,49,48,54,46,53,50,56,48,52,55,44,51,49,46,55,56,51,56,57,49,93,44,91,45,49,48,54,46,54,51,53,57,50,44,51,49,46,56,54,54,50,51,51,93,44,91,45,49,48,54,46,54,49,56,52,56,54,44,51,50,46,48,48,48,52,57,53,93,44,91,45,49,48,54,46,51,55,55,49,55,52,44,51,50,46,48,48,49,53,48,51,93,44,91,45,49,48,54,46,51,55,54,53,56,53,44,51,50,46,57,53,56,48,53,93,44,91,45,49,48,54,46,51,52,48,53,49,53,44,51,51,46,48,53,50,55,55,55,93,44,91,45,49,48,54,46,56,56,55,56,57,49,44,51,50,46,56,50,50,55,56,49,93,44,91,45,49,48,54,46,56,56,55,55,51,51,44,51,50,46,55,55,57,50,55,51,93,44,91,45,49,48,55,46,50,57,57,52,55,53,44,51,50,46,55,56,48,49,54,54,93,44,91,45,49,48,55,46,50,57,57,54,51,49,44,51,50,46,54,48,53,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,67,114,105,115,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,52,54,44,34,98,101,100,115,34,58,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,48,50,55,50,51,44,51,49,46,56,48,51,53,55,57,93,44,91,45,56,51,46,54,49,50,54,52,50,44,51,49,46,56,48,52,49,50,56,93,44,91,45,56,51,46,54,49,50,50,53,54,44,51,49,46,56,53,52,48,56,57,93,44,91,45,56,51,46,54,48,57,54,54,51,44,51,50,46,48,50,55,57,51,56,93,44,91,45,56,51,46,57,54,49,50,55,56,44,51,50,46,48,51,48,53,57,53,93,44,91,45,56,51,46,57,50,50,52,57,52,44,51,49,46,57,48,57,54,53,51,93,44,91,45,56,51,46,57,51,57,52,51,55,44,51,49,46,56,52,55,57,50,57,93,44,91,45,56,51,46,56,48,50,55,50,51,44,51,49,46,56,48,51,53,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,57,50,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,54,53,53,56,53,44,51,51,46,52,52,52,52,53,57,93,44,91,45,57,51,46,52,56,49,55,54,44,51,51,46,50,53,57,57,57,49,93,44,91,45,57,51,46,52,57,48,53,50,44,51,51,46,48,49,56,52,52,50,93,44,91,45,57,51,46,50,51,56,54,48,55,44,51,51,46,48,49,55,57,57,50,93,44,91,45,57,50,46,57,56,56,55,48,55,44,51,51,46,48,49,55,52,51,51,93,44,91,45,57,50,46,57,55,56,52,54,57,44,51,51,46,51,55,55,50,56,93,44,91,45,57,51,46,49,49,57,48,49,52,44,51,51,46,51,56,48,50,57,51,93,44,91,45,57,51,46,49,49,54,51,54,49,44,51,51,46,52,53,50,57,48,57,93,44,91,45,57,51,46,51,54,53,53,56,53,44,51,51,46,52,52,52,52,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,71,114,105,103,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,54,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,48,48,48,56,53,44,52,55,46,53,56,55,50,50,56,93,44,91,45,57,56,46,52,57,57,50,52,54,44,52,55,46,51,50,54,53,51,56,93,44,91,45,57,56,46,52,54,55,48,54,54,44,52,55,46,50,52,48,52,48,52,93,44,91,45,57,55,46,57,54,49,50,49,49,44,52,55,46,50,52,48,51,50,53,93,44,91,45,57,55,46,57,56,54,52,50,56,44,52,55,46,51,50,54,50,48,49,93,44,91,45,57,55,46,57,56,52,50,52,56,44,52,55,46,54,55,50,51,48,51,93,44,91,45,57,56,46,53,48,48,49,56,49,44,52,55,46,54,55,50,52,49,51,93,44,91,45,57,56,46,53,48,48,48,56,53,44,52,55,46,53,56,55,50,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,83,111,108,97,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,56,53,51,48,44,34,98,101,100,115,34,58,49,48,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,49,48,51,50,56,49,44,51,56,46,53,49,51,51,52,56,93,44,91,45,49,50,50,46,49,50,54,51,56,57,44,51,56,46,52,50,56,57,49,56,93,44,91,45,49,50,50,46,48,54,52,55,55,57,44,51,56,46,51,49,53,57,49,50,93,44,91,45,49,50,50,46,50,48,53,57,56,50,44,51,56,46,51,49,53,55,49,51,93,44,91,45,49,50,50,46,49,57,53,51,56,44,51,56,46,49,53,53,48,49,55,93,44,91,45,49,50,50,46,52,48,54,55,56,54,44,51,56,46,49,53,53,54,51,50,93,44,91,45,49,50,50,46,51,52,55,52,53,52,44,51,56,46,48,55,51,50,54,93,44,91,45,49,50,50,46,49,50,51,57,55,51,44,51,56,46,48,51,53,55,49,55,93,44,91,45,49,50,49,46,56,54,50,52,54,50,44,51,56,46,48,54,54,48,51,93,44,91,45,49,50,49,46,55,49,51,57,50,54,44,51,56,46,48,56,52,53,52,50,93,44,91,45,49,50,49,46,54,49,53,52,49,51,44,51,56,46,49,57,53,54,57,54,93,44,91,45,49,50,49,46,53,57,51,50,55,51,44,51,56,46,51,49,51,48,56,57,93,44,91,45,49,50,49,46,54,57,52,48,49,52,44,51,56,46,51,49,52,56,53,54,93,44,91,45,49,50,49,46,54,57,53,49,52,55,44,51,56,46,53,50,51,49,53,54,93,44,91,45,49,50,49,46,57,52,48,50,56,53,44,51,56,46,53,51,51,51,56,52,93,44,91,45,49,50,50,46,49,48,51,50,56,49,44,51,56,46,53,49,51,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,108,97,121,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,55,50,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,48,53,51,48,55,44,52,51,46,48,56,49,54,53,51,93,44,91,45,57,49,46,54,48,55,48,53,57,44,52,50,46,54,52,51,57,55,51,93,44,91,45,57,49,46,49,51,50,55,54,54,44,52,50,46,54,52,53,56,52,52,93,44,91,45,57,48,46,56,57,54,57,53,49,44,52,50,46,54,55,53,48,56,50,93,44,91,45,57,49,46,48,53,49,50,55,53,44,52,50,46,55,51,55,48,48,49,93,44,91,45,57,49,46,49,53,54,56,49,50,44,52,50,46,57,56,56,49,55,93,44,91,45,57,49,46,49,55,55,50,50,50,44,52,51,46,48,56,48,50,52,55,93,44,91,45,57,49,46,54,48,53,51,48,55,44,52,51,46,48,56,49,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,52,57,34,44,34,78,65,77,69,34,58,34,84,105,116,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,55,51,48,44,34,98,101,100,115,34,58,49,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,50,54,49,51,44,51,51,46,48,51,52,53,56,49,93,44,91,45,57,52,46,57,50,55,55,50,55,44,51,51,46,48,55,48,51,48,52,93,44,91,45,57,52,46,56,49,57,56,50,56,44,51,50,46,57,56,50,56,56,54,93,44,91,45,57,52,46,56,48,56,55,56,51,44,51,51,46,51,54,51,54,51,54,93,44,91,45,57,53,46,49,50,53,52,53,49,44,51,51,46,51,56,57,52,53,52,93,44,91,45,57,53,46,49,50,54,49,51,44,51,51,46,48,51,52,53,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,51,54,51,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,53,55,48,55,51,44,51,57,46,53,51,53,49,52,49,93,44,91,45,55,56,46,56,53,48,55,50,51,44,51,57,46,51,51,49,48,57,51,93,44,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,44,91,45,55,56,46,56,57,57,54,57,53,44,51,57,46,49,57,57,49,51,55,93,44,91,45,55,56,46,53,48,56,49,51,50,44,51,57,46,48,56,56,54,51,93,44,91,45,55,56,46,52,48,51,57,48,55,44,51,57,46,49,54,55,55,51,56,93,44,91,45,55,56,46,52,49,57,52,50,50,44,51,57,46,50,53,55,52,55,54,93,44,91,45,55,56,46,51,52,48,52,49,53,44,51,57,46,51,53,51,54,50,56,93,44,91,45,55,56,46,51,52,55,48,56,55,44,51,57,46,52,54,54,48,49,50,93,44,91,45,55,56,46,52,54,56,53,56,49,44,51,57,46,53,49,54,54,49,57,93,44,91,45,55,56,46,54,53,55,48,55,51,44,51,57,46,53,51,53,49,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,111,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,54,50,57,44,34,98,101,100,115,34,58,52,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,53,53,53,56,48,52,44,51,53,46,53,49,53,48,51,57,93,44,91,45,55,57,46,55,54,55,57,53,55,44,51,53,46,53,49,49,52,56,52,93,44,91,45,55,57,46,54,57,55,55,55,51,44,51,53,46,50,53,49,51,55,57,93,44,91,45,55,57,46,54,49,52,51,48,52,44,51,53,46,49,54,51,54,55,57,93,44,91,45,55,57,46,53,54,54,52,57,55,44,51,53,46,48,54,52,48,49,49,93,44,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,44,91,45,55,57,46,51,51,53,52,55,55,44,51,53,46,49,54,49,53,56,56,93,44,91,45,55,57,46,50,50,57,55,49,50,44,51,53,46,50,49,48,54,48,50,93,44,91,45,55,57,46,48,57,55,53,57,49,44,51,53,46,49,55,52,50,50,53,93,44,91,45,55,57,46,48,57,53,56,48,56,44,51,53,46,49,57,50,48,54,56,93,44,91,45,55,57,46,49,56,51,53,53,54,44,51,53,46,51,48,55,49,54,49,93,44,91,45,55,57,46,50,54,53,55,49,51,44,51,53,46,51,52,53,50,55,57,93,44,91,45,55,57,46,51,53,48,48,55,51,44,51,53,46,53,49,56,48,48,50,93,44,91,45,55,57,46,53,53,53,56,48,52,44,51,53,46,53,49,53,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,57,49,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,51,50,57,55,49,44,51,56,46,54,57,54,55,53,57,93,44,91,45,57,57,46,48,51,50,52,48,56,44,51,56,46,51,52,56,51,51,52,93,44,91,45,57,57,46,48,51,50,51,48,57,44,51,56,46,50,54,49,50,50,55,93,44,91,45,57,56,46,57,49,50,53,56,51,44,51,56,46,50,54,49,48,56,56,93,44,91,45,57,56,46,52,55,57,56,52,49,44,51,56,46,50,54,48,55,57,93,44,91,45,57,56,46,52,56,48,51,55,55,44,51,56,46,53,50,49,56,52,49,93,44,91,45,57,56,46,52,56,54,49,48,56,44,51,56,46,54,57,54,56,55,56,93,44,91,45,57,57,46,48,51,50,57,55,49,44,51,56,46,54,57,54,55,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,83,108,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,53,50,49,49,44,52,54,46,53,52,48,56,54,49,93,44,91,45,49,48,52,46,48,52,53,53,53,57,44,52,54,46,50,56,48,48,56,49,93,44,91,45,49,48,50,46,57,57,53,50,52,53,44,52,54,46,50,56,48,54,53,49,93,44,91,45,49,48,50,46,57,50,52,53,52,55,44,52,54,46,50,56,49,53,49,56,93,44,91,45,49,48,50,46,57,50,55,52,53,49,44,52,54,46,54,51,48,48,50,93,44,91,45,49,48,51,46,50,51,49,54,53,54,44,52,54,46,54,50,57,55,54,52,93,44,91,45,49,48,51,46,54,48,57,50,55,51,44,52,54,46,54,50,57,56,50,50,93,44,91,45,49,48,51,46,56,48,48,56,55,51,44,52,54,46,54,50,57,55,51,49,93,44,91,45,49,48,51,46,56,48,48,56,56,44,52,54,46,53,52,48,54,55,49,93,44,91,45,49,48,52,46,48,52,53,50,49,49,44,52,54,46,53,52,48,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,55,52,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,51,55,53,56,55,44,51,50,46,54,54,55,51,52,49,93,44,91,45,57,49,46,55,51,57,54,53,49,44,51,50,46,53,54,49,50,57,57,93,44,91,45,57,49,46,57,49,51,48,53,55,44,51,50,46,53,48,53,57,48,50,93,44,91,45,57,50,46,48,48,52,51,52,44,51,50,46,51,56,48,52,57,57,93,44,91,45,57,50,46,48,51,52,51,57,55,44,51,50,46,50,55,55,48,54,56,93,44,91,45,57,49,46,57,55,50,56,56,44,51,50,46,49,54,54,55,52,50,93,44,91,45,57,49,46,56,57,52,55,50,57,44,51,50,46,49,53,49,53,53,93,44,91,45,57,49,46,55,55,54,53,56,55,44,51,50,46,50,51,57,49,48,54,93,44,91,45,57,49,46,55,53,57,48,57,56,44,51,50,46,51,49,55,55,49,52,93,44,91,45,57,49,46,54,50,53,49,50,49,44,51,50,46,52,48,53,51,52,52,93,44,91,45,57,49,46,52,55,54,55,51,57,44,51,50,46,52,48,53,56,48,56,93,44,91,45,57,49,46,52,53,55,54,52,51,44,51,50,46,53,51,55,56,48,55,93,44,91,45,57,49,46,52,52,53,50,57,57,44,51,50,46,53,56,49,57,53,54,93,44,91,45,57,49,46,53,57,54,48,50,55,44,51,50,46,53,56,50,49,57,50,93,44,91,45,57,49,46,54,51,55,53,56,55,44,51,50,46,54,54,55,51,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,50,50,55,51,51,44,52,50,46,48,56,55,57,49,54,93,44,91,45,57,57,46,50,50,49,56,51,44,52,49,46,55,52,48,55,57,50,93,44,91,45,57,57,46,50,49,50,48,49,54,44,52,49,46,55,52,48,54,49,51,93,44,91,45,57,56,46,55,53,57,49,51,51,44,52,49,46,55,52,48,51,56,50,93,44,91,45,57,56,46,55,54,49,49,53,53,44,52,50,46,48,56,56,53,49,56,93,44,91,45,57,57,46,50,50,50,55,51,51,44,52,50,46,48,56,55,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,55,53,50,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,57,49,46,57,56,56,55,49,56,44,51,48,46,51,54,56,53,57,56,93,44,91,45,57,49,46,57,52,57,48,52,55,44,51,48,46,50,55,54,55,55,49,93,44,91,45,57,49,46,57,55,57,57,51,50,44,51,48,46,49,56,50,53,56,53,93,44,91,45,57,49,46,57,53,48,57,57,56,44,51,48,46,48,55,51,50,49,51,93,44,91,45,57,49,46,56,49,57,50,49,54,44,51,48,46,48,52,52,48,49,51,93,44,91,45,57,49,46,55,54,53,49,54,56,44,51,48,46,49,48,56,52,57,53,93,44,91,45,57,49,46,54,53,56,56,56,54,44,51,48,46,49,48,56,50,50,54,93,44,91,45,57,49,46,54,48,48,51,53,52,44,51,48,46,48,51,51,49,54,57,93,44,91,45,57,49,46,51,54,56,56,51,53,44,51,48,46,48,53,56,56,50,52,93,44,91,45,57,49,46,52,54,51,56,51,51,44,51,48,46,49,48,50,52,57,51,93,44,91,45,57,49,46,53,48,56,50,54,56,44,51,48,46,50,52,48,50,57,55,93,44,91,45,57,49,46,54,50,49,48,53,53,44,51,48,46,51,48,57,57,51,56,93,44,91,45,57,49,46,54,52,48,48,57,57,44,51,48,46,52,52,50,55,50,56,93,44,91,45,57,49,46,55,48,48,57,51,51,44,51,48,46,52,57,55,52,51,51,93,44,91,45,57,49,46,55,53,54,49,57,51,44,51,48,46,52,57,55,55,51,56,93,44,91,45,57,49,46,54,57,52,51,44,51,48,46,52,48,49,55,52,56,93,44,91,45,57,49,46,56,54,57,50,55,51,44,51,48,46,52,49,55,50,51,53,93,44,91,45,57,49,46,57,56,56,55,49,56,44,51,48,46,51,54,56,53,57,56,93,93,93,44,91,91,91,45,57,49,46,52,55,49,57,53,49,44,50,57,46,57,53,53,57,56,57,93,44,91,45,57,49,46,51,55,51,54,52,50,44,50,57,46,56,51,52,52,48,49,93,44,91,45,57,49,46,51,56,54,52,57,49,44,50,57,46,55,56,51,54,56,49,93,44,91,45,57,49,46,49,48,48,48,49,44,50,57,46,54,57,57,52,48,50,93,44,91,45,57,49,46,48,57,50,55,52,56,44,50,57,46,56,48,49,53,55,52,93,44,91,45,57,49,46,49,56,50,56,49,55,44,50,57,46,56,52,54,49,55,50,93,44,91,45,57,49,46,50,53,53,50,50,57,44,50,57,46,57,55,49,52,53,55,93,44,91,45,57,49,46,52,55,49,57,53,49,44,50,57,46,57,53,53,57,56,57,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,83,117,109,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,56,53,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,52,55,56,56,55,44,51,50,46,57,50,57,48,56,50,93,44,91,45,56,56,46,51,56,56,55,57,55,44,51,50,46,53,55,56,49,50,51,93,44,91,45,56,56,46,52,50,49,52,53,51,44,51,50,46,51,48,56,54,56,93,44,91,45,56,55,46,57,51,48,54,54,49,44,51,50,46,51,49,48,53,55,52,93,44,91,45,56,56,46,48,52,54,51,51,53,44,51,50,46,51,55,55,48,56,55,93,44,91,45,56,56,46,48,51,49,54,50,51,44,51,50,46,52,51,51,54,49,93,44,91,45,56,55,46,56,53,51,52,50,44,51,50,46,53,51,50,48,56,54,93,44,91,45,56,55,46,57,50,56,54,56,57,44,51,50,46,54,51,50,50,56,52,93,44,91,45,56,56,46,48,53,53,48,48,52,44,51,50,46,54,52,54,52,56,50,93,44,91,45,56,56,46,49,51,50,54,56,53,44,51,50,46,56,51,50,56,53,51,93,44,91,45,56,56,46,50,48,55,51,49,54,44,51,50,46,57,50,52,55,56,50,93,44,91,45,56,56,46,49,55,49,56,53,50,44,51,50,46,57,57,53,56,54,93,44,91,45,56,56,46,51,52,48,52,51,50,44,51,50,46,57,57,49,49,57,57,93,44,91,45,56,56,46,51,52,55,56,56,55,44,51,50,46,57,50,57,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,87,105,110,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,55,53,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,51,52,55,50,53,44,51,52,46,51,48,54,57,57,55,93,44,91,45,56,55,46,54,51,54,49,49,56,44,51,52,46,48,48,50,50,48,51,93,44,91,45,56,55,46,49,53,49,48,51,54,44,51,51,46,57,57,51,50,50,53,93,44,91,45,56,55,46,49,49,49,57,57,50,44,51,51,46,57,57,50,51,56,53,93,44,91,45,56,55,46,49,48,57,57,49,49,44,51,52,46,50,57,57,50,57,57,93,44,91,45,56,55,46,53,50,57,55,50,50,44,51,52,46,51,48,52,53,57,56,93,44,91,45,56,55,46,54,51,52,55,50,53,44,51,52,46,51,48,54,57,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,83,101,109,105,110,111,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,53,48,56,54,44,34,98,101,100,115,34,58,51,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,49,52,52,52,54,44,50,56,46,55,56,52,57,53,53,93,44,91,45,56,49,46,52,53,57,55,50,56,44,50,56,46,54,52,48,49,57,54,93,44,91,45,56,49,46,51,50,55,56,57,44,50,56,46,54,49,48,50,55,55,93,44,91,45,56,48,46,57,56,55,50,53,44,50,56,46,54,49,50,57,57,55,93,44,91,45,56,49,46,49,48,53,55,53,44,50,56,46,56,50,56,53,52,49,93,44,91,45,56,49,46,51,50,48,52,55,51,44,50,56,46,56,51,52,53,51,93,44,91,45,56,49,46,51,54,54,57,52,44,50,56,46,56,55,57,50,50,55,93,44,91,45,56,49,46,52,49,52,52,52,54,44,50,56,46,55,56,52,57,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,70,111,114,114,101,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,53,49,55,44,34,98,101,100,115,34,58,53,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,53,49,54,49,54,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,52,53,49,48,55,51,44,51,49,46,51,52,54,51,56,51,93,44,91,45,56,57,46,51,52,55,56,54,51,44,51,49,46,51,52,54,55,93,44,91,45,56,57,46,51,52,56,57,53,44,51,49,46,48,49,48,51,55,93,44,91,45,56,57,46,51,52,48,56,48,54,44,51,48,46,57,48,57,57,49,50,93,44,91,45,56,57,46,49,51,55,57,54,55,44,51,48,46,57,48,57,56,55,55,93,44,91,45,56,57,46,49,52,54,48,57,50,44,51,49,46,52,51,52,48,53,50,93,44,91,45,56,57,46,51,57,57,49,55,56,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,52,53,49,54,49,54,44,51,49,46,52,51,52,48,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,73,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,53,54,52,44,34,98,101,100,115,34,58,57,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,48,50,55,54,49,44,52,50,46,55,54,57,56,56,93,44,91,45,56,52,46,54,48,48,52,48,51,44,52,50,46,52,50,49,57,56,52,93,44,91,45,56,52,46,49,52,48,55,49,51,44,52,50,46,52,50,52,54,49,49,93,44,91,45,56,52,46,49,53,56,49,56,57,44,52,50,46,55,55,54,54,51,57,93,44,91,45,56,52,46,51,54,51,54,53,57,44,52,50,46,55,55,53,55,55,56,93,44,91,45,56,52,46,54,48,50,55,54,49,44,52,50,46,55,54,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,83,104,97,119,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,50,56,52,44,34,98,101,100,115,34,58,49,48,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,51,57,48,54,44,51,57,46,49,50,54,53,50,55,93,44,91,45,57,53,46,57,52,54,55,53,52,44,51,57,46,48,57,56,54,56,53,93,44,91,45,57,53,46,57,52,54,53,56,55,44,51,56,46,56,54,57,57,55,51,93,44,91,45,57,53,46,53,48,48,55,50,52,44,51,56,46,56,54,57,56,49,53,93,44,91,45,57,53,46,53,48,48,50,53,52,44,51,57,46,48,53,54,54,53,54,93,44,91,45,57,53,46,53,57,54,55,53,57,44,51,57,46,48,54,52,54,55,50,93,44,91,45,57,53,46,53,56,57,52,55,50,44,51,57,46,50,49,54,48,56,49,93,44,91,45,57,54,46,48,51,53,53,55,51,44,51,57,46,50,49,54,53,50,93,44,91,45,57,54,46,48,51,57,48,54,44,51,57,46,49,50,54,53,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,97,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,54,55,50,55,57,44,52,51,46,56,53,48,54,56,54,93,44,91,45,57,55,46,57,54,52,53,56,54,44,52,51,46,52,57,57,48,52,49,93,44,91,45,57,55,46,54,48,55,48,49,50,44,52,51,46,52,57,57,56,50,54,93,44,91,45,57,55,46,54,48,56,53,49,55,44,52,51,46,56,52,57,48,53,57,93,44,91,45,57,55,46,56,53,49,49,49,44,52,51,46,56,52,57,56,53,55,93,44,91,45,57,55,46,57,54,55,50,55,57,44,52,51,46,56,53,48,54,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,73,116,97,115,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,50,48,51,44,34,98,101,100,115,34,58,49,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,49,54,50,55,57,44,52,55,46,52,52,52,56,50,56,93,44,91,45,57,52,46,51,50,55,53,51,49,44,52,55,46,52,49,53,56,52,52,93,44,91,45,57,52,46,49,49,55,57,57,57,44,52,55,46,52,56,48,55,52,52,93,44,91,45,57,52,46,48,50,53,57,56,49,44,52,55,46,51,53,49,51,56,56,93,44,91,45,57,51,46,55,55,54,48,55,52,44,52,55,46,50,55,55,57,56,54,93,44,91,45,57,51,46,55,55,53,50,53,55,44,52,55,46,48,51,48,52,49,56,93,44,91,45,57,51,46,48,53,53,57,52,51,44,52,55,46,48,50,54,52,49,53,93,44,91,45,57,51,46,48,54,57,53,44,52,55,46,51,57,51,57,49,53,93,44,91,45,57,51,46,48,54,49,50,53,51,44,52,55,46,55,50,48,49,56,55,93,44,91,45,57,51,46,48,56,49,49,53,56,44,52,55,46,56,57,49,56,55,93,44,91,45,57,51,46,55,55,53,55,55,50,44,52,55,46,56,57,56,57,53,93,44,91,45,57,51,46,55,55,54,49,55,51,44,52,55,46,56,52,54,52,48,52,93,44,91,45,57,52,46,52,49,56,53,52,51,44,52,55,46,56,52,53,56,49,54,93,44,91,45,57,52,46,52,49,54,50,55,57,44,52,55,46,52,52,52,56,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,56,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,55,49,52,51,53,53,44,51,57,46,53,54,54,51,51,49,93,44,91,45,49,48,51,46,55,49,57,54,54,52,44,51,56,46,56,54,54,56,50,55,93,44,91,45,49,48,52,46,48,53,53,53,50,56,44,51,56,46,56,54,56,56,54,56,93,44,91,45,49,48,52,46,48,53,51,57,50,49,44,51,56,46,53,50,50,51,57,51,93,44,91,45,49,48,51,46,53,48,52,54,54,54,44,51,56,46,53,49,54,52,48,57,93,44,91,45,49,48,51,46,49,55,50,56,55,56,44,51,56,46,53,50,53,51,49,53,93,44,91,45,49,48,51,46,49,55,50,57,52,51,44,51,56,46,54,49,50,52,53,93,44,91,45,49,48,51,46,49,54,51,48,50,53,44,51,57,46,48,51,55,54,49,93,44,91,45,49,48,51,46,49,53,52,51,55,54,44,51,57,46,53,54,53,54,53,52,93,44,91,45,49,48,51,46,55,48,55,48,55,50,44,51,57,46,53,54,54,50,57,53,93,44,91,45,49,48,51,46,55,49,52,51,53,53,44,51,57,46,53,54,54,51,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,51,53,57,44,34,98,101,100,115,34,58,49,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,57,57,51,51,57,52,44,52,51,46,49,56,51,51,55,54,93,44,91,45,55,53,46,57,49,55,49,56,57,44,52,51,46,48,56,53,55,55,57,93,44,91,45,55,53,46,56,57,54,48,55,57,44,52,50,46,55,57,48,57,54,52,93,44,91,45,55,53,46,56,56,57,56,51,50,44,52,50,46,55,50,51,56,52,52,93,44,91,45,55,53,46,50,57,53,56,55,55,44,52,50,46,55,52,52,49,48,54,93,44,91,45,55,53,46,50,52,55,57,54,51,44,52,50,46,56,55,49,54,48,52,93,44,91,45,55,53,46,52,51,55,49,54,55,44,52,50,46,56,54,51,51,49,57,93,44,91,45,55,53,46,53,52,50,56,48,51,44,52,50,46,57,51,49,55,55,52,93,44,91,45,55,53,46,53,53,50,55,55,52,44,52,51,46,48,51,55,53,53,52,93,44,91,45,55,53,46,55,51,56,51,57,54,44,52,51,46,49,54,52,55,54,54,93,44,91,45,55,53,46,56,56,52,50,55,53,44,52,51,46,49,53,53,53,54,50,93,44,91,45,55,53,46,57,57,51,51,57,52,44,52,51,46,49,56,51,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,56,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,52,51,56,49,50,44,52,51,46,56,48,51,54,56,55,93,44,91,45,55,51,46,52,57,52,51,49,52,44,52,51,46,54,53,51,57,54,54,93,44,91,45,55,51,46,54,50,56,57,52,44,52,51,46,52,56,54,51,57,49,93,44,91,45,55,51,46,53,57,52,57,54,44,52,51,46,51,48,54,49,49,56,93,44,91,45,55,51,46,53,55,51,51,52,50,44,52,51,46,49,48,48,53,52,53,93,44,91,45,55,51,46,54,51,53,52,54,51,44,52,50,46,57,52,49,50,57,93,44,91,45,55,51,46,50,55,52,50,57,52,44,52,50,46,57,52,51,54,53,50,93,44,91,45,55,51,46,50,53,52,54,51,51,44,52,51,46,51,49,52,54,55,53,93,44,91,45,55,51,46,50,52,54,56,52,52,44,52,51,46,53,49,55,50,53,50,93,44,91,45,55,51,46,51,48,50,53,53,51,44,52,51,46,54,50,53,55,48,57,93,44,91,45,55,51,46,52,50,55,57,49,44,52,51,46,54,51,52,52,50,56,93,44,91,45,55,51,46,51,54,50,56,50,51,44,52,51,46,55,53,51,48,56,52,93,44,91,45,55,51,46,51,55,57,50,56,49,44,52,51,46,56,48,56,52,56,49,93,44,91,45,55,51,46,52,51,56,49,50,44,52,51,46,56,48,51,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,53,54,52,44,34,98,101,100,115,34,58,49,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,53,50,48,56,44,51,57,46,54,51,56,51,52,53,93,44,91,45,56,54,46,50,52,57,56,56,53,44,51,57,46,54,51,51,54,52,53,93,44,91,45,56,54,46,50,53,49,54,56,52,44,51,57,46,51,52,49,54,55,50,93,44,91,45,56,54,46,48,56,53,54,48,49,44,51,57,46,51,52,52,49,56,57,93,44,91,45,56,53,46,57,53,50,48,48,53,44,51,57,46,51,52,55,51,55,51,93,44,91,45,56,53,46,57,53,50,48,56,44,51,57,46,54,51,56,51,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,52,53,34,44,34,78,65,77,69,34,58,34,84,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,49,53,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,53,57,52,56,51,54,44,51,51,46,51,56,56,52,56,57,93,44,91,45,49,48,50,46,53,57,53,48,50,51,44,51,50,46,57,53,56,56,51,49,93,44,91,45,49,48,50,46,50,48,56,53,50,44,51,50,46,57,53,56,57,53,54,93,44,91,45,49,48,50,46,48,55,54,50,49,52,44,51,50,46,57,53,57,55,48,50,93,44,91,45,49,48,50,46,48,55,53,57,50,57,44,51,51,46,51,56,57,53,56,54,93,44,91,45,49,48,50,46,53,57,52,56,51,54,44,51,51,46,51,56,56,52,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,51,55,48,49,50,44,51,53,46,55,55,57,51,48,50,93,44,91,45,49,48,52,46,48,50,49,55,48,50,44,51,53,46,55,56,49,52,57,52,93,44,91,45,49,48,51,46,57,55,54,57,48,49,44,51,53,46,56,48,49,55,52,55,93,44,91,45,49,48,51,46,55,50,51,54,48,57,44,51,53,46,52,50,50,55,56,53,93,44,91,45,49,48,51,46,54,51,55,48,53,51,44,51,53,46,51,56,57,54,54,50,93,44,91,45,49,48,51,46,51,55,57,55,51,44,51,53,46,51,57,54,55,57,54,93,44,91,45,49,48,51,46,51,55,53,49,49,55,44,51,53,46,55,51,57,53,49,54,93,44,91,45,49,48,51,46,51,54,52,57,55,55,44,51,54,46,48,56,54,48,53,93,44,91,45,49,48,51,46,55,57,52,53,50,53,44,51,54,46,48,56,53,55,51,56,93,44,91,45,49,48,51,46,55,57,51,57,57,49,44,51,54,46,49,55,51,57,55,50,93,44,91,45,49,48,52,46,48,48,56,56,50,51,44,51,54,46,50,49,56,49,49,53,93,44,91,45,49,48,52,46,52,51,54,48,53,54,44,51,54,46,50,49,56,53,51,52,93,44,91,45,49,48,52,46,51,54,53,55,50,52,44,51,54,46,48,52,52,50,57,93,44,91,45,49,48,52,46,51,55,48,49,50,44,51,53,46,55,55,57,51,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,84,97,108,108,97,100,101,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,53,54,53,44,34,98,101,100,115,34,58,50,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,52,53,53,54,50,44,51,51,46,54,55,57,48,57,56,93,44,91,45,56,54,46,49,56,57,56,49,50,44,51,51,46,53,52,55,50,51,56,93,44,91,45,56,54,46,51,55,56,54,54,53,44,51,51,46,51,57,48,57,56,51,93,44,91,45,56,54,46,51,53,55,51,52,44,51,51,46,50,57,54,57,49,55,93,44,91,45,56,54,46,53,48,51,49,50,55,44,51,51,46,49,55,57,49,52,52,93,44,91,45,56,54,46,52,57,49,48,50,57,44,51,51,46,49,48,50,57,52,52,93,44,91,45,56,54,46,49,55,52,51,55,44,51,51,46,49,48,52,51,57,52,93,44,91,45,56,54,46,49,49,56,49,57,56,44,51,51,46,50,57,54,51,50,93,44,91,45,56,53,46,57,56,48,50,57,51,44,51,51,46,50,57,52,49,57,93,44,91,45,56,53,46,56,53,49,56,57,44,51,51,46,52,57,56,55,52,50,93,44,91,45,56,53,46,55,57,54,48,53,52,44,51,51,46,53,53,54,50,50,93,44,91,45,56,53,46,57,57,52,57,51,53,44,51,51,46,53,56,54,52,55,53,93,44,91,45,56,54,46,48,53,48,54,54,57,44,51,51,46,54,55,52,53,57,93,44,91,45,56,54,46,49,52,53,53,54,50,44,51,51,46,54,55,57,48,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,76,97,110,103,108,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,50,52,56,50,52,44,52,53,46,52,54,55,49,54,54,93,44,91,45,56,57,46,52,50,53,57,55,49,44,52,53,46,49,49,57,48,57,56,93,44,91,45,56,57,46,50,50,52,50,49,52,44,52,53,46,49,49,56,53,54,55,93,44,91,45,56,57,46,50,50,51,56,49,52,44,52,53,46,48,50,57,50,52,54,93,44,91,45,56,56,46,57,56,49,54,56,44,52,53,46,48,50,56,57,49,55,93,44,91,45,56,56,46,57,56,50,49,53,57,44,52,53,46,49,49,56,48,50,54,93,44,91,45,56,56,46,54,52,49,49,53,57,44,52,53,46,49,49,55,51,52,54,93,44,91,45,56,56,46,54,56,48,48,54,54,44,52,53,46,50,48,52,57,57,52,93,44,91,45,56,56,46,54,55,55,57,57,54,44,52,53,46,51,55,56,54,56,51,93,44,91,45,56,56,46,57,50,54,48,50,53,44,52,53,46,51,55,56,54,51,55,93,44,91,45,56,57,46,48,52,54,52,57,44,52,53,46,52,54,52,52,51,57,93,44,91,45,56,57,46,52,50,52,56,50,52,44,52,53,46,52,54,55,49,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,70,111,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,57,54,52,51,52,44,51,51,46,56,51,53,57,54,55,93,44,91,45,57,57,46,54,57,52,55,56,49,44,51,51,46,56,50,55,49,53,56,93,44,91,45,57,57,46,53,52,50,48,48,56,44,51,51,46,55,57,51,50,52,52,93,44,91,45,57,57,46,52,55,52,52,57,56,44,51,51,46,55,51,51,56,52,57,93,44,91,45,57,57,46,52,55,53,54,53,44,51,51,46,56,51,52,48,48,53,93,44,91,45,57,57,46,52,55,53,50,57,52,44,51,52,46,48,56,53,54,49,56,93,44,91,45,57,57,46,53,55,51,49,54,49,44,51,52,46,48,54,51,54,48,56,93,44,91,45,57,57,46,55,55,50,48,52,51,44,51,52,46,48,57,51,50,56,54,93,44,91,45,57,57,46,57,57,55,54,50,49,44,51,52,46,50,50,52,51,53,53,93,44,91,45,49,48,48,46,48,52,55,48,50,56,44,51,52,46,50,50,57,55,56,93,44,91,45,49,48,48,46,48,52,56,52,56,44,51,51,46,56,51,53,57,55,52,93,44,91,45,57,57,46,57,57,54,52,51,52,44,51,51,46,56,51,53,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,117,101,110,97,32,86,105,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,54,48,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,56,56,49,56,50,44,52,50,46,57,48,57,56,57,55,93,44,91,45,57,53,46,51,56,56,48,49,44,52,50,46,53,54,49,55,52,50,93,44,91,45,57,52,46,57,49,52,52,56,53,44,52,50,46,53,54,48,51,48,57,93,44,91,45,57,52,46,57,49,51,56,57,44,52,50,46,57,48,57,55,93,44,91,45,57,53,46,51,56,56,49,56,50,44,52,50,46,57,48,57,56,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,77,105,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,55,57,52,56,55,44,52,49,46,48,53,51,50,57,57,93,44,91,45,57,53,46,56,49,51,52,54,53,44,52,48,46,57,48,49,54,57,51,93,44,91,45,57,53,46,51,56,52,57,54,52,44,52,48,46,57,48,49,53,53,93,44,91,45,57,53,46,51,56,52,51,52,57,44,52,49,46,49,54,48,48,49,49,93,44,91,45,57,53,46,56,56,48,53,50,49,44,52,49,46,49,53,57,56,55,52,93,44,91,45,57,53,46,56,55,57,52,56,55,44,52,49,46,48,53,51,50,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,56,53,34,44,34,78,65,77,69,34,58,34,82,101,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,55,53,55,54,50,49,44,51,48,46,48,55,52,49,51,50,93,44,91,45,57,57,46,57,54,55,54,50,54,44,51,48,46,48,56,50,51,53,54,93,44,91,45,49,48,48,46,48,52,53,55,57,49,44,50,57,46,54,57,52,57,50,52,93,44,91,45,49,48,48,46,48,49,52,49,56,56,44,50,57,46,54,50,51,52,57,53,93,44,91,45,57,57,46,54,48,51,49,51,44,50,57,46,54,50,55,49,56,49,93,44,91,45,57,57,46,54,48,50,55,55,54,44,50,57,46,57,48,55,54,55,57,93,44,91,45,57,57,46,54,57,49,50,49,53,44,50,57,46,57,48,56,53,56,50,93,44,91,45,57,57,46,54,56,57,56,55,57,44,51,48,46,48,55,51,57,52,56,93,44,91,45,57,57,46,55,53,55,54,50,49,44,51,48,46,48,55,52,49,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,48,48,56,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,52,56,53,57,53,44,52,48,46,52,52,51,57,56,57,93,44,91,45,56,51,46,50,52,56,52,50,56,44,52,48,46,50,52,52,52,54,54,93,44,91,45,56,51,46,49,54,57,57,56,49,44,52,48,46,49,52,51,48,56,55,93,44,91,45,56,50,46,55,54,49,56,50,55,44,52,48,46,49,50,53,56,53,53,93,44,91,45,56,50,46,55,53,48,55,52,55,44,52,48,46,50,55,54,57,57,54,93,44,91,45,56,50,46,55,52,52,57,51,49,44,52,48,46,51,52,57,54,48,51,93,44,91,45,56,50,46,57,50,57,53,56,56,44,52,48,46,51,53,56,49,50,51,93,44,91,45,56,51,46,48,50,48,55,57,56,44,52,48,46,52,51,51,55,57,53,93,44,91,45,56,51,46,50,52,56,53,57,53,44,52,48,46,52,52,51,57,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,70,111,114,115,121,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,49,53,55,51,44,34,98,101,100,115,34,58,50,49,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,44,91,45,56,48,46,52,53,49,54,57,54,44,51,54,46,50,54,49,53,48,50,93,44,91,45,56,48,46,52,53,50,51,50,50,44,51,54,46,50,52,49,52,49,57,93,44,91,45,56,48,46,52,51,57,49,48,52,44,51,54,46,49,51,57,57,52,57,93,44,91,45,56,48,46,52,57,54,50,56,51,44,51,54,46,48,52,54,53,52,53,93,44,91,45,56,48,46,51,57,52,51,48,55,44,51,53,46,57,55,50,55,54,50,93,44,91,45,56,48,46,50,49,51,55,51,44,51,54,46,48,50,54,56,48,56,93,44,91,45,56,48,46,48,52,51,50,51,56,44,51,54,46,48,49,48,55,53,56,93,44,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,53,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,49,48,34,44,34,78,65,77,69,34,58,34,67,97,114,115,111,110,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,52,54,55,44,34,98,101,100,115,34,58,50,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,48,52,50,57,55,44,51,57,46,49,54,53,54,48,51,93,44,91,45,49,50,48,46,48,48,51,52,50,57,44,51,57,46,49,49,50,54,56,55,93,44,91,45,49,49,57,46,55,54,49,50,49,51,44,51,57,46,49,49,52,48,48,57,93,44,91,45,49,49,57,46,53,53,49,48,50,44,51,57,46,48,56,53,55,57,49,93,44,91,45,49,49,57,46,53,54,51,54,56,44,51,57,46,49,57,53,52,49,53,93,44,91,45,49,49,57,46,55,49,50,54,52,53,44,51,57,46,50,53,48,56,55,49,93,44,91,45,49,49,57,46,56,56,48,55,56,55,44,51,57,46,49,54,53,53,48,57,93,44,91,45,49,50,48,46,48,48,52,50,57,55,44,51,57,46,49,54,53,54,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,48,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,56,48,51,52,44,52,49,46,56,54,50,57,57,57,93,44,91,45,57,52,46,50,56,48,48,53,55,44,52,49,46,54,48,49,51,49,50,93,44,91,45,57,52,46,50,52,49,53,57,51,44,52,49,46,53,48,51,54,55,57,93,44,91,45,57,51,46,55,57,48,54,49,50,44,52,49,46,53,49,49,57,49,54,93,44,91,45,57,51,46,56,49,52,50,56,50,44,52,49,46,54,48,48,52,53,54,93,44,91,45,57,51,46,56,49,53,55,50,49,44,52,49,46,56,54,51,52,49,57,93,44,91,45,57,52,46,49,54,52,49,51,56,44,52,49,46,56,54,51,50,52,52,93,44,91,45,57,52,46,50,56,48,51,52,44,52,49,46,56,54,50,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,67,97,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,44,91,45,49,48,49,46,48,56,54,50,56,49,44,51,53,46,49,56,50,49,52,93,44,91,45,49,48,49,46,48,56,53,57,51,53,44,51,53,46,54,49,57,49,48,50,93,44,91,45,49,48,49,46,48,56,54,48,54,56,44,51,53,46,54,50,53,50,54,55,93,44,91,45,49,48,49,46,54,50,50,56,51,49,44,51,53,46,54,50,52,48,53,55,93,44,91,45,49,48,49,46,54,50,50,56,44,51,53,46,54,50,48,49,57,54,93,44,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,49,34,44,34,78,65,77,69,34,58,34,83,117,109,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,51,53,50,44,34,98,101,100,115,34,58,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,56,49,54,53,55,44,51,50,46,50,50,57,55,48,51,93,44,91,45,56,52,46,49,56,51,53,54,57,44,51,50,46,49,53,56,52,57,51,93,44,91,45,56,52,46,52,51,48,50,49,56,44,51,50,46,49,54,54,50,53,55,93,44,91,45,56,52,46,52,51,49,50,49,52,44,51,50,46,49,51,52,48,53,56,93,44,91,45,56,52,46,52,52,51,56,48,55,44,51,49,46,57,54,55,52,53,54,93,44,91,45,56,52,46,51,51,56,50,52,53,44,51,49,46,56,55,51,53,57,49,93,44,91,45,56,52,46,51,51,56,49,52,51,44,51,49,46,57,49,54,49,57,93,44,91,45,56,51,46,57,50,50,52,57,52,44,51,49,46,57,48,57,54,53,51,93,44,91,45,56,51,46,57,54,49,50,55,56,44,51,50,46,48,51,48,53,57,53,93,44,91,45,56,52,46,48,50,55,54,44,51,50,46,49,55,49,49,54,53,93,44,91,45,56,52,46,49,56,49,54,53,55,44,51,50,46,50,50,57,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,51,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,52,57,55,50,57,44,51,55,46,51,49,55,53,57,52,93,44,91,45,57,48,46,55,51,53,52,53,51,44,51,55,46,50,55,49,48,52,93,44,91,45,57,48,46,55,55,57,53,53,51,44,51,55,46,48,53,48,51,50,52,93,44,91,45,57,48,46,54,55,56,53,54,50,44,51,54,46,57,50,54,52,57,93,44,91,45,57,48,46,50,53,56,53,54,51,44,51,54,46,57,50,50,48,52,51,93,44,91,45,57,48,46,49,49,49,50,52,55,44,51,55,46,48,52,49,50,48,53,93,44,91,45,57,48,46,50,50,51,50,51,44,51,55,46,48,56,54,53,51,52,93,44,91,45,57,48,46,50,49,55,54,53,55,44,51,55,46,51,49,52,57,54,55,93,44,91,45,57,48,46,53,52,57,55,50,57,44,51,55,46,51,49,55,53,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,57,57,53,44,34,98,101,100,115,34,58,55,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,56,55,50,48,51,44,51,52,46,56,49,56,56,49,49,93,44,91,45,56,50,46,55,56,55,55,53,49,44,51,52,46,54,55,50,53,57,52,93,44,91,45,56,50,46,56,52,48,49,53,53,44,51,52,46,54,50,51,49,50,93,44,91,45,56,50,46,56,52,52,56,49,55,44,51,52,46,54,49,56,55,49,57,93,44,91,45,56,50,46,56,53,53,49,48,51,44,51,52,46,54,48,57,48,48,55,93,44,91,45,56,50,46,57,57,50,50,51,50,44,51,52,46,52,55,57,50,53,56,93,44,91,45,56,50,46,56,54,52,52,44,51,52,46,52,53,57,55,56,53,93,44,91,45,56,50,46,55,55,51,52,49,44,51,52,46,50,56,56,56,54,52,93,44,91,45,56,50,46,55,52,50,49,48,51,44,51,52,46,50,49,49,57,48,51,93,44,91,45,56,50,46,51,49,51,57,57,54,44,51,52,46,52,56,52,48,48,50,93,44,91,45,56,50,46,52,54,54,53,48,51,44,51,52,46,54,54,53,49,56,52,93,44,91,45,56,50,46,52,56,55,50,48,51,44,51,52,46,56,49,56,56,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,97,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,55,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,55,53,56,53,50,44,52,50,46,52,51,51,50,49,56,93,44,91,45,49,48,54,46,54,53,52,55,56,49,44,52,50,46,52,51,49,48,57,52,93,44,91,45,49,48,55,46,53,50,50,57,50,51,44,52,50,46,52,51,52,51,53,54,93,44,91,45,49,48,55,46,53,50,50,55,50,50,44,52,50,46,50,54,49,55,53,54,93,44,91,45,49,48,55,46,53,48,51,56,50,49,44,52,50,46,48,56,55,57,53,55,93,44,91,45,49,48,55,46,53,48,57,55,50,44,52,49,46,54,53,55,52,53,50,93,44,91,45,49,48,55,46,57,50,57,55,51,54,44,52,49,46,54,53,57,53,57,54,93,44,91,45,49,48,55,46,57,49,56,52,50,49,44,52,49,46,48,48,50,48,51,54,93,44,91,45,49,48,55,46,51,49,55,55,57,52,44,52,49,46,48,48,50,57,50,93,44,91,45,49,48,54,46,56,53,55,55,55,51,44,52,49,46,48,48,50,54,54,51,93,44,91,45,49,48,54,46,51,50,49,49,54,53,44,52,48,46,57,57,57,49,50,51,93,44,91,45,49,48,54,46,51,50,50,56,56,53,44,52,49,46,51,57,53,49,52,49,93,44,91,45,49,48,54,46,48,54,56,52,48,54,44,52,49,46,51,57,53,48,50,56,93,44,91,45,49,48,54,46,48,55,51,52,48,51,44,52,50,46,52,51,51,50,51,54,93,44,91,45,49,48,54,46,48,55,53,56,53,50,44,52,50,46,52,51,51,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,83,105,108,118,101,114,32,66,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,56,49,52,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,53,55,55,49,48,54,44,52,54,46,49,55,56,57,56,49,93,44,91,45,49,49,50,46,55,55,55,49,50,44,52,54,46,49,51,53,56,50,54,93,44,91,45,49,49,50,46,57,50,52,53,53,50,44,52,53,46,57,51,54,52,52,51,93,44,91,45,49,49,51,46,48,56,53,53,49,55,44,52,53,46,56,54,48,54,52,56,93,44,91,45,49,49,51,46,48,48,48,49,53,53,44,52,53,46,56,48,55,55,52,55,93,44,91,45,49,49,50,46,55,53,57,51,51,57,44,52,53,46,55,52,56,50,48,57,93,44,91,45,49,49,50,46,54,56,55,48,53,52,44,52,53,46,54,50,52,56,53,52,93,44,91,45,49,49,50,46,53,49,53,52,53,51,44,52,53,46,55,52,54,55,48,50,93,44,91,45,49,49,50,46,49,57,48,50,54,57,44,52,53,46,55,52,56,53,48,51,93,44,91,45,49,49,50,46,52,48,49,52,52,49,44,52,53,46,56,51,49,56,53,49,93,44,91,45,49,49,50,46,52,54,54,51,50,57,44,52,54,46,48,57,50,57,55,57,93,44,91,45,49,49,50,46,53,55,55,49,48,54,44,52,54,46,49,55,56,57,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,83,116,101,112,104,101,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,52,51,51,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,50,54,52,54,54,44,52,50,46,53,48,53,55,55,50,93,44,91,45,56,57,46,57,49,57,55,55,50,44,52,50,46,49,57,54,56,56,49,93,44,91,45,56,57,46,54,56,56,52,56,54,44,52,50,46,49,57,57,49,49,50,93,44,91,45,56,57,46,51,57,54,49,57,50,44,52,50,46,50,48,49,57,49,54,93,44,91,45,56,57,46,52,48,49,52,50,51,44,52,50,46,53,48,48,53,53,52,93,44,91,45,56,57,46,56,51,55,53,56,55,44,52,50,46,53,48,53,55,49,93,44,91,45,56,57,46,57,50,54,52,54,54,44,52,50,46,53,48,53,55,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,76,97,112,101,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,50,48,50,44,34,98,101,100,115,34,58,49,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,54,48,55,51,51,44,52,51,46,50,50,51,49,51,49,93,44,91,45,56,51,46,52,53,51,51,54,52,44,52,50,46,56,56,48,52,51,50,93,44,91,45,56,51,46,49,48,50,56,57,49,44,52,50,46,56,56,56,54,52,55,93,44,91,45,56,50,46,57,56,51,54,52,55,44,52,50,46,56,57,51,55,52,49,93,44,91,45,56,50,46,57,57,54,50,53,55,44,52,51,46,49,53,52,48,57,57,93,44,91,45,56,51,46,48,48,48,52,51,44,52,51,46,50,56,52,57,49,51,93,44,91,45,56,51,46,49,50,48,51,57,54,44,52,51,46,51,50,55,48,52,57,93,44,91,45,56,51,46,51,53,52,52,49,56,44,52,51,46,51,50,50,50,53,55,93,44,91,45,56,51,46,52,54,48,55,51,51,44,52,51,46,50,50,51,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,105,98,111,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,53,51,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,56,56,55,48,55,44,51,51,46,48,49,55,52,51,51,93,44,91,45,57,51,46,50,51,56,54,48,55,44,51,51,46,48,49,55,57,57,50,93,44,91,45,57,51,46,50,51,55,51,56,49,44,51,50,46,55,49,54,50,53,93,44,91,45,57,51,46,49,55,56,55,54,55,44,51,50,46,53,56,52,57,49,54,93,44,91,45,57,50,46,56,56,48,56,48,53,44,51,50,46,53,56,53,50,55,55,93,44,91,45,57,50,46,56,50,56,53,51,53,44,51,50,46,55,53,56,56,49,52,93,44,91,45,57,50,46,55,50,53,52,51,57,44,51,50,46,55,53,57,53,52,93,44,91,45,57,50,46,55,50,52,55,52,44,51,51,46,48,49,52,51,57,93,44,91,45,57,50,46,57,56,56,55,48,55,44,51,51,46,48,49,55,52,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,89,97,108,111,98,117,115,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,50,49,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,50,49,48,53,44,51,52,46,49,57,50,53,52,53,93,44,91,45,56,57,46,57,51,49,52,56,53,44,51,52,46,49,54,52,51,48,51,93,44,91,45,56,57,46,57,50,54,48,57,57,44,51,51,46,56,57,55,57,53,55,93,44,91,45,56,57,46,55,54,57,48,53,44,51,51,46,56,54,55,51,51,52,93,44,91,45,56,57,46,53,48,55,51,53,51,44,51,51,46,56,54,55,52,54,57,93,44,91,45,56,57,46,53,48,57,55,52,56,44,51,52,46,49,54,50,48,56,50,93,44,91,45,56,57,46,55,50,49,48,53,44,51,52,46,49,57,50,53,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,97,114,105,99,97,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,48,53,49,52,54,49,44,49,56,46,49,55,52,48,53,51,93,44,91,45,54,54,46,57,55,55,56,53,53,44,49,56,46,49,52,51,55,57,57,93,44,91,45,54,54,46,57,50,54,53,49,55,44,49,56,46,49,53,49,50,54,55,93,44,91,45,54,54,46,56,51,54,55,54,44,49,56,46,49,55,48,53,53,51,93,44,91,45,54,54,46,56,57,55,57,54,52,44,49,56,46,49,56,55,55,52,52,93,44,91,45,54,55,46,48,49,57,56,51,54,44,49,56,46,49,57,53,52,55,49,93,44,91,45,54,55,46,48,53,49,52,54,49,44,49,56,46,49,55,52,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,75,97,108,107,97,115,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,52,54,51,44,34,98,101,100,115,34,58,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,51,50,56,51,54,44,52,52,46,56,49,50,51,55,50,93,44,91,45,56,53,46,51,51,52,44,52,52,46,53,49,50,51,48,51,93,44,91,45,56,52,46,56,53,48,57,50,57,44,52,52,46,53,49,49,48,54,57,93,44,91,45,56,52,46,56,52,55,51,48,57,44,52,52,46,56,53,56,48,51,55,93,44,91,45,56,53,46,50,57,49,55,49,54,44,52,52,46,56,53,57,54,48,56,93,44,91,45,56,53,46,51,51,50,56,51,54,44,52,52,46,56,49,50,51,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,103,117,97,100,105,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,54,54,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,50,48,55,57,51,55,44,49,56,46,52,52,50,50,56,93,44,91,45,54,55,46,49,51,50,50,49,44,49,56,46,51,56,57,51,57,49,93,44,91,45,54,55,46,48,53,54,53,48,55,44,49,56,46,52,54,48,57,53,52,93,44,91,45,54,55,46,49,48,52,57,54,53,44,49,56,46,53,54,54,53,54,93,44,91,45,54,55,46,50,48,53,55,52,52,44,49,56,46,53,49,55,49,50,56,93,44,91,45,54,55,46,50,48,55,57,51,55,44,49,56,46,52,52,50,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,69,118,97,110,103,101,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,54,51,54,44,34,98,101,100,115,34,58,50,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,57,55,55,52,49,44,51,48,46,56,57,54,49,48,49,93,44,91,45,57,50,46,53,57,55,51,53,51,44,51,48,46,53,56,49,54,50,51,93,44,91,45,57,50,46,54,51,48,51,52,55,44,51,48,46,52,56,55,56,55,51,93,44,91,45,57,50,46,54,51,49,57,56,55,44,51,48,46,52,56,49,49,52,55,93,44,91,45,57,50,46,52,57,51,50,53,57,44,51,48,46,52,56,48,52,57,57,93,44,91,45,57,50,46,52,50,48,55,56,44,51,48,46,53,51,56,56,50,93,44,91,45,57,50,46,50,49,49,50,52,51,44,51,48,46,53,54,56,49,50,53,93,44,91,45,57,50,46,49,55,50,52,49,53,44,51,48,46,55,54,55,57,51,53,93,44,91,45,57,50,46,50,49,50,55,49,49,44,51,48,46,56,52,56,54,48,55,93,44,91,45,57,50,46,50,56,48,55,51,56,44,51,48,46,57,54,53,48,55,49,93,44,91,45,57,50,46,51,56,48,56,52,51,44,51,49,46,48,48,48,57,50,57,93,44,91,45,57,50,46,53,50,52,54,52,54,44,51,48,46,56,57,51,51,50,56,93,44,91,45,57,50,46,53,57,55,55,52,49,44,51,48,46,56,57,54,49,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,97,114,100,101,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,54,50,44,34,98,101,100,115,34,58,50,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,56,51,57,52,52,44,51,53,46,51,57,55,49,50,54,93,44,91,45,56,57,46,49,57,56,50,56,56,44,51,52,46,57,57,52,52,56,52,93,44,91,45,56,57,46,48,49,55,49,50,55,44,51,52,46,57,57,52,57,55,49,93,44,91,45,56,56,46,56,50,51,48,53,49,44,51,52,46,57,57,53,50,50,49,93,44,91,45,56,56,46,55,56,54,54,49,50,44,51,52,46,57,57,53,50,53,50,93,44,91,45,56,56,46,55,56,49,55,54,56,44,51,53,46,50,52,55,53,56,55,93,44,91,45,56,56,46,56,52,49,54,48,55,44,51,53,46,52,50,55,56,50,54,93,44,91,45,56,57,46,48,55,56,56,55,54,44,51,53,46,52,51,49,52,50,56,93,44,91,45,56,57,46,49,56,51,57,52,52,44,51,53,46,51,57,55,49,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,67,111,99,104,105,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,50,55,57,44,34,98,101,100,115,34,58,49,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,52,53,49,48,48,50,44,51,50,46,52,50,55,53,52,54,93,44,91,45,49,49,48,46,52,53,50,51,44,51,49,46,55,51,49,50,49,57,93,44,91,45,49,49,48,46,52,53,57,55,53,49,44,51,49,46,51,51,50,57,49,52,93,44,91,45,49,48,57,46,48,53,48,48,51,51,44,51,49,46,51,51,50,51,52,56,93,44,91,45,49,48,57,46,48,52,55,57,49,56,44,51,50,46,52,50,54,51,55,54,93,44,91,45,49,48,57,46,49,49,52,49,56,44,51,50,46,52,50,54,51,53,51,93,44,91,45,49,49,48,46,52,53,49,48,48,50,44,51,50,46,52,50,55,53,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,72,105,100,97,108,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,55,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,55,57,49,56,44,51,50,46,52,50,54,51,55,54,93,44,91,45,49,48,57,46,48,53,48,48,51,51,44,51,49,46,51,51,50,51,52,56,93,44,91,45,49,48,56,46,50,48,56,52,55,44,51,49,46,51,51,51,51,55,51,93,44,91,45,49,48,56,46,50,48,56,52,56,52,44,51,49,46,55,56,51,54,57,56,93,44,91,45,49,48,56,46,50,49,55,49,52,51,44,51,49,46,56,54,52,49,51,57,93,44,91,45,49,48,56,46,53,50,52,53,51,56,44,51,49,46,56,54,51,54,49,52,93,44,91,45,49,48,56,46,53,51,55,54,55,54,44,51,50,46,48,55,57,56,51,50,93,44,91,45,49,48,56,46,53,51,55,48,49,49,44,51,50,46,53,49,54,54,49,56,93,44,91,45,49,48,56,46,54,52,54,55,55,44,51,50,46,53,49,54,53,50,49,93,44,91,45,49,48,56,46,54,52,54,53,50,51,44,51,50,46,54,48,51,55,51,93,44,91,45,49,48,56,46,56,53,50,57,49,57,44,51,50,46,54,48,51,51,55,52,93,44,91,45,49,48,56,46,56,53,52,53,56,49,44,51,50,46,55,55,55,50,55,54,93,44,91,45,49,48,57,46,48,52,55,54,52,51,44,51,50,46,55,55,55,56,48,50,93,44,91,45,49,48,57,46,48,52,55,57,49,56,44,51,50,46,52,50,54,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,68,105,118,105,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,54,57,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,56,54,56,57,44,52,56,46,57,57,57,53,57,51,93,44,91,45,49,48,52,46,48,52,55,57,50,52,44,52,56,46,54,51,51,57,49,49,93,44,91,45,49,48,50,46,56,56,53,55,55,53,44,52,56,46,54,51,51,50,57,56,93,44,91,45,49,48,50,46,57,51,57,57,51,50,44,52,56,46,55,50,48,52,54,57,93,44,91,45,49,48,50,46,57,51,56,57,53,55,44,52,56,46,57,57,57,51,51,93,44,91,45,49,48,52,46,48,52,56,54,56,57,44,52,56,46,57,57,57,53,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,83,97,110,32,66,101,114,110,97,114,100,105,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,53,52,49,51,44,34,98,101,100,115,34,58,54,50,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,54,54,55,50,57,50,44,51,52,46,56,50,50,53,50,54,93,44,91,45,49,49,55,46,54,52,54,51,55,52,44,51,52,46,50,56,57,49,55,93,44,91,45,49,49,55,46,54,55,56,53,48,49,44,51,52,46,49,54,49,57,57,51,93,44,91,45,49,49,55,46,55,56,51,50,56,55,44,51,51,46,57,52,54,52,49,49,93,44,91,45,49,49,55,46,54,55,51,49,51,52,44,51,51,46,56,55,49,48,48,53,93,44,91,45,49,49,55,46,53,53,56,51,49,50,44,51,52,46,48,51,51,52,53,49,93,44,91,45,49,49,55,46,50,50,53,51,55,50,44,51,52,46,48,48,52,51,49,52,93,44,91,45,49,49,54,46,57,50,57,53,53,56,44,51,52,46,48,51,52,49,49,51,93,44,91,45,49,49,54,46,51,48,48,54,51,49,44,51,52,46,48,51,50,53,52,52,93,44,91,45,49,49,53,46,51,49,54,50,49,50,44,51,52,46,48,51,52,49,49,93,44,91,45,49,49,53,46,51,49,54,48,54,53,44,51,52,46,48,55,55,56,52,51,93,44,91,45,49,49,52,46,52,51,53,52,50,57,44,51,52,46,48,55,57,55,50,55,93,44,91,45,49,49,52,46,50,53,52,49,52,49,44,51,52,46,49,55,51,56,51,93,44,91,45,49,49,52,46,49,51,56,50,56,50,44,51,52,46,51,48,51,50,51,93,44,91,45,49,49,52,46,51,51,57,54,50,55,44,51,52,46,52,53,49,52,51,53,93,44,91,45,49,49,52,46,52,51,53,54,55,49,44,51,52,46,53,57,51,56,52,49,93,44,91,45,49,49,52,46,52,55,49,54,50,44,51,52,46,55,49,50,57,54,54,93,44,91,45,49,49,52,46,54,50,56,50,55,54,44,51,52,46,56,54,51,53,57,54,93,44,91,45,49,49,52,46,54,51,51,52,56,55,44,51,53,46,48,48,49,56,53,55,93,44,91,45,49,49,53,46,54,52,56,51,53,55,44,51,53,46,56,48,57,50,49,49,93,44,91,45,49,49,53,46,55,51,53,56,57,49,44,51,53,46,55,57,51,54,50,93,44,91,45,49,49,54,46,56,55,48,54,51,50,44,51,53,46,55,57,53,51,55,54,93,44,91,45,49,49,55,46,54,51,50,57,57,54,44,51,53,46,55,57,55,50,53,49,93,44,91,45,49,49,55,46,54,51,50,48,49,49,44,51,52,46,56,50,50,50,55,93,44,91,45,49,49,55,46,54,54,55,50,57,50,44,51,52,46,56,50,50,53,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,101,122,117,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,57,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,44,91,45,49,48,56,46,57,49,55,48,56,49,44,51,55,46,54,51,49,57,48,50,93,44,91,45,49,48,57,46,48,52,51,51,54,54,44,51,55,46,52,56,52,56,49,56,93,44,91,45,49,48,57,46,48,52,53,49,55,50,44,51,54,46,57,57,56,57,55,55,93,44,91,45,49,48,56,46,51,55,57,51,48,51,44,51,54,46,57,57,57,54,48,56,93,44,91,45,49,48,56,46,50,57,48,52,53,57,44,51,55,46,49,52,53,57,55,53,93,44,91,45,49,48,56,46,50,57,49,54,55,54,44,51,55,46,50,50,50,48,48,51,93,44,91,45,49,48,56,46,50,48,52,56,51,54,44,51,55,46,51,52,52,48,56,93,44,91,45,49,48,56,46,48,51,51,49,52,54,44,51,55,46,52,54,52,57,52,93,44,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,51,49,51,55,57,44,51,50,46,50,50,55,54,54,54,93,44,91,45,56,56,46,57,49,51,56,52,55,44,51,50,46,50,50,52,49,56,54,93,44,91,45,56,56,46,57,49,48,52,53,57,44,51,49,46,56,50,54,54,52,57,93,44,91,45,56,56,46,54,50,50,51,57,52,44,51,49,46,56,53,55,49,57,51,93,44,91,45,56,56,46,52,55,51,50,50,55,44,51,49,46,56,57,51,56,53,54,93,44,91,45,56,56,46,52,51,49,51,55,57,44,51,50,46,50,50,55,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,50,48,55,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,50,56,52,48,55,44,52,49,46,52,57,48,57,50,49,93,44,91,45,57,51,46,51,50,55,56,56,54,44,52,49,46,49,54,48,54,53,57,93,44,91,45,57,51,46,48,57,57,50,49,55,44,52,49,46,49,54,48,56,54,55,93,44,91,45,57,50,46,56,54,57,55,55,49,44,52,49,46,49,54,49,48,54,54,93,44,91,45,57,50,46,56,55,49,52,50,49,44,52,49,46,53,48,56,53,50,50,93,44,91,45,57,51,46,51,50,56,54,49,52,44,52,49,46,53,48,55,56,50,52,93,44,91,45,57,51,46,51,50,56,52,48,55,44,52,49,46,52,57,48,57,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,57,57,50,44,34,98,101,100,115,34,58,50,54,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,55,48,55,50,44,52,49,46,51,57,51,50,51,57,93,44,91,45,57,54,46,51,50,55,51,57,57,44,52,49,46,49,56,57,57,57,57,93,44,91,45,57,53,46,57,50,51,53,52,56,44,52,49,46,49,57,48,56,53,93,44,91,45,57,53,46,57,51,55,55,57,49,44,52,49,46,51,57,48,55,53,50,93,44,91,45,57,54,46,51,50,57,48,49,50,44,52,49,46,51,57,51,49,51,54,93,44,91,45,57,54,46,52,55,48,55,50,44,52,49,46,51,57,51,50,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,48,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,48,48,34,44,34,78,65,77,69,34,58,34,70,97,105,114,102,97,120,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,51,52,56,53,50,44,51,56,46,56,53,51,55,51,55,93,44,91,45,55,55,46,51,49,54,50,50,52,44,51,56,46,56,51,54,52,48,56,93,44,91,45,55,55,46,50,55,48,53,50,44,51,56,46,56,52,48,57,48,50,93,44,91,45,55,55,46,50,55,48,53,57,55,44,51,56,46,56,54,54,48,55,53,93,44,91,45,55,55,46,51,48,51,49,51,57,44,51,56,46,56,54,57,50,48,56,93,44,91,45,55,55,46,51,51,52,56,53,50,44,51,56,46,56,53,51,55,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,97,114,109,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,57,55,53,48,49,44,51,52,46,53,54,48,53,55,52,93,44,91,45,57,57,46,56,52,52,53,56,53,44,51,52,46,53,48,54,57,49,53,93,44,91,45,57,57,46,54,54,54,53,49,50,44,51,52,46,53,48,55,49,50,49,93,44,91,45,57,57,46,54,54,54,56,52,57,44,51,52,46,55,50,52,53,53,53,93,44,91,45,57,57,46,55,49,57,55,57,55,44,51,52,46,55,54,56,52,53,49,93,44,91,45,57,57,46,55,51,49,48,57,50,44,51,52,46,57,52,52,48,53,56,93,44,91,45,57,57,46,56,56,56,50,50,50,44,51,52,46,57,52,51,56,57,55,93,44,91,45,57,57,46,56,56,56,52,52,52,44,51,53,46,48,50,57,56,56,57,93,44,91,45,49,48,48,46,48,48,48,51,56,52,44,51,53,46,48,50,57,57,51,93,44,91,45,49,48,48,46,48,48,48,51,56,49,44,51,52,46,55,52,54,51,53,56,93,44,91,45,57,57,46,57,57,55,53,48,49,44,51,52,46,53,54,48,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,101,100,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,51,56,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,54,53,54,55,53,44,51,55,46,57,48,48,57,56,55,93,44,91,45,57,52,46,48,55,51,53,50,52,44,51,55,46,54,51,57,55,50,50,93,44,91,45,57,52,46,48,55,53,51,56,53,44,51,55,46,53,56,49,53,55,93,44,91,45,57,51,46,54,49,54,48,51,51,44,51,55,46,53,55,50,54,56,57,93,44,91,45,57,51,46,54,50,56,52,48,52,44,51,55,46,56,50,57,52,51,53,93,44,91,45,57,51,46,56,49,49,52,48,50,44,51,55,46,56,51,52,53,55,49,93,44,91,45,57,51,46,56,48,56,54,52,56,44,51,55,46,56,57,50,55,55,53,93,44,91,45,57,52,46,48,54,53,54,55,53,44,51,55,46,57,48,48,57,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,54,48,50,44,34,98,101,100,115,34,58,53,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,54,48,48,50,56,44,51,52,46,48,52,48,53,55,50,93,44,91,45,56,51,46,53,51,55,51,56,53,44,51,51,46,57,54,53,57,49,50,93,44,91,45,56,51,46,50,55,53,57,51,51,44,51,51,46,56,52,55,57,55,55,93,44,91,45,56,51,46,50,53,56,52,49,51,44,51,51,46,57,57,57,48,57,56,93,44,91,45,56,51,46,51,54,48,48,50,56,44,51,52,46,48,52,48,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,86,97,108,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,52,52,51,56,54,44,52,53,46,49,48,55,54,53,49,93,44,91,45,49,49,54,46,48,57,48,49,52,51,44,52,53,46,48,54,52,48,49,51,93,44,91,45,49,49,54,46,49,57,55,48,49,49,44,52,52,46,56,54,52,50,49,54,93,44,91,45,49,49,54,46,49,53,55,54,48,50,44,52,52,46,55,48,51,55,52,51,93,44,91,45,49,49,54,46,49,53,55,48,50,50,44,52,52,46,52,57,56,57,50,56,93,44,91,45,49,49,54,46,50,49,50,57,49,44,52,52,46,51,50,52,51,55,51,93,44,91,45,49,49,54,46,50,49,51,56,55,49,44,52,52,46,49,53,49,51,56,55,93,44,91,45,49,49,54,46,49,48,51,48,55,50,44,52,52,46,50,51,54,52,48,57,93,44,91,45,49,49,53,46,52,53,55,51,48,53,44,52,52,46,50,52,50,57,53,51,93,44,91,45,49,49,53,46,50,57,52,54,49,52,44,52,52,46,51,51,57,52,52,53,93,44,91,45,49,49,53,46,50,50,56,50,50,50,44,52,52,46,52,50,51,53,50,49,93,44,91,45,49,49,53,46,51,48,52,57,57,52,44,52,52,46,53,55,57,56,53,55,93,44,91,45,49,49,53,46,49,54,53,54,48,53,44,52,52,46,54,53,48,51,48,54,93,44,91,45,49,49,53,46,48,57,49,57,50,50,44,52,52,46,55,54,54,55,50,54,93,44,91,45,49,49,52,46,57,53,54,49,49,54,44,52,52,46,55,50,48,57,56,50,93,44,91,45,49,49,52,46,56,49,50,52,48,55,44,52,52,46,56,48,56,51,52,54,93,44,91,45,49,49,52,46,55,51,49,57,54,44,52,52,46,56,56,48,57,52,54,93,44,91,45,49,49,52,46,55,51,50,50,55,44,52,53,46,49,53,49,49,53,53,93,44,91,45,49,49,52,46,54,57,52,48,48,49,44,52,53,46,49,57,55,49,56,50,93,44,91,45,49,49,53,46,57,55,53,55,56,55,44,52,53,46,49,57,53,50,56,50,93,44,91,45,49,49,54,46,49,52,52,51,56,54,44,52,53,46,49,48,55,54,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,53,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,51,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,57,54,52,51,52,44,51,51,46,56,51,53,57,54,55,93,44,91,45,57,57,46,57,57,48,57,56,44,51,51,46,51,57,55,52,48,52,93,44,91,45,57,57,46,52,55,50,52,52,52,44,51,51,46,51,57,57,48,50,51,93,44,91,45,57,57,46,52,55,52,52,57,56,44,51,51,46,55,51,51,56,52,57,93,44,91,45,57,57,46,53,52,50,48,48,56,44,51,51,46,55,57,51,50,52,52,93,44,91,45,57,57,46,54,57,52,55,56,49,44,51,51,46,56,50,55,49,53,56,93,44,91,45,57,57,46,57,57,54,52,51,52,44,51,51,46,56,51,53,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,79,117,97,99,104,105,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,48,54,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,56,51,48,53,52,44,51,51,46,56,48,50,49,57,56,93,44,91,45,57,50,46,56,57,51,53,51,52,44,51,51,46,56,48,57,57,52,51,93,44,91,45,57,51,46,49,48,52,50,57,44,51,51,46,55,55,55,48,49,49,93,44,91,45,57,51,46,49,49,54,51,54,49,44,51,51,46,52,53,50,57,48,57,93,44,91,45,57,51,46,49,49,57,48,49,52,44,51,51,46,51,56,48,50,57,51,93,44,91,45,57,50,46,57,55,56,52,54,57,44,51,51,46,51,55,55,50,56,93,44,91,45,57,50,46,53,54,55,49,53,54,44,51,51,46,51,54,55,50,93,44,91,45,57,50,46,55,48,53,48,57,51,44,51,51,46,52,51,49,50,49,53,93,44,91,45,57,50,46,55,53,57,48,51,53,44,51,51,46,53,51,48,57,53,52,93,44,91,45,57,50,46,53,56,54,56,56,54,44,51,51,46,55,51,49,50,51,52,93,44,91,45,57,50,46,53,56,51,48,53,52,44,51,51,46,56,48,50,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,51,52,44,34,98,101,100,115,34,58,49,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,48,51,54,55,50,44,52,48,46,51,49,48,48,57,51,93,44,91,45,56,52,46,56,49,48,56,50,53,44,52,48,46,48,48,53,48,55,55,93,44,91,45,56,52,46,56,49,50,52,49,44,51,57,46,57,49,54,57,49,53,93,44,91,45,56,52,46,52,56,53,51,54,55,44,51,57,46,57,49,56,52,57,49,93,44,91,45,56,52,46,52,50,53,57,48,50,44,51,57,46,57,49,57,54,50,50,93,44,91,45,56,52,46,52,51,50,53,55,53,44,52,48,46,49,57,55,48,51,55,93,44,91,45,56,52,46,52,51,52,54,51,49,44,52,48,46,51,53,52,50,53,57,93,44,91,45,56,52,46,56,48,51,56,57,52,44,52,48,46,51,53,50,55,53,56,93,44,91,45,56,52,46,56,48,51,54,55,50,44,52,48,46,51,49,48,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,75,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,56,56,48,44,34,98,101,100,115,34,58,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,54,50,51,52,54,44,51,54,46,57,57,56,55,48,49,93,44,91,45,57,55,46,52,54,50,52,53,57,44,51,54,46,53,57,51,54,50,55,93,44,91,45,57,55,46,52,54,49,54,48,51,44,51,54,46,53,57,51,54,51,55,93,44,91,45,57,55,46,48,53,55,53,53,54,44,51,54,46,53,57,51,56,55,50,93,44,91,45,57,55,46,48,54,52,49,48,55,44,51,54,46,54,56,52,50,48,55,93,44,91,45,57,54,46,57,51,49,57,52,51,44,51,54,46,54,56,54,48,57,55,93,44,91,45,57,54,46,56,56,57,52,55,53,44,51,54,46,55,53,49,50,51,93,44,91,45,57,54,46,55,53,50,51,55,53,44,51,54,46,55,56,50,48,57,50,93,44,91,45,57,54,46,55,52,57,56,51,56,44,51,54,46,57,57,56,57,56,56,93,44,91,45,57,55,46,49,52,55,55,50,49,44,51,54,46,57,57,57,48,51,51,93,44,91,45,57,55,46,52,54,50,51,52,54,44,51,54,46,57,57,56,55,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,119,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,55,48,49,57,44,52,53,46,52,55,50,52,49,54,93,44,91,45,49,48,49,46,53,48,49,48,53,51,44,52,52,46,57,57,51,55,57,53,93,44,91,45,49,48,49,46,49,51,54,49,54,50,44,52,52,46,57,57,52,48,55,52,93,44,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,48,49,46,48,50,50,54,49,49,44,52,52,46,55,50,52,49,53,51,93,44,91,45,49,48,48,46,56,50,57,55,57,53,44,52,52,46,55,56,51,50,52,56,93,44,91,45,49,48,48,46,55,49,55,54,52,52,44,52,52,46,55,55,48,57,51,93,44,91,45,49,48,48,46,53,52,51,52,56,52,44,52,52,46,55,54,49,48,56,55,93,44,91,45,49,48,48,46,52,48,52,55,53,51,44,52,52,46,56,57,55,54,57,53,93,44,91,45,49,48,48,46,52,50,51,57,49,56,44,52,52,46,57,57,48,48,48,54,93,44,91,45,49,48,48,46,51,50,53,52,53,49,44,52,53,46,48,57,57,51,51,55,93,44,91,45,49,48,48,46,50,54,48,50,50,51,44,52,53,46,50,52,54,56,49,93,44,91,45,49,48,48,46,50,55,52,49,55,54,44,52,53,46,51,56,49,56,52,53,93,44,91,45,49,48,48,46,51,52,49,57,50,52,44,52,53,46,52,55,50,57,48,52,93,44,91,45,49,48,49,46,52,55,48,49,57,44,52,53,46,52,55,50,52,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,84,105,108,108,97,109,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,55,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,48,54,53,52,52,56,44,52,53,46,55,56,51,48,53,52,93,44,91,45,49,50,52,46,48,49,48,56,48,53,44,52,53,46,55,48,56,50,56,53,93,44,91,45,49,50,52,46,48,55,54,57,55,55,44,52,53,46,51,52,49,56,52,54,93,44,91,45,49,50,52,46,48,52,48,50,53,55,44,52,53,46,50,54,56,56,50,56,93,44,91,45,49,50,52,46,48,57,53,56,51,51,44,52,53,46,48,52,51,57,56,54,93,44,91,45,49,50,51,46,55,50,52,54,54,51,44,52,53,46,48,52,52,52,51,50,93,44,91,45,49,50,51,46,55,50,52,51,54,56,44,52,53,46,48,55,54,50,50,54,93,44,91,45,49,50,51,46,55,56,52,53,52,44,52,53,46,50,49,54,50,57,52,93,44,91,45,49,50,51,46,52,54,51,53,49,56,44,52,53,46,50,49,54,51,49,50,93,44,91,45,49,50,51,46,52,54,52,56,56,44,52,53,46,52,51,51,51,51,50,93,44,91,45,49,50,51,46,51,54,49,49,51,49,44,52,53,46,53,55,56,55,55,57,93,44,91,45,49,50,51,46,52,56,52,55,50,54,44,52,53,46,55,48,56,55,54,52,93,44,91,45,49,50,51,46,51,54,49,54,50,50,44,52,53,46,55,55,57,53,55,57,93,44,91,45,49,50,52,46,48,54,53,52,52,56,44,52,53,46,55,56,51,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,67,111,119,101,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,53,49,54,44,34,98,101,100,115,34,58,50,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,49,53,51,53,56,44,51,51,46,52,50,53,53,48,54,93,44,91,45,56,52,46,57,51,57,48,49,53,44,51,51,46,50,50,52,54,57,51,93,44,91,45,56,52,46,56,54,50,51,53,57,44,51,51,46,49,57,49,49,55,51,93,44,91,45,56,52,46,56,53,50,51,54,44,51,51,46,50,50,51,53,57,93,44,91,45,56,52,46,53,48,50,51,53,50,44,51,51,46,50,50,49,48,53,53,93,44,91,45,56,52,46,52,57,55,53,50,55,44,51,51,46,50,53,55,52,50,50,93,44,91,45,56,52,46,53,56,54,48,52,55,44,51,51,46,51,53,55,56,56,53,93,44,91,45,56,52,46,54,48,57,53,52,44,51,51,46,53,48,50,53,49,49,93,44,91,45,56,52,46,56,53,48,55,49,51,44,51,51,46,53,49,49,52,53,55,93,44,91,45,56,53,46,48,49,53,51,53,56,44,51,51,46,52,50,53,53,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,83,105,109,112,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,48,55,51,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,51,48,48,54,54,44,51,50,46,48,52,55,48,55,50,93,44,91,45,57,48,46,50,51,48,51,51,49,44,51,50,46,48,52,57,55,50,56,93,44,91,45,57,48,46,49,51,50,53,53,50,44,51,49,46,56,53,54,57,50,51,93,44,91,45,57,48,46,49,50,50,53,54,53,44,51,49,46,55,53,50,54,56,93,44,91,45,56,57,46,57,55,52,53,56,54,44,51,49,46,55,54,49,54,53,53,93,44,91,45,56,57,46,55,53,53,49,48,51,44,51,49,46,55,55,52,54,53,52,93,44,91,45,56,57,46,54,53,51,48,50,53,44,51,49,46,55,56,48,54,53,51,93,44,91,45,56,57,46,54,53,52,52,50,54,44,51,50,46,48,49,51,54,55,56,93,44,91,45,56,57,46,55,51,48,48,54,54,44,51,50,46,48,52,55,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,83,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,51,55,57,54,55,44,51,48,46,57,48,57,56,55,55,93,44,91,45,56,57,46,51,52,48,56,48,54,44,51,48,46,57,48,57,57,49,50,93,44,91,45,56,57,46,51,52,49,52,52,54,44,51,48,46,54,52,55,55,50,93,44,91,45,56,57,46,50,52,48,48,55,51,44,51,48,46,54,55,55,49,54,93,44,91,45,56,56,46,56,56,52,53,51,51,44,51,48,46,54,55,55,50,57,50,93,44,91,45,56,56,46,56,56,52,53,51,52,44,51,48,46,55,51,53,53,57,49,93,44,91,45,56,56,46,56,56,53,48,51,56,44,51,48,46,57,49,48,55,56,56,93,44,91,45,56,57,46,49,51,55,57,54,55,44,51,48,46,57,48,57,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,111,110,116,114,97,32,67,111,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,51,50,52,55,44,34,98,101,100,115,34,58,49,54,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,51,55,51,55,56,50,44,51,55,46,56,56,51,55,50,53,93,44,91,45,49,50,50,46,50,54,52,48,50,55,44,51,55,46,57,48,51,55,55,53,93,44,91,45,49,50,50,46,49,52,48,53,53,49,44,51,55,46,56,48,52,53,57,52,93,44,91,45,49,50,50,46,48,52,53,52,55,51,44,51,55,46,55,57,56,49,50,54,93,44,91,45,49,50,49,46,57,54,48,55,55,44,51,55,46,55,49,56,54,50,57,93,44,91,45,49,50,49,46,53,53,54,57,57,55,44,51,55,46,56,49,54,52,56,56,93,44,91,45,49,50,49,46,53,56,48,48,50,50,44,51,56,46,48,57,52,52,49,52,93,44,91,45,49,50,49,46,55,51,55,56,50,52,44,51,56,46,48,50,54,54,51,93,44,91,45,49,50,49,46,56,54,50,52,54,50,44,51,56,46,48,54,54,48,51,93,44,91,45,49,50,50,46,49,50,51,57,55,51,44,51,56,46,48,51,53,55,49,55,93,44,91,45,49,50,50,46,51,52,55,52,53,52,44,51,56,46,48,55,51,50,54,93,44,91,45,49,50,50,46,52,51,50,50,56,51,44,51,55,46,57,50,57,56,50,52,93,44,91,45,49,50,50,46,51,55,51,55,56,50,44,51,55,46,56,56,51,55,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,48,49,56,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,51,48,51,50,50,44,51,54,46,49,53,50,48,50,51,93,44,91,45,56,56,46,54,57,50,55,48,57,44,51,54,46,48,54,50,55,52,54,93,44,91,45,56,56,46,55,48,54,56,49,49,44,51,53,46,55,57,49,48,55,53,93,44,91,45,56,56,46,54,48,54,56,54,50,44,51,53,46,55,56,57,51,53,52,93,44,91,45,56,56,46,53,54,57,48,52,55,44,51,53,46,56,50,52,56,50,57,93,44,91,45,56,56,46,49,55,57,49,55,55,44,51,53,46,56,49,54,55,56,53,93,44,91,45,56,56,46,49,55,55,56,53,57,44,51,53,46,56,52,53,56,52,49,93,44,91,45,56,56,46,50,49,55,52,51,54,44,51,53,46,56,52,54,53,56,50,93,44,91,45,56,56,46,50,49,50,53,53,57,44,51,54,46,49,50,48,50,57,93,44,91,45,56,56,46,53,51,48,51,50,50,44,51,54,46,49,53,50,48,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,72,101,110,114,105,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,54,52,50,44,34,98,101,100,115,34,58,49,49,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,51,48,54,55,44,51,55,46,55,48,53,54,55,51,93,44,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,44,91,45,55,55,46,53,57,53,52,54,50,44,51,55,46,53,53,53,55,53,93,44,91,45,55,55,46,52,52,55,53,56,49,44,51,55,46,54,48,50,56,49,93,44,91,45,55,55,46,51,57,49,51,48,54,44,51,55,46,53,51,48,49,50,50,93,44,91,45,55,55,46,52,50,48,56,55,53,44,51,55,46,52,52,55,49,48,49,93,44,91,45,55,55,46,51,52,57,50,51,53,44,51,55,46,51,55,56,52,54,54,93,44,91,45,55,55,46,50,52,57,54,54,53,44,51,55,46,51,56,50,93,44,91,45,55,55,46,49,55,55,51,50,52,44,51,55,46,52,57,48,54,93,44,91,45,55,55,46,50,52,48,57,56,56,44,51,55,46,53,51,56,48,56,56,93,44,91,45,55,55,46,51,56,49,55,53,53,44,51,55,46,53,57,52,53,49,51,93,44,91,45,55,55,46,52,57,51,57,57,44,51,55,46,55,48,49,48,48,56,93,44,91,45,55,55,46,54,51,48,54,55,44,51,55,46,55,48,53,54,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,79,119,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,56,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,51,57,57,56,49,44,51,57,46,52,55,51,51,52,53,93,44,91,45,56,54,46,57,52,50,52,55,51,44,51,57,46,51,52,50,48,52,51,93,44,91,45,56,55,46,48,53,51,54,52,54,44,51,57,46,51,52,50,54,50,49,93,44,91,45,56,55,46,48,53,52,53,55,56,44,51,57,46,49,54,56,48,56,54,93,44,91,45,56,54,46,54,56,51,48,48,50,44,51,57,46,49,54,53,55,52,54,93,44,91,45,56,54,46,54,56,53,54,49,44,51,57,46,51,51,54,48,52,51,93,44,91,45,56,54,46,54,51,48,56,49,56,44,51,57,46,51,52,54,57,52,56,93,44,91,45,56,54,46,54,56,53,55,49,44,51,57,46,52,55,48,48,54,51,93,44,91,45,56,54,46,57,51,57,57,56,49,44,51,57,46,52,55,51,51,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,87,101,115,116,99,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,56,56,49,53,44,34,98,101,100,115,34,58,51,49,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,56,50,53,56,52,44,52,49,46,51,50,49,54,57,51,93,44,91,45,55,51,46,56,56,57,52,56,44,52,49,46,49,52,53,48,57,53,93,44,91,45,55,51,46,56,57,51,57,55,57,44,52,48,46,57,57,55,50,48,53,93,44,91,45,55,51,46,57,49,55,57,48,53,44,52,48,46,57,49,55,53,55,55,93,44,91,45,55,51,46,55,52,56,48,54,44,52,48,46,56,55,49,55,50,49,93,44,91,45,55,51,46,54,49,50,56,56,53,44,52,48,46,57,53,48,57,52,51,93,44,91,45,55,51,46,55,50,55,55,55,53,44,52,49,46,49,48,48,54,57,54,93,44,91,45,55,51,46,52,56,50,54,57,53,44,52,49,46,50,49,50,55,55,50,93,44,91,45,55,51,46,53,52,52,55,50,56,44,52,49,46,51,54,54,51,55,53,93,44,91,45,55,51,46,57,56,50,53,56,52,44,52,49,46,51,50,49,54,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,111,108,108,105,110,103,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,56,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,52,54,55,54,51,44,51,55,46,53,57,55,52,51,52,93,44,91,45,57,48,46,49,52,53,54,57,57,44,51,55,46,51,49,50,48,57,49,93,44,91,45,57,48,46,50,49,55,54,53,55,44,51,55,46,51,49,52,57,54,55,93,44,91,45,57,48,46,50,50,51,50,51,44,51,55,46,48,56,54,53,51,52,93,44,91,45,57,48,46,49,49,49,50,52,55,44,51,55,46,48,52,49,50,48,53,93,44,91,45,56,57,46,57,53,57,49,57,54,44,51,55,46,48,53,52,51,56,93,44,91,45,56,57,46,56,54,54,54,50,55,44,51,55,46,49,50,54,50,50,55,93,44,91,45,56,57,46,56,54,49,49,50,51,44,51,55,46,53,57,57,50,56,54,93,44,91,45,57,48,46,49,52,54,55,54,51,44,51,55,46,53,57,55,52,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,77,99,68,111,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,49,55,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,49,49,50,48,49,44,51,55,46,52,50,52,53,48,57,93,44,91,45,56,49,46,54,53,52,52,51,49,44,51,55,46,53,50,51,51,49,50,93,44,91,45,56,49,46,55,50,57,52,51,51,44,51,55,46,52,57,52,53,56,53,93,44,91,45,56,49,46,56,53,53,57,51,57,44,51,55,46,53,52,56,57,49,93,44,91,45,56,49,46,57,50,55,54,56,49,44,51,55,46,53,49,50,49,49,51,93,44,91,45,56,49,46,57,57,54,53,55,56,44,51,55,46,52,55,54,55,48,53,93,44,91,45,56,49,46,56,53,51,53,53,51,44,51,55,46,50,56,55,55,48,54,93,44,91,45,56,49,46,55,52,48,49,50,52,44,51,55,46,50,51,55,55,53,50,93,44,91,45,56,49,46,53,54,48,54,51,49,44,51,55,46,50,48,54,54,54,51,93,44,91,45,56,49,46,51,54,50,49,53,54,44,51,55,46,51,51,55,54,56,55,93,44,91,45,56,49,46,51,49,49,50,48,49,44,51,55,46,52,50,52,53,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,50,48,57,44,34,98,101,100,115,34,58,52,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,52,52,53,50,49,44,51,57,46,52,50,57,49,50,93,44,91,45,56,48,46,54,48,52,51,48,49,44,51,57,46,50,56,54,48,52,55,93,44,91,45,56,48,46,53,57,54,49,50,54,44,51,57,46,49,54,55,48,54,57,93,44,91,45,56,48,46,51,48,48,50,48,57,44,51,57,46,49,48,51,56,53,55,93,44,91,45,56,48,46,50,50,55,49,55,51,44,51,57,46,49,49,50,55,57,50,93,44,91,45,56,48,46,49,54,54,51,56,55,44,51,57,46,50,52,50,50,56,51,93,44,91,45,56,48,46,49,57,55,50,56,54,44,51,57,46,51,57,51,49,56,54,93,44,91,45,56,48,46,52,57,52,48,56,53,44,51,57,46,52,54,57,53,57,57,93,44,91,45,56,48,46,53,52,52,53,50,49,44,51,57,46,52,50,57,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,114,97,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,56,55,52,44,34,98,101,100,115,34,58,49,52,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,55,57,54,50,55,52,44,51,54,46,53,52,49,55,52,49,93,44,91,45,55,56,46,56,48,50,51,51,53,44,51,54,46,50,51,53,55,57,52,93,44,91,45,55,56,46,56,48,52,54,57,44,51,54,46,48,57,52,53,53,49,93,44,91,45,55,56,46,55,53,49,50,55,51,44,51,54,46,48,55,48,56,51,52,93,44,91,45,55,56,46,53,52,54,52,49,52,44,51,54,46,48,50,49,56,50,54,93,44,91,45,55,56,46,52,57,54,54,49,52,44,51,54,46,49,55,53,49,57,57,93,44,91,45,55,56,46,53,49,49,50,50,52,44,51,54,46,52,53,52,56,48,56,93,44,91,45,55,56,46,52,53,54,57,49,51,44,51,54,46,53,52,50,53,52,49,93,44,91,45,55,56,46,55,51,52,49,50,50,44,51,54,46,53,52,49,57,51,57,93,44,91,45,55,56,46,55,57,54,50,55,52,44,51,54,46,53,52,49,55,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,78,101,119,32,72,97,118,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,57,51,51,57,44,34,98,101,100,115,34,58,49,54,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,49,48,52,55,51,44,52,49,46,52,54,56,56,49,53,93,44,91,45,55,51,46,48,54,55,56,53,49,44,52,49,46,51,48,48,57,57,54,93,44,91,45,55,51,46,49,48,55,52,53,50,44,52,49,46,49,54,56,51,57,55,93,44,91,45,55,50,46,57,57,57,53,52,55,44,52,49,46,48,56,55,49,48,56,93,44,91,45,55,50,46,53,50,55,57,48,49,44,52,49,46,49,55,55,55,55,52,93,44,91,45,55,50,46,53,50,55,57,48,50,44,52,49,46,50,53,48,49,49,53,93,44,91,45,55,50,46,54,53,52,49,57,51,44,52,49,46,52,51,56,50,53,54,93,44,91,45,55,50,46,55,51,57,49,50,44,52,49,46,52,51,56,50,57,52,93,44,91,45,55,50,46,55,53,50,49,56,49,44,52,49,46,53,55,56,56,57,52,93,44,91,45,55,50,46,57,52,54,51,53,44,52,49,46,53,53,54,55,57,55,93,44,91,45,55,50,46,57,56,51,50,53,44,52,49,46,54,51,57,53,57,56,93,44,91,45,55,51,46,49,53,53,52,57,50,44,52,49,46,53,49,52,51,48,52,93,44,91,45,55,51,46,51,49,48,52,55,51,44,52,49,46,52,54,56,56,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,80,105,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,53,55,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,55,55,50,52,44,52,50,46,51,53,49,56,54,49,93,44,91,45,57,55,46,52,56,53,50,57,56,44,52,50,46,52,51,56,53,55,56,93,44,91,45,57,55,46,56,51,52,52,51,49,44,52,50,46,52,51,55,54,56,52,93,44,91,45,57,55,46,56,51,52,53,51,54,44,52,50,46,48,56,57,55,53,93,44,91,45,57,55,46,51,54,56,52,48,52,44,52,50,46,48,57,48,57,50,50,93,44,91,45,57,55,46,51,54,55,55,50,52,44,52,50,46,51,53,49,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,108,101,99,107,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,44,91,45,56,51,46,52,57,55,57,50,51,44,51,50,46,52,53,50,49,57,56,93,44,91,45,56,51,46,52,57,56,48,51,57,44,51,50,46,52,48,49,55,49,53,93,44,91,45,56,51,46,51,52,54,53,50,56,44,51,50,46,50,55,50,52,56,57,93,44,91,45,56,51,46,49,55,51,50,53,50,44,51,50,46,52,53,50,53,51,51,93,44,91,45,56,51,46,49,51,56,57,57,49,44,51,50,46,52,50,51,48,54,57,93,44,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,66,117,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,53,48,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,54,55,53,56,44,51,51,46,50,54,55,51,57,55,93,44,91,45,56,50,46,50,51,51,48,54,50,44,51,51,46,50,50,55,55,52,93,44,91,45,56,50,46,50,57,49,49,56,44,51,51,46,48,54,50,56,50,55,93,44,91,45,56,50,46,50,55,50,51,53,51,44,51,50,46,57,51,55,55,57,54,93,44,91,45,56,50,46,51,49,54,53,49,50,44,51,50,46,56,51,53,55,55,50,93,44,91,45,56,50,46,49,52,52,57,55,55,44,51,50,46,56,49,50,55,52,49,93,44,91,45,56,50,46,48,56,49,51,51,55,44,51,50,46,57,49,54,55,55,54,93,44,91,45,56,49,46,56,53,55,57,56,53,44,51,50,46,57,53,51,56,56,50,93,44,91,45,56,49,46,55,54,55,53,53,51,44,51,50,46,57,48,57,52,49,49,93,44,91,45,56,49,46,53,52,49,56,51,49,44,51,51,46,48,52,53,54,53,52,93,44,91,45,56,49,46,54,49,52,48,51,51,44,51,51,46,48,57,53,50,53,49,93,44,91,45,56,49,46,55,48,52,54,51,52,44,51,51,46,49,49,54,52,53,93,44,91,45,56,49,46,55,53,55,48,51,53,44,51,51,46,49,57,56,49,52,56,93,44,91,45,56,49,46,56,53,50,48,55,54,44,51,51,46,50,52,55,50,56,56,93,44,91,45,56,50,46,48,57,50,53,57,50,44,51,51,46,50,51,48,48,56,52,93,44,91,45,56,50,46,49,55,52,50,52,44,51,51,46,50,57,54,55,55,49,93,44,91,45,56,50,46,50,54,55,53,56,44,51,51,46,50,54,55,51,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,50,55,44,34,98,101,100,115,34,58,49,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,53,51,54,49,55,44,51,55,46,54,48,48,50,51,55,93,44,91,45,56,57,46,52,52,56,53,57,56,44,51,55,46,53,57,56,56,50,49,93,44,91,45,56,57,46,53,50,49,53,54,52,44,51,55,46,53,55,50,49,53,54,93,44,91,45,56,57,46,53,50,49,56,53,53,44,51,55,46,53,54,54,50,49,52,93,44,91,45,56,57,46,52,50,48,57,51,57,44,51,55,46,51,57,51,57,53,50,93,44,91,45,56,57,46,52,56,54,54,56,57,44,51,55,46,51,51,52,53,53,52,93,44,91,45,56,57,46,50,52,56,53,54,54,44,51,55,46,51,51,53,50,57,56,93,44,91,45,56,57,46,48,52,52,55,57,57,44,51,55,46,51,50,57,55,49,55,93,44,91,45,56,57,46,48,52,49,52,48,49,44,51,55,46,53,57,54,53,55,54,93,44,91,45,56,57,46,49,53,51,54,49,55,44,51,55,46,54,48,48,50,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,75,97,110,107,97,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,48,54,49,44,34,98,101,100,115,34,58,53,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,50,54,55,51,49,44,52,49,46,50,57,56,48,53,50,93,44,91,45,56,56,46,48,49,51,57,49,57,44,52,49,46,50,57,50,52,52,55,93,44,91,45,56,56,46,48,49,49,56,49,44,52,49,46,50,48,53,53,48,56,93,44,91,45,56,56,46,50,52,52,49,52,52,44,52,49,46,50,48,49,53,54,54,93,44,91,45,56,56,46,50,53,49,53,48,49,44,52,49,46,49,49,52,50,49,56,93,44,91,45,56,56,46,50,52,55,51,44,52,48,46,57,57,52,53,54,93,44,91,45,56,56,46,49,51,49,57,51,53,44,52,48,46,57,57,55,55,55,55,93,44,91,45,56,55,46,53,50,54,50,48,56,44,52,49,46,48,49,48,51,52,49,93,44,91,45,56,55,46,53,50,54,53,56,55,44,52,49,46,49,54,54,48,57,93,44,91,45,56,55,46,53,50,54,55,51,49,44,52,49,46,50,57,56,48,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,77,99,73,110,116,111,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,53,52,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,51,55,50,56,57,44,52,54,46,50,56,50,56,55,49,93,44,91,45,57,57,46,56,55,56,51,53,52,44,52,54,46,50,56,50,56,50,57,93,44,91,45,57,57,46,56,56,48,48,54,44,52,53,46,57,52,49,52,50,51,93,44,91,45,57,57,46,55,49,56,48,55,49,44,52,53,46,57,52,48,56,56,51,93,44,91,45,57,57,46,48,48,53,55,53,56,44,52,53,46,57,51,57,55,51,49,93,44,91,45,57,57,46,48,48,51,49,49,56,44,52,54,46,50,56,50,56,57,56,93,44,91,45,57,57,46,48,51,55,50,56,57,44,52,54,46,50,56,50,56,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,80,108,97,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,48,54,51,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,48,55,44,52,49,46,55,52,51,50,48,55,93,44,91,45,57,55,46,56,51,48,52,57,51,44,52,49,46,55,52,50,50,51,56,93,44,91,45,57,55,46,56,50,57,56,52,54,44,52,49,46,53,50,54,49,55,52,93,44,91,45,57,55,46,55,48,51,54,50,55,44,52,49,46,53,50,54,55,57,54,93,44,91,45,57,55,46,55,48,51,55,54,53,44,52,49,46,51,57,52,56,55,54,93,44,91,45,57,55,46,53,57,56,50,53,51,44,52,49,46,51,51,51,49,49,57,93,44,91,45,57,55,46,51,54,56,49,56,54,44,52,49,46,51,57,54,52,49,54,93,44,91,45,57,55,46,50,53,51,53,49,57,44,52,49,46,51,56,52,50,49,50,93,44,91,45,57,55,46,50,53,50,52,50,53,44,52,49,46,55,52,51,48,56,53,93,44,91,45,57,55,46,51,54,56,48,55,44,52,49,46,55,52,51,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,51,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,52,54,50,55,49,44,51,54,46,53,52,51,53,53,49,93,44,91,45,55,56,46,51,50,51,57,57,49,44,51,54,46,53,52,51,56,50,50,93,44,91,45,55,56,46,50,55,55,49,54,53,44,51,54,46,51,48,54,49,51,50,93,44,91,45,55,56,46,51,48,54,57,54,53,44,51,54,46,50,54,54,49,57,49,93,44,91,45,55,56,46,48,48,54,53,53,49,44,51,54,46,50,48,50,54,51,51,93,44,91,45,55,55,46,57,49,49,57,54,51,44,51,54,46,51,56,50,52,52,54,93,44,91,45,55,55,46,56,57,57,53,50,52,44,51,54,46,53,48,52,50,53,57,93,44,91,45,55,55,46,56,57,57,55,55,51,44,51,54,46,53,52,52,53,57,54,93,44,91,45,55,56,46,48,52,54,50,55,49,44,51,54,46,53,52,51,53,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,105,98,111,110,105,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,52,53,55,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,50,52,50,55,51,53,44,49,56,46,49,56,48,50,52,56,93,44,91,45,54,54,46,51,49,52,56,52,56,44,49,56,46,49,53,50,48,56,56,93,44,91,45,54,54,46,50,53,55,53,50,55,44,49,56,46,48,55,53,56,56,52,93,44,91,45,54,54,46,50,50,52,52,57,44,49,56,46,48,57,53,51,51,57,93,44,91,45,54,54,46,50,49,54,56,57,57,44,49,56,46,49,52,51,50,50,93,44,91,45,54,54,46,50,52,50,55,51,53,44,49,56,46,49,56,48,50,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,51,55,51,50,51,44,51,50,46,53,51,52,56,53,53,93,44,91,45,56,52,46,54,53,56,57,50,44,51,50,46,50,51,50,56,53,50,93,44,91,45,56,52,46,54,52,57,51,49,57,44,51,50,46,50,51,50,57,53,51,93,44,91,45,56,52,46,53,50,55,49,49,55,44,51,50,46,49,51,52,53,53,54,93,44,91,45,56,52,46,52,51,49,50,49,52,44,51,50,46,49,51,52,48,53,56,93,44,91,45,56,52,46,52,51,48,50,49,56,44,51,50,46,49,54,54,50,53,55,93,44,91,45,56,52,46,51,57,50,51,49,54,44,51,50,46,52,49,52,48,52,54,93,44,91,45,56,52,46,52,52,52,51,53,51,44,51,50,46,53,54,50,48,56,51,93,44,91,45,56,52,46,54,51,55,51,50,51,44,51,50,46,53,51,52,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,54,48,53,52,51,44,52,51,46,48,56,51,49,52,53,93,44,91,45,57,55,46,49,54,48,51,53,51,44,52,50,46,55,57,57,55,48,49,93,44,91,45,57,55,46,48,49,53,56,52,57,44,52,50,46,55,54,49,51,51,56,93,44,91,45,57,54,46,56,48,54,50,49,51,44,52,50,46,55,48,52,49,53,52,93,44,91,45,57,54,46,56,48,53,54,56,50,44,52,51,46,48,56,51,54,55,93,44,91,45,57,54,46,57,50,52,49,52,50,44,52,51,46,48,56,51,55,51,51,93,44,91,45,57,55,46,49,54,48,53,52,51,44,52,51,46,48,56,51,49,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,83,117,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,68,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,53,52,48,44,34,98,101,100,115,34,58,53,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,49,51,56,52,54,49,44,51,57,46,48,48,50,54,57,55,93,44,91,45,55,53,46,51,55,50,49,51,49,44,51,56,46,57,54,49,52,51,54,93,44,91,45,55,53,46,53,53,53,48,49,51,44,51,56,46,56,51,53,54,52,57,93,44,91,45,55,53,46,55,50,50,55,57,55,44,51,56,46,56,50,57,56,53,49,93,44,91,45,55,53,46,55,48,55,52,52,55,44,51,56,46,54,51,53,51,57,54,93,44,91,45,55,53,46,55,48,49,53,54,57,44,51,56,46,53,54,48,55,51,54,93,44,91,45,55,53,46,54,57,51,54,55,44,51,56,46,52,54,48,48,56,93,44,91,45,55,53,46,51,52,49,50,57,49,44,51,56,46,52,53,50,48,51,52,93,44,91,45,55,52,46,57,56,54,50,56,50,44,51,56,46,52,53,49,54,51,50,93,44,91,45,55,53,46,48,49,53,49,50,51,44,51,56,46,55,56,56,54,53,55,93,44,91,45,55,53,46,49,51,56,52,54,49,44,51,57,46,48,48,50,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,56,52,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,56,50,49,57,54,44,51,51,46,53,50,54,50,50,93,44,91,45,56,51,46,56,54,51,48,53,56,44,51,51,46,51,54,56,50,55,56,93,44,91,45,56,51,46,56,50,50,50,54,49,44,51,51,46,49,56,48,50,51,56,93,44,91,45,56,51,46,56,49,54,48,52,56,44,51,51,46,49,51,49,56,49,54,93,44,91,45,56,51,46,53,52,53,56,55,54,44,51,51,46,49,55,49,57,52,52,93,44,91,45,56,51,46,53,51,51,55,51,54,44,51,51,46,52,51,52,52,55,50,93,44,91,45,56,51,46,54,56,50,49,57,54,44,51,51,46,53,50,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,52,53,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,57,50,49,52,57,44,51,57,46,54,49,48,50,54,53,93,44,91,45,57,50,46,55,48,55,51,54,55,44,51,57,46,51,50,49,54,49,52,93,44,91,45,57,50,46,52,51,48,50,50,57,44,51,57,46,50,52,56,55,57,53,93,44,91,45,57,50,46,51,49,52,52,55,49,44,51,57,46,50,52,54,52,53,52,93,44,91,45,57,50,46,51,49,48,48,50,56,44,51,57,46,51,52,55,55,57,53,93,44,91,45,57,50,46,51,48,48,56,55,49,44,51,57,46,54,48,53,51,52,56,93,44,91,45,57,50,46,54,57,50,49,52,57,44,51,57,46,54,49,48,50,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,52,54,56,44,34,98,101,100,115,34,58,49,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,53,50,52,55,54,44,51,55,46,57,49,50,55,51,51,93,44,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,44,91,45,57,54,46,53,50,53,54,57,44,51,55,46,52,55,54,52,48,53,93,44,91,45,57,54,46,53,50,53,51,44,51,55,46,54,48,55,48,49,53,93,44,91,45,57,54,46,53,50,50,55,56,50,44,51,56,46,48,56,54,51,55,93,44,91,45,57,54,46,56,52,48,55,55,50,44,51,56,46,48,56,53,54,50,50,93,44,91,45,57,55,46,49,53,50,57,49,51,44,51,56,46,48,56,55,55,48,52,93,44,91,45,57,55,46,49,53,50,52,55,54,44,51,55,46,57,49,50,55,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,57,34,44,34,78,65,77,69,34,58,34,72,97,121,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,49,53,48,44,34,98,101,100,115,34,58,52,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,57,55,54,44,51,48,46,48,51,55,57,57,52,93,44,91,45,57,56,46,48,51,48,53,50,51,44,50,57,46,56,52,56,53,51,57,93,44,91,45,57,55,46,57,57,57,50,55,49,44,50,57,46,55,53,50,52,52,52,93,44,91,45,57,55,46,56,55,53,50,53,57,44,50,57,46,56,53,56,50,48,56,93,44,91,45,57,55,46,55,49,48,50,49,53,44,51,48,46,48,50,52,52,57,57,93,44,91,45,57,56,46,49,55,50,57,55,55,44,51,48,46,51,53,54,51,49,50,93,44,91,45,57,56,46,50,57,55,54,44,51,48,46,48,51,55,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,53,34,44,34,78,65,77,69,34,58,34,77,101,100,105,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,51,51,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,49,51,56,56,44,50,57,46,48,57,49,51,51,53,93,44,91,45,57,56,46,56,48,52,57,44,50,57,46,48,57,48,52,51,52,93,44,91,45,57,56,46,56,48,52,55,54,51,44,50,57,46,50,53,48,54,57,51,93,44,91,45,57,56,46,56,48,54,53,53,50,44,50,57,46,54,57,48,55,48,57,93,44,91,45,57,56,46,57,50,55,49,54,49,44,50,57,46,53,54,50,50,53,93,44,91,45,57,56,46,57,56,51,55,56,55,44,50,57,46,54,50,51,52,53,93,44,91,45,57,57,46,52,49,49,56,49,55,44,50,57,46,54,50,55,53,49,52,93,44,91,45,57,57,46,52,49,51,56,56,44,50,57,46,48,57,49,51,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,56,56,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,52,51,53,48,55,44,52,52,46,49,54,55,48,56,56,93,44,91,45,56,54,46,57,56,55,57,57,56,44,52,52,46,49,56,50,54,52,57,93,44,91,45,56,55,46,48,55,53,51,51,53,44,52,51,46,56,57,52,55,55,52,93,44,91,45,56,55,46,48,57,51,49,48,57,44,52,51,46,56,50,48,49,49,51,93,44,91,45,56,54,46,48,51,55,56,56,52,44,52,51,46,56,49,53,54,49,49,93,44,91,45,56,54,46,48,52,51,53,48,55,44,52,52,46,49,54,55,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,101,97,117,102,111,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,54,53,56,44,34,98,101,100,115,34,58,51,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,54,57,55,48,53,44,51,50,46,54,54,48,57,51,53,93,44,91,45,56,48,46,56,50,48,50,50,56,44,51,50,46,52,57,48,55,56,56,93,44,91,45,56,48,46,56,52,49,52,53,56,44,51,50,46,51,56,53,48,54,52,93,44,91,45,56,48,46,57,50,49,56,56,51,44,51,50,46,51,53,49,56,51,52,93,44,91,45,56,49,46,48,48,56,53,52,44,51,50,46,50,49,50,49,50,56,93,44,91,45,56,48,46,57,48,48,53,55,51,44,51,50,46,49,49,49,54,49,55,93,44,91,45,56,48,46,55,52,53,53,51,54,44,51,50,46,48,55,56,54,54,55,93,44,91,45,56,48,46,53,56,52,57,56,53,44,51,50,46,49,54,50,53,56,57,93,44,91,45,56,48,46,53,50,51,56,50,52,44,51,50,46,50,51,52,53,57,50,93,44,91,45,56,48,46,51,57,50,51,50,55,44,51,50,46,50,56,48,51,49,55,93,44,91,45,56,48,46,51,48,53,55,49,49,44,51,50,46,51,57,55,53,56,57,93,44,91,45,56,48,46,53,48,50,57,52,52,44,51,50,46,52,57,53,54,53,50,93,44,91,45,56,48,46,54,56,52,56,53,51,44,51,50,46,54,53,54,48,57,55,93,44,91,45,56,48,46,56,50,54,51,48,57,44,51,50,46,55,48,52,51,50,49,93,44,91,45,56,48,46,56,54,57,55,48,53,44,51,50,46,54,54,48,57,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,89,97,110,107,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,49,55,44,34,98,101,100,115,34,58,50,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,57,57,49,57,49,44,52,51,46,49,54,57,52,49,57,93,44,91,45,57,55,46,54,51,55,52,57,54,44,52,51,46,49,54,56,55,55,93,44,91,45,57,55,46,54,51,53,52,52,44,52,50,46,56,53,49,53,51,50,93,44,91,45,57,55,46,52,56,52,57,50,49,44,52,50,46,56,53,48,51,54,56,93,44,91,45,57,55,46,50,49,56,48,52,54,44,52,50,46,56,52,53,49,49,51,93,44,91,45,57,55,46,49,54,48,51,53,51,44,52,50,46,55,57,57,55,48,49,93,44,91,45,57,55,46,49,54,48,53,52,51,44,52,51,46,48,56,51,49,52,53,93,44,91,45,57,55,46,49,54,48,53,52,52,44,52,51,46,49,54,57,57,55,56,93,44,91,45,57,55,46,51,57,57,49,57,49,44,52,51,46,49,54,57,52,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,82,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,55,54,57,44,34,98,101,100,115,34,58,53,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,54,57,49,50,56,44,52,50,46,56,52,53,48,51,54,93,44,91,45,56,57,46,51,54,53,55,57,56,44,52,50,46,53,48,48,48,55,56,93,44,91,45,56,56,46,57,52,48,51,56,56,44,52,50,46,52,57,53,48,52,53,93,44,91,45,56,56,46,55,55,54,52,57,51,44,52,50,46,52,57,49,57,49,50,93,44,91,45,56,56,46,55,55,55,48,55,54,44,52,50,46,56,52,50,54,57,52,93,44,91,45,56,57,46,48,49,51,53,56,50,44,52,50,46,56,52,55,54,51,93,44,91,45,56,57,46,51,54,57,49,50,56,44,52,50,46,56,52,53,48,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,80,105,99,107,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,55,52,54,44,34,98,101,100,115,34,58,49,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,57,55,51,55,51,44,51,53,46,48,53,54,50,49,52,93,44,91,45,56,50,46,56,57,54,48,50,53,44,51,52,46,55,51,54,53,52,55,93,44,91,45,56,50,46,56,52,48,49,53,53,44,51,52,46,54,50,51,49,50,93,44,91,45,56,50,46,55,56,55,55,53,49,44,51,52,46,54,55,50,53,57,52,93,44,91,45,56,50,46,52,56,55,50,48,51,44,51,52,46,56,49,56,56,49,49,93,44,91,45,56,50,46,52,57,52,48,48,55,44,51,52,46,56,57,54,50,49,53,93,44,91,45,56,50,46,54,50,53,53,57,57,44,51,53,46,48,54,52,54,56,54,93,44,91,45,56,50,46,55,54,52,53,55,53,44,51,53,46,48,54,56,51,56,93,44,91,45,56,50,46,56,57,55,51,55,51,44,51,53,46,48,53,54,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,50,50,56,54,51,53,44,52,54,46,53,57,51,51,54,50,93,44,91,45,49,49,56,46,50,52,49,56,55,50,44,52,54,46,50,57,53,48,54,52,93,44,91,45,49,49,56,46,49,49,54,54,50,52,44,52,54,46,50,48,56,48,53,93,44,91,45,49,49,55,46,57,57,49,52,56,49,44,52,54,46,50,48,55,55,48,50,93,44,91,45,49,49,55,46,57,57,54,57,55,44,52,54,46,48,48,48,53,54,93,44,91,45,49,49,55,46,57,55,55,54,54,52,44,52,54,46,48,48,48,53,50,50,93,44,91,45,49,49,55,46,54,48,51,52,50,52,44,52,53,46,57,57,56,57,53,93,44,91,45,49,49,55,46,54,49,49,57,48,51,44,52,54,46,51,51,56,52,55,56,93,44,91,45,49,49,55,46,55,51,55,51,48,51,44,52,54,46,52,55,49,52,53,52,93,44,91,45,49,49,55,46,56,54,51,51,52,55,44,52,54,46,52,55,48,54,54,55,93,44,91,45,49,49,55,46,56,53,49,56,53,44,52,54,46,54,50,52,54,55,93,44,91,45,49,49,56,46,49,55,50,53,53,50,44,52,54,46,53,53,54,57,52,55,93,44,91,45,49,49,56,46,50,49,53,54,54,44,52,54,46,53,56,56,57,50,52,93,44,91,45,49,49,56,46,50,50,56,54,51,53,44,52,54,46,53,57,51,51,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,51,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,57,52,54,54,53,44,52,48,46,52,51,50,49,53,54,93,44,91,45,56,54,46,54,57,53,54,51,55,44,52,48,46,50,49,52,51,54,55,93,44,91,45,56,54,46,54,57,53,56,48,52,44,52,48,46,49,55,56,54,53,55,93,44,91,45,56,54,46,50,52,50,51,54,53,44,52,48,46,49,56,48,55,55,56,93,44,91,45,56,54,46,50,52,50,55,52,51,44,52,48,46,50,49,53,56,51,52,93,44,91,45,56,54,46,50,52,50,57,57,50,44,52,48,46,51,55,51,54,54,49,93,44,91,45,56,54,46,51,55,53,55,54,50,44,52,48,46,52,51,49,56,53,49,93,44,91,45,56,54,46,54,57,52,54,54,53,44,52,48,46,52,51,50,49,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,54,50,56,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,48,54,57,52,57,44,51,56,46,54,53,53,48,49,57,93,44,91,45,56,57,46,55,48,52,50,52,53,44,51,56,46,52,49,53,55,55,57,93,44,91,45,56,57,46,53,55,57,51,50,53,44,51,56,46,52,56,48,49,56,52,93,44,91,45,56,57,46,51,50,57,52,54,57,44,51,56,46,53,49,48,50,49,51,93,44,91,45,56,57,46,49,52,51,56,54,54,44,51,56,46,53,48,51,48,56,57,93,44,91,45,56,57,46,49,51,56,51,57,51,44,51,56,46,55,51,54,51,51,49,93,44,91,45,56,57,46,50,53,52,49,56,53,44,51,56,46,55,52,50,48,49,56,93,44,91,45,56,57,46,53,57,55,51,50,49,44,51,56,46,55,52,51,50,51,54,93,44,91,45,56,57,46,55,48,54,57,52,57,44,51,56,46,54,53,53,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,77,105,110,105,100,111,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,57,51,49,54,56,55,44,52,50,46,55,54,53,48,50,54,93,44,91,45,49,49,51,46,57,51,49,55,57,57,44,52,50,46,53,51,53,50,52,51,93,44,91,45,49,49,51,46,54,53,52,49,52,57,44,52,50,46,53,51,54,49,53,53,93,44,91,45,49,49,51,46,53,53,55,49,57,51,44,52,50,46,54,53,54,55,57,57,93,44,91,45,49,49,51,46,52,55,50,49,55,55,44,52,50,46,54,54,57,51,53,50,93,44,91,45,49,49,51,46,52,55,50,49,53,53,44,52,50,46,56,52,57,50,48,49,93,44,91,45,49,49,51,46,52,49,51,49,51,56,44,52,50,46,56,52,57,49,54,57,93,44,91,45,49,49,51,46,52,49,51,56,54,55,44,52,51,46,49,57,57,56,53,57,93,44,91,45,49,49,51,46,55,49,52,54,52,50,44,52,51,46,49,57,57,55,56,51,93,44,91,45,49,49,51,46,55,49,52,48,52,52,44,52,50,46,56,52,57,55,51,52,93,44,91,45,49,49,51,46,55,54,51,56,54,50,44,52,50,46,55,54,52,53,48,56,93,44,91,45,49,49,51,46,57,51,49,54,56,55,44,52,50,46,55,54,53,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,56,49,51,55,51,49,44,52,49,46,53,57,48,48,51,52,93,44,91,45,55,54,46,55,52,57,52,57,55,44,52,49,46,52,48,53,53,55,50,93,44,91,45,55,54,46,53,57,50,53,51,50,44,52,49,46,51,48,52,51,51,50,93,44,91,45,55,54,46,52,52,55,53,57,55,44,52,49,46,50,55,53,54,50,57,93,44,91,45,55,54,46,51,49,48,49,51,51,44,52,49,46,51,49,48,49,57,57,93,44,91,45,55,54,46,50,56,51,49,44,52,49,46,51,55,54,53,49,55,93,44,91,45,55,54,46,50,50,48,49,51,57,44,52,49,46,53,52,49,50,56,53,93,44,91,45,55,54,46,56,49,51,55,51,49,44,52,49,46,53,57,48,48,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,82,97,110,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,50,52,48,44,34,98,101,100,115,34,58,50,48,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,54,53,54,57,55,44,51,50,46,51,57,57,53,50,57,93,44,91,45,57,48,46,50,52,53,51,56,44,51,50,46,49,55,49,51,57,54,93,44,91,45,57,48,46,50,51,48,51,51,49,44,51,50,46,48,52,57,55,50,56,93,44,91,45,56,57,46,55,51,48,48,54,54,44,51,50,46,48,52,55,48,55,50,93,44,91,45,56,57,46,55,51,48,52,50,52,44,51,50,46,50,50,50,48,51,57,93,44,91,45,56,57,46,55,51,48,48,54,51,44,51,50,46,51,53,50,55,51,51,93,44,91,45,56,57,46,55,56,52,49,50,51,44,51,50,46,53,56,54,56,57,49,93,44,91,45,56,57,46,56,54,49,49,53,57,44,51,50,46,53,56,51,49,54,50,93,44,91,45,57,48,46,48,54,53,54,57,55,44,51,50,46,51,57,57,53,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,52,53,34,44,34,78,65,77,69,34,58,34,77,111,116,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,52,49,52,56,52,44,51,52,46,51,49,50,52,52,52,93,44,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,44,91,45,49,48,48,46,53,49,56,54,57,49,44,51,51,46,56,51,53,54,53,93,44,91,45,49,48,48,46,53,49,55,51,52,44,51,52,46,51,49,52,49,48,50,93,44,91,45,49,48,48,46,57,52,54,49,51,50,44,51,52,46,51,49,50,55,53,57,93,44,91,45,49,48,49,46,48,52,49,52,56,52,44,51,52,46,51,49,50,52,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,76,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,56,56,50,44,34,98,101,100,115,34,58,55,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,50,51,48,49,55,56,44,52,51,46,56,54,51,55,50,51,93,44,91,45,49,50,51,46,57,52,54,50,57,49,44,52,51,46,56,54,50,54,56,50,93,44,91,45,49,50,51,46,56,50,55,48,48,52,44,52,51,46,57,52,52,56,51,55,93,44,91,45,49,50,51,46,54,49,57,48,49,50,44,52,51,46,57,50,49,49,49,55,93,44,91,45,49,50,51,46,53,50,57,49,53,51,44,52,51,46,56,51,48,48,54,49,93,44,91,45,49,50,51,46,51,52,56,50,52,54,44,52,51,46,55,56,48,49,55,93,44,91,45,49,50,51,46,49,51,55,51,49,57,44,52,51,46,55,55,57,54,55,93,44,91,45,49,50,51,46,49,48,55,54,56,54,44,52,51,46,53,52,48,48,49,93,44,91,45,49,50,50,46,55,52,49,56,52,53,44,52,51,46,53,52,52,54,53,52,93,44,91,45,49,50,50,46,55,52,49,55,49,54,44,52,51,46,52,51,55,51,57,53,93,44,91,45,49,50,50,46,49,51,50,48,51,52,44,52,51,46,52,52,48,50,50,49,93,44,91,45,49,50,50,46,49,51,48,54,56,57,44,52,51,46,53,53,55,49,52,51,93,44,91,45,49,50,50,46,48,48,50,51,54,50,44,52,51,46,54,49,53,52,57,56,93,44,91,45,49,50,49,46,57,55,50,57,51,49,44,52,51,46,56,54,49,49,53,54,93,44,91,45,49,50,49,46,56,53,55,48,54,51,44,52,51,46,57,54,53,50,52,56,93,44,91,45,49,50,49,46,55,54,56,48,55,44,52,52,46,49,49,53,50,52,53,93,44,91,45,49,50,49,46,56,49,57,52,50,57,44,52,52,46,50,54,50,51,57,52,93,44,91,45,49,50,50,46,51,50,55,49,53,44,52,52,46,50,53,50,56,52,49,93,44,91,45,49,50,50,46,53,48,55,50,48,51,44,52,52,46,50,50,51,52,52,56,93,44,91,45,49,50,50,46,55,54,50,55,51,53,44,52,52,46,50,57,48,53,51,55,93,44,91,45,49,50,50,46,56,54,53,52,55,56,44,52,52,46,50,56,55,49,51,52,93,44,91,45,49,50,50,46,57,48,53,55,53,53,44,52,52,46,50,48,48,55,51,54,93,44,91,45,49,50,51,46,49,54,53,52,50,56,44,52,52,46,50,48,48,48,55,49,93,44,91,45,49,50,51,46,49,56,48,51,56,56,44,52,52,46,50,56,51,55,50,53,93,44,91,45,49,50,51,46,55,55,53,53,57,56,44,52,52,46,50,56,51,53,52,55,93,44,91,45,49,50,52,46,49,56,55,52,48,57,44,52,52,46,50,55,54,56,55,49,93,44,91,45,49,50,52,46,50,51,48,49,55,56,44,52,51,46,56,54,51,55,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,56,53,34,44,34,78,65,77,69,34,58,34,87,105,99,104,105,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,56,49,56,44,34,98,101,100,115,34,58,56,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,50,51,53,55,55,44,51,51,46,56,51,54,48,52,55,93,44,91,45,57,56,46,52,50,51,53,51,51,44,51,52,46,48,56,50,56,52,51,93,44,91,45,57,56,46,52,56,54,51,50,56,44,51,52,46,48,54,50,53,57,56,93,44,91,45,57,56,46,54,48,57,57,56,55,44,51,52,46,49,53,55,49,53,52,93,44,91,45,57,56,46,54,57,48,48,55,50,44,51,52,46,49,51,51,49,53,53,93,44,91,45,57,56,46,56,56,55,49,49,50,44,51,52,46,49,54,56,50,54,93,44,91,45,57,56,46,57,53,50,51,57,53,44,51,52,46,50,49,50,52,57,55,93,44,91,45,57,56,46,57,53,51,50,48,50,44,51,51,46,56,51,52,48,50,53,93,44,91,45,57,56,46,52,50,51,53,55,55,44,51,51,46,56,51,54,48,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,83,104,105,97,119,97,115,115,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,57,51,44,34,98,101,100,115,34,58,49,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,55,55,54,44,52,51,46,49,49,55,57,52,50,93,44,91,45,56,52,46,51,54,51,54,53,57,44,52,50,46,55,55,53,55,55,56,93,44,91,45,56,52,46,49,53,56,49,56,57,44,52,50,46,55,55,54,54,51,57,93,44,91,45,56,51,46,57,50,50,53,49,54,44,52,50,46,55,56,48,56,50,49,93,44,91,45,56,51,46,57,50,57,48,55,57,44,52,51,46,49,51,50,55,56,50,93,44,91,45,56,52,46,51,54,55,56,57,49,44,52,51,46,49,50,56,52,53,50,93,44,91,45,56,52,46,51,54,55,55,54,44,52,51,46,49,49,55,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,74,101,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,48,52,52,53,53,44,52,48,46,48,48,50,50,57,49,93,44,91,45,57,56,46,53,48,53,50,54,54,44,51,57,46,53,54,55,54,48,51,93,44,91,45,57,56,46,52,56,55,51,56,52,44,51,57,46,53,54,55,52,57,50,93,44,91,45,57,55,46,57,51,49,56,52,52,44,51,57,46,53,54,54,57,50,49,93,44,91,45,57,55,46,57,51,49,52,56,50,44,51,57,46,54,53,51,55,54,55,93,44,91,45,57,55,46,57,51,49,56,50,53,44,52,48,46,48,48,50,48,55,50,93,44,91,45,57,56,46,50,55,52,48,49,55,44,52,48,46,48,48,50,54,54,50,93,44,91,45,57,56,46,53,48,52,52,53,53,44,52,48,46,48,48,50,50,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,105,116,99,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,50,50,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,56,55,51,56,52,44,51,57,46,53,54,55,52,57,50,93,44,91,45,57,56,46,52,57,48,49,52,57,44,51,57,46,50,49,57,55,56,93,44,91,45,57,55,46,57,50,57,55,52,54,44,51,57,46,50,49,57,50,55,51,93,44,91,45,57,55,46,57,50,57,48,57,55,44,51,57,46,51,48,54,51,57,55,93,44,91,45,57,55,46,57,51,49,56,52,52,44,51,57,46,53,54,54,57,50,49,93,44,91,45,57,56,46,52,56,55,51,56,52,44,51,57,46,53,54,55,52,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,114,97,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,55,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,52,50,53,55,56,44,51,48,46,49,52,51,49,49,55,93,44,91,45,56,50,46,51,49,51,51,56,53,44,50,57,46,57,53,52,55,48,52,93,44,91,45,56,50,46,52,49,56,55,50,56,44,50,57,46,57,50,51,48,57,51,93,44,91,45,56,50,46,50,56,49,56,51,55,44,50,57,46,56,52,52,52,52,56,93,44,91,45,56,50,46,49,51,51,49,50,54,44,50,57,46,56,51,53,57,52,57,93,44,91,45,56,50,46,48,53,53,54,50,53,44,50,57,46,55,49,56,50,51,50,93,44,91,45,56,50,46,48,52,57,50,52,52,44,50,57,46,55,49,56,54,55,93,44,91,45,56,50,46,48,52,57,52,50,53,44,51,48,46,49,52,51,49,51,54,93,44,91,45,56,50,46,49,52,50,53,55,56,44,51,48,46,49,52,51,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,48,50,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,52,48,52,54,54,44,51,49,46,51,51,54,48,49,52,93,44,91,45,57,48,46,48,51,49,56,57,54,44,51,49,46,49,55,53,55,50,55,93,44,91,45,56,57,46,56,51,53,56,55,51,44,51,49,46,48,55,52,57,50,54,93,44,91,45,56,57,46,56,51,53,57,48,56,44,51,49,46,48,48,50,48,52,55,93,44,91,45,56,57,46,55,50,56,49,49,57,44,51,49,46,48,48,50,51,93,44,91,45,56,57,46,54,53,52,48,51,56,44,51,49,46,48,48,50,53,48,50,93,44,91,45,56,57,46,54,53,52,50,49,50,44,51,49,46,52,51,51,56,48,53,93,44,91,45,56,57,46,56,50,52,50,51,54,44,51,49,46,52,51,52,48,57,51,93,44,91,45,56,57,46,57,53,56,57,52,44,51,49,46,51,57,48,52,56,57,93,44,91,45,57,48,46,48,52,48,52,54,54,44,51,49,46,51,51,54,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,71,101,111,114,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,55,49,48,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,51,52,51,51,57,44,51,48,46,57,57,55,57,56,51,93,44,91,45,56,56,46,56,56,53,48,51,56,44,51,48,46,57,49,48,55,56,56,93,44,91,45,56,56,46,56,56,52,53,51,52,44,51,48,46,55,51,53,53,57,49,93,44,91,45,56,56,46,52,49,50,54,49,50,44,51,48,46,55,51,53,53,57,93,44,91,45,56,56,46,52,50,53,52,51,50,44,51,48,46,57,57,56,51,50,51,93,44,91,45,56,56,46,56,51,52,51,51,57,44,51,48,46,57,57,55,57,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,74,111,32,68,97,118,105,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,51,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,52,50,56,52,51,44,52,50,46,53,48,56,52,56,49,93,44,91,45,57,48,46,52,55,51,55,57,56,44,52,50,46,51,56,49,52,53,56,93,44,91,45,57,48,46,51,57,49,49,48,56,44,52,50,46,50,50,53,52,55,51,93,44,91,45,57,48,46,51,49,55,51,57,53,44,52,50,46,49,57,51,54,52,53,93,44,91,45,56,57,46,57,49,57,55,55,50,44,52,50,46,49,57,54,56,56,49,93,44,91,45,56,57,46,57,50,54,52,54,54,44,52,50,46,53,48,53,55,55,50,93,44,91,45,57,48,46,52,50,54,51,55,55,44,52,50,46,53,48,55,49,55,51,93,44,91,45,57,48,46,54,52,50,56,52,51,44,52,50,46,53,48,56,52,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,56,51,48,44,34,98,101,100,115,34,58,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,55,54,49,57,50,44,51,57,46,57,52,53,55,53,54,93,44,91,45,56,53,46,56,54,50,52,56,57,44,51,57,46,57,52,51,54,49,56,93,44,91,45,56,53,46,57,51,55,53,56,55,44,51,57,46,57,50,55,49,51,55,93,44,91,45,56,53,46,57,53,49,55,50,49,44,51,57,46,54,57,55,49,51,54,93,44,91,45,56,53,46,54,51,51,50,50,56,44,51,57,46,54,57,56,52,54,50,93,44,91,45,56,53,46,53,57,54,57,49,54,44,51,57,46,55,56,54,53,49,57,93,44,91,45,56,53,46,53,55,54,49,57,50,44,51,57,46,57,52,53,55,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,50,48,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,49,49,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,50,52,54,50,57,44,51,54,46,55,48,55,55,50,57,93,44,91,45,55,54,46,57,53,53,52,50,52,44,51,54,46,54,54,52,53,56,55,93,44,91,45,55,54,46,57,48,57,54,55,50,44,51,54,46,54,52,56,49,55,53,93,44,91,45,55,54,46,57,50,52,54,50,57,44,51,54,46,55,48,55,55,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,57,34,44,34,78,65,77,69,34,58,34,77,105,100,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,49,57,52,44,34,98,101,100,115,34,58,54,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,50,56,55,48,52,56,44,51,50,46,48,56,54,57,57,49,93,44,91,45,49,48,50,46,50,56,55,51,52,53,44,51,49,46,54,53,49,50,55,54,93,44,91,45,49,48,49,46,55,55,53,56,48,50,44,51,49,46,54,53,49,51,49,57,93,44,91,45,49,48,49,46,55,55,54,48,56,53,44,51,50,46,48,56,54,57,50,53,93,44,91,45,49,48,50,46,50,49,49,50,52,57,44,51,50,46,48,56,54,56,93,44,91,45,49,48,50,46,50,56,55,48,52,56,44,51,50,46,48,56,54,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,49,50,56,51,55,57,44,51,56,46,55,48,48,54,48,51,93,44,91,45,49,48,49,46,49,50,53,52,51,56,44,51,56,46,50,54,52,53,48,57,93,44,91,45,49,48,49,46,49,48,51,50,54,56,44,51,56,46,50,54,52,53,53,55,93,44,91,45,49,48,48,46,54,56,52,54,57,57,44,51,56,46,50,54,52,49,51,55,93,44,91,45,49,48,48,46,54,56,56,48,48,54,44,51,56,46,55,48,48,48,50,49,93,44,91,45,49,48,48,46,56,49,56,54,57,56,44,51,56,46,54,57,57,56,54,49,93,44,91,45,49,48,49,46,49,50,56,51,55,57,44,51,56,46,55,48,48,54,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,115,99,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,55,52,54,44,34,98,101,100,115,34,58,53,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,48,52,55,55,56,49,44,52,55,46,53,49,54,48,51,52,93,44,91,45,49,49,50,46,48,52,52,56,50,57,44,52,55,46,49,57,50,55,49,49,93,44,91,45,49,49,49,46,55,56,57,50,55,56,44,52,55,46,49,50,56,57,50,50,93,44,91,45,49,49,49,46,55,57,48,50,51,54,44,52,54,46,57,49,51,55,54,52,93,44,91,45,49,49,49,46,54,53,56,49,51,50,44,52,54,46,57,49,51,52,50,51,93,44,91,45,49,49,49,46,53,51,57,51,55,51,44,52,55,46,48,48,48,53,53,57,93,44,91,45,49,49,49,46,48,56,52,50,56,53,44,52,55,46,48,49,48,54,49,51,93,44,91,45,49,49,48,46,57,49,51,48,51,53,44,52,54,46,57,56,48,53,53,57,93,44,91,45,49,49,48,46,54,53,50,56,55,55,44,52,54,46,56,50,51,54,50,54,93,44,91,45,49,49,48,46,54,52,53,50,49,50,44,52,55,46,48,57,53,56,55,93,44,91,45,49,49,48,46,55,55,48,54,57,56,44,52,55,46,48,57,54,53,52,54,93,44,91,45,49,49,48,46,55,54,55,49,50,53,44,52,55,46,51,53,57,49,50,56,93,44,91,45,49,49,48,46,54,51,57,53,53,57,44,52,55,46,52,49,54,52,56,54,93,44,91,45,49,49,48,46,55,54,57,49,50,57,44,52,55,46,52,52,54,48,57,54,93,44,91,45,49,49,48,46,56,54,52,54,51,44,52,55,46,53,50,52,55,49,52,93,44,91,45,49,49,49,46,48,52,51,56,56,49,44,52,55,46,53,57,49,53,56,51,93,44,91,45,49,49,48,46,57,55,54,54,54,56,44,52,55,46,54,57,56,55,51,93,44,91,45,49,49,49,46,52,48,56,56,53,44,52,55,46,54,57,56,49,50,51,93,44,91,45,49,49,49,46,54,54,54,52,56,50,44,52,55,46,54,57,55,55,54,49,93,44,91,45,49,49,49,46,54,54,54,50,54,44,52,55,46,54,49,49,50,53,51,93,44,91,45,49,49,49,46,57,50,50,57,51,54,44,52,55,46,54,49,49,50,51,49,93,44,91,45,49,49,49,46,57,50,50,55,57,53,44,52,55,46,53,48,53,48,54,52,93,44,91,45,49,49,50,46,48,52,55,55,56,49,44,52,55,46,53,49,54,48,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,54,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,54,48,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,51,57,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,49,55,56,55,49,44,51,56,46,51,57,52,49,53,51,93,44,91,45,55,56,46,56,50,52,51,50,44,51,56,46,52,51,53,48,55,57,93,44,91,45,55,56,46,57,48,48,53,56,57,44,51,56,46,52,53,57,50,49,55,93,44,91,45,55,56,46,57,49,55,56,55,49,44,51,56,46,51,57,52,49,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,50,57,57,44,34,98,101,100,115,34,58,51,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,53,49,49,55,54,44,51,55,46,56,54,49,57,57,57,93,44,91,45,56,57,46,49,53,51,54,49,55,44,51,55,46,54,48,48,50,51,55,93,44,91,45,56,57,46,48,52,49,52,48,49,44,51,55,46,53,57,54,53,55,54,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,50,55,55,93,44,91,45,56,56,46,55,48,54,55,53,57,44,51,55,46,56,54,51,52,53,55,93,44,91,45,56,57,46,49,53,49,49,55,54,44,51,55,46,56,54,49,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,70,108,97,116,104,101,97,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,48,56,50,44,34,98,101,100,115,34,58,50,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,55,50,55,48,52,53,44,52,57,46,48,48,48,53,48,56,93,44,91,45,49,49,52,46,54,52,56,49,51,52,44,52,56,46,55,55,57,51,51,50,93,44,91,45,49,49,52,46,54,57,50,52,53,44,52,56,46,54,56,48,49,51,54,93,44,91,45,49,49,52,46,56,56,56,53,57,44,52,56,46,54,53,56,55,54,53,93,44,91,45,49,49,52,46,56,52,57,56,48,51,44,52,56,46,53,55,51,53,48,50,93,44,91,45,49,49,52,46,56,52,56,48,57,56,44,52,56,46,50,50,54,49,50,53,93,44,91,45,49,49,53,46,48,50,48,48,55,57,44,52,56,46,50,50,53,57,53,52,93,44,91,45,49,49,53,46,48,49,48,54,55,50,44,52,56,46,48,49,55,54,50,49,93,44,91,45,49,49,52,46,57,56,57,51,52,52,44,52,55,46,56,55,50,56,48,55,93,44,91,45,49,49,52,46,54,48,52,53,56,52,44,52,55,46,56,55,53,54,48,53,93,44,91,45,49,49,52,46,54,48,52,52,54,50,44,52,55,46,55,56,57,56,55,49,93,44,91,45,49,49,52,46,52,55,55,50,57,44,52,55,46,55,56,57,57,52,49,93,44,91,45,49,49,52,46,52,57,50,49,57,44,52,55,46,57,54,49,57,56,57,93,44,91,45,49,49,52,46,48,51,56,53,52,53,44,52,55,46,57,54,50,53,53,93,44,91,45,49,49,52,46,48,50,57,48,52,50,44,52,56,46,48,53,49,54,53,51,93,44,91,45,49,49,51,46,56,56,52,53,52,49,44,52,56,46,48,53,49,57,93,44,91,45,49,49,51,46,56,51,50,53,53,54,44,52,55,46,57,55,54,52,51,52,93,44,91,45,49,49,51,46,54,55,50,51,51,53,44,52,55,46,56,57,54,52,57,49,93,44,91,45,49,49,51,46,54,51,52,48,55,57,44,52,55,46,54,48,48,48,50,55,93,44,91,45,49,49,51,46,52,54,54,52,56,53,44,52,55,46,54,48,48,48,53,55,93,44,91,45,49,49,51,46,49,52,52,51,54,56,44,52,55,46,53,57,53,53,48,55,93,44,91,45,49,49,51,46,49,54,53,56,49,49,44,52,55,46,55,49,57,55,54,52,93,44,91,45,49,49,51,46,48,56,48,57,57,55,44,52,55,46,55,52,57,57,49,55,93,44,91,45,49,49,51,46,48,54,50,56,55,54,44,52,55,46,56,56,53,53,54,51,93,44,91,45,49,49,50,46,57,56,52,55,51,52,44,52,55,46,57,53,51,57,49,56,93,44,91,45,49,49,50,46,56,56,52,56,56,51,44,52,55,46,57,56,53,52,49,52,93,44,91,45,49,49,51,46,48,49,52,56,49,49,44,52,56,46,49,51,49,48,51,93,44,91,45,49,49,51,46,50,51,48,55,50,51,44,52,56,46,49,56,50,48,48,50,93,44,91,45,49,49,51,46,51,52,57,48,52,54,44,52,56,46,51,49,48,50,54,51,93,44,91,45,49,49,51,46,51,53,53,57,55,54,44,52,56,46,52,50,51,57,49,50,93,44,91,45,49,49,51,46,52,56,48,56,51,57,44,52,56,46,52,53,57,54,54,50,93,44,91,45,49,49,51,46,52,54,55,51,55,50,44,52,56,46,53,52,55,53,53,53,93,44,91,45,49,49,51,46,55,53,48,52,53,52,44,52,56,46,54,49,52,51,51,53,93,44,91,45,49,49,51,46,55,48,50,57,51,56,44,52,56,46,55,49,57,56,54,53,93,44,91,45,49,49,51,46,56,49,56,51,55,51,44,52,56,46,56,52,56,50,49,56,93,44,91,45,49,49,51,46,57,53,54,56,54,52,44,52,56,46,56,49,55,52,55,52,93,44,91,45,49,49,52,46,48,54,56,49,56,44,52,56,46,57,57,56,56,53,55,93,44,91,45,49,49,52,46,55,50,55,48,52,53,44,52,57,46,48,48,48,53,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,80,101,195,177,117,101,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,55,54,57,48,52,57,44,49,56,46,49,51,52,57,56,51,93,44,91,45,54,54,46,55,55,52,49,50,51,44,49,55,46,57,49,52,55,57,54,93,44,91,45,54,54,46,55,49,53,50,52,52,44,49,55,46,57,49,50,54,56,50,93,44,91,45,54,54,46,54,57,52,48,55,44,49,56,46,49,51,48,53,51,52,93,44,91,45,54,54,46,55,54,57,48,52,57,44,49,56,46,49,51,52,57,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,83,116,101,118,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,56,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,53,54,54,48,54,44,51,55,46,51,56,56,52,56,53,93,44,91,45,49,48,49,46,53,53,53,50,53,57,44,51,54,46,57,57,53,51,50,52,93,44,91,45,49,48,49,46,48,54,54,52,53,49,44,51,54,46,57,57,55,57,50,50,93,44,91,45,49,48,49,46,48,54,56,49,48,54,44,51,55,46,51,56,55,55,55,57,93,44,91,45,49,48,49,46,48,56,57,54,53,51,44,51,55,46,51,56,55,55,50,49,93,44,91,45,49,48,49,46,53,50,53,56,49,44,51,55,46,51,56,56,51,57,50,93,44,91,45,49,48,49,46,53,53,54,54,48,54,44,51,55,46,51,56,56,52,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,56,55,51,52,44,34,98,101,100,115,34,58,50,49,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,48,49,56,52,55,44,51,56,46,50,48,55,56,56,57,93,44,91,45,56,52,46,54,50,53,48,55,57,44,51,56,46,49,49,54,51,57,55,93,44,91,45,56,52,46,54,54,48,51,52,44,51,56,46,48,48,51,56,51,54,93,44,91,45,56,52,46,52,55,57,54,50,57,44,51,55,46,57,52,48,50,49,57,93,44,91,45,56,52,46,52,51,53,55,50,44,51,55,46,56,52,55,50,48,50,93,44,91,45,56,52,46,51,51,55,51,57,51,44,51,55,46,56,57,50,48,48,55,93,44,91,45,56,52,46,50,56,54,52,54,49,44,51,56,46,48,54,55,48,50,56,93,44,91,45,56,52,46,51,56,48,55,56,56,44,51,56,46,49,49,51,57,54,93,44,91,45,56,52,46,52,48,49,56,52,55,44,51,56,46,50,48,55,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,55,56,56,51,55,44,51,55,46,57,51,48,50,52,52,93,44,91,45,56,54,46,56,49,55,49,44,51,55,46,55,57,49,53,56,57,93,44,91,45,56,54,46,56,50,51,52,50,57,44,51,55,46,55,51,55,55,53,52,93,44,91,45,56,54,46,54,51,56,57,51,53,44,51,55,46,54,54,49,56,55,55,93,44,91,45,56,54,46,54,53,53,50,55,50,44,51,55,46,56,52,50,53,50,49,93,44,91,45,56,54,46,56,49,52,55,52,52,44,51,55,46,57,57,56,55,48,52,93,44,91,45,56,54,46,57,55,56,56,51,55,44,51,55,46,57,51,48,50,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,52,48,44,34,98,101,100,115,34,58,49,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,50,53,48,48,50,44,52,53,46,53,57,49,50,53,50,93,44,91,45,57,56,46,55,50,50,52,56,49,44,52,53,46,50,52,51,55,54,52,93,44,91,45,57,56,46,55,49,55,55,53,57,44,52,53,46,50,52,51,55,51,50,93,44,91,45,57,55,46,57,56,49,52,53,55,44,52,53,46,50,52,48,52,49,53,93,44,91,45,57,55,46,57,55,57,53,57,50,44,52,53,46,53,56,56,52,56,51,93,44,91,45,57,55,46,57,55,56,55,55,56,44,52,53,46,57,51,53,56,54,51,93,44,91,45,57,56,46,48,48,56,49,48,50,44,52,53,46,57,51,53,56,57,54,93,44,91,45,57,56,46,55,50,52,51,55,53,44,52,53,46,57,51,56,55,51,49,93,44,91,45,57,56,46,55,50,53,48,48,50,44,52,53,46,53,57,49,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,97,114,98,111,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,51,48,44,34,98,101,100,115,34,58,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,57,53,53,51,54,44,51,57,46,50,57,57,53,56,52,93,44,91,45,56,48,46,48,50,51,52,49,49,44,51,57,46,50,52,55,56,57,50,93,44,91,45,56,48,46,49,54,54,51,56,55,44,51,57,46,50,52,50,50,56,51,93,44,91,45,56,48,46,50,50,55,49,55,51,44,51,57,46,49,49,50,55,57,50,93,44,91,45,56,48,46,48,52,52,54,57,53,44,51,57,46,48,49,48,49,56,54,93,44,91,45,56,48,46,48,56,53,48,54,50,44,51,56,46,57,52,55,50,51,54,93,44,91,45,55,57,46,56,57,54,48,57,52,44,51,56,46,57,55,51,52,48,52,93,44,91,45,55,57,46,56,50,53,48,57,50,44,51,57,46,49,49,53,56,48,51,93,44,91,45,55,57,46,56,48,57,55,50,57,44,51,57,46,50,51,48,53,50,54,93,44,91,45,55,57,46,56,57,53,53,51,54,44,51,57,46,50,57,57,53,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,52,57,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,50,52,55,52,49,44,51,53,46,51,57,50,51,48,55,93,44,91,45,56,55,46,57,56,49,53,56,53,44,51,53,46,50,57,53,54,55,56,93,44,91,45,56,55,46,57,56,52,57,49,54,44,51,53,46,48,48,53,57,51,51,93,44,91,45,56,55,46,54,48,54,48,51,49,44,51,53,46,48,48,51,52,50,53,93,44,91,45,56,55,46,53,55,55,55,57,54,44,51,53,46,49,53,57,52,93,44,91,45,56,55,46,53,55,53,51,53,50,44,51,53,46,51,57,56,52,53,52,93,44,91,45,56,55,46,55,49,55,53,53,57,44,51,53,46,52,56,51,51,52,55,93,44,91,45,56,55,46,57,55,51,49,56,44,51,53,46,52,53,57,57,54,56,93,44,91,45,56,56,46,48,48,55,55,48,57,44,51,53,46,52,50,51,51,56,49,93,44,91,45,56,56,46,48,50,52,55,52,49,44,51,53,46,51,57,50,51,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,111,120,32,66,117,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,52,52,52,53,51,50,44,52,50,46,52,51,55,51,53,52,93,44,91,45,49,48,51,46,52,52,52,49,48,56,44,52,50,46,48,57,48,55,48,56,93,44,91,45,49,48,51,46,52,48,49,54,51,57,44,52,50,46,48,48,51,53,52,93,44,91,45,49,48,51,46,51,54,51,51,51,55,44,52,50,46,48,48,50,57,51,93,44,91,45,49,48,50,46,54,57,55,56,51,53,44,52,50,46,48,48,52,56,52,51,93,44,91,45,49,48,50,46,55,52,50,50,54,57,44,52,50,46,48,57,50,51,56,56,93,44,91,45,49,48,50,46,55,55,51,51,54,54,44,52,50,46,52,51,57,57,50,50,93,44,91,45,49,48,51,46,52,52,52,53,51,50,44,52,50,46,52,51,55,51,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,51,50,53,44,34,98,101,100,115,34,58,49,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,56,57,54,49,49,52,44,52,49,46,49,51,57,48,55,93,44,91,45,55,54,46,56,56,50,50,56,44,52,48,46,57,55,49,51,51,52,93,44,91,45,55,54,46,56,48,48,50,52,50,44,52,48,46,56,56,49,57,57,52,93,44,91,45,55,54,46,56,53,53,51,54,50,44,52,48,46,55,50,56,56,50,49,93,44,91,45,55,54,46,57,51,57,55,52,57,44,52,48,46,54,51,56,51,55,56,93,44,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,44,91,45,55,54,46,55,48,49,54,50,52,44,52,48,46,54,53,56,48,56,50,93,44,91,45,55,54,46,51,56,48,49,53,50,44,52,48,46,55,55,53,53,49,49,93,44,91,45,55,54,46,53,50,56,48,51,52,44,52,48,46,56,56,50,53,49,53,93,44,91,45,55,54,46,54,54,49,51,52,56,44,52,48,46,57,54,55,57,57,54,93,44,91,45,55,54,46,55,57,50,54,49,44,52,48,46,57,52,54,54,52,55,93,44,91,45,55,54,46,55,51,50,54,55,50,44,52,49,46,49,55,50,48,52,93,44,91,45,55,54,46,56,57,54,49,49,52,44,52,49,46,49,51,57,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,54,57,34,44,34,78,65,77,69,34,58,34,86,105,99,116,111,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,57,55,48,44,34,98,101,100,115,34,58,54,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,55,54,51,55,56,44,50,57,46,49,48,52,48,52,54,93,44,91,45,57,55,46,51,48,53,57,49,54,44,50,56,46,56,54,52,48,51,55,93,44,91,45,57,55,46,50,48,52,57,57,56,44,50,56,46,56,53,53,48,52,93,44,91,45,57,55,46,49,53,56,57,51,51,44,50,56,46,55,55,54,49,53,54,93,44,91,45,57,55,46,49,54,48,55,53,49,44,50,56,46,53,53,51,52,55,53,93,44,91,45,57,54,46,56,57,48,57,53,49,44,50,56,46,53,48,55,49,55,56,93,44,91,45,57,54,46,56,53,51,55,53,55,44,50,56,46,54,51,53,49,57,57,93,44,91,45,57,54,46,54,52,51,52,52,50,44,50,56,46,55,49,50,49,48,53,93,44,91,45,57,54,46,55,57,50,49,51,51,44,50,56,46,57,49,56,56,48,51,93,44,91,45,57,54,46,56,51,56,55,57,53,44,50,57,46,48,50,53,51,50,55,93,44,91,45,57,54,46,57,51,56,53,56,55,44,50,57,46,48,54,51,50,52,52,93,44,91,45,57,54,46,57,55,54,51,55,56,44,50,57,46,49,48,52,48,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,51,48,34,44,34,78,65,77,69,34,58,34,66,117,101,110,97,32,86,105,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,51,56,49,53,48,57,44,51,55,46,55,52,50,49,52,57,93,44,91,45,55,57,46,51,54,48,55,54,50,44,51,55,46,55,48,50,54,54,54,93,44,91,45,55,57,46,51,51,49,50,53,50,44,51,55,46,55,52,52,51,51,54,93,44,91,45,55,57,46,51,56,49,53,48,57,44,51,55,46,55,52,50,49,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,108,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,53,54,54,44,34,98,101,100,115,34,58,50,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,51,52,48,55,51,44,52,51,46,49,55,48,52,49,51,93,44,91,45,56,50,46,57,57,54,50,53,55,44,52,51,46,49,53,52,48,57,57,93,44,91,45,56,50,46,57,56,51,54,52,55,44,52,50,46,56,57,51,55,52,49,93,44,91,45,56,50,46,55,51,57,48,49,44,52,50,46,56,57,55,53,52,49,93,44,91,45,56,50,46,55,50,51,49,55,44,52,50,46,52,55,55,55,55,56,93,44,91,45,56,50,46,53,50,52,56,51,51,44,52,50,46,54,48,53,57,55,54,93,44,91,45,56,50,46,52,54,55,54,54,55,44,52,50,46,55,54,49,57,48,54,93,44,91,45,56,50,46,52,53,54,50,52,57,44,52,50,46,57,50,53,49,55,55,93,44,91,45,56,50,46,51,51,52,48,55,51,44,52,51,46,49,55,48,52,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,84,104,117,114,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,52,48,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,50,50,52,57,55,44,52,50,46,50,54,52,50,57,50,93,44,91,45,57,54,46,56,50,51,54,55,44,52,50,46,48,57,48,52,49,49,93,44,91,45,57,54,46,53,53,53,53,49,49,44,52,50,46,48,56,57,57,53,55,93,44,91,45,57,54,46,53,53,52,56,54,54,44,52,50,46,48,49,53,56,55,53,93,44,91,45,57,54,46,51,48,57,54,52,53,44,52,50,46,48,49,53,49,56,55,93,44,91,45,57,54,46,50,55,51,49,50,44,52,50,46,48,52,55,49,53,56,93,44,91,45,57,54,46,51,53,54,53,54,44,52,50,46,50,49,53,48,48,50,93,44,91,45,57,54,46,51,53,54,51,57,53,44,52,50,46,50,55,54,52,57,52,93,44,91,45,57,54,46,55,50,54,54,54,49,44,52,50,46,50,55,56,48,48,53,93,44,91,45,57,54,46,56,50,50,52,57,55,44,52,50,46,50,54,52,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,76,97,109,111,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,54,56,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,53,55,56,49,54,49,44,52,52,46,55,56,49,53,55,56,93,44,91,45,55,50,46,55,52,55,51,54,44,52,52,46,55,56,54,49,55,93,44,91,45,55,50,46,57,50,52,49,49,50,44,52,52,46,54,51,51,48,53,49,93,44,91,45,55,50,46,56,50,57,48,55,51,44,52,52,46,53,53,50,50,55,51,93,44,91,45,55,50,46,56,48,52,57,57,53,44,52,52,46,52,53,49,54,55,54,93,44,91,45,55,50,46,54,53,52,51,57,56,44,52,52,46,51,57,56,50,50,52,93,44,91,45,55,50,46,52,57,50,57,49,52,44,52,52,46,52,50,51,48,51,93,44,91,45,55,50,46,52,51,52,51,49,53,44,52,52,46,53,48,54,48,57,56,93,44,91,45,55,50,46,51,55,52,55,56,54,44,52,52,46,53,56,52,49,50,53,93,44,91,45,55,50,46,52,56,50,51,48,50,44,52,52,46,54,51,51,57,50,56,93,44,91,45,55,50,46,52,49,55,51,49,53,44,52,52,46,55,50,50,56,57,51,93,44,91,45,55,50,46,53,55,56,49,54,49,44,52,52,46,55,56,49,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,50,51,51,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,49,50,56,54,55,52,44,51,55,46,49,50,50,57,48,49,93,44,91,45,56,48,46,49,52,53,56,52,52,44,51,54,46,57,52,57,53,55,56,93,44,91,45,56,48,46,50,51,53,52,53,53,44,51,54,46,56,55,50,49,51,93,44,91,45,56,48,46,48,54,54,52,52,57,44,51,54,46,56,52,49,48,53,55,93,44,91,45,56,48,46,48,52,49,52,57,51,44,51,54,46,55,57,52,51,54,53,93,44,91,45,55,57,46,57,57,57,55,55,49,44,51,54,46,56,51,48,55,51,56,93,44,91,45,55,57,46,56,48,50,48,53,54,44,51,54,46,55,57,50,49,51,55,93,44,91,45,55,57,46,54,52,48,54,53,50,44,51,54,46,56,53,54,49,51,57,93,44,91,45,55,57,46,53,57,52,48,54,57,44,51,55,46,48,52,50,50,48,54,93,44,91,45,55,57,46,54,55,56,48,50,56,44,51,55,46,49,53,53,49,54,53,93,44,91,45,55,57,46,56,52,55,50,49,55,44,51,55,46,50,50,53,52,48,54,93,44,91,45,55,57,46,57,54,49,56,57,44,51,55,46,49,51,55,51,52,57,93,44,91,45,56,48,46,49,50,56,54,55,52,44,51,55,46,49,50,50,57,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,108,97,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,51,52,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,51,54,56,57,57,44,51,54,46,49,54,52,56,57,52,93,44,91,45,57,56,46,54,51,49,57,56,53,44,51,53,46,56,49,50,52,48,50,93,44,91,45,57,56,46,54,50,51,50,52,52,44,51,53,46,53,53,49,53,50,50,93,44,91,45,57,56,46,51,49,51,50,53,49,44,51,53,46,53,53,49,53,50,51,93,44,91,45,57,56,46,51,49,51,49,53,51,44,51,53,46,55,50,53,49,54,49,93,44,91,45,57,56,46,50,48,55,49,48,52,44,51,53,46,55,50,53,49,56,55,93,44,91,45,57,56,46,50,49,48,52,48,53,44,51,54,46,49,54,52,56,56,57,93,44,91,45,57,56,46,54,51,54,56,57,57,44,51,54,46,49,54,52,56,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,75,105,116,116,105,116,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,56,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,49,49,51,53,54,57,44,52,55,46,53,57,55,50,56,56,93,44,91,45,49,50,49,46,49,55,50,49,57,50,44,52,55,46,53,57,48,50,51,51,93,44,91,45,49,50,49,46,52,54,51,57,53,49,44,52,55,46,51,55,48,53,55,56,93,44,91,45,49,50,49,46,51,52,49,50,48,51,44,52,55,46,50,56,49,50,54,49,93,44,91,45,49,50,49,46,51,49,53,53,51,52,44,52,55,46,49,51,51,56,52,52,93,44,91,45,49,50,49,46,51,55,57,54,56,50,44,52,55,46,48,56,55,52,57,53,93,44,91,45,49,50,49,46,50,53,54,52,52,44,52,55,46,48,56,49,55,55,50,93,44,91,45,49,50,49,46,48,57,48,48,53,52,44,52,54,46,57,57,49,48,48,55,93,44,91,45,49,50,49,46,48,50,54,54,50,44,52,54,46,57,49,49,51,48,56,93,44,91,45,49,50,48,46,54,51,52,53,54,50,44,52,54,46,57,49,50,49,51,93,44,91,45,49,50,48,46,54,51,51,57,56,49,44,52,54,46,56,50,53,55,55,54,93,44,91,45,49,50,48,46,53,49,44,52,54,46,55,51,55,57,52,54,93,44,91,45,49,49,57,46,57,55,51,48,51,54,44,52,54,46,55,51,55,49,50,54,93,44,91,45,49,49,57,46,57,50,55,53,51,55,44,52,54,46,56,49,55,48,57,50,93,44,91,45,49,50,48,46,48,52,50,56,54,54,44,52,55,46,48,55,51,52,53,51,93,44,91,45,49,50,48,46,48,48,55,48,55,52,44,52,55,46,50,50,48,49,51,51,93,44,91,45,49,50,48,46,48,57,52,52,54,44,52,55,46,50,54,50,49,53,57,93,44,91,45,49,50,48,46,51,56,57,49,57,55,44,52,55,46,50,54,48,57,51,53,93,44,91,45,49,50,48,46,57,50,52,50,48,55,44,52,55,46,52,51,51,53,56,50,93,44,91,45,49,50,49,46,49,49,51,53,54,57,44,52,55,46,53,57,55,50,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,48,51,54,55,50,44,52,48,46,51,49,48,48,57,51,93,44,91,45,56,53,46,50,49,56,55,53,56,44,52,48,46,51,48,54,55,48,54,93,44,91,45,56,53,46,50,49,52,51,56,54,44,52,48,46,48,55,54,56,56,57,93,44,91,45,56,53,46,50,48,49,52,55,51,44,52,48,46,48,48,52,53,50,49,93,44,91,45,56,52,46,56,49,48,56,50,53,44,52,48,46,48,48,53,48,55,55,93,44,91,45,56,52,46,56,48,51,54,55,50,44,52,48,46,51,49,48,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,75,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,53,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,57,48,48,57,57,51,44,51,55,46,53,48,48,48,50,49,93,44,91,45,49,49,50,46,56,57,57,49,57,49,44,51,55,46,48,48,48,51,56,53,93,44,91,45,49,49,50,46,53,51,56,53,55,49,44,51,55,46,48,48,48,55,53,56,93,44,91,45,49,49,49,46,52,49,50,55,56,52,44,51,55,46,48,48,49,53,48,51,93,44,91,45,49,49,49,46,49,55,56,51,52,57,44,51,55,46,49,48,50,54,49,51,93,44,91,45,49,49,48,46,57,57,50,52,48,52,44,51,55,46,49,49,49,48,57,51,93,44,91,45,49,49,48,46,56,57,57,53,49,55,44,51,55,46,49,55,54,49,53,51,93,44,91,45,49,49,48,46,56,49,50,53,48,49,44,51,55,46,51,50,52,57,57,50,93,44,91,45,49,49,48,46,55,52,50,49,57,56,44,51,55,46,51,52,52,51,57,50,93,44,91,45,49,49,48,46,54,52,54,51,57,52,44,51,55,46,53,52,49,48,54,51,93,44,91,45,49,49,49,46,56,52,48,56,48,57,44,51,55,46,53,51,53,55,56,57,93,44,91,45,49,49,50,46,54,56,51,55,53,44,51,55,46,53,52,51,54,57,50,93,44,91,45,49,49,50,46,57,48,48,57,57,51,44,51,55,46,53,48,48,48,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,84,117,99,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,50,53,48,57,50,44,51,57,46,49,49,53,56,48,51,93,44,91,45,55,57,46,55,56,53,54,56,53,44,51,57,46,48,51,55,52,48,52,93,44,91,45,55,57,46,53,48,56,55,54,53,44,51,56,46,57,55,53,49,55,51,93,44,91,45,55,57,46,51,53,55,54,54,54,44,51,56,46,57,54,52,53,48,57,93,44,91,45,55,57,46,50,57,54,54,54,51,44,51,57,46,49,57,56,52,48,54,93,44,91,45,55,57,46,52,56,55,49,55,53,44,51,57,46,49,57,52,57,48,54,93,44,91,45,55,57,46,54,56,55,50,56,51,44,51,57,46,50,55,49,51,57,56,93,44,91,45,55,57,46,56,48,57,55,50,57,44,51,57,46,50,51,48,53,50,54,93,44,91,45,55,57,46,56,50,53,48,57,50,44,51,57,46,49,49,53,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,80,111,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,57,50,54,44,34,98,101,100,115,34,58,55,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,53,50,55,54,54,44,49,56,46,49,53,50,48,53,55,93,44,91,45,54,54,46,54,52,57,52,54,55,44,49,56,46,49,53,56,56,53,55,93,44,91,45,54,54,46,54,55,48,52,57,52,44,49,56,46,49,53,50,56,51,49,93,44,91,45,54,54,46,54,57,52,48,55,44,49,56,46,49,51,48,53,51,52,93,44,91,45,54,54,46,55,49,53,50,52,52,44,49,55,46,57,49,50,54,56,50,93,44,91,45,54,54,46,53,56,48,54,56,44,49,55,46,57,49,48,52,54,53,93,44,91,45,54,54,46,52,57,57,54,49,51,44,49,55,46,56,52,49,53,53,56,93,44,91,45,54,54,46,53,52,57,55,48,55,44,49,55,46,57,52,49,57,51,56,93,44,91,45,54,54,46,53,53,50,55,54,54,44,49,56,46,49,53,50,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,56,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,48,53,53,53,44,52,51,46,52,50,50,57,52,57,93,44,91,45,57,49,46,50,48,49,56,52,55,44,52,51,46,51,52,57,49,48,51,93,44,91,45,57,49,46,48,53,55,57,49,44,52,51,46,50,53,51,57,54,56,93,44,91,45,57,49,46,49,55,55,50,50,50,44,52,51,46,48,56,48,50,52,55,93,44,91,45,57,49,46,49,53,54,56,49,50,44,52,50,46,57,56,56,49,55,93,44,91,45,57,49,46,48,54,53,50,55,44,52,50,46,57,57,50,48,55,52,93,44,91,45,57,48,46,54,54,54,55,56,54,44,52,51,46,49,55,49,55,55,55,93,44,91,45,57,48,46,54,54,56,53,54,49,44,52,51,46,52,50,50,57,57,52,93,44,91,45,57,49,46,50,48,53,53,53,44,52,51,46,52,50,50,57,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,48,57,52,44,34,98,101,100,115,34,58,49,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,48,53,49,54,53,44,51,52,46,57,56,52,54,55,56,93,44,91,45,56,53,46,56,54,51,57,51,53,44,51,52,46,57,56,56,50,53,51,93,44,91,45,56,54,46,51,49,49,50,55,52,44,51,52,46,57,57,49,48,57,56,93,44,91,45,56,54,46,51,53,49,49,50,51,44,51,52,46,56,55,51,50,54,53,93,44,91,45,56,54,46,51,53,57,48,51,52,44,51,52,46,54,51,50,54,49,93,44,91,45,56,54,46,51,50,54,56,53,51,44,51,52,46,53,57,57,52,48,51,93,44,91,45,56,54,46,49,52,56,52,54,52,44,51,52,46,53,57,57,48,54,57,93,44,91,45,56,54,46,49,52,57,56,48,54,44,51,52,46,53,51,51,54,51,51,93,44,91,45,56,54,46,48,53,55,55,49,50,44,51,52,46,52,55,53,57,57,52,93,44,91,45,56,54,46,48,48,51,56,52,44,51,52,46,52,56,48,48,51,49,93,44,91,45,56,53,46,55,56,53,52,55,49,44,51,52,46,54,50,52,53,56,52,93,44,91,45,56,53,46,53,56,51,49,52,53,44,51,52,46,56,54,48,51,55,49,93,44,91,45,56,53,46,54,48,53,49,54,53,44,51,52,46,57,56,52,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,97,104,97,115,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,50,48,56,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,55,49,52,50,49,44,52,49,46,53,48,56,53,50,50,93,44,91,45,57,50,46,56,54,57,55,55,49,44,52,49,46,49,54,49,48,54,54,93,44,91,45,57,50,46,54,52,48,51,54,49,44,52,49,46,49,54,49,50,57,56,93,44,91,45,57,50,46,52,49,48,50,51,51,44,52,49,46,49,54,49,57,52,50,93,44,91,45,57,50,46,52,49,49,57,57,53,44,52,49,46,53,48,57,53,52,56,93,44,91,45,57,50,46,55,53,54,53,48,56,44,52,49,46,53,48,56,55,57,52,93,44,91,45,57,50,46,56,55,49,52,50,49,44,52,49,46,53,48,56,53,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,51,49,57,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,48,48,50,53,52,44,51,57,46,48,53,54,54,53,54,93,44,91,45,57,53,46,53,48,48,55,50,52,44,51,56,46,56,54,57,56,49,53,93,44,91,45,57,53,46,53,48,48,55,51,56,44,51,56,46,55,51,56,56,48,56,93,44,91,45,57,53,46,48,53,54,52,49,50,44,51,56,46,55,51,56,53,56,55,93,44,91,45,57,53,46,48,53,54,50,53,56,44,51,56,46,57,56,50,49,50,93,44,91,45,57,53,46,49,56,55,49,48,51,44,51,57,46,48,52,52,49,48,57,93,44,91,45,57,53,46,53,48,48,50,53,52,44,51,57,46,48,53,54,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,68,97,118,105,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,57,51,55,44,34,98,101,100,115,34,58,53,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,55,56,56,51,55,44,51,55,46,57,51,48,50,52,52,93,44,91,45,56,55,46,48,54,57,54,55,53,44,51,55,46,56,48,49,53,49,51,93,44,91,45,56,55,46,50,54,56,57,57,53,44,51,55,46,56,55,56,48,50,54,93,44,91,45,56,55,46,51,48,50,57,51,50,44,51,55,46,56,57,55,55,53,93,44,91,45,56,55,46,50,56,57,55,56,52,44,51,55,46,55,54,49,48,55,56,93,44,91,45,56,55,46,52,48,56,53,52,55,44,51,55,46,54,56,51,53,54,51,93,44,91,45,56,55,46,48,51,56,50,54,44,51,55,46,53,54,48,56,48,51,93,44,91,45,56,54,46,56,49,55,53,49,52,44,51,55,46,54,55,51,56,49,52,93,44,91,45,56,54,46,56,50,51,52,50,57,44,51,55,46,55,51,55,55,53,52,93,44,91,45,56,54,46,56,49,55,49,44,51,55,46,55,57,49,53,56,57,93,44,91,45,56,54,46,57,55,56,56,51,55,44,51,55,46,57,51,48,50,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,80,111,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,50,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,48,49,57,54,55,44,51,55,46,56,51,55,53,57,50,93,44,91,45,56,51,46,57,48,54,50,53,49,44,51,55,46,55,53,57,51,54,51,93,44,91,45,56,51,46,55,50,50,49,44,51,55,46,55,49,54,52,50,93,44,91,45,56,51,46,55,48,55,57,55,52,44,51,55,46,55,49,54,52,54,51,93,44,91,45,56,51,46,54,51,49,48,54,44,51,55,46,56,50,53,51,55,50,93,44,91,45,56,51,46,55,54,56,55,56,51,44,51,55,46,57,49,56,51,55,49,93,44,91,45,56,51,46,57,54,54,51,49,44,51,55,46,57,51,48,55,54,56,93,44,91,45,56,52,46,48,48,49,57,54,55,44,51,55,46,56,51,55,53,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,50,51,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,55,55,50,50,44,51,55,46,51,51,56,52,49,56,93,44,91,45,57,52,46,54,49,55,56,52,57,44,51,55,46,48,53,54,55,57,55,93,44,91,45,57,52,46,48,53,57,50,49,49,44,51,55,46,48,52,56,49,50,55,93,44,91,45,57,52,46,48,53,50,51,49,51,44,51,55,46,50,57,48,48,55,56,93,44,91,45,57,52,46,48,56,50,48,56,51,44,51,55,46,51,52,57,50,57,49,93,44,91,45,57,52,46,54,49,55,53,55,44,51,55,46,51,54,52,49,55,93,44,91,45,57,52,46,54,49,55,55,50,50,44,51,55,46,51,51,56,52,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,57,55,50,57,56,44,52,53,46,56,54,48,53,57,53,93,44,91,45,49,49,56,46,49,49,55,49,57,52,44,52,53,46,54,56,56,54,48,55,93,44,91,45,49,49,56,46,49,49,54,52,54,49,44,52,53,46,52,55,48,55,51,50,93,44,91,45,49,49,56,46,49,57,55,56,55,54,44,52,53,46,52,50,55,50,48,52,93,44,91,45,49,49,56,46,52,50,56,53,51,57,44,52,53,46,52,50,57,48,55,54,93,44,91,45,49,49,56,46,52,50,56,51,50,57,44,52,53,46,51,53,53,49,57,93,44,91,45,49,49,56,46,54,57,55,55,54,54,44,52,53,46,51,52,53,54,52,55,93,44,91,45,49,49,56,46,54,53,53,57,57,50,44,52,53,46,49,57,54,57,50,56,93,44,91,45,49,49,56,46,53,52,54,54,51,50,44,52,53,46,49,57,54,56,57,56,93,44,91,45,49,49,56,46,53,49,56,54,56,57,44,52,52,46,57,57,53,56,55,55,93,44,91,45,49,49,56,46,50,52,52,54,54,50,44,52,52,46,57,53,56,51,57,54,93,44,91,45,49,49,56,46,49,51,49,51,55,49,44,52,53,46,48,52,52,54,57,93,44,91,45,49,49,55,46,57,54,56,51,57,52,44,52,52,46,57,57,54,48,48,50,93,44,91,45,49,49,55,46,56,52,51,52,51,44,52,53,46,48,53,56,52,55,55,93,44,91,45,49,49,55,46,55,55,55,53,48,52,44,52,52,46,57,57,50,49,54,49,93,44,91,45,49,49,55,46,53,54,52,48,51,51,44,52,52,46,57,57,50,56,54,54,93,44,91,45,49,49,55,46,53,54,51,52,56,54,44,52,53,46,48,55,57,52,52,54,93,44,91,45,49,49,55,46,50,54,54,48,48,53,44,52,53,46,48,56,48,53,55,93,44,91,45,49,49,55,46,50,54,54,48,48,54,44,52,53,46,49,54,54,53,51,57,93,44,91,45,49,49,55,46,52,55,54,54,56,52,44,52,53,46,49,54,54,53,51,57,93,44,91,45,49,49,55,46,53,50,50,50,52,57,44,52,53,46,50,54,55,55,51,49,93,44,91,45,49,49,55,46,54,52,51,52,57,52,44,52,53,46,51,51,54,56,55,93,44,91,45,49,49,55,46,55,56,55,54,50,51,44,52,53,46,54,56,57,53,54,55,93,44,91,45,49,49,55,46,55,52,55,51,50,55,44,52,53,46,56,54,49,48,55,50,93,44,91,45,49,49,55,46,57,55,50,57,56,44,52,53,46,56,54,48,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,51,48,55,44,34,98,101,100,115,34,58,50,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,56,49,50,55,51,44,51,51,46,54,52,55,52,49,49,93,44,91,45,56,52,46,50,57,52,54,56,44,51,51,46,52,51,53,55,49,53,93,44,91,45,56,52,46,51,53,52,52,44,51,51,46,51,53,50,53,49,52,93,44,91,45,56,52,46,49,53,48,53,56,49,44,51,51,46,51,51,53,54,51,57,93,44,91,45,56,52,46,49,48,50,53,56,50,44,51,51,46,50,57,56,49,57,49,93,44,91,45,56,51,46,57,50,51,57,49,51,44,51,51,46,52,52,52,49,57,52,93,44,91,45,56,52,46,48,52,52,52,57,51,44,51,51,46,53,50,53,55,55,54,93,44,91,45,56,52,46,49,56,52,49,52,51,44,51,51,46,54,52,54,49,53,55,93,44,91,45,56,52,46,50,56,49,50,55,51,44,51,51,46,54,52,55,52,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,57,57,53,50,52,53,44,52,54,46,50,56,48,54,53,49,93,44,91,45,49,48,50,46,57,57,53,50,52,56,44,52,53,46,57,52,53,49,54,55,93,44,91,45,49,48,50,46,57,52,50,48,55,44,52,53,46,57,52,53,93,44,91,45,49,48,50,46,48,48,48,54,56,49,44,52,53,46,57,52,52,53,54,51,93,44,91,45,49,48,49,46,57,57,56,55,51,51,44,52,53,46,57,52,52,54,53,51,93,44,91,45,49,48,49,46,57,57,56,51,50,55,44,52,54,46,48,53,51,50,55,52,93,44,91,45,49,48,49,46,57,57,55,57,51,44,52,54,46,50,48,53,51,50,52,93,44,91,45,49,48,50,46,52,57,55,49,51,55,44,52,54,46,50,48,53,57,48,52,93,44,91,45,49,48,50,46,52,57,55,54,52,50,44,52,54,46,50,56,51,49,57,53,93,44,91,45,49,48,50,46,57,50,52,53,52,55,44,52,54,46,50,56,49,53,49,56,93,44,91,45,49,48,50,46,57,57,53,50,52,53,44,52,54,46,50,56,48,54,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,80,97,109,108,105,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,52,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,50,50,49,51,49,44,51,53,46,51,53,51,54,50,51,93,44,91,45,55,54,46,54,49,55,52,57,54,44,51,53,46,51,50,56,56,57,51,93,44,91,45,55,54,46,54,51,50,53,54,49,44,51,53,46,50,51,53,51,50,52,93,44,91,45,55,54,46,56,52,53,53,48,53,44,51,53,46,50,49,54,48,53,57,93,44,91,45,55,54,46,56,57,53,57,49,57,44,51,53,46,50,53,51,56,56,57,93,44,91,45,55,54,46,57,56,55,50,54,54,44,51,53,46,49,53,52,57,53,93,44,91,45,55,54,46,57,54,55,50,57,55,44,51,53,46,48,52,48,54,53,53,93,44,91,45,55,54,46,55,56,48,53,56,54,44,51,52,46,57,53,48,52,51,52,93,44,91,45,55,54,46,55,49,49,53,56,44,51,52,46,57,56,49,55,54,56,93,44,91,45,55,54,46,51,48,52,49,51,54,44,51,53,46,50,48,49,52,53,51,93,44,91,45,55,54,46,52,52,53,52,49,56,44,51,53,46,51,50,57,50,54,52,93,44,91,45,55,54,46,53,50,50,49,51,49,44,51,53,46,51,53,51,54,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,71,114,97,118,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,57,52,44,34,98,101,100,115,34,58,49,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,49,51,50,50,57,44,51,54,46,55,55,51,49,49,53,93,44,91,45,56,56,46,56,49,54,55,54,51,44,51,54,46,53,48,50,54,54,53,93,44,91,45,56,56,46,53,49,54,52,48,51,44,51,54,46,53,48,49,53,56,51,93,44,91,45,56,56,46,52,56,57,48,55,53,44,51,54,46,53,48,49,49,53,55,93,44,91,45,56,56,46,52,56,53,54,57,55,44,51,54,46,55,53,48,51,50,56,93,44,91,45,56,56,46,52,56,52,49,48,51,44,51,54,46,57,52,50,48,57,54,93,44,91,45,56,56,46,56,49,50,56,57,55,44,51,54,46,57,52,54,56,54,52,93,44,91,45,56,56,46,56,49,51,50,50,57,44,51,54,46,55,55,51,49,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,97,109,98,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,53,53,48,44,34,98,101,100,115,34,58,53,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,53,48,52,51,44,52,48,46,55,50,52,56,50,55,93,44,91,45,55,56,46,56,48,49,54,57,55,44,52,48,46,55,50,52,53,51,57,93,44,91,45,55,56,46,57,55,52,54,52,57,44,52,48,46,51,57,53,57,55,50,93,44,91,45,55,57,46,48,53,53,57,56,51,44,52,48,46,50,56,53,48,56,57,93,44,91,45,55,56,46,56,57,48,56,51,54,44,52,48,46,50,52,57,53,51,57,93,44,91,45,55,56,46,54,53,56,52,48,57,44,52,48,46,50,52,50,57,51,51,93,44,91,45,55,56,46,54,50,48,51,56,51,44,52,48,46,51,50,55,48,50,53,93,44,91,45,55,56,46,53,54,52,48,56,53,44,52,48,46,51,55,48,54,48,57,93,44,91,45,55,56,46,53,51,57,56,52,44,52,48,46,53,48,54,49,53,52,93,44,91,45,55,56,46,51,53,48,52,51,44,52,48,46,55,50,52,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,77,99,77,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,55,51,44,34,98,101,100,115,34,58,49,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,49,57,56,54,53,44,51,53,46,54,52,52,54,53,49,93,44,91,45,56,52,46,56,48,53,53,52,52,44,51,53,46,52,52,56,53,55,49,93,44,91,45,56,52,46,56,54,48,49,54,52,44,51,53,46,51,53,48,48,55,52,93,44,91,45,56,52,46,55,48,51,54,48,55,44,51,53,46,50,52,49,48,52,51,93,44,91,45,56,52,46,52,57,53,53,50,57,44,51,53,46,50,56,53,52,55,50,93,44,91,45,56,52,46,52,48,57,50,50,54,44,51,53,46,51,57,56,51,55,56,93,44,91,45,56,52,46,53,50,50,55,49,44,51,53,46,54,48,55,55,56,51,93,44,91,45,56,52,46,53,50,50,51,55,51,44,51,53,46,54,49,56,54,50,53,93,44,91,45,56,52,46,53,50,53,56,53,44,51,53,46,54,50,52,49,56,54,93,44,91,45,56,52,46,53,56,52,52,55,50,44,51,53,46,54,52,52,52,50,52,93,44,91,45,56,52,46,54,49,57,56,54,53,44,51,53,46,54,52,52,54,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,52,56,50,44,34,98,101,100,115,34,58,50,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,53,56,49,56,57,44,52,50,46,55,55,54,54,51,57,93,44,91,45,56,52,46,49,52,48,55,49,51,44,52,50,46,52,50,52,54,49,49,93,44,91,45,56,52,46,49,51,49,49,51,54,44,52,50,46,52,50,52,53,54,55,93,44,91,45,56,51,46,54,54,52,56,48,56,44,52,50,46,52,51,49,49,55,57,93,44,91,45,56,51,46,54,56,54,52,57,51,44,52,50,46,55,56,51,50,54,51,93,44,91,45,56,51,46,57,50,50,53,49,54,44,52,50,46,55,56,48,56,50,49,93,44,91,45,56,52,46,49,53,56,49,56,57,44,52,50,46,55,55,54,54,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,55,49,49,53,44,34,98,101,100,115,34,58,49,53,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,53,51,50,52,54,44,51,57,46,55,57,49,48,54,51,93,44,91,45,49,48,52,46,56,56,52,54,52,54,44,51,57,46,55,52,48,49,53,54,93,44,91,45,49,48,51,46,55,48,54,53,52,55,44,51,57,46,55,51,57,56,57,52,93,44,91,45,49,48,51,46,55,48,53,55,48,49,44,52,48,46,48,48,49,51,54,54,93,44,91,45,49,48,52,46,49,53,48,51,51,50,44,52,48,46,48,48,48,56,53,54,93,44,91,45,49,48,52,46,57,54,49,52,48,53,44,52,48,46,48,48,48,51,51,55,93,44,91,45,49,48,53,46,48,53,50,56,57,50,44,51,57,46,57,49,52,50,50,52,93,44,91,45,49,48,53,46,48,53,51,50,52,54,44,51,57,46,55,57,49,48,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,76,97,99,107,97,119,97,110,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,52,53,52,44,34,98,101,100,115,34,58,57,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,49,57,56,56,55,44,52,49,46,54,52,50,50,54,51,93,44,91,45,55,53,46,56,51,52,54,57,53,44,52,49,46,52,50,55,50,52,54,93,44,91,45,55,53,46,54,56,55,50,52,52,44,52,49,46,51,51,57,50,49,54,93,44,91,45,55,53,46,54,48,48,55,51,54,44,52,49,46,49,54,49,52,57,55,93,44,91,45,55,53,46,53,48,53,54,48,55,44,52,49,46,50,51,50,53,51,57,93,44,91,45,55,53,46,52,52,49,52,50,49,44,52,49,46,50,54,48,48,53,51,93,44,91,45,55,53,46,52,54,50,52,49,49,44,52,49,46,54,52,49,53,56,55,93,44,91,45,55,53,46,55,49,57,56,56,55,44,52,49,46,54,52,50,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,80,111,110,116,111,116,111,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,51,53,56,44,34,98,101,100,115,34,58,50,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,51,50,52,51,54,44,51,52,46,56,53,52,52,57,54,93,44,91,45,57,54,46,57,51,50,52,53,50,44,51,52,46,54,51,54,56,49,50,93,44,91,45,57,54,46,56,50,55,49,52,52,44,51,52,46,53,57,51,50,50,93,44,91,45,57,54,46,56,50,55,51,52,51,44,51,52,46,53,48,54,48,54,50,93,44,91,45,57,54,46,53,49,51,55,56,55,44,51,52,46,53,48,53,51,57,54,93,44,91,45,57,54,46,53,49,50,49,55,49,44,51,52,46,54,56,48,48,54,53,93,44,91,45,57,54,46,52,48,54,52,56,51,44,51,52,46,55,54,55,51,50,56,93,44,91,45,57,54,46,52,49,51,55,56,49,44,51,52,46,57,49,53,54,49,57,93,44,91,45,57,54,46,52,57,48,55,56,54,44,51,52,46,57,49,48,53,56,53,93,44,91,45,57,54,46,54,54,55,54,57,50,44,51,52,46,57,50,57,53,56,51,93,44,91,45,57,54,46,55,55,53,54,56,49,44,51,52,46,56,57,57,57,53,56,93,44,91,45,57,54,46,57,51,48,53,56,54,44,51,52,46,57,54,52,51,54,52,93,44,91,45,57,54,46,57,51,50,52,51,54,44,51,52,46,56,53,52,52,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,114,101,101,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,49,54,48,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,50,50,49,50,44,51,54,46,49,53,57,57,48,51,93,44,91,45,57,54,46,54,49,57,54,53,53,44,51,53,46,57,52,49,53,55,49,93,44,91,45,57,54,46,54,50,48,56,50,56,44,51,53,46,54,51,57,48,48,53,93,44,91,45,57,54,46,49,57,50,53,54,51,44,51,53,46,54,51,57,48,56,55,93,44,91,45,57,54,46,49,57,50,52,48,51,44,51,53,46,56,53,54,57,57,51,93,44,91,45,57,54,46,48,51,51,49,49,56,44,51,53,46,56,53,54,56,50,52,93,44,91,45,57,54,46,48,50,57,53,56,51,44,51,54,46,48,55,53,51,54,54,93,44,91,45,57,54,46,50,57,55,57,48,53,44,51,54,46,48,55,53,55,54,54,93,44,91,45,57,54,46,50,57,55,56,56,56,44,51,54,46,49,54,50,50,55,57,93,44,91,45,57,54,46,54,50,50,49,50,44,51,54,46,49,53,57,57,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,53,55,34,44,34,78,65,77,69,34,58,34,84,121,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,57,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,53,54,49,57,52,51,44,51,49,46,48,53,56,57,53,50,93,44,91,45,57,52,46,54,53,55,57,57,50,44,51,49,46,48,49,50,48,48,55,93,44,91,45,57,52,46,53,52,53,55,49,55,44,51,48,46,53,50,54,57,55,55,93,44,91,45,57,52,46,48,55,49,54,56,57,44,51,48,46,53,50,54,48,51,51,93,44,91,45,57,52,46,48,53,48,57,54,44,51,48,46,54,51,56,53,54,56,93,44,91,45,57,52,46,49,50,53,56,50,52,44,51,48,46,54,56,52,48,53,50,93,44,91,45,57,52,46,50,53,50,50,57,56,44,51,49,46,48,49,56,57,51,49,93,44,91,45,57,52,46,52,53,55,56,49,54,44,51,49,46,48,51,51,51,50,53,93,44,91,45,57,52,46,53,54,49,57,52,51,44,51,49,46,48,53,56,57,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,86,97,110,32,66,117,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,48,50,56,55,54,44,51,53,46,55,57,52,57,57,54,93,44,91,45,56,53,46,53,57,52,54,51,50,44,51,53,46,54,49,55,56,57,56,93,44,91,45,56,53,46,53,53,55,53,51,53,44,51,53,46,53,51,50,57,55,55,93,44,91,45,56,53,46,52,50,51,56,48,52,44,51,53,46,53,54,55,52,50,50,93,44,91,45,56,53,46,50,53,52,48,54,50,44,51,53,46,55,54,53,54,49,49,93,44,91,45,56,53,46,50,53,51,53,49,56,44,51,53,46,55,54,54,57,50,55,93,44,91,45,56,53,46,50,55,50,54,54,52,44,51,53,46,55,56,55,55,49,56,93,44,91,45,56,53,46,50,54,57,51,53,57,44,51,53,46,55,57,51,51,56,56,93,44,91,45,56,53,46,52,52,57,51,54,44,51,53,46,56,50,49,53,53,57,93,44,91,45,56,53,46,54,48,50,56,55,54,44,51,53,46,55,57,52,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,80,111,116,116,97,119,97,116,111,109,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,48,48,48,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,52,50,49,49,52,44,51,53,46,51,55,54,56,54,93,44,91,45,57,55,46,49,52,50,51,52,57,44,51,52,46,57,50,56,49,55,54,93,44,91,45,57,55,46,48,49,53,57,51,44,51,52,46,57,48,55,51,52,56,93,44,91,45,57,54,46,57,51,48,53,56,54,44,51,52,46,57,54,52,51,54,52,93,44,91,45,57,54,46,55,55,53,54,56,49,44,51,52,46,56,57,57,57,53,56,93,44,91,45,57,54,46,55,55,54,54,57,52,44,51,53,46,52,48,53,52,49,55,93,44,91,45,57,54,46,54,50,51,54,57,57,44,51,53,46,52,48,48,55,50,50,93,44,91,45,57,54,46,54,50,52,54,56,49,44,51,53,46,52,54,50,55,48,55,93,44,91,45,57,55,46,49,52,49,52,57,44,51,53,46,52,54,51,57,55,55,93,44,91,45,57,55,46,49,52,50,49,49,52,44,51,53,46,51,55,54,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,84,111,108,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,50,54,57,44,34,98,101,100,115,34,58,50,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,53,48,57,50,51,51,44,52,50,46,48,51,52,51,55,54,93,44,91,45,55,50,46,53,49,56,51,51,44,52,49,46,56,53,54,56,57,57,93,44,91,45,55,50,46,52,49,48,51,54,55,44,52,49,46,54,48,50,53,56,49,93,44,91,45,55,50,46,50,51,57,53,53,57,44,52,49,46,55,49,52,49,57,49,93,44,91,45,55,50,46,50,49,54,57,56,44,52,49,46,57,53,56,49,54,49,93,44,91,45,55,50,46,49,48,50,49,55,44,52,50,46,48,50,56,56,54,57,93,44,91,45,55,50,46,49,51,53,55,49,53,44,52,50,46,48,51,48,50,50,50,93,44,91,45,55,50,46,53,48,57,50,51,51,44,52,50,46,48,51,52,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,83,111,99,111,114,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,48,48,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,55,49,50,55,53,52,44,51,51,46,52,55,54,56,51,50,93,44,91,45,49,48,54,46,52,55,52,50,57,53,44,51,51,46,52,55,53,55,56,54,93,44,91,45,49,48,54,46,51,55,50,55,57,55,44,51,51,46,52,55,57,56,55,53,93,44,91,45,49,48,54,46,51,55,51,54,54,44,51,51,46,54,54,48,53,48,52,93,44,91,45,49,48,54,46,48,53,50,55,49,56,44,51,51,46,54,53,48,50,57,55,93,44,91,45,49,48,54,46,48,53,50,54,54,50,44,51,51,46,56,50,53,54,48,54,93,44,91,45,49,48,53,46,57,50,52,54,56,53,44,51,51,46,56,50,53,54,50,52,93,44,91,45,49,48,53,46,57,50,53,57,54,56,44,51,52,46,50,53,57,57,57,93,44,91,45,49,48,54,46,52,49,53,57,55,50,44,51,52,46,50,53,57,56,50,50,93,44,91,45,49,48,54,46,52,49,54,57,50,52,44,51,52,46,52,51,57,54,56,55,93,44,91,45,49,48,54,46,55,54,56,50,56,49,44,51,52,46,53,51,49,50,54,50,93,44,91,45,49,48,54,46,56,56,50,56,49,51,44,51,52,46,53,55,57,54,50,56,93,44,91,45,49,48,55,46,50,48,49,55,52,51,44,51,52,46,53,55,56,55,53,55,93,44,91,45,49,48,55,46,55,50,52,55,57,52,44,51,52,46,53,55,56,49,51,50,93,44,91,45,49,48,55,46,55,49,54,51,48,49,44,51,52,46,50,53,57,56,53,54,93,44,91,45,49,48,55,46,55,49,50,55,53,52,44,51,51,46,52,55,54,56,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,116,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,55,49,50,52,55,44,51,49,46,49,56,51,57,56,56,93,44,91,45,56,50,46,54,55,49,54,54,57,44,51,49,46,49,56,51,55,51,57,93,44,91,45,56,50,46,54,50,56,57,55,53,44,51,49,46,51,54,51,57,51,93,44,91,45,56,50,46,56,49,55,53,52,52,44,51,49,46,51,54,52,52,56,54,93,44,91,45,56,50,46,56,52,52,48,57,51,44,51,49,46,52,48,51,51,50,56,93,44,91,45,56,51,46,49,52,48,52,56,51,44,51,49,46,52,50,48,51,57,53,93,44,91,45,56,51,46,48,52,54,57,56,56,44,51,49,46,50,56,50,57,54,54,93,44,91,45,56,51,46,48,52,54,56,56,53,44,51,49,46,49,56,51,54,56,93,44,91,45,56,50,46,57,55,49,50,52,55,44,51,49,46,49,56,51,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,117,118,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,52,50,50,57,44,34,98,101,100,115,34,58,51,52,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,53,56,55,57,51,44,51,48,46,53,48,49,53,48,52,93,44,91,45,56,49,46,53,52,51,48,49,56,44,51,48,46,53,50,51,56,56,57,93,44,91,45,56,49,46,54,50,52,53,49,51,44,51,48,46,53,56,54,50,51,50,93,44,91,45,56,49,46,56,51,49,50,50,55,44,51,48,46,52,54,55,52,51,55,93,44,91,45,56,50,46,48,52,57,50,51,54,44,51,48,46,50,55,51,52,51,50,93,44,91,45,56,50,46,48,52,57,52,49,49,44,51,48,46,49,56,54,57,51,51,93,44,91,45,56,49,46,54,55,57,54,50,54,44,51,48,46,49,57,48,52,57,53,93,44,91,45,56,49,46,54,56,48,50,49,53,44,51,48,46,49,50,49,50,52,93,44,91,45,56,49,46,52,51,51,55,51,55,44,51,48,46,49,48,54,48,50,56,93,44,91,45,56,49,46,52,51,54,57,50,57,44,51,48,46,50,53,50,51,51,53,93,44,91,45,56,49,46,51,50,48,49,56,53,44,51,48,46,50,53,50,57,50,93,44,91,45,56,49,46,51,50,52,56,55,55,44,51,48,46,52,50,52,55,51,53,93,44,91,45,56,49,46,51,53,56,55,57,51,44,51,48,46,53,48,49,53,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,70,97,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,57,57,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,48,49,49,50,51,44,51,49,46,53,50,50,50,54,57,93,44,91,45,57,55,46,50,55,56,49,49,51,44,51,49,46,50,55,57,55,57,57,93,44,91,45,57,55,46,48,55,48,49,56,56,44,51,48,46,57,56,54,50,50,93,44,91,45,57,54,46,56,50,57,49,50,49,44,51,49,46,49,48,53,56,55,49,93,44,91,45,57,54,46,53,57,54,56,54,50,44,51,49,46,50,50,48,57,93,44,91,45,57,54,46,56,48,49,49,50,51,44,51,49,46,53,50,50,50,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,89,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,55,51,44,34,98,101,100,115,34,58,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,55,56,49,51,54,44,51,53,46,51,49,55,53,48,51,93,44,91,45,57,51,46,50,55,57,57,50,57,44,51,53,46,50,49,50,53,53,54,93,44,91,45,57,51,46,52,53,55,48,50,50,44,51,53,46,50,49,53,55,56,50,93,44,91,45,57,51,46,53,50,57,55,51,57,44,51,53,46,49,52,53,52,51,51,93,44,91,45,57,51,46,55,48,54,56,52,50,44,51,53,46,49,51,52,57,52,51,93,44,91,45,57,51,46,55,48,52,56,56,53,44,51,53,46,48,49,57,55,49,53,93,44,91,45,57,51,46,55,49,48,50,57,55,44,51,52,46,55,52,53,50,57,54,93,44,91,45,57,51,46,51,57,52,50,56,57,44,51,52,46,55,52,51,51,57,51,93,44,91,45,57,51,46,50,56,55,55,56,53,44,51,52,46,55,55,51,49,57,51,93,44,91,45,57,51,46,50,56,56,50,56,52,44,51,52,46,56,54,48,57,57,50,93,44,91,45,57,51,46,48,52,48,53,50,53,44,51,53,46,48,55,54,57,50,51,93,44,91,45,57,50,46,56,57,54,49,48,57,44,51,53,46,49,55,48,54,55,56,93,44,91,45,57,51,46,48,56,52,54,55,56,44,51,53,46,49,50,55,51,57,93,44,91,45,57,51,46,49,53,54,48,55,56,44,51,53,46,50,51,53,51,48,55,93,44,91,45,57,51,46,50,55,56,49,51,54,44,51,53,46,51,49,55,53,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,111,109,97,110,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,48,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,53,54,50,48,51,44,51,54,46,57,57,57,52,55,49,93,44,91,45,57,57,46,48,48,48,51,48,49,44,51,54,46,57,57,57,52,54,55,93,44,91,45,57,57,46,48,49,49,52,57,57,44,51,55,46,51,56,52,50,54,51,93,44,91,45,57,57,46,53,52,51,49,56,57,44,51,55,46,51,56,49,49,50,52,93,44,91,45,57,57,46,53,52,49,49,49,54,44,51,54,46,57,57,57,54,49,93,44,91,45,57,57,46,52,53,54,50,48,51,44,51,54,46,57,57,57,52,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,74,101,115,115,97,109,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,52,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,54,48,51,52,44,51,56,46,48,48,51,56,51,54,93,44,91,45,56,52,46,55,48,57,57,49,56,44,51,55,46,56,54,49,57,53,50,93,44,91,45,56,52,46,55,49,54,57,50,53,44,51,55,46,56,49,53,51,56,57,93,44,91,45,56,52,46,53,50,53,54,52,51,44,51,55,46,55,54,57,52,57,55,93,44,91,45,56,52,46,52,51,53,55,50,44,51,55,46,56,52,55,50,48,50,93,44,91,45,56,52,46,52,55,57,54,50,57,44,51,55,46,57,52,48,50,49,57,93,44,91,45,56,52,46,54,54,48,51,52,44,51,56,46,48,48,51,56,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,51,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,51,57,50,53,53,44,51,54,46,56,52,49,52,55,54,93,44,91,45,56,53,46,57,55,54,57,49,44,51,54,46,55,50,50,55,50,50,93,44,91,45,56,53,46,57,55,54,52,49,56,44,51,54,46,54,50,56,52,57,51,93,44,91,45,56,53,46,55,56,56,55,50,54,44,51,54,46,54,50,50,48,52,56,93,44,91,45,56,53,46,52,51,54,52,52,50,44,51,54,46,54,49,56,54,53,53,93,44,91,45,56,53,46,53,57,54,50,49,52,44,51,54,46,56,49,56,48,51,57,93,44,91,45,56,53,46,55,51,57,50,53,53,44,51,54,46,56,52,49,52,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,75,105,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,48,49,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,50,48,54,57,50,44,51,53,46,48,57,55,55,54,53,93,44,91,45,57,56,46,55,52,57,49,53,56,44,51,53,46,49,49,54,51,52,54,93,44,91,45,57,57,46,51,54,48,50,50,54,44,51,53,46,49,49,54,55,51,56,93,44,91,45,57,57,46,52,48,57,50,57,49,44,51,53,46,49,49,52,53,48,57,93,44,91,45,57,57,46,51,50,54,55,53,55,44,51,53,46,48,49,56,57,49,50,93,44,91,45,57,57,46,51,48,54,50,50,44,51,52,46,56,53,55,54,51,50,93,44,91,45,57,57,46,50,52,54,52,54,50,44,51,52,46,56,50,50,49,49,52,93,44,91,45,57,57,46,49,48,51,49,53,44,51,52,46,54,51,55,57,53,93,44,91,45,57,57,46,48,48,49,49,48,55,44,51,52,46,53,57,52,51,54,54,93,44,91,45,57,56,46,56,50,54,48,48,56,44,51,52,46,53,57,52,52,49,51,93,44,91,45,57,56,46,56,50,54,48,57,49,44,51,52,46,56,53,53,52,50,56,93,44,91,45,57,56,46,54,49,57,56,49,54,44,51,52,46,56,53,53,51,52,93,44,91,45,57,56,46,54,50,48,54,57,50,44,51,53,46,48,57,55,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,55,52,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,55,48,49,49,53,44,52,52,46,49,57,52,57,55,49,93,44,91,45,57,55,46,51,54,57,52,54,51,44,52,51,46,56,52,56,53,50,54,93,44,91,45,57,55,46,49,50,57,48,56,57,44,52,51,46,56,52,55,57,55,51,93,44,91,45,57,54,46,56,56,56,54,54,52,44,52,51,46,56,52,56,51,56,53,93,44,91,45,57,54,46,56,56,57,50,49,54,44,52,52,46,49,57,53,55,48,53,93,44,91,45,57,55,46,49,50,57,54,55,49,44,52,52,46,49,57,53,57,51,51,93,44,91,45,57,55,46,51,55,48,49,49,53,44,52,52,46,49,57,52,57,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,97,115,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,49,56,52,53,54,44,51,54,46,53,52,49,54,53,51,93,44,91,45,55,57,46,51,52,51,49,49,55,44,51,54,46,53,52,49,53,57,93,44,91,45,55,57,46,52,55,48,48,53,55,44,51,54,46,53,52,48,57,55,49,93,44,91,45,55,57,46,53,49,51,54,51,56,44,51,54,46,53,52,48,57,48,50,93,44,91,45,55,57,46,53,51,49,56,54,53,44,51,54,46,50,52,57,54,55,51,93,44,91,45,55,57,46,50,53,55,57,53,50,44,51,54,46,50,52,51,52,52,53,93,44,91,45,55,57,46,49,53,51,57,57,55,44,51,54,46,50,52,49,56,55,53,93,44,91,45,55,57,46,49,51,56,51,50,44,51,54,46,53,52,49,57,55,53,93,44,91,45,55,57,46,50,49,56,52,53,54,44,51,54,46,53,52,49,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,55,55,34,44,34,78,65,77,69,34,58,34,80,114,101,115,105,100,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,55,57,56,48,49,44,51,48,46,54,50,57,50,53,56,93,44,91,45,49,48,52,46,56,57,57,48,53,50,44,51,48,46,53,55,48,55,54,57,93,44,91,45,49,48,52,46,56,53,57,51,57,55,44,51,48,46,51,57,49,49,50,53,93,44,91,45,49,48,52,46,54,56,55,48,55,54,44,51,48,46,49,55,57,51,52,50,93,44,91,45,49,48,52,46,55,48,55,50,52,57,44,51,48,46,48,53,48,49,51,52,93,44,91,45,49,48,52,46,54,55,53,56,54,49,44,50,57,46,57,49,53,53,51,55,93,44,91,45,49,48,52,46,53,52,57,55,57,54,44,50,57,46,55,52,48,54,52,49,93,44,91,45,49,48,52,46,53,49,52,48,51,49,44,50,57,46,54,51,56,54,51,93,44,91,45,49,48,52,46,51,51,56,50,48,49,44,50,57,46,53,50,48,49,56,50,93,44,91,45,49,48,52,46,50,48,57,49,53,51,44,50,57,46,52,56,49,52,54,56,93,44,91,45,49,48,52,46,49,54,56,51,56,44,50,57,46,51,57,54,49,51,54,93,44,91,45,49,48,51,46,57,55,50,48,53,57,44,50,57,46,50,57,54,48,53,53,93,44,91,45,49,48,51,46,55,57,50,55,48,51,44,50,57,46,50,54,50,52,57,57,93,44,91,45,49,48,51,46,56,48,48,54,56,44,51,48,46,52,49,50,53,50,55,93,44,91,45,49,48,51,46,57,48,49,48,49,44,51,48,46,52,49,50,49,57,93,44,91,45,49,48,52,46,57,55,57,56,48,49,44,51,48,46,54,50,57,50,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,53,56,49,49,44,34,98,101,100,115,34,58,50,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,53,51,55,51,54,44,51,57,46,56,53,48,52,53,56,93,44,91,45,56,52,46,48,57,50,57,51,56,44,51,57,46,56,51,56,51,52,53,93,44,91,45,56,52,46,49,49,52,49,57,53,44,51,57,46,53,55,55,57,56,51,93,44,91,45,56,51,46,57,55,55,48,48,53,44,51,57,46,53,54,57,49,54,57,93,44,91,45,56,51,46,54,55,48,49,57,54,44,51,57,46,53,53,48,50,53,52,93,44,91,45,56,51,46,54,53,51,51,51,44,51,57,46,55,49,54,56,55,54,93,44,91,45,56,51,46,54,52,55,49,54,57,44,51,57,46,55,55,51,48,50,57,93,44,91,45,56,51,46,56,50,55,52,50,53,44,51,57,46,56,50,50,54,53,49,93,44,91,45,56,52,46,48,53,51,55,51,54,44,51,57,46,56,53,48,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,56,57,34,44,34,78,65,77,69,34,58,34,87,105,108,108,97,99,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,53,55,52,48,53,44,50,54,46,54,49,49,55,54,57,93,44,91,45,57,56,46,48,48,52,49,56,57,44,50,54,46,52,52,56,55,56,52,93,44,91,45,57,55,46,56,54,49,57,50,44,50,54,46,52,51,51,53,55,57,93,44,91,45,57,55,46,56,54,49,56,55,53,44,50,54,46,51,52,56,49,53,54,93,44,91,45,57,55,46,53,50,55,53,56,50,44,50,54,46,50,57,57,51,48,52,93,44,91,45,57,55,46,51,56,54,53,48,53,44,50,54,46,52,49,48,52,51,55,93,44,91,45,57,55,46,49,54,55,50,53,53,44,50,54,46,52,49,50,55,49,53,93,44,91,45,57,55,46,50,50,53,51,55,52,44,50,54,46,54,48,48,50,50,55,93,44,91,45,57,55,46,56,54,49,54,56,56,44,50,54,46,53,57,55,57,57,53,93,44,91,45,57,55,46,57,53,55,52,48,53,44,50,54,46,54,49,49,55,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,97,121,97,109,195,179,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,57,53,53,44,34,98,101,100,115,34,58,53,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,57,54,57,56,44,49,56,46,51,56,57,50,56,57,93,44,91,45,54,54,46,50,48,52,55,51,52,44,49,56,46,51,49,54,48,51,53,93,44,91,45,54,54,46,50,48,54,49,51,53,44,49,56,46,50,55,54,54,54,93,44,91,45,54,54,46,49,57,48,54,55,54,44,49,56,46,50,53,56,56,52,93,44,91,45,54,54,46,49,52,51,56,54,49,44,49,56,46,50,55,57,53,57,93,44,91,45,54,54,46,49,51,49,53,56,44,49,56,46,52,50,52,54,53,54,93,44,91,45,54,54,46,49,54,57,53,49,54,44,49,56,46,52,51,48,57,57,56,93,44,91,45,54,54,46,49,57,54,57,56,44,49,56,46,51,56,57,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,56,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,56,34,44,34,78,65,77,69,34,58,34,76,111,115,32,65,108,97,109,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,53,54,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,50,52,56,49,54,49,44,51,53,46,57,54,54,51,50,55,93,44,91,45,49,48,54,46,51,57,57,55,49,51,44,51,53,46,57,54,48,48,57,53,93,44,91,45,49,48,54,46,52,48,48,55,44,51,53,46,56,48,55,53,54,55,93,44,91,45,49,48,54,46,50,53,48,52,57,57,44,51,53,46,55,53,53,56,49,56,93,44,91,45,49,48,54,46,50,52,56,50,53,55,44,51,53,46,56,51,57,49,55,56,93,44,91,45,49,48,54,46,50,52,56,51,52,53,44,51,53,46,56,53,53,54,53,50,93,44,91,45,49,48,54,46,50,52,53,54,52,57,44,51,53,46,57,51,48,55,52,50,93,44,91,45,49,48,54,46,50,52,56,49,54,49,44,51,53,46,57,54,54,51,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,50,34,44,34,78,65,77,69,34,58,34,75,101,110,97,105,32,80,101,110,105,110,115,117,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,50,50,48,44,34,98,101,100,115,34,58,55,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,56,46,55,52,53,54,49,56,44,54,48,46,55,51,51,48,48,55,93,44,91,45,49,52,57,46,48,51,55,55,52,49,44,54,48,46,55,51,50,57,56,55,93,44,91,45,49,52,57,46,48,51,52,48,56,44,54,48,46,56,52,56,53,51,52,93,44,91,45,49,52,57,46,51,53,57,51,57,57,44,54,48,46,57,48,54,51,51,93,44,91,45,49,53,48,46,48,54,57,50,51,56,44,54,49,46,48,55,57,54,51,54,93,44,91,45,49,53,48,46,50,52,55,55,52,54,44,54,49,46,48,55,57,54,51,55,93,44,91,45,49,53,48,46,52,50,52,49,52,56,44,54,49,46,49,54,54,51,48,56,93,44,91,45,49,53,48,46,55,55,53,56,54,51,44,54,49,46,48,55,57,52,54,54,93,44,91,45,49,53,48,46,57,55,52,48,49,55,44,54,49,46,49,54,54,50,56,55,93,44,91,45,49,53,48,46,57,55,52,48,49,52,44,54,49,46,50,53,50,57,52,93,44,91,45,49,53,49,46,51,51,50,56,48,50,44,54,49,46,50,53,50,57,51,54,93,44,91,45,49,53,49,46,51,51,50,55,56,52,44,54,49,46,52,50,54,50,51,57,93,44,91,45,49,53,50,46,57,57,57,56,56,50,44,54,49,46,52,50,54,49,55,50,93,44,91,45,49,53,51,46,52,56,53,53,55,53,44,54,49,46,52,50,54,49,53,51,93,44,91,45,49,53,51,46,52,52,48,56,55,55,44,54,49,46,49,54,54,49,57,54,93,44,91,45,49,53,51,46,52,52,48,56,56,52,44,54,48,46,57,48,54,50,51,54,93,44,91,45,49,53,51,46,51,57,55,50,56,52,44,54,48,46,56,49,57,53,56,49,93,44,91,45,49,53,51,46,51,57,55,50,55,54,44,54,48,46,52,55,50,57,52,56,93,44,91,45,49,53,51,46,53,50,56,52,52,49,44,54,48,46,52,55,50,57,51,57,93,44,91,45,49,53,51,46,53,50,56,51,57,50,44,54,48,46,49,50,54,50,56,49,93,44,91,45,49,53,51,46,54,53,54,57,56,44,54,48,46,49,50,54,50,55,55,93,44,91,45,49,53,51,46,54,53,54,57,55,55,44,53,57,46,55,55,57,54,48,55,93,44,91,45,49,53,51,46,55,56,51,48,54,56,44,53,57,46,54,57,50,57,50,54,93,44,91,45,49,53,51,46,57,53,51,49,57,56,44,53,57,46,54,57,50,57,49,56,93,44,91,45,49,53,51,46,57,53,51,49,56,49,44,53,57,46,53,49,57,53,54,57,93,44,91,45,49,53,52,46,49,50,51,51,50,49,44,53,57,46,52,51,50,56,56,55,93,44,91,45,49,53,52,46,52,49,50,48,50,56,44,53,57,46,52,51,50,56,56,50,93,44,91,45,49,53,52,46,52,49,50,48,49,51,44,53,57,46,50,53,57,53,50,52,93,44,91,45,49,53,52,46,55,52,56,56,54,49,44,53,57,46,50,53,57,53,49,56,93,44,91,45,49,53,52,46,54,57,53,49,48,53,44,53,57,46,48,56,54,49,53,57,93,44,91,45,49,53,52,46,54,57,53,48,51,54,44,53,56,46,55,51,57,52,51,49,93,44,91,45,49,53,52,46,54,52,50,53,52,53,44,53,56,46,54,53,50,55,52,55,93,44,91,45,49,53,52,46,51,48,53,54,57,49,44,53,56,46,54,53,50,55,53,49,93,44,91,45,49,53,51,46,56,49,55,48,55,54,44,53,56,46,54,53,50,55,54,93,44,91,45,49,53,51,46,56,49,55,48,55,54,44,53,56,46,55,51,57,52,52,54,93,44,91,45,49,53,51,46,54,51,57,48,50,55,44,53,56,46,55,51,57,52,53,93,44,91,45,49,53,51,46,54,51,57,52,48,51,44,53,56,46,56,53,53,48,50,57,93,44,91,45,49,53,51,46,50,53,51,54,49,51,44,53,56,46,56,53,53,48,51,54,93,44,91,45,49,53,51,46,49,56,52,48,56,54,44,53,56,46,57,48,53,55,50,57,93,44,91,45,49,53,51,46,48,50,49,49,56,44,53,57,46,48,48,50,52,53,50,93,44,91,45,49,53,49,46,52,52,52,49,55,51,44,53,57,46,48,57,57,54,56,55,93,44,91,45,49,53,48,46,57,57,50,49,57,52,44,53,57,46,49,56,48,56,51,55,93,44,91,45,49,53,48,46,52,53,54,52,53,54,44,53,57,46,51,48,56,54,56,56,93,44,91,45,49,52,57,46,54,50,49,51,44,53,57,46,53,50,55,53,49,54,93,44,91,45,49,52,57,46,52,54,55,53,48,52,44,53,57,46,55,51,51,55,54,55,93,44,91,45,49,52,57,46,50,54,57,54,50,53,44,53,57,46,56,52,53,52,50,93,44,91,45,49,52,56,46,57,52,56,55,54,50,44,53,57,46,56,57,50,55,49,56,93,44,91,45,49,52,56,46,53,56,54,49,56,44,53,57,46,57,51,56,53,56,53,93,44,91,45,49,52,56,46,53,54,51,55,49,53,44,54,48,46,52,49,53,49,55,50,93,44,91,45,49,52,56,46,54,54,52,52,55,44,54,48,46,52,49,53,49,56,51,93,44,91,45,49,52,56,46,54,53,55,49,49,57,44,54,48,46,55,51,50,57,55,54,93,44,91,45,49,52,56,46,55,52,53,54,49,56,44,54,48,46,55,51,51,48,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,97,108,100,119,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,56,49,48,55,44,34,98,101,100,115,34,58,52,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,55,50,56,54,57,44,51,49,46,49,54,50,54,57,52,93,44,91,45,56,55,46,57,52,49,53,54,49,44,51,49,46,48,54,49,51,52,50,93,44,91,45,56,56,46,48,50,54,51,49,57,44,51,48,46,55,53,51,51,53,56,93,44,91,45,56,55,46,57,56,55,56,51,57,44,51,48,46,54,51,55,49,52,57,93,44,91,45,56,56,46,48,51,55,51,48,57,44,51,48,46,49,52,54,53,54,49,93,44,91,45,56,55,46,53,49,56,51,52,54,44,51,48,46,50,50,57,53,48,54,93,44,91,45,56,55,46,52,57,57,57,56,44,51,48,46,51,50,56,57,53,55,93,44,91,45,56,55,46,51,54,57,51,56,51,44,51,48,46,52,51,49,57,52,56,93,44,91,45,56,55,46,52,52,53,49,48,51,44,51,48,46,53,50,56,57,48,57,93,44,91,45,56,55,46,51,57,51,50,57,52,44,51,48,46,54,50,55,50,49,56,93,44,91,45,56,55,46,54,50,54,50,50,52,44,51,48,46,56,52,54,54,54,52,93,44,91,45,56,55,46,53,57,56,56,50,57,44,51,48,46,57,57,55,52,53,53,93,44,91,45,56,55,46,54,49,53,56,57,44,51,49,46,50,52,52,52,53,56,93,44,91,45,56,55,46,55,54,53,49,53,50,44,51,49,46,50,57,55,51,52,54,93,44,91,45,56,55,46,56,55,51,56,56,55,44,51,49,46,50,48,49,52,57,54,93,44,91,45,56,55,46,57,52,54,53,56,56,44,51,49,46,49,57,50,57,51,93,44,91,45,56,55,46,57,55,50,56,54,57,44,51,49,46,49,54,50,54,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,112,112,97,110,111,111,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,49,48,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,51,57,48,57,49,44,52,48,46,56,57,56,56,56,54,93,44,91,45,57,51,46,48,57,55,53,57,53,44,52,48,46,56,57,56,52,53,49,93,44,91,45,57,51,46,48,57,55,50,57,54,44,52,48,46,53,56,52,48,49,52,93,44,91,45,57,50,46,55,49,52,53,57,54,44,52,48,46,53,56,57,52,50,55,93,44,91,45,57,50,46,54,51,55,56,57,56,44,52,48,46,53,57,48,56,53,51,93,44,91,45,57,50,46,54,51,57,48,57,49,44,52,48,46,56,57,56,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,78,101,119,32,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,48,51,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,50,51,54,55,53,44,51,55,46,54,50,54,56,56,49,93,44,91,45,55,55,46,50,52,48,57,56,56,44,51,55,46,53,51,56,48,56,56,93,44,91,45,55,55,46,49,55,55,51,50,52,44,51,55,46,52,57,48,54,93,44,91,45,55,54,46,57,48,52,52,55,49,44,51,55,46,51,55,55,54,54,53,93,44,91,45,55,54,46,55,52,49,57,56,52,44,51,55,46,52,54,55,48,55,54,93,44,91,45,55,54,46,55,57,50,49,56,52,44,51,55,46,53,49,55,53,57,52,93,44,91,45,55,55,46,49,50,51,54,55,53,44,51,55,46,54,50,54,56,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,51,34,44,34,78,65,77,69,34,58,34,84,97,108,98,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,48,48,53,51,56,44,51,50,46,56,52,52,54,52,93,44,91,45,56,52,46,54,57,52,54,48,51,44,51,50,46,53,56,51,57,52,53,93,44,91,45,56,52,46,54,57,52,53,49,44,51,50,46,53,49,56,55,51,50,93,44,91,45,56,52,46,54,51,55,51,50,51,44,51,50,46,53,51,52,56,53,53,93,44,91,45,56,52,46,52,52,52,51,53,51,44,51,50,46,53,54,50,48,56,51,93,44,91,45,56,52,46,50,56,54,50,52,54,44,51,50,46,55,52,55,54,50,54,93,44,91,45,56,52,46,53,48,54,56,56,56,44,51,50,46,56,56,49,55,56,56,93,44,91,45,56,52,46,55,48,48,53,51,56,44,51,50,46,56,52,52,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,49,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,52,52,54,49,50,52,44,52,52,46,50,49,55,54,53,53,93,44,91,45,55,53,46,52,56,52,53,50,56,44,52,52,46,48,55,52,49,55,50,93,44,91,45,55,53,46,55,53,56,49,53,55,44,52,51,46,56,55,56,55,56,53,93,44,91,45,55,53,46,55,55,52,53,53,51,44,52,51,46,54,56,56,56,56,52,93,44,91,45,55,53,46,55,53,54,50,49,51,44,52,51,46,52,55,48,51,56,56,93,44,91,45,55,53,46,53,51,51,53,44,52,51,46,52,49,57,55,53,54,93,44,91,45,55,53,46,49,49,48,49,54,44,52,51,46,54,49,53,50,50,57,93,44,91,45,55,53,46,49,55,48,49,53,57,44,52,52,46,48,57,54,57,53,57,93,44,91,45,55,53,46,52,52,54,49,50,52,44,52,52,46,50,49,55,54,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,56,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,56,51,55,49,44,51,56,46,54,49,49,57,56,50,93,44,91,45,56,49,46,49,57,52,49,49,51,44,51,56,46,53,50,55,54,51,52,93,44,91,45,56,49,46,50,56,51,56,55,50,44,51,56,46,52,55,50,48,50,57,93,44,91,45,56,49,46,50,51,49,52,51,52,44,51,56,46,50,54,51,55,49,54,93,44,91,45,56,48,46,57,49,49,51,54,49,44,51,56,46,52,49,52,55,56,53,93,44,91,45,56,48,46,56,56,49,50,51,50,44,51,56,46,53,48,55,48,52,53,93,44,91,45,56,49,46,48,51,49,54,55,55,44,51,56,46,54,54,55,56,51,57,93,44,91,45,56,49,46,48,56,51,55,49,44,51,56,46,54,49,49,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,51,55,44,34,98,101,100,115,34,58,50,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,52,52,56,57,55,44,51,56,46,57,49,50,57,57,56,93,44,91,45,56,53,46,54,56,51,56,51,57,44,51,56,46,56,49,53,52,48,54,93,44,91,45,56,53,46,54,56,51,51,51,56,44,51,56,46,55,51,54,55,51,49,93,44,91,45,56,53,46,53,55,48,57,51,44,51,56,46,54,55,56,55,48,54,93,44,91,45,56,53,46,53,54,57,57,56,44,51,56,46,54,48,54,49,53,53,93,44,91,45,56,53,46,52,50,56,50,56,51,44,51,56,46,53,56,54,51,50,53,93,44,91,45,56,53,46,52,53,50,48,56,55,44,51,56,46,55,48,57,55,56,53,93,44,91,45,56,53,46,51,51,51,48,57,57,44,51,56,46,55,51,54,50,50,56,93,44,91,45,56,53,46,50,48,49,52,55,52,44,51,56,46,54,57,49,51,49,56,93,44,91,45,56,53,46,50,48,51,49,54,54,44,51,56,46,57,49,51,56,48,51,93,44,91,45,56,53,46,52,52,52,56,57,55,44,51,56,46,57,49,50,57,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,101,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,57,48,56,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,57,56,54,57,57,44,51,55,46,53,51,50,55,57,55,93,44,91,45,55,57,46,53,57,51,55,48,55,44,51,55,46,52,52,56,56,54,52,93,44,91,45,55,57,46,54,57,48,48,54,44,51,55,46,52,55,54,51,55,52,93,44,91,45,55,57,46,56,52,55,52,55,54,44,51,55,46,51,48,57,51,53,50,93,44,91,45,55,57,46,56,52,55,50,49,55,44,51,55,46,50,50,53,52,48,54,93,44,91,45,55,57,46,54,55,56,48,50,56,44,51,55,46,49,53,53,49,54,53,93,44,91,45,55,57,46,53,57,52,48,54,57,44,51,55,46,48,52,50,50,48,54,93,44,91,45,55,57,46,52,52,50,56,53,57,44,51,55,46,48,53,53,56,54,55,93,44,91,45,55,57,46,50,53,55,57,53,53,44,51,55,46,51,53,53,56,49,54,93,44,91,45,55,57,46,49,56,53,55,48,50,44,51,55,46,52,54,53,56,50,93,44,91,45,55,57,46,51,52,49,54,55,44,51,55,46,53,49,56,48,49,53,93,44,91,45,55,57,46,52,51,54,57,52,55,44,51,55,46,54,49,55,48,53,55,93,44,91,45,55,57,46,52,57,56,54,57,57,44,51,55,46,53,51,50,55,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,77,111,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,55,50,48,53,50,57,44,51,53,46,56,55,49,49,56,53,93,44,91,45,49,48,53,46,51,52,55,56,51,44,51,53,46,56,55,48,54,57,53,93,44,91,45,49,48,53,46,48,48,54,52,49,55,44,51,53,46,55,55,49,50,53,54,93,44,91,45,49,48,52,46,51,55,48,49,50,44,51,53,46,55,55,57,51,48,50,93,44,91,45,49,48,52,46,51,54,53,55,50,52,44,51,54,46,48,52,52,50,57,93,44,91,45,49,48,52,46,52,51,54,48,53,54,44,51,54,46,50,49,56,53,51,52,93,44,91,45,49,48,52,46,56,54,53,52,48,50,44,51,54,46,50,49,55,56,54,57,93,44,91,45,49,48,52,46,56,54,53,50,52,52,44,51,54,46,50,54,49,52,49,57,93,44,91,45,49,48,53,46,51,52,49,50,54,52,44,51,54,46,50,54,49,56,54,51,93,44,91,45,49,48,53,46,53,51,48,51,56,44,51,54,46,48,49,51,48,49,52,93,44,91,45,49,48,53,46,55,49,55,52,55,55,44,51,53,46,57,55,56,55,52,49,93,44,91,45,49,48,53,46,55,50,48,53,50,57,44,51,53,46,56,55,49,49,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,51,51,50,56,56,44,52,49,46,57,49,54,50,56,54,93,44,91,45,57,56,46,50,57,53,54,48,50,44,52,49,46,57,49,52,57,53,52,93,44,91,45,57,56,46,50,57,53,55,54,44,52,49,46,55,52,49,49,55,56,93,44,91,45,57,56,46,50,57,49,51,52,52,44,52,49,46,52,56,48,55,50,55,93,44,91,45,57,56,46,48,57,57,53,50,51,44,52,49,46,52,56,48,55,55,55,93,44,91,45,57,55,46,56,50,57,56,52,54,44,52,49,46,53,50,54,49,55,52,93,44,91,45,57,55,46,56,51,48,52,57,51,44,52,49,46,55,52,50,50,51,56,93,44,91,45,57,55,46,56,51,51,50,56,56,44,52,49,46,57,49,54,50,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,50,50,56,51,44,51,54,46,56,56,51,56,53,55,93,44,91,45,57,49,46,54,53,56,49,49,49,44,51,54,46,56,56,56,55,50,52,93,44,91,45,57,49,46,54,55,50,51,52,51,44,51,54,46,52,57,57,52,54,51,93,44,91,45,57,49,46,52,53,48,48,48,50,44,51,54,46,52,57,55,54,53,93,44,91,45,57,49,46,52,48,55,49,51,56,44,51,54,46,52,57,55,48,56,49,93,44,91,45,57,49,46,49,50,54,53,50,57,44,51,54,46,52,57,55,55,49,50,93,44,91,45,57,49,46,49,49,53,57,50,54,44,51,54,46,56,50,51,54,55,50,93,44,91,45,57,49,46,50,50,50,56,51,44,51,54,46,56,56,51,56,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,111,117,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,57,50,51,53,56,44,51,54,46,51,54,55,54,54,51,93,44,91,45,56,55,46,56,50,49,56,49,54,44,51,54,46,51,50,56,55,50,52,93,44,91,45,56,55,46,57,56,48,55,52,44,51,54,46,51,53,51,51,48,55,93,44,91,45,56,55,46,57,52,57,54,48,51,44,51,54,46,50,52,51,49,54,93,44,91,45,56,55,46,55,57,56,53,48,56,44,51,54,46,50,52,52,55,53,52,93,44,91,45,56,55,46,53,54,54,55,57,56,44,51,54,46,49,55,55,56,53,55,93,44,91,45,56,55,46,53,49,51,53,51,51,44,51,54,46,51,51,52,55,49,51,93,44,91,45,56,55,46,53,57,50,51,53,56,44,51,54,46,51,54,55,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,53,56,56,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,49,49,53,49,55,50,44,52,49,46,54,53,49,56,50,53,93,44,91,45,55,54,46,50,50,48,49,51,57,44,52,49,46,53,52,49,50,56,53,93,44,91,45,55,54,46,50,56,51,49,44,52,49,46,51,55,54,53,49,55,93,44,91,45,55,54,46,48,48,53,48,55,44,52,49,46,51,56,52,53,53,49,93,44,91,45,55,53,46,56,51,52,54,57,53,44,52,49,46,52,50,55,50,52,54,93,44,91,45,55,53,46,55,49,57,56,56,55,44,52,49,46,54,52,50,50,54,51,93,44,91,45,55,54,46,49,49,53,49,55,50,44,52,49,46,54,53,49,56,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,76,101,110,111,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,50,50,55,44,34,98,101,100,115,34,58,49,48,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,48,54,50,52,56,44,51,53,46,51,54,56,55,53,52,93,44,91,45,55,55,46,56,51,52,50,52,57,44,51,53,46,49,55,55,56,52,54,93,44,91,45,55,55,46,55,54,57,49,55,55,44,51,53,46,49,52,53,53,55,54,93,44,91,45,55,55,46,55,51,49,48,50,54,44,51,53,46,48,48,56,49,51,56,93,44,91,45,55,55,46,54,48,49,50,56,50,44,51,53,46,48,55,49,51,54,56,93,44,91,45,55,55,46,52,55,51,54,57,50,44,51,53,46,50,50,56,57,56,53,93,44,91,45,55,55,46,51,57,49,48,50,54,44,51,53,46,51,51,57,53,51,51,93,44,91,45,55,55,46,52,55,53,53,49,53,44,51,53,46,52,50,54,54,53,53,93,44,91,45,55,55,46,54,51,57,49,48,49,44,51,53,46,51,53,52,48,56,54,93,44,91,45,55,55,46,56,48,54,50,52,56,44,51,53,46,51,54,56,55,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,86,105,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,54,57,51,44,34,98,101,100,115,34,58,52,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,51,50,49,57,52,44,51,57,46,54,48,55,51,48,54,93,44,91,45,56,55,46,53,51,49,54,52,44,51,57,46,52,55,55,49,48,53,93,44,91,45,56,55,46,53,51,49,54,52,54,44,51,57,46,51,52,55,56,56,56,93,44,91,45,56,55,46,54,48,52,49,52,49,44,51,57,46,50,53,57,52,53,56,93,44,91,45,56,55,46,50,52,48,51,55,57,44,51,57,46,50,53,57,48,54,52,93,44,91,45,56,55,46,50,51,56,57,54,52,44,51,57,46,53,50,48,54,50,93,44,91,45,56,55,46,49,57,57,48,49,50,44,51,57,46,54,48,55,49,51,55,93,44,91,45,56,55,46,51,56,50,52,49,56,44,51,57,46,54,48,55,57,51,55,93,44,91,45,56,55,46,53,51,50,49,57,52,44,51,57,46,54,48,55,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,69,108,107,104,97,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,54,48,52,44,34,98,101,100,115,34,58,51,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,54,50,53,55,53,44,52,49,46,55,54,48,53,49,51,93,44,91,45,56,54,46,48,53,57,52,53,49,44,52,49,46,52,55,57,49,53,52,93,44,91,45,56,54,46,48,53,57,50,51,44,52,49,46,52,51,53,56,49,50,93,44,91,45,56,53,46,54,53,51,53,48,55,44,52,49,46,52,51,54,56,53,54,93,44,91,45,56,53,46,54,53,52,55,52,55,44,52,49,46,53,50,51,51,52,55,93,44,91,45,56,53,46,54,53,57,55,53,44,52,49,46,55,53,57,48,54,56,93,44,91,45,56,53,46,55,57,49,51,51,53,44,52,49,46,55,53,57,48,55,56,93,44,91,45,56,54,46,48,54,50,53,55,53,44,52,49,46,55,54,48,53,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,114,97,121,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,53,51,50,53,57,44,51,54,46,53,55,52,54,57,50,93,44,91,45,56,48,46,57,48,49,54,52,49,44,51,54,46,53,54,49,55,54,54,93,44,91,45,56,48,46,56,51,55,57,53,52,44,51,54,46,53,53,57,49,52,51,93,44,91,45,56,48,46,57,49,52,49,55,51,44,51,54,46,54,53,48,50,52,54,93,44,91,45,56,48,46,57,51,50,50,55,49,44,51,54,46,54,55,49,53,57,51,93,44,91,45,56,49,46,48,52,50,52,50,56,44,51,54,46,56,48,54,52,52,56,93,44,91,45,56,49,46,48,56,56,53,49,44,51,54,46,55,54,55,52,50,50,93,44,91,45,56,49,46,50,54,49,57,56,55,44,51,54,46,55,54,51,48,51,51,93,44,91,45,56,49,46,53,50,52,56,48,56,44,51,54,46,55,48,55,53,52,93,44,91,45,56,49,46,54,48,53,56,54,53,44,51,54,46,54,51,56,48,55,57,93,44,91,45,56,49,46,54,52,54,57,44,51,54,46,54,49,49,57,49,56,93,44,91,45,56,49,46,54,55,55,52,57,44,51,54,46,53,56,56,49,51,55,93,44,91,45,56,49,46,51,53,51,50,53,57,44,51,54,46,53,55,52,54,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,51,34,44,34,78,65,77,69,34,58,34,76,117,98,98,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,49,52,53,52,44,34,98,101,100,115,34,58,50,49,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,54,51,53,56,44,51,51,46,56,51,48,52,53,49,93,44,91,45,49,48,50,46,48,56,53,55,51,51,44,51,51,46,56,50,52,54,55,53,93,44,91,45,49,48,50,46,48,55,53,57,50,57,44,51,51,46,51,56,57,53,56,54,93,44,91,45,49,48,49,46,53,53,54,56,56,52,44,51,51,46,51,57,52,55,54,93,44,91,45,49,48,49,46,53,54,51,53,56,44,51,51,46,56,51,48,52,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,101,101,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,55,57,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,54,51,48,56,44,52,53,46,51,50,54,49,93,44,91,45,57,52,46,55,53,56,49,56,57,44,52,52,46,56,57,50,48,57,55,93,44,91,45,57,52,46,53,48,50,51,57,53,44,52,52,46,56,57,50,50,57,53,93,44,91,45,57,52,46,53,48,49,56,56,53,44,52,52,46,57,55,57,54,57,53,93,44,91,45,57,52,46,50,53,54,48,55,52,44,52,52,46,57,55,57,52,54,53,93,44,91,45,57,52,46,50,54,48,56,50,49,44,52,53,46,50,56,51,57,52,49,93,44,91,45,57,52,46,51,56,51,53,53,54,44,52,53,46,51,50,54,55,48,53,93,44,91,45,57,52,46,55,54,51,48,56,44,52,53,46,51,50,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,115,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,52,55,55,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,50,56,53,50,44,52,48,46,57,57,50,57,52,52,93,44,91,45,56,50,46,52,49,54,56,52,55,44,52,48,46,56,49,52,53,54,55,93,44,91,45,56,50,46,51,51,57,50,49,49,44,52,48,46,55,50,54,54,56,51,93,44,91,45,56,50,46,51,51,54,57,54,50,44,52,48,46,53,53,53,48,48,49,93,44,91,45,56,50,46,50,50,48,49,49,44,52,48,46,53,54,56,50,48,54,93,44,91,45,56,50,46,49,50,54,49,57,57,44,52,48,46,54,54,56,50,50,57,93,44,91,45,56,50,46,49,50,57,51,51,52,44,52,48,46,57,57,49,56,48,55,93,44,91,45,56,50,46,49,55,49,52,57,50,44,52,49,46,48,54,51,53,51,55,93,44,91,45,56,50,46,51,51,54,52,57,54,44,52,49,46,48,54,53,55,54,49,93,44,91,45,56,50,46,52,51,50,56,53,50,44,52,48,46,57,57,50,57,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,49,54,52,44,34,98,101,100,115,34,58,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,51,52,53,51,54,44,52,50,46,48,56,57,55,53,93,44,91,45,57,55,46,56,51,51,50,56,56,44,52,49,46,57,49,54,50,56,54,93,44,91,45,57,55,46,56,51,48,52,57,51,44,52,49,46,55,52,50,50,51,56,93,44,91,45,57,55,46,51,54,56,48,55,44,52,49,46,55,52,51,50,48,55,93,44,91,45,57,55,46,51,54,56,52,48,52,44,52,50,46,48,57,48,57,50,50,93,44,91,45,57,55,46,56,51,52,53,51,54,44,52,50,46,48,56,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,53,56,49,44,34,98,101,100,115,34,58,51,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,49,51,56,48,52,57,44,50,55,46,50,54,50,56,55,57,93,44,91,45,56,48,46,50,56,53,53,49,44,50,55,46,50,48,54,48,50,53,93,44,91,45,56,48,46,54,55,55,56,54,50,44,50,55,46,50,48,53,57,56,56,93,44,91,45,56,48,46,54,55,55,52,50,55,44,50,55,46,49,50,49,54,49,57,93,44,91,45,56,48,46,56,56,53,54,51,57,44,50,54,46,57,53,56,57,49,57,93,44,91,45,56,48,46,49,52,50,48,48,55,44,50,54,46,57,53,54,54,52,93,44,91,45,56,48,46,48,50,50,55,53,52,44,50,54,46,57,55,48,51,57,50,93,44,91,45,56,48,46,49,51,56,48,52,57,44,50,55,46,50,54,50,56,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,77,105,110,101,114,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,48,48,48,54,48,50,44,51,55,46,57,53,54,48,52,49,93,44,91,45,49,48,55,46,49,51,56,49,57,49,44,51,55,46,57,51,56,56,52,56,93,44,91,45,49,48,55,46,49,52,53,49,51,56,44,51,55,46,54,55,53,52,57,55,93,44,91,45,49,48,55,46,49,50,56,54,56,44,51,55,46,52,50,50,57,52,50,93,44,91,45,49,48,55,46,49,50,56,55,51,55,44,51,55,46,51,57,50,52,48,57,93,44,91,45,49,48,54,46,55,49,48,55,55,53,44,51,55,46,52,48,52,50,50,56,93,44,91,45,49,48,54,46,54,57,51,56,52,53,44,51,55,46,56,51,53,50,52,52,93,44,91,45,49,48,54,46,56,57,55,56,51,52,44,51,55,46,57,54,55,56,57,49,93,44,91,45,49,48,55,46,48,48,48,54,48,50,44,51,55,46,57,53,54,48,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,68,97,119,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,53,53,53,51,44,51,52,46,53,54,50,55,51,53,93,44,91,45,56,52,46,50,53,55,53,56,54,44,51,52,46,51,56,48,57,57,50,93,44,91,45,56,52,46,50,53,56,48,55,53,44,51,52,46,51,51,53,49,53,54,93,44,91,45,56,51,46,57,53,55,48,55,55,44,51,52,46,51,51,52,48,49,49,93,44,91,45,56,51,46,57,56,48,54,52,57,44,51,52,46,52,49,56,51,56,57,93,44,91,45,56,52,46,49,57,49,48,52,44,51,52,46,53,51,57,49,56,49,93,44,91,45,56,52,46,49,56,56,53,53,55,44,51,52,46,54,48,50,54,57,50,93,44,91,45,56,52,46,49,57,54,55,53,52,44,51,52,46,54,49,55,57,50,52,93,44,91,45,56,52,46,51,52,53,53,53,51,44,51,52,46,53,54,50,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,53,50,49,48,53,50,44,51,50,46,56,50,50,51,53,54,93,44,91,45,56,50,46,55,54,56,51,54,53,44,51,50,46,55,54,57,49,48,56,93,44,91,45,56,50,46,57,52,54,57,54,54,44,51,50,46,55,53,57,51,53,56,93,44,91,45,56,50,46,57,53,55,48,54,54,44,51,50,46,55,48,56,51,49,56,93,44,91,45,56,50,46,56,54,50,55,54,51,44,51,50,46,55,49,53,55,54,93,44,91,45,56,50,46,54,54,56,53,53,55,44,51,50,46,54,49,50,49,54,52,93,44,91,45,56,50,46,54,52,55,55,51,51,44,51,50,46,53,49,50,53,48,55,93,44,91,45,56,50,46,52,54,57,56,50,51,44,51,50,46,54,53,48,56,56,50,93,44,91,45,56,50,46,52,51,52,49,52,57,44,51,50,46,55,54,50,50,53,56,93,44,91,45,56,50,46,53,50,49,48,53,50,44,51,50,46,56,50,50,51,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,54,56,53,54,44,51,52,46,57,49,50,55,51,53,93,44,91,45,57,49,46,51,55,55,56,50,44,51,52,46,53,54,51,52,56,93,44,91,45,57,49,46,50,54,51,54,48,54,44,51,52,46,53,48,49,56,54,55,93,44,91,45,57,49,46,48,53,54,50,55,54,44,51,52,46,51,51,54,54,48,53,93,44,91,45,57,49,46,48,53,49,57,49,56,44,51,52,46,54,52,53,55,50,49,93,44,91,45,57,49,46,49,48,50,53,52,50,44,51,52,46,55,51,52,56,54,52,93,44,91,45,57,49,46,48,57,57,57,54,49,44,51,52,46,56,54,55,49,50,93,44,91,45,57,49,46,49,52,57,56,52,50,44,51,53,46,48,48,50,52,55,93,44,91,45,57,49,46,50,57,51,49,49,49,44,51,52,46,57,56,53,48,57,49,93,44,91,45,57,49,46,51,54,56,53,54,44,51,52,46,57,49,50,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,55,50,52,52,55,44,51,55,46,57,48,50,54,50,55,93,44,91,45,57,51,46,49,56,50,55,48,54,44,51,55,46,57,48,52,49,52,52,93,44,91,45,57,51,46,49,56,55,57,49,53,44,51,55,46,56,48,50,55,51,55,93,44,91,45,57,51,46,49,56,50,52,56,57,44,51,55,46,52,49,55,50,48,52,93,44,91,45,57,51,46,48,55,51,51,56,44,51,55,46,52,49,52,57,56,57,93,44,91,45,57,51,46,48,55,49,53,56,52,44,51,55,46,52,56,55,52,52,52,93,44,91,45,57,50,46,56,53,51,52,56,49,44,51,55,46,52,56,51,57,55,93,44,91,45,57,50,46,56,53,53,51,56,52,44,51,55,46,56,57,53,55,51,54,93,44,91,45,57,51,46,48,55,50,52,52,55,44,51,55,46,57,48,50,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,80,105,116,116,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,54,55,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,55,48,48,53,55,44,51,54,46,53,52,48,57,55,49,93,44,91,45,55,57,46,51,57,56,48,57,52,44,51,54,46,54,52,52,48,51,55,93,44,91,45,55,57,46,51,52,51,49,49,55,44,51,54,46,53,52,49,53,57,93,44,91,45,55,57,46,50,49,56,52,53,54,44,51,54,46,53,52,49,54,53,51,93,44,91,45,55,57,46,48,57,50,50,54,52,44,51,55,46,48,54,49,52,57,56,93,44,91,45,55,57,46,51,51,50,49,54,49,44,51,55,46,49,50,53,53,54,56,93,44,91,45,55,57,46,52,52,50,56,53,57,44,51,55,46,48,53,53,56,54,55,93,44,91,45,55,57,46,53,57,52,48,54,57,44,51,55,46,48,52,50,50,48,54,93,44,91,45,55,57,46,54,52,48,54,53,50,44,51,54,46,56,53,54,49,51,57,93,44,91,45,55,57,46,55,49,52,56,52,57,44,51,54,46,53,52,49,57,54,53,93,44,91,45,55,57,46,53,49,51,54,51,56,44,51,54,46,53,52,48,57,48,50,93,44,91,45,55,57,46,52,55,48,48,53,55,44,51,54,46,53,52,48,57,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,54,56,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,56,34,44,34,78,65,77,69,34,58,34,68,101,110,97,108,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,50,46,57,57,55,54,52,55,44,54,50,46,55,50,55,52,48,49,93,44,91,45,49,53,49,46,56,57,51,55,56,52,44,54,50,46,55,50,53,56,54,52,93,44,91,45,49,53,49,46,56,57,52,48,49,53,44,54,50,46,55,57,56,48,53,56,93,44,91,45,49,53,48,46,55,50,48,57,49,54,44,54,51,46,48,54,51,49,56,52,93,44,91,45,49,52,57,46,53,50,54,49,52,56,44,54,51,46,51,51,51,50,49,55,93,44,91,45,49,52,56,46,48,50,53,54,49,56,44,54,51,46,51,51,51,50,51,51,93,44,91,45,49,52,56,46,48,50,53,54,50,55,44,54,51,46,52,55,55,54,48,57,93,44,91,45,49,52,54,46,57,57,57,57,54,54,44,54,51,46,52,55,57,54,52,53,93,44,91,45,49,52,54,46,57,57,57,57,48,57,44,54,52,46,50,53,55,49,57,54,93,44,91,45,49,52,55,46,55,53,57,50,44,54,52,46,50,53,55,50,93,44,91,45,49,52,56,46,48,52,54,54,57,54,44,54,52,46,51,52,51,56,48,50,93,44,91,45,49,52,57,46,49,51,50,54,53,51,44,54,52,46,51,53,56,50,49,52,93,44,91,45,49,53,48,46,55,50,57,51,56,53,44,54,52,46,51,53,56,49,55,51,93,44,91,45,49,53,49,46,50,56,49,57,57,53,44,54,51,46,57,57,55,50,54,53,93,44,91,45,49,53,49,46,55,57,51,57,55,54,44,54,52,46,48,54,57,52,51,93,44,91,45,49,53,50,46,48,53,53,55,53,56,44,54,51,46,57,57,55,50,52,50,93,44,91,45,49,53,50,46,48,53,53,49,51,50,44,54,51,46,56,50,52,48,48,54,93,44,91,45,49,53,50,46,50,50,57,50,53,54,44,54,51,46,56,50,52,48,48,49,93,44,91,45,49,53,50,46,50,50,56,52,51,57,44,54,51,46,54,53,48,55,54,93,44,91,45,49,53,50,46,56,55,51,52,49,44,54,51,46,54,53,48,55,52,53,93,44,91,45,49,53,50,46,56,55,51,51,57,50,44,54,51,46,52,55,55,53,93,44,91,45,49,53,50,46,56,49,48,57,51,49,44,54,51,46,51,52,55,53,54,51,93,44,91,45,49,53,50,46,52,50,56,48,57,56,44,54,51,46,51,48,52,50,53,57,93,44,91,45,49,53,50,46,52,50,56,48,56,52,44,54,51,46,49,56,51,49,55,49,93,44,91,45,49,53,50,46,57,57,55,54,52,55,44,54,50,46,55,50,55,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,80,97,119,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,48,57,44,34,98,101,100,115,34,58,54,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,56,52,50,48,55,44,51,56,46,50,54,50,49,55,57,93,44,91,45,57,57,46,53,54,57,53,51,51,44,51,56,46,48,56,55,51,55,50,93,44,91,45,57,57,46,51,53,48,51,53,57,44,51,56,46,48,56,55,53,57,52,93,44,91,45,57,57,46,51,53,48,50,56,57,44,51,56,46,48,48,48,55,52,53,93,44,91,45,57,57,46,48,50,50,49,51,54,44,51,56,46,48,48,48,50,51,54,93,44,91,45,57,56,46,57,49,51,49,51,54,44,51,56,46,48,48,48,52,53,49,93,44,91,45,57,56,46,57,49,50,53,56,51,44,51,56,46,50,54,49,48,56,56,93,44,91,45,57,57,46,48,51,50,51,48,57,44,51,56,46,50,54,49,50,50,55,93,44,91,45,57,57,46,48,51,50,52,48,56,44,51,56,46,51,52,56,51,51,52,93,44,91,45,57,57,46,53,56,52,55,57,52,44,51,56,46,51,52,57,51,56,54,93,44,91,45,57,57,46,53,56,52,50,48,55,44,51,56,46,50,54,50,49,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,57,34,44,34,78,65,77,69,34,58,34,87,121,97,110,100,111,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,51,52,53,44,34,98,101,100,115,34,58,49,51,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,48,56,55,54,53,44,51,56,46,57,57,49,52,48,49,93,44,91,45,57,52,46,56,55,50,52,52,50,44,51,57,46,48,53,57,48,56,56,93,44,91,45,57,52,46,54,48,55,51,56,50,44,51,57,46,48,52,52,48,56,54,93,44,91,45,57,52,46,54,48,55,51,53,52,44,51,57,46,49,49,51,52,52,52,93,44,91,45,57,52,46,54,48,49,55,51,51,44,51,57,46,49,53,57,54,48,51,93,44,91,45,57,52,46,55,55,53,53,51,50,44,51,57,46,50,48,48,54,48,54,93,44,91,45,57,52,46,57,48,48,49,57,49,44,51,57,46,50,48,50,57,49,49,93,44,91,45,57,52,46,57,48,56,55,54,53,44,51,56,46,57,57,49,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,68,105,120,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,49,56,56,53,57,44,50,57,46,56,50,50,54,50,51,93,44,91,45,56,51,46,51,54,54,51,57,56,44,50,57,46,54,54,53,55,48,49,93,44,91,45,56,51,46,52,56,49,50,54,52,44,50,57,46,54,51,48,51,50,57,93,44,91,45,56,51,46,52,52,57,52,53,54,44,50,57,46,52,56,51,51,53,49,93,44,91,45,56,51,46,50,51,56,54,55,57,44,50,57,46,51,48,56,54,49,93,44,91,45,56,51,46,50,51,57,56,53,57,44,50,57,46,50,53,48,57,57,93,44,91,45,56,51,46,48,54,56,53,50,50,44,50,57,46,51,52,51,57,53,51,93,44,91,45,56,50,46,57,51,55,51,50,57,44,50,57,46,53,57,49,49,57,54,93,44,91,45,56,50,46,57,50,48,54,48,56,44,50,57,46,56,50,52,49,52,51,93,44,91,45,56,51,46,51,49,56,56,53,57,44,50,57,46,56,50,50,54,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,84,117,115,99,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,50,53,48,44,34,98,101,100,115,34,58,49,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,57,56,56,49,54,44,52,51,46,52,55,56,57,53,55,93,44,91,45,56,51,46,54,57,53,54,50,49,44,52,51,46,50,50,49,52,50,50,93,44,91,45,56,51,46,52,54,48,55,51,51,44,52,51,46,50,50,51,49,51,49,93,44,91,45,56,51,46,51,53,52,52,49,56,44,52,51,46,51,50,50,50,53,55,93,44,91,45,56,51,46,49,50,48,51,57,54,44,52,51,46,51,50,55,48,52,57,93,44,91,45,56,51,46,49,49,55,56,52,52,44,52,51,46,54,55,53,52,57,51,93,44,91,45,56,51,46,52,54,54,53,57,50,44,52,51,46,54,54,55,54,50,49,93,44,91,45,56,51,46,52,54,55,52,48,51,44,52,51,46,55,50,56,57,48,57,93,44,91,45,56,51,46,55,48,56,51,49,55,44,52,51,46,56,50,56,55,50,49,93,44,91,45,56,51,46,54,57,56,56,49,54,44,52,51,46,52,55,56,57,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,52,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,48,34,44,34,78,65,77,69,34,58,34,83,111,117,116,104,101,97,115,116,32,70,97,105,114,98,97,110,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,55,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,54,46,57,57,57,57,48,57,44,54,52,46,50,53,55,49,57,54,93,44,91,45,49,52,54,46,57,57,57,57,54,54,44,54,51,46,52,55,57,54,52,53,93,44,91,45,49,52,54,46,52,56,57,53,52,49,44,54,51,46,52,56,50,57,49,51,93,44,91,45,49,52,54,46,52,57,52,51,49,49,44,54,51,46,49,54,56,57,55,53,93,44,91,45,49,52,54,46,49,49,49,52,56,54,44,54,51,46,50,49,55,55,54,50,93,44,91,45,49,52,53,46,49,53,52,51,57,53,44,54,51,46,50,49,55,55,56,49,93,44,91,45,49,52,53,46,49,53,52,51,56,53,44,54,51,46,49,51,49,49,52,57,93,44,91,45,49,52,52,46,53,56,48,49,53,57,44,54,51,46,49,49,54,57,51,49,93,44,91,45,49,52,51,46,49,51,50,51,51,55,44,54,51,46,49,49,54,57,55,56,93,44,91,45,49,52,51,46,48,51,50,50,51,56,44,54,50,46,57,51,49,55,57,49,93,44,91,45,49,52,51,46,49,54,52,51,53,44,54,50,46,56,51,52,53,54,57,93,44,91,45,49,52,51,46,48,53,55,56,51,52,44,54,50,46,55,55,48,53,52,93,44,91,45,49,52,51,46,49,48,52,57,57,54,44,54,50,46,54,49,52,57,48,53,93,44,91,45,49,52,50,46,56,52,56,53,55,57,44,54,50,46,54,48,48,53,52,55,93,44,91,45,49,52,50,46,55,51,49,50,51,51,44,54,50,46,55,48,56,50,56,50,93,44,91,45,49,52,50,46,51,49,51,53,54,52,44,54,50,46,54,56,51,56,50,56,93,44,91,45,49,52,49,46,57,55,55,51,53,51,44,54,50,46,53,49,48,53,53,57,93,44,91,45,49,52,49,46,57,55,55,51,51,54,44,54,50,46,49,54,51,57,56,51,93,44,91,45,49,52,49,46,56,51,49,56,49,50,44,54,50,46,49,49,55,49,55,56,93,44,91,45,49,52,49,46,56,51,49,56,48,52,44,54,49,46,57,48,52,48,53,51,93,44,91,45,49,52,49,46,48,48,50,50,54,55,44,54,49,46,57,48,52,48,52,55,93,44,91,45,49,52,49,46,48,48,49,52,55,44,54,50,46,53,53,53,53,53,57,93,44,91,45,49,52,49,46,48,48,49,52,48,54,44,54,51,46,50,54,56,55,48,52,93,44,91,45,49,52,49,46,48,48,49,51,50,54,44,54,52,46,52,50,51,53,50,57,93,44,91,45,49,52,49,46,48,48,49,55,51,51,44,54,53,46,50,57,55,49,49,51,93,44,91,45,49,52,49,46,48,48,50,52,55,50,44,54,53,46,56,51,57,52,50,49,93,44,91,45,49,52,49,46,51,51,54,50,50,52,44,54,53,46,55,49,49,54,49,52,93,44,91,45,49,52,49,46,51,56,55,56,52,50,44,54,53,46,54,49,52,51,57,53,93,44,91,45,49,52,49,46,55,56,57,48,53,44,54,53,46,53,48,49,53,52,54,93,44,91,45,49,52,49,46,56,53,53,55,54,49,44,54,53,46,52,52,53,55,56,54,93,44,91,45,49,52,50,46,49,52,50,57,50,50,44,54,53,46,52,54,51,49,55,52,93,44,91,45,49,52,50,46,52,56,55,51,48,49,44,54,53,46,51,55,49,56,57,56,93,44,91,45,49,52,50,46,54,54,51,55,55,50,44,54,53,46,51,55,49,56,55,54,93,44,91,45,49,52,50,46,55,51,49,57,44,54,53,46,50,51,51,54,51,57,93,44,91,45,49,52,50,46,56,54,52,51,52,52,44,54,53,46,49,52,48,51,56,55,93,44,91,45,49,52,51,46,48,52,52,48,53,53,44,54,53,46,49,51,50,51,50,55,93,44,91,45,49,52,51,46,52,54,57,54,54,55,44,54,52,46,57,56,50,49,56,57,93,44,91,45,49,52,51,46,53,51,51,55,52,56,44,54,52,46,55,55,56,55,53,53,93,44,91,45,49,52,51,46,55,53,50,48,57,49,44,54,52,46,54,52,55,54,49,56,93,44,91,45,49,52,52,46,48,54,57,48,50,57,44,54,52,46,54,56,51,53,54,50,93,44,91,45,49,52,52,46,53,53,50,53,50,54,44,54,52,46,54,48,48,54,52,53,93,44,91,45,49,52,52,46,57,56,53,51,51,49,44,54,52,46,53,54,56,54,48,57,93,44,91,45,49,52,53,46,48,56,50,55,56,55,44,54,52,46,53,48,55,51,52,57,93,44,91,45,49,52,53,46,51,55,51,57,50,57,44,54,52,46,52,56,51,56,51,54,93,44,91,45,49,52,53,46,52,57,56,48,56,57,44,54,52,46,52,50,51,49,53,53,93,44,91,45,49,52,53,46,55,52,48,48,48,50,44,54,52,46,52,54,48,49,51,50,93,44,91,45,49,52,54,46,48,48,51,55,55,50,44,54,52,46,51,56,49,48,57,49,93,44,91,45,49,52,54,46,49,53,55,53,57,50,44,54,52,46,51,56,50,55,51,93,44,91,45,49,52,54,46,51,52,52,54,55,51,44,54,52,46,50,55,54,51,54,52,93,44,91,45,49,52,54,46,57,57,57,57,48,57,44,54,52,46,50,53,55,49,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,71,114,97,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,52,53,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,54,49,54,54,55,44,51,57,46,53,54,55,50,55,55,93,44,91,45,49,48,48,46,49,54,52,50,44,51,57,46,49,51,50,48,55,49,93,44,91,45,49,48,48,46,49,52,55,57,52,44,51,57,46,49,51,50,49,55,57,93,44,91,45,57,57,46,54,48,53,49,56,55,44,51,57,46,49,51,50,52,56,49,93,44,91,45,57,57,46,54,48,50,49,55,54,44,51,57,46,53,54,55,51,50,56,93,44,91,45,57,57,46,54,50,55,57,53,51,44,51,57,46,53,54,55,52,51,55,93,44,91,45,49,48,48,46,49,54,49,54,54,55,44,51,57,46,53,54,55,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,97,110,100,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,52,52,57,44,34,98,101,100,115,34,58,50,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,49,50,55,49,49,44,51,48,46,56,52,56,54,48,55,93,44,91,45,57,50,46,49,55,50,52,49,53,44,51,48,46,55,54,55,57,51,53,93,44,91,45,57,50,46,50,49,49,50,52,51,44,51,48,46,53,54,56,49,50,53,93,44,91,45,57,50,46,52,50,48,55,56,44,51,48,46,53,51,56,56,50,93,44,91,45,57,50,46,52,57,51,50,53,57,44,51,48,46,52,56,48,52,57,57,93,44,91,45,57,50,46,50,52,52,55,57,53,44,51,48,46,52,56,48,49,57,51,93,44,91,45,57,50,46,49,55,54,52,52,52,44,51,48,46,52,51,54,56,53,50,93,44,91,45,57,50,46,49,52,50,49,56,52,44,51,48,46,50,57,56,56,49,55,93,44,91,45,57,49,46,57,56,56,55,49,56,44,51,48,46,51,54,56,53,57,56,93,44,91,45,57,49,46,56,54,57,50,55,51,44,51,48,46,52,49,55,50,51,53,93,44,91,45,57,49,46,54,57,52,51,44,51,48,46,52,48,49,55,52,56,93,44,91,45,57,49,46,55,53,54,49,57,51,44,51,48,46,52,57,55,55,51,56,93,44,91,45,57,49,46,55,51,51,54,55,51,44,51,48,46,55,48,49,55,51,93,44,91,45,57,49,46,56,49,53,50,53,56,44,51,48,46,56,52,56,49,48,55,93,44,91,45,57,50,46,50,49,50,55,49,49,44,51,48,46,56,52,56,54,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,105,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,49,54,55,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,48,54,53,55,56,44,51,53,46,52,51,51,50,48,55,93,44,91,45,56,55,46,50,50,52,48,53,50,44,51,52,46,57,57,57,51,55,55,93,44,91,45,56,55,46,50,49,48,55,53,57,44,51,52,46,57,57,57,48,50,52,93,44,91,45,56,54,46,56,51,54,51,48,54,44,51,52,46,57,57,49,56,57,57,93,44,91,45,56,54,46,56,50,56,51,48,49,44,51,53,46,50,54,51,54,55,55,93,44,91,45,56,54,46,57,54,48,56,48,52,44,51,53,46,52,49,55,48,50,49,93,44,91,45,56,55,46,49,50,48,56,56,51,44,51,53,46,52,53,53,54,54,93,44,91,45,56,55,46,50,48,54,53,55,56,44,51,53,46,52,51,51,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,76,117,99,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,50,51,55,57,44,34,98,101,100,115,34,58,51,52,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,49,50,52,54,44,52,49,46,57,53,57,52,49,93,44,91,45,56,51,46,52,49,53,56,53,49,44,52,49,46,55,51,51,55,57,52,93,44,91,45,56,51,46,55,54,51,49,53,44,52,49,46,55,50,51,53,53,50,93,44,91,45,56,51,46,56,56,48,51,57,49,44,52,49,46,55,50,48,50,49,50,93,44,91,45,56,51,46,56,56,50,57,52,51,44,52,49,46,52,56,55,53,52,51,93,44,91,45,56,51,46,56,56,51,50,51,52,44,52,49,46,52,49,52,53,48,51,93,44,91,45,56,51,46,55,52,55,50,49,55,44,52,49,46,52,54,54,50,49,54,93,44,91,45,56,51,46,53,54,57,57,51,52,44,52,49,46,54,49,55,49,53,93,44,91,45,56,51,46,52,49,53,57,52,49,44,52,49,46,54,49,57,49,49,93,44,91,45,56,51,46,49,54,52,53,49,49,44,52,49,46,54,50,51,50,52,55,93,44,91,45,56,50,46,57,57,53,53,55,50,44,52,49,46,56,50,56,57,54,57,93,44,91,45,56,51,46,49,49,50,52,54,44,52,49,46,57,53,57,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,56,51,49,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,53,57,51,55,54,44,51,53,46,57,57,57,49,51,49,93,44,91,45,57,48,46,50,56,56,57,52,55,44,51,53,46,57,57,54,52,49,93,44,91,45,57,48,46,50,56,54,55,51,54,44,51,53,46,54,57,57,57,49,52,93,44,91,45,57,48,46,50,56,54,56,57,57,44,51,53,46,52,51,56,53,55,51,93,44,91,45,57,48,46,49,52,48,50,53,55,44,51,53,46,52,51,54,54,51,54,93,44,91,45,57,48,46,48,53,52,51,50,50,44,51,53,46,51,56,57,50,55,55,93,44,91,45,57,48,46,48,52,49,53,54,51,44,51,53,46,51,57,54,54,50,93,44,91,45,57,48,46,48,53,48,52,51,55,44,51,53,46,53,49,53,56,57,52,93,44,91,45,56,57,46,57,48,57,55,57,55,44,51,53,46,53,51,55,57,49,52,93,44,91,45,56,57,46,57,53,48,50,55,55,44,51,53,46,55,51,56,52,57,52,93,44,91,45,56,57,46,56,50,48,56,55,54,44,51,53,46,55,53,54,56,54,56,93,44,91,45,56,57,46,55,52,50,54,48,54,44,51,53,46,57,48,54,54,53,51,93,44,91,45,56,57,46,54,52,52,56,51,56,44,51,53,46,57,48,52,51,53,49,93,44,91,45,56,57,46,55,51,51,48,57,53,44,51,54,46,48,48,48,54,48,56,93,44,91,45,56,57,46,57,53,57,51,55,54,44,51,53,46,57,57,57,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,82,105,110,99,195,179,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,56,50,56,53,50,44,49,56,46,51,49,51,48,50,54,93,44,91,45,54,55,46,50,52,57,51,56,52,44,49,56,46,52,49,56,57,50,52,93,44,91,45,54,55,46,51,49,57,57,49,49,44,49,56,46,51,52,51,49,56,55,93,44,91,45,54,55,46,50,53,52,50,44,49,56,46,50,53,50,54,51,56,93,44,91,45,54,55,46,50,52,51,53,53,57,44,49,56,46,50,54,56,57,50,50,93,44,91,45,54,55,46,49,56,50,56,53,50,44,49,56,46,51,49,51,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,56,48,57,44,34,98,101,100,115,34,58,50,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,51,50,56,49,55,44,51,56,46,52,49,55,56,57,56,93,44,91,45,56,54,46,48,51,50,53,53,57,44,51,56,46,51,51,48,54,54,93,44,91,45,56,53,46,56,57,57,55,54,44,51,56,46,49,56,48,52,52,52,93,44,91,45,56,53,46,55,57,50,51,49,54,44,51,56,46,50,56,55,52,51,51,93,44,91,45,56,53,46,56,48,55,55,48,52,44,51,56,46,52,48,52,52,52,51,93,44,91,45,56,53,46,57,57,52,54,50,44,51,56,46,52,49,56,51,52,53,93,44,91,45,56,54,46,48,51,50,56,49,55,44,51,56,46,52,49,55,56,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,77,111,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,56,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,49,54,52,50,44,51,55,46,51,56,57,49,57,93,44,91,45,49,48,50,46,48,52,50,48,56,57,44,51,54,46,57,57,51,48,49,54,93,44,91,45,49,48,50,46,48,50,56,50,48,52,44,51,54,46,57,57,51,49,48,50,93,44,91,45,49,48,49,46,53,53,53,50,53,57,44,51,54,46,57,57,53,51,50,52,93,44,91,45,49,48,49,46,53,53,54,54,48,54,44,51,55,46,51,56,56,52,56,53,93,44,91,45,49,48,50,46,48,52,49,54,52,50,44,51,55,46,51,56,57,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,54,48,49,48,55,44,51,56,46,55,55,55,50,57,51,93,44,91,45,56,52,46,55,56,53,55,56,56,44,51,56,46,55,50,48,52,53,57,93,44,91,45,56,52,46,55,55,52,51,50,50,44,51,56,46,54,49,56,53,57,52,93,44,91,45,56,52,46,53,56,48,53,51,57,44,51,56,46,52,55,51,48,51,57,93,44,91,45,56,52,46,53,53,55,51,55,53,44,51,56,46,52,57,50,57,49,55,93,44,91,45,56,52,46,52,55,54,50,57,57,44,51,56,46,53,52,50,55,50,51,93,44,91,45,56,52,46,53,51,50,50,56,56,44,51,56,46,55,57,49,57,51,55,93,44,91,45,56,52,46,54,49,53,54,54,52,44,51,56,46,56,48,50,50,55,55,93,44,91,45,56,52,46,54,54,48,49,48,55,44,51,56,46,55,55,55,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,55,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,48,48,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,56,51,52,57,55,44,51,55,46,52,54,57,57,49,55,93,44,91,45,56,53,46,51,53,50,55,55,49,44,51,55,46,49,57,50,52,51,50,93,44,91,45,56,53,46,49,54,53,49,55,52,44,51,55,46,51,49,48,51,57,54,93,44,91,45,56,53,46,48,55,51,55,55,50,44,51,55,46,52,49,51,54,54,57,93,44,91,45,56,53,46,49,54,57,53,54,53,44,51,55,46,52,54,52,48,48,52,93,44,91,45,56,53,46,50,52,54,55,53,57,44,51,55,46,52,50,48,50,48,53,93,44,91,45,56,53,46,51,52,49,50,50,44,51,55,46,52,54,57,52,53,56,93,44,91,45,56,53,46,52,54,54,50,53,44,51,55,46,52,54,53,53,57,53,93,44,91,45,56,53,46,53,56,51,52,57,55,44,51,55,46,52,54,57,57,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,71,114,97,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,54,49,49,48,50,44,51,53,46,52,54,51,55,53,52,93,44,91,45,56,52,46,48,50,49,52,53,50,44,51,53,46,52,48,52,50,50,51,93,44,91,45,56,52,46,48,50,57,48,54,55,44,51,53,46,50,57,50,50,52,56,93,44,91,45,56,51,46,57,53,56,54,53,50,44,51,53,46,50,49,55,48,52,93,44,91,45,56,51,46,56,51,49,52,50,57,44,51,53,46,50,53,54,49,49,55,93,44,91,45,56,51,46,55,48,50,55,55,50,44,51,53,46,50,52,56,53,50,93,44,91,45,56,51,46,54,56,48,49,49,52,44,51,53,46,50,55,57,53,93,44,91,45,56,51,46,53,56,50,53,53,56,44,51,53,46,52,49,48,52,56,57,93,44,91,45,56,51,46,57,53,50,57,55,50,44,51,53,46,52,54,48,53,53,50,93,44,91,45,56,51,46,57,54,49,49,48,50,44,51,53,46,52,54,51,55,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,48,49,44,34,98,101,100,115,34,58,49,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,51,50,53,48,55,44,51,56,46,48,50,53,51,53,54,93,44,91,45,56,50,46,49,57,48,54,53,56,44,51,55,46,57,55,52,55,55,56,93,44,91,45,56,50,46,48,55,57,57,52,49,44,51,55,46,55,48,48,49,50,50,93,44,91,45,56,49,46,56,48,50,57,51,55,44,51,55,46,54,54,48,53,48,56,93,44,91,45,56,49,46,55,54,52,55,51,55,44,51,55,46,55,53,50,49,48,56,93,44,91,45,56,49,46,54,48,55,53,51,50,44,51,55,46,55,56,56,55,48,57,93,44,91,45,56,49,46,55,50,50,49,51,54,44,51,55,46,56,48,57,53,48,55,93,44,91,45,56,49,46,55,56,53,54,52,49,44,51,55,46,57,51,54,52,48,52,93,44,91,45,56,49,46,57,51,50,53,48,55,44,51,56,46,48,50,53,51,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,80,108,101,97,115,97,110,116,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,50,49,53,51,51,44,51,57,46,52,53,55,55,55,53,93,44,91,45,56,49,46,51,55,49,50,54,44,51,57,46,51,52,49,57,50,52,93,44,91,45,56,49,46,50,51,57,52,55,55,44,51,57,46,50,54,56,51,50,56,93,44,91,45,56,49,46,50,50,49,51,51,53,44,51,57,46,51,48,55,52,55,53,93,44,91,45,56,49,46,48,48,55,56,51,54,44,51,57,46,51,53,48,57,50,51,93,44,91,45,56,49,46,48,50,53,55,48,52,44,51,57,46,52,54,50,51,49,55,93,44,91,45,56,49,46,49,50,49,53,51,51,44,51,57,46,52,53,55,55,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,71,105,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,49,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,52,55,50,55,56,50,44,51,55,46,52,50,51,55,51,93,44,91,45,56,48,46,53,49,49,51,57,49,44,51,55,46,52,56,49,54,55,50,93,44,91,45,56,48,46,55,55,48,48,56,50,44,51,55,46,51,55,50,51,54,51,93,44,91,45,56,48,46,56,53,56,52,54,54,44,51,55,46,52,50,56,51,48,55,93,44,91,45,56,48,46,56,53,57,52,53,55,44,51,55,46,52,50,57,52,57,49,93,44,91,45,56,48,46,56,52,57,52,53,49,44,51,55,46,51,52,54,57,48,57,93,44,91,45,56,48,46,57,56,48,49,52,54,44,51,55,46,50,57,50,55,52,51,93,44,91,45,56,48,46,56,53,52,54,50,55,44,51,55,46,49,52,55,52,56,50,93,44,91,45,56,48,46,54,48,54,57,54,50,44,51,55,46,50,52,52,56,55,49,93,44,91,45,56,48,46,52,51,48,57,52,51,44,51,55,46,51,49,54,51,55,56,93,44,91,45,56,48,46,52,55,50,55,56,50,44,51,55,46,52,50,51,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,49,50,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,56,48,56,50,57,44,51,55,46,57,54,57,49,48,57,93,44,91,45,56,49,46,50,57,53,49,50,55,44,51,55,46,56,56,57,51,49,49,93,44,91,45,56,49,46,48,55,51,50,52,57,44,51,55,46,56,55,53,56,54,53,93,44,91,45,56,48,46,57,52,53,48,57,44,51,55,46,56,49,57,49,50,49,93,44,91,45,56,48,46,56,48,54,51,49,54,44,51,55,46,56,54,56,57,49,53,93,44,91,45,56,48,46,55,54,57,56,54,54,44,51,55,46,57,56,53,50,55,93,44,91,45,56,48,46,56,56,50,49,56,55,44,51,56,46,49,48,51,52,53,55,93,44,91,45,56,48,46,57,56,51,52,55,50,44,51,56,46,50,50,50,53,52,93,44,91,45,56,49,46,48,55,53,48,51,57,44,51,56,46,49,57,54,49,51,54,93,44,91,45,56,49,46,50,51,49,54,51,54,44,51,56,46,50,54,51,53,49,52,93,44,91,45,56,49,46,51,51,49,53,48,51,44,51,56,46,49,54,55,53,55,56,93,44,91,45,56,49,46,51,56,48,56,50,57,44,51,55,46,57,54,57,49,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,83,110,111,104,111,109,105,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,54,54,50,48,44,34,98,101,100,115,34,58,56,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,52,53,56,53,57,54,44,52,56,46,50,57,55,55,48,51,93,44,91,45,49,50,50,46,51,53,48,50,56,57,44,52,56,46,48,56,48,51,49,50,93,44,91,45,49,50,50,46,51,50,56,52,54,51,44,52,55,46,57,54,51,55,54,51,93,44,91,45,49,50,50,46,52,50,57,54,50,53,44,52,55,46,56,50,56,48,57,56,93,44,91,45,49,50,50,46,52,51,56,48,57,51,44,52,55,46,55,55,55,56,49,52,93,44,91,45,49,50,49,46,57,57,49,55,55,53,44,52,55,46,55,55,53,51,52,57,93,44,91,45,49,50,49,46,49,49,57,49,55,57,44,52,55,46,55,55,57,57,51,51,93,44,91,45,49,50,49,46,49,56,48,55,55,54,44,52,55,46,56,57,56,55,54,57,93,44,91,45,49,50,49,46,49,49,56,49,56,51,44,52,55,46,57,57,55,49,48,51,93,44,91,45,49,50,48,46,57,48,55,52,50,53,44,52,56,46,49,54,51,49,56,52,93,44,91,45,49,50,49,46,48,48,49,54,53,56,44,52,56,46,50,57,54,48,48,57,93,44,91,45,49,50,50,46,52,53,56,53,57,54,44,52,56,46,50,57,55,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,69,100,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,52,51,55,44,34,98,101,100,115,34,58,49,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,56,49,52,53,48,55,44,51,50,46,57,54,53,49,49,52,93,44,91,45,49,48,52,46,56,52,49,53,55,54,44,51,50,46,57,54,51,50,49,51,93,44,91,45,49,48,52,46,56,53,49,53,50,52,44,51,50,46,53,50,48,53,52,49,93,44,91,45,49,48,52,46,56,52,55,55,52,44,51,50,46,48,48,48,52,49,53,93,44,91,45,49,48,52,46,48,50,52,53,49,50,44,51,50,46,48,48,48,49,48,50,93,44,91,45,49,48,51,46,57,56,48,49,55,57,44,51,50,46,48,48,48,49,50,53,93,44,91,45,49,48,51,46,55,50,50,56,56,50,44,51,50,46,48,48,48,50,48,54,93,44,91,45,49,48,51,46,55,50,50,57,51,56,44,51,50,46,53,50,50,51,52,52,93,44,91,45,49,48,51,46,56,49,52,50,49,54,44,51,50,46,53,50,50,51,54,56,93,44,91,45,49,48,51,46,56,49,52,53,48,55,44,51,50,46,57,54,53,49,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,99,80,104,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,48,54,52,54,54,44,52,49,46,55,52,51,50,93,44,91,45,49,48,49,46,52,48,55,50,54,44,52,49,46,51,57,53,52,49,54,93,44,91,45,49,48,49,46,50,54,57,54,57,53,44,52,49,46,51,57,52,57,51,52,93,44,91,45,49,48,48,46,55,49,51,50,52,51,44,52,49,46,51,57,51,53,49,49,93,44,91,45,49,48,48,46,55,49,49,55,49,49,44,52,49,46,55,51,57,55,54,49,93,44,91,45,49,48,48,46,56,52,50,52,53,57,44,52,49,46,55,52,48,52,48,52,93,44,91,45,49,48,49,46,52,48,54,52,54,54,44,52,49,46,55,52,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,82,101,100,32,87,105,108,108,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,53,56,52,51,53,44,52,48,46,51,52,57,53,48,55,93,44,91,45,49,48,48,46,55,53,56,56,51,44,52,48,46,48,48,50,51,48,50,93,44,91,45,49,48,48,46,55,51,56,56,50,53,44,52,48,46,48,48,50,49,49,54,93,44,91,45,49,48,48,46,49,57,51,53,57,57,44,52,48,46,48,48,49,54,54,51,93,44,91,45,49,48,48,46,49,57,55,56,48,55,44,52,48,46,51,53,48,48,50,55,93,44,91,45,49,48,48,46,55,53,56,52,51,53,44,52,48,46,51,52,57,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,82,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,48,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,55,55,54,56,52,44,52,50,46,55,51,48,57,48,51,93,44,91,45,57,57,46,54,54,50,51,55,57,44,52,50,46,48,56,54,48,48,57,93,44,91,45,57,57,46,50,51,52,54,50,57,44,52,50,46,48,56,55,57,57,53,93,44,91,45,57,57,46,50,52,53,56,48,51,44,52,50,46,55,56,50,52,57,57,93,44,91,45,57,57,46,50,53,55,48,51,57,44,52,50,46,56,48,52,50,57,54,93,44,91,45,57,57,46,53,51,55,52,57,49,44,52,50,46,55,49,55,54,50,54,93,44,91,45,57,57,46,54,55,55,54,56,52,44,52,50,46,55,51,48,57,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,117,109,112,104,114,101,121,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,52,57,54,48,51,44,51,54,46,50,52,51,49,54,93,44,91,45,56,55,46,57,49,57,48,52,51,44,51,54,46,49,51,48,48,52,57,93,44,91,45,56,56,46,48,48,48,56,48,57,44,51,54,46,48,50,56,48,56,57,93,44,91,45,56,55,46,57,50,53,56,51,53,44,51,53,46,57,51,48,52,51,50,93,44,91,45,56,55,46,57,54,50,55,52,44,51,53,46,56,52,48,57,50,49,93,44,91,45,56,55,46,56,55,52,49,56,50,44,51,53,46,56,49,51,48,50,49,93,44,91,45,56,55,46,55,49,54,55,54,44,51,53,46,56,51,56,55,53,93,44,91,45,56,55,46,55,48,54,57,54,44,51,53,46,57,48,53,56,56,52,93,44,91,45,56,55,46,53,51,52,53,51,44,51,53,46,57,57,51,48,55,52,93,44,91,45,56,55,46,53,54,54,55,57,56,44,51,54,46,49,55,55,56,53,55,93,44,91,45,56,55,46,55,57,56,53,48,56,44,51,54,46,50,52,52,55,53,52,93,44,91,45,56,55,46,57,52,57,54,48,51,44,51,54,46,50,52,51,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,55,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,50,52,54,56,44,52,48,46,52,51,53,57,50,49,93,44,91,45,57,48,46,48,51,51,48,50,54,44,52,48,46,51,55,55,56,48,54,93,44,91,45,57,48,46,49,49,56,57,54,54,44,52,48,46,50,51,53,50,54,51,93,44,91,45,57,48,46,49,57,57,54,51,53,44,52,48,46,49,56,51,56,49,50,93,44,91,45,57,48,46,51,53,52,53,50,52,44,52,48,46,49,50,52,50,49,55,93,44,91,45,57,48,46,50,56,55,56,51,55,44,52,48,46,48,54,51,55,56,52,93,44,91,45,57,48,46,49,51,52,50,56,49,44,52,48,46,48,54,50,53,50,52,93,44,91,45,56,57,46,57,57,53,48,57,44,52,48,46,49,48,56,57,48,56,93,44,91,45,56,57,46,57,55,52,54,48,52,44,52,48,46,49,51,53,55,48,53,93,44,91,45,56,57,46,54,48,49,54,56,56,44,52,48,46,49,50,50,51,55,56,93,44,91,45,56,57,46,54,48,50,57,55,57,44,52,48,46,51,50,48,49,50,57,93,44,91,45,56,57,46,55,49,52,57,50,55,44,52,48,46,51,49,57,50,49,56,93,44,91,45,56,57,46,55,49,55,49,48,52,44,52,48,46,52,51,53,54,53,53,93,44,91,45,56,57,46,57,50,52,54,56,44,52,48,46,52,51,53,57,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,87,121,116,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,52,48,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,49,50,54,55,52,44,51,55,46,48,55,51,51,52,57,93,44,91,45,56,49,46,49,49,52,51,49,57,44,51,55,46,48,50,50,54,49,50,93,44,91,45,56,49,46,50,50,52,54,50,52,44,51,55,46,48,52,55,56,51,53,93,44,91,45,56,49,46,51,55,57,52,48,50,44,51,54,46,57,53,50,52,52,50,93,44,91,45,56,49,46,50,54,49,57,56,55,44,51,54,46,55,54,51,48,51,51,93,44,91,45,56,49,46,48,56,56,53,49,44,51,54,46,55,54,55,52,50,50,93,44,91,45,56,49,46,48,52,50,52,50,56,44,51,54,46,56,48,54,52,52,56,93,44,91,45,56,48,46,55,52,48,52,56,51,44,51,54,46,56,55,57,48,48,49,93,44,91,45,56,48,46,57,49,50,54,55,52,44,51,55,46,48,55,51,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,54,49,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,52,56,51,49,49,44,51,51,46,50,51,56,51,52,56,93,44,91,45,56,50,46,56,56,56,56,54,54,44,51,51,46,49,51,56,54,48,51,93,44,91,45,56,51,46,48,53,50,49,57,55,44,51,51,46,48,56,48,54,56,50,93,44,91,45,56,51,46,48,55,51,54,52,56,44,51,50,46,57,52,54,53,54,50,93,44,91,45,56,50,46,57,52,54,57,54,54,44,51,50,46,55,53,57,51,53,56,93,44,91,45,56,50,46,55,54,56,51,54,53,44,51,50,46,55,54,57,49,48,56,93,44,91,45,56,50,46,53,50,49,48,53,50,44,51,50,46,56,50,50,51,53,54,93,44,91,45,56,50,46,53,52,55,57,49,51,44,51,51,46,48,48,56,53,51,51,93,44,91,45,56,50,46,54,54,49,57,49,55,44,51,51,46,49,50,54,51,51,49,93,44,91,45,56,50,46,55,52,56,51,49,49,44,51,51,46,50,51,56,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,89,97,107,105,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,51,50,53,44,34,98,101,100,115,34,58,50,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,52,53,53,50,49,56,44,52,54,46,55,56,51,55,57,55,93,44,91,45,49,50,49,46,51,55,54,55,53,55,44,52,54,46,55,48,52,54,53,56,93,44,91,45,49,50,49,46,52,53,49,50,53,54,44,52,54,46,53,51,51,56,57,52,93,44,91,45,49,50,49,46,51,57,55,48,49,54,44,52,54,46,51,56,56,48,56,51,93,44,91,45,49,50,49,46,53,50,50,51,50,52,44,52,54,46,51,56,56,50,50,52,93,44,91,45,49,50,49,46,53,50,50,51,50,49,44,52,54,46,48,52,52,48,48,54,93,44,91,45,49,50,48,46,56,48,49,50,57,53,44,52,54,46,48,52,49,48,49,52,93,44,91,45,49,49,57,46,56,54,53,56,50,57,44,52,54,46,48,52,48,56,53,56,93,44,91,45,49,49,57,46,56,55,52,48,52,50,44,52,54,46,54,50,56,50,56,51,93,44,91,45,49,49,57,46,57,55,51,48,51,54,44,52,54,46,55,51,55,49,50,54,93,44,91,45,49,50,48,46,53,49,44,52,54,46,55,51,55,57,52,54,93,44,91,45,49,50,48,46,54,51,51,57,56,49,44,52,54,46,56,50,53,55,55,54,93,44,91,45,49,50,48,46,54,51,52,53,54,50,44,52,54,46,57,49,50,49,51,93,44,91,45,49,50,49,46,48,50,54,54,50,44,52,54,46,57,49,49,51,48,56,93,44,91,45,49,50,49,46,48,57,48,48,53,52,44,52,54,46,57,57,49,48,48,55,93,44,91,45,49,50,49,46,50,53,54,52,52,44,52,55,46,48,56,49,55,55,50,93,44,91,45,49,50,49,46,51,55,57,54,56,50,44,52,55,46,48,56,55,52,57,53,93,44,91,45,49,50,49,46,51,55,57,57,54,49,44,52,55,46,48,56,55,50,52,56,93,44,91,45,49,50,49,46,52,57,55,51,52,53,44,52,54,46,56,54,50,56,54,54,93,44,91,45,49,50,49,46,52,53,53,50,49,56,44,52,54,46,55,56,51,55,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,53,50,57,44,34,98,101,100,115,34,58,49,48,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,53,53,50,49,55,50,44,51,54,46,49,48,50,49,50,56,93,44,91,45,57,52,46,52,57,51,49,51,44,51,53,46,55,53,57,49,54,55,93,44,91,45,57,51,46,57,54,50,56,57,50,44,51,53,46,55,54,48,57,51,93,44,91,45,57,51,46,57,52,52,49,55,55,44,51,54,46,48,57,49,49,48,51,93,44,91,45,57,51,46,56,56,55,55,55,53,44,51,54,46,50,51,53,48,52,54,93,44,91,45,57,52,46,48,49,55,53,48,57,44,51,54,46,50,48,56,49,52,57,93,44,91,45,57,52,46,51,51,51,53,54,53,44,51,54,46,50,49,52,55,50,55,93,44,91,45,57,52,46,51,57,49,49,50,53,44,51,54,46,48,57,57,51,57,54,93,44,91,45,57,52,46,53,53,50,49,55,50,44,51,54,46,49,48,50,49,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,51,34,44,34,78,65,77,69,34,58,34,72,101,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,52,54,48,44,34,98,101,100,115,34,58,49,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,52,57,49,54,53,44,51,50,46,51,53,53,50,51,51,93,44,91,45,57,54,46,48,55,53,56,57,57,44,51,50,46,51,53,55,53,48,53,93,44,91,45,57,54,46,52,53,50,49,51,56,44,51,50,46,51,53,56,54,51,49,93,44,91,45,57,54,46,51,56,51,48,56,50,44,51,50,46,51,50,56,56,53,49,93,44,91,45,57,54,46,50,51,52,50,53,49,44,51,50,46,50,53,48,51,57,57,93,44,91,45,57,54,46,48,53,52,55,56,44,51,50,46,48,49,50,53,50,54,93,44,91,45,57,54,46,48,53,50,55,56,54,44,51,50,46,48,48,53,56,57,53,93,44,91,45,57,53,46,52,50,56,53,49,50,44,51,50,46,48,56,52,52,55,53,93,44,91,45,57,53,46,52,53,57,57,48,56,44,51,50,46,49,51,53,53,53,57,93,44,91,45,57,53,46,52,56,56,44,51,50,46,50,51,53,52,56,52,93,44,91,45,57,53,46,52,52,57,49,54,53,44,51,50,46,51,53,53,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,69,97,117,32,67,108,97,105,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,57,57,49,44,34,98,101,100,115,34,58,55,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,53,48,52,53,53,44,52,52,46,56,53,53,57,53,49,93,44,91,45,57,49,46,54,53,48,51,54,49,44,52,52,46,54,56,51,54,51,51,93,44,91,45,57,49,46,54,53,48,50,52,56,44,52,52,46,53,57,54,54,52,57,93,44,91,45,57,49,46,53,50,57,49,48,49,44,52,52,46,53,57,54,49,57,55,93,44,91,45,57,49,46,49,54,53,54,49,57,44,52,52,46,53,57,54,57,56,55,93,44,91,45,57,48,46,57,50,50,51,53,44,52,52,46,53,57,54,50,57,51,93,44,91,45,57,48,46,57,50,50,50,52,55,44,52,52,46,56,53,55,51,48,57,93,44,91,45,57,49,46,54,53,48,52,53,53,44,52,52,46,56,53,53,57,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,83,101,113,117,97,116,99,104,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,50,51,56,48,52,44,51,53,46,53,54,55,52,50,50,93,44,91,45,56,53,46,53,53,55,53,51,53,44,51,53,46,53,51,50,57,55,55,93,44,91,45,56,53,46,54,48,55,51,50,54,44,51,53,46,53,51,49,54,53,49,93,44,91,45,56,53,46,52,56,53,54,51,53,44,51,53,46,52,48,54,52,51,51,93,44,91,45,56,53,46,53,53,56,53,53,49,44,51,53,46,51,49,57,50,57,50,93,44,91,45,56,53,46,52,52,52,49,52,52,44,51,53,46,50,54,50,54,52,54,93,44,91,45,56,53,46,51,56,55,48,56,57,44,51,53,46,49,52,55,49,54,57,93,44,91,45,56,53,46,50,50,53,56,55,55,44,51,53,46,51,53,52,50,55,54,93,44,91,45,56,53,46,52,48,51,50,57,56,44,51,53,46,52,57,50,50,56,93,44,91,45,56,53,46,52,50,51,56,48,52,44,51,53,46,53,54,55,52,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,55,49,34,44,34,78,65,77,69,34,58,34,87,97,108,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,53,51,57,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,54,49,55,56,55,50,44,51,48,46,57,51,48,52,49,56,93,44,91,45,57,53,46,56,54,51,48,53,57,44,51,48,46,56,54,52,49,50,53,93,44,91,45,57,53,46,56,51,48,50,52,44,51,48,46,54,51,48,50,56,52,93,44,91,45,57,53,46,53,57,56,57,55,49,44,51,48,46,53,48,57,48,48,50,93,44,91,45,57,53,46,51,53,57,49,53,54,44,51,48,46,53,48,52,51,54,57,93,44,91,45,57,53,46,51,50,55,52,56,44,51,48,46,56,53,57,53,52,55,93,44,91,45,57,53,46,52,51,52,51,51,53,44,51,48,46,57,51,55,52,48,53,93,44,91,45,57,53,46,52,51,52,55,56,49,44,51,49,46,48,53,56,48,57,56,93,44,91,45,57,53,46,54,49,55,56,55,50,44,51,48,46,57,51,48,52,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,111,99,111,110,105,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,50,49,55,44,34,98,101,100,115,34,58,52,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,55,53,48,54,55,56,44,51,52,46,50,54,51,51,49,52,93,44,91,45,49,49,48,46,55,53,48,54,57,51,44,51,53,46,49,52,48,51,48,57,93,44,91,45,49,49,48,46,55,53,48,54,57,55,44,51,53,46,56,50,48,53,56,57,93,44,91,45,49,49,48,46,55,53,48,54,57,44,51,55,46,48,48,51,48,48,55,93,44,91,45,49,49,49,46,52,49,50,55,56,52,44,51,55,46,48,48,49,53,48,51,93,44,91,45,49,49,50,46,53,51,56,53,55,49,44,51,55,46,48,48,48,55,53,56,93,44,91,45,49,49,50,46,54,49,57,55,50,56,44,51,54,46,55,56,50,55,52,52,93,44,91,45,49,49,50,46,54,53,54,51,54,53,44,51,54,46,53,53,51,57,49,53,93,44,91,45,49,49,50,46,54,50,57,52,57,44,51,54,46,51,57,49,54,49,49,93,44,91,45,49,49,50,46,54,56,49,53,55,49,44,51,54,46,51,52,49,54,54,50,93,44,91,45,49,49,50,46,57,48,50,57,52,57,44,51,54,46,50,53,51,55,54,49,93,44,91,45,49,49,51,46,48,48,54,51,52,51,44,51,54,46,50,51,56,55,53,52,93,44,91,45,49,49,51,46,51,49,51,52,50,56,44,51,54,46,49,48,48,48,48,49,93,44,91,45,49,49,51,46,51,51,52,49,54,49,44,51,53,46,53,50,56,48,51,55,93,44,91,45,49,49,51,46,49,55,52,52,53,56,44,51,53,46,53,48,54,52,52,53,93,44,91,45,49,49,50,46,57,52,52,55,56,57,44,51,53,46,51,53,50,54,48,51,93,44,91,45,49,49,50,46,54,57,52,56,52,54,44,51,53,46,51,49,49,53,56,54,93,44,91,45,49,49,50,46,53,55,55,51,57,57,44,51,53,46,50,52,51,51,57,52,93,44,91,45,49,49,50,46,52,55,50,55,44,51,53,46,50,51,56,51,49,50,93,44,91,45,49,49,50,46,52,52,50,51,44,51,53,46,49,52,57,52,48,56,93,44,91,45,49,49,50,46,51,51,53,55,49,54,44,51,53,46,49,52,56,50,55,57,93,44,91,45,49,49,50,46,51,51,52,53,51,54,44,51,52,46,57,55,51,48,50,52,93,44,91,45,49,49,49,46,55,55,56,50,57,55,44,51,52,46,57,56,49,48,48,55,93,44,91,45,49,49,49,46,55,55,56,50,48,52,44,51,52,46,56,48,51,54,56,53,93,44,91,45,49,49,49,46,53,53,49,57,53,57,44,51,52,46,56,48,50,53,50,93,44,91,45,49,49,49,46,53,53,52,54,56,49,44,51,52,46,52,55,49,55,51,51,93,44,91,45,49,49,49,46,52,57,49,56,54,54,44,51,52,46,52,50,50,55,52,51,93,44,91,45,49,49,49,46,50,52,54,54,54,49,44,51,52,46,52,53,48,56,48,56,93,44,91,45,49,49,49,46,48,56,55,53,48,52,44,51,52,46,51,57,52,57,57,54,93,44,91,45,49,49,48,46,56,52,56,48,53,57,44,51,52,46,50,54,55,50,48,53,93,44,91,45,49,49,48,46,55,53,48,54,55,56,44,51,52,46,50,54,51,51,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,83,117,109,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,48,56,44,34,98,101,100,115,34,58,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,48,55,48,53,55,44,51,55,46,51,56,54,50,57,51,93,44,91,45,57,55,46,56,48,50,51,49,51,44,51,54,46,57,57,56,55,49,56,93,44,91,45,57,55,46,52,54,50,51,52,54,44,51,54,46,57,57,56,55,48,49,93,44,91,45,57,55,46,49,52,55,55,50,49,44,51,54,46,57,57,57,48,51,51,93,44,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,44,91,45,57,55,46,56,48,55,54,44,51,55,46,52,55,52,49,56,52,93,44,91,45,57,55,46,56,48,55,48,53,55,44,51,55,46,51,56,54,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,79,99,101,97,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,49,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,51,55,56,56,52,44,52,51,46,56,49,53,54,49,49,93,44,91,45,56,55,46,48,57,51,49,48,57,44,52,51,46,56,50,48,49,49,51,93,44,91,45,56,55,46,49,51,52,55,55,56,44,52,51,46,53,52,49,52,51,51,93,44,91,45,56,55,46,49,52,48,51,51,49,44,52,51,46,52,55,49,52,51,54,93,44,91,45,56,54,46,48,51,57,52,57,49,44,52,51,46,52,54,55,52,52,55,93,44,91,45,56,54,46,48,51,55,56,56,52,44,52,51,46,56,49,53,54,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,75,97,110,97,98,101,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,48,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,51,49,56,51,49,44,52,54,46,49,53,51,57,57,49,93,44,91,45,57,51,46,52,51,50,52,57,50,44,52,53,46,57,56,49,51,57,56,93,44,91,45,57,51,46,53,49,56,48,56,44,52,53,46,57,56,49,55,56,57,93,44,91,45,57,51,46,53,49,51,54,56,51,44,52,53,46,55,51,52,51,49,56,93,44,91,45,57,51,46,49,52,49,55,57,51,44,52,53,46,55,51,48,54,53,55,93,44,91,45,57,51,46,49,52,50,56,54,57,44,52,53,46,57,56,49,48,48,53,93,44,91,45,57,51,46,48,53,53,48,56,49,44,52,53,46,57,56,49,50,51,51,93,44,91,45,57,51,46,48,53,51,56,55,49,44,52,54,46,49,53,56,49,50,93,44,91,45,57,51,46,52,51,49,56,51,49,44,52,54,46,49,53,51,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,115,104,116,97,98,117,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,49,51,54,44,34,98,101,100,115,34,58,52,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,48,51,54,51,49,44,52,49,46,55,49,53,49,51,55,93,44,91,45,56,49,46,48,48,51,49,50,53,44,52,49,46,53,48,49,54,56,53,93,44,91,45,56,48,46,53,49,57,50,50,53,44,52,49,46,52,57,57,57,50,52,93,44,91,45,56,48,46,53,49,57,51,53,52,44,52,49,46,56,52,57,53,54,51,93,44,91,45,56,48,46,53,49,57,56,53,49,44,52,50,46,51,50,55,49,51,50,93,44,91,45,56,49,46,48,48,57,56,50,55,44,52,50,46,50,53,49,54,48,50,93,44,91,45,56,49,46,48,48,51,54,51,49,44,52,49,46,55,49,53,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,112,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,55,50,51,57,50,44,51,56,46,55,48,50,55,54,55,93,44,91,45,49,50,48,46,48,55,50,52,56,52,44,51,56,46,53,48,57,56,54,57,93,44,91,45,49,50,48,46,48,49,57,57,53,49,44,51,56,46,52,51,51,53,50,49,93,44,91,45,49,49,57,46,56,56,52,55,52,57,44,51,56,46,51,53,54,49,56,53,93,44,91,45,49,49,57,46,55,53,51,52,56,49,44,51,56,46,52,49,54,55,53,57,93,44,91,45,49,49,57,46,54,51,57,50,48,53,44,51,56,46,51,50,54,56,56,93,44,91,45,49,49,57,46,53,52,54,48,57,50,44,51,56,46,52,57,57,51,53,93,44,91,45,49,49,57,46,54,49,57,48,54,54,44,51,56,46,54,48,51,53,50,57,93,44,91,45,49,49,57,46,53,56,53,52,51,55,44,51,56,46,55,49,51,50,49,50,93,44,91,45,49,49,57,46,57,48,52,51,49,53,44,51,56,46,57,51,51,51,50,52,93,44,91,45,49,49,57,46,56,55,55,55,53,44,51,56,46,56,54,56,51,49,49,93,44,91,45,49,50,48,46,48,55,50,51,57,50,44,51,56,46,55,48,50,55,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,71,97,108,118,101,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,55,48,56,57,44,34,98,101,100,115,34,58,55,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,50,49,54,52,50,50,44,50,57,46,53,53,54,48,56,93,44,91,45,57,53,46,50,51,51,48,56,49,44,50,57,46,52,54,53,53,54,54,93,44,91,45,57,53,46,48,53,54,53,55,53,44,50,57,46,49,57,57,56,53,54,93,44,91,45,57,53,46,48,57,49,54,50,50,44,50,57,46,48,54,50,55,51,57,93,44,91,45,57,52,46,54,54,54,50,50,44,50,57,46,50,56,49,48,52,55,93,44,91,45,57,52,46,54,53,48,51,49,49,44,50,57,46,51,56,50,56,50,93,44,91,45,57,52,46,51,54,57,51,54,49,44,50,57,46,53,48,48,54,50,93,44,91,45,57,52,46,51,55,49,54,50,44,50,57,46,53,57,55,50,48,57,93,44,91,45,57,52,46,57,49,52,51,57,55,44,50,57,46,52,57,54,53,48,53,93,44,91,45,57,53,46,48,49,56,50,48,53,44,50,57,46,53,53,52,53,57,55,93,44,91,45,57,53,46,49,53,49,53,48,53,44,50,57,46,53,48,48,51,56,56,93,44,91,45,57,53,46,50,49,54,52,50,50,44,50,57,46,53,53,54,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,117,108,108,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,53,50,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,57,54,56,53,51,44,51,50,46,48,53,49,48,52,57,93,44,91,45,56,53,46,56,57,51,54,53,50,44,51,50,46,48,52,55,51,53,49,93,44,91,45,56,53,46,55,57,48,48,52,56,44,51,49,46,57,54,55,50,53,52,93,44,91,45,56,53,46,55,57,49,48,52,55,44,51,49,46,56,56,48,51,53,55,93,44,91,45,56,53,46,54,53,55,54,54,56,44,51,49,46,56,56,48,50,55,53,93,44,91,45,56,53,46,53,56,55,51,52,52,44,51,49,46,57,57,55,51,53,53,93,44,91,45,56,53,46,52,50,56,52,55,54,44,51,50,46,48,49,52,57,53,49,93,44,91,45,56,53,46,52,49,48,50,52,49,44,51,50,46,49,52,54,54,53,49,93,44,91,45,56,53,46,52,51,51,53,52,51,44,51,50,46,50,51,52,54,52,56,93,44,91,45,56,53,46,56,53,54,50,49,56,44,51,50,46,50,51,49,57,55,53,93,44,91,45,56,53,46,57,49,57,50,57,51,44,51,50,46,50,55,52,51,56,50,93,44,91,45,56,53,46,57,57,57,49,53,55,44,51,50,46,50,53,48,53,52,51,93,44,91,45,56,53,46,57,57,54,56,53,51,44,51,50,46,48,53,49,48,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,50,52,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,51,49,51,57,44,52,48,46,57,50,55,55,52,93,44,91,45,56,56,46,57,50,57,51,51,49,44,52,48,46,55,53,51,51,51,55,93,44,91,45,56,56,46,53,56,52,50,55,50,44,52,48,46,55,53,55,54,48,56,93,44,91,45,56,56,46,53,55,52,53,48,50,44,52,48,46,54,49,54,53,53,93,44,91,45,56,56,46,52,53,57,52,55,53,44,52,48,46,54,49,55,51,52,53,93,44,91,45,56,56,46,50,51,52,57,53,44,52,48,46,54,49,56,50,48,56,93,44,91,45,56,56,46,50,52,55,51,44,52,48,46,57,57,52,53,54,93,44,91,45,56,56,46,50,53,49,53,48,49,44,52,49,46,49,49,52,50,49,56,93,44,91,45,56,56,46,53,56,54,50,52,44,52,49,46,49,48,56,50,57,51,93,44,91,45,56,56,46,57,51,48,56,56,49,44,52,49,46,49,48,53,57,93,44,91,45,56,56,46,57,51,49,51,57,44,52,48,46,57,50,55,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,80,114,101,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,49,50,52,49,44,51,57,46,57,49,54,57,49,53,93,44,91,45,56,52,46,56,49,52,51,55,51,44,51,57,46,55,50,54,54,50,93,44,91,45,56,52,46,56,49,52,57,51,52,44,51,57,46,53,54,55,55,49,52,93,44,91,45,56,52,46,52,55,57,50,49,51,44,51,57,46,53,57,49,48,50,52,93,44,91,45,56,52,46,52,56,53,51,54,55,44,51,57,46,57,49,56,52,57,49,93,44,91,45,56,52,46,56,49,50,52,49,44,51,57,46,57,49,54,57,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,56,53,56,57,49,44,51,57,46,49,54,56,55,54,57,93,44,91,45,56,50,46,56,48,55,48,57,44,51,56,46,57,52,56,48,55,51,93,44,91,45,56,50,46,55,54,48,54,57,44,51,56,46,56,53,52,56,55,53,93,44,91,45,56,50,46,54,53,48,48,51,57,44,51,56,46,56,52,57,48,55,51,93,44,91,45,56,50,46,53,55,53,53,56,51,44,51,56,46,56,52,52,52,55,56,93,44,91,45,56,50,46,52,53,53,49,55,57,44,51,56,46,56,52,52,53,55,55,93,44,91,45,56,50,46,52,51,53,51,48,57,44,51,57,46,48,51,53,48,55,57,93,44,91,45,56,50,46,52,50,52,54,55,55,44,51,57,46,49,51,55,57,55,50,93,44,91,45,56,50,46,53,51,54,51,48,54,44,51,57,46,49,56,48,55,53,55,93,44,91,45,56,50,46,55,54,50,56,57,50,44,51,57,46,50,48,55,57,54,55,93,44,91,45,56,50,46,55,56,53,56,57,49,44,51,57,46,49,54,56,55,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,48,50,53,50,51,44,34,98,101,100,115,34,58,49,52,56,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,48,51,51,51,44,51,48,46,48,57,48,48,57,54,93,44,91,45,57,53,46,57,54,48,55,51,51,44,51,48,46,49,54,51,52,49,53,93,44,91,45,57,53,46,56,50,54,50,50,44,50,57,46,55,56,56,50,56,93,44,91,45,57,53,46,52,50,52,49,49,56,44,50,57,46,53,56,48,50,51,51,93,44,91,45,57,53,46,50,54,49,52,54,53,44,50,57,46,53,57,51,48,52,52,93,44,91,45,57,53,46,50,49,54,52,50,50,44,50,57,46,53,53,54,48,56,93,44,91,45,57,53,46,49,53,49,53,48,53,44,50,57,46,53,48,48,51,56,56,93,44,91,45,57,53,46,48,49,56,50,48,53,44,50,57,46,53,53,52,53,57,55,93,44,91,45,57,53,46,48,48,49,54,52,50,44,50,57,46,54,54,52,51,56,56,93,44,91,45,57,52,46,57,49,57,54,55,49,44,50,57,46,54,56,56,52,53,52,93,44,91,45,57,52,46,57,48,56,54,53,52,44,50,57,46,56,50,53,49,56,49,93,44,91,45,57,52,46,57,56,49,52,54,44,50,57,46,56,56,52,50,55,54,93,44,91,45,57,53,46,48,57,54,55,48,56,44,51,48,46,49,54,55,50,49,52,93,44,91,45,57,53,46,50,54,52,49,51,56,44,51,48,46,48,51,50,48,54,57,93,44,91,45,57,53,46,52,50,52,50,49,54,44,51,48,46,49,49,53,52,57,49,93,44,91,45,57,53,46,54,48,49,49,51,50,44,51,48,46,49,51,50,55,56,93,44,91,45,57,53,46,56,48,51,51,51,44,51,48,46,48,57,48,48,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,77,105,100,100,108,101,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,53,49,57,50,44,34,98,101,100,115,34,58,52,48,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,56,57,56,55,55,51,44,52,50,46,55,49,49,51,49,50,93,44,91,45,55,49,46,56,52,52,56,52,51,44,52,50,46,54,51,55,57,56,53,93,44,91,45,55,49,46,54,54,52,54,48,49,44,52,50,46,54,49,49,53,57,56,93,44,91,45,55,49,46,53,51,49,51,55,55,44,52,50,46,53,50,48,51,53,50,93,44,91,45,55,49,46,53,56,53,50,49,44,52,50,46,51,49,48,57,53,50,93,44,91,45,55,49,46,53,56,50,57,49,44,52,50,46,49,57,53,53,53,57,93,44,91,45,55,49,46,52,55,56,49,49,57,44,52,50,46,49,53,54,55,56,50,93,44,91,45,55,49,46,49,57,49,49,53,53,44,52,50,46,50,56,51,48,53,57,93,44,91,45,55,49,46,49,54,52,55,48,50,44,52,50,46,51,48,51,56,51,93,44,91,45,55,49,46,49,53,55,48,51,54,44,52,50,46,51,51,48,51,57,93,44,91,45,55,49,46,48,50,53,56,51,54,44,52,50,46,52,52,52,55,48,57,93,44,91,45,55,49,46,49,51,53,52,48,53,44,52,50,46,53,57,57,48,56,93,44,91,45,55,49,46,50,53,54,49,56,56,44,52,50,46,54,53,55,49,52,53,93,44,91,45,55,49,46,50,53,53,49,52,55,44,52,50,46,55,51,54,53,53,52,93,44,91,45,55,49,46,50,57,52,54,51,55,44,52,50,46,54,57,55,48,52,50,93,44,91,45,55,49,46,56,57,56,55,55,51,44,52,50,46,55,49,49,51,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,86,101,103,97,32,66,97,106,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,51,55,49,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,52,51,54,55,53,50,44,49,56,46,53,52,48,56,48,53,93,44,91,45,54,54,46,52,52,51,56,44,49,56,46,51,55,49,48,50,55,93,44,91,45,54,54,46,51,55,55,48,53,56,44,49,56,46,51,52,52,50,52,54,93,44,91,45,54,54,46,51,53,48,48,57,51,44,49,56,46,53,52,49,48,49,52,93,44,91,45,54,54,46,52,51,54,55,53,50,44,49,56,46,53,52,48,56,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,68,97,119,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,54,52,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,57,49,50,56,52,44,51,50,46,57,54,49,56,51,56,93,44,91,45,49,48,50,46,48,55,54,50,49,52,44,51,50,46,57,53,57,55,48,50,93,44,91,45,49,48,50,46,50,48,56,53,50,44,51,50,46,57,53,56,57,53,54,93,44,91,45,49,48,50,46,50,48,50,55,48,51,44,51,50,46,53,50,51,50,55,49,93,44,91,45,49,48,49,46,54,56,56,55,52,44,51,50,46,53,50,53,50,50,50,93,44,91,45,49,48,49,46,54,57,49,50,56,52,44,51,50,46,57,54,49,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,79,110,116,97,114,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,52,55,50,44,34,98,101,100,115,34,58,51,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,55,49,52,55,56,44,52,51,46,48,51,52,54,57,54,93,44,91,45,55,55,46,52,56,53,52,49,56,44,52,51,46,48,51,52,53,54,52,93,44,91,45,55,55,46,53,56,48,51,55,55,44,52,50,46,57,52,51,57,54,51,93,44,91,45,55,55,46,53,57,56,56,49,53,44,52,50,46,54,55,49,57,54,53,93,44,91,45,55,55,46,52,57,48,56,56,57,44,52,50,46,53,55,55,50,56,56,93,44,91,45,55,55,46,51,54,54,53,48,53,44,52,50,46,53,55,54,51,54,56,93,44,91,45,55,55,46,51,49,51,48,48,52,44,52,50,46,55,54,49,50,54,53,93,44,91,45,55,54,46,57,55,49,51,57,50,44,52,50,46,55,54,52,50,50,51,93,44,91,45,55,54,46,57,54,51,57,50,54,44,52,51,46,48,49,51,49,53,55,93,44,91,45,55,55,46,49,51,52,51,51,53,44,52,51,46,48,51,57,57,50,54,93,44,91,45,55,55,46,51,55,49,52,55,56,44,52,51,46,48,51,52,54,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,49,34,44,34,78,65,77,69,34,58,34,86,97,108,100,101,122,45,67,111,114,100,111,118,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,48,49,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,52,54,46,52,57,52,51,49,49,44,54,51,46,49,54,56,57,55,53,93,44,91,45,49,52,54,46,52,57,52,50,57,54,44,54,50,46,57,53,55,56,54,52,93,44,91,45,49,52,54,46,52,51,54,56,57,57,44,54,50,46,56,53,54,57,57,49,93,44,91,45,49,52,54,46,52,50,51,57,56,52,44,54,50,46,50,53,48,53,49,49,93,44,91,45,49,52,54,46,57,55,57,56,48,55,44,54,50,46,50,53,48,52,57,55,93,44,91,45,49,52,54,46,57,52,50,54,48,49,44,54,49,46,56,49,55,50,55,50,93,44,91,45,49,52,54,46,57,52,50,53,53,57,44,54,49,46,52,55,48,54,55,53,93,44,91,45,49,52,55,46,50,48,54,53,57,55,44,54,49,46,52,50,54,50,54,53,93,44,91,45,49,52,56,46,52,54,50,52,55,49,44,54,49,46,52,50,54,50,54,55,93,44,91,45,49,52,56,46,52,55,50,48,54,53,44,54,48,46,56,52,56,53,50,93,44,91,45,49,52,56,46,55,51,56,51,54,51,44,54,48,46,56,52,56,53,52,54,93,44,91,45,49,52,56,46,55,52,53,54,49,56,44,54,48,46,55,51,51,48,48,55,93,44,91,45,49,52,56,46,54,53,55,49,49,57,44,54,48,46,55,51,50,57,55,54,93,44,91,45,49,52,56,46,54,54,52,52,55,44,54,48,46,52,49,53,49,56,51,93,44,91,45,49,52,56,46,53,54,51,55,49,53,44,54,48,46,52,49,53,49,55,50,93,44,91,45,49,52,56,46,53,56,54,49,56,44,53,57,46,57,51,56,53,56,53,93,44,91,45,49,52,56,46,57,52,56,55,54,50,44,53,57,46,56,57,50,55,49,56,93,44,91,45,49,52,56,46,50,49,56,53,48,54,44,53,57,46,56,55,53,54,52,93,44,91,45,49,52,55,46,57,53,54,52,51,57,44,53,57,46,55,52,52,49,51,49,93,44,91,45,49,52,55,46,54,56,55,50,52,44,53,57,46,55,52,49,54,56,93,44,91,45,49,52,55,46,51,51,52,56,50,55,44,53,57,46,56,51,51,56,55,52,93,44,91,45,49,52,55,46,50,52,49,55,52,44,53,57,46,57,57,56,51,49,55,93,44,91,45,49,52,55,46,49,48,49,57,52,44,54,48,46,48,56,49,51,51,55,93,44,91,45,49,52,54,46,57,51,57,50,55,57,44,54,48,46,49,48,51,56,52,56,93,44,91,45,49,52,54,46,49,55,57,51,48,57,44,54,48,46,50,56,48,48,53,54,93,44,91,45,49,52,53,46,56,50,52,51,50,51,44,54,48,46,51,49,53,49,49,55,93,44,91,45,49,52,53,46,51,49,55,54,56,55,44,54,48,46,49,55,57,54,57,49,93,44,91,45,49,52,52,46,55,55,54,48,49,53,44,54,48,46,49,50,57,53,57,50,93,44,91,45,49,52,52,46,53,51,57,54,56,52,44,54,48,46,48,49,48,49,52,57,93,44,91,45,49,52,52,46,55,55,55,55,57,56,44,53,57,46,56,50,57,57,51,53,93,44,91,45,49,52,52,46,54,55,54,55,55,44,53,57,46,55,50,55,51,57,53,93,44,91,45,49,52,52,46,52,49,48,53,48,57,44,53,57,46,55,52,54,50,55,52,93,44,91,45,49,52,52,46,49,52,52,48,55,56,44,53,57,46,57,49,57,52,53,50,93,44,91,45,49,52,51,46,56,57,53,50,49,44,53,57,46,57,52,50,54,52,55,93,44,91,45,49,52,51,46,56,57,51,51,50,53,44,54,48,46,48,50,52,49,54,54,93,44,91,45,49,52,51,46,49,57,51,53,49,57,44,54,48,46,53,50,49,56,50,56,93,44,91,45,49,52,49,46,55,57,48,54,49,57,44,54,48,46,53,50,49,56,57,57,93,44,91,45,49,52,49,46,55,57,48,54,48,49,44,54,48,46,52,51,53,50,51,56,93,44,91,45,49,52,49,46,50,49,51,52,53,49,44,54,48,46,52,51,53,50,54,56,93,44,91,45,49,52,49,46,48,48,49,57,53,53,44,54,48,46,51,57,49,54,56,56,93,44,91,45,49,52,49,46,48,48,49,57,57,53,44,54,49,46,51,48,51,53,54,56,93,44,91,45,49,52,49,46,48,48,50,50,54,55,44,54,49,46,57,48,52,48,52,55,93,44,91,45,49,52,49,46,56,51,49,56,48,52,44,54,49,46,57,48,52,48,53,51,93,44,91,45,49,52,49,46,56,51,49,56,49,50,44,54,50,46,49,49,55,49,55,56,93,44,91,45,49,52,49,46,57,55,55,51,51,54,44,54,50,46,49,54,51,57,56,51,93,44,91,45,49,52,49,46,57,55,55,51,53,51,44,54,50,46,53,49,48,53,53,57,93,44,91,45,49,52,50,46,51,49,51,53,54,52,44,54,50,46,54,56,51,56,50,56,93,44,91,45,49,52,50,46,55,51,49,50,51,51,44,54,50,46,55,48,56,50,56,50,93,44,91,45,49,52,50,46,56,52,56,53,55,57,44,54,50,46,54,48,48,53,52,55,93,44,91,45,49,52,51,46,49,48,52,57,57,54,44,54,50,46,54,49,52,57,48,53,93,44,91,45,49,52,51,46,48,53,55,56,51,52,44,54,50,46,55,55,48,53,52,93,44,91,45,49,52,51,46,49,54,52,51,53,44,54,50,46,56,51,52,53,54,57,93,44,91,45,49,52,51,46,48,51,50,50,51,56,44,54,50,46,57,51,49,55,57,49,93,44,91,45,49,52,51,46,49,51,50,51,51,55,44,54,51,46,49,49,54,57,55,56,93,44,91,45,49,52,52,46,53,56,48,49,53,57,44,54,51,46,49,49,54,57,51,49,93,44,91,45,49,52,53,46,49,53,52,51,56,53,44,54,51,46,49,51,49,49,52,57,93,44,91,45,49,52,53,46,49,53,52,51,57,53,44,54,51,46,50,49,55,55,56,49,93,44,91,45,49,52,54,46,49,49,49,52,56,54,44,54,51,46,50,49,55,55,54,50,93,44,91,45,49,52,54,46,52,57,52,51,49,49,44,54,51,46,49,54,56,57,55,53,93,93,93,44,91,91,91,45,49,52,54,46,53,48,56,50,56,44,53,57,46,51,57,48,55,50,55,93,44,91,45,49,52,54,46,52,48,50,52,55,57,44,53,57,46,51,51,52,55,54,50,93,44,91,45,49,52,54,46,49,52,57,53,51,53,44,53,57,46,52,49,55,49,55,53,93,44,91,45,49,52,54,46,50,57,55,56,54,51,44,53,57,46,53,56,51,57,48,51,93,44,91,45,49,52,54,46,52,50,51,55,53,57,44,53,57,46,53,53,56,55,49,52,93,44,91,45,49,52,54,46,53,48,56,50,56,44,53,57,46,51,57,48,55,50,55,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,117,116,97,117,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,50,48,48,44,34,98,101,100,115,34,58,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,49,55,53,57,53,44,51,50,46,54,54,52,49,54,57,93,44,91,45,56,54,46,57,48,54,55,52,50,44,51,50,46,53,51,54,57,55,55,93,44,91,45,56,54,46,56,49,52,57,49,50,44,51,50,46,51,52,48,56,48,51,93,44,91,45,56,54,46,54,53,51,52,49,57,44,51,50,46,51,57,55,50,52,55,93,44,91,45,56,54,46,52,57,54,55,55,52,44,51,50,46,51,52,52,52,51,55,93,44,91,45,56,54,46,52,49,49,49,55,50,44,51,50,46,52,48,57,57,51,55,93,44,91,45,56,54,46,52,49,51,49,49,54,44,51,50,46,55,48,55,51,56,54,93,44,91,45,56,54,46,55,49,52,50,49,57,44,51,50,46,55,48,53,54,57,52,93,44,91,45,56,54,46,57,49,55,53,57,53,44,51,50,46,54,54,52,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,105,97,109,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,49,50,55,44,34,98,101,100,115,34,58,50,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,53,54,52,49,50,44,51,56,46,55,51,56,53,56,55,93,44,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,44,91,45,57,52,46,54,49,51,50,51,50,44,51,56,46,51,56,56,55,49,56,93,44,91,45,57,52,46,54,49,50,56,56,50,44,51,56,46,52,55,55,53,57,55,93,44,91,45,57,52,46,54,48,57,48,56,44,51,56,46,55,51,56,48,57,57,93,44,91,45,57,53,46,48,53,54,52,49,50,44,51,56,46,55,51,56,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,68,111,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,49,57,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,52,54,53,50,56,44,51,50,46,50,55,50,52,56,57,93,44,91,45,56,51,46,50,57,49,49,48,54,44,51,50,46,49,55,56,56,50,53,93,44,91,45,56,51,46,51,51,55,51,49,51,44,51,50,46,49,48,53,56,56,53,93,44,91,45,56,51,46,50,48,53,55,51,57,44,51,49,46,57,48,48,51,50,53,93,44,91,45,56,50,46,57,50,55,56,54,53,44,51,50,46,49,51,53,50,55,52,93,44,91,45,56,50,46,56,56,52,56,48,51,44,51,50,46,49,57,54,48,55,50,93,44,91,45,56,50,46,57,57,48,57,54,55,44,51,50,46,49,52,55,50,55,52,93,44,91,45,56,51,46,49,51,56,57,57,49,44,51,50,46,52,50,51,48,54,57,93,44,91,45,56,51,46,49,55,51,50,53,50,44,51,50,46,52,53,50,53,51,51,93,44,91,45,56,51,46,51,52,54,53,50,56,44,51,50,46,50,55,50,52,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,111,114,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,49,50,51,44,34,98,101,100,115,34,58,49,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,50,55,52,54,55,51,44,52,50,46,55,55,49,50,53,55,93,44,91,45,55,54,46,50,54,53,53,56,52,44,52,50,46,54,50,51,53,56,56,93,44,91,45,55,54,46,50,53,51,51,53,57,44,52,50,46,52,48,55,53,54,56,93,44,91,45,55,54,46,49,51,48,49,56,49,44,52,50,46,52,49,48,51,51,55,93,44,91,45,55,53,46,56,54,52,48,50,44,52,50,46,52,49,53,55,48,50,93,44,91,45,55,53,46,56,56,57,56,51,50,44,52,50,46,55,50,51,56,52,52,93,44,91,45,55,53,46,56,57,54,48,55,57,44,52,50,46,55,57,48,57,54,52,93,44,91,45,55,54,46,50,55,52,54,55,51,44,52,50,46,55,55,49,50,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,97,109,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,49,52,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,51,54,48,48,54,44,51,49,46,48,52,55,57,57,51,93,44,91,45,56,49,46,57,48,52,56,53,53,44,51,48,46,56,50,56,51,52,93,44,91,45,56,49,46,55,49,56,49,48,57,44,51,48,46,55,52,52,56,48,54,93,44,91,45,56,49,46,51,52,55,48,49,53,44,51,48,46,55,49,50,52,52,52,93,44,91,45,56,49,46,52,48,48,52,56,50,44,51,48,46,55,54,54,52,50,54,93,44,91,45,56,49,46,51,48,54,52,51,53,44,51,48,46,57,57,48,54,52,52,93,44,91,45,56,49,46,52,50,51,55,55,53,44,51,48,46,57,57,48,56,57,50,93,44,91,45,56,49,46,53,54,53,49,49,54,44,51,49,46,48,57,49,57,52,93,44,91,45,56,49,46,55,54,54,51,50,50,44,51,49,46,49,54,57,53,57,53,93,44,91,45,56,49,46,57,51,54,48,48,54,44,51,49,46,48,52,55,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,116,101,110,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,53,57,54,49,44,34,98,101,100,115,34,58,49,57,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,51,49,49,51,54,44,52,50,46,52,50,52,53,54,55,93,44,91,45,56,52,46,49,51,49,57,54,51,44,52,50,46,48,55,49,53,55,55,93,44,91,45,56,51,46,55,55,51,57,50,50,44,52,50,46,48,56,50,52,51,93,44,91,45,56,51,46,53,51,57,51,57,54,44,52,50,46,48,56,53,53,57,56,93,44,91,45,56,51,46,53,53,49,57,48,55,44,52,50,46,52,51,53,49,54,54,93,44,91,45,56,51,46,54,54,52,56,48,56,44,52,50,46,52,51,49,49,55,57,93,44,91,45,56,52,46,49,51,49,49,51,54,44,52,50,46,52,50,52,53,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,76,97,71,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,57,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,57,55,53,44,52,49,46,55,53,57,48,54,56,93,44,91,45,56,53,46,54,53,52,55,52,55,44,52,49,46,53,50,51,51,52,55,93,44,91,45,56,53,46,49,57,52,48,56,52,44,52,49,46,53,50,54,52,51,55,93,44,91,45,56,53,46,49,57,54,55,55,52,44,52,49,46,55,53,57,54,52,52,93,44,91,45,56,53,46,50,57,50,49,55,57,44,52,49,46,55,53,57,56,56,57,93,44,91,45,56,53,46,54,53,57,55,53,44,52,49,46,55,53,57,48,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,55,49,34,44,34,78,65,77,69,34,58,34,80,101,99,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,57,55,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,49,49,48,52,44,51,49,46,51,55,49,51,48,54,93,44,91,45,49,48,51,46,53,56,53,48,56,52,44,51,48,46,55,54,54,52,55,93,44,91,45,49,48,51,46,52,51,57,57,55,54,44,51,48,46,54,54,53,57,51,57,93,44,91,45,49,48,50,46,53,54,55,48,52,57,44,51,48,46,48,53,50,56,48,56,93,44,91,45,49,48,50,46,53,54,54,57,51,55,44,51,48,46,50,56,51,50,54,57,93,44,91,45,49,48,50,46,51,52,51,48,56,53,44,51,48,46,50,56,52,49,49,54,93,44,91,45,49,48,50,46,51,52,50,57,56,54,44,51,48,46,53,57,56,55,53,57,93,44,91,45,49,48,50,46,49,51,56,52,48,54,44,51,48,46,53,57,55,53,50,49,93,44,91,45,49,48,50,46,49,51,55,55,55,56,44,51,48,46,54,53,53,57,56,50,93,44,91,45,49,48,49,46,55,54,56,52,50,44,51,48,46,54,53,51,48,55,55,93,44,91,45,49,48,49,46,56,51,52,53,50,56,44,51,48,46,55,53,55,57,52,57,93,44,91,45,49,48,49,46,56,55,52,50,55,54,44,51,48,46,57,49,50,50,51,54,93,44,91,45,49,48,49,46,57,56,52,53,50,55,44,51,48,46,57,56,55,52,52,53,93,44,91,45,49,48,50,46,50,57,50,54,56,49,44,51,49,46,48,51,54,54,55,55,93,44,91,45,49,48,50,46,51,56,56,56,48,52,44,51,49,46,48,56,55,49,53,54,93,44,91,45,49,48,50,46,52,51,48,49,50,51,44,51,49,46,49,57,51,57,49,56,93,44,91,45,49,48,50,46,54,55,51,50,52,52,44,51,49,46,51,50,56,49,48,53,93,44,91,45,49,48,50,46,55,54,55,51,54,53,44,51,49,46,50,57,51,56,48,51,93,44,91,45,49,48,50,46,56,50,53,49,49,54,44,51,49,46,50,54,54,57,49,52,93,44,91,45,49,48,51,46,48,49,49,48,52,44,51,49,46,51,55,49,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,53,34,44,34,78,65,77,69,34,58,34,80,101,97,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,54,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,48,49,48,57,44,51,50,46,54,57,49,53,57,56,93,44,91,45,56,51,46,55,54,54,57,54,51,44,51,50,46,54,57,50,52,57,53,93,44,91,45,56,52,46,48,48,51,51,54,51,44,51,50,46,53,50,57,57,50,55,93,44,91,45,56,52,46,48,48,56,52,57,44,51,50,46,53,50,49,55,54,57,93,44,91,45,56,52,46,48,49,56,49,52,55,44,51,50,46,53,48,54,52,48,54,93,44,91,45,56,51,46,56,52,54,54,55,54,44,51,50,46,52,54,56,53,49,52,93,44,91,45,56,51,46,55,49,57,56,53,57,44,51,50,46,53,51,49,55,54,93,44,91,45,56,51,46,55,48,49,48,57,44,51,50,46,54,57,49,53,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,49,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,56,48,51,52,54,44,51,52,46,55,57,50,57,48,53,93,44,91,45,56,51,46,56,53,54,53,48,54,44,51,52,46,55,50,50,49,57,49,93,44,91,45,56,51,46,56,52,51,52,48,53,44,51,52,46,53,48,53,52,57,52,93,44,91,45,56,51,46,54,54,54,52,49,53,44,51,52,46,53,48,51,54,48,50,93,44,91,45,56,51,46,54,51,50,51,49,55,44,51,52,46,53,50,56,53,56,55,93,44,91,45,56,51,46,54,50,51,50,57,54,44,51,52,46,55,51,50,49,57,52,93,44,91,45,56,51,46,54,56,49,53,57,54,44,51,52,46,56,48,48,56,56,50,93,44,91,45,56,51,46,55,56,48,51,52,54,44,51,52,46,55,57,50,57,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,55,50,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,49,57,53,55,44,51,51,46,50,55,52,56,51,93,44,91,45,56,50,46,54,54,49,57,49,55,44,51,51,46,49,50,54,51,51,49,93,44,91,45,56,50,46,53,52,55,57,49,51,44,51,51,46,48,48,56,53,51,51,93,44,91,45,56,50,46,53,50,49,48,53,50,44,51,50,46,56,50,50,51,53,54,93,44,91,45,56,50,46,52,51,52,49,52,57,44,51,50,46,55,54,50,50,53,56,93,44,91,45,56,50,46,51,49,54,53,49,50,44,51,50,46,56,51,53,55,55,50,93,44,91,45,56,50,46,50,55,50,51,53,51,44,51,50,46,57,51,55,55,57,54,93,44,91,45,56,50,46,50,57,49,49,56,44,51,51,46,48,54,50,56,50,55,93,44,91,45,56,50,46,50,51,51,48,54,50,44,51,51,46,50,50,55,55,52,93,44,91,45,56,50,46,50,54,55,53,56,44,51,51,46,50,54,55,51,57,55,93,44,91,45,56,50,46,51,53,51,52,57,56,44,51,51,46,51,49,50,51,49,56,93,44,91,45,56,50,46,51,56,51,56,50,57,44,51,51,46,51,49,50,49,48,54,93,44,91,45,56,50,46,52,51,49,57,53,55,44,51,51,46,50,55,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,79,99,111,110,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,53,53,54,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,55,55,57,57,54,44,52,53,46,51,55,56,54,56,51,93,44,91,45,56,56,46,54,56,48,48,54,54,44,52,53,46,50,48,52,57,57,52,93,44,91,45,56,56,46,54,52,49,49,53,57,44,52,53,46,49,49,55,51,52,54,93,44,91,45,56,56,46,52,56,51,55,51,50,44,52,53,46,49,49,54,56,56,55,93,44,91,45,56,56,46,52,56,57,49,52,57,44,52,52,46,56,53,53,52,52,53,93,44,91,45,56,56,46,50,52,56,50,49,51,44,52,52,46,56,53,50,55,51,57,93,44,91,45,56,56,46,50,52,50,54,56,55,44,52,52,46,54,55,57,54,51,49,93,44,91,45,56,55,46,55,54,50,51,51,57,44,52,52,46,54,55,55,48,49,53,93,44,91,45,56,55,46,55,54,50,52,54,52,44,52,52,46,55,54,52,51,54,55,93,44,91,45,56,55,46,55,54,48,48,55,49,44,52,52,46,57,57,48,53,51,93,44,91,45,56,56,46,49,50,49,49,53,50,44,52,53,46,48,50,51,53,56,49,93,44,91,45,56,56,46,49,56,54,51,53,53,44,52,53,46,49,57,55,57,55,52,93,44,91,45,56,56,46,51,48,57,48,54,51,44,52,53,46,50,48,49,53,56,93,44,91,45,56,56,46,51,48,53,56,49,49,44,52,53,46,51,55,52,54,49,93,44,91,45,56,56,46,52,50,56,49,48,50,44,52,53,46,51,55,55,48,49,93,44,91,45,56,56,46,54,55,55,57,57,54,44,52,53,46,51,55,56,54,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,52,55,34,44,34,78,65,77,69,34,58,34,78,97,99,111,103,100,111,99,104,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,53,53,56,44,34,98,101,100,115,34,58,51,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,51,55,53,51,50,44,51,49,46,56,52,53,53,53,53,93,44,91,45,57,52,46,57,54,53,50,50,51,44,51,49,46,54,57,51,56,56,53,93,44,91,45,57,52,46,56,54,53,56,53,55,44,51,49,46,53,50,54,57,49,54,93,44,91,45,57,52,46,55,50,56,52,53,54,44,51,49,46,52,53,55,49,52,55,93,44,91,45,57,52,46,53,53,52,56,51,56,44,51,49,46,52,51,53,49,50,51,93,44,91,45,57,52,46,52,54,54,54,55,54,44,51,49,46,51,55,56,48,48,57,93,44,91,45,57,52,46,51,50,54,54,49,54,44,51,49,46,50,50,52,55,53,52,93,44,91,45,57,52,46,51,49,49,49,44,51,49,46,53,56,56,52,56,50,93,44,91,45,57,52,46,51,57,57,48,57,49,44,51,49,46,54,53,51,53,57,54,93,44,91,45,57,52,46,52,53,50,52,49,54,44,51,49,46,56,52,52,50,56,49,93,44,91,45,57,52,46,57,51,55,53,51,50,44,51,49,46,56,52,53,53,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,52,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,82,104,111,100,101,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,82,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,50,52,50,44,34,98,101,100,115,34,58,50,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,55,49,46,51,56,48,53,52,50,44,52,49,46,54,53,48,51,50,54,93,44,91,45,55,49,46,52,56,52,52,50,55,44,52,49,46,54,48,50,53,57,49,93,44,91,45,55,49,46,55,56,57,50,52,55,44,52,49,46,53,57,54,56,52,55,93,44,91,45,55,49,46,55,57,55,55,52,55,44,52,49,46,52,49,54,56,51,52,93,44,91,45,55,49,46,57,48,55,50,53,56,44,52,49,46,51,48,52,52,56,51,93,44,91,45,55,49,46,55,57,48,57,55,50,44,52,49,46,49,56,52,49,48,49,93,44,91,45,55,49,46,55,57,49,52,56,44,52,49,46,50,55,50,49,54,53,93,44,91,45,55,49,46,53,48,57,52,52,50,44,52,49,46,51,48,55,55,51,50,93,44,91,45,55,49,46,52,48,57,48,57,57,44,52,49,46,52,54,56,50,48,50,93,44,91,45,55,49,46,51,56,48,53,52,50,44,52,49,46,54,53,48,51,50,54,93,93,93,44,91,91,91,45,55,49,46,54,55,56,56,48,55,44,52,49,46,49,53,56,57,49,50,93,44,91,45,55,49,46,54,49,49,54,55,51,44,52,49,46,48,57,55,52,49,51,93,44,91,45,55,49,46,52,55,54,57,50,53,44,52,49,46,49,54,56,49,53,55,93,44,91,45,55,49,46,52,57,50,49,57,54,44,52,49,46,50,52,48,56,55,54,93,44,91,45,55,49,46,54,50,52,53,48,52,44,52,49,46,50,55,52,49,50,57,93,44,91,45,55,49,46,54,55,56,56,48,55,44,52,49,46,49,53,56,57,49,50,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,79,107,97,110,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,51,56,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,55,48,50,48,54,57,44,52,56,46,53,51,49,53,56,57,93,44,91,45,49,50,48,46,54,52,57,57,51,51,44,52,56,46,51,57,56,49,51,57,93,44,91,45,49,50,48,46,51,52,54,50,56,52,44,52,56,46,49,57,57,57,56,54,93,44,91,45,49,50,48,46,51,54,49,50,56,56,44,52,56,46,49,53,55,53,54,57,93,44,91,45,49,50,48,46,49,52,51,57,51,49,44,52,56,46,48,54,53,52,52,52,93,44,91,45,49,50,48,46,48,52,56,54,52,54,44,52,55,46,57,54,48,54,50,56,93,44,91,45,49,49,57,46,56,55,48,53,57,53,44,52,55,46,57,54,48,52,53,53,93,44,91,45,49,49,57,46,56,57,53,51,53,44,52,56,46,48,53,48,48,52,52,93,44,91,45,49,49,57,46,54,56,50,57,56,49,44,52,56,46,48,57,50,53,49,51,93,44,91,45,49,49,57,46,54,53,50,52,54,56,44,52,56,46,48,48,48,50,50,49,93,44,91,45,49,49,57,46,52,51,54,50,53,55,44,52,56,46,48,55,54,54,56,56,93,44,91,45,49,49,57,46,51,52,51,53,50,51,44,52,56,46,48,52,57,52,51,50,93,44,91,45,49,49,57,46,49,53,48,57,56,51,44,52,56,46,49,52,54,48,54,55,93,44,91,45,49,49,57,46,48,53,54,57,55,44,52,56,46,49,51,54,57,55,52,93,44,91,45,49,49,56,46,57,56,50,50,51,52,44,52,55,46,57,54,50,48,50,53,93,44,91,45,49,49,56,46,57,55,51,53,48,52,44,52,55,46,57,52,51,52,49,52,93,44,91,45,49,49,56,46,56,53,49,57,54,44,52,55,46,57,53,55,57,48,54,93,44,91,45,49,49,56,46,56,51,54,54,49,52,44,52,57,46,48,48,48,48,56,51,93,44,91,45,49,50,48,46,48,51,55,53,53,52,44,52,56,46,57,57,57,52,52,52,93,44,91,45,49,50,48,46,56,53,49,53,50,56,44,52,57,46,48,48,48,51,48,49,93,44,91,45,49,50,48,46,55,54,56,53,49,53,44,52,56,46,57,53,52,52,57,93,44,91,45,49,50,48,46,55,51,53,52,50,55,44,52,56,46,55,56,54,52,56,55,93,44,91,45,49,50,48,46,55,53,49,57,48,52,44,52,56,46,54,53,55,48,48,50,93,44,91,45,49,50,48,46,55,48,50,48,54,57,44,52,56,46,53,51,49,53,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,83,112,111,107,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,55,56,55,53,44,34,98,101,100,115,34,58,49,56,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,52,51,54,57,57,51,44,52,56,46,48,52,55,50,48,55,93,44,91,45,49,49,55,46,53,51,53,50,54,50,44,52,56,46,48,52,55,55,55,57,93,44,91,45,49,49,55,46,53,51,53,50,54,50,44,52,55,46,55,57,52,52,53,56,93,44,91,45,49,49,55,46,54,57,55,55,55,52,44,52,55,46,56,53,54,50,55,56,93,44,91,45,49,49,55,46,56,50,48,57,52,55,44,52,55,46,56,50,53,55,55,53,93,44,91,45,49,49,55,46,56,50,51,54,50,57,44,52,55,46,50,54,48,50,50,93,44,91,45,49,49,55,46,48,51,57,56,55,56,44,52,55,46,50,53,57,50,55,50,93,44,91,45,49,49,55,46,48,51,57,56,48,56,44,52,55,46,51,54,54,48,51,49,93,44,91,45,49,49,55,46,48,52,50,48,56,57,44,52,55,46,57,55,55,52,53,93,44,91,45,49,49,55,46,48,52,49,56,55,55,44,52,56,46,48,52,53,52,54,54,93,44,91,45,49,49,55,46,52,51,54,57,57,51,44,52,56,46,48,52,55,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,70,111,114,101,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,52,55,54,48,49,44,52,53,46,56,57,53,51,53,53,93,44,91,45,56,57,46,48,52,54,52,57,44,52,53,46,52,54,52,52,51,57,93,44,91,45,56,56,46,57,50,54,48,50,53,44,52,53,46,51,55,56,54,51,55,93,44,91,45,56,56,46,54,55,55,57,57,54,44,52,53,46,51,55,56,54,56,51,93,44,91,45,56,56,46,52,50,56,49,48,50,44,52,53,46,51,55,55,48,49,93,44,91,45,56,56,46,52,50,53,51,48,50,44,52,53,46,55,50,50,52,50,54,93,44,91,45,56,56,46,54,55,53,56,50,49,44,52,53,46,55,50,50,57,93,44,91,45,56,56,46,54,56,51,51,49,50,44,52,54,46,48,49,52,49,49,51,93,44,91,45,56,56,46,57,51,50,55,53,55,44,52,54,46,48,55,51,54,54,56,93,44,91,45,56,56,46,57,51,51,50,50,50,44,52,53,46,57,56,50,50,55,54,93,44,91,45,56,57,46,48,52,55,54,48,49,44,52,53,46,56,57,53,51,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,83,97,119,121,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,55,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,53,49,50,56,50,44,52,54,46,49,53,55,48,52,53,93,44,91,45,57,49,46,53,52,48,50,57,52,44,52,53,46,54,51,55,54,48,53,93,44,91,45,57,48,46,54,55,56,55,52,57,44,52,53,46,54,51,56,50,54,52,93,44,91,45,57,48,46,54,55,54,57,54,56,44,52,53,46,57,56,49,53,53,52,93,44,91,45,57,48,46,57,50,53,49,55,52,44,52,53,46,57,56,49,48,53,53,93,44,91,45,57,48,46,57,50,52,53,56,51,44,52,54,46,49,53,52,54,49,54,93,44,91,45,57,49,46,53,53,49,50,56,50,44,52,54,46,49,53,55,48,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,72,117,100,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,56,54,51,49,44,34,98,101,100,115,34,58,49,56,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,56,52,55,57,52,44,52,48,46,55,57,55,54,56,55,93,44,91,45,55,52,46,49,52,55,53,50,57,44,52,48,46,55,56,54,52,57,49,93,44,91,45,55,52,46,49,51,54,55,48,51,44,52,48,46,54,55,52,52,52,52,93,44,91,45,55,52,46,49,54,49,52,50,56,44,52,48,46,54,52,52,49,52,56,93,44,91,45,55,52,46,48,53,53,55,51,57,44,52,48,46,54,53,49,55,54,93,44,91,45,55,52,46,48,51,52,53,55,51,44,52,48,46,54,56,52,56,54,54,93,44,91,45,55,51,46,57,56,52,55,57,52,44,52,48,46,55,57,55,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,116,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,52,55,53,44,34,98,101,100,115,34,58,49,54,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,57,51,50,52,57,44,52,48,46,57,56,56,53,51,49,93,44,91,45,56,49,46,52,50,48,51,54,51,44,52,48,46,57,48,54,53,48,50,93,44,91,45,56,49,46,54,52,55,55,51,53,44,52,48,46,57,49,52,48,49,54,93,44,91,45,56,49,46,54,53,48,48,52,53,44,52,48,46,54,54,56,49,49,55,93,44,91,45,56,49,46,54,52,57,49,57,57,44,52,48,46,54,51,53,49,48,54,93,44,91,45,56,49,46,51,49,55,55,51,57,44,52,48,46,54,53,49,53,55,57,93,44,91,45,56,49,46,50,51,55,50,50,55,44,52,48,46,55,50,51,53,52,50,93,44,91,45,56,49,46,48,56,55,50,56,57,44,52,48,46,55,50,55,56,49,54,93,44,91,45,56,49,46,48,56,54,54,55,57,44,52,48,46,57,48,49,54,48,57,93,44,91,45,56,49,46,48,56,54,51,49,50,44,52,48,46,57,56,56,48,51,49,93,44,91,45,56,49,46,51,57,51,50,52,57,44,52,48,46,57,56,56,53,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,71,117,97,100,97,108,117,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,49,51,55,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,55,53,50,53,57,44,50,57,46,56,53,56,50,48,56,93,44,91,45,57,55,46,57,57,57,50,55,49,44,50,57,46,55,53,50,52,52,52,93,44,91,45,57,56,46,48,56,57,50,55,55,44,50,57,46,54,56,51,57,51,49,93,44,91,45,57,56,46,51,49,48,57,50,56,44,50,57,46,53,57,52,52,55,51,93,44,91,45,57,56,46,49,51,52,49,55,49,44,50,57,46,52,52,49,55,53,49,93,44,91,45,57,56,46,49,50,50,53,55,52,44,50,57,46,51,55,56,53,52,57,93,44,91,45,57,55,46,56,52,48,51,56,51,44,50,57,46,51,55,54,55,57,49,93,44,91,45,57,55,46,54,51,51,49,55,54,44,50,57,46,54,52,57,56,54,51,93,44,91,45,57,55,46,55,51,53,55,50,44,50,57,46,54,57,49,49,57,56,93,44,91,45,57,55,46,56,55,53,50,53,57,44,50,57,46,56,53,56,50,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,54,51,54,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,56,54,51,48,55,56,44,52,56,46,51,55,48,51,54,49,93,44,91,45,49,50,50,46,56,54,50,54,56,52,44,52,56,46,50,52,51,54,53,56,93,44,91,45,49,50,50,46,54,52,50,50,53,54,44,52,56,46,48,57,51,55,55,93,44,91,45,49,50,50,46,54,48,54,55,54,44,52,55,46,57,55,50,57,53,51,93,44,91,45,49,50,50,46,52,50,57,54,50,53,44,52,55,46,56,50,56,48,57,56,93,44,91,45,49,50,50,46,51,50,56,52,54,51,44,52,55,46,57,54,51,55,54,51,93,44,91,45,49,50,50,46,51,53,48,50,56,57,44,52,56,46,48,56,48,51,49,50,93,44,91,45,49,50,50,46,52,53,56,53,57,54,44,52,56,46,50,57,55,55,48,51,93,44,91,45,49,50,50,46,53,57,49,57,52,52,44,52,56,46,52,49,55,55,53,56,93,44,91,45,49,50,50,46,55,51,53,50,51,49,44,52,56,46,52,48,53,57,51,50,93,44,91,45,49,50,50,46,56,54,51,48,55,56,44,52,56,46,51,55,48,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,49,55,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,50,53,53,55,50,44,51,57,46,52,57,51,50,56,57,93,44,91,45,55,56,46,48,51,51,49,57,49,44,51,57,46,50,54,52,54,49,50,93,44,91,45,55,55,46,56,50,56,50,57,57,44,51,57,46,49,51,50,52,50,54,93,44,91,45,55,55,46,55,49,57,53,49,57,44,51,57,46,51,50,49,51,49,52,93,44,91,45,55,55,46,56,50,53,53,55,50,44,51,57,46,52,57,51,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,80,114,105,110,99,101,32,87,105,108,108,105,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,55,52,57,44,34,98,101,100,115,34,58,50,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,53,53,49,54,57,44,51,56,46,57,52,50,54,53,54,93,44,91,45,55,55,46,55,49,53,55,49,53,44,51,56,46,56,51,50,49,51,54,93,44,91,45,55,55,46,53,51,49,51,50,56,44,51,56,46,53,53,54,53,53,93,44,91,45,55,55,46,52,55,54,56,52,55,44,51,56,46,53,57,50,50,56,54,93,44,91,45,55,55,46,50,57,53,52,48,54,44,51,56,46,53,48,57,50,51,57,93,44,91,45,55,55,46,50,50,55,51,51,54,44,51,56,46,54,48,52,53,55,93,44,91,45,55,55,46,50,50,51,54,56,51,44,51,56,46,54,53,50,48,54,52,93,44,91,45,55,55,46,53,51,53,57,57,49,44,51,56,46,56,52,55,51,54,56,93,44,91,45,55,55,46,54,53,53,49,54,57,44,51,56,46,57,52,50,54,53,54,93,93,44,91,91,45,55,55,46,52,53,56,54,57,53,44,51,56,46,55,55,50,51,49,57,93,44,91,45,55,55,46,52,53,49,54,52,50,44,51,56,46,55,51,56,51,51,55,93,44,91,45,55,55,46,52,57,57,52,51,44,51,56,46,55,51,55,49,51,55,93,44,91,45,55,55,46,52,55,53,55,54,44,51,56,46,55,56,49,49,55,49,93,44,91,45,55,55,46,52,50,48,53,56,49,44,51,56,46,55,54,50,50,56,55,93,44,91,45,55,55,46,52,50,55,51,51,50,44,51,56,46,55,53,51,53,57,56,93,44,91,45,55,55,46,52,53,56,54,57,53,44,51,56,46,55,55,50,51,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,49,53,54,44,34,98,101,100,115,34,58,49,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,54,57,54,55,56,50,44,52,48,46,50,52,49,56,54,51,93,44,91,45,55,53,46,56,55,51,51,55,53,44,52,48,46,49,51,55,49,48,55,93,44,91,45,55,53,46,57,57,52,54,50,57,44,51,57,46,57,53,50,52,50,57,93,44,91,45,55,53,46,57,56,54,56,50,51,44,51,57,46,56,57,50,49,57,50,93,44,91,45,55,54,46,49,51,53,52,56,52,44,51,57,46,55,50,49,49,52,55,93,44,91,45,55,53,46,55,56,56,53,57,54,44,51,57,46,55,50,50,49,57,57,93,44,91,45,55,53,46,53,57,52,56,56,44,51,57,46,56,51,55,53,50,53,93,44,91,45,55,53,46,53,50,51,56,49,54,44,51,57,46,57,52,52,49,50,52,93,44,91,45,55,53,46,51,54,49,48,54,54,44,52,48,46,48,54,53,53,52,51,93,44,91,45,55,53,46,53,55,51,51,51,56,44,52,48,46,49,57,53,51,48,51,93,44,91,45,55,53,46,54,57,54,55,56,50,44,52,48,46,50,52,49,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,52,56,54,44,34,98,101,100,115,34,58,52,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,49,49,50,48,49,44,51,55,46,52,50,52,53,48,57,93,44,91,45,56,49,46,51,54,50,49,53,54,44,51,55,46,51,51,55,54,56,55,93,44,91,45,56,49,46,50,50,53,49,48,52,44,51,55,46,50,51,52,56,55,52,93,44,91,45,56,48,46,57,56,48,49,52,54,44,51,55,46,50,57,50,55,52,51,93,44,91,45,56,48,46,56,52,57,52,53,49,44,51,55,46,51,52,54,57,48,57,93,44,91,45,56,48,46,56,53,57,52,53,55,44,51,55,46,52,50,57,52,57,49,93,44,91,45,56,49,46,48,57,52,54,51,44,51,55,46,53,56,56,54,53,56,93,44,91,45,56,49,46,50,50,50,49,50,49,44,51,55,46,53,49,48,52,49,54,93,44,91,45,56,49,46,51,49,49,50,48,49,44,51,55,46,52,50,52,53,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,82,111,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,56,57,55,44,34,98,101,100,115,34,58,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,49,56,49,50,44,51,54,46,48,52,56,57,55,55,93,44,91,45,56,52,46,52,52,54,48,53,52,44,51,53,46,57,56,53,57,56,52,93,44,91,45,56,52,46,54,56,48,54,51,51,44,51,53,46,57,48,56,52,53,52,93,44,91,45,56,52,46,55,56,49,57,48,49,44,51,53,46,56,50,53,93,44,91,45,56,52,46,55,50,51,56,53,51,44,51,53,46,55,53,50,56,57,54,93,44,91,45,56,52,46,54,49,57,56,54,53,44,51,53,46,54,52,52,54,53,49,93,44,91,45,56,52,46,53,56,52,52,55,50,44,51,53,46,54,52,52,52,50,52,93,44,91,45,56,52,46,53,51,57,57,54,51,44,51,53,46,54,55,48,52,54,53,93,44,91,45,56,52,46,50,54,51,51,56,51,44,51,53,46,56,57,54,57,52,93,44,91,45,56,52,46,50,55,49,53,56,55,44,51,53,46,57,49,48,49,54,53,93,44,91,45,56,52,46,51,52,49,56,49,50,44,51,54,46,48,52,56,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,108,97,108,108,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,52,56,55,44,34,98,101,100,115,34,58,49,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,55,49,53,48,49,54,44,52,55,46,56,55,57,56,53,57,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,56,56,49,48,56,93,44,91,45,49,50,50,46,57,52,57,49,54,55,44,52,55,46,56,54,54,56,50,50,93,44,91,45,49,50,50,46,57,53,50,51,56,54,44,52,56,46,51,52,57,55,48,54,93,44,91,45,49,50,51,46,50,52,55,57,49,57,44,52,56,46,50,56,52,53,53,56,93,44,91,45,49,50,51,46,53,52,49,50,49,54,44,52,56,46,50,50,52,53,53,51,93,44,91,45,49,50,52,46,48,49,50,48,53,54,44,52,56,46,50,57,54,54,55,49,93,44,91,45,49,50,52,46,55,52,57,55,52,44,52,56,46,52,57,57,55,56,51,93,44,91,45,49,50,52,46,56,49,54,57,57,51,44,52,56,46,51,56,53,52,55,53,93,44,91,45,49,50,52,46,55,54,49,51,56,55,44,52,56,46,50,57,53,54,56,56,93,44,91,45,49,50,52,46,56,52,56,53,51,55,44,52,56,46,49,55,52,48,48,53,93,44,91,45,49,50,52,46,55,56,53,49,56,55,44,52,56,46,48,56,55,49,49,53,93,44,91,45,49,50,52,46,55,57,49,49,54,50,44,52,55,46,57,54,49,55,48,53,93,44,91,45,49,50,52,46,55,49,53,48,49,54,44,52,55,46,56,55,57,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,83,116,101,118,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,50,49,52,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,49,57,55,51,55,53,44,52,57,46,48,48,48,48,54,56,93,44,91,45,49,49,56,46,50,49,52,52,56,51,44,52,56,46,56,56,56,49,54,49,93,44,91,45,49,49,56,46,49,48,52,57,54,44,52,56,46,54,53,51,53,48,51,93,44,91,45,49,49,56,46,50,48,54,53,48,55,44,52,56,46,52,55,48,50,57,54,93,44,91,45,49,49,56,46,49,51,57,55,57,49,44,52,56,46,50,54,55,51,48,56,93,44,91,45,49,49,56,46,50,52,56,54,48,54,44,52,56,46,49,51,52,50,53,53,93,44,91,45,49,49,56,46,50,51,51,52,57,56,44,52,56,46,48,54,51,52,56,53,93,44,91,45,49,49,56,46,52,48,48,56,48,55,44,52,56,46,48,50,56,54,56,50,93,44,91,45,49,49,56,46,51,52,48,57,51,56,44,52,55,46,56,57,52,51,49,54,93,44,91,45,49,49,56,46,50,49,50,51,50,51,44,52,55,46,57,52,53,52,57,51,93,44,91,45,49,49,56,46,48,55,56,49,56,50,44,52,55,46,56,48,48,48,54,50,93,44,91,45,49,49,55,46,56,50,48,57,52,55,44,52,55,46,56,50,53,55,55,53,93,44,91,45,49,49,55,46,54,57,55,55,55,52,44,52,55,46,56,53,54,50,55,56,93,44,91,45,49,49,55,46,53,51,53,50,54,50,44,52,55,46,55,57,52,52,53,56,93,44,91,45,49,49,55,46,53,51,53,50,54,50,44,52,56,46,48,52,55,55,55,57,93,44,91,45,49,49,55,46,52,51,54,57,57,51,44,52,56,46,48,52,55,50,48,55,93,44,91,45,49,49,55,46,53,48,50,51,55,49,44,52,56,46,49,51,52,55,48,56,93,44,91,45,49,49,55,46,52,57,57,57,55,53,44,52,56,46,54,53,54,49,56,55,93,44,91,45,49,49,55,46,53,54,51,56,53,56,44,52,56,46,56,51,54,54,55,49,93,44,91,45,49,49,55,46,52,50,57,57,54,56,44,52,57,46,48,48,48,52,54,54,93,44,91,45,49,49,56,46,49,57,55,51,55,53,44,52,57,46,48,48,48,48,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,86,97,110,32,66,117,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,44,91,45,57,50,46,49,55,57,55,56,44,52,48,46,54,48,48,53,50,57,93,44,91,45,57,49,46,57,52,51,49,49,50,44,52,48,46,54,48,53,56,50,55,93,44,91,45,57,49,46,55,49,54,55,54,57,44,52,48,46,53,57,56,53,51,93,44,91,45,57,49,46,55,49,56,55,56,55,44,52,48,46,56,49,51,53,52,52,93,44,91,45,57,49,46,55,49,56,49,56,44,52,48,46,57,48,49,48,56,55,93,44,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,111,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,56,49,55,52,51,44,52,48,46,55,48,48,48,48,51,93,44,91,45,57,57,46,57,56,49,49,57,51,44,52,48,46,52,51,56,50,57,49,93,44,91,45,49,48,48,46,48,57,52,55,57,56,44,52,48,46,51,53,49,50,52,53,93,44,91,45,57,57,46,54,52,50,50,48,57,44,52,48,46,51,53,49,50,93,44,91,45,57,57,46,54,52,51,52,54,50,44,52,48,46,54,56,52,57,49,49,93,44,91,45,57,57,46,57,56,49,55,52,51,44,52,48,46,55,48,48,48,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,56,52,48,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,52,51,51,53,50,44,51,52,46,48,56,57,48,52,52,93,44,91,45,56,56,46,55,49,56,57,54,52,44,51,52,46,48,55,52,53,50,49,93,44,91,45,56,56,46,55,49,57,57,55,57,44,51,51,46,56,49,49,51,51,93,44,91,45,56,56,46,55,49,57,54,50,54,44,51,51,46,54,56,48,50,53,51,93,44,91,45,56,56,46,53,49,51,57,49,55,44,51,51,46,54,53,48,50,48,57,93,44,91,45,56,56,46,50,52,56,57,49,54,44,51,51,46,55,52,52,57,55,55,93,44,91,45,56,56,46,50,48,55,50,50,57,44,51,52,46,48,53,56,51,51,51,93,44,91,45,56,56,46,50,48,51,56,54,52,44,51,52,46,48,56,54,53,54,52,93,44,91,45,56,56,46,53,52,51,51,53,50,44,51,52,46,48,56,57,48,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,69,115,99,97,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,49,53,50,50,44,34,98,101,100,115,34,58,49,54,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,57,56,56,50,57,44,51,48,46,57,57,55,52,53,53,93,44,91,45,56,55,46,54,50,54,50,50,52,44,51,48,46,56,52,54,54,54,52,93,44,91,45,56,55,46,51,57,51,50,57,52,44,51,48,46,54,50,55,50,49,56,93,44,91,45,56,55,46,52,52,53,49,48,51,44,51,48,46,53,50,56,57,48,57,93,44,91,45,56,55,46,51,54,57,51,56,51,44,51,48,46,52,51,49,57,52,56,93,44,91,45,56,55,46,52,57,57,57,56,44,51,48,46,51,50,56,57,53,55,93,44,91,45,56,55,46,53,49,56,51,52,54,44,51,48,46,50,50,57,53,48,54,93,44,91,45,56,55,46,50,57,54,52,53,55,44,51,48,46,50,55,50,54,57,93,44,91,45,56,54,46,57,49,54,54,48,55,44,51,48,46,51,49,56,55,50,52,93,44,91,45,56,54,46,57,50,48,49,49,51,44,51,48,46,51,56,54,53,54,55,93,44,91,45,56,55,46,49,55,56,57,54,56,44,51,48,46,51,51,52,53,57,57,93,44,91,45,56,55,46,49,50,52,57,54,56,44,51,48,46,53,48,48,49,57,54,93,44,91,45,56,55,46,50,54,48,54,55,55,44,51,48,46,54,50,49,51,54,51,93,44,91,45,56,55,46,51,49,50,52,48,57,44,51,48,46,55,51,52,55,55,93,44,91,45,56,55,46,50,56,50,50,57,44,51,48,46,57,50,52,56,50,57,93,44,91,45,56,55,46,49,54,51,54,53,51,44,51,48,46,57,57,57,48,50,57,93,44,91,45,56,55,46,53,57,56,56,50,57,44,51,48,46,57,57,55,52,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,51,57,34,44,34,78,65,77,69,34,58,34,84,97,114,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,57,57,55,55,44,34,98,101,100,115,34,58,54,57,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,51,50,50,56,55,44,51,50,46,57,56,57,51,50,52,93,44,91,45,57,55,46,51,57,56,52,56,44,51,50,46,57,57,48,56,51,57,93,44,91,45,57,55,46,53,52,52,49,56,49,44,51,50,46,57,57,52,49,55,55,93,44,91,45,57,55,46,53,53,48,53,56,50,44,51,50,46,53,53,53,51,57,49,93,44,91,45,57,55,46,48,56,54,56,51,52,44,51,50,46,53,52,57,52,50,56,93,44,91,45,57,55,46,48,51,56,51,56,53,44,51,50,46,53,52,56,54,54,50,93,44,91,45,57,55,46,48,51,50,50,56,55,44,51,50,46,57,56,57,51,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,80,114,105,110,99,101,32,71,101,111,114,103,101,39,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,54,50,48,50,44,34,98,101,100,115,34,58,54,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,48,48,50,52,51,54,44,51,56,46,57,54,53,54,55,51,93,44,91,45,55,54,46,57,48,57,51,57,51,44,51,56,46,56,57,50,56,53,50,93,44,91,45,55,55,46,48,51,57,48,48,54,44,51,56,46,55,57,49,54,52,53,93,44,91,45,55,55,46,48,52,49,51,54,50,44,51,56,46,55,56,53,52,49,53,93,44,91,45,55,55,46,48,56,54,51,57,49,44,51,56,46,55,48,54,50,50,55,93,44,91,45,55,54,46,55,52,55,53,55,44,51,56,46,54,49,55,51,51,53,93,44,91,45,55,54,46,54,55,53,52,53,55,44,51,56,46,53,51,53,56,55,54,93,44,91,45,55,54,46,54,56,54,51,53,56,44,51,56,46,55,52,56,52,55,53,93,44,91,45,55,54,46,54,57,56,50,54,56,44,51,56,46,57,56,51,54,52,55,93,44,91,45,55,54,46,56,52,48,51,54,50,44,51,57,46,49,48,51,49,52,50,93,44,91,45,55,54,46,56,56,56,53,48,53,44,51,57,46,49,51,48,57,54,55,93,44,91,45,55,55,46,48,48,50,52,51,54,44,51,56,46,57,54,53,54,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,55,49,53,57,53,44,51,54,46,56,48,48,48,51,49,93,44,91,45,56,50,46,57,52,55,54,52,55,44,51,54,46,54,55,53,55,53,49,93,44,91,45,56,50,46,57,56,53,49,50,52,44,51,54,46,53,57,51,55,50,57,93,44,91,45,56,50,46,56,51,48,52,51,51,44,51,54,46,53,57,51,55,54,49,93,44,91,45,56,50,46,54,48,57,49,55,54,44,51,54,46,53,57,52,48,57,57,93,44,91,45,56,50,46,50,57,52,49,51,52,44,51,54,46,53,57,53,54,57,55,93,44,91,45,56,50,46,51,51,50,48,55,56,44,51,54,46,55,48,56,57,54,57,93,44,91,45,56,50,46,52,48,54,54,51,51,44,51,54,46,56,55,54,51,53,54,93,44,91,45,56,50,46,54,49,55,55,52,44,51,54,46,56,56,48,55,55,51,93,44,91,45,56,50,46,55,55,49,53,57,53,44,51,54,46,56,48,48,48,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,50,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,53,56,52,54,54,44,50,57,46,50,54,51,56,55,54,93,44,91,45,57,54,46,57,51,56,53,56,55,44,50,57,46,48,54,51,50,52,52,93,44,91,45,57,54,46,56,51,56,55,57,53,44,50,57,46,48,50,53,51,50,55,93,44,91,45,57,54,46,55,57,50,49,51,51,44,50,56,46,57,49,56,56,48,51,93,44,91,45,57,54,46,54,52,51,52,52,50,44,50,56,46,55,49,50,49,48,53,93,44,91,45,57,54,46,51,50,51,53,50,50,44,50,56,46,54,55,53,53,57,55,93,44,91,45,57,54,46,51,48,57,49,55,56,44,50,56,46,57,54,51,50,57,49,93,44,91,45,57,54,46,54,52,48,51,49,53,44,50,57,46,50,52,55,56,48,52,93,44,91,45,57,54,46,54,53,56,52,54,54,44,50,57,46,50,54,51,56,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,111,118,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,51,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,56,52,49,54,51,44,51,51,46,57,49,53,53,49,93,44,91,45,57,55,46,51,55,52,54,57,44,51,51,46,56,49,56,53,53,50,93,44,91,45,57,55,46,50,53,53,54,51,57,44,51,51,46,56,54,51,55,48,50,93,44,91,45,57,55,46,49,53,52,51,54,55,44,51,51,46,55,50,52,48,57,52,93,44,91,45,57,55,46,48,57,53,54,52,52,44,51,51,46,55,50,57,50,50,50,93,44,91,45,57,54,46,57,52,52,54,49,49,44,51,51,46,57,52,57,50,49,55,93,44,91,45,57,54,46,57,51,52,56,52,44,51,51,46,57,53,52,52,53,51,93,44,91,45,57,54,46,57,54,57,54,50,55,44,51,52,46,48,55,49,48,50,93,44,91,45,57,55,46,53,54,48,55,54,49,44,51,52,46,48,55,49,49,53,93,44,91,45,57,55,46,53,54,48,56,53,56,44,51,51,46,56,57,57,54,52,53,93,44,91,45,57,55,46,52,56,52,49,54,51,44,51,51,46,57,49,53,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,57,34,44,34,78,65,77,69,34,58,34,84,119,105,103,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,49,51,53,49,49,44,51,50,46,56,52,52,56,54,56,93,44,91,45,56,51,46,53,57,55,54,53,54,44,51,50,46,54,54,52,51,51,56,93,44,91,45,56,51,46,52,57,55,57,50,51,44,51,50,46,52,53,50,49,57,56,93,44,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,44,91,45,56,51,46,52,48,54,57,57,44,51,50,46,56,57,56,50,50,93,44,91,45,56,51,46,53,49,51,53,49,49,44,51,50,46,56,52,52,56,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,97,104,111,110,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,48,54,52,44,34,98,101,100,115,34,58,49,48,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,48,50,50,57,44,52,49,46,49,51,52,49,56,57,93,44,91,45,56,49,46,48,48,49,54,57,53,44,52,48,46,57,56,55,55,56,51,93,44,91,45,56,49,46,48,56,54,51,49,50,44,52,48,46,57,56,56,48,51,49,93,44,91,45,56,49,46,48,56,54,54,55,57,44,52,48,46,57,48,49,54,48,57,93,44,91,45,56,48,46,53,49,57,49,53,44,52,48,46,57,48,48,51,50,54,93,44,91,45,56,48,46,53,49,57,48,51,55,44,52,49,46,49,50,53,48,57,51,93,44,91,45,56,48,46,53,49,57,48,52,56,44,52,49,46,49,51,51,51,57,52,93,44,91,45,56,49,46,48,48,50,50,57,44,52,49,46,49,51,52,49,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,53,52,44,34,98,101,100,115,34,58,49,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,56,54,49,52,56,44,51,50,46,52,57,51,48,53,51,93,44,91,45,56,54,46,48,50,51,48,49,50,44,51,50,46,52,49,57,57,55,56,93,44,91,45,56,53,46,57,49,57,50,57,51,44,51,50,46,50,55,52,51,56,50,93,44,91,45,56,53,46,56,53,54,50,49,56,44,51,50,46,50,51,49,57,55,53,93,44,91,45,56,53,46,52,51,51,53,52,51,44,51,50,46,50,51,52,54,52,56,93,44,91,45,56,53,46,52,51,52,48,52,53,44,51,50,46,52,48,57,56,52,93,44,91,45,56,53,46,52,56,57,51,52,56,44,51,50,46,52,57,54,57,51,55,93,44,91,45,56,53,46,54,57,53,56,53,52,44,51,50,46,53,57,53,57,51,51,93,44,91,45,56,53,46,55,57,56,53,56,53,44,51,50,46,53,56,49,48,56,57,93,44,91,45,56,53,46,56,56,54,49,52,56,44,51,50,46,52,57,51,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,56,55,44,34,98,101,100,115,34,58,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,57,56,52,53,57,44,51,56,46,54,48,54,48,54,50,93,44,91,45,56,56,46,54,57,56,57,54,49,44,51,56,46,52,55,52,57,49,52,93,44,91,45,56,56,46,55,48,50,51,57,49,44,51,56,46,50,53,54,54,54,49,93,44,91,45,56,56,46,51,55,48,51,55,53,44,51,56,46,50,53,53,51,49,57,93,44,91,45,56,56,46,49,53,48,56,57,49,44,51,56,46,50,53,54,49,53,54,93,44,91,45,56,56,46,49,52,55,56,48,51,44,51,56,46,53,54,57,48,51,55,93,44,91,45,56,56,46,50,53,51,57,55,56,44,51,56,46,53,57,57,53,48,50,93,44,91,45,56,56,46,54,57,56,52,53,57,44,51,56,46,54,48,54,48,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,51,55,34,44,34,78,65,77,69,34,58,34,83,119,105,115,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,56,52,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,57,57,56,52,57,51,44,51,52,46,55,52,56,49,57,93,44,91,45,49,48,49,46,57,57,56,48,50,44,51,52,46,51,49,51,48,51,57,93,44,91,45,49,48,49,46,53,54,52,56,53,54,44,51,52,46,51,49,50,52,57,51,93,44,91,45,49,48,49,46,52,55,49,53,56,44,51,52,46,51,49,50,50,57,93,44,91,45,49,48,49,46,52,55,49,53,54,50,44,51,52,46,55,52,55,52,54,50,93,44,91,45,49,48,49,46,54,50,57,50,53,55,44,51,52,46,55,52,55,54,52,57,93,44,91,45,49,48,49,46,57,57,56,52,57,51,44,51,52,46,55,52,56,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,79,115,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,48,56,57,56,51,44,51,56,46,53,55,48,57,93,44,91,45,57,50,46,48,48,56,55,44,51,56,46,53,48,48,48,51,56,93,44,91,45,57,50,46,49,52,57,50,57,49,44,51,56,46,52,51,49,49,53,50,93,44,91,45,57,50,46,49,57,52,52,55,54,44,51,56,46,51,51,53,53,51,54,93,44,91,45,57,50,46,49,57,53,54,55,53,44,51,56,46,50,57,50,50,51,55,93,44,91,45,57,49,46,54,52,52,55,50,57,44,51,56,46,50,56,56,53,49,93,44,91,45,57,49,46,54,52,48,51,55,50,44,51,56,46,55,48,51,55,57,50,93,44,91,45,57,49,46,54,52,55,49,55,49,44,51,56,46,55,48,51,51,57,54,93,44,91,45,57,49,46,56,54,57,52,56,57,44,51,56,46,54,54,51,57,52,93,44,91,45,57,50,46,48,48,56,57,56,51,44,51,56,46,53,55,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,75,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,48,56,51,57,44,34,98,101,100,115,34,58,49,52,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,56,56,54,53,55,44,52,50,46,49,53,51,53,57,93,44,91,45,56,56,46,54,48,49,57,51,51,44,52,49,46,55,49,57,53,54,51,93,44,91,45,56,56,46,50,54,49,57,53,50,44,52,49,46,55,50,52,54,53,50,93,44,91,45,56,56,46,50,54,50,56,55,53,44,52,49,46,57,56,54,51,55,56,93,44,91,45,56,56,46,50,51,56,52,52,57,44,52,50,46,49,53,52,50,52,57,93,44,91,45,56,56,46,53,56,56,54,53,55,44,52,50,46,49,53,51,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,69,108,32,68,111,114,97,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,54,54,49,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,49,52,49,53,57,53,44,51,56,46,55,49,49,57,51,57,93,44,91,45,49,50,49,46,48,50,55,53,48,55,44,51,56,46,53,48,56,50,57,50,93,44,91,45,49,50,48,46,56,50,51,50,56,51,44,51,56,46,53,53,57,54,56,55,93,44,91,45,49,50,48,46,54,50,56,52,50,56,44,51,56,46,53,48,51,50,48,52,93,44,91,45,49,50,48,46,50,55,52,53,50,50,44,51,56,46,53,53,57,52,53,50,93,44,91,45,49,50,48,46,48,55,50,51,57,50,44,51,56,46,55,48,50,55,54,55,93,44,91,45,49,49,57,46,56,55,55,55,53,44,51,56,46,56,54,56,51,49,49,93,44,91,45,49,49,57,46,57,48,52,51,49,53,44,51,56,46,57,51,51,51,50,52,93,44,91,45,49,50,48,46,48,48,50,52,54,49,44,51,57,46,48,54,55,52,56,57,93,44,91,45,49,50,48,46,49,56,52,48,57,56,44,51,57,46,48,51,49,48,49,52,93,44,91,45,49,50,48,46,52,51,53,50,52,44,51,57,46,48,50,56,51,57,55,93,44,91,45,49,50,48,46,53,55,50,51,53,50,44,51,56,46,57,49,52,52,93,44,91,45,49,50,48,46,55,51,48,49,55,52,44,51,57,46,48,48,51,57,53,56,93,44,91,45,49,50,48,46,57,51,52,54,53,51,44,51,56,46,57,54,51,55,57,49,93,44,91,45,49,50,49,46,48,53,50,57,49,49,44,51,56,46,57,48,48,49,52,52,93,44,91,45,49,50,49,46,49,52,49,53,57,53,44,51,56,46,55,49,49,57,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,75,101,114,115,104,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,51,54,49,44,34,98,101,100,115,34,58,49,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,55,57,50,50,55,44,51,52,46,52,53,55,55,55,54,93,44,91,45,56,48,46,55,54,57,57,50,54,44,51,52,46,51,55,55,49,49,49,93,44,91,45,56,48,46,56,50,53,57,50,49,44,51,52,46,50,54,56,55,54,93,44,91,45,56,48,46,56,54,57,53,50,52,44,51,52,46,49,56,50,50,55,49,93,44,91,45,56,48,46,55,49,57,51,49,56,44,51,52,46,48,54,56,57,55,50,93,44,91,45,56,48,46,54,49,54,49,56,54,44,51,52,46,48,57,57,54,48,53,93,44,91,45,56,48,46,52,55,57,56,53,55,44,51,52,46,49,54,56,54,57,54,93,44,91,45,56,48,46,52,50,48,52,56,52,44,51,52,46,50,57,51,48,55,52,93,44,91,45,56,48,46,50,56,56,54,57,50,44,51,52,46,51,54,52,49,51,57,93,44,91,45,56,48,46,50,56,56,53,57,54,44,51,52,46,51,54,54,50,48,55,93,44,91,45,56,48,46,51,50,55,53,57,44,51,52,46,52,57,55,55,54,93,44,91,45,56,48,46,52,48,56,51,55,51,44,51,52,46,54,49,52,55,54,53,93,44,91,45,56,48,46,53,53,48,53,53,50,44,51,52,46,53,54,48,49,49,54,93,44,91,45,56,48,46,54,53,56,52,49,55,44,51,52,46,52,55,56,54,49,50,93,44,91,45,56,48,46,55,52,51,51,52,53,44,51,52,46,53,51,57,57,49,54,93,44,91,45,56,48,46,56,55,57,50,50,55,44,51,52,46,52,53,55,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,97,116,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,49,53,57,55,55,44,51,54,46,53,52,51,56,56,52,93,44,91,45,55,54,46,57,51,51,52,55,44,51,54,46,52,48,49,56,55,93,44,91,45,55,54,46,55,55,57,52,54,55,44,51,54,46,51,54,50,52,54,57,93,44,91,45,55,54,46,54,57,54,53,55,49,44,51,54,46,50,57,54,49,51,56,93,44,91,45,55,54,46,53,53,57,54,52,54,44,51,54,46,51,53,49,48,53,54,93,44,91,45,55,54,46,52,53,51,55,49,49,44,51,54,46,51,55,56,48,57,50,93,44,91,45,55,54,46,52,57,49,51,51,54,44,51,54,46,53,49,48,54,55,55,93,44,91,45,55,54,46,53,52,49,57,54,54,44,51,54,46,53,53,48,54,53,51,93,44,91,45,55,54,46,57,49,53,56,57,57,44,51,54,46,53,53,50,49,52,57,93,44,91,45,55,54,46,57,49,53,57,55,55,44,51,54,46,53,52,51,56,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,79,116,101,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,48,49,55,54,52,44,51,56,46,50,54,53,48,49,54,93,44,91,45,49,48,51,46,53,48,57,51,54,52,44,51,56,46,49,55,50,53,49,52,93,44,91,45,49,48,51,46,54,49,57,49,55,50,44,51,56,46,49,49,51,51,53,53,93,44,91,45,49,48,51,46,56,51,53,54,49,54,44,51,56,46,49,49,51,51,52,93,44,91,45,49,48,52,46,48,53,56,50,52,50,44,51,56,46,49,52,54,52,57,50,93,44,91,45,49,48,52,46,48,54,49,49,51,50,44,51,55,46,55,51,52,55,48,52,93,44,91,45,49,48,52,46,48,53,56,49,57,54,44,51,55,46,54,52,52,48,52,57,93,44,91,45,49,48,51,46,52,48,52,51,51,57,44,51,55,46,54,52,51,53,55,54,93,44,91,45,49,48,51,46,51,57,57,57,51,56,44,51,56,46,50,54,53,52,51,53,93,44,91,45,49,48,51,46,53,48,49,55,54,52,44,51,56,46,50,54,53,48,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,51,50,51,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,50,57,48,50,51,54,44,52,51,46,54,49,48,57,53,57,93,44,91,45,49,50,51,46,56,55,53,54,57,56,44,52,51,46,54,48,56,52,48,55,93,44,91,45,49,50,51,46,56,55,53,54,50,56,44,52,51,46,53,49,53,57,52,55,93,44,91,45,49,50,51,46,55,54,49,53,50,56,44,52,51,46,52,50,50,50,57,52,93,44,91,45,49,50,51,46,55,48,52,55,53,50,44,52,51,46,50,53,55,55,52,49,93,44,91,45,49,50,51,46,55,48,50,49,52,52,44,52,51,46,48,56,55,48,56,51,93,44,91,45,49,50,51,46,56,50,49,49,49,56,44,52,50,46,57,57,54,50,57,49,93,44,91,45,49,50,51,46,56,49,49,53,53,51,44,52,50,46,55,56,56,56,51,55,93,44,91,45,49,50,51,46,55,49,54,52,57,50,44,52,50,46,55,56,52,48,54,49,93,44,91,45,49,50,51,46,52,52,53,52,53,54,44,52,50,46,55,48,51,48,50,53,93,44,91,45,49,50,51,46,50,50,57,54,49,57,44,52,50,46,55,48,50,54,49,93,44,91,45,49,50,51,46,49,53,50,50,51,51,44,52,50,46,55,53,53,56,51,53,93,44,91,45,49,50,50,46,55,57,52,55,55,54,44,52,50,46,55,55,56,50,50,49,93,44,91,45,49,50,50,46,53,54,48,50,55,51,44,52,50,46,57,51,57,49,56,53,93,44,91,45,49,50,50,46,52,48,49,48,50,53,44,52,50,46,57,57,54,54,51,50,93,44,91,45,49,50,50,46,50,56,50,55,51,44,52,50,46,57,57,54,52,57,57,93,44,91,45,49,50,50,46,50,56,50,53,56,53,44,52,51,46,48,54,55,55,49,57,93,44,91,45,49,50,50,46,48,57,51,55,55,54,44,52,51,46,48,55,54,50,53,55,93,44,91,45,49,50,49,46,57,56,48,53,53,52,44,52,51,46,50,54,53,49,56,93,44,91,45,49,50,50,46,48,50,50,54,54,50,44,52,51,46,51,54,50,51,48,52,93,44,91,45,49,50,50,46,49,51,50,48,51,52,44,52,51,46,52,52,48,50,50,49,93,44,91,45,49,50,50,46,55,52,49,55,49,54,44,52,51,46,52,51,55,51,57,53,93,44,91,45,49,50,50,46,55,52,49,56,52,53,44,52,51,46,53,52,52,54,53,52,93,44,91,45,49,50,51,46,49,48,55,54,56,54,44,52,51,46,53,52,48,48,49,93,44,91,45,49,50,51,46,49,51,55,51,49,57,44,52,51,46,55,55,57,54,55,93,44,91,45,49,50,51,46,51,52,56,50,52,54,44,52,51,46,55,56,48,49,55,93,44,91,45,49,50,51,46,53,50,57,49,53,51,44,52,51,46,56,51,48,48,54,49,93,44,91,45,49,50,51,46,54,49,57,48,49,50,44,52,51,46,57,50,49,49,49,55,93,44,91,45,49,50,51,46,56,50,55,48,48,52,44,52,51,46,57,52,52,56,51,55,93,44,91,45,49,50,51,46,57,52,54,50,57,49,44,52,51,46,56,54,50,54,56,50,93,44,91,45,49,50,52,46,50,51,48,49,55,56,44,52,51,46,56,54,51,55,50,51,93,44,91,45,49,50,52,46,50,57,48,50,51,54,44,52,51,46,54,49,48,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,53,56,54,44,34,98,101,100,115,34,58,51,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,53,48,53,54,48,55,44,52,49,46,50,51,50,53,51,57,93,44,91,45,55,53,46,54,48,48,55,51,54,44,52,49,46,49,54,49,52,57,55,93,44,91,45,55,53,46,54,52,57,54,51,55,44,52,49,46,49,50,50,51,52,52,93,44,91,45,55,53,46,52,57,53,57,57,44,52,48,46,57,56,55,49,56,49,93,44,91,45,55,53,46,53,55,52,53,57,44,52,48,46,57,53,49,51,50,51,93,44,91,45,55,53,46,52,55,52,49,57,51,44,52,48,46,56,49,52,55,52,54,93,44,91,45,55,53,46,51,48,48,53,57,52,44,52,48,46,56,53,57,53,54,51,93,44,91,45,55,53,46,49,50,48,50,51,50,44,52,48,46,57,54,56,55,48,50,93,44,91,45,55,52,46,57,54,54,57,48,54,44,52,49,46,48,57,52,52,49,93,44,91,45,55,52,46,57,57,49,55,49,56,44,52,49,46,48,57,50,50,56,52,93,44,91,45,55,53,46,49,53,54,53,48,55,44,52,49,46,49,53,48,51,52,49,93,44,91,45,55,53,46,49,50,57,55,50,49,44,52,49,46,50,53,50,49,48,49,93,44,91,45,55,53,46,51,53,57,49,56,52,44,52,49,46,50,51,57,50,48,54,93,44,91,45,55,53,46,53,48,53,54,48,55,44,52,49,46,50,51,50,53,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,55,57,53,50,56,44,51,54,46,49,50,53,48,55,50,93,44,91,45,57,51,46,52,53,48,55,49,53,44,51,53,46,57,54,55,52,57,51,93,44,91,45,57,51,46,53,50,51,54,51,57,44,51,53,46,56,56,49,53,57,50,93,44,91,45,57,51,46,53,49,57,50,48,52,44,51,53,46,55,54,51,53,50,49,93,44,91,45,57,51,46,53,49,57,53,55,53,44,51,53,46,55,51,52,52,50,50,93,44,91,45,57,51,46,49,54,52,52,53,50,44,51,53,46,55,50,56,56,51,49,93,44,91,45,57,50,46,57,53,49,51,49,53,44,51,53,46,55,50,52,54,54,51,93,44,91,45,57,50,46,57,52,52,54,54,54,44,51,54,46,49,49,53,49,50,51,93,44,91,45,57,51,46,51,48,48,56,50,44,51,54,46,49,50,49,53,53,93,44,91,45,57,51,46,52,55,57,53,50,56,44,51,54,46,49,50,53,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,118,97,108,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,50,52,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,57,57,56,48,50,44,52,57,46,48,48,48,48,48,54,93,44,91,45,57,56,46,57,57,57,56,57,44,52,56,46,55,49,56,49,50,57,93,44,91,45,57,56,46,57,55,48,51,57,50,44,52,56,46,53,52,52,50,51,50,93,44,91,45,57,56,46,51,49,56,48,51,54,44,52,56,46,53,52,51,55,55,51,93,44,91,45,57,55,46,57,50,55,48,54,57,44,52,56,46,53,52,51,49,50,52,93,44,91,45,57,55,46,57,53,48,48,49,50,44,52,57,46,48,48,48,52,57,50,93,44,91,45,57,56,46,57,57,57,56,48,50,44,52,57,46,48,48,48,48,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,78,111,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,49,49,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,54,49,54,48,51,44,51,54,46,53,57,51,54,51,55,93,44,91,45,57,55,46,52,54,48,55,57,50,44,51,54,46,49,54,52,52,54,50,93,44,91,45,57,55,46,51,53,52,49,51,50,44,51,54,46,49,53,57,48,55,50,93,44,91,45,57,55,46,49,52,48,54,54,56,44,51,54,46,49,53,57,50,51,49,93,44,91,45,57,55,46,49,52,48,57,54,56,44,51,54,46,50,52,54,52,51,53,93,44,91,45,57,54,46,57,50,53,48,54,57,44,51,54,46,50,52,54,52,55,52,93,44,91,45,57,55,46,48,51,50,49,48,54,44,51,54,46,51,51,51,51,53,52,93,44,91,45,57,55,46,48,48,57,55,56,53,44,51,54,46,53,48,54,57,51,53,93,44,91,45,57,55,46,48,53,55,53,53,54,44,51,54,46,53,57,51,56,55,50,93,44,91,45,57,55,46,52,54,49,54,48,51,44,51,54,46,53,57,51,54,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,71,111,118,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,49,57,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,56,49,49,56,53,56,44,51,57,46,49,51,51,51,54,93,44,91,45,49,48,48,46,56,49,56,54,57,56,44,51,56,46,54,57,57,56,54,49,93,44,91,45,49,48,48,46,54,56,56,48,48,54,44,51,56,46,55,48,48,48,50,49,93,44,91,45,49,48,48,46,50,52,55,50,44,51,56,46,54,57,56,49,54,53,93,44,91,45,49,48,48,46,49,53,51,56,50,51,44,51,56,46,54,57,55,51,52,49,93,44,91,45,49,48,48,46,49,52,55,57,52,44,51,57,46,49,51,50,49,55,57,93,44,91,45,49,48,48,46,49,54,52,50,44,51,57,46,49,51,50,48,55,49,93,44,91,45,49,48,48,46,55,50,49,50,57,54,44,51,57,46,49,51,51,51,56,49,93,44,91,45,49,48,48,46,56,49,49,56,53,56,44,51,57,46,49,51,51,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,80,111,105,110,116,101,32,67,111,117,112,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,53,56,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,51,48,56,55,44,51,48,46,54,53,56,54,55,55,93,44,91,45,57,49,46,51,56,48,54,50,44,51,48,46,55,53,56,56,48,52,93,44,91,45,57,49,46,53,53,51,48,49,57,44,51,48,46,55,51,48,55,57,56,93,44,91,45,57,49,46,53,49,53,54,50,54,44,51,48,46,56,54,49,51,55,56,93,44,91,45,57,49,46,54,54,49,51,55,50,44,51,48,46,56,53,55,48,57,57,93,44,91,45,57,49,46,54,54,50,53,48,54,44,51,48,46,57,55,48,51,54,50,93,44,91,45,57,49,46,54,53,56,51,50,49,44,51,48,46,57,57,52,51,54,53,93,44,91,45,57,49,46,55,53,48,49,49,57,44,51,49,46,48,49,56,56,49,52,93,44,91,45,57,49,46,56,48,53,57,54,51,44,51,48,46,57,55,50,53,53,56,93,44,91,45,57,49,46,56,49,53,50,53,56,44,51,48,46,56,52,56,49,48,55,93,44,91,45,57,49,46,55,51,51,54,55,51,44,51,48,46,55,48,49,55,51,93,44,91,45,57,49,46,55,53,54,49,57,51,44,51,48,46,52,57,55,55,51,56,93,44,91,45,57,49,46,55,48,48,57,51,51,44,51,48,46,52,57,55,52,51,51,93,44,91,45,57,49,46,52,56,53,48,56,57,44,51,48,46,52,57,55,49,51,56,93,44,91,45,57,49,46,52,49,52,55,54,44,51,48,46,53,49,49,53,49,54,93,44,91,45,57,49,46,51,51,48,56,55,44,51,48,46,54,53,56,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,71,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,49,54,48,53,53,44,52,48,46,51,52,57,55,50,55,93,44,91,45,57,54,46,57,49,54,52,48,55,44,52,48,46,48,48,49,53,49,49,93,44,91,45,57,54,46,56,48,53,55,54,56,44,52,48,46,48,48,49,52,57,53,93,44,91,45,57,54,46,52,54,51,55,49,50,44,52,48,46,48,48,49,48,50,51,93,44,91,45,57,54,46,52,54,51,54,54,55,44,52,48,46,50,54,50,49,55,51,93,44,91,45,57,54,46,52,54,51,54,51,50,44,52,48,46,53,50,51,48,49,51,93,44,91,45,57,54,46,57,49,50,54,51,55,44,52,48,46,53,50,51,54,50,53,93,44,91,45,57,54,46,57,49,54,48,53,53,44,52,48,46,51,52,57,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,108,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,51,48,54,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,50,53,54,50,50,44,51,51,46,57,52,48,49,52,55,93,44,91,45,56,54,46,52,48,53,57,56,49,44,51,51,46,56,51,53,56,57,54,93,44,91,45,56,54,46,53,55,55,55,57,57,44,51,51,46,55,54,53,51,49,54,93,44,91,45,56,54,46,53,50,53,48,55,51,44,51,51,46,55,50,49,50,51,54,93,44,91,45,56,54,46,53,49,54,55,56,51,44,51,51,46,53,52,53,56,57,54,93,44,91,45,56,54,46,51,55,56,50,50,50,44,51,51,46,53,48,50,52,49,49,93,44,91,45,56,54,46,51,55,56,54,54,53,44,51,51,46,51,57,48,57,56,51,93,44,91,45,56,54,46,49,56,57,56,49,50,44,51,51,46,53,52,55,50,51,56,93,44,91,45,56,54,46,49,52,53,53,54,50,44,51,51,46,54,55,57,48,57,56,93,44,91,45,56,54,46,48,52,51,57,57,51,44,51,51,46,55,54,51,53,57,53,93,44,91,45,56,54,46,48,54,53,50,55,50,44,51,51,46,56,52,50,49,57,56,93,44,91,45,56,54,46,50,49,53,53,50,53,44,51,51,46,57,56,55,52,50,49,93,44,91,45,56,54,46,51,50,53,54,50,50,44,51,51,46,57,52,48,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,49,53,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,56,52,49,50,51,44,51,50,46,53,56,54,56,57,49,93,44,91,45,56,57,46,55,51,48,48,54,51,44,51,50,46,51,53,50,55,51,51,93,44,91,45,56,57,46,55,51,48,52,50,52,44,51,50,46,50,50,50,48,51,57,93,44,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,44,91,45,56,57,46,51,50,50,53,57,56,44,51,50,46,53,55,54,52,51,51,93,44,91,45,56,57,46,55,51,48,49,53,50,44,51,50,46,53,55,55,50,52,56,93,44,91,45,56,57,46,55,51,48,51,48,52,44,51,50,46,54,51,52,50,50,56,93,44,91,45,56,57,46,55,56,52,49,50,51,44,51,50,46,53,56,54,56,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,68,111,117,103,104,101,114,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,48,52,57,44,34,98,101,100,115,34,58,54,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,49,56,52,48,52,44,51,49,46,54,53,48,50,55,52,93,44,91,45,56,52,46,48,52,51,50,49,51,44,51,49,46,54,50,51,53,55,51,93,44,91,45,56,52,46,50,57,55,56,48,49,44,51,49,46,54,50,49,57,53,49,93,44,91,45,56,52,46,52,53,48,51,57,56,44,51,49,46,54,50,49,56,54,56,93,44,91,45,56,52,46,52,50,57,56,55,54,44,51,49,46,52,51,54,54,54,49,93,44,91,45,56,52,46,49,52,49,49,50,52,44,51,49,46,52,52,48,49,55,57,93,44,91,45,56,51,46,57,57,55,55,57,54,44,51,49,46,52,52,51,55,53,51,93,44,91,45,56,52,46,48,49,56,52,48,52,44,51,49,46,54,53,48,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,55,49,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,53,53,48,52,53,44,51,56,46,52,50,50,54,56,53,93,44,91,45,56,54,46,50,55,54,57,53,54,44,51,56,46,50,50,55,49,50,54,93,44,91,45,56,54,46,51,50,57,54,44,51,56,46,49,56,49,56,48,53,93,44,91,45,56,54,46,50,54,55,55,54,57,44,51,56,46,48,53,55,49,55,49,93,44,91,45,56,54,46,49,55,56,57,51,44,51,56,46,48,49,48,56,49,93,44,91,45,56,53,46,57,57,56,57,53,50,44,51,55,46,57,57,57,54,53,52,93,44,91,45,56,53,46,57,52,55,49,49,52,44,51,56,46,48,48,53,48,56,53,93,44,91,45,56,53,46,56,57,57,55,54,44,51,56,46,49,56,48,52,52,52,93,44,91,45,56,54,46,48,51,50,53,53,57,44,51,56,46,51,51,48,54,54,93,44,91,45,56,54,46,48,51,50,56,49,55,44,51,56,46,52,49,55,56,57,56,93,44,91,45,56,54,46,50,53,53,48,52,53,44,51,56,46,52,50,50,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,111,110,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,55,49,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,51,50,52,52,49,44,52,56,46,56,52,54,54,54,54,93,44,91,45,49,49,55,46,48,52,49,56,55,55,44,52,56,46,48,52,53,52,54,54,93,44,91,45,49,49,55,46,48,52,50,48,56,57,44,52,55,46,57,55,55,52,53,93,44,91,45,49,49,54,46,53,48,52,51,50,57,44,52,55,46,57,57,49,51,56,54,93,44,91,45,49,49,54,46,53,48,53,49,48,52,44,52,55,46,56,57,48,49,52,50,93,44,91,45,49,49,54,46,51,50,57,53,51,56,44,52,55,46,56,57,48,51,57,51,93,44,91,45,49,49,54,46,51,50,57,54,48,49,44,52,56,46,48,49,55,55,50,50,93,44,91,45,49,49,54,46,50,51,51,49,49,51,44,52,56,46,48,54,56,56,57,93,44,91,45,49,49,54,46,48,52,57,49,48,56,44,52,55,46,57,55,55,51,51,52,93,44,91,45,49,49,54,46,48,52,56,54,54,57,44,52,56,46,50,49,54,49,50,56,93,44,91,45,49,49,54,46,48,52,57,48,53,56,44,52,56,46,53,48,50,48,54,50,93,44,91,45,49,49,54,46,55,56,52,56,55,56,44,52,56,46,53,48,48,52,55,50,93,44,91,45,49,49,54,46,55,56,53,49,55,52,44,52,56,46,56,52,55,52,48,50,93,44,91,45,49,49,55,46,48,51,50,52,52,49,44,52,56,46,56,52,54,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,97,116,111,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,50,57,57,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,54,53,48,53,53,44,51,52,46,57,56,53,48,55,53,93,44,91,45,56,53,46,50,54,52,55,54,50,44,51,52,46,56,53,52,50,55,55,93,44,91,45,56,53,46,49,52,52,55,56,57,44,51,52,46,55,54,55,54,51,57,93,44,91,45,56,53,46,48,54,49,54,52,56,44,51,52,46,56,49,57,52,55,56,93,44,91,45,56,52,46,57,55,57,56,54,44,51,52,46,57,56,55,54,52,55,93,44,91,45,56,53,46,50,54,53,48,53,53,44,51,52,46,57,56,53,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,76,97,83,97,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,49,50,54,50,51,44,51,49,46,57,50,55,51,56,50,93,44,91,45,57,50,46,51,54,50,54,48,56,44,51,49,46,55,57,54,54,51,51,93,44,91,45,57,50,46,51,55,50,52,55,54,44,51,49,46,55,48,49,53,49,57,93,44,91,45,57,50,46,50,56,50,48,56,49,44,51,49,46,53,48,51,52,56,54,93,44,91,45,57,50,46,49,57,54,49,51,49,44,51,49,46,52,55,55,56,55,55,93,44,91,45,57,50,46,48,56,54,55,49,56,44,51,49,46,51,51,53,51,55,52,93,44,91,45,57,50,46,48,48,56,49,50,49,44,51,49,46,51,50,53,55,57,55,93,44,91,45,57,50,46,48,48,53,52,51,52,44,51,49,46,57,50,55,50,57,54,93,44,91,45,57,50,46,51,49,50,54,50,51,44,51,49,46,57,50,55,51,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,87,97,108,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,57,46,52,55,49,55,49,50,44,52,52,46,54,57,50,56,57,57,93,44,91,45,54,57,46,51,57,51,49,50,51,44,52,52,46,54,52,48,51,55,53,93,44,91,45,54,57,46,53,48,54,51,56,50,44,52,52,46,51,52,50,56,55,93,44,91,45,54,57,46,52,48,57,54,51,53,44,52,52,46,51,50,55,57,57,56,93,44,91,45,54,57,46,50,54,56,56,56,50,44,52,52,46,51,54,52,54,53,51,93,44,91,45,54,56,46,57,57,57,52,53,53,44,52,52,46,50,48,50,55,50,49,93,44,91,45,54,56,46,56,57,54,51,56,52,44,52,52,46,50,48,57,57,51,53,93,44,91,45,54,56,46,56,48,52,54,49,53,44,52,52,46,52,53,56,52,49,49,93,44,91,45,54,56,46,56,49,53,55,57,51,44,52,52,46,54,56,51,55,53,52,93,44,91,45,54,57,46,49,56,51,55,51,50,44,52,52,46,54,52,52,48,50,51,93,44,91,45,54,57,46,50,54,54,55,56,53,44,52,52,46,55,50,49,57,50,56,93,44,91,45,54,57,46,52,55,49,55,49,50,44,52,52,46,54,57,50,56,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,51,50,55,44,34,98,101,100,115,34,58,50,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,54,56,56,48,49,44,51,57,46,51,53,51,53,48,50,93,44,91,45,55,54,46,57,52,56,53,55,57,44,51,57,46,49,50,57,53,57,55,93,44,91,45,55,54,46,56,56,56,53,48,53,44,51,57,46,49,51,48,57,54,55,93,44,91,45,55,54,46,56,52,48,51,54,50,44,51,57,46,49,48,51,49,52,50,93,44,91,45,55,54,46,54,57,55,48,56,53,44,51,57,46,50,49,52,48,57,50,93,44,91,45,55,54,46,56,56,50,50,55,52,44,51,57,46,51,53,48,49,56,53,93,44,91,45,55,55,46,49,54,56,48,56,44,51,57,46,51,53,51,57,53,55,93,44,91,45,55,55,46,49,54,56,56,48,49,44,51,57,46,51,53,51,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,83,97,108,116,32,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,48,56,48,53,44,34,98,101,100,115,34,58,51,51,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,50,54,48,50,49,54,44,52,48,46,55,54,57,48,57,51,93,44,91,45,49,49,50,46,49,55,53,51,51,55,44,52,48,46,54,48,51,57,56,49,93,44,91,45,49,49,50,46,49,55,50,56,54,50,44,52,48,46,52,54,55,48,54,53,93,44,91,45,49,49,49,46,57,52,54,52,53,52,44,52,48,46,52,50,52,53,57,52,93,44,91,45,49,49,49,46,53,57,51,57,52,50,44,52,48,46,53,55,55,48,54,54,93,44,91,45,49,49,49,46,53,53,51,50,54,54,44,52,48,46,54,48,57,51,49,51,93,44,91,45,49,49,49,46,54,52,49,48,53,50,44,52,48,46,55,57,56,57,50,53,93,44,91,45,49,49,49,46,55,51,56,55,52,52,44,52,48,46,56,54,48,57,57,56,93,44,91,45,49,49,49,46,57,52,54,50,56,57,44,52,48,46,56,50,49,55,57,93,44,91,45,49,49,50,46,48,48,54,53,54,54,44,52,48,46,57,50,49,56,52,54,93,44,91,45,49,49,50,46,50,54,48,50,49,54,44,52,48,46,55,54,57,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,72,97,114,116,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,52,55,51,48,44,34,98,101,100,115,34,58,51,48,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,48,48,56,55,54,54,44,52,50,46,48,51,56,55,56,53,93,44,91,45,55,50,46,56,56,55,48,54,44,52,49,46,57,55,51,49,50,49,93,44,91,45,55,51,46,48,49,54,54,55,53,44,52,49,46,55,57,56,49,56,51,93,44,91,45,55,50,46,57,56,51,50,53,44,52,49,46,54,51,57,53,57,56,93,44,91,45,55,50,46,57,52,54,51,53,44,52,49,46,53,53,54,55,57,55,93,44,91,45,55,50,46,55,53,50,49,56,49,44,52,49,46,53,55,56,56,57,52,93,44,91,45,55,50,46,55,49,51,56,57,55,44,52,49,46,54,50,55,55,48,53,93,44,91,45,55,50,46,53,48,53,52,51,49,44,52,49,46,54,52,54,57,57,57,93,44,91,45,55,50,46,52,54,54,55,51,44,52,49,46,53,56,51,56,57,57,93,44,91,45,55,50,46,52,49,48,51,54,55,44,52,49,46,54,48,50,53,56,49,93,44,91,45,55,50,46,53,49,56,51,51,44,52,49,46,56,53,54,56,57,57,93,44,91,45,55,50,46,53,48,57,50,51,51,44,52,50,46,48,51,52,51,55,54,93,44,91,45,55,51,46,48,48,56,55,54,54,44,52,50,46,48,51,56,55,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,87,105,110,100,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,53,51,56,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,49,48,50,49,55,44,52,50,46,48,50,56,56,54,57,93,44,91,45,55,50,46,50,49,54,57,56,44,52,49,46,57,53,56,49,54,49,93,44,91,45,55,50,46,50,51,57,53,53,57,44,52,49,46,55,49,52,49,57,49,93,44,91,45,55,50,46,49,53,49,55,52,55,44,52,49,46,54,54,55,53,49,54,93,44,91,45,55,49,46,57,53,49,57,51,54,44,52,49,46,54,51,52,51,50,56,93,44,91,45,55,49,46,55,56,55,54,53,56,44,52,49,46,54,51,57,57,49,56,93,44,91,45,55,49,46,55,56,57,55,48,52,44,52,49,46,55,50,53,49,57,56,93,44,91,45,55,49,46,55,57,57,49,56,56,44,52,50,46,48,48,56,48,53,51,93,44,91,45,55,50,46,49,48,50,49,55,44,52,50,46,48,50,56,56,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,51,50,53,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,56,49,46,53,55,48,57,54,55,44,50,53,46,56,48,50,48,51,57,93,44,91,45,56,49,46,52,52,53,49,52,51,44,50,53,46,55,51,55,53,55,54,93,44,91,45,56,49,46,51,52,55,50,51,49,44,50,53,46,54,51,54,55,50,55,93,44,91,45,56,49,46,50,48,53,55,48,57,44,50,53,46,52,49,48,55,53,49,93,44,91,45,56,49,46,50,51,52,48,52,52,44,50,53,46,50,51,52,53,50,50,93,44,91,45,56,49,46,49,56,52,52,48,57,44,50,53,46,49,50,53,48,48,49,93,44,91,45,56,49,46,48,57,56,52,56,57,44,50,53,46,48,54,54,52,55,49,93,44,91,45,56,48,46,57,54,52,50,56,56,44,50,52,46,56,49,57,57,48,55,93,44,91,45,56,49,46,48,54,52,52,55,44,50,52,46,55,57,49,49,49,54,93,44,91,45,56,49,46,50,48,50,51,50,50,44,50,52,46,56,54,56,51,53,50,93,44,91,45,56,49,46,52,48,50,52,55,51,44,50,52,46,56,56,49,56,50,55,93,44,91,45,56,49,46,55,50,51,53,50,56,44,50,52,46,55,50,53,53,50,52,93,44,91,45,56,50,46,48,50,54,54,52,51,44,50,52,46,54,48,55,54,54,54,93,44,91,45,56,50,46,49,54,52,54,57,50,44,50,52,46,54,50,57,52,55,51,93,44,91,45,56,50,46,49,55,53,48,57,56,44,50,52,46,52,57,57,54,49,55,93,44,91,45,56,50,46,48,54,55,49,55,49,44,50,52,46,53,50,51,55,49,53,93,44,91,45,56,49,46,57,52,54,52,52,49,44,50,52,46,51,57,57,51,52,56,93,44,91,45,56,49,46,55,49,49,56,51,49,44,50,52,46,52,50,57,55,51,51,93,44,91,45,56,49,46,53,51,57,57,50,52,44,50,52,46,52,56,54,48,51,52,93,44,91,45,56,49,46,52,55,52,55,51,51,44,50,52,46,53,53,51,52,53,53,93,44,91,45,56,49,46,50,55,49,54,57,44,50,52,46,53,57,55,48,57,54,93,44,91,45,56,49,46,49,52,55,54,56,54,44,50,52,46,54,52,57,48,54,52,93,44,91,45,56,49,46,48,52,55,54,52,56,44,50,52,46,54,52,48,50,52,93,44,91,45,56,48,46,55,56,51,51,55,53,44,50,52,46,55,54,49,50,54,93,44,91,45,56,48,46,52,53,51,51,54,53,44,50,52,46,57,54,51,54,57,56,93,44,91,45,56,48,46,51,57,48,52,51,53,44,50,53,46,48,53,55,49,56,57,93,44,91,45,56,48,46,50,52,57,55,55,51,44,50,53,46,49,55,57,52,55,57,93,44,91,45,56,48,46,50,49,55,56,54,50,44,50,53,46,50,57,53,50,52,55,93,44,91,45,56,48,46,49,53,48,50,52,55,44,50,53,46,51,49,52,49,52,57,93,44,91,45,56,48,46,50,54,53,52,55,50,44,50,53,46,51,53,52,50,57,54,93,44,91,45,56,48,46,51,55,50,49,50,49,44,50,53,46,51,49,48,50,49,53,93,44,91,45,56,48,46,52,50,57,51,48,54,44,50,53,46,50,51,53,54,54,49,93,44,91,45,56,48,46,54,53,49,50,55,57,44,50,53,46,49,57,50,53,57,54,93,44,91,45,56,48,46,55,48,53,51,55,57,44,50,53,46,49,52,57,48,49,55,93,44,91,45,56,48,46,56,53,56,49,54,55,44,50,53,46,49,55,54,54,48,55,93,44,91,45,56,48,46,56,55,51,49,57,44,50,53,46,51,54,51,57,57,51,93,44,91,45,56,48,46,56,55,51,48,57,54,44,50,53,46,56,48,53,51,55,55,93,44,91,45,56,49,46,53,55,48,57,54,55,44,50,53,46,56,48,50,48,51,57,93,93,93,44,91,91,91,45,56,50,46,57,56,55,52,55,55,44,50,52,46,54,50,53,51,55,57,93,44,91,45,56,50,46,56,52,57,48,53,51,44,50,52,46,53,55,54,55,52,56,93,44,91,45,56,50,46,55,54,54,54,56,49,44,50,52,46,54,54,55,57,52,93,44,91,45,56,50,46,56,57,57,57,50,56,44,50,52,46,55,49,55,55,55,56,93,44,91,45,56,50,46,57,56,55,52,55,55,44,50,52,46,54,50,53,51,55,57,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,84,117,115,99,97,114,97,119,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,53,50,54,44,34,98,101,100,115,34,58,49,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,52,57,49,57,57,44,52,48,46,54,51,53,49,48,54,93,44,91,45,56,49,46,55,48,57,49,51,50,44,52,48,46,52,52,52,55,55,53,93,44,91,45,56,49,46,54,49,54,48,51,44,52,48,46,51,54,56,49,49,56,93,44,91,45,56,49,46,54,50,50,54,56,51,44,52,48,46,50,50,49,51,48,56,93,44,91,45,56,49,46,51,51,56,48,53,55,44,52,48,46,50,49,52,50,53,51,93,44,91,45,56,49,46,50,55,53,51,49,57,44,52,48,46,51,48,51,52,51,52,93,44,91,45,56,49,46,50,54,57,57,53,49,44,52,48,46,52,51,51,52,56,54,93,44,91,45,56,49,46,50,54,52,55,52,52,44,52,48,46,53,54,53,48,52,50,93,44,91,45,56,49,46,51,49,55,55,51,57,44,52,48,46,54,53,49,53,55,57,93,44,91,45,56,49,46,54,52,57,49,57,57,44,52,48,46,54,51,53,49,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,82,105,99,104,109,111,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,52,49,48,49,44,34,98,101,100,115,34,58,49,50,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,50,48,51,54,56,56,44,52,48,46,53,57,50,54,57,49,93,44,91,45,55,52,46,50,50,56,49,53,51,44,52,48,46,52,55,55,51,57,57,93,44,91,45,55,52,46,48,52,50,49,49,50,44,52,48,46,53,48,57,50,57,57,93,44,91,45,55,52,46,48,51,54,50,57,51,44,52,48,46,53,53,49,48,52,50,93,44,91,45,55,52,46,48,53,53,55,51,57,44,52,48,46,54,53,49,55,54,93,44,91,45,55,52,46,49,54,49,52,50,56,44,52,48,46,54,52,52,49,52,56,93,44,91,45,55,52,46,50,48,51,54,56,56,44,52,48,46,53,57,50,54,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,72,105,103,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,48,48,55,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,57,48,56,55,56,44,51,57,46,51,55,56,55,51,54,93,44,91,45,56,51,46,55,56,52,55,57,51,44,51,57,46,50,54,50,56,56,56,93,44,91,45,56,51,46,56,54,53,54,55,57,44,51,57,46,50,52,55,51,51,51,93,44,91,45,56,51,46,56,55,50,50,49,52,44,51,57,46,48,50,49,51,48,52,93,44,91,45,56,51,46,54,55,51,48,49,56,44,51,57,46,48,50,48,52,51,93,44,91,45,56,51,46,51,56,53,54,51,55,44,51,57,46,48,53,53,49,57,55,93,44,91,45,56,51,46,51,53,51,53,51,49,44,51,57,46,49,57,55,53,56,53,93,44,91,45,56,51,46,51,55,50,55,49,52,44,51,57,46,51,55,55,52,49,54,93,44,91,45,56,51,46,53,57,48,56,55,56,44,51,57,46,51,55,56,55,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,97,107,101,32,111,102,32,116,104,101,32,87,111,111,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,57,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,49,57,56,57,53,44,52,56,46,57,57,56,55,55,93,44,91,45,57,53,46,50,51,53,54,48,54,44,52,56,46,56,56,49,52,53,93,44,91,45,57,53,46,48,57,49,50,56,50,44,52,56,46,57,49,57,49,55,51,93,44,91,45,57,53,46,48,56,57,56,54,51,44,52,56,46,55,49,51,48,54,50,93,44,91,45,57,53,46,51,52,50,55,51,44,52,56,46,55,49,51,48,50,56,93,44,91,45,57,53,46,51,52,50,53,52,44,52,56,46,53,52,48,50,49,49,93,44,91,45,57,53,46,50,49,49,57,54,54,44,52,56,46,53,51,57,57,54,49,93,44,91,45,57,53,46,50,49,48,57,53,51,44,52,56,46,51,54,53,57,55,49,93,44,91,45,57,52,46,52,50,56,55,48,50,44,52,56,46,51,54,55,51,51,51,93,44,91,45,57,52,46,52,51,48,50,55,51,44,52,56,46,55,48,48,57,48,57,93,44,91,45,57,52,46,53,57,50,48,57,57,44,52,56,46,55,49,57,49,50,93,44,91,45,57,52,46,54,57,48,57,48,50,44,52,56,46,55,55,55,57,57,57,93,44,91,45,57,52,46,54,56,52,51,52,55,44,52,56,46,56,56,51,57,53,56,93,44,91,45,57,52,46,56,50,53,53,51,53,44,52,57,46,50,57,52,51,53,52,93,44,91,45,57,52,46,57,53,50,48,54,57,44,52,57,46,51,54,56,55,51,51,93,44,91,45,57,53,46,49,53,51,51,57,53,44,52,57,46,51,56,52,52,55,57,93,44,91,45,57,53,46,49,53,51,49,57,49,44,52,56,46,57,57,56,56,55,93,44,91,45,57,53,46,51,49,57,56,57,53,44,52,56,46,57,57,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,53,53,49,44,34,98,101,100,115,34,58,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,48,48,55,55,49,50,44,52,51,46,49,49,48,57,51,51,93,44,91,45,49,49,51,46,48,48,55,55,54,44,52,50,46,56,54,51,48,53,49,93,44,91,45,49,49,50,46,56,49,54,53,55,56,44,52,50,46,56,54,51,50,51,49,93,44,91,45,49,49,50,46,55,53,48,53,54,50,44,52,50,46,57,53,49,53,50,56,93,44,91,45,49,49,50,46,54,53,54,53,53,50,44,52,51,46,48,50,49,57,52,52,93,44,91,45,49,49,50,46,48,54,51,48,50,51,44,52,51,46,48,50,50,51,54,52,93,44,91,45,49,49,49,46,53,56,57,52,56,57,44,52,51,46,48,50,48,48,53,50,93,44,91,45,49,49,49,46,53,56,56,48,52,57,44,52,51,46,50,56,49,56,52,49,93,44,91,45,49,49,49,46,56,50,50,52,57,52,44,52,51,46,50,56,50,50,56,54,93,44,91,45,49,49,49,46,56,50,50,52,55,53,44,52,51,46,51,54,54,48,51,53,93,44,91,45,49,49,50,46,48,52,51,56,50,49,44,52,51,46,51,54,54,55,48,56,93,44,91,45,49,49,50,46,49,48,51,50,57,56,44,52,51,46,52,50,53,48,53,55,93,44,91,45,49,49,50,46,53,50,48,48,50,52,44,52,51,46,52,50,53,49,55,93,44,91,45,49,49,50,46,53,49,57,56,54,49,44,52,51,46,54,50,54,54,50,51,93,44,91,45,49,49,50,46,54,57,55,49,50,50,44,52,51,46,54,50,51,49,52,93,44,91,45,49,49,50,46,57,51,54,56,51,53,44,52,51,46,52,52,57,51,56,54,93,44,91,45,49,49,51,46,48,48,55,51,49,56,44,52,51,46,50,56,52,55,55,56,93,44,91,45,49,49,51,46,48,48,55,55,49,50,44,52,51,46,49,49,48,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,97,98,111,32,82,111,106,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,48,53,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,53,57,55,51,51,44,49,56,46,49,53,51,50,50,55,93,44,91,45,54,55,46,50,50,53,54,54,52,44,49,56,46,49,57,54,49,53,51,93,44,91,45,54,55,46,50,54,48,54,56,44,49,55,46,57,50,56,53,52,93,44,91,45,54,55,46,49,48,56,54,51,53,44,49,55,46,56,57,53,52,48,55,93,44,91,45,54,55,46,49,48,57,48,52,52,44,49,56,46,48,53,54,48,56,53,93,44,91,45,54,55,46,49,48,48,52,57,50,44,49,56,46,49,48,54,51,57,53,93,44,91,45,54,55,46,49,53,57,55,51,51,44,49,56,46,49,53,51,50,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,117,109,97,99,97,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,52,54,54,44,34,98,101,100,115,34,58,50,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,56,50,54,48,54,51,44,49,56,46,50,48,48,52,48,56,93,44,91,45,54,53,46,56,55,55,54,49,53,44,49,56,46,49,49,56,49,54,55,93,44,91,45,54,53,46,55,51,57,49,49,50,44,49,56,46,48,55,48,55,55,56,93,44,91,45,54,53,46,54,57,57,51,51,53,44,49,56,46,49,49,54,49,49,51,93,44,91,45,54,53,46,56,50,54,48,54,51,44,49,56,46,50,48,48,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,74,117,110,99,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,49,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,49,56,53,51,53,44,49,56,46,50,55,48,49,51,93,44,91,45,54,53,46,57,53,49,48,49,57,44,49,56,46,50,50,57,50,57,50,93,44,91,45,54,53,46,57,50,56,51,52,49,44,49,56,46,49,52,50,56,52,53,93,44,91,45,54,53,46,56,53,50,54,49,54,44,49,56,46,50,53,52,57,55,50,93,44,91,45,54,53,46,57,49,56,53,51,53,44,49,56,46,50,55,48,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,56,52,48,50,44,34,98,101,100,115,34,58,49,54,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,54,52,53,55,53,44,51,53,46,48,54,56,51,56,93,44,91,45,56,50,46,54,50,53,53,57,57,44,51,53,46,48,54,52,54,56,54,93,44,91,45,56,50,46,52,57,52,48,48,55,44,51,52,46,56,57,54,50,49,53,93,44,91,45,56,50,46,52,56,55,50,48,51,44,51,52,46,56,49,56,56,49,49,93,44,91,45,56,50,46,52,54,54,53,48,51,44,51,52,46,54,54,53,49,56,52,93,44,91,45,56,50,46,51,49,51,57,57,54,44,51,52,46,52,56,52,48,48,50,93,44,91,45,56,50,46,50,51,56,48,53,52,44,51,52,46,53,56,54,57,53,54,93,44,91,45,56,50,46,49,52,54,55,57,50,44,51,52,46,55,56,53,53,53,52,93,44,91,45,56,50,46,50,50,54,51,50,53,44,51,52,46,56,53,50,52,56,56,93,44,91,45,56,50,46,50,49,53,57,52,55,44,51,53,46,49,57,54,50,50,50,93,44,91,45,56,50,46,51,53,51,55,53,52,44,51,53,46,49,57,48,57,54,55,93,44,91,45,56,50,46,53,55,52,56,51,57,44,51,53,46,49,52,53,52,52,57,93,44,91,45,56,50,46,55,54,52,53,55,53,44,51,53,46,48,54,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,121,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,51,48,56,52,53,44,52,51,46,55,49,51,56,53,54,93,44,91,45,57,57,46,56,51,55,56,50,53,44,52,51,46,54,56,57,48,55,49,93,44,91,45,57,57,46,54,50,51,53,56,55,44,52,51,46,55,52,50,52,49,52,93,44,91,45,57,57,46,54,50,51,53,55,56,44,52,51,46,52,57,57,56,53,57,93,44,91,45,57,57,46,53,51,52,52,56,49,44,52,51,46,52,57,57,56,48,49,93,44,91,45,57,57,46,50,57,55,57,57,56,44,52,51,46,52,57,57,54,54,57,93,44,91,45,57,57,46,50,57,55,56,56,50,44,52,51,46,52,57,57,56,53,54,93,44,91,45,57,57,46,52,48,54,57,54,49,44,52,51,46,55,48,53,50,55,55,93,44,91,45,57,57,46,52,49,48,49,53,44,52,51,46,55,55,52,54,49,57,93,44,91,45,57,57,46,51,49,48,56,50,54,44,52,51,46,56,53,53,50,49,54,93,44,91,45,57,57,46,51,53,53,56,54,52,44,52,51,46,57,51,52,51,55,49,93,44,91,45,57,57,46,51,53,51,55,50,44,52,51,46,57,57,53,51,50,57,93,44,91,45,57,57,46,53,54,50,53,51,54,44,52,52,46,49,48,49,53,49,57,93,44,91,45,57,57,46,53,55,54,53,55,49,44,52,52,46,49,57,50,52,50,49,93,44,91,45,57,57,46,54,54,51,53,48,56,44,52,52,46,50,49,55,53,49,55,93,44,91,45,57,57,46,54,53,52,53,51,54,44,52,52,46,49,48,49,54,56,57,93,44,91,45,57,57,46,56,56,52,52,56,53,44,52,52,46,49,50,57,53,56,50,93,44,91,45,57,57,46,57,51,56,50,49,55,44,52,52,46,49,57,53,49,57,53,93,44,91,45,49,48,48,46,51,54,55,50,52,55,44,52,52,46,49,57,52,54,50,49,93,44,91,45,49,48,48,46,51,54,55,50,48,55,44,52,52,46,49,54,56,54,57,52,93,44,91,45,49,48,48,46,51,54,54,49,55,52,44,52,51,46,56,52,54,57,55,56,93,44,91,45,49,48,48,46,51,51,56,57,55,44,52,51,46,55,49,54,57,52,50,93,44,91,45,49,48,48,46,50,51,48,56,52,53,44,52,51,46,55,49,51,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,84,114,101,109,112,101,97,108,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,52,51,56,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,50,57,49,48,49,44,52,52,46,53,57,54,49,57,55,93,44,91,45,57,49,46,53,50,57,55,52,49,44,52,52,46,50,52,54,55,55,55,93,44,91,45,57,49,46,54,49,50,51,51,49,44,52,52,46,49,54,56,56,48,57,93,44,91,45,57,49,46,53,53,57,48,48,52,44,52,52,46,48,50,53,51,49,53,93,44,91,45,57,49,46,52,50,53,49,56,56,44,52,51,46,57,56,52,51,50,50,93,44,91,45,57,49,46,51,48,55,52,55,56,44,52,52,46,48,54,52,56,55,54,93,44,91,45,57,49,46,49,53,49,57,51,50,44,52,52,46,48,55,57,54,54,53,93,44,91,45,57,49,46,49,54,53,54,49,57,44,52,52,46,53,57,54,57,56,55,93,44,91,45,57,49,46,53,50,57,49,48,49,44,52,52,46,53,57,54,49,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,89,111,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,57,55,55,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,51,57,53,48,53,54,44,51,56,46,56,54,52,50,52,53,93,44,91,45,49,50,50,46,50,56,55,57,57,56,44,51,56,46,56,51,57,57,51,49,93,44,91,45,49,50,50,46,49,48,51,50,56,49,44,51,56,46,53,49,51,51,52,56,93,44,91,45,49,50,49,46,57,52,48,50,56,53,44,51,56,46,53,51,51,51,56,52,93,44,91,45,49,50,49,46,54,57,53,49,52,55,44,51,56,46,53,50,51,49,53,54,93,44,91,45,49,50,49,46,54,57,52,48,49,52,44,51,56,46,51,49,52,56,53,54,93,44,91,45,49,50,49,46,53,57,51,50,55,51,44,51,56,46,51,49,51,48,56,57,93,44,91,45,49,50,49,46,53,48,50,57,56,50,44,51,56,46,52,52,48,55,49,56,93,44,91,45,49,50,49,46,54,48,50,56,57,52,44,51,56,46,55,51,53,56,51,56,93,44,91,45,49,50,49,46,55,50,51,51,52,54,44,51,56,46,56,48,51,55,53,57,93,44,91,45,49,50,49,46,56,51,53,52,56,56,44,51,56,46,57,50,52,52,56,49,93,44,91,45,49,50,50,46,51,52,48,49,55,50,44,51,56,46,57,50,52,50,52,54,93,44,91,45,49,50,50,46,51,57,53,48,53,54,44,51,56,46,56,54,52,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,51,49,34,44,34,78,65,77,69,34,58,34,83,116,101,114,108,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,54,55,49,50,50,44,51,49,46,54,53,48,56,53,52,93,44,91,45,49,48,49,46,50,54,55,54,51,44,51,49,46,53,53,54,52,54,50,93,44,91,45,49,48,48,46,56,54,53,50,53,54,44,51,49,46,53,54,50,50,57,52,93,44,91,45,49,48,48,46,56,50,53,51,55,44,51,49,46,54,57,54,49,53,53,93,44,91,45,49,48,48,46,56,50,49,53,57,52,44,51,50,46,48,56,54,54,49,93,44,91,45,49,48,49,46,49,56,51,57,57,55,44,51,50,46,48,56,55,50,48,56,93,44,91,45,49,48,49,46,50,54,52,50,49,54,44,51,50,46,48,56,55,49,51,54,93,44,91,45,49,48,49,46,50,54,55,49,50,50,44,51,49,46,54,53,48,56,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,57,53,34,44,34,78,65,77,69,34,58,34,87,105,110,107,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,48,50,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,51,50,55,53,51,56,44,51,49,46,54,53,49,52,50,93,44,91,45,49,48,50,46,55,57,56,57,51,57,44,51,49,46,54,53,49,55,56,51,93,44,91,45,49,48,50,46,55,57,57,48,56,54,44,51,50,46,48,56,53,55,57,53,93,44,91,45,49,48,51,46,48,54,52,53,49,54,44,51,50,46,48,56,55,48,53,49,93,44,91,45,49,48,51,46,48,54,52,53,49,44,51,50,46,48,48,48,52,50,52,93,44,91,45,49,48,51,46,51,50,54,53,48,49,44,51,50,46,48,48,48,51,54,57,93,44,91,45,49,48,51,46,51,50,55,53,51,56,44,51,49,46,54,53,49,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,48,55,51,51,54,44,52,51,46,57,57,52,53,51,93,44,91,45,49,48,50,46,48,49,56,56,56,55,44,52,51,46,55,48,56,54,49,56,93,44,91,45,49,48,50,46,49,51,57,49,53,56,44,52,51,46,55,48,48,57,52,56,93,44,91,45,49,48,50,46,49,51,57,48,53,49,44,52,51,46,52,55,54,54,55,54,93,44,91,45,49,48,50,46,49,49,48,56,49,57,44,52,51,46,51,56,57,57,48,50,93,44,91,45,49,48,49,46,50,50,56,50,51,52,44,52,51,46,51,56,57,49,56,53,93,44,91,45,49,48,49,46,50,50,56,51,51,49,44,52,51,46,55,57,53,48,52,57,93,44,91,45,49,48,49,46,48,54,52,51,50,54,44,52,51,46,56,52,49,48,57,93,44,91,45,49,48,49,46,48,54,52,48,54,56,44,52,51,46,57,57,52,57,50,57,93,44,91,45,49,48,50,46,48,48,55,51,51,54,44,52,51,46,57,57,52,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,83,101,118,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,49,56,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,48,49,52,48,56,51,44,51,57,46,48,52,53,53,49,56,93,44,91,45,49,49,50,46,50,50,52,52,54,49,44,51,56,46,56,54,52,56,48,51,93,44,91,45,49,49,50,46,50,49,56,51,53,54,44,51,56,46,55,50,55,51,54,49,93,44,91,45,49,49,50,46,51,48,57,57,53,51,44,51,56,46,54,55,54,50,57,93,44,91,45,49,49,50,46,52,52,55,53,49,55,44,51,56,46,54,56,49,50,55,93,44,91,45,49,49,50,46,53,49,53,51,57,52,44,51,56,46,53,55,50,56,52,53,93,44,91,45,49,49,50,46,53,49,56,52,57,53,44,51,56,46,53,49,48,52,49,51,93,44,91,45,49,49,49,46,55,54,54,51,57,51,44,51,56,46,53,48,50,50,52,51,93,44,91,45,49,49,49,46,51,48,53,54,54,53,44,51,56,46,53,49,48,49,54,57,93,44,91,45,49,49,49,46,50,57,57,51,54,44,51,57,46,48,51,50,50,54,52,93,44,91,45,49,49,49,46,56,53,51,50,57,55,44,51,57,46,48,51,50,57,56,52,93,44,91,45,49,49,50,46,48,49,52,48,56,51,44,51,57,46,48,52,53,53,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,54,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,54,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,101,115,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,50,55,48,54,55,53,44,51,55,46,51,50,48,55,53,54,93,44,91,45,55,54,46,57,55,50,52,51,57,44,51,55,46,50,52,56,53,48,49,93,44,91,45,55,54,46,56,56,51,49,53,54,44,51,55,46,50,50,51,48,53,55,93,44,91,45,55,54,46,57,48,52,52,55,49,44,51,55,46,51,55,55,54,54,53,93,44,91,45,55,55,46,49,55,55,51,50,52,44,51,55,46,52,57,48,54,93,44,91,45,55,55,46,50,52,57,54,54,53,44,51,55,46,51,56,50,93,44,91,45,55,55,46,50,55,48,54,55,53,44,51,55,46,51,50,48,55,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,111,99,116,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,48,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,51,49,51,55,57,44,51,50,46,50,50,55,54,54,54,93,44,91,45,56,56,46,52,55,51,50,50,55,44,51,49,46,56,57,51,56,53,54,93,44,91,45,56,56,46,52,54,52,52,51,44,51,49,46,54,57,55,57,53,50,93,44,91,45,56,56,46,48,56,56,50,56,56,44,51,49,46,54,57,57,51,48,51,93,44,91,45,56,56,46,49,56,48,51,56,52,44,51,49,46,56,49,52,53,52,54,93,44,91,45,56,56,46,48,55,51,52,57,44,51,49,46,57,57,48,49,56,50,93,44,91,45,56,56,46,48,48,55,48,55,55,44,51,50,46,49,56,53,51,49,51,93,44,91,45,56,56,46,48,49,57,49,52,53,44,51,50,46,50,56,53,50,52,93,44,91,45,56,55,46,57,51,48,54,54,49,44,51,50,46,51,49,48,53,55,52,93,44,91,45,56,56,46,52,50,49,52,53,51,44,51,50,46,51,48,56,54,56,93,44,91,45,56,56,46,52,51,49,51,55,57,44,51,50,46,50,50,55,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,52,48,57,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,51,49,49,52,53,44,51,56,46,56,53,50,53,48,55,93,44,91,45,56,55,46,53,49,57,54,49,44,51,56,46,54,57,55,49,57,56,93,44,91,45,56,55,46,54,53,49,53,50,57,44,51,56,46,53,54,56,49,54,54,93,44,91,45,56,55,46,55,52,51,54,57,49,44,51,56,46,52,49,52,51,56,55,93,44,91,45,56,55,46,52,54,50,56,57,50,44,51,56,46,53,51,51,53,49,57,93,44,91,45,56,55,46,50,52,50,48,57,55,44,51,56,46,53,52,52,57,51,93,44,91,45,56,55,46,50,55,56,53,53,51,44,51,56,46,54,57,49,51,52,51,93,44,91,45,56,55,46,50,52,54,54,44,51,56,46,56,48,55,55,48,49,93,44,91,45,56,55,46,48,57,56,55,55,49,44,51,56,46,57,48,51,57,55,52,93,44,91,45,56,55,46,50,52,49,48,50,55,44,51,56,46,57,48,55,56,55,52,93,44,91,45,56,55,46,53,50,50,57,51,57,44,51,56,46,57,48,50,51,57,93,44,91,45,56,55,46,53,51,49,49,52,53,44,51,56,46,56,53,50,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,68,97,119,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,48,52,44,34,98,101,100,115,34,58,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,50,52,50,51,53,44,52,49,46,48,52,54,53,57,55,93,44,91,45,49,48,48,46,50,50,51,51,49,49,44,52,48,46,55,48,48,50,53,52,93,44,91,45,57,57,46,57,56,49,55,52,51,44,52,48,46,55,48,48,48,48,51,93,44,91,45,57,57,46,54,52,51,52,54,50,44,52,48,46,54,56,52,57,49,49,93,44,91,45,57,57,46,52,49,55,51,49,54,44,52,48,46,54,55,48,56,50,53,93,44,91,45,57,57,46,52,50,53,57,56,54,44,52,49,46,48,52,54,52,55,49,93,44,91,45,49,48,48,46,50,50,52,50,51,53,44,52,49,46,48,52,54,53,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,70,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,56,52,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,50,55,48,57,44,51,55,46,57,49,52,48,49,56,93,44,91,45,49,48,48,46,50,49,54,50,50,57,44,51,55,46,52,55,53,49,57,93,44,91,45,49,48,48,46,49,48,55,50,52,56,44,51,55,46,52,55,52,56,51,54,93,44,91,45,57,57,46,53,53,54,49,49,57,44,51,55,46,52,54,55,55,50,50,93,44,91,45,57,57,46,53,53,57,53,56,44,51,55,46,55,51,52,56,56,56,93,44,91,45,57,57,46,53,54,57,56,55,57,44,51,55,46,57,49,51,48,49,54,93,44,91,45,49,48,48,46,50,50,55,48,57,44,51,55,46,57,49,52,48,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,48,54,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,54,55,54,54,44,52,56,46,51,56,57,50,57,56,93,44,91,45,49,48,52,46,48,52,52,48,52,52,44,52,55,46,57,57,54,48,56,50,93,44,91,45,49,48,51,46,57,49,57,55,56,57,44,52,55,46,57,53,53,57,53,93,44,91,45,49,48,51,46,55,56,52,51,57,52,44,52,56,46,48,53,57,52,57,49,93,44,91,45,49,48,51,46,54,48,56,49,55,52,44,52,56,46,49,49,52,49,50,52,93,44,91,45,49,48,51,46,52,56,53,48,55,50,44,52,56,46,48,48,54,55,50,53,93,44,91,45,49,48,51,46,50,55,55,50,54,54,44,52,56,46,48,53,56,48,50,51,93,44,91,45,49,48,51,46,50,48,49,56,57,44,52,56,46,49,51,53,50,48,56,93,44,91,45,49,48,50,46,56,50,56,52,55,55,44,52,56,46,49,50,51,54,54,52,93,44,91,45,49,48,50,46,56,50,56,49,54,51,44,52,56,46,51,55,50,54,52,49,93,44,91,45,49,48,50,46,56,56,53,55,54,51,44,52,56,46,53,52,54,51,57,93,44,91,45,49,48,50,46,56,56,53,55,55,53,44,52,56,46,54,51,51,50,57,56,93,44,91,45,49,48,52,46,48,52,55,57,50,52,44,52,56,46,54,51,51,57,49,49,93,44,91,45,49,48,52,46,48,52,54,55,54,54,44,52,56,46,51,56,57,50,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,52,50,48,50,44,34,98,101,100,115,34,58,49,51,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,48,53,57,51,53,44,52,55,46,50,51,57,57,55,55,93,44,91,45,57,55,46,54,56,49,53,48,56,44,52,54,46,57,55,56,52,56,49,93,44,91,45,57,55,46,54,56,50,48,48,54,44,52,54,46,54,50,57,57,50,56,93,44,91,45,57,55,46,50,55,57,57,52,56,44,52,54,46,54,50,57,51,52,56,93,44,91,45,57,54,46,55,57,56,49,50,56,44,52,54,46,54,51,48,51,50,54,93,44,91,45,57,54,46,55,54,49,54,57,51,44,52,54,46,57,51,52,53,53,56,93,44,91,45,57,54,46,56,51,52,56,51,57,44,52,55,46,48,48,55,50,53,52,93,44,91,45,57,54,46,56,52,48,49,50,50,44,52,55,46,49,53,48,52,55,53,93,44,91,45,57,54,46,56,51,51,51,57,51,44,52,55,46,50,51,56,48,52,49,93,44,91,45,57,55,46,52,53,49,53,49,50,44,52,55,46,50,51,57,48,54,49,93,44,91,45,57,55,46,55,48,53,57,51,53,44,52,55,46,50,51,57,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,49,50,54,57,55,44,51,55,46,53,57,57,54,50,53,93,44,91,45,56,56,46,52,49,53,52,48,54,44,51,55,46,52,50,51,57,55,50,93,44,91,45,56,56,46,51,53,56,52,54,54,44,51,55,46,52,48,52,55,53,50,93,44,91,45,56,56,46,50,55,57,50,48,55,44,51,55,46,52,53,51,50,57,50,93,44,91,45,56,56,46,48,54,49,51,51,50,44,51,55,46,53,48,53,51,51,50,93,44,91,45,56,56,46,49,51,51,52,51,52,44,51,55,46,53,55,52,51,51,56,93,44,91,45,56,56,46,51,55,53,52,51,52,44,51,55,46,53,57,57,53,57,53,93,44,91,45,56,56,46,52,49,50,54,57,55,44,51,55,46,53,57,57,54,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,114,116,104,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,57,56,53,53,50,51,44,52,49,46,55,52,50,50,57,93,44,91,45,49,48,49,46,57,56,52,54,51,44,52,49,46,51,57,52,55,49,50,93,44,91,45,49,48,49,46,52,48,55,50,54,44,52,49,46,51,57,53,52,49,54,93,44,91,45,49,48,49,46,52,48,54,52,54,54,44,52,49,46,55,52,51,50,93,44,91,45,49,48,49,46,52,50,53,57,50,44,52,49,46,55,52,51,48,53,57,93,44,91,45,49,48,49,46,57,56,53,53,50,51,44,52,49,46,55,52,50,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,70,114,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,51,57,52,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,52,57,44,50,57,46,48,57,48,52,51,52,93,44,91,45,57,57,46,52,49,51,56,56,44,50,57,46,48,57,49,51,51,53,93,44,91,45,57,57,46,52,48,57,48,50,49,44,50,56,46,54,52,48,53,54,54,93,44,91,45,57,57,46,51,57,53,55,51,54,44,50,56,46,54,52,48,55,56,52,93,44,91,45,57,56,46,56,48,48,56,52,49,44,50,56,46,54,52,55,52,56,55,93,44,91,45,57,56,46,56,48,52,57,44,50,57,46,48,57,48,52,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,48,48,49,44,34,98,101,100,115,34,58,49,51,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,51,49,51,55,57,44,52,49,46,56,54,49,56,53,49,93,44,91,45,57,49,46,56,50,57,50,51,49,44,52,49,46,53,49,49,52,53,55,93,44,91,45,57,49,46,53,50,50,52,56,44,52,49,46,53,49,49,48,51,53,93,44,91,45,57,49,46,52,56,51,57,57,53,44,52,49,46,52,50,51,56,52,56,93,44,91,45,57,49,46,51,54,56,53,50,49,44,52,49,46,52,50,51,49,55,56,93,44,91,45,57,49,46,51,54,54,52,52,56,44,52,49,46,53,57,56,51,55,51,93,44,91,45,57,49,46,51,54,54,50,50,49,44,52,49,46,56,54,48,48,54,57,93,44,91,45,57,49,46,56,51,49,51,55,57,44,52,49,46,56,54,49,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,78,101,111,115,104,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,56,56,48,56,50,44,51,55,46,55,51,50,52,55,54,93,44,91,45,57,53,46,53,50,53,52,57,57,44,51,55,46,55,51,50,55,53,57,93,44,91,45,57,53,46,53,50,53,53,54,44,51,55,46,51,56,51,57,55,57,93,44,91,45,57,53,46,53,50,49,49,51,44,51,55,46,51,56,51,57,57,93,44,91,45,57,53,46,48,56,56,49,56,57,44,51,55,46,51,56,51,56,51,55,93,44,91,45,57,53,46,48,56,56,48,49,50,44,51,55,46,54,55,52,53,49,57,93,44,91,45,57,53,46,48,56,56,48,56,50,44,51,55,46,55,51,50,52,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,117,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,54,53,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,48,51,48,56,53,56,44,51,56,46,55,50,53,53,50,52,93,44,91,45,56,51,46,48,55,51,54,51,51,44,51,56,46,53,57,48,52,51,56,93,44,91,45,56,51,46,49,54,54,52,49,57,44,51,56,46,53,48,51,57,54,53,93,44,91,45,56,50,46,57,54,55,54,51,53,44,51,56,46,51,57,52,49,51,56,93,44,91,45,56,50,46,56,49,55,52,53,52,44,51,56,46,51,55,51,57,51,53,93,44,91,45,56,50,46,54,54,53,52,49,49,44,51,56,46,53,48,53,55,56,55,93,44,91,45,56,50,46,56,49,53,57,55,57,44,51,56,46,53,55,48,56,48,50,93,44,91,45,56,50,46,56,57,55,49,56,57,44,51,56,46,55,53,54,50,49,52,93,44,91,45,56,51,46,48,51,48,56,53,56,44,51,56,46,55,50,53,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,76,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,44,91,45,57,53,46,48,55,55,56,55,54,44,51,56,46,48,51,55,55,48,54,93,44,91,45,57,52,46,54,49,52,48,56,57,44,51,56,46,48,51,55,48,53,55,93,44,91,45,57,52,46,54,49,52,48,54,49,44,51,56,46,48,54,48,48,53,54,93,44,91,45,57,52,46,54,49,51,50,51,50,44,51,56,46,51,56,56,55,49,56,93,44,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,49,55,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,52,51,50,49,53,44,51,56,46,49,53,49,50,56,93,44,91,45,49,49,50,46,52,52,52,50,49,52,44,51,56,46,49,53,48,48,48,49,93,44,91,45,49,49,50,46,52,55,56,54,56,44,51,56,46,49,52,55,52,49,57,93,44,91,45,49,49,50,46,52,54,56,49,55,55,44,51,55,46,56,57,48,52,54,52,93,44,91,45,49,49,50,46,53,55,56,51,57,55,44,51,55,46,56,56,50,49,52,55,93,44,91,45,49,49,50,46,54,56,57,50,50,49,44,51,55,46,56,48,53,53,57,93,44,91,45,49,49,50,46,54,56,51,55,53,44,51,55,46,53,52,51,54,57,50,93,44,91,45,49,49,49,46,56,52,48,56,48,57,44,51,55,46,53,51,53,55,56,57,93,44,91,45,49,49,48,46,54,52,54,51,57,52,44,51,55,46,53,52,49,48,54,51,93,44,91,45,49,49,48,46,53,48,49,53,57,52,44,51,55,46,54,53,93,44,91,45,49,49,48,46,52,51,55,53,51,56,44,51,55,46,56,48,54,57,50,93,44,91,45,49,49,48,46,51,54,52,49,52,54,44,51,55,46,56,57,50,49,56,53,93,44,91,45,49,49,48,46,50,49,52,57,52,57,44,51,55,46,56,57,50,53,53,53,93,44,91,45,49,49,48,46,48,48,57,52,57,52,44,51,56,46,49,48,57,54,53,54,93,44,91,45,49,48,57,46,57,50,55,57,57,53,44,51,56,46,49,53,49,56,56,52,93,44,91,45,49,49,48,46,54,56,55,52,48,54,44,51,56,46,49,53,49,51,56,53,93,44,91,45,49,49,49,46,56,52,51,50,49,53,44,51,56,46,49,53,49,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,69,117,114,101,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,53,56,54,55,56,54,44,52,49,46,48,48,48,51,57,56,93,44,91,45,49,49,54,46,53,57,54,56,49,53,44,52,48,46,57,52,54,52,54,93,44,91,45,49,49,54,46,53,57,48,51,57,54,44,52,48,46,48,55,50,50,55,55,93,44,91,45,49,49,54,46,54,48,48,57,52,54,44,51,57,46,49,54,49,52,54,51,93,44,91,45,49,49,53,46,57,48,55,48,55,49,44,51,57,46,49,54,49,56,52,56,93,44,91,45,49,49,53,46,57,48,55,54,53,57,44,51,57,46,52,54,52,52,51,50,93,44,91,45,49,49,53,46,56,49,51,52,55,54,44,51,57,46,53,57,51,53,50,49,93,44,91,45,49,49,53,46,56,51,51,49,48,49,44,51,57,46,55,50,57,52,49,50,93,44,91,45,49,49,53,46,55,57,52,56,54,52,44,51,57,46,56,53,51,49,48,52,93,44,91,45,49,49,53,46,56,51,52,57,54,57,44,52,48,46,49,50,55,56,52,50,93,44,91,45,49,49,54,46,48,48,48,56,57,55,44,52,48,46,49,50,55,51,55,54,93,44,91,45,49,49,54,46,49,53,55,56,51,52,44,52,48,46,54,54,54,51,56,57,93,44,91,45,49,49,54,46,49,53,56,49,53,53,44,52,48,46,57,57,57,57,49,50,93,44,91,45,49,49,54,46,53,56,54,55,56,54,44,52,49,46,48,48,48,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,97,121,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,51,52,53,51,54,53,44,52,48,46,54,57,56,48,57,51,93,44,91,45,49,48,49,46,51,52,50,55,56,56,44,52,48,46,51,53,48,52,52,52,93,44,91,45,49,48,49,46,51,50,51,51,53,51,44,52,48,46,51,53,48,53,53,51,93,44,91,45,49,48,48,46,55,55,55,51,55,54,44,52,48,46,51,52,57,52,54,54,93,44,91,45,49,48,48,46,55,55,55,56,51,51,44,52,48,46,55,48,48,49,51,53,93,44,91,45,49,48,49,46,50,52,55,57,54,51,44,52,48,46,54,57,55,56,48,50,93,44,91,45,49,48,49,46,51,52,53,51,54,53,44,52,48,46,54,57,56,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,80,104,105,108,108,105,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,49,56,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,53,49,52,49,54,44,52,48,46,55,52,57,53,56,54,93,44,91,45,49,48,50,46,54,53,49,51,49,44,52,48,46,55,52,57,52,48,50,93,44,91,45,49,48,50,46,54,54,52,56,48,52,44,52,48,46,52,51,56,52,55,51,93,44,91,45,49,48,50,46,48,53,49,52,54,53,44,52,48,46,52,52,48,48,48,56,93,44,91,45,49,48,50,46,48,53,49,52,53,55,44,52,48,46,54,57,55,53,51,57,93,44,91,45,49,48,50,46,48,53,49,52,49,54,44,52,48,46,55,52,57,53,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,56,51,48,53,52,44,51,51,46,56,48,50,49,57,56,93,44,91,45,57,50,46,53,56,54,56,56,54,44,51,51,46,55,51,49,50,51,52,93,44,91,45,57,50,46,55,53,57,48,51,53,44,51,51,46,53,51,48,57,53,52,93,44,91,45,57,50,46,55,48,53,48,57,51,44,51,51,46,52,51,49,50,49,53,93,44,91,45,57,50,46,53,54,55,49,53,54,44,51,51,46,51,54,55,50,93,44,91,45,57,50,46,52,52,49,54,55,55,44,51,51,46,50,55,51,54,52,55,93,44,91,45,57,50,46,51,53,48,52,51,50,44,51,51,46,50,57,56,57,52,49,93,44,91,45,57,50,46,51,56,50,48,54,44,51,51,46,51,52,53,57,55,49,93,44,91,45,57,50,46,51,49,49,48,55,57,44,51,51,46,52,57,57,55,56,50,93,44,91,45,57,50,46,51,51,48,56,51,57,44,51,51,46,55,48,55,56,48,54,93,44,91,45,57,50,46,51,51,52,50,52,57,44,51,51,46,55,57,53,48,54,53,93,44,91,45,57,50,46,53,56,51,48,53,52,44,51,51,46,56,48,50,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,57,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,48,34,44,34,78,65,77,69,34,58,34,70,97,105,114,98,97,110,107,115,32,78,111,114,116,104,32,83,116,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,54,53,51,44,34,98,101,100,115,34,58,49,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,52,46,48,54,57,48,50,57,44,54,52,46,54,56,51,53,54,50,93,44,91,45,49,52,52,46,49,48,52,55,52,52,44,54,52,46,56,52,57,50,51,49,93,44,91,45,49,52,51,46,57,50,49,48,57,52,44,54,53,46,48,53,56,55,56,93,44,91,45,49,52,51,46,57,55,51,54,51,57,44,54,53,46,49,49,57,51,48,52,93,44,91,45,49,52,52,46,51,51,49,51,55,55,44,54,53,46,49,48,55,55,48,55,93,44,91,45,49,52,52,46,52,54,48,48,50,44,54,53,46,48,54,48,55,49,49,93,44,91,45,49,52,52,46,57,56,51,53,49,52,44,54,53,46,49,51,54,57,56,56,93,44,91,45,49,52,53,46,50,50,53,57,52,52,44,54,53,46,48,54,57,50,49,54,93,44,91,45,49,52,53,46,53,49,57,52,51,54,44,54,53,46,48,54,50,54,56,50,93,44,91,45,49,52,53,46,54,51,51,55,56,57,44,54,53,46,49,53,51,55,57,49,93,44,91,45,49,52,54,46,48,56,49,48,50,56,44,54,53,46,50,52,57,57,52,50,93,44,91,45,49,52,54,46,48,48,55,56,57,57,44,54,53,46,51,53,57,52,51,52,93,44,91,45,49,52,54,46,50,48,53,55,48,52,44,54,53,46,52,53,50,57,57,54,93,44,91,45,49,52,54,46,53,52,56,54,53,52,44,54,53,46,51,52,53,48,48,51,93,44,91,45,49,52,54,46,57,48,51,49,52,50,44,54,53,46,50,56,51,51,55,53,93,44,91,45,49,52,55,46,51,49,54,56,48,57,44,54,53,46,50,55,53,50,51,50,93,44,91,45,49,52,55,46,53,53,55,55,55,49,44,54,53,46,50,48,57,56,57,53,93,44,91,45,49,52,56,46,54,54,49,49,57,57,44,54,53,46,50,48,57,56,55,53,93,44,91,45,49,52,56,46,54,52,56,50,48,55,44,54,52,46,53,56,53,51,55,49,93,44,91,45,49,52,56,46,53,53,48,55,52,50,44,54,52,46,54,49,55,50,48,56,93,44,91,45,49,52,56,46,48,52,54,54,57,54,44,54,52,46,51,52,51,56,48,50,93,44,91,45,49,52,55,46,55,53,57,50,44,54,52,46,50,53,55,50,93,44,91,45,49,52,54,46,57,57,57,57,48,57,44,54,52,46,50,53,55,49,57,54,93,44,91,45,49,52,54,46,51,52,52,54,55,51,44,54,52,46,50,55,54,51,54,52,93,44,91,45,49,52,54,46,49,53,55,53,57,50,44,54,52,46,51,56,50,55,51,93,44,91,45,49,52,54,46,48,48,51,55,55,50,44,54,52,46,51,56,49,48,57,49,93,44,91,45,49,52,53,46,55,52,48,48,48,50,44,54,52,46,52,54,48,49,51,50,93,44,91,45,49,52,53,46,52,57,56,48,56,57,44,54,52,46,52,50,51,49,53,53,93,44,91,45,49,52,53,46,51,55,51,57,50,57,44,54,52,46,52,56,51,56,51,54,93,44,91,45,49,52,53,46,48,56,50,55,56,55,44,54,52,46,53,48,55,51,52,57,93,44,91,45,49,52,52,46,57,56,53,51,51,49,44,54,52,46,53,54,56,54,48,57,93,44,91,45,49,52,52,46,53,53,50,53,50,54,44,54,52,46,54,48,48,54,52,53,93,44,91,45,49,52,52,46,48,54,57,48,50,57,44,54,52,46,54,56,51,53,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,72,101,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,49,51,55,44,34,98,101,100,115,34,58,49,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,53,49,49,57,57,44,51,55,46,57,52,48,57,53,52,93,44,91,45,56,55,46,55,48,48,55,54,50,44,51,55,46,56,57,55,53,53,54,93,44,91,45,56,55,46,57,50,55,48,54,56,44,51,55,46,57,48,49,54,56,53,93,44,91,45,56,55,46,55,51,52,53,52,53,44,51,55,46,54,51,56,51,55,54,93,44,91,45,56,55,46,52,57,53,51,51,49,44,51,55,46,54,52,55,53,52,55,93,44,91,45,56,55,46,52,48,56,53,52,55,44,51,55,46,54,56,51,53,54,51,93,44,91,45,56,55,46,50,56,57,55,56,52,44,51,55,46,55,54,49,48,55,56,93,44,91,45,56,55,46,51,48,50,57,51,50,44,51,55,46,56,57,55,55,53,93,44,91,45,56,55,46,52,53,49,49,57,57,44,51,55,46,57,52,48,57,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,72,111,108,109,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,51,49,53,56,57,44,51,51,46,51,48,50,56,50,53,93,44,91,45,57,48,46,51,51,48,51,49,50,44,51,51,46,49,51,55,56,49,56,93,44,91,45,57,48,46,52,50,56,55,55,52,44,51,51,46,49,48,55,57,51,50,93,44,91,45,57,48,46,51,54,52,48,51,49,44,51,51,46,48,49,48,53,57,54,93,44,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,44,91,45,56,57,46,57,48,50,53,48,49,44,51,50,46,57,50,55,57,52,93,44,91,45,56,57,46,55,52,57,52,52,49,44,51,51,46,50,49,52,52,55,56,93,44,91,45,57,48,46,49,55,52,54,49,52,44,51,51,46,51,51,51,51,55,56,93,44,91,45,57,48,46,50,57,53,48,50,57,44,51,51,46,51,54,49,55,56,52,93,44,91,45,57,48,46,51,51,49,53,56,57,44,51,51,46,51,48,50,56,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,79,107,116,105,98,98,101,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,52,56,49,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,56,56,52,52,54,44,51,51,46,53,51,51,50,48,50,93,44,91,45,56,57,46,48,56,56,50,53,53,44,51,51,46,50,56,54,48,48,51,93,44,91,45,56,56,46,56,49,51,48,53,51,44,51,51,46,50,56,54,52,50,52,93,44,91,45,56,56,46,54,54,57,48,55,54,44,51,51,46,50,56,54,57,50,50,93,44,91,45,56,56,46,54,55,49,50,53,44,51,51,46,53,48,54,49,54,56,93,44,91,45,56,56,46,54,55,49,53,50,54,44,51,51,46,53,54,53,49,51,53,93,44,91,45,56,57,46,48,49,56,54,49,51,44,51,51,46,53,54,50,49,49,52,93,44,91,45,56,57,46,48,56,56,52,52,54,44,51,51,46,53,51,51,50,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,101,105,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,53,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,55,54,54,56,51,49,44,49,56,46,50,56,48,48,48,52,93,44,91,45,54,53,46,54,55,49,44,49,56,46,50,50,51,48,53,50,93,44,91,45,54,53,46,54,53,52,55,50,56,44,49,56,46,49,51,51,51,51,53,93,44,91,45,54,53,46,54,49,56,48,53,44,49,56,46,49,53,52,49,56,93,44,91,45,54,53,46,53,53,52,54,52,51,44,49,56,46,49,56,52,55,54,55,93,44,91,45,54,53,46,52,50,50,55,48,54,44,49,56,46,50,57,48,55,50,56,93,44,91,45,54,53,46,52,50,52,52,51,49,44,49,56,46,51,57,48,56,56,93,44,91,45,54,53,46,52,54,57,49,51,50,44,49,56,46,51,57,54,52,49,93,44,91,45,54,53,46,54,50,52,54,48,53,44,49,56,46,50,56,55,55,52,53,93,44,91,45,54,53,46,55,53,51,53,57,49,44,49,56,46,50,57,54,55,53,53,93,44,91,45,54,53,46,55,53,56,56,54,49,44,49,56,46,50,57,48,54,48,52,93,44,91,45,54,53,46,55,54,54,56,51,49,44,49,56,46,50,56,48,48,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,111,114,111,122,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,49,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,54,53,50,55,50,44,49,56,46,51,51,51,50,50,57,93,44,91,45,54,54,46,51,55,55,55,49,50,44,49,56,46,50,57,51,57,55,54,93,44,91,45,54,54,46,51,53,48,55,57,51,44,49,56,46,50,52,49,50,51,53,93,44,91,45,54,54,46,51,49,51,50,57,57,44,49,56,46,50,52,57,51,50,52,93,44,91,45,54,54,46,50,55,56,48,55,54,44,49,56,46,51,50,57,57,55,53,93,44,91,45,54,54,46,51,49,56,55,54,52,44,49,56,46,51,54,55,52,49,49,93,44,91,45,54,54,46,51,54,53,50,55,50,44,49,56,46,51,51,51,50,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,70,101,114,103,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,55,51,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,50,49,51,53,57,54,44,52,55,46,52,49,54,54,53,55,93,44,91,45,49,49,48,46,49,50,55,54,57,57,44,52,55,46,50,55,49,57,49,93,44,91,45,49,48,57,46,55,53,54,53,54,56,44,52,55,46,49,56,53,54,57,52,93,44,91,45,49,48,57,46,55,53,53,52,50,51,44,52,54,46,56,57,54,48,50,51,93,44,91,45,49,48,57,46,55,57,55,52,54,57,44,52,54,46,56,54,55,48,51,56,93,44,91,45,49,48,57,46,55,52,53,55,52,53,44,52,54,46,54,57,52,48,57,55,93,44,91,45,49,48,57,46,51,56,57,49,54,51,44,52,54,46,54,57,51,54,50,53,93,44,91,45,49,48,57,46,51,56,57,50,48,56,44,52,54,46,55,53,49,51,53,49,93,44,91,45,49,48,57,46,48,48,57,53,55,44,52,54,46,55,53,48,55,48,50,93,44,91,45,49,48,56,46,54,51,49,52,54,50,44,52,54,46,55,52,57,51,57,50,93,44,91,45,49,48,56,46,54,48,56,57,53,52,44,52,55,46,48,57,56,49,50,54,93,44,91,45,49,48,56,46,55,51,54,56,51,56,44,52,55,46,48,57,56,50,49,56,93,44,91,45,49,48,56,46,55,49,57,49,56,57,44,52,55,46,50,55,48,51,52,50,93,44,91,45,49,48,56,46,53,57,48,56,51,53,44,52,55,46,51,48,54,53,49,54,93,44,91,45,49,48,56,46,51,49,53,52,56,49,44,52,55,46,51,49,53,49,53,50,93,44,91,45,49,48,56,46,51,49,51,48,52,56,44,52,55,46,53,56,51,54,53,93,44,91,45,49,48,56,46,54,55,49,52,44,52,55,46,54,49,57,53,53,54,93,44,91,45,49,48,56,46,56,57,49,49,49,53,44,52,55,46,55,51,52,52,53,54,93,44,91,45,49,48,56,46,57,52,50,55,52,53,44,52,55,46,55,57,49,56,50,52,93,44,91,45,49,48,57,46,50,55,55,51,56,50,44,52,55,46,55,57,50,52,51,53,93,44,91,45,49,48,57,46,52,49,49,53,48,54,44,52,55,46,55,50,52,54,49,55,93,44,91,45,49,48,57,46,53,51,56,54,55,55,44,52,55,46,55,51,56,56,54,52,93,44,91,45,49,48,57,46,56,50,51,52,48,49,44,52,55,46,55,49,53,53,55,57,93,44,91,45,49,48,57,46,56,52,53,50,50,49,44,52,55,46,53,52,54,55,57,53,93,44,91,45,49,49,48,46,50,49,51,53,57,54,44,52,55,46,52,49,54,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,71,97,114,114,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,55,54,44,34,98,101,100,115,34,58,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,55,54,54,54,50,44,51,57,46,55,50,49,48,55,56,93,44,91,45,55,57,46,52,56,54,56,55,53,44,51,57,46,50,48,53,56,57,54,93,44,91,45,55,57,46,50,55,49,54,57,53,44,51,57,46,51,50,55,57,57,57,93,44,91,45,55,57,46,48,54,55,53,53,57,44,51,57,46,52,55,57,52,52,51,93,44,91,45,55,56,46,57,50,56,52,49,54,44,51,57,46,55,50,50,55,56,51,93,44,91,45,55,57,46,51,57,50,52,53,57,44,51,57,46,55,50,49,53,55,56,93,44,91,45,55,57,46,52,55,54,54,54,50,44,51,57,46,55,50,49,48,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,51,49,44,34,98,101,100,115,34,58,50,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,50,48,57,57,52,44,51,51,46,48,49,56,54,49,54,93,44,91,45,57,51,46,52,53,51,49,50,49,44,51,50,46,56,53,57,57,51,53,93,44,91,45,57,51,46,52,52,49,50,49,50,44,51,50,46,52,49,48,52,51,49,93,44,91,45,57,51,46,51,55,50,55,56,49,44,51,50,46,52,49,48,49,53,51,93,44,91,45,57,51,46,50,51,54,54,53,54,44,51,50,46,52,49,48,48,55,49,93,44,91,45,57,51,46,49,52,55,49,57,51,44,51,50,46,52,53,53,49,55,51,93,44,91,45,57,51,46,49,55,56,55,54,55,44,51,50,46,53,56,52,57,49,54,93,44,91,45,57,51,46,50,51,55,51,56,49,44,51,50,46,55,49,54,50,53,93,44,91,45,57,51,46,50,51,56,54,48,55,44,51,51,46,48,49,55,57,57,50,93,44,91,45,57,51,46,52,57,48,53,50,44,51,51,46,48,49,56,52,52,50,93,44,91,45,57,51,46,53,50,48,57,57,52,44,51,51,46,48,49,56,54,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,105,108,108,115,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,56,51,48,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,50,54,52,57,49,44,52,50,46,48,55,50,52,54,56,93,44,91,45,56,52,46,56,50,53,49,51,44,52,49,46,55,53,57,57,57,57,93,44,91,45,56,52,46,56,48,53,57,55,50,44,52,49,46,54,57,54,49,49,56,93,44,91,45,56,52,46,51,57,57,53,52,54,44,52,49,46,55,48,53,56,49,54,93,44,91,45,56,52,46,51,54,48,52,49,54,44,52,49,46,55,48,54,53,56,57,93,44,91,45,56,52,46,51,54,51,50,57,55,44,52,50,46,48,55,51,52,53,54,93,44,91,45,56,52,46,55,48,57,53,53,54,44,52,50,46,48,55,48,51,54,54,93,44,91,45,56,52,46,56,50,54,52,57,49,44,52,50,46,48,55,50,52,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,56,52,57,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,53,51,49,54,52,44,51,55,46,48,54,49,48,49,57,93,44,91,45,56,55,46,48,54,48,56,52,57,44,51,54,46,54,52,50,57,54,51,93,44,91,45,56,54,46,55,54,51,50,57,54,44,51,54,46,54,52,56,57,53,52,93,44,91,45,56,54,46,54,57,48,55,49,57,44,51,54,46,56,52,52,51,93,44,91,45,56,54,46,54,49,49,53,56,54,44,51,54,46,56,56,51,48,53,55,93,44,91,45,56,54,46,54,55,52,52,54,50,44,51,54,46,57,57,57,55,54,54,93,44,91,45,56,54,46,57,52,49,51,57,49,44,51,55,46,48,54,56,57,56,49,93,44,91,45,56,55,46,48,53,51,49,54,52,44,51,55,46,48,54,49,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,55,51,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,52,56,48,51,44,52,51,46,52,55,55,56,49,53,93,44,91,45,49,48,51,46,48,48,48,57,49,51,44,52,51,46,52,55,54,56,52,56,93,44,91,45,49,48,51,46,48,48,49,48,49,55,44,52,51,46,54,48,53,56,49,54,93,44,91,45,49,48,50,46,56,48,57,51,57,56,44,52,51,46,54,56,55,53,54,93,44,91,45,49,48,50,46,54,56,55,49,57,49,44,52,51,46,56,53,53,53,57,57,93,44,91,45,49,48,52,46,48,53,53,52,56,55,44,52,51,46,56,53,51,52,55,54,93,44,91,45,49,48,52,46,48,53,52,55,56,54,44,52,51,46,53,48,51,51,50,56,93,44,91,45,49,48,52,46,48,53,52,56,48,51,44,52,51,46,52,55,55,56,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,77,101,114,114,105,109,97,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,52,53,50,44,34,98,101,100,115,34,58,53,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,57,51,53,51,49,44,52,51,46,53,50,56,56,56,93,44,91,45,55,50,46,48,57,48,49,52,54,44,52,51,46,51,50,50,53,53,51,93,44,91,45,55,50,46,48,48,57,48,55,52,44,52,51,46,49,56,55,56,56,50,93,44,91,45,55,49,46,57,49,51,50,49,53,44,52,51,46,50,48,55,48,57,57,93,44,91,45,55,49,46,56,53,54,49,44,52,51,46,49,49,53,49,51,53,93,44,91,45,55,49,46,54,54,55,55,55,49,44,52,51,46,49,53,50,53,51,52,93,44,91,45,55,49,46,54,52,49,50,57,49,44,52,51,46,48,53,52,49,54,56,93,44,91,45,55,49,46,53,49,55,52,54,55,44,52,51,46,48,54,56,57,48,57,93,44,91,45,55,49,46,51,57,50,51,56,56,44,52,51,46,48,48,57,51,48,57,93,44,91,45,55,49,46,50,52,55,51,51,54,44,52,51,46,50,55,53,50,51,50,93,44,91,45,55,49,46,50,51,54,48,49,49,44,52,51,46,50,56,52,57,57,52,93,44,91,45,55,49,46,53,53,48,48,51,44,52,51,46,52,53,50,55,48,49,93,44,91,45,55,49,46,54,49,50,52,50,54,44,52,51,46,52,51,55,56,57,51,93,44,91,45,55,49,46,55,50,55,53,55,51,44,52,51,46,53,54,51,52,49,49,93,44,91,45,55,49,46,57,51,53,51,49,44,52,51,46,53,50,56,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,52,48,49,52,44,34,98,101,100,115,34,58,57,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,51,55,52,50,53,44,52,48,46,48,54,57,57,52,53,93,44,91,45,55,55,46,48,49,56,54,52,56,44,52,48,46,48,49,51,57,52,55,93,44,91,45,55,54,46,57,53,52,57,51,50,44,51,57,46,56,53,54,56,53,93,44,91,45,55,54,46,57,57,57,51,49,56,44,51,57,46,55,50,48,49,48,54,93,44,91,45,55,54,46,55,56,55,48,57,54,44,51,57,46,55,50,48,56,93,44,91,45,55,54,46,53,54,57,52,52,57,44,51,57,46,55,50,49,49,55,56,93,44,91,45,55,54,46,50,51,57,56,48,53,44,51,57,46,55,50,49,51,51,53,93,44,91,45,55,54,46,52,55,51,53,56,44,51,57,46,57,52,55,51,53,50,93,44,91,45,55,54,46,53,51,52,53,50,52,44,52,48,46,48,53,49,51,52,56,93,44,91,45,55,54,46,55,50,49,54,50,44,52,48,46,49,50,48,48,55,93,44,91,45,55,54,46,56,53,57,48,50,51,44,52,48,46,50,50,54,51,50,56,93,44,91,45,55,55,46,49,51,55,52,50,53,44,52,48,46,48,54,57,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,82,117,116,104,101,114,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,53,51,50,44,34,98,101,100,115,34,58,49,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,54,49,51,48,53,44,51,53,46,51,57,51,49,57,56,93,44,91,45,56,50,46,49,53,49,53,51,53,44,51,53,46,52,48,55,53,56,49,93,44,91,45,56,49,46,57,54,56,55,56,56,44,51,53,46,50,53,55,55,54,52,93,44,91,45,56,49,46,57,54,57,51,52,56,44,51,53,46,49,56,55,50,49,55,93,44,91,45,56,49,46,56,55,52,54,56,57,44,51,53,46,49,56,52,48,51,54,93,44,91,45,56,49,46,55,54,56,49,48,50,44,51,53,46,49,56,48,54,49,49,93,44,91,45,56,49,46,55,48,50,56,53,51,44,51,53,46,51,53,55,51,48,52,93,44,91,45,56,49,46,54,57,49,57,56,57,44,51,53,46,53,56,48,48,52,49,93,44,91,45,56,49,46,56,50,52,49,50,50,44,51,53,46,53,55,52,57,56,51,93,44,91,45,56,49,46,57,54,55,54,49,57,44,51,53,46,53,50,54,48,48,55,93,44,91,45,56,50,46,49,54,57,48,52,57,44,51,53,46,53,50,55,56,49,49,93,44,91,45,56,50,46,50,54,53,55,57,53,44,51,53,46,52,54,55,56,49,56,93,44,91,45,56,50,46,50,54,49,51,48,53,44,51,53,46,51,57,51,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,101,97,100,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,48,53,55,54,50,44,52,52,46,54,51,52,49,53,57,93,44,91,45,57,56,46,55,48,48,52,53,51,44,52,52,46,49,57,54,55,50,55,93,44,91,45,57,56,46,51,51,49,57,49,44,52,52,46,49,57,54,54,56,55,93,44,91,45,57,55,46,56,53,51,54,54,44,52,52,46,49,57,53,50,51,51,93,44,91,45,57,55,46,56,53,51,48,50,56,44,52,52,46,53,52,52,51,57,56,93,44,91,45,57,55,46,57,55,55,55,57,49,44,52,52,46,54,51,49,54,48,50,93,44,91,45,57,56,46,55,48,53,55,54,50,44,52,52,46,54,51,52,49,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,117,108,108,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,51,49,51,44,34,98,101,100,115,34,58,49,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,56,49,57,51,54,44,51,52,46,51,48,52,54,57,52,93,44,91,45,56,55,46,49,49,48,49,49,49,44,51,52,46,51,49,51,55,57,57,93,44,91,45,56,55,46,49,48,57,57,49,49,44,51,52,46,50,57,57,50,57,57,93,44,91,45,56,55,46,49,49,49,57,57,50,44,51,51,46,57,57,50,51,56,53,93,44,91,45,56,55,46,49,53,49,48,51,54,44,51,51,46,57,57,51,50,50,53,93,44,91,45,56,54,46,57,54,51,51,53,56,44,51,51,46,56,53,56,50,50,49,93,44,91,45,56,54,46,55,54,51,57,57,57,44,51,51,46,57,55,52,49,56,55,93,44,91,45,56,54,46,54,56,55,54,57,55,44,51,52,46,48,56,48,55,51,53,93,44,91,45,56,54,46,53,57,57,55,56,53,44,51,52,46,49,50,49,55,50,93,44,91,45,56,54,46,53,49,57,54,48,51,44,51,52,46,50,53,49,55,54,54,93,44,91,45,56,54,46,52,53,51,48,50,44,51,52,46,50,53,57,51,49,55,93,44,91,45,56,54,46,53,56,49,57,51,54,44,51,52,46,51,48,52,54,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,56,52,48,44,34,98,101,100,115,34,58,49,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,48,49,54,56,56,44,51,51,46,55,56,48,55,48,51,93,44,91,45,56,52,46,57,48,53,55,56,56,44,51,51,46,53,55,51,51,55,56,93,44,91,45,56,52,46,56,48,56,57,51,52,44,51,51,46,53,55,52,48,56,53,93,44,91,45,56,52,46,54,53,54,52,51,51,44,51,51,46,54,53,57,52,48,57,93,44,91,45,56,52,46,53,55,56,49,51,50,44,51,51,46,55,52,51,53,48,55,93,44,91,45,56,52,46,55,50,52,49,51,57,44,51,51,46,56,48,54,49,55,93,44,91,45,56,52,46,57,48,49,54,56,56,44,51,51,46,55,56,48,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,57,55,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,54,51,54,51,50,44,52,48,46,53,50,51,48,49,51,93,44,91,45,57,54,46,52,54,51,54,54,55,44,52,48,46,50,54,50,49,55,51,93,44,91,45,57,54,46,48,54,54,55,51,54,44,52,48,46,50,54,50,48,51,56,93,44,91,45,57,54,46,48,54,55,48,49,50,44,52,48,46,53,50,51,49,52,56,93,44,91,45,57,54,46,52,54,51,54,51,50,44,52,48,46,53,50,51,48,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,56,52,55,50,54,52,44,51,53,46,55,49,57,57,56,50,93,44,91,45,55,54,46,54,51,55,53,49,51,44,51,53,46,55,48,53,50,49,53,93,44,91,45,55,54,46,52,48,53,57,55,49,44,51,53,46,54,57,55,53,55,57,93,44,91,45,55,54,46,51,53,51,54,54,57,44,51,53,46,56,54,49,51,54,53,93,44,91,45,55,54,46,51,53,56,51,57,51,44,51,54,46,48,50,48,48,49,57,93,44,91,45,55,54,46,51,57,54,55,57,52,44,51,54,46,48,50,54,52,52,51,93,44,91,45,55,54,46,54,48,54,50,49,52,44,51,53,46,57,55,56,48,53,49,93,44,91,45,55,54,46,55,54,48,53,57,56,44,51,53,46,56,54,52,56,56,55,93,44,91,45,55,54,46,56,52,55,50,54,52,44,51,53,46,55,49,57,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,52,54,57,49,54,44,52,52,46,49,54,56,52,56,52,93,44,91,45,49,48,49,46,48,54,52,48,54,56,44,52,51,46,57,57,52,57,50,57,93,44,91,45,49,48,49,46,48,54,52,51,50,54,44,52,51,46,56,52,49,48,57,93,44,91,45,49,48,48,46,57,56,55,48,50,55,44,52,51,46,56,52,57,49,51,50,93,44,91,45,49,48,48,46,54,55,57,51,50,50,44,52,51,46,55,49,49,54,51,54,93,44,91,45,49,48,48,46,53,53,52,54,56,55,44,52,51,46,55,51,55,50,52,55,93,44,91,45,49,48,48,46,51,51,56,57,55,44,52,51,46,55,49,54,57,52,50,93,44,91,45,49,48,48,46,51,54,54,49,55,52,44,52,51,46,56,52,54,57,55,56,93,44,91,45,49,48,48,46,51,54,55,50,48,55,44,52,52,46,49,54,56,54,57,52,93,44,91,45,49,48,49,46,48,52,54,57,49,54,44,52,52,46,49,54,56,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,48,54,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,50,55,54,56,50,57,44,51,53,46,49,57,53,55,50,50,93,44,91,45,56,48,46,51,50,48,56,50,56,44,51,52,46,56,49,51,57,48,54,93,44,91,45,55,57,46,57,50,55,52,49,50,44,51,52,46,56,48,54,55,51,52,93,44,91,45,55,57,46,56,52,57,53,51,54,44,51,52,46,57,48,48,48,48,54,93,44,91,45,55,57,46,57,52,54,49,50,50,44,51,53,46,49,49,56,53,57,51,93,44,91,45,56,48,46,48,55,53,51,54,53,44,51,53,46,49,52,51,48,56,49,93,44,91,45,56,48,46,50,55,54,56,50,57,44,51,53,46,49,57,53,55,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,48,34,44,34,78,65,77,69,34,58,34,72,97,105,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,53,46,55,49,55,51,48,55,44,53,57,46,55,51,48,48,52,51,93,44,91,45,49,51,53,46,57,53,50,54,52,53,44,53,57,46,54,54,50,49,54,54,93,44,91,45,49,51,54,46,49,57,50,57,48,52,44,53,57,46,54,52,48,48,50,55,93,44,91,45,49,51,54,46,51,48,53,48,50,50,44,53,57,46,52,54,52,53,49,56,93,44,91,45,49,51,54,46,52,55,55,49,53,54,44,53,57,46,52,54,53,56,50,52,93,44,91,45,49,51,54,46,52,56,56,52,48,50,44,53,57,46,50,53,57,50,57,93,44,91,45,49,51,53,46,57,54,57,56,52,55,44,53,57,46,49,55,57,55,52,93,44,91,45,49,51,53,46,55,49,48,51,56,51,44,53,57,46,49,48,49,52,57,49,93,44,91,45,49,51,53,46,53,54,54,56,54,53,44,53,56,46,57,54,51,56,50,93,44,91,45,49,51,53,46,55,53,53,51,50,51,44,53,56,46,55,52,53,57,53,52,93,44,91,45,49,51,53,46,52,50,50,54,56,55,44,53,56,46,54,51,49,52,49,54,93,44,91,45,49,51,53,46,52,55,54,49,51,57,44,53,56,46,52,55,53,51,52,55,93,44,91,45,49,51,53,46,52,52,57,54,56,55,44,53,56,46,51,49,55,48,55,51,93,44,91,45,49,51,53,46,50,53,48,48,50,44,53,56,46,49,54,54,55,93,44,91,45,49,51,53,46,48,48,48,52,51,50,44,53,56,46,49,49,56,48,54,52,93,44,91,45,49,51,53,46,48,55,48,52,53,44,53,56,46,52,57,57,56,57,55,93,44,91,45,49,51,53,46,50,49,57,49,50,56,44,53,56,46,57,55,52,57,55,50,93,44,91,45,49,51,52,46,51,50,49,52,52,54,44,53,56,46,57,54,51,54,50,57,93,44,91,45,49,51,52,46,52,56,51,51,57,53,44,53,57,46,49,51,49,54,48,51,93,44,91,45,49,51,52,46,55,48,48,55,49,54,44,53,57,46,50,52,57,48,49,49,93,44,91,45,49,51,52,46,57,53,57,57,48,53,44,53,57,46,50,56,48,57,50,54,93,44,91,45,49,51,53,46,48,51,48,53,50,53,44,53,57,46,51,52,54,51,52,56,93,44,91,45,49,51,53,46,51,55,53,48,50,44,53,57,46,51,53,48,48,51,51,93,44,91,45,49,51,53,46,55,49,55,51,48,55,44,53,57,46,55,51,48,48,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,105,108,108,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,54,54,54,54,55,53,44,52,55,46,51,50,57,50,53,54,93,44,91,45,49,48,51,46,54,54,55,48,55,51,44,52,54,46,57,55,57,55,55,53,93,44,91,45,49,48,51,46,54,48,57,53,57,50,44,52,54,46,57,55,57,56,53,52,93,44,91,45,49,48,51,46,54,48,57,50,55,51,44,52,54,46,54,50,57,56,50,50,93,44,91,45,49,48,51,46,50,51,49,54,53,54,44,52,54,46,54,50,57,55,54,52,93,44,91,45,49,48,51,46,50,51,49,48,53,54,44,52,54,46,57,56,48,50,57,54,93,44,91,45,49,48,51,46,48,51,50,54,56,49,44,52,54,46,57,56,48,53,56,93,44,91,45,49,48,51,46,48,51,50,51,54,54,44,52,55,46,51,50,56,54,56,54,93,44,91,45,49,48,51,46,48,57,57,49,57,55,44,52,55,46,51,50,56,55,49,52,93,44,91,45,49,48,51,46,54,54,54,54,55,53,44,52,55,46,51,50,57,50,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,116,101,108,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,55,50,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,48,48,50,51,53,44,52,50,46,52,51,54,57,49,51,93,44,91,45,57,56,46,51,48,48,53,57,50,44,52,50,46,48,56,56,56,53,51,93,44,91,45,57,56,46,50,57,53,54,48,50,44,52,49,46,57,49,52,57,53,52,93,44,91,45,57,55,46,56,51,51,50,56,56,44,52,49,46,57,49,54,50,56,54,93,44,91,45,57,55,46,56,51,52,53,51,54,44,52,50,46,48,56,57,55,53,93,44,91,45,57,55,46,56,51,52,52,51,49,44,52,50,46,52,51,55,54,56,52,93,44,91,45,57,56,46,51,48,48,50,51,53,44,52,50,46,52,51,54,57,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,97,115,99,111,110,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,52,54,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,49,56,54,51,55,44,51,56,46,55,48,57,55,55,56,93,44,91,45,57,49,46,53,52,53,51,49,51,44,51,56,46,54,55,54,56,56,50,93,44,91,45,57,49,46,54,52,48,51,55,50,44,51,56,46,55,48,51,55,57,50,93,44,91,45,57,49,46,54,52,52,55,50,57,44,51,56,46,50,56,56,53,49,93,44,91,45,57,49,46,54,51,48,53,53,52,44,51,56,46,49,53,51,53,49,57,93,44,91,45,57,49,46,53,51,52,51,56,52,44,51,56,46,49,53,50,53,57,51,93,44,91,45,57,49,46,51,54,55,52,56,50,44,51,56,46,50,48,57,55,52,49,93,44,91,45,57,49,46,51,54,57,49,57,50,44,51,56,46,54,57,57,51,50,52,93,44,91,45,57,49,46,52,49,56,54,51,55,44,51,56,46,55,48,57,55,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,49,50,48,57,53,44,51,55,46,51,57,53,49,50,51,93,44,91,45,56,54,46,56,50,57,51,55,49,44,51,55,46,50,56,49,51,54,53,93,44,91,45,56,54,46,56,57,57,50,54,56,44,51,55,46,50,49,50,51,49,51,93,44,91,45,56,54,46,57,52,49,51,57,49,44,51,55,46,48,54,56,57,56,49,93,44,91,45,56,54,46,54,55,52,52,54,50,44,51,54,46,57,57,57,55,54,54,93,44,91,45,56,54,46,54,49,56,49,53,56,44,51,55,46,49,56,51,57,48,54,93,44,91,45,56,54,46,51,57,57,49,54,53,44,51,55,46,49,54,57,56,57,54,93,44,91,45,56,54,46,52,54,57,49,50,54,44,51,55,46,51,50,49,48,57,57,93,44,91,45,56,54,46,54,49,50,48,57,53,44,51,55,46,51,57,53,49,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,97,109,112,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,55,48,56,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,48,57,54,55,54,44,52,52,46,53,54,51,57,56,49,93,44,91,45,49,48,54,46,48,49,55,51,54,54,44,52,51,46,52,57,52,57,54,57,93,44,91,45,49,48,53,46,48,55,57,55,57,55,44,52,51,46,52,57,56,52,52,53,93,44,91,45,49,48,53,46,48,55,57,50,56,49,44,52,52,46,49,55,54,49,56,50,93,44,91,45,49,48,53,46,48,56,53,52,53,49,44,52,52,46,55,56,54,56,48,49,93,44,91,45,49,48,53,46,48,55,54,54,48,49,44,52,52,46,57,57,57,57,50,54,93,44,91,45,49,48,54,46,48,50,52,56,49,53,44,52,52,46,57,57,51,52,57,53,93,44,91,45,49,48,54,46,48,48,57,54,55,54,44,52,52,46,53,54,51,57,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,49,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,51,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,48,53,57,50,56,44,51,51,46,56,49,55,55,54,93,44,91,45,56,51,46,54,56,48,56,57,54,44,51,51,46,53,57,54,57,49,57,93,44,91,45,56,51,46,54,56,50,49,57,54,44,51,51,46,53,50,54,50,50,93,44,91,45,56,51,46,53,51,51,55,51,54,44,51,51,46,52,51,52,52,55,50,93,44,91,45,56,51,46,50,55,57,57,51,49,44,51,51,46,52,56,51,52,51,56,93,44,91,45,56,51,46,50,55,55,54,49,49,44,51,51,46,53,50,55,54,51,93,44,91,45,56,51,46,52,48,54,49,56,57,44,51,51,46,54,57,56,51,48,55,93,44,91,45,56,51,46,53,48,53,57,50,56,44,51,51,46,56,49,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,114,111,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,48,50,52,50,57,44,51,53,46,52,52,49,55,50,54,93,44,91,45,57,49,46,48,51,57,50,51,44,51,53,46,52,52,52,55,49,55,93,44,91,45,57,49,46,48,51,57,55,56,51,44,51,53,46,51,53,52,50,53,54,93,44,91,45,57,49,46,48,52,50,54,55,44,51,53,46,49,52,56,49,56,57,93,44,91,45,57,48,46,53,48,50,57,57,51,44,51,53,46,49,52,52,50,49,52,93,44,91,45,57,48,46,53,48,50,52,50,57,44,51,53,46,52,52,49,55,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,80,104,105,108,108,105,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,51,52,44,34,98,101,100,115,34,58,49,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,53,49,57,49,56,44,51,52,46,54,52,53,55,50,49,93,44,91,45,57,49,46,48,53,54,50,55,54,44,51,52,46,51,51,54,54,48,53,93,44,91,45,57,49,46,49,49,55,57,48,53,44,51,52,46,49,49,57,49,48,53,93,44,91,45,57,48,46,57,53,53,49,55,44,51,52,46,49,49,56,56,51,51,93,44,91,45,57,48,46,57,53,53,57,55,52,44,51,52,46,49,50,48,49,50,53,93,44,91,45,57,48,46,56,51,51,51,51,53,44,51,52,46,50,54,52,50,54,52,93,44,91,45,57,48,46,53,56,48,54,56,49,44,51,52,46,52,49,48,53,53,49,93,44,91,45,57,48,46,53,54,57,51,52,55,44,51,52,46,53,50,52,56,54,55,93,44,91,45,57,48,46,53,56,51,50,50,52,44,51,52,46,54,52,49,51,56,57,93,44,91,45,57,49,46,48,53,49,57,49,56,44,51,52,46,54,52,53,55,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,83,116,46,32,74,97,109,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,53,55,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,52,49,57,57,56,44,51,48,46,49,54,54,52,51,93,44,91,45,57,48,46,57,49,53,53,54,53,44,51,48,46,49,49,51,50,56,53,93,44,91,45,57,48,46,57,54,51,54,57,51,44,51,48,46,48,54,54,52,53,93,44,91,45,57,48,46,57,53,57,56,54,57,44,50,57,46,57,55,55,57,50,52,93,44,91,45,57,48,46,56,56,53,53,56,57,44,50,57,46,57,48,53,51,53,51,93,44,91,45,57,48,46,54,53,54,51,49,50,44,50,57,46,56,56,57,50,52,54,93,44,91,45,57,48,46,54,52,49,57,57,56,44,51,48,46,49,54,54,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,89,117,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,52,57,51,44,34,98,101,100,115,34,58,50,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,54,50,51,55,54,44,51,57,46,50,57,53,54,50,49,93,44,91,45,49,50,49,46,54,50,57,48,56,57,44,51,57,46,50,48,52,54,55,56,93,44,91,45,49,50,49,46,53,52,51,51,48,54,44,51,56,46,57,55,50,52,48,52,93,44,91,45,49,50,49,46,52,49,52,55,55,57,44,51,56,46,57,57,54,52,53,50,93,44,91,45,49,50,49,46,50,55,57,53,51,51,44,51,57,46,48,51,52,54,49,56,93,44,91,45,49,50,49,46,50,54,54,57,49,49,44,51,57,46,50,55,49,54,48,57,93,44,91,45,49,50,49,46,49,50,50,51,49,53,44,51,57,46,51,55,56,56,50,54,93,44,91,45,49,50,49,46,48,50,50,48,56,53,44,51,57,46,51,57,49,53,53,56,93,44,91,45,49,50,49,46,48,48,57,52,55,55,44,51,57,46,54,51,57,52,53,57,93,44,91,45,49,50,49,46,48,55,54,54,57,53,44,51,57,46,53,57,55,50,54,52,93,44,91,45,49,50,49,46,49,52,57,57,48,55,44,51,57,46,53,50,54,52,52,54,93,44,91,45,49,50,49,46,51,48,53,49,50,50,44,51,57,46,53,49,57,53,56,53,93,44,91,45,49,50,49,46,52,48,55,53,50,55,44,51,57,46,51,51,57,55,53,52,93,44,91,45,49,50,49,46,54,50,51,55,54,44,51,57,46,50,57,53,54,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,50,54,49,44,34,98,101,100,115,34,58,50,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,50,54,56,52,54,44,51,51,46,50,52,54,52,53,57,93,44,91,45,56,55,46,48,50,53,53,57,54,44,51,51,46,49,54,53,55,57,53,93,44,91,45,56,54,46,56,56,49,49,56,50,44,51,51,46,48,52,57,57,48,49,93,44,91,45,56,54,46,54,49,48,48,48,51,44,51,51,46,48,55,48,48,48,51,93,44,91,45,56,54,46,53,49,55,51,52,52,44,51,51,46,48,50,48,53,54,54,93,44,91,45,56,54,46,52,57,49,48,50,57,44,51,51,46,49,48,50,57,52,52,93,44,91,45,56,54,46,53,48,51,49,50,55,44,51,51,46,49,55,57,49,52,52,93,44,91,45,56,54,46,51,53,55,51,52,44,51,51,46,50,57,54,57,49,55,93,44,91,45,56,54,46,51,55,56,54,54,53,44,51,51,46,51,57,48,57,56,51,93,44,91,45,56,54,46,51,55,56,50,50,50,44,51,51,46,53,48,50,52,49,49,93,44,91,45,56,54,46,53,49,54,55,56,51,44,51,51,46,53,52,53,56,57,54,93,44,91,45,56,54,46,54,55,52,52,49,56,44,51,51,46,52,54,54,53,50,49,93,44,91,45,56,55,46,48,50,54,56,52,54,44,51,51,46,50,52,54,52,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,79,117,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,54,51,53,48,52,44,51,56,46,51,48,49,56,57,54,93,44,91,45,49,48,55,46,54,51,53,54,57,55,44,51,56,46,51,51,50,49,52,56,93,44,91,45,49,48,56,46,49,51,50,51,56,44,51,56,46,51,51,49,53,55,51,93,44,91,45,49,48,56,46,48,56,54,54,48,52,44,51,56,46,50,53,53,50,48,50,93,44,91,45,49,48,55,46,57,51,55,53,56,56,44,51,56,46,50,49,56,57,57,50,93,44,91,45,49,48,55,46,57,54,53,55,56,57,44,51,56,46,49,53,50,51,50,56,93,44,91,45,49,48,55,46,57,48,48,49,57,51,44,51,56,46,48,50,54,50,52,57,93,44,91,45,49,48,55,46,55,57,53,52,54,57,44,51,55,46,57,56,56,53,50,93,44,91,45,49,48,55,46,55,51,56,50,56,51,44,51,55,46,57,48,53,52,51,50,93,44,91,45,49,48,55,46,53,54,56,56,55,53,44,51,55,46,57,54,53,48,49,53,93,44,91,45,49,48,55,46,53,49,54,56,51,44,51,56,46,48,54,57,55,52,49,93,44,91,45,49,48,55,46,53,54,56,54,50,44,51,56,46,49,52,55,50,54,55,93,44,91,45,49,48,55,46,54,51,53,48,52,44,51,56,46,51,48,49,56,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,117,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,49,57,57,44,34,98,101,100,115,34,58,49,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,52,50,55,48,49,44,51,52,46,57,53,52,49,52,50,93,44,91,45,49,48,51,46,50,56,52,49,52,57,44,51,52,46,57,53,52,49,55,50,93,44,91,45,49,48,51,46,50,56,52,51,49,55,44,51,52,46,56,54,52,57,57,93,44,91,45,49,48,51,46,52,57,53,54,53,51,44,51,52,46,54,57,49,51,57,51,93,44,91,45,49,48,51,46,55,48,53,55,56,56,44,51,52,46,54,57,50,52,52,54,93,44,91,45,49,48,51,46,55,51,56,49,54,54,44,51,52,46,54,48,52,54,55,93,44,91,45,49,48,51,46,55,52,48,48,54,54,44,51,52,46,51,48,51,48,53,54,93,44,91,45,49,48,51,46,48,52,51,55,54,55,44,51,52,46,51,48,50,54,52,56,93,44,91,45,49,48,51,46,48,52,51,55,54,50,44,51,52,46,51,49,50,55,53,93,44,91,45,49,48,51,46,48,52,50,57,56,50,44,51,52,46,55,52,55,51,54,49,93,44,91,45,49,48,51,46,48,52,50,55,48,49,44,51,52,46,57,53,52,49,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,51,50,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,54,52,50,49,55,44,51,53,46,52,54,53,51,50,56,93,44,91,45,57,57,46,51,54,48,50,50,54,44,51,53,46,49,49,54,55,51,56,93,44,91,45,57,56,46,55,52,57,49,53,56,44,51,53,46,49,49,54,51,52,54,93,44,91,45,57,56,46,54,50,48,54,57,50,44,51,53,46,48,57,55,55,54,53,93,44,91,45,57,56,46,54,50,51,51,51,54,44,51,53,46,52,54,52,50,50,53,93,44,91,45,57,57,46,51,54,52,50,49,55,44,51,53,46,52,54,53,51,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,57,51,56,44,34,98,101,100,115,34,58,57,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,53,55,57,53,50,44,51,54,46,50,52,51,52,52,53,93,44,91,45,55,57,46,50,52,57,53,51,56,44,51,53,46,56,55,54,56,49,93,44,91,45,55,57,46,48,49,54,51,48,53,44,51,53,46,56,54,51,50,49,93,44,91,45,55,56,46,57,53,48,53,57,55,44,51,54,46,50,51,57,51,50,93,44,91,45,55,57,46,49,53,51,57,57,55,44,51,54,46,50,52,49,56,55,53,93,44,91,45,55,57,46,50,53,55,57,53,50,44,51,54,46,50,52,51,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,51,48,49,55,44,52,49,46,49,55,50,51,49,56,93,44,91,45,56,54,46,57,51,48,55,53,57,44,52,48,46,57,49,50,52,49,56,93,44,91,45,56,54,46,53,56,49,53,51,50,44,52,48,46,57,49,48,57,50,53,93,44,91,45,56,54,46,52,54,56,53,48,57,44,52,48,46,57,48,57,56,56,57,93,44,91,45,56,54,46,52,54,55,48,52,54,44,52,49,46,49,55,49,52,52,50,93,44,91,45,56,54,46,57,51,48,49,55,44,52,49,46,49,55,50,51,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,101,110,122,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,53,50,44,34,98,101,100,115,34,58,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,56,52,54,57,50,56,44,52,52,46,53,49,57,52,50,57,93,44,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,44,91,45,56,53,46,56,49,53,49,49,57,44,52,52,46,55,55,52,53,51,52,93,44,91,45,56,54,46,55,51,52,53,50,57,44,52,52,46,55,55,51,48,55,52,93,44,91,45,56,54,46,55,55,56,51,57,56,44,52,52,46,54,55,53,50,49,57,93,44,91,45,56,54,46,56,52,54,57,50,56,44,52,52,46,53,49,57,52,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,69,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,57,56,54,54,44,34,98,101,100,115,34,58,50,54,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,49,57,50,50,56,44,52,51,46,48,54,55,57,53,56,93,44,91,45,55,57,46,48,49,49,53,54,51,44,52,50,46,57,56,53,50,53,54,93,44,91,45,55,56,46,57,48,53,54,53,57,44,52,50,46,57,50,51,51,53,55,93,44,91,45,55,56,46,57,57,57,55,54,44,52,50,46,56,48,52,51,54,56,93,44,91,45,55,57,46,51,49,50,49,51,54,44,52,50,46,54,56,54,56,48,53,93,44,91,45,55,57,46,48,54,48,55,55,55,44,52,50,46,53,51,55,56,53,51,93,44,91,45,55,56,46,56,57,53,57,57,57,44,52,50,46,52,52,48,56,48,55,93,44,91,45,55,56,46,52,54,51,57,52,44,52,50,46,53,51,54,51,51,50,93,44,91,45,55,56,46,52,54,52,51,56,49,44,52,50,46,56,54,55,52,54,49,93,44,91,45,55,56,46,52,54,52,52,52,57,44,52,51,46,48,56,56,55,48,51,93,44,91,45,55,56,46,56,48,50,48,53,49,44,52,51,46,48,54,53,55,56,49,93,44,91,45,55,56,46,56,51,57,51,53,44,52,51,46,48,49,57,52,53,51,93,44,91,45,55,57,46,48,49,57,50,50,56,44,52,51,46,48,54,55,57,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,48,49,51,51,44,34,98,101,100,115,34,58,50,48,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,54,56,56,48,49,44,51,57,46,51,53,51,53,48,50,93,44,91,45,55,55,46,52,53,56,56,48,56,44,51,57,46,50,50,48,50,55,93,44,91,45,55,55,46,53,50,55,51,50,50,44,51,57,46,49,52,54,57,54,49,93,44,91,45,55,55,46,52,54,48,54,48,50,44,51,57,46,48,55,52,56,52,51,93,44,91,45,55,55,46,51,50,56,51,49,56,44,51,57,46,48,53,55,54,55,56,93,44,91,45,55,55,46,49,49,57,55,57,50,44,51,56,46,57,51,52,51,55,52,93,44,91,45,55,55,46,49,49,57,55,53,57,44,51,56,46,57,51,52,51,52,51,93,44,91,45,55,55,46,48,48,50,52,51,54,44,51,56,46,57,54,53,54,55,51,93,44,91,45,55,54,46,56,56,56,53,48,53,44,51,57,46,49,51,48,57,54,55,93,44,91,45,55,54,46,57,52,56,53,55,57,44,51,57,46,49,50,57,53,57,55,93,44,91,45,55,55,46,49,54,56,56,48,49,44,51,57,46,51,53,51,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,56,53,34,44,34,78,65,77,69,34,58,34,77,97,110,97,115,115,97,115,32,80,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,53,56,54,57,53,44,51,56,46,55,55,50,51,49,57,93,44,91,45,55,55,46,52,50,55,51,51,50,44,51,56,46,55,53,51,53,57,56,93,44,91,45,55,55,46,52,50,48,53,56,49,44,51,56,46,55,54,50,50,56,55,93,44,91,45,55,55,46,52,55,53,55,54,44,51,56,46,55,56,49,49,55,49,93,44,91,45,55,55,46,52,53,56,54,57,53,44,51,56,46,55,55,50,51,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,65,114,108,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,56,48,51,44,34,98,101,100,115,34,58,51,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,55,50,50,55,54,44,51,56,46,56,57,51,50,52,53,93,44,91,45,55,55,46,49,52,57,55,48,49,44,51,56,46,56,55,53,54,55,93,44,91,45,55,55,46,49,49,48,55,57,57,44,51,56,46,56,52,51,52,52,54,93,44,91,45,55,55,46,48,52,56,48,50,44,51,56,46,56,52,49,50,54,49,93,44,91,45,55,55,46,49,49,57,55,53,57,44,51,56,46,57,51,52,51,52,51,93,44,91,45,55,55,46,49,49,57,55,57,50,44,51,56,46,57,51,52,51,55,52,93,44,91,45,55,55,46,49,55,50,50,55,54,44,51,56,46,56,57,51,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,55,51,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,52,48,52,56,51,44,51,54,46,56,55,57,48,48,49,93,44,91,45,56,49,46,48,52,50,52,50,56,44,51,54,46,56,48,54,52,52,56,93,44,91,45,56,48,46,57,51,50,50,55,49,44,51,54,46,54,55,49,53,57,51,93,44,91,45,56,48,46,57,49,54,49,54,54,44,51,54,46,54,57,52,54,52,93,44,91,45,56,48,46,56,55,55,50,55,52,44,51,54,46,54,57,50,50,49,53,93,44,91,45,56,48,46,57,49,52,49,55,51,44,51,54,46,54,53,48,50,52,54,93,44,91,45,56,48,46,56,51,55,57,53,52,44,51,54,46,53,53,57,49,52,51,93,44,91,45,56,48,46,54,49,50,48,53,55,44,51,54,46,53,53,55,56,57,56,93,44,91,45,56,48,46,52,54,52,49,56,44,51,54,46,55,48,56,55,49,56,93,44,91,45,56,48,46,54,51,51,57,56,55,44,51,54,46,57,51,49,55,56,93,44,91,45,56,48,46,55,52,48,52,56,51,44,51,54,46,56,55,57,48,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,104,97,114,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,57,57,56,53,44,34,98,101,100,115,34,58,57,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,53,56,53,51,54,44,51,56,46,56,55,48,56,54,53,93,44,91,45,57,48,46,57,54,52,52,54,49,44,51,56,46,53,52,55,53,52,53,93,44,91,45,57,48,46,57,49,54,53,53,52,44,51,56,46,53,51,52,55,50,53,93,44,91,45,57,48,46,55,51,50,51,50,56,44,51,56,46,54,51,57,51,48,50,93,44,91,45,57,48,46,53,52,49,54,49,50,44,51,56,46,54,56,53,50,54,55,93,44,91,45,57,48,46,52,52,48,54,49,55,44,51,56,46,56,50,55,54,53,93,44,91,45,57,48,46,50,57,56,55,52,51,44,51,56,46,56,56,55,55,53,57,93,44,91,45,57,48,46,49,49,55,55,48,55,44,51,56,46,56,48,53,55,52,56,93,44,91,45,57,48,46,50,55,53,55,48,50,44,51,56,46,57,50,51,53,50,57,93,44,91,45,57,48,46,52,53,48,56,49,51,44,51,56,46,57,54,55,55,54,57,93,44,91,45,57,48,46,53,52,54,56,51,49,44,51,56,46,56,55,52,48,48,57,93,44,91,45,57,48,46,54,54,51,49,56,49,44,51,56,46,57,51,52,50,50,52,93,44,91,45,57,48,46,56,50,50,55,50,52,44,51,56,46,56,55,54,51,57,50,93,44,91,45,57,48,46,57,53,56,53,51,54,44,51,56,46,56,55,48,56,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,83,97,110,32,66,101,110,105,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,52,49,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,54,52,52,48,48,49,44,51,54,46,56,57,51,57,57,54,93,44,91,45,49,50,49,46,51,49,56,54,56,57,44,51,54,46,54,49,48,51,50,56,93,44,91,45,49,50,49,46,51,50,56,54,57,55,44,51,54,46,53,53,52,55,52,93,44,91,45,49,50,49,46,48,52,48,55,57,55,44,51,54,46,51,50,51,57,54,57,93,44,91,45,49,50,48,46,56,54,51,57,56,55,44,51,54,46,50,57,49,57,51,49,93,44,91,45,49,50,48,46,55,54,49,52,56,51,44,51,54,46,50,48,51,53,56,93,44,91,45,49,50,48,46,54,55,56,53,56,50,44,51,54,46,50,54,55,51,49,57,93,44,91,45,49,50,48,46,53,57,54,53,54,50,44,51,54,46,51,50,56,52,56,56,93,44,91,45,49,50,48,46,54,48,51,55,48,54,44,51,54,46,52,56,56,50,52,50,93,44,91,45,49,50,48,46,57,49,56,55,51,49,44,51,54,46,55,52,48,51,56,49,93,44,91,45,49,50,49,46,49,52,49,53,50,51,44,51,54,46,56,51,54,54,53,54,93,44,91,45,49,50,49,46,50,49,53,52,48,54,44,51,54,46,57,54,49,50,52,56,93,44,91,45,49,50,49,46,52,56,56,57,52,57,44,51,54,46,57,56,51,49,52,56,93,44,91,45,49,50,49,46,53,56,49,51,53,52,44,51,54,46,56,57,57,49,53,50,93,44,91,45,49,50,49,46,54,52,52,48,48,49,44,51,54,46,56,57,51,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,81,117,101,101,110,32,65,110,110,101,39,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,51,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,53,54,48,48,52,44,51,57,46,50,52,54,48,54,54,93,44,91,45,55,54,46,48,49,48,50,57,50,44,51,57,46,50,51,57,53,49,55,93,44,91,45,55,54,46,49,49,55,48,53,56,44,51,57,46,49,48,55,48,57,56,93,44,91,45,55,54,46,50,53,55,57,57,53,44,51,57,46,48,49,49,56,49,56,93,44,91,45,55,54,46,51,53,49,55,51,44,51,57,46,48,53,54,50,51,50,93,44,91,45,55,54,46,52,51,54,52,57,50,44,51,56,46,56,48,55,51,57,55,93,44,91,45,55,53,46,57,52,57,51,51,53,44,51,56,46,57,49,56,51,51,51,93,44,91,45,55,53,46,56,51,52,57,52,56,44,51,57,46,49,48,56,52,51,55,93,44,91,45,55,53,46,55,52,55,55,54,49,44,51,57,46,49,52,51,51,51,56,93,44,91,45,55,53,46,55,53,54,48,48,52,44,51,57,46,50,52,54,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,56,56,49,49,49,44,52,48,46,48,48,48,52,54,50,93,44,91,45,57,53,46,55,56,56,57,52,49,44,51,57,46,54,53,51,48,48,49,93,44,91,45,57,53,46,53,54,52,49,50,54,44,51,57,46,54,53,50,56,55,50,93,44,91,45,57,53,46,51,51,57,55,52,44,51,57,46,54,53,50,57,56,93,44,91,45,57,53,46,51,51,57,56,57,54,44,51,57,46,57,57,57,57,57,57,93,44,91,45,57,53,46,55,56,56,49,49,49,44,52,48,46,48,48,48,52,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,66,117,108,108,111,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,55,56,50,44,34,98,101,100,115,34,58,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,51,48,50,51,51,44,51,50,46,53,51,56,55,55,93,44,91,45,56,49,46,57,49,56,54,53,50,44,51,50,46,52,49,53,48,55,51,93,44,91,45,56,49,46,57,54,57,48,54,57,44,51,50,46,50,54,56,55,56,51,93,44,91,45,56,49,46,56,49,54,50,56,44,51,50,46,50,51,55,52,55,93,44,91,45,56,49,46,55,56,48,56,53,56,44,51,50,46,49,53,50,56,57,93,44,91,45,56,49,46,52,51,53,56,51,44,51,50,46,50,52,49,50,56,57,93,44,91,45,56,49,46,53,51,48,57,50,49,44,51,50,46,51,57,48,51,56,53,93,44,91,45,56,49,46,53,52,56,48,48,54,44,51,50,46,52,56,57,50,56,54,93,44,91,45,56,49,46,54,56,55,57,50,55,44,51,50,46,53,52,54,48,55,93,44,91,45,56,49,46,56,52,49,48,48,53,44,51,50,46,54,52,57,48,57,51,93,44,91,45,56,50,46,48,48,49,50,51,54,44,51,50,46,54,48,54,57,49,93,44,91,45,56,50,46,48,51,48,50,51,51,44,51,50,46,53,51,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,57,50,54,44,34,98,101,100,115,34,58,49,55,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,52,48,55,54,51,44,51,55,46,55,49,54,51,51,56,93,44,91,45,56,50,46,56,57,49,54,48,53,44,51,55,46,53,49,57,48,56,51,93,44,91,45,56,50,46,57,50,53,52,54,44,51,55,46,52,56,54,53,50,53,93,44,91,45,56,50,46,56,51,49,52,55,51,44,51,55,46,52,54,54,57,57,93,44,91,45,56,50,46,55,49,48,56,48,53,44,51,55,46,50,56,53,51,50,51,93,44,91,45,56,50,46,53,56,56,54,50,55,44,51,55,46,52,52,54,50,53,57,93,44,91,45,56,50,46,54,50,52,48,57,49,44,51,55,46,53,48,54,50,55,53,93,44,91,45,56,50,46,53,54,51,53,54,49,44,51,55,46,54,56,52,56,52,52,93,44,91,45,56,50,46,54,52,48,55,53,44,51,55,46,55,50,48,49,56,50,93,44,91,45,56,50,46,55,54,50,49,57,44,51,55,46,55,53,53,56,53,54,93,44,91,45,56,50,46,57,52,48,55,54,51,44,51,55,46,55,49,54,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,114,111,97,100,119,97,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,51,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,52,57,56,48,57,53,44,52,54,46,55,54,50,53,48,50,93,44,91,45,49,49,49,46,54,51,57,50,54,49,44,52,54,46,55,51,56,49,56,93,44,91,45,49,49,49,46,54,52,48,48,57,53,44,52,54,46,53,56,50,52,54,51,93,44,91,45,49,49,49,46,55,56,55,57,52,57,44,52,54,46,53,54,57,52,54,53,93,44,91,45,49,49,49,46,55,56,52,53,54,53,44,52,54,46,48,52,57,56,49,51,93,44,91,45,49,49,49,46,54,54,48,52,50,50,44,52,54,46,48,52,57,49,57,50,93,44,91,45,49,49,49,46,54,54,48,48,53,55,44,52,53,46,56,51,51,53,93,44,91,45,49,49,49,46,52,49,57,54,49,56,44,52,53,46,57,57,54,51,50,50,93,44,91,45,49,49,49,46,51,52,54,54,53,50,44,52,54,46,49,56,55,55,56,53,93,44,91,45,49,49,49,46,48,54,49,57,53,54,44,52,54,46,49,57,50,56,51,52,93,44,91,45,49,49,49,46,49,49,56,49,50,51,44,52,54,46,51,49,54,57,55,93,44,91,45,49,49,49,46,48,53,54,57,57,54,44,52,54,46,51,57,56,49,50,50,93,44,91,45,49,49,49,46,50,52,54,53,49,57,44,52,54,46,52,51,56,49,48,57,93,44,91,45,49,49,49,46,51,50,48,49,56,49,44,52,54,46,53,54,57,52,48,49,93,44,91,45,49,49,49,46,52,57,56,48,57,53,44,52,54,46,55,54,50,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,57,34,44,34,78,65,77,69,34,58,34,87,104,101,101,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,50,55,56,54,53,44,51,50,46,49,51,53,50,55,52,93,44,91,45,56,50,46,56,56,55,54,53,55,44,51,50,46,48,55,57,56,57,49,93,44,91,45,56,50,46,55,50,56,56,48,54,44,51,50,46,48,48,54,55,48,52,93,44,91,45,56,50,46,54,52,53,54,53,57,44,51,49,46,57,49,56,56,56,51,93,44,91,45,56,50,46,53,52,51,54,53,53,44,51,49,46,57,53,56,57,49,52,93,44,91,45,56,50,46,53,57,55,54,55,49,44,51,50,46,48,49,51,57,55,57,93,44,91,45,56,50,46,54,53,53,52,56,54,44,51,50,46,50,57,55,53,54,49,93,44,91,45,56,50,46,55,50,49,57,54,52,44,51,50,46,51,48,57,50,56,51,93,44,91,45,56,50,46,56,56,52,56,48,51,44,51,50,46,49,57,54,48,55,50,93,44,91,45,56,50,46,57,50,55,56,54,53,44,51,50,46,49,51,53,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,114,97,118,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,48,56,50,44,34,98,101,100,115,34,58,51,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,55,51,54,57,50,44,51,53,46,50,50,56,57,56,53,93,44,91,45,55,55,46,49,56,55,54,55,57,44,51,53,46,48,56,49,48,56,54,93,44,91,45,55,55,46,49,48,57,49,56,57,44,51,53,46,48,54,55,50,48,54,93,44,91,45,55,55,46,49,48,56,56,53,49,44,51,52,46,56,51,48,55,56,93,44,91,45,55,55,46,48,55,56,50,54,51,44,51,52,46,56,49,49,51,50,50,93,44,91,45,55,54,46,54,57,51,48,49,56,44,51,52,46,56,54,57,49,56,93,44,91,45,55,54,46,55,49,49,53,56,44,51,52,46,57,56,49,55,54,56,93,44,91,45,55,54,46,55,56,48,53,56,54,44,51,52,46,57,53,48,52,51,52,93,44,91,45,55,54,46,57,54,55,50,57,55,44,51,53,46,48,52,48,54,53,53,93,44,91,45,55,54,46,57,56,55,50,54,54,44,51,53,46,49,53,52,57,53,93,44,91,45,55,54,46,56,57,53,57,49,57,44,51,53,46,50,53,51,56,56,57,93,44,91,45,55,55,46,49,56,57,49,49,53,44,51,53,46,52,49,56,51,54,50,93,44,91,45,55,55,46,51,57,49,48,50,54,44,51,53,46,51,51,57,53,51,51,93,44,91,45,55,55,46,52,55,51,54,57,50,44,51,53,46,50,50,56,57,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,72,111,108,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,53,50,52,55,51,44,52,48,46,50,54,49,57,48,52,93,44,91,45,57,53,46,51,57,54,53,52,57,44,52,48,46,49,50,52,55,48,49,93,44,91,45,57,53,46,52,49,57,57,57,57,44,52,48,46,48,53,48,52,52,93,44,91,45,57,53,46,51,48,56,50,57,44,51,57,46,57,57,57,57,57,56,93,44,91,45,57,53,46,48,56,53,48,48,51,44,51,57,46,56,54,49,56,56,51,93,44,91,45,57,52,46,57,57,51,51,56,50,44,51,57,46,56,57,55,57,48,54,93,44,91,45,57,53,46,48,52,51,48,56,44,52,48,46,49,51,48,48,57,54,93,44,91,45,57,53,46,48,55,49,55,48,51,44,52,48,46,50,54,48,56,53,57,93,44,91,45,57,53,46,49,56,48,54,49,52,44,52,48,46,50,54,49,55,48,54,93,44,91,45,57,53,46,53,53,52,56,49,55,44,52,48,46,50,54,52,52,54,93,44,91,45,57,53,46,53,53,50,52,55,51,44,52,48,46,50,54,49,57,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,53,34,44,34,78,65,77,69,34,58,34,76,105,112,115,99,111,109,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,48,48,51,55,54,50,44,51,54,46,52,57,57,56,52,57,93,44,91,45,49,48,48,46,53,52,54,49,52,53,44,51,54,46,52,57,57,51,52,51,93,44,91,45,49,48,48,46,53,52,54,55,50,52,44,51,54,46,48,53,54,53,51,54,93,44,91,45,49,48,48,46,53,52,48,50,50,49,44,51,54,46,48,53,54,52,57,49,93,44,91,45,49,48,48,46,48,48,48,51,57,57,44,51,54,46,48,53,53,54,55,55,93,44,91,45,49,48,48,46,48,48,51,55,54,50,44,51,54,46,52,57,57,56,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,56,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,51,54,51,55,52,51,44,52,54,46,49,52,54,51,51,51,93,44,91,45,49,50,51,46,51,54,49,54,50,50,44,52,53,46,55,55,57,53,55,57,93,44,91,45,49,50,51,46,48,51,48,56,55,51,44,52,53,46,55,55,57,49,53,57,93,44,91,45,49,50,50,46,57,50,57,49,52,54,44,52,53,46,55,50,49,52,56,50,93,44,91,45,49,50,50,46,55,54,50,52,51,55,44,52,53,46,55,50,56,54,54,53,93,44,91,45,49,50,50,46,55,56,53,53,49,53,44,52,53,46,56,53,48,53,51,54,93,44,91,45,49,50,50,46,57,48,52,49,49,57,44,52,54,46,48,56,51,55,51,52,93,44,91,45,49,50,51,46,49,49,53,57,48,52,44,52,54,46,49,56,53,50,54,56,93,44,91,45,49,50,51,46,50,49,51,48,53,52,44,52,54,46,49,55,50,53,52,49,93,44,91,45,49,50,51,46,51,54,51,55,52,51,44,52,54,46,49,52,54,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,70,108,111,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,53,54,49,44,34,98,101,100,115,34,58,49,48,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,54,53,55,55,54,52,44,51,52,46,51,48,53,49,57,93,44,91,45,55,57,46,55,50,57,53,54,54,44,51,52,46,50,57,53,49,57,93,44,91,45,56,48,46,48,54,57,56,55,56,44,51,52,46,48,56,54,49,57,49,93,44,91,45,56,48,46,48,48,48,53,57,52,44,51,52,46,48,52,55,56,55,55,93,44,91,45,55,57,46,57,55,52,54,48,49,44,51,51,46,57,52,54,53,50,55,93,44,91,45,55,57,46,56,55,53,54,50,44,51,51,46,56,56,53,50,52,53,93,44,91,45,55,57,46,55,57,56,51,55,44,51,51,46,56,51,53,53,54,50,93,44,91,45,55,57,46,52,57,54,52,56,54,44,51,51,46,55,55,53,51,53,55,93,44,91,45,55,57,46,51,50,52,51,49,55,44,51,51,46,55,57,57,49,50,51,93,44,91,45,55,57,46,52,57,49,55,49,52,44,51,51,46,57,52,54,53,50,50,93,44,91,45,55,57,46,53,52,55,57,51,44,51,52,46,50,51,48,57,49,51,93,44,91,45,55,57,46,54,51,51,52,49,51,44,51,52,46,50,57,55,57,57,52,93,44,91,45,55,57,46,54,53,55,55,54,52,44,51,52,46,51,48,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,77,111,117,110,116,114,97,105,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,53,50,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,56,56,53,55,54,51,44,52,56,46,53,52,54,51,57,93,44,91,45,49,48,50,46,56,50,56,49,54,51,44,52,56,46,51,55,50,54,52,49,93,44,91,45,49,48,50,46,56,50,56,52,55,55,44,52,56,46,49,50,51,54,54,52,93,44,91,45,49,48,50,46,54,48,56,51,54,44,52,56,46,48,52,54,51,53,49,93,44,91,45,49,48,50,46,53,54,53,57,48,50,44,52,55,46,57,54,57,48,50,56,93,44,91,45,49,48,50,46,54,52,50,50,54,54,44,52,55,46,56,50,51,55,49,51,93,44,91,45,49,48,50,46,51,56,53,55,53,56,44,52,55,46,55,53,56,48,48,56,93,44,91,45,49,48,50,46,51,56,53,54,52,55,44,52,55,46,56,52,55,55,55,50,93,44,91,45,49,48,49,46,56,55,49,56,54,50,44,52,55,46,56,52,55,53,56,57,93,44,91,45,49,48,49,46,57,50,50,49,50,51,44,52,56,46,48,50,51,49,55,51,93,44,91,45,49,48,49,46,57,50,50,50,51,55,44,52,56,46,51,55,50,51,51,93,44,91,45,49,48,49,46,57,55,51,50,56,50,44,52,56,46,53,52,54,52,56,53,93,44,91,45,49,48,50,46,50,51,51,56,57,50,44,52,56,46,53,52,54,51,51,57,93,44,91,45,49,48,50,46,56,56,53,55,54,51,44,52,56,46,53,52,54,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,53,51,55,44,34,98,101,100,115,34,58,50,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,48,53,50,51,53,44,51,55,46,54,48,52,55,55,54,93,44,91,45,49,49,52,46,48,53,48,48,53,50,44,51,55,46,48,48,48,49,57,49,93,44,91,45,49,49,50,46,56,57,57,49,57,49,44,51,55,46,48,48,48,51,56,53,93,44,91,45,49,49,50,46,57,48,48,57,57,51,44,51,55,46,53,48,48,48,50,49,93,44,91,45,49,49,51,46,48,51,55,48,52,56,44,51,55,46,52,55,52,52,55,52,93,44,91,45,49,49,51,46,50,53,51,52,57,44,51,55,46,52,56,50,49,54,55,93,44,91,45,49,49,51,46,50,53,51,51,52,44,51,55,46,53,50,56,57,56,51,93,44,91,45,49,49,51,46,52,55,52,48,50,57,44,51,55,46,53,50,57,48,56,53,93,44,91,45,49,49,51,46,53,56,55,55,57,55,44,51,55,46,54,48,52,54,49,49,93,44,91,45,49,49,52,46,48,53,50,51,53,44,51,55,46,54,48,52,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,105,103,32,72,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,55,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,53,49,49,53,51,52,44,52,54,46,48,52,51,52,48,51,93,44,91,45,49,48,55,46,54,55,52,52,53,52,44,52,54,46,48,52,51,54,49,93,44,91,45,49,48,55,46,56,56,49,56,52,54,44,52,53,46,56,57,57,50,51,51,93,44,91,45,49,48,56,46,48,52,55,51,53,50,44,52,53,46,56,57,57,52,55,57,93,44,91,45,49,48,56,46,48,54,57,55,53,50,44,52,53,46,53,49,56,53,51,53,93,44,91,45,49,48,56,46,49,57,51,50,48,53,44,52,53,46,53,49,56,53,51,56,93,44,91,45,49,48,56,46,51,49,54,51,55,52,44,52,53,46,52,54,48,53,48,57,93,44,91,45,49,48,56,46,54,52,53,51,50,53,44,52,53,46,52,54,52,48,55,51,93,44,91,45,49,48,56,46,54,56,50,50,50,51,44,52,53,46,52,51,51,49,51,50,93,44,91,45,49,48,56,46,54,57,57,54,49,54,44,52,53,46,50,49,55,55,48,57,93,44,91,45,49,48,56,46,49,50,50,49,56,52,44,52,53,46,50,49,54,51,49,55,93,44,91,45,49,48,56,46,50,52,57,52,49,50,44,52,52,46,57,57,57,57,48,52,93,44,91,45,49,48,55,46,57,49,49,53,50,51,44,52,53,46,48,48,48,54,55,56,93,44,91,45,49,48,55,46,48,56,52,56,56,54,44,52,52,46,57,57,54,54,93,44,91,45,49,48,54,46,50,54,51,55,49,53,44,52,52,46,57,57,51,56,49,54,93,44,91,45,49,48,54,46,50,55,57,55,48,57,44,52,53,46,49,55,57,55,50,56,93,44,91,45,49,48,54,46,55,54,56,48,49,52,44,52,53,46,49,55,57,55,50,56,93,44,91,45,49,48,54,46,55,50,57,53,52,51,44,52,53,46,51,53,49,52,56,93,44,91,45,49,48,54,46,55,50,57,53,55,49,44,52,53,46,54,55,50,56,53,93,44,91,45,49,48,54,46,57,49,50,57,53,57,44,52,53,46,54,56,51,57,49,53,93,44,91,45,49,48,54,46,57,51,57,48,57,53,44,52,53,46,56,55,48,48,52,49,93,44,91,45,49,48,55,46,49,55,54,51,53,56,44,52,53,46,57,53,54,55,54,49,93,44,91,45,49,48,55,46,52,50,53,49,50,56,44,52,53,46,57,53,54,54,55,52,93,44,91,45,49,48,55,46,53,49,49,53,51,52,44,52,54,46,48,52,51,52,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,69,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,54,48,56,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,53,54,48,52,50,44,52,49,46,54,50,51,52,48,50,93,44,91,45,55,56,46,57,55,54,54,53,56,44,52,49,46,52,53,49,55,54,49,93,44,91,45,55,57,46,48,57,51,53,56,56,44,52,49,46,52,50,51,50,56,54,93,44,91,45,55,57,46,48,57,53,48,57,54,44,52,49,46,51,52,48,54,53,56,93,44,91,45,55,56,46,57,53,57,49,53,55,44,52,49,46,51,54,50,49,54,49,93,44,91,45,55,56,46,55,51,53,50,56,44,52,49,46,50,54,50,57,49,53,93,44,91,45,55,56,46,55,49,48,50,52,56,44,52,49,46,50,48,49,56,53,57,93,44,91,45,55,56,46,54,52,54,54,54,54,44,52,49,46,50,53,51,55,55,56,93,44,91,45,55,56,46,50,51,54,56,49,55,44,52,49,46,50,51,48,52,55,53,93,44,91,45,55,56,46,50,53,51,57,53,57,44,52,49,46,52,48,52,55,50,49,93,44,91,45,55,56,46,52,50,48,48,50,56,44,52,49,46,52,48,53,48,52,54,93,44,91,45,55,56,46,52,49,57,49,49,56,44,52,49,46,54,48,50,49,56,56,93,44,91,45,55,56,46,52,56,51,52,48,57,44,52,49,46,54,50,57,56,57,56,93,44,91,45,55,56,46,57,53,54,48,53,54,44,52,49,46,54,50,51,56,54,51,93,44,91,45,55,56,46,57,53,54,48,52,50,44,52,49,46,54,50,51,52,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,83,105,111,117,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,50,56,51,56,44,52,50,46,54,49,49,55,54,55,93,44,91,45,49,48,52,46,48,53,50,54,52,53,44,52,50,46,48,48,49,55,49,56,93,44,91,45,49,48,51,46,52,48,49,54,51,57,44,52,50,46,48,48,51,53,52,93,44,91,45,49,48,51,46,52,52,52,49,48,56,44,52,50,46,48,57,48,55,48,56,93,44,91,45,49,48,51,46,52,52,52,53,51,50,44,52,50,46,52,51,55,51,53,52,93,44,91,45,49,48,51,46,52,56,48,48,56,50,44,52,50,46,52,51,55,50,54,55,93,44,91,45,49,48,51,46,52,56,48,52,48,51,44,52,50,46,55,56,52,57,54,54,93,44,91,45,49,48,51,46,53,48,53,49,44,52,51,46,48,48,48,55,55,93,44,91,45,49,48,52,46,48,53,51,48,50,56,44,52,51,46,48,48,48,53,56,53,93,44,91,45,49,48,52,46,48,53,50,56,51,56,44,52,50,46,54,49,49,55,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,118,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,57,49,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,48,49,50,50,55,44,51,49,46,55,57,54,56,54,51,93,44,91,45,56,57,46,54,53,51,48,50,53,44,51,49,46,55,56,48,54,53,51,93,44,91,45,56,57,46,55,53,53,49,48,51,44,51,49,46,55,55,52,54,53,52,93,44,91,45,56,57,46,55,53,53,54,49,52,44,51,49,46,54,48,57,55,53,49,93,44,91,45,56,57,46,54,48,50,56,56,57,44,51,49,46,53,51,56,56,51,54,93,44,91,45,56,57,46,53,56,54,56,49,57,44,51,49,46,52,51,51,54,56,56,93,44,91,45,56,57,46,52,53,49,54,49,54,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,51,57,57,49,55,56,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,52,48,49,50,50,55,44,51,49,46,55,57,54,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,111,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,55,50,44,34,98,101,100,115,34,58,49,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,48,53,54,53,48,55,44,49,56,46,52,54,48,57,53,52,93,44,91,45,54,55,46,49,51,50,50,49,44,49,56,46,51,56,57,51,57,49,93,44,91,45,54,55,46,49,51,48,49,54,55,44,49,56,46,51,49,55,57,50,55,93,44,91,45,54,55,46,48,53,50,53,56,51,44,49,56,46,51,48,54,54,53,53,93,44,91,45,54,55,46,48,50,55,49,55,51,44,49,56,46,51,57,51,51,55,54,93,44,91,45,54,55,46,48,53,54,53,48,55,44,49,56,46,52,54,48,57,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,51,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,56,49,51,57,53,44,51,57,46,51,51,57,55,53,50,93,44,91,45,56,54,46,51,55,48,48,54,54,44,51,57,46,48,52,56,51,55,53,93,44,91,45,56,54,46,51,49,56,49,51,51,44,51,57,46,48,52,56,56,49,93,44,91,45,56,54,46,48,56,48,50,55,50,44,51,57,46,48,53,48,50,55,93,44,91,45,56,54,46,48,56,53,54,48,49,44,51,57,46,51,52,52,49,56,57,93,44,91,45,56,54,46,50,53,49,54,56,52,44,51,57,46,51,52,49,54,55,50,93,44,91,45,56,54,46,51,56,49,51,57,53,44,51,57,46,51,51,57,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,55,48,50,44,34,98,101,100,115,34,58,50,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,52,55,56,57,51,44,51,56,46,53,54,49,50,54,57,93,44,91,45,56,53,46,57,57,51,51,49,55,44,51,56,46,52,56,56,53,52,93,44,91,45,56,53,46,57,57,52,54,50,44,51,56,46,52,49,56,51,52,53,93,44,91,45,56,53,46,56,48,55,55,48,52,44,51,56,46,52,48,52,52,52,51,93,44,91,45,56,53,46,55,57,50,51,49,54,44,51,56,46,50,56,55,52,51,51,93,44,91,45,56,53,46,54,51,55,56,54,49,44,51,56,46,51,56,48,50,54,51,93,44,91,45,56,53,46,53,56,54,48,51,51,44,51,56,46,52,53,48,48,57,50,93,44,91,45,56,53,46,52,51,51,49,56,57,44,51,56,46,53,50,52,51,55,53,93,44,91,45,56,53,46,52,50,56,50,56,51,44,51,56,46,53,56,54,51,50,53,93,44,91,45,56,53,46,53,54,57,57,56,44,51,56,46,54,48,54,49,53,53,93,44,91,45,56,53,46,55,57,51,53,56,52,44,51,56,46,54,48,52,56,49,52,93,44,91,45,56,53,46,56,52,55,56,57,51,44,51,56,46,53,54,49,50,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,111,121,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,57,49,51,44,34,98,101,100,115,34,58,49,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,52,52,56,56,56,44,51,55,46,55,49,51,48,55,53,93,44,91,45,56,53,46,48,50,53,48,50,49,44,51,55,46,54,55,56,56,53,52,93,44,91,45,56,53,46,48,51,48,49,55,50,44,51,55,46,54,51,49,50,55,93,44,91,45,56,53,46,48,51,57,54,55,52,44,51,55,46,53,52,53,50,51,50,93,44,91,45,56,52,46,56,52,55,52,51,52,44,51,55,46,53,52,56,51,52,51,93,44,91,45,56,52,46,54,53,56,50,57,54,44,51,55,46,54,51,52,53,48,49,93,44,91,45,56,52,46,55,52,52,56,56,56,44,51,55,46,55,49,51,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,69,115,116,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,56,48,51,51,55,44,51,55,46,56,53,51,48,54,54,93,44,91,45,56,52,46,49,50,54,57,52,56,44,51,55,46,54,52,50,52,50,49,93,44,91,45,56,52,46,48,57,48,51,54,52,44,51,55,46,53,54,54,50,50,55,93,44,91,45,56,51,46,57,48,53,53,55,44,51,55,46,53,52,50,56,53,54,93,44,91,45,56,51,46,56,50,51,48,51,44,51,55,46,54,53,57,56,55,50,93,44,91,45,56,51,46,55,50,50,49,44,51,55,46,55,49,54,52,50,93,44,91,45,56,51,46,57,48,54,50,53,49,44,51,55,46,55,53,57,51,54,51,93,44,91,45,56,52,46,48,48,49,57,54,55,44,51,55,46,56,51,55,53,57,50,93,44,91,45,56,52,46,48,56,48,51,51,55,44,51,55,46,56,53,51,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,67,111,108,108,105,110,103,115,119,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,57,54,44,34,98,101,100,115,34,58,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,51,56,57,55,56,44,51,53,46,49,56,51,49,52,52,93,44,91,45,49,48,48,46,53,52,48,55,48,51,44,51,52,46,55,52,55,55,50,51,93,44,91,45,49,48,48,46,52,49,53,56,57,53,44,51,52,46,55,52,55,53,50,53,93,44,91,45,49,48,48,46,48,48,48,51,56,49,44,51,52,46,55,52,54,51,53,56,93,44,91,45,49,48,48,46,48,48,48,51,56,52,44,51,53,46,48,50,57,57,51,93,44,91,45,49,48,48,46,48,48,48,51,56,53,44,51,53,46,49,56,50,55,48,50,93,44,91,45,49,48,48,46,53,51,56,57,55,56,44,51,53,46,49,56,51,49,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,48,50,50,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,55,52,50,50,50,44,50,57,46,54,51,50,55,48,54,93,44,91,45,57,54,46,55,57,51,49,51,50,44,50,57,46,53,55,55,51,55,56,93,44,91,45,57,54,46,53,54,48,53,53,53,44,50,57,46,51,51,53,52,51,57,93,44,91,45,57,54,46,54,53,56,52,54,54,44,50,57,46,50,54,51,56,55,54,93,44,91,45,57,54,46,54,52,48,51,49,53,44,50,57,46,50,52,55,56,48,52,93,44,91,45,57,54,46,51,52,57,50,49,55,44,50,57,46,52,48,54,48,53,50,93,44,91,45,57,54,46,51,48,55,54,55,50,44,50,57,46,53,49,52,53,50,51,93,44,91,45,57,54,46,49,55,53,52,50,50,44,50,57,46,54,51,51,56,48,54,93,44,91,45,57,54,46,50,53,54,54,57,54,44,50,57,46,54,54,55,48,54,49,93,44,91,45,57,54,46,51,51,48,56,54,57,44,50,57,46,56,49,52,52,52,57,93,44,91,45,57,54,46,52,49,51,50,56,51,44,50,57,46,56,50,52,57,56,53,93,44,91,45,57,54,46,53,54,57,56,52,52,44,50,57,46,57,54,49,53,49,54,93,44,91,45,57,54,46,56,55,52,50,50,50,44,50,57,46,54,51,50,55,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,71,114,117,110,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,53,48,57,44,34,98,101,100,115,34,58,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,53,50,50,51,49,44,52,49,46,52,54,51,48,54,54,93,44,91,45,56,56,46,53,57,53,57,54,49,44,52,49,46,52,53,55,49,50,57,93,44,91,45,56,56,46,53,56,54,50,52,44,52,49,46,49,48,56,50,57,51,93,44,91,45,56,56,46,50,53,49,53,48,49,44,52,49,46,49,49,52,50,49,56,93,44,91,45,56,56,46,50,52,52,49,52,52,44,52,49,46,50,48,49,53,54,54,93,44,91,45,56,56,46,50,53,50,50,51,49,44,52,49,46,52,54,51,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,48,55,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,53,49,56,50,44,52,52,46,53,52,51,54,53,50,93,44,91,45,57,54,46,52,53,50,55,55,51,44,52,52,46,49,57,54,55,56,93,44,91,45,57,54,46,48,55,56,53,56,44,52,52,46,49,57,54,54,50,93,44,91,45,57,54,46,48,57,50,57,53,44,52,52,46,54,51,48,52,56,54,93,44,91,45,57,54,46,52,53,49,53,54,54,44,52,52,46,54,51,49,51,52,57,93,44,91,45,57,54,46,52,53,49,56,50,44,52,52,46,53,52,51,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,69,118,97,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,50,55,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,50,53,51,51,57,44,51,50,46,50,55,56,56,56,51,93,44,91,45,56,49,46,57,56,48,48,52,49,44,51,50,46,48,56,49,53,48,50,93,44,91,45,56,49,46,55,54,49,55,51,53,44,51,50,46,48,52,55,57,93,44,91,45,56,49,46,55,49,56,54,53,56,44,51,50,46,48,56,57,51,53,49,93,44,91,45,56,49,46,55,56,48,56,53,56,44,51,50,46,49,53,50,56,57,93,44,91,45,56,49,46,56,49,54,50,56,44,51,50,46,50,51,55,52,55,93,44,91,45,56,49,46,57,54,57,48,54,57,44,51,50,46,50,54,56,55,56,51,93,44,91,45,56,50,46,48,50,53,51,51,57,44,51,50,46,50,55,56,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,57,55,34,44,34,78,65,77,69,34,58,34,87,105,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,54,51,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,56,55,48,54,53,44,51,51,46,52,51,51,54,56,49,93,44,91,45,57,55,46,57,49,56,49,56,57,44,51,51,46,52,51,51,56,55,51,93,44,91,45,57,55,46,57,50,49,54,52,50,44,51,51,46,48,48,49,50,56,52,93,44,91,45,57,55,46,53,52,52,49,56,49,44,51,50,46,57,57,52,49,55,55,93,44,91,45,57,55,46,51,57,56,52,56,44,51,50,46,57,57,48,56,51,57,93,44,91,45,57,55,46,51,56,51,48,57,53,44,51,51,46,52,51,48,52,53,93,44,91,45,57,55,46,52,56,55,48,54,53,44,51,51,46,52,51,51,54,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,53,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,48,34,44,34,78,65,77,69,34,58,34,66,101,116,104,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,52,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,54,48,46,53,51,52,54,55,49,44,54,49,46,57,52,53,57,52,93,44,91,45,49,54,48,46,51,53,48,49,52,44,54,49,46,56,49,57,48,55,49,93,44,91,45,49,54,48,46,55,55,53,50,52,52,44,54,49,46,55,51,56,53,50,55,93,44,91,45,49,54,49,46,49,50,54,56,49,50,44,54,49,46,53,57,57,53,52,93,44,91,45,49,54,49,46,52,52,57,54,49,49,44,54,49,46,53,54,56,56,51,56,93,44,91,45,49,54,50,46,48,49,51,52,51,56,44,54,49,46,52,55,55,48,53,55,93,44,91,45,49,54,50,46,53,48,53,55,54,49,44,54,49,46,53,53,54,52,50,54,93,44,91,45,49,54,51,46,49,55,49,51,53,52,44,54,49,46,52,52,57,48,55,49,93,44,91,45,49,54,51,46,52,50,56,56,54,54,44,54,49,46,52,54,50,50,56,93,44,91,45,49,54,51,46,54,53,53,51,57,44,54,49,46,51,51,53,56,50,55,93,44,91,45,49,54,51,46,57,56,53,49,51,56,44,54,49,46,51,55,50,48,48,51,93,44,91,45,49,54,51,46,57,50,48,56,55,52,44,54,49,46,50,49,48,54,57,50,93,44,91,45,49,54,52,46,50,49,49,55,56,49,44,54,49,46,48,56,50,50,54,50,93,44,91,45,49,54,52,46,50,51,57,55,50,55,44,54,48,46,57,56,55,49,49,57,93,44,91,45,49,54,52,46,53,50,57,57,49,49,44,54,48,46,57,52,48,55,57,54,93,44,91,45,49,54,52,46,54,49,54,53,56,53,44,54,48,46,57,55,57,48,52,57,93,44,91,45,49,54,53,46,48,48,48,53,49,52,44,54,48,46,57,54,51,54,51,53,93,44,91,45,49,54,53,46,50,53,52,49,54,50,44,54,48,46,57,49,55,49,48,56,93,44,91,45,49,54,53,46,49,50,51,51,54,57,44,54,48,46,55,51,54,54,50,55,93,44,91,45,49,54,53,46,53,49,56,50,54,51,44,54,48,46,53,54,54,48,49,54,93,44,91,45,49,54,53,46,52,50,54,53,51,44,54,48,46,52,55,52,51,56,51,93,44,91,45,49,54,53,46,50,51,53,52,49,49,44,54,48,46,52,50,53,49,53,93,44,91,45,49,54,52,46,57,55,49,57,49,54,44,54,48,46,50,55,55,48,49,57,93,44,91,45,49,54,52,46,55,52,56,56,49,44,54,48,46,50,52,48,51,49,51,93,44,91,45,49,54,52,46,51,54,52,51,51,50,44,53,57,46,57,57,57,50,50,51,93,44,91,45,49,54,52,46,52,49,53,54,57,54,44,53,57,46,56,56,52,56,54,55,93,44,91,45,49,54,52,46,48,49,51,51,44,53,57,46,54,51,55,55,53,57,93,44,91,45,49,54,51,46,55,54,48,57,54,49,44,53,57,46,54,51,57,55,49,54,93,44,91,45,49,54,51,46,55,56,52,51,55,51,44,53,57,46,55,52,48,53,54,57,93,44,91,45,49,54,51,46,49,52,53,56,54,51,44,53,57,46,55,57,53,54,52,50,93,44,91,45,49,54,50,46,56,54,56,54,54,49,44,53,57,46,55,56,48,51,56,49,93,44,91,45,49,54,50,46,55,48,55,53,53,57,44,53,57,46,56,56,48,49,55,53,93,44,91,45,49,54,50,46,52,52,57,56,52,56,44,53,57,46,56,56,52,54,49,54,93,44,91,45,49,54,50,46,51,54,52,51,52,49,44,53,57,46,56,49,48,56,54,57,93,44,91,45,49,54,50,46,49,55,56,51,50,57,44,53,57,46,56,49,52,56,52,50,93,44,91,45,49,54,49,46,56,55,49,50,54,54,44,53,57,46,53,50,52,55,57,49,93,44,91,45,49,54,50,46,48,53,51,54,49,50,44,53,57,46,52,48,56,57,57,93,44,91,45,49,54,50,46,49,54,54,54,48,52,44,53,57,46,50,55,53,48,55,53,93,44,91,45,49,54,50,46,49,48,50,49,57,56,44,53,57,46,49,50,56,55,53,50,93,44,91,45,49,54,49,46,56,56,49,55,54,53,44,53,56,46,57,52,52,49,52,54,93,44,91,45,49,54,49,46,56,53,49,50,48,49,44,53,56,46,56,48,55,57,56,51,93,44,91,45,49,54,49,46,57,54,51,48,50,56,44,53,56,46,55,50,54,50,51,51,93,44,91,45,49,54,50,46,49,54,56,53,50,50,44,53,56,46,55,49,48,50,55,54,93,44,91,45,49,54,50,46,50,55,48,52,49,49,44,53,56,46,54,50,50,49,50,54,93,44,91,45,49,54,50,46,49,51,50,50,49,55,44,53,56,46,53,55,49,51,55,54,93,44,91,45,49,54,49,46,56,54,53,48,53,50,44,53,56,46,53,54,54,48,56,55,93,44,91,45,49,54,49,46,54,52,48,50,52,57,44,53,56,46,53,48,50,51,50,54,93,44,91,45,49,54,49,46,51,52,49,56,52,44,53,56,46,54,48,55,48,57,49,93,44,91,45,49,54,49,46,49,57,56,49,56,51,44,53,56,46,55,51,57,51,51,55,93,44,91,45,49,54,49,46,51,54,52,57,51,49,44,53,56,46,56,50,54,48,50,49,93,44,91,45,49,54,49,46,48,51,49,52,52,49,44,53,56,46,56,51,57,55,53,50,93,44,91,45,49,54,49,46,48,51,49,52,52,56,44,53,56,46,57,57,57,51,57,51,93,44,91,45,49,54,48,46,56,54,52,55,48,51,44,53,56,46,57,57,57,51,57,52,93,44,91,45,49,54,48,46,56,49,50,49,51,51,44,53,57,46,48,56,54,48,55,55,93,44,91,45,49,54,48,46,56,49,50,49,52,44,53,57,46,50,53,57,52,51,56,93,44,91,45,49,54,48,46,54,52,51,55,49,54,44,53,57,46,50,53,57,52,52,93,44,91,45,49,54,48,46,52,55,53,50,57,54,44,53,57,46,51,52,54,49,50,50,93,44,91,45,49,54,48,46,52,49,56,54,52,44,53,57,46,52,51,50,56,93,44,91,45,49,54,48,46,52,49,56,54,52,55,44,53,57,46,54,48,54,49,53,50,93,44,91,45,49,54,48,46,50,52,56,53,48,51,44,53,57,46,54,48,54,49,53,52,93,44,91,45,49,54,48,46,50,52,56,53,49,44,53,57,46,55,55,57,53,48,49,93,44,91,45,49,54,48,46,48,49,55,52,50,51,44,53,57,46,55,55,57,53,48,52,93,44,91,45,49,54,48,46,48,49,55,52,51,44,53,57,46,57,53,50,56,52,54,93,44,91,45,49,53,57,46,56,52,53,53,50,52,44,53,57,46,57,53,50,56,52,56,93,44,91,45,49,53,57,46,56,52,53,53,51,51,44,54,48,46,49,50,54,49,56,54,93,44,91,45,49,53,57,46,55,56,49,57,48,54,44,54,48,46,50,49,50,56,53,52,93,44,91,45,49,53,57,46,54,48,56,49,57,54,44,54,48,46,50,49,50,56,53,54,93,44,91,45,49,53,57,46,54,48,56,50,48,52,44,54,48,46,51,56,54,49,56,56,93,44,91,45,49,53,57,46,52,51,52,52,57,55,44,54,48,46,51,56,54,49,57,93,44,91,45,49,53,57,46,51,54,54,50,48,54,44,54,48,46,52,55,50,56,53,54,93,44,91,45,49,53,57,46,51,54,54,50,49,53,44,54,48,46,54,52,54,49,55,57,93,44,91,45,49,53,57,46,49,57,48,54,53,55,44,54,48,46,54,52,54,49,56,49,93,44,91,45,49,53,57,46,48,49,53,49,48,52,44,54,48,46,55,51,50,56,52,51,93,44,91,45,49,53,56,46,57,52,49,57,50,54,44,54,48,46,57,48,54,49,54,50,93,44,91,45,49,53,55,46,56,55,55,50,50,52,44,54,48,46,57,48,54,49,55,50,93,44,91,45,49,53,55,46,53,50,50,51,51,50,44,54,48,46,57,57,50,56,51,52,93,44,91,45,49,53,55,46,49,54,55,52,50,56,44,54,48,46,57,57,50,56,51,57,93,44,91,45,49,53,55,46,49,54,55,52,50,44,54,48,46,57,48,54,49,56,51,93,44,91,45,49,53,54,46,48,48,48,48,56,54,44,54,48,46,57,48,54,49,57,93,44,91,45,49,53,52,46,54,49,52,50,49,53,44,54,48,46,57,48,54,50,48,52,93,44,91,45,49,53,51,46,52,52,48,56,56,52,44,54,48,46,57,48,54,50,51,54,93,44,91,45,49,53,51,46,52,52,48,56,55,55,44,54,49,46,49,54,54,49,57,54,93,44,91,45,49,53,51,46,52,56,53,53,55,53,44,54,49,46,52,50,54,49,53,51,93,44,91,45,49,53,50,46,57,57,57,56,56,50,44,54,49,46,52,50,54,49,55,50,93,44,91,45,49,53,50,46,57,57,57,56,51,57,44,54,50,46,50,57,50,54,50,49,93,44,91,45,49,53,51,46,48,55,48,49,50,51,44,54,50,46,50,48,54,48,49,53,93,44,91,45,49,53,51,46,51,57,53,48,48,57,44,54,50,46,50,48,53,57,57,93,44,91,45,49,53,51,46,51,57,53,48,48,57,44,54,50,46,49,49,57,51,52,55,93,44,91,45,49,53,51,46,55,54,49,56,55,49,44,54,50,46,49,49,57,51,51,53,93,44,91,45,49,53,51,46,55,54,49,56,55,53,44,54,50,46,48,51,50,54,56,57,93,44,91,45,49,53,53,46,52,57,55,54,52,53,44,54,50,46,48,51,50,54,53,57,93,44,91,45,49,53,55,46,48,54,51,56,53,50,44,54,50,46,48,51,50,54,51,52,93,44,91,45,49,53,55,46,48,54,51,56,54,52,44,54,50,46,49,49,57,50,55,49,93,44,91,45,49,53,56,46,53,51,49,51,54,49,44,54,50,46,49,49,57,50,54,52,93,44,91,45,49,53,56,46,53,51,49,51,53,49,44,54,50,46,48,51,50,54,50,93,44,91,45,49,53,57,46,50,54,53,48,51,53,44,54,50,46,48,51,50,53,57,56,93,44,91,45,49,53,57,46,50,54,53,48,51,55,44,54,49,46,57,52,53,57,53,55,93,44,91,45,49,54,48,46,53,51,52,54,55,49,44,54,49,46,57,52,53,57,52,93,93,93,44,91,91,91,45,49,54,55,46,53,53,56,50,50,56,44,54,48,46,50,50,52,51,53,55,93,44,91,45,49,54,55,46,51,56,53,53,56,44,54,48,46,48,50,49,50,48,55,93,44,91,45,49,54,54,46,57,52,48,54,50,50,44,53,57,46,57,49,49,57,48,56,93,44,91,45,49,54,54,46,54,50,54,49,50,54,44,53,57,46,55,57,55,48,54,49,93,44,91,45,49,54,54,46,52,50,57,54,55,49,44,53,57,46,56,48,49,54,51,54,93,44,91,45,49,54,54,46,49,57,54,54,49,51,44,53,57,46,55,48,51,51,56,52,93,44,91,45,49,54,54,46,48,53,55,56,57,51,44,53,57,46,54,57,53,53,51,53,93,44,91,45,49,54,53,46,56,50,52,56,53,57,44,53,57,46,56,48,54,55,52,54,93,44,91,45,49,54,53,46,52,57,53,52,55,44,53,57,46,56,55,48,49,56,52,93,44,91,45,49,54,53,46,52,48,50,52,53,56,44,53,57,46,57,55,48,52,52,56,93,44,91,45,49,54,53,46,53,55,51,49,55,51,44,54,48,46,48,55,53,48,54,51,93,44,91,45,49,54,53,46,53,54,49,53,49,57,44,54,48,46,51,48,49,55,50,54,93,44,91,45,49,54,53,46,55,51,56,52,54,53,44,54,48,46,52,48,53,54,48,57,93,44,91,45,49,54,54,46,48,48,53,55,57,56,44,54,48,46,52,49,57,53,55,51,93,44,91,45,49,54,54,46,49,53,50,52,51,50,44,54,48,46,53,49,48,55,52,55,93,44,91,45,49,54,54,46,51,52,57,56,50,51,44,54,48,46,52,49,55,55,52,53,93,44,91,45,49,54,54,46,53,50,56,56,51,57,44,54,48,46,52,52,52,50,55,93,44,91,45,49,54,54,46,55,51,57,51,51,55,44,54,48,46,51,56,55,56,54,49,93,44,91,45,49,54,54,46,57,52,51,55,55,56,44,54,48,46,50,55,56,49,48,51,93,44,91,45,49,54,55,46,51,48,57,56,51,44,54,48,46,50,57,48,55,49,56,93,44,91,45,49,54,55,46,53,53,56,50,50,56,44,54,48,46,50,50,52,51,53,55,93,93,93,44,91,91,91,45,49,55,51,46,50,51,50,50,51,49,44,54,48,46,54,53,52,51,52,93,44,91,45,49,55,51,46,49,52,48,50,50,51,44,54,48,46,53,55,53,53,51,51,93,44,91,45,49,55,51,46,49,54,55,56,49,56,44,54,48,46,52,56,49,48,56,93,44,91,45,49,55,50,46,57,49,48,50,50,56,44,54,48,46,51,51,57,54,50,51,93,44,91,45,49,55,50,46,53,57,54,49,50,53,44,54,48,46,50,53,56,54,50,50,93,44,91,45,49,55,50,46,52,48,55,53,50,54,44,54,48,46,50,55,56,55,54,52,93,44,91,45,49,55,50,46,49,56,57,52,56,56,44,54,48,46,50,53,48,56,49,54,93,44,91,45,49,55,50,46,49,48,57,48,57,44,54,48,46,51,49,52,48,49,50,93,44,91,45,49,55,50,46,51,57,51,53,55,44,54,48,46,52,51,54,53,48,54,93,44,91,45,49,55,50,46,54,56,55,56,52,44,54,48,46,52,56,48,49,50,93,44,91,45,49,55,50,46,57,52,51,56,52,57,44,54,48,46,54,53,48,55,93,44,91,45,49,55,50,46,57,56,57,55,54,50,44,54,48,46,55,51,49,56,49,49,93,44,91,45,49,55,51,46,49,53,56,54,51,50,44,54,48,46,55,50,56,55,55,93,44,91,45,49,55,51,46,50,51,50,50,51,49,44,54,48,46,54,53,52,51,52,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,55,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,52,57,51,49,57,44,51,50,46,50,51,50,57,53,51,93,44,91,45,56,52,46,54,53,53,56,50,44,51,49,46,57,50,48,51,48,56,93,44,91,45,56,52,46,53,57,57,55,55,54,44,51,49,46,57,50,48,49,55,49,93,44,91,45,56,52,46,52,52,51,56,48,55,44,51,49,46,57,54,55,52,53,54,93,44,91,45,56,52,46,52,51,49,50,49,52,44,51,50,46,49,51,52,48,53,56,93,44,91,45,56,52,46,53,50,55,49,49,55,44,51,50,46,49,51,52,53,53,54,93,44,91,45,56,52,46,54,52,57,51,49,57,44,51,50,46,50,51,50,57,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,53,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,49,54,48,52,56,44,51,51,46,49,51,49,56,49,54,93,44,91,45,56,51,46,55,49,48,54,56,53,44,51,50,46,57,53,50,55,57,50,93,44,91,45,56,51,46,54,53,56,50,49,49,44,51,50,46,56,56,55,57,49,51,93,44,91,45,56,51,46,53,49,51,53,49,49,44,51,50,46,56,52,52,56,54,56,93,44,91,45,56,51,46,52,48,54,57,57,44,51,50,46,56,57,56,50,50,93,44,91,45,56,51,46,51,53,55,54,56,53,44,51,50,46,57,50,54,49,52,49,93,44,91,45,56,51,46,52,50,57,48,57,44,51,51,46,49,56,53,51,53,50,93,44,91,45,56,51,46,53,52,53,56,55,54,44,51,51,46,49,55,49,57,52,52,93,44,91,45,56,51,46,56,49,54,48,52,56,44,51,51,46,49,51,49,56,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,71,119,105,110,110,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,50,50,57,56,44,34,98,101,100,115,34,58,49,48,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,57,55,54,57,51,44,51,52,46,48,53,48,55,48,56,93,44,91,45,56,52,46,50,55,55,48,57,51,44,51,51,46,57,53,55,54,49,52,93,44,91,45,56,52,46,50,53,57,56,50,50,44,51,51,46,57,49,56,57,48,49,93,44,91,45,56,52,46,48,50,51,55,49,51,44,51,51,46,55,53,50,56,48,56,93,44,91,45,56,51,46,57,56,50,48,51,51,44,51,51,46,55,56,54,48,53,52,93,44,91,45,56,51,46,55,57,57,49,48,52,44,51,51,46,57,50,57,56,52,52,93,44,91,45,56,51,46,56,54,56,57,51,49,44,51,52,46,48,48,52,55,56,54,93,44,91,45,56,51,46,56,49,55,54,56,50,44,51,52,46,49,50,55,52,57,51,93,44,91,45,56,51,46,56,54,56,48,51,44,51,52,46,48,57,56,50,56,49,93,44,91,45,56,52,46,48,54,50,56,52,49,44,51,52,46,49,54,55,56,55,51,93,44,91,45,56,52,46,48,57,55,54,57,51,44,51,52,46,48,53,48,55,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,51,52,57,44,34,98,101,100,115,34,58,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,56,55,48,54,55,44,52,53,46,54,52,52,49,52,56,93,44,91,45,57,50,46,54,52,54,54,48,50,44,52,53,46,52,52,49,54,51,53,93,44,91,45,57,50,46,55,52,53,54,56,51,44,52,53,46,50,57,54,48,52,50,93,44,91,45,57,50,46,55,53,56,48,48,56,44,52,53,46,50,48,57,53,54,54,93,44,91,45,57,50,46,49,53,54,52,54,53,44,52,53,46,50,48,57,53,53,52,93,44,91,45,57,50,46,49,53,52,56,56,56,44,52,53,46,54,51,57,55,52,50,93,44,91,45,57,50,46,49,53,52,52,52,51,44,52,53,46,55,50,53,54,49,54,93,44,91,45,57,50,46,53,50,56,49,57,56,44,52,53,46,55,50,56,54,56,93,44,91,45,57,50,46,53,50,57,49,48,55,44,52,53,46,54,52,50,48,55,54,93,44,91,45,57,50,46,56,56,55,48,54,55,44,52,53,46,54,52,52,49,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,54,52,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,51,56,52,49,44,52,50,46,56,49,51,55,57,57,93,44,91,45,56,57,46,56,51,55,53,56,55,44,52,50,46,53,48,53,55,49,93,44,91,45,56,57,46,52,48,49,52,50,51,44,52,50,46,53,48,48,53,53,52,93,44,91,45,56,57,46,51,54,53,55,57,56,44,52,50,46,53,48,48,48,55,56,93,44,91,45,56,57,46,51,54,57,49,50,56,44,52,50,46,56,52,53,48,51,54,93,44,91,45,56,57,46,56,51,56,49,54,55,44,52,50,46,56,53,55,51,57,55,93,44,91,45,56,57,46,56,51,56,52,49,44,52,50,46,56,49,51,55,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,79,114,111,99,111,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,55,55,55,49,50,44,49,56,46,50,57,51,57,55,54,93,44,91,45,54,54,46,52,53,53,55,48,51,44,49,56,46,50,53,55,55,50,54,93,44,91,45,54,54,46,53,52,51,49,51,51,44,49,56,46,49,54,51,48,57,56,93,44,91,45,54,54,46,53,52,55,50,50,44,49,56,46,49,53,51,49,51,93,44,91,45,54,54,46,53,50,49,56,57,57,44,49,56,46,49,53,49,57,53,52,93,44,91,45,54,54,46,52,52,52,53,54,44,49,56,46,49,55,54,54,55,52,93,44,91,45,54,54,46,51,55,51,55,54,56,44,49,56,46,49,55,51,54,57,52,93,44,91,45,54,54,46,51,53,48,55,57,51,44,49,56,46,50,52,49,50,51,53,93,44,91,45,54,54,46,51,55,55,55,49,50,44,49,56,46,50,57,51,57,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,48,55,48,44,34,98,101,100,115,34,58,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,53,51,48,48,54,55,44,52,49,46,53,50,55,49,57,52,93,44,91,45,55,51,46,57,51,51,55,55,53,44,52,49,46,52,56,56,50,55,57,93,44,91,45,55,51,46,57,56,49,52,56,54,44,52,49,46,52,51,56,57,48,53,93,44,91,45,55,51,46,57,56,49,51,56,52,44,52,49,46,51,50,52,54,57,51,93,44,91,45,55,51,46,57,56,50,53,56,52,44,52,49,46,51,50,49,54,57,51,93,44,91,45,55,51,46,53,52,52,55,50,56,44,52,49,46,51,54,54,51,55,53,93,44,91,45,55,51,46,53,51,48,48,54,55,44,52,49,46,53,50,55,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,48,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,48,48,34,44,34,78,65,77,69,34,58,34,78,101,119,112,111,114,116,32,78,101,119,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,49,52,53,44,34,98,101,100,115,34,58,54,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,44,91,45,55,54,46,54,50,56,50,48,53,44,51,55,46,48,57,50,55,53,53,93,44,91,45,55,54,46,52,52,53,51,48,49,44,51,54,46,57,52,49,56,57,49,93,44,91,45,55,54,46,51,57,57,53,54,55,44,51,54,46,57,51,48,57,52,55,93,44,91,45,55,54,46,51,56,52,52,49,57,44,51,54,46,57,53,49,48,53,57,93,44,91,45,55,54,46,52,51,56,48,50,54,44,51,55,46,48,57,52,51,52,56,93,44,91,45,55,54,46,53,57,49,51,48,50,44,51,55,46,50,49,51,50,48,53,93,44,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,55,52,50,51,51,44,51,56,46,50,54,54,57,55,49,93,44,91,45,49,48,51,46,51,57,57,57,51,56,44,51,56,46,50,54,53,52,51,53,93,44,91,45,49,48,51,46,52,48,52,51,51,57,44,51,55,46,54,52,51,53,55,54,93,44,91,45,49,48,51,46,48,55,53,57,51,56,44,51,55,46,54,52,51,52,50,93,44,91,45,49,48,50,46,55,52,55,54,49,53,44,51,55,46,54,52,51,54,52,50,93,44,91,45,49,48,50,46,55,52,50,51,51,44,51,56,46,50,54,54,57,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,56,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,52,54,52,54,50,44,51,52,46,56,50,50,49,49,52,93,44,91,45,57,57,46,52,48,53,56,50,49,44,51,52,46,56,49,51,48,51,56,93,44,91,45,57,57,46,52,50,51,50,48,49,44,51,52,46,55,50,53,48,50,93,44,91,45,57,57,46,54,54,54,56,52,57,44,51,52,46,55,50,52,53,53,53,93,44,91,45,57,57,46,54,54,54,53,49,50,44,51,52,46,53,48,55,49,50,49,93,44,91,45,57,57,46,56,52,52,53,56,53,44,51,52,46,53,48,54,57,49,53,93,44,91,45,57,57,46,54,57,52,53,50,56,44,51,52,46,51,55,56,50,49,56,93,44,91,45,57,57,46,53,54,57,54,57,54,44,51,52,46,52,49,56,52,49,56,93,44,91,45,57,57,46,52,55,53,49,49,53,44,51,52,46,51,57,53,57,51,93,44,91,45,57,57,46,50,54,49,50,55,53,44,51,52,46,52,48,51,53,48,56,93,44,91,45,57,57,46,50,48,54,57,48,53,44,51,52,46,51,51,56,50,55,55,93,44,91,45,57,57,46,50,51,56,48,54,44,51,52,46,52,50,53,48,48,57,93,44,91,45,57,57,46,49,57,54,56,48,49,44,51,52,46,53,52,50,51,56,54,93,44,91,45,57,57,46,49,48,51,49,53,44,51,52,46,54,51,55,57,53,93,44,91,45,57,57,46,50,52,54,52,54,50,44,51,52,46,56,50,50,49,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,97,110,100,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,50,49,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,54,50,57,52,56,56,44,52,55,46,52,55,57,54,49,93,44,91,45,49,49,53,46,50,56,51,56,53,54,44,52,55,46,52,56,54,54,51,56,93,44,91,45,49,49,52,46,57,56,50,50,54,53,44,52,55,46,51,57,54,56,48,52,93,44,91,45,49,49,52,46,57,54,56,57,55,56,44,52,55,46,51,49,50,54,50,53,93,44,91,45,49,49,52,46,55,57,55,50,48,52,44,52,55,46,50,54,56,57,49,54,93,44,91,45,49,49,52,46,54,56,55,50,57,53,44,52,55,46,50,55,52,51,49,93,44,91,45,49,49,52,46,52,50,51,56,53,56,44,52,55,46,50,49,48,48,57,49,93,44,91,45,49,49,52,46,50,53,51,53,56,52,44,52,55,46,49,50,49,48,48,55,93,44,91,45,49,49,52,46,49,56,55,49,55,44,52,55,46,49,51,56,49,57,49,93,44,91,45,49,49,52,46,50,48,51,48,50,54,44,52,55,46,51,53,53,55,52,54,93,44,91,45,49,49,52,46,51,53,51,48,56,44,52,55,46,51,56,57,56,53,93,44,91,45,49,49,52,46,51,53,48,51,54,52,44,52,55,46,54,48,50,49,52,50,93,44,91,45,49,49,52,46,53,56,51,55,54,44,52,55,46,54,48,49,55,49,56,93,44,91,45,49,49,52,46,54,48,52,52,54,50,44,52,55,46,55,56,57,56,55,49,93,44,91,45,49,49,52,46,54,48,52,53,56,52,44,52,55,46,56,55,53,54,48,53,93,44,91,45,49,49,52,46,57,56,57,51,52,52,44,52,55,46,56,55,50,56,48,55,93,44,91,45,49,49,53,46,48,49,48,54,55,50,44,52,56,46,48,49,55,54,50,49,93,44,91,45,49,49,53,46,49,53,52,53,50,55,44,52,56,46,48,49,55,54,57,50,93,44,91,45,49,49,53,46,49,56,53,49,57,54,44,52,55,46,57,49,57,48,48,52,93,44,91,45,49,49,53,46,53,50,52,54,57,53,44,52,55,46,57,48,56,53,57,52,93,44,91,45,49,49,53,46,54,51,55,48,51,54,44,52,56,46,48,55,52,54,52,54,93,44,91,45,49,49,53,46,54,57,56,55,54,52,44,52,56,46,50,51,56,52,57,56,93,44,91,45,49,49,54,46,48,48,57,50,51,55,44,52,56,46,49,53,57,54,54,57,93,44,91,45,49,49,54,46,48,52,56,54,54,57,44,52,56,46,50,49,54,49,50,56,93,44,91,45,49,49,54,46,48,52,57,49,48,56,44,52,55,46,57,55,55,51,51,52,93,44,91,45,49,49,53,46,56,50,51,55,55,52,44,52,55,46,55,53,50,54,49,49,93,44,91,45,49,49,53,46,55,50,50,55,49,52,44,52,55,46,54,57,52,56,53,53,93,44,91,45,49,49,53,46,54,50,57,52,56,56,44,52,55,46,52,55,57,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,71,108,97,115,115,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,55,55,54,48,56,53,44,51,50,46,48,56,54,57,50,53,93,44,91,45,49,48,49,46,55,55,53,56,48,50,44,51,49,46,54,53,49,51,49,57,93,44,91,45,49,48,49,46,50,54,55,49,50,50,44,51,49,46,54,53,48,56,53,52,93,44,91,45,49,48,49,46,50,54,52,50,49,54,44,51,50,46,48,56,55,49,51,54,93,44,91,45,49,48,49,46,54,57,53,48,49,49,44,51,50,46,48,56,55,53,51,50,93,44,91,45,49,48,49,46,55,55,54,48,56,53,44,51,50,46,48,56,54,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,49,48,56,51,54,44,51,53,46,55,53,57,55,53,50,93,44,91,45,57,51,46,57,56,52,50,48,52,44,51,53,46,54,54,48,55,56,51,93,44,91,45,57,52,46,48,55,51,57,53,56,44,51,53,46,54,54,50,52,54,51,93,44,91,45,57,52,46,48,50,56,57,57,55,44,51,53,46,53,48,56,48,51,53,93,44,91,45,57,52,46,48,55,52,56,57,53,44,51,53,46,52,52,53,52,48,51,93,44,91,45,57,52,46,48,56,50,55,57,56,44,51,53,46,50,49,53,57,49,51,93,44,91,45,57,52,46,48,50,56,56,56,54,44,51,53,46,50,49,51,56,52,49,93,44,91,45,57,51,46,57,50,48,49,53,55,44,51,53,46,50,50,57,53,56,53,93,44,91,45,57,51,46,55,49,48,48,55,54,44,51,53,46,51,55,53,50,52,50,93,44,91,45,57,51,46,54,57,53,57,56,49,44,51,53,46,55,54,56,54,52,57,93,44,91,45,57,51,46,57,49,48,56,51,54,44,51,53,46,55,53,57,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,97,106,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,51,51,54,49,55,44,51,54,46,52,54,51,50,51,93,44,91,45,57,56,46,54,50,53,51,54,49,44,51,54,46,51,57,50,53,57,53,93,44,91,45,57,56,46,57,54,48,51,51,52,44,51,54,46,53,48,54,57,49,52,93,44,91,45,57,56,46,57,53,53,56,52,57,44,51,54,46,49,54,49,53,55,55,93,44,91,45,57,56,46,54,51,54,56,57,57,44,51,54,46,49,54,52,56,57,52,93,44,91,45,57,56,46,50,49,48,52,48,53,44,51,54,46,49,54,52,56,56,57,93,44,91,45,57,56,46,49,48,51,57,48,52,44,51,54,46,49,54,52,56,55,55,93,44,91,45,57,56,46,49,48,52,52,50,55,44,51,54,46,52,54,51,49,48,53,93,44,91,45,57,56,46,53,51,51,54,49,55,44,51,54,46,52,54,51,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,54,51,56,55,44,34,98,101,100,115,34,58,51,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,51,53,57,56,44,51,54,46,54,52,49,54,53,57,93,44,91,45,56,55,46,54,52,49,49,53,55,44,51,54,46,54,51,56,49,48,57,93,44,91,45,56,55,46,53,57,50,51,53,56,44,51,54,46,51,54,55,54,54,51,93,44,91,45,56,55,46,53,49,51,53,51,51,44,51,54,46,51,51,52,55,49,51,93,44,91,45,56,55,46,50,56,54,53,48,49,44,51,54,46,51,50,49,57,51,51,93,44,91,45,56,55,46,49,50,48,52,52,51,44,51,54,46,52,53,53,52,54,93,44,91,45,56,55,46,49,49,52,57,56,51,44,51,54,46,54,52,50,51,55,49,93,44,91,45,56,55,46,51,51,53,57,56,44,51,54,46,54,52,49,54,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,80,101,110,100,32,79,114,101,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,49,57,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,52,50,57,57,54,56,44,52,57,46,48,48,48,52,54,54,93,44,91,45,49,49,55,46,53,54,51,56,53,56,44,52,56,46,56,51,54,54,55,49,93,44,91,45,49,49,55,46,52,57,57,57,55,53,44,52,56,46,54,53,54,49,56,55,93,44,91,45,49,49,55,46,53,48,50,51,55,49,44,52,56,46,49,51,52,55,48,56,93,44,91,45,49,49,55,46,52,51,54,57,57,51,44,52,56,46,48,52,55,50,48,55,93,44,91,45,49,49,55,46,48,52,49,56,55,55,44,52,56,46,48,52,53,52,54,54,93,44,91,45,49,49,55,46,48,51,50,52,52,49,44,52,56,46,56,52,54,54,54,54,93,44,91,45,49,49,55,46,48,51,50,51,52,53,44,52,56,46,57,57,57,50,48,49,93,44,91,45,49,49,55,46,52,50,57,57,54,56,44,52,57,46,48,48,48,52,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,77,99,76,101,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,48,56,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,57,55,49,49,53,56,44,52,55,46,56,52,56,54,57,54,93,44,91,45,49,48,49,46,56,55,49,56,54,50,44,52,55,46,56,52,55,53,56,57,93,44,91,45,49,48,50,46,51,56,53,54,52,55,44,52,55,46,56,52,55,55,55,50,93,44,91,45,49,48,50,46,51,56,53,55,53,56,44,52,55,46,55,53,56,48,48,56,93,44,91,45,49,48,50,46,50,54,48,57,53,49,44,52,55,46,55,56,49,52,48,57,93,44,91,45,49,48,50,46,50,54,53,52,53,50,44,52,55,46,54,50,52,51,48,55,93,44,91,45,49,48,50,46,50,48,53,51,53,44,52,55,46,53,55,52,53,48,54,93,44,91,45,49,48,50,46,48,51,54,54,52,56,44,52,55,46,53,55,50,55,48,53,93,44,91,45,49,48,49,46,56,57,50,48,49,55,44,52,55,46,53,48,53,49,51,51,93,44,91,45,49,48,49,46,52,51,54,53,50,49,44,52,55,46,53,54,52,49,53,55,93,44,91,45,49,48,49,46,52,52,48,49,51,57,44,52,55,46,52,55,55,50,57,57,93,44,91,45,49,48,49,46,51,52,53,55,51,53,44,52,55,46,50,57,49,56,57,55,93,44,91,45,49,48,49,46,50,53,55,48,51,49,44,52,55,46,50,54,52,56,57,53,93,44,91,45,49,48,49,46,48,54,48,52,50,52,44,52,55,46,50,57,51,50,57,51,93,44,91,45,49,48,48,46,57,54,53,52,52,44,52,55,46,49,53,55,49,51,52,93,44,91,45,49,48,48,46,55,52,57,51,55,44,52,55,46,49,53,55,50,52,53,93,44,91,45,49,48,48,46,55,52,57,51,51,52,44,52,55,46,51,50,55,54,56,53,93,44,91,45,49,48,48,46,54,55,51,50,49,44,52,55,46,51,50,55,54,52,54,93,44,91,45,49,48,48,46,54,55,50,50,54,50,44,52,55,46,54,55,52,49,50,56,93,44,91,45,49,48,48,46,53,56,53,48,54,50,44,52,55,46,54,55,52,48,56,56,93,44,91,45,49,48,48,46,53,56,53,49,55,57,44,52,55,46,56,52,55,55,54,49,93,44,91,45,49,48,48,46,57,55,49,49,53,56,44,52,55,46,56,52,56,54,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,72,111,111,100,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,53,50,51,54,56,49,44,52,53,46,55,50,52,57,51,93,44,91,45,49,50,49,46,56,54,55,48,50,49,44,52,53,46,54,57,51,51,57,49,93,44,91,45,49,50,49,46,57,50,50,48,50,56,44,52,53,46,54,52,57,50,48,53,93,44,91,45,49,50,49,46,57,48,54,54,50,56,44,52,53,46,53,50,49,49,52,55,93,44,91,45,49,50,49,46,56,49,57,53,56,55,44,52,53,46,52,54,49,54,55,53,93,44,91,45,49,50,49,46,55,48,48,52,55,51,44,52,53,46,51,55,56,53,51,49,93,44,91,45,49,50,49,46,54,57,54,52,55,57,44,52,53,46,50,53,55,57,50,93,44,91,45,49,50,49,46,52,56,49,56,56,56,44,52,53,46,50,53,56,49,50,56,93,44,91,45,49,50,49,46,52,56,50,49,54,56,44,52,53,46,53,49,57,54,48,52,93,44,91,45,49,50,49,46,52,52,49,50,50,57,44,52,53,46,54,57,55,50,56,93,44,91,45,49,50,49,46,53,50,51,54,56,49,44,52,53,46,55,50,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,87,114,105,103,104,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,48,52,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,55,49,50,51,56,44,52,50,46,57,48,55,55,54,50,93,44,91,45,57,51,46,57,55,49,55,49,52,44,52,50,46,54,52,52,55,48,55,93,44,91,45,57,51,46,57,55,49,53,56,51,44,52,50,46,53,53,56,49,51,57,93,44,91,45,57,51,46,52,57,57,52,56,53,44,52,50,46,53,53,55,55,93,44,91,45,57,51,46,52,57,56,54,49,55,44,52,50,46,57,48,56,53,49,50,93,44,91,45,57,51,46,57,55,49,50,51,56,44,52,50,46,57,48,55,55,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,49,57,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,52,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,49,53,54,51,44,51,49,46,57,55,57,56,53,54,93,44,91,45,57,52,46,53,49,49,52,51,49,44,51,49,46,57,55,51,57,56,52,93,44,91,45,57,52,46,52,53,50,52,49,54,44,51,49,46,56,52,52,50,56,49,93,44,91,45,57,52,46,51,57,57,48,57,49,44,51,49,46,54,53,51,53,57,54,93,44,91,45,57,52,46,48,57,48,55,49,55,44,51,49,46,54,50,48,54,48,57,93,44,91,45,57,51,46,57,56,52,52,54,49,44,51,49,46,53,54,57,52,49,57,93,44,91,45,57,51,46,56,51,52,57,49,56,44,51,49,46,53,56,54,50,49,50,93,44,91,45,57,51,46,55,57,52,53,52,56,44,51,49,46,55,48,50,48,55,54,93,44,91,45,57,51,46,56,55,57,48,54,49,44,51,49,46,56,52,52,50,56,55,93,44,91,45,57,52,46,48,49,53,54,51,44,51,49,46,57,55,57,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,50,56,48,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,51,52,51,56,52,44,51,56,46,49,53,50,53,57,51,93,44,91,45,57,49,46,53,50,56,55,57,55,44,51,55,46,55,56,56,57,56,57,93,44,91,45,57,49,46,51,48,56,51,49,49,44,51,55,46,55,56,55,49,56,54,93,44,91,45,57,49,46,51,49,48,54,53,53,44,51,55,46,55,48,48,48,52,56,93,44,91,45,57,49,46,49,53,51,51,52,53,44,51,55,46,54,57,55,51,52,93,44,91,45,57,49,46,49,48,48,48,49,55,44,51,55,46,55,52,48,48,49,50,93,44,91,45,57,49,46,48,57,53,55,54,53,44,51,56,46,50,48,52,48,56,51,93,44,91,45,57,49,46,51,54,55,52,56,50,44,51,56,46,50,48,57,55,52,49,93,44,91,45,57,49,46,53,51,52,51,56,52,44,51,56,46,49,53,50,53,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,97,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,51,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,53,54,48,53,54,44,51,55,46,57,53,49,57,53,57,93,44,91,45,55,57,46,57,51,53,51,54,52,44,51,55,46,57,53,52,51,54,53,93,44,91,45,55,57,46,56,56,55,51,50,57,44,51,55,46,56,57,50,57,55,49,93,44,91,45,55,57,46,54,52,55,53,56,57,44,51,55,46,56,55,52,53,51,56,93,44,91,45,55,57,46,52,56,50,54,54,56,44,51,56,46,48,56,54,48,53,52,93,44,91,45,55,57,46,53,49,50,49,53,56,44,51,56,46,49,56,48,52,49,57,93,44,91,45,55,57,46,55,57,53,57,50,49,44,51,56,46,50,54,53,53,53,50,93,44,91,45,55,57,46,56,57,55,51,51,53,44,51,56,46,49,57,51,51,56,49,93,44,91,45,55,57,46,57,53,57,56,52,52,44,51,56,46,48,54,51,54,57,55,93,44,91,45,56,48,46,48,53,54,48,53,54,44,51,55,46,57,53,49,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,79,116,116,101,114,32,84,97,105,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,57,57,50,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,56,48,57,55,55,44,52,54,46,54,51,48,55,54,53,93,44,91,45,57,54,46,50,54,53,51,54,54,44,52,54,46,49,48,56,54,49,93,44,91,45,57,53,46,55,54,57,55,53,44,52,54,46,49,48,55,52,53,93,44,91,45,57,53,46,49,52,53,56,56,44,52,54,46,49,48,54,55,54,49,93,44,91,45,57,53,46,49,53,53,53,55,44,52,54,46,51,54,56,56,56,93,44,91,45,57,53,46,49,54,51,55,49,44,52,54,46,55,49,55,54,52,93,44,91,45,57,54,46,49,55,52,53,56,55,44,52,54,46,55,49,55,56,53,52,93,44,91,45,57,54,46,50,56,48,57,55,55,44,52,54,46,54,51,48,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,80,108,97,113,117,101,109,105,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,51,55,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,48,56,48,53,54,44,50,57,46,56,57,53,53,50,56,93,44,91,45,57,48,46,48,54,55,50,52,50,44,50,57,46,55,51,56,54,54,52,93,44,91,45,56,57,46,57,56,48,56,49,50,44,50,57,46,53,56,48,49,53,53,93,44,91,45,56,57,46,57,55,55,52,55,44,50,57,46,52,52,57,51,55,49,93,44,91,45,56,57,46,57,48,50,50,54,55,44,50,57,46,50,57,50,50,56,52,93,44,91,45,56,57,46,56,57,57,54,54,52,44,50,57,46,49,53,53,48,48,57,93,44,91,45,56,57,46,54,49,48,52,50,55,44,50,57,46,49,57,56,54,51,53,93,44,91,45,56,57,46,53,48,50,51,49,57,44,50,57,46,49,53,56,51,55,54,93,44,91,45,56,57,46,52,54,51,52,50,52,44,50,57,46,48,56,50,56,50,93,44,91,45,56,57,46,52,56,55,54,52,44,50,56,46,56,56,55,51,55,49,93,44,91,45,56,57,46,51,56,52,55,50,55,44,50,56,46,56,55,49,53,48,51,93,44,91,45,56,57,46,50,55,57,54,48,52,44,50,56,46,57,55,55,55,56,51,93,44,91,45,56,57,46,49,51,51,50,56,52,44,50,56,46,57,49,57,55,50,56,93,44,91,45,56,56,46,57,50,55,56,48,57,44,50,57,46,49,49,55,50,55,53,93,44,91,45,56,56,46,57,52,50,48,53,52,44,50,57,46,50,53,51,55,52,50,93,44,91,45,56,57,46,48,54,57,52,50,54,44,50,57,46,50,57,52,50,57,55,93,44,91,45,56,57,46,49,51,55,54,49,50,44,50,57,46,51,56,49,52,50,57,93,44,91,45,56,56,46,56,55,57,50,51,53,44,50,57,46,54,52,55,52,48,57,93,44,91,45,56,57,46,52,56,52,53,57,49,44,50,57,46,54,49,55,53,53,49,93,44,91,45,56,57,46,55,50,49,48,52,53,44,50,57,46,55,53,55,54,53,50,93,44,91,45,56,57,46,56,54,57,55,50,44,50,57,46,55,57,53,52,53,49,93,44,91,45,56,57,46,57,49,48,55,48,56,44,50,57,46,56,54,55,56,54,53,93,44,91,45,57,48,46,48,48,56,48,53,54,44,50,57,46,56,57,53,53,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,80,111,110,116,111,116,111,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,51,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,50,52,57,54,54,44,51,52,46,51,54,52,55,53,57,93,44,91,45,56,57,46,50,52,54,51,51,57,44,51,52,46,51,55,57,51,52,52,93,44,91,45,56,57,46,50,52,53,52,56,53,44,51,52,46,49,54,49,49,56,54,93,44,91,45,56,57,46,49,51,57,49,53,56,44,51,52,46,48,55,52,49,49,54,93,44,91,45,56,56,46,56,50,52,53,50,51,44,51,52,46,48,55,52,57,52,56,93,44,91,45,56,56,46,56,50,52,57,54,54,44,51,52,46,51,54,52,55,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,77,111,114,101,104,111,117,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,57,57,50,44,34,98,101,100,115,34,58,49,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,54,57,49,48,53,44,51,51,46,48,48,56,49,54,51,93,44,91,45,57,50,46,48,54,53,49,55,57,44,51,50,46,55,50,51,48,48,51,93,44,91,45,57,49,46,57,55,53,48,50,54,44,51,50,46,55,49,49,52,50,56,93,44,91,45,57,49,46,57,49,51,48,53,55,44,51,50,46,53,48,53,57,48,50,93,44,91,45,57,49,46,55,51,57,54,53,49,44,51,50,46,53,54,49,50,57,57,93,44,91,45,57,49,46,54,51,55,53,56,55,44,51,50,46,54,54,55,51,52,49,93,44,91,45,57,49,46,53,54,54,51,54,51,44,51,50,46,56,53,53,53,54,49,93,44,91,45,57,49,46,52,51,53,55,56,50,44,51,51,46,48,48,54,48,57,57,93,44,91,45,57,49,46,52,54,48,52,44,51,51,46,48,48,53,57,49,53,93,44,91,45,57,50,46,48,54,57,49,48,53,44,51,51,46,48,48,56,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,66,117,108,108,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,52,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,50,56,56,51,44,51,56,46,49,49,56,51,56,51,93,44,91,45,56,53,46,53,53,55,50,55,44,51,56,46,48,55,51,56,52,49,93,44,91,45,56,53,46,55,49,50,53,55,56,44,51,56,46,48,56,55,51,49,49,93,44,91,45,56,53,46,57,51,56,51,50,49,44,51,55,46,57,57,56,55,53,54,93,44,91,45,56,53,46,55,51,55,55,55,55,44,51,55,46,56,49,49,55,57,93,44,91,45,56,53,46,54,52,51,50,53,52,44,51,55,46,56,51,52,48,51,51,93,44,91,45,56,53,46,52,56,57,50,48,50,44,51,55,46,57,57,48,54,53,52,93,44,91,45,56,53,46,52,50,56,56,51,44,51,56,46,49,49,56,51,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,50,57,44,34,98,101,100,115,34,58,49,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,49,55,55,54,50,44,51,50,46,55,50,57,53,51,50,93,44,91,45,56,55,46,49,49,50,51,54,50,44,51,50,46,52,56,56,54,53,93,44,91,45,56,55,46,52,50,51,49,53,51,44,51,50,46,52,56,50,57,54,53,93,44,91,45,56,55,46,52,55,51,48,56,44,51,50,46,51,48,55,54,49,52,93,44,91,45,56,55,46,52,55,50,50,48,54,44,51,50,46,50,54,52,57,49,57,93,44,91,45,56,55,46,51,50,53,54,52,52,44,51,50,46,49,57,54,50,55,50,93,44,91,45,56,55,46,49,55,55,56,54,44,51,50,46,48,52,55,53,49,52,93,44,91,45,56,54,46,57,48,54,57,53,54,44,51,50,46,48,52,55,57,55,93,44,91,45,56,54,46,57,48,56,51,48,50,44,51,50,46,50,50,53,48,50,56,93,44,91,45,56,54,46,56,49,52,57,49,50,44,51,50,46,51,52,48,56,48,51,93,44,91,45,56,54,46,57,48,54,55,52,50,44,51,50,46,53,51,54,57,55,55,93,44,91,45,56,54,46,57,49,55,53,57,53,44,51,50,46,54,54,52,49,54,57,93,44,91,45,56,55,46,48,49,55,55,54,50,44,51,50,46,55,50,57,53,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,67,111,109,97,110,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,53,49,49,53,56,44,51,50,46,50,54,49,52,51,54,93,44,91,45,57,56,46,57,50,52,52,48,49,44,51,50,46,48,55,56,48,49,56,93,44,91,45,57,56,46,54,54,56,52,52,49,44,51,49,46,55,48,48,53,49,52,93,44,91,45,57,56,46,52,57,50,56,48,50,44,51,49,46,55,50,51,54,48,56,93,44,91,45,57,56,46,52,54,51,55,51,54,44,51,49,46,54,56,51,57,56,57,93,44,91,45,57,56,46,49,53,54,53,54,56,44,51,49,46,56,52,49,55,49,51,93,44,91,45,57,56,46,50,48,56,51,56,54,44,51,49,46,57,49,55,53,49,49,93,44,91,45,57,56,46,51,50,55,52,57,57,44,51,49,46,57,52,49,50,54,49,93,44,91,45,57,56,46,53,53,49,49,53,56,44,51,50,46,50,54,49,52,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,51,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,55,50,55,48,52,53,44,52,57,46,48,48,48,53,48,56,93,44,91,45,49,49,54,46,48,52,57,48,56,54,44,52,57,46,48,48,48,56,52,54,93,44,91,45,49,49,54,46,48,52,57,48,53,56,44,52,56,46,53,48,50,48,54,50,93,44,91,45,49,49,54,46,48,52,56,54,54,57,44,52,56,46,50,49,54,49,50,56,93,44,91,45,49,49,54,46,48,48,57,50,51,55,44,52,56,46,49,53,57,54,54,57,93,44,91,45,49,49,53,46,54,57,56,55,54,52,44,52,56,46,50,51,56,52,57,56,93,44,91,45,49,49,53,46,54,51,55,48,51,54,44,52,56,46,48,55,52,54,52,54,93,44,91,45,49,49,53,46,53,50,52,54,57,53,44,52,55,46,57,48,56,53,57,52,93,44,91,45,49,49,53,46,49,56,53,49,57,54,44,52,55,46,57,49,57,48,48,52,93,44,91,45,49,49,53,46,49,53,52,53,50,55,44,52,56,46,48,49,55,54,57,50,93,44,91,45,49,49,53,46,48,49,48,54,55,50,44,52,56,46,48,49,55,54,50,49,93,44,91,45,49,49,53,46,48,50,48,48,55,57,44,52,56,46,50,50,53,57,53,52,93,44,91,45,49,49,52,46,56,52,56,48,57,56,44,52,56,46,50,50,54,49,50,53,93,44,91,45,49,49,52,46,56,52,57,56,48,51,44,52,56,46,53,55,51,53,48,50,93,44,91,45,49,49,52,46,56,56,56,53,57,44,52,56,46,54,53,56,55,54,53,93,44,91,45,49,49,52,46,54,57,50,52,53,44,52,56,46,54,56,48,49,51,54,93,44,91,45,49,49,52,46,54,52,56,49,51,52,44,52,56,46,55,55,57,51,51,50,93,44,91,45,49,49,52,46,55,50,55,48,52,53,44,52,57,46,48,48,48,53,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,83,97,110,32,76,111,114,101,110,122,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,55,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,57,55,54,53,44,49,56,46,50,48,54,57,57,50,93,44,91,45,54,54,46,48,53,50,53,53,53,44,49,56,46,49,49,51,48,54,57,93,44,91,45,54,54,46,48,53,49,55,56,56,44,49,56,46,49,48,57,56,55,56,93,44,91,45,54,54,46,48,49,48,50,52,53,44,49,56,46,48,55,53,53,54,53,93,44,91,45,54,53,46,57,50,54,50,50,55,44,49,56,46,49,49,57,57,54,51,93,44,91,45,54,53,46,57,50,56,51,52,49,44,49,56,46,49,52,50,56,52,53,93,44,91,45,54,53,46,57,53,49,48,49,57,44,49,56,46,50,50,57,50,57,50,93,44,91,45,54,53,46,57,57,55,54,53,44,49,56,46,50,48,54,57,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,84,111,97,32,65,108,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,52,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,49,56,55,54,52,44,49,56,46,51,54,55,52,49,49,93,44,91,45,54,54,46,50,55,56,48,55,54,44,49,56,46,51,50,57,57,55,53,93,44,91,45,54,54,46,50,48,52,55,51,52,44,49,56,46,51,49,54,48,51,53,93,44,91,45,54,54,46,49,57,54,57,56,44,49,56,46,51,56,57,50,56,57,93,44,91,45,54,54,46,50,53,50,53,53,52,44,49,56,46,51,57,52,49,56,55,93,44,91,45,54,54,46,51,48,51,54,54,51,44,49,56,46,51,56,52,48,55,55,93,44,91,45,54,54,46,51,49,56,55,54,52,44,49,56,46,51,54,55,52,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,50,50,44,34,98,101,100,115,34,58,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,55,48,50,49,52,44,52,55,46,52,49,48,49,53,49,93,44,91,45,57,52,46,54,53,57,57,52,50,44,52,54,46,56,48,51,55,49,54,93,44,91,45,57,52,46,55,56,55,49,50,54,44,52,54,46,56,48,51,57,52,51,93,44,91,45,57,52,46,55,55,57,49,50,49,44,52,54,46,51,57,52,50,49,53,93,44,91,45,57,52,46,55,51,49,52,52,50,44,52,54,46,51,54,56,54,48,53,93,44,91,45,57,52,46,54,53,51,52,54,50,44,52,54,46,51,52,56,54,55,56,93,44,91,45,57,52,46,51,52,49,54,55,57,44,52,54,46,50,55,55,55,48,53,93,44,91,45,57,52,46,51,50,55,50,56,54,44,52,54,46,50,56,57,56,49,55,93,44,91,45,57,52,46,51,52,50,57,49,44,52,54,46,56,48,53,53,50,57,93,44,91,45,57,51,46,55,55,54,48,50,52,44,52,54,46,56,48,50,56,57,49,93,44,91,45,57,51,46,55,55,53,50,53,55,44,52,55,46,48,51,48,52,49,56,93,44,91,45,57,51,46,55,55,54,48,55,52,44,52,55,46,50,55,55,57,56,54,93,44,91,45,57,52,46,48,50,53,57,56,49,44,52,55,46,51,53,49,51,56,56,93,44,91,45,57,52,46,49,49,55,57,57,57,44,52,55,46,52,56,48,55,52,52,93,44,91,45,57,52,46,51,50,55,53,51,49,44,52,55,46,52,49,53,56,52,52,93,44,91,45,57,52,46,52,49,54,50,55,57,44,52,55,46,52,52,52,56,50,56,93,44,91,45,57,52,46,54,55,48,50,49,52,44,52,55,46,52,49,48,49,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,114,99,104,117,108,101,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,48,56,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,52,50,49,50,50,51,44,51,55,46,48,48,48,50,50,51,93,44,91,45,49,48,54,46,52,55,54,48,57,44,51,54,46,57,57,51,53,52,56,93,44,91,45,49,48,54,46,54,55,56,51,53,52,44,51,55,46,50,50,56,53,54,54,93,44,91,45,49,48,54,46,54,55,56,51,55,51,44,51,55,46,52,48,51,53,57,54,93,44,91,45,49,48,54,46,55,49,48,55,55,53,44,51,55,46,52,48,52,50,50,56,93,44,91,45,49,48,55,46,49,50,56,55,51,55,44,51,55,46,51,57,50,52,48,57,93,44,91,45,49,48,55,46,49,50,56,54,56,44,51,55,46,52,50,50,57,52,50,93,44,91,45,49,48,55,46,52,56,50,49,51,49,44,51,55,46,52,50,50,54,55,51,93,44,91,45,49,48,55,46,52,56,49,55,51,55,44,51,55,46,48,48,48,49,50,55,93,44,91,45,49,48,55,46,52,50,49,50,50,51,44,51,55,46,48,48,48,50,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,89,97,122,111,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,44,91,45,57,48,46,51,54,52,48,51,49,44,51,51,46,48,49,48,53,57,54,93,44,91,45,57,48,46,52,52,57,56,57,51,44,51,50,46,57,50,51,50,57,93,44,91,45,57,48,46,54,53,54,54,51,50,44,51,50,46,57,50,50,53,49,93,44,91,45,57,48,46,55,53,57,55,53,51,44,51,50,46,56,51,53,55,54,51,93,44,91,45,57,48,46,54,57,51,48,54,49,44,51,50,46,55,53,52,50,57,55,93,44,91,45,57,48,46,55,50,51,49,53,57,44,51,50,46,54,54,50,49,50,56,93,44,91,45,57,48,46,55,50,48,49,48,50,44,51,50,46,54,49,56,56,53,56,93,44,91,45,57,48,46,53,53,51,56,50,49,44,51,50,46,53,48,55,53,55,52,93,44,91,45,57,48,46,52,53,48,48,51,55,44,51,50,46,53,55,51,55,56,51,93,44,91,45,57,48,46,48,52,57,49,50,57,44,51,50,46,55,51,53,54,55,52,93,44,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,79,117,116,97,103,97,109,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,55,53,52,44,34,98,101,100,115,34,58,53,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,48,54,48,56,51,44,52,52,46,53,57,48,53,49,53,93,44,91,45,56,56,46,55,51,54,56,48,50,44,52,52,46,53,57,48,54,48,53,93,44,91,45,56,56,46,55,51,57,55,55,44,52,52,46,50,52,51,51,48,51,93,44,91,45,56,56,46,52,48,52,48,55,44,52,52,46,50,52,52,49,48,50,93,44,91,45,56,56,46,49,57,50,54,49,49,44,52,52,46,50,52,49,57,52,55,93,44,91,45,56,56,46,49,57,48,52,54,53,44,52,52,46,53,56,54,55,57,57,93,44,91,45,56,56,46,50,52,53,50,48,52,44,52,52,46,53,56,52,55,52,54,93,44,91,45,56,56,46,54,48,54,48,56,51,44,52,52,46,53,57,48,53,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,56,57,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,49,48,52,56,50,51,44,51,57,46,49,52,51,53,48,55,93,44,91,45,57,52,46,49,49,52,49,55,53,44,51,56,46,57,49,55,51,48,52,93,44,91,45,57,51,46,56,51,52,55,49,57,44,51,56,46,57,51,55,57,48,57,93,44,91,45,57,51,46,52,57,55,50,55,56,44,51,56,46,57,50,56,52,51,93,44,91,45,57,51,46,52,57,54,51,55,55,44,51,56,46,57,52,50,56,51,55,93,44,91,45,57,51,46,52,55,55,50,51,51,44,51,57,46,50,57,50,55,57,54,93,44,91,45,57,51,46,52,56,55,56,56,53,44,51,57,46,50,50,56,56,55,53,93,44,91,45,57,51,46,54,53,48,53,50,54,44,51,57,46,50,52,56,50,49,52,93,44,91,45,57,51,46,55,53,56,52,54,51,44,51,57,46,50,48,55,48,50,49,93,44,91,45,57,52,46,48,50,56,56,50,50,44,51,57,46,49,57,49,53,57,53,93,44,91,45,57,52,46,49,48,52,56,50,51,44,51,57,46,49,52,51,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,87,105,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,51,51,54,44,34,98,101,100,115,34,58,50,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,50,56,52,52,52,44,51,53,46,56,54,55,50,48,56,93,44,91,45,55,56,46,49,57,50,49,49,55,44,51,53,46,55,51,48,53,52,53,93,44,91,45,55,56,46,49,50,53,53,51,57,44,51,53,46,54,48,51,49,48,55,93,44,91,45,55,56,46,48,54,52,55,56,52,44,51,53,46,53,56,53,50,54,51,93,44,91,45,55,55,46,56,50,50,53,49,49,44,51,53,46,53,56,53,51,56,51,93,44,91,45,55,55,46,55,48,48,54,57,50,44,51,53,46,54,53,50,50,57,53,93,44,91,45,55,55,46,54,54,53,49,51,49,44,51,53,46,54,55,52,57,51,53,93,44,91,45,55,55,46,55,53,49,51,51,57,44,51,53,46,56,50,55,55,57,52,93,44,91,45,55,55,46,56,50,56,52,52,52,44,51,53,46,56,54,55,50,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,111,114,114,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,57,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,50,55,49,54,52,44,52,48,46,55,49,49,50,48,51,93,44,91,45,56,50,46,56,53,56,51,48,50,44,52,48,46,55,48,53,48,49,57,93,44,91,45,56,50,46,57,53,55,56,49,55,44,52,48,46,54,52,53,49,52,56,93,44,91,45,56,50,46,57,53,56,52,48,49,44,52,48,46,52,57,48,54,54,52,93,44,91,45,56,51,46,48,50,48,55,57,56,44,52,48,46,52,51,51,55,57,53,93,44,91,45,56,50,46,57,50,57,53,56,56,44,52,48,46,51,53,56,49,50,51,93,44,91,45,56,50,46,55,52,52,57,51,49,44,52,48,46,51,52,57,54,48,51,93,44,91,45,56,50,46,54,52,54,53,48,51,44,52,48,46,51,52,53,48,55,54,93,44,91,45,56,50,46,54,50,51,54,48,57,44,52,48,46,53,52,57,56,55,57,93,44,91,45,56,50,46,54,50,55,55,54,55,44,52,48,46,55,48,57,51,53,50,93,44,91,45,56,50,46,55,50,55,49,54,52,44,52,48,46,55,49,49,50,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,71,114,97,110,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,56,50,55,55,52,51,44,52,54,46,54,54,48,56,57,54,93,44,91,45,49,49,51,46,56,55,52,54,53,49,44,52,54,46,53,48,56,51,50,57,93,44,91,45,49,49,51,46,55,56,50,48,51,50,44,52,54,46,51,53,57,53,49,56,93,44,91,45,49,49,51,46,55,53,51,50,52,54,44,52,54,46,49,49,50,56,93,44,91,45,49,49,51,46,54,52,56,51,53,56,44,52,53,46,57,54,53,48,51,56,93,44,91,45,49,49,51,46,53,49,55,52,48,57,44,52,53,46,57,52,48,48,56,57,93,44,91,45,49,49,51,46,50,55,56,48,49,50,44,52,54,46,48,52,53,50,54,56,93,44,91,45,49,49,51,46,50,56,52,53,51,50,44,52,54,46,50,50,50,55,56,51,93,44,91,45,49,49,51,46,48,51,54,56,50,53,44,52,54,46,50,54,54,56,50,54,93,44,91,45,49,49,51,46,48,51,56,55,48,50,44,52,54,46,55,51,53,53,52,93,44,91,45,49,49,51,46,49,49,53,54,49,52,44,52,54,46,55,49,51,51,56,55,93,44,91,45,49,49,51,46,51,48,50,57,48,51,44,52,54,46,56,51,50,49,53,57,93,44,91,45,49,49,51,46,52,49,54,53,57,57,44,52,54,46,56,51,50,49,49,51,93,44,91,45,49,49,51,46,52,55,57,56,53,54,44,52,54,46,55,52,52,55,49,52,93,44,91,45,49,49,51,46,56,50,55,55,52,51,44,52,54,46,54,54,48,56,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,70,111,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,48,48,48,56,53,44,52,55,46,53,56,55,50,50,56,93,44,91,45,57,57,46,50,54,53,55,57,56,44,52,55,46,53,56,55,54,93,44,91,45,57,57,46,50,54,54,50,49,53,44,52,55,46,51,50,54,57,57,57,93,44,91,45,57,56,46,52,57,57,50,52,54,44,52,55,46,51,50,54,53,51,56,93,44,91,45,57,56,46,53,48,48,48,56,53,44,52,55,46,53,56,55,50,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,52,55,50,44,34,98,101,100,115,34,58,49,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,55,50,54,52,55,44,51,53,46,54,51,56,53,53,54,93,44,91,45,57,52,46,52,51,49,48,52,53,44,51,53,46,51,57,51,55,51,53,93,44,91,45,57,52,46,50,56,57,51,51,50,44,51,53,46,51,52,53,50,49,49,93,44,91,45,57,52,46,48,55,52,56,57,53,44,51,53,46,52,52,53,52,48,51,93,44,91,45,57,52,46,48,50,56,57,57,55,44,51,53,46,53,48,56,48,51,53,93,44,91,45,57,52,46,48,55,51,57,53,56,44,51,53,46,54,54,50,52,54,51,93,44,91,45,57,51,46,57,56,52,50,48,52,44,51,53,46,54,54,48,55,56,51,93,44,91,45,57,51,46,57,49,48,56,51,54,44,51,53,46,55,53,57,55,53,50,93,44,91,45,57,51,46,57,54,50,56,57,50,44,51,53,46,55,54,48,57,51,93,44,91,45,57,52,46,52,57,51,49,51,44,51,53,46,55,53,57,49,54,55,93,44,91,45,57,52,46,52,55,50,54,52,55,44,51,53,46,54,51,56,53,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,66,117,114,110,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,53,48,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,52,53,55,56,50,44,51,48,46,57,50,49,52,51,57,93,44,91,45,57,56,46,51,57,51,54,52,54,44,51,48,46,56,52,50,57,54,93,44,91,45,57,56,46,52,49,56,53,57,52,44,51,48,46,54,52,53,57,50,54,93,44,91,45,57,56,46,51,53,49,48,52,49,44,51,48,46,52,56,54,48,57,54,93,44,91,45,57,56,46,49,50,53,53,53,54,44,51,48,46,52,50,54,49,56,54,93,44,91,45,57,56,46,48,52,57,56,56,54,44,51,48,46,54,50,52,49,53,53,93,44,91,45,57,55,46,57,54,50,56,54,44,51,48,46,55,56,53,54,52,49,93,44,91,45,57,55,46,56,50,56,53,49,50,44,51,48,46,57,48,54,49,56,56,93,44,91,45,57,55,46,57,49,49,54,56,52,44,51,49,46,48,51,52,57,49,57,93,44,91,45,57,56,46,52,51,57,54,56,55,44,51,49,46,48,50,57,53,51,55,93,44,91,45,57,56,46,52,52,53,55,56,50,44,51,48,46,57,50,49,52,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,54,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,54,34,44,34,78,65,77,69,34,58,34,83,116,101,46,32,71,101,110,101,118,105,101,118,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,55,49,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,49,54,48,50,50,44,51,56,46,48,52,50,51,49,53,93,44,91,45,57,48,46,51,50,50,56,55,44,51,55,46,57,56,49,55,51,49,93,44,91,45,57,48,46,52,53,57,49,51,51,44,51,55,46,56,55,56,57,50,52,93,44,91,45,57,48,46,50,48,48,50,48,56,44,51,55,46,54,54,57,54,50,56,93,44,91,45,57,48,46,49,49,48,53,51,55,44,51,55,46,54,55,49,51,52,93,44,91,45,56,57,46,57,51,56,54,48,56,44,51,55,46,56,55,52,51,48,52,93,44,91,45,56,57,46,57,56,56,49,48,56,44,51,55,46,57,54,49,55,52,57,93,44,91,45,57,48,46,50,48,53,50,48,53,44,51,56,46,48,56,54,57,48,55,93,44,91,45,57,48,46,50,53,50,54,54,54,44,51,56,46,49,50,55,56,49,50,93,44,91,45,57,48,46,52,49,54,48,50,50,44,51,56,46,48,52,50,51,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,71,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,56,53,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,56,54,50,56,49,44,51,53,46,49,56,50,49,52,93,44,91,45,49,48,48,46,53,51,56,57,55,56,44,51,53,46,49,56,51,49,52,52,93,44,91,45,49,48,48,46,53,52,48,49,53,56,44,51,53,46,54,49,57,50,57,54,93,44,91,45,49,48,49,46,48,56,53,57,51,53,44,51,53,46,54,49,57,49,48,50,93,44,91,45,49,48,49,46,48,56,54,50,56,49,44,51,53,46,49,56,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,77,99,68,111,110,111,117,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,55,53,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,48,52,50,49,54,44,52,48,46,54,51,57,50,48,49,93,44,91,45,57,48,46,57,48,57,55,53,54,44,52,48,46,50,56,52,51,57,52,93,44,91,45,57,48,46,52,53,48,50,50,55,44,52,48,46,50,55,54,51,51,53,93,44,91,45,57,48,46,52,52,53,54,50,55,44,52,48,46,54,50,55,54,51,56,93,44,91,45,57,48,46,55,56,57,54,53,50,44,52,48,46,54,51,53,55,53,93,44,91,45,57,48,46,57,48,52,50,49,54,44,52,48,46,54,51,57,50,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,53,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,56,52,51,52,57,44,52,49,46,49,54,48,48,49,49,93,44,91,45,57,53,46,51,56,52,57,54,52,44,52,48,46,57,48,49,53,53,93,44,91,45,57,52,46,57,50,56,52,53,57,44,52,48,46,57,48,48,54,53,51,93,44,91,45,57,52,46,57,50,55,53,56,55,44,52,49,46,49,53,56,53,48,56,93,44,91,45,57,53,46,49,53,53,56,53,49,44,52,49,46,49,53,57,50,51,54,93,44,91,45,57,53,46,51,56,52,51,52,57,44,52,49,46,49,54,48,48,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,50,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,57,56,53,53,54,44,51,53,46,56,57,48,48,50,52,93,44,91,45,57,49,46,51,53,54,50,52,54,44,51,53,46,55,48,49,49,48,55,93,44,91,45,57,49,46,51,54,57,53,55,44,51,53,46,53,50,54,51,54,50,93,44,91,45,57,49,46,53,56,49,56,56,44,51,53,46,53,51,48,52,52,55,93,44,91,45,57,49,46,53,56,52,54,56,55,44,51,53,46,52,52,50,51,49,49,93,44,91,45,57,49,46,51,52,55,50,53,55,44,51,53,46,52,51,57,49,48,54,93,44,91,45,57,49,46,50,53,49,53,53,53,44,51,53,46,51,53,55,53,54,49,93,44,91,45,57,49,46,48,51,57,55,56,51,44,51,53,46,51,53,52,50,53,54,93,44,91,45,57,49,46,48,51,57,50,51,44,51,53,46,52,52,52,55,49,55,93,44,91,45,57,49,46,48,51,54,57,54,55,44,51,53,46,55,48,56,52,49,56,93,44,91,45,57,49,46,48,51,50,52,57,57,44,51,53,46,56,56,53,48,55,93,44,91,45,57,49,46,49,57,56,53,53,54,44,51,53,46,56,57,48,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,57,34,44,34,78,65,77,69,34,58,34,72,117,100,115,112,101,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,57,57,56,48,49,50,44,51,50,46,48,48,50,51,55,55,93,44,91,45,49,48,53,46,57,57,55,49,53,50,44,51,49,46,51,56,55,50,51,93,44,91,45,49,48,53,46,56,54,57,50,57,52,44,51,49,46,50,56,56,57,53,53,93,44,91,45,49,48,53,46,55,55,52,48,50,56,44,51,49,46,49,54,56,52,55,52,93,44,91,45,49,48,53,46,54,52,56,56,51,57,44,51,49,46,49,49,53,56,55,55,93,44,91,45,49,48,53,46,53,53,55,50,50,54,44,51,48,46,57,56,57,54,55,51,93,44,91,45,49,48,53,46,51,56,54,55,50,52,44,51,48,46,56,53,51,51,48,54,93,44,91,45,49,48,53,46,50,49,55,55,56,51,44,51,48,46,56,48,53,57,52,54,93,44,91,45,49,48,52,46,57,55,57,56,48,49,44,51,48,46,54,50,57,50,53,56,93,44,91,45,49,48,52,46,57,49,55,49,54,51,44,51,48,46,54,54,51,54,50,54,93,44,91,45,49,48,52,46,57,48,57,49,50,52,44,51,49,46,50,52,54,54,48,57,93,44,91,45,49,48,52,46,57,49,56,51,53,55,44,51,50,46,48,48,48,52,49,56,93,44,91,45,49,48,53,46,57,57,56,48,49,50,44,51,50,46,48,48,50,51,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,82,97,112,105,100,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,53,52,54,44,34,98,101,100,115,34,58,49,49,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,57,54,49,51,49,44,51,49,46,52,55,55,56,55,55,93,44,91,45,57,50,46,54,51,49,57,52,52,44,51,49,46,51,57,48,52,55,56,93,44,91,45,57,50,46,55,49,56,57,56,51,44,51,49,46,53,49,55,53,57,52,93,44,91,45,57,50,46,57,49,51,48,49,57,44,51,49,46,51,54,56,50,51,54,93,44,91,45,57,50,46,57,56,49,52,54,52,44,51,49,46,51,52,54,54,52,52,93,44,91,45,57,50,46,56,50,57,54,53,49,44,51,49,46,50,53,50,50,56,49,93,44,91,45,57,50,46,56,50,51,57,51,50,44,51,48,46,56,57,93,44,91,45,57,50,46,53,57,55,55,52,49,44,51,48,46,56,57,54,49,48,49,93,44,91,45,57,50,46,53,50,52,54,52,54,44,51,48,46,56,57,51,51,50,56,93,44,91,45,57,50,46,51,56,48,56,52,51,44,51,49,46,48,48,48,57,50,57,93,44,91,45,57,50,46,50,56,48,55,51,56,44,51,48,46,57,54,53,48,55,49,93,44,91,45,57,50,46,50,48,56,55,56,53,44,51,48,46,57,54,52,55,51,52,93,44,91,45,57,50,46,50,51,51,50,51,44,51,49,46,51,50,49,53,52,53,93,44,91,45,57,50,46,48,56,54,55,49,56,44,51,49,46,51,51,53,51,55,52,93,44,91,45,57,50,46,49,57,54,49,51,49,44,51,49,46,52,55,55,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,52,51,51,44,34,98,101,100,115,34,58,49,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,52,57,57,55,53,44,52,49,46,48,48,51,57,53,93,44,91,45,49,48,49,46,50,52,55,57,54,51,44,52,48,46,54,57,55,56,48,50,93,44,91,45,49,48,48,46,55,55,55,56,51,51,44,52,48,46,55,48,48,49,51,53,93,44,91,45,49,48,48,46,50,50,51,51,49,49,44,52,48,46,55,48,48,50,53,52,93,44,91,45,49,48,48,46,50,50,52,50,51,53,44,52,49,46,48,52,54,53,57,55,93,44,91,45,49,48,48,46,50,53,49,48,57,56,44,52,49,46,51,57,51,50,57,56,93,44,91,45,49,48,48,46,55,49,51,50,52,51,44,52,49,46,51,57,51,53,49,49,93,44,91,45,49,48,49,46,50,54,57,54,57,53,44,52,49,46,51,57,52,57,51,52,93,44,91,45,49,48,49,46,50,55,48,51,56,49,44,52,49,46,48,52,55,51,57,50,93,44,91,45,49,48,49,46,50,52,57,57,55,53,44,52,49,46,48,48,51,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,53,50,50,54,44,51,51,46,50,54,56,56,54,49,93,44,91,45,57,52,46,54,53,51,57,57,52,44,51,50,46,56,55,57,53,48,54,93,44,91,45,57,52,46,48,52,51,48,55,56,44,51,50,46,56,56,49,48,56,57,93,44,91,45,57,52,46,48,52,50,57,54,52,44,51,51,46,48,49,57,50,49,57,93,44,91,45,57,52,46,48,52,50,57,56,55,44,51,51,46,50,55,49,50,52,50,93,44,91,45,57,52,46,50,49,56,55,55,55,44,51,51,46,50,57,54,52,48,50,93,44,91,45,57,52,46,50,51,49,51,51,51,44,51,51,46,50,52,49,48,55,51,93,44,91,45,57,52,46,52,54,56,52,52,50,44,51,51,46,50,57,52,51,49,51,93,44,91,45,57,52,46,54,53,50,50,54,44,51,51,46,50,54,56,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,55,57,44,34,98,101,100,115,34,58,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,49,54,52,48,51,44,51,54,46,53,48,49,53,56,51,93,44,91,45,56,56,46,53,51,48,51,50,50,44,51,54,46,49,53,50,48,50,51,93,44,91,45,56,56,46,50,49,50,53,53,57,44,51,54,46,49,50,48,50,57,93,44,91,45,56,55,46,57,57,48,57,50,44,51,54,46,51,54,48,49,51,51,93,44,91,45,56,56,46,48,53,51,50,57,51,44,51,54,46,52,57,55,48,53,56,93,44,91,45,56,56,46,52,56,57,48,55,53,44,51,54,46,53,48,49,49,53,55,93,44,91,45,56,56,46,53,49,54,52,48,51,44,51,54,46,53,48,49,53,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,56,52,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,56,52,48,34,44,34,78,65,77,69,34,58,34,87,105,110,99,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,55,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,48,48,52,57,55,44,51,57,46,49,56,48,49,54,51,93,44,91,45,55,56,46,49,55,49,54,50,44,51,57,46,49,52,51,49,55,52,93,44,91,45,55,56,46,49,52,56,56,57,53,44,51,57,46,49,55,53,51,53,50,93,44,91,45,55,56,46,50,48,48,52,57,55,44,51,57,46,49,56,48,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,68,117,112,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,48,54,50,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,54,51,52,50,44,51,53,46,49,56,57,55,49,54,93,44,91,45,55,56,46,49,52,55,49,50,57,44,51,52,46,57,48,50,53,48,54,93,44,91,45,55,56,46,49,57,56,54,52,50,44,51,52,46,55,52,49,54,51,55,93,44,91,45,55,56,46,49,49,52,48,48,55,44,51,52,46,55,50,49,55,57,53,93,44,91,45,55,55,46,54,56,48,49,50,55,44,51,52,46,55,50,48,53,57,53,93,44,91,45,55,55,46,54,53,49,48,52,53,44,51,52,46,57,50,51,51,52,49,93,44,91,45,55,55,46,54,55,52,56,48,53,44,51,52,46,57,55,51,57,93,44,91,45,55,55,46,55,51,49,48,50,54,44,51,53,46,48,48,56,49,51,56,93,44,91,45,55,55,46,55,54,57,49,55,55,44,51,53,46,49,52,53,53,55,54,93,44,91,45,55,55,46,56,51,52,50,52,57,44,51,53,46,49,55,55,56,52,54,93,44,91,45,55,56,46,49,54,51,52,50,44,51,53,46,49,56,57,55,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,72,97,121,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,52,51,51,44,34,98,101,100,115,34,58,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,53,52,50,53,55,44,51,53,46,54,57,53,53,57,51,93,44,91,45,56,51,46,49,56,50,57,57,57,44,51,53,46,54,55,48,54,50,53,93,44,91,45,56,51,46,49,56,54,51,50,50,44,51,53,46,53,49,52,51,54,56,93,44,91,45,56,50,46,57,50,48,56,56,49,44,51,53,46,50,57,50,48,51,55,93,44,91,45,56,50,46,56,51,50,50,52,52,44,51,53,46,51,49,56,51,50,52,93,44,91,45,56,50,46,55,52,53,49,51,57,44,51,53,46,52,50,50,57,54,55,93,44,91,45,56,50,46,55,54,53,56,57,51,44,51,53,46,53,54,55,52,57,53,93,44,91,45,56,50,46,56,56,51,57,48,57,44,51,53,46,54,55,56,50,51,53,93,44,91,45,56,50,46,57,54,49,55,53,52,44,51,53,46,55,57,48,57,53,57,93,44,91,45,56,51,46,48,55,51,57,49,56,44,51,53,46,55,57,48,48,53,53,93,44,91,45,56,51,46,50,53,53,51,52,51,44,51,53,46,55,49,53,48,56,52,93,44,91,45,56,51,46,50,53,52,50,53,55,44,51,53,46,54,57,53,53,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,56,50,48,49,44,34,98,101,100,115,34,58,50,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,50,57,54,49,53,44,52,52,46,55,57,49,48,56,54,93,44,91,45,57,51,46,50,56,49,53,50,49,44,52,52,46,53,52,51,57,53,55,93,44,91,45,57,51,46,50,56,49,54,56,54,44,52,52,46,52,55,49,57,57,56,93,44,91,45,57,51,46,48,51,57,52,56,53,44,52,52,46,52,55,49,56,55,49,93,44,91,45,57,50,46,57,49,56,57,55,55,44,52,52,46,53,52,51,50,53,93,44,91,45,57,50,46,55,57,50,55,49,53,44,52,52,46,53,52,51,50,52,93,44,91,45,57,50,46,55,51,50,48,52,51,44,52,52,46,55,49,52,51,52,53,93,44,91,45,57,50,46,56,48,50,48,49,55,44,52,52,46,55,52,53,54,55,51,93,44,91,45,57,51,46,48,48,53,57,55,56,44,52,52,46,55,55,49,54,56,53,93,44,91,45,57,51,46,48,50,48,48,52,52,44,52,52,46,56,57,48,55,53,93,44,91,45,57,51,46,49,55,56,53,51,57,44,52,52,46,56,56,56,51,51,56,93,44,91,45,57,51,46,51,50,57,54,49,53,44,52,52,46,55,57,49,48,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,72,97,114,110,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,56,57,54,53,56,49,44,52,51,46,54,49,49,49,54,52,93,44,91,45,49,49,57,46,56,57,54,57,54,57,44,52,51,46,49,55,57,48,49,55,93,44,91,45,49,49,57,46,57,51,50,54,49,49,44,52,51,46,49,55,56,57,54,51,93,44,91,45,49,49,57,46,57,52,51,55,55,57,44,52,50,46,55,52,54,51,55,49,93,44,91,45,49,49,57,46,51,54,53,51,51,55,44,52,50,46,55,52,56,57,53,56,93,44,91,45,49,49,57,46,51,54,48,49,50,50,44,52,49,46,57,57,52,50,55,56,93,44,91,45,49,49,57,46,51,50,52,49,56,52,44,52,49,46,57,57,51,57,50,51,93,44,91,45,49,49,56,46,49,57,55,51,55,49,44,52,49,46,57,57,55,51,52,52,93,44,91,45,49,49,56,46,50,49,52,54,57,56,44,52,50,46,50,55,53,56,57,49,93,44,91,45,49,49,56,46,50,50,56,55,57,51,44,52,50,46,57,49,52,54,50,53,93,44,91,45,49,49,56,46,50,50,55,54,52,53,44,52,52,46,48,51,57,56,54,50,93,44,91,45,49,49,56,46,56,49,54,56,57,44,52,52,46,48,52,55,56,50,56,93,44,91,45,49,49,56,46,56,49,54,57,51,49,44,52,51,46,57,54,48,55,51,51,93,44,91,45,49,49,57,46,54,53,55,49,56,51,44,52,51,46,57,53,56,57,50,93,44,91,45,49,49,57,46,55,55,53,52,48,50,44,52,51,46,57,53,57,48,56,54,93,44,91,45,49,49,57,46,55,55,55,53,50,56,44,52,51,46,54,57,55,57,53,55,93,44,91,45,49,49,57,46,56,57,55,52,51,52,44,52,51,46,54,57,56,50,93,44,91,45,49,49,57,46,56,57,54,53,56,49,44,52,51,46,54,49,49,49,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,97,117,110,97,98,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,56,56,53,50,51,44,49,56,46,48,53,56,57,52,49,93,44,91,45,54,53,46,56,55,51,50,57,57,44,49,55,46,57,51,55,57,53,53,93,44,91,45,54,53,46,56,49,54,52,52,57,44,49,55,46,57,54,53,53,48,52,93,44,91,45,54,53,46,56,54,55,56,48,50,44,49,56,46,48,50,54,48,48,55,93,44,91,45,54,53,46,57,56,56,53,50,51,44,49,56,46,48,53,56,57,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,48,50,55,56,51,44,52,52,46,50,52,57,52,55,51,93,44,91,45,57,48,46,48,50,53,57,53,51,44,52,52,46,48,57,49,55,52,56,93,44,91,45,56,57,46,57,54,50,54,48,49,44,52,51,46,57,55,57,50,51,54,93,44,91,45,56,57,46,57,54,49,50,50,49,44,52,51,46,56,54,52,48,50,55,93,44,91,45,56,57,46,56,54,53,49,51,50,44,52,51,46,55,56,51,52,49,52,93,44,91,45,56,57,46,55,56,52,57,48,49,44,52,51,46,54,52,49,48,53,49,93,44,91,45,56,57,46,53,57,57,53,52,55,44,52,51,46,54,52,50,54,51,54,93,44,91,45,56,57,46,53,57,55,57,53,44,52,51,46,57,56,50,49,93,44,91,45,56,57,46,53,57,55,57,56,44,52,52,46,50,52,53,55,50,53,93,44,91,45,56,57,46,55,50,52,55,52,54,44,52,52,46,50,52,55,54,55,56,93,44,91,45,56,57,46,57,48,50,55,56,51,44,52,52,46,50,52,57,52,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,52,51,49,49,50,44,52,48,46,54,48,53,56,50,55,93,44,91,45,57,49,46,57,52,57,55,52,55,44,52,48,46,51,48,48,56,51,50,93,44,91,45,57,49,46,57,53,48,56,49,50,44,52,48,46,50,53,55,50,49,93,44,91,45,57,49,46,52,57,55,50,54,54,44,52,48,46,50,52,56,55,54,51,93,44,91,45,57,49,46,52,49,57,52,50,50,44,52,48,46,51,55,56,50,54,52,93,44,91,45,57,49,46,52,56,51,49,53,51,44,52,48,46,51,56,50,52,57,50,93,44,91,45,57,49,46,55,49,54,55,54,57,44,52,48,46,53,57,56,53,51,93,44,91,45,57,49,46,57,52,51,49,49,50,44,52,48,46,54,48,53,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,48,57,53,44,34,98,101,100,115,34,58,50,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,50,48,49,53,55,44,51,57,46,49,48,53,52,56,57,93,44,91,45,56,52,46,56,55,55,54,50,52,44,51,57,46,48,51,49,50,49,51,93,44,91,45,56,52,46,56,55,48,55,52,57,44,51,56,46,57,48,48,57,48,53,93,44,91,45,56,52,46,55,57,53,48,51,57,44,51,56,46,56,53,55,50,55,93,44,91,45,56,52,46,54,54,48,49,48,55,44,51,56,46,55,55,55,50,57,51,93,44,91,45,56,52,46,54,49,53,54,54,52,44,51,56,46,56,48,50,50,55,55,93,44,91,45,56,52,46,54,50,51,52,56,56,44,51,57,46,48,55,52,50,56,50,93,44,91,45,56,52,46,55,53,48,51,52,53,44,51,57,46,49,52,55,54,50,50,93,44,91,45,56,52,46,56,50,48,49,53,55,44,51,57,46,49,48,53,52,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,53,50,55,57,55,44,51,55,46,56,57,55,54,54,49,93,44,91,45,56,53,46,50,57,48,50,56,52,44,51,55,46,56,51,49,49,56,50,93,44,91,45,56,53,46,52,48,49,55,56,52,44,51,55,46,55,51,48,54,53,56,93,44,91,45,56,53,46,50,53,55,50,57,56,44,51,55,46,54,51,48,57,48,51,93,44,91,45,56,53,46,48,51,48,49,55,50,44,51,55,46,54,51,49,50,55,93,44,91,45,56,53,46,48,50,53,48,50,49,44,51,55,46,54,55,56,56,53,52,93,44,91,45,56,53,46,48,51,48,53,50,56,44,51,55,46,56,57,49,53,51,56,93,44,91,45,56,53,46,49,53,50,55,57,55,44,51,55,46,56,57,55,54,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,118,111,121,101,108,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,56,56,50,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,56,54,55,49,56,44,51,49,46,51,51,53,51,55,52,93,44,91,45,57,50,46,50,51,51,50,51,44,51,49,46,51,50,49,53,52,53,93,44,91,45,57,50,46,50,48,56,55,56,53,44,51,48,46,57,54,52,55,51,52,93,44,91,45,57,50,46,50,56,48,55,51,56,44,51,48,46,57,54,53,48,55,49,93,44,91,45,57,50,46,50,49,50,55,49,49,44,51,48,46,56,52,56,54,48,55,93,44,91,45,57,49,46,56,49,53,50,53,56,44,51,48,46,56,52,56,49,48,55,93,44,91,45,57,49,46,56,48,53,57,54,51,44,51,48,46,57,55,50,53,53,56,93,44,91,45,57,49,46,55,53,48,49,49,57,44,51,49,46,48,49,56,56,49,52,93,44,91,45,57,49,46,55,50,51,56,48,52,44,51,49,46,48,52,52,50,53,52,93,44,91,45,57,49,46,54,55,55,51,48,50,44,51,49,46,49,56,56,48,52,55,93,44,91,45,57,49,46,56,51,52,50,56,44,51,49,46,50,54,54,51,52,52,93,44,91,45,57,50,46,48,48,56,49,50,49,44,51,49,46,51,50,53,55,57,55,93,44,91,45,57,50,46,48,56,54,55,49,56,44,51,49,46,51,51,53,51,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,84,97,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,50,51,52,52,50,44,51,52,46,55,55,50,51,49,49,93,44,91,45,56,57,46,57,48,56,53,56,55,44,51,52,46,55,55,50,54,52,49,93,44,91,45,57,48,46,48,50,57,49,52,52,44,51,52,46,55,48,56,49,55,54,93,44,91,45,57,48,46,50,48,48,49,57,57,44,51,52,46,55,50,52,52,49,56,93,44,91,45,57,48,46,50,52,51,57,50,52,44,51,52,46,54,48,50,49,53,93,44,91,45,57,48,46,49,57,56,54,51,49,44,51,52,46,53,53,52,52,50,53,93,44,91,45,56,57,46,55,50,49,51,52,49,44,51,52,46,53,53,52,50,55,52,93,44,91,45,56,57,46,54,54,56,52,52,56,44,51,52,46,53,53,52,51,54,55,93,44,91,45,56,57,46,54,54,57,49,54,44,51,52,46,54,56,53,55,56,54,93,44,91,45,56,57,46,55,50,51,52,52,50,44,51,52,46,55,55,50,51,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,55,34,44,34,78,65,77,69,34,58,34,87,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,51,50,50,52,44,52,48,46,53,55,49,57,48,49,93,44,91,45,57,52,46,52,55,49,50,49,51,44,52,48,46,53,55,48,56,50,53,93,44,91,45,57,52,46,54,51,50,48,51,44,52,48,46,53,55,49,51,54,55,93,44,91,45,57,52,46,53,57,56,52,56,55,44,52,48,46,51,56,54,55,49,52,93,44,91,45,57,52,46,50,49,52,50,55,56,44,52,48,46,51,56,52,50,53,52,93,44,91,45,57,52,46,50,51,50,50,52,44,52,48,46,53,55,49,57,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,83,104,101,114,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,52,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,53,49,53,53,56,44,52,49,46,51,57,52,48,56,52,93,44,91,45,57,57,46,50,48,51,50,54,49,44,52,49,46,51,57,52,49,52,93,44,91,45,57,57,46,50,48,55,53,54,52,44,52,49,46,48,52,55,48,48,51,93,44,91,45,57,56,46,55,52,56,53,50,54,44,52,49,46,48,52,54,54,52,93,44,91,45,57,56,46,55,52,52,51,51,44,52,49,46,51,57,52,49,55,56,93,44,91,45,57,56,46,55,53,49,53,53,56,44,52,49,46,51,57,52,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,97,109,112,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,52,57,57,51,55,49,44,52,53,46,57,52,51,54,53,51,93,44,91,45,49,48,48,46,51,56,55,48,51,54,44,52,53,46,56,54,57,49,52,50,93,44,91,45,49,48,48,46,51,48,57,48,49,51,44,52,53,46,55,48,55,56,52,50,93,44,91,45,49,48,48,46,52,51,48,48,55,57,44,52,53,46,53,57,52,56,50,51,93,44,91,45,57,57,46,55,49,55,52,54,54,44,52,53,46,53,57,51,52,50,56,93,44,91,45,57,57,46,55,49,56,48,55,49,44,52,53,46,57,52,48,56,56,51,93,44,91,45,57,57,46,56,56,48,48,54,44,52,53,46,57,52,49,52,50,51,93,44,91,45,49,48,48,46,52,57,57,51,55,49,44,52,53,46,57,52,51,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,52,49,57,52,44,52,53,46,56,56,49,57,55,53,93,44,91,45,49,48,52,46,48,52,48,48,48,52,44,52,53,46,50,49,50,56,57,49,93,44,91,45,49,48,50,46,57,53,55,50,56,49,44,52,53,46,50,49,50,56,53,49,93,44,91,45,49,48,50,46,57,52,50,48,55,44,52,53,46,57,52,53,93,44,91,45,49,48,50,46,57,57,53,50,52,56,44,52,53,46,57,52,53,49,54,55,93,44,91,45,49,48,52,46,48,52,53,53,52,55,44,52,53,46,57,52,53,51,48,56,93,44,91,45,49,48,52,46,48,52,52,49,57,52,44,52,53,46,56,56,49,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,71,114,97,116,105,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,48,54,55,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,52,53,57,54,50,44,52,51,46,52,54,54,49,53,56,93,44,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,44,91,45,56,52,46,51,54,55,55,54,44,52,51,46,49,49,55,57,52,50,93,44,91,45,56,52,46,51,54,55,56,57,49,44,52,51,46,49,50,56,52,53,50,93,44,91,45,56,52,46,51,54,57,56,55,54,44,52,51,46,52,54,54,48,52,52,93,44,91,45,56,52,46,54,48,55,53,52,44,52,51,46,52,54,54,48,48,54,93,44,91,45,56,52,46,56,52,53,57,54,50,44,52,51,46,52,54,54,49,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,55,48,54,48,51,44,52,49,46,49,53,55,53,54,54,93,44,91,45,57,52,46,52,55,48,55,55,57,44,52,48,46,56,57,57,53,48,50,93,44,91,45,57,52,46,48,49,52,56,48,51,44,52,48,46,56,57,55,48,51,49,93,44,91,45,57,52,46,48,49,52,49,56,57,44,52,49,46,49,53,54,55,54,50,93,44,91,45,57,52,46,50,52,49,54,51,55,44,52,49,46,49,53,55,49,51,52,93,44,91,45,57,52,46,52,55,48,54,48,51,44,52,49,46,49,53,55,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,77,97,115,115,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,49,48,55,51,56,44,51,55,46,51,51,55,48,56,49,93,44,91,45,56,56,46,57,50,56,55,53,55,44,51,55,46,51,48,50,56,52,56,93,44,91,45,56,56,46,57,50,55,56,57,44,51,55,46,50,50,54,51,52,50,93,44,91,45,56,56,46,53,54,54,48,54,49,44,51,55,46,48,55,53,50,48,52,93,44,91,45,56,56,46,52,57,48,52,49,49,44,51,55,46,48,54,56,53,55,57,93,44,91,45,56,56,46,52,57,48,51,51,44,51,55,46,49,53,57,52,54,50,93,44,91,45,56,56,46,55,49,48,55,51,56,44,51,55,46,51,51,55,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,49,51,50,52,51,44,52,49,46,51,57,51,53,49,49,93,44,91,45,49,48,48,46,50,53,49,48,57,56,44,52,49,46,51,57,51,50,57,56,93,44,91,45,49,48,48,46,50,53,49,50,50,52,44,52,49,46,55,51,57,56,49,55,93,44,91,45,49,48,48,46,50,54,53,52,55,52,44,52,49,46,55,51,57,56,53,54,93,44,91,45,49,48,48,46,55,49,49,55,49,49,44,52,49,46,55,51,57,55,54,49,93,44,91,45,49,48,48,46,55,49,51,50,52,51,44,52,49,46,51,57,51,53,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,101,114,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,48,51,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,56,54,53,56,52,44,52,49,46,51,57,51,56,57,56,93,44,91,45,57,56,46,50,56,55,49,54,56,44,52,49,46,48,52,54,51,54,51,93,44,91,45,57,56,46,50,56,50,53,55,56,44,52,48,46,56,54,56,54,55,55,93,44,91,45,57,56,46,48,49,48,53,52,56,44,52,49,46,48,55,50,55,54,49,93,44,91,45,57,55,46,56,50,56,50,53,54,44,52,49,46,49,55,51,52,51,57,93,44,91,45,57,55,46,53,57,56,50,53,51,44,52,49,46,51,51,51,49,49,57,93,44,91,45,57,55,46,55,48,51,55,54,53,44,52,49,46,51,57,52,56,55,54,93,44,91,45,57,55,46,55,48,53,52,57,55,44,52,49,46,51,48,57,49,51,52,93,44,91,45,57,56,46,48,53,51,49,51,55,44,52,49,46,50,57,51,49,50,51,93,44,91,45,57,56,46,50,55,53,52,48,56,44,52,49,46,50,54,52,51,52,49,93,44,91,45,57,56,46,50,56,54,53,56,52,44,52,49,46,51,57,51,56,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,83,104,101,114,105,100,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,51,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,56,50,53,52,54,44,52,50,46,57,57,57,51,53,54,93,44,91,45,49,48,50,46,55,57,50,49,49,49,44,52,50,46,57,57,57,57,56,93,44,91,45,49,48,50,46,55,55,51,51,54,57,44,52,50,46,55,56,53,50,54,53,93,44,91,45,49,48,50,46,55,55,51,51,54,54,44,52,50,46,52,51,57,57,50,50,93,44,91,45,49,48,50,46,55,52,50,50,54,57,44,52,50,46,48,57,50,51,56,56,93,44,91,45,49,48,50,46,54,57,55,56,51,53,44,52,50,46,48,48,52,56,52,51,93,44,91,45,49,48,50,46,54,55,55,53,56,50,44,52,50,46,48,48,53,50,56,50,93,44,91,45,49,48,50,46,48,54,54,54,53,44,52,50,46,48,48,57,49,57,53,93,44,91,45,49,48,50,46,48,48,54,50,48,52,44,52,50,46,48,57,54,51,51,56,93,44,91,45,49,48,50,46,48,52,48,50,56,44,52,50,46,48,57,54,55,52,52,93,44,91,45,49,48,50,46,48,54,54,54,56,57,44,52,50,46,52,52,51,52,54,51,93,44,91,45,49,48,50,46,48,56,50,53,52,54,44,52,50,46,57,57,57,51,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,97,114,108,105,115,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,49,53,57,53,50,44,51,54,46,57,53,52,49,93,44,91,45,56,56,46,57,56,57,55,57,55,44,51,54,46,57,49,57,51,51,93,44,91,45,56,57,46,49,48,48,56,54,52,44,51,54,46,57,52,52,48,49,54,93,44,91,45,56,57,46,49,50,51,53,51,49,44,51,54,46,55,56,53,50,49,55,93,44,91,45,56,56,46,56,49,51,50,50,57,44,51,54,46,55,55,51,49,49,53,93,44,91,45,56,56,46,56,49,50,56,57,55,44,51,54,46,57,52,54,56,54,52,93,44,91,45,56,56,46,56,49,53,57,53,50,44,51,54,46,57,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,78,97,116,114,111,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,54,49,48,44,34,98,101,100,115,34,58,51,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,53,50,50,57,50,51,44,52,50,46,52,51,52,51,53,54,93,44,91,45,49,48,54,46,54,53,52,55,56,49,44,52,50,46,52,51,49,48,57,52,93,44,91,45,49,48,54,46,48,55,53,56,53,50,44,52,50,46,52,51,51,50,49,56,93,44,91,45,49,48,54,46,48,55,56,48,54,56,44,52,51,46,52,57,52,52,55,49,93,44,91,45,49,48,54,46,53,57,52,56,57,55,44,52,51,46,52,57,49,52,55,93,44,91,45,49,48,55,46,49,49,48,55,51,52,44,52,51,46,53,48,48,50,56,54,93,44,91,45,49,48,55,46,53,51,52,56,57,55,44,52,51,46,53,48,49,51,54,50,93,44,91,45,49,48,55,46,53,49,55,48,51,49,44,52,51,46,52,55,50,54,53,57,93,44,91,45,49,48,55,46,53,48,49,52,50,53,44,52,50,46,55,56,49,52,53,56,93,44,91,45,49,48,55,46,53,52,51,53,50,54,44,52,50,46,55,56,49,53,53,56,93,44,91,45,49,48,55,46,53,50,50,57,50,51,44,52,50,46,52,51,52,51,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,49,34,44,34,78,65,77,69,34,58,34,87,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,49,56,52,48,52,44,51,49,46,54,53,48,50,55,52,93,44,91,45,56,51,46,57,57,55,55,57,54,44,51,49,46,52,52,51,55,53,51,93,44,91,45,56,51,46,57,57,57,52,51,44,51,49,46,51,51,52,57,54,54,93,44,91,45,56,51,46,54,53,52,48,57,44,51,49,46,51,51,48,54,54,49,93,44,91,45,56,51,46,54,52,57,51,56,52,44,51,49,46,53,54,55,57,55,55,93,44,91,45,56,51,46,55,57,54,56,52,54,44,51,49,46,54,50,50,57,50,57,93,44,91,45,56,51,46,56,48,50,55,50,51,44,51,49,46,56,48,51,53,55,57,93,44,91,45,56,51,46,57,51,57,52,51,55,44,51,49,46,56,52,55,57,50,57,93,44,91,45,56,52,46,48,50,53,54,50,51,44,51,49,46,55,49,48,48,50,50,93,44,91,45,56,52,46,48,49,56,52,48,52,44,51,49,46,54,53,48,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,55,50,55,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,53,54,54,53,44,51,57,46,54,48,49,51,57,53,93,44,91,45,56,54,46,54,56,53,55,49,44,51,57,46,52,55,48,48,54,51,93,44,91,45,56,54,46,54,51,48,56,49,56,44,51,57,46,51,52,54,57,52,56,93,44,91,45,56,54,46,51,56,49,51,57,53,44,51,57,46,51,51,57,55,53,50,93,44,91,45,56,54,46,50,53,49,54,56,52,44,51,57,46,51,52,49,54,55,50,93,44,91,45,56,54,46,50,52,57,56,56,53,44,51,57,46,54,51,51,54,52,53,93,44,91,45,56,54,46,51,50,54,51,52,49,44,51,57,46,54,51,50,49,55,55,93,44,91,45,56,54,46,52,54,53,54,48,53,44,51,57,46,54,48,48,55,54,57,93,44,91,45,56,54,46,54,53,54,54,53,44,51,57,46,54,48,49,51,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,69,108,108,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,56,51,56,44,34,98,101,100,115,34,58,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,50,57,57,56,55,44,51,50,46,53,52,53,50,56,50,93,44,91,45,57,55,46,48,51,56,51,56,53,44,51,50,46,53,52,56,54,54,50,93,44,91,45,57,55,46,48,56,54,56,51,52,44,51,50,46,53,52,57,52,50,56,93,44,91,45,57,55,46,48,56,54,49,57,49,44,51,50,46,50,54,53,52,53,49,93,44,91,45,57,54,46,57,52,48,54,53,54,44,51,50,46,48,53,50,48,56,55,93,44,91,45,57,54,46,56,57,54,50,48,57,44,51,50,46,48,55,51,57,55,55,93,44,91,45,57,54,46,51,56,51,48,56,50,44,51,50,46,51,50,56,56,53,49,93,44,91,45,57,54,46,52,53,50,49,51,56,44,51,50,46,51,53,56,54,51,49,93,44,91,45,57,54,46,52,51,53,50,51,51,44,51,50,46,52,48,56,57,56,54,93,44,91,45,57,54,46,53,50,57,57,56,55,44,51,50,46,53,52,53,50,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,57,34,44,34,78,65,77,69,34,58,34,80,105,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,50,54,53,56,53,44,51,49,46,53,51,48,54,57,57,93,44,91,45,56,50,46,51,52,52,56,52,51,44,51,49,46,52,51,48,49,51,93,44,91,45,56,50,46,52,49,55,50,52,54,44,51,49,46,52,49,55,49,49,57,93,44,91,45,56,50,46,51,56,51,55,48,53,44,51,49,46,50,57,49,49,52,51,93,44,91,45,56,50,46,50,56,52,53,54,49,44,51,49,46,50,50,52,52,52,57,93,44,91,45,56,50,46,49,57,52,56,50,52,44,51,49,46,50,48,55,53,57,93,44,91,45,56,50,46,48,57,50,55,50,44,51,49,46,50,55,54,49,49,57,93,44,91,45,56,50,46,48,52,49,49,50,57,44,51,49,46,51,55,51,55,50,49,93,44,91,45,56,50,46,49,51,50,55,57,52,44,51,49,46,52,55,49,50,54,50,93,44,91,45,56,50,46,50,50,54,53,56,53,44,51,49,46,53,51,48,54,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,57,52,52,44,34,98,101,100,115,34,58,51,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,51,54,52,49,44,52,48,46,53,54,53,53,50,53,93,44,91,45,56,53,46,56,54,50,49,49,55,44,52,48,46,52,48,54,56,56,57,93,44,91,45,56,53,46,56,54,50,50,57,54,44,52,48,46,51,55,56,51,54,55,93,44,91,45,56,53,46,53,55,56,53,56,57,44,52,48,46,51,55,57,53,50,52,93,44,91,45,56,53,46,52,52,52,51,51,44,52,48,46,51,55,57,49,52,93,44,91,45,56,53,46,52,52,55,48,49,52,44,52,48,46,53,54,54,57,50,57,93,44,91,45,56,53,46,52,52,56,56,50,53,44,52,48,46,54,53,51,54,48,55,93,44,91,45,56,53,46,54,51,56,53,56,55,44,52,48,46,54,53,51,49,50,57,93,44,91,45,56,53,46,56,54,52,55,57,49,44,52,48,46,54,53,49,54,57,51,93,44,91,45,56,53,46,56,54,51,54,52,49,44,52,48,46,53,54,53,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,70,108,97,103,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,49,51,57,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,53,48,56,49,55,44,50,57,46,54,55,49,48,56,55,93,44,91,45,56,49,46,51,50,52,48,53,57,44,50,57,46,54,50,53,54,49,93,44,91,45,56,49,46,53,50,51,54,54,44,50,57,46,54,50,50,52,51,50,93,44,91,45,56,49,46,53,50,48,53,57,54,44,50,57,46,53,48,48,50,52,57,93,44,91,45,56,49,46,52,51,51,57,57,50,44,50,57,46,51,57,56,53,53,50,93,44,91,45,56,49,46,52,49,55,50,57,44,50,57,46,50,54,49,49,53,54,93,44,91,45,56,49,46,49,53,48,48,56,49,44,50,57,46,50,54,53,57,53,55,93,44,91,45,56,49,46,49,53,53,56,56,49,44,50,57,46,52,49,48,57,53,52,93,44,91,45,56,49,46,48,52,53,55,48,54,44,50,57,46,52,51,50,52,54,50,93,44,91,45,56,49,46,49,53,48,56,49,55,44,50,57,46,54,55,49,48,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,52,53,49,57,49,44,51,49,46,55,49,55,53,50,52,93,44,91,45,57,48,46,50,52,51,56,57,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,48,52,48,52,54,54,44,51,49,46,51,51,54,48,49,52,93,44,91,45,56,57,46,57,53,56,57,52,44,51,49,46,51,57,48,52,56,57,93,44,91,45,56,57,46,57,55,52,53,56,54,44,51,49,46,55,54,49,54,53,53,93,44,91,45,57,48,46,49,50,50,53,54,53,44,51,49,46,55,53,50,54,56,93,44,91,45,57,48,46,50,52,53,49,57,49,44,51,49,46,55,49,55,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,87,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,57,52,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,51,57,48,56,44,51,50,46,49,52,55,57,52,50,93,44,91,45,57,50,46,56,56,50,57,57,56,44,51,49,46,57,51,57,57,55,93,44,91,45,57,50,46,57,52,50,50,52,53,44,51,49,46,56,53,52,50,54,56,93,44,91,45,57,50,46,57,55,51,53,50,57,44,51,49,46,55,48,56,57,50,50,93,44,91,45,57,50,46,54,49,57,57,55,54,44,51,49,46,55,48,57,53,55,50,93,44,91,45,57,50,46,54,49,57,50,50,52,44,51,49,46,55,57,55,49,52,57,93,44,91,45,57,50,46,51,54,50,54,48,56,44,51,49,46,55,57,54,54,51,51,93,44,91,45,57,50,46,51,49,50,54,50,51,44,51,49,46,57,50,55,51,56,50,93,44,91,45,57,50,46,51,49,50,50,49,56,44,51,50,46,49,52,54,49,50,51,93,44,91,45,57,50,46,56,49,52,55,51,55,44,51,50,46,49,52,54,57,48,55,93,44,91,45,57,50,46,57,51,57,48,56,44,51,50,46,49,52,55,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,52,54,52,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,56,53,53,51,54,44,52,49,46,53,56,52,53,55,52,93,44,91,45,57,48,46,52,51,49,57,51,44,52,49,46,52,53,54,56,51,52,93,44,91,45,57,48,46,52,51,51,55,51,55,44,52,49,46,51,50,54,57,56,57,93,44,91,45,57,48,46,52,51,55,54,53,50,44,52,49,46,49,53,49,52,54,51,93,44,91,45,56,57,46,57,56,52,53,53,57,44,52,49,46,49,52,57,51,57,52,93,44,91,45,56,57,46,56,54,56,49,53,50,44,52,49,46,49,52,57,52,57,51,93,44,91,45,56,57,46,56,53,55,54,49,54,44,52,49,46,50,51,52,52,55,57,93,44,91,45,56,57,46,56,54,50,51,53,49,44,52,49,46,53,56,52,48,48,53,93,44,91,45,57,48,46,49,56,53,53,51,54,44,52,49,46,53,56,52,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,56,56,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,48,57,53,56,51,51,44,52,53,46,48,52,51,57,56,54,93,44,91,45,49,50,52,46,49,52,55,54,51,56,44,52,52,46,55,54,57,49,49,51,93,44,91,45,49,50,52,46,49,53,51,52,50,56,44,52,52,46,52,54,53,48,51,54,93,44,91,45,49,50,52,46,49,56,55,52,48,57,44,52,52,46,50,55,54,56,55,49,93,44,91,45,49,50,51,46,55,55,53,53,57,56,44,52,52,46,50,56,51,53,52,55,93,44,91,45,49,50,51,46,55,50,48,48,55,49,44,52,52,46,52,51,51,51,55,52,93,44,91,45,49,50,51,46,53,57,55,54,55,55,44,52,52,46,52,51,51,49,48,57,93,44,91,45,49,50,51,46,54,48,50,54,48,57,44,52,52,46,55,50,49,49,53,52,93,44,91,45,49,50,51,46,55,50,53,48,48,49,44,52,52,46,55,51,57,48,52,54,93,44,91,45,49,50,51,46,55,50,52,54,54,51,44,52,53,46,48,52,52,52,51,50,93,44,91,45,49,50,52,46,48,57,53,56,51,51,44,52,53,46,48,52,51,57,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,49,48,50,44,34,98,101,100,115,34,58,50,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,57,54,50,49,53,52,44,52,51,46,53,52,49,48,56,55,93,44,91,45,55,48,46,57,55,56,49,49,53,44,52,51,46,51,53,56,57,49,52,93,44,91,45,55,48,46,56,49,56,49,57,53,44,52,51,46,50,51,56,51,51,93,44,91,45,55,48,46,56,50,48,48,49,57,44,52,51,46,49,50,50,53,52,53,93,44,91,45,55,48,46,53,55,53,48,57,52,44,52,50,46,57,49,55,49,50,54,93,44,91,45,55,48,46,53,50,56,56,56,50,44,52,51,46,48,48,53,55,54,57,93,44,91,45,55,48,46,52,48,54,50,52,51,44,52,51,46,49,48,50,48,57,50,93,44,91,45,55,48,46,53,49,57,54,54,54,44,52,51,46,49,57,49,48,49,53,93,44,91,45,55,48,46,52,57,51,50,51,44,52,51,46,50,56,54,56,50,57,93,44,91,45,55,48,46,51,54,57,50,49,57,44,52,51,46,51,50,50,50,50,93,44,91,45,55,48,46,50,50,50,48,57,44,52,51,46,52,54,54,56,55,56,93,44,91,45,55,48,46,52,57,50,48,48,57,44,52,51,46,54,48,54,55,54,57,93,44,91,45,55,48,46,53,52,57,57,54,53,44,52,51,46,55,49,53,55,57,54,93,44,91,45,55,48,46,54,53,57,51,54,57,44,52,51,46,55,57,48,51,56,54,93,44,91,45,55,48,46,55,56,50,57,56,52,44,52,51,46,56,49,52,49,52,55,93,44,91,45,55,48,46,57,56,57,49,50,50,44,52,51,46,55,57,50,49,49,51,93,44,91,45,55,48,46,57,54,50,49,53,52,44,52,51,46,53,52,49,48,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,100,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,57,51,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,57,52,50,53,52,44,52,53,46,49,53,49,54,51,49,93,44,91,45,57,55,46,52,57,49,51,52,54,44,52,52,46,56,48,52,48,51,53,93,44,91,45,57,54,46,56,56,52,53,55,44,52,52,46,56,48,52,52,51,54,93,44,91,45,57,54,46,56,56,50,51,52,53,44,52,52,46,57,55,54,56,55,93,44,91,45,57,54,46,56,56,51,57,52,56,44,52,53,46,49,53,48,50,50,52,93,44,91,45,57,55,46,50,50,54,50,56,49,44,52,53,46,49,53,49,56,50,54,93,44,91,45,57,55,46,52,57,52,50,53,52,44,52,53,46,49,53,49,54,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,49,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,57,54,55,56,51,44,51,51,46,49,56,51,56,54,54,93,44,91,45,56,52,46,53,50,55,48,50,44,51,50,46,57,55,48,53,52,56,93,44,91,45,56,52,46,50,57,56,54,54,53,44,51,50,46,57,57,57,54,55,49,93,44,91,45,56,52,46,50,55,48,49,52,44,51,50,46,57,57,49,48,49,49,93,44,91,45,56,52,46,50,52,56,49,56,53,44,51,51,46,49,56,57,48,49,57,93,44,91,45,56,52,46,52,57,54,55,56,51,44,51,51,46,49,56,51,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,57,34,44,34,78,65,77,69,34,58,34,83,116,101,119,97,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,52,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,50,51,48,50,55,44,51,50,46,50,51,48,56,53,49,93,44,91,45,56,53,46,48,54,50,48,54,44,51,50,46,49,51,50,52,56,54,93,44,91,45,56,53,46,48,53,54,48,50,57,44,51,50,46,48,54,51,48,53,53,93,44,91,45,56,53,46,48,54,56,50,51,44,51,49,46,57,57,49,56,53,55,93,44,91,45,56,52,46,57,48,55,48,48,54,44,51,49,46,57,50,52,52,54,53,93,44,91,45,56,52,46,54,53,53,56,50,44,51,49,46,57,50,48,51,48,56,93,44,91,45,56,52,46,54,52,57,51,49,57,44,51,50,46,50,51,50,57,53,51,93,44,91,45,56,52,46,54,53,56,57,50,44,51,50,46,50,51,50,56,53,50,93,44,91,45,56,52,46,57,50,51,48,50,55,44,51,50,46,50,51,48,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,77,111,110,109,111,117,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,51,51,56,55,44,34,98,101,100,115,34,58,50,49,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,50,50,56,49,53,51,44,52,48,46,52,55,55,51,57,57,93,44,91,45,55,52,46,50,52,55,56,57,52,44,52,48,46,52,48,54,54,48,53,93,44,91,45,55,52,46,51,57,51,52,51,56,44,52,48,46,50,55,57,53,52,56,93,44,91,45,55,52,46,52,56,52,57,54,50,44,52,48,46,50,53,51,51,50,53,93,44,91,45,55,52,46,53,56,55,56,51,53,44,52,48,46,49,51,56,50,53,52,93,44,91,45,55,52,46,53,53,51,49,48,53,44,52,48,46,48,55,57,49,51,93,44,91,45,55,52,46,52,48,54,55,49,44,52,48,46,49,55,50,52,48,50,93,44,91,45,55,52,46,50,54,49,52,53,53,44,52,48,46,49,54,55,48,51,51,93,44,91,45,55,52,46,50,51,48,54,51,52,44,52,48,46,49,48,57,53,54,49,93,44,91,45,55,51,46,57,54,53,52,49,52,44,52,48,46,48,57,55,54,52,50,93,44,91,45,55,51,46,56,57,56,50,48,56,44,52,48,46,50,55,52,51,53,51,93,44,91,45,55,51,46,56,56,54,54,53,50,44,52,48,46,52,56,57,55,57,52,93,44,91,45,55,52,46,48,52,50,49,49,50,44,52,48,46,53,48,57,50,57,57,93,44,91,45,55,52,46,50,50,56,49,53,51,44,52,48,46,52,55,55,51,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,54,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,50,48,55,51,50,44,51,54,46,52,57,55,56,53,57,93,44,91,45,57,48,46,53,55,54,49,55,57,44,51,54,46,52,57,56,53,52,55,93,44,91,45,57,48,46,55,56,52,52,50,52,44,51,54,46,52,57,56,53,51,52,93,44,91,45,57,48,46,55,53,49,56,49,44,51,54,46,50,56,51,56,51,54,93,44,91,45,57,48,46,56,48,54,54,49,53,44,51,54,46,50,54,54,56,54,53,93,44,91,45,57,48,46,51,49,57,56,50,44,51,54,46,50,53,57,49,52,52,93,44,91,45,57,48,46,49,57,48,50,48,55,44,51,54,46,50,48,49,51,54,49,93,44,91,45,57,48,46,49,50,53,52,56,55,44,51,54,46,50,51,49,50,51,50,93,44,91,45,57,48,46,48,54,51,53,57,52,44,51,54,46,51,56,52,50,51,53,93,44,91,45,57,48,46,50,50,48,55,51,50,44,51,54,46,52,57,55,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,70,97,117,108,107,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,52,49,54,44,34,98,101,100,115,34,58,51,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,52,56,49,52,54,57,44,51,53,46,51,54,56,51,57,50,93,44,91,45,57,50,46,52,57,57,57,56,53,44,51,53,46,49,54,57,53,55,53,93,44,91,45,57,50,46,53,53,52,54,56,53,44,51,53,46,49,49,51,50,55,55,93,44,91,45,57,50,46,53,57,51,53,56,53,44,51,53,46,48,49,49,55,54,49,93,44,91,45,57,50,46,53,52,52,51,52,49,44,51,52,46,57,53,51,51,49,57,93,44,91,45,57,50,46,50,50,57,56,57,51,44,51,52,46,57,50,55,53,53,56,93,44,91,45,57,50,46,49,50,49,51,51,54,44,51,53,46,48,49,50,50,49,93,44,91,45,57,50,46,49,49,57,55,49,57,44,51,53,46,48,54,54,52,57,51,93,44,91,45,57,50,46,49,49,49,52,54,51,44,51,53,46,51,54,50,55,50,53,93,44,91,45,57,50,46,50,53,50,55,53,57,44,51,53,46,51,54,51,55,49,56,93,44,91,45,57,50,46,52,56,49,52,54,57,44,51,53,46,51,54,56,51,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,49,49,50,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,48,53,55,51,44,51,54,46,53,48,57,56,57,93,44,91,45,57,53,46,48,49,49,51,48,57,44,51,54,46,49,54,49,55,54,51,93,44,91,45,57,52,46,55,57,55,52,48,57,44,51,54,46,49,54,49,54,53,50,93,44,91,45,57,52,46,53,54,50,55,50,55,44,51,54,46,49,54,49,56,57,51,93,44,91,45,57,52,46,54,49,55,57,49,57,44,51,54,46,52,57,57,52,49,52,93,44,91,45,57,52,46,54,49,56,48,55,55,44,51,54,46,54,54,55,57,50,49,93,44,91,45,57,52,46,57,57,57,52,48,51,44,51,54,46,54,55,48,54,51,49,93,44,91,45,57,53,46,48,48,53,55,51,44,51,54,46,53,48,57,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,75,101,111,107,117,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,48,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,52,54,48,52,51,44,52,49,46,53,49,48,55,52,57,93,44,91,45,57,50,46,50,57,55,52,57,52,44,52,49,46,53,48,57,55,57,93,44,91,45,57,50,46,52,49,49,57,57,53,44,52,49,46,53,48,57,53,52,56,93,44,91,45,57,50,46,52,49,48,50,51,51,44,52,49,46,49,54,49,57,52,50,93,44,91,45,57,50,46,49,55,57,57,55,52,44,52,49,46,49,54,50,54,54,50,93,44,91,45,57,49,46,57,52,53,53,55,49,44,52,49,46,49,54,51,53,55,56,93,44,91,45,57,49,46,57,52,54,48,52,51,44,52,49,46,53,49,48,55,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,49,51,55,55,53,44,51,57,46,51,57,53,52,49,54,93,44,91,45,57,48,46,54,48,51,53,54,57,44,51,57,46,49,49,55,53,57,50,93,44,91,45,57,48,46,53,54,48,48,55,49,44,51,57,46,49,56,55,52,51,93,44,91,45,57,48,46,51,49,51,50,56,57,44,51,57,46,49,55,52,50,56,57,93,44,91,45,57,48,46,49,52,56,49,50,49,44,51,57,46,50,54,49,57,52,55,93,44,91,45,57,48,46,49,53,51,55,56,50,44,51,57,46,53,50,48,51,49,53,93,44,91,45,57,48,46,51,48,49,56,51,49,44,51,57,46,53,50,48,51,52,52,93,44,91,45,57,48,46,53,56,49,48,53,53,44,51,57,46,53,50,49,55,50,56,93,44,91,45,57,48,46,54,49,51,55,55,53,44,51,57,46,51,57,53,52,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,57,56,50,53,50,44,52,56,46,50,48,50,56,53,56,93,44,91,45,57,49,46,55,56,55,57,50,56,44,52,55,46,53,52,54,56,49,55,93,44,91,45,57,49,46,55,57,54,51,51,44,52,54,46,55,57,52,56,51,56,93,44,91,45,57,49,46,53,52,57,51,56,53,44,52,54,46,56,57,51,50,49,51,93,44,91,45,57,48,46,56,54,55,51,49,56,44,52,55,46,50,49,48,57,54,50,93,44,91,45,57,48,46,55,57,53,49,56,57,44,52,55,46,50,52,52,50,57,57,93,44,91,45,57,49,46,48,50,51,49,50,54,44,52,55,46,52,54,52,57,56,50,93,44,91,45,57,49,46,48,51,49,55,54,49,44,52,56,46,49,56,56,52,56,54,93,44,91,45,57,49,46,50,53,48,49,49,50,44,52,56,46,48,56,52,48,56,55,93,44,91,45,57,49,46,52,50,57,54,52,50,44,52,56,46,48,52,56,54,48,56,93,44,91,45,57,49,46,55,49,49,56,52,52,44,52,56,46,49,49,52,54,48,53,93,44,91,45,57,49,46,55,57,56,50,53,50,44,52,56,46,50,48,50,56,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,53,34,44,34,78,65,77,69,34,58,34,84,114,111,117,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,55,55,52,44,34,98,101,100,115,34,58,50,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,51,57,48,49,53,44,51,51,46,50,50,52,54,57,51,93,44,91,45,56,53,46,50,51,54,53,49,56,44,51,51,46,49,50,57,53,53,57,93,44,91,45,56,53,46,50,51,50,51,55,56,44,51,51,46,49,48,56,48,55,55,93,44,91,45,56,53,46,49,56,52,49,51,49,44,51,50,46,56,55,48,53,50,53,93,44,91,45,56,52,46,56,54,49,55,54,56,44,51,50,46,56,55,50,52,57,53,93,44,91,45,56,52,46,56,54,50,51,53,57,44,51,51,46,49,57,49,49,55,51,93,44,91,45,56,52,46,57,51,57,48,49,53,44,51,51,46,50,50,52,54,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,72,117,109,98,111,108,100,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,55,54,56,44,34,98,101,100,115,34,58,50,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,49,51,54,53,54,49,44,52,49,46,52,54,52,52,53,50,93,44,91,45,49,50,52,46,49,54,48,55,48,52,44,52,49,46,50,56,57,50,57,51,93,44,91,45,49,50,52,46,50,52,55,52,51,44,52,49,46,48,57,50,50,50,52,93,44,91,45,49,50,52,46,49,56,50,54,57,52,44,52,49,46,48,48,49,51,49,51,93,44,91,45,49,50,52,46,50,51,50,54,50,50,44,52,48,46,56,54,57,50,56,54,93,44,91,45,49,50,52,46,52,52,55,54,55,55,44,52,48,46,53,50,57,55,48,57,93,44,91,45,49,50,52,46,52,55,56,54,50,53,44,52,48,46,52,50,50,49,48,50,93,44,91,45,49,50,52,46,51,57,50,55,55,55,44,52,48,46,50,48,57,55,57,57,93,44,91,45,49,50,52,46,49,51,52,56,56,57,44,52,48,46,48,48,50,52,55,93,44,91,45,49,50,51,46,53,52,52,52,53,56,44,52,48,46,48,48,49,57,50,51,93,44,91,45,49,50,51,46,53,52,51,55,52,57,44,52,48,46,55,51,57,48,49,53,93,44,91,45,49,50,51,46,54,49,53,56,50,55,44,52,48,46,57,49,52,48,54,56,93,44,91,45,49,50,51,46,52,52,55,57,53,54,44,52,48,46,57,52,51,55,53,56,93,44,91,45,49,50,51,46,52,48,56,50,57,49,44,52,49,46,49,55,57,57,52,52,93,44,91,45,49,50,51,46,52,55,52,48,56,53,44,52,49,46,51,54,54,49,57,51,93,44,91,45,49,50,51,46,54,54,49,51,54,51,44,52,49,46,51,56,50,48,57,93,44,91,45,49,50,51,46,55,55,48,53,53,49,44,52,49,46,52,54,52,49,57,51,93,44,91,45,49,50,52,46,49,51,54,53,54,49,44,52,49,46,52,54,52,52,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,105,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,57,56,56,44,34,98,101,100,115,34,58,49,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,54,54,55,57,56,44,51,54,46,49,55,55,56,53,55,93,44,91,45,56,55,46,53,51,52,53,51,44,51,53,46,57,57,51,48,55,52,93,44,91,45,56,55,46,50,48,52,50,52,50,44,51,53,46,57,53,57,49,56,54,93,44,91,45,56,55,46,49,56,50,53,55,51,44,51,54,46,48,52,57,55,50,54,93,44,91,45,56,55,46,49,53,54,53,56,57,44,51,54,46,51,48,55,55,48,54,93,44,91,45,56,55,46,50,56,54,53,48,49,44,51,54,46,51,50,49,57,51,51,93,44,91,45,56,55,46,53,49,51,53,51,51,44,51,54,46,51,51,52,55,49,51,93,44,91,45,56,55,46,53,54,54,55,57,56,44,51,54,46,49,55,55,56,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,111,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,55,52,51,49,44,34,98,101,100,115,34,58,55,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,49,48,48,55,44,52,53,46,52,49,52,55,57,56,93,44,91,45,57,51,46,53,49,50,49,57,44,52,53,46,50,52,53,54,56,51,93,44,91,45,57,51,46,51,49,49,53,52,52,44,52,53,46,49,52,51,55,55,56,93,44,91,45,57,51,46,50,50,54,57,50,57,44,52,53,46,48,51,53,54,55,49,93,44,91,45,57,51,46,50,50,55,54,57,54,44,52,53,46,49,50,52,53,51,51,93,44,91,45,57,51,46,48,50,48,53,49,56,44,52,53,46,49,50,51,56,54,54,93,44,91,45,57,51,46,48,49,57,52,52,44,52,53,46,50,57,54,57,50,57,93,44,91,45,57,51,46,48,49,57,53,54,51,44,52,53,46,52,49,49,55,55,93,44,91,45,57,51,46,53,49,48,48,55,44,52,53,46,52,49,52,55,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,111,110,32,72,111,109,109,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,54,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,51,55,52,57,54,44,52,51,46,49,54,56,55,55,93,44,91,45,57,56,46,48,55,55,49,48,56,44,52,51,46,49,54,56,51,51,93,44,91,45,57,56,46,48,57,50,55,56,50,44,52,50,46,57,55,51,57,50,49,93,44,91,45,57,56,46,49,53,51,49,48,55,44,52,50,46,56,51,56,57,56,54,93,44,91,45,57,56,46,48,49,51,48,55,50,44,52,50,46,55,54,50,50,49,57,93,44,91,45,57,55,46,56,55,53,53,51,49,44,52,50,46,56,53,56,54,53,54,93,44,91,45,57,55,46,54,51,53,52,52,44,52,50,46,56,53,49,53,51,50,93,44,91,45,57,55,46,54,51,55,52,57,54,44,52,51,46,49,54,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,54,54,57,44,34,98,101,100,115,34,58,50,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,54,54,48,56,53,44,51,54,46,49,56,48,56,57,52,93,44,91,45,56,50,46,56,57,56,51,49,55,44,51,53,46,57,52,52,57,54,55,93,44,91,45,56,50,46,54,51,55,50,51,44,51,54,46,48,54,53,56,50,93,44,91,45,56,50,46,54,48,50,57,56,44,51,54,46,48,51,57,54,55,55,93,44,91,45,56,50,46,53,57,53,48,54,53,44,51,54,46,48,57,54,50,48,53,93,44,91,45,56,50,46,54,52,55,55,54,57,44,51,54,46,49,52,54,52,48,52,93,44,91,45,56,50,46,54,50,57,54,52,49,44,51,54,46,52,49,49,53,52,93,44,91,45,56,50,46,55,48,50,53,54,54,44,51,54,46,52,49,48,52,49,50,93,44,91,45,56,50,46,56,52,48,52,56,49,44,51,54,46,51,55,48,54,57,56,93,44,91,45,56,51,46,48,56,50,51,49,50,44,51,54,46,50,52,50,50,57,54,93,44,91,45,56,51,46,49,54,54,48,56,53,44,51,54,46,49,56,48,56,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,83,117,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,53,51,53,52,54,44,51,54,46,57,52,52,52,53,93,44,91,45,55,54,46,57,56,54,54,49,44,51,55,46,48,52,57,54,57,55,93,44,91,45,55,55,46,49,53,53,52,49,53,44,51,55,46,49,49,50,48,51,52,93,44,91,45,55,55,46,51,57,56,52,57,56,44,51,54,46,57,57,50,57,56,53,93,44,91,45,55,55,46,54,49,57,48,50,57,44,51,54,46,56,55,55,56,52,52,93,44,91,45,55,55,46,53,49,48,51,54,44,51,54,46,56,52,53,48,56,50,93,44,91,45,55,55,46,52,51,48,49,50,55,44,51,54,46,55,48,55,54,53,56,93,44,91,45,55,54,46,57,53,51,53,52,54,44,51,54,46,57,52,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,83,116,46,32,74,111,115,101,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,50,52,48,44,34,98,101,100,115,34,58,56,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,50,54,48,57,53,44,52,49,46,55,54,48,52,48,54,93,44,91,45,56,54,46,53,50,52,50,49,55,44,52,49,46,55,53,57,54,53,57,93,44,91,45,56,54,46,52,56,54,52,51,51,44,52,49,46,53,55,48,53,52,53,93,44,91,45,56,54,46,53,50,52,55,49,49,44,52,49,46,52,51,50,56,56,54,93,44,91,45,56,54,46,52,54,54,54,48,51,44,52,49,46,52,51,50,57,54,56,93,44,91,45,56,54,46,52,54,55,49,48,56,44,52,49,46,52,55,54,52,53,57,93,44,91,45,56,54,46,48,53,57,52,53,49,44,52,49,46,52,55,57,49,53,52,93,44,91,45,56,54,46,48,54,50,53,55,53,44,52,49,46,55,54,48,53,49,51,93,44,91,45,56,54,46,50,50,54,48,57,53,44,52,49,46,55,54,48,52,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,80,101,109,98,105,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,49,54,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,53,48,48,49,50,44,52,57,46,48,48,48,52,57,50,93,44,91,45,57,55,46,57,50,55,48,54,57,44,52,56,46,53,52,51,49,50,52,93,44,91,45,57,55,46,49,54,49,51,57,51,44,52,56,46,53,52,50,51,52,56,93,44,91,45,57,55,46,49,54,51,51,53,53,44,52,56,46,53,52,51,57,54,55,93,44,91,45,57,55,46,49,48,53,52,52,50,44,52,56,46,54,56,57,54,52,56,93,44,91,45,57,55,46,50,51,52,49,50,56,44,52,56,46,57,52,55,56,57,56,93,44,91,45,57,55,46,50,50,56,55,50,50,44,52,57,46,48,48,48,53,54,50,93,44,91,45,57,55,46,57,53,48,48,49,50,44,52,57,46,48,48,48,52,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,110,110,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,51,55,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,56,50,52,56,54,44,52,50,46,57,57,57,51,53,53,93,44,91,45,49,48,49,46,50,50,56,48,49,51,44,52,50,46,57,57,56,49,51,54,93,44,91,45,49,48,49,46,50,50,56,50,51,52,44,52,51,46,51,56,57,49,56,53,93,44,91,45,49,48,50,46,49,49,48,56,49,57,44,52,51,46,51,56,57,57,48,50,93,44,91,45,49,48,50,46,49,48,56,56,57,50,44,52,51,46,49,50,57,50,53,56,93,44,91,45,49,48,50,46,48,56,50,52,56,54,44,52,50,46,57,57,57,51,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,86,101,114,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,48,48,55,44,34,98,101,100,115,34,58,49,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,51,54,49,48,52,44,51,49,46,51,54,52,53,48,55,93,44,91,45,57,51,46,51,57,48,52,57,53,44,51,49,46,51,54,52,49,52,55,93,44,91,45,57,51,46,52,52,50,53,53,52,44,51,49,46,50,55,54,55,49,54,93,44,91,45,57,51,46,53,51,52,57,49,57,44,51,49,46,50,55,54,53,55,57,93,44,91,45,57,51,46,53,53,50,53,50,52,44,51,49,46,49,56,53,52,48,53,93,44,91,45,57,51,46,53,50,52,55,51,57,44,51,49,46,48,51,57,48,48,55,93,44,91,45,57,51,46,53,53,56,53,57,54,44,51,48,46,56,54,56,56,50,50,93,44,91,45,57,51,46,52,50,49,49,48,50,44,51,48,46,56,56,51,49,51,56,93,44,91,45,57,50,46,57,55,56,52,53,51,44,51,48,46,56,55,56,49,55,53,93,44,91,45,57,50,46,56,50,51,57,51,50,44,51,48,46,56,57,93,44,91,45,57,50,46,56,50,57,54,53,49,44,51,49,46,50,53,50,50,56,49,93,44,91,45,57,50,46,57,56,49,52,54,52,44,51,49,46,51,52,54,54,52,52,93,44,91,45,57,51,46,50,51,54,49,48,52,44,51,49,46,51,54,52,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,80,101,110,111,98,115,99,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,55,52,56,44,34,98,101,100,115,34,58,55,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,56,46,56,49,57,52,48,49,44,52,54,46,51,57,53,55,56,50,93,44,91,45,54,56,46,56,50,55,48,51,57,44,52,53,46,54,56,52,56,50,54,93,44,91,45,54,56,46,57,53,56,57,49,44,52,53,46,54,54,50,49,57,53,93,44,91,45,54,56,46,57,54,52,54,53,51,44,52,53,46,53,49,50,51,54,55,93,44,91,45,54,56,46,56,53,55,50,57,55,44,52,53,46,53,50,55,51,48,49,93,44,91,45,54,56,46,55,55,54,48,54,49,44,52,53,46,50,52,48,51,49,55,93,44,91,45,54,56,46,56,53,54,53,56,55,44,52,53,46,49,52,50,55,56,51,93,44,91,45,54,57,46,51,53,53,54,54,55,44,52,53,46,48,55,51,52,54,57,93,44,91,45,54,57,46,50,54,54,55,56,53,44,52,52,46,55,50,49,57,50,56,93,44,91,45,54,57,46,49,56,51,55,51,50,44,52,52,46,54,52,52,48,50,51,93,44,91,45,54,56,46,56,49,53,55,57,51,44,52,52,46,54,56,51,55,53,52,93,44,91,45,54,56,46,52,52,53,50,49,57,44,52,52,46,55,54,51,48,49,52,93,44,91,45,54,56,46,53,48,49,48,57,53,44,52,52,46,57,56,48,55,49,56,93,44,91,45,54,56,46,51,55,53,56,57,50,44,52,52,46,57,57,55,51,55,51,93,44,91,45,54,56,46,51,57,54,57,48,51,44,52,53,46,48,56,51,50,57,54,93,44,91,45,54,56,46,50,55,48,52,57,55,44,52,53,46,49,48,48,49,50,49,93,44,91,45,54,56,46,51,48,51,55,49,52,44,52,53,46,50,50,49,53,51,49,93,44,91,45,54,56,46,48,53,52,57,56,53,44,52,53,46,50,53,50,53,55,55,93,44,91,45,54,55,46,57,51,57,55,54,44,52,53,46,50,54,55,56,52,53,93,44,91,45,54,56,46,48,52,56,48,49,50,44,52,53,46,54,51,57,56,57,55,93,44,91,45,54,56,46,52,51,51,48,50,56,44,52,53,46,53,55,56,52,56,50,93,44,91,45,54,56,46,52,50,54,49,54,57,44,52,53,46,56,55,48,56,50,57,93,44,91,45,54,56,46,52,51,54,52,52,51,44,52,54,46,51,56,50,49,50,49,93,44,91,45,54,56,46,56,49,57,52,48,49,44,52,54,46,51,57,53,55,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,84,97,108,98,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,49,49,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,57,52,57,51,51,53,44,51,56,46,57,49,56,51,51,51,93,44,91,45,55,54,46,52,51,54,52,57,50,44,51,56,46,56,48,55,51,57,55,93,44,91,45,55,54,46,52,54,51,54,51,54,44,51,56,46,55,49,49,48,57,57,93,44,91,45,55,54,46,52,51,56,56,49,52,44,51,56,46,53,55,53,51,51,54,93,44,91,45,55,54,46,50,52,48,49,53,44,51,56,46,54,54,51,50,48,52,93,44,91,45,55,54,46,48,50,51,52,52,53,44,51,56,46,53,55,51,56,55,53,93,44,91,45,55,53,46,57,52,53,50,52,56,44,51,56,46,54,55,52,49,48,57,93,44,91,45,55,54,46,48,49,53,48,52,53,44,51,56,46,55,50,56,54,56,55,93,44,91,45,55,53,46,56,57,54,55,55,52,44,51,56,46,56,49,53,49,48,57,93,44,91,45,55,53,46,57,52,57,51,51,53,44,51,56,46,57,49,56,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,55,34,44,34,78,65,77,69,34,58,34,83,116,101,112,104,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,55,54,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,51,56,50,51,52,44,51,52,46,54,56,55,49,56,55,93,44,91,45,56,51,46,52,53,57,55,55,44,51,52,46,52,56,49,49,52,50,93,44,91,45,56,51,46,51,57,56,51,57,54,44,51,52,46,52,54,48,56,56,51,93,44,91,45,56,51,46,49,55,55,56,51,56,44,51,52,46,52,55,55,48,49,55,93,44,91,45,56,51,46,49,48,51,54,55,51,44,51,52,46,53,51,54,54,49,55,93,44,91,45,56,51,46,51,51,56,50,51,52,44,51,52,46,54,56,55,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,82,105,118,101,114,115,105,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,51,50,56,54,44,34,98,101,100,115,34,58,51,54,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,54,55,51,49,51,52,44,51,51,46,56,55,49,48,48,53,93,44,91,45,49,49,55,46,53,51,51,57,57,57,44,51,51,46,55,49,48,51,53,53,93,44,91,45,49,49,55,46,52,49,50,57,56,55,44,51,51,46,54,53,57,48,52,53,93,44,91,45,49,49,55,46,53,48,57,55,50,50,44,51,51,46,53,48,53,48,49,57,93,44,91,45,49,49,55,46,51,55,48,57,50,53,44,51,51,46,52,57,48,53,52,57,93,44,91,45,49,49,55,46,50,52,49,50,55,49,44,51,51,46,52,51,49,57,57,51,93,44,91,45,49,49,55,46,48,51,48,56,54,49,44,51,51,46,52,50,54,57,51,49,93,44,91,45,49,49,54,46,48,56,53,49,54,53,44,51,51,46,52,50,53,57,51,50,93,44,91,45,49,49,53,46,54,48,57,54,53,53,44,51,51,46,52,50,54,56,55,51,93,44,91,45,49,49,52,46,54,50,55,49,50,53,44,51,51,46,52,51,51,53,53,52,93,44,91,45,49,49,52,46,53,50,52,50,49,53,44,51,51,46,53,53,51,48,54,56,93,44,91,45,49,49,52,46,52,57,54,52,56,57,44,51,51,46,54,57,54,57,48,49,93,44,91,45,49,49,52,46,53,51,52,49,52,54,44,51,51,46,57,50,53,49,56,55,93,44,91,45,49,49,52,46,52,51,53,52,50,57,44,51,52,46,48,55,57,55,50,55,93,44,91,45,49,49,53,46,51,49,54,48,54,53,44,51,52,46,48,55,55,56,52,51,93,44,91,45,49,49,53,46,51,49,54,50,49,50,44,51,52,46,48,51,52,49,49,93,44,91,45,49,49,54,46,51,48,48,54,51,49,44,51,52,46,48,51,50,53,52,52,93,44,91,45,49,49,54,46,57,50,57,53,53,56,44,51,52,46,48,51,52,49,49,51,93,44,91,45,49,49,55,46,50,50,53,51,55,50,44,51,52,46,48,48,52,51,49,52,93,44,91,45,49,49,55,46,53,53,56,51,49,50,44,51,52,46,48,51,51,52,53,49,93,44,91,45,49,49,55,46,54,55,51,49,51,52,44,51,51,46,56,55,49,48,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,120,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,49,57,44,34,98,101,100,115,34,58,50,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,50,57,49,50,56,44,51,54,46,52,57,56,53,57,57,93,44,91,45,57,50,46,53,50,48,53,56,49,44,51,54,46,50,54,56,56,50,52,93,44,91,45,57,50,46,52,48,57,49,55,53,44,51,54,46,49,51,52,54,56,52,93,44,91,45,57,50,46,52,49,49,53,48,50,44,51,54,46,48,54,50,55,53,54,93,44,91,45,57,50,46,52,49,52,51,57,54,44,51,53,46,57,55,53,55,57,56,93,44,91,45,57,50,46,49,57,53,52,51,44,51,54,46,49,51,50,55,57,56,93,44,91,45,57,50,46,49,53,54,57,57,44,51,54,46,50,54,49,50,52,56,93,44,91,45,57,50,46,49,53,48,50,57,53,44,51,54,46,52,57,56,54,49,93,44,91,45,57,50,46,53,50,57,49,50,56,44,51,54,46,52,57,56,53,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,116,116,97,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,56,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,53,51,56,48,56,44,51,51,46,50,56,53,57,52,50,93,44,91,45,56,57,46,54,52,53,50,56,44,51,51,46,50,56,53,53,49,53,93,44,91,45,56,57,46,55,52,57,52,52,49,44,51,51,46,50,49,52,52,55,56,93,44,91,45,56,57,46,57,48,50,53,48,49,44,51,50,46,57,50,55,57,52,93,44,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,44,91,45,56,57,46,55,51,48,48,49,54,44,51,50,46,56,56,53,48,55,50,93,44,91,45,56,57,46,55,51,48,49,53,52,44,51,50,46,57,50,57,57,50,52,93,44,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,44,91,45,56,57,46,51,49,55,56,53,53,44,51,51,46,49,48,56,56,55,49,93,44,91,45,56,57,46,51,49,54,52,48,56,44,51,51,46,50,56,53,53,53,54,93,44,91,45,56,57,46,52,53,51,56,48,56,44,51,51,46,50,56,53,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,83,116,111,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,57,50,50,44,34,98,101,100,115,34,58,50,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,57,56,51,57,44,52,50,46,50,48,57,51,51,57,93,44,91,45,57,51,46,54,57,56,48,51,50,44,52,49,46,56,54,51,51,55,93,44,91,45,57,51,46,51,52,55,57,51,51,44,52,49,46,56,54,51,49,48,52,93,44,91,45,57,51,46,50,51,49,56,53,56,44,52,49,46,56,54,50,55,49,49,93,44,91,45,57,51,46,50,51,49,55,50,50,44,52,50,46,50,48,56,56,56,54,93,44,91,45,57,51,46,52,54,51,48,52,51,44,52,50,46,50,48,57,51,48,50,93,44,91,45,57,51,46,54,57,56,51,57,44,52,50,46,50,48,57,51,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,111,117,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,55,55,56,55,54,44,51,56,46,48,51,55,55,48,54,93,44,91,45,57,53,46,48,56,56,48,56,50,44,51,55,46,55,51,50,52,55,54,93,44,91,45,57,53,46,48,56,56,48,49,50,44,51,55,46,54,55,52,53,49,57,93,44,91,45,57,52,46,54,49,55,55,55,57,44,51,55,46,54,55,51,49,48,53,93,44,91,45,57,52,46,54,49,52,48,56,57,44,51,56,46,48,51,55,48,53,55,93,44,91,45,57,53,46,48,55,55,56,55,54,44,51,56,46,48,51,55,55,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,51,57,55,52,56,44,51,55,46,54,57,48,52,57,53,93,44,91,45,55,56,46,50,52,57,48,50,49,44,51,55,46,54,51,53,53,52,54,93,44,91,45,55,56,46,52,54,53,48,56,57,44,51,55,46,51,51,57,54,55,55,93,44,91,45,55,56,46,51,50,49,56,52,44,51,55,46,51,48,57,50,57,50,93,44,91,45,55,56,46,50,51,53,48,51,57,44,51,55,46,51,54,56,49,48,50,93,44,91,45,55,56,46,49,51,50,48,52,56,44,51,55,46,52,53,52,54,56,54,93,44,91,45,55,56,46,48,55,50,49,55,52,44,51,55,46,54,53,55,51,56,53,93,44,91,45,55,56,46,49,53,57,51,50,54,44,51,55,46,55,52,56,53,50,56,93,44,91,45,55,56,46,50,51,57,55,52,56,44,51,55,46,54,57,48,52,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,83,117,109,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,57,57,53,44,34,98,101,100,115,34,58,50,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,49,54,49,56,54,44,51,52,46,48,57,57,54,48,53,93,44,91,45,56,48,46,54,52,48,57,56,54,44,51,51,46,57,57,57,52,51,51,93,44,91,45,56,48,46,53,57,55,55,49,53,44,51,51,46,55,55,55,53,49,50,93,44,91,45,56,48,46,54,50,48,49,48,55,44,51,51,46,55,52,51,50,51,55,93,44,91,45,56,48,46,53,51,52,48,56,53,44,51,51,46,54,52,51,57,49,49,93,44,91,45,56,48,46,51,57,55,49,51,49,44,51,51,46,55,54,55,56,50,49,93,44,91,45,56,48,46,50,53,53,57,48,52,44,51,51,46,56,48,51,55,48,56,93,44,91,45,55,57,46,57,55,52,54,48,49,44,51,51,46,57,52,54,53,50,55,93,44,91,45,56,48,46,48,48,48,53,57,52,44,51,52,46,48,52,55,56,55,55,93,44,91,45,56,48,46,49,56,48,51,55,49,44,51,51,46,57,53,50,48,48,50,93,44,91,45,56,48,46,51,50,49,55,50,49,44,51,52,46,48,56,48,51,53,54,93,44,91,45,56,48,46,52,56,49,51,49,56,44,51,52,46,49,49,50,54,50,50,93,44,91,45,56,48,46,52,55,57,56,53,55,44,51,52,46,49,54,56,54,57,54,93,44,91,45,56,48,46,54,49,54,49,56,54,44,51,52,46,48,57,57,54,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,54,52,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,52,34,44,34,78,65,77,69,34,58,34,76,97,107,101,32,97,110,100,32,80,101,110,105,110,115,117,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,56,46,56,57,51,53,56,53,44,53,54,46,57,52,53,48,53,57,93,44,91,45,49,53,56,46,56,57,51,54,48,55,44,53,54,46,55,53,52,52,48,52,93,44,91,45,49,53,57,46,48,53,49,48,56,57,44,53,54,46,54,54,55,54,56,55,93,44,91,45,49,53,57,46,50,55,53,57,51,50,44,53,54,46,54,54,55,54,56,50,93,44,91,45,49,53,57,46,50,55,53,57,50,56,44,53,54,46,53,56,48,57,54,55,93,44,91,45,49,53,57,46,53,56,56,48,52,49,44,53,54,46,53,56,48,57,54,49,93,44,91,45,49,53,57,46,53,56,56,48,51,54,44,53,54,46,52,57,52,50,52,53,93,44,91,45,49,53,57,46,57,48,48,49,52,57,44,53,54,46,52,57,52,50,51,57,93,44,91,45,49,53,57,46,57,48,48,49,51,51,44,53,54,46,51,50,48,56,48,51,93,44,91,45,49,53,57,46,56,48,54,51,56,57,44,53,54,46,51,50,48,56,48,53,93,44,91,45,49,53,57,46,56,48,54,52,48,54,44,53,53,46,57,55,51,57,49,57,93,44,91,45,49,53,57,46,56,54,55,57,55,49,44,53,53,46,56,56,55,49,57,51,93,44,91,45,49,53,57,46,53,54,49,51,54,44,53,53,46,56,56,55,49,57,55,93,44,91,45,49,53,57,46,53,54,49,52,53,49,44,53,53,46,54,51,56,52,52,51,93,44,91,45,49,53,57,46,52,52,54,56,54,56,44,53,53,46,54,51,56,53,51,49,93,44,91,45,49,53,56,44,53,53,46,54,51,57,52,52,52,93,44,91,45,49,53,55,46,48,49,49,51,56,57,44,53,54,46,50,57,54,51,50,56,93,44,91,45,49,53,54,46,51,50,56,54,49,49,44,53,54,46,55,53,93,44,91,45,49,53,54,46,51,50,56,48,50,51,44,53,55,46,48,53,51,50,56,56,93,44,91,45,49,53,54,46,51,53,53,51,57,50,44,53,55,46,49,53,57,57,51,49,93,44,91,45,49,53,54,46,55,53,48,56,49,53,44,53,55,46,49,54,50,56,55,56,93,44,91,45,49,53,54,46,55,53,48,55,56,44,53,55,46,50,51,53,55,57,53,93,44,91,45,49,53,54,46,51,55,48,50,51,53,44,53,55,46,53,50,50,51,54,56,93,44,91,45,49,53,54,46,50,48,56,48,50,49,44,53,55,46,53,50,50,57,54,51,93,44,91,45,49,53,53,46,55,54,56,48,50,50,44,53,55,46,54,54,56,50,54,49,93,44,91,45,49,53,53,46,54,57,51,55,55,51,44,53,55,46,55,57,55,57,56,55,93,44,91,45,49,53,53,46,53,51,56,56,51,44,53,55,46,55,57,57,56,48,54,93,44,91,45,49,53,53,46,51,51,48,50,52,53,44,53,55,46,56,55,54,51,52,51,93,44,91,45,49,53,53,46,51,51,49,57,52,53,44,53,56,46,49,57,51,50,56,51,93,44,91,45,49,53,53,46,48,53,55,55,52,49,44,53,56,46,50,51,54,50,48,57,93,44,91,45,49,53,53,46,48,48,56,49,51,50,44,53,56,46,50,57,48,57,48,53,93,44,91,45,49,53,52,46,55,51,48,51,54,57,44,53,56,46,51,48,52,54,54,57,93,44,91,45,49,53,52,46,52,54,53,55,52,49,44,53,56,46,51,54,49,51,53,54,93,44,91,45,49,53,52,46,51,48,51,52,52,55,44,53,56,46,52,54,48,51,56,53,93,44,91,45,49,53,52,46,51,48,53,54,57,49,44,53,56,46,54,53,50,55,53,49,93,44,91,45,49,53,52,46,54,52,50,53,52,53,44,53,56,46,54,53,50,55,52,55,93,44,91,45,49,53,52,46,54,57,53,48,51,54,44,53,56,46,55,51,57,52,51,49,93,44,91,45,49,53,52,46,54,57,53,49,48,53,44,53,57,46,48,56,54,49,53,57,93,44,91,45,49,53,52,46,55,52,56,56,54,49,44,53,57,46,50,53,57,53,49,56,93,44,91,45,49,53,52,46,52,49,50,48,49,51,44,53,57,46,50,53,57,53,50,52,93,44,91,45,49,53,52,46,52,49,50,48,50,56,44,53,57,46,52,51,50,56,56,50,93,44,91,45,49,53,52,46,49,50,51,51,50,49,44,53,57,46,52,51,50,56,56,55,93,44,91,45,49,53,51,46,57,53,51,49,56,49,44,53,57,46,53,49,57,53,54,57,93,44,91,45,49,53,51,46,57,53,51,49,57,56,44,53,57,46,54,57,50,57,49,56,93,44,91,45,49,53,51,46,55,56,51,48,54,56,44,53,57,46,54,57,50,57,50,54,93,44,91,45,49,53,51,46,54,53,54,57,55,55,44,53,57,46,55,55,57,54,48,55,93,44,91,45,49,53,51,46,54,53,54,57,56,44,54,48,46,49,50,54,50,55,55,93,44,91,45,49,53,51,46,53,50,56,51,57,50,44,54,48,46,49,50,54,50,56,49,93,44,91,45,49,53,51,46,53,50,56,52,52,49,44,54,48,46,52,55,50,57,51,57,93,44,91,45,49,53,51,46,51,57,55,50,55,54,44,54,48,46,52,55,50,57,52,56,93,44,91,45,49,53,51,46,51,57,55,50,56,52,44,54,48,46,56,49,57,53,56,49,93,44,91,45,49,53,51,46,52,52,48,56,56,52,44,54,48,46,57,48,54,50,51,54,93,44,91,45,49,53,52,46,54,49,52,50,49,53,44,54,48,46,57,48,54,50,48,52,93,44,91,45,49,53,54,46,48,48,48,48,56,54,44,54,48,46,57,48,54,49,57,93,44,91,45,49,53,54,46,48,48,48,49,52,53,44,53,57,46,54,57,50,56,55,57,93,44,91,45,49,53,54,46,49,54,53,48,54,54,44,53,57,46,54,48,54,50,48,50,93,44,91,45,49,53,54,46,53,48,53,51,52,57,44,53,57,46,54,48,54,49,57,57,93,44,91,45,49,53,54,46,54,55,53,52,56,57,44,53,57,46,53,49,57,53,50,49,93,44,91,45,49,53,54,46,55,54,57,57,54,53,44,53,57,46,51,52,54,49,54,54,93,44,91,45,49,53,55,46,49,48,54,56,49,52,44,53,57,46,51,52,54,49,54,50,93,44,91,45,49,53,55,46,50,55,53,50,51,51,44,53,57,46,50,53,57,52,56,50,93,44,91,45,49,53,55,46,49,57,54,51,48,54,44,53,57,46,48,56,54,49,50,50,93,44,91,45,49,53,55,46,49,57,54,50,57,50,44,53,56,46,56,52,54,50,52,57,93,44,91,45,49,53,55,46,48,52,53,52,57,54,44,53,56,46,56,56,53,56,51,51,93,44,91,45,49,53,54,46,51,49,51,56,56,57,44,53,56,46,56,56,53,56,51,51,93,44,91,45,49,53,54,46,51,49,51,56,56,57,44,53,56,46,54,49,54,54,54,54,93,44,91,45,49,53,56,44,53,56,46,54,49,54,54,54,55,93,44,91,45,49,53,56,46,48,54,57,56,50,50,44,53,56,46,52,57,48,51,49,55,93,44,91,45,49,53,56,46,51,54,49,52,44,53,55,46,57,54,50,54,56,54,93,44,91,45,49,53,56,46,56,57,51,52,56,50,44,53,54,46,57,57,57,56,52,49,93,44,91,45,49,53,56,46,56,57,51,53,56,53,44,53,54,46,57,52,53,48,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,48,50,57,51,55,44,51,55,46,54,54,48,53,48,56,93,44,91,45,56,49,46,56,53,53,57,51,57,44,51,55,46,53,52,56,57,49,93,44,91,45,56,49,46,55,50,57,52,51,51,44,51,55,46,52,57,52,53,56,53,93,44,91,45,56,49,46,54,53,52,52,51,49,44,51,55,46,53,50,51,51,49,50,93,44,91,45,56,49,46,51,49,49,50,48,49,44,51,55,46,52,50,52,53,48,57,93,44,91,45,56,49,46,50,50,50,49,50,49,44,51,55,46,53,49,48,52,49,54,93,44,91,45,56,49,46,51,48,52,49,51,44,51,55,46,53,52,54,53,54,52,93,44,91,45,56,49,46,52,50,55,55,56,49,44,51,55,46,55,52,57,51,53,50,93,44,91,45,56,49,46,53,49,52,50,50,56,44,51,55,46,55,57,49,50,49,49,93,44,91,45,56,49,46,54,48,55,53,51,50,44,51,55,46,55,56,56,55,48,57,93,44,91,45,56,49,46,55,54,52,55,51,55,44,51,55,46,55,53,50,49,48,56,93,44,91,45,56,49,46,56,48,50,57,51,55,44,51,55,46,54,54,48,53,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,75,101,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,51,48,53,51,44,34,98,101,100,115,34,58,49,53,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,49,57,52,49,52,54,44,51,53,46,55,56,57,50,48,52,93,44,91,45,49,50,48,46,49,57,51,57,49,56,44,51,53,46,54,49,52,51,53,57,93,44,91,45,49,50,48,46,48,56,54,54,55,52,44,51,53,46,53,50,54,53,53,52,93,44,91,45,49,49,57,46,56,56,48,48,52,53,44,51,53,46,52,51,57,49,51,51,93,44,91,45,49,49,57,46,56,56,48,49,55,50,44,51,53,46,51,53,49,50,49,49,93,44,91,45,49,49,57,46,56,48,57,52,52,57,44,51,53,46,50,54,51,53,56,52,93,44,91,45,49,49,57,46,54,54,54,54,54,51,44,51,53,46,50,54,50,53,50,55,93,44,91,45,49,49,57,46,54,54,55,48,53,54,44,51,53,46,49,55,52,56,48,57,93,44,91,45,49,49,57,46,53,53,51,54,52,49,44,51,53,46,49,55,57,57,55,53,93,44,91,45,49,49,57,46,52,55,50,55,49,57,44,51,53,46,48,55,54,56,56,53,93,44,91,45,49,49,57,46,52,55,50,55,53,52,44,51,52,46,57,48,49,49,55,52,93,44,91,45,49,49,57,46,52,52,50,51,53,50,44,51,52,46,57,48,49,50,55,52,93,44,91,45,49,49,57,46,50,55,54,57,52,54,44,51,52,46,56,55,57,54,55,53,93,44,91,45,49,49,57,46,50,52,51,54,52,53,44,51,52,46,56,49,52,49,55,56,93,44,91,45,49,49,56,46,56,56,49,51,54,52,44,51,52,46,55,57,48,54,50,57,93,44,91,45,49,49,56,46,56,53,52,48,49,44,51,52,46,56,49,55,51,51,57,93,44,91,45,49,49,55,46,54,54,55,50,57,50,44,51,52,46,56,50,50,53,50,54,93,44,91,45,49,49,55,46,54,51,50,48,49,49,44,51,52,46,56,50,50,50,55,93,44,91,45,49,49,55,46,54,51,50,57,57,54,44,51,53,46,55,57,55,50,53,49,93,44,91,45,49,49,56,46,48,48,56,48,52,51,44,51,53,46,55,56,57,49,54,49,93,44,91,45,49,49,56,46,54,50,57,57,55,53,44,51,53,46,55,56,57,53,56,93,44,91,45,49,49,57,46,53,51,56,49,49,54,44,51,53,46,55,56,57,53,54,55,93,44,91,45,49,50,48,46,49,57,52,49,52,54,44,51,53,46,55,56,57,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,67,111,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,53,55,49,44,34,98,101,100,115,34,58,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,52,52,54,49,49,44,51,51,46,57,52,57,50,49,55,93,44,91,45,57,55,46,48,57,53,54,52,52,44,51,51,46,55,50,57,50,50,50,93,44,91,45,57,55,46,49,53,52,51,54,55,44,51,51,46,55,50,52,48,57,52,93,44,91,45,57,55,46,50,53,53,54,51,57,44,51,51,46,56,54,51,55,48,50,93,44,91,45,57,55,46,51,55,52,54,57,44,51,51,46,56,49,56,53,53,50,93,44,91,45,57,55,46,52,56,52,49,54,51,44,51,51,46,57,49,53,53,49,93,44,91,45,57,55,46,52,56,55,48,54,53,44,51,51,46,52,51,51,54,56,49,93,44,91,45,57,55,46,51,56,51,48,57,53,44,51,51,46,52,51,48,52,53,93,44,91,45,57,54,46,57,52,51,56,54,44,51,51,46,52,49,54,52,49,93,44,91,45,57,54,46,57,52,52,54,49,49,44,51,51,46,57,52,57,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,52,53,52,44,34,98,101,100,115,34,58,51,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,50,50,54,55,51,44,51,51,46,52,52,93,44,91,45,56,48,46,57,52,56,55,53,54,44,51,51,46,51,48,56,48,52,55,93,44,91,45,56,48,46,55,57,55,57,49,50,44,51,51,46,49,55,54,57,52,52,93,44,91,45,56,48,46,55,57,48,50,57,54,44,51,51,46,49,56,48,56,52,93,44,91,45,56,48,46,53,48,50,55,57,44,51,51,46,51,51,52,52,57,54,93,44,91,45,56,48,46,51,54,49,56,53,49,44,51,51,46,50,53,55,52,52,51,93,44,91,45,56,48,46,50,53,53,54,52,50,44,51,51,46,51,48,48,48,48,50,93,44,91,45,56,48,46,50,50,50,50,54,55,44,51,51,46,52,52,51,55,49,54,93,44,91,45,56,48,46,51,53,52,53,51,57,44,51,51,46,52,51,48,52,48,56,93,44,91,45,56,48,46,52,57,54,50,55,51,44,51,51,46,53,53,56,52,56,49,93,44,91,45,56,48,46,54,53,57,48,50,44,51,51,46,52,55,48,57,56,50,93,44,91,45,56,48,46,56,48,55,54,51,49,44,51,51,46,54,48,52,48,56,49,93,44,91,45,56,48,46,57,54,53,52,56,57,44,51,51,46,54,50,53,50,56,50,93,44,91,45,56,49,46,48,52,50,56,53,52,44,51,51,46,55,48,55,49,51,49,93,44,91,45,56,49,46,49,56,55,50,55,49,44,51,51,46,54,53,50,57,51,55,93,44,91,45,56,49,46,51,55,50,57,51,49,44,51,51,46,52,57,48,52,49,55,93,44,91,45,56,49,46,50,50,50,54,55,51,44,51,51,46,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,50,53,50,50,50,44,52,53,46,50,57,50,48,54,49,93,44,91,45,57,48,46,57,50,51,51,54,50,44,52,53,46,48,51,49,49,52,51,93,44,91,45,57,48,46,51,49,53,48,51,56,44,52,53,46,48,51,51,56,50,57,93,44,91,45,57,48,46,49,57,55,55,54,53,44,52,53,46,49,50,48,54,48,52,93,44,91,45,57,48,46,48,52,51,54,56,53,44,52,53,46,49,50,48,50,49,52,93,44,91,45,57,48,46,48,52,50,50,55,51,44,52,53,46,51,56,49,56,54,54,93,44,91,45,57,48,46,54,55,56,55,55,51,44,52,53,46,51,55,55,57,48,55,93,44,91,45,57,48,46,57,50,53,51,52,51,44,52,53,46,51,55,57,51,53,93,44,91,45,57,48,46,57,50,53,50,50,50,44,52,53,46,50,57,50,48,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,111,119,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,52,57,53,50,52,44,52,51,46,56,52,56,52,52,51,93,44,91,45,57,51,46,48,52,57,49,57,50,44,52,51,46,52,57,57,55,48,53,93,44,91,45,57,51,46,48,50,52,51,52,53,44,52,51,46,52,57,57,55,51,51,93,44,91,45,57,50,46,53,53,51,49,50,56,44,52,51,46,53,48,48,50,49,56,93,44,91,45,57,50,46,52,52,56,57,52,56,44,52,51,46,53,48,48,52,53,57,93,44,91,45,57,50,46,52,52,56,57,54,53,44,52,51,46,56,51,52,49,48,53,93,44,91,45,57,50,46,54,56,57,51,57,49,44,52,51,46,56,52,56,53,55,93,44,91,45,57,51,46,48,52,53,57,54,54,44,52,51,46,56,52,56,52,54,55,93,44,91,45,57,51,46,48,52,57,53,50,52,44,52,51,46,56,52,56,52,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,117,114,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,54,51,55,55,56,44,52,52,46,49,57,54,52,50,53,93,44,91,45,57,54,46,48,54,52,54,50,44,52,51,46,56,52,57,48,51,57,93,44,91,45,57,54,46,48,53,50,51,50,44,52,51,46,56,52,57,48,55,93,44,91,45,57,53,46,52,54,50,52,50,55,44,52,51,46,56,52,55,57,49,49,93,44,91,45,57,53,46,52,54,50,53,52,55,44,52,52,46,49,57,53,57,52,50,93,44,91,45,57,53,46,53,57,51,53,55,44,52,52,46,49,57,53,53,51,93,44,91,45,57,54,46,48,54,51,55,55,56,44,52,52,46,49,57,54,52,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,52,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,80,114,111,118,105,100,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,82,104,111,100,101,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,82,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,52,53,51,51,44,34,98,101,100,115,34,58,50,56,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,55,57,57,49,56,56,44,52,50,46,48,48,56,48,53,51,93,44,91,45,55,49,46,55,56,57,55,48,52,44,52,49,46,55,50,53,49,57,56,93,44,91,45,55,49,46,51,54,53,50,48,55,44,52,49,46,55,51,53,54,52,57,93,44,91,45,55,49,46,51,49,55,56,55,51,44,52,49,46,55,55,54,49,57,57,93,44,91,45,55,49,46,51,56,49,50,57,57,44,52,49,46,57,56,53,48,56,52,93,44,91,45,55,49,46,52,57,56,50,53,57,44,52,50,46,48,49,55,50,55,50,93,44,91,45,55,49,46,55,57,57,49,56,56,44,52,50,46,48,48,56,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,80,104,101,108,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,55,56,57,44,34,98,101,100,115,34,58,50,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,51,48,53,53,52,44,51,56,46,49,53,51,53,49,57,93,44,91,45,57,49,46,54,51,50,52,51,49,44,51,56,46,48,53,48,57,53,49,93,44,91,45,57,49,46,56,57,53,51,52,55,44,51,56,46,48,53,49,49,57,57,93,44,91,45,57,50,46,48,50,49,49,54,53,44,51,56,46,48,49,48,54,51,57,93,44,91,45,57,50,46,48,50,57,50,53,56,44,51,55,46,54,48,50,53,52,50,93,44,91,45,57,49,46,56,48,57,49,48,53,44,51,55,46,53,57,56,56,54,51,93,44,91,45,57,49,46,56,48,54,50,49,57,44,51,55,46,55,57,49,50,56,54,93,44,91,45,57,49,46,53,50,56,55,57,55,44,51,55,46,55,56,56,57,56,57,93,44,91,45,57,49,46,53,51,52,51,56,52,44,51,56,46,49,53,50,53,57,51,93,44,91,45,57,49,46,54,51,48,53,53,52,44,51,56,46,49,53,51,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,80,114,101,110,116,105,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,54,48,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,49,56,53,48,56,44,51,52,46,55,53,54,55,56,49,93,44,91,45,56,56,46,55,51,53,52,52,44,51,52,46,53,57,54,52,56,51,93,44,91,45,56,56,46,55,51,54,52,54,53,44,51,52,46,53,48,56,57,49,93,44,91,45,56,56,46,53,52,50,48,55,57,44,51,52,46,52,54,53,50,55,54,93,44,91,45,56,56,46,51,50,57,49,57,51,44,51,52,46,52,54,51,53,55,49,93,44,91,45,56,56,46,51,51,48,54,57,57,44,51,52,46,55,52,48,55,50,49,93,44,91,45,56,56,46,51,54,53,52,55,50,44,51,52,46,55,53,53,54,48,52,93,44,91,45,56,56,46,55,49,56,53,48,56,44,51,52,46,55,53,54,55,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,53,34,44,34,78,65,77,69,34,58,34,87,104,105,116,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,48,56,57,44,34,98,101,100,115,34,58,51,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,57,55,52,49,54,44,51,54,46,57,52,53,57,51,49,93,44,91,45,56,52,46,51,53,48,48,48,54,44,51,54,46,55,56,48,54,56,49,93,44,91,45,56,52,46,50,50,55,50,57,50,44,51,54,46,53,57,50,48,52,53,93,44,91,45,56,51,46,57,56,55,54,49,53,44,51,54,46,53,56,57,52,55,49,93,44,91,45,56,51,46,57,51,48,55,54,50,44,51,54,46,53,56,55,54,57,49,93,44,91,45,56,51,46,56,55,55,53,48,51,44,51,54,46,54,56,55,50,53,57,93,44,91,45,56,51,46,57,53,56,53,51,52,44,51,54,46,55,50,55,50,52,53,93,44,91,45,56,52,46,48,54,53,55,53,53,44,51,54,46,56,53,51,57,54,49,93,44,91,45,56,52,46,48,57,49,56,53,51,44,51,54,46,57,53,53,57,57,50,93,44,91,45,56,52,46,50,57,55,52,49,54,44,51,54,46,57,52,53,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,83,116,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,57,52,49,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,50,52,55,49,49,44,52,49,46,52,51,50,56,56,54,93,44,91,45,56,54,46,55,48,48,54,51,44,52,49,46,52,48,49,57,56,50,93,44,91,45,56,54,46,55,56,51,52,55,51,44,52,49,46,50,56,53,52,54,53,93,44,91,45,56,54,46,57,51,48,48,55,57,44,52,49,46,50,51,54,55,57,56,93,44,91,45,56,54,46,57,51,48,49,55,44,52,49,46,49,55,50,51,49,56,93,44,91,45,56,54,46,52,54,55,48,52,54,44,52,49,46,49,55,49,52,52,50,93,44,91,45,56,54,46,52,54,54,54,48,51,44,52,49,46,52,51,50,57,54,56,93,44,91,45,56,54,46,53,50,52,55,49,49,44,52,49,46,52,51,50,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,57,49,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,48,53,55,44,34,98,101,100,115,34,58,57,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,50,56,53,49,50,44,51,48,46,57,48,54,49,56,56,93,44,91,45,57,55,46,57,54,50,56,54,44,51,48,46,55,56,53,54,52,49,93,44,91,45,57,56,46,48,52,57,56,56,54,44,51,48,46,54,50,52,49,53,53,93,44,91,45,57,55,46,57,53,54,55,51,52,44,51,48,46,54,50,56,50,52,57,93,44,91,45,57,55,46,56,49,49,56,54,51,44,51,48,46,52,52,55,48,49,56,93,44,91,45,57,55,46,53,57,54,50,51,54,44,51,48,46,53,48,49,53,49,51,93,44,91,45,57,55,46,51,54,57,53,51,57,44,51,48,46,52,49,57,53,54,51,93,44,91,45,57,55,46,51,51,52,52,54,51,44,51,48,46,52,48,50,56,52,51,93,44,91,45,57,55,46,49,53,53,50,49,57,44,51,48,46,52,53,55,51,52,52,93,44,91,45,57,55,46,50,55,49,52,49,56,44,51,48,46,55,51,53,54,57,50,93,44,91,45,57,55,46,51,49,53,53,48,55,44,51,48,46,55,53,50,51,55,49,93,44,91,45,57,55,46,54,50,53,50,56,56,44,51,48,46,56,55,48,52,51,93,44,91,45,57,55,46,56,50,56,53,49,50,44,51,48,46,57,48,54,49,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,80,97,116,105,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,51,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,56,50,50,54,51,44,49,56,46,48,51,50,57,53,56,93,44,91,45,54,53,46,57,56,55,53,53,49,44,49,55,46,57,48,56,57,50,51,93,44,91,45,54,53,46,56,55,51,50,57,57,44,49,55,46,57,51,55,57,53,53,93,44,91,45,54,53,46,57,56,56,53,50,51,44,49,56,46,48,53,56,57,52,49,93,44,91,45,54,54,46,48,49,48,50,52,53,44,49,56,46,48,55,53,53,54,53,93,44,91,45,54,54,46,48,53,49,55,56,56,44,49,56,46,49,48,57,56,55,56,93,44,91,45,54,54,46,48,53,51,49,52,54,44,49,56,46,49,48,55,50,57,51,93,44,91,45,54,54,46,48,56,50,50,54,51,44,49,56,46,48,51,50,57,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,77,105,116,99,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,51,49,50,56,44,52,51,46,53,48,48,50,49,56,93,44,91,45,57,51,46,48,50,52,51,52,53,44,52,51,46,52,57,57,55,51,51,93,44,91,45,57,51,46,48,50,52,49,52,51,44,52,51,46,50,53,53,53,51,56,93,44,91,45,57,51,46,48,50,52,48,57,50,44,52,51,46,50,49,50,56,49,50,93,44,91,45,57,50,46,53,53,52,51,56,49,44,52,51,46,50,49,50,56,49,51,93,44,91,45,57,50,46,53,53,51,49,50,56,44,52,51,46,53,48,48,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,69,109,97,110,117,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,57,57,44,34,98,101,100,115,34,58,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,52,49,52,57,44,51,50,46,55,54,50,50,53,56,93,44,91,45,56,50,46,52,54,57,56,50,51,44,51,50,46,54,53,48,56,56,50,93,44,91,45,56,50,46,54,52,55,55,51,51,44,51,50,46,53,49,50,53,48,55,93,44,91,45,56,50,46,52,57,57,57,55,49,44,51,50,46,52,57,56,51,55,56,93,44,91,45,56,50,46,51,56,54,49,48,54,44,51,50,46,52,52,48,51,55,93,44,91,45,56,50,46,52,48,57,49,49,56,44,51,50,46,51,53,51,56,51,93,44,91,45,56,50,46,51,53,52,53,52,54,44,51,50,46,50,57,50,49,57,52,93,44,91,45,56,50,46,50,51,50,55,56,56,44,51,50,46,51,49,56,56,51,56,93,44,91,45,56,50,46,50,53,50,55,53,55,44,51,50,46,51,53,51,51,49,93,44,91,45,56,50,46,49,52,56,51,51,56,44,51,50,46,53,50,48,52,50,57,93,44,91,45,56,50,46,48,51,48,50,51,51,44,51,50,46,53,51,56,55,55,93,44,91,45,56,50,46,48,48,49,50,51,54,44,51,50,46,54,48,54,57,49,93,44,91,45,56,50,46,48,56,50,52,52,44,51,50,46,54,54,51,48,54,49,93,44,91,45,56,50,46,49,52,52,57,55,55,44,51,50,46,56,49,50,55,52,49,93,44,91,45,56,50,46,51,49,54,53,49,50,44,51,50,46,56,51,53,55,55,50,93,44,91,45,56,50,46,52,51,52,49,52,57,44,51,50,46,55,54,50,50,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,116,97,104,111,117,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,55,53,55,50,49,44,51,49,46,56,56,50,53,54,93,44,91,45,57,49,46,54,52,54,48,52,44,51,49,46,57,54,49,49,52,49,93,44,91,45,57,49,46,55,55,57,57,50,56,44,51,49,46,56,56,49,52,56,49,93,44,91,45,57,49,46,56,56,57,54,56,55,44,51,49,46,57,55,49,52,55,52,93,44,91,45,57,50,46,48,48,53,52,51,52,44,51,49,46,57,50,55,50,57,54,93,44,91,45,57,50,46,48,48,56,49,50,49,44,51,49,46,51,50,53,55,57,55,93,44,91,45,57,49,46,56,51,52,50,56,44,51,49,46,50,54,54,51,52,52,93,44,91,45,57,49,46,56,53,53,57,48,56,44,51,49,46,52,57,54,48,49,93,44,91,45,57,49,46,56,50,54,57,50,54,44,51,49,46,53,57,49,54,55,49,93,44,91,45,57,49,46,55,48,53,57,52,56,44,51,49,46,54,52,50,56,54,51,93,44,91,45,57,49,46,54,57,52,52,54,57,44,51,49,46,55,51,53,50,56,54,93,44,91,45,57,49,46,53,52,52,55,57,49,44,51,49,46,55,53,49,55,51,49,93,44,91,45,57,49,46,53,55,53,55,50,49,44,51,49,46,56,56,50,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,57,51,49,44,34,98,101,100,115,34,58,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,54,52,57,54,51,55,44,52,49,46,49,50,50,51,52,52,93,44,91,45,55,53,46,55,55,49,51,48,54,44,52,49,46,48,55,55,56,49,54,93,44,91,45,55,53,46,55,51,49,57,51,44,52,49,46,48,48,56,50,50,93,44,91,45,55,53,46,57,57,55,51,52,56,44,52,48,46,57,49,50,57,56,53,93,44,91,45,55,53,46,55,53,55,56,48,55,44,52,48,46,55,51,53,52,49,52,93,44,91,45,55,53,46,54,48,56,57,56,53,44,52,48,46,55,56,55,51,56,55,93,44,91,45,55,53,46,52,55,52,49,57,51,44,52,48,46,56,49,52,55,52,54,93,44,91,45,55,53,46,53,55,52,53,57,44,52,48,46,57,53,49,51,50,51,93,44,91,45,55,53,46,52,57,53,57,57,44,52,48,46,57,56,55,49,56,49,93,44,91,45,55,53,46,54,52,57,54,51,55,44,52,49,46,49,50,50,51,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,80,97,119,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,54,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,54,51,54,54,55,44,52,48,46,50,54,50,49,55,51,93,44,91,45,57,54,46,52,54,51,55,49,50,44,52,48,46,48,48,49,48,50,51,93,44,91,45,57,54,46,50,51,57,50,44,52,48,46,48,48,48,56,56,49,93,44,91,45,57,54,46,48,49,48,54,56,44,52,48,46,48,48,48,54,53,49,93,44,91,45,57,54,46,48,49,48,49,55,54,44,52,48,46,50,54,49,52,56,50,93,44,91,45,57,54,46,48,54,54,55,51,54,44,52,48,46,50,54,50,48,51,56,93,44,91,45,57,54,46,52,54,51,54,54,55,44,52,48,46,50,54,50,49,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,85,110,105,99,111,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,56,48,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,52,48,52,54,44,51,54,46,50,53,50,56,48,55,93,44,91,45,56,50,46,52,51,55,50,53,49,44,51,54,46,49,53,52,55,48,57,93,44,91,45,56,50,46,53,57,53,48,54,53,44,51,54,46,48,57,54,50,48,53,93,44,91,45,56,50,46,54,48,50,57,56,44,51,54,46,48,51,57,54,55,55,93,44,91,45,56,50,46,53,48,53,52,50,53,44,51,53,46,57,55,55,52,51,50,93,44,91,45,56,50,46,52,49,54,55,51,56,44,51,54,46,48,55,50,56,50,55,93,44,91,45,56,50,46,50,50,50,48,54,52,44,51,54,46,49,53,54,57,54,93,44,91,45,56,50,46,51,52,48,52,54,44,51,54,46,50,53,50,56,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,83,112,97,114,116,97,110,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,50,49,57,53,44,34,98,101,100,115,34,58,57,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,54,57,51,52,56,44,51,53,46,49,56,55,50,49,55,93,44,91,45,56,50,46,50,49,53,57,52,55,44,51,53,46,49,57,54,50,50,50,93,44,91,45,56,50,46,50,50,54,51,50,53,44,51,52,46,56,53,50,52,56,56,93,44,91,45,56,50,46,49,52,54,55,57,50,44,51,52,46,55,56,53,53,53,52,93,44,91,45,56,50,46,48,55,49,51,49,53,44,51,52,46,55,48,51,55,93,44,91,45,56,49,46,56,53,52,48,48,50,44,51,52,46,53,57,52,53,52,57,93,44,91,45,56,49,46,55,56,51,51,57,44,51,52,46,56,51,55,49,50,53,93,44,91,45,56,49,46,55,49,49,54,57,52,44,51,52,46,57,49,50,53,55,55,93,44,91,45,56,49,46,55,53,53,48,56,51,44,51,52,46,57,51,48,50,56,93,44,91,45,56,49,46,56,55,52,54,56,57,44,51,53,46,49,56,52,48,51,54,93,44,91,45,56,49,46,57,54,57,51,52,56,44,51,53,46,49,56,55,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,77,97,114,97,116,104,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,50,54,52,44,34,98,101,100,115,34,58,52,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,53,48,51,56,44,52,53,46,48,51,51,56,50,57,93,44,91,45,57,48,46,51,49,54,50,53,51,44,52,52,46,54,56,53,49,53,52,93,44,91,45,56,57,46,56,52,52,57,51,49,44,52,52,46,54,56,52,57,52,53,93,44,91,45,56,57,46,50,50,51,55,52,53,44,52,52,46,54,56,49,51,54,53,93,44,91,45,56,57,46,50,50,51,56,49,52,44,52,53,46,48,50,57,50,52,54,93,44,91,45,56,57,46,50,50,52,50,49,52,44,52,53,46,49,49,56,53,54,55,93,44,91,45,56,57,46,52,50,53,57,55,49,44,52,53,46,49,49,57,48,57,56,93,44,91,45,57,48,46,48,52,51,54,56,53,44,52,53,46,49,50,48,50,49,52,93,44,91,45,57,48,46,49,57,55,55,54,53,44,52,53,46,49,50,48,54,48,52,93,44,91,45,57,48,46,51,49,53,48,51,56,44,52,53,46,48,51,51,56,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,69,108,107,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,50,53,50,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,53,56,54,55,56,54,44,52,49,46,48,48,48,51,57,56,93,44,91,45,49,49,54,46,49,53,56,49,53,53,44,52,48,46,57,57,57,57,49,50,93,44,91,45,49,49,54,46,49,53,55,56,51,52,44,52,48,46,54,54,54,51,56,57,93,44,91,45,49,49,54,46,48,48,48,56,57,55,44,52,48,46,49,50,55,51,55,54,93,44,91,45,49,49,53,46,56,51,52,57,54,57,44,52,48,46,49,50,55,56,52,50,93,44,91,45,49,49,52,46,57,48,49,56,50,53,44,52,48,46,49,50,50,48,56,50,93,44,91,45,49,49,52,46,48,52,54,54,49,52,44,52,48,46,49,49,54,57,51,54,93,44,91,45,49,49,52,46,48,52,50,48,50,57,44,52,48,46,57,57,57,56,57,54,93,44,91,45,49,49,52,46,48,52,49,52,55,55,44,52,49,46,57,57,51,56,55,51,93,44,91,45,49,49,52,46,50,56,49,55,57,57,44,52,49,46,57,57,52,52,52,49,93,44,91,45,49,49,53,46,48,51,56,49,53,55,44,52,49,46,57,57,54,50,55,57,93,44,91,45,49,49,54,46,48,52,53,51,55,51,44,52,49,46,57,57,54,51,51,49,93,44,91,45,49,49,55,46,48,49,56,50,48,52,44,52,49,46,57,57,57,55,49,53,93,44,91,45,49,49,55,46,48,49,56,52,49,57,44,52,49,46,48,48,48,50,53,52,93,44,91,45,49,49,54,46,53,56,54,55,56,54,44,52,49,46,48,48,48,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,114,97,120,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,56,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,48,53,55,57,57,44,51,56,46,57,48,52,49,54,55,93,44,91,45,56,48,46,55,48,49,53,50,50,44,51,56,46,56,55,57,48,52,53,93,44,91,45,56,48,46,57,56,52,57,53,44,51,56,46,55,49,55,56,57,56,93,44,91,45,56,49,46,48,51,49,54,55,55,44,51,56,46,54,54,55,56,51,57,93,44,91,45,56,48,46,56,56,49,50,51,50,44,51,56,46,53,48,55,48,52,53,93,44,91,45,56,48,46,55,56,53,49,55,55,44,51,56,46,53,53,55,54,52,57,93,44,91,45,56,48,46,54,53,48,55,56,54,44,51,56,46,53,50,54,53,57,93,44,91,45,56,48,46,53,48,56,54,53,53,44,51,56,46,54,52,53,53,53,51,93,44,91,45,56,48,46,52,53,55,51,51,50,44,51,56,46,55,51,57,49,54,57,93,44,91,45,56,48,46,52,55,51,55,54,56,44,51,56,46,56,50,57,48,57,56,93,44,91,45,56,48,46,54,48,53,55,57,57,44,51,56,46,57,48,52,49,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,87,101,120,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,49,49,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,44,91,45,56,53,46,56,50,49,49,56,54,44,52,52,46,49,54,52,49,57,55,93,44,91,45,56,53,46,53,54,52,53,53,52,44,52,52,46,49,54,52,56,54,49,93,44,91,45,56,53,46,51,51,52,55,55,55,44,52,52,46,49,54,53,49,49,56,93,44,91,45,56,53,46,51,51,52,44,52,52,46,53,49,50,51,48,51,93,44,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,67,111,99,104,114,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,52,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,53,54,52,56,53,44,51,51,46,51,56,56,52,49,52,93,44,91,45,49,48,50,46,53,57,52,56,51,54,44,51,51,46,51,56,56,52,56,57,93,44,91,45,49,48,50,46,54,49,53,52,52,55,44,51,51,46,56,50,53,49,50,49,93,44,91,45,49,48,51,46,48,52,55,52,48,57,44,51,51,46,56,50,52,54,55,52,93,44,91,45,49,48,51,46,48,53,50,54,50,49,44,51,51,46,53,55,48,53,55,53,93,44,91,45,49,48,51,46,48,53,54,52,56,53,44,51,51,46,51,56,56,52,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,108,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,56,52,50,44,34,98,101,100,115,34,58,53,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,53,48,52,51,44,52,48,46,55,50,52,56,50,55,93,44,91,45,55,56,46,53,51,57,56,52,44,52,48,46,53,48,54,49,53,52,93,44,91,45,55,56,46,53,54,52,48,56,53,44,52,48,46,51,55,48,54,48,57,93,44,91,45,55,56,46,54,50,48,51,56,51,44,52,48,46,51,50,55,48,50,53,93,44,91,45,55,56,46,50,53,55,51,48,53,44,52,48,46,50,57,55,56,56,51,93,44,91,45,55,56,46,49,51,48,48,56,49,44,52,48,46,52,56,49,57,57,93,44,91,45,55,56,46,50,50,49,57,55,44,52,48,46,54,55,52,53,51,57,93,44,91,45,55,56,46,49,49,54,53,50,49,44,52,48,46,55,51,57,49,50,55,93,44,91,45,55,56,46,51,53,57,57,49,50,44,52,48,46,55,51,50,53,57,50,93,44,91,45,55,56,46,51,53,48,52,51,44,52,48,46,55,50,52,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,105,99,107,111,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,54,53,49,57,57,44,51,56,46,48,54,50,52,55,57,93,44,91,45,57,51,46,53,48,51,57,52,54,44,51,56,46,48,55,51,49,50,51,93,44,91,45,57,51,46,53,49,50,49,48,51,44,51,55,46,57,49,51,53,51,53,93,44,91,45,57,51,46,53,55,51,50,48,50,44,51,55,46,56,50,56,48,51,53,93,44,91,45,57,51,46,49,56,55,57,49,53,44,51,55,46,56,48,50,55,51,55,93,44,91,45,57,51,46,49,56,50,55,48,54,44,51,55,46,57,48,52,49,52,52,93,44,91,45,57,51,46,48,55,50,52,52,55,44,51,55,46,57,48,50,54,50,55,93,44,91,45,57,51,46,48,54,53,49,57,57,44,51,56,46,48,54,50,52,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,52,57,51,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,54,50,55,52,44,51,54,46,57,51,49,55,55,53,93,44,91,45,57,52,46,48,54,56,56,57,56,44,51,54,46,55,52,55,56,49,56,93,44,91,45,57,52,46,48,55,55,48,56,57,44,51,54,46,52,57,56,55,51,93,44,91,45,57,51,46,56,54,54,54,56,57,44,51,54,46,52,57,56,55,51,53,93,44,91,45,57,51,46,53,56,52,50,54,50,44,51,54,46,52,57,57,49,54,55,93,44,91,45,57,51,46,53,55,51,56,44,51,54,46,56,50,48,48,51,50,93,44,91,45,57,51,46,54,49,49,48,48,51,44,51,54,46,57,50,50,56,51,49,93,44,91,45,57,52,46,48,54,50,55,52,44,51,54,46,57,51,49,55,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,82,97,109,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,52,57,51,44,34,98,101,100,115,34,58,49,57,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,48,53,49,56,44,52,53,46,49,50,51,56,54,54,93,44,91,45,57,51,46,50,50,55,54,57,54,44,52,53,46,49,50,52,53,51,51,93,44,91,45,57,51,46,50,50,54,57,50,57,44,52,53,46,48,51,53,54,55,49,93,44,91,45,57,51,46,49,55,56,53,51,57,44,52,52,46,56,56,56,51,51,56,93,44,91,45,57,51,46,48,50,48,48,52,52,44,52,52,46,56,57,48,55,53,93,44,91,45,57,51,46,48,50,48,53,49,56,44,52,53,46,49,50,51,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,105,116,116,108,101,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,55,55,50,57,57,44,51,51,46,57,52,48,57,51,50,93,44,91,45,57,52,46,52,56,53,56,55,56,44,51,51,46,54,51,55,56,54,53,93,44,91,45,57,52,46,51,56,57,53,51,44,51,51,46,53,52,54,55,51,57,93,44,91,45,57,52,46,50,57,49,50,49,50,44,51,51,46,53,56,49,52,55,56,93,44,91,45,57,52,46,48,52,51,52,53,44,51,51,46,53,53,50,50,53,51,93,44,91,45,57,51,46,57,51,53,54,48,54,44,51,51,46,53,53,48,49,55,54,93,44,91,45,57,51,46,56,50,53,56,56,52,44,51,51,46,54,48,57,56,53,51,93,44,91,45,57,51,46,57,54,53,54,51,55,44,51,51,46,54,54,57,55,51,54,93,44,91,45,57,51,46,57,53,55,51,49,53,44,51,51,46,55,53,48,57,52,93,44,91,45,57,51,46,57,53,56,56,50,56,44,51,51,46,55,53,48,57,57,52,93,44,91,45,57,52,46,49,56,49,56,49,44,51,51,46,55,56,56,56,53,50,93,44,91,45,57,52,46,52,55,55,50,57,57,44,51,51,46,57,52,48,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,76,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,49,53,53,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,50,56,51,54,51,55,44,51,57,46,54,50,49,53,54,49,93,44,91,45,49,49,57,46,52,55,56,56,48,54,44,51,57,46,51,51,55,52,49,54,93,44,91,45,49,49,57,46,55,49,50,54,52,53,44,51,57,46,50,53,48,56,55,49,93,44,91,45,49,49,57,46,53,54,51,54,56,44,51,57,46,49,57,53,52,49,53,93,44,91,45,49,49,57,46,53,53,49,48,50,44,51,57,46,48,56,53,55,57,49,93,44,91,45,49,49,57,46,51,49,49,55,49,52,44,51,57,46,48,56,51,54,49,53,93,44,91,45,49,49,57,46,51,49,48,55,48,50,44,51,56,46,57,57,48,55,49,57,93,44,91,45,49,49,57,46,52,50,48,56,51,55,44,51,56,46,57,53,52,55,49,53,93,44,91,45,49,49,57,46,52,48,54,50,55,57,44,51,56,46,55,51,51,51,54,50,93,44,91,45,49,49,57,46,51,52,57,56,56,52,44,51,56,46,55,50,57,49,57,51,93,44,91,45,49,49,57,46,51,50,56,51,57,56,44,51,56,46,53,51,52,55,57,50,93,44,91,45,49,49,57,46,49,53,54,57,55,56,44,51,56,46,52,49,52,55,52,54,93,44,91,45,49,49,56,46,57,48,54,56,54,49,44,51,56,46,52,49,52,54,55,55,93,44,91,45,49,49,56,46,57,48,50,49,50,52,44,51,56,46,56,53,50,49,53,56,93,44,91,45,49,49,57,46,48,49,52,53,50,56,44,51,56,46,56,53,49,51,93,44,91,45,49,49,57,46,48,49,52,56,51,55,44,51,56,46,57,52,51,51,50,51,93,44,91,45,49,49,56,46,57,50,57,55,51,55,44,51,57,46,48,55,51,54,57,56,93,44,91,45,49,49,56,46,55,53,51,56,51,53,44,51,57,46,48,55,52,54,51,93,44,91,45,49,49,56,46,55,53,52,48,49,52,44,51,57,46,49,49,50,48,50,51,93,44,91,45,49,49,57,46,49,49,56,49,57,51,44,51,57,46,51,56,56,53,49,54,93,44,91,45,49,49,57,46,48,55,55,57,56,56,44,51,57,46,55,50,50,52,52,49,93,44,91,45,49,49,57,46,49,56,57,51,52,50,44,51,57,46,54,53,48,56,55,93,44,91,45,49,49,57,46,50,56,51,54,51,55,44,51,57,46,54,50,49,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,56,54,55,57,44,34,98,101,100,115,34,58,49,51,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,54,53,57,51,49,44,50,54,46,55,54,57,53,53,50,93,44,91,45,56,50,46,49,57,56,54,50,54,44,50,54,46,55,55,48,56,57,50,93,44,91,45,56,50,46,51,51,53,48,52,44,50,54,46,55,56,55,57,52,54,93,44,91,45,56,50,46,51,50,49,57,49,44,50,54,46,54,54,53,48,55,57,93,44,91,45,56,50,46,50,51,54,52,53,51,44,50,54,46,52,55,55,51,93,44,91,45,56,50,46,49,49,50,50,50,49,44,50,54,46,51,55,55,55,53,53,93,44,91,45,56,49,46,57,55,56,49,50,54,44,50,54,46,51,57,57,54,57,50,93,44,91,45,56,49,46,57,48,53,53,48,49,44,50,54,46,51,51,48,48,56,56,93,44,91,45,56,49,46,54,53,55,57,44,50,54,46,51,49,55,53,54,51,93,44,91,45,56,49,46,54,53,57,53,48,54,44,50,54,46,52,50,49,48,55,55,93,44,91,45,56,49,46,53,54,50,49,56,44,50,54,46,52,50,50,54,50,53,93,44,91,45,56,49,46,53,54,51,55,54,51,44,50,54,46,53,49,51,51,50,52,93,44,91,45,56,49,46,53,54,53,57,51,49,44,50,54,46,55,54,57,53,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,74,111,115,101,112,104,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,52,56,49,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,55,49,54,52,57,50,44,52,50,46,55,56,52,48,54,49,93,44,91,45,49,50,51,46,56,57,48,54,53,55,44,52,50,46,53,48,48,53,51,56,93,44,91,45,49,50,51,46,57,57,56,55,56,44,52,50,46,52,57,57,57,54,50,93,44,91,45,49,50,52,46,48,50,53,57,56,52,44,52,50,46,51,53,57,52,48,57,93,44,91,45,49,50,51,46,56,57,50,54,53,49,44,52,50,46,51,53,51,50,57,51,93,44,91,45,49,50,51,46,55,57,50,56,51,52,44,52,50,46,50,50,52,51,49,52,93,44,91,45,49,50,51,46,56,53,56,53,52,57,44,52,50,46,49,51,53,49,49,54,93,44,91,45,49,50,51,46,56,50,50,48,52,49,44,52,49,46,57,57,53,53,56,93,44,91,45,49,50,51,46,53,49,55,57,49,49,44,52,50,46,48,48,48,55,53,54,93,44,91,45,49,50,51,46,50,51,49,49,49,51,44,52,50,46,48,48,51,57,52,51,93,44,91,45,49,50,51,46,50,50,57,54,49,57,44,52,50,46,55,48,50,54,49,93,44,91,45,49,50,51,46,52,52,53,52,53,54,44,52,50,46,55,48,51,48,50,53,93,44,91,45,49,50,51,46,55,49,54,52,57,50,44,52,50,46,55,56,52,48,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,97,110,97,116,195,173,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,57,50,44,34,98,101,100,115,34,58,53,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,51,50,53,50,49,44,49,56,46,53,51,53,52,55,56,93,44,91,45,54,54,46,53,52,51,48,55,57,44,49,56,46,52,48,53,52,50,50,93,44,91,45,54,54,46,53,51,51,54,50,51,44,49,56,46,51,53,49,51,51,51,93,44,91,45,54,54,46,52,54,51,50,49,49,44,49,56,46,51,55,49,52,55,51,93,44,91,45,54,54,46,52,52,51,56,44,49,56,46,51,55,49,48,50,55,93,44,91,45,54,54,46,52,51,54,55,53,50,44,49,56,46,53,52,48,56,48,53,93,44,91,45,54,54,46,53,51,50,53,50,49,44,49,56,46,53,51,53,52,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,55,51,55,44,34,98,101,100,115,34,58,49,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,52,56,49,57,57,44,51,49,46,51,52,57,53,55,52,93,44,91,45,57,48,46,53,52,55,54,49,54,44,51,48,46,57,57,57,55,50,93,44,91,45,57,48,46,51,52,55,50,53,53,44,51,49,46,48,48,48,53,51,93,44,91,45,57,48,46,50,53,57,53,53,53,44,51,49,46,48,48,48,54,55,57,93,44,91,45,57,48,46,50,54,48,51,57,49,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,53,52,56,49,57,57,44,51,49,46,51,52,57,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,102,102,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,53,51,49,44,34,98,101,100,115,34,58,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,52,53,49,54,53,44,51,53,46,54,51,49,57,49,51,93,44,91,45,56,54,46,50,53,55,53,57,44,51,53,46,52,49,50,52,55,54,93,44,91,45,56,54,46,50,54,49,52,56,57,44,51,53,46,51,51,51,53,55,57,93,44,91,45,56,54,46,49,53,56,48,49,56,44,51,53,46,51,54,50,54,48,55,93,44,91,45,56,53,46,57,49,51,53,57,51,44,51,53,46,50,56,57,49,56,57,93,44,91,45,56,53,46,56,55,54,57,54,50,44,51,53,46,53,50,52,48,57,53,93,44,91,45,56,53,46,57,56,53,48,54,50,44,51,53,46,54,54,48,49,48,56,93,44,91,45,56,54,46,49,52,51,54,53,50,44,51,53,46,54,54,49,55,52,55,93,44,91,45,56,54,46,50,48,55,49,52,55,44,51,53,46,55,48,51,55,57,93,44,91,45,56,54,46,50,52,53,49,54,53,44,51,53,46,54,51,49,57,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,76,101,109,104,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,57,56,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,56,49,50,52,48,55,44,52,52,46,56,48,56,51,52,54,93,44,91,45,49,49,52,46,56,49,57,56,56,57,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,49,52,46,54,48,50,51,54,50,44,52,52,46,53,57,52,56,53,54,93,44,91,45,49,49,52,46,52,53,49,56,52,44,52,52,46,54,49,49,55,52,49,93,44,91,45,49,49,52,46,51,51,57,49,57,54,44,52,52,46,55,57,51,53,57,52,93,44,91,45,49,49,52,46,48,55,53,57,51,55,44,52,52,46,55,52,53,53,55,56,93,44,91,45,49,49,52,46,48,49,57,50,48,52,44,52,52,46,54,53,49,53,52,49,93,44,91,45,49,49,51,46,56,49,54,50,49,53,44,52,52,46,52,57,51,57,54,51,93,44,91,45,49,49,51,46,53,48,49,53,49,57,44,52,52,46,52,50,50,51,48,51,93,44,91,45,49,49,51,46,51,51,57,54,49,55,44,52,52,46,51,49,54,51,49,51,93,44,91,45,49,49,51,46,51,50,48,54,48,57,44,52,52,46,50,51,51,49,54,52,93,44,91,45,49,49,50,46,57,57,53,48,57,49,44,52,52,46,50,51,52,49,50,54,93,44,91,45,49,49,50,46,56,49,51,55,57,50,44,52,52,46,50,51,48,50,56,49,93,44,91,45,49,49,50,46,56,49,51,56,48,53,44,52,52,46,51,55,54,52,53,53,93,44,91,45,49,49,51,46,48,48,49,57,55,56,44,52,52,46,52,52,57,56,53,55,93,44,91,45,49,49,51,46,49,48,49,54,49,56,44,52,52,46,55,50,57,52,54,53,93,44,91,45,49,49,51,46,50,52,55,49,57,50,44,52,52,46,56,50,50,57,53,52,93,44,91,45,49,49,51,46,52,53,53,48,55,49,44,52,52,46,56,54,53,52,50,52,93,44,91,45,49,49,51,46,52,53,50,48,52,52,44,52,53,46,48,53,57,49,55,52,93,44,91,45,49,49,51,46,53,55,54,55,50,53,44,52,53,46,49,51,49,50,51,55,93,44,91,45,49,49,51,46,55,55,51,55,53,51,44,52,53,46,52,48,54,51,53,57,93,44,91,45,49,49,51,46,56,48,54,52,51,49,44,52,53,46,54,48,49,54,51,93,44,91,45,49,49,51,46,57,51,56,48,57,53,44,52,53,46,54,57,53,55,52,93,44,91,45,49,49,52,46,50,54,57,56,57,50,44,52,53,46,52,56,52,53,53,50,93,44,91,45,49,49,52,46,53,54,52,57,57,57,44,52,53,46,53,53,55,56,48,51,93,44,91,45,49,49,52,46,54,54,54,50,50,51,44,52,53,46,52,55,49,51,50,53,93,44,91,45,49,49,52,46,55,57,51,50,48,55,44,52,53,46,52,51,54,51,51,52,93,44,91,45,49,49,52,46,54,48,51,57,52,44,52,53,46,50,57,53,56,50,54,93,44,91,45,49,49,52,46,54,57,52,48,48,49,44,52,53,46,49,57,55,49,56,50,93,44,91,45,49,49,52,46,55,51,50,50,55,44,52,53,46,49,53,49,49,53,53,93,44,91,45,49,49,52,46,55,51,49,57,54,44,52,52,46,56,56,48,57,52,54,93,44,91,45,49,49,52,46,56,49,50,52,48,55,44,52,52,46,56,48,56,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,55,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,51,56,50,54,44,51,55,46,53,54,48,56,48,51,93,44,91,45,56,55,46,48,57,57,56,48,51,44,51,55,46,52,49,54,48,52,50,93,44,91,45,56,54,46,56,57,57,50,54,56,44,51,55,46,50,49,50,51,49,51,93,44,91,45,56,54,46,56,50,57,51,55,49,44,51,55,46,50,56,49,51,54,53,93,44,91,45,56,54,46,54,49,50,48,57,53,44,51,55,46,51,57,53,49,50,51,93,44,91,45,56,54,46,54,54,49,56,56,44,51,55,46,53,52,49,57,51,52,93,44,91,45,56,54,46,53,57,50,56,49,44,51,55,46,53,54,52,51,54,93,44,91,45,56,54,46,54,51,56,57,51,53,44,51,55,46,54,54,49,56,55,55,93,44,91,45,56,54,46,56,50,51,52,50,57,44,51,55,46,55,51,55,55,53,52,93,44,91,45,56,54,46,56,49,55,53,49,52,44,51,55,46,54,55,51,56,49,52,93,44,91,45,56,55,46,48,51,56,50,54,44,51,55,46,53,54,48,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,83,97,114,112,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,51,53,49,44,34,98,101,100,115,34,58,50,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,50,51,53,52,56,44,52,49,46,49,57,48,56,53,93,44,91,45,57,54,46,51,50,55,51,57,57,44,52,49,46,49,56,57,57,57,57,93,44,91,45,57,54,46,51,49,57,49,57,49,44,52,49,46,48,52,52,57,57,56,93,44,91,45,57,54,46,50,48,55,54,52,56,44,52,48,46,57,57,53,54,50,56,93,44,91,45,57,54,46,48,53,54,50,53,54,44,52,49,46,48,54,53,51,53,54,93,44,91,45,57,53,46,56,55,57,52,56,55,44,52,49,46,48,53,51,50,57,57,93,44,91,45,57,53,46,56,56,48,53,50,49,44,52,49,46,49,53,57,56,55,52,93,44,91,45,57,53,46,57,50,51,53,52,56,44,52,49,46,49,57,48,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,67,111,108,113,117,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,48,54,44,34,98,101,100,115,34,58,49,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,57,57,52,51,44,51,49,46,51,51,52,57,54,54,93,44,91,45,56,52,46,48,48,51,54,50,55,44,51,49,46,48,55,55,50,57,93,44,91,45,56,52,46,48,48,51,56,55,54,44,51,49,46,48,52,49,53,56,50,93,44,91,45,56,51,46,55,51,54,49,53,56,44,51,49,46,48,51,55,54,55,57,93,44,91,45,56,51,46,53,55,52,56,53,55,44,51,49,46,48,55,56,49,51,53,93,44,91,45,56,51,46,53,48,57,56,49,44,51,49,46,50,48,54,49,56,49,93,44,91,45,56,51,46,53,49,50,54,48,55,44,51,49,46,51,50,55,52,48,53,93,44,91,45,56,51,46,54,53,52,48,57,44,51,49,46,51,51,48,54,54,49,93,44,91,45,56,51,46,57,57,57,52,51,44,51,49,46,51,51,52,57,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,87,105,108,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,56,48,57,55,55,44,52,54,46,54,51,48,55,54,53,93,44,91,45,57,54,46,55,56,52,51,56,49,44,52,54,46,54,51,48,53,48,52,93,44,91,45,57,54,46,54,54,55,52,50,50,44,52,54,46,51,55,54,49,49,55,93,44,91,45,57,54,46,53,57,57,54,54,44,52,54,46,51,51,48,52,56,49,93,44,91,45,57,54,46,53,53,52,52,51,54,44,52,54,46,48,56,52,49,56,54,93,44,91,45,57,54,46,53,55,54,53,54,52,44,52,54,46,48,50,49,56,52,56,93,44,91,45,57,54,46,50,54,54,49,52,44,52,54,46,48,50,49,54,49,93,44,91,45,57,54,46,50,54,53,51,54,54,44,52,54,46,49,48,56,54,49,93,44,91,45,57,54,46,50,56,48,57,55,55,44,52,54,46,54,51,48,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,52,54,44,34,98,101,100,115,34,58,49,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,57,57,48,52,51,44,51,56,46,50,50,48,55,53,53,93,44,91,45,57,48,46,48,51,54,51,49,54,44,51,56,46,50,50,51,50,52,54,93,44,91,45,57,48,46,48,51,53,56,54,55,44,51,56,46,49,51,53,55,51,54,93,44,91,45,57,48,46,50,48,53,50,48,53,44,51,56,46,48,56,54,57,48,55,93,44,91,45,56,57,46,57,56,56,49,48,56,44,51,55,46,57,54,49,55,52,57,93,44,91,45,56,57,46,57,51,56,54,48,56,44,51,55,46,56,55,52,51,48,52,93,44,91,45,56,57,46,56,52,52,55,56,54,44,51,55,46,57,48,53,53,55,50,93,44,91,45,56,57,46,54,55,52,51,50,49,44,51,55,46,56,48,51,49,53,50,93,44,91,45,56,57,46,53,57,53,48,55,51,44,51,55,46,57,53,53,51,52,51,93,44,91,45,56,57,46,53,57,50,55,57,55,44,51,56,46,50,49,57,50,55,49,93,44,91,45,56,57,46,55,48,51,50,53,54,44,51,56,46,50,49,57,52,48,52,93,44,91,45,56,57,46,56,57,57,48,52,51,44,51,56,46,50,50,48,55,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,75,101,110,110,101,98,101,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,53,52,53,44,34,98,101,100,115,34,58,52,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,49,50,57,51,57,44,52,52,46,52,56,55,50,49,55,93,44,91,45,55,48,46,48,55,53,55,52,55,44,52,52,46,50,48,54,49,54,56,93,44,91,45,55,48,46,48,48,53,52,55,49,44,52,52,46,49,50,52,53,49,57,93,44,91,45,54,57,46,55,53,56,50,48,56,44,52,52,46,49,51,57,51,51,52,93,44,91,45,54,57,46,54,53,54,55,52,50,44,52,52,46,49,50,50,51,57,50,93,44,91,45,54,57,46,54,53,48,49,55,49,44,52,52,46,50,55,57,54,50,53,93,44,91,45,54,57,46,53,48,54,51,56,50,44,52,52,46,51,52,50,56,55,93,44,91,45,54,57,46,51,57,51,49,50,51,44,52,52,46,54,52,48,51,55,53,93,44,91,45,54,57,46,52,55,49,55,49,50,44,52,52,46,54,57,50,56,57,57,93,44,91,45,54,57,46,54,51,51,49,49,56,44,52,52,46,55,48,48,51,55,51,93,44,91,45,54,57,46,54,48,53,55,52,54,44,52,52,46,53,55,55,50,54,52,93,44,91,45,54,57,46,57,51,48,52,53,49,44,52,52,46,54,49,48,56,53,50,93,44,91,45,55,48,46,48,52,48,50,49,53,44,52,52,46,53,56,56,55,50,50,93,44,91,45,55,48,46,49,50,57,51,57,44,52,52,46,52,56,55,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,83,109,121,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,48,53,57,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,51,55,48,57,54,44,51,54,46,57,50,57,48,51,57,93,44,91,45,56,49,46,54,57,57,53,54,49,44,51,54,46,55,56,57,51,49,54,93,44,91,45,56,49,46,54,48,53,56,54,53,44,51,54,46,54,51,56,48,55,57,93,44,91,45,56,49,46,53,50,52,56,48,56,44,51,54,46,55,48,55,53,52,93,44,91,45,56,49,46,50,54,49,57,56,55,44,51,54,46,55,54,51,48,51,51,93,44,91,45,56,49,46,51,55,57,52,48,50,44,51,54,46,57,53,50,52,52,50,93,44,91,45,56,49,46,52,51,54,55,51,44,51,55,46,48,49,48,49,51,53,93,44,91,45,56,49,46,54,56,50,55,56,54,44,51,54,46,57,51,50,57,51,52,93,44,91,45,56,49,46,55,56,48,53,52,53,44,51,54,46,57,53,56,54,50,57,93,44,91,45,56,49,46,56,51,55,48,57,54,44,51,54,46,57,50,57,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,82,111,111,115,101,118,101,108,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,49,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,52,51,55,54,55,44,51,52,46,51,48,50,54,52,56,93,44,91,45,49,48,51,46,55,52,48,48,54,54,44,51,52,46,51,48,51,48,53,54,93,44,91,45,49,48,51,46,55,51,56,49,54,54,44,51,52,46,54,48,52,54,55,93,44,91,45,49,48,51,46,57,52,56,55,55,56,44,51,52,46,54,48,53,48,53,56,93,44,91,45,49,48,51,46,57,52,54,48,49,57,44,51,52,46,48,56,50,52,54,51,93,44,91,45,49,48,51,46,56,52,49,54,57,49,44,51,52,46,48,56,49,57,48,57,93,44,91,45,49,48,51,46,56,52,49,57,51,51,44,51,51,46,56,49,57,50,93,44,91,45,49,48,51,46,55,49,54,56,56,53,44,51,51,46,56,49,57,53,53,56,93,44,91,45,49,48,51,46,55,49,56,51,51,51,44,51,51,46,54,53,54,50,49,93,44,91,45,49,48,51,46,53,48,57,55,53,57,44,51,51,46,54,53,55,50,54,50,93,44,91,45,49,48,51,46,53,49,48,49,50,57,44,51,51,46,53,55,48,49,49,55,93,44,91,45,49,48,51,46,48,53,50,54,50,49,44,51,51,46,53,55,48,53,55,53,93,44,91,45,49,48,51,46,48,52,55,52,48,57,44,51,51,46,56,50,52,54,55,52,93,44,91,45,49,48,51,46,48,52,51,55,54,55,44,51,52,46,51,48,50,54,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,83,111,109,101,114,115,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,57,52,57,44,34,98,101,100,115,34,58,49,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,57,51,54,56,50,44,52,48,46,48,52,48,52,49,51,93,44,91,45,55,57,46,52,49,55,53,53,56,44,51,57,46,56,53,51,55,55,54,93,44,91,45,55,57,46,51,57,50,52,53,57,44,51,57,46,55,50,49,53,55,56,93,44,91,45,55,56,46,57,50,56,52,49,54,44,51,57,46,55,50,50,55,56,51,93,44,91,45,55,56,46,56,48,56,51,56,55,44,51,57,46,55,50,50,57,49,49,93,44,91,45,55,56,46,55,53,55,50,52,49,44,51,57,46,56,50,51,52,56,52,93,44,91,45,55,56,46,55,54,51,50,48,54,44,52,48,46,48,53,55,48,48,53,93,44,91,45,55,56,46,54,53,56,52,48,57,44,52,48,46,50,52,50,57,51,51,93,44,91,45,55,56,46,56,57,48,56,51,54,44,52,48,46,50,52,57,53,51,57,93,44,91,45,55,57,46,48,53,53,57,56,51,44,52,48,46,50,56,53,48,56,57,93,44,91,45,55,57,46,50,57,51,54,56,50,44,52,48,46,48,52,48,52,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,52,48,54,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,50,49,57,54,52,44,51,54,46,54,52,54,57,51,54,93,44,91,45,56,50,46,49,52,53,53,55,51,44,51,54,46,53,57,52,55,50,53,93,44,91,45,56,49,46,56,50,54,55,52,50,44,51,54,46,54,49,52,50,49,53,93,44,91,45,56,49,46,54,52,54,57,44,51,54,46,54,49,49,57,49,56,93,44,91,45,56,49,46,54,48,53,56,54,53,44,51,54,46,54,51,56,48,55,57,93,44,91,45,56,49,46,54,57,57,53,54,49,44,51,54,46,55,56,57,51,49,54,93,44,91,45,56,49,46,56,51,55,48,57,54,44,51,54,46,57,50,57,48,51,57,93,44,91,45,56,49,46,57,52,57,50,55,54,44,51,54,46,56,54,52,52,55,51,93,44,91,45,56,50,46,51,51,50,48,55,56,44,51,54,46,55,48,56,57,54,57,93,44,91,45,56,50,46,50,57,52,49,51,52,44,51,54,46,53,57,53,54,57,55,93,44,91,45,56,50,46,50,52,51,51,56,50,44,51,54,46,53,57,53,54,53,49,93,44,91,45,56,50,46,49,50,49,57,54,52,44,51,54,46,54,52,54,57,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,71,117,105,108,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,51,53,56,50,44,34,98,101,100,115,34,58,49,52,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,44,91,45,56,48,46,48,52,51,50,51,56,44,51,54,46,48,49,48,55,53,56,93,44,91,45,56,48,46,48,52,54,56,54,57,44,51,53,46,57,50,48,54,57,51,93,44,91,45,55,57,46,53,52,49,55,50,56,44,51,53,46,56,57,57,56,53,49,93,44,91,45,55,57,46,53,51,50,52,49,44,51,54,46,50,52,49,52,54,51,93,44,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,54,48,53,50,44,34,98,101,100,115,34,58,49,50,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,53,49,50,53,48,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,52,55,51,52,57,50,44,52,51,46,54,51,52,49,48,51,93,44,91,45,49,49,54,46,52,55,51,53,57,55,44,52,51,46,52,53,57,50,49,56,93,44,91,45,49,49,54,46,53,49,49,56,57,55,44,52,51,46,50,57,48,53,50,93,44,91,45,49,49,54,46,50,54,54,50,48,55,44,52,51,46,49,49,50,50,54,57,93,44,91,45,49,49,53,46,57,55,56,54,53,49,44,52,51,46,49,49,51,52,51,50,93,44,91,45,49,49,53,46,57,55,53,55,49,57,44,52,51,46,53,57,49,52,51,56,93,44,91,45,49,49,54,46,50,56,50,48,49,57,44,52,51,46,56,48,55,51,54,53,93,44,91,45,49,49,54,46,53,49,50,53,48,50,44,52,51,46,56,48,55,49,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,50,48,57,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,51,49,57,56,53,44,51,53,46,56,49,50,52,48,50,93,44,91,45,57,57,46,51,55,53,56,49,55,44,51,53,46,56,49,50,49,56,56,93,44,91,45,57,57,46,51,54,52,49,52,49,44,51,53,46,53,48,56,55,57,51,93,44,91,45,57,57,46,51,54,52,50,49,55,44,51,53,46,52,54,53,51,50,56,93,44,91,45,57,56,46,54,50,51,51,51,54,44,51,53,46,52,54,52,50,50,53,93,44,91,45,57,56,46,54,50,51,50,52,52,44,51,53,46,53,53,49,53,50,50,93,44,91,45,57,56,46,54,51,49,57,56,53,44,51,53,46,56,49,50,52,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,51,52,52,44,34,98,101,100,115,34,58,49,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,49,57,56,51,54,44,52,48,46,54,56,54,56,50,51,93,44,91,45,56,51,46,52,49,56,54,55,44,52,48,46,53,48,53,50,50,57,93,44,91,45,56,51,46,50,52,56,49,56,51,44,52,48,46,53,48,55,48,51,52,93,44,91,45,56,51,46,50,52,56,53,57,53,44,52,48,46,52,52,51,57,56,57,93,44,91,45,56,51,46,48,50,48,55,57,56,44,52,48,46,52,51,51,55,57,53,93,44,91,45,56,50,46,57,53,56,52,48,49,44,52,48,46,52,57,48,54,54,52,93,44,91,45,56,50,46,57,53,55,56,49,55,44,52,48,46,54,52,53,49,52,56,93,44,91,45,56,50,46,56,53,56,51,48,50,44,52,48,46,55,48,53,48,49,57,93,44,91,45,56,51,46,49,49,49,51,54,44,52,48,46,55,48,50,57,49,53,93,44,91,45,56,51,46,52,49,57,56,51,54,44,52,48,46,54,56,54,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,53,52,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,54,54,54,57,44,51,57,46,56,52,52,57,50,55,93,44,91,45,57,48,46,57,49,53,57,54,49,44,51,57,46,55,53,55,50,93,44,91,45,57,49,46,51,54,53,49,50,53,44,51,57,46,55,53,56,55,50,51,93,44,91,45,57,49,46,51,48,54,54,57,51,44,51,57,46,54,56,52,56,54,53,93,44,91,45,57,49,46,49,55,56,48,49,50,44,51,57,46,53,57,56,49,57,54,93,44,91,45,57,49,46,48,51,56,50,55,44,51,57,46,52,52,56,52,51,53,93,44,91,45,57,48,46,57,51,54,55,50,56,44,51,57,46,51,57,57,53,49,49,93,44,91,45,57,48,46,54,49,51,55,55,53,44,51,57,46,51,57,53,52,49,54,93,44,91,45,57,48,46,53,56,49,48,53,53,44,51,57,46,53,50,49,55,50,56,93,44,91,45,57,48,46,54,52,53,57,57,44,51,57,46,55,48,51,51,54,56,93,44,91,45,57,48,46,53,57,57,49,48,53,44,51,57,46,55,57,48,48,54,93,44,91,45,57,48,46,53,55,49,52,50,52,44,51,57,46,56,51,56,57,54,49,93,44,91,45,57,48,46,57,49,54,54,54,57,44,51,57,46,56,52,52,57,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,50,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,51,34,44,34,78,65,77,69,34,58,34,87,111,111,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,52,55,55,49,56,44,52,48,46,57,50,53,55,52,57,93,44,91,45,56,57,46,52,55,50,51,51,44,52,48,46,57,50,49,50,48,54,93,44,91,45,56,57,46,53,53,52,57,57,52,44,52,48,46,55,52,55,54,51,55,93,44,91,45,56,57,46,51,51,48,48,57,50,44,52,48,46,55,52,56,50,53,55,93,44,91,45,56,57,46,50,54,57,51,57,55,44,52,48,46,53,57,52,51,49,56,93,44,91,45,56,57,46,49,51,51,55,53,50,44,52,48,46,53,57,54,55,51,52,93,44,91,45,56,56,46,57,56,52,55,50,50,44,52,48,46,54,54,52,57,53,51,93,44,91,45,56,56,46,57,50,57,51,51,49,44,52,48,46,55,53,51,51,51,55,93,44,91,45,56,56,46,57,51,49,51,57,44,52,48,46,57,50,55,55,52,93,44,91,45,56,57,46,48,52,55,55,49,56,44,52,48,46,57,50,53,55,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,53,34,44,34,78,65,77,69,34,58,34,82,105,99,104,109,111,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,52,54,51,44,34,98,101,100,115,34,58,51,49,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,50,56,50,51,56,44,51,51,46,53,52,52,57,51,52,93,44,91,45,56,50,46,50,57,52,49,55,57,44,51,51,46,51,53,52,54,51,53,93,44,91,45,56,50,46,51,53,51,52,57,56,44,51,51,46,51,49,50,51,49,56,93,44,91,45,56,50,46,50,54,55,53,56,44,51,51,46,50,54,55,51,57,55,93,44,91,45,56,50,46,49,55,52,50,52,44,51,51,46,50,57,54,55,55,49,93,44,91,45,56,50,46,48,57,50,53,57,50,44,51,51,46,50,51,48,48,56,52,93,44,91,45,56,49,46,56,53,50,48,55,54,44,51,51,46,50,52,55,50,56,56,93,44,91,45,56,49,46,57,49,56,51,51,55,44,51,51,46,51,51,50,56,52,50,93,44,91,45,56,49,46,57,51,52,49,51,54,44,51,51,46,52,54,56,51,51,55,93,44,91,45,56,50,46,48,49,50,52,55,44,51,51,46,53,51,50,49,49,54,93,44,91,45,56,50,46,48,50,56,50,51,56,44,51,51,46,53,52,52,57,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,80,105,99,107,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,55,52,54,49,57,44,51,51,46,53,51,52,48,48,56,93,44,91,45,56,56,46,51,48,52,52,51,52,44,51,51,46,50,56,56,51,50,93,44,91,45,56,56,46,51,52,48,52,51,50,44,51,50,46,57,57,49,49,57,57,93,44,91,45,56,56,46,49,55,49,56,53,50,44,51,50,46,57,57,53,56,54,93,44,91,45,56,55,46,56,51,55,53,50,49,44,51,51,46,49,53,51,54,51,55,93,44,91,45,56,55,46,56,52,48,54,56,51,44,51,51,46,53,50,52,56,51,57,93,44,91,45,56,55,46,57,52,54,53,49,57,44,51,51,46,53,50,52,48,54,53,93,44,91,45,56,56,46,50,55,52,54,49,57,44,51,51,46,53,51,52,48,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,69,108,108,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,55,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,48,53,54,51,52,44,51,54,46,53,57,50,55,53,52,93,44,91,45,49,48,48,46,48,48,51,49,54,44,51,54,46,53,57,51,50,53,93,44,91,45,49,48,48,46,48,48,51,55,54,50,44,51,54,46,52,57,57,56,52,57,93,44,91,45,49,48,48,46,48,48,48,51,57,57,44,51,54,46,48,53,53,54,55,55,93,44,91,45,49,48,48,46,48,48,48,51,57,54,44,51,53,46,56,56,49,50,51,51,93,44,91,45,57,57,46,56,57,51,51,55,50,44,51,53,46,57,56,53,50,57,53,93,44,91,45,57,57,46,55,49,55,49,48,49,44,51,53,46,56,53,57,55,54,57,93,44,91,45,57,57,46,53,53,56,52,56,54,44,51,53,46,56,54,53,57,56,56,93,44,91,45,57,57,46,52,57,53,56,49,50,44,51,53,46,57,55,56,55,51,50,93,44,91,45,57,57,46,51,56,49,48,50,50,44,51,54,46,48,49,50,57,50,53,93,44,91,45,57,57,46,51,56,50,48,55,52,44,51,54,46,49,54,52,51,48,49,93,44,91,45,57,57,46,53,57,54,48,55,57,44,51,54,46,49,54,52,48,54,49,93,44,91,45,57,57,46,54,48,53,54,51,52,44,51,54,46,53,57,50,55,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,56,52,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,57,50,55,57,55,44,51,56,46,50,49,57,50,55,49,93,44,91,45,56,57,46,53,57,53,48,55,51,44,51,55,46,57,53,53,51,52,51,93,44,91,45,56,57,46,49,55,55,53,57,55,44,51,55,46,57,53,48,51,49,49,93,44,91,45,56,57,46,49,50,57,54,51,50,44,51,56,46,49,50,52,55,54,55,93,44,91,45,56,57,46,49,52,55,53,57,55,44,51,56,46,50,49,50,56,57,53,93,44,91,45,56,57,46,53,57,50,55,57,55,44,51,56,46,50,49,57,50,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,71,114,117,110,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,52,49,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,55,44,52,50,46,53,53,54,56,49,93,44,91,45,57,51,46,48,48,50,57,48,50,44,52,50,46,52,55,48,54,51,56,93,44,91,45,57,51,46,48,48,49,54,55,52,44,52,50,46,50,48,57,50,54,55,93,44,91,45,57,50,46,55,54,55,52,54,51,44,52,50,46,50,49,48,49,52,93,44,91,45,57,50,46,55,54,56,48,57,44,52,50,46,50,57,54,54,56,93,44,91,45,57,50,46,53,51,51,53,49,44,52,50,46,50,57,55,48,48,49,93,44,91,45,57,50,46,53,53,52,51,44,52,50,46,53,53,53,56,53,52,93,44,91,45,57,51,46,48,50,55,44,52,50,46,53,53,54,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,82,111,117,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,55,52,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,52,51,57,51,56,54,44,52,48,46,50,50,51,51,55,57,93,44,91,45,49,48,55,46,48,51,55,57,50,56,44,52,48,46,50,50,53,51,55,50,93,44,91,45,49,48,55,46,48,51,55,51,54,51,44,52,48,46,48,57,49,53,51,56,93,44,91,45,49,48,55,46,48,51,51,57,54,56,44,51,57,46,57,49,56,57,49,51,93,44,91,45,49,48,54,46,54,50,54,53,54,57,44,51,57,46,57,50,52,55,56,53,93,44,91,45,49,48,54,46,54,51,50,50,53,55,44,52,48,46,51,52,49,53,53,57,93,44,91,45,49,48,54,46,54,53,50,49,49,50,44,52,48,46,52,52,53,50,51,49,93,44,91,45,49,48,54,46,55,48,54,49,52,57,44,52,48,46,54,49,54,53,57,55,93,44,91,45,49,48,54,46,54,51,54,57,50,50,44,52,48,46,55,56,57,52,56,57,93,44,91,45,49,48,54,46,56,54,57,56,57,49,44,52,48,46,57,53,54,55,50,93,44,91,45,49,48,54,46,56,53,55,55,55,51,44,52,49,46,48,48,50,54,54,51,93,44,91,45,49,48,55,46,51,49,55,55,57,52,44,52,49,46,48,48,50,57,50,93,44,91,45,49,48,55,46,51,49,52,49,53,51,44,52,48,46,54,48,48,50,56,49,93,44,91,45,49,48,55,46,52,50,56,56,49,51,44,52,48,46,53,52,50,50,48,55,93,44,91,45,49,48,55,46,52,51,57,51,56,54,44,52,48,46,50,50,51,51,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,83,111,109,101,114,115,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,48,49,55,54,44,34,98,101,100,115,34,58,57,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,50,53,54,54,54,44,52,48,46,55,49,57,53,51,50,93,44,91,45,55,52,46,55,49,51,49,53,44,52,48,46,53,56,51,57,48,51,93,44,91,45,55,52,46,55,55,53,57,55,57,44,52,48,46,53,48,51,54,48,54,93,44,91,45,55,52,46,55,52,56,49,52,55,44,52,48,46,52,50,52,49,53,54,93,44,91,45,55,52,46,54,50,48,50,52,44,52,48,46,51,55,51,55,52,57,93,44,91,45,55,52,46,52,53,57,56,54,51,44,52,48,46,52,57,49,48,52,54,93,44,91,45,55,52,46,52,54,51,50,57,49,44,52,48,46,53,57,57,49,56,55,93,44,91,45,55,52,46,52,54,49,48,51,53,44,52,48,46,54,55,51,53,48,52,93,44,91,45,55,52,46,53,53,54,48,49,56,44,52,48,46,55,53,56,50,56,56,93,44,91,45,55,52,46,55,50,53,54,54,54,44,52,48,46,55,49,57,53,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,111,108,117,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,56,57,48,48,49,51,44,51,57,46,51,56,51,56,54,52,93,44,91,45,49,50,50,46,48,48,56,56,53,55,44,51,57,46,52,49,51,53,54,55,93,44,91,45,49,50,50,46,49,51,54,48,48,54,44,51,57,46,51,56,53,52,57,52,93,44,91,45,49,50,50,46,55,51,57,48,54,50,44,51,57,46,51,56,51,50,54,54,93,44,91,45,49,50,50,46,55,55,53,48,52,51,44,51,57,46,51,49,49,55,55,56,93,44,91,45,49,50,50,46,54,57,49,51,54,49,44,51,57,46,50,52,55,52,51,49,93,44,91,45,49,50,50,46,53,49,53,51,51,49,44,51,57,46,50,48,57,50,49,53,93,44,91,45,49,50,50,46,52,56,51,56,55,57,44,51,57,46,48,54,54,57,53,53,93,44,91,45,49,50,50,46,51,52,48,49,55,50,44,51,56,46,57,50,52,50,52,54,93,44,91,45,49,50,49,46,56,51,53,52,56,56,44,51,56,46,57,50,52,52,56,49,93,44,91,45,49,50,49,46,56,49,57,49,52,50,44,51,56,46,57,56,56,53,53,49,93,44,91,45,49,50,49,46,57,52,53,53,49,52,44,51,57,46,49,55,57,56,52,51,93,44,91,45,49,50,49,46,57,48,56,50,54,57,44,51,57,46,51,48,51,56,55,56,93,44,91,45,49,50,49,46,56,57,48,48,49,51,44,51,57,46,51,56,51,56,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,50,55,55,93,44,91,45,56,57,46,48,52,49,52,48,49,44,51,55,46,53,57,54,53,55,54,93,44,91,45,56,57,46,48,52,52,55,57,57,44,51,55,46,51,50,57,55,49,55,93,44,91,45,56,56,46,57,50,56,55,53,55,44,51,55,46,51,48,50,56,52,56,93,44,91,45,56,56,46,55,49,48,55,51,56,44,51,55,46,51,51,55,48,56,49,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,48,53,57,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,72,105,110,115,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,53,54,56,54,50,44,51,56,46,49,52,55,50,54,55,93,44,91,45,49,48,55,46,53,49,54,56,51,44,51,56,46,48,54,57,55,52,49,93,44,91,45,49,48,55,46,53,54,56,56,55,53,44,51,55,46,57,54,53,48,49,53,93,44,91,45,49,48,55,46,52,56,50,50,52,53,44,51,55,46,55,54,56,51,53,51,93,44,91,45,49,48,55,46,52,56,50,49,55,57,44,51,55,46,54,51,57,53,48,49,93,44,91,45,49,48,55,46,52,56,50,49,51,49,44,51,55,46,52,50,50,54,55,51,93,44,91,45,49,48,55,46,49,50,56,54,56,44,51,55,46,52,50,50,57,52,50,93,44,91,45,49,48,55,46,49,52,53,49,51,56,44,51,55,46,54,55,53,52,57,55,93,44,91,45,49,48,55,46,49,51,56,49,57,49,44,51,55,46,57,51,56,56,52,56,93,44,91,45,49,48,55,46,48,48,48,54,48,50,44,51,55,46,57,53,54,48,52,49,93,44,91,45,49,48,55,46,48,48,49,49,49,57,44,51,56,46,49,52,55,48,55,50,93,44,91,45,49,48,55,46,53,54,56,54,50,44,51,56,46,49,52,55,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,97,115,115,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,54,49,53,44,34,98,101,100,115,34,58,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,52,55,50,49,55,55,44,52,50,46,54,54,57,51,53,50,93,44,91,45,49,49,51,46,53,53,55,49,57,51,44,52,50,46,54,53,54,55,57,57,93,44,91,45,49,49,51,46,54,53,52,49,52,57,44,52,50,46,53,51,54,49,53,53,93,44,91,45,49,49,51,46,57,51,49,55,57,57,44,52,50,46,53,51,53,50,52,51,93,44,91,45,49,49,52,46,48,48,48,51,56,56,44,52,50,46,53,50,54,51,55,51,93,44,91,45,49,49,52,46,48,54,57,49,54,50,44,52,50,46,52,49,55,49,50,52,93,44,91,45,49,49,52,46,50,56,53,52,52,56,44,52,50,46,52,49,55,51,51,51,93,44,91,45,49,49,52,46,50,56,49,55,57,57,44,52,49,46,57,57,52,52,52,49,93,44,91,45,49,49,52,46,48,52,49,52,55,55,44,52,49,46,57,57,51,56,55,51,93,44,91,45,49,49,51,46,56,49,52,56,56,52,44,52,49,46,57,56,56,54,53,52,93,44,91,45,49,49,51,46,48,48,48,48,52,49,44,52,49,46,57,57,56,50,48,52,93,44,91,45,49,49,50,46,57,57,57,57,54,53,44,52,50,46,51,50,55,52,50,55,93,44,91,45,49,49,51,46,48,48,50,55,57,50,44,52,50,46,53,56,56,48,48,51,93,44,91,45,49,49,51,46,50,51,54,57,54,56,44,52,50,46,54,50,53,50,53,52,93,44,91,45,49,49,51,46,51,55,53,48,54,50,44,52,50,46,54,56,55,56,51,50,93,44,91,45,49,49,51,46,52,55,50,49,55,55,44,52,50,46,54,54,57,51,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,73,115,97,110,116,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,57,55,52,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,49,51,54,56,51,44,52,53,46,55,51,52,51,49,56,93,44,91,45,57,51,46,53,49,48,55,48,52,44,52,53,46,53,53,56,55,55,50,93,44,91,45,57,51,46,53,49,48,48,55,44,52,53,46,52,49,52,55,57,56,93,44,91,45,57,51,46,48,49,57,53,54,51,44,52,53,46,52,49,49,55,55,93,44,91,45,57,51,46,48,50,50,50,55,52,44,52,53,46,53,53,55,49,53,52,93,44,91,45,57,51,46,49,52,49,57,55,52,44,52,53,46,53,53,56,49,48,57,93,44,91,45,57,51,46,49,52,49,55,57,51,44,52,53,46,55,51,48,54,53,55,93,44,91,45,57,51,46,53,49,51,54,56,51,44,52,53,46,55,51,52,51,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,69,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,53,57,55,50,44,34,98,101,100,115,34,58,49,49,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,56,53,49,44,52,50,46,51,50,55,49,51,50,93,44,91,45,56,48,46,53,49,57,51,53,52,44,52,49,46,56,52,57,53,54,51,93,44,91,45,55,57,46,54,49,50,48,55,50,44,52,49,46,56,53,48,48,53,54,93,44,91,45,55,57,46,54,49,48,56,51,57,44,52,49,46,57,57,57,48,48,54,93,44,91,45,55,57,46,55,54,49,51,49,51,44,52,49,46,57,57,56,56,48,56,93,44,91,45,55,57,46,55,54,50,52,49,56,44,52,50,46,53,49,54,48,55,50,93,44,91,45,56,48,46,48,56,48,50,50,50,44,52,50,46,51,57,52,49,54,50,93,44,91,45,56,48,46,53,49,57,56,53,49,44,52,50,46,51,50,55,49,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,112,105,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,55,50,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,51,48,51,51,49,44,51,50,46,48,52,57,55,50,56,93,44,91,45,57,48,46,55,49,56,50,57,55,44,51,50,46,48,52,56,51,53,50,93,44,91,45,57,48,46,55,51,54,50,56,50,44,51,49,46,55,56,54,49,51,52,93,44,91,45,57,48,46,55,51,54,56,50,52,44,51,49,46,54,57,56,52,57,49,93,44,91,45,57,48,46,50,55,57,57,53,51,44,51,49,46,54,57,57,56,54,53,93,44,91,45,57,48,46,50,52,53,49,57,49,44,51,49,46,55,49,55,53,50,52,93,44,91,45,57,48,46,49,50,50,53,54,53,44,51,49,46,55,53,50,54,56,93,44,91,45,57,48,46,49,51,50,53,53,50,44,51,49,46,56,53,54,57,50,51,93,44,91,45,57,48,46,50,51,48,51,51,49,44,51,50,46,48,52,57,55,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,54,55,34,44,34,78,65,77,69,34,58,34,86,97,110,32,90,97,110,100,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,51,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,55,54,56,48,49,44,51,50,46,56,51,56,52,56,57,93,44,91,45,57,54,46,48,55,53,56,57,57,44,51,50,46,51,53,55,53,48,53,93,44,91,45,57,53,46,52,52,57,49,54,53,44,51,50,46,51,53,53,50,51,51,93,44,91,45,57,53,46,53,57,52,51,44,51,50,46,52,55,57,56,53,56,93,44,91,45,57,53,46,53,57,52,53,52,49,44,51,50,46,54,56,55,48,50,54,93,44,91,45,57,53,46,54,51,53,48,49,55,44,51,50,46,55,50,48,51,56,93,44,91,45,57,53,46,57,51,52,52,51,51,44,51,50,46,56,51,55,50,49,55,93,44,91,45,57,54,46,48,55,54,56,48,49,44,51,50,46,56,51,56,52,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,82,111,97,110,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,53,56,51,44,34,98,101,100,115,34,58,50,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,52,55,52,55,54,44,51,55,46,51,48,57,51,53,50,93,44,91,45,56,48,46,48,55,52,49,49,57,44,51,55,46,52,50,50,52,54,57,93,44,91,45,56,48,46,50,54,50,49,56,52,44,51,55,46,51,52,49,53,50,54,93,44,91,45,56,48,46,49,57,48,55,51,56,44,51,55,46,50,50,55,55,56,51,93,44,91,45,56,48,46,49,55,56,49,50,53,44,51,55,46,49,49,51,52,93,44,91,45,56,48,46,49,50,56,54,55,52,44,51,55,46,49,50,50,57,48,49,93,44,91,45,55,57,46,57,54,49,56,57,44,51,55,46,49,51,55,51,52,57,93,44,91,45,55,57,46,56,52,55,50,49,55,44,51,55,46,50,50,53,52,48,54,93,44,91,45,55,57,46,56,52,55,52,55,54,44,51,55,46,51,48,57,51,53,50,93,93,44,91,91,45,56,48,46,48,50,50,50,50,54,44,51,55,46,51,48,56,51,51,56,93,44,91,45,55,57,46,57,48,53,52,54,44,51,55,46,51,50,49,56,51,53,93,44,91,45,55,57,46,57,52,54,56,49,55,44,51,55,46,50,49,51,48,51,55,93,44,91,45,56,48,46,48,51,51,52,54,52,44,51,55,46,50,54,50,56,57,93,44,91,45,56,48,46,48,57,51,54,55,53,44,51,55,46,50,56,50,53,48,50,93,44,91,45,56,48,46,48,50,50,50,50,54,44,51,55,46,51,48,56,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,65,117,103,117,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,55,48,49,44,34,98,101,100,115,34,58,51,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,56,50,54,54,56,44,51,56,46,48,56,54,48,53,52,93,44,91,45,55,57,46,49,53,55,51,57,44,51,55,46,56,57,49,48,48,51,93,44,91,45,55,57,46,48,48,53,49,50,57,44,51,55,46,56,56,49,54,57,93,44,91,45,55,56,46,56,51,56,56,55,52,44,51,56,46,48,52,55,51,55,93,44,91,45,55,56,46,55,52,57,51,57,54,44,51,56,46,50,48,54,54,52,56,93,44,91,45,55,57,46,50,50,52,53,56,51,44,51,56,46,52,55,55,53,56,56,93,44,91,45,55,57,46,51,49,50,50,55,54,44,51,56,46,52,49,49,56,55,54,93,44,91,45,55,57,46,52,51,51,54,55,44,51,56,46,50,50,57,52,57,51,93,44,91,45,55,57,46,53,49,50,49,53,56,44,51,56,46,49,56,48,52,49,57,93,44,91,45,55,57,46,52,56,50,54,54,56,44,51,56,46,48,56,54,48,53,52,93,93,44,91,91,45,55,56,46,57,52,56,53,48,57,44,51,56,46,48,54,56,49,48,52,93,44,91,45,55,56,46,57,48,51,55,57,53,44,51,56,46,48,57,57,56,48,50,93,44,91,45,55,56,46,56,54,50,54,55,55,44,51,56,46,48,56,57,57,55,50,93,44,91,45,55,56,46,56,57,49,55,55,50,44,51,56,46,48,51,57,52,51,56,93,44,91,45,55,56,46,57,52,56,53,48,57,44,51,56,46,48,54,56,49,48,52,93,93,44,91,91,45,55,57,46,48,55,55,53,54,49,44,51,56,46,49,50,54,52,54,93,44,91,45,55,57,46,48,57,51,55,57,49,44,51,56,46,49,56,54,50,56,55,93,44,91,45,55,57,46,48,51,51,55,56,57,44,51,56,46,49,57,57,48,49,56,93,44,91,45,55,57,46,48,50,48,51,48,56,44,51,56,46,49,52,51,55,50,53,93,44,91,45,55,57,46,48,55,55,53,54,49,44,51,56,46,49,50,54,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,54,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,48,34,44,34,78,65,77,69,34,58,34,66,114,105,115,116,111,108,32,66,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,55,46,49,57,54,50,57,50,44,53,56,46,56,52,54,50,52,57,93,44,91,45,49,53,55,46,57,57,57,57,53,57,44,53,56,46,54,52,50,49,54,56,93,44,91,45,49,53,56,44,53,56,46,54,49,54,54,54,55,93,44,91,45,49,53,54,46,51,49,51,56,56,57,44,53,56,46,54,49,54,54,54,54,93,44,91,45,49,53,54,46,51,49,51,56,56,57,44,53,56,46,56,56,53,56,51,51,93,44,91,45,49,53,55,46,48,52,53,52,57,54,44,53,56,46,56,56,53,56,51,51,93,44,91,45,49,53,55,46,49,57,54,50,57,50,44,53,56,46,56,52,54,50,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,80,105,117,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,53,49,56,52,57,53,44,51,56,46,53,49,48,52,49,51,93,44,91,45,49,49,50,46,52,52,52,48,56,49,44,51,56,46,52,48,53,54,52,54,93,44,91,45,49,49,50,46,51,51,53,53,49,44,51,56,46,51,51,50,51,52,52,93,44,91,45,49,49,50,46,52,52,52,50,49,52,44,51,56,46,49,53,48,48,48,49,93,44,91,45,49,49,49,46,56,52,51,50,49,53,44,51,56,46,49,53,49,50,56,93,44,91,45,49,49,49,46,56,52,56,55,54,49,44,51,56,46,52,50,52,57,51,51,93,44,91,45,49,49,49,46,55,54,54,51,57,51,44,51,56,46,53,48,50,50,52,51,93,44,91,45,49,49,50,46,53,49,56,52,57,53,44,51,56,46,53,49,48,52,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,53,51,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,57,49,54,48,53,44,51,56,46,53,57,51,55,48,49,93,44,91,45,56,51,46,57,51,48,51,52,56,44,51,56,46,52,57,50,50,55,56,93,44,91,45,56,51,46,56,53,57,50,56,44,51,56,46,52,53,54,51,52,56,93,44,91,45,56,51,46,54,52,49,56,53,50,44,51,56,46,53,50,53,51,56,49,93,44,91,45,56,51,46,54,52,52,57,49,51,44,51,56,46,54,51,54,51,52,51,93,44,91,45,56,51,46,55,48,53,51,49,49,44,51,56,46,54,51,57,56,53,51,93,44,91,45,56,51,46,57,48,51,57,48,49,44,51,56,46,55,54,56,49,56,50,93,44,91,45,56,51,46,57,57,49,54,48,53,44,51,56,46,53,57,51,55,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,55,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,55,49,55,55,54,44,52,53,46,55,55,53,50,48,56,93,44,91,45,57,52,46,49,52,57,52,54,55,44,52,53,46,53,53,57,48,54,54,93,44,91,45,57,51,46,55,53,57,52,51,53,44,52,53,46,53,53,57,54,52,54,93,44,91,45,57,51,46,55,54,51,57,52,56,44,52,53,46,56,50,50,49,52,51,93,44,91,45,57,52,46,51,53,51,49,49,50,44,52,53,46,56,50,49,57,54,55,93,44,91,45,57,52,46,50,55,49,55,55,54,44,52,53,46,55,55,53,50,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,68,111,110,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,57,52,52,57,51,57,44,51,52,46,55,52,56,50,56,49,93,44,91,45,49,48,48,46,53,52,48,55,48,51,44,51,52,46,55,52,55,55,50,51,93,44,91,45,49,48,48,46,53,51,56,57,55,56,44,51,53,46,49,56,51,49,52,52,93,44,91,45,49,48,49,46,48,56,54,50,56,49,44,51,53,46,49,56,50,49,52,93,44,91,45,49,48,49,46,48,57,48,55,52,57,44,51,52,46,55,52,56,50,52,54,93,44,91,45,49,48,48,46,57,52,52,57,51,57,44,51,52,46,55,52,56,50,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,52,56,50,44,34,98,101,100,115,34,58,55,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,57,50,55,51,54,44,51,48,46,51,56,57,51,50,93,44,91,45,56,53,46,57,57,57,56,57,51,44,51,48,46,50,49,51,48,57,93,44,91,45,56,53,46,52,52,54,50,56,57,44,50,57,46,57,48,49,48,51,51,93,44,91,45,56,53,46,51,56,56,54,54,57,44,50,57,46,57,50,52,51,53,57,93,44,91,45,56,53,46,51,56,57,54,55,57,44,51,48,46,50,48,48,57,55,51,93,44,91,45,56,53,46,51,56,51,57,52,56,44,51,48,46,53,54,54,56,53,54,93,44,91,45,56,53,46,52,51,52,55,56,50,44,51,48,46,53,54,55,53,54,93,44,91,45,56,53,46,52,56,55,57,54,56,44,51,48,46,52,51,54,54,53,53,93,44,91,45,56,53,46,56,53,51,53,44,51,48,46,52,52,48,54,50,51,93,44,91,45,56,53,46,57,57,50,55,51,54,44,51,48,46,51,56,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,97,117,100,101,114,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,53,56,53,44,34,98,101,100,115,34,58,51,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,57,55,56,56,56,44,51,52,46,56,57,50,50,48,50,93,44,91,45,56,55,46,57,55,51,50,50,50,44,51,52,46,56,56,50,53,53,93,44,91,45,56,55,46,56,51,53,56,51,51,44,51,52,46,55,52,49,50,51,57,93,44,91,45,56,55,46,53,50,52,51,54,51,44,51,52,46,56,51,50,51,56,52,93,44,91,45,56,55,46,52,50,54,53,49,44,51,52,46,56,48,48,48,50,50,93,44,91,45,56,55,46,50,54,48,54,55,54,44,51,52,46,55,53,56,54,50,54,93,44,91,45,56,55,46,50,49,52,57,49,52,44,51,52,46,56,49,54,48,49,49,93,44,91,45,56,55,46,50,49,48,55,53,57,44,51,52,46,57,57,57,48,50,52,93,44,91,45,56,55,46,50,50,52,48,53,50,44,51,52,46,57,57,57,51,55,55,93,44,91,45,56,55,46,54,48,54,48,51,49,44,51,53,46,48,48,51,52,50,53,93,44,91,45,56,55,46,57,56,52,57,49,54,44,51,53,46,48,48,53,57,51,51,93,44,91,45,56,56,46,50,48,48,48,54,52,44,51,52,46,57,57,53,54,51,52,93,44,91,45,56,56,46,48,57,55,56,56,56,44,51,52,46,56,57,50,50,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,70,111,117,110,116,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,57,50,49,52,56,44,52,48,46,51,54,54,54,49,50,93,44,91,45,56,55,46,50,52,52,56,57,56,44,52,48,46,51,48,57,50,53,50,93,44,91,45,56,55,46,52,48,54,54,54,55,44,52,48,46,49,50,55,53,48,56,93,44,91,45,56,55,46,52,50,48,50,50,49,44,51,57,46,57,53,50,52,53,50,93,44,91,45,56,55,46,48,57,49,48,48,54,44,51,57,46,57,53,51,48,48,57,93,44,91,45,56,55,46,48,57,50,53,54,51,44,52,48,46,50,49,52,56,48,54,93,44,91,45,56,55,46,48,57,50,49,52,56,44,52,48,46,51,54,54,54,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,51,50,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,50,53,54,56,44,51,57,46,54,53,52,49,56,51,93,44,91,45,56,57,46,48,50,53,52,53,51,44,51,57,46,51,52,54,49,49,53,93,44,91,45,56,57,46,49,51,57,56,48,55,44,51,57,46,51,52,56,56,56,56,93,44,91,45,56,57,46,49,51,57,52,54,52,44,51,57,46,50,49,55,55,55,51,93,44,91,45,56,56,46,56,48,53,51,50,53,44,51,57,46,50,49,54,50,54,51,93,44,91,45,56,56,46,52,55,48,57,48,54,44,51,57,46,50,49,53,48,50,57,93,44,91,45,56,56,46,52,55,48,56,51,44,51,57,46,51,55,52,53,49,53,93,44,91,45,56,56,46,52,55,48,53,48,53,44,51,57,46,52,52,55,48,52,49,93,44,91,45,56,56,46,53,56,52,50,55,51,44,51,57,46,52,52,55,53,56,50,93,44,91,45,56,56,46,56,49,48,53,55,53,44,51,57,46,54,53,51,50,50,50,93,44,91,45,56,57,46,48,50,53,54,56,44,51,57,46,54,53,52,49,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,50,52,44,34,98,101,100,115,34,58,49,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,51,57,52,54,52,44,51,57,46,50,49,55,55,55,51,93,44,91,45,56,57,46,50,53,48,53,49,51,44,51,57,46,50,49,55,53,49,50,93,44,91,45,56,57,46,50,53,48,51,48,57,44,51,57,46,48,50,56,49,56,53,93,44,91,45,56,57,46,50,53,52,49,56,53,44,51,56,46,55,52,50,48,49,56,93,44,91,45,56,57,46,49,51,56,51,57,51,44,51,56,46,55,51,54,51,51,49,93,44,91,45,56,57,46,49,51,56,49,51,56,44,51,56,46,56,50,52,50,48,57,93,44,91,45,56,56,46,54,57,53,49,54,53,44,51,56,46,56,50,54,50,57,57,93,44,91,45,56,56,46,54,57,51,53,51,49,44,51,56,46,57,49,52,54,49,55,93,44,91,45,56,56,46,56,48,54,55,57,53,44,51,56,46,57,49,49,53,56,53,93,44,91,45,56,56,46,56,48,53,51,50,53,44,51,57,46,50,49,54,50,54,51,93,44,91,45,56,57,46,49,51,57,52,54,52,44,51,57,46,50,49,55,55,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,57,56,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,54,50,56,49,51,44,51,57,46,57,51,48,51,56,93,44,91,45,56,50,46,51,57,54,53,57,52,44,51,57,46,56,51,51,48,53,55,93,44,91,45,56,50,46,51,55,52,53,51,49,44,51,57,46,54,53,52,57,53,57,93,44,91,45,56,50,46,51,55,57,56,57,44,51,57,46,53,57,54,55,51,56,93,44,91,45,56,50,46,49,53,57,49,54,49,44,51,57,46,53,53,54,53,55,52,93,44,91,45,56,50,46,48,52,55,53,50,56,44,51,57,46,53,53,48,56,50,53,93,44,91,45,56,50,46,48,50,52,50,49,57,44,51,57,46,55,50,52,54,56,54,93,44,91,45,56,50,46,48,55,54,54,51,57,44,51,57,46,55,55,48,57,54,93,44,91,45,56,50,46,50,51,51,57,55,52,44,51,57,46,57,49,51,50,54,93,44,91,45,56,50,46,52,54,50,56,49,51,44,51,57,46,57,51,48,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,57,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,57,48,34,44,34,78,65,77,69,34,58,34,68,97,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,53,49,50,44,34,98,101,100,115,34,58,51,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,51,52,51,49,49,55,44,51,54,46,53,52,49,53,57,93,44,91,45,55,57,46,51,57,56,48,57,52,44,51,54,46,54,52,52,48,51,55,93,44,91,45,55,57,46,52,55,48,48,53,55,44,51,54,46,53,52,48,57,55,49,93,44,91,45,55,57,46,51,52,51,49,49,55,44,51,54,46,53,52,49,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,97,110,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,49,53,50,53,49,44,51,52,46,52,51,49,55,52,56,93,44,91,45,56,51,46,54,50,48,49,49,53,44,51,52,46,50,57,53,50,55,54,93,44,91,45,56,51,46,52,56,48,51,54,49,44,51,52,46,50,54,50,48,51,56,93,44,91,45,56,51,46,52,48,50,52,50,56,44,51,52,46,49,57,55,52,57,57,93,44,91,45,56,51,46,51,53,53,50,53,49,44,51,52,46,50,50,51,55,57,52,93,44,91,45,56,51,46,51,57,56,51,57,54,44,51,52,46,52,54,48,56,56,51,93,44,91,45,56,51,46,52,53,57,55,55,44,51,52,46,52,56,49,49,52,50,93,44,91,45,56,51,46,54,49,53,50,53,49,44,51,52,46,52,51,49,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,53,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,55,54,55,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,52,56,53,56,50,44,51,49,46,56,50,55,48,55,53,93,44,91,45,56,50,46,49,51,51,48,49,51,44,51,49,46,55,55,51,52,48,52,93,44,91,45,56,50,46,49,51,50,55,57,52,44,51,49,46,52,55,49,50,54,50,93,44,91,45,56,50,46,48,52,49,49,50,57,44,51,49,46,51,55,51,55,50,49,93,44,91,45,56,49,46,55,51,49,54,57,52,44,51,49,46,51,51,48,48,52,56,93,44,91,45,56,49,46,54,50,52,50,57,44,51,49,46,52,53,50,57,56,50,93,44,91,45,56,49,46,54,54,51,50,48,54,44,51,49,46,53,51,56,54,54,55,93,44,91,45,56,49,46,56,50,51,57,50,49,44,51,49,46,54,53,49,56,48,57,93,44,91,45,56,49,46,57,54,57,48,53,50,44,51,49,46,55,56,57,51,50,52,93,44,91,45,56,50,46,48,52,56,53,56,50,44,51,49,46,56,50,55,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,50,48,53,49,44,34,98,101,100,115,34,58,52,52,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,55,52,48,50,54,44,51,53,46,55,50,53,57,55,93,44,91,45,57,55,46,54,55,49,51,54,57,44,51,53,46,51,55,55,49,53,49,93,44,91,45,57,55,46,49,52,50,49,49,52,44,51,53,46,51,55,54,56,54,93,44,91,45,57,55,46,49,52,49,52,57,44,51,53,46,52,54,51,57,55,55,93,44,91,45,57,55,46,49,52,49,48,54,54,44,51,53,46,55,50,52,52,48,49,93,44,91,45,57,55,46,54,55,52,48,50,54,44,51,53,46,55,50,53,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,52,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,51,51,53,48,51,44,51,52,46,49,55,50,55,52,56,93,44,91,45,57,54,46,54,54,57,57,54,51,44,51,52,46,49,55,50,53,50,49,93,44,91,45,57,54,46,53,56,53,51,53,53,44,51,52,46,49,49,52,52,53,57,93,44,91,45,57,54,46,52,48,55,53,49,55,44,51,52,46,49,53,55,51,49,55,93,44,91,45,57,54,46,52,48,55,48,55,52,44,51,52,46,52,49,56,51,57,93,44,91,45,57,54,46,53,49,51,55,56,55,44,51,52,46,53,48,53,51,57,54,93,44,91,45,57,54,46,56,50,55,51,52,51,44,51,52,46,53,48,54,48,54,50,93,44,91,45,57,54,46,56,56,48,55,57,44,51,52,46,53,48,54,48,53,51,93,44,91,45,57,54,46,57,51,51,51,48,53,44,51,52,46,51,51,50,53,54,49,93,44,91,45,57,54,46,57,51,51,53,48,51,44,51,52,46,49,55,50,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,50,53,54,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,51,57,54,48,57,44,51,53,46,51,51,48,57,57,51,93,44,91,45,56,51,46,49,48,56,53,54,56,44,51,53,46,48,48,49,51,53,52,93,44,91,45,56,51,46,48,48,56,53,51,49,44,51,53,46,48,50,55,51,57,52,93,44,91,45,56,50,46,57,50,48,56,56,49,44,51,53,46,50,57,50,48,51,55,93,44,91,45,56,51,46,49,56,54,51,50,50,44,51,53,46,53,49,52,51,54,56,93,44,91,45,56,51,46,51,54,51,55,54,54,44,51,53,46,52,50,54,57,50,51,93,44,91,45,56,51,46,51,51,57,54,48,57,44,51,53,46,51,51,48,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,83,117,109,109,105,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,49,49,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,53,53,51,50,54,54,44,52,48,46,54,48,57,51,49,51,93,44,91,45,49,49,49,46,51,55,53,52,56,49,44,52,48,46,54,51,51,49,49,54,93,44,91,45,49,49,49,46,49,52,55,50,49,54,44,52,48,46,53,52,57,54,48,50,93,44,91,45,49,49,48,46,57,55,54,48,56,54,44,52,48,46,53,57,50,57,53,52,93,44,91,45,49,49,48,46,57,48,49,57,55,52,44,52,48,46,54,55,56,49,54,50,93,44,91,45,49,49,48,46,55,53,48,55,51,51,44,52,48,46,55,52,55,55,48,54,93,44,91,45,49,49,48,46,54,53,54,52,56,50,44,52,48,46,55,52,48,50,55,53,93,44,91,45,49,49,48,46,51,55,56,57,54,50,44,52,48,46,55,56,55,49,56,93,44,91,45,49,49,48,46,50,54,48,57,54,55,44,52,48,46,56,51,52,56,50,52,93,44,91,45,49,49,48,46,48,48,48,55,49,49,44,52,48,46,56,49,51,54,55,56,93,44,91,45,49,49,48,46,48,48,48,55,49,55,44,52,48,46,57,57,55,52,53,93,44,91,45,49,49,48,46,48,52,56,52,56,51,44,52,48,46,57,57,55,50,57,53,93,44,91,45,49,49,49,46,48,52,54,56,49,53,44,52,48,46,57,57,55,56,55,53,93,44,91,45,49,49,49,46,48,52,54,55,54,54,44,52,49,46,50,53,49,54,50,55,93,44,91,45,49,49,49,46,50,54,52,57,55,52,44,52,49,46,49,52,52,48,52,52,93,44,91,45,49,49,49,46,53,48,55,53,49,44,52,49,46,48,54,51,50,51,52,93,44,91,45,49,49,49,46,52,56,54,49,53,57,44,52,48,46,56,55,51,49,50,52,93,44,91,45,49,49,49,46,53,50,55,52,54,53,44,52,48,46,55,56,53,55,53,50,93,44,91,45,49,49,49,46,54,52,49,48,53,50,44,52,48,46,55,57,56,57,50,53,93,44,91,45,49,49,49,46,53,53,51,50,54,54,44,52,48,46,54,48,57,51,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,52,57,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,50,56,52,48,52,44,51,55,46,56,50,57,52,51,53,93,44,91,45,57,51,46,54,49,54,48,51,51,44,51,55,46,53,55,50,54,56,57,93,44,91,45,57,51,46,54,50,49,49,53,51,44,51,55,46,52,50,55,52,50,51,93,44,91,45,57,51,46,49,56,50,52,56,57,44,51,55,46,52,49,55,50,48,52,93,44,91,45,57,51,46,49,56,55,57,49,53,44,51,55,46,56,48,50,55,51,55,93,44,91,45,57,51,46,53,55,51,50,48,50,44,51,55,46,56,50,56,48,51,53,93,44,91,45,57,51,46,54,50,56,52,48,52,44,51,55,46,56,50,57,52,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,76,97,110,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,52,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,51,48,48,53,57,55,44,52,48,46,53,50,54,49,51,54,93,44,91,45,49,49,55,46,53,52,49,55,52,57,44,52,48,46,48,48,49,48,51,52,93,44,91,45,49,49,55,46,52,54,49,51,52,44,51,57,46,56,54,55,56,49,56,93,44,91,45,49,49,55,46,52,57,53,51,52,52,44,51,57,46,55,52,56,51,54,52,93,44,91,45,49,49,55,46,52,56,53,51,51,54,44,51,57,46,53,52,53,51,50,50,93,44,91,45,49,49,55,46,53,56,55,49,52,44,51,57,46,53,49,56,53,50,49,93,44,91,45,49,49,55,46,54,52,54,48,49,49,44,51,57,46,52,50,54,54,48,50,93,44,91,45,49,49,55,46,55,54,51,48,52,54,44,51,57,46,51,53,50,56,51,93,44,91,45,49,49,55,46,55,49,57,57,53,44,51,57,46,50,51,54,56,50,49,93,44,91,45,49,49,55,46,55,55,53,52,54,56,44,51,57,46,48,57,51,52,50,53,93,44,91,45,49,49,55,46,51,51,49,56,53,55,44,51,57,46,49,54,51,52,51,93,44,91,45,49,49,54,46,54,48,48,57,52,54,44,51,57,46,49,54,49,52,54,51,93,44,91,45,49,49,54,46,53,57,48,51,57,54,44,52,48,46,48,55,50,50,55,55,93,44,91,45,49,49,54,46,53,57,54,56,49,53,44,52,48,46,57,52,54,52,54,93,44,91,45,49,49,54,46,53,56,54,55,56,54,44,52,49,46,48,48,48,51,57,56,93,44,91,45,49,49,55,46,48,49,56,52,49,57,44,52,49,46,48,48,48,50,53,52,93,44,91,45,49,49,55,46,48,49,56,54,54,52,44,52,48,46,54,52,51,48,51,53,93,44,91,45,49,49,55,46,50,52,54,55,56,56,44,52,48,46,54,52,50,52,52,53,93,44,91,45,49,49,55,46,51,48,48,53,57,55,44,52,48,46,53,50,54,49,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,87,105,110,110,101,115,104,105,101,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,55,57,56,48,50,44,52,51,46,53,48,48,54,50,49,93,44,91,45,57,50,46,48,56,48,57,55,54,44,52,51,46,50,49,50,57,52,55,93,44,91,45,57,50,46,48,56,49,49,52,54,44,52,51,46,48,56,50,55,57,52,93,44,91,45,57,49,46,54,48,53,51,48,55,44,52,51,46,48,56,49,54,53,51,93,44,91,45,57,49,46,54,49,48,56,51,53,44,52,51,46,53,48,48,54,53,55,93,44,91,45,57,49,46,55,51,48,50,49,55,44,52,51,46,53,48,48,56,48,54,93,44,91,45,57,50,46,48,55,57,56,48,50,44,52,51,46,53,48,48,54,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,114,97,99,107,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,51,48,52,49,49,44,51,56,46,56,50,55,52,51,55,93,44,91,45,56,52,46,50,48,53,51,52,54,44,51,56,46,53,56,50,48,51,57,93,44,91,45,56,52,46,49,54,50,48,51,49,44,51,56,46,53,53,52,49,50,53,93,44,91,45,56,51,46,57,57,49,54,48,53,44,51,56,46,53,57,51,55,48,49,93,44,91,45,56,51,46,57,48,51,57,48,49,44,51,56,46,55,54,56,49,56,50,93,44,91,45,56,52,46,48,53,50,55,48,57,44,51,56,46,55,55,49,50,50,54,93,44,91,45,56,52,46,50,51,48,52,49,49,44,51,56,46,56,50,55,52,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,70,108,111,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,56,51,51,49,50,44,52,54,46,48,49,52,49,49,51,93,44,91,45,56,56,46,54,55,53,56,50,49,44,52,53,46,55,50,50,57,93,44,91,45,56,56,46,52,50,53,51,48,50,44,52,53,46,55,50,50,52,50,54,93,44,91,45,56,56,46,48,53,57,50,52,54,44,52,53,46,55,49,51,48,54,51,93,44,91,45,56,56,46,48,53,56,50,53,51,44,52,53,46,55,56,48,54,50,57,93,44,91,45,56,56,46,49,49,54,56,52,53,44,52,53,46,57,50,49,54,50,55,93,44,91,45,56,56,46,53,48,55,52,56,44,52,54,46,48,49,56,53,49,54,93,44,91,45,56,56,46,54,56,51,51,49,50,44,52,54,46,48,49,52,49,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,82,111,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,48,53,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,55,56,52,49,50,44,51,56,46,57,49,52,56,54,55,93,44,91,45,56,49,46,53,48,50,54,50,56,44,51,56,46,57,49,55,57,50,50,93,44,91,45,56,49,46,53,52,54,54,51,49,44,51,56,46,54,55,50,51,56,55,93,44,91,45,56,49,46,53,50,50,49,54,54,44,51,56,46,54,49,50,55,52,54,93,44,91,45,56,49,46,52,54,53,51,55,50,44,51,56,46,53,52,57,56,57,56,93,44,91,45,56,49,46,49,57,52,49,49,51,44,51,56,46,53,50,55,54,51,52,93,44,91,45,56,49,46,48,56,51,55,49,44,51,56,46,54,49,49,57,56,50,93,44,91,45,56,49,46,50,55,56,52,49,50,44,51,56,46,57,49,52,56,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,87,97,100,101,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,52,54,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,54,51,55,49,44,52,54,46,55,49,55,54,52,93,44,91,45,57,53,46,49,53,53,53,55,44,52,54,46,51,54,56,56,56,93,44,91,45,57,52,46,55,51,49,52,52,50,44,52,54,46,51,54,56,54,48,53,93,44,91,45,57,52,46,55,55,57,49,50,49,44,52,54,46,51,57,52,50,49,53,93,44,91,45,57,52,46,55,56,55,49,50,54,44,52,54,46,56,48,51,57,52,51,93,44,91,45,57,53,46,49,54,51,48,49,44,52,54,46,56,48,52,55,50,93,44,91,45,57,53,46,49,54,51,55,49,44,52,54,46,55,49,55,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,55,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,55,48,34,44,34,78,65,77,69,34,58,34,72,111,112,101,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,48,56,44,34,98,101,100,115,34,58,49,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,51,53,54,54,54,44,51,55,46,51,49,51,48,51,57,93,44,91,45,55,55,46,51,50,53,51,50,44,51,55,46,50,54,48,57,51,50,93,44,91,45,55,55,46,50,55,51,54,49,52,44,51,55,46,50,55,56,51,48,56,93,44,91,45,55,55,46,50,56,52,48,49,57,44,51,55,46,51,49,51,48,49,50,93,44,91,45,55,55,46,51,51,53,54,54,54,44,51,55,46,51,49,51,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,87,105,110,110,101,98,97,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,49,55,52,44,34,98,101,100,115,34,58,57,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,48,49,52,50,51,44,52,50,46,53,48,48,53,53,52,93,44,91,45,56,57,46,51,57,54,49,57,50,44,52,50,46,50,48,49,57,49,54,93,44,91,45,56,57,46,49,55,51,44,52,50,46,50,48,52,50,52,49,93,44,91,45,56,57,46,49,55,50,56,48,51,44,52,50,46,49,53,48,52,49,55,93,44,91,45,56,56,46,57,51,57,55,51,50,44,52,50,46,49,53,50,51,50,93,44,91,45,56,56,46,57,52,48,51,56,56,44,52,50,46,52,57,53,48,52,53,93,44,91,45,56,57,46,51,54,53,55,57,56,44,52,50,46,53,48,48,48,55,56,93,44,91,45,56,57,46,52,48,49,52,50,51,44,52,50,46,53,48,48,53,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,71,105,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,52,48,48,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,52,57,52,55,55,56,44,51,51,46,57,57,57,56,49,55,93,44,91,45,49,49,49,46,51,55,50,51,49,55,44,51,51,46,56,50,51,57,50,52,93,44,91,45,49,49,49,46,51,56,54,56,49,50,44,51,51,46,55,53,48,48,52,52,93,44,91,45,49,49,49,46,50,54,49,55,51,44,51,51,46,54,50,50,53,55,49,93,44,91,45,49,49,49,46,49,53,51,51,53,52,44,51,51,46,54,55,55,54,48,54,93,44,91,45,49,49,49,46,48,51,57,57,55,54,44,51,51,46,52,54,54,48,49,57,93,44,91,45,49,49,48,46,57,52,54,54,56,52,44,51,51,46,50,53,48,48,53,51,93,44,91,45,49,49,48,46,55,56,51,49,51,54,44,51,50,46,57,56,52,54,54,93,44,91,45,49,49,48,46,54,51,52,52,49,50,44,51,51,46,49,52,50,51,54,54,93,44,91,45,49,49,48,46,52,52,57,48,50,49,44,51,51,46,49,57,52,53,50,54,93,44,91,45,49,49,48,46,52,53,49,55,51,49,44,51,51,46,51,54,49,53,54,52,93,44,91,45,49,49,48,46,51,52,48,57,52,57,44,51,51,46,52,50,55,48,54,54,93,44,91,45,49,49,48,46,49,54,57,52,55,55,44,51,51,46,52,54,53,55,49,50,93,44,91,45,49,49,48,46,48,48,48,54,52,54,44,51,51,46,52,54,53,57,49,54,93,44,91,45,49,49,48,46,48,48,48,54,52,57,44,51,51,46,53,55,54,57,51,93,44,91,45,49,49,48,46,48,48,48,54,54,44,51,52,46,48,48,48,48,52,54,93,44,91,45,49,49,48,46,55,53,48,54,55,50,44,51,52,46,48,48,48,48,52,56,93,44,91,45,49,49,48,46,55,53,48,54,55,56,44,51,52,46,50,54,51,51,49,52,93,44,91,45,49,49,48,46,56,52,56,48,53,57,44,51,52,46,50,54,55,50,48,53,93,44,91,45,49,49,49,46,48,56,55,53,48,52,44,51,52,46,51,57,52,57,57,54,93,44,91,45,49,49,49,46,50,52,54,54,54,49,44,51,52,46,52,53,48,56,48,56,93,44,91,45,49,49,49,46,52,57,49,56,54,54,44,51,52,46,52,50,50,55,52,51,93,44,91,45,49,49,49,46,53,53,52,54,56,49,44,51,52,46,52,55,49,55,51,51,93,44,91,45,49,49,49,46,54,53,57,54,50,50,44,51,52,46,51,56,54,51,52,50,93,44,91,45,49,49,49,46,55,49,50,49,49,56,44,51,52,46,49,53,49,50,55,49,93,44,91,45,49,49,49,46,52,55,55,56,53,51,44,51,52,46,49,53,49,49,48,56,93,44,91,45,49,49,49,46,52,57,52,55,55,56,44,51,51,46,57,57,57,56,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,87,105,99,111,109,105,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,55,50,44,34,98,101,100,115,34,58,52,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,48,49,53,54,57,44,51,56,46,53,54,48,55,51,54,93,44,91,45,55,53,46,56,50,51,55,48,54,44,51,56,46,52,56,49,48,50,50,93,44,91,45,55,53,46,57,52,56,52,53,52,44,51,56,46,50,49,53,57,54,93,44,91,45,55,53,46,55,54,57,54,55,49,44,51,56,46,50,56,52,53,56,55,93,44,91,45,55,53,46,54,49,50,55,54,52,44,51,56,46,50,55,56,54,50,54,93,44,91,45,55,53,46,51,54,52,54,52,49,44,51,56,46,50,57,48,51,53,57,93,44,91,45,55,53,46,51,48,55,48,49,49,44,51,56,46,51,53,52,55,54,93,44,91,45,55,53,46,51,52,49,50,57,49,44,51,56,46,52,53,50,48,51,52,93,44,91,45,55,53,46,54,57,51,54,55,44,51,56,46,52,54,48,48,56,93,44,91,45,55,53,46,55,48,49,53,54,57,44,51,56,46,53,54,48,55,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,54,54,52,49,57,44,51,56,46,53,48,51,57,54,53,93,44,91,45,56,51,46,50,51,50,56,57,53,44,51,56,46,51,51,56,55,56,54,93,44,91,45,56,51,46,51,52,49,51,52,55,44,51,56,46,51,49,57,53,50,49,93,44,91,45,56,51,46,50,52,52,51,48,54,44,51,56,46,49,57,50,51,56,93,44,91,45,56,51,46,49,51,53,48,48,56,44,51,56,46,50,52,50,48,51,55,93,44,91,45,56,50,46,57,50,52,56,48,53,44,51,56,46,49,55,53,49,49,52,93,44,91,45,56,50,46,55,57,52,50,48,54,44,51,56,46,50,52,51,55,55,50,93,44,91,45,56,50,46,56,49,55,52,53,52,44,51,56,46,51,55,51,57,51,53,93,44,91,45,56,50,46,57,54,55,54,51,53,44,51,56,46,51,57,52,49,51,56,93,44,91,45,56,51,46,49,54,54,52,49,57,44,51,56,46,53,48,51,57,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,73,114,101,100,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,53,50,53,44,34,98,101,100,115,34,58,53,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,50,56,56,51,51,44,51,54,46,48,52,53,54,53,50,93,44,91,45,56,49,46,48,48,53,53,52,49,44,51,53,46,57,53,56,50,56,55,93,44,91,45,56,49,46,49,48,57,53,48,55,44,51,53,46,55,55,54,53,57,52,93,44,91,45,56,48,46,57,57,52,52,52,53,44,51,53,46,55,48,50,49,49,93,44,91,45,56,48,46,57,54,48,48,50,53,44,51,53,46,53,52,55,48,50,93,44,91,45,56,48,46,57,52,55,51,52,52,44,51,53,46,52,56,56,52,55,51,93,44,91,45,56,48,46,55,56,52,49,54,55,44,51,53,46,53,48,54,48,49,55,93,44,91,45,56,48,46,55,51,55,51,55,57,44,51,53,46,53,48,53,56,48,52,93,44,91,45,56,48,46,55,55,49,53,56,50,44,51,53,46,54,55,50,49,54,51,93,44,91,45,56,48,46,55,48,55,56,50,54,44,51,53,46,56,53,50,57,50,57,93,44,91,45,56,48,46,54,57,51,49,57,55,44,51,54,46,48,53,49,50,54,93,44,91,45,56,48,46,56,56,49,53,57,49,44,51,54,46,48,53,53,55,49,56,93,44,91,45,56,49,46,48,50,56,56,51,51,44,51,54,46,48,52,53,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,97,108,105,102,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,55,55,57,44,34,98,101,100,115,34,58,49,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,57,50,50,54,52,44,51,55,46,48,54,49,52,57,56,93,44,91,45,55,57,46,50,49,56,52,53,54,44,51,54,46,53,52,49,54,53,51,93,44,91,45,55,57,46,49,51,56,51,50,44,51,54,46,53,52,49,57,55,53,93,44,91,45,55,56,46,55,57,54,50,55,52,44,51,54,46,53,52,49,55,52,49,93,44,91,45,55,56,46,55,51,52,49,50,50,44,51,54,46,53,52,49,57,51,57,93,44,91,45,55,56,46,54,52,56,53,52,49,44,51,54,46,54,57,55,57,48,57,93,44,91,45,55,56,46,54,55,49,52,54,51,44,51,54,46,56,53,55,57,53,49,93,44,91,45,55,56,46,55,55,52,55,49,53,44,51,54,46,57,56,48,57,55,54,93,44,91,45,55,56,46,57,48,52,53,56,55,44,51,55,46,48,50,50,50,56,56,93,44,91,45,55,57,46,48,57,50,50,54,52,44,51,55,46,48,54,49,52,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,101,114,116,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,53,51,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,54,52,51,55,55,44,51,54,46,53,52,54,51,50,57,93,44,91,45,55,55,46,48,57,51,50,50,52,44,51,54,46,53,49,56,50,49,54,93,44,91,45,55,55,46,50,48,56,52,54,56,44,51,54,46,50,52,54,53,55,56,93,44,91,45,55,54,46,55,48,54,53,56,52,44,51,54,46,50,52,51,55,57,54,93,44,91,45,55,54,46,54,57,54,53,55,49,44,51,54,46,50,57,54,49,51,56,93,44,91,45,55,54,46,55,55,57,52,54,55,44,51,54,46,51,54,50,52,54,57,93,44,91,45,55,54,46,57,51,51,52,55,44,51,54,46,52,48,49,56,55,93,44,91,45,55,54,46,57,49,53,57,55,55,44,51,54,46,53,52,51,56,56,52,93,44,91,45,55,55,46,49,54,52,51,55,55,44,51,54,46,53,52,54,51,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,52,50,54,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,53,57,56,57,53,44,52,51,46,48,52,55,52,50,51,93,44,91,45,55,52,46,55,54,51,51,48,51,44,52,50,46,56,54,51,50,51,55,93,44,91,45,55,52,46,54,52,56,50,57,56,44,52,50,46,56,50,57,53,53,56,93,44,91,45,55,52,46,52,53,52,57,49,49,44,52,50,46,55,55,50,57,55,57,93,44,91,45,55,52,46,50,54,51,51,49,52,44,52,50,46,55,57,54,53,51,52,93,44,91,45,55,52,46,48,56,51,56,56,51,44,52,50,46,56,57,55,51,53,52,93,44,91,45,55,52,46,48,57,50,57,56,44,52,50,46,57,53,53,56,54,56,93,44,91,45,55,52,46,48,57,55,52,54,55,44,52,50,46,57,56,50,57,51,52,93,44,91,45,55,52,46,53,52,50,51,54,55,44,52,50,46,57,56,53,53,51,93,44,91,45,55,52,46,55,53,57,56,57,53,44,52,51,46,48,52,55,52,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,80,101,110,110,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,56,52,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,48,48,56,52,51,44,52,56,46,49,55,52,49,48,56,93,44,91,45,57,54,46,52,56,50,53,53,44,52,55,46,57,54,51,53,57,53,93,44,91,45,57,53,46,55,48,57,56,52,44,52,55,46,57,54,52,51,51,93,44,91,45,57,53,46,55,48,57,54,49,57,44,52,55,46,57,51,53,56,48,53,93,44,91,45,57,53,46,53,56,50,49,53,53,44,52,55,46,57,51,51,57,54,54,93,44,91,45,57,53,46,53,56,50,56,56,55,44,52,56,46,48,50,48,53,53,55,93,44,91,45,57,53,46,53,57,51,55,56,56,44,52,56,46,49,55,50,57,49,54,93,44,91,45,57,54,46,53,48,48,56,52,51,44,52,56,46,49,55,52,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,87,104,97,116,99,111,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,54,56,49,50,44,34,98,101,100,115,34,58,50,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,56,53,49,53,50,56,44,52,57,46,48,48,48,51,48,49,93,44,91,45,49,50,49,46,55,53,57,53,55,50,44,52,56,46,57,57,55,50,57,57,93,44,91,45,49,50,51,46,51,50,50,50,52,44,52,57,46,48,48,50,48,55,50,93,44,91,45,49,50,51,46,48,48,56,52,56,53,44,52,56,46,56,51,49,50,49,56,93,44,91,45,49,50,50,46,56,49,50,51,52,44,52,56,46,55,55,49,56,53,93,44,91,45,49,50,50,46,55,49,51,55,48,52,44,52,56,46,54,52,53,49,51,93,44,91,45,49,50,49,46,50,54,49,54,51,56,44,52,56,46,54,52,48,57,49,50,93,44,91,45,49,50,48,46,55,53,49,57,48,52,44,52,56,46,54,53,55,48,48,50,93,44,91,45,49,50,48,46,55,51,53,52,50,55,44,52,56,46,55,56,54,52,56,55,93,44,91,45,49,50,48,46,55,54,56,53,49,53,44,52,56,46,57,53,52,52,57,93,44,91,45,49,50,48,46,56,53,49,53,50,56,44,52,57,46,48,48,48,51,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,71,105,108,108,105,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,54,53,51,53,48,51,44,52,53,46,55,51,55,49,56,49,93,44,91,45,49,50,48,46,52,49,49,54,57,57,44,52,53,46,53,57,54,48,54,55,93,44,91,45,49,50,48,46,51,54,52,57,53,53,44,52,53,46,52,57,55,50,53,93,44,91,45,49,50,48,46,52,57,48,51,53,57,44,52,53,46,52,54,56,57,52,57,93,44,91,45,49,50,48,46,53,51,50,48,53,57,44,52,53,46,51,55,49,50,52,57,93,44,91,45,49,50,48,46,53,48,51,55,51,51,44,52,53,46,48,56,51,52,55,55,93,44,91,45,49,50,48,46,52,57,53,49,54,44,52,53,46,48,54,56,50,55,57,93,44,91,45,49,49,57,46,55,57,48,54,57,57,44,52,53,46,48,54,55,56,50,51,93,44,91,45,49,50,48,46,48,48,54,53,53,53,44,52,53,46,50,53,55,55,48,54,93,44,91,45,49,49,57,46,57,57,57,53,48,49,44,52,53,46,56,49,50,53,49,55,93,44,91,45,49,50,48,46,50,49,48,55,55,52,44,52,53,46,55,50,53,57,49,53,93,44,91,45,49,50,48,46,53,48,53,55,52,51,44,52,53,46,54,57,57,57,52,57,93,44,91,45,49,50,48,46,54,53,51,53,48,51,44,52,53,46,55,51,55,49,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,79,99,101,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,49,57,51,57,44,34,98,101,100,115,34,58,49,53,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,54,53,52,49,52,44,52,48,46,48,57,55,54,52,50,93,44,91,45,55,52,46,50,51,48,54,51,52,44,52,48,46,49,48,57,53,54,49,93,44,91,45,55,52,46,50,54,49,52,53,53,44,52,48,46,49,54,55,48,51,51,93,44,91,45,55,52,46,52,48,54,55,49,44,52,48,46,49,55,50,52,48,50,93,44,91,45,55,52,46,53,53,51,49,48,53,44,52,48,46,48,55,57,49,51,93,44,91,45,55,52,46,51,56,57,55,48,56,44,51,57,46,55,55,51,50,56,51,93,44,91,45,55,52,46,52,49,55,51,57,51,44,51,57,46,53,53,55,50,53,53,93,44,91,45,55,52,46,51,56,48,55,57,54,44,51,57,46,52,57,56,53,51,55,93,44,91,45,55,52,46,50,51,50,48,54,50,44,51,57,46,52,55,53,49,57,56,93,44,91,45,55,52,46,48,51,56,49,53,56,44,51,57,46,55,53,48,49,50,93,44,91,45,55,51,46,57,54,53,52,49,52,44,52,48,46,48,57,55,54,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,56,56,44,34,98,101,100,115,34,58,49,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,57,51,52,54,55,44,51,54,46,52,57,56,50,55,54,93,44,91,45,57,51,46,51,48,48,56,50,44,51,54,46,49,50,49,53,53,93,44,91,45,57,50,46,57,52,52,54,54,54,44,51,54,46,49,49,53,49,50,51,93,44,91,45,57,50,46,56,57,48,54,57,53,44,51,54,46,49,49,52,49,51,50,93,44,91,45,57,50,46,56,56,52,57,53,52,44,51,54,46,52,57,48,56,57,49,93,44,91,45,57,50,46,56,53,52,48,52,57,44,51,54,46,52,57,55,56,52,50,93,44,91,45,57,51,46,50,57,51,52,54,55,44,51,54,46,52,57,56,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,109,97,110,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,53,54,49,44,34,98,101,100,115,34,58,53,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,49,57,56,49,54,44,51,52,46,56,53,53,51,52,93,44,91,45,57,56,46,56,50,54,48,57,49,44,51,52,46,56,53,53,52,50,56,93,44,91,45,57,56,46,56,50,54,48,48,56,44,51,52,46,53,57,52,52,49,51,93,44,91,45,57,56,46,56,50,54,49,52,52,44,51,52,46,53,48,55,51,55,93,44,91,45,57,56,46,54,54,49,57,56,50,44,51,52,46,53,48,55,52,54,93,44,91,45,57,56,46,54,54,49,57,53,54,44,51,52,46,52,48,53,57,52,56,93,44,91,45,57,56,46,53,48,52,57,53,56,44,51,52,46,52,52,57,52,49,52,93,44,91,45,57,56,46,50,57,53,57,50,56,44,51,52,46,52,52,57,48,52,51,93,44,91,45,57,56,46,49,52,50,49,52,56,44,51,52,46,53,48,54,57,57,52,93,44,91,45,57,56,46,48,56,57,48,57,55,44,51,52,46,54,56,49,49,54,51,93,44,91,45,57,56,46,48,57,51,49,50,55,44,51,52,46,56,53,52,57,56,56,93,44,91,45,57,56,46,54,49,57,56,49,54,44,51,52,46,56,53,53,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,51,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,56,57,49,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,49,50,48,48,49,44,51,50,46,57,53,54,57,54,50,93,44,91,45,57,57,46,57,56,56,56,50,55,44,51,50,46,57,54,48,49,50,49,93,44,91,45,49,48,48,46,49,52,52,50,50,52,44,51,50,46,57,53,57,57,55,56,93,44,91,45,49,48,48,46,49,52,54,53,52,51,44,51,50,46,53,50,50,55,57,51,93,44,91,45,57,57,46,54,50,57,53,55,57,44,51,50,46,53,49,52,54,53,55,93,44,91,45,57,57,46,54,49,50,48,50,54,44,51,50,46,53,49,52,54,53,52,93,44,91,45,57,57,46,54,49,50,48,48,49,44,51,50,46,57,53,54,57,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,71,114,105,109,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,54,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,49,54,56,51,55,44,51,48,46,56,50,50,57,57,55,93,44,91,45,57,54,46,49,56,54,52,51,57,44,51,48,46,54,48,54,49,55,53,93,44,91,45,57,54,46,49,48,55,51,54,44,51,48,46,52,49,55,53,56,50,93,44,91,45,57,54,46,49,53,52,54,51,44,51,48,46,51,51,48,50,56,56,93,44,91,45,57,54,46,48,57,51,49,54,53,44,51,48,46,50,50,53,49,56,55,93,44,91,45,57,53,46,56,48,52,51,48,54,44,51,48,46,50,52,53,53,55,93,44,91,45,57,53,46,56,51,48,50,52,44,51,48,46,54,51,48,50,56,52,93,44,91,45,57,53,46,56,54,51,48,53,57,44,51,48,46,56,54,52,49,50,53,93,44,91,45,57,54,46,49,54,56,51,55,44,51,48,46,56,50,50,57,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,71,101,110,101,115,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,57,51,54,49,44,34,98,101,100,115,34,58,49,49,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,54,48,55,51,51,44,52,51,46,50,50,51,49,51,49,93,44,91,45,56,51,46,54,57,53,54,50,49,44,52,51,46,50,50,49,52,50,50,93,44,91,45,56,51,46,57,51,50,48,55,49,44,52,51,46,50,50,48,51,55,55,93,44,91,45,56,51,46,57,50,57,48,55,57,44,52,51,46,49,51,50,55,56,50,93,44,91,45,56,51,46,57,50,50,53,49,54,44,52,50,46,55,56,48,56,50,49,93,44,91,45,56,51,46,54,56,54,52,57,51,44,52,50,46,55,56,51,50,54,51,93,44,91,45,56,51,46,54,56,57,51,56,52,44,52,50,46,56,55,49,50,54,51,93,44,91,45,56,51,46,52,53,51,51,54,52,44,52,50,46,56,56,48,52,51,50,93,44,91,45,56,51,46,52,54,48,55,51,51,44,52,51,46,50,50,51,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,115,115,117,109,112,116,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,49,52,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,48,53,57,53,49,44,51,48,46,48,54,50,52,55,56,93,44,91,45,57,49,46,50,50,52,51,53,54,44,51,48,46,48,50,53,51,51,54,93,44,91,45,57,49,46,50,53,53,50,50,57,44,50,57,46,57,55,49,52,53,55,93,44,91,45,57,49,46,49,56,50,56,49,55,44,50,57,46,56,52,54,49,55,50,93,44,91,45,57,49,46,48,57,50,55,52,56,44,50,57,46,56,48,49,53,55,52,93,44,91,45,57,49,46,49,48,48,48,49,44,50,57,46,54,57,57,52,48,50,93,44,91,45,57,49,46,48,56,50,54,48,50,44,50,57,46,54,50,54,51,54,56,93,44,91,45,57,49,46,48,48,54,55,52,51,44,50,57,46,55,49,52,55,55,49,93,44,91,45,57,48,46,56,56,53,53,56,57,44,50,57,46,57,48,53,51,53,51,93,44,91,45,57,48,46,57,53,57,56,54,57,44,50,57,46,57,55,55,57,50,52,93,44,91,45,57,48,46,57,54,51,54,57,51,44,51,48,46,48,54,54,52,53,93,44,91,45,57,49,46,49,48,53,57,53,49,44,51,48,46,48,54,50,52,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,55,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,48,57,55,52,56,44,51,52,46,49,54,50,48,56,50,93,44,91,45,56,57,46,53,48,55,51,53,51,44,51,51,46,56,54,55,52,54,57,93,44,91,45,56,57,46,53,48,55,49,51,53,44,51,51,46,55,50,49,56,49,57,93,44,91,45,56,57,46,49,57,49,55,56,49,44,51,51,46,55,51,56,54,48,50,93,44,91,45,56,57,46,49,51,55,56,55,54,44,51,51,46,56,49,50,49,52,52,93,44,91,45,56,57,46,49,51,57,49,53,56,44,51,52,46,48,55,52,49,49,54,93,44,91,45,56,57,46,50,52,53,52,56,53,44,51,52,46,49,54,49,49,56,54,93,44,91,45,56,57,46,53,48,57,55,52,56,44,51,52,46,49,54,50,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,49,52,44,34,98,101,100,115,34,58,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,52,49,55,48,55,44,51,49,46,52,51,51,55,48,51,93,44,91,45,56,56,46,56,51,52,51,51,57,44,51,48,46,57,57,55,57,56,51,93,44,91,45,56,56,46,52,50,53,52,51,50,44,51,48,46,57,57,56,51,50,51,93,44,91,45,56,56,46,52,51,50,48,48,55,44,51,49,46,49,49,52,50,57,56,93,44,91,45,56,56,46,52,52,57,52,51,56,44,51,49,46,52,51,53,56,51,55,93,44,91,45,56,56,46,56,52,49,55,48,55,44,51,49,46,52,51,51,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,52,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,56,54,52,54,51,44,52,54,46,56,52,53,56,56,49,93,44,91,45,49,48,54,46,49,50,48,54,51,44,52,54,46,56,51,49,52,51,56,93,44,91,45,49,48,54,46,49,50,48,51,54,54,44,52,54,46,52,56,51,54,52,56,93,44,91,45,49,48,54,46,49,53,53,49,52,51,44,52,54,46,52,56,51,54,51,52,93,44,91,45,49,48,54,46,49,53,51,52,51,51,44,52,54,46,49,51,55,50,54,93,44,91,45,49,48,54,46,49,57,49,54,50,57,44,52,54,46,49,51,55,49,56,51,93,44,91,45,49,48,54,46,49,57,49,55,51,52,44,52,53,46,55,56,56,54,93,44,91,45,49,48,52,46,57,56,49,57,52,44,52,53,46,55,56,54,57,56,50,93,44,91,45,49,48,52,46,57,51,57,50,56,57,44,52,53,46,55,56,54,57,54,52,93,44,91,45,49,48,52,46,57,51,57,50,48,53,44,52,54,46,49,51,54,53,55,53,93,44,91,45,49,48,52,46,56,56,53,52,57,53,44,52,54,46,49,51,54,53,57,53,93,44,91,45,49,48,52,46,57,48,53,57,56,56,44,52,54,46,52,56,50,50,53,49,93,44,91,45,49,48,52,46,55,51,50,54,55,50,44,52,54,46,52,56,50,50,48,50,93,44,91,45,49,48,52,46,55,51,51,48,53,57,44,52,54,46,54,49,50,54,57,53,93,44,91,45,49,48,52,46,57,56,52,55,49,52,44,52,54,46,53,52,48,51,56,57,93,44,91,45,49,48,53,46,50,51,57,50,51,56,44,52,54,46,53,52,49,49,56,56,93,44,91,45,49,48,53,46,52,52,57,49,57,54,44,52,54,46,53,55,48,57,54,55,93,44,91,45,49,48,53,46,53,55,54,48,54,51,44,52,54,46,54,53,56,48,48,51,93,44,91,45,49,48,53,46,54,49,56,49,53,56,44,52,54,46,56,51,50,49,52,56,93,44,91,45,49,48,53,46,56,51,50,54,55,52,44,52,54,46,56,54,48,56,50,93,44,91,45,49,48,54,46,48,56,54,53,56,53,44,52,54,46,56,54,48,50,57,93,44,91,45,49,48,54,46,48,56,54,52,54,51,44,52,54,46,56,52,53,56,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,82,111,98,101,114,116,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,56,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,50,56,50,57,49,44,52,53,46,57,51,53,51,56,51,93,44,91,45,57,55,46,50,50,55,48,56,57,44,52,53,46,53,53,56,49,53,56,93,44,91,45,57,55,46,50,50,54,50,52,52,44,52,53,46,50,57,55,54,52,55,93,44,91,45,57,54,46,57,57,50,57,52,54,44,52,53,46,51,50,54,56,56,93,44,91,45,57,54,46,52,55,48,52,55,53,44,52,53,46,51,50,54,53,52,53,93,44,91,45,57,54,46,54,56,48,52,53,52,44,52,53,46,52,49,48,52,57,57,93,44,91,45,57,54,46,56,51,53,52,53,49,44,52,53,46,53,56,54,49,50,57,93,44,91,45,57,54,46,56,51,56,54,52,56,44,52,53,46,54,52,55,53,48,57,93,44,91,45,57,54,46,54,55,50,54,54,53,44,52,53,46,55,51,50,51,51,54,93,44,91,45,57,54,46,53,56,51,48,56,53,44,52,53,46,56,50,48,48,50,52,93,44,91,45,57,54,46,53,54,51,54,55,50,44,52,53,46,57,51,53,50,52,53,93,44,91,45,57,55,46,50,50,56,50,57,49,44,52,53,46,57,51,53,51,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,79,103,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,51,50,56,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,56,56,52,56,54,44,52,50,46,49,57,57,49,49,50,93,44,91,45,56,57,46,54,56,53,51,54,54,44,52,49,46,57,51,48,51,52,93,44,91,45,56,57,46,54,50,57,51,51,44,52,49,46,57,48,49,54,49,55,93,44,91,45,56,57,46,51,54,48,53,55,56,44,52,49,46,56,56,56,48,49,56,93,44,91,45,56,56,46,57,52,49,50,55,57,44,52,49,46,56,57,49,55,53,50,93,44,91,45,56,56,46,57,51,57,55,51,50,44,52,50,46,49,53,50,51,50,93,44,91,45,56,57,46,49,55,50,56,48,51,44,52,50,46,49,53,48,52,49,55,93,44,91,45,56,57,46,49,55,51,44,52,50,46,50,48,52,50,52,49,93,44,91,45,56,57,46,51,57,54,49,57,50,44,52,50,46,50,48,49,57,49,54,93,44,91,45,56,57,46,54,56,56,52,56,54,44,52,50,46,49,57,57,49,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,56,48,53,54,54,44,52,54,46,50,56,50,51,57,51,93,44,91,45,57,55,46,50,53,57,54,51,50,44,52,53,46,57,57,55,49,56,53,93,44,91,45,57,55,46,50,50,56,50,57,49,44,52,53,46,57,51,53,51,56,51,93,44,91,45,57,54,46,53,54,51,54,55,50,44,52,53,46,57,51,53,50,52,53,93,44,91,45,57,54,46,53,55,54,53,54,52,44,52,54,46,48,50,49,56,52,56,93,44,91,45,57,54,46,53,53,52,52,51,54,44,52,54,46,48,56,52,49,56,54,93,44,91,45,57,54,46,53,57,57,54,54,44,52,54,46,51,51,48,52,56,49,93,44,91,45,57,54,46,54,54,55,52,50,50,44,52,54,46,51,55,54,49,49,55,93,44,91,45,57,54,46,55,56,52,51,56,49,44,52,54,46,54,51,48,53,48,52,93,44,91,45,57,54,46,55,57,56,49,50,56,44,52,54,46,54,51,48,51,50,54,93,44,91,45,57,55,46,50,55,57,57,52,56,44,52,54,46,54,50,57,51,52,56,93,44,91,45,57,55,46,50,56,48,53,54,54,44,52,54,46,50,56,50,51,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,114,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,50,53,50,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,53,52,56,56,56,44,52,53,46,54,51,57,55,52,50,93,44,91,45,57,50,46,49,53,54,52,54,53,44,52,53,46,50,48,57,53,53,52,93,44,91,45,57,49,46,54,54,53,54,52,55,44,52,53,46,50,48,55,57,57,49,93,44,91,45,57,49,46,53,52,49,51,50,50,44,52,53,46,50,57,50,50,50,93,44,91,45,57,49,46,53,52,48,50,57,52,44,52,53,46,54,51,55,54,48,53,93,44,91,45,57,50,46,48,51,49,52,49,55,44,52,53,46,54,51,57,57,50,56,93,44,91,45,57,50,46,49,53,52,56,56,56,44,52,53,46,54,51,57,55,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,73,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,54,57,54,50,50,44,52,54,46,55,57,56,49,56,50,93,44,91,45,57,48,46,52,52,56,57,53,54,44,52,54,46,55,57,55,52,48,49,93,44,91,45,57,48,46,53,52,57,56,56,44,52,54,46,53,56,51,53,53,50,93,44,91,45,57,48,46,53,53,50,50,50,55,44,52,54,46,50,52,48,56,53,49,93,44,91,45,57,48,46,52,50,53,57,55,56,44,52,54,46,50,52,48,52,53,93,44,91,45,57,48,46,51,48,51,48,55,50,44,52,54,46,49,53,52,56,52,57,93,44,91,45,57,48,46,51,48,50,48,54,51,44,52,53,46,57,56,49,51,52,57,93,44,91,45,57,48,46,48,52,51,57,53,56,44,52,53,46,57,56,49,57,52,56,93,44,91,45,56,57,46,57,50,56,56,51,55,44,52,53,46,57,56,49,57,54,55,93,44,91,45,56,57,46,57,50,57,49,53,56,44,52,54,46,50,57,57,55,52,56,93,44,91,45,57,48,46,49,50,48,53,55,50,44,52,54,46,51,51,55,48,51,57,93,44,91,45,57,48,46,50,49,54,49,55,50,44,52,54,46,53,48,49,50,55,50,93,44,91,45,57,48,46,52,49,56,51,57,50,44,52,54,46,53,54,54,48,57,57,93,44,91,45,57,48,46,50,54,57,54,50,50,44,52,54,46,55,57,56,49,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,87,97,98,97,115,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,48,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,52,50,48,49,44,52,52,46,52,53,52,50,53,52,93,44,91,45,57,50,46,52,51,48,50,55,55,44,52,52,46,52,53,53,51,50,49,93,44,91,45,57,50,46,53,53,48,55,51,51,44,52,52,46,51,54,56,53,50,49,93,44,91,45,57,50,46,53,53,48,56,55,49,44,52,52,46,49,57,52,57,49,54,93,44,91,45,57,50,46,51,49,56,57,56,54,44,52,52,46,49,57,52,48,53,55,93,44,91,45,57,50,46,51,49,56,57,55,49,44,52,52,46,49,48,55,55,51,52,93,44,91,45,57,50,46,48,55,57,52,57,49,44,52,52,46,49,48,54,57,56,56,93,44,91,45,57,50,46,48,55,56,53,51,50,44,52,52,46,49,57,50,57,55,57,93,44,91,45,57,49,46,56,53,56,50,52,53,44,52,52,46,49,57,51,48,48,52,93,44,91,45,57,49,46,57,50,56,50,50,52,44,52,52,46,51,51,53,52,55,51,93,44,91,45,57,50,46,48,56,51,53,55,50,44,52,52,46,52,48,55,51,51,54,93,44,91,45,57,50,46,50,52,50,48,49,44,52,52,46,52,53,52,50,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,68,101,108,32,78,111,114,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,50,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,51,50,56,56,51,53,44,52,49,46,57,57,56,51,51,52,93,44,91,45,49,50,52,46,50,56,53,48,51,49,44,52,49,46,56,53,57,52,56,55,93,44,91,45,49,50,52,46,52,51,56,57,48,57,44,52,49,46,56,50,52,53,48,52,93,44,91,45,49,50,52,46,50,49,49,55,48,54,44,52,49,46,54,56,49,49,57,51,93,44,91,45,49,50,52,46,49,51,54,53,54,49,44,52,49,46,52,54,52,52,53,50,93,44,91,45,49,50,51,46,55,55,48,53,53,49,44,52,49,46,52,54,52,49,57,51,93,44,91,45,49,50,51,46,54,54,49,51,54,51,44,52,49,46,51,56,50,48,57,93,44,91,45,49,50,51,46,54,49,50,51,57,53,44,52,49,46,52,52,56,57,53,52,93,44,91,45,49,50,51,46,55,49,57,49,55,52,44,52,49,46,53,57,53,54,49,51,93,44,91,45,49,50,51,46,54,54,55,49,49,52,44,52,49,46,54,57,49,54,56,57,93,44,91,45,49,50,51,46,55,48,51,54,56,49,44,52,49,46,56,50,57,52,56,55,93,44,91,45,49,50,51,46,53,54,53,52,52,50,44,52,49,46,57,48,51,49,52,49,93,44,91,45,49,50,51,46,53,49,55,57,49,49,44,52,50,46,48,48,48,55,53,54,93,44,91,45,49,50,51,46,56,50,50,48,52,49,44,52,49,46,57,57,53,53,56,93,44,91,45,49,50,52,46,51,50,56,56,51,53,44,52,49,46,57,57,56,51,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,80,117,115,104,109,97,116,97,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,49,57,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,54,55,49,56,49,44,51,52,46,53,57,51,55,51,50,93,44,91,45,57,53,46,54,55,49,55,53,44,51,52,46,53,48,54,55,57,52,93,44,91,45,57,53,46,55,55,57,49,51,52,44,51,52,46,53,48,54,54,52,52,93,44,91,45,57,53,46,55,55,57,51,55,54,44,51,52,46,49,53,54,54,57,57,93,44,91,45,57,53,46,49,53,54,53,50,49,44,51,52,46,49,53,54,57,54,53,93,44,91,45,57,53,46,49,53,49,51,50,51,44,51,52,46,50,52,51,55,51,55,93,44,91,45,57,53,46,48,52,54,53,56,53,44,51,52,46,50,52,51,55,55,54,93,44,91,45,57,53,46,48,52,54,55,52,54,44,51,52,46,53,48,55,50,55,54,93,44,91,45,57,52,46,57,51,55,54,48,52,44,51,52,46,53,48,55,50,57,54,93,44,91,45,57,52,46,57,51,55,53,53,53,44,51,52,46,54,56,48,55,57,50,93,44,91,45,57,53,46,48,53,57,54,49,54,44,51,52,46,54,56,48,55,51,54,93,44,91,45,57,53,46,53,49,52,52,55,53,44,51,52,46,54,56,48,55,49,56,93,44,91,45,57,53,46,53,49,52,53,49,49,44,51,52,46,53,57,52,49,53,51,93,44,91,45,57,53,46,54,55,49,56,49,44,51,52,46,53,57,51,55,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,104,101,108,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,55,53,55,44,34,98,101,100,115,34,58,50,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,48,48,49,54,53,56,44,52,56,46,50,57,54,48,48,57,93,44,91,45,49,50,48,46,57,48,55,52,50,53,44,52,56,46,49,54,51,49,56,52,93,44,91,45,49,50,49,46,49,49,56,49,56,51,44,52,55,46,57,57,55,49,48,51,93,44,91,45,49,50,49,46,49,56,48,55,55,54,44,52,55,46,56,57,56,55,54,57,93,44,91,45,49,50,49,46,49,49,57,49,55,57,44,52,55,46,55,55,57,57,51,51,93,44,91,45,49,50,49,46,49,49,51,53,54,57,44,52,55,46,53,57,55,50,56,56,93,44,91,45,49,50,48,46,57,50,52,50,48,55,44,52,55,46,52,51,51,53,56,50,93,44,91,45,49,50,48,46,51,56,57,49,57,55,44,52,55,46,50,54,48,57,51,53,93,44,91,45,49,50,48,46,48,57,52,52,54,44,52,55,46,50,54,50,49,53,57,93,44,91,45,49,50,48,46,49,50,57,53,55,51,44,52,55,46,51,54,54,50,53,49,93,44,91,45,49,50,48,46,50,56,54,53,51,44,52,55,46,51,57,51,49,49,49,93,44,91,45,49,50,48,46,51,49,55,57,56,52,44,52,55,46,52,53,54,57,52,56,93,44,91,45,49,50,48,46,49,57,57,48,52,56,44,52,55,46,54,56,50,50,55,54,93,44,91,45,49,50,48,46,50,48,54,57,48,56,44,52,55,46,55,53,48,54,51,56,93,44,91,45,49,49,57,46,57,57,50,54,55,57,44,52,55,46,55,56,51,49,53,93,44,91,45,49,49,57,46,56,55,48,53,57,53,44,52,55,46,57,54,48,52,53,53,93,44,91,45,49,50,48,46,48,52,56,54,52,54,44,52,55,46,57,54,48,54,50,56,93,44,91,45,49,50,48,46,49,52,51,57,51,49,44,52,56,46,48,54,53,52,52,52,93,44,91,45,49,50,48,46,51,54,49,50,56,56,44,52,56,46,49,53,55,53,54,57,93,44,91,45,49,50,48,46,51,52,54,50,56,52,44,52,56,46,49,57,57,57,56,54,93,44,91,45,49,50,48,46,54,52,57,57,51,51,44,52,56,46,51,57,56,49,51,57,93,44,91,45,49,50,48,46,55,48,50,48,54,57,44,52,56,46,53,51,49,53,56,57,93,44,91,45,49,50,48,46,56,53,55,52,50,55,44,52,56,46,53,52,55,54,55,54,93,44,91,45,49,50,49,46,48,54,50,52,53,44,52,56,46,52,54,48,51,54,55,93,44,91,45,49,50,49,46,48,48,49,54,53,56,44,52,56,46,50,57,54,48,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,80,114,101,115,113,117,101,32,73,115,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,48,49,48,54,50,44,52,53,46,55,53,50,50,55,53,93,44,91,45,56,52,46,50,53,50,48,50,44,52,53,46,54,50,53,57,57,56,93,44,91,45,56,52,46,50,52,54,54,51,52,44,52,53,46,49,57,56,55,50,55,93,44,91,45,56,51,46,56,56,49,50,50,51,44,52,53,46,50,48,50,48,55,49,93,44,91,45,56,50,46,52,57,48,53,57,54,44,52,53,46,50,48,56,52,56,52,93,44,91,45,56,50,46,53,50,48,54,52,44,52,53,46,51,51,53,57,48,50,93,44,91,45,56,51,46,52,56,51,57,55,52,44,52,53,46,55,55,49,57,51,55,93,44,91,45,56,51,46,54,51,54,56,54,55,44,52,53,46,55,55,51,57,52,52,93,44,91,45,56,52,46,49,50,51,48,57,56,44,52,53,46,55,55,55,54,54,56,93,44,91,45,56,52,46,50,48,49,48,54,50,44,52,53,46,55,53,50,50,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,101,118,101,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,54,55,51,51,44,34,98,101,100,115,34,58,54,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,55,49,52,49,53,44,51,53,46,51,51,55,52,54,53,93,44,91,45,57,55,46,53,53,54,57,56,55,44,51,53,46,50,56,56,52,52,93,44,91,45,57,55,46,53,53,52,55,57,44,51,53,46,50,50,52,51,50,57,93,44,91,45,57,55,46,51,53,52,49,57,50,44,51,53,46,48,55,54,54,53,54,93,44,91,45,57,55,46,51,52,49,53,48,57,44,51,52,46,57,54,52,48,48,49,93,44,91,45,57,55,46,49,52,50,51,52,57,44,51,52,46,57,50,56,49,55,54,93,44,91,45,57,55,46,49,52,50,49,49,52,44,51,53,46,51,55,54,56,54,93,44,91,45,57,55,46,54,55,49,51,54,57,44,51,53,46,51,55,55,49,53,49,93,44,91,45,57,55,46,54,55,49,52,49,53,44,51,53,46,51,51,55,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,50,49,49,44,34,98,101,100,115,34,58,49,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,49,52,54,52,52,54,44,52,49,46,56,53,48,56,57,57,93,44,91,45,55,53,46,48,53,51,50,50,55,44,52,49,46,55,53,49,54,54,50,93,44,91,45,55,53,46,48,54,57,53,53,57,44,52,49,46,54,48,49,56,55,52,93,44,91,45,55,52,46,57,56,49,54,53,50,44,52,49,46,52,55,57,57,52,53,93,44,91,45,55,52,46,55,53,52,54,57,44,52,49,46,52,50,52,57,55,51,93,44,91,45,55,52,46,55,53,50,51,57,57,44,52,49,46,52,57,51,55,52,51,93,44,91,45,55,52,46,52,56,52,51,54,55,44,52,49,46,53,48,52,50,51,53,93,44,91,45,55,52,46,51,54,55,48,53,53,44,52,49,46,53,57,48,57,55,55,93,44,91,45,55,52,46,51,57,53,48,55,49,44,52,49,46,54,52,52,56,55,54,93,44,91,45,55,52,46,53,55,53,48,56,54,44,52,49,46,55,52,53,50,53,56,93,44,91,45,55,52,46,52,53,51,54,56,53,44,52,49,46,56,55,53,53,57,53,93,44,91,45,55,52,46,55,56,48,54,57,51,44,52,50,46,48,49,54,51,55,53,93,44,91,45,55,53,46,49,52,54,52,52,54,44,52,49,46,56,53,48,56,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,53,56,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,54,49,51,48,53,44,51,53,46,51,57,51,49,57,56,93,44,91,45,56,50,46,51,52,54,49,52,49,44,51,53,46,50,56,53,57,57,50,93,44,91,45,56,50,46,51,53,51,55,53,52,44,51,53,46,49,57,48,57,54,55,93,44,91,45,56,50,46,50,49,53,57,52,55,44,51,53,46,49,57,54,50,50,50,93,44,91,45,56,49,46,57,54,57,51,52,56,44,51,53,46,49,56,55,50,49,55,93,44,91,45,56,49,46,57,54,56,55,56,56,44,51,53,46,50,53,55,55,54,52,93,44,91,45,56,50,46,49,53,49,53,51,53,44,51,53,46,52,48,55,53,56,49,93,44,91,45,56,50,46,50,54,49,51,48,53,44,51,53,46,51,57,51,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,83,99,111,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,50,54,50,44,34,98,101,100,115,34,58,49,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,44,91,45,55,57,46,53,55,51,52,50,51,44,51,52,46,57,57,50,50,49,93,44,91,45,55,57,46,53,54,49,56,53,54,44,51,52,46,57,49,48,51,53,93,44,91,45,55,57,46,54,57,50,57,52,52,44,51,52,46,56,48,53,49,53,53,93,44,91,45,55,57,46,52,54,49,53,48,54,44,51,52,46,54,51,48,51,55,57,93,44,91,45,55,57,46,51,51,48,57,52,57,44,51,52,46,55,55,51,56,50,49,93,44,91,45,55,57,46,51,52,55,56,54,56,44,51,52,46,56,51,56,53,53,51,93,44,91,45,55,57,46,51,53,51,51,49,50,44,51,52,46,57,52,50,53,54,49,93,44,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,97,114,110,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,48,51,54,49,44,34,98,101,100,115,34,58,50,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,54,57,54,52,44,51,53,46,53,50,49,54,54,57,93,44,91,45,55,57,46,49,56,51,53,53,54,44,51,53,46,51,48,55,49,54,49,93,44,91,45,55,57,46,48,57,53,56,48,56,44,51,53,46,49,57,50,48,54,56,93,44,91,45,55,56,46,55,57,51,52,52,55,44,51,53,46,50,54,53,57,55,54,93,44,91,45,55,56,46,54,49,55,49,50,55,44,51,53,46,50,52,53,53,55,56,93,44,91,45,55,56,46,53,51,56,51,52,57,44,51,53,46,51,49,54,52,49,93,44,91,45,55,56,46,55,48,56,57,48,50,44,51,53,46,53,49,57,52,53,56,93,44,91,45,55,56,46,57,49,52,55,51,52,44,51,53,46,53,56,51,54,55,50,93,44,91,45,55,56,46,57,54,57,54,52,44,51,53,46,53,50,49,54,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,49,50,53,44,34,98,101,100,115,34,58,49,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,54,57,54,52,44,51,53,46,53,50,49,54,54,57,93,44,91,45,55,57,46,49,49,55,48,57,54,44,51,53,46,54,50,56,49,54,52,93,44,91,45,55,57,46,49,57,57,49,51,54,44,51,53,46,53,53,57,56,52,52,93,44,91,45,55,57,46,51,53,48,48,55,51,44,51,53,46,53,49,56,48,48,50,93,44,91,45,55,57,46,50,54,53,55,49,51,44,51,53,46,51,52,53,50,55,57,93,44,91,45,55,57,46,49,56,51,53,53,54,44,51,53,46,51,48,55,49,54,49,93,44,91,45,55,56,46,57,54,57,54,52,44,51,53,46,53,50,49,54,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,84,105,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,50,49,49,55,44,52,48,46,52,48,54,56,56,57,93,44,91,45,56,54,46,50,52,50,56,49,50,44,52,48,46,52,48,50,57,49,52,93,44,91,45,56,54,46,50,52,50,57,57,50,44,52,48,46,51,55,51,54,54,49,93,44,91,45,56,54,46,50,52,50,55,52,51,44,52,48,46,50,49,53,56,51,52,93,44,91,45,56,53,46,56,54,49,57,48,51,44,52,48,46,50,49,56,57,51,54,93,44,91,45,56,53,46,56,54,50,50,57,54,44,52,48,46,51,55,56,51,54,55,93,44,91,45,56,53,46,56,54,50,49,49,55,44,52,48,46,52,48,54,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,53,55,52,44,51,57,46,53,54,55,48,49,56,93,44,91,45,57,55,46,51,54,57,56,51,57,44,51,57,46,51,48,54,48,49,49,93,44,91,45,57,55,46,51,55,49,49,53,52,44,51,57,46,49,51,49,57,54,49,93,44,91,45,57,54,46,57,54,51,49,55,55,44,51,57,46,49,51,50,51,93,44,91,45,57,54,46,57,54,49,54,57,51,44,51,57,46,50,50,48,48,55,54,93,44,91,45,57,54,46,57,53,56,55,49,57,44,51,57,46,53,54,54,52,48,49,93,44,91,45,57,55,46,51,54,56,53,55,52,44,51,57,46,53,54,55,48,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,87,97,103,111,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,56,53,48,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,54,54,49,49,52,44,51,53,46,56,53,54,50,56,52,93,44,91,45,57,53,46,54,51,57,55,55,57,44,51,53,46,55,57,49,56,48,55,93,44,91,45,57,53,46,50,54,53,54,55,57,44,51,53,46,56,49,51,50,54,54,93,44,91,45,57,53,46,50,56,50,57,57,50,44,51,53,46,57,48,55,55,48,52,93,44,91,45,57,53,46,50,48,55,57,52,54,44,51,54,46,48,55,52,55,48,56,93,44,91,45,57,53,46,52,51,57,57,55,44,51,54,46,48,55,53,50,93,44,91,45,57,53,46,53,53,50,53,56,55,44,51,54,46,48,57,49,52,56,54,93,44,91,45,57,53,46,54,49,56,53,50,44,51,54,46,49,54,50,53,49,50,93,44,91,45,57,53,46,55,54,49,54,53,44,51,54,46,49,54,50,55,53,93,44,91,45,57,53,46,55,54,49,55,48,50,44,51,53,46,57,48,49,49,52,55,93,44,91,45,57,53,46,56,49,57,52,53,57,44,51,53,46,56,53,54,50,53,53,93,44,91,45,57,53,46,55,54,54,49,49,52,44,51,53,46,56,53,54,50,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,50,51,52,55,55,49,44,52,55,46,55,57,48,53,48,50,93,44,91,45,49,48,53,46,50,51,53,48,49,54,44,52,55,46,55,48,51,53,56,49,93,44,91,45,49,48,52,46,57,55,56,48,57,44,52,55,46,55,48,51,50,57,51,93,44,91,45,49,48,52,46,57,55,56,53,53,51,44,52,55,46,54,49,54,50,55,50,93,44,91,45,49,48,52,46,53,57,51,54,54,52,44,52,55,46,54,49,54,50,57,52,93,44,91,45,49,48,52,46,53,49,51,48,52,57,44,52,55,46,53,50,57,52,52,50,93,44,91,45,49,48,52,46,53,49,51,50,57,50,44,52,55,46,51,53,52,55,49,57,93,44,91,45,49,48,52,46,52,50,48,51,52,55,44,52,55,46,51,53,52,52,51,53,93,44,91,45,49,48,52,46,49,51,49,56,54,51,44,52,55,46,51,53,51,57,48,49,93,44,91,45,49,48,52,46,48,52,52,56,55,49,44,52,55,46,51,57,55,48,54,51,93,44,91,45,49,48,52,46,48,52,52,48,52,52,44,52,55,46,57,57,54,48,56,50,93,44,91,45,49,48,52,46,53,49,49,54,57,54,44,52,56,46,49,48,57,56,57,52,93,44,91,45,49,48,52,46,56,50,50,53,56,49,44,52,56,46,49,49,56,57,52,53,93,44,91,45,49,48,53,46,48,51,55,48,57,52,44,52,56,46,48,54,51,52,49,54,93,44,91,45,49,48,53,46,49,57,52,55,56,51,44,52,56,46,48,54,54,54,49,55,93,44,91,45,49,48,53,46,49,57,53,49,50,50,44,52,55,46,56,54,56,48,56,49,93,44,91,45,49,48,53,46,50,51,52,55,55,49,44,52,55,46,55,57,48,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,115,104,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,51,55,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,53,55,51,55,44,51,51,46,51,56,56,57,55,52,93,44,91,45,57,49,46,57,57,48,49,54,55,44,51,51,46,51,57,56,50,49,52,93,44,91,45,57,49,46,57,55,55,50,56,52,44,51,51,46,51,48,50,48,50,54,93,44,91,45,57,50,46,49,51,55,53,50,55,44,51,51,46,49,54,50,57,53,54,93,44,91,45,57,50,46,48,54,57,49,48,53,44,51,51,46,48,48,56,49,54,51,93,44,91,45,57,49,46,52,54,48,52,44,51,51,46,48,48,53,57,49,53,93,44,91,45,57,49,46,52,53,55,51,55,44,51,51,46,51,56,56,57,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,115,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,56,55,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,49,55,57,48,53,44,51,52,46,49,49,57,49,48,53,93,44,91,45,57,49,46,49,57,52,50,55,56,44,51,52,46,48,55,48,57,51,56,93,44,91,45,57,49,46,50,49,52,51,51,56,44,51,51,46,57,55,50,52,48,51,93,44,91,45,57,49,46,52,50,49,55,49,53,44,51,52,46,48,49,52,52,55,50,93,44,91,45,57,49,46,53,52,56,54,54,56,44,51,51,46,57,55,54,55,57,57,93,44,91,45,57,49,46,53,53,55,54,52,56,44,51,51,46,55,56,51,51,56,52,93,44,91,45,57,49,46,52,53,48,51,50,53,44,51,51,46,55,56,48,52,49,53,93,44,91,45,57,49,46,52,53,51,52,51,56,44,51,51,46,53,54,51,55,48,51,93,44,91,45,57,49,46,50,51,48,56,57,55,44,51,51,46,53,54,49,52,93,44,91,45,57,49,46,49,51,48,52,52,53,44,51,51,46,54,48,54,48,51,52,93,44,91,45,57,49,46,48,54,56,50,57,44,51,51,46,55,49,54,52,55,55,93,44,91,45,57,49,46,48,55,51,48,49,49,44,51,51,46,56,53,55,52,52,57,93,44,91,45,57,49,46,48,49,49,53,49,44,51,51,46,57,50,52,55,51,51,93,44,91,45,57,48,46,57,53,53,49,55,44,51,52,46,49,49,56,56,51,51,93,44,91,45,57,49,46,49,49,55,57,48,53,44,51,52,46,49,49,57,49,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,86,105,101,113,117,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,55,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,54,49,56,48,53,44,49,56,46,49,53,52,49,56,93,44,91,45,54,53,46,54,50,55,52,57,49,44,49,56,46,48,56,51,52,49,51,93,44,91,45,54,53,46,53,52,57,54,57,57,44,49,56,46,48,50,56,52,52,57,93,44,91,45,54,53,46,50,52,57,54,44,49,56,46,48,56,52,51,48,53,93,44,91,45,54,53,46,50,55,56,51,49,54,44,49,56,46,49,57,55,57,49,56,93,44,91,45,54,53,46,52,54,52,52,50,53,44,49,56,46,50,50,50,50,49,52,93,44,91,45,54,53,46,53,53,52,54,52,51,44,49,56,46,49,56,52,55,54,55,93,44,91,45,54,53,46,54,49,56,48,53,44,49,56,46,49,53,52,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,49,50,44,34,98,101,100,115,34,58,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,55,48,55,51,56,44,51,53,46,56,49,53,55,48,53,93,44,91,45,56,56,46,48,51,52,55,56,56,44,51,53,46,55,49,55,50,54,49,93,44,91,45,56,56,46,48,51,53,56,51,55,44,51,53,46,54,50,49,56,51,57,93,44,91,45,56,55,46,57,55,52,54,51,44,51,53,46,53,50,49,48,50,53,93,44,91,45,56,56,46,48,48,55,55,48,57,44,51,53,46,52,50,51,51,56,49,93,44,91,45,56,55,46,57,55,51,49,56,44,51,53,46,52,53,57,57,54,56,93,44,91,45,56,55,46,55,49,55,53,53,57,44,51,53,46,52,56,51,51,52,55,93,44,91,45,56,55,46,54,53,56,49,56,57,44,51,53,46,54,48,57,51,52,57,93,44,91,45,56,55,46,55,52,51,55,53,44,51,53,46,54,54,51,57,53,50,93,44,91,45,56,55,46,55,49,54,55,54,44,51,53,46,56,51,56,55,53,93,44,91,45,56,55,46,56,55,52,49,56,50,44,51,53,46,56,49,51,48,50,49,93,44,91,45,56,55,46,57,54,50,55,52,44,51,53,46,56,52,48,57,50,49,93,44,91,45,56,55,46,57,55,48,55,51,56,44,51,53,46,56,49,53,55,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,51,49,55,44,34,98,101,100,115,34,58,49,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,48,53,49,56,44,52,53,46,49,50,51,56,54,54,93,44,91,45,57,51,46,48,50,48,48,52,52,44,52,52,46,56,57,48,55,53,93,44,91,45,57,51,46,48,48,53,57,55,56,44,52,52,46,55,55,49,54,56,53,93,44,91,45,57,50,46,56,48,50,48,49,55,44,52,52,46,55,52,53,54,55,51,93,44,91,45,57,50,46,55,54,57,53,48,49,44,52,52,46,56,54,50,48,48,49,93,44,91,45,57,50,46,55,53,56,48,48,56,44,52,53,46,50,48,57,53,54,54,93,44,91,45,57,50,46,55,52,53,54,56,51,44,52,53,46,50,57,54,48,52,50,93,44,91,45,57,51,46,48,49,57,52,52,44,52,53,46,50,57,54,57,50,57,93,44,91,45,57,51,46,48,50,48,53,49,56,44,52,53,46,49,50,51,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,52,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,52,48,34,44,34,78,65,77,69,34,58,34,80,111,114,116,115,109,111,117,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,51,49,49,44,34,98,101,100,115,34,58,52,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,51,57,57,53,54,55,44,51,54,46,57,51,48,57,52,55,93,44,91,45,55,54,46,52,50,48,51,54,56,44,51,54,46,56,54,54,51,52,56,93,44,91,45,55,54,46,50,56,57,57,54,50,44,51,54,46,56,50,50,48,52,56,93,44,91,45,55,54,46,51,52,49,56,50,53,44,51,54,46,57,50,52,55,55,50,93,44,91,45,55,54,46,51,56,52,52,49,57,44,51,54,46,57,53,49,48,53,57,93,44,91,45,55,54,46,51,57,57,53,54,55,44,51,54,46,57,51,48,57,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,50,56,57,44,34,98,101,100,115,34,58,50,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,55,55,51,56,53,44,52,48,46,49,50,54,55,57,50,93,44,91,45,55,57,46,57,57,56,48,49,52,44,51,57,46,57,56,51,51,50,50,93,44,91,45,55,57,46,57,50,53,53,57,55,44,51,57,46,57,50,52,55,57,53,93,44,91,45,55,57,46,57,49,54,50,56,44,51,57,46,55,50,48,55,55,55,93,44,91,45,55,57,46,55,54,51,55,55,52,44,51,57,46,55,50,48,55,55,54,93,44,91,45,55,57,46,52,55,54,54,54,50,44,51,57,46,55,50,49,48,55,56,93,44,91,45,55,57,46,51,57,50,52,53,57,44,51,57,46,55,50,49,53,55,56,93,44,91,45,55,57,46,52,49,55,53,53,56,44,51,57,46,56,53,51,55,55,54,93,44,91,45,55,57,46,50,57,51,54,56,50,44,52,48,46,48,52,48,52,49,51,93,44,91,45,55,57,46,53,48,53,49,56,56,44,52,48,46,49,52,48,53,54,56,93,44,91,45,55,57,46,54,51,56,57,57,52,44,52,48,46,48,56,50,56,53,57,93,44,91,45,55,57,46,56,55,55,51,56,53,44,52,48,46,49,50,54,55,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,52,49,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,44,91,45,55,57,46,49,51,52,52,53,54,44,51,57,46,51,49,50,53,48,49,93,44,91,45,55,57,46,50,55,49,54,57,53,44,51,57,46,51,50,55,57,57,57,93,44,91,45,55,57,46,52,56,54,56,55,53,44,51,57,46,50,48,53,56,57,54,93,44,91,45,55,57,46,52,56,55,49,55,53,44,51,57,46,49,57,52,57,48,54,93,44,91,45,55,57,46,50,57,54,54,54,51,44,51,57,46,49,57,56,52,48,54,93,44,91,45,55,57,46,51,53,55,54,54,54,44,51,56,46,57,54,52,53,48,57,93,44,91,45,55,57,46,51,52,57,56,54,55,44,51,56,46,57,53,55,53,48,57,93,44,91,45,55,57,46,49,51,52,50,57,54,44,51,56,46,56,49,51,51,52,93,44,91,45,55,57,46,48,52,53,57,53,51,44,51,56,46,57,50,56,55,49,93,44,91,45,55,57,46,48,56,57,54,53,53,44,51,57,46,48,51,56,50,48,56,93,44,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,83,104,101,110,97,110,100,111,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,48,52,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,53,52,52,49,56,50,44,51,57,46,48,53,54,53,53,57,93,44,91,45,55,56,46,54,56,48,52,53,54,44,51,56,46,57,50,53,51,49,51,93,44,91,45,55,56,46,55,56,56,48,51,49,44,51,56,46,56,56,53,49,50,51,93,44,91,45,55,56,46,56,54,57,50,54,49,44,51,56,46,55,54,50,57,56,93,44,91,45,55,56,46,54,52,49,55,54,57,44,51,56,46,54,48,52,55,49,57,93,44,91,45,55,56,46,53,52,56,56,50,56,44,51,56,46,55,51,56,54,53,53,93,44,91,45,55,56,46,51,57,52,55,48,52,44,51,56,46,56,50,50,55,57,93,44,91,45,55,56,46,51,48,48,52,49,52,44,51,56,46,57,52,51,53,57,50,93,44,91,45,55,56,46,51,49,52,48,56,44,51,57,46,48,48,55,57,57,52,93,44,91,45,55,56,46,53,52,52,49,56,50,44,51,57,46,48,53,54,53,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,53,34,44,34,78,65,77,69,34,58,34,73,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,54,55,57,52,55,44,51,49,46,53,50,56,54,56,56,93,44,91,45,49,48,49,46,50,55,52,55,57,57,44,51,49,46,48,55,57,51,55,57,93,44,91,45,49,48,48,46,57,54,50,49,55,54,44,51,49,46,48,56,50,52,57,93,44,91,45,49,48,48,46,54,56,56,55,54,52,44,51,49,46,48,56,54,53,55,54,93,44,91,45,49,48,48,46,54,57,51,48,54,53,44,51,49,46,53,50,51,57,53,52,93,44,91,45,49,48,49,46,50,54,55,57,52,55,44,51,49,46,53,50,56,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,108,100,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,48,53,57,54,49,44,51,57,46,55,52,53,56,52,49,93,44,91,45,57,52,46,50,48,56,52,50,51,44,51,57,46,53,50,55,50,93,44,91,45,57,51,46,55,53,57,49,56,51,44,51,57,46,53,50,52,53,53,56,93,44,91,45,57,51,46,55,53,56,51,53,55,44,51,57,46,54,49,49,52,48,55,93,44,91,45,57,51,46,55,53,56,57,57,50,44,51,57,46,55,56,52,54,55,52,93,44,91,45,57,52,46,50,48,53,56,52,52,44,51,57,46,55,56,56,57,53,52,93,44,91,45,57,52,46,50,48,53,57,54,49,44,51,57,46,55,52,53,56,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,55,54,54,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,53,56,57,57,44,50,57,46,52,55,49,50,51,50,93,44,91,45,56,49,46,56,52,51,48,48,57,44,50,57,46,53,50,49,48,48,52,93,44,91,45,56,49,46,55,55,54,50,48,53,44,50,57,46,52,56,55,52,52,56,93,44,91,45,56,49,46,54,56,48,57,48,51,44,50,57,46,51,50,52,52,51,93,44,91,45,56,49,46,52,51,51,57,57,50,44,50,57,46,51,57,56,53,53,50,93,44,91,45,56,49,46,53,50,48,53,57,54,44,50,57,46,53,48,48,50,52,57,93,44,91,45,56,49,46,53,50,51,54,54,44,50,57,46,54,50,50,52,51,50,93,44,91,45,56,49,46,53,50,53,50,51,44,50,57,46,55,53,57,52,57,55,93,44,91,45,56,49,46,53,56,49,50,48,55,44,50,57,46,56,52,48,49,55,54,93,44,91,45,56,49,46,56,49,50,52,51,44,50,57,46,56,51,54,52,57,93,44,91,45,56,49,46,57,51,57,52,50,55,44,50,57,46,55,52,55,52,57,55,93,44,91,45,56,50,46,48,52,57,50,52,52,44,50,57,46,55,49,56,54,55,93,44,91,45,56,50,46,48,53,53,54,50,53,44,50,57,46,55,49,56,50,51,50,93,44,91,45,56,50,46,48,53,53,56,57,57,44,50,57,46,52,55,49,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,56,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,56,49,52,50,52,44,51,56,46,51,57,52,55,54,55,93,44,91,45,56,54,46,54,55,57,53,49,49,44,51,56,46,50,54,51,48,56,54,93,44,91,45,56,54,46,52,54,49,48,50,50,44,51,56,46,49,50,49,48,56,55,93,44,91,45,56,54,46,51,50,57,54,44,51,56,46,49,56,49,56,48,53,93,44,91,45,56,54,46,50,55,54,57,53,54,44,51,56,46,50,50,55,49,50,54,93,44,91,45,56,54,46,50,53,53,48,52,53,44,51,56,46,52,50,50,54,56,53,93,44,91,45,56,54,46,51,48,56,54,55,52,44,51,56,46,52,50,50,56,55,53,93,44,91,45,56,54,46,51,48,56,56,54,56,44,51,56,46,51,57,52,48,54,57,93,44,91,45,56,54,46,54,56,49,52,50,52,44,51,56,46,51,57,52,55,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,53,48,56,49,50,44,52,48,46,50,53,55,50,49,93,44,91,45,57,49,46,57,53,50,55,50,54,44,51,57,46,57,52,57,52,50,54,93,44,91,45,57,49,46,56,52,48,51,53,51,44,51,57,46,57,52,56,50,51,53,93,44,91,45,57,49,46,52,51,53,53,49,55,44,51,57,46,57,52,53,50,50,50,93,44,91,45,57,49,46,52,57,52,56,55,56,44,52,48,46,48,51,54,52,53,51,93,44,91,45,57,49,46,53,48,53,48,54,49,44,52,48,46,49,57,57,57,50,53,93,44,91,45,57,49,46,52,57,55,50,54,54,44,52,48,46,50,52,56,55,54,51,93,44,91,45,57,49,46,57,53,48,56,49,50,44,52,48,46,50,53,55,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,50,54,53,53,55,44,52,50,46,48,57,50,49,57,52,93,44,91,45,49,48,50,46,48,48,54,50,48,52,44,52,50,46,48,57,54,51,51,56,93,44,91,45,49,48,50,46,48,54,54,54,53,44,52,50,46,48,48,57,49,57,53,93,44,91,45,49,48,50,46,48,54,55,57,49,56,44,52,49,46,55,52,50,48,57,57,93,44,91,45,49,48,49,46,57,56,53,53,50,51,44,52,49,46,55,52,50,50,57,93,44,91,45,49,48,49,46,52,50,53,57,50,44,52,49,46,55,52,51,48,53,57,93,44,91,45,49,48,49,46,52,50,54,53,53,55,44,52,50,46,48,57,50,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,76,111,195,173,122,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,57,51,52,48,49,44,49,56,46,53,49,54,53,57,56,93,44,91,45,54,53,46,57,49,57,50,55,56,44,49,56,46,52,48,50,57,57,51,93,44,91,45,54,53,46,56,54,55,52,52,55,44,49,56,46,51,55,56,49,57,56,93,44,91,45,54,53,46,56,48,53,51,49,51,44,49,56,46,52,55,56,50,53,51,93,44,91,45,54,53,46,57,57,51,52,48,49,44,49,56,46,53,49,54,53,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,79,110,101,105,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,50,54,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,48,48,48,48,52,49,44,52,49,46,57,57,56,50,48,52,93,44,91,45,49,49,50,46,49,53,57,49,56,52,44,52,49,46,57,57,56,51,56,50,93,44,91,45,49,49,50,46,49,48,57,52,52,52,44,52,49,46,57,57,55,55,57,52,93,44,91,45,49,49,50,46,49,50,54,49,57,52,44,52,50,46,50,56,53,50,50,57,93,44,91,45,49,49,50,46,52,49,57,56,50,53,44,52,50,46,53,48,51,48,51,56,93,44,91,45,49,49,50,46,52,57,55,56,52,57,44,52,50,46,52,49,53,57,57,56,93,44,91,45,49,49,50,46,54,53,51,57,56,57,44,52,50,46,52,49,54,49,54,57,93,44,91,45,49,49,50,46,54,53,52,48,50,56,44,52,50,46,51,50,56,56,55,50,93,44,91,45,49,49,50,46,57,57,57,57,54,53,44,52,50,46,51,50,55,52,50,55,93,44,91,45,49,49,51,46,48,48,48,48,52,49,44,52,49,46,57,57,56,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,77,111,117,108,116,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,52,53,54,55,49,44,51,57,46,55,57,50,49,52,54,93,44,91,45,56,56,46,56,49,48,53,55,53,44,51,57,46,54,53,51,50,50,50,93,44,91,45,56,56,46,53,56,52,50,55,51,44,51,57,46,52,52,55,53,56,50,93,44,91,45,56,56,46,52,55,48,53,48,53,44,51,57,46,52,52,55,48,52,49,93,44,91,45,56,56,46,52,55,50,48,55,51,44,51,57,46,54,53,49,53,56,56,93,44,91,45,56,56,46,52,55,51,49,56,50,44,51,57,46,55,57,49,56,51,55,93,44,91,45,56,56,46,55,52,53,54,55,49,44,51,57,46,55,57,50,49,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,72,111,112,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,54,52,44,34,98,101,100,115,34,58,52,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,55,53,49,52,53,44,51,55,46,53,54,57,57,56,56,93,44,91,45,56,55,46,56,49,51,52,49,51,44,51,55,46,51,53,48,54,52,53,93,44,91,45,56,55,46,55,55,52,54,57,52,44,51,55,46,49,57,56,49,50,55,93,44,91,45,56,55,46,54,56,48,54,49,55,44,51,55,46,49,52,57,50,51,57,93,44,91,45,56,55,46,53,50,49,54,48,57,44,51,55,46,49,48,53,51,52,52,93,44,91,45,56,55,46,51,51,51,55,52,49,44,51,55,46,49,53,55,49,56,54,93,44,91,45,56,55,46,51,56,56,55,48,55,44,51,55,46,50,54,50,49,56,93,44,91,45,56,55,46,50,57,53,57,54,53,44,51,55,46,51,57,49,56,49,57,93,44,91,45,56,55,46,51,53,49,56,57,51,44,51,55,46,52,50,53,54,53,53,93,44,91,45,56,55,46,51,55,53,49,52,53,44,51,55,46,53,54,57,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,108,101,97,114,119,97,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,52,48,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,44,91,45,49,49,53,46,57,53,55,50,54,56,44,52,54,46,50,56,56,57,51,49,93,44,91,45,49,49,53,46,55,56,48,56,49,56,44,52,54,46,50,54,55,50,53,93,44,91,45,49,49,53,46,54,50,56,57,53,55,44,52,54,46,52,55,51,54,49,56,93,44,91,45,49,49,52,46,53,57,52,54,51,52,44,52,54,46,54,51,51,52,52,56,93,44,91,45,49,49,52,46,54,55,52,57,52,50,44,52,54,46,55,51,54,56,50,54,93,44,91,45,49,49,52,46,57,50,50,51,49,50,44,52,54,46,56,50,56,54,48,50,93,44,91,45,49,49,52,46,57,53,57,51,49,55,44,52,54,46,57,51,50,56,57,56,93,44,91,45,49,49,54,46,51,50,57,52,51,54,44,52,54,46,57,51,52,54,54,57,93,44,91,45,49,49,54,46,51,50,57,53,52,44,52,54,46,54,50,55,57,53,55,93,44,91,45,49,49,54,46,52,53,54,48,57,56,44,52,54,46,54,50,57,48,57,55,93,44,91,45,49,49,54,46,52,53,49,55,57,50,44,52,54,46,53,48,48,54,57,56,93,44,91,45,49,49,54,46,51,54,57,49,50,50,44,52,54,46,52,54,54,57,50,51,93,44,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,49,56,56,44,34,98,101,100,115,34,58,50,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,55,55,53,48,51,44,51,54,46,54,56,55,50,53,57,93,44,91,45,56,51,46,57,51,48,55,54,50,44,51,54,46,53,56,55,54,57,49,93,44,91,45,56,51,46,54,55,53,51,57,53,44,51,54,46,54,48,48,55,56,52,93,44,91,45,56,51,46,52,54,49,48,49,54,44,51,54,46,54,54,52,56,54,93,44,91,45,56,51,46,53,48,48,56,57,49,44,51,54,46,55,51,51,50,53,52,93,44,91,45,56,51,46,52,56,57,56,49,51,44,51,54,46,56,57,53,52,49,51,93,44,91,45,56,51,46,53,48,57,48,56,51,44,51,54,46,57,51,56,53,48,57,93,44,91,45,56,51,46,53,56,57,53,50,49,44,51,54,46,57,53,53,55,56,54,93,44,91,45,56,51,46,53,56,49,48,57,52,44,51,54,46,57,48,52,54,54,55,93,44,91,45,56,51,46,55,56,49,50,49,50,44,51,54,46,56,48,50,54,57,51,93,44,91,45,56,51,46,56,55,55,53,48,51,44,51,54,46,54,56,55,50,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,114,111,119,32,87,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,56,53,53,44,34,98,101,100,115,34,58,50,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,55,54,48,50,52,44,52,54,46,56,48,50,56,57,49,93,44,91,45,57,52,46,51,52,50,57,49,44,52,54,46,56,48,53,53,50,57,93,44,91,45,57,52,46,51,50,55,50,56,54,44,52,54,46,50,56,57,56,49,55,93,44,91,45,57,52,46,51,52,49,54,55,57,44,52,54,46,50,55,55,55,48,53,93,44,91,45,57,52,46,51,55,52,53,57,50,44,52,54,46,49,53,55,48,57,51,93,44,91,45,57,51,46,56,49,48,51,54,50,44,52,54,46,49,53,54,53,56,53,93,44,91,45,57,51,46,55,57,54,50,56,49,44,52,54,46,50,52,51,49,57,57,93,44,91,45,57,51,46,56,49,49,52,54,52,44,52,54,46,53,56,52,50,51,56,93,44,91,45,57,51,46,55,55,54,48,50,52,44,52,54,46,56,48,50,56,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,195,177,97,115,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,51,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,56,50,56,53,50,44,49,56,46,51,49,51,48,50,54,93,44,91,45,54,55,46,50,52,51,53,53,57,44,49,56,46,50,54,56,57,50,50,93,44,91,45,54,55,46,48,56,50,48,48,50,44,49,56,46,50,53,52,57,52,54,93,44,91,45,54,55,46,48,51,55,57,51,53,44,49,56,46,50,56,57,55,48,53,93,44,91,45,54,55,46,48,53,50,53,56,51,44,49,56,46,51,48,54,54,53,53,93,44,91,45,54,55,46,49,51,48,49,54,55,44,49,56,46,51,49,55,57,50,55,93,44,91,45,54,55,46,49,56,50,56,53,50,44,49,56,46,51,49,51,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,71,114,97,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,55,57,44,34,98,101,100,115,34,58,49,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,52,52,57,48,50,49,44,51,51,46,49,57,52,53,50,54,93,44,91,45,49,49,48,46,52,53,49,53,50,50,44,51,50,46,53,49,51,57,57,53,93,44,91,45,49,49,48,46,52,53,49,48,48,50,44,51,50,46,52,50,55,53,52,54,93,44,91,45,49,48,57,46,49,49,52,49,56,44,51,50,46,52,50,54,51,53,51,93,44,91,45,49,48,57,46,50,50,54,48,55,44,51,50,46,53,50,57,48,57,54,93,44,91,45,49,48,57,46,50,48,54,50,52,57,44,51,50,46,54,51,53,56,48,51,93,44,91,45,49,48,57,46,50,52,53,48,48,53,44,51,50,46,55,52,49,57,56,53,93,44,91,45,49,48,57,46,52,57,53,55,52,44,51,51,46,48,55,56,52,48,57,93,44,91,45,49,48,57,46,52,57,53,52,52,44,51,51,46,54,53,50,54,57,55,93,44,91,45,49,48,57,46,55,57,57,55,56,50,44,51,51,46,52,56,56,51,49,52,93,44,91,45,49,48,57,46,56,57,49,54,55,54,44,51,51,46,53,54,55,56,55,52,93,44,91,45,49,49,48,46,48,48,48,54,52,57,44,51,51,46,53,55,54,57,51,93,44,91,45,49,49,48,46,48,48,48,54,52,54,44,51,51,46,52,54,53,57,49,54,93,44,91,45,49,49,48,46,49,54,57,52,55,55,44,51,51,46,52,54,53,55,49,50,93,44,91,45,49,49,48,46,51,52,48,57,52,57,44,51,51,46,52,50,55,48,54,54,93,44,91,45,49,49,48,46,52,53,49,55,51,49,44,51,51,46,51,54,49,53,54,52,93,44,91,45,49,49,48,46,52,52,57,48,50,49,44,51,51,46,49,57,52,53,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,83,116,46,32,70,114,97,110,99,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,57,52,44,34,98,101,100,115,34,58,49,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,48,50,57,57,51,44,51,53,46,49,52,52,50,49,52,93,44,91,45,57,49,46,48,52,50,54,55,44,51,53,46,49,52,56,49,56,57,93,44,91,45,57,49,46,48,52,53,52,51,44,51,53,46,48,48,49,48,52,93,44,91,45,57,49,46,49,52,57,56,52,50,44,51,53,46,48,48,50,52,55,93,44,91,45,57,49,46,48,57,57,57,54,49,44,51,52,46,56,54,55,49,50,93,44,91,45,57,49,46,48,57,57,50,48,49,44,51,52,46,57,49,49,55,57,54,93,44,91,45,57,48,46,52,48,56,53,52,44,51,52,46,57,48,52,49,50,49,93,44,91,45,57,48,46,52,48,48,52,51,56,44,51,53,46,49,52,56,50,51,49,93,44,91,45,57,48,46,53,48,50,57,57,51,44,51,53,46,49,52,52,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,69,99,104,111,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,51,54,54,49,52,44,51,48,46,54,50,51,57,54,55,93,44,91,45,56,50,46,54,56,57,53,51,57,44,51,48,46,53,57,55,55,51,52,93,44,91,45,56,50,46,53,56,52,48,48,55,44,51,48,46,53,57,49,53,52,56,93,44,91,45,56,50,46,54,48,52,51,48,55,44,51,48,46,55,49,51,55,49,53,93,44,91,45,56,50,46,55,54,54,49,53,57,44,51,48,46,55,51,50,52,48,52,93,44,91,45,56,50,46,56,52,54,52,48,53,44,51,48,46,56,51,52,57,52,57,93,44,91,45,56,50,46,57,55,49,51,51,54,44,51,48,46,56,54,57,51,57,50,93,44,91,45,56,51,46,48,49,57,52,49,57,44,51,48,46,56,52,57,52,53,51,93,44,91,45,56,51,46,49,50,52,56,54,53,44,51,48,46,56,48,51,54,53,53,93,44,91,45,56,51,46,49,51,54,54,49,52,44,51,48,46,54,50,51,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,55,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,48,34,44,34,78,65,77,69,34,58,34,68,105,108,108,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,55,53,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,54,46,48,48,48,48,56,54,44,54,48,46,57,48,54,49,57,93,44,91,45,49,53,55,46,49,54,55,52,50,44,54,48,46,57,48,54,49,56,51,93,44,91,45,49,53,55,46,49,54,55,52,50,56,44,54,48,46,57,57,50,56,51,57,93,44,91,45,49,53,55,46,53,50,50,51,51,50,44,54,48,46,57,57,50,56,51,52,93,44,91,45,49,53,55,46,56,55,55,50,50,52,44,54,48,46,57,48,54,49,55,50,93,44,91,45,49,53,56,46,57,52,49,57,50,54,44,54,48,46,57,48,54,49,54,50,93,44,91,45,49,53,57,46,48,49,53,49,48,52,44,54,48,46,55,51,50,56,52,51,93,44,91,45,49,53,57,46,49,57,48,54,53,55,44,54,48,46,54,52,54,49,56,49,93,44,91,45,49,53,57,46,51,54,54,50,49,53,44,54,48,46,54,52,54,49,55,57,93,44,91,45,49,53,57,46,51,54,54,50,48,54,44,54,48,46,52,55,50,56,53,54,93,44,91,45,49,53,57,46,52,51,52,52,57,55,44,54,48,46,51,56,54,49,57,93,44,91,45,49,53,57,46,54,48,56,50,48,52,44,54,48,46,51,56,54,49,56,56,93,44,91,45,49,53,57,46,54,48,56,49,57,54,44,54,48,46,50,49,50,56,53,54,93,44,91,45,49,53,57,46,55,56,49,57,48,54,44,54,48,46,50,49,50,56,53,52,93,44,91,45,49,53,57,46,56,52,53,53,51,51,44,54,48,46,49,50,54,49,56,54,93,44,91,45,49,53,57,46,56,52,53,53,50,52,44,53,57,46,57,53,50,56,52,56,93,44,91,45,49,54,48,46,48,49,55,52,51,44,53,57,46,57,53,50,56,52,54,93,44,91,45,49,54,48,46,48,49,55,52,50,51,44,53,57,46,55,55,57,53,48,52,93,44,91,45,49,54,48,46,50,52,56,53,49,44,53,57,46,55,55,57,53,48,49,93,44,91,45,49,54,48,46,50,52,56,53,48,51,44,53,57,46,54,48,54,49,53,52,93,44,91,45,49,54,48,46,52,49,56,54,52,55,44,53,57,46,54,48,54,49,53,50,93,44,91,45,49,54,48,46,52,49,56,54,52,44,53,57,46,52,51,50,56,93,44,91,45,49,54,48,46,52,55,53,50,57,54,44,53,57,46,51,52,54,49,50,50,93,44,91,45,49,54,48,46,54,52,51,55,49,54,44,53,57,46,50,53,57,52,52,93,44,91,45,49,54,48,46,56,49,50,49,52,44,53,57,46,50,53,57,52,51,56,93,44,91,45,49,54,48,46,56,49,50,49,51,51,44,53,57,46,48,56,54,48,55,55,93,44,91,45,49,54,48,46,56,54,52,55,48,51,44,53,56,46,57,57,57,51,57,52,93,44,91,45,49,54,49,46,48,51,49,52,52,56,44,53,56,46,57,57,57,51,57,51,93,44,91,45,49,54,49,46,48,51,49,52,52,49,44,53,56,46,56,51,57,55,53,50,93,44,91,45,49,54,49,46,51,54,52,57,51,49,44,53,56,46,56,50,54,48,50,49,93,44,91,45,49,54,49,46,49,57,56,49,56,51,44,53,56,46,55,51,57,51,51,55,93,44,91,45,49,54,49,46,51,52,49,56,52,44,53,56,46,54,48,55,48,57,49,93,44,91,45,49,54,49,46,49,55,55,48,51,55,44,53,56,46,54,48,55,48,54,56,93,44,91,45,49,54,49,46,49,53,56,57,49,56,44,53,56,46,53,49,50,51,56,51,93,44,91,45,49,54,48,46,57,51,51,52,51,54,44,53,56,46,52,57,54,49,48,57,93,44,91,45,49,54,48,46,56,48,49,55,55,51,44,53,56,46,53,53,49,52,50,56,93,44,91,45,49,54,48,46,54,48,49,54,50,56,44,53,56,46,55,57,51,51,50,51,93,44,91,45,49,54,48,46,54,48,56,55,49,53,44,53,56,46,56,52,51,54,50,49,93,44,91,45,49,54,48,46,51,52,51,48,56,55,44,53,56,46,56,56,48,53,52,50,93,44,91,45,49,54,48,46,50,57,55,54,48,49,44,53,56,46,55,57,57,49,53,93,44,91,45,49,53,57,46,56,57,51,56,54,49,44,53,56,46,55,49,53,48,51,54,93,44,91,45,49,53,57,46,55,48,49,54,57,52,44,53,56,46,55,57,54,51,57,55,93,44,91,45,49,53,57,46,53,52,52,54,56,53,44,53,56,46,55,55,56,52,49,57,93,44,91,45,49,53,57,46,49,53,49,51,56,56,44,53,56,46,52,49,53,55,55,51,93,44,91,45,49,53,57,46,48,49,56,55,50,50,44,53,56,46,51,51,52,49,52,93,44,91,45,49,53,56,46,56,49,48,51,50,57,44,53,56,46,51,52,55,49,53,49,93,44,91,45,49,53,56,46,54,48,53,50,51,53,44,53,56,46,52,53,53,53,57,50,93,44,91,45,49,53,56,46,50,49,51,48,51,50,44,53,56,46,53,52,50,54,48,52,93,44,91,45,49,53,56,46,48,54,57,56,50,50,44,53,56,46,52,57,48,51,49,55,93,44,91,45,49,53,56,44,53,56,46,54,49,54,54,54,55,93,44,91,45,49,53,55,46,57,57,57,57,53,57,44,53,56,46,54,52,50,49,54,56,93,44,91,45,49,53,55,46,49,57,54,50,57,50,44,53,56,46,56,52,54,50,52,57,93,44,91,45,49,53,55,46,49,57,54,51,48,54,44,53,57,46,48,56,54,49,50,50,93,44,91,45,49,53,55,46,50,55,53,50,51,51,44,53,57,46,50,53,57,52,56,50,93,44,91,45,49,53,55,46,49,48,54,56,49,52,44,53,57,46,51,52,54,49,54,50,93,44,91,45,49,53,54,46,55,54,57,57,54,53,44,53,57,46,51,52,54,49,54,54,93,44,91,45,49,53,54,46,54,55,53,52,56,57,44,53,57,46,53,49,57,53,50,49,93,44,91,45,49,53,54,46,53,48,53,51,52,57,44,53,57,46,54,48,54,49,57,57,93,44,91,45,49,53,54,46,49,54,53,48,54,54,44,53,57,46,54,48,54,50,48,50,93,44,91,45,49,53,54,46,48,48,48,49,52,53,44,53,57,46,54,57,50,56,55,57,93,44,91,45,49,53,54,46,48,48,48,48,56,54,44,54,48,46,57,48,54,49,57,93,93,93,44,91,91,91,45,49,54,48,46,53,52,52,48,53,56,44,53,56,46,54,56,55,56,51,56,93,44,91,45,49,54,48,46,51,57,54,56,54,49,44,53,56,46,53,53,51,57,49,57,93,44,91,45,49,54,48,46,51,48,49,48,50,57,44,53,56,46,53,51,53,55,53,56,93,44,91,45,49,54,48,46,48,57,54,57,55,51,44,53,56,46,54,57,55,50,56,51,93,44,91,45,49,54,48,46,49,51,55,54,49,56,44,53,56,46,55,52,56,56,57,56,93,44,91,45,49,54,48,46,52,49,54,48,51,57,44,53,56,46,55,57,56,52,52,53,93,44,91,45,49,54,48,46,53,52,52,48,53,56,44,53,56,46,54,56,55,56,51,56,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,57,55,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,56,57,57,57,55,44,51,57,46,49,51,50,54,57,55,93,44,91,45,57,56,46,52,56,52,56,54,49,44,51,56,46,56,55,48,55,57,49,93,44,91,45,57,55,46,57,50,56,53,57,50,44,51,56,46,56,55,49,48,57,57,93,44,91,45,57,55,46,57,50,56,53,54,44,51,56,46,57,53,56,51,57,53,93,44,91,45,57,55,46,57,50,57,55,52,54,44,51,57,46,50,49,57,50,55,51,93,44,91,45,57,56,46,52,57,48,49,52,57,44,51,57,46,50,49,57,55,56,93,44,91,45,57,56,46,52,56,57,57,57,55,44,51,57,46,49,51,50,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,83,109,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,54,55,48,52,54,44,52,48,46,48,48,50,51,52,56,93,44,91,45,57,57,46,48,54,54,50,50,44,51,57,46,53,54,56,49,50,53,93,44,91,45,57,57,46,48,52,52,51,57,56,44,51,57,46,53,54,56,48,51,53,93,44,91,45,57,56,46,53,48,53,50,54,54,44,51,57,46,53,54,55,54,48,51,93,44,91,45,57,56,46,53,48,52,52,53,53,44,52,48,46,48,48,50,50,57,49,93,44,91,45,57,56,46,55,50,54,51,55,51,44,52,48,46,48,48,50,52,93,44,91,45,57,57,46,48,54,55,48,52,54,44,52,48,46,48,48,50,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,48,55,52,53,52,44,51,48,46,54,55,50,49,50,55,93,44,91,45,56,51,46,57,55,56,54,48,55,44,51,48,46,53,50,50,54,56,55,93,44,91,45,56,52,46,48,55,52,54,57,49,44,51,48,46,52,51,52,51,48,50,93,44,91,45,56,52,46,48,55,53,53,51,57,44,51,48,46,50,55,51,54,49,55,93,44,91,45,56,52,46,48,55,53,52,53,53,44,51,48,46,48,51,52,54,50,54,93,44,91,45,56,51,46,57,57,57,56,56,51,44,51,48,46,48,49,50,50,50,53,93,44,91,45,56,51,46,57,49,53,51,54,57,44,51,48,46,50,52,52,55,55,57,93,44,91,45,56,51,46,56,50,48,50,51,53,44,51,48,46,51,48,51,53,52,93,44,91,45,56,51,46,55,50,49,55,50,44,51,48,46,52,51,52,51,53,52,93,44,91,45,56,51,46,55,51,54,57,53,52,44,51,48,46,53,48,55,53,54,57,93,44,91,45,56,51,46,54,48,52,49,56,54,44,51,48,46,53,56,49,57,49,54,93,44,91,45,56,51,46,54,49,49,55,50,44,51,48,46,54,53,49,50,53,56,93,44,91,45,56,51,46,55,52,51,55,50,57,44,51,48,46,54,53,56,51,57,54,93,44,91,45,56,52,46,48,48,55,52,53,52,44,51,48,46,54,55,50,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,105,100,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,51,52,51,44,34,98,101,100,115,34,58,50,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,54,57,49,50,54,44,49,56,46,50,50,52,50,57,93,44,91,45,54,54,46,50,52,48,52,54,44,49,56,46,49,56,52,55,57,52,93,44,91,45,54,54,46,50,52,50,55,51,53,44,49,56,46,49,56,48,50,52,56,93,44,91,45,54,54,46,50,49,54,56,57,57,44,49,56,46,49,52,51,50,50,93,44,91,45,54,54,46,48,57,53,48,57,57,44,49,56,46,49,54,57,48,55,55,93,44,91,45,54,54,46,49,49,55,55,55,52,44,49,56,46,50,48,57,57,52,57,93,44,91,45,54,54,46,49,54,57,49,50,54,44,49,56,46,50,50,52,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,109,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,57,53,51,57,56,44,51,49,46,51,50,48,57,55,53,93,44,91,45,57,49,46,48,53,57,52,51,49,44,51,49,46,50,56,49,56,53,56,93,44,91,45,57,49,46,48,54,48,50,49,57,44,51,48,46,57,57,56,57,50,55,93,44,91,45,57,48,46,56,50,53,56,50,57,44,51,48,46,57,57,57,51,54,49,93,44,91,45,57,48,46,53,54,55,49,57,53,44,51,48,46,57,57,57,55,51,51,93,44,91,45,57,48,46,53,52,55,54,49,54,44,51,48,46,57,57,57,55,50,93,44,91,45,57,48,46,53,52,56,49,57,57,44,51,49,46,51,52,57,53,55,52,93,44,91,45,57,48,46,54,51,51,51,48,50,44,51,49,46,51,52,57,51,48,54,93,44,91,45,57,48,46,57,56,51,48,48,50,44,51,49,46,51,52,56,54,55,49,93,44,91,45,57,49,46,48,57,53,51,57,56,44,51,49,46,51,50,48,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,51,48,53,48,57,44,51,52,46,54,54,53,54,48,56,93,44,91,45,57,51,46,57,51,53,51,55,49,44,51,52,46,51,53,48,48,57,55,93,44,91,45,57,51,46,52,55,56,54,52,54,44,51,52,46,51,52,48,56,53,49,93,44,91,45,57,51,46,52,48,56,49,50,52,44,51,52,46,51,51,57,53,50,55,93,44,91,45,57,51,46,52,48,55,50,50,49,44,51,52,46,51,57,55,52,52,55,93,44,91,45,57,51,46,51,57,52,50,56,57,44,51,52,46,55,52,51,51,57,51,93,44,91,45,57,51,46,55,49,48,50,57,55,44,51,52,46,55,52,53,50,57,54,93,44,91,45,57,51,46,57,51,48,53,48,57,44,51,52,46,54,54,53,54,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,52,55,51,44,34,98,101,100,115,34,58,50,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,57,56,56,55,57,44,52,50,46,52,49,57,56,52,57,93,44,91,45,56,53,46,50,57,51,54,50,54,44,52,50,46,48,55,49,53,53,51,93,44,91,45,56,52,46,56,50,54,52,57,49,44,52,50,46,48,55,50,52,54,56,93,44,91,45,56,52,46,55,48,57,53,53,54,44,52,50,46,48,55,48,51,54,54,93,44,91,45,56,52,46,55,49,56,52,57,51,44,52,50,46,52,50,49,53,50,93,44,91,45,56,53,46,48,55,49,54,48,57,44,52,50,46,52,50,49,52,50,56,93,44,91,45,56,53,46,50,57,56,56,55,57,44,52,50,46,52,49,57,56,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,108,101,98,117,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,51,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,51,48,48,57,52,44,51,51,46,57,52,49,52,50,51,93,44,91,45,56,53,46,54,48,49,56,53,56,44,51,51,46,56,56,57,55,53,93,44,91,45,56,53,46,54,51,56,53,55,57,44,51,51,46,54,52,56,52,49,51,93,44,91,45,56,53,46,55,57,54,48,53,52,44,51,51,46,53,53,54,50,50,93,44,91,45,56,53,46,56,53,49,56,57,44,51,51,46,52,57,56,55,52,50,93,44,91,45,56,53,46,54,52,51,52,56,50,44,51,51,46,52,57,53,56,56,53,93,44,91,45,56,53,46,51,48,52,52,51,57,44,51,51,46,52,56,50,56,56,52,93,44,91,45,56,53,46,51,51,56,50,51,44,51,51,46,54,53,51,49,49,55,93,44,91,45,56,53,46,51,56,54,53,56,49,44,51,51,46,57,48,49,55,49,57,93,44,91,45,56,53,46,51,57,56,56,51,55,44,51,51,46,57,54,52,49,50,57,93,44,91,45,56,53,46,53,51,48,48,57,52,44,51,51,46,57,52,49,52,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,87,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,53,49,50,51,44,34,98,101,100,115,34,58,51,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,52,51,51,55,49,44,52,48,46,57,57,56,50,49,51,93,44,91,45,49,48,52,46,57,52,53,53,53,49,44,52,48,46,51,52,57,48,57,57,93,44,91,45,49,48,53,46,48,53,53,48,56,57,44,52,48,46,50,54,49,55,57,51,93,44,91,45,49,48,53,46,48,53,50,56,50,51,44,52,48,46,48,48,48,50,54,93,44,91,45,49,48,52,46,57,54,49,52,48,53,44,52,48,46,48,48,48,51,51,55,93,44,91,45,49,48,52,46,49,53,48,51,51,50,44,52,48,46,48,48,48,56,53,54,93,44,91,45,49,48,52,46,49,52,55,55,49,52,44,52,48,46,53,50,52,51,56,57,93,44,91,45,49,48,51,46,53,56,49,56,52,52,44,52,48,46,53,50,51,51,56,51,93,44,91,45,49,48,51,46,53,55,51,55,55,52,44,52,49,46,48,48,49,55,49,54,93,44,91,45,49,48,52,46,48,53,51,50,52,57,44,52,49,46,48,48,49,52,48,54,93,44,91,45,49,48,52,46,57,52,51,51,55,49,44,52,48,46,57,57,56,50,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,101,99,107,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,50,49,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,54,52,49,52,49,44,51,53,46,53,48,56,55,57,51,93,44,91,45,57,57,46,53,55,53,55,50,51,44,51,53,46,53,48,56,56,54,52,93,44,91,45,57,57,46,53,55,53,56,50,44,51,53,46,52,50,49,54,53,53,93,44,91,45,57,57,46,57,57,57,54,54,44,51,53,46,52,50,50,51,54,52,93,44,91,45,49,48,48,46,48,48,48,51,56,53,44,51,53,46,49,56,50,55,48,50,93,44,91,45,49,48,48,46,48,48,48,51,56,52,44,51,53,46,48,50,57,57,51,93,44,91,45,57,57,46,56,56,56,52,52,52,44,51,53,46,48,50,57,56,56,57,93,44,91,45,57,57,46,55,56,50,55,50,55,44,51,53,46,49,49,54,57,52,93,44,91,45,57,57,46,52,48,57,50,57,49,44,51,53,46,49,49,52,53,48,57,93,44,91,45,57,57,46,51,54,48,50,50,54,44,51,53,46,49,49,54,55,51,56,93,44,91,45,57,57,46,51,54,52,50,49,55,44,51,53,46,52,54,53,51,50,56,93,44,91,45,57,57,46,51,54,52,49,52,49,44,51,53,46,53,48,56,55,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,77,111,100,111,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,51,56,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,52,52,55,53,51,56,44,52,49,46,57,57,55,52,54,53,93,44,91,45,49,50,49,46,52,52,54,52,57,53,44,52,49,46,49,56,51,52,56,52,93,44,91,45,49,50,49,46,51,51,49,55,56,54,44,52,49,46,49,56,51,56,56,54,93,44,91,45,49,49,57,46,57,57,57,56,54,54,44,52,49,46,49,56,51,57,55,52,93,44,91,45,49,49,57,46,57,57,57,50,51,52,44,52,49,46,57,57,52,57,52,52,93,44,91,45,49,50,48,46,56,55,57,57,50,54,44,52,49,46,57,57,51,55,54,52,93,44,91,45,49,50,49,46,52,52,55,53,51,56,44,52,49,46,57,57,55,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,52,50,55,52,44,34,98,101,100,115,34,58,49,54,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,49,53,55,50,49,44,52,49,46,56,54,51,52,49,57,93,44,91,45,57,51,46,56,49,52,50,56,50,44,52,49,46,54,48,48,52,53,54,93,44,91,45,57,51,46,55,57,48,54,49,50,44,52,49,46,53,49,49,57,49,54,93,44,91,45,57,51,46,52,50,50,56,53,52,44,52,49,46,53,49,49,52,52,52,93,44,91,45,57,51,46,51,50,56,52,48,55,44,52,49,46,52,57,48,57,50,49,93,44,91,45,57,51,46,51,50,56,54,49,52,44,52,49,46,53,48,55,56,50,52,93,44,91,45,57,51,46,51,52,55,57,51,51,44,52,49,46,56,54,51,49,48,52,93,44,91,45,57,51,46,54,57,56,48,51,50,44,52,49,46,56,54,51,51,55,93,44,91,45,57,51,46,56,49,53,55,50,49,44,52,49,46,56,54,51,52,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,76,105,98,101,114,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,49,48,56,44,34,98,101,100,115,34,58,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,50,52,52,48,53,44,51,50,46,48,49,52,56,56,50,93,44,91,45,56,49,46,55,53,48,50,53,55,44,51,49,46,57,55,51,50,48,55,93,44,91,45,56,49,46,55,54,53,51,53,55,44,51,49,46,56,55,52,53,52,93,44,91,45,56,49,46,54,52,49,55,54,49,44,51,49,46,55,54,53,52,53,49,93,44,91,45,56,49,46,52,57,49,55,57,56,44,51,49,46,54,57,57,53,55,53,93,44,91,45,56,49,46,52,51,53,55,54,44,51,49,46,54,52,50,48,53,53,93,44,91,45,56,49,46,50,54,49,56,54,56,44,51,49,46,54,53,48,49,52,50,93,44,91,45,56,49,46,49,55,53,49,52,56,44,51,49,46,53,51,57,54,54,93,44,91,45,56,49,46,48,57,53,51,56,51,44,51,49,46,53,50,48,57,56,49,93,44,91,45,56,49,46,48,53,49,53,50,49,44,51,49,46,55,48,53,49,57,56,93,44,91,45,56,49,46,49,53,52,55,51,49,44,51,49,46,55,49,51,48,55,93,44,91,45,56,49,46,51,55,54,57,53,52,44,51,49,46,56,52,56,50,53,55,93,44,91,45,56,49,46,52,48,52,51,56,56,44,51,49,46,57,49,57,55,48,49,93,44,91,45,56,49,46,53,57,50,51,57,49,44,51,49,46,57,55,50,52,54,57,93,44,91,45,56,49,46,55,49,56,54,53,56,44,51,50,46,48,56,57,51,53,49,93,44,91,45,56,49,46,55,54,49,55,51,53,44,51,50,46,48,52,55,57,93,44,91,45,56,49,46,56,50,52,52,48,53,44,51,50,46,48,49,52,56,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,52,57,34,44,34,78,65,77,69,34,58,34,78,97,118,97,114,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,53,56,51,44,34,98,101,100,115,34,58,49,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,56,51,48,56,50,44,51,50,46,51,50,56,56,53,49,93,44,91,45,57,54,46,56,57,54,50,48,57,44,51,50,46,48,55,51,57,55,55,93,44,91,45,57,54,46,55,49,57,49,49,52,44,51,49,46,56,49,52,56,56,55,93,44,91,45,57,54,46,52,57,54,55,49,51,44,51,49,46,55,57,54,49,57,49,93,44,91,45,57,54,46,48,53,52,55,56,44,51,50,46,48,49,50,53,50,54,93,44,91,45,57,54,46,50,51,52,50,53,49,44,51,50,46,50,53,48,51,57,57,93,44,91,45,57,54,46,51,56,51,48,56,50,44,51,50,46,51,50,56,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,66,114,111,111,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,50,51,50,56,52,44,50,55,46,50,54,53,49,53,93,44,91,45,57,56,46,52,54,54,53,52,50,44,50,55,46,48,53,52,55,49,49,93,44,91,45,57,56,46,52,49,55,56,56,51,44,50,55,46,48,53,53,50,56,53,93,44,91,45,57,56,46,52,50,50,54,49,54,44,50,54,46,55,56,51,53,51,53,93,44,91,45,57,56,46,51,50,48,54,55,44,50,54,46,55,56,51,48,56,49,93,44,91,45,57,55,46,57,56,53,52,57,52,44,50,54,46,55,56,48,57,49,55,93,44,91,45,57,55,46,57,56,53,56,56,55,44,50,55,46,50,48,57,51,48,56,93,44,91,45,57,56,46,48,53,56,48,55,56,44,50,55,46,50,54,48,57,56,49,93,44,91,45,57,56,46,50,51,50,52,54,52,44,50,55,46,50,54,50,52,56,55,93,44,91,45,57,56,46,53,50,51,50,56,52,44,50,55,46,50,54,53,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,54,52,56,44,34,98,101,100,115,34,58,51,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,49,56,56,57,50,44,51,53,46,57,54,56,50,50,52,93,44,91,45,56,54,46,55,57,48,56,55,53,44,51,54,46,48,51,54,55,49,53,93,44,91,45,56,55,46,48,53,51,55,50,50,44,51,54,46,48,52,53,53,56,50,93,44,91,45,56,55,46,49,56,50,53,55,51,44,51,54,46,48,52,57,55,50,54,93,44,91,45,56,55,46,50,48,52,50,52,50,44,51,53,46,57,53,57,49,56,54,93,44,91,45,56,55,46,50,49,53,48,57,57,44,51,53,46,56,53,48,54,53,49,93,44,91,45,56,54,46,55,56,50,48,49,54,44,51,53,46,55,48,54,53,57,53,93,44,91,45,56,54,46,54,56,54,49,57,51,44,51,53,46,55,49,48,48,53,49,93,44,91,45,56,54,46,54,49,51,51,50,56,44,51,53,46,55,57,48,51,51,49,93,44,91,45,56,54,46,54,49,56,56,57,50,44,51,53,46,57,54,56,50,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,76,97,114,97,109,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,54,57,50,44,34,98,101,100,115,34,58,50,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,50,53,52,44,52,49,46,53,54,52,50,55,52,93,44,91,45,49,48,52,46,54,53,50,57,57,50,44,52,49,46,53,54,53,48,49,52,93,44,91,45,49,48,52,46,54,53,51,51,51,56,44,52,49,46,54,53,51,48,48,55,93,44,91,45,49,48,53,46,50,55,56,50,51,54,44,52,49,46,54,53,54,54,53,53,93,44,91,45,49,48,53,46,50,55,54,56,54,44,52,48,46,57,57,56,49,55,50,93,44,91,45,49,48,52,46,57,52,51,51,55,49,44,52,48,46,57,57,56,50,49,51,93,44,91,45,49,48,52,46,48,53,51,50,52,57,44,52,49,46,48,48,49,52,48,54,93,44,91,45,49,48,52,46,48,53,50,50,56,55,44,52,49,46,51,57,51,50,49,52,93,44,91,45,49,48,52,46,48,53,50,53,52,44,52,49,46,53,54,52,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,115,111,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,51,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,50,50,56,49,50,44,52,54,46,52,54,50,50,52,53,93,44,91,45,49,49,55,46,50,50,56,55,57,54,44,52,54,46,52,49,49,51,48,54,93,44,91,45,49,49,55,46,52,49,57,51,51,52,44,52,54,46,51,56,51,49,51,57,93,44,91,45,49,49,55,46,52,49,57,52,56,50,44,52,54,46,49,50,49,57,53,54,93,44,91,45,49,49,55,46,52,55,57,57,51,53,44,52,53,46,57,57,55,56,48,49,93,44,91,45,49,49,54,46,57,49,54,48,55,49,44,52,53,46,57,57,53,51,53,55,93,44,91,45,49,49,54,46,57,50,49,51,53,44,52,54,46,49,54,52,53,49,52,93,44,91,45,49,49,55,46,48,51,57,55,54,54,44,52,54,46,52,50,53,56,56,55,93,44,91,45,49,49,55,46,50,50,56,49,50,44,52,54,46,52,54,50,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,84,114,97,118,101,114,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,51,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,54,51,54,55,50,44,52,53,46,57,51,53,50,52,53,93,44,91,45,57,54,46,53,56,51,48,56,53,44,52,53,46,56,50,48,48,50,52,93,44,91,45,57,54,46,54,55,50,54,54,53,44,52,53,46,55,51,50,51,51,54,93,44,91,45,57,54,46,56,51,56,54,52,56,44,52,53,46,54,52,55,53,48,57,93,44,91,45,57,54,46,56,51,53,52,53,49,44,52,53,46,53,56,54,49,50,57,93,44,91,45,57,54,46,50,53,51,48,50,54,44,52,53,46,53,56,53,53,50,54,93,44,91,45,57,54,46,50,53,52,48,50,50,44,52,53,46,55,53,57,56,50,93,44,91,45,57,54,46,50,54,54,49,52,44,52,54,46,48,50,49,54,49,93,44,91,45,57,54,46,53,55,54,53,54,52,44,52,54,46,48,50,49,56,52,56,93,44,91,45,57,54,46,53,54,51,54,55,50,44,52,53,46,57,51,53,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,57,53,48,57,44,52,48,46,49,48,56,57,48,56,93,44,91,45,57,48,46,49,51,52,50,56,49,44,52,48,46,48,54,50,53,50,52,93,44,91,45,57,48,46,50,56,55,56,51,55,44,52,48,46,48,54,51,55,56,52,93,44,91,45,57,48,46,51,53,52,53,50,52,44,52,48,46,49,50,52,50,49,55,93,44,91,45,57,48,46,53,49,51,55,52,55,44,51,57,46,57,56,55,56,57,49,93,44,91,45,57,48,46,53,56,51,53,51,52,44,51,57,46,56,55,54,55,53,93,44,91,45,56,57,46,57,57,52,52,48,53,44,51,57,46,56,55,50,56,54,93,44,91,45,56,57,46,57,57,52,53,48,54,44,51,57,46,57,48,49,57,50,53,93,44,91,45,56,57,46,57,57,53,48,57,44,52,48,46,49,48,56,57,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,55,34,44,34,78,65,77,69,34,58,34,82,111,99,107,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,48,49,49,44,34,98,101,100,115,34,58,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,50,51,55,49,51,44,51,51,46,55,53,50,56,48,56,93,44,91,45,56,52,46,49,49,48,49,50,52,44,51,51,46,54,50,53,49,49,93,44,91,45,56,52,46,49,56,52,49,52,51,44,51,51,46,54,52,54,49,53,55,93,44,91,45,56,52,46,48,52,52,52,57,51,44,51,51,46,53,50,53,55,55,54,93,44,91,45,56,51,46,57,51,48,56,54,51,44,51,51,46,54,53,49,56,50,51,93,44,91,45,56,51,46,57,49,52,56,50,51,44,51,51,46,55,52,52,50,48,51,93,44,91,45,56,51,46,57,56,50,48,51,51,44,51,51,46,55,56,54,48,53,52,93,44,91,45,56,52,46,48,50,51,55,49,51,44,51,51,46,55,53,50,56,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,74,117,110,105,97,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,53,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,51,57,55,52,57,44,52,48,46,54,51,56,51,55,56,93,44,91,45,55,55,46,48,51,53,53,52,57,44,52,48,46,54,55,54,57,49,56,93,44,91,45,55,55,46,50,56,55,57,52,49,44,52,48,46,54,57,51,53,57,53,93,44,91,45,55,55,46,52,57,55,53,48,54,44,52,48,46,53,56,49,55,52,93,44,91,45,55,55,46,55,53,50,49,50,44,52,48,46,51,55,56,53,52,53,93,44,91,45,55,55,46,55,48,51,48,51,44,52,48,46,50,54,51,53,55,54,93,44,91,45,55,55,46,54,55,49,55,54,49,44,52,48,46,50,56,57,56,50,53,93,44,91,45,55,55,46,53,52,48,49,52,49,44,52,48,46,51,57,57,50,50,49,93,44,91,45,55,55,46,50,56,57,53,57,50,44,52,48,46,53,49,56,52,53,55,93,44,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,44,91,45,55,54,46,57,51,57,55,52,57,44,52,48,46,54,51,56,51,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,77,99,75,101,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,56,48,54,44,34,98,101,100,115,34,58,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,48,56,49,50,56,44,52,49,46,57,57,57,52,49,53,93,44,91,45,55,56,46,57,49,56,56,53,53,44,52,49,46,57,57,56,49,49,57,93,44,91,45,55,56,46,57,53,54,48,53,54,44,52,49,46,54,50,51,56,54,51,93,44,91,45,55,56,46,52,56,51,52,48,57,44,52,49,46,54,50,57,56,57,56,93,44,91,45,55,56,46,52,49,57,49,49,56,44,52,49,46,54,48,50,49,56,56,93,44,91,45,55,56,46,50,48,51,52,50,50,44,52,49,46,54,49,56,49,53,55,93,44,91,45,55,56,46,50,48,54,54,48,52,44,52,49,46,57,57,57,53,57,53,93,44,91,45,55,56,46,51,48,56,49,50,56,44,52,49,46,57,57,57,52,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,71,97,114,118,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,50,51,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,51,50,52,51,54,44,51,52,46,56,53,52,52,57,54,93,44,91,45,57,55,46,54,54,56,48,57,57,44,51,52,46,56,53,53,49,54,52,93,44,91,45,57,55,46,54,54,56,53,49,50,44,51,52,46,54,56,49,51,52,93,44,91,45,57,55,46,53,54,51,48,48,52,44,51,52,46,54,56,49,49,56,53,93,44,91,45,57,55,46,53,54,50,51,50,51,44,51,52,46,53,48,55,48,51,54,93,44,91,45,57,55,46,51,53,50,49,56,51,44,51,52,46,53,48,54,55,57,54,93,44,91,45,57,55,46,49,52,51,57,55,51,44,51,52,46,53,48,54,54,48,54,93,44,91,45,57,55,46,49,52,50,54,55,49,44,51,52,46,54,51,55,49,50,54,93,44,91,45,57,54,46,57,51,50,52,53,50,44,51,52,46,54,51,54,56,49,50,93,44,91,45,57,54,46,57,51,50,52,51,54,44,51,52,46,56,53,52,52,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,117,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,50,56,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,53,52,56,54,54,44,52,50,46,48,49,53,56,55,53,93,44,91,45,57,54,46,53,53,53,49,55,50,44,52,49,46,55,52,50,48,49,56,93,44,91,45,57,54,46,52,52,52,55,56,53,44,52,49,46,54,56,51,54,51,51,93,44,91,45,57,54,46,49,50,50,54,48,52,44,52,49,46,54,56,51,48,52,93,44,91,45,57,54,46,48,54,52,56,57,55,44,52,49,46,55,57,49,54,55,51,93,44,91,45,57,54,46,49,51,57,48,48,56,44,52,49,46,56,54,54,50,55,55,93,44,91,45,57,54,46,49,50,57,49,56,54,44,52,49,46,57,54,53,49,51,54,93,44,91,45,57,54,46,50,55,51,49,50,44,52,50,46,48,52,55,49,53,56,93,44,91,45,57,54,46,51,48,57,54,52,53,44,52,50,46,48,49,53,49,56,55,93,44,91,45,57,54,46,53,53,52,56,54,54,44,52,50,46,48,49,53,56,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,117,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,52,53,53,44,34,98,101,100,115,34,58,50,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,52,56,49,55,51,55,44,51,55,46,48,48,48,49,50,55,93,44,91,45,49,48,56,46,51,55,57,51,48,51,44,51,54,46,57,57,57,54,48,56,93,44,91,45,49,48,57,46,48,52,53,49,55,50,44,51,54,46,57,57,56,57,55,55,93,44,91,45,49,48,57,46,48,52,54,48,54,55,44,51,54,46,48,48,50,55,48,49,93,44,91,45,49,48,55,46,54,50,54,53,49,49,44,51,54,46,48,48,48,50,56,56,93,44,91,45,49,48,55,46,54,50,52,50,56,51,44,51,54,46,50,49,57,56,48,57,93,44,91,45,49,48,55,46,54,49,56,49,56,49,44,51,54,46,56,48,52,50,54,55,93,44,91,45,49,48,55,46,52,53,49,52,52,53,44,51,54,46,57,48,52,48,51,54,93,44,91,45,49,48,55,46,52,50,49,50,50,51,44,51,55,46,48,48,48,50,50,51,93,44,91,45,49,48,55,46,52,56,49,55,51,55,44,51,55,46,48,48,48,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,79,114,108,101,97,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,49,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,54,56,55,49,49,44,52,51,46,54,51,51,52,50,56,93,44,91,45,55,56,46,52,54,53,53,48,53,44,52,51,46,49,50,56,54,49,57,93,44,91,45,55,55,46,57,57,55,50,57,44,52,51,46,49,51,50,57,56,49,93,44,91,45,55,55,46,57,57,51,57,56,50,44,52,51,46,54,51,49,50,51,52,93,44,91,45,55,56,46,52,54,56,55,49,49,44,52,51,46,54,51,51,52,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,101,32,83,111,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,49,54,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,49,52,54,57,44,51,50,46,50,51,55,53,50,54,93,44,91,45,57,51,46,54,54,54,52,55,50,44,51,50,46,51,49,55,52,52,52,93,44,91,45,57,51,46,55,54,52,55,54,51,44,51,50,46,51,52,53,54,52,54,93,44,91,45,57,51,46,57,53,49,48,56,53,44,51,50,46,49,57,53,53,52,53,93,44,91,45,57,52,46,48,52,50,53,57,56,44,51,50,46,49,57,54,48,48,53,93,44,91,45,57,52,46,48,49,53,54,51,44,51,49,46,57,55,57,56,53,54,93,44,91,45,57,51,46,56,55,57,48,54,49,44,51,49,46,56,52,52,50,56,55,93,44,91,45,57,51,46,52,52,49,49,55,49,44,51,49,46,56,52,53,50,51,51,93,44,91,45,57,51,46,51,53,53,52,53,50,44,51,49,46,57,51,50,50,50,50,93,44,91,45,57,51,46,53,52,49,51,53,51,44,51,50,46,49,48,53,56,56,93,44,91,45,57,51,46,53,50,51,52,49,54,44,51,50,46,49,55,54,57,57,49,93,44,91,45,57,51,46,54,49,52,54,57,44,51,50,46,50,51,55,53,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,70,114,101,115,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,56,49,51,48,44,34,98,101,100,115,34,58,51,48,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,48,50,50,51,54,51,44,51,55,46,53,56,53,55,51,55,93,44,91,45,49,49,57,46,51,49,50,49,56,54,44,51,55,46,51,53,50,55,50,53,93,44,91,45,49,49,57,46,51,51,48,53,55,51,44,51,55,46,50,48,53,55,57,49,93,44,91,45,49,49,57,46,51,56,54,53,50,49,44,51,55,46,49,52,57,53,51,93,44,91,45,49,49,57,46,53,53,57,52,49,50,44,51,55,46,49,52,51,54,49,57,93,44,91,45,49,49,57,46,53,54,50,57,55,57,44,51,55,46,48,54,52,48,57,53,93,44,91,45,49,49,57,46,54,57,48,55,55,57,44,51,55,46,48,49,49,57,56,55,93,44,91,45,49,49,57,46,56,49,51,55,51,52,44,51,54,46,56,53,48,52,49,50,93,44,91,45,49,50,48,46,48,55,57,52,53,56,44,51,54,46,56,50,53,51,52,53,93,44,91,45,49,50,48,46,49,56,56,56,51,44,51,54,46,55,55,54,52,48,56,93,44,91,45,49,50,48,46,51,55,48,50,53,54,44,51,54,46,55,56,52,57,52,93,44,91,45,49,50,48,46,53,52,49,54,57,54,44,51,55,46,48,52,52,53,48,53,93,44,91,45,49,50,48,46,57,49,56,55,51,49,44,51,54,46,55,52,48,51,56,49,93,44,91,45,49,50,48,46,54,48,51,55,48,54,44,51,54,46,52,56,56,50,52,50,93,44,91,45,49,50,48,46,53,57,54,53,54,50,44,51,54,46,51,50,56,52,56,56,93,44,91,45,49,50,48,46,54,55,56,53,56,50,44,51,54,46,50,54,55,51,49,57,93,44,91,45,49,50,48,46,54,52,56,55,56,52,44,51,54,46,49,48,55,57,57,93,44,91,45,49,50,48,46,51,49,53,48,54,56,44,51,53,46,57,48,55,49,56,54,93,44,91,45,49,49,57,46,57,53,57,50,49,44,51,54,46,49,56,49,52,48,51,93,44,91,45,49,49,57,46,57,53,57,50,50,55,44,51,54,46,52,48,48,57,55,53,93,44,91,45,49,49,57,46,54,54,54,50,57,44,51,54,46,52,49,56,57,54,93,44,91,45,49,49,57,46,53,55,51,49,57,52,44,51,54,46,52,56,56,56,51,53,93,44,91,45,49,49,57,46,52,54,54,51,50,50,44,51,54,46,53,55,53,50,51,56,93,44,91,45,49,49,57,46,51,48,53,49,48,50,44,51,54,46,53,55,51,55,50,53,93,44,91,45,49,49,57,46,51,48,52,54,50,53,44,51,54,46,54,54,48,54,48,54,93,44,91,45,49,49,56,46,57,56,52,55,55,57,44,51,54,46,54,53,55,49,52,55,93,44,91,45,49,49,56,46,57,56,50,52,52,49,44,51,54,46,55,52,49,54,52,54,93,44,91,45,49,49,56,46,51,54,48,53,56,54,44,51,54,46,55,52,52,55,55,51,93,44,91,45,49,49,56,46,51,54,48,56,51,49,44,51,54,46,56,56,55,55,51,52,93,44,91,45,49,49,56,46,52,50,50,53,57,53,44,51,55,46,48,50,52,51,54,93,44,91,45,49,49,56,46,53,48,51,49,48,51,44,51,55,46,48,57,53,50,50,49,93,44,91,45,49,49,56,46,54,53,52,53,57,51,44,51,55,46,49,52,49,56,50,54,93,44,91,45,49,49,56,46,55,49,54,48,49,54,44,51,55,46,51,50,56,50,48,56,93,44,91,45,49,49,56,46,55,56,54,55,51,54,44,51,55,46,51,52,51,51,56,93,44,91,45,49,49,56,46,55,55,53,48,49,52,44,51,55,46,52,54,51,48,53,50,93,44,91,45,49,49,57,46,48,50,50,51,54,51,44,51,55,46,53,56,53,55,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,69,108,98,101,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,49,50,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,55,51,52,49,44,51,52,46,50,56,56,56,54,52,93,44,91,45,56,50,46,57,56,48,57,48,53,44,51,52,46,50,49,49,53,48,53,93,44,91,45,56,51,46,48,55,56,48,48,52,44,51,52,46,50,50,51,54,48,54,93,44,91,45,56,50,46,57,55,54,50,57,52,44,51,52,46,48,52,51,50,49,57,93,44,91,45,56,50,46,55,55,57,53,48,54,44,51,51,46,57,55,49,49,50,52,93,44,91,45,56,50,46,54,52,53,52,53,49,44,51,51,46,57,56,52,49,57,53,93,44,91,45,56,50,46,53,54,52,52,57,49,44,51,51,46,57,53,53,55,51,51,93,44,91,45,56,50,46,53,57,52,54,51,49,44,51,52,46,48,49,51,55,57,54,93,44,91,45,56,50,46,55,52,50,49,48,51,44,51,52,46,50,49,49,57,48,51,93,44,91,45,56,50,46,55,55,51,52,49,44,51,52,46,50,56,56,56,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,114,98,111,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,56,50,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,49,48,50,52,49,44,51,50,46,49,52,54,54,53,49,93,44,91,45,56,53,46,52,50,56,52,55,54,44,51,50,46,48,49,52,57,53,49,93,44,91,45,56,53,46,53,56,55,51,52,52,44,51,49,46,57,57,55,51,53,53,93,44,91,45,56,53,46,54,53,55,54,54,56,44,51,49,46,56,56,48,50,55,53,93,44,91,45,56,53,46,54,54,50,54,57,50,44,51,49,46,55,56,51,51,49,57,93,44,91,45,56,53,46,55,52,56,50,53,49,44,51,49,46,54,49,56,48,52,56,93,44,91,45,56,53,46,52,49,54,52,51,55,44,51,49,46,54,49,57,52,54,54,93,44,91,45,56,53,46,52,49,54,48,51,56,44,51,49,46,55,48,54,54,54,52,93,44,91,45,56,53,46,50,49,54,48,55,54,44,51,49,46,55,48,50,52,48,57,93,44,91,45,56,53,46,49,50,55,51,50,57,44,51,49,46,55,54,50,53,54,51,93,44,91,45,56,53,46,49,52,49,49,51,44,51,49,46,55,56,48,52,54,51,93,44,91,45,56,53,46,48,54,56,50,51,44,51,49,46,57,57,49,56,53,55,93,44,91,45,56,53,46,48,53,54,48,50,57,44,51,50,46,48,54,51,48,53,53,93,44,91,45,56,53,46,49,56,53,48,54,55,44,51,50,46,48,54,49,55,48,56,93,44,91,45,56,53,46,50,53,55,55,52,55,44,51,50,46,49,52,56,50,53,49,93,44,91,45,56,53,46,52,49,48,50,52,49,44,51,50,46,49,52,54,54,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,108,97,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,55,55,56,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,48,49,57,57,56,44,51,52,46,56,51,53,50,54,56,93,44,91,45,55,56,46,56,48,53,56,51,52,44,51,52,46,54,56,57,53,54,93,44,91,45,55,56,46,56,54,56,57,54,49,44,51,52,46,52,56,52,55,55,56,93,44,91,45,55,56,46,54,54,55,53,56,56,44,51,52,46,52,54,57,54,52,53,93,44,91,45,55,56,46,52,52,53,51,50,44,51,52,46,51,55,55,52,93,44,91,45,55,56,46,50,53,54,48,56,53,44,51,52,46,51,57,57,52,54,57,93,44,91,45,55,56,46,49,55,54,53,48,49,44,51,52,46,52,54,53,51,53,54,93,44,91,45,55,56,46,50,53,52,52,52,49,44,51,52,46,53,53,51,53,57,53,93,44,91,45,55,56,46,51,50,52,53,50,44,51,52,46,54,54,54,48,57,53,93,44,91,45,55,56,46,52,57,52,55,48,53,44,51,52,46,56,53,54,49,56,50,93,44,91,45,55,56,46,57,48,49,57,57,56,44,51,52,46,56,51,53,50,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,48,50,51,53,57,44,51,54,46,53,48,48,53,53,49,93,44,91,45,49,48,51,46,48,52,49,55,49,51,44,51,54,46,53,48,48,52,51,57,93,44,91,45,49,48,51,46,48,52,49,48,54,50,44,51,54,46,48,53,53,50,50,54,93,44,91,45,49,48,50,46,49,54,51,48,49,53,44,51,54,46,48,53,53,50,52,57,93,44,91,45,49,48,50,46,49,54,50,52,54,51,44,51,54,46,53,48,48,51,50,54,93,44,91,45,49,48,51,46,48,48,50,51,53,57,44,51,54,46,53,48,48,53,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,83,97,110,103,97,109,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,54,54,49,44,34,98,101,100,115,34,58,49,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,57,52,52,48,53,44,51,57,46,56,55,50,56,54,93,44,91,45,56,57,46,57,56,52,55,52,53,44,51,57,46,55,49,56,48,55,57,93,44,91,45,56,57,46,57,50,54,48,51,55,44,51,57,46,53,50,50,49,48,52,93,44,91,45,56,57,46,55,48,49,54,54,49,44,51,57,46,53,50,51,51,49,54,93,44,91,45,56,57,46,53,51,51,54,53,53,44,51,57,46,53,50,52,53,57,50,93,44,91,45,56,57,46,53,51,53,48,50,56,44,51,57,46,54,52,49,49,51,56,93,44,91,45,56,57,46,52,48,57,52,55,53,44,51,57,46,55,52,51,53,51,93,44,91,45,56,57,46,50,49,55,52,55,51,44,51,57,46,56,49,51,54,54,54,93,44,91,45,56,57,46,50,49,55,56,52,54,44,51,57,46,57,49,54,57,57,93,44,91,45,56,57,46,52,48,52,57,56,52,44,51,57,46,57,49,56,49,56,55,93,44,91,45,56,57,46,53,55,56,50,56,57,44,51,57,46,57,55,54,49,50,55,93,44,91,45,56,57,46,54,57,56,50,53,57,44,51,57,46,57,55,53,51,48,57,93,44,91,45,56,57,46,55,54,57,49,54,56,44,51,57,46,57,48,50,51,53,93,44,91,45,56,57,46,57,57,52,53,48,54,44,51,57,46,57,48,49,57,50,53,93,44,91,45,56,57,46,57,57,52,52,48,53,44,51,57,46,56,55,50,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,114,97,105,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,57,51,44,34,98,101,100,115,34,58,50,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,48,55,55,51,51,44,51,54,46,57,57,57,51,49,49,93,44,91,45,57,53,46,52,51,49,55,53,56,44,51,54,46,57,52,50,53,57,51,93,44,91,45,57,53,46,52,51,49,53,55,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,51,50,56,49,55,44,51,54,46,53,49,48,50,52,93,44,91,45,57,53,46,48,48,53,55,51,44,51,54,46,53,48,57,56,57,93,44,91,45,57,52,46,57,57,57,52,48,51,44,51,54,46,54,55,48,54,51,49,93,44,91,45,57,53,46,48,48,55,54,50,44,51,54,46,57,57,57,53,49,52,93,44,91,45,57,53,46,48,55,51,53,48,52,44,51,54,46,57,57,57,53,53,50,93,44,91,45,57,53,46,52,48,55,55,51,51,44,51,54,46,57,57,57,51,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,54,51,52,44,34,98,101,100,115,34,58,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,48,48,50,49,51,44,51,54,46,49,51,56,53,54,49,93,44,91,45,56,53,46,50,51,53,55,53,55,44,51,54,46,49,48,53,55,53,50,93,44,91,45,56,53,46,50,54,52,50,48,54,44,51,53,46,57,55,57,49,53,52,93,44,91,45,56,53,46,50,50,50,53,50,52,44,51,53,46,56,55,55,51,54,52,93,44,91,45,56,53,46,50,54,57,51,53,57,44,51,53,46,55,57,51,51,56,56,93,44,91,45,56,53,46,50,55,50,54,54,52,44,51,53,46,55,56,55,55,49,56,93,44,91,45,56,53,46,50,53,51,53,49,56,44,51,53,46,55,54,54,57,50,55,93,44,91,45,56,53,46,50,53,52,48,54,50,44,51,53,46,55,54,53,54,49,49,93,44,91,45,56,52,46,57,49,54,48,54,50,44,51,53,46,55,54,49,57,51,57,93,44,91,45,56,52,46,55,56,49,57,48,49,44,51,53,46,56,50,53,93,44,91,45,56,52,46,54,56,48,54,51,51,44,51,53,46,57,48,56,52,53,52,93,44,91,45,56,52,46,55,50,48,55,50,55,44,51,53,46,57,57,52,57,49,52,93,44,91,45,56,52,46,57,48,55,55,53,51,44,51,54,46,49,53,54,50,57,51,93,44,91,45,56,53,46,49,48,48,50,49,51,44,51,54,46,49,51,56,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,79,116,115,101,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,51,57,55,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,53,55,52,53,50,44,52,53,46,49,49,54,55,48,55,93,44,91,45,56,52,46,56,52,55,51,48,57,44,52,52,46,56,53,56,48,51,55,93,44,91,45,56,52,46,51,55,49,55,51,55,44,52,52,46,56,53,53,48,51,57,93,44,91,45,56,52,46,51,54,54,54,49,52,44,52,53,46,49,57,56,55,51,55,93,44,91,45,56,52,46,55,51,52,51,48,51,44,52,53,46,50,48,49,57,51,54,93,44,91,45,56,52,46,56,53,55,52,53,50,44,52,53,46,49,49,54,55,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,83,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,56,56,48,49,44,52,50,46,53,54,49,55,52,50,93,44,91,45,57,53,46,51,50,50,51,53,55,44,52,50,46,52,55,52,55,51,55,93,44,91,45,57,53,46,51,50,51,52,57,55,44,52,50,46,50,49,48,57,51,50,93,44,91,45,57,53,46,48,57,48,56,53,49,44,52,50,46,50,49,48,52,48,53,93,44,91,45,57,52,46,56,53,56,52,49,50,44,52,50,46,50,48,57,54,57,50,93,44,91,45,57,52,46,56,53,54,54,56,57,44,52,50,46,52,55,51,57,57,54,93,44,91,45,57,52,46,57,49,52,52,56,53,44,52,50,46,53,54,48,51,48,57,93,44,91,45,57,53,46,51,56,56,48,49,44,52,50,46,53,54,49,55,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,69,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,50,52,55,51,57,49,44,51,57,46,55,48,52,51,53,93,44,91,45,49,49,49,46,50,52,55,55,52,56,44,51,57,46,52,54,55,49,57,57,93,44,91,45,49,49,49,46,51,48,48,57,48,53,44,51,57,46,52,54,55,50,51,55,93,44,91,45,49,49,49,46,50,57,57,51,54,44,51,57,46,48,51,50,50,54,52,93,44,91,45,49,49,49,46,51,48,53,54,54,53,44,51,56,46,53,49,48,49,54,57,93,44,91,45,49,49,49,46,51,48,53,55,48,49,44,51,56,46,52,57,57,57,57,56,93,44,91,45,49,49,48,46,48,50,53,52,48,50,44,51,56,46,52,57,57,57,56,49,93,44,91,45,49,48,57,46,57,57,52,50,56,51,44,51,56,46,53,50,55,49,49,56,93,44,91,45,49,49,48,46,48,56,49,57,51,57,44,51,56,46,55,53,54,54,54,54,93,44,91,45,49,49,48,46,49,54,50,53,50,57,44,51,56,46,56,54,51,57,50,50,93,44,91,45,49,49,48,46,49,53,54,50,50,50,44,51,57,46,48,51,50,54,53,52,93,44,91,45,49,49,48,46,48,55,55,50,55,44,51,57,46,50,55,53,56,54,57,93,44,91,45,49,49,48,46,48,50,50,49,54,54,44,51,57,46,51,53,50,48,49,56,93,44,91,45,49,49,48,46,48,50,52,49,49,56,44,51,57,46,52,54,57,50,54,57,93,44,91,45,49,49,49,46,48,55,55,53,52,53,44,51,57,46,52,54,57,55,52,51,93,44,91,45,49,49,49,46,48,56,53,51,53,53,44,51,57,46,53,50,49,49,55,93,44,91,45,49,49,49,46,50,52,55,51,57,49,44,51,57,46,55,48,52,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,70,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,56,51,54,54,49,52,44,52,57,46,48,48,48,48,56,51,93,44,91,45,49,49,56,46,56,53,49,57,54,44,52,55,46,57,53,55,57,48,54,93,44,91,45,49,49,56,46,55,51,48,51,50,53,44,52,55,46,57,48,48,49,54,57,93,44,91,45,49,49,56,46,53,51,49,50,57,55,44,52,55,46,56,55,52,56,55,56,93,44,91,45,49,49,56,46,51,52,48,57,51,56,44,52,55,46,56,57,52,51,49,54,93,44,91,45,49,49,56,46,52,48,48,56,48,55,44,52,56,46,48,50,56,54,56,50,93,44,91,45,49,49,56,46,50,51,51,52,57,56,44,52,56,46,48,54,51,52,56,53,93,44,91,45,49,49,56,46,50,52,56,54,48,54,44,52,56,46,49,51,52,50,53,53,93,44,91,45,49,49,56,46,49,51,57,55,57,49,44,52,56,46,50,54,55,51,48,56,93,44,91,45,49,49,56,46,50,48,54,53,48,55,44,52,56,46,52,55,48,50,57,54,93,44,91,45,49,49,56,46,49,48,52,57,54,44,52,56,46,54,53,51,53,48,51,93,44,91,45,49,49,56,46,50,49,52,52,56,51,44,52,56,46,56,56,56,49,54,49,93,44,91,45,49,49,56,46,49,57,55,51,55,53,44,52,57,46,48,48,48,48,54,56,93,44,91,45,49,49,56,46,56,51,54,54,49,52,44,52,57,46,48,48,48,48,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,87,105,98,97,117,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,52,50,48,51,52,55,44,52,55,46,51,53,52,52,51,53,93,44,91,45,49,48,52,46,51,52,49,54,56,44,52,55,46,50,52,53,51,57,50,93,44,91,45,49,48,52,46,51,48,54,48,54,50,44,52,55,46,48,52,50,48,52,54,93,44,91,45,49,48,52,46,52,49,50,49,50,52,44,52,54,46,57,48,52,48,48,51,93,44,91,45,49,48,52,46,54,48,51,55,54,54,44,52,54,46,56,54,48,56,53,51,93,44,91,45,49,48,52,46,54,48,54,57,48,51,44,52,54,46,54,56,52,57,50,52,93,44,91,45,49,48,52,46,52,49,55,57,57,56,44,52,54,46,54,56,52,56,57,50,93,44,91,45,49,48,52,46,51,53,52,56,51,53,44,52,54,46,54,52,49,52,48,57,93,44,91,45,49,48,52,46,48,52,53,50,51,52,44,52,54,46,54,52,49,53,48,52,93,44,91,45,49,48,52,46,48,52,52,57,54,56,44,52,55,46,51,51,48,49,52,49,93,44,91,45,49,48,52,46,48,52,52,56,55,49,44,52,55,46,51,57,55,48,54,51,93,44,91,45,49,48,52,46,49,51,49,56,54,51,44,52,55,46,51,53,51,57,48,49,93,44,91,45,49,48,52,46,52,50,48,51,52,55,44,52,55,46,51,53,52,52,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,56,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,57,50,53,57,54,56,44,51,52,46,50,53,57,57,57,93,44,91,45,49,48,53,46,57,50,52,54,56,53,44,51,51,46,56,50,53,54,50,52,93,44,91,45,49,48,54,46,48,53,50,54,54,50,44,51,51,46,56,50,53,54,48,54,93,44,91,45,49,48,54,46,48,53,50,55,49,56,44,51,51,46,54,53,48,50,57,55,93,44,91,45,49,48,54,46,51,55,51,54,54,44,51,51,46,54,54,48,53,48,52,93,44,91,45,49,48,54,46,51,55,50,55,57,55,44,51,51,46,52,55,57,56,55,53,93,44,91,45,49,48,54,46,51,52,53,55,49,44,51,51,46,51,57,48,53,57,53,93,44,91,45,49,48,53,46,55,50,55,49,55,49,44,51,51,46,51,57,48,54,51,51,93,44,91,45,49,48,53,46,55,50,53,57,53,55,44,51,51,46,51,48,52,56,51,52,93,44,91,45,49,48,53,46,51,49,55,51,55,54,44,51,51,46,51,48,53,57,55,55,93,44,91,45,49,48,53,46,51,49,54,57,54,56,44,51,51,46,49,51,50,51,48,51,93,44,91,45,49,48,52,46,57,48,53,52,50,52,44,51,51,46,49,51,56,57,48,52,93,44,91,45,49,48,52,46,56,57,50,52,51,51,44,51,51,46,51,57,56,49,57,57,93,44,91,45,49,48,52,46,56,57,51,51,55,55,44,51,52,46,48,56,56,52,48,55,93,44,91,45,49,48,52,46,56,57,49,55,52,53,44,51,52,46,51,52,55,48,52,51,93,44,91,45,49,48,53,46,51,49,51,48,55,50,44,51,52,46,51,52,55,50,48,53,93,44,91,45,49,48,53,46,51,49,51,50,49,56,44,51,52,46,50,54,48,48,51,49,93,44,91,45,49,48,53,46,57,50,53,57,54,56,44,51,52,46,50,53,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,53,57,57,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,49,49,51,48,57,44,51,54,46,49,54,49,55,54,51,93,44,91,45,57,53,46,49,49,56,53,44,51,54,46,49,54,49,54,51,93,44,91,45,57,53,46,50,48,55,57,52,54,44,51,54,46,48,55,52,55,48,56,93,44,91,45,57,53,46,50,56,50,57,57,50,44,51,53,46,57,48,55,55,48,52,93,44,91,45,57,53,46,50,54,53,54,55,57,44,51,53,46,56,49,51,50,54,54,93,44,91,45,57,53,46,49,50,55,49,54,51,44,51,53,46,56,49,50,55,53,53,93,44,91,45,57,53,46,49,50,55,50,49,51,44,51,53,46,54,51,56,56,56,56,93,44,91,45,57,52,46,56,48,55,55,53,55,44,51,53,46,54,51,56,53,52,54,93,44,91,45,57,52,46,55,57,55,52,48,57,44,51,54,46,49,54,49,54,53,50,93,44,91,45,57,53,46,48,49,49,51,48,57,44,51,54,46,49,54,49,55,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,89,101,108,108,111,119,32,77,101,100,105,99,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,54,56,44,34,98,101,100,115,34,58,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,53,49,52,54,50,44,52,52,46,56,48,53,53,55,93,44,91,45,57,54,46,52,53,49,53,54,54,44,52,52,46,54,51,49,51,52,57,93,44,91,45,57,54,46,48,57,50,57,53,44,52,52,46,54,51,48,52,56,54,93,44,91,45,57,53,46,54,48,52,48,48,49,44,52,52,46,54,50,57,57,52,53,93,44,91,45,57,53,46,53,57,52,56,49,55,44,52,52,46,53,52,50,51,48,53,93,44,91,45,57,53,46,51,54,48,52,44,52,52,46,53,52,49,55,54,50,93,44,91,45,57,53,46,51,54,48,49,55,55,44,52,52,46,54,57,56,53,52,93,44,91,45,57,53,46,52,56,50,56,52,51,44,52,52,46,55,53,50,53,48,53,93,44,91,45,57,53,46,55,51,54,54,57,54,44,52,52,46,57,51,54,48,52,93,44,91,45,57,53,46,56,52,55,52,53,50,44,52,52,46,56,57,49,55,57,57,93,44,91,45,57,53,46,56,52,57,48,48,57,44,52,52,46,56,48,53,51,52,55,93,44,91,45,57,54,46,52,53,49,52,54,50,44,52,52,46,56,48,53,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,49,34,44,34,78,65,77,69,34,58,34,72,117,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,49,53,50,44,34,98,101,100,115,34,58,50,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,57,53,52,49,51,44,51,51,46,51,53,49,57,51,54,93,44,91,45,57,54,46,50,57,55,50,50,55,44,51,50,46,57,56,49,55,53,50,93,44,91,45,57,54,46,50,57,55,51,50,50,44,51,50,46,56,52,49,55,50,51,93,44,91,45,57,54,46,48,55,54,56,48,49,44,51,50,46,56,51,56,52,56,57,93,44,91,45,57,53,46,57,51,52,52,51,51,44,51,50,46,56,51,55,50,49,55,93,44,91,45,57,53,46,57,52,53,51,44,51,50,46,57,55,57,56,55,55,93,44,91,45,57,53,46,56,54,50,53,50,49,44,51,50,46,57,55,57,53,55,49,93,44,91,45,57,53,46,56,54,49,55,55,56,44,51,51,46,50,49,57,51,51,93,44,91,45,57,53,46,56,53,56,55,50,51,44,51,51,46,52,48,57,53,51,93,44,91,45,57,54,46,50,57,53,52,49,51,44,51,51,46,51,53,49,57,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,51,53,34,44,34,78,65,77,69,34,58,34,77,105,116,99,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,54,54,48,54,50,54,44,51,50,46,53,50,53,51,49,50,93,44,91,45,49,48,49,46,49,55,52,53,54,50,44,51,50,46,53,50,55,55,48,51,93,44,91,45,49,48,49,46,49,55,52,53,55,49,44,51,50,46,53,50,52,49,49,50,93,44,91,45,49,48,49,46,49,56,51,57,57,55,44,51,50,46,48,56,55,50,48,56,93,44,91,45,49,48,48,46,56,50,49,53,57,52,44,51,50,46,48,56,54,54,49,93,44,91,45,49,48,48,46,54,54,53,51,53,51,44,51,50,46,48,56,53,52,48,55,93,44,91,45,49,48,48,46,54,54,48,54,50,54,44,51,50,46,53,50,53,51,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,57,57,34,44,34,78,65,77,69,34,58,34,87,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,56,49,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,48,56,57,53,55,44,51,50,46,57,54,50,53,55,50,93,44,91,45,57,53,46,54,54,53,51,56,57,44,51,50,46,57,54,48,52,51,52,93,44,91,45,57,53,46,54,51,53,48,49,55,44,51,50,46,55,50,48,51,56,93,44,91,45,57,53,46,53,57,52,53,52,49,44,51,50,46,54,56,55,48,50,54,93,44,91,45,57,53,46,53,49,48,57,52,53,44,51,50,46,54,50,48,51,50,56,93,44,91,45,57,53,46,49,53,51,52,49,44,51,50,46,53,55,48,49,49,53,93,44,91,45,57,53,46,49,53,50,49,49,44,51,50,46,57,48,50,54,52,49,93,44,91,45,57,53,46,49,53,50,50,48,54,44,51,51,46,48,49,51,52,53,93,44,91,45,57,53,46,51,48,56,57,53,55,44,51,50,46,57,54,50,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,79,115,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,51,49,49,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,53,55,53,53,54,44,51,54,46,53,57,51,56,55,50,93,44,91,45,57,55,46,48,48,57,55,56,53,44,51,54,46,53,48,54,57,51,53,93,44,91,45,57,54,46,57,52,48,50,51,53,44,51,54,46,52,53,53,53,50,53,93,44,91,45,57,54,46,55,51,55,50,51,57,44,51,54,46,53,53,48,48,56,56,93,44,91,45,57,54,46,55,49,48,55,54,57,44,51,54,46,52,51,55,54,53,54,93,44,91,45,57,54,46,54,51,53,55,50,55,44,51,54,46,52,50,53,57,48,56,93,44,91,45,57,54,46,53,49,53,50,50,57,44,51,54,46,50,57,56,51,51,50,93,44,91,45,57,54,46,52,51,51,56,49,50,44,51,54,46,50,56,53,56,56,57,93,44,91,45,57,54,46,50,54,56,50,56,55,44,51,54,46,49,54,49,57,56,93,44,91,45,57,54,46,48,48,49,50,50,54,44,51,54,46,49,54,49,50,57,54,93,44,91,45,57,54,46,48,48,49,49,55,49,44,51,54,46,52,50,51,54,56,54,93,44,91,45,57,54,46,48,48,48,56,49,44,51,54,46,57,57,56,56,54,93,44,91,45,57,54,46,53,50,53,53,56,50,44,51,54,46,57,57,56,55,49,93,44,91,45,57,54,46,55,52,57,56,51,56,44,51,54,46,57,57,56,57,56,56,93,44,91,45,57,54,46,55,53,50,51,55,53,44,51,54,46,55,56,50,48,57,50,93,44,91,45,57,54,46,56,56,57,52,55,53,44,51,54,46,55,53,49,50,51,93,44,91,45,57,54,46,57,51,49,57,52,51,44,51,54,46,54,56,54,48,57,55,93,44,91,45,57,55,46,48,54,52,49,48,55,44,51,54,46,54,56,52,50,48,55,93,44,91,45,57,55,46,48,53,55,53,53,54,44,51,54,46,53,57,51,56,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,54,54,56,44,34,98,101,100,115,34,58,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,57,50,51,54,53,44,51,53,46,50,48,54,54,57,52,93,44,91,45,56,52,46,51,50,49,56,50,49,44,51,52,46,57,56,56,52,48,56,93,44,91,45,56,52,46,49,50,57,52,52,56,44,51,52,46,57,56,55,53,49,52,93,44,91,45,56,52,46,48,48,53,49,51,50,44,51,52,46,57,56,55,49,55,53,93,44,91,45,56,51,46,56,52,48,55,51,51,44,51,53,46,49,52,51,56,52,49,93,44,91,45,56,51,46,55,51,56,49,50,57,44,51,53,46,49,53,53,57,53,93,44,91,45,56,51,46,55,48,50,55,55,50,44,51,53,46,50,52,56,53,50,93,44,91,45,56,51,46,56,51,49,52,50,57,44,51,53,46,50,53,54,49,49,55,93,44,91,45,56,51,46,57,53,56,54,53,50,44,51,53,46,50,49,55,48,52,93,44,91,45,56,52,46,48,50,57,48,54,55,44,51,53,46,50,57,50,50,52,56,93,44,91,45,56,52,46,50,49,49,51,57,53,44,51,53,46,50,54,53,54,50,49,93,44,91,45,56,52,46,50,57,50,51,54,53,44,51,53,46,50,48,54,54,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,77,101,99,111,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,50,54,52,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,44,91,45,56,53,46,53,54,50,51,52,56,44,52,51,46,52,54,56,49,51,93,44,91,45,56,53,46,48,56,52,57,57,54,44,52,51,46,52,54,54,49,57,93,44,91,45,56,53,46,48,56,56,56,49,49,44,52,51,46,56,49,51,54,55,54,93,44,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,52,56,51,44,34,98,101,100,115,34,58,52,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,53,54,51,53,54,49,44,51,55,46,54,56,52,56,52,52,93,44,91,45,56,50,46,54,50,52,48,57,49,44,51,55,46,53,48,54,50,55,53,93,44,91,45,56,50,46,53,56,56,54,50,55,44,51,55,46,52,52,54,50,53,57,93,44,91,45,56,50,46,55,49,48,56,48,53,44,51,55,46,50,56,53,51,50,51,93,44,91,45,56,50,46,55,51,50,54,57,51,44,51,55,46,50,55,49,53,48,50,93,44,91,45,56,50,46,53,54,53,51,55,57,44,51,55,46,49,57,54,48,57,57,93,44,91,45,56,50,46,53,53,51,56,55,52,44,51,55,46,50,48,50,56,51,51,93,44,91,45,56,50,46,51,49,52,49,57,53,44,51,55,46,50,57,54,48,55,53,93,44,91,45,56,49,46,57,54,56,48,49,50,44,51,55,46,53,51,56,48,51,53,93,44,91,45,56,50,46,49,49,55,51,48,52,44,51,55,46,53,53,57,50,50,54,93,44,91,45,56,50,46,51,51,51,49,51,54,44,51,55,46,55,52,48,56,52,56,93,44,91,45,56,50,46,52,53,54,49,51,52,44,51,55,46,54,54,56,55,57,53,93,44,91,45,56,50,46,53,54,51,53,54,49,44,51,55,46,54,56,52,56,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,52,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,54,55,50,54,44,51,48,46,50,54,48,52,52,93,44,91,45,56,51,46,51,55,48,56,57,44,50,57,46,56,56,55,57,51,52,93,44,91,45,56,51,46,51,49,56,56,53,57,44,50,57,46,56,50,50,54,50,51,93,44,91,45,56,50,46,57,50,48,54,48,56,44,50,57,46,56,50,52,49,52,51,93,44,91,45,56,50,46,57,49,56,55,48,56,44,50,57,46,56,50,52,48,56,51,93,44,91,45,56,50,46,57,48,51,57,53,54,44,50,57,46,56,50,52,50,57,52,93,44,91,45,56,50,46,56,55,57,56,48,50,44,50,57,46,56,56,54,56,52,55,93,44,91,45,56,50,46,57,54,51,49,49,50,44,50,57,46,57,57,51,48,53,93,44,91,45,56,51,46,49,54,50,52,53,55,44,51,48,46,49,49,48,48,50,50,93,44,91,45,56,51,46,50,50,54,51,54,44,51,48,46,49,49,52,54,50,49,93,44,91,45,56,51,46,50,52,55,50,53,51,44,51,48,46,50,54,48,54,55,93,44,91,45,56,51,46,51,54,55,50,54,44,51,48,46,50,54,48,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,97,116,97,119,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,55,50,57,44,34,98,101,100,115,34,58,54,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,51,53,52,48,51,44,51,53,46,53,54,56,49,51,55,93,44,91,45,56,48,46,57,54,48,48,50,53,44,51,53,46,53,52,55,48,50,93,44,91,45,56,48,46,57,57,52,52,52,53,44,51,53,46,55,48,50,49,49,93,44,91,45,56,49,46,49,48,57,53,48,55,44,51,53,46,55,55,54,53,57,52,93,44,91,45,56,49,46,49,52,50,51,51,56,44,51,53,46,56,50,55,52,51,52,93,44,91,45,56,49,46,51,51,52,50,55,50,44,51,53,46,55,57,54,50,56,49,93,44,91,45,56,49,46,51,54,51,55,57,54,44,51,53,46,55,54,55,56,48,50,93,44,91,45,56,49,46,53,51,53,52,48,51,44,51,53,46,53,54,56,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,66,114,101,97,116,104,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,49,54,44,34,98,101,100,115,34,58,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,52,56,54,57,50,44,51,55,46,54,54,57,54,49,54,93,44,91,45,56,51,46,52,49,56,52,55,52,44,51,55,46,54,57,48,55,50,57,93,44,91,45,56,51,46,53,50,50,51,48,56,44,51,55,46,54,51,56,53,49,54,93,44,91,45,56,51,46,53,55,57,49,56,54,44,51,55,46,53,48,54,50,52,57,93,44,91,45,56,51,46,53,52,55,54,50,56,44,51,55,46,51,51,52,52,49,56,93,44,91,45,56,51,46,52,48,51,57,56,56,44,51,55,46,51,51,56,51,51,50,93,44,91,45,56,51,46,49,57,57,55,51,52,44,51,55,46,52,49,52,54,54,93,44,91,45,56,51,46,49,50,52,51,52,56,44,51,55,46,52,48,52,57,55,51,93,44,91,45,56,51,46,48,53,48,50,48,49,44,51,55,46,53,50,53,51,49,52,93,44,91,45,56,50,46,57,52,56,53,52,52,44,51,55,46,53,48,51,49,54,55,93,44,91,45,56,51,46,48,56,57,55,57,54,44,51,55,46,54,51,50,49,54,55,93,44,91,45,56,51,46,50,52,56,54,57,50,44,51,55,46,54,54,57,54,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,67,104,105,108,100,114,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,54,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,52,49,53,56,57,53,44,51,52,46,55,52,55,53,50,53,93,44,91,45,49,48,48,46,52,49,55,55,56,51,44,51,52,46,51,49,51,53,50,52,93,44,91,45,57,57,46,57,57,55,55,50,44,51,52,46,51,49,49,56,50,57,93,44,91,45,57,57,46,57,57,55,53,48,49,44,51,52,46,53,54,48,53,55,52,93,44,91,45,49,48,48,46,48,48,48,51,56,49,44,51,52,46,55,52,54,51,53,56,93,44,91,45,49,48,48,46,52,49,53,56,57,53,44,51,52,46,55,52,55,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,82,105,112,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,49,53,57,50,54,44,51,54,46,56,50,51,54,55,50,93,44,91,45,57,49,46,49,50,54,53,50,57,44,51,54,46,52,57,55,55,49,50,93,44,91,45,57,48,46,55,56,52,52,50,52,44,51,54,46,52,57,56,53,51,52,93,44,91,45,57,48,46,53,55,54,49,55,57,44,51,54,46,52,57,56,53,52,55,93,44,91,45,57,48,46,53,57,50,49,54,54,44,51,54,46,54,55,57,51,54,56,93,44,91,45,57,48,46,54,54,50,54,49,55,44,51,54,46,56,49,49,52,53,51,93,44,91,45,57,49,46,49,49,53,57,50,54,44,51,54,46,56,50,51,54,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,84,97,122,101,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,56,53,50,44,34,98,101,100,115,34,58,49,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,53,52,57,57,52,44,52,48,46,55,52,55,54,51,55,93,44,91,45,56,57,46,54,53,56,48,48,51,44,52,48,46,53,54,55,52,51,56,93,44,91,45,56,57,46,56,55,50,52,54,51,44,52,48,46,53,49,51,49,50,55,93,44,91,45,56,57,46,57,50,52,54,56,44,52,48,46,52,51,53,57,50,49,93,44,91,45,56,57,46,55,49,55,49,48,52,44,52,48,46,52,51,53,54,53,53,93,44,91,45,56,57,46,55,49,52,57,50,55,44,52,48,46,51,49,57,50,49,56,93,44,91,45,56,57,46,54,48,50,57,55,57,44,52,48,46,51,50,48,49,50,57,93,44,91,45,56,57,46,50,54,51,55,52,44,52,48,46,51,50,53,51,52,52,93,44,91,45,56,57,46,50,54,57,51,57,55,44,52,48,46,53,57,52,51,49,56,93,44,91,45,56,57,46,51,51,48,48,57,50,44,52,48,46,55,52,56,50,53,55,93,44,91,45,56,57,46,53,53,52,57,57,52,44,52,48,46,55,52,55,54,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,32,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,55,57,56,48,49,44,51,48,46,54,50,57,50,53,56,93,44,91,45,49,48,51,46,57,48,49,48,49,44,51,48,46,52,49,50,49,57,93,44,91,45,49,48,51,46,56,48,48,54,56,44,51,48,46,52,49,50,53,50,55,93,44,91,45,49,48,51,46,52,51,57,57,55,54,44,51,48,46,54,54,53,57,51,57,93,44,91,45,49,48,51,46,53,56,53,48,56,52,44,51,48,46,55,54,54,52,55,93,44,91,45,49,48,52,46,49,48,50,51,53,49,44,51,49,46,49,48,53,50,48,51,93,44,91,45,49,48,52,46,57,49,55,49,54,51,44,51,48,46,54,54,51,54,50,54,93,44,91,45,49,48,52,46,57,55,57,56,48,49,44,51,48,46,54,50,57,50,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,55,56,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,55,56,34,44,34,78,65,77,69,34,58,34,76,101,120,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,54,49,53,56,50,44,51,55,46,55,56,54,51,53,54,93,44,91,45,55,57,46,52,53,53,54,54,55,44,51,55,46,55,54,53,50,49,57,93,44,91,45,55,57,46,52,50,48,56,50,52,44,51,55,46,55,56,56,57,57,56,93,44,91,45,55,57,46,52,51,55,51,51,55,44,51,55,46,55,57,52,55,56,52,93,44,91,45,55,57,46,52,54,49,53,56,50,44,51,55,46,55,56,54,51,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,83,104,97,114,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,53,48,48,48,50,44,51,54,46,52,57,55,54,53,93,44,91,45,57,49,46,52,53,52,52,51,55,44,51,54,46,51,51,53,52,54,53,93,44,91,45,57,49,46,53,54,53,56,54,54,44,51,54,46,51,51,55,52,93,44,91,45,57,49,46,53,54,54,48,55,56,44,51,54,46,50,52,57,57,52,53,93,44,91,45,57,49,46,54,57,49,52,51,53,44,51,54,46,50,53,51,51,48,49,93,44,91,45,57,49,46,54,56,50,50,55,55,44,51,54,46,48,48,48,53,51,53,93,44,91,45,57,49,46,55,49,48,52,56,51,44,51,53,46,57,52,49,55,53,56,93,44,91,45,57,49,46,52,54,51,49,57,56,44,51,53,46,57,51,54,56,49,93,44,91,45,57,49,46,51,53,55,50,51,44,51,53,46,56,57,48,54,50,49,93,44,91,45,57,49,46,51,52,57,56,51,52,44,51,54,46,50,51,48,57,54,55,93,44,91,45,57,49,46,50,53,56,57,50,44,51,54,46,50,53,55,56,56,93,44,91,45,57,49,46,50,55,52,57,52,44,51,54,46,51,55,52,49,50,93,44,91,45,57,49,46,52,48,55,49,51,56,44,51,54,46,52,57,55,48,56,49,93,44,91,45,57,49,46,52,53,48,48,48,50,44,51,54,46,52,57,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,76,97,114,105,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,49,54,49,44,34,98,101,100,115,34,58,55,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,56,53,52,57,50,54,44,52,48,46,52,56,54,50,53,50,93,44,91,45,49,48,53,46,54,53,51,51,50,49,44,52,48,46,50,54,48,52,53,55,93,44,91,45,49,48,53,46,48,53,53,48,56,57,44,52,48,46,50,54,49,55,57,51,93,44,91,45,49,48,52,46,57,52,53,53,53,49,44,52,48,46,51,52,57,48,57,57,93,44,91,45,49,48,52,46,57,52,51,51,55,49,44,52,48,46,57,57,56,50,49,51,93,44,91,45,49,48,53,46,50,55,54,56,54,44,52,48,46,57,57,56,49,55,50,93,44,91,45,49,48,54,46,49,57,48,53,53,52,44,52,48,46,57,57,55,53,55,56,93,44,91,45,49,48,54,46,49,56,53,51,48,55,44,52,48,46,57,51,51,57,55,51,93,44,91,45,49,48,54,46,48,53,51,55,55,57,44,52,48,46,56,49,50,54,54,50,93,44,91,45,49,48,53,46,56,53,52,57,50,54,44,52,48,46,52,56,54,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,84,121,114,114,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,48,50,50,54,48,55,44,51,54,46,48,57,54,55,50,53,93,44,91,45,55,54,46,49,53,55,57,53,51,44,51,54,46,48,53,57,53,49,55,93,44,91,45,55,54,46,51,53,56,51,57,51,44,51,54,46,48,50,48,48,49,57,93,44,91,45,55,54,46,51,53,51,54,54,57,44,51,53,46,56,54,49,51,54,53,93,44,91,45,55,54,46,52,48,53,57,55,49,44,51,53,46,54,57,55,53,55,57,93,44,91,45,55,54,46,48,50,55,52,55,57,44,51,53,46,54,54,56,56,52,57,93,44,91,45,55,54,46,48,48,56,51,52,56,44,51,53,46,56,57,53,56,48,50,93,44,91,45,55,53,46,57,53,52,51,55,52,44,51,53,46,57,57,48,48,54,52,93,44,91,45,55,53,46,56,52,48,48,52,54,44,51,54,46,48,50,56,56,51,52,93,44,91,45,55,53,46,57,48,54,50,57,53,44,51,54,46,48,56,53,56,55,55,93,44,91,45,55,54,46,48,50,50,54,48,55,44,51,54,46,48,57,54,55,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,82,105,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,55,54,53,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,50,52,51,50,55,44,52,52,46,53,52,51,54,49,56,93,44,91,45,57,51,46,53,50,53,50,51,49,44,52,52,46,49,57,54,49,51,52,93,44,91,45,57,51,46,52,48,54,53,54,53,44,52,52,46,49,57,54,51,55,55,93,44,91,45,57,51,46,48,52,53,57,49,44,52,52,46,49,57,54,55,49,54,93,44,91,45,57,51,46,48,52,49,49,53,57,44,52,52,46,49,57,54,55,50,54,93,44,91,45,57,51,46,48,51,57,52,56,53,44,52,52,46,52,55,49,56,55,49,93,44,91,45,57,51,46,50,56,49,54,56,54,44,52,52,46,52,55,49,57,57,56,93,44,91,45,57,51,46,50,56,49,53,50,49,44,52,52,46,53,52,51,57,53,55,93,44,91,45,57,51,46,53,50,52,51,50,55,44,52,52,46,53,52,51,54,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,57,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,57,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,54,52,50,56,55,44,51,56,46,57,57,50,55,54,50,93,44,91,45,57,49,46,50,54,52,57,50,55,44,51,56,46,56,52,51,56,51,51,93,44,91,45,57,49,46,52,49,53,56,51,50,44,51,56,46,56,52,53,51,93,44,91,45,57,49,46,52,49,56,54,51,55,44,51,56,46,55,48,57,55,55,56,93,44,91,45,57,49,46,51,54,57,49,57,50,44,51,56,46,54,57,57,51,50,52,93,44,91,45,57,49,46,51,49,51,48,57,51,44,51,56,46,55,48,54,55,49,53,93,44,91,45,57,49,46,49,51,50,53,51,53,44,51,56,46,53,57,56,50,55,57,93,44,91,45,57,48,46,57,54,52,52,54,49,44,51,56,46,53,52,55,53,52,53,93,44,91,45,57,48,46,57,53,56,53,51,54,44,51,56,46,56,55,48,56,54,53,93,44,91,45,57,49,46,49,49,49,50,53,49,44,51,56,46,56,55,50,55,48,57,93,44,91,45,57,49,46,50,54,52,50,56,55,44,51,56,46,57,57,50,55,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,55,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,52,50,55,44,34,98,101,100,115,34,58,55,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,55,52,52,54,50,44,51,54,46,57,57,57,55,54,54,93,44,91,45,56,54,46,54,49,49,53,56,54,44,51,54,46,56,56,51,48,53,55,93,44,91,45,56,54,46,53,56,51,50,56,57,44,51,54,46,56,51,48,50,56,50,93,44,91,45,56,54,46,52,48,53,55,54,57,44,51,54,46,55,55,54,49,56,55,93,44,91,45,56,54,46,49,54,54,55,52,44,51,54,46,57,51,52,48,49,53,93,44,91,45,56,54,46,49,49,51,53,49,50,44,51,55,46,48,54,49,48,55,50,93,44,91,45,56,54,46,50,56,49,55,53,44,51,55,46,48,56,48,53,57,55,93,44,91,45,56,54,46,51,57,57,49,54,53,44,51,55,46,49,54,57,56,57,54,93,44,91,45,56,54,46,54,49,56,49,53,56,44,51,55,46,49,56,51,57,48,54,93,44,91,45,56,54,46,54,55,52,52,54,50,44,51,54,46,57,57,57,55,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,100,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,51,54,49,44,34,98,101,100,115,34,58,50,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,52,51,49,52,55,44,51,50,46,54,57,51,48,51,93,44,91,45,57,52,46,48,52,50,57,48,49,44,51,50,46,51,57,50,50,56,51,93,44,91,45,57,52,46,48,52,50,53,57,56,44,51,50,46,49,57,54,48,48,53,93,44,91,45,57,51,46,57,53,49,48,56,53,44,51,50,46,49,57,53,53,52,53,93,44,91,45,57,51,46,55,54,52,55,54,51,44,51,50,46,51,52,53,54,52,54,93,44,91,45,57,51,46,54,54,54,52,55,50,44,51,50,46,51,49,55,52,52,52,93,44,91,45,57,51,46,54,49,52,54,57,44,51,50,46,50,51,55,53,50,54,93,44,91,45,57,51,46,52,55,49,50,52,57,44,51,50,46,50,51,55,49,56,54,93,44,91,45,57,51,46,54,49,53,49,51,44,51,50,46,51,52,56,51,51,50,93,44,91,45,57,51,46,55,53,54,50,48,54,44,51,50,46,53,51,55,48,51,55,93,44,91,45,57,51,46,55,51,54,54,49,44,51,50,46,53,55,57,56,52,53,93,44,91,45,57,51,46,56,49,57,49,54,57,44,51,50,46,55,51,54,48,48,50,93,44,91,45,57,51,46,55,56,51,50,51,51,44,51,50,46,55,56,52,51,54,93,44,91,45,57,51,46,56,49,52,53,53,51,44,51,51,46,48,49,57,51,55,49,93,44,91,45,57,52,46,48,52,50,57,54,52,44,51,51,46,48,49,57,50,49,57,93,44,91,45,57,52,46,48,52,51,48,55,56,44,51,50,46,56,56,49,48,56,57,93,44,91,45,57,52,46,48,52,51,49,52,55,44,51,50,46,54,57,51,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,84,111,100,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,52,54,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,49,52,50,50,49,44,52,51,46,51,57,48,51,50,49,93,44,91,45,49,48,49,46,50,50,56,50,51,52,44,52,51,46,51,56,57,49,56,53,93,44,91,45,49,48,49,46,50,50,56,48,49,51,44,52,50,46,57,57,56,49,51,54,93,44,91,45,49,48,48,46,49,57,56,52,49,51,44,52,50,46,57,57,56,54,55,52,93,44,91,45,49,48,48,46,50,49,52,50,50,49,44,52,51,46,51,57,48,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,50,55,49,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,51,49,55,50,50,44,52,50,46,50,48,56,56,56,54,93,44,91,45,57,51,46,50,51,49,56,53,56,44,52,49,46,56,54,50,55,49,49,93,44,91,45,57,50,46,55,54,53,57,57,57,44,52,49,46,56,54,50,51,55,51,93,44,91,45,57,50,46,55,54,55,52,54,51,44,52,50,46,50,49,48,49,52,93,44,91,45,57,51,46,48,48,49,54,55,52,44,52,50,46,50,48,57,50,54,55,93,44,91,45,57,51,46,50,51,49,55,50,50,44,52,50,46,50,48,56,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,84,105,108,108,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,48,51,49,53,44,51,52,46,54,51,55,57,53,93,44,91,45,57,57,46,49,57,54,56,48,49,44,51,52,46,53,52,50,51,56,54,93,44,91,45,57,57,46,50,51,56,48,54,44,51,52,46,52,50,53,48,48,57,93,44,91,45,57,57,46,50,48,54,57,48,53,44,51,52,46,51,51,56,50,55,55,93,44,91,45,57,57,46,49,56,57,55,55,54,44,51,52,46,50,49,52,51,53,55,93,44,91,45,57,56,46,57,53,50,51,57,53,44,51,52,46,50,49,50,52,57,55,93,44,91,45,57,56,46,56,56,55,49,49,50,44,51,52,46,49,54,56,50,54,93,44,91,45,57,56,46,54,57,48,48,55,50,44,51,52,46,49,51,51,49,53,53,93,44,91,45,57,56,46,54,48,57,57,56,55,44,51,52,46,49,53,55,49,53,52,93,44,91,45,57,56,46,54,48,57,54,54,44,51,52,46,51,51,51,55,50,93,44,91,45,57,56,46,54,54,49,57,53,54,44,51,52,46,52,48,53,57,52,56,93,44,91,45,57,56,46,54,54,49,57,56,50,44,51,52,46,53,48,55,52,54,93,44,91,45,57,56,46,56,50,54,49,52,52,44,51,52,46,53,48,55,51,55,93,44,91,45,57,56,46,56,50,54,48,48,56,44,51,52,46,53,57,52,52,49,51,93,44,91,45,57,57,46,48,48,49,49,48,55,44,51,52,46,53,57,52,51,54,54,93,44,91,45,57,57,46,49,48,51,49,53,44,51,52,46,54,51,55,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,49,48,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,51,57,54,48,57,44,51,53,46,51,51,48,57,57,51,93,44,91,45,56,51,46,54,56,48,49,49,52,44,51,53,46,50,55,57,53,93,44,91,45,56,51,46,55,48,50,55,55,50,44,51,53,46,50,52,56,53,50,93,44,91,45,56,51,46,55,51,56,49,50,57,44,51,53,46,49,53,53,57,53,93,44,91,45,56,51,46,54,52,56,52,53,53,44,51,53,46,49,53,50,56,57,54,93,44,91,45,56,51,46,52,56,50,57,52,57,44,51,52,46,57,57,51,51,48,49,93,44,91,45,56,51,46,49,48,56,54,49,51,44,51,53,46,48,48,48,54,53,57,93,44,91,45,56,51,46,49,48,56,53,54,56,44,51,53,46,48,48,49,51,53,52,93,44,91,45,56,51,46,51,51,57,54,48,57,44,51,53,46,51,51,48,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,54,51,51,52,56,44,51,55,46,55,51,49,54,57,54,93,44,91,45,56,48,46,56,53,56,52,54,54,44,51,55,46,52,50,56,51,48,55,93,44,91,45,56,48,46,55,55,48,48,56,50,44,51,55,46,51,55,50,51,54,51,93,44,91,45,56,48,46,53,49,49,51,57,49,44,51,55,46,52,56,49,54,55,50,93,44,91,45,56,48,46,52,55,50,55,56,50,44,51,55,46,52,50,51,55,51,93,44,91,45,56,48,46,50,57,57,55,56,57,44,51,55,46,53,48,56,50,55,49,93,44,91,45,56,48,46,50,50,48,57,56,52,44,51,55,46,54,50,55,55,54,55,93,44,91,45,56,48,46,50,57,54,49,51,56,44,51,55,46,54,57,49,55,56,51,93,44,91,45,56,48,46,53,48,54,54,57,53,44,51,55,46,54,57,49,49,53,56,93,44,91,45,56,48,46,54,54,51,51,52,56,44,51,55,46,55,51,49,54,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,83,119,105,116,122,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,48,51,49,54,54,44,51,56,46,57,49,51,56,48,51,93,44,91,45,56,53,46,50,48,49,52,55,52,44,51,56,46,54,57,49,51,49,56,93,44,91,45,56,53,46,48,50,51,53,49,57,44,51,56,46,55,54,49,56,55,93,44,91,45,56,52,46,55,57,53,48,51,57,44,51,56,46,56,53,55,50,55,93,44,91,45,56,52,46,56,55,48,55,52,57,44,51,56,46,57,48,48,57,48,53,93,44,91,45,56,53,46,49,51,53,56,51,50,44,51,56,46,57,50,57,53,55,56,93,44,91,45,56,53,46,50,48,51,49,54,54,44,51,56,46,57,49,51,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,72,105,99,107,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,55,52,55,50,55,44,51,54,46,54,53,48,52,55,53,93,44,91,45,56,56,46,57,48,51,52,56,44,51,54,46,53,55,54,56,54,52,93,44,91,45,56,56,46,56,51,52,53,56,56,44,51,54,46,53,48,50,54,49,49,93,44,91,45,56,56,46,56,50,55,51,48,51,44,51,54,46,53,48,50,54,51,51,93,44,91,45,56,56,46,56,49,54,55,54,51,44,51,54,46,53,48,50,54,54,53,93,44,91,45,56,56,46,56,49,51,50,50,57,44,51,54,46,55,55,51,49,49,53,93,44,91,45,56,57,46,49,50,51,53,51,49,44,51,54,46,55,56,53,50,49,55,93,44,91,45,56,57,46,49,55,52,55,50,55,44,51,54,46,54,53,48,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,71,101,110,101,118,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,57,49,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,49,52,48,50,44,51,49,46,49,57,54,51,52,57,93,44,91,45,56,54,46,49,57,51,52,55,54,44,51,49,46,49,57,50,50,49,51,93,44,91,45,56,54,46,49,56,55,50,52,54,44,51,48,46,57,57,52,48,50,49,93,44,91,45,56,54,46,48,51,53,48,51,57,44,51,48,46,57,57,51,51,50,93,44,91,45,56,53,46,52,57,55,57,57,50,44,51,48,46,57,57,54,57,51,49,93,44,91,45,56,53,46,52,56,56,50,57,56,44,51,48,46,57,57,55,48,54,52,93,44,91,45,56,53,46,52,56,53,55,54,44,51,49,46,49,57,57,56,56,54,93,44,91,45,56,53,46,55,49,48,51,51,51,44,51,49,46,49,57,53,49,55,51,93,44,91,45,56,53,46,55,57,49,52,48,50,44,51,49,46,49,57,54,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,76,97,83,97,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,52,48,49,44,34,98,101,100,115,34,58,49,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,54,54,53,54,49,44,52,49,46,53,56,53,50,56,57,93,44,91,45,56,57,46,49,54,51,55,48,53,44,52,49,46,51,49,48,49,56,55,93,44,91,45,56,57,46,49,54,50,50,51,55,44,52,49,46,49,48,52,48,48,56,93,44,91,45,56,57,46,48,52,55,51,57,52,44,52,49,46,49,48,52,55,56,54,93,44,91,45,56,57,46,48,52,55,55,49,56,44,52,48,46,57,50,53,55,52,57,93,44,91,45,56,56,46,57,51,49,51,57,44,52,48,46,57,50,55,55,52,93,44,91,45,56,56,46,57,51,48,56,56,49,44,52,49,46,49,48,53,57,93,44,91,45,56,56,46,53,56,54,50,52,44,52,49,46,49,48,56,50,57,51,93,44,91,45,56,56,46,53,57,53,57,54,49,44,52,49,46,52,53,55,49,50,57,93,44,91,45,56,56,46,54,48,50,50,52,44,52,49,46,54,51,49,51,56,57,93,44,91,45,56,56,46,57,51,56,54,55,57,44,52,49,46,54,50,56,51,49,54,93,44,91,45,56,57,46,49,54,54,53,54,49,44,52,49,46,53,56,53,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,48,55,48,53,57,44,52,50,46,54,52,51,57,55,51,93,44,91,45,57,49,46,53,57,54,57,56,49,44,52,50,46,50,57,54,52,48,56,93,44,91,45,57,49,46,51,54,51,50,54,51,44,52,50,46,50,57,54,52,52,53,93,44,91,45,57,49,46,49,51,48,48,55,57,44,52,50,46,50,57,53,55,54,49,93,44,91,45,57,49,46,49,51,50,55,54,54,44,52,50,46,54,52,53,56,52,52,93,44,91,45,57,49,46,54,48,55,48,53,57,44,52,50,46,54,52,51,57,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,77,111,114,114,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,54,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,48,49,53,53,54,44,51,56,46,56,54,57,55,48,52,93,44,91,45,57,54,46,56,57,48,50,52,53,44,51,56,46,56,55,48,48,54,55,93,44,91,45,57,54,46,57,50,55,50,51,52,44,51,56,46,56,49,50,49,54,93,44,91,45,57,54,46,57,51,48,50,56,54,44,51,56,46,54,48,57,51,54,50,93,44,91,45,57,54,46,56,49,57,53,48,57,44,51,56,46,53,50,50,52,52,57,93,44,91,45,57,54,46,51,53,51,55,56,44,51,56,46,53,50,49,54,53,55,93,44,91,45,57,54,46,51,53,50,54,49,51,44,51,56,46,55,51,57,48,50,49,93,44,91,45,57,54,46,51,57,48,51,57,56,44,51,56,46,56,50,53,56,53,56,93,44,91,45,57,54,46,53,48,49,53,53,54,44,51,56,46,56,54,57,55,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,56,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,44,91,45,57,50,46,54,51,57,48,57,49,44,52,48,46,56,57,56,56,56,54,93,44,91,45,57,50,46,54,51,55,56,57,56,44,52,48,46,53,57,48,56,53,51,93,44,91,45,57,50,46,51,53,48,56,48,55,44,52,48,46,53,57,55,50,55,53,93,44,91,45,57,50,46,49,55,57,55,56,44,52,48,46,54,48,48,53,50,57,93,44,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,111,105,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,50,57,52,54,49,52,44,52,52,46,51,51,57,52,52,53,93,44,91,45,49,49,53,46,52,53,55,51,48,53,44,52,52,46,50,52,50,57,53,51,93,44,91,45,49,49,54,46,49,48,51,48,55,50,44,52,52,46,50,51,54,52,48,57,93,44,91,45,49,49,54,46,50,49,51,56,55,49,44,52,52,46,49,53,49,51,56,55,93,44,91,45,49,49,54,46,50,55,51,48,54,57,44,52,52,46,49,53,49,50,50,55,93,44,91,45,49,49,54,46,50,56,50,48,49,57,44,52,51,46,56,48,55,51,54,53,93,44,91,45,49,49,53,46,57,55,53,55,49,57,44,52,51,46,53,57,49,52,51,56,93,44,91,45,49,49,53,46,56,50,55,57,50,44,52,51,46,54,48,55,54,54,55,93,44,91,45,49,49,53,46,54,52,53,56,48,50,44,52,51,46,55,48,48,50,54,93,44,91,45,49,49,53,46,53,48,56,55,50,50,44,52,51,46,56,56,52,56,53,53,93,44,91,45,49,49,53,46,49,51,54,50,48,57,44,52,51,46,57,56,51,56,53,57,93,44,91,45,49,49,52,46,57,57,48,55,55,55,44,52,51,46,57,52,57,55,50,51,93,44,91,45,49,49,53,46,48,52,55,55,50,44,52,52,46,48,53,48,54,53,53,93,44,91,45,49,49,53,46,48,50,52,49,56,49,44,52,52,46,49,53,53,52,55,56,93,44,91,45,49,49,53,46,49,54,55,54,56,52,44,52,52,46,50,48,50,56,52,93,44,91,45,49,49,53,46,50,57,52,54,49,52,44,52,52,46,51,51,57,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,53,48,50,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,55,51,49,48,55,44,52,52,46,48,55,48,56,56,50,93,44,91,45,57,48,46,57,49,50,57,49,56,44,52,52,46,48,55,49,53,50,50,93,44,91,45,57,48,46,57,49,48,54,53,51,44,52,51,46,55,50,53,51,51,52,93,44,91,45,57,48,46,51,49,50,49,57,52,44,52,51,46,55,51,49,52,55,57,93,44,91,45,57,48,46,51,49,50,53,50,50,44,52,52,46,49,53,53,49,57,56,93,44,91,45,57,48,46,57,48,52,53,55,57,44,52,52,46,49,53,56,50,57,56,93,44,91,45,57,48,46,57,55,51,49,48,55,44,52,52,46,48,55,48,56,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,80,101,114,113,117,105,109,97,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,53,57,54,52,54,44,51,54,46,51,53,49,48,53,54,93,44,91,45,55,54,46,53,57,48,49,48,55,44,51,54,46,50,51,56,56,54,50,93,44,91,45,55,54,46,53,55,51,48,55,51,44,51,54,46,49,49,49,55,53,55,93,44,91,45,55,54,46,52,48,50,57,53,55,44,51,54,46,48,55,50,56,54,55,93,44,91,45,55,54,46,51,57,54,55,57,52,44,51,54,46,48,50,54,52,52,51,93,44,91,45,55,54,46,51,53,56,51,57,51,44,51,54,46,48,50,48,48,49,57,93,44,91,45,55,54,46,49,53,55,57,53,51,44,51,54,46,48,53,57,53,49,55,93,44,91,45,55,54,46,52,53,51,55,49,49,44,51,54,46,51,55,56,48,57,50,93,44,91,45,55,54,46,53,53,57,54,52,54,44,51,54,46,51,53,49,48,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,55,48,57,54,57,44,51,48,46,51,56,53,50,50,53,93,44,91,45,56,51,46,48,55,56,55,48,54,44,51,48,46,52,51,56,49,49,54,93,44,91,45,56,50,46,57,53,53,57,44,51,48,46,52,49,51,52,56,54,93,44,91,45,56,50,46,55,57,52,53,57,52,44,51,48,46,51,51,55,48,50,52,93,44,91,45,56,50,46,55,49,55,55,55,51,44,51,48,46,51,50,49,51,57,49,93,44,91,45,56,50,46,54,52,53,53,53,53,44,51,48,46,52,48,54,52,49,55,93,44,91,45,56,50,46,55,50,54,53,56,51,44,51,48,46,53,53,57,52,56,54,93,44,91,45,56,50,46,54,56,57,53,51,57,44,51,48,46,53,57,55,55,51,52,93,44,91,45,56,51,46,49,51,54,54,49,52,44,51,48,46,54,50,51,57,54,55,93,44,91,45,56,51,46,51,48,57,50,52,57,44,51,48,46,54,51,52,52,48,54,93,44,91,45,56,51,46,50,55,50,54,49,50,44,51,48,46,54,50,55,54,56,55,93,44,91,45,56,51,46,50,50,48,48,56,55,44,51,48,46,52,50,50,52,56,52,93,44,91,45,56,51,46,49,55,48,57,54,57,44,51,48,46,51,56,53,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,55,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,48,34,44,34,78,65,77,69,34,58,34,77,97,116,97,110,117,115,107,97,45,83,117,115,105,116,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,52,54,52,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,50,46,57,57,55,54,52,55,44,54,50,46,55,50,55,52,48,49,93,44,91,45,49,53,50,46,57,57,57,56,51,57,44,54,50,46,50,57,50,54,50,49,93,44,91,45,49,53,50,46,57,57,57,56,56,50,44,54,49,46,52,50,54,49,55,50,93,44,91,45,49,53,49,46,51,51,50,55,56,52,44,54,49,46,52,50,54,50,51,57,93,44,91,45,49,53,49,46,51,51,50,56,48,50,44,54,49,46,50,53,50,57,51,54,93,44,91,45,49,53,48,46,57,55,52,48,49,52,44,54,49,46,50,53,50,57,52,93,44,91,45,49,53,48,46,57,55,52,48,49,55,44,54,49,46,49,54,54,50,56,55,93,44,91,45,49,53,48,46,55,55,53,56,54,51,44,54,49,46,48,55,57,52,54,54,93,44,91,45,49,53,48,46,52,50,52,49,52,56,44,54,49,46,49,54,54,51,48,56,93,44,91,45,49,52,57,46,57,56,55,52,57,53,44,54,49,46,50,50,52,48,54,52,93,44,91,45,49,52,57,46,55,52,56,51,54,57,44,54,49,46,51,57,55,51,55,49,93,44,91,45,49,52,57,46,51,53,57,52,52,44,54,49,46,52,56,52,48,50,53,93,44,91,45,49,52,57,46,49,56,48,48,54,50,44,54,49,46,52,50,54,50,53,93,44,91,45,49,52,56,46,52,54,50,52,55,49,44,54,49,46,52,50,54,50,54,55,93,44,91,45,49,52,55,46,50,48,54,53,57,55,44,54,49,46,52,50,54,50,54,53,93,44,91,45,49,52,54,46,57,52,50,53,53,57,44,54,49,46,52,55,48,54,55,53,93,44,91,45,49,52,54,46,57,52,50,54,48,49,44,54,49,46,56,49,55,50,55,50,93,44,91,45,49,52,54,46,57,55,57,56,48,55,44,54,50,46,50,53,48,52,57,55,93,44,91,45,49,52,54,46,52,50,51,57,56,52,44,54,50,46,50,53,48,53,49,49,93,44,91,45,49,52,54,46,52,51,54,56,57,57,44,54,50,46,56,53,54,57,57,49,93,44,91,45,49,52,54,46,52,57,52,50,57,54,44,54,50,46,57,53,55,56,54,52,93,44,91,45,49,52,54,46,52,57,52,51,49,49,44,54,51,46,49,54,56,57,55,53,93,44,91,45,49,52,54,46,52,56,57,53,52,49,44,54,51,46,52,56,50,57,49,51,93,44,91,45,49,52,54,46,57,57,57,57,54,54,44,54,51,46,52,55,57,54,52,53,93,44,91,45,49,52,56,46,48,50,53,54,50,55,44,54,51,46,52,55,55,54,48,57,93,44,91,45,49,52,56,46,48,50,53,54,49,56,44,54,51,46,51,51,51,50,51,51,93,44,91,45,49,52,57,46,53,50,54,49,52,56,44,54,51,46,51,51,51,50,49,55,93,44,91,45,49,53,48,46,55,50,48,57,49,54,44,54,51,46,48,54,51,49,56,52,93,44,91,45,49,53,49,46,56,57,52,48,49,53,44,54,50,46,55,57,56,48,53,56,93,44,91,45,49,53,49,46,56,57,51,55,56,52,44,54,50,46,55,50,53,56,54,52,93,44,91,45,49,53,50,46,57,57,55,54,52,55,44,54,50,46,55,50,55,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,54,49,54,44,34,98,101,100,115,34,58,51,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,55,56,53,56,57,44,52,48,46,51,55,57,53,50,52,93,44,91,45,56,53,46,53,55,54,49,57,55,44,52,48,46,48,55,55,49,52,51,93,44,91,45,56,53,46,50,49,52,51,56,54,44,52,48,46,48,55,54,56,56,57,93,44,91,45,56,53,46,50,49,56,55,53,56,44,52,48,46,51,48,54,55,48,54,93,44,91,45,56,53,46,50,49,57,57,48,49,44,52,48,46,51,55,57,48,51,52,93,44,91,45,56,53,46,52,52,52,51,51,44,52,48,46,51,55,57,49,52,93,44,91,45,56,53,46,53,55,56,53,56,57,44,52,48,46,51,55,57,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,101,118,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,57,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,51,55,51,50,57,44,50,57,46,53,57,49,49,57,54,93,44,91,45,56,51,46,48,54,56,53,50,50,44,50,57,46,51,52,51,57,53,51,93,44,91,45,56,51,46,50,51,57,56,53,57,44,50,57,46,50,53,48,57,57,93,44,91,45,56,51,46,49,55,49,56,48,54,44,50,57,46,49,56,53,57,50,49,93,44,91,45,56,51,46,49,52,52,48,56,44,50,57,46,48,55,50,56,52,93,44,91,45,56,51,46,48,55,54,44,50,57,46,48,52,49,56,49,57,93,44,91,45,56,50,46,57,53,48,48,55,56,44,50,57,46,48,55,54,48,53,57,93,44,91,45,56,50,46,56,53,49,50,55,56,44,50,57,46,48,49,55,51,56,57,93,44,91,45,56,50,46,56,52,56,50,52,56,44,50,56,46,57,49,52,53,50,57,93,44,91,45,56,50,46,55,49,49,53,51,44,50,57,46,48,51,48,57,56,56,93,44,91,45,56,50,46,53,51,53,53,57,49,44,50,57,46,48,52,52,56,53,53,93,44,91,45,56,50,46,53,51,52,56,54,44,50,57,46,50,49,52,54,56,93,44,91,45,56,50,46,52,48,51,50,51,55,44,50,57,46,50,49,53,54,50,51,93,44,91,45,56,50,46,52,48,54,54,50,44,50,57,46,52,56,53,48,52,56,93,44,91,45,56,50,46,53,53,54,55,54,54,44,50,57,46,52,56,48,48,53,53,93,44,91,45,56,50,46,54,53,54,51,48,49,44,50,57,46,53,54,52,56,49,49,93,44,91,45,56,50,46,57,51,55,51,50,57,44,50,57,46,53,57,49,49,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,71,117,114,97,98,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,56,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,52,50,52,50,57,44,49,56,46,50,57,51,52,54,57,93,44,91,45,54,54,46,48,50,49,55,52,55,44,49,56,46,51,48,53,48,51,52,93,44,91,45,54,53,46,57,57,55,54,53,44,49,56,46,50,48,54,57,57,50,93,44,91,45,54,53,46,57,53,49,48,49,57,44,49,56,46,50,50,57,50,57,50,93,44,91,45,54,53,46,57,49,56,53,51,53,44,49,56,46,50,55,48,49,51,93,44,91,45,54,53,46,57,52,50,52,50,57,44,49,56,46,50,57,51,52,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,97,116,105,108,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,51,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,56,51,54,54,57,51,44,49,56,46,53,52,48,50,48,54,93,44,91,45,54,54,46,56,50,52,50,50,51,44,49,56,46,51,52,50,57,57,56,93,44,91,45,54,54,46,56,50,54,49,50,56,44,49,56,46,51,50,51,51,56,50,93,44,91,45,54,54,46,55,55,48,48,55,50,44,49,56,46,51,50,53,48,49,51,93,44,91,45,54,54,46,55,54,52,54,57,50,44,49,56,46,53,51,56,51,51,93,44,91,45,54,54,46,56,51,54,54,57,51,44,49,56,46,53,52,48,50,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,54,53,51,44,34,98,101,100,115,34,58,49,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,48,54,49,51,53,44,51,48,46,49,55,55,57,52,49,93,44,91,45,56,57,46,51,52,48,56,52,55,44,51,48,46,51,53,55,57,57,53,93,44,91,45,56,57,46,51,52,49,52,52,54,44,51,48,46,54,52,55,55,50,93,44,91,45,56,57,46,53,52,52,50,51,50,44,51,48,46,54,52,56,51,54,56,93,44,91,45,56,57,46,53,52,52,53,49,44,51,48,46,53,49,54,56,54,50,93,44,91,45,56,57,46,54,57,48,48,51,53,44,51,48,46,52,53,57,51,51,51,93,44,91,45,56,57,46,54,51,49,54,49,52,44,51,48,46,50,53,55,48,49,51,93,44,91,45,56,57,46,52,57,52,57,55,51,44,51,48,46,49,54,48,55,53,93,44,91,45,56,57,46,51,48,54,49,51,53,44,51,48,46,49,55,55,57,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,53,34,44,34,78,65,77,69,34,58,34,87,105,108,99,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,56,48,49,55,54,44,51,49,46,56,52,55,51,49,50,93,44,91,45,56,51,46,49,55,55,52,54,57,44,51,49,46,56,52,55,56,53,55,93,44,91,45,56,51,46,50,48,53,55,51,57,44,51,49,46,57,48,48,51,50,53,93,44,91,45,56,51,46,51,51,55,51,49,51,44,51,50,46,49,48,53,56,56,53,93,44,91,45,56,51,46,54,48,56,53,52,55,44,51,50,46,49,49,56,52,48,53,93,44,91,45,56,51,46,54,48,57,54,54,51,44,51,50,46,48,50,55,57,51,56,93,44,91,45,56,51,46,54,49,50,50,53,54,44,51,49,46,56,53,52,48,56,57,93,44,91,45,56,51,46,52,56,48,49,55,54,44,51,49,46,56,52,55,51,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,82,101,100,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,49,56,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,49,52,54,57,44,51,50,46,50,51,55,53,50,54,93,44,91,45,57,51,46,53,50,51,52,49,54,44,51,50,46,49,55,54,57,57,49,93,44,91,45,57,51,46,53,52,49,51,53,51,44,51,50,46,49,48,53,56,56,93,44,91,45,57,51,46,51,53,53,52,53,50,44,51,49,46,57,51,50,50,50,50,93,44,91,45,57,51,46,50,51,56,52,55,44,51,49,46,57,55,50,55,56,49,93,44,91,45,57,51,46,49,51,54,49,50,55,44,51,50,46,48,53,54,50,50,52,93,44,91,45,57,51,46,49,56,55,49,54,50,44,51,50,46,49,52,56,52,49,50,93,44,91,45,57,51,46,50,49,51,57,56,56,44,51,50,46,50,51,54,48,54,53,93,44,91,45,57,51,46,52,50,56,49,57,44,51,50,46,50,51,53,56,57,55,93,44,91,45,57,51,46,52,55,49,50,52,57,44,51,50,46,50,51,55,49,56,54,93,44,91,45,57,51,46,54,49,52,54,57,44,51,50,46,50,51,55,53,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,49,56,53,44,34,98,101,100,115,34,58,50,48,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,52,49,55,49,49,44,51,54,46,49,56,54,51,55,56,93,44,91,45,56,52,46,49,57,50,50,56,55,44,51,53,46,57,57,53,52,56,56,93,44,91,45,56,52,46,50,55,49,53,56,55,44,51,53,46,57,49,48,49,54,53,93,44,91,45,56,52,46,50,54,51,51,56,51,44,51,53,46,56,57,54,57,52,93,44,91,45,56,52,46,49,54,54,50,54,55,44,51,53,46,56,48,53,49,48,54,93,44,91,45,56,51,46,57,53,48,52,56,49,44,51,53,46,56,55,53,51,54,50,93,44,91,45,56,51,46,55,57,52,50,55,53,44,51,53,46,56,56,55,49,50,53,93,44,91,45,56,51,46,54,53,52,54,48,53,44,51,53,46,57,55,49,57,51,55,93,44,91,45,56,51,46,54,55,51,50,57,55,44,51,54,46,48,51,56,52,56,54,93,44,91,45,56,51,46,54,54,55,52,54,44,51,54,46,48,56,48,53,56,55,93,44,91,45,56,51,46,55,51,50,55,48,52,44,51,54,46,49,54,52,53,56,51,93,44,91,45,56,51,46,57,52,49,55,49,49,44,51,54,46,49,56,54,51,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,79,120,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,51,50,53,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,48,56,51,57,50,56,44,52,53,46,51,48,53,52,56,52,93,44,91,45,55,49,46,48,51,51,53,50,52,44,52,52,46,54,57,55,54,51,55,93,44,91,45,55,49,46,48,48,57,57,55,54,44,52,52,46,50,56,52,56,57,57,93,44,91,45,55,48,46,57,56,57,49,50,50,44,52,51,46,55,57,50,49,49,51,93,44,91,45,55,48,46,55,56,50,57,56,52,44,52,51,46,56,49,52,49,52,55,93,44,91,45,55,48,46,55,49,53,52,49,56,44,52,51,46,57,54,49,56,49,53,93,44,91,45,55,48,46,56,50,49,56,48,51,44,52,52,46,48,55,55,48,56,57,93,44,91,45,55,48,46,54,50,52,51,50,57,44,52,52,46,49,55,49,48,51,54,93,44,91,45,55,48,46,54,48,51,55,56,52,44,52,52,46,48,52,49,53,51,54,93,44,91,45,55,48,46,52,56,48,48,55,56,44,52,52,46,48,51,50,48,55,56,93,44,91,45,55,48,46,51,51,52,48,57,52,44,52,52,46,50,49,48,55,53,51,93,44,91,45,55,48,46,50,51,56,57,48,52,44,52,52,46,52,53,56,57,52,50,93,44,91,45,55,48,46,50,56,48,55,52,56,44,52,52,46,53,54,57,54,49,57,93,44,91,45,55,48,46,53,49,48,53,57,56,44,52,52,46,54,50,55,50,49,54,93,44,91,45,55,48,46,54,49,53,48,51,44,52,52,46,55,57,53,54,51,52,93,44,91,45,55,48,46,55,54,57,50,50,56,44,52,52,46,55,51,50,50,50,56,93,44,91,45,55,48,46,55,55,57,56,52,50,44,52,53,46,48,49,56,51,55,57,93,44,91,45,55,48,46,56,51,53,49,52,50,44,52,53,46,50,55,55,48,52,55,93,44,91,45,55,48,46,57,56,57,49,50,44,52,53,46,51,51,52,49,51,55,93,44,91,45,55,49,46,48,56,51,57,50,56,44,52,53,46,51,48,53,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,50,48,48,51,44,34,98,101,100,115,34,58,51,48,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,56,48,51,51,44,51,56,46,56,52,55,50,48,55,93,44,91,45,57,52,46,49,49,57,48,57,54,44,51,56,46,56,51,51,49,54,55,93,44,91,45,57,52,46,49,49,52,49,55,53,44,51,56,46,57,49,55,51,48,52,93,44,91,45,57,52,46,49,48,52,56,50,51,44,51,57,46,49,52,51,53,48,55,93,44,91,45,57,52,46,50,49,50,53,49,53,44,51,57,46,50,48,55,48,56,54,93,44,91,45,57,52,46,50,56,57,56,55,51,44,51,57,46,50,51,55,49,48,55,93,44,91,45,57,52,46,52,54,49,53,57,44,51,57,46,49,50,48,51,55,50,93,44,91,45,57,52,46,54,48,55,51,53,52,44,51,57,46,49,49,51,52,52,52,93,44,91,45,57,52,46,54,48,55,51,56,50,44,51,57,46,48,52,52,48,56,54,93,44,91,45,57,52,46,54,48,56,48,51,51,44,51,56,46,56,52,55,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,49,34,44,34,78,65,77,69,34,58,34,84,111,119,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,51,54,51,57,53,44,51,52,46,57,56,55,53,54,52,93,44,91,45,56,51,46,56,48,52,57,54,50,44,51,52,46,56,57,53,57,51,52,93,44,91,45,56,51,46,55,56,48,51,52,54,44,51,52,46,55,57,50,57,48,53,93,44,91,45,56,51,46,54,56,49,53,57,54,44,51,52,46,56,48,48,56,56,50,93,44,91,45,56,51,46,54,53,50,49,57,52,44,51,52,46,56,50,50,57,57,51,93,44,91,45,56,51,46,54,53,54,50,57,55,44,51,52,46,56,55,56,56,50,51,93,44,91,45,56,51,46,53,52,57,51,55,54,44,51,52,46,57,57,50,51,57,51,93,44,91,45,56,51,46,57,51,54,51,57,53,44,51,52,46,57,56,55,53,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,83,109,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,54,51,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,44,91,45,56,57,46,55,51,48,52,50,52,44,51,50,46,50,50,50,48,51,57,93,44,91,45,56,57,46,55,51,48,48,54,54,44,51,50,46,48,52,55,48,55,50,93,44,91,45,56,57,46,54,53,52,52,50,54,44,51,50,46,48,49,51,54,55,56,93,44,91,45,56,57,46,54,53,51,48,50,53,44,51,49,46,55,56,48,54,53,51,93,44,91,45,56,57,46,52,48,49,50,50,55,44,51,49,46,55,57,54,56,54,51,93,44,91,45,56,57,46,51,49,54,53,54,44,51,49,46,56,48,50,48,57,93,44,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,80,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,56,57,55,55,57,44,52,52,46,49,53,50,53,57,93,44,91,45,49,49,54,46,57,56,51,56,50,55,44,52,51,46,56,56,48,48,52,54,93,44,91,45,49,49,54,46,56,53,51,49,53,52,44,52,51,46,55,57,50,55,49,93,44,91,45,49,49,54,46,55,49,50,54,55,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,55,49,50,53,48,49,44,52,51,46,57,56,49,51,50,54,93,44,91,45,49,49,54,46,53,55,50,50,50,52,44,52,51,46,57,56,48,52,56,53,93,44,91,45,49,49,54,46,52,53,50,48,54,56,44,52,52,46,49,53,49,52,54,53,93,44,91,45,49,49,54,46,56,57,55,55,57,44,52,52,46,49,53,50,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,83,104,111,115,104,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,50,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,51,50,57,53,51,56,44,52,55,46,56,57,48,51,57,51,93,44,91,45,49,49,54,46,51,50,57,52,48,54,44,52,55,46,52,49,52,48,49,49,93,44,91,45,49,49,54,46,51,50,57,52,49,56,44,52,55,46,48,50,49,57,49,53,93,44,91,45,49,49,54,46,51,50,57,52,51,54,44,52,54,46,57,51,52,54,54,57,93,44,91,45,49,49,52,46,57,53,57,51,49,55,44,52,54,46,57,51,50,56,57,56,93,44,91,45,49,49,53,46,48,52,55,56,53,55,44,52,54,46,57,54,57,53,51,50,93,44,91,45,49,49,53,46,51,52,48,56,52,57,44,52,55,46,50,54,50,56,53,93,44,91,45,49,49,53,46,55,52,54,54,49,57,44,52,55,46,52,52,50,51,49,49,93,44,91,45,49,49,53,46,54,50,57,52,56,56,44,52,55,46,52,55,57,54,49,93,44,91,45,49,49,53,46,55,50,50,55,49,52,44,52,55,46,54,57,52,56,53,53,93,44,91,45,49,49,53,46,56,50,51,55,55,52,44,52,55,46,55,53,50,54,49,49,93,44,91,45,49,49,54,46,48,52,57,49,48,56,44,52,55,46,57,55,55,51,51,52,93,44,91,45,49,49,54,46,50,51,51,49,49,51,44,52,56,46,48,54,56,56,57,93,44,91,45,49,49,54,46,51,50,57,54,48,49,44,52,56,46,48,49,55,55,50,50,93,44,91,45,49,49,54,46,51,50,57,53,51,56,44,52,55,46,56,57,48,51,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,72,121,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,50,50,49,51,49,44,51,53,46,51,53,51,54,50,51,93,44,91,45,55,54,46,52,52,53,52,49,56,44,51,53,46,51,50,57,50,54,52,93,44,91,45,55,54,46,51,48,52,49,51,54,44,51,53,46,50,48,49,52,53,51,93,44,91,45,55,54,46,48,54,53,55,55,52,44,51,53,46,49,50,52,57,51,55,93,44,91,45,55,54,46,48,48,54,57,51,54,44,51,53,46,48,48,54,48,51,49,93,44,91,45,55,53,46,55,51,54,54,50,44,51,53,46,49,52,48,53,54,53,93,44,91,45,55,53,46,56,49,52,48,50,49,44,51,53,46,53,48,48,49,56,50,93,44,91,45,55,53,46,57,48,49,51,52,50,44,51,53,46,54,54,56,57,53,50,93,44,91,45,55,54,46,48,50,55,52,55,57,44,51,53,46,54,54,56,56,52,57,93,44,91,45,55,54,46,52,48,53,57,55,49,44,51,53,46,54,57,55,53,55,57,93,44,91,45,55,54,46,54,51,55,53,49,51,44,51,53,46,55,48,53,50,49,53,93,44,91,45,55,54,46,53,56,56,49,57,49,44,51,53,46,54,50,48,54,53,52,93,44,91,45,55,54,46,53,56,53,51,50,44,51,53,46,52,53,53,48,55,53,93,44,91,45,55,54,46,53,50,50,49,51,49,44,51,53,46,51,53,51,54,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,52,48,57,50,44,52,51,46,50,49,50,56,49,50,93,44,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,44,91,45,57,50,46,53,53,52,50,49,49,44,52,50,46,57,48,55,49,49,50,93,44,91,45,57,50,46,53,53,52,51,56,49,44,52,51,46,50,49,50,56,49,51,93,44,91,45,57,51,46,48,50,52,48,57,50,44,52,51,46,50,49,50,56,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,77,99,67,114,97,99,107,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,50,56,52,44,34,98,101,100,115,34,58,49,48,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,51,51,52,48,49,44,51,55,46,50,50,52,57,57,49,93,44,91,45,56,56,46,56,49,53,57,53,50,44,51,54,46,57,53,52,49,93,44,91,45,56,56,46,56,49,50,56,57,55,44,51,54,46,57,52,54,56,54,52,93,44,91,45,56,56,46,52,56,52,49,48,51,44,51,54,46,57,52,50,48,57,54,93,44,91,45,56,56,46,52,56,50,57,53,55,44,51,55,46,48,50,50,53,54,54,93,44,91,45,56,56,46,53,54,54,48,54,49,44,51,55,46,48,55,53,50,48,52,93,44,91,45,56,56,46,57,50,55,56,57,44,51,55,46,50,50,54,51,52,50,93,44,91,45,56,56,46,57,51,51,52,48,49,44,51,55,46,50,50,52,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,53,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,50,56,48,49,54,44,51,55,46,55,57,57,49,56,56,93,44,91,45,56,56,46,49,54,48,51,56,57,44,51,55,46,54,53,54,49,51,49,93,44,91,45,56,56,46,49,51,51,52,51,52,44,51,55,46,53,55,52,51,51,56,93,44,91,45,56,56,46,48,54,49,51,51,50,44,51,55,46,53,48,53,51,51,50,93,44,91,45,56,55,46,57,51,50,57,53,50,44,51,55,46,52,56,48,48,53,50,93,44,91,45,56,55,46,55,51,52,53,52,53,44,51,55,46,54,51,56,51,55,54,93,44,91,45,56,55,46,57,50,55,48,54,56,44,51,55,46,57,48,49,54,56,53,93,44,91,45,56,55,46,57,48,54,57,51,57,44,51,55,46,56,48,55,53,57,51,93,44,91,45,56,56,46,48,50,56,48,49,54,44,51,55,46,55,57,57,49,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,84,117,114,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,54,52,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,48,49,52,53,44,52,51,46,52,57,57,55,56,51,93,44,91,45,57,55,46,51,57,57,49,57,49,44,52,51,46,49,54,57,52,49,57,93,44,91,45,57,55,46,49,54,48,53,52,52,44,52,51,46,49,54,57,57,55,56,93,44,91,45,57,55,46,49,54,48,53,52,51,44,52,51,46,48,56,51,49,52,53,93,44,91,45,57,54,46,57,50,52,49,52,50,44,52,51,46,48,56,51,55,51,51,93,44,91,45,57,54,46,57,50,52,56,52,49,44,52,51,46,53,48,48,48,48,55,93,44,91,45,57,55,46,49,50,57,52,55,56,44,52,51,46,52,57,57,54,56,51,93,44,91,45,57,55,46,52,48,49,52,53,44,52,51,46,52,57,57,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,99,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,51,54,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,51,52,53,56,53,44,51,54,46,48,56,53,48,57,52,93,44,91,45,56,51,46,51,49,48,55,56,50,44,51,53,46,56,57,53,56,52,54,93,44,91,45,56,51,46,50,53,53,51,52,51,44,51,53,46,55,49,53,48,56,52,93,44,91,45,56,51,46,48,55,51,57,49,56,44,51,53,46,55,57,48,48,53,53,93,44,91,45,56,50,46,57,54,49,55,53,52,44,51,53,46,55,57,48,57,53,57,93,44,91,45,56,50,46,56,57,56,51,49,55,44,51,53,46,57,52,52,57,54,55,93,44,91,45,56,51,46,49,54,54,48,56,53,44,51,54,46,49,56,48,56,57,52,93,44,91,45,56,51,46,50,51,52,53,56,53,44,51,54,46,48,56,53,48,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,56,53,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,55,50,49,48,56,44,51,54,46,53,57,55,50,56,52,93,44,91,45,56,51,46,51,57,56,51,48,51,44,51,54,46,53,51,52,56,56,53,93,44,91,45,56,51,46,51,56,54,56,44,51,54,46,52,49,51,49,56,54,93,44,91,45,56,51,46,50,56,48,53,57,53,44,51,54,46,51,57,52,54,56,57,93,44,91,45,56,51,46,49,49,57,51,57,51,44,51,54,46,53,49,52,50,57,93,44,91,45,56,50,46,56,51,48,52,51,51,44,51,54,46,53,57,51,55,54,49,93,44,91,45,56,50,46,57,56,53,49,50,52,44,51,54,46,53,57,51,55,50,57,93,44,91,45,56,51,46,52,55,50,49,48,56,44,51,54,46,53,57,55,50,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,55,49,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,54,50,53,55,50,44,51,53,46,51,56,48,57,57,52,93,44,91,45,56,56,46,51,56,48,53,48,56,44,51,52,46,57,57,53,54,49,93,44,91,45,56,56,46,51,54,51,53,51,49,44,51,52,46,57,57,53,52,55,53,93,44,91,45,56,56,46,50,48,48,48,54,52,44,51,52,46,57,57,53,54,51,52,93,44,91,45,56,55,46,57,56,52,57,49,54,44,51,53,46,48,48,53,57,51,51,93,44,91,45,56,55,46,57,56,49,53,56,53,44,51,53,46,50,57,53,54,55,56,93,44,91,45,56,56,46,48,50,52,55,52,49,44,51,53,46,51,57,50,51,48,55,93,44,91,45,56,56,46,49,56,57,54,54,49,44,51,53,46,51,56,52,51,48,51,93,44,91,45,56,56,46,50,52,49,54,55,55,44,51,53,46,52,50,51,50,54,51,93,44,91,45,56,56,46,51,54,48,56,50,57,44,51,53,46,52,49,56,57,55,50,93,44,91,45,56,56,46,51,54,50,53,55,50,44,51,53,46,51,56,48,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,54,50,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,53,52,55,57,51,44,51,52,46,50,51,48,57,49,51,93,44,91,45,55,57,46,52,57,49,55,49,52,44,51,51,46,57,52,54,53,50,50,93,44,91,45,55,57,46,51,50,52,51,49,55,44,51,51,46,55,57,57,49,50,51,93,44,91,45,55,57,46,51,49,55,48,52,49,44,51,51,46,55,55,57,56,55,56,93,44,91,45,55,57,46,49,57,48,50,54,52,44,51,51,46,55,48,53,55,56,55,93,44,91,45,55,57,46,51,51,50,52,53,56,44,51,51,46,57,57,52,57,57,55,93,44,91,45,55,57,46,49,50,56,49,54,53,44,51,52,46,50,53,51,54,53,50,93,44,91,45,55,57,46,52,56,48,55,49,50,44,51,52,46,50,56,56,48,56,49,93,44,91,45,55,57,46,53,52,55,57,51,44,51,52,46,50,51,48,57,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,71,117,97,121,97,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,55,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,53,51,49,52,54,44,49,56,46,49,48,55,50,57,51,93,44,91,45,54,54,46,49,54,54,49,52,53,44,49,56,46,48,53,48,48,54,51,93,44,91,45,54,54,46,50,50,53,50,55,53,44,49,55,46,57,50,52,54,53,50,93,44,91,45,54,54,46,49,56,55,51,52,50,44,49,55,46,56,55,55,48,51,54,93,44,91,45,54,54,46,48,54,52,53,48,51,44,49,55,46,57,48,52,56,50,53,93,44,91,45,54,54,46,48,56,50,50,54,51,44,49,56,46,48,51,50,57,53,56,93,44,91,45,54,54,46,48,53,51,49,52,54,44,49,56,46,49,48,55,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,52,53,55,44,34,98,101,100,115,34,58,49,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,51,53,57,48,56,44,51,49,46,48,48,50,48,52,55,93,44,91,45,57,48,46,50,53,57,53,53,53,44,51,49,46,48,48,48,54,55,57,93,44,91,45,57,48,46,51,52,55,50,53,53,44,51,49,46,48,48,48,53,51,93,44,91,45,57,48,46,51,52,54,55,49,44,51,48,46,57,48,53,52,50,55,93,44,91,45,57,48,46,50,53,53,54,52,56,44,51,48,46,55,49,49,57,48,53,93,44,91,45,56,57,46,57,57,52,50,48,49,44,51,48,46,54,54,53,52,51,93,44,91,45,56,57,46,56,52,50,51,51,44,51,48,46,54,54,54,48,49,53,93,44,91,45,56,57,46,55,50,56,49,49,57,44,51,49,46,48,48,50,51,93,44,91,45,56,57,46,56,51,53,57,48,56,44,51,49,46,48,48,50,48,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,55,34,44,34,78,65,77,69,34,58,34,83,116,111,100,100,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,53,49,50,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,53,56,53,54,51,44,51,54,46,57,50,50,48,52,51,93,44,91,45,57,48,46,49,53,56,48,53,44,51,54,46,55,50,50,57,55,54,93,44,91,45,57,48,46,49,52,56,51,57,56,44,51,54,46,54,51,48,54,53,54,93,44,91,45,56,57,46,57,53,56,55,56,54,44,51,54,46,54,50,57,51,51,49,93,44,91,45,56,57,46,55,48,48,57,53,50,44,51,54,46,54,50,55,52,53,51,93,44,91,45,56,57,46,54,57,49,54,48,51,44,51,54,46,56,53,57,53,49,55,93,44,91,45,56,57,46,54,56,54,54,50,44,51,54,46,57,50,56,50,57,51,93,44,91,45,56,57,46,55,56,54,56,49,57,44,51,55,46,48,56,55,56,50,52,93,44,91,45,56,57,46,55,54,53,50,49,49,44,51,55,46,49,50,54,48,54,54,93,44,91,45,56,57,46,56,54,54,54,50,55,44,51,55,46,49,50,54,50,50,55,93,44,91,45,56,57,46,57,53,57,49,57,54,44,51,55,46,48,53,52,51,56,93,44,91,45,57,48,46,49,49,49,50,52,55,44,51,55,46,48,52,49,50,48,53,93,44,91,45,57,48,46,50,53,56,53,54,51,44,51,54,46,57,50,50,48,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,68,111,111,108,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,52,56,51,55,57,44,51,50,46,50,57,48,57,55,93,44,91,45,56,51,46,57,53,56,56,49,55,44,51,50,46,50,53,50,49,48,53,93,44,91,45,56,52,46,48,50,55,54,44,51,50,46,49,55,49,49,54,53,93,44,91,45,56,51,46,57,54,49,50,55,56,44,51,50,46,48,51,48,53,57,53,93,44,91,45,56,51,46,54,48,57,54,54,51,44,51,50,46,48,50,55,57,51,56,93,44,91,45,56,51,46,54,48,56,53,52,55,44,51,50,46,49,49,56,52,48,53,93,44,91,45,56,51,46,54,49,53,53,55,57,44,51,50,46,50,56,56,53,53,54,93,44,91,45,56,51,46,56,52,56,51,55,57,44,51,50,46,50,57,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,83,116,101,97,114,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,56,49,57,44,34,98,101,100,115,34,58,53,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,51,57,54,55,44,52,53,46,55,53,56,56,57,49,93,44,91,45,57,53,46,49,51,49,55,51,44,52,53,46,52,49,50,52,48,50,93,44,91,45,57,52,46,55,54,50,57,51,52,44,52,53,46,52,49,50,56,54,49,93,44,91,45,57,52,46,55,54,51,48,56,44,52,53,46,51,50,54,49,93,44,91,45,57,52,46,51,56,51,53,53,54,44,52,53,46,51,50,54,55,48,53,93,44,91,45,57,52,46,50,54,48,56,50,49,44,52,53,46,50,56,51,57,52,49,93,44,91,45,57,52,46,49,49,54,55,54,53,44,52,53,46,51,50,56,48,49,57,93,44,91,45,57,52,46,48,52,55,51,50,55,44,52,53,46,52,50,50,56,54,49,93,44,91,45,57,52,46,49,52,57,52,54,55,44,52,53,46,53,53,57,48,54,54,93,44,91,45,57,52,46,50,55,49,55,55,54,44,52,53,46,55,55,53,50,48,56,93,44,91,45,57,52,46,54,52,51,57,57,44,52,53,46,55,55,51,57,53,93,44,91,45,57,53,46,49,51,57,55,51,49,44,52,53,46,55,55,51,52,49,54,93,44,91,45,57,53,46,49,51,57,54,55,44,52,53,46,55,53,56,56,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,83,97,117,110,100,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,48,50,52,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,48,53,56,54,50,44,52,49,46,52,53,51,51,56,57,93,44,91,45,57,54,46,57,48,56,53,48,55,44,52,49,46,48,52,54,48,57,49,93,44,91,45,57,54,46,52,54,51,56,54,57,44,52,49,46,48,52,53,48,56,51,93,44,91,45,57,54,46,52,54,51,56,54,49,44,52,49,46,48,49,54,48,54,57,93,44,91,45,57,54,46,51,49,57,49,57,49,44,52,49,46,48,52,52,57,57,56,93,44,91,45,57,54,46,51,50,55,51,57,57,44,52,49,46,49,56,57,57,57,57,93,44,91,45,57,54,46,52,55,48,55,50,44,52,49,46,51,57,51,50,51,57,93,44,91,45,57,54,46,53,54,56,57,55,55,44,52,49,46,52,51,51,50,52,93,44,91,45,57,54,46,57,48,53,56,54,50,44,52,49,46,52,53,51,51,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,83,104,101,114,98,117,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,50,51,49,44,34,98,101,100,115,34,58,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,49,48,55,48,52,44,52,53,46,53,53,56,55,55,50,93,44,91,45,57,51,46,55,53,57,52,51,53,44,52,53,46,53,53,57,54,52,54,93,44,91,45,57,52,46,49,52,57,52,54,55,44,52,53,46,53,53,57,48,54,54,93,44,91,45,57,52,46,48,52,55,51,50,55,44,52,53,46,52,50,50,56,54,49,93,44,91,45,57,51,46,55,53,54,54,49,44,52,53,46,50,57,52,55,50,49,93,44,91,45,57,51,46,53,55,57,51,57,44,52,53,46,50,57,50,49,50,50,93,44,91,45,57,51,46,53,50,49,54,53,51,44,52,53,46,50,52,54,54,49,56,93,44,91,45,57,51,46,53,49,50,49,57,44,52,53,46,50,52,53,54,56,51,93,44,91,45,57,51,46,53,49,48,48,55,44,52,53,46,52,49,52,55,57,56,93,44,91,45,57,51,46,53,49,48,55,48,52,44,52,53,46,53,53,56,55,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,68,97,118,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,48,49,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,50,53,50,52,50,44,52,51,46,56,53,49,48,53,56,93,44,91,45,57,56,46,51,50,48,53,57,53,44,52,51,46,52,57,56,54,53,49,93,44,91,45,57,56,46,49,49,52,55,53,56,44,52,51,46,52,57,56,50,57,55,93,44,91,45,57,55,46,57,54,52,53,56,54,44,52,51,46,52,57,57,48,52,49,93,44,91,45,57,55,46,57,54,55,50,55,57,44,52,51,46,56,53,48,54,56,54,93,44,91,45,57,56,46,51,50,53,50,52,50,44,52,51,46,56,53,49,48,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,105,98,111,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,49,51,44,34,98,101,100,115,34,58,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,55,50,49,48,56,44,51,54,46,53,57,55,50,56,52,93,44,91,45,56,51,46,54,55,53,51,57,53,44,51,54,46,54,48,48,55,56,52,93,44,91,45,56,51,46,57,51,48,55,54,50,44,51,54,46,53,56,55,54,57,49,93,44,91,45,56,51,46,57,56,55,54,49,53,44,51,54,46,53,56,57,52,55,49,93,44,91,45,56,51,46,57,48,53,54,51,56,44,51,54,46,52,49,57,57,55,57,93,44,91,45,56,51,46,54,54,55,52,48,56,44,51,54,46,51,52,52,51,56,49,93,44,91,45,56,51,46,52,54,54,48,48,50,44,51,54,46,51,54,57,49,56,54,93,44,91,45,56,51,46,51,56,54,56,44,51,54,46,52,49,51,49,56,54,93,44,91,45,56,51,46,51,57,56,51,48,51,44,51,54,46,53,51,52,56,56,53,93,44,91,45,56,51,46,52,55,50,49,48,56,44,51,54,46,53,57,55,50,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,51,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,97,103,117,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,48,57,44,34,98,101,100,115,34,58,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,55,55,56,54,44,51,51,46,56,56,57,56,50,53,93,44,91,45,57,55,46,57,55,56,57,49,57,44,51,51,46,52,54,55,49,50,57,93,44,91,45,57,55,46,57,49,56,49,56,57,44,51,51,46,52,51,51,56,55,51,93,44,91,45,57,55,46,52,56,55,48,54,53,44,51,51,46,52,51,51,54,56,49,93,44,91,45,57,55,46,52,56,52,49,54,51,44,51,51,46,57,49,53,53,49,93,44,91,45,57,55,46,53,54,48,56,53,56,44,51,51,46,56,57,57,54,52,53,93,44,91,45,57,55,46,54,54,49,52,56,57,44,51,51,46,57,57,48,56,49,56,93,44,91,45,57,55,46,56,55,55,51,56,55,44,51,51,46,56,53,48,50,51,54,93,44,91,45,57,55,46,57,55,55,56,54,44,51,51,46,56,56,57,56,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,51,52,44,34,98,101,100,115,34,58,49,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,57,53,56,55,49,44,51,50,46,48,55,57,50,51,53,93,44,91,45,57,57,46,50,48,50,55,54,56,44,51,49,46,52,54,55,50,51,52,93,44,91,45,57,57,46,48,57,48,54,50,50,44,51,49,46,52,54,48,57,50,55,93,44,91,45,57,56,46,57,57,49,54,48,56,44,51,49,46,52,56,52,48,55,49,93,44,91,45,57,56,46,54,54,56,52,52,49,44,51,49,46,55,48,48,53,49,52,93,44,91,45,57,56,46,57,50,52,52,48,49,44,51,50,46,48,55,56,48,49,56,93,44,91,45,57,57,46,49,49,56,54,54,53,44,51,50,46,48,55,57,53,56,53,93,44,91,45,57,57,46,49,57,53,56,55,49,44,51,50,46,48,55,57,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,82,97,99,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,51,57,56,44,34,98,101,100,115,34,58,52,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,48,54,51,56,52,44,52,50,46,56,52,50,48,57,53,93,44,91,45,56,56,46,51,48,53,56,57,49,44,52,50,46,54,49,48,56,49,55,93,44,91,45,56,56,46,49,56,56,51,48,54,44,52,50,46,54,54,57,55,48,57,93,44,91,45,56,55,46,48,52,51,56,57,57,44,52,50,46,54,54,51,55,50,57,93,44,91,45,56,55,46,48,53,56,55,49,54,44,52,50,46,55,54,53,50,48,50,93,44,91,45,56,55,46,48,54,57,52,49,57,44,52,50,46,56,52,50,49,52,54,93,44,91,45,56,56,46,48,54,57,57,50,52,44,52,50,46,56,52,51,51,50,51,93,44,91,45,56,56,46,51,48,54,51,56,52,44,52,50,46,56,52,50,48,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,104,97,119,97,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,48,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,50,51,56,49,52,44,52,53,46,48,50,57,50,52,54,93,44,91,45,56,57,46,50,50,51,55,52,53,44,52,52,46,54,56,49,51,54,53,93,44,91,45,56,56,46,54,48,53,49,53,57,44,52,52,46,54,55,56,51,51,49,93,44,91,45,56,56,46,54,48,54,48,56,51,44,52,52,46,53,57,48,53,49,53,93,44,91,45,56,56,46,50,52,53,50,48,52,44,52,52,46,53,56,52,55,52,54,93,44,91,45,56,56,46,50,52,50,54,56,55,44,52,52,46,54,55,57,54,51,49,93,44,91,45,56,56,46,50,52,56,50,49,51,44,52,52,46,56,53,50,55,51,57,93,44,91,45,56,56,46,52,56,57,49,52,57,44,52,52,46,56,53,53,52,52,53,93,44,91,45,56,56,46,55,51,54,49,57,52,44,52,52,46,56,53,54,51,55,54,93,44,91,45,56,56,46,55,51,53,53,52,56,44,52,52,46,57,52,51,49,55,56,93,44,91,45,56,56,46,57,56,49,51,49,57,44,52,52,46,57,52,50,55,52,53,93,44,91,45,56,56,46,57,56,49,54,56,44,52,53,46,48,50,56,57,49,55,93,44,91,45,56,57,46,50,50,51,56,49,52,44,52,53,46,48,50,57,50,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,117,100,117,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,44,91,45,57,53,46,48,57,50,53,50,44,52,49,46,54,48,50,48,53,53,93,44,91,45,57,53,46,48,52,48,55,55,44,52,49,46,53,48,52,54,57,93,44,91,45,57,52,46,55,48,48,54,50,57,44,52,49,46,53,48,52,49,52,56,93,44,91,45,57,52,46,55,52,52,50,48,52,44,52,49,46,54,48,50,49,56,53,93,44,91,45,57,52,46,55,52,52,56,55,54,44,52,49,46,56,54,50,51,57,52,93,44,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,55,34,44,34,78,65,77,69,34,58,34,72,97,115,107,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,57,48,57,56,44,51,51,46,51,57,55,52,48,52,93,44,91,45,57,57,46,57,56,56,56,50,55,44,51,50,46,57,54,48,49,50,49,93,44,91,45,57,57,46,54,49,50,48,48,49,44,51,50,46,57,53,54,57,54,50,93,44,91,45,57,57,46,52,55,49,50,53,56,44,51,50,46,57,53,55,48,50,53,93,44,91,45,57,57,46,52,55,50,52,52,52,44,51,51,46,51,57,57,48,50,51,93,44,91,45,57,57,46,57,57,48,57,56,44,51,51,46,51,57,55,52,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,48,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,55,53,54,49,55,44,51,54,46,49,54,52,54,54,51,93,44,91,45,57,55,46,54,55,52,48,50,54,44,51,53,46,55,50,53,57,55,93,44,91,45,57,55,46,49,52,49,48,54,54,44,51,53,46,55,50,52,52,48,49,93,44,91,45,57,55,46,49,52,48,53,56,51,44,51,53,46,57,52,49,57,57,49,93,44,91,45,57,55,46,51,50,51,54,50,44,51,54,46,48,49,48,56,55,55,93,44,91,45,57,55,46,51,53,52,49,51,50,44,51,54,46,49,53,57,48,55,50,93,44,91,45,57,55,46,52,54,48,55,57,50,44,51,54,46,49,54,52,52,54,50,93,44,91,45,57,55,46,54,55,53,54,49,55,44,51,54,46,49,54,52,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,79,110,101,105,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,55,56,50,44,34,98,101,100,115,34,58,56,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,53,54,50,49,51,44,52,51,46,52,55,48,51,56,56,93,44,91,45,55,53,46,56,49,52,54,50,55,44,52,51,46,52,56,51,53,55,56,93,44,91,45,55,53,46,56,56,52,50,55,53,44,52,51,46,49,53,53,53,54,50,93,44,91,45,55,53,46,55,51,56,51,57,54,44,52,51,46,49,54,52,55,54,54,93,44,91,45,55,53,46,53,53,50,55,55,52,44,52,51,46,48,51,55,53,53,52,93,44,91,45,55,53,46,53,52,50,56,48,51,44,52,50,46,57,51,49,55,55,52,93,44,91,45,55,53,46,52,51,55,49,54,55,44,52,50,46,56,54,51,51,49,57,93,44,91,45,55,53,46,50,52,55,57,54,51,44,52,50,46,56,55,49,54,48,52,93,44,91,45,55,53,46,50,49,50,49,53,56,44,52,50,46,56,55,57,57,55,51,93,44,91,45,55,53,46,50,49,57,49,48,54,44,52,51,46,48,53,50,52,54,57,93,44,91,45,55,53,46,48,54,57,49,54,53,44,52,51,46,50,50,55,51,51,51,93,44,91,45,55,53,46,49,49,48,49,54,44,52,51,46,54,49,53,50,50,57,93,44,91,45,55,53,46,53,51,51,53,44,52,51,46,52,49,57,55,53,54,93,44,91,45,55,53,46,55,53,54,50,49,51,44,52,51,46,52,55,48,51,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,56,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,50,54,52,56,55,44,51,57,46,51,54,49,56,55,49,93,44,91,45,49,48,54,46,53,48,50,54,57,44,51,57,46,50,57,56,48,54,55,93,44,91,45,49,48,54,46,52,57,51,54,52,57,44,51,57,46,49,57,56,51,50,54,93,44,91,45,49,48,54,46,53,55,55,57,54,54,44,51,57,46,48,53,55,57,48,56,93,44,91,45,49,48,54,46,49,57,49,48,48,54,44,51,57,46,48,53,54,48,55,51,93,44,91,45,49,48,54,46,49,56,51,57,55,50,44,51,57,46,51,48,57,51,53,52,93,44,91,45,49,48,54,46,49,51,53,53,50,57,44,51,57,46,51,55,57,53,52,54,93,44,91,45,49,48,54,46,50,48,54,55,51,50,44,51,57,46,51,55,57,54,51,54,93,44,91,45,49,48,54,46,52,50,54,52,56,55,44,51,57,46,51,54,49,56,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,80,105,116,116,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,51,56,50,44,34,98,101,100,115,34,58,49,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,53,49,50,53,44,51,53,46,50,57,54,48,49,57,93,44,91,45,57,53,46,55,49,54,49,53,55,44,51,53,46,49,56,57,51,53,50,93,44,91,45,57,53,46,57,56,51,48,55,55,44,51,53,46,49,53,49,54,57,53,93,44,91,45,57,54,46,48,56,56,55,57,50,44,51,53,46,48,52,57,56,55,53,93,44,91,45,57,54,46,48,57,50,48,48,49,44,51,52,46,55,54,55,52,55,57,93,44,91,45,57,54,46,48,57,50,48,52,51,44,51,52,46,54,56,48,53,53,54,93,44,91,45,57,53,46,56,56,50,49,57,54,44,51,52,46,54,56,48,53,51,52,93,44,91,45,57,53,46,56,56,49,57,56,55,44,51,52,46,53,57,51,53,50,56,93,44,91,45,57,53,46,54,55,49,56,49,44,51,52,46,53,57,51,55,51,50,93,44,91,45,57,53,46,53,49,52,53,49,49,44,51,52,46,53,57,52,49,53,51,93,44,91,45,57,53,46,53,49,52,52,55,53,44,51,52,46,54,56,48,55,49,56,93,44,91,45,57,53,46,53,48,55,55,51,56,44,51,53,46,48,50,57,50,54,53,93,44,91,45,57,53,46,51,52,57,52,48,57,44,51,53,46,48,53,56,53,50,93,44,91,45,57,53,46,51,52,57,53,50,53,44,51,53,46,49,54,48,48,50,49,93,44,91,45,57,53,46,52,53,53,48,49,56,44,51,53,46,49,54,48,53,55,53,93,44,91,45,57,53,46,52,53,49,50,53,44,51,53,46,50,57,54,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,68,111,100,100,114,105,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,49,56,54,50,57,44,51,57,46,52,53,48,51,55,53,93,44,91,45,56,48,46,56,56,56,55,52,52,44,51,57,46,50,57,52,50,57,56,93,44,91,45,56,48,46,56,49,50,57,55,44,51,57,46,49,48,57,52,48,49,93,44,91,45,56,48,46,55,50,56,51,50,54,44,51,57,46,48,57,53,54,55,57,93,44,91,45,56,48,46,53,57,54,49,50,54,44,51,57,46,49,54,55,48,54,57,93,44,91,45,56,48,46,54,48,52,51,48,49,44,51,57,46,50,56,54,48,52,55,93,44,91,45,56,48,46,53,52,52,53,50,49,44,51,57,46,52,50,57,49,50,93,44,91,45,56,48,46,54,49,56,54,50,57,44,51,57,46,52,53,48,51,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,87,105,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,57,56,48,49,55,44,51,57,46,49,56,53,53,55,50,93,44,91,45,56,49,46,52,50,52,57,48,54,44,51,57,46,49,51,53,54,55,57,93,44,91,45,56,49,46,53,56,49,52,52,55,44,51,57,46,48,50,54,49,55,57,93,44,91,45,56,49,46,53,48,50,54,50,56,44,51,56,46,57,49,55,57,50,50,93,44,91,45,56,49,46,50,55,56,52,49,50,44,51,56,46,57,49,52,56,54,55,93,44,91,45,56,49,46,49,54,50,52,53,53,44,51,57,46,48,51,48,54,48,56,93,44,91,45,56,49,46,50,53,48,50,53,50,44,51,57,46,48,51,53,48,55,52,93,44,91,45,56,49,46,50,57,56,48,49,55,44,51,57,46,49,56,53,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,56,52,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,48,48,57,57,55,54,44,52,52,46,50,56,52,56,57,57,93,44,91,45,55,49,46,48,52,50,50,56,44,52,52,46,50,51,55,53,49,52,93,44,91,45,55,49,46,50,53,49,57,53,55,44,52,52,46,50,52,52,50,54,54,93,44,91,45,55,49,46,51,48,54,48,51,54,44,52,52,46,49,51,55,50,55,50,93,44,91,45,55,49,46,52,49,53,56,57,56,44,52,52,46,50,49,50,49,54,57,93,44,91,45,55,49,46,51,54,54,51,53,53,44,52,52,46,48,54,56,53,50,52,93,44,91,45,55,49,46,51,54,49,57,54,53,44,52,51,46,57,49,53,57,51,56,93,44,91,45,55,49,46,53,54,52,54,48,51,44,52,51,46,56,57,51,49,55,50,93,44,91,45,55,49,46,53,51,49,54,53,56,44,52,51,46,55,54,48,57,55,57,93,44,91,45,55,49,46,50,53,56,50,53,57,44,52,51,46,53,55,49,51,52,53,93,44,91,45,55,49,46,49,54,50,54,55,53,44,52,51,46,53,51,56,57,53,57,93,44,91,45,55,48,46,57,54,50,49,53,52,44,52,51,46,53,52,49,48,56,55,93,44,91,45,55,48,46,57,56,57,49,50,50,44,52,51,46,55,57,50,49,49,51,93,44,91,45,55,49,46,48,48,57,57,55,54,44,52,52,46,50,56,52,56,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,84,121,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,51,56,55,49,50,44,51,57,46,53,51,57,56,56,54,93,44,91,45,56,49,46,49,50,49,53,51,51,44,51,57,46,52,53,55,55,55,53,93,44,91,45,56,49,46,48,50,53,55,48,52,44,51,57,46,52,54,50,51,49,55,93,44,91,45,56,49,46,48,48,55,56,51,54,44,51,57,46,51,53,48,57,50,51,93,44,91,45,56,48,46,56,56,56,55,52,52,44,51,57,46,50,57,52,50,57,56,93,44,91,45,56,48,46,54,49,56,54,50,57,44,51,57,46,52,53,48,51,55,53,93,44,91,45,56,48,46,55,49,54,49,50,50,44,51,57,46,52,55,53,53,51,49,93,44,91,45,56,48,46,56,52,51,55,51,49,44,51,57,46,53,56,51,56,56,53,93,44,91,45,56,48,46,57,52,51,55,56,50,44,51,57,46,54,48,54,57,50,54,93,44,91,45,56,49,46,48,51,56,55,49,50,44,51,57,46,53,51,57,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,101,32,83,117,101,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,56,51,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,50,52,51,50,55,44,52,52,46,53,52,51,54,49,56,93,44,91,45,57,51,46,57,49,48,52,48,53,44,52,52,46,53,52,51,49,54,51,93,44,91,45,57,51,46,57,50,57,53,53,44,52,52,46,52,53,54,55,49,54,93,44,91,45,57,51,46,57,51,54,48,51,50,44,52,52,46,51,51,57,54,54,53,93,44,91,45,57,52,46,48,49,49,56,54,56,44,52,52,46,50,51,57,53,50,93,44,91,45,57,51,46,55,54,55,57,55,49,44,52,52,46,49,57,53,56,51,54,93,44,91,45,57,51,46,53,50,53,50,51,49,44,52,52,46,49,57,54,49,51,52,93,44,91,45,57,51,46,53,50,52,51,50,55,44,52,52,46,53,52,51,54,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,51,55,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,56,55,48,53,57,53,44,52,55,46,57,54,48,52,53,53,93,44,91,45,49,49,57,46,57,57,50,54,55,57,44,52,55,46,55,56,51,49,53,93,44,91,45,49,50,48,46,50,48,54,57,48,56,44,52,55,46,55,53,48,54,51,56,93,44,91,45,49,50,48,46,49,57,57,48,52,56,44,52,55,46,54,56,50,50,55,54,93,44,91,45,49,50,48,46,51,49,55,57,56,52,44,52,55,46,52,53,54,57,52,56,93,44,91,45,49,50,48,46,50,56,54,53,51,44,52,55,46,51,57,51,49,49,49,93,44,91,45,49,50,48,46,49,50,57,53,55,51,44,52,55,46,51,54,54,50,53,49,93,44,91,45,49,50,48,46,48,57,52,52,54,44,52,55,46,50,54,50,49,53,57,93,44,91,45,49,50,48,46,48,48,55,48,55,52,44,52,55,46,50,50,48,49,51,51,93,44,91,45,49,50,48,46,48,48,52,55,48,52,44,52,55,46,51,49,57,57,57,52,93,44,91,45,49,49,57,46,56,55,53,55,54,44,52,55,46,52,51,55,52,57,50,93,44,91,45,49,49,57,46,53,51,51,49,50,51,44,52,55,46,52,52,49,50,48,55,93,44,91,45,49,49,57,46,53,51,50,56,56,57,44,52,55,46,53,50,55,55,53,54,93,44,91,45,49,49,57,46,51,52,49,55,54,55,44,52,55,46,54,49,50,51,56,56,93,44,91,45,49,49,57,46,50,49,50,52,49,44,52,55,46,56,48,48,54,57,53,93,44,91,45,49,49,57,46,50,49,50,50,50,53,44,52,55,46,56,56,55,55,48,56,93,44,91,45,49,49,57,46,49,48,51,56,55,51,44,52,55,46,57,54,49,55,54,51,93,44,91,45,49,49,56,46,57,56,50,50,51,52,44,52,55,46,57,54,50,48,50,53,93,44,91,45,49,49,57,46,48,53,54,57,55,44,52,56,46,49,51,54,57,55,52,93,44,91,45,49,49,57,46,49,53,48,57,56,51,44,52,56,46,49,52,54,48,54,55,93,44,91,45,49,49,57,46,51,52,51,53,50,51,44,52,56,46,48,52,57,52,51,50,93,44,91,45,49,49,57,46,52,51,54,50,53,55,44,52,56,46,48,55,54,54,56,56,93,44,91,45,49,49,57,46,54,53,50,52,54,56,44,52,56,46,48,48,48,50,50,49,93,44,91,45,49,49,57,46,54,56,50,57,56,49,44,52,56,46,48,57,50,53,49,51,93,44,91,45,49,49,57,46,56,57,53,51,53,44,52,56,46,48,53,48,48,52,52,93,44,91,45,49,49,57,46,56,55,48,53,57,53,44,52,55,46,57,54,48,52,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,97,116,116,97,114,97,117,103,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,54,56,54,44,34,98,101,100,115,34,58,50,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,54,48,55,55,55,44,52,50,46,53,51,55,56,53,51,93,44,91,45,55,57,46,48,54,49,50,54,53,44,52,49,46,57,57,57,50,53,57,93,44,91,45,55,56,46,57,49,56,56,53,53,44,52,49,46,57,57,56,49,49,57,93,44,91,45,55,56,46,51,48,56,49,50,56,44,52,49,46,57,57,57,52,49,53,93,44,91,45,55,56,46,51,48,56,56,51,57,44,52,50,46,53,50,49,50,49,55,93,44,91,45,55,56,46,52,54,51,57,52,44,52,50,46,53,51,54,51,51,50,93,44,91,45,55,56,46,56,57,53,57,57,57,44,52,50,46,52,52,48,56,48,55,93,44,91,45,55,57,46,48,54,48,55,55,55,44,52,50,46,53,51,55,56,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,68,111,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,55,55,54,44,34,98,101,100,115,34,58,50,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,48,54,56,52,56,44,52,51,46,54,51,51,48,52,53,93,44,91,45,56,57,46,48,48,57,49,51,57,44,52,51,46,50,56,52,56,51,93,44,91,45,56,57,46,48,48,56,56,51,50,44,52,51,46,49,57,55,55,50,52,93,44,91,45,56,56,46,53,51,53,56,52,51,44,52,51,46,49,57,54,48,52,56,93,44,91,45,56,56,46,52,49,55,57,56,55,44,52,51,46,49,57,52,54,57,55,93,44,91,45,56,56,46,52,48,48,52,50,54,44,52,51,46,53,52,51,53,51,50,93,44,91,45,56,56,46,52,48,49,48,52,49,44,52,51,46,54,51,48,57,51,51,93,44,91,45,56,56,46,56,56,54,48,53,50,44,52,51,46,54,51,51,53,52,93,44,91,45,56,57,46,48,48,54,56,52,56,44,52,51,46,54,51,51,48,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,54,56,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,54,51,50,54,51,44,52,50,46,50,57,54,52,52,53,93,44,91,45,57,49,46,51,54,53,56,55,55,44,52,49,46,57,52,55,52,49,93,44,91,45,57,48,46,56,57,56,52,56,52,44,52,49,46,57,52,54,50,52,53,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,50,46,48,51,51,53,52,56,93,44,91,45,57,48,46,56,57,56,48,50,44,52,50,46,50,57,53,50,51,54,93,44,91,45,57,49,46,49,51,48,48,55,57,44,52,50,46,50,57,53,55,54,49,93,44,91,45,57,49,46,51,54,51,50,54,51,44,52,50,46,50,57,54,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,97,114,98,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,51,51,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,54,52,54,54,51,44,51,55,46,52,55,49,48,49,51,93,44,91,45,57,57,46,48,49,50,53,57,56,44,51,55,46,52,55,48,52,50,49,93,44,91,45,57,57,46,48,49,49,52,57,57,44,51,55,46,51,56,52,50,54,51,93,44,91,45,57,57,46,48,48,48,51,48,49,44,51,54,46,57,57,57,52,54,55,93,44,91,45,57,56,46,53,52,52,54,54,49,44,51,54,46,57,57,56,55,53,57,93,44,91,45,57,56,46,51,52,55,49,52,57,44,51,54,46,57,57,56,49,53,53,93,44,91,45,57,56,46,51,52,57,56,48,52,44,51,55,46,51,56,52,48,53,54,93,44,91,45,57,56,46,52,54,52,57,53,49,44,51,55,46,51,56,52,48,56,54,93,44,91,45,57,56,46,52,54,52,54,54,51,44,51,55,46,52,55,49,48,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,53,57,49,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,52,48,54,50,55,53,44,51,56,46,48,50,49,49,55,57,93,44,91,45,57,50,46,52,48,57,50,51,49,44,51,55,46,56,53,57,49,56,93,44,91,45,57,50,46,52,49,51,54,54,57,44,51,55,46,55,49,51,57,52,49,93,44,91,45,57,50,46,50,52,57,52,54,51,44,51,55,46,54,48,52,53,52,51,93,44,91,45,57,50,46,48,50,57,50,53,56,44,51,55,46,54,48,50,53,52,50,93,44,91,45,57,50,46,48,50,49,49,54,53,44,51,56,46,48,49,48,54,51,57,93,44,91,45,57,50,46,49,56,53,51,55,44,51,56,46,48,49,54,51,51,56,93,44,91,45,57,50,46,52,48,54,50,55,53,44,51,56,46,48,50,49,49,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,68,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,50,53,53,44,34,98,101,100,115,34,58,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,49,54,52,51,55,44,51,49,46,54,49,57,52,54,54,93,44,91,45,56,53,46,55,52,56,50,53,49,44,51,49,46,54,49,56,48,52,56,93,44,91,45,56,53,46,55,56,57,49,52,50,44,51,49,46,54,49,55,57,54,52,93,44,91,45,56,53,46,55,57,49,52,48,50,44,51,49,46,49,57,54,51,52,57,93,44,91,45,56,53,46,55,49,48,51,51,51,44,51,49,46,49,57,53,49,55,51,93,44,91,45,56,53,46,54,54,53,55,55,53,44,51,49,46,50,54,55,53,57,49,93,44,91,45,56,53,46,52,56,53,56,53,52,44,51,49,46,50,52,54,48,57,54,93,44,91,45,56,53,46,52,49,55,52,51,52,44,51,49,46,51,49,52,57,55,51,93,44,91,45,56,53,46,52,49,54,52,51,55,44,51,49,46,54,49,57,52,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,55,56,49,57,53,44,51,57,46,49,51,52,55,54,49,93,44,91,45,49,48,49,46,52,56,52,51,56,51,44,51,56,46,55,48,48,49,54,54,93,44,91,45,49,48,49,46,49,50,56,51,55,57,44,51,56,46,55,48,48,54,48,51,93,44,91,45,49,48,48,46,56,49,56,54,57,56,44,51,56,46,54,57,57,56,54,49,93,44,91,45,49,48,48,46,56,49,49,56,53,56,44,51,57,46,49,51,51,51,54,93,44,91,45,49,48,49,46,51,57,49,55,49,55,44,51,57,46,49,51,53,49,49,55,93,44,91,45,49,48,49,46,52,55,56,49,57,53,44,51,57,46,49,51,52,55,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,77,97,100,101,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,48,49,51,44,34,98,101,100,115,34,58,52,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,53,50,48,53,53,44,51,55,46,49,56,51,49,48,56,93,44,91,45,49,50,48,46,50,50,55,50,56,54,44,51,55,46,49,54,51,52,93,44,91,45,49,50,48,46,52,55,54,54,57,50,44,51,55,46,48,57,54,51,57,93,44,91,45,49,50,48,46,53,52,49,54,57,54,44,51,55,46,48,52,52,53,48,53,93,44,91,45,49,50,48,46,51,55,48,50,53,54,44,51,54,46,55,56,52,57,52,93,44,91,45,49,50,48,46,49,56,56,56,51,44,51,54,46,55,55,54,52,48,56,93,44,91,45,49,50,48,46,48,55,57,52,53,56,44,51,54,46,56,50,53,51,52,53,93,44,91,45,49,49,57,46,56,49,51,55,51,52,44,51,54,46,56,53,48,52,49,50,93,44,91,45,49,49,57,46,54,57,48,55,55,57,44,51,55,46,48,49,49,57,56,55,93,44,91,45,49,49,57,46,53,54,50,57,55,57,44,51,55,46,48,54,52,48,57,53,93,44,91,45,49,49,57,46,53,53,57,52,49,50,44,51,55,46,49,52,51,54,49,57,93,44,91,45,49,49,57,46,51,56,54,53,50,49,44,51,55,46,49,52,57,53,51,93,44,91,45,49,49,57,46,51,51,48,53,55,51,44,51,55,46,50,48,53,55,57,49,93,44,91,45,49,49,57,46,51,49,50,49,56,54,44,51,55,46,51,53,50,55,50,53,93,44,91,45,49,49,57,46,48,50,50,51,54,51,44,51,55,46,53,56,53,55,51,55,93,44,91,45,49,49,57,46,49,50,52,51,49,50,44,51,55,46,55,51,51,57,52,52,93,44,91,45,49,49,57,46,50,54,56,57,55,57,44,51,55,46,55,51,57,50,51,93,44,91,45,49,49,57,46,51,48,56,57,57,53,44,51,55,46,55,55,55,57,56,54,93,44,91,45,49,49,57,46,53,56,51,53,56,53,44,51,55,46,53,54,48,51,51,53,93,44,91,45,49,49,57,46,54,53,49,49,57,49,44,51,55,46,52,49,55,56,51,50,93,44,91,45,49,49,57,46,55,54,49,56,48,57,44,51,55,46,52,49,55,49,49,52,93,44,91,45,49,50,48,46,48,53,50,48,53,53,44,51,55,46,49,56,51,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,71,101,110,116,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,54,53,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,53,57,56,52,56,55,44,52,48,46,51,56,54,55,49,52,93,44,91,45,57,52,46,54,48,53,57,52,50,44,52,48,46,49,50,54,49,50,55,93,44,91,45,57,52,46,54,48,53,51,55,55,44,52,48,46,48,51,57,50,49,55,93,44,91,45,57,52,46,50,49,56,56,44,52,48,46,48,51,52,56,56,53,93,44,91,45,57,52,46,50,49,54,54,57,54,44,52,48,46,49,51,54,54,50,54,93,44,91,45,57,52,46,50,49,52,50,55,56,44,52,48,46,51,56,52,50,53,52,93,44,91,45,57,52,46,53,57,56,52,56,55,44,52,48,46,51,56,54,55,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,108,97,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,54,55,54,50,50,44,52,50,46,48,56,54,49,52,55,93,44,91,45,49,48,48,46,50,54,53,52,55,52,44,52,49,46,55,51,57,56,53,54,93,44,91,45,49,48,48,46,50,53,49,50,50,52,44,52,49,46,55,51,57,56,49,55,93,44,91,45,57,57,46,54,56,54,56,51,52,44,52,49,46,55,52,48,51,50,54,93,44,91,45,57,57,46,54,56,54,57,53,57,44,52,50,46,48,56,54,48,55,53,93,44,91,45,49,48,48,46,49,54,55,54,48,53,44,52,50,46,48,56,53,56,52,56,93,44,91,45,49,48,48,46,50,54,55,54,50,50,44,52,50,46,48,56,54,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,68,97,103,103,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,53,48,48,50,54,44,52,49,46,48,48,48,54,57,49,93,44,91,45,49,49,48,46,48,48,48,55,49,55,44,52,48,46,57,57,55,52,53,93,44,91,45,49,49,48,46,48,48,48,55,49,49,44,52,48,46,56,49,51,54,55,56,93,44,91,45,49,48,57,46,57,55,54,52,48,50,44,52,48,46,56,48,57,54,56,54,93,44,91,45,49,48,57,46,56,55,48,50,48,55,44,52,48,46,55,54,51,56,50,57,93,44,91,45,49,48,57,46,51,57,52,52,57,49,44,52,48,46,56,53,56,49,54,54,93,44,91,45,49,48,57,46,50,48,51,50,53,44,52,48,46,56,53,56,52,48,49,93,44,91,45,49,48,57,46,49,54,49,48,54,51,44,52,48,46,54,56,51,56,49,55,93,44,91,45,49,48,57,46,48,52,56,57,52,52,44,52,48,46,54,54,50,54,48,49,93,44,91,45,49,48,57,46,48,53,48,48,50,54,44,52,49,46,48,48,48,54,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,80,108,97,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,50,56,51,57,49,44,52,50,46,52,51,49,52,48,50,93,44,91,45,49,48,53,46,50,55,49,55,52,54,44,52,49,46,57,56,54,48,57,53,93,44,91,45,49,48,53,46,50,55,56,50,51,54,44,52,49,46,54,53,54,54,53,53,93,44,91,45,49,48,52,46,54,53,51,51,51,56,44,52,49,46,54,53,51,48,48,55,93,44,91,45,49,48,52,46,54,53,53,54,51,57,44,52,50,46,54,48,57,52,54,56,93,44,91,45,49,48,52,46,56,57,50,52,51,55,44,52,50,46,54,48,56,57,51,57,93,44,91,45,49,48,53,46,50,56,54,53,49,49,44,52,50,46,54,48,53,56,50,54,93,44,91,45,49,48,53,46,50,56,51,57,49,44,52,50,46,52,51,49,52,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,71,97,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,54,53,56,53,44,34,98,101,100,115,34,58,52,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,53,53,54,44,51,53,46,52,49,57,56,49,49,93,44,91,45,56,49,46,51,53,54,54,56,50,44,51,53,46,51,51,48,54,48,52,93,44,91,45,56,49,46,51,50,56,48,51,55,44,51,53,46,49,54,51,52,54,55,93,44,91,45,56,49,46,48,51,51,57,48,57,44,51,53,46,49,52,56,54,57,93,44,91,45,56,48,46,57,53,52,56,54,44,51,53,46,52,48,48,48,55,56,93,44,91,45,56,49,46,52,53,53,54,44,51,53,46,52,49,57,56,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,71,117,97,100,97,108,117,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,56,50,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,50,57,48,55,57,49,44,51,53,46,48,52,50,48,51,93,44,91,45,49,48,53,46,50,57,48,51,57,54,44,51,52,46,54,48,54,55,54,54,93,44,91,45,49,48,53,46,51,49,51,48,55,50,44,51,52,46,51,52,55,50,48,53,93,44,91,45,49,48,52,46,56,57,49,55,52,53,44,51,52,46,51,52,55,48,52,51,93,44,91,45,49,48,52,46,56,57,50,48,50,51,44,51,52,46,54,48,52,52,50,54,93,44,91,45,49,48,52,46,52,52,52,55,54,50,44,51,52,46,54,48,52,57,53,50,93,44,91,45,49,48,52,46,51,51,57,55,50,53,44,51,52,46,54,57,50,50,51,52,93,44,91,45,49,48,52,46,51,51,57,56,49,55,44,51,52,46,55,55,57,48,54,50,93,44,91,45,49,48,52,46,49,50,57,49,52,51,44,51,52,46,55,55,57,51,51,55,93,44,91,45,49,48,52,46,49,50,53,49,50,49,44,51,53,46,49,52,50,48,53,56,93,44,91,45,49,48,52,46,49,50,53,49,51,54,44,51,53,46,50,49,53,54,57,54,93,44,91,45,49,48,53,46,50,57,49,49,54,57,44,51,53,46,50,49,54,52,56,57,93,44,91,45,49,48,53,46,50,57,48,55,57,49,44,51,53,46,48,52,50,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,71,111,108,100,101,110,32,86,97,108,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,51,56,57,49,54,51,44,52,54,46,54,57,51,54,50,53,93,44,91,45,49,48,57,46,52,48,50,57,48,54,44,52,54,46,50,49,57,55,48,54,93,44,91,45,49,48,57,46,54,53,51,56,55,49,44,52,54,46,50,49,57,52,48,52,93,44,91,45,49,48,57,46,54,48,53,49,53,51,44,52,54,46,48,52,52,57,57,52,93,44,91,45,49,48,57,46,52,49,55,49,53,56,44,52,54,46,48,52,52,55,53,57,93,44,91,45,49,48,57,46,52,49,54,50,50,55,44,52,54,46,49,51,50,51,55,49,93,44,91,45,49,48,56,46,57,50,52,53,56,57,44,52,54,46,49,51,50,51,55,93,44,91,45,49,48,56,46,55,55,57,55,51,51,44,52,54,46,49,51,50,52,53,55,93,44,91,45,49,48,56,46,55,55,57,50,55,50,44,52,54,46,50,55,55,51,57,56,93,44,91,45,49,48,56,46,56,54,50,50,55,55,44,52,54,46,51,54,52,53,56,54,93,44,91,45,49,48,56,46,57,48,52,57,48,52,44,52,54,46,53,55,54,57,48,56,93,44,91,45,49,48,57,46,48,48,57,57,56,50,44,52,54,46,54,50,49,49,55,50,93,44,91,45,49,48,57,46,48,48,57,53,55,44,52,54,46,55,53,48,55,48,50,93,44,91,45,49,48,57,46,51,56,57,50,48,56,44,52,54,46,55,53,49,51,53,49,93,44,91,45,49,48,57,46,51,56,57,49,54,51,44,52,54,46,54,57,51,54,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,49,55,50,44,34,98,101,100,115,34,58,49,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,53,53,57,55,51,44,51,53,46,56,49,56,49,50,93,44,91,45,55,56,46,52,57,50,49,52,57,44,51,53,46,54,56,54,57,48,51,93,44,91,45,55,56,46,55,48,56,57,48,50,44,51,53,46,53,49,57,52,53,56,93,44,91,45,55,56,46,53,51,56,51,52,57,44,51,53,46,51,49,54,52,49,93,44,91,45,55,56,46,52,49,49,55,51,52,44,51,53,46,50,53,52,54,54,51,93,44,91,45,55,56,46,51,48,54,53,56,44,51,53,46,50,56,55,54,48,52,93,44,91,45,55,56,46,49,53,56,53,56,57,44,51,53,46,51,52,55,53,51,55,93,44,91,45,55,56,46,48,54,52,55,56,52,44,51,53,46,53,56,53,50,54,51,93,44,91,45,55,56,46,49,50,53,53,51,57,44,51,53,46,54,48,51,49,48,55,93,44,91,45,55,56,46,49,57,50,49,49,55,44,51,53,46,55,51,48,53,52,53,93,44,91,45,55,56,46,50,53,53,57,55,51,44,51,53,46,56,49,56,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,67,108,97,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,50,50,48,48,44,34,98,101,100,115,34,58,52,54,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,49,53,50,50,55,56,44,51,55,46,50,56,54,48,53,53,93,44,91,45,49,50,50,46,48,50,54,49,48,55,44,51,55,46,49,54,54,56,49,93,44,91,45,49,50,49,46,55,53,55,54,44,51,55,46,48,52,57,54,51,93,44,91,45,49,50,49,46,53,56,49,51,53,52,44,51,54,46,56,57,57,49,53,50,93,44,91,45,49,50,49,46,52,56,56,57,52,57,44,51,54,46,57,56,51,49,52,56,93,44,91,45,49,50,49,46,50,49,53,52,48,54,44,51,54,46,57,54,49,50,52,56,93,44,91,45,49,50,49,46,50,50,54,56,48,52,44,51,55,46,49,51,52,55,55,52,93,44,91,45,49,50,49,46,52,48,52,54,51,54,44,51,55,46,49,53,53,57,56,57,93,44,91,45,49,50,49,46,52,53,52,48,48,57,44,51,55,46,50,56,52,48,53,93,44,91,45,49,50,49,46,52,49,50,53,52,57,44,51,55,46,51,56,57,52,51,53,93,44,91,45,49,50,49,46,52,55,50,54,52,56,44,51,55,46,52,56,50,49,55,93,44,91,45,49,50,50,46,48,56,49,52,55,51,44,51,55,46,52,55,55,56,51,56,93,44,91,45,49,50,50,46,49,57,48,52,48,50,44,51,55,46,52,51,49,52,55,50,93,44,91,45,49,50,50,46,49,53,50,50,55,56,44,51,55,46,50,56,54,48,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,101,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,55,48,56,44,34,98,101,100,115,34,58,50,49,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,52,54,54,57,57,44,51,51,46,50,49,51,52,53,56,93,44,91,45,55,57,46,53,49,56,56,52,52,44,51,51,46,49,52,56,50,57,55,93,44,91,45,55,57,46,54,52,51,51,48,49,44,51,51,46,49,50,51,52,53,51,93,44,91,45,55,57,46,56,52,49,48,54,55,44,51,50,46,57,49,50,52,54,57,93,44,91,45,55,57,46,57,53,54,52,51,51,44,51,50,46,56,53,57,55,57,49,93,44,91,45,56,48,46,48,53,53,53,57,53,44,51,50,46,57,57,56,55,49,93,44,91,45,56,48,46,49,52,57,50,52,54,44,51,51,46,48,50,49,54,48,49,93,44,91,45,56,48,46,48,55,57,48,50,56,44,51,50,46,57,50,55,56,49,49,93,44,91,45,56,48,46,49,53,55,50,54,53,44,51,50,46,56,49,56,49,56,55,93,44,91,45,56,48,46,52,48,49,51,52,44,51,50,46,56,53,56,52,54,54,93,44,91,45,56,48,46,52,53,51,54,51,44,51,50,46,55,51,57,57,93,44,91,45,56,48,46,52,48,51,50,56,50,44,51,50,46,54,53,49,54,50,50,93,44,91,45,56,48,46,52,49,54,53,56,54,44,51,50,46,53,52,54,51,49,56,93,44,91,45,56,48,46,50,50,51,53,57,44,51,50,46,52,56,50,53,54,53,93,44,91,45,56,48,46,48,56,56,56,55,55,44,51,50,46,53,52,57,48,50,57,93,44,91,45,55,57,46,57,55,57,48,48,50,44,51,50,46,53,53,56,48,55,52,93,44,91,45,55,57,46,55,57,56,50,53,53,44,51,50,46,54,55,53,54,51,50,93,44,91,45,55,57,46,55,54,48,48,55,52,44,51,50,46,55,51,56,50,53,55,93,44,91,45,55,57,46,53,51,52,54,56,57,44,51,50,46,56,55,48,48,49,50,93,44,91,45,55,57,46,52,52,48,49,56,49,44,51,50,46,57,53,56,57,49,54,93,44,91,45,55,57,46,51,50,50,50,53,55,44,51,50,46,57,53,54,48,55,56,93,44,91,45,55,57,46,50,54,49,56,51,44,51,51,46,48,52,57,55,57,51,93,44,91,45,55,57,46,52,52,54,54,57,57,44,51,51,46,50,49,51,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,49,54,56,44,34,98,101,100,115,34,58,52,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,52,53,51,49,57,44,52,54,46,54,55,57,50,52,51,93,44,91,45,49,49,57,46,53,49,54,53,56,50,44,52,54,46,55,50,55,54,51,56,93,44,91,45,49,49,57,46,54,53,57,49,56,57,44,52,54,46,54,52,48,51,51,51,93,44,91,45,49,49,57,46,56,55,52,48,52,50,44,52,54,46,54,50,56,50,56,51,93,44,91,45,49,49,57,46,56,54,53,56,50,57,44,52,54,46,48,52,48,56,53,56,93,44,91,45,49,49,57,46,56,54,56,51,49,50,44,52,53,46,56,51,54,49,57,56,93,44,91,45,49,49,57,46,54,54,57,57,55,52,44,52,53,46,56,53,54,57,48,56,93,44,91,45,49,49,57,46,53,55,49,54,48,50,44,52,53,46,57,50,53,52,55,56,93,44,91,45,49,49,57,46,52,51,50,49,53,44,52,53,46,57,49,56,50,55,49,93,44,91,45,49,49,57,46,49,50,54,51,50,50,44,52,53,46,57,51,50,55,56,52,93,44,91,45,49,49,56,46,57,56,55,50,53,56,44,52,53,46,57,57,57,56,53,53,93,44,91,45,49,49,56,46,57,55,52,54,54,52,44,52,54,46,49,51,57,53,50,51,93,44,91,45,49,49,57,46,48,52,49,52,57,56,44,52,54,46,49,57,50,54,54,55,93,44,91,45,49,49,57,46,50,54,55,50,48,50,44,52,54,46,50,56,52,54,50,53,93,44,91,45,49,49,57,46,50,55,48,51,50,44,52,54,46,53,50,49,51,49,49,93,44,91,45,49,49,57,46,52,53,51,49,57,44,52,54,46,54,55,57,50,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,50,53,44,34,98,101,100,115,34,58,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,52,57,57,55,53,44,52,48,46,51,52,54,53,48,53,93,44,91,45,57,50,46,54,56,52,49,54,55,44,52,48,46,51,52,51,52,54,54,93,44,91,45,57,50,46,56,53,53,54,50,57,44,52,48,46,51,52,50,55,51,54,93,44,91,45,57,50,46,56,53,54,49,57,49,44,52,48,46,48,51,55,50,53,51,93,44,91,45,57,50,46,56,52,55,52,55,55,44,52,48,46,48,51,55,51,48,49,93,44,91,45,57,50,46,51,52,53,48,54,52,44,52,48,46,48,51,55,50,49,93,44,91,45,57,50,46,51,52,55,56,48,49,44,52,48,46,51,48,50,55,53,54,93,44,91,45,57,50,46,51,52,57,57,55,53,44,52,48,46,51,52,54,53,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,69,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,49,51,54,44,34,98,101,100,115,34,58,50,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,53,50,50,50,52,44,52,49,46,52,53,56,50,51,57,93,44,91,45,56,50,46,56,52,55,55,49,51,44,52,49,46,52,51,48,51,50,54,93,44,91,45,56,50,46,56,52,49,52,55,53,44,52,49,46,50,57,48,48,50,51,93,44,91,45,56,50,46,51,52,50,51,49,52,44,52,49,46,50,56,51,53,53,52,93,44,91,45,56,50,46,51,52,56,49,50,50,44,52,49,46,55,48,48,48,53,55,93,44,91,45,56,50,46,51,57,56,51,52,56,44,52,49,46,54,55,54,53,50,52,93,44,91,45,56,50,46,55,50,54,52,50,55,44,52,49,46,54,57,56,51,48,56,93,44,91,45,56,50,46,55,56,55,52,48,50,44,52,49,46,53,56,55,55,51,56,93,44,91,45,56,50,46,55,49,57,50,51,54,44,52,49,46,52,56,50,52,50,51,93,44,91,45,56,50,46,57,53,50,50,50,52,44,52,49,46,52,53,56,50,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,86,101,114,109,105,108,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,52,48,55,44,34,98,101,100,115,34,58,49,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,51,50,51,56,55,44,52,48,46,51,57,57,52,93,44,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,44,91,45,56,55,46,53,51,51,50,50,56,44,51,57,46,56,56,51,93,44,91,45,56,55,46,53,51,49,52,52,57,44,52,48,46,49,52,56,49,50,55,93,44,91,45,56,55,46,53,50,54,53,56,57,44,52,48,46,52,55,54,56,55,54,93,44,91,45,56,55,46,53,50,54,51,54,54,44,52,48,46,52,57,49,50,51,55,93,44,91,45,56,55,46,57,51,53,51,48,57,44,52,48,46,52,56,53,57,50,51,93,44,91,45,56,55,46,57,51,50,51,56,55,44,52,48,46,51,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,111,117,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,56,54,56,52,44,34,98,101,100,115,34,58,53,48,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,49,55,55,48,55,44,51,56,46,56,48,53,55,52,56,93,44,91,45,57,48,46,50,57,56,55,52,51,44,51,56,46,56,56,55,55,53,57,93,44,91,45,57,48,46,52,52,48,54,49,55,44,51,56,46,56,50,55,54,53,93,44,91,45,57,48,46,53,52,49,54,49,50,44,51,56,46,54,56,53,50,54,55,93,44,91,45,57,48,46,55,51,50,51,50,56,44,51,56,46,54,51,57,51,48,50,93,44,91,45,57,48,46,55,51,54,51,49,49,44,51,56,46,52,54,54,54,52,51,93,44,91,45,57,48,46,53,57,49,49,50,51,44,51,56,46,53,48,49,54,53,50,93,44,91,45,57,48,46,52,49,50,53,49,57,44,51,56,46,53,48,48,56,53,51,93,44,91,45,57,48,46,51,52,49,52,52,54,44,51,56,46,51,56,56,50,57,56,93,44,91,45,57,48,46,50,54,52,49,50,51,44,51,56,46,53,50,48,55,50,56,93,44,91,45,57,48,46,50,53,55,52,49,51,44,51,56,46,53,51,49,56,53,50,93,44,91,45,57,48,46,51,50,48,53,48,52,44,51,56,46,53,57,52,49,55,55,93,44,91,45,57,48,46,50,53,49,55,52,53,44,51,56,46,55,49,56,56,56,55,93,44,91,45,57,48,46,49,54,54,53,55,52,44,51,56,46,55,55,50,52,52,56,93,44,91,45,57,48,46,49,49,55,55,48,55,44,51,56,46,56,48,53,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,54,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,52,48,51,56,56,44,52,50,46,52,57,53,48,52,53,93,44,91,45,56,56,46,57,51,57,55,51,50,44,52,50,46,49,53,50,51,50,93,44,91,45,56,56,46,55,48,53,53,56,53,44,52,50,46,49,53,51,53,51,55,93,44,91,45,56,56,46,55,48,55,52,50,49,44,52,50,46,52,57,51,53,57,54,93,44,91,45,56,56,46,55,55,54,52,57,51,44,52,50,46,52,57,49,57,49,50,93,44,91,45,56,56,46,57,52,48,51,56,56,44,52,50,46,52,57,53,48,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,84,101,104,97,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,51,55,51,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,52,57,55,54,51,53,44,52,48,46,52,52,53,53,57,49,93,44,91,45,49,50,49,46,54,56,53,54,55,57,44,52,48,46,52,53,51,49,50,49,93,44,91,45,49,50,50,46,48,49,48,51,49,54,44,52,48,46,52,50,54,53,53,56,93,44,91,45,49,50,50,46,51,49,48,52,49,50,44,52,48,46,51,55,49,48,54,52,93,44,91,45,49,50,50,46,53,49,57,57,56,56,44,52,48,46,51,57,51,54,55,53,93,44,91,45,49,50,50,46,54,53,48,50,54,51,44,52,48,46,51,50,56,54,51,93,44,91,45,49,50,50,46,55,52,56,54,48,56,44,52,48,46,51,54,53,54,57,52,93,44,91,45,49,50,51,46,48,54,53,52,50,54,44,52,48,46,50,56,54,57,55,49,93,44,91,45,49,50,50,46,57,56,57,48,49,53,44,52,48,46,50,53,48,49,52,53,93,44,91,45,49,50,50,46,57,51,52,48,49,51,44,51,57,46,57,55,56,49,51,49,93,44,91,45,49,50,50,46,57,51,55,54,53,52,44,51,57,46,55,57,56,49,53,54,93,44,91,45,49,50,50,46,48,52,54,52,55,49,44,51,57,46,55,57,55,54,52,56,93,44,91,45,49,50,50,46,48,52,52,56,54,53,44,51,57,46,56,56,51,55,55,49,93,44,91,45,49,50,49,46,56,48,52,48,52,49,44,51,57,46,56,56,52,51,52,52,93,44,91,45,49,50,49,46,54,52,54,48,51,50,44,51,57,46,57,56,50,53,50,55,93,44,91,45,49,50,49,46,53,56,54,52,48,55,44,52,48,46,49,48,48,53,50,50,93,44,91,45,49,50,49,46,52,51,54,56,56,54,44,52,48,46,49,53,49,57,48,53,93,44,91,45,49,50,49,46,51,52,57,44,52,48,46,50,54,52,52,53,52,93,44,91,45,49,50,49,46,52,55,48,51,57,53,44,52,48,46,51,53,48,50,49,51,93,44,91,45,49,50,49,46,52,57,55,54,51,53,44,52,48,46,52,52,53,53,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,68,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,57,56,52,51,44,34,98,101,100,115,34,58,50,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,51,56,49,51,53,44,52,51,46,50,48,54,48,53,55,93,44,91,45,56,57,46,56,51,56,49,54,55,44,52,50,46,56,53,55,51,57,55,93,44,91,45,56,57,46,51,54,57,49,50,56,44,52,50,46,56,52,53,48,51,54,93,44,91,45,56,57,46,48,49,51,53,56,50,44,52,50,46,56,52,55,54,51,93,44,91,45,56,57,46,48,48,56,56,51,50,44,52,51,46,49,57,55,55,50,52,93,44,91,45,56,57,46,48,48,57,49,51,57,44,52,51,46,50,56,52,56,51,93,44,91,45,56,57,46,55,50,48,52,54,51,44,52,51,46,50,57,51,48,56,52,93,44,91,45,56,57,46,56,51,56,49,51,53,44,52,51,46,50,48,54,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,70,105,115,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,51,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,52,52,50,50,52,44,51,50,46,57,53,57,57,55,56,93,44,91,45,49,48,48,46,53,49,57,50,48,56,44,51,50,46,57,54,50,57,50,54,93,44,91,45,49,48,48,46,54,53,53,56,55,44,51,50,46,57,54,51,52,54,57,93,44,91,45,49,48,48,46,54,54,48,54,50,54,44,51,50,46,53,50,53,51,49,50,93,44,91,45,49,48,48,46,49,52,54,53,52,51,44,51,50,46,53,50,50,55,57,51,93,44,91,45,49,48,48,46,49,52,52,50,50,52,44,51,50,46,57,53,57,57,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,83,97,98,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,56,56,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,52,49,49,55,49,44,51,49,46,56,52,53,50,51,51,93,44,91,45,57,51,46,56,55,57,48,54,49,44,51,49,46,56,52,52,50,56,55,93,44,91,45,57,51,46,55,57,52,53,52,56,44,51,49,46,55,48,50,48,55,54,93,44,91,45,57,51,46,56,51,52,57,49,56,44,51,49,46,53,56,54,50,49,50,93,44,91,45,57,51,46,54,57,50,54,51,49,44,51,49,46,52,51,55,49,57,50,93,44,91,45,57,51,46,54,56,55,53,49,49,44,51,49,46,51,49,48,56,49,51,93,44,91,45,57,51,46,54,48,48,51,48,56,44,51,49,46,49,55,54,49,53,56,93,44,91,45,57,51,46,53,53,50,53,50,52,44,51,49,46,49,56,53,52,48,53,93,44,91,45,57,51,46,53,51,52,57,49,57,44,51,49,46,50,55,54,53,55,57,93,44,91,45,57,51,46,52,52,50,53,53,52,44,51,49,46,50,55,54,55,49,54,93,44,91,45,57,51,46,51,57,48,52,57,53,44,51,49,46,51,54,52,49,52,55,93,44,91,45,57,51,46,50,51,54,49,48,52,44,51,49,46,51,54,52,53,48,55,93,44,91,45,57,51,46,50,51,54,54,54,50,44,51,49,46,53,51,56,51,51,57,93,44,91,45,57,51,46,51,51,55,52,53,54,44,51,49,46,53,51,56,49,49,93,44,91,45,57,51,46,51,51,56,57,55,50,44,51,49,46,55,49,52,50,53,57,93,44,91,45,57,51,46,52,52,49,55,52,51,44,51,49,46,55,49,52,52,56,53,93,44,91,45,57,51,46,52,52,49,49,55,49,44,51,49,46,56,52,53,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,50,54,44,34,98,101,100,115,34,58,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,57,57,49,48,53,44,51,57,46,55,57,48,48,54,93,44,91,45,57,48,46,51,55,49,50,53,54,44,51,57,46,55,53,51,49,50,50,93,44,91,45,57,48,46,51,48,48,54,54,54,44,51,57,46,54,51,54,53,52,49,93,44,91,45,57,48,46,51,48,49,56,51,49,44,51,57,46,53,50,48,51,52,52,93,44,91,45,57,48,46,49,53,51,55,56,50,44,51,57,46,53,50,48,51,49,53,93,44,91,45,56,57,46,57,50,54,48,51,55,44,51,57,46,53,50,50,49,48,52,93,44,91,45,56,57,46,57,56,52,55,52,53,44,51,57,46,55,49,56,48,55,57,93,44,91,45,56,57,46,57,57,52,52,48,53,44,51,57,46,56,55,50,56,54,93,44,91,45,57,48,46,53,56,51,53,51,52,44,51,57,46,56,55,54,55,53,93,44,91,45,57,48,46,53,55,49,52,50,52,44,51,57,46,56,51,56,57,54,49,93,44,91,45,57,48,46,53,57,57,49,48,53,44,51,57,46,55,57,48,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,53,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,57,53,44,34,98,101,100,115,34,58,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,49,53,53,55,57,44,51,50,46,50,56,56,53,53,54,93,44,91,45,56,51,46,54,48,56,53,52,55,44,51,50,46,49,49,56,52,48,53,93,44,91,45,56,51,46,51,51,55,51,49,51,44,51,50,46,49,48,53,56,56,53,93,44,91,45,56,51,46,50,57,49,49,48,54,44,51,50,46,49,55,56,56,50,53,93,44,91,45,56,51,46,51,52,54,53,50,56,44,51,50,46,50,55,50,52,56,57,93,44,91,45,56,51,46,52,57,56,48,51,57,44,51,50,46,52,48,49,55,49,53,93,44,91,45,56,51,46,54,49,53,53,55,57,44,51,50,46,50,56,56,53,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,101,114,116,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,54,52,52,44,34,98,101,100,115,34,58,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,50,57,49,53,49,57,44,51,54,46,49,54,56,51,52,50,93,44,91,45,55,55,46,51,50,55,53,54,57,44,51,54,46,48,55,49,51,54,49,93,44,91,45,55,55,46,48,52,50,56,56,50,44,51,53,46,57,52,50,50,55,56,93,44,91,45,55,55,46,48,48,53,50,53,44,51,53,46,56,53,56,52,51,51,93,44,91,45,55,54,46,55,54,48,53,57,56,44,51,53,46,56,54,52,56,56,55,93,44,91,45,55,54,46,54,48,54,50,49,52,44,51,53,46,57,55,56,48,53,49,93,44,91,45,55,54,46,54,56,50,53,51,53,44,51,54,46,48,51,48,57,52,55,93,44,91,45,55,54,46,55,51,54,57,51,51,44,51,54,46,49,53,48,53,56,51,93,44,91,45,55,54,46,55,48,54,53,56,52,44,51,54,46,50,52,51,55,57,54,93,44,91,45,55,55,46,50,48,56,52,54,56,44,51,54,46,50,52,54,53,55,56,93,44,91,45,55,55,46,50,57,49,53,49,57,44,51,54,46,49,54,56,51,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,83,116,97,110,108,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,49,49,52,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,50,57,53,52,50,49,44,51,53,46,53,48,50,57,50,93,44,91,45,56,48,46,53,48,52,57,56,53,44,51,53,46,49,56,52,57,57,56,93,44,91,45,56,48,46,51,53,56,57,50,50,44,51,53,46,49,54,53,50,56,49,93,44,91,45,56,48,46,50,55,54,56,50,57,44,51,53,46,49,57,53,55,50,50,93,44,91,45,56,48,46,48,55,53,51,54,53,44,51,53,46,49,52,51,48,56,49,93,44,91,45,56,48,46,48,57,56,49,56,53,44,51,53,46,50,53,53,49,55,51,93,44,91,45,56,48,46,48,53,49,55,51,57,44,51,53,46,51,55,50,53,56,53,93,44,91,45,56,48,46,49,56,50,53,53,57,44,51,53,46,53,48,52,49,53,49,93,44,91,45,56,48,46,50,57,53,52,50,49,44,51,53,46,53,48,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,82,104,101,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,54,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,49,54,48,54,50,44,51,53,46,55,54,49,57,51,57,93,44,91,45,56,53,46,49,48,55,55,54,50,44,51,53,46,53,55,49,51,53,57,93,44,91,45,56,53,46,49,51,53,49,57,49,44,51,53,46,52,53,56,54,52,57,93,44,91,45,56,53,46,48,49,54,51,52,51,44,51,53,46,52,48,57,50,56,56,93,44,91,45,56,52,46,57,49,53,48,52,57,44,51,53,46,52,52,48,55,55,49,93,44,91,45,56,52,46,55,56,50,51,54,54,44,51,53,46,53,57,52,55,57,57,93,44,91,45,56,52,46,55,50,51,56,53,51,44,51,53,46,55,53,50,56,57,54,93,44,91,45,56,52,46,55,56,49,57,48,49,44,51,53,46,56,50,53,93,44,91,45,56,52,46,57,49,54,48,54,50,44,51,53,46,55,54,49,57,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,48,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,55,48,48,54,57,50,44,51,53,46,54,53,50,50,57,53,93,44,91,45,55,55,46,56,50,50,53,49,49,44,51,53,46,53,56,53,51,56,51,93,44,91,45,55,55,46,56,48,54,50,52,56,44,51,53,46,51,54,56,55,53,52,93,44,91,45,55,55,46,54,51,57,49,48,49,44,51,53,46,51,53,52,48,56,54,93,44,91,45,55,55,46,52,55,53,53,49,53,44,51,53,46,52,50,54,54,53,53,93,44,91,45,55,55,46,53,48,51,52,44,51,53,46,53,49,55,52,52,53,93,44,91,45,55,55,46,55,48,48,54,57,50,44,51,53,46,54,53,50,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,76,101,115,108,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,55,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,48,55,56,56,54,44,51,55,46,50,51,53,56,55,55,93,44,91,45,56,51,46,53,53,49,51,48,51,44,51,55,46,49,54,55,53,49,93,44,91,45,56,51,46,53,48,57,48,56,51,44,51,54,46,57,51,56,53,48,57,93,44,91,45,56,51,46,52,56,57,56,49,51,44,51,54,46,56,57,53,52,49,51,93,44,91,45,56,51,46,50,54,48,48,50,44,51,54,46,57,54,56,57,53,49,93,44,91,45,56,51,46,49,56,50,49,48,52,44,51,55,46,48,50,49,49,49,53,93,44,91,45,56,51,46,50,48,56,49,50,49,44,51,55,46,49,55,52,54,53,57,93,44,91,45,56,51,46,52,54,48,57,57,50,44,51,55,46,50,57,51,56,52,56,93,44,91,45,56,51,46,53,48,55,56,56,54,44,51,55,46,50,51,53,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,83,111,109,101,114,115,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,57,52,56,52,53,52,44,51,56,46,50,49,53,57,54,93,44,91,45,55,54,46,48,55,56,53,55,53,44,51,56,46,48,54,48,57,50,93,44,91,45,55,54,46,50,48,52,55,49,57,44,51,56,46,48,53,56,52,49,93,44,91,45,55,54,46,50,51,54,49,52,49,44,51,55,46,56,56,56,52,54,56,93,44,91,45,55,54,46,50,51,54,52,53,56,44,51,55,46,56,56,54,54,48,53,93,44,91,45,55,54,46,48,53,50,48,50,49,44,51,55,46,57,53,51,53,55,56,93,44,91,45,55,53,46,57,53,50,54,55,50,44,51,55,46,57,48,54,56,50,55,93,44,91,45,55,53,46,56,48,49,50,52,44,51,55,46,57,49,50,49,55,52,93,44,91,45,55,53,46,54,50,52,51,52,51,44,51,55,46,57,57,52,50,48,56,93,44,91,45,55,53,46,53,52,53,56,48,54,44,51,56,46,48,56,54,55,52,57,93,44,91,45,55,53,46,53,52,53,56,57,56,44,51,56,46,49,55,56,55,52,93,44,91,45,55,53,46,54,49,50,55,54,52,44,51,56,46,50,55,56,54,50,54,93,44,91,45,55,53,46,55,54,57,54,55,49,44,51,56,46,50,56,52,53,56,55,93,44,91,45,55,53,46,57,52,56,52,53,52,44,51,56,46,50,49,53,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,54,50,50,51,55,44,52,49,46,49,48,52,48,48,56,93,44,91,45,56,57,46,51,53,56,52,51,55,44,52,49,46,49,48,51,56,52,57,93,44,91,45,56,57,46,52,54,54,49,48,49,44,52,49,46,49,52,56,53,50,52,93,44,91,45,56,57,46,54,51,56,53,51,54,44,52,49,46,49,52,56,53,52,53,93,44,91,45,56,57,46,54,51,56,55,50,55,44,52,48,46,57,55,51,55,48,55,93,44,91,45,56,57,46,52,55,50,51,51,44,52,48,46,57,50,49,50,48,54,93,44,91,45,56,57,46,48,52,55,55,49,56,44,52,48,46,57,50,53,55,52,57,93,44,91,45,56,57,46,48,52,55,51,57,52,44,52,49,46,49,48,52,55,56,54,93,44,91,45,56,57,46,49,54,50,50,51,55,44,52,49,46,49,48,52,48,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,76,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,57,51,53,49,57,44,51,55,46,49,52,55,50,53,54,93,44,91,45,56,56,46,50,52,48,51,55,49,44,51,54,46,57,56,49,57,49,49,93,44,91,45,56,56,46,49,53,55,51,52,55,44,51,54,46,56,54,55,49,56,51,93,44,91,45,56,55,46,56,55,54,57,57,54,44,51,54,46,57,54,48,49,49,54,93,44,91,45,56,56,46,48,52,50,49,52,50,44,51,55,46,49,55,52,55,53,54,93,44,91,45,56,56,46,48,57,53,55,56,49,44,51,55,46,49,55,57,54,56,52,93,44,91,45,56,56,46,49,57,51,53,49,57,44,51,55,46,49,52,55,50,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,67,111,110,99,104,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,51,51,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,49,50,51,52,44,51,49,46,53,56,48,50,54,55,93,44,91,45,49,48,48,46,49,49,53,50,49,54,44,51,49,46,48,56,55,57,57,52,93,44,91,45,57,57,46,54,48,51,50,50,51,44,51,49,46,48,56,55,50,57,54,93,44,91,45,57,57,46,54,48,49,56,53,44,51,49,46,52,57,49,57,53,93,44,91,45,57,57,46,55,50,49,54,57,56,44,51,49,46,53,55,54,55,53,57,93,44,91,45,49,48,48,46,49,49,49,50,51,52,44,51,49,46,53,56,48,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,67,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,51,53,49,51,55,44,51,50,46,48,56,50,51,55,50,93,44,91,45,49,48,48,46,54,54,53,51,53,51,44,51,50,46,48,56,53,52,48,55,93,44,91,45,49,48,48,46,56,50,49,53,57,52,44,51,50,46,48,56,54,54,49,93,44,91,45,49,48,48,46,56,50,53,51,55,44,51,49,46,54,57,54,49,53,53,93,44,91,45,49,48,48,46,50,51,53,55,54,49,44,51,49,46,54,57,50,57,55,93,44,91,45,49,48,48,46,50,51,53,49,51,55,44,51,50,46,48,56,50,51,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,79,118,101,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,48,52,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,56,52,56,55,56,44,51,54,46,53,51,49,50,57,51,93,44,91,45,56,53,46,52,51,56,56,48,56,44,51,54,46,53,48,49,49,48,50,93,44,91,45,56,53,46,52,57,53,52,50,50,44,51,54,46,52,48,51,48,55,52,93,44,91,45,56,53,46,52,57,53,49,50,52,44,51,54,46,51,48,50,50,55,56,93,44,91,45,56,53,46,52,49,57,52,51,50,44,51,54,46,50,51,54,49,52,53,93,44,91,45,56,53,46,49,49,57,53,56,51,44,51,54,46,49,52,52,55,49,57,93,44,91,45,56,53,46,48,56,50,52,57,55,44,51,54,46,49,57,54,49,55,49,93,44,91,45,56,53,46,49,50,48,52,52,53,44,51,54,46,52,48,55,49,54,52,93,44,91,45,56,53,46,50,56,52,56,55,56,44,51,54,46,53,51,49,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,117,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,52,51,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,56,53,50,56,44,52,52,46,49,54,56,52,48,52,93,44,91,45,56,51,46,55,48,56,53,50,53,44,52,51,46,56,51,51,57,52,56,93,44,91,45,56,51,46,55,48,56,51,49,55,44,52,51,46,56,50,56,55,50,49,93,44,91,45,56,51,46,52,54,55,52,48,51,44,52,51,46,55,50,56,57,48,57,93,44,91,45,56,51,46,52,54,54,53,57,50,44,52,51,46,54,54,55,54,50,49,93,44,91,45,56,51,46,49,49,55,56,52,52,44,52,51,46,54,55,53,52,57,51,93,44,91,45,56,50,46,49,52,53,53,48,49,44,52,51,46,54,57,53,53,56,55,93,44,91,45,56,50,46,50,52,57,57,49,52,44,52,52,46,49,53,56,55,53,49,93,44,91,45,56,51,46,49,56,53,50,56,44,52,52,46,49,54,56,52,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,73,111,115,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,52,55,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,51,57,55,55,44,52,52,46,49,54,49,55,56,54,93,44,91,45,56,51,46,49,56,53,50,56,44,52,52,46,49,54,56,52,48,52,93,44,91,45,56,50,46,50,52,57,57,49,52,44,52,52,46,49,53,56,55,53,49,93,44,91,45,56,50,46,51,50,57,53,49,57,44,52,52,46,53,49,50,56,51,52,93,44,91,45,56,51,46,56,56,54,54,51,52,44,52,52,46,53,48,56,57,55,54,93,44,91,45,56,51,46,56,56,51,57,55,55,44,52,52,46,49,54,49,55,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,67,111,102,102,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,57,54,49,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,57,56,51,54,44,51,49,46,54,55,51,49,54,52,93,44,91,45,56,51,46,49,52,53,53,56,55,44,51,49,46,52,55,50,50,55,54,93,44,91,45,56,51,46,49,52,48,52,56,51,44,51,49,46,52,50,48,51,57,53,93,44,91,45,56,50,46,56,52,52,48,57,51,44,51,49,46,52,48,51,51,50,56,93,44,91,45,56,50,46,56,49,55,53,52,52,44,51,49,46,51,54,52,52,56,54,93,44,91,45,56,50,46,54,50,56,57,55,53,44,51,49,46,51,54,51,57,51,93,44,91,45,56,50,46,53,57,55,53,48,57,44,51,49,46,52,54,57,50,57,51,93,44,91,45,56,50,46,54,50,55,51,52,50,44,51,49,46,54,55,50,54,55,50,93,44,91,45,56,50,46,56,51,54,54,51,51,44,51,49,46,54,55,49,51,57,56,93,44,91,45,56,50,46,56,51,54,51,54,54,44,51,49,46,56,49,54,49,53,52,93,44,91,45,56,50,46,57,57,53,54,57,56,44,51,49,46,55,56,48,57,56,51,93,44,91,45,56,50,46,57,57,56,51,54,44,51,49,46,54,55,51,49,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,57,34,44,34,78,65,77,69,34,58,34,87,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,57,57,44,34,98,101,100,115,34,58,50,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,55,49,54,54,57,44,51,49,46,49,56,51,55,51,57,93,44,91,45,56,50,46,53,57,50,48,55,49,44,51,49,46,48,49,56,52,56,55,93,44,91,45,56,50,46,52,57,48,53,53,56,44,51,48,46,57,54,51,49,54,54,93,44,91,45,56,50,46,52,51,53,56,53,50,44,51,48,46,56,50,48,48,54,56,93,44,91,45,56,50,46,52,49,56,57,49,52,44,51,48,46,53,56,49,55,54,55,93,44,91,45,56,50,46,50,49,52,54,55,55,44,51,48,46,53,54,56,53,53,54,93,44,91,45,56,50,46,49,52,57,56,55,50,44,51,48,46,55,56,52,51,51,54,93,44,91,45,56,50,46,52,50,48,52,52,50,44,51,48,46,55,57,53,50,50,57,93,44,91,45,56,50,46,52,49,53,54,48,51,44,51,49,46,48,49,51,53,57,93,44,91,45,56,50,46,49,51,49,54,57,56,44,51,49,46,48,49,48,55,49,52,93,44,91,45,56,50,46,50,48,56,50,54,50,44,51,49,46,48,56,52,55,54,56,93,44,91,45,56,50,46,50,48,56,55,51,50,44,51,49,46,49,55,48,57,51,56,93,44,91,45,56,50,46,50,56,52,53,54,49,44,51,49,46,50,50,52,52,52,57,93,44,91,45,56,50,46,51,56,51,55,48,53,44,51,49,46,50,57,49,49,52,51,93,44,91,45,56,50,46,52,49,55,50,52,54,44,51,49,46,52,49,55,49,49,57,93,44,91,45,56,50,46,53,57,55,53,48,57,44,51,49,46,52,54,57,50,57,51,93,44,91,45,56,50,46,54,50,56,57,55,53,44,51,49,46,51,54,51,57,51,93,44,91,45,56,50,46,54,55,49,54,54,57,44,51,49,46,49,56,51,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,48,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,57,57,56,51,50,55,44,52,54,46,48,53,51,50,55,52,93,44,91,45,49,48,49,46,56,54,49,56,50,44,52,54,46,48,54,52,55,57,52,93,44,91,45,49,48,49,46,54,55,55,54,49,50,44,52,54,46,48,49,50,56,55,49,93,44,91,45,49,48,49,46,52,57,54,52,50,51,44,52,54,46,48,50,51,55,50,56,93,44,91,45,49,48,49,46,51,48,51,53,49,52,44,52,54,46,49,48,53,53,48,51,93,44,91,45,49,48,49,46,48,50,53,54,57,49,44,52,54,46,50,56,52,52,49,52,93,44,91,45,49,48,49,46,48,52,56,53,50,55,44,52,54,46,51,55,49,52,53,93,44,91,45,49,48,49,46,50,57,56,57,56,57,44,52,54,46,51,55,49,52,48,52,93,44,91,45,49,48,49,46,50,57,56,56,50,51,44,52,54,46,54,51,48,52,51,49,93,44,91,45,49,48,49,46,55,49,56,52,54,50,44,52,54,46,54,51,49,50,56,51,93,44,91,45,49,48,49,46,55,49,56,50,50,56,44,52,54,46,55,49,55,56,51,52,93,44,91,45,49,48,50,46,48,57,54,50,52,44,52,54,46,55,49,55,55,55,50,93,44,91,45,49,48,50,46,48,57,54,55,52,52,44,52,54,46,54,51,49,48,50,54,93,44,91,45,49,48,50,46,48,53,49,50,52,44,52,54,46,54,51,48,57,49,55,93,44,91,45,49,48,50,46,48,52,54,55,56,57,44,52,54,46,50,56,51,55,52,54,93,44,91,45,49,48,49,46,57,57,55,57,51,44,52,54,46,50,48,53,51,50,52,93,44,91,45,49,48,49,46,57,57,56,51,50,55,44,52,54,46,48,53,51,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,53,51,48,48,44,34,98,101,100,115,34,58,51,50,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,53,57,56,56,57,44,51,48,46,49,54,51,52,49,93,44,91,45,57,48,46,50,56,48,50,57,54,44,50,57,46,57,55,50,54,49,56,93,44,91,45,57,48,46,50,52,48,49,55,51,44,50,57,46,56,54,50,49,49,55,93,44,91,45,57,48,46,49,54,55,50,57,55,44,50,57,46,56,49,55,52,48,55,93,44,91,45,57,48,46,50,50,56,49,53,55,44,50,57,46,54,57,50,48,50,56,93,44,91,45,57,48,46,49,55,48,51,56,55,44,50,57,46,54,56,51,53,50,51,93,44,91,45,57,48,46,49,51,55,53,48,52,44,50,57,46,52,55,55,49,54,51,93,44,91,45,57,48,46,48,50,48,54,50,50,44,50,57,46,52,50,56,52,54,49,93,44,91,45,57,48,46,48,48,48,48,54,56,44,50,57,46,50,57,52,57,49,50,93,44,91,45,57,48,46,48,57,48,51,51,55,44,50,57,46,49,56,48,53,55,52,93,44,91,45,57,48,46,48,56,57,48,57,50,44,50,57,46,48,57,52,54,52,56,93,44,91,45,56,57,46,56,57,57,54,54,52,44,50,57,46,49,53,53,48,48,57,93,44,91,45,56,57,46,57,48,50,50,54,55,44,50,57,46,50,57,50,50,56,52,93,44,91,45,56,57,46,57,55,55,52,55,44,50,57,46,52,52,57,51,55,49,93,44,91,45,56,57,46,57,56,48,56,49,50,44,50,57,46,53,56,48,49,53,53,93,44,91,45,57,48,46,48,54,55,50,52,50,44,50,57,46,55,51,56,54,54,52,93,44,91,45,57,48,46,48,48,56,48,53,54,44,50,57,46,56,57,53,53,50,56,93,44,91,45,57,48,46,49,51,56,53,55,52,44,50,57,46,57,49,56,56,48,53,93,44,91,45,57,48,46,49,48,56,49,49,57,44,51,48,46,49,54,52,57,52,93,44,91,45,57,48,46,49,53,54,50,53,54,44,51,48,46,49,56,57,54,49,51,93,44,91,45,57,48,46,50,53,57,56,56,57,44,51,48,46,49,54,51,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,83,116,46,32,84,97,109,109,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,48,57,51,44,34,98,101,100,115,34,58,49,49,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,53,53,54,52,56,44,51,48,46,55,49,49,57,48,53,93,44,91,45,57,48,46,50,52,51,54,52,57,44,51,48,46,51,54,49,53,56,49,93,44,91,45,57,48,46,49,54,48,54,51,54,44,51,48,46,50,51,52,51,51,55,93,44,91,45,57,48,46,49,53,54,50,53,54,44,51,48,46,49,56,57,54,49,51,93,44,91,45,57,48,46,49,48,56,49,49,57,44,51,48,46,49,54,52,57,52,93,44,91,45,56,57,46,57,48,51,50,51,52,44,51,48,46,49,57,56,54,54,93,44,91,45,56,57,46,55,57,55,52,49,52,44,51,48,46,49,54,48,55,53,55,93,44,91,45,56,57,46,54,50,53,48,53,52,44,51,48,46,49,53,51,52,57,51,93,44,91,45,56,57,46,52,57,52,57,55,51,44,51,48,46,49,54,48,55,53,93,44,91,45,56,57,46,54,51,49,54,49,52,44,51,48,46,50,53,55,48,49,51,93,44,91,45,56,57,46,54,57,48,48,51,53,44,51,48,46,52,53,57,51,51,51,93,44,91,45,56,57,46,55,53,50,56,48,55,44,51,48,46,53,48,50,57,54,50,93,44,91,45,56,57,46,56,52,50,51,51,44,51,48,46,54,54,54,48,49,53,93,44,91,45,56,57,46,57,57,52,50,48,49,44,51,48,46,54,54,53,52,51,93,44,91,45,57,48,46,50,53,53,54,52,56,44,51,48,46,55,49,49,57,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,50,55,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,57,57,52,56,53,44,52,50,46,53,53,55,55,93,44,91,45,57,51,46,52,54,50,54,51,53,44,52,50,46,52,55,48,56,48,50,93,44,91,45,57,51,46,52,54,51,48,52,51,44,52,50,46,50,48,57,51,48,50,93,44,91,45,57,51,46,50,51,49,55,50,50,44,52,50,46,50,48,56,56,56,54,93,44,91,45,57,51,46,48,48,49,54,55,52,44,52,50,46,50,48,57,50,54,55,93,44,91,45,57,51,46,48,48,50,57,48,50,44,52,50,46,52,55,48,54,51,56,93,44,91,45,57,51,46,48,50,55,44,52,50,46,53,53,54,56,49,93,44,91,45,57,51,46,52,57,57,52,56,53,44,52,50,46,53,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,97,109,101,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,54,56,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,57,54,51,55,49,44,51,48,46,48,51,56,52,55,57,93,44,91,45,57,51,46,49,50,56,52,55,53,44,51,48,46,48,53,50,53,56,55,93,44,91,45,57,51,46,55,50,50,53,49,55,44,51,48,46,48,53,48,56,55,50,93,44,91,45,57,51,46,56,53,52,52,49,50,44,50,57,46,56,54,53,48,53,51,93,44,91,45,57,51,46,57,50,50,55,52,52,44,50,57,46,56,49,56,56,48,56,93,44,91,45,57,51,46,56,49,52,51,53,49,44,50,57,46,53,57,54,53,55,54,93,44,91,45,57,51,46,55,55,48,49,52,55,44,50,57,46,54,55,48,56,50,53,93,44,91,45,57,51,46,52,56,55,55,53,52,44,50,57,46,55,49,55,56,49,49,93,44,91,45,57,51,46,49,50,53,49,53,44,50,57,46,55,48,54,50,48,57,93,44,91,45,57,50,46,54,49,55,51,48,54,44,50,57,46,53,50,55,49,50,57,93,44,91,45,57,50,46,54,49,53,54,49,44,51,48,46,48,51,56,49,54,56,93,44,91,45,57,50,46,55,51,56,54,48,52,44,51,48,46,48,51,55,51,50,51,93,44,91,45,57,50,46,57,57,54,51,55,49,44,51,48,46,48,51,56,52,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,56,57,54,44,34,98,101,100,115,34,58,49,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,55,55,48,48,53,44,51,57,46,53,54,57,49,54,57,93,44,91,45,56,52,46,48,48,54,55,56,50,44,51,57,46,50,53,53,48,54,56,93,44,91,45,56,51,46,57,57,51,49,50,44,51,57,46,50,53,52,50,51,53,93,44,91,45,56,51,46,56,54,53,54,55,57,44,51,57,46,50,52,55,51,51,51,93,44,91,45,56,51,46,55,56,52,55,57,51,44,51,57,46,50,54,50,56,56,56,93,44,91,45,56,51,46,53,57,48,56,55,56,44,51,57,46,51,55,56,55,51,54,93,44,91,45,56,51,46,53,55,54,50,56,54,44,51,57,46,53,52,52,53,52,55,93,44,91,45,56,51,46,54,55,48,49,57,54,44,51,57,46,53,53,48,50,53,52,93,44,91,45,56,51,46,57,55,55,48,48,53,44,51,57,46,53,54,57,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,111,117,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,48,56,48,44,34,98,101,100,115,34,58,49,49,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,56,49,49,53,56,44,52,55,46,56,57,49,56,55,93,44,91,45,57,51,46,48,54,49,50,53,51,44,52,55,46,55,50,48,49,56,55,93,44,91,45,57,51,46,48,54,57,53,44,52,55,46,51,57,51,57,49,53,93,44,91,45,57,51,46,48,53,53,57,52,51,44,52,55,46,48,50,54,52,49,53,93,44,91,45,57,51,46,48,54,49,53,50,57,44,52,54,46,55,54,54,53,53,93,44,91,45,57,50,46,51,48,49,54,55,54,44,52,54,46,55,54,52,49,51,52,93,44,91,45,57,50,46,50,57,50,50,52,50,44,52,54,46,54,54,51,51,49,56,93,44,91,45,57,50,46,50,49,50,51,57,50,44,52,54,46,54,52,57,57,52,49,93,44,91,45,57,50,46,48,56,57,52,57,51,44,52,54,46,55,52,57,50,51,55,93,44,91,45,57,50,46,48,50,48,50,57,52,44,52,54,46,55,48,52,48,52,49,93,44,91,45,57,49,46,55,57,54,51,51,44,52,54,46,55,57,52,56,51,56,93,44,91,45,57,49,46,55,56,55,57,50,56,44,52,55,46,53,52,54,56,49,55,93,44,91,45,57,49,46,55,57,56,50,53,50,44,52,56,46,50,48,50,56,53,56,93,44,91,45,57,50,46,48,48,54,53,55,52,44,52,56,46,50,54,53,52,50,51,93,44,91,45,57,50,46,49,54,49,57,56,51,44,52,56,46,51,54,51,51,48,54,93,44,91,45,57,50,46,50,56,56,57,57,52,44,52,56,46,51,52,50,57,57,93,44,91,45,57,50,46,51,55,48,49,48,51,44,52,56,46,50,50,48,50,57,57,93,44,91,45,57,50,46,53,48,55,50,56,53,44,52,56,46,52,52,55,56,55,54,93,44,91,45,57,50,46,54,53,54,48,50,55,44,52,56,46,52,51,54,55,48,57,93,44,91,45,57,50,46,55,50,56,48,52,54,44,52,56,46,53,51,57,50,56,57,93,44,91,45,57,50,46,57,56,52,57,54,51,44,52,56,46,54,50,51,55,51,49,93,44,91,45,57,51,46,48,56,56,52,51,56,44,52,56,46,54,50,55,53,57,55,93,44,91,45,57,51,46,48,57,54,52,56,56,44,52,56,46,48,54,55,56,50,54,93,44,91,45,57,51,46,48,56,49,49,53,56,44,52,55,46,56,57,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,76,111,114,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,54,55,49,51,44,34,98,101,100,115,34,58,49,48,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,52,56,49,50,50,44,52,49,46,55,48,48,48,53,55,93,44,91,45,56,50,46,51,52,50,51,49,52,44,52,49,46,50,56,51,53,53,52,93,44,91,45,56,50,46,51,51,54,52,57,54,44,52,49,46,48,54,53,55,54,49,93,44,91,45,56,50,46,49,55,49,52,57,50,44,52,49,46,48,54,51,53,51,55,93,44,91,45,56,50,46,49,54,57,56,55,53,44,52,49,46,49,51,55,48,57,55,93,44,91,45,56,49,46,57,55,51,56,57,53,44,52,49,46,49,57,57,56,51,49,93,44,91,45,56,49,46,56,55,56,48,53,51,44,52,49,46,50,55,53,48,52,52,93,44,91,45,56,49,46,57,55,49,50,54,50,44,52,49,46,51,53,49,50,54,56,93,44,91,45,56,49,46,57,55,48,53,56,44,52,49,46,56,55,55,56,52,53,93,44,91,45,56,50,46,51,52,56,49,50,50,44,52,49,46,55,48,48,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,86,101,103,97,32,65,108,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,55,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,53,48,48,57,51,44,49,56,46,53,52,49,48,49,52,93,44,91,45,54,54,46,51,55,55,48,53,56,44,49,56,46,51,52,52,50,52,54,93,44,91,45,54,54,46,51,54,53,50,55,50,44,49,56,46,51,51,51,50,50,57,93,44,91,45,54,54,46,51,49,56,55,54,52,44,49,56,46,51,54,55,52,49,49,93,44,91,45,54,54,46,51,48,51,54,54,51,44,49,56,46,51,56,52,48,55,55,93,44,91,45,54,54,46,51,48,56,51,49,51,44,49,56,46,53,50,57,55,56,56,93,44,91,45,54,54,46,51,53,48,48,57,51,44,49,56,46,53,52,49,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,51,57,57,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,51,49,53,56,44,52,50,46,50,48,57,57,48,56,93,44,91,45,57,52,46,49,54,52,55,48,52,44,52,50,46,50,48,57,57,50,93,44,91,45,57,52,46,49,54,52,49,51,56,44,52,49,46,56,54,51,50,52,52,93,44,91,45,57,51,46,56,49,53,55,50,49,44,52,49,46,56,54,51,52,49,57,93,44,91,45,57,51,46,54,57,56,48,51,50,44,52,49,46,56,54,51,51,55,93,44,91,45,57,51,46,54,57,56,51,57,44,52,50,46,50,48,57,51,51,57,93,44,91,45,57,51,46,57,51,49,53,56,44,52,50,46,50,48,57,57,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,55,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,56,51,55,44,34,98,101,100,115,34,58,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,52,50,57,52,55,44,51,49,46,49,52,54,53,55,56,93,44,91,45,57,52,46,57,51,57,49,50,55,44,51,49,46,48,52,50,48,52,56,93,44,91,45,57,53,46,50,48,48,49,56,44,51,48,46,56,50,52,53,54,54,93,44,91,45,57,53,46,49,52,53,52,50,54,44,51,48,46,55,49,51,55,57,57,93,44,91,45,57,53,46,48,50,52,52,52,51,44,51,48,46,54,54,48,53,48,51,93,44,91,45,57,52,46,56,52,57,52,49,52,44,51,48,46,52,57,51,53,53,51,93,44,91,45,57,52,46,55,51,50,55,51,50,44,51,48,46,52,57,48,48,54,54,93,44,91,45,57,52,46,53,52,53,55,49,55,44,51,48,46,53,50,54,57,55,55,93,44,91,45,57,52,46,54,53,55,57,57,50,44,51,49,46,48,49,50,48,48,55,93,44,91,45,57,52,46,53,54,49,57,52,51,44,51,49,46,48,53,56,57,53,50,93,44,91,45,57,52,46,56,52,50,57,52,55,44,51,49,46,49,52,54,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,68,105,120,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,49,53,56,52,57,44,52,50,46,55,54,49,51,51,56,93,44,91,45,57,55,46,48,49,55,55,56,57,44,52,50,46,51,53,49,51,52,55,93,44,91,45,57,55,46,48,49,55,55,51,44,52,50,46,50,54,52,52,53,51,93,44,91,45,57,54,46,56,50,50,52,57,55,44,52,50,46,50,54,52,50,57,50,93,44,91,45,57,54,46,55,50,54,54,54,49,44,52,50,46,50,55,56,48,48,53,93,44,91,45,57,54,46,55,50,50,50,51,49,44,52,50,46,53,50,52,54,53,50,93,44,91,45,57,54,46,54,51,49,52,57,50,44,52,50,46,53,50,52,51,49,56,93,44,91,45,57,54,46,56,48,54,50,49,51,44,52,50,46,55,48,52,49,53,52,93,44,91,45,57,55,46,48,49,53,56,52,57,44,52,50,46,55,54,49,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,72,97,114,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,49,48,50,53,44,34,98,101,100,115,34,58,50,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,54,57,52,52,57,44,51,57,46,55,50,49,49,55,56,93,44,91,45,55,54,46,53,51,50,49,55,52,44,51,57,46,53,52,51,57,55,55,93,44,91,45,55,54,46,51,57,49,54,56,56,44,51,57,46,52,54,52,53,51,50,93,44,91,45,55,54,46,50,56,55,54,56,57,44,51,57,46,50,53,52,49,48,52,93,44,91,45,55,54,46,48,55,57,57,50,53,44,51,57,46,52,48,53,53,48,54,93,44,91,45,55,54,46,48,52,49,57,55,54,44,51,57,46,52,57,52,50,50,56,93,44,91,45,55,54,46,50,51,51,50,55,57,44,51,57,46,55,50,49,51,54,55,93,44,91,45,55,54,46,50,51,57,56,48,53,44,51,57,46,55,50,49,51,51,53,93,44,91,45,55,54,46,53,54,57,52,52,57,44,51,57,46,55,50,49,49,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,69,100,103,101,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,52,54,57,55,52,44,51,51,46,57,53,51,50,49,93,44,91,45,56,50,46,49,53,53,55,44,51,51,46,57,50,57,50,57,93,44,91,45,56,50,46,49,50,52,56,52,50,44,51,51,46,56,52,50,50,56,49,93,44,91,45,56,50,46,49,55,50,56,48,55,44,51,51,46,55,54,53,49,57,52,93,44,91,45,56,50,46,49,49,53,51,50,57,44,51,51,46,53,57,54,54,49,51,93,44,91,45,56,50,46,48,50,56,50,51,56,44,51,51,46,53,52,52,57,51,52,93,44,91,45,56,50,46,48,49,50,52,55,44,51,51,46,53,51,50,49,49,54,93,44,91,45,56,49,46,54,53,49,55,53,57,44,51,51,46,56,49,52,53,49,93,44,91,45,56,49,46,56,51,54,56,48,51,44,51,51,46,56,54,54,53,48,49,93,44,91,45,56,49,46,56,57,52,53,57,53,44,51,51,46,57,55,53,52,49,53,93,44,91,45,56,50,46,48,48,56,50,57,56,44,51,51,46,57,54,49,54,52,54,93,44,91,45,56,50,46,48,52,54,57,55,52,44,51,51,46,57,53,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,99,99,111,109,97,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,55,52,50,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,54,50,52,51,52,51,44,51,55,46,57,57,52,50,48,56,93,44,91,45,55,53,46,56,48,49,50,52,44,51,55,46,57,49,50,49,55,52,93,44,91,45,55,53,46,57,53,50,54,55,50,44,51,55,46,57,48,54,56,50,55,93,44,91,45,55,54,46,48,53,50,48,50,49,44,51,55,46,57,53,51,53,55,56,93,44,91,45,55,54,46,50,51,54,52,53,56,44,51,55,46,56,56,54,54,48,53,93,44,91,45,55,54,46,49,55,53,54,56,55,44,51,55,46,54,55,49,54,50,54,93,44,91,45,55,54,46,49,53,49,55,49,49,44,51,55,46,53,56,53,57,54,56,93,44,91,45,55,54,46,49,52,48,56,51,53,44,51,55,46,53,52,50,50,50,93,44,91,45,55,53,46,56,51,53,50,49,52,44,51,55,46,53,53,52,50,52,53,93,44,91,45,55,53,46,55,56,55,48,51,44,51,55,46,52,54,52,53,55,56,93,44,91,45,55,53,46,53,57,55,52,52,49,44,51,55,46,52,53,48,57,56,56,93,44,91,45,55,53,46,53,52,49,55,55,57,44,51,55,46,54,48,54,49,52,53,93,44,91,45,55,53,46,52,49,55,48,55,51,44,51,55,46,56,50,49,48,53,93,44,91,45,55,53,46,50,57,54,48,48,52,44,51,55,46,56,52,53,55,53,50,93,44,91,45,55,53,46,49,54,54,52,51,53,44,51,56,46,48,50,55,56,51,52,93,44,91,45,55,53,46,54,50,52,51,52,51,44,51,55,46,57,57,52,50,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,108,117,109,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,56,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,48,52,48,55,44,52,52,46,50,52,52,49,48,50,93,44,91,45,56,56,46,52,48,52,49,56,55,44,52,51,46,57,51,56,50,93,44,91,45,56,56,46,49,54,49,54,53,52,44,52,51,46,57,51,55,54,56,51,93,44,91,45,56,56,46,49,54,50,50,55,52,44,52,51,46,56,57,49,53,49,49,93,44,91,45,56,56,46,48,52,49,55,57,52,44,52,51,46,56,57,49,54,57,50,93,44,91,45,56,56,46,48,52,51,50,52,44,52,52,46,50,52,49,48,49,56,93,44,91,45,56,56,46,49,57,50,54,49,49,44,52,52,46,50,52,49,57,52,55,93,44,91,45,56,56,46,52,48,52,48,55,44,52,52,46,50,52,52,49,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,52,54,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,57,49,56,53,51,44,51,54,46,57,53,53,57,57,50,93,44,91,45,56,52,46,48,54,53,55,53,53,44,51,54,46,56,53,51,57,54,49,93,44,91,45,56,51,46,57,53,56,53,51,52,44,51,54,46,55,50,55,50,52,53,93,44,91,45,56,51,46,56,55,55,53,48,51,44,51,54,46,54,56,55,50,53,57,93,44,91,45,56,51,46,55,56,49,50,49,50,44,51,54,46,56,48,50,54,57,51,93,44,91,45,56,51,46,53,56,49,48,57,52,44,51,54,46,57,48,52,54,54,55,93,44,91,45,56,51,46,53,56,57,53,50,49,44,51,54,46,57,53,53,55,56,54,93,44,91,45,56,51,46,56,55,49,51,49,53,44,51,55,46,48,53,52,57,49,57,93,44,91,45,56,51,46,57,53,57,51,56,53,44,51,54,46,57,55,55,49,50,56,93,44,91,45,56,52,46,48,57,49,56,53,51,44,51,54,46,57,53,53,57,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,73,111,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,49,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,44,91,45,56,53,46,51,49,50,53,49,51,44,52,51,46,49,49,56,55,57,51,93,44,91,45,56,53,46,51,48,57,54,50,54,44,52,50,46,55,54,57,56,55,56,93,44,91,45,56,53,46,48,55,52,50,52,53,44,52,50,46,55,55,48,55,56,52,93,44,91,45,56,52,46,56,51,55,48,56,53,44,52,50,46,55,55,48,52,55,57,93,44,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,78,101,119,32,72,97,110,111,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,50,51,49,44,34,98,101,100,115,34,58,56,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,50,57,57,50,50,44,51,52,46,51,51,49,55,54,56,93,44,91,45,55,55,46,57,53,54,54,48,53,44,51,52,46,50,51,52,52,57,49,93,44,91,45,55,55,46,57,52,56,52,55,57,44,51,51,46,57,55,49,50,55,52,93,44,91,45,55,55,46,56,57,55,48,49,49,44,51,51,46,55,56,54,56,93,44,91,45,55,55,46,56,57,56,57,55,44,51,51,46,56,53,52,54,51,57,93,44,91,45,55,55,46,55,56,53,53,53,53,44,51,52,46,49,50,53,49,55,49,93,44,91,45,55,55,46,54,55,53,50,55,54,44,51,52,46,50,53,51,49,51,93,44,91,45,55,55,46,56,50,51,49,48,50,44,51,52,46,51,56,57,50,56,55,93,44,91,45,55,56,46,48,50,57,57,50,50,44,51,52,46,51,51,49,55,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,79,98,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,50,48,44,34,98,101,100,115,34,58,49,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,51,52,53,56,56,44,51,54,46,53,48,50,54,49,49,93,44,91,45,56,57,46,51,52,54,48,54,54,44,51,54,46,53,48,51,50,51,50,93,44,91,45,56,57,46,51,54,48,49,50,44,51,54,46,52,48,57,50,55,55,93,44,91,45,56,57,46,52,56,50,57,55,49,44,51,54,46,50,49,50,54,53,57,93,44,91,45,56,57,46,49,53,52,52,54,52,44,51,54,46,50,48,52,54,55,56,93,44,91,45,56,56,46,57,53,57,56,51,57,44,51,54,46,50,50,50,56,51,52,93,44,91,45,56,56,46,57,53,48,50,48,53,44,51,54,46,52,48,57,50,52,56,93,44,91,45,56,56,46,56,49,53,51,56,57,44,51,54,46,52,50,50,53,50,56,93,44,91,45,56,56,46,56,50,55,51,48,51,44,51,54,46,53,48,50,54,51,51,93,44,91,45,56,56,46,56,51,52,53,56,56,44,51,54,46,53,48,50,54,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,97,108,108,111,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,55,55,54,44,34,98,101,100,115,34,58,49,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,56,53,54,57,55,44,51,54,46,55,53,48,51,50,56,93,44,91,45,56,56,46,52,56,57,48,55,53,44,51,54,46,53,48,49,49,53,55,93,44,91,45,56,56,46,48,53,51,50,57,51,44,51,54,46,52,57,55,48,53,56,93,44,91,45,56,56,46,48,55,48,53,52,49,44,51,54,46,54,55,56,50,53,53,93,44,91,45,56,56,46,49,49,48,56,51,49,44,51,54,46,55,52,55,49,53,93,44,91,45,56,56,46,52,56,53,54,57,55,44,51,54,46,55,53,48,51,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,98,101,109,97,114,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,51,53,53,44,34,98,101,100,115,34,58,50,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,56,51,56,56,55,52,44,51,56,46,48,52,55,51,55,93,44,91,45,55,56,46,54,52,51,57,49,56,44,51,55,46,55,51,51,48,56,52,93,44,91,45,55,56,46,52,57,49,51,52,53,44,51,55,46,55,57,54,57,53,54,93,44,91,45,55,56,46,51,48,54,55,54,51,44,51,56,46,48,48,54,52,55,52,93,44,91,45,55,56,46,50,48,57,51,56,52,44,51,56,46,49,51,49,49,50,56,93,44,91,45,55,56,46,51,54,56,55,52,51,44,51,56,46,49,56,52,48,55,52,93,44,91,45,55,56,46,54,54,51,49,52,53,44,51,56,46,50,55,55,57,51,51,93,44,91,45,55,56,46,55,52,57,51,57,54,44,51,56,46,50,48,54,54,52,56,93,44,91,45,55,56,46,56,51,56,56,55,52,44,51,56,46,48,52,55,51,55,93,93,44,91,91,45,55,56,46,53,50,51,54,56,44,51,56,46,48,50,50,51,50,55,93,44,91,45,55,56,46,52,56,53,50,48,50,44,51,56,46,48,54,56,57,55,52,93,44,91,45,55,56,46,52,53,52,55,51,50,44,51,56,46,48,52,53,50,55,56,93,44,91,45,55,56,46,52,54,57,53,48,52,44,51,56,46,48,49,49,55,52,53,93,44,91,45,55,56,46,53,50,51,54,56,44,51,56,46,48,50,50,51,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,82,111,98,101,114,116,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,51,52,52,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,50,48,52,52,51,44,51,54,46,52,53,53,52,54,93,44,91,45,56,54,46,57,56,56,48,54,44,51,54,46,51,54,57,49,53,52,93,44,91,45,56,54,46,57,49,51,50,51,51,44,51,54,46,51,56,50,54,50,49,93,44,91,45,56,54,46,55,53,52,55,57,53,44,51,54,46,52,48,53,52,57,54,93,44,91,45,56,54,46,54,57,53,48,54,52,44,51,54,46,52,50,49,51,49,57,93,44,91,45,56,54,46,53,54,51,57,48,57,44,51,54,46,54,51,51,53,54,50,93,44,91,45,56,54,46,55,54,51,50,57,54,44,51,54,46,54,52,56,57,53,52,93,44,91,45,56,55,46,48,54,48,56,52,57,44,51,54,46,54,52,50,57,54,51,93,44,91,45,56,55,46,49,49,52,57,56,51,44,51,54,46,54,52,50,51,55,49,93,44,91,45,56,55,46,49,50,48,52,52,51,44,51,54,46,52,53,53,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,51,51,49,57,49,44,51,57,46,50,54,52,54,49,50,93,44,91,45,55,56,46,49,53,49,54,49,52,44,51,57,46,48,51,54,54,50,57,93,44,91,45,55,56,46,48,48,52,51,49,51,44,51,56,46,57,55,57,52,51,56,93,44,91,45,55,55,46,57,54,50,50,48,51,44,51,57,46,48,49,51,55,51,51,93,44,91,45,55,55,46,56,50,56,50,57,57,44,51,57,46,49,51,50,52,50,54,93,44,91,45,55,56,46,48,51,51,49,57,49,44,51,57,46,50,54,52,54,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,50,50,56,49,50,44,52,54,46,52,54,50,50,52,53,93,44,91,45,49,49,55,46,50,53,52,50,54,50,44,52,54,46,53,52,53,48,56,50,93,44,91,45,49,49,55,46,52,54,52,55,54,57,44,52,54,46,54,57,57,54,50,54,93,44,91,45,49,49,55,46,55,52,48,56,54,56,44,52,54,46,54,57,52,53,56,51,93,44,91,45,49,49,55,46,56,53,49,56,53,44,52,54,46,54,50,52,54,55,93,44,91,45,49,49,55,46,56,54,51,51,52,55,44,52,54,46,52,55,48,54,54,55,93,44,91,45,49,49,55,46,55,51,55,51,48,51,44,52,54,46,52,55,49,52,53,52,93,44,91,45,49,49,55,46,54,49,49,57,48,51,44,52,54,46,51,51,56,52,55,56,93,44,91,45,49,49,55,46,54,48,51,52,50,52,44,52,53,46,57,57,56,57,53,93,44,91,45,49,49,55,46,52,55,57,57,51,53,44,52,53,46,57,57,55,56,48,49,93,44,91,45,49,49,55,46,52,49,57,52,56,50,44,52,54,46,49,50,49,57,53,54,93,44,91,45,49,49,55,46,52,49,57,51,51,52,44,52,54,46,51,56,51,49,51,57,93,44,91,45,49,49,55,46,50,50,56,55,57,54,44,52,54,46,52,49,49,51,48,54,93,44,91,45,49,49,55,46,50,50,56,49,50,44,52,54,46,52,54,50,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,55,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,48,53,53,55,44,51,55,46,53,52,50,56,53,54,93,44,91,45,56,52,46,48,57,48,51,54,52,44,51,55,46,53,54,54,50,50,55,93,44,91,45,56,52,46,49,57,57,52,56,57,44,51,55,46,53,50,50,56,53,56,93,44,91,45,56,52,46,49,51,55,56,57,56,44,51,55,46,51,49,57,55,53,57,93,44,91,45,56,51,46,57,52,51,55,49,56,44,51,55,46,50,53,48,53,53,49,93,44,91,45,56,51,46,55,56,52,57,55,53,44,51,55,46,51,52,56,55,49,55,93,44,91,45,56,51,46,56,56,53,50,54,50,44,51,55,46,53,49,55,54,56,56,93,44,91,45,56,51,46,57,48,53,53,55,44,51,55,46,53,52,50,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,49,49,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,51,49,55,54,49,44,52,56,46,49,56,56,52,56,54,93,44,91,45,57,49,46,48,50,51,49,50,54,44,52,55,46,52,54,52,57,56,50,93,44,91,45,57,48,46,55,57,53,49,56,57,44,52,55,46,50,52,52,50,57,57,93,44,91,45,57,48,46,54,53,52,54,54,44,52,55,46,51,48,57,56,50,50,93,44,91,45,56,57,46,57,53,55,49,48,50,44,52,55,46,50,57,49,49,48,51,93,44,91,45,56,57,46,54,56,48,55,51,44,52,55,46,55,49,52,53,53,50,93,44,91,45,56,57,46,52,56,51,51,56,53,44,52,56,46,48,49,51,55,49,54,93,44,91,45,56,57,46,56,50,48,55,53,51,44,52,56,46,48,49,52,56,57,52,93,44,91,45,56,57,46,56,57,56,56,49,52,44,52,55,46,57,56,56,48,52,57,93,44,91,45,57,48,46,48,50,51,51,51,49,44,52,56,46,48,56,52,55,52,56,93,44,91,45,57,48,46,49,51,50,53,54,55,44,52,56,46,49,49,49,54,55,49,93,44,91,45,57,48,46,51,55,52,55,54,57,44,52,56,46,48,57,48,57,53,52,93,44,91,45,57,48,46,55,54,49,52,48,52,44,52,56,46,48,57,56,51,56,52,93,44,91,45,57,48,46,56,56,53,52,56,44,52,56,46,50,52,53,55,56,52,93,44,91,45,57,49,46,48,51,49,55,54,49,44,52,56,46,49,56,56,52,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,79,99,111,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,54,57,54,44,34,98,101,100,115,34,58,49,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,48,56,54,49,51,44,51,53,46,48,48,48,54,53,57,93,44,91,45,56,51,46,49,50,55,51,53,55,44,51,52,46,57,53,48,49,57,53,93,44,91,45,56,51,46,51,50,52,49,53,44,51,52,46,55,56,55,52,55,57,93,44,91,45,56,51,46,51,53,50,52,52,56,44,51,52,46,55,49,54,49,50,53,93,44,91,45,56,51,46,51,51,56,50,51,52,44,51,52,46,54,56,55,49,56,55,93,44,91,45,56,51,46,49,48,51,54,55,51,44,51,52,46,53,51,54,54,49,55,93,44,91,45,56,51,46,48,53,49,54,51,56,44,51,52,46,52,57,51,55,48,50,93,44,91,45,56,50,46,57,57,50,50,51,50,44,51,52,46,52,55,57,50,53,56,93,44,91,45,56,50,46,56,53,53,49,48,51,44,51,52,46,54,48,57,48,48,55,93,44,91,45,56,50,46,56,52,52,56,49,55,44,51,52,46,54,49,56,55,49,57,93,44,91,45,56,50,46,56,52,48,49,53,53,44,51,52,46,54,50,51,49,50,93,44,91,45,56,50,46,56,57,54,48,50,53,44,51,52,46,55,51,54,53,52,55,93,44,91,45,56,50,46,56,57,55,51,55,51,44,51,53,46,48,53,54,50,49,52,93,44,91,45,56,51,46,48,48,56,53,51,49,44,51,53,46,48,50,55,51,57,52,93,44,91,45,56,51,46,49,48,56,53,54,56,44,51,53,46,48,48,49,51,53,52,93,44,91,45,56,51,46,49,48,56,54,49,51,44,51,53,46,48,48,48,54,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,69,97,115,116,32,66,97,116,111,110,32,82,111,117,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,52,48,57,52,44,34,98,101,100,115,34,58,50,51,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,57,55,54,53,56,44,51,48,46,54,52,57,53,52,56,93,44,91,45,57,49,46,51,49,53,50,56,50,44,51,48,46,53,57,52,50,56,56,93,44,91,45,57,49,46,49,57,55,50,48,56,44,51,48,46,53,48,55,48,56,56,93,44,91,45,57,49,46,50,52,49,53,48,56,44,51,48,46,51,53,55,53,57,50,93,44,91,45,57,49,46,49,52,50,49,48,53,44,51,48,46,51,50,51,50,57,51,93,44,91,45,57,49,46,48,50,49,48,49,52,44,51,48,46,51,50,49,52,56,57,93,44,91,45,57,48,46,56,57,49,55,50,56,44,51,48,46,51,52,53,50,52,52,93,44,91,45,57,48,46,57,55,55,53,48,51,44,51,48,46,52,50,48,56,57,57,93,44,91,45,57,48,46,57,55,55,52,48,49,44,51,48,46,53,57,51,52,56,53,93,44,91,45,57,48,46,57,49,48,55,48,49,44,51,48,46,54,52,57,51,56,53,93,44,91,45,57,48,46,56,52,57,48,52,49,44,51,48,46,55,49,57,51,49,49,93,44,91,45,57,49,46,50,53,52,52,49,57,44,51,48,46,55,48,53,50,57,52,93,44,91,45,57,49,46,50,57,55,54,53,56,44,51,48,46,54,52,57,53,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,108,97,105,98,111,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,50,48,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,50,56,54,50,50,44,51,50,46,50,50,53,49,49,57,93,44,91,45,57,48,46,55,55,52,56,50,44,51,50,46,49,53,51,57,57,51,93,44,91,45,57,48,46,57,53,54,55,56,55,44,51,50,46,48,56,51,53,57,55,93,44,91,45,57,49,46,48,51,48,50,48,55,44,51,50,46,49,49,52,51,53,51,93,44,91,45,57,49,46,50,52,56,49,52,52,44,51,49,46,56,54,57,56,52,56,93,44,91,45,57,49,46,48,49,51,54,55,54,44,51,49,46,56,54,49,56,53,50,93,44,91,45,57,48,46,55,51,54,50,56,50,44,51,49,46,55,56,54,49,51,52,93,44,91,45,57,48,46,55,49,56,50,57,55,44,51,50,46,48,52,56,51,53,50,93,44,91,45,57,48,46,55,50,56,54,50,50,44,51,50,46,50,50,53,49,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,77,97,114,121,39,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,53,51,49,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,55,52,49,49,56,44,51,56,46,52,57,57,54,50,50,93,44,91,45,55,54,46,55,55,52,57,53,53,44,51,56,46,53,48,56,57,93,44,91,45,55,54,46,56,55,49,52,54,44,51,56,46,51,56,57,57,51,55,93,44,91,45,55,54,46,56,50,49,50,53,54,44,51,56,46,50,54,56,55,53,56,93,44,91,45,55,54,46,56,54,56,56,53,57,44,51,56,46,49,55,49,51,55,50,93,44,91,45,55,54,46,54,49,48,51,56,52,44,51,56,46,49,52,56,53,49,54,93,44,91,45,55,54,46,53,49,54,51,54,57,44,51,56,46,48,51,52,55,50,52,93,44,91,45,55,54,46,50,51,54,49,52,49,44,51,55,46,56,56,56,52,54,56,93,44,91,45,55,54,46,50,48,52,55,49,57,44,51,56,46,48,53,56,52,49,93,44,91,45,55,54,46,51,50,49,57,48,56,44,51,56,46,51,50,55,50,56,52,93,44,91,45,55,54,46,52,52,53,51,51,52,44,51,56,46,51,48,53,50,49,93,44,91,45,55,54,46,54,55,52,49,49,56,44,51,56,46,52,57,57,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,51,49,52,48,44,34,98,101,100,115,34,58,50,48,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,48,54,54,50,44,52,51,46,50,48,53,49,54,55,93,44,91,45,56,53,46,55,56,50,52,57,56,44,52,50,46,55,54,56,50,93,44,91,45,56,53,46,53,52,53,53,54,52,44,52,50,46,55,54,56,49,51,57,93,44,91,45,56,53,46,51,48,57,54,50,54,44,52,50,46,55,54,57,56,55,56,93,44,91,45,56,53,46,51,49,50,53,49,51,44,52,51,46,49,49,56,55,57,51,93,44,91,45,56,53,46,51,49,50,51,55,54,44,52,51,46,50,57,52,50,48,53,93,44,91,45,56,53,46,53,54,50,53,51,56,44,52,51,46,50,57,52,50,55,49,93,44,91,45,56,53,46,55,57,48,52,52,56,44,52,51,46,50,57,51,48,48,51,93,44,91,45,56,53,46,55,57,48,54,54,50,44,52,51,46,50,48,53,49,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,80,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,51,55,50,44,34,98,101,100,115,34,58,49,48,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,55,48,48,54,57,50,44,51,53,46,54,53,50,50,57,53,93,44,91,45,55,55,46,53,48,51,52,44,51,53,46,53,49,55,52,52,53,93,44,91,45,55,55,46,52,55,53,53,49,53,44,51,53,46,52,50,54,54,53,53,93,44,91,45,55,55,46,51,57,49,48,50,54,44,51,53,46,51,51,57,53,51,51,93,44,91,45,55,55,46,49,56,57,49,49,53,44,51,53,46,52,49,56,51,54,50,93,44,91,45,55,55,46,49,55,52,44,51,53,46,55,51,50,56,51,49,93,44,91,45,55,55,46,51,53,48,51,54,57,44,51,53,46,56,49,57,50,50,56,93,44,91,45,55,55,46,51,57,48,49,53,52,44,51,53,46,56,51,51,48,54,50,93,44,91,45,55,55,46,54,54,53,49,51,49,44,51,53,46,54,55,52,57,51,53,93,44,91,45,55,55,46,55,48,48,54,57,50,44,51,53,46,54,53,50,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,97,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,52,54,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,56,52,51,48,49,54,44,52,53,46,54,49,49,48,52,50,93,44,91,45,49,48,57,46,48,54,56,52,57,56,44,52,53,46,53,56,51,50,52,49,93,44,91,45,49,48,57,46,49,57,49,55,54,49,44,52,53,46,52,54,52,53,48,52,93,44,91,45,49,48,57,46,51,53,54,52,49,55,44,52,53,46,52,54,52,51,50,54,93,44,91,45,49,48,57,46,53,54,49,57,50,52,44,52,53,46,51,54,50,56,52,51,93,44,91,45,49,48,57,46,54,56,55,55,57,50,44,52,53,46,49,54,55,51,51,57,93,44,91,45,49,48,57,46,55,57,56,54,55,51,44,52,53,46,49,54,55,51,51,57,93,44,91,45,49,48,57,46,55,57,56,52,56,51,44,52,53,46,48,48,50,51,51,51,93,44,91,45,49,48,56,46,54,50,49,51,49,53,44,52,53,46,48,48,48,51,54,49,93,44,91,45,49,48,56,46,50,52,57,52,49,50,44,52,52,46,57,57,57,57,48,52,93,44,91,45,49,48,56,46,49,50,50,49,56,52,44,52,53,46,50,49,54,51,49,55,93,44,91,45,49,48,56,46,54,57,57,54,49,54,44,52,53,46,50,49,55,55,48,57,93,44,91,45,49,48,56,46,54,56,50,50,50,51,44,52,53,46,52,51,51,49,51,50,93,44,91,45,49,48,56,46,54,52,53,51,50,53,44,52,53,46,52,54,52,48,55,51,93,44,91,45,49,48,56,46,56,52,51,48,49,54,44,52,53,46,54,49,49,48,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,83,116,97,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,57,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,52,48,52,44,52,50,46,48,57,48,57,50,50,93,44,91,45,57,55,46,51,54,56,48,55,44,52,49,46,55,52,51,50,48,55,93,44,91,45,57,55,46,50,53,50,52,50,53,44,52,49,46,55,52,51,48,56,53,93,44,91,45,57,55,46,48,49,57,57,49,49,44,52,49,46,55,52,50,57,56,93,44,91,45,57,55,46,48,49,57,51,53,57,44,52,50,46,48,57,48,53,55,55,93,44,91,45,57,55,46,51,54,56,52,48,52,44,52,50,46,48,57,48,57,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,112,112,108,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,53,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,49,53,51,49,44,51,49,46,57,54,54,49,56,50,93,44,91,45,56,50,46,52,51,49,51,54,50,44,51,49,46,56,51,55,57,57,51,93,44,91,45,56,50,46,53,50,48,50,53,49,44,51,49,46,56,51,56,51,56,56,93,44,91,45,56,50,46,53,50,49,52,50,44,51,49,46,55,49,48,55,57,54,93,44,91,45,56,50,46,50,50,54,53,56,53,44,51,49,46,53,51,48,54,57,57,93,44,91,45,56,50,46,49,51,50,55,57,52,44,51,49,46,52,55,49,50,54,50,93,44,91,45,56,50,46,49,51,51,48,49,51,44,51,49,46,55,55,51,52,48,52,93,44,91,45,56,50,46,48,52,56,53,56,50,44,51,49,46,56,50,55,48,55,53,93,44,91,45,56,50,46,50,50,53,48,52,50,44,51,49,46,57,49,51,48,55,52,93,44,91,45,56,50,46,52,51,49,53,51,49,44,51,49,46,57,54,54,49,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,57,49,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,52,55,57,51,51,44,52,49,46,56,54,51,49,48,52,93,44,91,45,57,51,46,51,50,56,54,49,52,44,52,49,46,53,48,55,56,50,52,93,44,91,45,57,50,46,56,55,49,52,50,49,44,52,49,46,53,48,56,53,50,50,93,44,91,45,57,50,46,55,53,54,53,48,56,44,52,49,46,53,48,56,55,57,52,93,44,91,45,57,50,46,55,54,53,57,57,57,44,52,49,46,56,54,50,51,55,51,93,44,91,45,57,51,46,50,51,49,56,53,56,44,52,49,46,56,54,50,55,49,49,93,44,91,45,57,51,46,51,52,55,57,51,51,44,52,49,46,56,54,51,49,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,50,50,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,55,51,50,50,55,44,51,49,46,56,57,51,56,53,54,93,44,91,45,56,56,46,54,50,50,51,57,52,44,51,49,46,56,53,55,49,57,51,93,44,91,45,56,56,46,57,49,48,52,53,57,44,51,49,46,56,50,54,54,52,57,93,44,91,45,56,56,46,57,52,51,51,53,53,44,51,49,46,56,50,52,53,54,53,93,44,91,45,56,56,46,57,52,51,52,54,56,44,51,49,46,52,51,51,52,53,56,93,44,91,45,56,56,46,56,52,49,55,48,55,44,51,49,46,52,51,51,55,48,51,93,44,91,45,56,56,46,52,52,57,52,51,56,44,51,49,46,52,51,53,56,51,55,93,44,91,45,56,56,46,52,54,52,52,51,44,51,49,46,54,57,55,57,53,50,93,44,91,45,56,56,46,52,55,51,50,50,55,44,51,49,46,56,57,51,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,67,111,116,116,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,49,55,51,52,44,51,52,46,51,49,52,49,48,50,93,44,91,45,49,48,48,46,53,49,56,54,57,49,44,51,51,46,56,51,53,54,53,93,44,91,45,49,48,48,46,48,52,56,52,56,44,51,51,46,56,51,53,57,55,52,93,44,91,45,49,48,48,46,48,52,55,48,50,56,44,51,52,46,50,50,57,55,56,93,44,91,45,57,57,46,57,57,55,54,50,49,44,51,52,46,50,50,52,51,53,53,93,44,91,45,57,57,46,57,57,55,55,50,44,51,52,46,51,49,49,56,50,57,93,44,91,45,49,48,48,46,52,49,55,55,56,51,44,51,52,46,51,49,51,53,50,52,93,44,91,45,49,48,48,46,53,49,55,51,52,44,51,52,46,51,49,52,49,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,115,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,53,56,48,51,54,44,51,54,46,56,57,52,53,49,52,93,44,91,45,55,55,46,54,53,53,56,52,49,44,51,54,46,55,49,51,53,51,57,93,44,91,45,55,55,46,55,54,55,49,53,44,51,54,46,53,52,53,51,55,52,93,44,91,45,55,55,46,50,57,54,56,55,53,44,51,54,46,53,52,52,56,53,53,93,44,91,45,55,55,46,51,54,48,57,48,54,44,51,54,46,53,54,52,55,54,93,44,91,45,55,55,46,52,51,48,49,50,55,44,51,54,46,55,48,55,54,53,56,93,44,91,45,55,55,46,53,49,48,51,54,44,51,54,46,56,52,53,48,56,50,93,44,91,45,55,55,46,54,49,57,48,50,57,44,51,54,46,56,55,55,56,52,52,93,44,91,45,55,55,46,54,53,56,48,51,54,44,51,54,46,56,57,52,53,49,52,93,93,44,91,91,45,55,55,46,53,54,51,56,56,56,44,51,54,46,55,48,51,48,54,55,93,44,91,45,55,55,46,53,48,57,51,54,53,44,51,54,46,55,49,54,51,57,56,93,44,91,45,55,55,46,53,48,57,50,52,54,44,51,54,46,54,56,50,57,57,56,93,44,91,45,55,55,46,53,53,54,53,50,52,44,51,54,46,54,55,52,56,55,52,93,44,91,45,55,55,46,53,54,51,56,56,56,44,51,54,46,55,48,51,48,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,56,54,55,49,44,34,98,101,100,115,34,58,49,55,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,48,53,56,53,51,44,50,56,46,49,55,49,54,53,93,44,91,45,56,50,46,48,53,54,50,54,49,44,50,56,46,49,55,49,53,57,50,93,44,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,44,91,45,56,49,46,53,54,51,53,51,51,44,50,55,46,54,52,54,54,52,53,93,44,91,45,56,49,46,49,52,50,49,54,52,44,50,55,46,54,52,51,50,51,56,93,44,91,45,56,49,46,50,49,52,52,48,57,44,50,55,46,56,50,56,53,53,93,44,91,45,56,49,46,50,57,55,49,49,51,44,50,55,46,56,53,57,53,56,50,93,44,91,45,56,49,46,51,56,49,48,50,50,44,50,55,46,57,56,51,51,57,51,93,44,91,45,56,49,46,51,52,54,52,49,56,44,50,56,46,48,56,52,54,57,54,93,44,91,45,56,49,46,52,53,53,55,53,56,44,50,56,46,48,56,52,56,57,93,44,91,45,56,49,46,53,50,52,50,50,55,44,50,56,46,49,52,50,56,48,53,93,44,91,45,56,49,46,53,53,55,52,53,57,44,50,56,46,50,53,57,51,54,50,93,44,91,45,56,49,46,54,53,55,49,56,57,44,50,56,46,50,53,57,50,49,55,93,44,91,45,56,49,46,54,53,55,50,54,56,44,50,56,46,51,52,55,48,57,56,93,44,91,45,56,49,46,57,53,55,54,52,49,44,50,56,46,51,52,53,49,56,93,44,91,45,56,50,46,48,53,53,56,49,57,44,50,56,46,51,49,50,55,57,52,93,44,91,45,56,50,46,49,48,53,56,53,51,44,50,56,46,49,55,49,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,53,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,48,51,34,44,34,78,65,77,69,34,58,34,89,111,117,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,49,52,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,44,91,45,57,56,46,57,53,48,56,55,53,44,51,50,46,57,53,54,57,49,56,93,44,91,45,57,56,46,53,55,53,54,49,54,44,51,50,46,57,53,52,51,52,57,93,44,91,45,57,56,46,52,50,54,53,53,51,44,51,51,46,48,48,55,57,49,51,93,44,91,45,57,56,46,52,50,48,54,54,54,44,51,51,46,51,57,54,49,57,53,93,44,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,84,97,108,108,97,112,111,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,54,51,54,44,34,98,101,100,115,34,58,49,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,51,54,53,52,44,51,51,46,49,48,54,54,51,52,93,44,91,45,56,54,46,48,48,57,49,55,44,51,51,46,48,57,48,50,54,93,44,91,45,56,54,46,48,48,55,49,56,55,44,51,50,46,55,53,52,57,56,52,93,44,91,45,56,53,46,56,55,57,56,54,44,51,50,46,55,53,52,53,50,56,93,44,91,45,56,53,46,56,56,54,49,52,56,44,51,50,46,52,57,51,48,53,51,93,44,91,45,56,53,46,55,57,56,53,56,53,44,51,50,46,53,56,49,48,56,57,93,44,91,45,56,53,46,54,57,53,56,53,52,44,51,50,46,53,57,53,57,51,51,93,44,91,45,56,53,46,54,57,54,55,53,53,44,51,50,46,54,57,55,52,50,57,93,44,91,45,56,53,46,53,57,51,49,53,49,44,51,50,46,55,50,56,53,51,93,44,91,45,56,53,46,53,57,51,49,55,55,44,51,51,46,49,48,55,51,52,93,44,91,45,56,53,46,54,53,51,54,53,52,44,51,51,46,49,48,54,54,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,82,111,99,107,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,49,50,57,44,34,98,101,100,115,34,58,53,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,56,50,48,48,49,57,44,52,51,46,49,50,50,53,52,53,93,44,91,45,55,48,46,56,55,53,52,51,54,44,52,51,46,48,56,48,52,50,50,93,44,91,45,55,49,46,48,50,54,54,56,54,44,52,51,46,49,51,55,57,52,55,93,44,91,45,55,49,46,50,52,55,51,51,54,44,52,51,46,50,55,53,50,51,50,93,44,91,45,55,49,46,51,57,50,51,56,56,44,52,51,46,48,48,57,51,48,57,93,44,91,45,55,49,46,52,53,48,52,51,54,44,52,50,46,57,51,49,48,50,93,44,91,45,55,49,46,52,50,55,48,54,55,44,52,50,46,56,50,52,56,52,93,44,91,45,55,49,46,50,52,53,52,56,49,44,52,50,46,55,52,50,53,49,52,93,44,91,45,55,49,46,49,51,50,56,48,53,44,52,50,46,56,50,49,52,55,54,93,44,91,45,55,48,46,57,50,57,53,57,52,44,52,50,46,56,56,53,48,51,50,93,44,91,45,55,48,46,55,51,53,48,48,53,44,52,50,46,56,55,52,54,56,53,93,44,91,45,55,48,46,53,55,53,48,57,52,44,52,50,46,57,49,55,49,50,54,93,44,91,45,55,48,46,56,50,48,48,49,57,44,52,51,46,49,50,50,53,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,82,105,111,32,71,114,97,110,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,53,49,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,51,56,52,49,51,44,51,55,46,55,52,56,51,53,51,93,44,91,45,49,48,54,46,53,56,54,51,55,52,44,51,55,46,55,52,55,56,48,57,93,44,91,45,49,48,54,46,54,57,51,56,52,53,44,51,55,46,56,51,53,50,52,52,93,44,91,45,49,48,54,46,55,49,48,55,55,53,44,51,55,46,52,48,52,50,50,56,93,44,91,45,49,48,54,46,54,55,56,51,55,51,44,51,55,46,52,48,51,53,57,54,93,44,91,45,49,48,54,46,48,51,57,51,51,49,44,51,55,46,52,48,48,56,53,50,93,44,91,45,49,48,54,46,48,51,56,52,49,51,44,51,55,46,55,52,56,51,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,80,108,121,109,111,117,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,51,56,52,53,56,44,52,50,46,57,48,56,55,55,49,93,44,91,45,57,54,46,54,51,53,53,54,49,44,52,50,46,55,52,48,56,52,55,93,44,91,45,57,54,46,52,57,56,55,55,54,44,52,50,46,53,54,49,48,52,51,93,44,91,45,57,53,46,56,53,57,57,52,57,44,52,50,46,53,54,48,54,50,93,44,91,45,57,53,46,56,53,57,51,55,55,44,52,50,46,57,48,57,48,57,55,93,44,91,45,57,54,46,53,51,56,52,53,56,44,52,50,46,57,48,56,55,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,89,97,116,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,55,49,51,57,50,44,52,50,46,55,54,52,50,50,51,93,44,91,45,55,55,46,51,49,51,48,48,52,44,52,50,46,55,54,49,50,54,53,93,44,91,45,55,55,46,51,54,54,53,48,53,44,52,50,46,53,55,54,51,54,56,93,44,91,45,55,55,46,49,52,51,55,57,53,44,52,50,46,53,55,54,56,54,57,93,44,91,45,55,55,46,49,48,55,50,48,51,44,52,50,46,52,56,51,55,55,49,93,44,91,45,55,54,46,56,56,57,56,48,53,44,52,50,46,52,54,51,48,53,52,93,44,91,45,55,54,46,56,57,53,53,57,54,44,52,50,46,53,52,49,53,51,55,93,44,91,45,55,54,46,56,57,53,51,52,57,44,52,50,46,54,53,54,50,53,53,93,44,91,45,55,54,46,57,55,49,51,57,50,44,52,50,46,55,54,52,50,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,75,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,54,51,50,53,55,44,34,98,101,100,115,34,58,52,54,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,52,51,56,48,57,51,44,52,55,46,55,55,55,56,49,52,93,44,91,45,49,50,50,46,52,52,55,48,49,55,44,52,55,46,53,52,48,48,52,52,93,44,91,45,49,50,50,46,53,51,54,57,57,51,44,52,55,46,52,48,51,51,53,53,93,44,91,45,49,50,50,46,51,51,52,57,49,52,44,52,55,46,50,53,55,51,54,54,93,44,91,45,49,50,50,46,49,52,51,57,55,54,44,52,55,46,50,53,55,53,50,54,93,44,91,45,49,50,50,46,48,57,52,55,54,52,44,52,55,46,49,57,52,57,55,55,93,44,91,45,49,50,49,46,57,50,56,49,57,53,44,52,55,46,49,52,55,51,53,56,93,44,91,45,49,50,49,46,55,57,54,52,54,52,44,52,55,46,49,55,51,48,53,57,93,44,91,45,49,50,49,46,51,55,57,57,54,49,44,52,55,46,48,56,55,50,52,56,93,44,91,45,49,50,49,46,51,55,57,54,56,50,44,52,55,46,48,56,55,52,57,53,93,44,91,45,49,50,49,46,51,49,53,53,51,52,44,52,55,46,49,51,51,56,52,52,93,44,91,45,49,50,49,46,51,52,49,50,48,51,44,52,55,46,50,56,49,50,54,49,93,44,91,45,49,50,49,46,52,54,51,57,53,49,44,52,55,46,51,55,48,53,55,56,93,44,91,45,49,50,49,46,49,55,50,49,57,50,44,52,55,46,53,57,48,50,51,51,93,44,91,45,49,50,49,46,49,49,51,53,54,57,44,52,55,46,53,57,55,50,56,56,93,44,91,45,49,50,49,46,49,49,57,49,55,57,44,52,55,46,55,55,57,57,51,51,93,44,91,45,49,50,49,46,57,57,49,55,55,53,44,52,55,46,55,55,53,51,52,57,93,44,91,45,49,50,50,46,52,51,56,48,57,51,44,52,55,46,55,55,55,56,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,68,101,115,99,104,117,116,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,54,52,48,44,34,98,101,100,115,34,58,51,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,49,48,55,53,51,52,44,52,52,46,51,57,48,54,93,44,91,45,49,50,49,46,56,52,51,49,51,56,44,52,52,46,51,57,50,54,51,93,44,91,45,49,50,49,46,56,49,57,52,50,57,44,52,52,46,50,54,50,51,57,52,93,44,91,45,49,50,49,46,55,54,56,48,55,44,52,52,46,49,49,53,50,52,53,93,44,91,45,49,50,49,46,56,53,55,48,54,51,44,52,51,46,57,54,53,50,52,56,93,44,91,45,49,50,49,46,57,55,50,57,51,49,44,52,51,46,56,54,49,49,53,54,93,44,91,45,49,50,50,46,48,48,50,51,54,50,44,52,51,46,54,49,53,52,57,56,93,44,91,45,49,50,49,46,51,51,50,57,54,57,44,52,51,46,54,49,54,54,52,53,93,44,91,45,49,49,57,46,56,57,54,53,56,49,44,52,51,46,54,49,49,49,54,52,93,44,91,45,49,49,57,46,56,57,55,52,51,52,44,52,51,46,54,57,56,50,93,44,91,45,49,50,48,46,50,53,55,55,55,55,44,52,51,46,54,57,56,55,54,50,93,44,91,45,49,50,48,46,51,55,56,49,48,55,44,52,51,46,55,56,53,52,50,57,93,44,91,45,49,50,48,46,51,55,56,55,52,44,52,51,46,56,55,50,51,54,50,93,44,91,45,49,50,48,46,55,52,55,56,52,56,44,52,51,46,56,55,49,51,51,49,93,44,91,45,49,50,48,46,55,52,56,50,52,57,44,52,51,46,57,53,55,51,49,93,44,91,45,49,50,48,46,57,56,54,53,56,55,44,52,51,46,57,54,48,56,53,50,93,44,91,45,49,50,48,46,57,56,55,50,55,49,44,52,52,46,49,51,52,48,50,54,93,44,91,45,49,50,49,46,49,48,50,55,55,51,44,52,52,46,49,51,56,49,50,53,93,44,91,45,49,50,49,46,49,48,55,53,51,52,44,52,52,46,51,57,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,80,111,116,116,97,119,97,116,116,97,109,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,53,48,51,44,34,98,101,100,115,34,58,53,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,51,55,55,57,49,44,52,49,46,51,57,48,55,53,50,93,44,91,45,57,53,46,57,50,51,53,52,56,44,52,49,46,49,57,48,56,53,93,44,91,45,57,53,46,56,56,48,53,50,49,44,52,49,46,49,53,57,56,55,52,93,44,91,45,57,53,46,51,56,52,51,52,57,44,52,49,46,49,54,48,48,49,49,93,44,91,45,57,53,46,49,53,53,56,53,49,44,52,49,46,49,53,57,50,51,54,93,44,91,45,57,53,46,49,53,52,55,50,50,44,52,49,46,53,48,53,50,49,49,93,44,91,45,57,53,46,52,57,55,57,57,55,44,52,49,46,53,48,54,48,55,52,93,44,91,45,57,53,46,57,57,54,49,57,52,44,52,49,46,53,48,54,57,54,93,44,91,45,57,53,46,57,51,55,55,57,49,44,52,49,46,51,57,48,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,57,34,44,34,78,65,77,69,34,58,34,87,114,105,103,104,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,56,54,54,55,49,44,51,55,46,52,56,49,53,52,53,93,44,91,45,57,50,46,54,56,53,56,54,55,44,51,55,46,48,54,55,48,53,49,93,44,91,45,57,50,46,50,53,49,51,53,57,44,51,55,46,48,53,57,54,53,51,93,44,91,45,57,50,46,50,53,50,50,54,49,44,51,55,46,52,55,50,57,52,52,93,44,91,45,57,50,46,54,56,54,54,55,49,44,51,55,46,52,56,49,53,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,84,111,111,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,55,54,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,49,57,51,52,49,44,52,56,46,57,57,56,52,55,53,93,44,91,45,49,49,50,46,49,56,52,55,56,52,44,52,56,46,52,55,55,53,55,56,93,44,91,45,49,49,50,46,48,48,52,52,51,54,44,52,56,46,52,52,56,56,56,54,93,44,91,45,49,49,49,46,57,57,48,56,56,57,44,52,56,46,51,57,52,50,54,53,93,44,91,45,49,49,49,46,55,57,53,57,49,44,52,56,46,51,57,51,48,56,49,93,44,91,45,49,49,49,46,54,54,53,55,53,54,44,52,56,46,51,52,57,52,53,54,93,44,91,45,49,49,49,46,54,54,53,53,57,57,44,52,56,46,50,49,57,53,52,57,93,44,91,45,49,49,49,46,52,48,57,48,49,56,44,52,56,46,50,49,57,53,52,50,93,44,91,45,49,49,49,46,50,55,53,51,48,54,44,52,56,46,50,49,57,53,51,49,93,44,91,45,49,49,49,46,50,54,57,56,54,50,44,52,56,46,57,57,55,50,51,93,44,91,45,49,49,50,46,49,57,51,52,49,44,52,56,46,57,57,56,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,84,105,111,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,50,53,51,51,53,57,44,52,50,46,52,48,55,53,54,56,93,44,91,45,55,54,46,50,53,48,49,52,57,44,52,50,46,50,57,54,54,55,54,93,44,91,45,55,54,46,52,49,53,51,48,53,44,52,50,46,51,49,56,51,54,56,93,44,91,45,55,54,46,53,51,56,51,52,57,44,52,50,46,50,56,49,55,53,53,93,44,91,45,55,54,46,53,53,55,54,50,52,44,52,50,46,48,48,48,49,54,93,44,91,45,55,54,46,49,52,53,53,49,57,44,52,49,46,57,57,56,56,52,50,93,44,91,45,55,54,46,49,48,53,56,52,44,52,49,46,57,57,56,56,53,56,93,44,91,45,55,54,46,49,49,54,50,50,53,44,52,50,46,49,56,53,54,49,93,44,91,45,55,54,46,48,56,49,49,51,52,44,52,50,46,50,51,48,52,57,53,93,44,91,45,55,54,46,49,51,48,49,56,49,44,52,50,46,52,49,48,51,51,55,93,44,91,45,55,54,46,50,53,51,51,53,57,44,52,50,46,52,48,55,53,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,55,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,53,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,51,52,52,54,51,44,51,48,46,52,48,50,56,52,51,93,44,91,45,57,55,46,48,56,49,56,51,52,44,51,48,46,50,53,57,51,53,55,93,44,91,45,57,55,46,48,50,52,52,54,49,44,51,48,46,48,53,49,52,51,53,93,44,91,45,57,54,46,55,57,52,53,53,50,44,51,48,46,49,54,48,53,52,53,93,44,91,45,57,54,46,54,52,48,56,56,51,44,51,48,46,50,57,54,55,56,54,93,44,91,45,57,54,46,55,53,51,56,51,53,44,51,48,46,51,50,57,51,52,56,93,44,91,45,57,54,46,57,54,51,54,50,57,44,51,48,46,53,53,55,49,54,57,93,44,91,45,57,55,46,49,53,53,50,49,57,44,51,48,46,52,53,55,51,52,52,93,44,91,45,57,55,46,51,51,52,52,54,51,44,51,48,46,52,48,50,56,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,57,48,50,44,34,98,101,100,115,34,58,52,53,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,55,56,49,51,50,44,51,51,46,55,52,51,53,48,55,93,44,91,45,56,52,46,54,53,54,52,51,51,44,51,51,46,54,53,57,52,48,57,93,44,91,45,56,52,46,56,48,56,57,51,52,44,51,51,46,53,55,52,48,56,53,93,44,91,45,56,52,46,56,53,48,55,49,51,44,51,51,46,53,49,49,52,53,55,93,44,91,45,56,52,46,54,48,57,53,52,44,51,51,46,53,48,50,53,49,49,93,44,91,45,56,52,46,52,53,56,54,54,53,44,51,51,46,53,53,48,57,51,51,93,44,91,45,56,52,46,52,53,55,55,50,54,44,51,51,46,54,52,56,56,54,54,93,44,91,45,56,52,46,51,53,48,50,50,52,44,51,51,46,54,52,55,57,48,56,93,44,91,45,56,52,46,51,52,55,56,49,57,44,51,51,46,57,54,51,50,56,56,93,44,91,45,56,52,46,50,55,55,48,57,51,44,51,51,46,57,53,55,54,49,52,93,44,91,45,56,52,46,48,57,55,54,57,51,44,51,52,46,48,53,48,55,48,56,93,44,91,45,56,52,46,50,53,56,57,51,52,44,51,52,46,49,48,57,53,51,57,93,44,91,45,56,52,46,50,53,56,55,52,51,44,51,52,46,49,56,53,57,48,57,93,44,91,45,56,52,46,51,50,56,50,54,51,44,51,52,46,49,56,54,49,52,52,93,44,91,45,56,52,46,52,49,56,57,50,55,44,51,52,46,48,55,51,50,57,56,93,44,91,45,56,52,46,51,56,51,48,50,55,44,51,51,46,57,54,51,56,93,44,91,45,56,52,46,52,55,49,51,51,44,51,51,46,56,50,53,57,48,53,93,44,91,45,56,52,46,53,55,56,49,51,50,44,51,51,46,55,52,51,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,57,48,51,44,34,98,101,100,115,34,58,51,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,50,56,53,49,50,44,51,50,46,48,56,52,52,55,53,93,44,91,45,57,53,46,52,52,54,48,50,52,44,51,49,46,56,52,55,57,56,55,93,44,91,45,57,53,46,51,54,54,49,56,55,44,51,49,46,55,50,54,55,53,51,93,44,91,45,57,53,46,50,56,57,54,54,49,44,51,49,46,54,56,51,57,57,55,93,44,91,45,57,53,46,50,55,51,50,48,51,44,51,49,46,53,57,50,56,56,54,93,44,91,45,57,53,46,49,52,57,49,57,56,44,51,49,46,53,54,56,56,48,55,93,44,91,45,57,53,46,48,48,51,51,52,53,44,51,49,46,52,50,53,55,49,93,44,91,45,57,52,46,56,54,53,56,53,55,44,51,49,46,53,50,54,57,49,54,93,44,91,45,57,52,46,57,54,53,50,50,51,44,51,49,46,54,57,51,56,56,53,93,44,91,45,57,52,46,57,51,55,53,51,50,44,51,49,46,56,52,53,53,53,53,93,44,91,45,57,52,46,57,56,53,48,51,55,44,51,49,46,56,52,54,49,57,51,93,44,91,45,57,52,46,57,56,53,50,55,50,44,51,50,46,49,51,55,57,56,57,93,44,91,45,57,53,46,52,53,57,57,48,56,44,51,50,46,49,51,53,53,53,57,93,44,91,45,57,53,46,52,50,56,53,49,50,44,51,50,46,48,56,52,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,117,100,114,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,51,53,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,49,48,51,56,55,44,51,57,46,48,54,52,50,48,52,93,44,91,45,57,49,46,54,51,51,57,57,56,44,51,57,46,48,53,57,48,53,55,93,44,91,45,57,49,46,54,50,57,53,57,56,44,51,57,46,49,52,55,56,53,51,93,44,91,45,57,49,46,52,48,57,48,51,51,44,51,57,46,49,52,50,53,52,50,93,44,91,45,57,49,46,52,51,56,50,51,53,44,51,57,46,51,49,56,55,49,54,93,44,91,45,57,49,46,55,49,55,57,54,56,44,51,57,46,51,51,57,49,50,50,93,44,91,45,57,50,46,51,49,48,48,50,56,44,51,57,46,51,52,55,55,57,53,93,44,91,45,57,50,46,51,49,52,52,55,49,44,51,57,46,50,52,54,52,53,52,93,44,91,45,57,50,46,49,48,52,51,55,52,44,51,57,46,50,51,57,56,48,57,93,44,91,45,57,50,46,49,49,48,51,56,55,44,51,57,46,48,54,52,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,108,108,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,53,54,56,44,34,98,101,100,115,34,58,49,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,44,91,45,56,48,46,57,48,48,49,57,54,44,51,50,46,56,51,50,56,49,51,93,44,91,45,56,48,46,56,50,54,51,48,57,44,51,50,46,55,48,52,51,50,49,93,44,91,45,56,48,46,54,56,52,56,53,51,44,51,50,46,54,53,54,48,57,55,93,44,91,45,56,48,46,53,48,50,57,52,52,44,51,50,46,52,57,53,54,53,50,93,44,91,45,56,48,46,51,48,53,55,49,49,44,51,50,46,51,57,55,53,56,57,93,44,91,45,56,48,46,50,50,51,53,57,44,51,50,46,52,56,50,53,54,53,93,44,91,45,56,48,46,52,49,54,53,56,54,44,51,50,46,53,52,54,51,49,56,93,44,91,45,56,48,46,52,48,51,50,56,50,44,51,50,46,54,53,49,54,50,50,93,44,91,45,56,48,46,52,53,51,54,51,44,51,50,46,55,51,57,57,93,44,91,45,56,48,46,52,48,49,51,52,44,51,50,46,56,53,56,52,54,54,93,44,91,45,56,48,46,52,48,50,50,50,54,44,51,51,46,48,53,51,50,51,56,93,44,91,45,56,48,46,54,50,51,56,49,53,44,51,51,46,48,54,54,57,50,55,93,44,91,45,56,48,46,55,57,48,50,57,54,44,51,51,46,49,56,48,56,52,93,44,91,45,56,48,46,55,57,55,57,49,50,44,51,51,46,49,55,54,57,52,52,93,44,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,54,53,50,44,34,98,101,100,115,34,58,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,48,56,56,51,50,44,52,51,46,49,57,55,55,50,52,93,44,91,45,56,57,46,48,49,51,53,56,50,44,52,50,46,56,52,55,54,51,93,44,91,45,56,56,46,55,55,55,48,55,54,44,52,50,46,56,52,50,54,57,52,93,44,91,45,56,56,46,53,52,49,53,51,53,44,52,50,46,56,52,50,57,57,54,93,44,91,45,56,56,46,53,51,53,56,52,51,44,52,51,46,49,57,54,48,52,56,93,44,91,45,56,57,46,48,48,56,56,51,50,44,52,51,46,49,57,55,55,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,54,50,51,44,34,98,101,100,115,34,58,49,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,56,48,57,56,49,54,44,51,54,46,49,52,57,53,54,55,93,44,91,45,57,48,46,56,53,50,48,54,52,44,51,53,46,57,54,56,48,57,50,93,44,91,45,57,48,46,51,56,55,51,55,56,44,51,53,46,57,54,52,55,48,56,93,44,91,45,57,48,46,51,55,55,56,57,44,51,53,46,57,57,53,54,56,51,93,44,91,45,57,48,46,49,57,48,50,48,55,44,51,54,46,50,48,49,51,54,49,93,44,91,45,57,48,46,51,49,57,56,50,44,51,54,46,50,53,57,49,52,52,93,44,91,45,57,48,46,56,48,54,54,49,53,44,51,54,46,50,54,54,56,54,53,93,44,91,45,57,48,46,56,48,57,56,49,54,44,51,54,46,49,52,57,53,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,72,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,55,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,57,52,52,57,51,57,44,51,52,46,55,52,56,50,56,49,93,44,91,45,49,48,48,46,57,52,54,49,51,50,44,51,52,46,51,49,50,55,53,57,93,44,91,45,49,48,48,46,53,49,55,51,52,44,51,52,46,51,49,52,49,48,50,93,44,91,45,49,48,48,46,52,49,55,55,56,51,44,51,52,46,51,49,51,53,50,52,93,44,91,45,49,48,48,46,52,49,53,56,57,53,44,51,52,46,55,52,55,53,50,53,93,44,91,45,49,48,48,46,53,52,48,55,48,51,44,51,52,46,55,52,55,55,50,51,93,44,91,45,49,48,48,46,57,52,52,57,51,57,44,51,52,46,55,52,56,50,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,117,114,110,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,57,51,55,48,53,44,52,54,46,49,53,55,51,50,49,93,44,91,45,57,50,46,51,53,48,52,48,55,44,52,54,46,48,49,54,51,54,56,93,44,91,45,57,50,46,55,49,50,53,48,51,44,52,53,46,56,57,49,55,48,53,93,44,91,45,57,50,46,56,52,49,48,53,49,44,52,53,46,55,51,48,48,50,52,93,44,91,45,57,50,46,56,56,55,48,54,55,44,52,53,46,54,52,52,49,52,56,93,44,91,45,57,50,46,53,50,57,49,48,55,44,52,53,46,54,52,50,48,55,54,93,44,91,45,57,50,46,53,50,56,49,57,56,44,52,53,46,55,50,56,54,56,93,44,91,45,57,50,46,49,53,52,52,52,51,44,52,53,46,55,50,53,54,49,54,93,44,91,45,57,50,46,49,53,52,56,56,56,44,52,53,46,54,51,57,55,52,50,93,44,91,45,57,50,46,48,51,49,52,49,55,44,52,53,46,54,51,57,57,50,56,93,44,91,45,57,50,46,48,52,57,54,51,54,44,52,54,46,49,53,55,53,57,55,93,44,91,45,57,50,46,50,57,51,55,48,53,44,52,54,46,49,53,55,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,84,111,114,114,97,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,49,49,55,56,49,44,51,52,46,56,55,48,50,53,50,93,44,91,45,49,48,54,46,52,54,51,56,54,56,44,51,52,46,56,55,48,49,57,52,93,44,91,45,49,48,54,46,52,54,57,55,57,44,51,52,46,53,50,49,50,49,55,93,44,91,45,49,48,54,46,52,49,54,57,50,52,44,51,52,46,52,51,57,54,56,55,93,44,91,45,49,48,54,46,52,49,53,57,55,50,44,51,52,46,50,53,57,56,50,50,93,44,91,45,49,48,53,46,57,50,53,57,54,56,44,51,52,46,50,53,57,57,57,93,44,91,45,49,48,53,46,51,49,51,50,49,56,44,51,52,46,50,54,48,48,51,49,93,44,91,45,49,48,53,46,51,49,51,48,55,50,44,51,52,46,51,52,55,50,48,53,93,44,91,45,49,48,53,46,50,57,48,51,57,54,44,51,52,46,54,48,54,55,54,54,93,44,91,45,49,48,53,46,50,57,48,55,57,49,44,51,53,46,48,52,50,48,51,93,44,91,45,49,48,53,46,55,49,52,52,49,57,44,51,53,46,48,52,49,54,48,53,93,44,91,45,49,48,54,46,50,52,51,56,55,52,44,51,53,46,48,52,48,48,48,51,93,44,91,45,49,48,54,46,50,52,51,55,54,50,44,51,52,46,57,53,51,51,53,53,93,44,91,45,49,48,54,46,49,52,57,55,51,55,44,51,52,46,56,55,48,49,52,50,93,44,91,45,49,48,54,46,52,49,49,55,56,49,44,51,52,46,56,55,48,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,80,97,99,105,102,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,50,56,49,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,49,55,53,49,51,49,44,52,54,46,55,57,51,55,51,50,93,44,91,45,49,50,52,46,49,50,57,57,53,55,44,52,54,46,52,50,54,57,53,57,93,44,91,45,49,50,52,46,49,53,57,53,52,54,44,52,54,46,50,54,49,49,51,50,93,44,91,45,49,50,51,46,57,55,54,50,55,53,44,52,54,46,50,54,57,57,48,55,93,44,91,45,49,50,51,46,56,55,49,56,54,57,44,52,54,46,50,51,52,57,52,57,93,44,91,45,49,50,51,46,55,50,56,51,49,54,44,52,54,46,50,54,52,53,52,49,93,44,91,45,49,50,51,46,55,50,54,53,53,55,44,52,54,46,51,56,52,56,55,50,93,44,91,45,49,50,51,46,51,53,56,51,51,52,44,52,54,46,51,56,52,48,50,53,93,44,91,45,49,50,51,46,51,55,48,57,53,44,52,54,46,55,57,50,49,50,57,93,44,91,45,49,50,52,46,49,55,53,49,51,49,44,52,54,46,55,57,51,55,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,80,101,110,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,48,50,48,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,49,52,48,48,55,44,51,52,46,55,50,49,55,57,53,93,44,91,45,55,56,46,50,53,52,52,52,49,44,51,52,46,53,53,51,53,57,53,93,44,91,45,55,56,46,49,55,54,53,48,49,44,51,52,46,52,54,53,51,53,54,93,44,91,45,55,56,46,50,53,54,48,56,53,44,51,52,46,51,57,57,52,54,57,93,44,91,45,55,56,46,49,54,50,51,53,44,51,52,46,51,53,55,48,48,55,93,44,91,45,55,56,46,48,50,57,57,50,50,44,51,52,46,51,51,49,55,54,56,93,44,91,45,55,55,46,56,50,51,49,48,50,44,51,52,46,51,56,57,50,56,55,93,44,91,45,55,55,46,54,55,53,50,55,54,44,51,52,46,50,53,51,49,51,93,44,91,45,55,55,46,52,56,52,53,51,56,44,51,52,46,51,57,57,55,48,53,93,44,91,45,55,55,46,53,55,52,57,50,52,44,51,52,46,52,55,56,54,56,49,93,44,91,45,55,55,46,54,56,48,49,50,55,44,51,52,46,55,50,48,53,57,53,93,44,91,45,55,56,46,49,49,52,48,48,55,44,51,52,46,55,50,49,55,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,49,34,44,34,78,65,77,69,34,58,34,72,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,57,48,49,44,34,98,101,100,115,34,58,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,49,55,48,54,54,44,51,50,46,53,53,53,52,56,52,93,44,91,45,57,56,46,48,54,54,56,51,54,44,51,50,46,53,53,56,56,50,50,93,44,91,45,57,56,46,48,54,56,53,52,53,44,51,50,46,53,49,49,54,50,54,93,44,91,45,57,55,46,57,52,53,54,50,53,44,51,50,46,50,51,51,52,54,56,93,44,91,45,57,55,46,55,56,50,55,54,44,51,50,46,51,49,54,52,57,51,93,44,91,45,57,55,46,54,49,53,50,56,54,44,51,50,46,51,49,56,54,49,56,93,44,91,45,57,55,46,54,49,55,48,54,54,44,51,50,46,53,53,53,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,83,116,97,110,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,48,49,46,49,53,52,53,49,54,44,52,52,46,54,56,57,57,52,55,93,44,91,45,49,48,49,46,49,54,54,55,53,51,44,52,52,46,49,54,56,48,56,53,93,44,91,45,49,48,49,46,48,52,54,57,49,54,44,52,52,46,49,54,56,52,56,52,93,44,91,45,49,48,48,46,51,54,55,50,48,55,44,52,52,46,49,54,56,54,57,52,93,44,91,45,49,48,48,46,51,54,55,50,52,55,44,52,52,46,49,57,52,54,50,49,93,44,91,45,57,57,46,57,51,56,50,49,55,44,52,52,46,49,57,53,49,57,53,93,44,91,45,49,48,48,46,48,56,53,51,51,44,52,52,46,51,48,56,52,53,49,93,44,91,45,49,48,48,46,51,54,53,51,57,44,52,52,46,51,53,53,53,50,52,93,44,91,45,49,48,48,46,51,56,54,51,55,54,44,52,52,46,52,52,48,48,48,56,93,44,91,45,49,48,48,46,53,55,53,55,57,54,44,52,52,46,52,57,49,55,49,51,93,44,91,45,49,48,48,46,53,50,54,52,57,56,44,52,52,46,53,52,55,52,50,50,93,44,91,45,49,48,48,46,54,52,48,48,54,49,44,52,52,46,53,56,51,55,50,51,93,44,91,45,49,48,48,46,54,49,51,56,48,53,44,52,52,46,55,48,55,49,51,53,93,44,91,45,49,48,48,46,55,49,55,54,52,52,44,52,52,46,55,55,48,57,51,93,44,91,45,49,48,48,46,56,50,57,55,57,53,44,52,52,46,55,56,51,50,52,56,93,44,91,45,49,48,49,46,48,50,50,54,49,49,44,52,52,46,55,50,52,49,53,51,93,44,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,48,52,56,54,44,34,98,101,100,115,34,58,49,55,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,48,49,48,54,50,44,51,57,46,55,50,50,52,49,56,93,44,91,45,49,50,48,46,48,48,51,55,55,51,44,51,57,46,52,52,53,48,53,54,93,44,91,45,49,50,48,46,48,48,54,51,50,51,44,51,57,46,51,49,54,52,57,54,93,44,91,45,49,50,48,46,48,48,52,50,57,55,44,51,57,46,49,54,53,54,48,51,93,44,91,45,49,49,57,46,56,56,48,55,56,55,44,51,57,46,49,54,53,53,48,57,93,44,91,45,49,49,57,46,55,49,50,54,52,53,44,51,57,46,50,53,48,56,55,49,93,44,91,45,49,49,57,46,54,55,55,52,55,54,44,51,57,46,50,56,48,56,55,49,93,44,91,45,49,49,57,46,54,57,53,54,52,51,44,51,57,46,53,50,48,48,50,51,93,44,91,45,49,49,57,46,50,56,51,54,51,55,44,51,57,46,54,50,49,53,54,49,93,44,91,45,49,49,57,46,49,56,57,51,52,50,44,51,57,46,54,53,48,56,55,93,44,91,45,49,49,57,46,50,50,53,49,55,54,44,51,57,46,57,57,57,51,56,53,93,44,91,45,49,49,57,46,51,51,57,50,57,54,44,51,57,46,57,57,56,54,48,57,93,44,91,45,49,49,57,46,51,51,56,53,48,52,44,52,48,46,53,49,55,56,48,53,93,44,91,45,49,49,57,46,51,49,51,48,51,55,44,52,48,46,53,49,56,51,49,52,93,44,91,45,49,49,57,46,51,48,57,53,57,56,44,52,48,46,57,54,48,51,55,56,93,44,91,45,49,49,57,46,51,50,57,55,57,49,44,52,48,46,57,54,48,51,57,52,93,44,91,45,49,49,57,46,51,50,52,49,56,52,44,52,49,46,57,57,51,57,50,51,93,44,91,45,49,49,57,46,51,54,48,49,50,50,44,52,49,46,57,57,52,50,55,56,93,44,91,45,49,49,57,46,57,57,57,50,51,52,44,52,49,46,57,57,52,57,52,52,93,44,91,45,49,49,57,46,57,57,57,56,54,54,44,52,49,46,49,56,51,57,55,52,93,44,91,45,49,49,57,46,57,57,53,55,48,53,44,52,48,46,51,55,53,56,51,93,44,91,45,49,50,48,46,48,48,49,48,54,50,44,51,57,46,55,50,50,52,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,97,108,108,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,51,51,52,48,49,44,51,55,46,50,50,52,57,57,49,93,44,91,45,56,57,46,48,50,57,56,54,54,44,51,55,46,50,49,49,48,54,53,93,44,91,45,56,57,46,49,55,50,48,56,49,44,51,55,46,48,54,56,51,49,93,44,91,45,56,57,46,49,51,50,57,49,53,44,51,54,46,57,56,50,48,53,55,93,44,91,45,56,57,46,49,48,48,56,54,52,44,51,54,46,57,52,52,48,49,54,93,44,91,45,56,56,46,57,56,57,55,57,55,44,51,54,46,57,49,57,51,51,93,44,91,45,56,56,46,56,49,53,57,53,50,44,51,54,46,57,53,52,49,93,44,91,45,56,56,46,57,51,51,52,48,49,44,51,55,46,50,50,52,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,114,99,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,44,91,45,57,56,46,52,50,48,54,54,54,44,51,51,46,51,57,54,49,57,53,93,44,91,45,57,56,46,52,50,49,52,49,57,44,51,51,46,52,54,54,55,57,55,93,44,91,45,57,56,46,52,50,51,53,55,55,44,51,51,46,56,51,54,48,52,55,93,44,91,45,57,56,46,57,53,51,50,48,50,44,51,51,46,56,51,52,48,50,53,93,44,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,57,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,55,53,54,53,44,51,51,46,56,51,52,48,48,53,93,44,91,45,57,57,46,52,55,52,52,57,56,44,51,51,46,55,51,51,56,52,57,93,44,91,45,57,57,46,52,55,50,52,52,52,44,51,51,46,51,57,57,48,50,51,93,44,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,44,91,45,57,56,46,57,53,51,50,48,50,44,51,51,46,56,51,52,48,50,53,93,44,91,45,57,57,46,52,55,53,54,53,44,51,51,46,56,51,52,48,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,48,53,34,44,34,78,65,77,69,34,58,34,83,97,110,32,65,117,103,117,115,116,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,50,55,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,51,57,57,48,57,49,44,51,49,46,54,53,51,53,57,54,93,44,91,45,57,52,46,51,49,49,49,44,51,49,46,53,56,56,52,56,50,93,44,91,45,57,52,46,51,50,54,54,49,54,44,51,49,46,50,50,52,55,53,52,93,44,91,45,57,52,46,49,50,57,54,51,50,44,51,49,46,48,57,57,50,56,93,44,91,45,57,52,46,48,51,57,48,51,52,44,51,49,46,49,51,52,50,55,49,93,44,91,45,57,52,46,48,52,52,49,53,52,44,51,49,46,52,48,57,57,55,57,93,44,91,45,57,51,46,57,56,51,50,51,57,44,51,49,46,52,54,54,49,49,52,93,44,91,45,57,51,46,57,56,52,52,54,49,44,51,49,46,53,54,57,52,49,57,93,44,91,45,57,52,46,48,57,48,55,49,55,44,51,49,46,54,50,48,54,48,57,93,44,91,45,57,52,46,51,57,57,48,57,49,44,51,49,46,54,53,51,53,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,83,116,111,114,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,50,56,51,54,51,55,44,51,57,46,54,50,49,53,54,49,93,44,91,45,49,49,57,46,54,57,53,54,52,51,44,51,57,46,53,50,48,48,50,51,93,44,91,45,49,49,57,46,54,55,55,52,55,54,44,51,57,46,50,56,48,56,55,49,93,44,91,45,49,49,57,46,55,49,50,54,52,53,44,51,57,46,50,53,48,56,55,49,93,44,91,45,49,49,57,46,52,55,56,56,48,54,44,51,57,46,51,51,55,52,49,54,93,44,91,45,49,49,57,46,50,56,51,54,51,55,44,51,57,46,54,50,49,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,57,34,44,34,78,65,77,69,34,58,34,83,99,104,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,51,50,49,54,44,51,50,46,51,57,55,54,52,57,93,44,91,45,56,52,46,51,57,50,51,49,54,44,51,50,46,52,49,52,48,52,54,93,44,91,45,56,52,46,52,51,48,50,49,56,44,51,50,46,49,54,54,50,53,55,93,44,91,45,56,52,46,49,56,51,53,54,57,44,51,50,46,49,53,56,52,57,51,93,44,91,45,56,52,46,49,56,49,54,53,55,44,51,50,46,50,50,57,55,48,51,93,44,91,45,56,52,46,50,53,52,54,49,51,44,51,50,46,51,55,50,48,53,51,93,44,91,45,56,52,46,51,54,51,50,49,54,44,51,50,46,51,57,55,54,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,70,97,105,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,52,51,52,56,44,34,98,101,100,115,34,58,49,56,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,53,51,48,48,54,55,44,52,49,46,53,50,55,49,57,52,93,44,91,45,55,51,46,53,52,52,55,50,56,44,52,49,46,51,54,54,51,55,53,93,44,91,45,55,51,46,52,56,50,54,57,53,44,52,49,46,50,49,50,55,55,50,93,44,91,45,55,51,46,55,50,55,55,55,53,44,52,49,46,49,48,48,54,57,54,93,44,91,45,55,51,46,54,49,50,56,56,53,44,52,48,46,57,53,48,57,52,51,93,44,91,45,55,51,46,52,51,49,57,49,57,44,52,48,46,57,56,57,48,48,57,93,44,91,45,55,50,46,57,57,57,53,52,55,44,52,49,46,48,56,55,49,48,56,93,44,91,45,55,51,46,49,48,55,52,53,50,44,52,49,46,49,54,56,51,57,55,93,44,91,45,55,51,46,48,54,55,56,53,49,44,52,49,46,51,48,48,57,57,54,93,44,91,45,55,51,46,51,49,48,52,55,51,44,52,49,46,52,54,56,56,49,53,93,44,91,45,55,51,46,52,52,49,52,54,54,44,52,49,46,52,57,49,50,57,52,93,44,91,45,55,51,46,53,49,56,48,56,44,52,49,46,54,54,54,55,50,51,93,44,91,45,55,51,46,53,51,48,48,54,55,44,52,49,46,53,50,55,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,51,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,54,52,52,49,44,51,49,46,48,57,52,50,49,49,93,44,91,45,57,53,46,57,55,51,56,52,49,44,51,49,46,48,57,50,49,53,93,44,91,45,57,54,46,50,52,49,48,50,44,51,48,46,57,55,51,55,51,55,93,44,91,45,57,54,46,49,54,56,51,55,44,51,48,46,56,50,50,57,57,55,93,44,91,45,57,53,46,56,54,51,48,53,57,44,51,48,46,56,54,52,49,50,53,93,44,91,45,57,53,46,54,49,55,56,55,50,44,51,48,46,57,51,48,52,49,56,93,44,91,45,57,53,46,54,55,50,53,57,55,44,51,48,46,57,55,54,50,55,56,93,44,91,45,57,53,46,54,53,54,52,56,55,44,51,49,46,48,55,57,51,51,57,93,44,91,45,57,53,46,55,54,52,52,49,44,51,49,46,48,57,52,50,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,111,97,113,117,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,50,50,49,50,44,34,98,101,100,115,34,58,49,51,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,48,50,55,48,56,52,44,51,56,46,51,48,48,50,53,50,93,44,91,45,49,50,49,46,51,52,52,48,50,52,44,51,56,46,50,50,56,50,54,93,44,91,45,49,50,49,46,52,55,48,57,53,56,44,51,56,46,50,53,57,57,48,50,93,44,91,45,49,50,49,46,53,56,48,48,50,50,44,51,56,46,48,57,52,52,49,52,93,44,91,45,49,50,49,46,53,53,54,57,57,55,44,51,55,46,56,49,54,52,56,56,93,44,91,45,49,50,49,46,53,53,54,54,53,53,44,51,55,46,53,52,50,55,51,50,93,44,91,45,49,50,49,46,52,55,49,57,50,53,44,51,55,46,52,56,49,55,56,51,93,44,91,45,49,50,49,46,49,53,53,56,52,57,44,51,55,46,55,49,57,56,52,52,93,44,91,45,49,50,48,46,57,50,50,49,55,52,44,51,55,46,55,52,55,56,48,54,93,44,91,45,49,50,48,46,57,50,54,52,52,57,44,51,56,46,48,55,55,52,50,49,93,44,91,45,49,50,48,46,57,57,53,52,57,55,44,51,56,46,50,50,53,52,48,50,93,44,91,45,49,50,49,46,48,50,55,48,56,52,44,51,56,46,51,48,48,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,87,105,110,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,53,56,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,56,56,50,53,53,44,51,51,46,50,56,54,48,48,51,93,44,91,45,56,57,46,49,48,56,57,44,51,51,46,49,57,56,48,53,57,93,44,91,45,56,57,46,50,49,51,52,50,50,44,51,51,46,49,57,55,53,52,51,93,44,91,45,56,57,46,50,49,51,57,50,49,44,51,51,46,49,48,57,52,48,50,93,44,91,45,56,57,46,51,49,55,56,53,53,44,51,51,46,49,48,56,56,55,49,93,44,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,44,91,45,56,56,46,57,49,52,52,49,51,44,51,50,46,57,50,54,54,93,44,91,45,56,56,46,56,49,50,55,56,50,44,51,50,46,57,50,53,57,55,51,93,44,91,45,56,56,46,56,49,51,48,53,51,44,51,51,46,50,56,54,52,50,52,93,44,91,45,56,57,46,48,56,56,50,53,53,44,51,51,46,50,56,54,48,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,54,56,50,55,44,51,56,46,53,56,53,52,52,56,93,44,91,45,56,53,46,51,49,52,48,48,54,44,51,56,46,52,57,50,53,57,50,93,44,91,45,56,53,46,50,56,51,48,56,50,44,51,56,46,51,53,56,48,53,52,93,44,91,45,56,52,46,57,57,55,54,54,55,44,51,56,46,51,51,53,53,56,54,93,44,91,45,56,52,46,56,55,48,52,56,50,44,51,56,46,51,53,54,55,53,49,93,44,91,45,56,52,46,56,56,48,50,52,56,44,51,56,46,52,49,54,49,56,93,44,91,45,56,53,46,48,50,57,56,56,56,44,51,56,46,53,49,48,55,54,53,93,44,91,45,56,53,46,48,55,52,53,56,51,44,51,56,46,53,57,54,56,51,56,93,44,91,45,56,53,46,49,54,56,50,55,44,51,56,46,53,56,53,52,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,51,48,53,50,56,44,51,55,46,56,57,49,53,51,56,93,44,91,45,56,53,46,48,50,53,48,50,49,44,51,55,46,54,55,56,56,53,52,93,44,91,45,56,52,46,55,52,52,56,56,56,44,51,55,46,55,49,51,48,55,53,93,44,91,45,56,52,46,55,49,54,57,50,53,44,51,55,46,56,49,53,51,56,57,93,44,91,45,56,52,46,55,48,57,57,49,56,44,51,55,46,56,54,49,57,53,50,93,44,91,45,56,52,46,55,57,54,51,50,55,44,51,55,46,57,55,48,48,56,56,93,44,91,45,56,52,46,57,51,51,48,56,53,44,51,55,46,57,53,52,49,56,54,93,44,91,45,56,53,46,48,51,48,53,50,56,44,51,55,46,56,57,49,53,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,87,104,101,101,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,54,49,49,53,53,44,52,50,46,48,56,56,53,49,56,93,44,91,45,57,56,46,55,53,57,49,51,51,44,52,49,46,55,52,48,51,56,50,93,44,91,45,57,56,46,55,53,50,50,50,53,44,52,49,46,55,52,48,51,55,50,93,44,91,45,57,56,46,50,57,53,55,54,44,52,49,46,55,52,49,49,55,56,93,44,91,45,57,56,46,50,57,53,54,48,50,44,52,49,46,57,49,52,57,53,52,93,44,91,45,57,56,46,51,48,48,53,57,50,44,52,50,46,48,56,56,56,53,51,93,44,91,45,57,56,46,55,54,49,49,53,53,44,52,50,46,48,56,56,53,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,54,55,54,49,51,44,51,56,46,54,49,56,52,50,93,44,91,45,56,51,46,53,50,48,55,53,53,44,51,56,46,55,48,51,48,57,52,93,44,91,45,56,51,46,54,52,52,57,49,51,44,51,56,46,54,51,54,51,52,51,93,44,91,45,56,51,46,54,52,49,56,53,50,44,51,56,46,53,50,53,51,56,49,93,44,91,45,56,51,46,53,56,48,53,54,54,44,51,56,46,52,51,48,49,54,57,93,44,91,45,56,51,46,52,53,50,56,52,56,44,51,56,46,51,56,49,55,57,57,93,44,91,45,56,51,46,51,52,49,51,52,55,44,51,56,46,51,49,57,53,50,49,93,44,91,45,56,51,46,50,51,50,56,57,53,44,51,56,46,51,51,56,55,56,54,93,44,91,45,56,51,46,49,54,54,52,49,57,44,51,56,46,53,48,51,57,54,53,93,44,91,45,56,51,46,48,55,51,54,51,51,44,51,56,46,53,57,48,52,51,56,93,44,91,45,56,51,46,48,51,48,56,53,56,44,51,56,46,55,50,53,53,50,52,93,44,91,45,56,51,46,49,51,52,55,53,52,44,51,56,46,54,51,50,48,49,51,93,44,91,45,56,51,46,50,54,55,54,49,51,44,51,56,46,54,49,56,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,51,56,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,54,54,49,52,44,52,54,46,48,50,49,54,49,93,44,91,45,57,54,46,50,53,52,48,50,50,44,52,53,46,55,53,57,56,50,93,44,91,45,57,53,46,55,53,56,53,48,56,44,52,53,46,55,53,57,57,51,50,93,44,91,45,57,53,46,55,54,57,55,53,44,52,54,46,49,48,55,52,53,93,44,91,45,57,54,46,50,54,53,51,54,54,44,52,54,46,49,48,56,54,49,93,44,91,45,57,54,46,50,54,54,49,52,44,52,54,46,48,50,49,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,72,117,109,112,104,114,101,121,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,53,51,50,51,51,44,51,51,46,51,50,57,52,56,52,93,44,91,45,57,48,46,53,53,53,50,49,49,44,51,51,46,50,55,48,53,51,51,93,44,91,45,57,48,46,55,49,54,50,55,55,44,51,51,46,50,55,48,48,51,50,93,44,91,45,57,48,46,55,48,49,56,52,53,44,51,51,46,48,57,54,50,57,52,93,44,91,45,57,48,46,54,53,54,54,51,50,44,51,50,46,57,50,50,53,49,93,44,91,45,57,48,46,52,52,57,56,57,51,44,51,50,46,57,50,51,50,57,93,44,91,45,57,48,46,51,54,52,48,51,49,44,51,51,46,48,49,48,53,57,54,93,44,91,45,57,48,46,52,50,56,55,55,52,44,51,51,46,49,48,55,57,51,50,93,44,91,45,57,48,46,51,51,48,51,49,50,44,51,51,46,49,51,55,56,49,56,93,44,91,45,57,48,46,51,51,49,53,56,57,44,51,51,46,51,48,50,56,50,53,93,44,91,45,57,48,46,52,53,51,50,51,51,44,51,51,46,51,50,57,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,51,56,55,44,34,98,101,100,115,34,58,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,56,56,50,56,56,44,51,49,46,54,57,57,51,48,51,93,44,91,45,56,56,46,48,55,50,50,51,52,44,51,49,46,53,57,52,53,93,44,91,45,56,55,46,57,48,55,51,57,57,44,51,49,46,52,57,52,52,51,56,93,44,91,45,56,55,46,56,56,56,56,53,55,44,51,49,46,51,54,52,48,50,51,93,44,91,45,56,55,46,57,53,48,55,57,53,44,51,49,46,50,57,57,52,54,51,93,44,91,45,56,55,46,57,52,54,53,56,56,44,51,49,46,49,57,50,57,51,93,44,91,45,56,55,46,56,55,51,56,56,55,44,51,49,46,50,48,49,52,57,54,93,44,91,45,56,55,46,55,54,53,49,53,50,44,51,49,46,50,57,55,51,52,54,93,44,91,45,56,55,46,55,48,54,48,52,53,44,51,49,46,52,48,48,57,53,55,93,44,91,45,56,55,46,54,48,51,49,51,55,44,51,49,46,52,48,57,53,53,54,93,44,91,45,56,55,46,53,54,53,55,48,56,44,51,49,46,52,56,49,54,56,51,93,44,91,45,56,55,46,53,54,54,56,52,49,44,51,49,46,54,57,55,49,49,53,93,44,91,45,56,55,46,53,48,48,57,51,44,51,49,46,56,50,57,50,53,49,93,44,91,45,56,55,46,54,50,48,49,49,50,44,51,49,46,56,50,55,49,50,51,93,44,91,45,56,55,46,54,54,55,55,54,57,44,51,49,46,57,57,49,51,53,53,93,44,91,45,56,56,46,48,55,51,52,57,44,51,49,46,57,57,48,49,56,50,93,44,91,45,56,56,46,49,56,48,51,56,52,44,51,49,46,56,49,52,53,52,54,93,44,91,45,56,56,46,48,56,56,50,56,56,44,51,49,46,54,57,57,51,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,97,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,53,51,55,56,44,51,56,46,53,50,49,54,53,55,93,44,91,45,57,54,46,56,49,57,53,48,57,44,51,56,46,53,50,50,52,52,57,93,44,91,45,57,54,46,56,52,48,55,55,50,44,51,56,46,48,56,53,54,50,50,93,44,91,45,57,54,46,53,50,50,55,56,50,44,51,56,46,48,56,54,51,55,93,44,91,45,57,54,46,51,53,56,48,57,57,44,51,56,46,48,56,53,56,49,55,93,44,91,45,57,54,46,51,53,55,50,55,55,44,51,56,46,49,55,50,54,54,93,44,91,45,57,54,46,51,53,51,55,56,44,51,56,46,53,50,49,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,49,34,44,34,78,65,77,69,34,58,34,84,114,105,103,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,56,55,54,57,57,54,44,51,54,46,57,54,48,49,49,54,93,44,91,45,56,56,46,49,53,55,51,52,55,44,51,54,46,56,54,55,49,56,51,93,44,91,45,56,56,46,49,49,48,56,51,49,44,51,54,46,55,52,55,49,53,93,44,91,45,56,56,46,48,55,48,53,52,49,44,51,54,46,54,55,56,50,53,53,93,44,91,45,56,55,46,54,57,52,49,57,50,44,51,54,46,54,51,55,49,48,56,93,44,91,45,56,55,46,54,53,57,55,50,52,44,51,54,46,57,54,54,51,57,55,93,44,91,45,56,55,46,55,51,51,51,54,56,44,51,55,46,48,48,50,49,48,51,93,44,91,45,56,55,46,56,55,54,57,57,54,44,51,54,46,57,54,48,49,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,111,117,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,51,53,50,44,34,98,101,100,115,34,58,56,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,56,55,54,53,49,44,51,49,46,51,48,56,54,55,55,93,44,91,45,56,53,46,52,49,55,52,51,52,44,51,49,46,51,49,52,57,55,51,93,44,91,45,56,53,46,52,56,53,56,53,52,44,51,49,46,50,52,54,48,57,54,93,44,91,45,56,53,46,54,54,53,55,55,53,44,51,49,46,50,54,55,53,57,49,93,44,91,45,56,53,46,55,49,48,51,51,51,44,51,49,46,49,57,53,49,55,51,93,44,91,45,56,53,46,52,56,53,55,54,44,51,49,46,49,57,57,56,56,54,93,44,91,45,56,53,46,52,56,56,50,57,56,44,51,48,46,57,57,55,48,54,52,93,44,91,45,56,53,46,48,48,50,52,57,57,44,51,49,46,48,48,48,54,56,53,93,44,91,45,56,53,46,48,50,56,53,54,52,44,51,49,46,48,55,53,53,50,51,93,44,91,45,56,53,46,48,57,57,54,52,55,44,51,49,46,49,54,52,57,52,50,93,44,91,45,56,53,46,48,56,55,54,53,49,44,51,49,46,51,48,56,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,117,114,111,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,55,55,55,49,44,52,51,46,57,51,53,50,50,51,93,44,91,45,57,56,46,55,57,52,53,56,56,44,52,51,46,52,57,57,49,56,55,93,44,91,45,57,56,46,55,48,53,55,56,50,44,52,51,46,52,57,57,51,49,57,93,44,91,45,57,56,46,51,50,48,53,57,53,44,52,51,46,52,57,56,54,53,49,93,44,91,45,57,56,46,51,50,53,50,52,50,44,52,51,46,56,53,49,48,53,56,93,44,91,45,57,56,46,51,51,49,53,48,56,44,52,51,46,57,51,55,55,48,56,93,44,91,45,57,56,46,56,48,55,55,55,49,44,52,51,46,57,51,53,50,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,65,108,101,117,116,105,97,110,115,32,69,97,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,50,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,56,46,56,57,51,53,56,53,44,53,54,46,57,52,53,48,53,57,93,44,91,45,49,53,57,46,49,55,51,57,49,52,44,53,54,46,56,49,52,52,53,93,44,91,45,49,53,57,46,57,48,53,49,51,57,44,53,54,46,53,55,56,49,55,53,93,44,91,45,49,54,48,46,50,50,53,52,49,54,44,53,54,46,52,51,51,54,93,44,91,45,49,54,48,46,52,49,51,49,53,55,44,53,54,46,51,50,49,55,51,52,93,44,91,45,49,54,48,46,54,49,54,48,51,53,44,53,54,46,48,54,55,52,50,49,93,44,91,45,49,54,49,46,50,49,49,49,48,56,44,53,54,46,48,54,55,52,49,93,44,91,45,49,54,49,46,56,50,53,55,53,44,53,53,46,57,52,50,54,53,53,93,44,91,45,49,54,50,46,50,56,57,55,57,49,44,53,53,46,55,50,52,56,54,54,93,44,91,45,49,54,50,46,53,52,55,50,50,56,44,53,53,46,53,50,56,55,52,53,93,44,91,45,49,54,50,46,57,51,53,49,54,49,44,53,53,46,51,56,50,48,53,49,93,44,91,45,49,54,51,46,49,53,48,52,53,53,44,53,53,46,50,50,57,53,48,53,93,44,91,45,49,54,51,46,54,51,48,54,57,50,44,53,53,46,48,57,51,50,50,57,93,44,91,45,49,54,51,46,57,53,48,49,55,54,44,53,53,46,48,55,56,56,49,50,93,44,91,45,49,54,52,46,51,48,55,53,50,53,44,53,52,46,57,53,49,52,53,56,93,44,91,45,49,54,52,46,52,49,56,49,53,49,44,53,52,46,57,55,57,53,53,56,93,44,91,45,49,54,52,46,54,49,52,50,53,53,44,53,52,46,57,50,51,56,55,55,93,44,91,45,49,54,52,46,55,56,50,55,56,44,53,52,46,54,57,49,55,48,50,93,44,91,45,49,54,52,46,57,57,57,52,56,50,44,53,52,46,54,50,54,50,52,57,93,44,91,45,49,54,52,46,57,57,53,54,51,44,53,52,46,52,53,55,51,48,57,93,44,91,45,49,54,52,46,57,48,49,50,57,55,44,53,52,46,51,55,52,54,53,49,93,44,91,45,49,54,52,46,54,49,55,49,48,57,44,53,52,46,51,51,56,56,55,52,93,44,91,45,49,54,52,46,52,49,52,57,56,55,44,53,52,46,51,54,56,56,50,51,93,44,91,45,49,54,52,46,49,50,50,54,55,49,44,53,52,46,53,53,54,49,49,57,93,44,91,45,49,54,51,46,55,49,50,55,57,55,44,53,52,46,53,55,48,49,57,49,93,44,91,45,49,54,51,46,53,57,51,53,54,51,44,53,52,46,53,52,49,49,52,93,44,91,45,49,54,51,46,52,49,51,57,51,56,44,53,52,46,54,48,48,51,55,56,93,44,91,45,49,54,51,46,48,53,57,49,52,49,44,53,52,46,54,48,54,50,48,51,93,44,91,45,49,54,50,46,57,54,56,54,48,54,44,53,52,46,55,48,56,55,48,50,93,44,91,45,49,54,51,46,49,48,52,57,51,53,44,53,52,46,56,48,57,51,56,53,93,44,91,45,49,54,50,46,56,57,51,57,48,51,44,53,52,46,56,52,52,50,51,56,93,44,91,45,49,54,50,46,54,53,49,49,48,53,44,53,52,46,57,50,50,49,53,55,93,44,91,45,49,54,50,46,53,53,52,57,51,49,44,53,52,46,55,52,57,51,52,52,93,44,91,45,49,54,50,46,52,53,57,56,55,55,44,53,52,46,54,54,54,53,50,52,93,44,91,45,49,54,50,46,52,55,57,56,49,53,44,53,52,46,53,52,48,57,51,50,93,44,91,45,49,54,50,46,51,54,53,48,51,53,44,53,52,46,53,48,55,54,57,51,93,44,91,45,49,54,50,46,50,51,57,52,51,44,53,52,46,54,51,56,55,48,56,93,44,91,45,49,54,50,46,49,48,52,56,52,54,44,53,52,46,54,49,56,50,56,54,93,44,91,45,49,54,49,46,57,54,54,56,52,52,44,53,52,46,55,49,52,56,48,50,93,44,91,45,49,54,49,46,56,52,49,48,49,54,44,53,52,46,54,56,52,53,49,54,93,44,91,45,49,54,49,46,53,54,52,55,52,52,44,53,52,46,55,57,55,49,57,55,93,44,91,45,49,54,49,46,54,53,57,52,56,49,44,53,52,46,57,53,54,51,56,51,93,44,91,45,49,54,49,46,52,55,48,48,56,54,44,53,52,46,57,52,57,55,50,57,93,44,91,45,49,54,48,46,57,53,51,52,50,52,44,53,53,46,51,50,53,51,54,55,93,44,91,45,49,54,48,46,56,57,57,54,55,54,44,53,53,46,48,57,53,51,53,93,44,91,45,49,54,48,46,53,57,56,54,57,49,44,53,53,46,48,57,52,48,53,54,93,44,91,45,49,54,48,46,53,49,57,52,54,57,44,53,53,46,48,50,53,49,50,51,93,44,91,45,49,54,48,46,51,53,51,54,44,53,53,46,49,57,51,54,53,53,93,44,91,45,49,54,48,46,50,54,49,57,49,57,44,53,53,46,48,51,53,50,48,49,93,44,91,45,49,54,48,46,51,52,51,51,57,51,44,53,52,46,57,51,48,56,56,49,93,44,91,45,49,54,48,46,51,48,50,56,49,50,44,53,52,46,56,50,57,55,52,54,93,44,91,45,49,54,48,46,48,57,56,48,50,51,44,53,52,46,56,56,53,52,49,54,93,44,91,45,49,53,57,46,56,52,54,48,57,57,44,53,52,46,57,48,50,52,51,53,93,44,91,45,49,53,57,46,55,51,52,55,51,53,44,53,52,46,57,57,48,50,52,53,93,44,91,45,49,53,57,46,53,56,48,51,52,49,44,53,52,46,57,56,55,53,57,56,93,44,91,45,49,53,57,46,51,54,50,50,57,55,44,53,52,46,56,50,56,51,49,53,93,44,91,45,49,53,57,46,50,48,49,53,49,53,44,53,52,46,56,51,51,54,55,50,93,44,91,45,49,53,57,46,49,49,49,55,57,49,44,53,52,46,57,49,53,54,57,93,44,91,45,49,53,57,46,50,53,49,53,49,52,44,53,53,46,48,48,54,54,57,57,93,44,91,45,49,53,57,46,50,53,50,56,51,52,44,53,53,46,49,48,54,49,55,49,93,44,91,45,49,53,57,46,52,49,48,56,56,54,44,53,53,46,49,50,51,52,57,54,93,44,91,45,49,53,57,46,51,57,56,48,54,51,44,53,53,46,50,57,51,51,55,93,44,91,45,49,53,57,46,53,52,52,51,51,53,44,53,53,46,51,50,56,52,48,55,93,44,91,45,49,53,57,46,54,54,48,50,48,54,44,53,53,46,50,52,50,57,49,93,44,91,45,49,54,48,46,48,52,49,49,54,50,44,53,53,46,52,52,56,56,55,57,93,44,91,45,49,53,57,46,57,53,49,49,51,56,44,53,53,46,53,48,55,53,56,51,93,44,91,45,49,53,57,46,53,51,56,49,53,51,44,53,53,46,53,51,50,48,48,54,93,44,91,45,49,53,57,46,52,52,54,56,54,56,44,53,53,46,54,51,56,53,51,49,93,44,91,45,49,53,57,46,53,54,49,52,53,49,44,53,53,46,54,51,56,52,52,51,93,44,91,45,49,53,57,46,53,54,49,51,54,44,53,53,46,56,56,55,49,57,55,93,44,91,45,49,53,57,46,56,54,55,57,55,49,44,53,53,46,56,56,55,49,57,51,93,44,91,45,49,53,57,46,56,48,54,52,48,54,44,53,53,46,57,55,51,57,49,57,93,44,91,45,49,53,57,46,56,48,54,51,56,57,44,53,54,46,51,50,48,56,48,53,93,44,91,45,49,53,57,46,57,48,48,49,51,51,44,53,54,46,51,50,48,56,48,51,93,44,91,45,49,53,57,46,57,48,48,49,52,57,44,53,54,46,52,57,52,50,51,57,93,44,91,45,49,53,57,46,53,56,56,48,51,54,44,53,54,46,52,57,52,50,52,53,93,44,91,45,49,53,57,46,53,56,56,48,52,49,44,53,54,46,53,56,48,57,54,49,93,44,91,45,49,53,57,46,50,55,53,57,50,56,44,53,54,46,53,56,48,57,54,55,93,44,91,45,49,53,57,46,50,55,53,57,51,50,44,53,54,46,54,54,55,54,56,50,93,44,91,45,49,53,57,46,48,53,49,48,56,57,44,53,54,46,54,54,55,54,56,55,93,44,91,45,49,53,56,46,56,57,51,54,48,55,44,53,54,46,55,53,52,52,48,52,93,44,91,45,49,53,56,46,56,57,51,53,56,53,44,53,54,46,57,52,53,48,53,57,93,93,93,44,91,91,91,45,49,54,54,46,50,50,53,54,52,55,44,53,52,46,48,52,49,57,57,51,93,44,91,45,49,54,54,46,50,50,53,54,52,49,44,53,51,46,57,54,48,50,48,54,93,44,91,45,49,54,53,46,57,54,49,48,56,54,44,53,51,46,57,49,54,50,52,51,93,44,91,45,49,54,53,46,55,56,56,57,54,54,44,53,52,46,48,49,54,50,51,54,93,44,91,45,49,54,53,46,54,53,55,49,55,51,44,53,52,46,48,51,54,51,51,54,93,44,91,45,49,54,53,46,53,49,57,55,54,55,44,53,51,46,57,55,50,48,54,93,44,91,45,49,54,53,46,51,56,48,57,54,53,44,53,52,46,48,49,54,52,51,54,93,44,91,45,49,54,52,46,56,56,49,48,52,56,44,53,52,46,48,52,51,52,50,57,93,44,91,45,49,54,52,46,55,49,52,52,56,53,44,53,52,46,49,54,54,49,49,55,93,44,91,45,49,54,52,46,56,48,53,51,54,57,44,53,52,46,50,56,50,51,57,50,93,44,91,45,49,54,53,46,48,54,54,56,55,49,44,53,52,46,49,56,48,48,56,54,93,44,91,45,49,54,53,46,51,52,53,49,55,55,44,53,52,46,50,53,49,48,51,51,93,44,91,45,49,54,53,46,52,54,50,52,57,51,44,53,52,46,51,52,54,56,50,50,93,44,91,45,49,54,53,46,54,53,53,53,53,44,53,52,46,51,52,55,48,53,49,93,44,91,45,49,54,53,46,55,56,57,49,52,55,44,53,52,46,50,51,57,49,51,56,93,44,91,45,49,54,53,46,57,51,55,50,50,44,53,52,46,50,55,54,57,56,53,93,44,91,45,49,54,54,46,49,54,53,49,49,55,44,53,52,46,49,57,53,48,56,56,93,44,91,45,49,54,54,46,50,50,53,54,52,55,44,53,52,46,48,52,49,57,57,51,93,93,93,44,91,91,91,45,49,54,51,46,48,49,51,54,57,52,44,53,52,46,51,56,53,48,56,55,93,44,91,45,49,54,50,46,55,48,48,48,56,52,44,53,52,46,50,51,55,57,54,57,93,44,91,45,49,54,50,46,50,56,50,50,48,51,44,53,52,46,51,51,48,57,54,53,93,44,91,45,49,54,50,46,51,53,52,51,53,50,44,53,52,46,52,53,54,54,57,49,93,44,91,45,49,54,50,46,56,56,48,55,48,54,44,53,52,46,53,53,51,50,49,51,93,44,91,45,49,54,51,46,48,49,51,54,57,52,44,53,52,46,51,56,53,48,56,55,93,93,93,44,91,91,91,45,49,53,57,46,57,49,48,51,51,53,44,53,52,46,56,49,52,49,54,56,93,44,91,45,49,53,57,46,56,53,53,50,49,55,44,53,52,46,55,53,55,55,48,52,93,44,91,45,49,53,57,46,53,52,55,56,55,50,44,53,52,46,54,57,57,50,57,54,93,44,91,45,49,53,57,46,52,49,54,55,55,50,44,53,52,46,55,57,50,49,57,55,93,44,91,45,49,53,57,46,53,53,54,49,49,54,44,53,52,46,56,56,48,50,54,50,93,44,91,45,49,53,57,46,55,54,49,48,53,49,44,53,52,46,56,57,49,51,50,52,93,44,91,45,49,53,57,46,57,49,48,51,51,53,44,53,52,46,56,49,52,49,54,56,93,93,93,44,91,91,91,45,49,54,51,46,50,55,48,56,56,55,44,53,53,46,52,51,49,55,49,56,93,44,91,45,49,54,51,46,50,51,53,51,54,50,44,53,53,46,51,54,54,49,49,50,93,44,91,45,49,54,51,46,48,50,55,57,51,56,44,53,53,46,52,50,48,56,51,93,44,91,45,49,54,51,46,49,51,54,53,51,52,44,53,53,46,53,50,53,48,50,52,93,44,91,45,49,54,51,46,50,55,48,56,56,55,44,53,53,46,52,51,49,55,49,56,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,54,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,44,91,45,57,57,46,49,55,57,49,51,52,44,52,48,46,48,48,50,48,49,51,93,44,91,45,57,57,46,48,54,55,48,52,54,44,52,48,46,48,48,50,51,52,56,93,44,91,45,57,56,46,55,50,54,51,55,51,44,52,48,46,48,48,50,52,93,44,91,45,57,56,46,55,50,54,56,50,55,44,52,48,46,51,53,48,51,57,56,93,44,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,57,51,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,48,55,57,57,50,53,44,51,57,46,52,48,53,53,48,54,93,44,91,45,55,54,46,50,56,55,54,56,57,44,51,57,46,50,53,52,49,48,52,93,44,91,45,55,54,46,51,52,57,52,55,57,44,51,57,46,49,53,54,54,50,51,93,44,91,45,55,54,46,51,53,49,55,51,44,51,57,46,48,53,54,50,51,50,93,44,91,45,55,54,46,50,53,55,57,57,53,44,51,57,46,48,49,49,56,49,56,93,44,91,45,55,54,46,49,49,55,48,53,56,44,51,57,46,49,48,55,48,57,56,93,44,91,45,55,54,46,48,49,48,50,57,50,44,51,57,46,50,51,57,53,49,55,93,44,91,45,55,53,46,55,53,54,48,48,52,44,51,57,46,50,52,54,48,54,54,93,44,91,45,55,53,46,55,54,48,48,55,52,44,51,57,46,50,57,54,56,49,57,93,44,91,45,55,53,46,55,54,54,53,57,52,44,51,57,46,51,55,55,53,54,51,93,44,91,45,55,53,46,57,48,56,48,51,53,44,51,57,46,51,54,52,53,48,49,93,44,91,45,55,54,46,48,55,57,57,50,53,44,51,57,46,52,48,53,53,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,49,48,56,44,34,98,101,100,115,34,58,49,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,56,56,48,49,50,44,51,55,46,54,55,52,53,49,57,93,44,91,45,57,53,46,48,56,56,49,56,57,44,51,55,46,51,56,51,56,51,55,93,44,91,45,57,53,46,48,55,53,49,54,54,44,51,55,46,51,51,57,57,51,55,93,44,91,45,57,52,46,54,49,55,55,50,50,44,51,55,46,51,51,56,52,49,56,93,44,91,45,57,52,46,54,49,55,53,55,44,51,55,46,51,54,52,49,55,93,44,91,45,57,52,46,54,49,55,54,57,56,44,51,55,46,54,53,51,53,55,56,93,44,91,45,57,52,46,54,49,55,55,55,57,44,51,55,46,54,55,51,49,48,53,93,44,91,45,57,53,46,48,56,56,48,49,50,44,51,55,46,54,55,52,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,105,112,112,101,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,49,48,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,51,54,54,57,56,44,52,53,46,49,53,50,50,48,54,93,44,91,45,57,53,46,55,51,54,54,57,54,44,52,52,46,57,51,54,48,52,93,44,91,45,57,53,46,52,56,50,56,52,51,44,52,52,46,55,53,50,53,48,53,93,44,91,45,57,53,46,52,56,50,56,56,57,44,52,52,46,56,57,48,55,49,50,93,44,91,45,57,53,46,50,52,56,53,50,44,52,52,46,56,57,49,51,49,93,44,91,45,57,53,46,50,52,54,52,56,57,44,52,53,46,49,53,50,52,51,49,93,44,91,45,57,54,46,48,51,54,54,57,56,44,52,53,46,49,53,50,50,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,80,101,110,110,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,50,57,52,44,34,98,101,100,115,34,58,52,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,48,49,48,54,56,44,52,52,46,53,49,48,57,50,54,93,44,91,45,49,48,50,46,49,49,50,53,51,53,44,52,52,46,52,51,53,56,56,54,93,44,91,45,49,48,50,46,50,56,52,52,48,52,44,52,52,46,52,52,49,50,51,50,93,44,91,45,49,48,50,46,51,52,49,54,51,53,44,52,52,46,51,52,56,55,55,50,93,44,91,45,49,48,50,46,51,56,56,48,52,53,44,52,52,46,49,52,48,49,56,51,93,44,91,45,49,48,51,46,52,53,50,52,53,51,44,52,52,46,49,52,48,55,55,50,93,44,91,45,49,48,52,46,48,53,52,53,56,56,44,52,52,46,49,52,49,48,56,49,93,44,91,45,49,48,52,46,48,53,53,52,56,55,44,52,51,46,56,53,51,52,55,54,93,44,91,45,49,48,50,46,54,56,55,49,57,49,44,52,51,46,56,53,53,53,57,57,93,44,91,45,49,48,50,46,56,48,57,51,57,56,44,52,51,46,54,56,55,53,54,93,44,91,45,49,48,50,46,49,55,53,50,51,49,44,52,51,46,54,56,55,55,53,54,93,44,91,45,49,48,50,46,49,51,57,49,53,56,44,52,51,46,55,48,48,57,52,56,93,44,91,45,49,48,50,46,48,49,56,56,56,55,44,52,51,46,55,48,56,54,49,56,93,44,91,45,49,48,50,46,48,48,55,51,51,54,44,52,51,46,57,57,52,53,51,93,44,91,45,49,48,50,46,48,48,49,48,54,56,44,52,52,46,53,49,48,57,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,72,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,56,48,55,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,44,91,45,56,49,46,50,49,57,53,54,51,44,51,50,46,57,53,51,51,53,93,44,91,45,56,49,46,50,54,49,54,54,50,44,51,50,46,56,51,57,49,51,57,93,44,91,45,56,49,46,52,48,53,48,53,52,44,51,50,46,55,52,52,57,53,55,93,44,91,45,56,49,46,51,56,57,50,48,53,44,51,50,46,53,57,53,52,49,54,93,44,91,45,56,49,46,50,56,49,50,55,44,51,50,46,53,53,54,52,55,49,93,44,91,45,56,49,46,48,49,56,52,57,53,44,51,50,46,55,53,48,49,55,50,93,44,91,45,56,48,46,56,54,57,55,48,53,44,51,50,46,54,54,48,57,51,53,93,44,91,45,56,48,46,56,50,54,51,48,57,44,51,50,46,55,48,52,51,50,49,93,44,91,45,56,48,46,57,48,48,49,57,54,44,51,50,46,56,51,50,56,49,51,93,44,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,70,114,101,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,57,55,54,56,52,57,44,52,51,46,57,50,55,51,56,53,93,44,91,45,49,49,49,46,53,53,56,56,51,51,44,52,51,46,56,56,51,51,48,53,93,44,91,45,49,49,49,46,51,57,56,55,56,49,44,52,51,46,57,50,50,56,57,93,44,91,45,49,49,49,46,49,56,55,50,53,54,44,52,51,46,57,51,50,49,49,52,93,44,91,45,49,49,49,46,48,52,55,49,53,55,44,52,51,46,57,56,51,52,53,57,93,44,91,45,49,49,49,46,48,53,50,52,51,52,44,52,52,46,52,55,56,52,49,49,93,44,91,45,49,49,49,46,49,51,48,54,53,57,44,52,52,46,53,48,48,49,51,49,93,44,91,45,49,49,49,46,50,49,57,51,49,57,44,52,52,46,54,50,50,53,50,49,93,44,91,45,49,49,49,46,51,55,55,48,49,53,44,52,52,46,55,53,49,52,52,51,93,44,91,45,49,49,49,46,52,55,52,57,54,51,44,52,52,46,55,48,56,55,55,51,93,44,91,45,49,49,49,46,53,50,53,54,49,44,52,52,46,54,48,52,55,52,93,44,91,45,49,49,49,46,54,49,55,51,52,53,44,52,52,46,53,53,48,51,57,50,93,44,91,45,49,49,49,46,54,49,55,52,51,55,44,52,52,46,52,48,49,50,53,52,93,44,91,45,49,49,49,46,55,57,49,54,50,52,44,52,52,46,52,48,49,54,49,93,44,91,45,49,49,49,46,56,53,50,50,55,54,44,52,52,46,51,49,54,57,57,54,93,44,91,45,49,49,49,46,56,53,55,56,53,49,44,52,52,46,49,56,55,55,53,57,93,44,91,45,49,49,50,46,48,51,51,54,54,52,44,52,52,46,49,52,52,48,52,57,93,44,91,45,49,49,50,46,49,53,53,57,51,53,44,52,52,46,48,53,55,55,56,93,44,91,45,49,49,50,46,49,53,54,51,55,44,52,51,46,57,55,49,50,52,55,93,44,91,45,49,49,49,46,57,55,54,56,52,57,44,52,51,46,57,50,55,51,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,66,114,121,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,56,56,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,56,48,56,53,56,44,51,50,46,49,53,50,56,57,93,44,91,45,56,49,46,55,49,56,54,53,56,44,51,50,46,48,56,57,51,53,49,93,44,91,45,56,49,46,53,57,50,51,57,49,44,51,49,46,57,55,50,52,54,57,93,44,91,45,56,49,46,52,48,52,51,56,56,44,51,49,46,57,49,57,55,48,49,93,44,91,45,56,49,46,51,55,54,57,53,52,44,51,49,46,56,52,56,50,53,55,93,44,91,45,56,49,46,49,53,52,55,51,49,44,51,49,46,55,49,51,48,55,93,44,91,45,56,49,46,50,49,50,51,48,57,44,51,49,46,57,49,56,51,53,56,93,44,91,45,56,49,46,51,57,49,54,57,56,44,51,50,46,48,57,53,56,56,54,93,44,91,45,56,49,46,52,51,53,56,51,44,51,50,46,50,52,49,50,56,57,93,44,91,45,56,49,46,55,56,48,56,53,56,44,51,50,46,49,53,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,68,105,110,119,105,100,100,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,48,56,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,52,55,52,48,56,44,51,55,46,50,50,51,48,54,54,93,44,91,45,55,55,46,54,53,48,54,49,44,51,55,46,50,54,53,49,49,50,93,44,91,45,55,55,46,55,57,53,57,50,54,44,51,55,46,49,57,50,53,57,50,93,44,91,45,55,55,46,57,48,48,51,51,56,44,51,55,46,49,52,51,56,56,50,93,44,91,45,55,55,46,56,56,57,56,49,51,44,51,54,46,57,56,56,56,49,56,93,44,91,45,55,55,46,55,54,53,53,52,44,51,54,46,57,55,52,54,53,53,93,44,91,45,55,55,46,54,53,56,48,51,54,44,51,54,46,56,57,52,53,49,52,93,44,91,45,55,55,46,54,49,57,48,50,57,44,51,54,46,56,55,55,56,52,52,93,44,91,45,55,55,46,51,57,56,52,57,56,44,51,54,46,57,57,50,57,56,53,93,44,91,45,55,55,46,51,57,57,50,48,51,44,51,55,46,49,55,48,56,53,93,44,91,45,55,55,46,52,52,55,52,48,56,44,51,55,46,50,50,51,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,117,99,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,53,57,49,44,34,98,101,100,115,34,58,56,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,55,55,56,54,50,44,50,55,46,50,48,53,57,56,56,93,44,91,45,56,48,46,50,56,53,53,49,44,50,55,46,50,48,54,48,50,53,93,44,91,45,56,48,46,49,51,56,48,52,57,44,50,55,46,50,54,50,56,55,57,93,44,91,45,56,48,46,50,54,51,53,52,51,44,50,55,46,53,53,54,55,56,50,93,44,91,45,56,48,46,54,55,57,56,50,49,44,50,55,46,53,53,56,52,55,93,44,91,45,56,48,46,54,55,55,56,54,50,44,50,55,46,50,48,53,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,52,50,52,56,44,34,98,101,100,115,34,58,50,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,57,57,51,57,56,50,44,52,51,46,54,51,49,50,51,52,93,44,91,45,55,55,46,57,57,55,50,57,44,52,51,46,49,51,50,57,56,49,93,44,91,45,55,55,46,57,48,57,56,51,50,44,52,50,46,57,56,55,55,54,50,93,44,91,45,55,55,46,55,51,48,57,53,55,44,52,50,46,57,56,56,51,55,50,93,44,91,45,55,55,46,53,56,48,51,55,55,44,52,50,46,57,52,51,57,54,51,93,44,91,45,55,55,46,52,56,53,52,49,56,44,52,51,46,48,51,52,53,54,52,93,44,91,45,55,55,46,51,55,49,52,55,56,44,52,51,46,48,51,52,54,57,54,93,44,91,45,55,55,46,51,56,55,57,57,53,44,52,51,46,54,51,49,53,52,51,93,44,91,45,55,55,46,57,57,51,57,56,50,44,52,51,46,54,51,49,50,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,57,49,52,44,34,98,101,100,115,34,58,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,50,52,56,52,49,44,52,51,46,53,48,48,48,48,55,93,44,91,45,57,54,46,57,50,52,49,52,50,44,52,51,46,48,56,51,55,51,51,93,44,91,45,57,54,46,56,48,53,54,56,50,44,52,51,46,48,56,51,54,55,93,44,91,45,57,54,46,52,53,52,49,51,44,52,51,46,48,56,51,51,56,93,44,91,45,57,54,46,52,55,54,55,50,57,44,52,51,46,50,50,49,57,56,55,93,44,91,45,57,54,46,53,53,52,57,54,57,44,52,51,46,50,53,57,57,53,49,93,44,91,45,57,54,46,53,50,49,55,50,44,52,51,46,51,56,54,55,53,53,93,44,91,45,57,54,46,53,57,57,49,57,49,44,52,51,46,53,48,48,52,53,54,93,44,91,45,57,54,46,57,50,52,56,52,49,44,52,51,46,53,48,48,48,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,105,112,112,101,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,54,51,53,44,34,98,101,100,115,34,58,50,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,52,49,51,50,50,44,52,53,46,50,57,50,50,50,93,44,91,45,57,49,46,54,54,53,54,52,55,44,52,53,46,50,48,55,57,57,49,93,44,91,45,57,49,46,54,53,48,52,53,53,44,52,52,46,56,53,53,57,53,49,93,44,91,45,57,48,46,57,50,50,50,52,55,44,52,52,46,56,53,55,51,48,57,93,44,91,45,57,48,46,57,50,51,51,54,50,44,52,53,46,48,51,49,49,52,51,93,44,91,45,57,48,46,57,50,53,50,50,50,44,52,53,46,50,57,50,48,54,49,93,44,91,45,57,49,46,53,52,49,51,50,50,44,52,53,46,50,57,50,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,55,34,44,34,78,65,77,69,34,58,34,87,111,111,100,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,55,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,53,57,48,52,54,44,51,56,46,48,52,48,49,57,53,93,44,91,45,57,53,46,57,54,48,56,55,54,44,51,55,46,55,51,52,51,48,52,93,44,91,45,57,53,46,53,50,53,52,57,57,44,51,55,46,55,51,50,55,53,57,93,44,91,45,57,53,46,53,49,56,57,55,44,51,56,46,48,51,56,50,51,93,44,91,45,57,53,46,57,53,57,48,52,54,44,51,56,46,48,52,48,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,49,54,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,56,50,57,53,55,44,51,55,46,48,50,50,53,54,54,93,44,91,45,56,56,46,52,56,52,49,48,51,44,51,54,46,57,52,50,48,57,54,93,44,91,45,56,56,46,52,56,53,54,57,55,44,51,54,46,55,53,48,51,50,56,93,44,91,45,56,56,46,49,49,48,56,51,49,44,51,54,46,55,52,55,49,53,93,44,91,45,56,56,46,49,53,55,51,52,55,44,51,54,46,56,54,55,49,56,51,93,44,91,45,56,56,46,50,52,48,51,55,49,44,51,54,46,57,56,49,57,49,49,93,44,91,45,56,56,46,51,55,48,52,54,51,44,51,55,46,48,54,51,50,55,56,93,44,91,45,56,56,46,52,56,50,57,53,55,44,51,55,46,48,50,50,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,67,108,105,110,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,55,49,50,52,55,44,51,49,46,49,56,51,57,56,56,93,44,91,45,56,50,46,57,55,49,51,51,54,44,51,48,46,56,54,57,51,57,50,93,44,91,45,56,50,46,56,52,54,52,48,53,44,51,48,46,56,51,52,57,52,57,93,44,91,45,56,50,46,55,54,54,49,53,57,44,51,48,46,55,51,50,52,48,52,93,44,91,45,56,50,46,54,48,52,51,48,55,44,51,48,46,55,49,51,55,49,53,93,44,91,45,56,50,46,53,56,52,48,48,55,44,51,48,46,53,57,49,53,52,56,93,44,91,45,56,50,46,52,53,57,55,57,51,44,51,48,46,53,56,52,50,54,55,93,44,91,45,56,50,46,52,49,56,57,49,52,44,51,48,46,53,56,49,55,54,55,93,44,91,45,56,50,46,52,51,53,56,53,50,44,51,48,46,56,50,48,48,54,56,93,44,91,45,56,50,46,52,57,48,53,53,56,44,51,48,46,57,54,51,49,54,54,93,44,91,45,56,50,46,53,57,50,48,55,49,44,51,49,46,48,49,56,52,56,55,93,44,91,45,56,50,46,54,55,49,54,54,57,44,51,49,46,49,56,51,55,51,57,93,44,91,45,56,50,46,57,55,49,50,52,55,44,51,49,46,49,56,51,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,76,111,119,110,100,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,53,56,50,44,34,98,101,100,115,34,58,52,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,57,53,48,53,50,44,51,49,46,48,50,55,50,55,56,93,44,91,45,56,51,46,52,55,53,54,49,55,44,51,49,46,48,51,49,57,54,52,93,44,91,45,56,51,46,51,55,48,56,57,56,44,51,48,46,56,56,52,56,50,56,93,44,91,45,56,51,46,52,56,50,52,54,49,44,51,48,46,55,53,54,57,51,49,93,44,91,45,56,51,46,51,53,55,55,48,51,44,51,48,46,54,51,55,51,54,93,44,91,45,56,51,46,51,52,48,56,53,50,44,51,48,46,54,51,54,51,51,54,93,44,91,45,56,51,46,51,48,57,50,52,57,44,51,48,46,54,51,52,52,48,54,93,44,91,45,56,51,46,49,51,54,54,49,52,44,51,48,46,54,50,51,57,54,55,93,44,91,45,56,51,46,49,50,52,56,54,53,44,51,48,46,56,48,51,54,53,53,93,44,91,45,56,51,46,48,49,57,52,49,57,44,51,48,46,56,52,57,52,53,51,93,44,91,45,56,51,46,48,52,50,57,50,52,44,51,48,46,57,52,55,50,57,54,93,44,91,45,56,51,46,49,55,57,52,54,53,44,51,48,46,57,53,48,49,50,56,93,44,91,45,56,51,46,49,57,55,57,55,49,44,51,49,46,48,50,53,52,48,53,93,44,91,45,56,51,46,50,57,53,48,53,50,44,51,49,46,48,50,55,50,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,75,97,108,97,119,97,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,72,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,55,46,48,49,53,48,53,56,44,50,49,46,50,54,49,49,57,52,93,44,91,45,49,53,55,46,48,49,52,54,49,50,44,50,49,46,49,56,50,51,52,57,93,44,91,45,49,53,54,46,57,49,55,49,44,50,49,46,49,54,51,55,49,93,44,91,45,49,53,54,46,56,55,49,49,57,53,44,50,49,46,50,51,49,56,56,55,93,44,91,45,49,53,55,46,48,49,53,48,53,56,44,50,49,46,50,54,49,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,75,97,117,97,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,72,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,51,55,55,44,34,98,101,100,115,34,58,49,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,57,46,54,49,57,49,57,49,44,50,50,46,50,54,54,56,51,55,93,44,91,45,49,53,57,46,55,53,44,50,50,46,49,57,57,52,52,57,93,44,91,45,49,53,57,46,56,52,56,49,50,52,44,50,50,46,48,55,54,48,55,51,93,44,91,45,49,53,57,46,55,57,51,54,48,49,44,50,49,46,57,51,57,55,56,93,44,91,45,49,53,57,46,54,51,49,50,53,57,44,50,49,46,56,52,54,54,56,56,93,44,91,45,49,53,57,46,52,52,51,57,57,57,44,50,49,46,56,49,55,55,56,57,93,44,91,45,49,53,57,46,50,56,52,51,53,52,44,50,49,46,57,52,48,54,51,55,93,44,91,45,49,53,57,46,50,52,53,55,55,57,44,50,50,46,49,54,54,56,48,56,93,44,91,45,49,53,57,46,51,48,56,55,57,56,44,50,50,46,50,53,93,44,91,45,49,53,57,46,52,48,50,57,50,44,50,50,46,50,57,48,52,55,51,93,44,91,45,49,53,57,46,54,49,57,49,57,49,44,50,50,46,50,54,54,56,51,55,93,93,93,44,91,91,91,45,49,54,48,46,51,48,52,51,54,44,50,49,46,56,53,51,55,57,53,93,44,91,45,49,54,48,46,50,54,53,55,55,56,44,50,49,46,55,52,54,49,56,93,44,91,45,49,54,48,46,49,55,48,51,49,44,50,49,46,55,51,57,53,53,49,93,44,91,45,49,54,48,46,49,50,50,48,49,53,44,50,49,46,56,50,52,57,54,93,44,91,45,49,54,48,46,48,51,49,48,51,50,44,50,49,46,56,54,57,51,54,52,93,44,91,45,49,53,57,46,57,57,55,50,48,53,44,50,49,46,57,57,50,53,49,93,44,91,45,49,54,48,46,48,53,54,55,50,50,44,50,50,46,48,54,56,51,52,53,93,44,91,45,49,54,48,46,49,52,48,52,49,54,44,50,50,46,48,55,51,51,50,50,93,44,91,45,49,54,48,46,49,55,52,48,49,49,44,50,49,46,57,57,49,52,55,57,93,44,91,45,49,54,48,46,50,55,57,57,52,55,44,50,49,46,57,50,48,54,51,56,93,44,91,45,49,54,48,46,51,48,52,51,54,44,50,49,46,56,53,51,55,57,53,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,97,99,111,109,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,56,55,48,52,44,34,98,101,100,115,34,58,49,51,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,50,51,49,55,44,52,50,46,52,55,55,55,55,56,93,44,91,45,56,50,46,55,51,57,48,49,44,52,50,46,56,57,55,53,52,49,93,44,91,45,56,50,46,57,56,51,54,52,55,44,52,50,46,56,57,51,55,52,49,93,44,91,45,56,51,46,49,48,50,56,57,49,44,52,50,46,56,56,56,54,52,55,93,44,91,45,56,51,46,48,56,51,51,57,51,44,52,50,46,52,52,55,49,53,51,93,44,91,45,56,50,46,55,52,57,57,48,56,44,52,50,46,52,53,49,48,57,50,93,44,91,45,56,50,46,55,50,51,49,55,44,52,50,46,52,55,55,55,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,55,34,44,34,78,65,77,69,34,58,34,84,117,114,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,49,50,50,53,54,44,51,49,46,56,53,52,48,56,57,93,44,91,45,56,51,46,54,49,50,54,52,50,44,51,49,46,56,48,52,49,50,56,93,44,91,45,56,51,46,56,48,50,55,50,51,44,51,49,46,56,48,51,53,55,57,93,44,91,45,56,51,46,55,57,54,56,52,54,44,51,49,46,54,50,50,57,50,57,93,44,91,45,56,51,46,54,52,57,51,56,52,44,51,49,46,53,54,55,57,55,55,93,44,91,45,56,51,46,53,48,48,55,48,50,44,51,49,46,53,57,51,57,57,93,44,91,45,56,51,46,52,53,51,54,51,52,44,51,49,46,55,53,55,56,54,49,93,44,91,45,56,51,46,52,56,48,49,55,54,44,51,49,46,56,52,55,51,49,50,93,44,91,45,56,51,46,54,49,50,50,53,54,44,51,49,46,56,53,52,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,54,48,54,53,52,44,51,57,46,49,55,49,49,49,56,93,44,91,45,56,56,46,51,54,49,55,52,53,44,51,56,46,57,49,48,56,52,55,93,44,91,45,56,56,46,50,53,56,53,56,51,44,51,56,46,56,52,55,53,50,57,93,44,91,45,56,55,46,57,52,53,57,49,57,44,51,56,46,56,53,48,49,52,56,93,44,91,45,56,55,46,57,53,48,51,56,53,44,51,57,46,49,55,52,56,56,50,93,44,91,45,56,56,46,48,48,55,55,54,54,44,51,57,46,49,55,51,57,50,53,93,44,91,45,56,56,46,51,54,48,54,53,52,44,51,57,46,49,55,49,49,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,51,49,34,44,34,78,65,77,69,34,58,34,77,105,108,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,54,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,55,48,49,56,56,44,51,48,46,57,56,54,50,50,93,44,91,45,57,55,46,50,53,57,48,56,50,44,51,48,46,56,56,57,53,57,54,93,44,91,45,57,55,46,51,49,53,53,48,55,44,51,48,46,55,53,50,51,55,49,93,44,91,45,57,55,46,50,55,49,52,49,56,44,51,48,46,55,51,53,54,57,50,93,44,91,45,57,55,46,49,53,53,50,49,57,44,51,48,46,52,53,55,51,52,52,93,44,91,45,57,54,46,57,54,51,54,50,57,44,51,48,46,53,53,55,49,54,57,93,44,91,45,57,54,46,54,50,49,50,56,49,44,51,48,46,55,51,48,56,49,57,93,44,91,45,57,54,46,54,52,49,50,56,44,51,48,46,56,49,56,48,53,49,93,44,91,45,57,54,46,55,53,54,51,51,44,51,48,46,57,50,55,50,48,54,93,44,91,45,57,54,46,56,50,57,49,50,49,44,51,49,46,49,48,53,56,55,49,93,44,91,45,57,55,46,48,55,48,49,56,56,44,51,48,46,57,56,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,83,112,101,110,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,49,55,52,57,44,51,56,46,50,48,51,53,56,93,44,91,45,56,55,46,48,49,55,52,53,51,44,51,56,46,49,49,56,51,48,49,93,44,91,45,56,55,46,50,50,53,55,48,49,44,51,55,46,57,55,49,54,54,55,93,44,91,45,56,55,46,50,54,56,57,57,53,44,51,55,46,56,55,56,48,50,54,93,44,91,45,56,55,46,48,54,57,54,55,53,44,51,55,46,56,48,49,53,49,51,93,44,91,45,56,54,46,57,55,56,56,51,55,44,51,55,46,57,51,48,50,52,52,93,44,91,45,56,54,46,56,49,52,55,52,52,44,51,55,46,57,57,56,55,48,52,93,44,91,45,56,54,46,55,54,55,51,53,50,44,51,56,46,48,53,54,57,50,52,93,44,91,45,56,54,46,55,57,49,52,57,55,44,51,56,46,50,48,53,49,51,93,44,91,45,56,55,46,48,49,55,52,57,44,51,56,46,50,48,51,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,72,97,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,52,55,53,57,56,44,51,55,46,52,52,57,57,51,51,93,44,91,45,56,54,46,48,55,51,54,50,54,44,51,55,46,51,52,56,48,52,53,93,44,91,45,56,54,46,49,53,55,53,56,57,44,51,55,46,51,51,53,54,52,57,93,44,91,45,56,54,46,48,53,54,52,52,51,44,51,55,46,49,54,55,50,48,56,93,44,91,45,56,53,46,57,48,54,51,51,54,44,51,55,46,49,52,56,51,55,55,93,44,91,45,56,53,46,55,52,52,50,50,49,44,51,55,46,49,54,57,56,49,51,93,44,91,45,56,53,46,54,56,54,52,56,50,44,51,55,46,49,56,50,52,50,55,93,44,91,45,56,53,46,54,57,55,51,50,53,44,51,55,46,51,48,49,56,51,56,93,44,91,45,56,53,46,54,53,55,51,51,50,44,51,55,46,52,50,49,57,57,54,93,44,91,45,56,53,46,56,57,50,56,48,52,44,51,55,46,52,52,48,51,48,56,93,44,91,45,56,54,46,48,52,55,53,57,56,44,51,55,46,52,52,57,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,52,55,52,51,52,44,51,55,46,53,52,56,51,52,51,93,44,91,45,56,52,46,56,53,48,56,49,54,44,51,55,46,52,50,55,49,52,51,93,44,91,45,56,52,46,55,50,50,56,50,54,44,51,55,46,51,54,48,48,52,51,93,44,91,45,56,52,46,55,50,48,55,49,50,44,51,55,46,50,51,56,51,50,56,93,44,91,45,56,52,46,53,53,54,52,54,49,44,51,55,46,51,53,53,55,50,57,93,44,91,45,56,52,46,53,48,50,57,51,50,44,51,55,46,51,50,56,56,48,49,93,44,91,45,56,52,46,52,52,54,55,49,57,44,51,55,46,52,56,53,56,57,51,93,44,91,45,56,52,46,54,53,56,50,57,54,44,51,55,46,54,51,52,53,48,49,93,44,91,45,56,52,46,56,52,55,52,51,52,44,51,55,46,53,52,56,51,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,108,97,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,50,55,44,34,98,101,100,115,34,58,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,50,51,54,52,57,55,44,52,56,46,57,57,57,53,55,49,93,44,91,45,49,48,57,46,52,56,57,53,53,44,52,57,46,48,48,48,50,57,50,93,44,91,45,49,48,57,46,53,48,53,51,51,51,44,52,56,46,53,54,55,57,49,93,44,91,45,49,48,57,46,52,54,52,51,49,56,44,52,56,46,52,53,50,54,51,56,93,44,91,45,49,48,57,46,53,49,56,55,56,44,52,56,46,51,57,52,55,50,54,93,44,91,45,49,48,57,46,53,51,52,50,57,53,44,52,56,46,49,51,52,53,54,52,93,44,91,45,49,48,57,46,53,51,56,54,55,55,44,52,55,46,55,51,56,56,54,52,93,44,91,45,49,48,57,46,52,49,49,53,48,54,44,52,55,46,55,50,52,54,49,55,93,44,91,45,49,48,57,46,50,55,55,51,56,50,44,52,55,46,55,57,50,52,51,53,93,44,91,45,49,48,56,46,57,52,50,55,52,53,44,52,55,46,55,57,49,56,50,52,93,44,91,45,49,48,56,46,56,57,49,49,49,53,44,52,55,46,55,51,52,52,53,54,93,44,91,45,49,48,56,46,56,56,56,51,49,54,44,52,55,46,57,50,50,55,50,50,93,44,91,45,49,48,56,46,54,50,53,53,56,55,44,52,55,46,57,50,48,52,49,49,93,44,91,45,49,48,56,46,54,48,55,53,55,57,44,52,55,46,57,57,48,57,57,55,93,44,91,45,49,48,56,46,52,51,51,57,56,44,52,55,46,57,55,54,53,53,51,93,44,91,45,49,48,56,46,52,49,49,49,56,54,44,52,56,46,52,52,52,57,56,49,93,44,91,45,49,48,56,46,51,49,57,48,49,49,44,52,56,46,53,54,56,52,51,49,93,44,91,45,49,48,56,46,50,53,57,51,56,52,44,52,56,46,55,52,50,50,50,53,93,44,91,45,49,48,56,46,50,51,54,52,57,55,44,52,56,46,57,57,57,53,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,49,48,34,44,34,78,65,77,69,34,58,34,78,111,114,102,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,53,53,57,50,44,34,98,101,100,115,34,58,57,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,51,52,49,56,50,53,44,51,54,46,57,50,52,55,55,50,93,44,91,45,55,54,46,50,56,57,57,54,50,44,51,54,46,56,50,50,48,52,56,93,44,91,45,55,54,46,50,50,54,48,54,44,51,54,46,56,51,57,57,52,55,93,44,91,45,55,54,46,49,51,51,56,55,50,44,51,55,46,48,52,48,56,56,54,93,44,91,45,55,54,46,51,51,50,50,53,55,44,51,54,46,57,54,54,48,57,57,93,44,91,45,55,54,46,51,52,49,56,50,53,44,51,54,46,57,50,52,55,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,56,57,34,44,34,78,65,77,69,34,58,34,82,101,101,118,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,49,48,50,51,53,49,44,51,49,46,49,48,53,50,48,51,93,44,91,45,49,48,51,46,53,56,53,48,56,52,44,51,48,46,55,54,54,52,55,93,44,91,45,49,48,51,46,48,49,49,48,52,44,51,49,46,51,55,49,51,48,54,93,44,91,45,49,48,51,46,49,56,49,50,50,53,44,51,49,46,51,55,48,50,52,53,93,44,91,45,49,48,51,46,52,54,53,48,53,55,44,51,49,46,52,51,49,57,52,56,93,44,91,45,49,48,51,46,53,48,56,56,48,53,44,51,49,46,54,50,52,49,49,55,93,44,91,45,49,48,51,46,54,49,48,56,56,55,44,51,49,46,54,53,49,56,48,50,93,44,91,45,49,48,51,46,55,48,48,54,48,51,44,51,49,46,55,52,56,51,57,53,93,44,91,45,49,48,51,46,55,57,54,54,49,50,44,51,49,46,55,55,48,48,49,51,93,44,91,45,49,48,51,46,56,49,52,57,57,44,51,49,46,56,53,50,49,52,50,93,44,91,45,49,48,51,46,57,49,50,50,52,56,44,51,49,46,57,48,50,52,50,52,93,44,91,45,49,48,51,46,57,56,48,49,55,57,44,51,50,46,48,48,48,49,50,53,93,44,91,45,49,48,52,46,48,50,52,53,49,50,44,51,50,46,48,48,48,49,48,50,93,44,91,45,49,48,52,46,49,48,50,51,53,49,44,51,49,46,49,48,53,50,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,50,51,52,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,48,54,57,54,50,44,51,55,46,50,52,52,56,55,49,93,44,91,45,56,48,46,56,53,52,54,50,55,44,51,55,46,49,52,55,52,56,50,93,44,91,45,56,48,46,57,49,50,54,55,52,44,51,55,46,48,55,51,51,52,57,93,44,91,45,56,48,46,55,52,48,52,56,51,44,51,54,46,56,55,57,48,48,49,93,44,91,45,56,48,46,54,51,51,57,56,55,44,51,54,46,57,51,49,55,56,93,44,91,45,56,48,46,53,52,51,57,51,51,44,51,54,46,57,56,52,54,51,57,93,44,91,45,56,48,46,53,56,48,52,54,57,44,51,55,46,48,56,57,54,54,50,93,44,91,45,56,48,46,53,57,54,52,48,57,44,51,55,46,49,49,56,56,56,57,93,44,91,45,56,48,46,53,50,57,55,54,50,44,51,55,46,49,51,51,56,52,50,93,44,91,45,56,48,46,54,48,54,57,54,50,44,51,55,46,50,52,52,56,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,54,57,52,44,34,98,101,100,115,34,58,50,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,53,48,51,52,57,44,51,53,46,50,48,56,52,49,50,93,44,91,45,56,48,46,56,52,48,50,55,56,44,51,53,46,48,48,49,54,57,50,93,44,91,45,56,48,46,55,56,49,57,50,49,44,51,52,46,57,51,53,56,52,56,93,44,91,45,56,48,46,55,57,55,52,56,52,44,51,52,46,56,49,57,56,48,51,93,44,91,45,56,48,46,53,54,49,55,49,44,51,52,46,56,49,55,52,50,57,93,44,91,45,56,48,46,51,50,48,56,50,56,44,51,52,46,56,49,51,57,48,54,93,44,91,45,56,48,46,50,55,54,56,50,57,44,51,53,46,49,57,53,55,50,50,93,44,91,45,56,48,46,51,53,56,57,50,50,44,51,53,46,49,54,53,50,56,49,93,44,91,45,56,48,46,53,48,52,57,56,53,44,51,53,46,49,56,52,57,57,56,93,44,91,45,56,48,46,53,53,48,51,52,57,44,51,53,46,50,48,56,52,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,77,99,75,101,110,122,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,51,54,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,52,48,52,52,44,52,55,46,57,57,54,48,56,50,93,44,91,45,49,48,52,46,48,52,52,56,55,49,44,52,55,46,51,57,55,48,54,51,93,44,91,45,49,48,52,46,48,52,52,57,54,56,44,52,55,46,51,51,48,49,52,49,93,44,91,45,49,48,51,46,54,54,54,54,55,53,44,52,55,46,51,50,57,50,53,54,93,44,91,45,49,48,51,46,48,57,57,49,57,55,44,52,55,46,51,50,56,55,49,52,93,44,91,45,49,48,51,46,48,57,57,54,55,44,52,55,46,54,55,52,53,49,56,93,44,91,45,49,48,50,46,54,52,50,54,54,57,44,52,55,46,54,55,52,48,49,50,93,44,91,45,49,48,50,46,54,52,50,50,54,54,44,52,55,46,56,50,51,55,49,51,93,44,91,45,49,48,50,46,53,54,53,57,48,50,44,52,55,46,57,54,57,48,50,56,93,44,91,45,49,48,50,46,54,48,56,51,54,44,52,56,46,48,52,54,51,53,49,93,44,91,45,49,48,50,46,56,50,56,52,55,55,44,52,56,46,49,50,51,54,54,52,93,44,91,45,49,48,51,46,50,48,49,56,57,44,52,56,46,49,51,53,50,48,56,93,44,91,45,49,48,51,46,50,55,55,50,54,54,44,52,56,46,48,53,56,48,50,51,93,44,91,45,49,48,51,46,52,56,53,48,55,50,44,52,56,46,48,48,54,55,50,53,93,44,91,45,49,48,51,46,54,48,56,49,55,52,44,52,56,46,49,49,52,49,50,52,93,44,91,45,49,48,51,46,55,56,52,51,57,52,44,52,56,46,48,53,57,52,57,49,93,44,91,45,49,48,51,46,57,49,57,55,56,57,44,52,55,46,57,53,53,57,53,93,44,91,45,49,48,52,46,48,52,52,48,52,52,44,52,55,46,57,57,54,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,79,107,97,108,111,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,55,51,55,44,34,98,101,100,115,34,58,52,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,55,56,53,54,57,50,44,51,48,46,57,57,54,57,56,93,44,91,45,56,54,46,56,48,48,53,53,52,44,51,48,46,51,51,52,52,57,50,93,44,91,45,56,54,46,54,52,53,56,54,49,44,51,48,46,51,52,54,49,55,51,93,44,91,45,56,54,46,51,57,55,53,48,52,44,51,48,46,51,50,53,51,53,52,93,44,91,45,56,54,46,51,56,56,54,52,54,44,51,48,46,57,57,52,49,56,49,93,44,91,45,56,54,46,54,56,56,51,49,55,44,51,48,46,57,57,52,53,48,55,93,44,91,45,56,54,46,55,56,53,54,57,50,44,51,48,46,57,57,54,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,97,109,101,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,51,55,48,48,44,34,98,101,100,115,34,58,51,56,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,50,56,49,55,56,44,51,55,46,55,48,56,50,51,93,44,91,45,49,50,50,46,48,56,49,52,55,51,44,51,55,46,52,55,55,56,51,56,93,44,91,45,49,50,49,46,52,55,50,54,52,56,44,51,55,46,52,56,50,49,55,93,44,91,45,49,50,49,46,52,55,49,57,50,53,44,51,55,46,52,56,49,55,56,51,93,44,91,45,49,50,49,46,53,53,54,54,53,53,44,51,55,46,53,52,50,55,51,50,93,44,91,45,49,50,49,46,53,53,54,57,57,55,44,51,55,46,56,49,54,52,56,56,93,44,91,45,49,50,49,46,57,54,48,55,55,44,51,55,46,55,49,56,54,50,57,93,44,91,45,49,50,50,46,48,52,53,52,55,51,44,51,55,46,55,57,56,49,50,54,93,44,91,45,49,50,50,46,49,52,48,53,53,49,44,51,55,46,56,48,52,53,57,52,93,44,91,45,49,50,50,46,50,54,52,48,50,55,44,51,55,46,57,48,51,55,55,53,93,44,91,45,49,50,50,46,51,55,51,55,56,50,44,51,55,46,56,56,51,55,50,53,93,44,91,45,49,50,50,46,50,56,49,55,56,44,51,55,46,55,48,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,53,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,50,49,56,51,53,44,51,57,46,50,50,52,49,48,56,93,44,91,45,57,48,46,54,54,51,49,56,49,44,51,56,46,57,51,52,50,50,52,93,44,91,45,57,48,46,53,52,54,56,51,49,44,51,56,46,56,55,52,48,48,57,93,44,91,45,57,48,46,52,53,48,56,49,51,44,51,56,46,57,54,55,55,54,57,93,44,91,45,57,48,46,53,55,48,49,54,57,44,51,56,46,57,57,51,50,57,93,44,91,45,57,48,46,54,48,51,53,54,57,44,51,57,46,49,49,55,53,57,50,93,44,91,45,57,48,46,54,49,51,55,55,53,44,51,57,46,51,57,53,52,49,54,93,44,91,45,57,48,46,57,51,54,55,50,56,44,51,57,46,51,57,57,53,49,49,93,44,91,45,57,48,46,55,50,49,56,51,53,44,51,57,46,50,50,52,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,75,111,115,99,105,117,115,107,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,56,48,54,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,51,53,48,55,44,52,49,46,52,51,54,56,53,54,93,44,91,45,56,54,46,48,53,57,50,51,44,52,49,46,52,51,53,56,49,50,93,44,91,45,56,54,46,48,55,55,53,53,49,44,52,49,46,49,55,50,56,54,56,93,44,91,45,56,54,46,48,55,53,57,51,57,44,52,49,46,48,56,52,56,55,56,93,44,91,45,56,53,46,57,52,53,53,54,49,44,52,49,46,48,52,50,56,55,54,93,44,91,45,56,53,46,54,56,52,49,56,49,44,52,49,46,48,52,54,55,49,54,93,44,91,45,56,53,46,54,53,49,57,50,56,44,52,49,46,50,57,52,55,55,54,93,44,91,45,56,53,46,54,53,51,53,48,55,44,52,49,46,52,51,54,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,78,111,120,117,98,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,49,51,48,53,51,44,51,51,46,50,56,54,52,50,52,93,44,91,45,56,56,46,56,49,50,55,56,50,44,51,50,46,57,50,53,57,55,51,93,44,91,45,56,56,46,51,52,55,56,56,55,44,51,50,46,57,50,57,48,56,50,93,44,91,45,56,56,46,51,52,48,52,51,50,44,51,50,46,57,57,49,49,57,57,93,44,91,45,56,56,46,51,48,52,52,51,52,44,51,51,46,50,56,56,51,50,93,44,91,45,56,56,46,54,54,57,48,55,54,44,51,51,46,50,56,54,57,50,50,93,44,91,45,56,56,46,56,49,51,48,53,51,44,51,51,46,50,56,54,52,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,87,111,111,100,114,117,102,102,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,52,55,50,53,55,44,51,53,46,52,51,57,49,48,54,93,44,91,45,57,49,46,52,51,48,56,56,52,44,51,53,46,51,55,49,53,54,54,93,44,91,45,57,49,46,51,55,57,55,49,57,44,51,53,46,50,49,53,49,52,57,93,44,91,45,57,49,46,52,54,53,49,49,52,44,51,53,46,48,56,57,52,53,52,93,44,91,45,57,49,46,51,54,51,55,54,51,44,51,53,46,48,53,49,56,56,55,93,44,91,45,57,49,46,51,54,56,53,54,44,51,52,46,57,49,50,55,51,53,93,44,91,45,57,49,46,50,57,51,49,49,49,44,51,52,46,57,56,53,48,57,49,93,44,91,45,57,49,46,49,52,57,56,52,50,44,51,53,46,48,48,50,52,55,93,44,91,45,57,49,46,48,52,53,52,51,44,51,53,46,48,48,49,48,52,93,44,91,45,57,49,46,48,52,50,54,55,44,51,53,46,49,52,56,49,56,57,93,44,91,45,57,49,46,48,51,57,55,56,51,44,51,53,46,51,53,52,50,53,54,93,44,91,45,57,49,46,50,53,49,53,53,53,44,51,53,46,51,53,55,53,54,49,93,44,91,45,57,49,46,51,52,55,50,53,55,44,51,53,46,52,51,57,49,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,71,108,111,117,99,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,56,53,50,44,34,98,101,100,115,34,58,51,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,50,49,49,52,54,51,44,51,57,46,56,54,55,48,48,52,93,44,91,45,55,53,46,52,49,53,48,54,50,44,51,57,46,56,48,49,57,49,57,93,44,91,45,55,53,46,52,48,53,52,56,57,44,51,57,46,55,57,54,51,54,56,93,44,91,45,55,53,46,51,54,55,50,51,57,44,51,57,46,55,49,55,53,54,53,93,44,91,45,55,53,46,49,57,57,55,57,51,44,51,57,46,54,54,54,57,57,54,93,44,91,45,55,53,46,48,54,49,56,53,52,44,51,57,46,53,54,56,55,52,54,93,44,91,45,55,52,46,57,56,53,50,55,49,44,51,57,46,53,49,52,57,54,55,93,44,91,45,55,52,46,56,55,55,50,54,44,51,57,46,54,48,56,51,53,50,93,44,91,45,55,53,46,49,51,57,56,51,50,44,51,57,46,56,56,56,51,49,55,93,44,91,45,55,53,46,50,49,49,52,54,51,44,51,57,46,56,54,55,48,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,72,105,108,108,115,98,111,114,111,117,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,49,48,56,55,44,34,98,101,100,115,34,58,49,48,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,48,51,56,49,52,57,44,52,51,46,49,50,56,56,48,55,93,44,91,45,55,50,46,48,48,54,49,57,44,52,50,46,57,52,51,55,56,57,93,44,91,45,55,49,46,57,50,56,57,57,51,44,52,50,46,55,49,50,49,48,50,93,44,91,45,55,49,46,56,57,56,55,55,51,44,52,50,46,55,49,49,51,49,50,93,44,91,45,55,49,46,50,57,52,54,51,55,44,52,50,46,54,57,55,48,52,50,93,44,91,45,55,49,46,50,53,53,49,52,55,44,52,50,46,55,51,54,53,53,52,93,44,91,45,55,49,46,50,52,53,52,56,49,44,52,50,46,55,52,50,53,49,52,93,44,91,45,55,49,46,52,50,55,48,54,55,44,52,50,46,56,50,52,56,52,93,44,91,45,55,49,46,52,53,48,52,51,54,44,52,50,46,57,51,49,48,50,93,44,91,45,55,49,46,51,57,50,51,56,56,44,52,51,46,48,48,57,51,48,57,93,44,91,45,55,49,46,53,49,55,52,54,55,44,52,51,46,48,54,56,57,48,57,93,44,91,45,55,49,46,54,52,49,50,57,49,44,52,51,46,48,53,52,49,54,56,93,44,91,45,55,49,46,54,54,55,55,55,49,44,52,51,46,49,53,50,53,51,52,93,44,91,45,55,49,46,56,53,54,49,44,52,51,46,49,49,53,49,51,53,93,44,91,45,55,49,46,57,49,51,50,49,53,44,52,51,46,50,48,55,48,57,57,93,44,91,45,55,50,46,48,48,57,48,55,52,44,52,51,46,49,56,55,56,56,50,93,44,91,45,55,50,46,48,51,56,49,52,57,44,52,51,46,49,50,56,56,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,74,117,100,105,116,104,32,66,97,115,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,54,51,57,53,53,57,44,52,55,46,52,49,54,52,56,54,93,44,91,45,49,49,48,46,55,54,55,49,50,53,44,52,55,46,51,53,57,49,50,56,93,44,91,45,49,49,48,46,55,55,48,54,57,56,44,52,55,46,48,57,54,53,52,54,93,44,91,45,49,49,48,46,54,52,53,50,49,50,44,52,55,46,48,57,53,56,55,93,44,91,45,49,49,48,46,54,53,50,56,55,55,44,52,54,46,56,50,51,54,50,54,93,44,91,45,49,49,48,46,52,53,52,53,54,54,44,52,54,46,54,55,57,53,52,53,93,44,91,45,49,49,48,46,50,55,51,51,51,55,44,52,54,46,55,49,48,53,48,57,93,44,91,45,49,48,57,46,57,54,55,56,44,52,54,46,55,53,48,56,55,53,93,44,91,45,49,48,57,46,55,52,53,55,52,53,44,52,54,46,54,57,52,48,57,55,93,44,91,45,49,48,57,46,55,57,55,52,54,57,44,52,54,46,56,54,55,48,51,56,93,44,91,45,49,48,57,46,55,53,53,52,50,51,44,52,54,46,56,57,54,48,50,51,93,44,91,45,49,48,57,46,55,53,54,53,54,56,44,52,55,46,49,56,53,54,57,52,93,44,91,45,49,49,48,46,49,50,55,54,57,57,44,52,55,46,50,55,49,57,49,93,44,91,45,49,49,48,46,50,49,51,53,57,54,44,52,55,46,52,49,54,54,53,55,93,44,91,45,49,49,48,46,54,51,57,53,53,57,44,52,55,46,52,49,54,52,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,105,116,99,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,52,48,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,50,50,48,54,52,44,51,54,46,49,53,54,57,54,93,44,91,45,56,50,46,52,49,54,55,51,56,44,51,54,46,48,55,50,56,50,55,93,44,91,45,56,50,46,51,52,53,50,57,44,51,54,46,48,55,54,52,53,57,93,44,91,45,56,50,46,49,57,49,55,48,53,44,51,53,46,57,57,48,54,51,54,93,44,91,45,56,50,46,49,51,51,52,56,52,44,51,53,46,56,50,51,51,48,57,93,44,91,45,56,49,46,57,56,49,57,53,52,44,51,53,46,57,49,49,51,54,49,93,44,91,45,56,50,46,48,51,52,49,48,52,44,51,53,46,57,52,50,48,53,55,93,44,91,45,56,50,46,48,56,49,48,55,57,44,51,54,46,49,48,51,49,55,93,44,91,45,56,50,46,50,50,50,48,54,52,44,51,54,46,49,53,54,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,80,111,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,54,49,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,51,48,50,57,48,51,44,52,54,46,56,51,50,49,53,57,93,44,91,45,49,49,51,46,49,49,53,54,49,52,44,52,54,46,55,49,51,51,56,55,93,44,91,45,49,49,51,46,48,51,56,55,48,50,44,52,54,46,55,51,53,53,52,93,44,91,45,49,49,51,46,48,51,54,56,50,53,44,52,54,46,50,54,54,56,50,54,93,44,91,45,49,49,50,46,53,53,56,53,57,57,44,52,54,46,50,54,53,56,50,49,93,44,91,45,49,49,50,46,53,51,51,54,50,53,44,52,54,46,51,51,48,56,57,56,93,44,91,45,49,49,50,46,51,49,48,53,55,51,44,52,54,46,52,50,49,49,55,49,93,44,91,45,49,49,50,46,51,50,48,56,55,49,44,52,54,46,54,53,53,57,50,55,93,44,91,45,49,49,50,46,53,51,53,53,57,55,44,52,54,46,54,57,57,52,56,50,93,44,91,45,49,49,50,46,53,51,53,55,52,56,44,52,54,46,56,51,52,50,51,52,93,44,91,45,49,49,50,46,55,57,53,54,52,50,44,52,54,46,56,51,49,54,54,53,93,44,91,45,49,49,50,46,55,57,53,56,48,56,44,52,55,46,49,55,55,48,48,52,93,44,91,45,49,49,51,46,48,53,57,48,53,51,44,52,55,46,49,55,57,53,55,93,44,91,45,49,49,51,46,48,53,57,49,57,57,44,52,55,46,52,56,56,53,57,57,93,44,91,45,49,49,51,46,49,52,52,51,54,56,44,52,55,46,53,57,53,53,48,55,93,44,91,45,49,49,51,46,52,54,54,52,56,53,44,52,55,46,54,48,48,48,53,55,93,44,91,45,49,49,51,46,52,54,54,52,53,44,52,55,46,49,55,57,49,56,54,93,44,91,45,49,49,51,46,51,48,50,57,52,51,44,52,55,46,49,55,57,54,52,51,93,44,91,45,49,49,51,46,51,48,50,57,48,51,44,52,54,46,56,51,50,49,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,52,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,55,50,52,54,54,51,44,52,53,46,48,52,52,52,51,50,93,44,91,45,49,50,51,46,55,50,53,48,48,49,44,52,52,46,55,51,57,48,52,54,93,44,91,45,49,50,51,46,54,48,50,54,48,57,44,52,52,46,55,50,49,49,53,52,93,44,91,45,49,50,51,46,49,52,57,48,50,53,44,52,52,46,55,50,48,50,50,53,93,44,91,45,49,50,51,46,49,52,51,56,52,51,44,52,52,46,55,52,56,57,49,52,93,44,91,45,49,50,51,46,49,55,57,51,56,55,44,52,52,46,56,51,53,55,50,57,93,44,91,45,49,50,51,46,48,52,52,57,48,51,44,52,52,46,57,52,52,48,50,56,93,44,91,45,49,50,51,46,48,54,56,54,54,55,44,52,53,46,48,55,52,56,54,93,44,91,45,49,50,51,46,55,50,52,51,54,56,44,52,53,46,48,55,54,50,50,54,93,44,91,45,49,50,51,46,55,50,52,54,54,51,44,52,53,46,48,52,52,52,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,87,97,115,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,54,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,54,57,54,52,55,57,44,52,53,46,50,53,55,57,50,93,44,91,45,49,50,49,46,55,52,56,52,56,53,44,52,53,46,50,48,52,52,52,93,44,91,45,49,50,49,46,54,53,50,48,49,56,44,52,53,46,48,56,54,55,48,54,93,44,91,45,49,50,49,46,56,48,53,54,54,55,44,52,53,46,48,48,54,49,50,52,93,44,91,45,49,50,49,46,55,51,52,50,50,51,44,52,52,46,56,56,53,55,50,93,44,91,45,49,50,49,46,55,53,50,57,57,52,44,52,52,46,56,50,57,57,49,57,93,44,91,45,49,50,49,46,48,56,57,52,56,44,52,52,46,56,50,51,50,55,50,93,44,91,45,49,50,48,46,51,55,49,52,52,49,44,52,52,46,56,50,49,55,54,57,93,44,91,45,49,50,48,46,52,53,53,51,56,57,44,52,52,46,56,54,54,48,52,54,93,44,91,45,49,50,48,46,52,57,53,49,54,44,52,53,46,48,54,56,50,55,57,93,44,91,45,49,50,48,46,53,48,51,55,51,51,44,52,53,46,48,56,51,52,55,55,93,44,91,45,49,50,48,46,55,50,51,53,54,57,44,52,53,46,49,51,48,57,49,49,93,44,91,45,49,50,48,46,56,56,57,51,53,55,44,52,53,46,50,48,50,51,48,53,93,44,91,45,49,50,49,46,48,50,52,50,57,52,44,52,53,46,50,49,57,53,51,49,93,44,91,45,49,50,48,46,56,54,56,53,54,57,44,52,53,46,52,48,49,49,52,54,93,44,91,45,49,50,48,46,56,51,56,55,55,50,44,52,53,46,53,49,53,57,52,54,93,44,91,45,49,50,48,46,57,49,53,56,53,44,52,53,46,54,52,49,50,93,44,91,45,49,50,49,46,48,56,52,56,54,51,44,52,53,46,54,52,55,57,51,50,93,44,91,45,49,50,49,46,51,51,55,55,49,50,44,52,53,46,55,48,52,56,51,57,93,44,91,45,49,50,49,46,52,52,49,50,50,57,44,52,53,46,54,57,55,50,56,93,44,91,45,49,50,49,46,52,56,50,49,54,56,44,52,53,46,53,49,57,54,48,52,93,44,91,45,49,50,49,46,52,56,49,56,56,56,44,52,53,46,50,53,56,49,50,56,93,44,91,45,49,50,49,46,54,57,54,52,55,57,44,52,53,46,50,53,55,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,80,101,114,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,57,52,50,48,55,44,52,53,46,57,52,53,93,44,91,45,49,48,50,46,57,53,55,50,56,49,44,52,53,46,50,49,50,56,53,49,93,44,91,45,49,48,50,46,57,53,55,51,55,49,44,52,53,46,48,51,57,53,54,57,93,44,91,45,49,48,49,46,57,57,57,57,57,44,52,53,46,48,51,56,50,55,52,93,44,91,45,49,48,49,46,57,57,57,55,57,44,52,53,46,52,55,50,52,49,52,93,44,91,45,49,48,50,46,48,48,48,54,56,49,44,52,53,46,57,52,52,53,54,51,93,44,91,45,49,48,50,46,57,52,50,48,55,44,52,53,46,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,48,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,50,56,52,53,57,44,52,48,46,57,48,48,54,53,51,93,44,91,45,57,52,46,57,49,52,56,57,54,44,52,48,46,53,55,53,48,54,56,93,44,91,45,57,52,46,54,51,50,48,51,44,52,48,46,53,55,49,51,54,55,93,44,91,45,57,52,46,52,55,49,50,49,51,44,52,48,46,53,55,48,56,50,53,93,44,91,45,57,52,46,52,55,48,55,55,57,44,52,48,46,56,57,57,53,48,50,93,44,91,45,57,52,46,57,50,56,52,53,57,44,52,48,46,57,48,48,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,54,52,52,51,44,51,49,46,54,57,55,57,53,50,93,44,91,45,56,56,46,52,52,57,52,51,56,44,51,49,46,52,51,53,56,51,55,93,44,91,45,56,56,46,52,51,50,48,48,55,44,51,49,46,49,49,52,50,57,56,93,44,91,45,56,56,46,51,50,57,55,56,50,44,51,49,46,49,52,51,56,50,49,93,44,91,45,56,56,46,48,50,50,54,52,57,44,51,49,46,49,52,52,50,54,55,93,44,91,45,56,55,46,57,55,50,56,54,57,44,51,49,46,49,54,50,54,57,52,93,44,91,45,56,55,46,57,52,54,53,56,56,44,51,49,46,49,57,50,57,51,93,44,91,45,56,55,46,57,53,48,55,57,53,44,51,49,46,50,57,57,52,54,51,93,44,91,45,56,55,46,56,56,56,56,53,55,44,51,49,46,51,54,52,48,50,51,93,44,91,45,56,55,46,57,48,55,51,57,57,44,51,49,46,52,57,52,52,51,56,93,44,91,45,56,56,46,48,55,50,50,51,52,44,51,49,46,53,57,52,53,93,44,91,45,56,56,46,48,56,56,50,56,56,44,51,49,46,54,57,57,51,48,51,93,44,91,45,56,56,46,52,54,52,52,51,44,51,49,46,54,57,55,57,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,101,102,105,97,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,50,55,57,44,34,98,101,100,115,34,58,49,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,49,54,54,52,44,52,49,46,52,50,55,53,54,56,93,44,91,45,56,52,46,56,48,52,48,54,51,44,52,49,46,52,50,54,48,53,49,93,44,91,45,56,52,46,56,48,51,53,56,57,44,52,49,46,50,55,49,50,55,51,93,44,91,45,56,52,46,56,48,51,53,52,52,44,52,49,46,50,53,50,53,54,50,93,44,91,45,56,52,46,52,53,55,50,49,55,44,52,49,46,50,53,51,52,56,53,93,44,91,45,56,52,46,51,52,49,54,48,50,44,52,49,46,49,54,53,53,50,52,93,44,91,45,56,52,46,50,50,56,50,50,50,44,52,49,46,49,54,53,56,54,50,93,44,91,45,56,52,46,50,50,56,52,53,52,44,52,49,46,52,50,55,56,49,93,44,91,45,56,52,46,51,52,49,54,54,52,44,52,49,46,52,50,55,53,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,98,114,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,52,55,44,34,98,101,100,115,34,58,49,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,48,54,51,49,54,44,51,55,46,56,54,56,57,49,53,93,44,91,45,56,48,46,54,54,51,51,52,56,44,51,55,46,55,51,49,54,57,54,93,44,91,45,56,48,46,53,48,54,54,57,53,44,51,55,46,54,57,49,49,53,56,93,44,91,45,56,48,46,50,57,54,49,51,56,44,51,55,46,54,57,49,55,56,51,93,44,91,45,56,48,46,49,54,50,50,48,50,44,51,55,46,56,55,53,49,50,50,93,44,91,45,56,48,46,48,53,54,48,53,54,44,51,55,46,57,53,49,57,53,57,93,44,91,45,55,57,46,57,53,57,56,52,52,44,51,56,46,48,54,51,54,57,55,93,44,91,45,56,48,46,50,54,52,54,53,51,44,51,56,46,48,52,54,54,49,54,93,44,91,45,56,48,46,51,54,51,50,57,53,44,51,56,46,49,49,52,51,51,49,93,44,91,45,56,48,46,51,54,48,48,52,56,44,51,56,46,50,50,53,56,52,53,93,44,91,45,56,48,46,52,51,54,53,49,52,44,51,56,46,50,54,55,51,51,52,93,44,91,45,56,48,46,55,49,49,57,54,49,44,51,56,46,48,55,57,49,50,57,93,44,91,45,56,48,46,56,56,50,49,56,55,44,51,56,46,49,48,51,52,53,55,93,44,91,45,56,48,46,55,54,57,56,54,54,44,51,55,46,57,56,53,50,55,93,44,91,45,56,48,46,56,48,54,51,49,54,44,51,55,46,56,54,56,57,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,56,52,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,57,53,49,54,53,44,51,56,46,56,50,54,50,57,57,93,44,91,45,56,57,46,49,51,56,49,51,56,44,51,56,46,56,50,52,50,48,57,93,44,91,45,56,57,46,49,51,56,51,57,51,44,51,56,46,55,51,54,51,51,49,93,44,91,45,56,57,46,49,52,51,56,54,54,44,51,56,46,53,48,51,48,56,57,93,44,91,45,56,57,46,49,52,52,51,56,56,44,51,56,46,52,55,51,56,55,56,93,44,91,45,56,56,46,54,57,56,57,54,49,44,51,56,46,52,55,52,57,49,52,93,44,91,45,56,56,46,54,57,56,52,53,57,44,51,56,46,54,48,54,48,54,50,93,44,91,45,56,56,46,54,57,53,49,54,53,44,51,56,46,56,50,54,50,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,68,105,99,107,101,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,54,48,44,34,98,101,100,115,34,58,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,49,52,49,57,53,44,51,55,46,50,57,54,48,55,53,93,44,91,45,56,50,46,53,53,51,56,55,52,44,51,55,46,50,48,50,56,51,51,93,44,91,45,56,50,46,52,54,55,51,52,53,44,51,55,46,48,50,50,49,51,54,93,44,91,45,56,50,46,51,50,55,56,51,44,51,54,46,57,55,48,57,56,50,93,44,91,45,56,50,46,49,52,57,51,55,53,44,51,55,46,48,52,49,54,52,49,93,44,91,45,56,50,46,51,49,52,49,57,53,44,51,55,46,50,57,54,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,109,101,108,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,53,53,49,52,56,44,51,55,46,52,49,56,51,54,51,93,44,91,45,55,55,46,57,56,54,49,57,44,51,55,46,52,56,54,50,54,57,93,44,91,45,55,56,46,49,51,50,48,52,56,44,51,55,46,52,53,52,54,56,54,93,44,91,45,55,56,46,50,51,53,48,51,57,44,51,55,46,51,54,56,49,48,50,93,44,91,45,55,56,46,50,51,49,50,51,52,44,51,55,46,50,57,54,50,50,93,44,91,45,55,55,46,55,57,53,57,50,54,44,51,55,46,49,57,50,53,57,50,93,44,91,45,55,55,46,54,53,48,54,49,44,51,55,46,50,54,53,49,49,50,93,44,91,45,55,55,46,55,53,56,54,50,44,51,55,46,50,54,56,55,49,55,93,44,91,45,55,55,46,56,55,55,53,53,54,44,51,55,46,51,54,54,50,52,55,93,44,91,45,55,55,46,56,53,53,49,52,56,44,51,55,46,52,49,56,51,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,51,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,56,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,48,55,48,48,54,44,51,49,46,57,50,52,52,54,53,93,44,91,45,56,52,46,57,53,56,54,52,44,51,49,46,55,55,55,56,53,52,93,44,91,45,56,52,46,57,52,50,51,53,51,44,51,49,46,54,49,56,54,54,57,93,44,91,45,56,52,46,56,49,55,56,52,51,44,51,49,46,54,49,57,55,55,49,93,44,91,45,56,52,46,53,52,54,56,53,52,44,51,49,46,54,50,49,49,57,57,93,44,91,45,56,52,46,54,48,51,48,56,54,44,51,49,46,55,55,50,48,48,49,93,44,91,45,56,52,46,53,57,57,55,55,54,44,51,49,46,57,50,48,49,55,49,93,44,91,45,56,52,46,54,53,53,56,50,44,51,49,46,57,50,48,51,48,56,93,44,91,45,56,52,46,57,48,55,48,48,54,44,51,49,46,57,50,52,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,76,117,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,50,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,54,48,56,52,56,53,44,51,50,46,54,48,53,52,52,57,93,44,91,45,49,48,55,46,57,50,51,57,57,55,44,51,50,46,54,48,52,51,55,57,93,44,91,45,49,48,55,46,57,50,51,55,54,54,44,51,50,46,53,49,55,52,49,54,93,44,91,45,49,48,56,46,50,50,57,51,52,51,44,51,50,46,53,49,54,56,51,55,93,44,91,45,49,48,56,46,50,50,57,57,53,49,44,51,50,46,48,55,57,56,55,93,44,91,45,49,48,56,46,50,49,55,49,52,51,44,51,49,46,56,54,52,49,51,57,93,44,91,45,49,48,56,46,50,48,56,52,56,52,44,51,49,46,55,56,51,54,57,56,93,44,91,45,49,48,55,46,50,57,54,55,57,51,44,51,49,46,55,56,51,54,52,49,93,44,91,45,49,48,55,46,50,57,57,54,51,49,44,51,50,46,54,48,53,51,55,93,44,91,45,49,48,55,46,54,48,56,52,56,53,44,51,50,46,54,48,53,52,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,53,53,34,44,34,78,65,77,69,34,58,34,78,117,101,99,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,48,52,56,54,44,34,98,101,100,115,34,58,49,49,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,57,56,53,49,55,44,50,55,46,57,57,53,54,53,57,93,44,91,45,57,55,46,57,51,52,50,55,52,44,50,55,46,56,56,53,50,48,50,93,44,91,45,57,55,46,57,52,50,49,52,54,44,50,55,46,54,51,53,57,51,50,93,44,91,45,57,55,46,56,52,48,54,55,56,44,50,55,46,53,53,56,51,53,56,93,44,91,45,57,55,46,49,54,53,48,57,55,44,50,55,46,53,54,56,51,93,44,91,45,57,54,46,57,56,52,50,56,49,44,50,55,46,56,48,51,55,56,51,93,44,91,45,57,55,46,49,51,54,51,49,50,44,50,55,46,57,48,52,51,57,93,44,91,45,57,55,46,49,56,53,53,55,57,44,50,55,46,56,51,48,50,55,50,93,44,91,45,57,55,46,51,51,55,54,55,55,44,50,55,46,56,56,51,49,54,53,93,44,91,45,57,55,46,53,56,57,52,55,51,44,50,55,46,56,53,54,49,48,49,93,44,91,45,57,55,46,55,57,56,53,49,55,44,50,55,46,57,57,53,54,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,87,101,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,48,48,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,55,57,50,56,49,44,52,52,46,49,55,54,49,56,50,93,44,91,45,49,48,53,46,48,55,57,55,57,55,44,52,51,46,52,57,56,52,52,53,93,44,91,45,49,48,52,46,56,57,57,57,52,49,44,52,51,46,52,57,57,54,52,93,44,91,45,49,48,52,46,48,53,52,55,56,54,44,52,51,46,53,48,51,51,50,56,93,44,91,45,49,48,52,46,48,53,53,52,56,55,44,52,51,46,56,53,51,52,55,54,93,44,91,45,49,48,52,46,48,53,52,53,56,56,44,52,52,46,49,52,49,48,56,49,93,44,91,45,49,48,52,46,48,53,52,52,56,55,44,52,52,46,49,56,48,51,56,49,93,44,91,45,49,48,53,46,48,55,57,50,56,49,44,52,52,46,49,55,54,49,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,84,111,97,32,66,97,106,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,55,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,56,55,50,55,49,44,49,56,46,53,50,54,50,55,49,93,44,91,45,54,54,46,50,53,50,53,53,52,44,49,56,46,51,57,52,49,56,55,93,44,91,45,54,54,46,49,57,54,57,56,44,49,56,46,51,56,57,50,56,57,93,44,91,45,54,54,46,49,54,57,53,49,54,44,49,56,46,52,51,48,57,57,56,93,44,91,45,54,54,46,49,50,57,52,48,51,44,49,56,46,52,54,53,54,51,50,93,44,91,45,54,54,46,49,50,56,57,56,54,44,49,56,46,53,50,52,52,48,51,93,44,91,45,54,54,46,49,56,55,50,55,49,44,49,56,46,53,50,54,50,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,51,56,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,56,53,49,57,52,44,52,49,46,48,54,56,55,52,57,93,44,91,45,57,48,46,55,56,57,54,53,50,44,52,48,46,54,51,53,55,53,93,44,91,45,57,48,46,52,52,53,54,50,55,44,52,48,46,54,50,55,54,51,56,93,44,91,45,57,48,46,52,52,52,51,51,57,44,52,48,46,55,49,52,56,54,56,93,44,91,45,57,48,46,52,51,57,52,50,51,44,52,49,46,48,54,51,57,57,53,93,44,91,45,57,48,46,55,56,53,49,57,52,44,52,49,46,48,54,56,55,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,53,54,48,44,34,98,101,100,115,34,58,49,50,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,49,56,55,54,49,44,51,52,46,57,57,49,49,54,57,93,44,91,45,56,54,46,55,56,51,54,50,56,44,51,52,46,57,57,49,57,52,56,93,44,91,45,56,54,46,55,57,48,48,53,54,44,51,52,46,53,53,48,55,57,93,44,91,45,56,54,46,54,56,57,51,53,51,44,51,52,46,53,56,54,52,50,53,93,44,91,45,56,54,46,53,53,48,49,54,54,44,51,52,46,53,52,53,57,54,51,93,44,91,45,56,54,46,52,50,53,52,56,50,44,51,52,46,52,55,57,50,55,55,93,44,91,45,56,54,46,51,49,49,49,56,55,44,51,52,46,53,51,57,50,55,55,93,44,91,45,56,54,46,51,50,54,56,53,51,44,51,52,46,53,57,57,52,48,51,93,44,91,45,56,54,46,51,53,57,48,51,52,44,51,52,46,54,51,50,54,49,93,44,91,45,56,54,46,51,53,49,49,50,51,44,51,52,46,56,55,51,50,54,53,93,44,91,45,56,54,46,51,49,49,50,55,52,44,51,52,46,57,57,49,48,57,56,93,44,91,45,56,54,46,51,49,56,55,54,49,44,51,52,46,57,57,49,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,87,105,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,54,54,51,44,34,98,101,100,115,34,58,49,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,57,52,50,56,54,44,51,54,46,50,52,53,49,48,53,93,44,91,45,56,54,46,53,49,53,53,56,57,44,51,54,46,49,48,48,54,49,93,44,91,45,56,54,46,51,50,54,50,53,50,44,51,53,46,57,56,53,48,48,56,93,44,91,45,56,54,46,49,53,51,50,49,52,44,51,53,46,57,53,52,51,57,57,93,44,91,45,56,54,46,48,49,52,56,52,57,44,51,53,46,57,54,49,48,54,93,44,91,45,56,54,46,48,53,57,55,48,54,44,51,54,46,48,56,54,48,50,52,93,44,91,45,56,54,46,49,51,54,56,48,51,44,51,54,46,50,57,53,56,53,57,93,44,91,45,56,54,46,50,56,51,50,53,54,44,51,54,46,51,52,55,53,93,44,91,45,56,54,46,52,53,49,55,50,49,44,51,54,46,51,51,53,54,50,57,93,44,91,45,56,54,46,53,57,52,50,56,54,44,51,54,46,50,52,53,49,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,67,97,109,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,49,57,56,50,56,44,51,50,46,57,56,50,56,56,54,93,44,91,45,57,52,46,57,50,55,55,50,55,44,51,51,46,48,55,48,51,48,52,93,44,91,45,57,53,46,49,50,54,49,51,44,51,51,46,48,51,52,53,56,49,93,44,91,45,57,53,46,49,53,50,50,48,54,44,51,51,46,48,49,51,52,53,93,44,91,45,57,53,46,49,53,50,49,49,44,51,50,46,57,48,50,54,52,49,93,44,91,45,57,52,46,55,49,57,57,52,50,44,51,50,46,57,48,52,53,48,50,93,44,91,45,57,52,46,56,49,57,56,50,56,44,51,50,46,57,56,50,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,50,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,49,51,57,48,55,50,44,51,52,46,49,52,49,56,55,93,44,91,45,57,56,46,48,56,52,52,51,53,44,51,52,46,48,48,50,56,57,51,93,44,91,45,57,55,46,57,52,54,56,48,50,44,51,51,46,57,57,48,56,57,51,93,44,91,45,57,55,46,57,55,55,56,54,44,51,51,46,56,56,57,56,50,53,93,44,91,45,57,55,46,56,55,55,51,56,55,44,51,51,46,56,53,48,50,51,54,93,44,91,45,57,55,46,54,54,49,52,56,57,44,51,51,46,57,57,48,56,49,56,93,44,91,45,57,55,46,53,54,48,56,53,56,44,51,51,46,56,57,57,54,52,53,93,44,91,45,57,55,46,53,54,48,55,54,49,44,51,52,46,48,55,49,49,53,93,44,91,45,57,55,46,53,54,50,53,49,50,44,51,52,46,50,56,57,49,56,51,93,44,91,45,57,56,46,49,51,57,50,50,55,44,51,52,46,50,56,57,56,50,52,93,44,91,45,57,56,46,49,51,57,48,55,50,44,51,52,46,49,52,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,82,105,116,99,104,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,57,56,48,49,55,44,51,57,46,49,56,53,53,55,50,93,44,91,45,56,49,46,50,53,48,50,53,50,44,51,57,46,48,51,53,48,55,52,93,44,91,45,56,49,46,49,54,50,52,53,53,44,51,57,46,48,51,48,54,48,56,93,44,91,45,56,49,46,48,51,51,54,51,50,44,51,57,46,48,48,57,53,56,52,93,44,91,45,56,48,46,56,49,50,57,55,44,51,57,46,49,48,57,52,48,49,93,44,91,45,56,48,46,56,56,56,55,52,52,44,51,57,46,50,57,52,50,57,56,93,44,91,45,56,49,46,48,48,55,56,51,54,44,51,57,46,51,53,48,57,50,51,93,44,91,45,56,49,46,50,50,49,51,51,53,44,51,57,46,51,48,55,52,55,53,93,44,91,45,56,49,46,50,51,57,52,55,55,44,51,57,46,50,54,56,51,50,56,93,44,91,45,56,49,46,50,57,56,48,49,55,44,51,57,46,49,56,53,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,80,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,54,51,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,56,52,57,54,52,44,52,48,46,57,48,49,53,53,93,44,91,45,57,53,46,51,55,51,57,50,51,44,52,48,46,53,56,48,53,48,51,93,44,91,45,57,53,46,50,48,50,50,54,53,44,52,48,46,53,55,56,52,56,56,93,44,91,45,57,52,46,57,49,52,56,57,54,44,52,48,46,53,55,53,48,54,56,93,44,91,45,57,52,46,57,50,56,52,53,57,44,52,48,46,57,48,48,54,53,51,93,44,91,45,57,53,46,51,56,52,57,54,52,44,52,48,46,57,48,49,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,56,56,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,55,48,51,53,49,44,51,57,46,52,49,57,48,53,93,44,91,45,57,53,46,53,56,57,52,55,50,44,51,57,46,50,49,54,48,56,49,93,44,91,45,57,53,46,53,57,54,55,53,57,44,51,57,46,48,54,52,54,55,50,93,44,91,45,57,53,46,53,48,48,50,53,52,44,51,57,46,48,53,54,54,53,54,93,44,91,45,57,53,46,49,56,55,49,48,51,44,51,57,46,48,52,52,49,48,57,93,44,91,45,57,53,46,49,56,48,56,57,49,44,51,57,46,52,49,57,50,49,56,93,44,91,45,57,53,46,53,55,48,51,53,49,44,51,57,46,52,49,57,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,73,98,101,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,54,57,49,44,34,98,101,100,115,34,58,49,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,54,52,52,53,56,44,51,48,46,48,51,54,57,49,56,93,44,91,45,57,49,46,57,57,48,51,57,54,44,50,57,46,57,55,48,51,50,54,93,44,91,45,57,49,46,57,55,57,57,48,56,44,50,57,46,54,53,48,49,50,56,93,44,91,45,57,50,46,48,52,53,54,49,54,44,50,57,46,53,48,53,56,48,54,93,44,91,45,57,49,46,56,52,48,57,51,52,44,50,57,46,51,54,48,49,57,93,44,91,45,57,49,46,53,57,49,56,54,52,44,50,57,46,51,53,57,51,55,53,93,44,91,45,57,49,46,53,57,49,51,44,50,57,46,53,48,55,55,48,49,93,44,91,45,57,49,46,55,50,51,50,53,52,44,50,57,46,54,54,49,50,57,55,93,44,91,45,57,49,46,57,51,53,49,54,50,44,50,57,46,54,55,50,53,55,56,93,44,91,45,57,49,46,55,49,49,49,52,57,44,50,57,46,56,52,54,48,54,53,93,44,91,45,57,49,46,54,50,52,55,48,57,44,50,57,46,57,52,53,50,55,53,93,44,91,45,57,49,46,52,55,49,57,53,49,44,50,57,46,57,53,53,57,56,57,93,44,91,45,57,49,46,50,53,53,50,50,57,44,50,57,46,57,55,49,52,53,55,93,44,91,45,57,49,46,50,50,52,51,53,54,44,51,48,46,48,50,53,51,51,54,93,44,91,45,57,49,46,51,54,56,56,51,53,44,51,48,46,48,53,56,56,50,52,93,44,91,45,57,49,46,54,48,48,51,53,52,44,51,48,46,48,51,51,49,54,57,93,44,91,45,57,49,46,54,53,56,56,56,54,44,51,48,46,49,48,56,50,50,54,93,44,91,45,57,49,46,55,54,53,49,54,56,44,51,48,46,49,48,56,52,57,53,93,44,91,45,57,49,46,56,49,57,50,49,54,44,51,48,46,48,52,52,48,49,51,93,44,91,45,57,49,46,57,53,48,57,57,56,44,51,48,46,48,55,51,50,49,51,93,44,91,45,57,49,46,57,54,52,52,53,56,44,51,48,46,48,51,54,57,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,53,56,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,56,34,44,34,78,65,77,69,34,58,34,75,117,115,105,108,118,97,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,54,50,46,54,55,49,56,49,51,44,54,51,46,51,49,50,56,50,53,93,44,91,45,49,54,50,46,56,55,48,56,54,49,44,54,51,46,50,53,51,53,53,57,93,44,91,45,49,54,51,46,49,49,56,55,48,50,44,54,51,46,49,48,49,53,53,56,93,44,91,45,49,54,51,46,50,53,50,52,55,57,44,54,51,46,48,57,50,52,53,52,93,44,91,45,49,54,51,46,54,53,56,49,48,49,44,54,51,46,50,52,57,55,49,55,93,44,91,45,49,54,52,46,48,53,49,50,53,54,44,54,51,46,51,49,55,51,53,53,93,44,91,45,49,54,52,46,52,57,53,54,55,51,44,54,51,46,50,53,49,49,53,57,93,44,91,45,49,54,52,46,57,48,54,55,51,54,44,54,51,46,48,52,52,56,57,53,93,44,91,45,49,54,52,46,56,57,53,53,51,51,44,54,50,46,57,52,56,54,51,54,93,44,91,45,49,54,53,46,50,50,49,56,56,56,44,54,50,46,55,50,50,52,54,54,93,44,91,45,49,54,53,46,52,52,56,56,55,44,54,50,46,51,57,49,48,50,50,93,44,91,45,49,54,53,46,55,51,57,53,54,54,44,54,50,46,50,48,52,56,53,50,93,44,91,45,49,54,54,46,48,52,57,50,49,51,44,54,50,46,49,48,56,48,50,50,93,44,91,45,49,54,54,46,49,49,50,53,49,52,44,54,49,46,56,55,51,49,52,52,93,44,91,45,49,54,54,46,49,57,55,55,54,51,44,54,49,46,56,51,52,50,55,51,93,44,91,45,49,54,54,46,50,56,56,54,49,51,44,54,49,46,53,56,48,56,48,57,93,44,91,45,49,54,54,46,49,57,52,52,57,44,54,49,46,52,53,57,56,54,55,93,44,91,45,49,54,53,46,55,56,54,56,56,49,44,54,49,46,49,57,56,49,49,53,93,44,91,45,49,54,53,46,54,54,51,54,53,44,54,49,46,48,53,55,56,48,57,93,44,91,45,49,54,53,46,52,49,54,54,55,44,54,49,46,48,49,50,52,56,93,44,91,45,49,54,53,46,50,53,52,49,54,50,44,54,48,46,57,49,55,49,48,56,93,44,91,45,49,54,53,46,48,48,48,53,49,52,44,54,48,46,57,54,51,54,51,53,93,44,91,45,49,54,52,46,54,49,54,53,56,53,44,54,48,46,57,55,57,48,52,57,93,44,91,45,49,54,52,46,53,50,57,57,49,49,44,54,48,46,57,52,48,55,57,54,93,44,91,45,49,54,52,46,50,51,57,55,50,55,44,54,48,46,57,56,55,49,49,57,93,44,91,45,49,54,52,46,50,49,49,55,56,49,44,54,49,46,48,56,50,50,54,50,93,44,91,45,49,54,51,46,57,50,48,56,55,52,44,54,49,46,50,49,48,54,57,50,93,44,91,45,49,54,51,46,57,56,53,49,51,56,44,54,49,46,51,55,50,48,48,51,93,44,91,45,49,54,51,46,54,53,53,51,57,44,54,49,46,51,51,53,56,50,55,93,44,91,45,49,54,51,46,52,50,56,56,54,54,44,54,49,46,52,54,50,50,56,93,44,91,45,49,54,51,46,49,55,49,51,53,52,44,54,49,46,52,52,57,48,55,49,93,44,91,45,49,54,50,46,53,48,53,55,54,49,44,54,49,46,53,53,54,52,50,54,93,44,91,45,49,54,50,46,48,49,51,52,51,56,44,54,49,46,52,55,55,48,53,55,93,44,91,45,49,54,49,46,52,52,57,54,49,49,44,54,49,46,53,54,56,56,51,56,93,44,91,45,49,54,49,46,49,50,54,56,49,50,44,54,49,46,53,57,57,53,52,93,44,91,45,49,54,48,46,55,55,53,50,52,52,44,54,49,46,55,51,56,53,50,55,93,44,91,45,49,54,48,46,51,53,48,49,52,44,54,49,46,56,49,57,48,55,49,93,44,91,45,49,54,48,46,53,51,52,54,55,49,44,54,49,46,57,52,53,57,52,93,44,91,45,49,54,48,46,57,49,53,57,53,51,44,54,49,46,57,52,53,57,52,51,93,44,91,45,49,54,48,46,57,49,53,57,54,52,44,54,50,46,50,48,53,56,54,54,93,44,91,45,49,54,49,46,48,52,56,49,54,53,44,54,50,46,50,48,53,56,54,57,93,44,91,45,49,54,49,46,48,52,56,49,55,54,44,54,50,46,53,53,50,52,49,93,44,91,45,49,54,48,46,57,57,54,50,48,49,44,54,50,46,53,53,50,52,50,52,93,44,91,45,49,54,48,46,57,57,54,50,49,53,44,54,50,46,56,57,56,57,51,54,93,44,91,45,49,54,48,46,56,53,55,57,57,44,54,51,46,48,49,49,57,53,51,93,44,91,45,49,54,50,46,48,48,49,55,54,57,44,54,51,46,48,49,49,57,49,57,93,44,91,45,49,54,50,46,48,48,49,55,57,56,44,54,51,46,48,57,56,53,51,54,93,44,91,45,49,54,50,46,51,56,51,48,56,50,44,54,51,46,50,55,49,56,49,54,93,44,91,45,49,54,50,46,54,55,49,56,49,51,44,54,51,46,51,49,50,56,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,79,110,115,108,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,51,57,49,50,44,34,98,101,100,115,34,58,51,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,55,52,56,48,53,44,51,52,46,57,55,51,57,93,44,91,45,55,55,46,54,53,49,48,52,53,44,51,52,46,57,50,51,51,52,49,93,44,91,45,55,55,46,54,56,48,49,50,55,44,51,52,46,55,50,48,53,57,53,93,44,91,45,55,55,46,53,55,52,57,50,52,44,51,52,46,52,55,56,54,56,49,93,44,91,45,55,55,46,52,56,52,53,51,56,44,51,52,46,51,57,57,55,48,53,93,44,91,45,55,55,46,49,49,55,49,57,56,44,51,52,46,53,56,52,51,54,55,93,44,91,45,55,55,46,48,57,54,57,55,50,44,51,52,46,54,55,50,52,48,49,93,44,91,45,55,55,46,49,54,53,57,56,54,44,51,52,46,55,56,53,48,51,50,93,44,91,45,55,55,46,50,54,55,52,51,51,44,51,52,46,57,50,53,53,51,55,93,44,91,45,55,55,46,51,54,54,55,54,56,44,51,52,46,57,48,56,54,53,93,44,91,45,55,55,46,53,48,50,55,55,49,44,51,52,46,57,54,57,54,51,53,93,44,91,45,55,55,46,54,55,52,56,48,53,44,51,52,46,57,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,70,97,114,105,98,97,117,108,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,57,54,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,52,55,49,50,51,44,52,51,46,56,52,55,57,52,54,93,44,91,45,57,52,46,50,52,55,57,54,56,44,52,51,46,53,48,48,49,51,51,93,44,91,45,57,51,46,57,55,48,55,54,50,44,52,51,46,52,57,57,56,56,54,93,44,91,45,57,51,46,54,52,56,53,51,51,44,52,51,46,52,57,57,54,56,93,44,91,45,57,51,46,54,52,56,50,57,44,52,51,46,56,52,56,49,51,57,93,44,91,45,57,51,46,55,54,55,55,54,49,44,52,51,46,56,52,55,57,53,54,93,44,91,45,57,52,46,50,52,55,49,50,51,44,52,51,46,56,52,55,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,71,114,97,105,110,103,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,54,55,52,48,56,44,51,54,46,51,52,52,51,56,49,93,44,91,45,56,51,46,55,51,50,55,48,52,44,51,54,46,49,54,52,53,56,51,93,44,91,45,56,51,46,54,54,55,52,54,44,51,54,46,48,56,48,53,56,55,93,44,91,45,56,51,46,53,57,55,55,54,54,44,51,54,46,49,54,52,49,56,50,93,44,91,45,56,51,46,52,54,55,48,57,55,44,51,54,46,49,55,52,54,56,56,93,44,91,45,56,51,46,51,53,53,49,57,54,44,51,54,46,50,56,50,53,57,93,44,91,45,56,51,46,50,53,53,50,57,50,44,51,54,46,50,56,57,48,57,50,93,44,91,45,56,51,46,50,56,48,53,57,53,44,51,54,46,51,57,52,54,56,57,93,44,91,45,56,51,46,51,56,54,56,44,51,54,46,52,49,51,49,56,54,93,44,91,45,56,51,46,52,54,54,48,48,50,44,51,54,46,51,54,57,49,56,54,93,44,91,45,56,51,46,54,54,55,52,48,56,44,51,54,46,51,52,52,51,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,70,114,101,101,115,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,48,57,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,57,54,55,49,51,44,51,49,46,55,57,54,49,57,49,93,44,91,45,57,54,46,50,51,54,54,50,57,44,51,49,46,52,49,51,51,57,50,93,44,91,45,57,53,46,55,56,55,51,44,51,49,46,54,49,56,51,56,53,93,44,91,45,57,53,46,56,55,53,57,51,55,44,51,49,46,55,53,53,53,48,51,93,44,91,45,57,53,46,57,56,51,52,52,57,44,51,49,46,55,56,57,57,55,57,93,44,91,45,57,54,46,48,53,50,55,56,54,44,51,50,46,48,48,53,56,57,53,93,44,91,45,57,54,46,48,53,52,55,56,44,51,50,46,48,49,50,53,50,54,93,44,91,45,57,54,46,52,57,54,55,49,51,44,51,49,46,55,57,54,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,105,102,102,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,51,54,50,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,56,49,51,51,52,44,52,48,46,55,50,57,55,53,56,93,44,91,45,55,55,46,54,56,55,48,56,44,52,48,46,54,55,54,55,53,93,44,91,45,55,55,46,56,52,49,56,50,55,44,52,48,46,53,53,48,48,51,53,93,44,91,45,55,55,46,56,49,54,53,49,51,44,52,48,46,53,48,48,48,55,52,93,44,91,45,55,55,46,57,49,51,56,52,52,44,52,48,46,51,57,56,54,55,57,93,44,91,45,55,55,46,55,53,50,49,50,44,52,48,46,51,55,56,53,52,53,93,44,91,45,55,55,46,52,57,55,53,48,54,44,52,48,46,53,56,49,55,52,93,44,91,45,55,55,46,50,56,55,57,52,49,44,52,48,46,54,57,51,53,57,53,93,44,91,45,55,55,46,51,53,54,54,50,56,44,52,48,46,56,48,55,51,51,52,93,44,91,45,55,55,46,51,54,52,49,56,44,52,48,46,56,52,54,57,51,55,93,44,91,45,55,55,46,54,56,49,51,51,52,44,52,48,46,55,50,57,55,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,114,101,110,115,104,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,54,53,44,34,98,101,100,115,34,58,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,52,56,49,57,56,44,51,49,46,57,54,52,54,50,57,93,44,91,45,56,54,46,52,52,56,54,51,53,44,51,49,46,54,53,53,54,49,55,93,44,91,45,56,54,46,52,57,57,50,49,51,44,51,49,46,53,50,53,51,51,49,93,44,91,45,56,54,46,51,57,56,53,51,54,44,51,49,46,52,53,49,51,50,53,93,44,91,45,56,54,46,49,57,51,57,53,49,44,51,49,46,52,52,48,48,55,50,93,44,91,45,56,54,46,49,52,53,56,57,53,44,51,49,46,54,49,55,55,52,49,93,44,91,45,56,54,46,49,52,56,51,51,57,44,51,49,46,55,57,48,57,53,49,93,44,91,45,56,54,46,49,57,49,51,55,57,44,51,49,46,57,54,54,52,53,51,93,44,91,45,56,54,46,51,48,50,50,49,55,44,51,49,46,57,54,53,48,54,53,93,44,91,45,56,54,46,52,48,54,50,55,54,44,51,50,46,48,53,48,55,51,49,93,44,91,45,56,54,46,52,52,56,49,57,56,44,51,49,46,57,54,52,54,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,50,48,34,44,34,78,65,77,69,34,58,34,66,114,105,115,116,111,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,50,49,57,54,52,44,51,54,46,54,52,54,57,51,54,93,44,91,45,56,50,46,50,52,51,51,56,50,44,51,54,46,53,57,53,54,53,49,93,44,91,45,56,50,46,49,52,53,53,55,51,44,51,54,46,53,57,52,55,50,53,93,44,91,45,56,50,46,49,50,49,57,54,52,44,51,54,46,54,52,54,57,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,57,57,34,44,34,78,65,77,69,34,58,34,82,117,110,110,101,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,49,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,49,50,51,52,44,51,49,46,53,56,48,50,54,55,93,44,91,45,57,57,46,55,50,49,54,57,56,44,51,49,46,53,55,54,55,53,57,93,44,91,45,57,57,46,55,49,51,57,55,49,44,51,50,46,48,56,50,48,56,57,93,44,91,45,49,48,48,46,49,53,49,57,49,49,44,51,50,46,48,56,50,54,51,56,93,44,91,45,49,48,48,46,50,51,53,49,51,55,44,51,50,46,48,56,50,51,55,50,93,44,91,45,49,48,48,46,50,51,53,55,54,49,44,51,49,46,54,57,50,57,55,93,44,91,45,49,48,48,46,50,51,52,54,51,54,44,51,49,46,53,56,55,49,52,55,93,44,91,45,49,48,48,46,49,49,49,50,51,52,44,51,49,46,53,56,48,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,52,51,34,44,34,78,65,77,69,34,58,34,84,101,114,114,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,51,50,48,56,49,57,44,50,57,46,56,55,56,57,51,51,93,44,91,45,49,48,50,46,49,49,54,55,50,51,44,50,57,46,55,57,51,48,51,56,93,44,91,45,49,48,49,46,55,54,48,57,50,52,44,50,57,46,55,56,49,56,48,50,93,44,91,45,49,48,49,46,55,53,56,52,44,51,48,46,50,56,56,48,52,52,93,44,91,45,49,48,49,46,54,53,56,53,51,44,51,48,46,51,53,55,56,54,49,93,44,91,45,49,48,49,46,55,52,48,52,50,57,44,51,48,46,52,50,48,56,57,55,93,44,91,45,49,48,49,46,54,52,54,53,48,54,44,51,48,46,53,53,49,49,49,50,93,44,91,45,49,48,49,46,54,54,57,56,51,51,44,51,48,46,54,51,55,57,48,55,93,44,91,45,49,48,49,46,55,54,56,52,50,44,51,48,46,54,53,51,48,55,55,93,44,91,45,49,48,50,46,49,51,55,55,55,56,44,51,48,46,54,53,53,57,56,50,93,44,91,45,49,48,50,46,49,51,56,52,48,54,44,51,48,46,53,57,55,53,50,49,93,44,91,45,49,48,50,46,51,52,50,57,56,54,44,51,48,46,53,57,56,55,53,57,93,44,91,45,49,48,50,46,51,52,51,48,56,53,44,51,48,46,50,56,52,49,49,54,93,44,91,45,49,48,50,46,53,54,54,57,51,55,44,51,48,46,50,56,51,50,54,57,93,44,91,45,49,48,50,46,53,54,55,48,52,57,44,51,48,46,48,53,50,56,48,56,93,44,91,45,49,48,50,46,51,50,48,56,49,57,44,50,57,46,56,55,56,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,82,97,119,108,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,57,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,53,56,56,51,44,52,48,46,48,48,50,51,48,50,93,44,91,45,49,48,49,46,51,50,53,53,49,52,44,52,48,46,48,48,50,55,48,50,93,44,91,45,49,48,49,46,52,49,49,48,50,57,44,52,48,46,48,48,50,53,50,50,93,44,91,45,49,48,49,46,52,49,51,57,49,51,44,51,57,46,53,54,56,51,54,49,93,44,91,45,49,48,49,46,51,56,57,48,54,56,44,51,57,46,53,54,56,51,54,57,93,44,91,45,49,48,48,46,55,52,48,56,55,51,44,51,57,46,53,54,56,48,52,51,93,44,91,45,49,48,48,46,55,51,56,56,50,53,44,52,48,46,48,48,50,49,49,54,93,44,91,45,49,48,48,46,55,53,56,56,51,44,52,48,46,48,48,50,51,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,84,104,111,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,51,56,57,48,54,56,44,51,57,46,53,54,56,51,54,57,93,44,91,45,49,48,49,46,51,57,49,55,49,55,44,51,57,46,49,51,53,49,49,55,93,44,91,45,49,48,48,46,56,49,49,56,53,56,44,51,57,46,49,51,51,51,54,93,44,91,45,49,48,48,46,55,50,49,50,57,54,44,51,57,46,49,51,51,51,56,49,93,44,91,45,49,48,48,46,55,50,48,50,49,51,44,51,57,46,53,54,56,48,51,52,93,44,91,45,49,48,48,46,55,52,48,56,55,51,44,51,57,46,53,54,56,48,52,51,93,44,91,45,49,48,49,46,51,56,57,48,54,56,44,51,57,46,53,54,56,51,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,32,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,57,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,52,53,54,53,57,44,51,49,46,57,49,56,56,56,51,93,44,91,45,56,50,46,56,51,54,51,54,54,44,51,49,46,56,49,54,49,53,52,93,44,91,45,56,50,46,56,51,54,54,51,51,44,51,49,46,54,55,49,51,57,56,93,44,91,45,56,50,46,54,50,55,51,52,50,44,51,49,46,54,55,50,54,55,50,93,44,91,45,56,50,46,53,50,49,52,50,44,51,49,46,55,49,48,55,57,54,93,44,91,45,56,50,46,53,50,48,50,53,49,44,51,49,46,56,51,56,51,56,56,93,44,91,45,56,50,46,52,51,49,51,54,50,44,51,49,46,56,51,55,57,57,51,93,44,91,45,56,50,46,52,51,49,53,51,49,44,51,49,46,57,54,54,49,56,50,93,44,91,45,56,50,46,52,56,51,49,51,49,44,51,49,46,57,54,56,57,54,49,93,44,91,45,56,50,46,53,52,51,54,53,53,44,51,49,46,57,53,56,57,49,52,93,44,91,45,56,50,46,54,52,53,54,53,57,44,51,49,46,57,49,56,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,54,56,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,53,57,51,55,55,44,52,50,46,57,48,57,48,57,55,93,44,91,45,57,53,46,56,53,57,57,52,57,44,52,50,46,53,54,48,54,50,93,44,91,45,57,53,46,55,52,49,54,49,49,44,52,50,46,53,54,49,50,56,53,93,44,91,45,57,53,46,51,56,56,48,49,44,52,50,46,53,54,49,55,52,50,93,44,91,45,57,53,46,51,56,56,49,56,50,44,52,50,46,57,48,57,56,57,55,93,44,91,45,57,53,46,56,53,57,51,55,55,44,52,50,46,57,48,57,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,56,48,52,44,34,98,101,100,115,34,58,52,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,57,51,57,53,56,44,51,53,46,53,51,52,49,49,52,93,44,91,45,57,49,46,56,53,49,57,53,56,44,51,53,46,51,53,56,50,56,55,93,44,91,45,57,50,46,49,49,49,52,54,51,44,51,53,46,51,54,50,55,50,53,93,44,91,45,57,50,46,49,49,57,55,49,57,44,51,53,46,48,54,54,52,57,51,93,44,91,45,57,49,46,56,48,50,53,48,53,44,51,53,46,48,51,48,52,50,53,93,44,91,45,57,49,46,53,56,52,48,48,53,44,51,53,46,48,57,49,53,56,52,93,44,91,45,57,49,46,52,54,53,49,49,52,44,51,53,46,48,56,57,52,53,52,93,44,91,45,57,49,46,51,55,57,55,49,57,44,51,53,46,50,49,53,49,52,57,93,44,91,45,57,49,46,52,51,48,56,56,52,44,51,53,46,51,55,49,53,54,54,93,44,91,45,57,49,46,51,52,55,50,53,55,44,51,53,46,52,51,57,49,48,54,93,44,91,45,57,49,46,53,56,52,54,56,55,44,51,53,46,52,52,50,51,49,49,93,44,91,45,57,49,46,53,56,49,56,56,44,51,53,46,53,51,48,52,52,55,93,44,91,45,57,49,46,55,57,51,57,53,56,44,51,53,46,53,51,52,49,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,101,102,108,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,56,48,52,44,34,98,101,100,115,34,58,50,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,53,49,54,52,51,44,51,51,46,56,49,49,51,57,93,44,91,45,57,48,46,52,53,51,50,51,51,44,51,51,46,51,50,57,52,56,52,93,44,91,45,57,48,46,51,51,49,53,56,57,44,51,51,46,51,48,50,56,50,53,93,44,91,45,57,48,46,50,57,53,48,50,57,44,51,51,46,51,54,49,55,56,52,93,44,91,45,57,48,46,49,55,52,54,49,52,44,51,51,46,51,51,51,51,55,56,93,44,91,45,57,48,46,49,48,49,52,48,49,44,51,51,46,52,53,56,57,52,93,44,91,45,57,48,46,49,50,55,55,55,53,44,51,51,46,54,55,54,57,53,54,93,44,91,45,57,48,46,49,51,54,55,56,55,44,51,51,46,55,50,49,54,52,56,93,44,91,45,57,48,46,49,56,50,53,56,52,44,51,51,46,56,48,57,51,50,50,93,44,91,45,57,48,46,52,53,49,54,52,51,44,51,51,46,56,49,49,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,67,111,111,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,53,48,52,53,51,44,51,56,46,57,50,56,50,52,52,93,44,91,45,57,51,46,48,53,57,57,55,52,44,51,56,46,54,57,51,48,55,55,93,44,91,45,57,50,46,56,51,57,56,51,55,44,51,56,46,54,56,51,57,55,52,93,44,91,45,57,50,46,54,49,55,49,52,55,44,51,56,46,54,56,48,48,49,51,93,44,91,45,57,50,46,52,57,56,51,55,55,44,51,56,46,57,50,50,48,56,52,93,44,91,45,57,50,46,53,53,56,48,56,54,44,51,56,46,57,55,48,54,57,50,93,44,91,45,57,50,46,56,52,49,54,49,55,44,51,56,46,57,55,57,56,50,49,93,44,91,45,57,50,46,57,51,52,53,54,57,44,51,57,46,48,54,52,53,52,55,93,44,91,45,57,51,46,48,53,48,52,53,51,44,51,56,46,57,50,56,50,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,105,99,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,55,48,44,34,98,101,100,115,34,58,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,49,55,52,48,55,44,52,54,46,50,52,54,54,49,56,93,44,91,45,56,56,46,49,49,54,56,52,53,44,52,53,46,57,50,49,54,50,55,93,44,91,45,56,56,46,48,53,56,50,53,51,44,52,53,46,55,56,48,54,50,57,93,44,91,45,56,55,46,56,52,54,54,48,50,44,52,53,46,55,50,50,53,52,52,93,44,91,45,56,55,46,54,57,55,49,53,57,44,52,53,46,55,50,50,57,54,93,44,91,45,56,55,46,54,57,54,57,52,54,44,52,53,46,56,57,56,56,52,50,93,44,91,45,56,55,46,54,49,55,48,57,49,44,52,53,46,57,56,54,48,49,52,93,44,91,45,56,55,46,54,49,53,53,57,55,44,52,54,46,50,52,54,54,53,51,93,44,91,45,56,56,46,49,49,55,52,48,55,44,52,54,46,50,52,54,54,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,87,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,54,57,55,44,34,98,101,100,115,34,58,49,48,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,54,49,50,55,53,44,52,49,46,55,50,52,54,53,54,93,44,91,45,56,56,46,50,53,50,50,51,49,44,52,49,46,52,54,51,48,54,54,93,44,91,45,56,56,46,50,52,52,49,52,52,44,52,49,46,50,48,49,53,54,54,93,44,91,45,56,56,46,48,49,49,56,49,44,52,49,46,50,48,53,53,48,56,93,44,91,45,56,56,46,48,49,51,57,49,57,44,52,49,46,50,57,50,52,52,55,93,44,91,45,56,55,46,53,50,54,55,51,49,44,52,49,46,50,57,56,48,53,50,93,44,91,45,56,55,46,53,50,53,55,48,53,44,52,49,46,52,55,48,50,56,51,93,44,91,45,56,55,46,55,57,48,51,48,51,44,52,49,46,52,54,57,56,52,54,93,44,91,45,56,55,46,55,57,50,55,57,51,44,52,49,46,53,53,56,53,52,93,44,91,45,56,56,46,48,50,56,57,55,51,44,52,49,46,54,56,53,50,52,50,93,44,91,45,56,56,46,50,54,49,50,55,53,44,52,49,46,55,50,52,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,68,101,97,102,32,83,109,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,57,57,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,53,50,53,49,56,52,44,51,52,46,55,52,54,57,51,49,93,44,91,45,49,48,50,46,49,54,56,56,51,57,44,51,52,46,55,52,55,52,49,55,93,44,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,44,91,45,49,48,51,46,48,52,50,53,49,49,44,51,53,46,49,56,51,49,53,55,93,44,91,45,49,48,51,46,48,52,50,55,48,49,44,51,52,46,57,53,52,49,52,50,93,44,91,45,49,48,51,46,48,52,50,57,56,50,44,51,52,46,55,52,55,51,54,49,93,44,91,45,49,48,50,46,53,50,53,49,56,52,44,51,52,46,55,52,54,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,114,111,111,107,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,50,51,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,50,56,48,50,52,44,52,52,46,53,52,51,49,50,54,93,44,91,45,57,55,46,49,50,57,54,55,49,44,52,52,46,49,57,53,57,51,51,93,44,91,45,57,54,46,56,56,57,50,49,54,44,52,52,46,49,57,53,55,48,53,93,44,91,45,57,54,46,52,53,50,55,55,51,44,52,52,46,49,57,54,55,56,93,44,91,45,57,54,46,52,53,49,56,50,44,52,52,46,53,52,51,54,53,50,93,44,91,45,57,54,46,56,56,53,53,48,52,44,52,52,46,53,52,51,55,55,51,93,44,91,45,57,55,46,49,50,56,48,50,52,44,52,52,46,53,52,51,49,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,57,49,54,52,44,34,98,101,100,115,34,58,56,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,48,56,49,57,44,51,57,46,52,53,54,49,53,53,93,44,91,45,57,52,46,54,48,49,55,51,51,44,51,57,46,49,53,57,54,48,51,93,44,91,45,57,52,46,54,48,55,51,53,52,44,51,57,46,49,49,51,52,52,52,93,44,91,45,57,52,46,52,54,49,53,57,44,51,57,46,49,50,48,51,55,50,93,44,91,45,57,52,46,50,56,57,56,55,51,44,51,57,46,50,51,55,49,48,55,93,44,91,45,57,52,46,50,49,50,53,49,53,44,51,57,46,50,48,55,48,56,54,93,44,91,45,57,52,46,50,49,48,54,52,50,44,51,57,46,52,53,52,54,56,50,93,44,91,45,57,52,46,54,48,48,56,49,57,44,51,57,46,52,53,54,49,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,111,97,104,111,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,48,50,44,34,98,101,100,115,34,58,49,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,54,57,51,52,55,44,51,52,46,53,50,52,56,54,55,93,44,91,45,57,48,46,53,56,48,54,56,49,44,51,52,46,52,49,48,53,53,49,93,44,91,45,57,48,46,56,51,51,51,51,53,44,51,52,46,50,54,52,50,54,52,93,44,91,45,57,48,46,57,53,53,57,55,52,44,51,52,46,49,50,48,49,50,53,93,44,91,45,57,48,46,54,53,57,52,53,55,44,51,52,46,49,49,56,56,54,55,93,44,91,45,57,48,46,54,53,55,48,48,50,44,51,51,46,57,56,55,53,56,54,93,44,91,45,57,48,46,52,53,49,48,49,50,44,51,51,46,57,56,53,54,56,57,93,44,91,45,57,48,46,52,53,48,57,56,49,44,51,52,46,48,55,50,57,51,50,93,44,91,45,57,48,46,52,53,48,53,55,50,44,51,52,46,50,54,50,52,48,50,93,44,91,45,57,48,46,51,57,57,52,57,56,44,51,52,46,52,50,51,56,48,55,93,44,91,45,57,48,46,53,54,57,51,52,55,44,51,52,46,53,50,52,56,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,51,50,49,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,52,50,51,54,53,44,52,48,46,49,56,48,55,55,56,93,44,91,45,56,54,46,54,57,53,56,48,52,44,52,48,46,49,55,56,54,53,55,93,44,91,45,56,54,46,54,57,53,48,55,49,44,51,57,46,57,50,50,55,55,93,44,91,45,56,54,46,51,50,54,50,57,51,44,51,57,46,57,50,52,48,50,57,93,44,91,45,56,54,46,50,51,57,55,51,57,44,51,57,46,57,50,54,48,53,53,93,44,91,45,56,54,46,50,52,50,51,54,53,44,52,48,46,49,56,48,55,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,68,101,115,32,77,111,105,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,48,48,44,34,98,101,100,115,34,58,50,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,55,48,55,49,44,52,49,46,48,55,52,49,49,50,93,44,91,45,57,49,46,52,48,57,52,53,51,44,52,48,46,56,49,50,57,48,53,93,44,91,45,57,49,46,49,49,50,52,54,55,44,52,48,46,54,57,54,51,48,49,93,44,91,45,57,49,46,48,57,54,57,52,54,44,52,48,46,56,49,49,52,48,51,93,44,91,45,57,48,46,57,54,50,57,49,54,44,52,48,46,57,50,52,57,53,55,93,44,91,45,57,48,46,57,52,56,57,56,57,44,52,49,46,48,55,48,50,53,93,44,91,45,57,48,46,57,52,57,51,56,49,44,52,49,46,48,55,50,55,49,93,44,91,45,57,49,46,51,55,48,55,49,44,52,49,46,48,55,52,49,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,50,56,56,44,34,98,101,100,115,34,58,54,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,54,53,54,50,44,52,49,46,55,50,56,57,50,56,93,44,91,45,57,48,46,53,51,55,54,49,54,44,52,49,46,55,55,54,51,57,53,93,44,91,45,57,48,46,55,48,50,49,52,50,44,52,49,46,55,51,55,55,50,56,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,49,46,55,55,49,51,57,50,93,44,91,45,57,48,46,56,57,57,56,53,51,44,52,49,46,53,57,55,49,51,51,93,44,91,45,57,48,46,55,56,51,56,49,50,44,52,49,46,53,57,54,53,51,49,93,44,91,45,57,48,46,55,56,54,50,56,50,44,52,49,46,52,53,50,56,56,56,93,44,91,45,57,48,46,52,54,49,52,51,50,44,52,49,46,53,50,51,53,51,51,93,44,91,45,57,48,46,51,52,51,50,50,56,44,52,49,46,53,56,55,56,51,51,93,44,91,45,57,48,46,51,49,54,53,54,50,44,52,49,46,55,50,56,57,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,79,116,116,97,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,50,57,55,52,54,44,51,57,46,50,49,57,50,55,51,93,44,91,45,57,55,46,57,50,56,53,54,44,51,56,46,57,53,56,51,57,53,93,44,91,45,57,55,46,51,55,49,54,49,52,44,51,56,46,57,53,55,56,53,50,93,44,91,45,57,55,46,51,55,49,49,53,52,44,51,57,46,49,51,49,57,54,49,93,44,91,45,57,55,46,51,54,57,56,51,57,44,51,57,46,51,48,54,48,49,49,93,44,91,45,57,55,46,57,50,57,48,57,55,44,51,57,46,51,48,54,51,57,55,93,44,91,45,57,55,46,57,50,57,55,52,54,44,51,57,46,50,49,57,50,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,48,53,44,34,98,101,100,115,34,58,52,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,56,57,53,51,57,44,51,48,46,53,57,55,55,51,52,93,44,91,45,56,50,46,55,50,54,53,56,51,44,51,48,46,53,53,57,52,56,54,93,44,91,45,56,50,46,54,52,53,53,53,53,44,51,48,46,52,48,54,52,49,55,93,44,91,45,56,50,46,55,49,55,55,55,51,44,51,48,46,51,50,49,51,57,49,93,44,91,45,56,50,46,55,57,52,53,57,52,44,51,48,46,51,51,55,48,50,52,93,44,91,45,56,50,46,56,48,48,52,55,55,44,50,57,46,57,51,50,49,50,54,93,44,91,45,56,50,46,54,53,56,53,53,52,44,50,57,46,56,51,48,49,52,52,93,44,91,45,56,50,46,53,50,57,55,48,53,44,50,57,46,57,52,48,56,56,49,93,44,91,45,56,50,46,53,54,57,50,56,44,50,57,46,57,55,52,57,56,93,44,91,45,56,50,46,52,53,56,51,54,52,44,51,48,46,49,51,54,52,52,57,93,44,91,45,56,50,46,52,53,57,55,57,51,44,51,48,46,53,56,52,50,54,55,93,44,91,45,56,50,46,53,56,52,48,48,55,44,51,48,46,53,57,49,53,52,56,93,44,91,45,56,50,46,54,56,57,53,51,57,44,51,48,46,53,57,55,55,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,111,108,109,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,51,48,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,57,55,57,57,50,44,51,48,46,57,57,54,57,51,49,93,44,91,45,56,54,46,48,51,53,48,51,57,44,51,48,46,57,57,51,51,50,93,44,91,45,56,54,46,48,51,55,53,57,49,44,51,48,46,55,48,52,53,55,50,93,44,91,45,56,53,46,56,52,52,52,50,49,44,51,48,46,55,48,51,49,51,93,44,91,45,56,53,46,54,49,57,48,49,49,44,51,48,46,55,52,51,56,54,56,93,44,91,45,56,53,46,53,57,57,57,51,52,44,51,48,46,56,51,48,53,53,50,93,44,91,45,56,53,46,52,57,55,57,57,50,44,51,48,46,57,57,54,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,54,50,54,44,34,98,101,100,115,34,58,49,48,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,56,52,53,51,51,44,51,48,46,54,55,55,50,57,50,93,44,91,45,56,57,46,50,52,48,48,55,51,44,51,48,46,54,55,55,49,54,93,44,91,45,56,57,46,51,52,49,52,52,54,44,51,48,46,54,52,55,55,50,93,44,91,45,56,57,46,51,52,48,56,52,55,44,51,48,46,51,53,55,57,57,53,93,44,91,45,56,57,46,51,48,54,49,51,53,44,51,48,46,49,55,55,57,52,49,93,44,91,45,56,57,46,49,56,51,54,54,57,44,51,48,46,50,49,50,49,53,53,93,44,91,45,56,57,46,48,57,54,52,55,54,44,51,48,46,49,54,53,56,50,57,93,44,91,45,56,56,46,56,56,57,48,51,44,51,48,46,49,51,57,56,52,53,93,44,91,45,56,56,46,55,57,53,49,52,55,44,51,48,46,49,57,57,57,57,52,93,44,91,45,56,56,46,55,57,53,50,56,55,44,51,48,46,51,53,48,51,54,49,93,44,91,45,56,56,46,56,56,51,49,51,44,51,48,46,52,49,56,55,57,56,93,44,91,45,56,56,46,56,56,52,53,51,51,44,51,48,46,54,55,55,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,85,116,117,97,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,52,48,50,44,34,98,101,100,115,34,58,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,56,50,54,49,50,56,44,49,56,46,51,50,51,51,56,50,93,44,91,45,54,54,46,56,49,55,50,55,49,44,49,56,46,50,51,48,51,51,54,93,44,91,45,54,54,46,54,57,50,53,55,50,44,49,56,46,50,49,53,56,56,51,93,44,91,45,54,54,46,54,55,48,52,57,52,44,49,56,46,49,53,50,56,51,49,93,44,91,45,54,54,46,54,52,57,52,54,55,44,49,56,46,49,53,56,56,53,55,93,44,91,45,54,54,46,53,54,54,54,50,44,49,56,46,50,57,56,53,52,57,93,44,91,45,54,54,46,54,48,54,57,56,57,44,49,56,46,51,50,56,49,56,54,93,44,91,45,54,54,46,55,55,48,48,55,50,44,49,56,46,51,50,53,48,49,51,93,44,91,45,54,54,46,56,50,54,49,50,56,44,49,56,46,51,50,51,51,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,114,97,100,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,53,53,55,44,34,98,101,100,115,34,58,50,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,52,54,51,51,57,44,51,53,46,50,56,55,55,49,55,93,44,91,45,56,53,46,48,50,51,54,44,51,53,46,49,50,53,48,55,51,93,44,91,45,56,52,46,57,55,54,57,55,54,44,51,52,46,57,56,55,54,54,52,93,44,91,45,56,52,46,56,49,48,52,55,55,44,51,52,46,57,56,55,54,48,53,93,44,91,45,56,52,46,55,55,53,56,53,51,44,51,52,46,57,56,55,56,56,52,93,44,91,45,56,52,46,54,57,57,57,51,55,44,51,53,46,49,55,48,57,55,52,93,44,91,45,56,52,46,55,48,51,54,48,55,44,51,53,46,50,52,49,48,52,51,93,44,91,45,56,52,46,56,54,48,49,54,52,44,51,53,46,51,53,48,48,55,52,93,44,91,45,56,52,46,57,52,54,51,51,57,44,51,53,46,50,56,55,55,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,114,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,52,48,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,54,49,53,50,57,44,52,54,46,55,54,54,53,53,93,44,91,45,57,51,46,48,53,52,56,52,55,44,52,54,46,52,49,57,50,54,57,93,44,91,45,57,50,46,50,57,50,56,54,44,52,54,46,52,49,55,50,50,93,44,91,45,57,50,46,50,57,50,50,52,50,44,52,54,46,54,54,51,51,49,56,93,44,91,45,57,50,46,51,48,49,54,55,54,44,52,54,46,55,54,52,49,51,52,93,44,91,45,57,51,46,48,54,49,53,50,57,44,52,54,46,55,54,54,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,56,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,48,50,49,52,44,51,50,46,55,57,51,48,56,56,93,44,91,45,57,52,46,53,48,55,51,50,51,44,51,50,46,54,57,51,55,51,56,93,44,91,45,57,52,46,51,57,48,55,56,51,44,51,50,46,54,57,52,51,55,55,93,44,91,45,57,52,46,50,56,51,48,50,56,44,51,50,46,55,52,54,55,50,57,93,44,91,45,57,52,46,49,55,50,49,51,54,44,51,50,46,54,57,54,57,93,44,91,45,57,52,46,48,52,51,49,52,55,44,51,50,46,54,57,51,48,51,93,44,91,45,57,52,46,48,52,51,48,55,56,44,51,50,46,56,56,49,48,56,57,93,44,91,45,57,52,46,54,53,51,57,57,52,44,51,50,46,56,55,57,53,48,54,93,44,91,45,57,52,46,55,48,53,56,55,56,44,51,50,46,56,55,57,49,55,55,93,44,91,45,57,52,46,55,48,50,49,52,44,51,50,46,55,57,51,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,83,99,104,111,104,97,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,51,54,52,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,54,52,56,50,57,56,44,52,50,46,56,50,57,53,53,56,93,44,91,45,55,52,46,54,51,48,54,51,49,44,52,50,46,54,50,54,54,55,52,93,44,91,45,55,52,46,55,49,49,53,56,44,52,50,46,53,49,55,55,57,57,93,44,91,45,55,52,46,54,49,56,56,57,53,44,52,50,46,52,50,52,51,56,57,93,44,91,45,55,52,46,52,52,51,53,48,54,44,52,50,46,51,53,53,48,49,55,93,44,91,45,55,52,46,50,53,52,51,48,51,44,52,50,46,52,48,56,50,48,55,93,44,91,45,55,52,46,49,56,48,50,55,52,44,52,50,46,55,50,57,57,55,57,93,44,91,45,55,52,46,50,54,51,51,49,52,44,52,50,46,55,57,54,53,51,52,93,44,91,45,55,52,46,52,53,52,57,49,49,44,52,50,46,55,55,50,57,55,57,93,44,91,45,55,52,46,54,52,56,50,57,56,44,52,50,46,56,50,57,53,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,80,97,119,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,50,56,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,54,56,50,56,55,44,51,54,46,49,54,49,57,56,93,44,91,45,57,54,46,52,51,51,56,49,50,44,51,54,46,50,56,53,56,56,57,93,44,91,45,57,54,46,53,49,53,50,50,57,44,51,54,46,50,57,56,51,51,50,93,44,91,45,57,54,46,54,51,53,55,50,55,44,51,54,46,52,50,53,57,48,56,93,44,91,45,57,54,46,55,49,48,55,54,57,44,51,54,46,52,51,55,54,53,54,93,44,91,45,57,54,46,55,51,55,50,51,57,44,51,54,46,53,53,48,48,56,56,93,44,91,45,57,54,46,57,52,48,50,51,53,44,51,54,46,52,53,53,53,50,53,93,44,91,45,57,55,46,48,48,57,55,56,53,44,51,54,46,53,48,54,57,51,53,93,44,91,45,57,55,46,48,51,50,49,48,54,44,51,54,46,51,51,51,51,53,52,93,44,91,45,57,54,46,57,50,53,48,54,57,44,51,54,46,50,52,54,52,55,52,93,44,91,45,57,54,46,56,49,57,48,48,53,44,51,54,46,49,53,56,56,56,54,93,44,91,45,57,54,46,54,50,50,49,50,44,51,54,46,49,53,57,57,48,51,93,44,91,45,57,54,46,50,57,55,56,56,56,44,51,54,46,49,54,50,50,55,57,93,44,91,45,57,54,46,50,54,56,50,56,55,44,51,54,46,49,54,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,114,111,111,109,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,52,48,50,44,34,98,101,100,115,34,58,53,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,54,52,48,50,44,52,50,46,52,49,53,55,48,50,93,44,91,45,55,54,46,49,51,48,49,56,49,44,52,50,46,52,49,48,51,51,55,93,44,91,45,55,54,46,48,56,49,49,51,52,44,52,50,46,50,51,48,52,57,53,93,44,91,45,55,54,46,49,49,54,50,50,53,44,52,50,46,49,56,53,54,49,93,44,91,45,55,54,46,49,48,53,56,52,44,52,49,46,57,57,56,56,53,56,93,44,91,45,55,53,46,52,56,51,49,52,57,44,52,49,46,57,57,57,50,49,52,93,44,91,45,55,53,46,51,53,57,53,55,57,44,52,49,46,57,57,57,52,52,53,93,44,91,45,55,53,46,52,50,49,55,55,54,44,52,50,46,48,52,50,48,51,93,44,91,45,55,53,46,52,49,56,52,50,49,44,52,50,46,49,57,53,48,51,50,93,44,91,45,55,53,46,54,51,55,49,49,44,52,50,46,49,57,53,54,50,56,93,44,91,45,55,53,46,54,51,56,50,57,57,44,52,50,46,50,52,56,54,56,54,93,44,91,45,55,53,46,56,52,51,55,57,50,44,52,50,46,50,53,57,55,48,55,93,44,91,45,55,53,46,56,54,52,48,50,44,52,50,46,52,49,53,55,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,49,34,44,34,78,65,77,69,34,58,34,76,105,98,101,114,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,56,54,50,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,57,54,55,48,56,44,51,48,46,49,54,55,50,49,52,93,44,91,45,57,52,46,57,56,49,52,54,44,50,57,46,56,56,52,50,55,54,93,44,91,45,57,52,46,52,52,50,50,51,53,44,50,57,46,56,56,57,53,51,56,93,44,91,45,57,52,46,52,52,52,57,49,44,51,48,46,49,49,51,48,49,53,93,44,91,45,57,52,46,53,57,54,51,51,56,44,51,48,46,49,49,50,49,48,49,93,44,91,45,57,52,46,55,51,50,55,51,50,44,51,48,46,52,57,48,48,54,54,93,44,91,45,57,52,46,56,52,57,52,49,52,44,51,48,46,52,57,51,53,53,51,93,44,91,45,57,53,46,49,54,53,56,57,55,44,51,48,46,51,52,52,57,55,54,93,44,91,45,57,53,46,48,57,54,55,48,56,44,51,48,46,49,54,55,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,116,104,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,57,51,54,44,34,98,101,100,115,34,58,49,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,56,57,54,54,51,44,51,57,46,51,56,52,49,57,53,93,44,91,45,56,50,46,50,54,56,53,56,51,44,51,57,46,50,48,51,55,54,93,44,91,45,56,49,46,55,53,54,48,56,44,51,57,46,49,56,48,53,54,93,44,91,45,56,49,46,55,50,53,54,50,50,44,51,57,46,50,49,53,57,48,53,93,44,91,45,56,49,46,56,53,51,54,54,56,44,51,57,46,51,49,56,49,54,53,93,44,91,45,56,49,46,56,52,52,56,54,51,44,51,57,46,52,53,48,50,49,54,93,44,91,45,56,50,46,48,53,53,55,55,57,44,51,57,46,52,54,48,48,53,51,93,44,91,45,56,50,46,48,52,55,53,50,56,44,51,57,46,53,53,48,56,50,53,93,44,91,45,56,50,46,49,53,57,49,54,49,44,51,57,46,53,53,54,53,55,52,93,44,91,45,56,50,46,49,54,55,51,55,57,44,51,57,46,52,54,54,51,48,55,93,44,91,45,56,50,46,50,56,48,52,49,44,51,57,46,52,55,50,57,48,54,93,44,91,45,56,50,46,50,56,57,54,54,51,44,51,57,46,51,56,52,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,56,56,54,44,34,98,101,100,115,34,58,50,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,52,49,57,49,49,44,52,48,46,52,50,52,55,93,44,91,45,56,48,46,56,54,53,53,48,52,44,52,48,46,52,50,50,57,50,57,93,44,91,45,56,48,46,56,56,50,56,57,50,44,52,48,46,49,53,57,52,57,53,93,44,91,45,56,48,46,55,48,50,55,53,44,52,48,46,49,53,55,50,52,57,93,44,91,45,56,48,46,54,56,49,56,49,49,44,52,48,46,49,56,53,53,54,51,93,44,91,45,56,48,46,53,57,57,56,57,53,44,52,48,46,51,49,55,54,54,54,93,44,91,45,56,48,46,54,50,57,54,56,52,44,52,48,46,51,57,52,57,55,56,93,44,91,45,56,48,46,53,57,52,54,54,52,44,52,48,46,52,55,49,51,56,57,93,44,91,45,56,48,46,54,54,55,57,53,55,44,52,48,46,53,56,50,52,57,54,93,44,91,45,56,48,46,56,54,49,57,57,52,44,52,48,46,53,57,57,52,48,52,93,44,91,45,56,48,46,57,50,48,57,50,44,52,48,46,53,53,54,51,49,53,93,44,91,45,56,48,46,57,52,49,57,49,49,44,52,48,46,52,50,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,54,53,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,50,53,48,57,50,44,51,57,46,49,49,53,56,48,51,93,44,91,45,55,57,46,56,57,54,48,57,52,44,51,56,46,57,55,51,52,48,52,93,44,91,45,56,48,46,48,56,53,48,54,50,44,51,56,46,57,52,55,50,51,54,93,44,91,45,56,48,46,49,50,54,49,48,53,44,51,56,46,55,52,53,56,51,54,93,44,91,45,56,48,46,50,56,48,48,53,57,44,51,56,46,54,57,52,56,54,55,93,44,91,45,56,48,46,49,56,51,57,51,49,44,51,56,46,53,50,53,51,56,54,93,44,91,45,56,48,46,50,52,53,53,49,56,44,51,56,46,51,56,56,52,53,55,93,44,91,45,56,48,46,49,49,54,57,50,44,51,56,46,52,55,51,57,53,51,93,44,91,45,56,48,46,48,50,57,50,48,56,44,51,56,46,52,53,57,49,56,52,93,44,91,45,55,57,46,56,54,51,50,53,44,51,56,46,53,53,48,56,50,93,44,91,45,55,57,46,55,57,56,50,56,51,44,51,56,46,55,48,51,50,49,49,93,44,91,45,55,57,46,54,50,54,55,55,52,44,51,56,46,54,54,52,50,49,52,93,44,91,45,55,57,46,53,49,48,48,55,51,44,51,56,46,55,56,48,55,49,50,93,44,91,45,55,57,46,53,51,57,48,55,53,44,51,56,46,56,52,49,52,49,49,93,44,91,45,55,57,46,52,53,53,52,55,50,44,51,56,46,57,50,57,57,49,93,44,91,45,55,57,46,51,52,57,56,54,55,44,51,56,46,57,53,55,53,48,57,93,44,91,45,55,57,46,51,53,55,54,54,54,44,51,56,46,57,54,52,53,48,57,93,44,91,45,55,57,46,53,48,56,55,54,53,44,51,56,46,57,55,53,49,55,51,93,44,91,45,55,57,46,55,56,53,54,56,53,44,51,57,46,48,51,55,52,48,52,93,44,91,45,55,57,46,56,50,53,48,57,50,44,51,57,46,49,49,53,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,52,57,55,44,34,98,101,100,115,34,58,50,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,52,57,52,48,56,53,44,51,57,46,52,54,57,53,57,57,93,44,91,45,56,48,46,49,57,55,50,56,54,44,51,57,46,51,57,51,49,56,54,93,44,91,45,56,48,46,48,50,53,48,48,49,44,51,57,46,52,48,49,52,52,54,93,44,91,45,55,57,46,57,51,56,56,55,56,44,51,57,46,52,53,50,52,54,53,93,44,91,45,56,48,46,49,53,51,53,51,50,44,51,57,46,54,49,48,52,50,54,93,44,91,45,56,48,46,51,57,53,56,49,44,51,57,46,54,51,55,51,52,55,93,44,91,45,56,48,46,52,57,56,49,53,56,44,51,57,46,53,54,50,56,57,57,93,44,91,45,56,48,46,52,57,52,48,56,53,44,51,57,46,52,54,57,53,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,52,48,48,44,34,98,101,100,115,34,58,51,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,48,54,49,56,53,52,44,51,57,46,53,54,56,55,52,54,93,44,91,45,55,53,46,48,56,51,56,50,51,44,51,57,46,52,53,55,51,53,52,93,44,91,45,55,53,46,50,51,56,52,51,52,44,51,57,46,53,53,57,48,51,57,93,44,91,45,55,53,46,52,52,52,55,53,49,44,51,57,46,51,53,53,48,56,57,93,44,91,45,55,53,46,51,50,49,48,50,49,44,51,57,46,50,53,49,51,55,57,93,44,91,45,55,53,46,49,54,56,52,54,50,44,51,57,46,48,53,54,49,55,57,93,44,91,45,55,52,46,57,49,53,54,56,57,44,51,57,46,49,55,53,55,53,53,93,44,91,45,55,52,46,56,54,49,50,57,52,44,51,57,46,51,50,51,56,49,53,93,44,91,45,55,52,46,56,53,53,57,55,56,44,51,57,46,52,50,52,50,51,56,93,44,91,45,55,52,46,57,56,53,50,55,49,44,51,57,46,53,49,52,57,54,55,93,44,91,45,55,53,46,48,54,49,56,53,52,44,51,57,46,53,54,56,55,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,48,57,50,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,48,51,55,55,51,44,51,57,46,52,52,53,48,53,54,93,44,91,45,49,50,48,46,53,48,53,52,52,53,44,51,57,46,52,52,54,49,49,55,93,44,91,45,49,50,48,46,53,55,55,49,56,56,44,51,57,46,53,50,51,49,52,52,93,44,91,45,49,50,48,46,55,53,53,55,50,57,44,51,57,46,52,53,50,54,54,51,93,44,91,45,49,50,49,46,48,50,50,48,56,53,44,51,57,46,51,57,49,53,53,56,93,44,91,45,49,50,49,46,49,50,50,51,49,53,44,51,57,46,51,55,56,56,50,54,93,44,91,45,49,50,49,46,50,54,54,57,49,49,44,51,57,46,50,55,49,54,48,57,93,44,91,45,49,50,49,46,50,55,57,53,51,51,44,51,57,46,48,51,52,54,49,56,93,44,91,45,49,50,49,46,48,52,49,54,48,56,44,51,57,46,48,49,51,55,57,49,93,44,91,45,49,50,48,46,57,54,54,48,56,44,51,57,46,49,50,55,57,50,56,93,44,91,45,49,50,48,46,55,50,55,56,57,51,44,51,57,46,50,56,56,48,56,49,93,44,91,45,49,50,48,46,54,52,53,55,57,53,44,51,57,46,51,49,53,49,53,53,93,44,91,45,49,50,48,46,48,48,54,51,50,51,44,51,57,46,51,49,54,52,57,54,93,44,91,45,49,50,48,46,48,48,51,55,55,51,44,51,57,46,52,52,53,48,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,52,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,57,54,51,51,44,52,54,46,55,57,52,56,51,56,93,44,91,45,57,50,46,48,50,48,50,57,52,44,52,54,46,55,48,52,48,52,49,93,44,91,45,57,50,46,48,56,57,52,57,51,44,52,54,46,55,52,57,50,51,55,93,44,91,45,57,50,46,50,49,50,51,57,50,44,52,54,46,54,52,57,57,52,49,93,44,91,45,57,50,46,50,57,50,50,52,50,44,52,54,46,54,54,51,51,49,56,93,44,91,45,57,50,46,50,57,50,56,54,44,52,54,46,52,49,55,50,50,93,44,91,45,57,50,46,50,57,51,55,48,53,44,52,54,46,49,53,55,51,50,49,93,44,91,45,57,50,46,48,52,57,54,51,54,44,52,54,46,49,53,55,53,57,55,93,44,91,45,57,49,46,53,53,49,50,56,50,44,52,54,46,49,53,55,48,52,53,93,44,91,45,57,49,46,53,52,57,51,56,53,44,52,54,46,56,57,51,50,49,51,93,44,91,45,57,49,46,55,57,54,51,51,44,52,54,46,55,57,52,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,49,52,53,44,34,98,101,100,115,34,58,50,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,50,48,55,49,50,44,51,55,46,50,51,56,51,50,56,93,44,91,45,56,52,46,57,48,49,49,49,50,44,51,55,46,49,49,54,50,57,55,93,44,91,45,56,52,46,56,51,53,55,49,50,44,51,54,46,57,57,55,54,49,50,93,44,91,45,56,52,46,54,55,57,49,54,53,44,51,54,46,57,56,48,57,49,52,93,44,91,45,56,52,46,53,55,56,49,53,56,44,51,54,46,56,54,55,49,51,51,93,44,91,45,56,52,46,51,53,56,48,50,52,44,51,54,46,57,53,57,52,93,44,91,45,56,52,46,50,56,57,48,55,54,44,51,55,46,49,53,49,55,52,93,44,91,45,56,52,46,53,48,50,57,51,50,44,51,55,46,51,50,56,56,48,49,93,44,91,45,56,52,46,53,53,54,52,54,49,44,51,55,46,51,53,53,55,50,57,93,44,91,45,56,52,46,55,50,48,55,49,50,44,51,55,46,50,51,56,51,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,69,100,103,101,99,111,109,98,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,51,51,50,44,34,98,101,100,115,34,58,49,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,57,55,57,53,54,44,51,54,46,49,53,51,49,53,93,44,91,45,55,55,46,56,50,56,52,52,52,44,51,53,46,56,54,55,50,48,56,93,44,91,45,55,55,46,55,53,49,51,51,57,44,51,53,46,56,50,55,55,57,52,93,44,91,45,55,55,46,54,54,53,49,51,49,44,51,53,46,54,55,52,57,51,53,93,44,91,45,55,55,46,51,57,48,49,53,52,44,51,53,46,56,51,51,48,54,50,93,44,91,45,55,55,46,51,53,48,51,54,57,44,51,53,46,56,49,57,50,50,56,93,44,91,45,55,55,46,51,52,50,52,49,56,44,51,53,46,57,48,53,50,54,50,93,44,91,45,55,55,46,52,48,50,54,49,52,44,51,54,46,48,48,52,57,54,54,93,44,91,45,55,55,46,53,51,51,49,54,49,44,51,54,46,48,57,48,54,53,57,93,44,91,45,55,55,46,54,57,55,57,53,54,44,51,54,46,49,53,51,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,49,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,48,52,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,53,55,56,49,54,44,51,49,46,48,51,51,51,50,53,93,44,91,45,57,52,46,50,53,50,50,57,56,44,51,49,46,48,49,56,57,51,49,93,44,91,45,57,52,46,49,50,53,56,50,52,44,51,48,46,54,56,52,48,53,50,93,44,91,45,57,52,46,48,53,48,57,54,44,51,48,46,54,51,56,53,54,56,93,44,91,45,57,52,46,48,55,49,54,56,57,44,51,48,46,53,50,54,48,51,51,93,44,91,45,57,52,46,49,49,54,52,54,54,44,51,48,46,52,51,50,54,57,49,93,44,91,45,57,52,46,48,56,50,57,50,44,51,48,46,51,52,53,54,53,52,93,44,91,45,57,52,46,49,49,55,54,48,52,44,51,48,46,50,52,49,54,54,53,93,44,91,45,57,51,46,57,48,49,52,53,50,44,51,48,46,50,52,50,54,55,50,93,44,91,45,57,51,46,56,54,53,55,49,49,44,51,48,46,57,52,55,50,49,56,93,44,91,45,57,51,46,57,49,49,49,50,54,44,51,49,46,49,53,56,48,55,49,93,44,91,45,57,52,46,48,51,57,48,51,52,44,51,49,46,49,51,52,50,55,49,93,44,91,45,57,52,46,49,50,57,54,51,50,44,51,49,46,48,57,57,50,56,93,44,91,45,57,52,46,52,53,55,56,49,54,44,51,49,46,48,51,51,51,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,101,97,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,52,51,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,48,52,57,57,55,56,44,51,56,46,49,52,56,55,54,51,93,44,91,45,49,49,51,46,52,55,49,54,44,51,56,46,49,52,56,54,54,53,93,44,91,45,49,49,50,46,52,55,56,54,56,44,51,56,46,49,52,55,52,49,57,93,44,91,45,49,49,50,46,52,52,52,50,49,52,44,51,56,46,49,53,48,48,48,49,93,44,91,45,49,49,50,46,51,51,53,53,49,44,51,56,46,51,51,50,51,52,52,93,44,91,45,49,49,50,46,52,52,52,48,56,49,44,51,56,46,52,48,53,54,52,54,93,44,91,45,49,49,50,46,53,49,56,52,57,53,44,51,56,46,53,49,48,52,49,51,93,44,91,45,49,49,50,46,53,49,53,51,57,52,44,51,56,46,53,55,50,56,52,53,93,44,91,45,49,49,52,46,48,52,57,57,55,55,44,51,56,46,53,55,50,57,55,52,93,44,91,45,49,49,52,46,48,52,57,57,55,56,44,51,56,46,49,52,56,55,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,51,34,44,34,78,65,77,69,34,58,34,77,117,114,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,53,53,55,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,49,48,52,55,55,44,51,52,46,57,56,55,54,48,53,93,44,91,45,56,52,46,56,49,56,55,49,53,44,51,52,46,56,55,54,57,53,93,44,91,45,56,52,46,57,50,52,57,48,57,44,51,52,46,55,49,53,57,55,49,93,44,91,45,56,52,46,57,49,51,52,53,54,44,51,52,46,54,51,52,49,50,56,93,44,91,45,56,52,46,54,53,52,53,50,51,44,51,52,46,53,56,51,49,56,55,93,44,91,45,56,52,46,54,53,55,48,57,56,44,51,52,46,55,50,56,57,48,53,93,44,91,45,56,52,46,54,49,56,54,51,55,44,51,52,46,56,53,53,51,57,56,93,44,91,45,56,52,46,54,50,49,52,56,51,44,51,52,46,57,56,56,51,50,57,93,44,91,45,56,52,46,55,55,53,56,53,51,44,51,52,46,57,56,55,56,56,52,93,44,91,45,56,52,46,56,49,48,52,55,55,44,51,52,46,57,56,55,54,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,74,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,57,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,48,49,49,52,54,44,52,48,46,53,54,55,50,52,50,93,44,91,45,56,53,46,50,49,57,57,48,49,44,52,48,46,51,55,57,48,51,52,93,44,91,45,56,53,46,50,49,56,55,53,56,44,52,48,46,51,48,54,55,48,54,93,44,91,45,56,52,46,56,48,51,54,55,50,44,52,48,46,51,49,48,48,57,51,93,44,91,45,56,52,46,56,48,51,56,57,52,44,52,48,46,51,53,50,55,53,56,93,44,91,45,56,52,46,56,48,50,52,55,55,44,52,48,46,53,55,50,50,49,51,93,44,91,45,56,53,46,48,54,56,52,55,57,44,52,48,46,53,54,56,50,52,93,44,91,45,56,53,46,50,48,49,49,52,54,44,52,48,46,53,54,55,50,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,99,97,108,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,50,48,57,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,54,50,53,51,56,44,52,51,46,50,57,52,50,55,49,93,44,91,45,56,53,46,51,49,50,51,55,54,44,52,51,46,50,57,52,50,48,53,93,44,91,45,56,53,46,51,49,50,53,49,51,44,52,51,46,49,49,56,55,57,51,93,44,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,44,91,45,56,52,46,56,52,53,57,54,50,44,52,51,46,52,54,54,49,53,56,93,44,91,45,56,53,46,48,56,52,57,57,54,44,52,51,46,52,54,54,49,57,93,44,91,45,56,53,46,53,54,50,51,52,56,44,52,51,46,52,54,56,49,51,93,44,91,45,56,53,46,53,54,50,53,51,56,44,52,51,46,50,57,52,50,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,82,101,110,115,115,101,108,97,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,52,51,49,44,34,98,101,100,115,34,58,50,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,50,55,52,50,57,52,44,52,50,46,57,52,51,54,53,50,93,44,91,45,55,51,46,54,51,53,52,54,51,44,52,50,46,57,52,49,50,57,93,44,91,45,55,51,46,54,55,54,55,54,50,44,52,50,46,55,56,51,50,55,55,93,44,91,45,55,51,46,55,54,49,50,54,53,44,52,50,46,54,49,48,51,55,57,93,44,91,45,55,51,46,55,56,51,55,50,49,44,52,50,46,52,54,52,50,51,49,93,44,91,45,55,51,46,51,53,50,52,50,57,44,52,50,46,53,49,48,48,49,55,93,44,91,45,55,51,46,50,54,52,56,50,55,44,52,50,46,55,52,53,56,53,49,93,44,91,45,55,51,46,50,55,52,50,57,52,44,52,50,46,57,52,51,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,111,108,108,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,57,50,50,44,34,98,101,100,115,34,58,55,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,48,53,53,48,49,44,50,54,46,51,51,48,48,56,56,93,44,91,45,56,49,46,56,53,48,51,52,44,50,54,46,48,54,50,56,55,50,93,44,91,45,56,49,46,55,49,56,49,51,57,44,50,53,46,55,57,51,48,51,51,93,44,91,45,56,49,46,53,55,48,57,54,55,44,50,53,46,56,48,50,48,51,57,93,44,91,45,56,48,46,56,55,51,48,57,54,44,50,53,46,56,48,53,51,55,55,93,44,91,45,56,48,46,56,55,50,57,51,50,44,50,53,46,57,55,57,52,51,52,93,44,91,45,56,48,46,56,55,57,56,48,57,44,50,54,46,50,53,57,52,53,53,93,44,91,45,56,49,46,50,54,56,53,53,44,50,54,46,50,53,51,48,52,53,93,44,91,45,56,49,46,50,55,49,55,54,56,44,50,54,46,53,49,55,48,54,57,93,44,91,45,56,49,46,53,54,51,55,54,51,44,50,54,46,53,49,51,51,50,52,93,44,91,45,56,49,46,53,54,50,49,56,44,50,54,46,52,50,50,54,50,53,93,44,91,45,56,49,46,54,53,57,53,48,54,44,50,54,46,52,50,49,48,55,55,93,44,91,45,56,49,46,54,53,55,57,44,50,54,46,51,49,55,53,54,51,93,44,91,45,56,49,46,57,48,53,53,48,49,44,50,54,46,51,51,48,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,77,99,75,105,110,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,56,52,57,44,34,98,101,100,115,34,58,49,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,54,48,54,55,44,51,54,46,48,48,50,55,48,49,93,44,91,45,49,48,57,46,48,52,53,57,57,54,44,51,52,46,57,53,57,56,49,57,93,44,91,45,49,48,56,46,52,54,57,52,48,50,44,51,52,46,57,53,57,48,56,49,93,44,91,45,49,48,56,46,52,54,56,55,49,53,44,51,53,46,51,48,54,54,53,56,93,44,91,45,49,48,55,46,51,48,57,51,56,54,44,51,53,46,51,48,53,54,56,55,93,44,91,45,49,48,55,46,51,48,56,54,54,55,44,51,53,46,57,57,56,53,53,54,93,44,91,45,49,48,55,46,54,50,54,53,49,49,44,51,54,46,48,48,48,50,56,56,93,44,91,45,49,48,57,46,48,52,54,48,54,55,44,51,54,46,48,48,50,55,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,101,110,32,72,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,53,52,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,53,51,54,51,52,44,51,49,46,55,53,55,56,54,49,93,44,91,45,56,51,46,51,50,53,50,57,54,44,51,49,46,55,53,54,53,56,52,93,44,91,45,56,51,46,51,50,53,54,49,55,44,51,49,46,54,56,48,54,48,51,93,44,91,45,56,50,46,57,57,56,51,54,44,51,49,46,54,55,51,49,54,52,93,44,91,45,56,50,46,57,57,53,54,57,56,44,51,49,46,55,56,48,57,56,51,93,44,91,45,56,51,46,49,55,55,52,54,57,44,51,49,46,56,52,55,56,53,55,93,44,91,45,56,51,46,52,56,48,49,55,54,44,51,49,46,56,52,55,51,49,50,93,44,91,45,56,51,46,52,53,51,54,51,52,44,51,49,46,55,53,55,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,57,57,57,54,49,44,51,52,46,56,54,55,49,50,93,44,91,45,57,49,46,49,48,50,53,52,50,44,51,52,46,55,51,52,56,54,52,93,44,91,45,57,49,46,48,53,49,57,49,56,44,51,52,46,54,52,53,55,50,49,93,44,91,45,57,48,46,53,56,51,50,50,52,44,51,52,46,54,52,49,51,56,57,93,44,91,45,57,48,46,53,49,55,49,54,56,44,51,52,46,54,51,48,57,50,56,93,44,91,45,57,48,46,52,48,55,57,57,49,44,51,52,46,56,51,50,57,55,93,44,91,45,57,48,46,52,48,56,53,52,44,51,52,46,57,48,52,49,50,49,93,44,91,45,57,49,46,48,57,57,50,48,49,44,51,52,46,57,49,49,55,57,54,93,44,91,45,57,49,46,48,57,57,57,54,49,44,51,52,46,56,54,55,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,97,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,55,56,53,44,34,98,101,100,115,34,58,49,49,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,52,57,57,53,56,44,51,48,46,51,54,50,52,55,50,93,44,91,45,56,50,46,49,55,48,49,57,55,44,51,48,46,51,53,56,57,55,50,93,44,91,45,56,50,46,50,49,48,55,51,51,44,51,48,46,52,50,53,54,52,93,44,91,45,56,50,46,50,49,52,54,55,55,44,51,48,46,53,54,56,53,53,54,93,44,91,45,56,50,46,52,49,56,57,49,52,44,51,48,46,53,56,49,55,54,55,93,44,91,45,56,50,46,52,53,57,55,57,51,44,51,48,46,53,56,52,50,54,55,93,44,91,45,56,50,46,52,53,56,51,54,52,44,51,48,46,49,51,54,52,52,57,93,44,91,45,56,50,46,49,52,50,53,55,56,44,51,48,46,49,52,51,49,49,55,93,44,91,45,56,50,46,48,52,57,52,50,53,44,51,48,46,49,52,51,49,51,54,93,44,91,45,56,50,46,48,52,57,52,49,49,44,51,48,46,49,56,54,57,51,51,93,44,91,45,56,50,46,48,52,57,50,51,54,44,51,48,46,50,55,51,52,51,50,93,44,91,45,56,50,46,48,52,57,57,53,56,44,51,48,46,51,54,50,52,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,76,97,110,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,54,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,57,55,57,55,49,44,51,49,46,48,50,53,52,48,53,93,44,91,45,56,51,46,49,55,57,52,54,53,44,51,48,46,57,53,48,49,50,56,93,44,91,45,56,51,46,48,52,50,57,50,52,44,51,48,46,57,52,55,50,57,54,93,44,91,45,56,51,46,48,49,57,52,49,57,44,51,48,46,56,52,57,52,53,51,93,44,91,45,56,50,46,57,55,49,51,51,54,44,51,48,46,56,54,57,51,57,50,93,44,91,45,56,50,46,57,55,49,50,52,55,44,51,49,46,49,56,51,57,56,56,93,44,91,45,56,51,46,48,52,54,56,56,53,44,51,49,46,49,56,51,54,56,93,44,91,45,56,51,46,49,54,53,48,55,50,44,51,49,46,49,52,55,49,57,56,93,44,91,45,56,51,46,49,57,55,57,55,49,44,51,49,46,48,50,53,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,82,105,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,54,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,56,48,51,55,55,44,51,56,46,53,50,49,56,52,49,93,44,91,45,57,56,46,52,55,57,56,52,49,44,51,56,46,50,54,48,55,57,93,44,91,45,57,56,46,52,55,50,55,57,52,44,51,56,46,49,55,50,55,53,55,93,44,91,45,57,55,46,57,50,50,49,51,54,44,51,56,46,49,55,51,55,49,51,93,44,91,45,57,55,46,57,50,52,50,54,57,44,51,56,46,53,50,50,55,53,53,93,44,91,45,57,56,46,52,56,48,51,55,55,44,51,56,46,53,50,49,56,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,48,57,56,44,34,98,101,100,115,34,58,52,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,51,56,57,55,53,44,51,51,46,57,54,56,52,54,93,44,91,45,56,53,46,56,56,49,55,54,56,44,51,51,46,57,53,48,50,57,57,93,44,91,45,56,54,46,48,54,53,50,55,50,44,51,51,46,56,52,50,49,57,56,93,44,91,45,56,54,46,48,52,51,57,57,51,44,51,51,46,55,54,51,53,57,53,93,44,91,45,56,54,46,49,52,53,53,54,50,44,51,51,46,54,55,57,48,57,56,93,44,91,45,56,54,46,48,53,48,54,54,57,44,51,51,46,54,55,52,53,57,93,44,91,45,56,53,46,57,57,52,57,51,53,44,51,51,46,53,56,54,52,55,53,93,44,91,45,56,53,46,55,57,54,48,53,52,44,51,51,46,53,53,54,50,50,93,44,91,45,56,53,46,54,51,56,53,55,57,44,51,51,46,54,52,56,52,49,51,93,44,91,45,56,53,46,54,48,49,56,53,56,44,51,51,46,56,56,57,55,53,93,44,91,45,56,53,46,53,51,48,48,57,52,44,51,51,46,57,52,49,52,50,51,93,44,91,45,56,53,46,55,51,56,57,55,53,44,51,51,46,57,54,56,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,48,49,52,44,34,98,101,100,115,34,58,52,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,56,52,53,51,51,44,51,48,46,54,55,55,50,57,50,93,44,91,45,56,56,46,56,56,51,49,51,44,51,48,46,52,49,56,55,57,56,93,44,91,45,56,56,46,55,57,53,50,56,55,44,51,48,46,51,53,48,51,54,49,93,44,91,45,56,56,46,55,57,53,49,52,55,44,51,48,46,49,57,57,57,57,52,93,44,91,45,56,56,46,52,54,49,50,56,51,44,51,48,46,49,52,54,54,56,54,93,44,91,45,56,56,46,51,56,52,52,51,49,44,51,48,46,49,53,56,53,52,51,93,44,91,45,56,56,46,52,49,50,54,49,50,44,51,48,46,55,51,53,53,57,93,44,91,45,56,56,46,56,56,52,53,51,52,44,51,48,46,55,51,53,53,57,49,93,44,91,45,56,56,46,56,56,52,53,51,51,44,51,48,46,54,55,55,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,97,109,112,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,50,54,55,44,34,98,101,100,115,34,58,51,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,48,54,49,54,49,44,51,57,46,48,57,53,49,55,55,93,44,91,45,56,52,46,52,50,55,50,56,53,44,51,56,46,57,56,48,56,54,51,93,44,91,45,56,52,46,52,49,56,49,48,55,44,51,56,46,56,48,54,53,57,54,93,44,91,45,56,52,46,50,51,49,57,49,55,44,51,56,46,56,55,52,56,54,54,93,44,91,45,56,52,46,51,49,57,57,56,53,44,51,57,46,48,50,49,53,51,52,93,44,91,45,56,52,46,53,48,54,49,54,49,44,51,57,46,48,57,53,49,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,57,54,50,49,52,44,51,54,46,56,49,56,48,51,57,93,44,91,45,56,53,46,52,51,54,52,52,50,44,51,54,46,54,49,56,54,53,53,93,44,91,45,56,53,46,50,57,54,48,48,50,44,51,54,46,54,50,53,55,49,56,93,44,91,45,56,53,46,50,49,53,52,48,53,44,51,54,46,56,53,52,52,54,55,93,44,91,45,56,53,46,50,51,50,48,50,54,44,51,54,46,57,50,53,48,54,57,93,44,91,45,56,53,46,52,53,49,56,51,44,51,54,46,57,51,56,49,51,56,93,44,91,45,56,53,46,53,57,54,50,49,52,44,51,54,46,56,49,56,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,80,97,110,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,50,52,51,44,34,98,101,100,115,34,58,49,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,50,49,51,52,49,44,51,52,46,53,53,52,50,55,52,93,44,91,45,57,48,46,49,57,56,54,51,49,44,51,52,46,53,53,52,52,50,53,93,44,91,45,57,48,46,49,57,56,53,51,54,44,51,52,46,53,49,49,48,56,56,93,44,91,45,57,48,46,49,57,52,48,56,54,44,51,52,46,51,48,49,52,48,55,93,44,91,45,57,48,46,49,51,53,52,53,54,44,51,52,46,49,54,48,48,55,52,93,44,91,45,56,57,46,57,51,49,52,56,53,44,51,52,46,49,54,52,51,48,51,93,44,91,45,56,57,46,55,50,49,48,53,44,51,52,46,49,57,50,53,52,53,93,44,91,45,56,57,46,55,50,49,51,52,49,44,51,52,46,53,53,52,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,72,97,110,115,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,55,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,51,57,49,53,44,51,54,46,52,57,57,53,50,56,93,44,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,44,91,45,49,48,49,46,48,56,53,55,51,53,44,51,54,46,48,53,53,50,55,54,93,44,91,45,49,48,49,46,48,56,53,55,49,54,44,51,54,46,48,53,55,53,55,50,93,44,91,45,49,48,49,46,48,56,53,49,53,54,44,51,54,46,52,57,57,50,52,52,93,44,91,45,49,48,49,46,54,50,51,57,49,53,44,51,54,46,52,57,57,53,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,67,104,97,109,98,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,50,57,50,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,56,49,52,54,44,50,57,46,56,56,52,50,55,54,93,44,91,45,57,52,46,57,48,56,54,53,52,44,50,57,46,56,50,53,49,56,49,93,44,91,45,57,52,46,57,49,57,54,55,49,44,50,57,46,54,56,56,52,53,52,93,44,91,45,57,53,46,48,48,49,54,52,50,44,50,57,46,54,54,52,51,56,56,93,44,91,45,57,53,46,48,49,56,50,48,53,44,50,57,46,53,53,52,53,57,55,93,44,91,45,57,52,46,57,49,52,51,57,55,44,50,57,46,52,57,54,53,48,53,93,44,91,45,57,52,46,51,55,49,54,50,44,50,57,46,53,57,55,50,48,57,93,44,91,45,57,52,46,51,54,57,51,54,49,44,50,57,46,53,48,48,54,50,93,44,91,45,57,52,46,51,53,52,56,56,44,50,57,46,53,48,54,51,50,56,93,44,91,45,57,52,46,51,53,55,57,55,54,44,50,57,46,56,56,55,52,54,52,93,44,91,45,57,52,46,52,52,50,50,51,53,44,50,57,46,56,56,57,53,51,56,93,44,91,45,57,52,46,57,56,49,52,54,44,50,57,46,56,56,52,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,57,34,44,34,78,65,77,69,34,58,34,81,117,105,116,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,54,56,50,51,44,51,49,46,57,57,49,56,53,55,93,44,91,45,56,53,46,49,52,49,49,51,44,51,49,46,55,56,48,52,54,51,93,44,91,45,56,52,46,57,53,56,54,52,44,51,49,46,55,55,55,56,53,52,93,44,91,45,56,52,46,57,48,55,48,48,54,44,51,49,46,57,50,52,52,54,53,93,44,91,45,56,53,46,48,54,56,50,51,44,51,49,46,57,57,49,56,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,55,49,54,56,57,44,51,48,46,53,50,54,48,51,51,93,44,91,45,57,52,46,53,52,53,55,49,55,44,51,48,46,53,50,54,57,55,55,93,44,91,45,57,52,46,55,51,50,55,51,50,44,51,48,46,52,57,48,48,54,54,93,44,91,45,57,52,46,53,57,54,51,51,56,44,51,48,46,49,49,50,49,48,49,93,44,91,45,57,52,46,52,52,52,57,49,44,51,48,46,49,49,51,48,49,53,93,44,91,45,57,52,46,50,57,50,54,50,57,44,51,48,46,49,49,55,54,55,49,93,44,91,45,57,52,46,50,48,51,55,48,57,44,51,48,46,49,56,56,56,49,57,93,44,91,45,57,52,46,49,49,53,57,49,55,44,51,48,46,49,54,48,51,52,55,93,44,91,45,57,52,46,49,49,55,54,48,52,44,51,48,46,50,52,49,54,54,53,93,44,91,45,57,52,46,48,56,50,57,50,44,51,48,46,51,52,53,54,53,52,93,44,91,45,57,52,46,49,49,54,52,54,54,44,51,48,46,52,51,50,54,57,49,93,44,91,45,57,52,46,48,55,49,54,56,57,44,51,48,46,53,50,54,48,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,76,105,116,99,104,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,48,51,49,44,34,98,101,100,115,34,58,49,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,52,56,55,51,49,57,44,52,50,46,48,52,57,53,50,53,93,44,91,45,55,51,46,53,49,56,48,56,44,52,49,46,54,54,54,55,50,51,93,44,91,45,55,51,46,52,52,49,52,54,54,44,52,49,46,52,57,49,50,57,52,93,44,91,45,55,51,46,51,49,48,52,55,51,44,52,49,46,52,54,56,56,49,53,93,44,91,45,55,51,46,49,53,53,52,57,50,44,52,49,46,53,49,52,51,48,52,93,44,91,45,55,50,46,57,56,51,50,53,44,52,49,46,54,51,57,53,57,56,93,44,91,45,55,51,46,48,49,54,54,55,53,44,52,49,46,55,57,56,49,56,51,93,44,91,45,55,50,46,56,56,55,48,54,44,52,49,46,57,55,51,49,50,49,93,44,91,45,55,51,46,48,48,56,55,54,54,44,52,50,46,48,51,56,55,56,53,93,44,91,45,55,51,46,48,53,51,50,56,56,44,52,50,46,48,51,57,56,54,53,93,44,91,45,55,51,46,52,56,55,51,49,57,44,52,50,46,48,52,57,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,83,97,110,100,117,115,107,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,50,57,57,44,34,98,101,100,115,34,58,50,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,49,52,54,50,54,44,52,49,46,53,48,48,50,50,56,93,44,91,45,56,51,46,52,49,57,56,52,51,44,52,49,46,50,53,52,48,48,51,93,44,91,45,56,50,46,56,52,48,48,56,55,44,52,49,46,50,53,53,51,51,55,93,44,91,45,56,50,46,56,52,49,52,55,53,44,52,49,46,50,57,48,48,50,51,93,44,91,45,56,50,46,56,52,55,55,49,51,44,52,49,46,52,51,48,51,50,54,93,44,91,45,56,50,46,57,53,50,50,50,52,44,52,49,46,52,53,56,50,51,57,93,44,91,45,56,51,46,51,51,56,49,57,54,44,52,49,46,52,53,55,53,48,56,93,44,91,45,56,51,46,52,49,52,54,50,54,44,52,49,46,53,48,48,50,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,80,105,115,99,97,116,97,113,117,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,56,55,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,57,46,55,50,49,49,48,57,44,52,54,46,53,55,52,48,53,51,93,44,91,45,54,57,46,55,50,56,53,55,55,44,52,53,46,57,55,54,56,56,50,93,44,91,45,54,57,46,55,48,52,50,54,53,44,52,53,46,56,52,54,49,51,54,93,44,91,45,54,57,46,55,56,53,50,53,55,44,52,53,46,54,57,50,55,56,93,44,91,45,54,57,46,55,48,49,54,56,56,44,52,53,46,54,50,55,57,56,50,93,44,91,45,54,57,46,55,55,57,57,50,56,44,52,53,46,53,52,50,55,54,54,93,44,91,45,54,57,46,54,50,48,57,54,55,44,52,53,46,48,49,48,57,53,54,93,44,91,45,54,57,46,51,53,53,54,54,55,44,52,53,46,48,55,51,52,54,57,93,44,91,45,54,56,46,56,53,54,53,56,55,44,52,53,46,49,52,50,55,56,51,93,44,91,45,54,56,46,55,55,54,48,54,49,44,52,53,46,50,52,48,51,49,55,93,44,91,45,54,56,46,56,53,55,50,57,55,44,52,53,46,53,50,55,51,48,49,93,44,91,45,54,56,46,57,54,52,54,53,51,44,52,53,46,53,49,50,51,54,55,93,44,91,45,54,56,46,57,53,56,57,49,44,52,53,46,54,54,50,49,57,53,93,44,91,45,54,56,46,56,50,55,48,51,57,44,52,53,46,54,56,52,56,50,54,93,44,91,45,54,56,46,56,49,57,52,48,49,44,52,54,46,51,57,53,55,56,50,93,44,91,45,54,56,46,56,50,49,52,49,52,44,52,54,46,53,55,50,53,49,93,44,91,45,54,57,46,55,50,49,49,48,57,44,52,54,46,53,55,52,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,50,56,55,53,55,44,51,55,46,51,48,50,56,52,56,93,44,91,45,56,57,46,48,52,52,55,57,57,44,51,55,46,51,50,57,55,49,55,93,44,91,45,56,57,46,50,52,56,53,54,54,44,51,55,46,51,51,53,50,57,56,93,44,91,45,56,57,46,50,55,51,54,51,49,44,51,55,46,49,50,54,57,54,56,93,44,91,45,56,57,46,49,55,50,48,56,49,44,51,55,46,48,54,56,51,49,93,44,91,45,56,57,46,48,50,57,56,54,54,44,51,55,46,50,49,49,48,54,53,93,44,91,45,56,56,46,57,51,51,52,48,49,44,51,55,46,50,50,52,57,57,49,93,44,91,45,56,56,46,57,50,55,56,57,44,51,55,46,50,50,54,51,52,50,93,44,91,45,56,56,46,57,50,56,55,53,55,44,51,55,46,51,48,50,56,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,79,107,102,117,115,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,50,51,54,57,57,44,51,53,46,52,48,48,55,50,50,93,44,91,45,57,54,46,52,52,53,53,56,52,44,51,53,46,52,53,56,55,55,49,93,44,91,45,57,54,46,52,52,49,51,54,56,44,51,53,46,50,57,48,49,50,50,93,44,91,45,57,53,46,57,56,49,53,49,49,44,51,53,46,50,56,57,55,56,93,44,91,45,57,53,46,57,56,49,52,54,53,44,51,53,46,51,55,54,55,56,56,93,44,91,45,57,54,46,48,56,55,53,51,44,51,53,46,51,55,54,56,55,55,93,44,91,45,57,54,46,48,56,55,55,55,55,44,51,53,46,53,53,50,48,48,51,93,44,91,45,57,54,46,49,57,50,53,54,51,44,51,53,46,54,51,57,48,56,55,93,44,91,45,57,54,46,54,50,48,56,50,56,44,51,53,46,54,51,57,48,48,53,93,44,91,45,57,54,46,54,50,52,54,56,49,44,51,53,46,52,54,50,55,48,55,93,44,91,45,57,54,46,54,50,51,54,57,57,44,51,53,46,52,48,48,55,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,83,97,103,105,110,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,55,55,56,44,34,98,101,100,115,34,58,56,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,57,56,55,54,44,52,51,46,52,54,54,48,52,52,93,44,91,45,56,52,46,51,54,55,56,57,49,44,52,51,46,49,50,56,52,53,50,93,44,91,45,56,51,46,57,50,57,48,55,57,44,52,51,46,49,51,50,55,56,50,93,44,91,45,56,51,46,57,51,50,48,55,49,44,52,51,46,50,50,48,51,55,55,93,44,91,45,56,51,46,54,57,53,54,50,49,44,52,51,46,50,50,49,52,50,50,93,44,91,45,56,51,46,54,57,56,56,49,54,44,52,51,46,52,55,56,57,53,55,93,44,91,45,56,51,46,56,49,55,50,50,56,44,52,51,46,53,50,50,51,52,53,93,44,91,45,56,52,46,48,53,48,57,56,55,44,52,51,46,53,50,52,48,54,52,93,44,91,45,56,52,46,49,54,56,49,50,55,44,52,51,46,53,54,56,56,57,57,93,44,91,45,56,52,46,49,55,48,53,55,54,44,52,51,46,52,56,49,57,54,57,93,44,91,45,56,52,46,51,54,57,56,55,54,44,52,51,46,52,54,54,48,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,82,105,111,32,65,114,114,105,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,51,48,55,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,55,54,48,57,44,51,54,46,57,57,51,53,52,56,93,44,91,45,49,48,55,46,52,50,49,50,50,51,44,51,55,46,48,48,48,50,50,51,93,44,91,45,49,48,55,46,52,53,49,52,52,53,44,51,54,46,57,48,52,48,51,54,93,44,91,45,49,48,55,46,54,49,56,49,56,49,44,51,54,46,56,48,52,50,54,55,93,44,91,45,49,48,55,46,54,50,52,50,56,51,44,51,54,46,50,49,57,56,48,57,93,44,91,45,49,48,54,46,56,56,53,48,53,51,44,51,54,46,50,49,54,53,55,93,44,91,45,49,48,54,46,56,56,53,51,49,55,44,51,53,46,57,57,56,57,54,57,93,44,91,45,49,48,54,46,50,52,55,49,54,52,44,51,54,46,48,48,49,52,51,52,93,44,91,45,49,48,54,46,50,52,56,49,54,49,44,51,53,46,57,54,54,51,50,55,93,44,91,45,49,48,54,46,50,52,53,54,52,57,44,51,53,46,57,51,48,55,52,50,93,44,91,45,49,48,54,46,48,53,52,51,52,54,44,51,53,46,57,51,48,55,56,51,93,44,91,45,49,48,54,46,48,55,49,51,52,57,44,51,54,46,48,48,49,57,55,93,44,91,45,49,48,53,46,55,49,55,52,55,55,44,51,53,46,57,55,56,55,52,49,93,44,91,45,49,48,53,46,53,51,48,51,56,44,51,54,46,48,49,51,48,49,52,93,44,91,45,49,48,53,46,55,51,53,56,56,51,44,51,54,46,49,48,48,49,51,51,93,44,91,45,49,48,53,46,56,53,54,57,52,55,44,51,54,46,50,51,48,52,51,52,93,44,91,45,49,48,54,46,48,53,56,51,54,52,44,51,54,46,50,57,54,57,55,56,93,44,91,45,49,48,53,46,57,54,49,52,49,52,44,51,54,46,51,53,51,48,54,54,93,44,91,45,49,48,53,46,57,51,56,55,53,52,44,51,54,46,52,54,50,52,48,50,93,44,91,45,49,48,53,46,57,55,49,56,51,54,44,51,54,46,54,51,50,52,52,52,93,44,91,45,49,48,53,46,57,55,49,56,56,57,44,51,54,46,56,56,54,50,52,55,93,44,91,45,49,48,54,46,48,48,54,51,49,54,44,51,54,46,57,57,53,50,54,55,93,44,91,45,49,48,54,46,52,55,54,48,57,44,51,54,46,57,57,51,53,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,97,108,101,100,111,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,52,50,53,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,57,51,57,57,51,54,44,52,52,46,55,54,57,48,51,50,93,44,91,45,55,50,46,48,49,50,53,48,52,44,52,52,46,54,57,56,56,50,49,93,44,91,45,55,50,46,49,49,52,53,48,51,44,52,52,46,55,52,57,54,50,52,93,44,91,45,55,50,46,50,54,50,57,54,53,44,52,52,46,53,52,50,51,51,54,93,44,91,45,55,50,46,51,55,52,55,56,54,44,52,52,46,53,56,52,49,50,53,93,44,91,45,55,50,46,52,51,52,51,49,53,44,52,52,46,53,48,54,48,57,56,93,44,91,45,55,50,46,50,50,51,54,56,57,44,52,52,46,52,50,52,53,55,51,93,44,91,45,55,50,46,51,54,56,51,53,51,44,52,52,46,50,48,52,48,53,55,93,44,91,45,55,50,46,48,52,50,57,53,54,44,52,52,46,49,53,54,52,57,55,93,44,91,45,55,50,46,48,54,56,52,55,56,44,52,52,46,50,55,48,56,48,49,93,44,91,45,55,49,46,57,56,49,52,50,52,44,52,52,46,51,51,55,51,54,54,93,44,91,45,55,49,46,56,51,55,56,53,51,44,52,52,46,51,52,55,57,57,51,93,44,91,45,55,49,46,57,51,51,50,56,56,44,52,52,46,52,52,49,49,55,52,93,44,91,45,55,49,46,57,49,48,48,56,53,44,52,52,46,54,52,55,49,56,93,44,91,45,55,49,46,57,51,57,57,51,54,44,52,52,46,55,54,57,48,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,111,116,101,116,111,117,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,50,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,50,48,53,53,52,44,51,55,46,54,52,55,52,52,50,93,44,91,45,55,57,46,57,54,57,48,55,49,44,51,55,46,53,52,52,52,48,56,93,44,91,45,56,48,46,48,55,52,49,49,57,44,51,55,46,52,50,50,52,54,57,93,44,91,45,55,57,46,56,52,55,52,55,54,44,51,55,46,51,48,57,51,53,50,93,44,91,45,55,57,46,54,57,48,48,54,44,51,55,46,52,55,54,51,55,52,93,44,91,45,55,57,46,53,57,51,55,48,55,44,51,55,46,52,52,56,56,54,52,93,44,91,45,55,57,46,52,57,56,54,57,57,44,51,55,46,53,51,50,55,57,55,93,44,91,45,55,57,46,54,56,51,53,53,52,44,51,55,46,54,54,49,55,54,51,93,44,91,45,55,57,46,54,55,52,49,54,50,44,51,55,46,55,54,51,48,57,51,93,44,91,45,55,57,46,56,49,54,54,56,53,44,51,55,46,56,48,48,57,54,52,93,44,91,45,56,48,46,48,50,48,53,53,52,44,51,55,46,54,52,55,52,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,53,54,55,48,44,34,98,101,100,115,34,58,57,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,55,53,55,48,50,44,51,56,46,57,50,51,53,50,57,93,44,91,45,57,48,46,49,49,55,55,48,55,44,51,56,46,56,48,53,55,52,56,93,44,91,45,57,48,46,49,54,54,53,55,52,44,51,56,46,55,55,50,52,52,56,93,44,91,45,57,48,46,49,56,49,53,52,51,44,51,56,46,54,54,48,48,54,50,93,44,91,45,56,57,46,55,48,54,57,52,57,44,51,56,46,54,53,53,48,49,57,93,44,91,45,56,57,46,53,57,55,51,50,49,44,51,56,46,55,52,51,50,51,54,93,44,91,45,56,57,46,54,51,57,50,54,53,44,51,56,46,57,57,57,49,50,57,93,44,91,45,56,57,46,54,57,56,53,53,53,44,51,56,46,57,57,56,57,55,57,93,44,91,45,57,48,46,49,52,53,57,56,52,44,51,56,46,57,57,57,51,48,51,93,44,91,45,57,48,46,50,55,53,55,48,50,44,51,56,46,57,50,51,53,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,67,111,108,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,52,51,53,48,44,34,98,101,100,115,34,58,50,51,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,51,52,49,49,44,51,51,46,52,48,53,52,57,56,93,44,91,45,57,54,46,56,52,51,57,55,57,44,51,50,46,57,56,55,53,53,52,93,44,91,45,57,54,46,53,49,54,56,54,54,44,51,50,46,57,56,50,51,48,56,93,44,91,45,57,54,46,50,57,55,50,50,55,44,51,50,46,57,56,49,55,53,50,93,44,91,45,57,54,46,50,57,53,52,49,51,44,51,51,46,51,53,49,57,51,54,93,44,91,45,57,54,46,51,56,52,54,48,50,44,51,51,46,51,57,55,56,50,54,93,44,91,45,57,54,46,56,51,52,49,49,44,51,51,46,52,48,53,52,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,98,98,101,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,54,53,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,49,51,57,57,54,44,51,52,46,52,56,52,48,48,50,93,44,91,45,56,50,46,55,52,50,49,48,51,44,51,52,46,50,49,49,57,48,51,93,44,91,45,56,50,46,53,57,52,54,51,49,44,51,52,46,48,49,51,55,57,54,93,44,91,45,56,50,46,53,51,48,53,54,55,44,51,52,46,48,55,49,57,50,53,93,44,91,45,56,50,46,51,50,54,57,52,55,44,51,52,46,48,54,52,49,50,93,44,91,45,56,50,46,50,52,55,55,52,55,44,51,52,46,50,49,57,54,49,57,93,44,91,45,56,50,46,51,51,52,50,51,52,44,51,52,46,51,52,50,54,51,93,44,91,45,56,50,46,50,52,54,51,51,55,44,51,52,46,52,48,57,54,55,54,93,44,91,45,56,50,46,51,49,51,57,57,54,44,51,52,46,52,56,52,48,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,68,111,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,56,51,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,48,53,57,50,50,44,52,49,46,55,52,50,55,54,51,93,44,91,45,57,54,46,57,48,53,57,49,44,52,49,46,52,53,54,52,51,54,93,44,91,45,57,54,46,57,48,53,56,54,50,44,52,49,46,52,53,51,51,56,57,93,44,91,45,57,54,46,53,54,56,57,55,55,44,52,49,46,52,51,51,50,52,93,44,91,45,57,54,46,52,55,48,55,50,44,52,49,46,51,57,51,50,51,57,93,44,91,45,57,54,46,51,50,57,48,49,50,44,52,49,46,51,57,51,49,51,54,93,44,91,45,57,54,46,52,52,51,56,57,56,44,52,49,46,53,50,51,57,51,51,93,44,91,45,57,54,46,52,52,52,55,56,53,44,52,49,46,54,56,51,54,51,51,93,44,91,45,57,54,46,53,53,53,49,55,50,44,52,49,46,55,52,50,48,49,56,93,44,91,45,57,54,46,57,48,53,57,50,50,44,52,49,46,55,52,50,55,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,97,114,97,115,111,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,49,52,52,44,34,98,101,100,115,34,58,49,53,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,48,53,52,51,56,44,50,55,46,51,56,57,54,54,56,93,44,91,45,56,50,46,53,54,52,55,52,44,50,55,46,50,48,53,54,93,44,91,45,56,50,46,52,51,55,51,50,55,44,50,54,46,57,52,54,48,50,53,93,44,91,45,56,50,46,50,53,53,53,50,49,44,50,54,46,57,52,53,50,54,52,93,44,91,45,56,50,46,50,53,53,50,51,55,44,50,55,46,48,51,50,57,55,53,93,44,91,45,56,50,46,48,53,55,52,54,57,44,50,55,46,48,51,50,49,49,57,93,44,91,45,56,50,46,48,53,54,52,57,55,44,50,55,46,50,48,55,55,54,57,93,44,91,45,56,50,46,50,53,51,53,57,54,44,50,55,46,50,48,56,57,49,54,93,44,91,45,56,50,46,50,53,50,50,54,52,44,50,55,46,51,56,54,50,52,51,93,44,91,45,56,50,46,55,48,53,52,51,56,44,50,55,46,51,56,57,54,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,77,97,114,113,117,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,54,56,54,49,50,44,52,51,46,57,56,50,56,51,52,93,44,91,45,56,57,46,53,57,55,57,53,44,52,51,46,57,56,50,49,93,44,91,45,56,57,46,53,57,57,53,52,55,44,52,51,46,54,52,50,54,51,54,93,44,91,45,56,57,46,50,52,53,52,51,55,44,52,51,46,54,52,51,48,56,51,93,44,91,45,56,57,46,50,52,53,51,55,53,44,52,51,46,55,53,57,56,49,51,93,44,91,45,56,57,46,49,54,56,49,50,49,44,52,51,46,56,55,54,52,55,93,44,91,45,56,57,46,49,54,56,54,49,50,44,52,51,46,57,56,50,56,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,77,111,104,97,118,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,48,54,52,44,34,98,101,100,115,34,58,54,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,48,53,48,51,53,52,44,51,54,46,56,52,51,49,52,49,93,44,91,45,49,49,52,46,48,52,51,57,52,52,44,51,54,46,49,57,51,51,53,93,44,91,45,49,49,52,46,49,53,51,52,44,51,54,46,48,50,51,49,55,93,44,91,45,49,49,52,46,50,52,51,56,54,53,44,51,54,46,48,49,53,50,54,54,93,44,91,45,49,49,52,46,51,55,48,49,56,49,44,51,54,46,49,52,50,54,50,52,93,44,91,45,49,49,52,46,54,50,55,48,55,57,44,51,54,46,49,52,48,55,54,49,93,44,91,45,49,49,52,46,55,53,52,53,48,56,44,51,54,46,48,56,54,49,55,49,93,44,91,45,49,49,52,46,55,48,56,49,49,50,44,51,53,46,57,48,57,57,51,51,93,44,91,45,49,49,52,46,54,55,56,56,57,50,44,51,53,46,53,48,49,50,55,54,93,44,91,45,49,49,52,46,53,57,53,49,54,51,44,51,53,46,51,50,49,56,56,51,93,44,91,45,49,49,52,46,53,54,57,53,50,57,44,51,53,46,49,54,50,51,49,55,93,44,91,45,49,49,52,46,54,51,51,52,56,55,44,51,53,46,48,48,49,56,53,55,93,44,91,45,49,49,52,46,54,50,56,50,55,54,44,51,52,46,56,54,51,53,57,54,93,44,91,45,49,49,52,46,52,55,49,54,50,44,51,52,46,55,49,50,57,54,54,93,44,91,45,49,49,52,46,52,51,53,54,55,49,44,51,52,46,53,57,51,56,52,49,93,44,91,45,49,49,52,46,51,51,57,54,50,55,44,51,52,46,52,53,49,52,51,53,93,44,91,45,49,49,52,46,49,51,56,50,56,50,44,51,52,46,51,48,51,50,51,93,44,91,45,49,49,52,46,48,51,49,49,51,50,44,51,52,46,50,53,57,56,49,57,93,44,91,45,49,49,51,46,54,48,54,48,57,51,44,51,52,46,50,50,57,51,51,52,93,44,91,45,49,49,51,46,53,51,57,53,50,52,44,51,52,46,51,48,54,51,55,55,93,44,91,45,49,49,51,46,51,51,51,53,48,56,44,51,52,46,51,49,55,56,55,55,93,44,91,45,49,49,51,46,51,51,52,49,54,49,44,51,53,46,53,50,56,48,51,55,93,44,91,45,49,49,51,46,51,49,51,52,50,56,44,51,54,46,49,48,48,48,48,49,93,44,91,45,49,49,51,46,48,48,54,51,52,51,44,51,54,46,50,51,56,55,53,52,93,44,91,45,49,49,50,46,57,48,50,57,52,57,44,51,54,46,50,53,51,55,54,49,93,44,91,45,49,49,50,46,54,56,49,53,55,49,44,51,54,46,51,52,49,54,54,50,93,44,91,45,49,49,50,46,54,50,57,52,57,44,51,54,46,51,57,49,54,49,49,93,44,91,45,49,49,50,46,54,53,54,51,54,53,44,51,54,46,53,53,51,57,49,53,93,44,91,45,49,49,50,46,54,49,57,55,50,56,44,51,54,46,55,56,50,55,52,52,93,44,91,45,49,49,50,46,53,51,56,53,55,49,44,51,55,46,48,48,48,55,53,56,93,44,91,45,49,49,50,46,56,57,57,49,57,49,44,51,55,46,48,48,48,51,56,53,93,44,91,45,49,49,52,46,48,53,48,48,53,50,44,51,55,46,48,48,48,49,57,49,93,44,91,45,49,49,52,46,48,53,48,51,53,52,44,51,54,46,56,52,51,49,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,89,97,118,97,112,97,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,54,52,53,44,34,98,101,100,115,34,58,51,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,51,51,52,49,54,49,44,51,53,46,53,50,56,48,51,55,93,44,91,45,49,49,51,46,51,51,51,53,48,56,44,51,52,46,51,49,55,56,55,55,93,44,91,45,49,49,51,46,51,51,51,55,53,51,44,51,51,46,57,57,57,50,50,55,93,44,91,45,49,49,50,46,55,52,51,57,53,49,44,51,51,46,57,57,57,56,57,56,93,44,91,45,49,49,50,46,50,55,54,48,52,44,51,51,46,56,56,50,51,49,50,93,44,91,45,49,49,50,46,49,54,51,50,53,51,44,51,52,46,48,52,55,52,55,49,93,44,91,45,49,49,49,46,55,50,53,51,49,44,51,51,46,57,57,57,56,52,57,93,44,91,45,49,49,49,46,52,57,52,55,55,56,44,51,51,46,57,57,57,56,49,55,93,44,91,45,49,49,49,46,52,55,55,56,53,51,44,51,52,46,49,53,49,49,48,56,93,44,91,45,49,49,49,46,55,49,50,49,49,56,44,51,52,46,49,53,49,50,55,49,93,44,91,45,49,49,49,46,54,53,57,54,50,50,44,51,52,46,51,56,54,51,52,50,93,44,91,45,49,49,49,46,53,53,52,54,56,49,44,51,52,46,52,55,49,55,51,51,93,44,91,45,49,49,49,46,53,53,49,57,53,57,44,51,52,46,56,48,50,53,50,93,44,91,45,49,49,49,46,55,55,56,50,48,52,44,51,52,46,56,48,51,54,56,53,93,44,91,45,49,49,49,46,55,55,56,50,57,55,44,51,52,46,57,56,49,48,48,55,93,44,91,45,49,49,50,46,51,51,52,53,51,54,44,51,52,46,57,55,51,48,50,52,93,44,91,45,49,49,50,46,51,51,53,55,49,54,44,51,53,46,49,52,56,50,55,57,93,44,91,45,49,49,50,46,52,52,50,51,44,51,53,46,49,52,57,52,48,56,93,44,91,45,49,49,50,46,52,55,50,55,44,51,53,46,50,51,56,51,49,50,93,44,91,45,49,49,50,46,53,55,55,51,57,57,44,51,53,46,50,52,51,51,57,52,93,44,91,45,49,49,50,46,54,57,52,56,52,54,44,51,53,46,51,49,49,53,56,54,93,44,91,45,49,49,50,46,57,52,52,55,56,57,44,51,53,46,51,53,50,54,48,51,93,44,91,45,49,49,51,46,49,55,52,52,53,56,44,51,53,46,53,48,54,52,52,53,93,44,91,45,49,49,51,46,51,51,52,49,54,49,44,51,53,46,53,50,56,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,72,111,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,48,57,49,53,44,34,98,101,100,115,34,58,56,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,49,50,56,49,54,53,44,51,52,46,50,53,51,54,53,50,93,44,91,45,55,57,46,51,51,50,52,53,56,44,51,51,46,57,57,52,57,57,55,93,44,91,45,55,57,46,49,57,48,50,54,52,44,51,51,46,55,48,53,55,56,55,93,44,91,45,55,57,46,49,48,49,48,55,52,44,51,51,46,53,55,50,57,54,57,93,44,91,45,55,56,46,57,50,54,48,55,53,44,51,51,46,53,55,50,54,53,56,93,44,91,45,55,56,46,54,57,49,51,56,50,44,51,51,46,55,53,53,50,56,56,93,44,91,45,55,56,46,52,57,57,51,48,49,44,51,51,46,56,49,50,56,53,50,93,44,91,45,55,56,46,54,53,48,51,49,52,44,51,51,46,57,52,52,51,52,50,93,44,91,45,55,57,46,48,55,49,50,49,49,44,51,52,46,50,57,57,51,52,50,93,44,91,45,55,57,46,49,50,56,49,54,53,44,51,52,46,50,53,51,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,49,51,48,49,44,34,98,101,100,115,34,58,51,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,54,57,54,55,56,50,44,52,48,46,50,52,49,56,54,51,93,44,91,45,55,53,46,53,55,51,51,51,56,44,52,48,46,49,57,53,51,48,51,93,44,91,45,55,53,46,51,54,49,48,54,54,44,52,48,46,48,54,53,53,52,51,93,44,91,45,55,53,46,50,55,54,52,56,50,44,51,57,46,57,55,54,57,53,57,93,44,91,45,55,53,46,50,50,51,54,49,44,52,48,46,48,57,50,57,48,55,93,44,91,45,55,53,46,49,48,57,52,51,49,44,52,48,46,48,52,53,56,55,52,93,44,91,45,55,53,46,48,49,53,48,54,54,44,52,48,46,49,51,55,57,57,50,93,44,91,45,55,53,46,52,56,52,48,53,55,44,52,48,46,52,49,56,52,53,49,93,44,91,45,55,53,46,53,50,57,54,57,52,44,52,48,46,52,52,54,57,57,53,93,44,91,45,55,53,46,54,57,54,55,56,50,44,52,48,46,50,52,49,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,44,91,45,49,49,54,46,51,54,57,49,50,50,44,52,54,46,52,54,54,57,50,51,93,44,91,45,49,49,54,46,51,54,56,56,48,49,44,52,54,46,51,52,51,50,49,55,93,44,91,45,49,49,54,46,55,49,51,52,57,54,44,52,54,46,51,50,53,53,50,55,93,44,91,45,49,49,54,46,55,48,49,56,49,57,44,52,53,46,57,57,54,51,56,49,93,44,91,45,49,49,54,46,53,49,52,55,48,55,44,52,54,46,48,51,56,55,53,55,93,44,91,45,49,49,54,46,52,53,52,49,49,55,44,52,54,46,49,57,50,48,51,50,93,44,91,45,49,49,54,46,51,48,51,55,49,51,44,52,54,46,49,54,54,55,55,56,93,44,91,45,49,49,54,46,49,51,51,53,55,44,52,54,46,50,49,53,50,51,49,93,44,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,65,114,101,99,105,98,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,50,52,50,44,34,98,101,100,115,34,58,50,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,55,54,52,54,57,50,44,49,56,46,53,51,56,51,51,93,44,91,45,54,54,46,55,55,48,48,55,50,44,49,56,46,51,50,53,48,49,51,93,44,91,45,54,54,46,54,48,54,57,56,57,44,49,56,46,51,50,56,49,56,54,93,44,91,45,54,54,46,53,57,48,55,56,53,44,49,56,46,51,51,56,48,54,93,44,91,45,54,54,46,53,56,56,49,56,49,44,49,56,46,51,56,57,52,48,56,93,44,91,45,54,54,46,53,55,56,52,52,49,44,49,56,46,53,52,49,52,51,49,93,44,91,45,54,54,46,55,54,52,54,57,50,44,49,56,46,53,51,56,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,50,48,34,44,34,78,65,77,69,34,58,34,78,111,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,57,48,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,54,51,54,50,53,44,51,54,46,57,50,48,57,53,57,93,44,91,45,56,50,46,53,57,49,49,52,55,44,51,54,46,57,51,53,51,49,51,93,44,91,45,56,50,46,54,51,51,56,51,49,44,51,54,46,57,53,50,50,55,54,93,44,91,45,56,50,46,54,54,51,54,50,53,44,51,54,46,57,50,48,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,77,111,114,114,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,52,51,56,51,44,34,98,101,100,115,34,58,49,56,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,53,48,51,50,49,50,44,52,49,46,48,56,53,56,55,51,93,44,91,45,55,52,46,54,52,48,54,52,51,44,52,48,46,57,54,53,51,51,56,93,44,91,45,55,52,46,55,54,57,52,50,53,44,52,48,46,57,49,48,57,51,52,93,44,91,45,55,52,46,56,56,57,56,49,57,44,52,48,46,55,56,55,55,50,57,93,44,91,45,55,52,46,55,50,53,54,54,54,44,52,48,46,55,49,57,53,51,50,93,44,91,45,55,52,46,53,53,54,48,49,56,44,52,48,46,55,53,56,50,56,56,93,44,91,45,55,52,46,52,54,49,48,51,53,44,52,48,46,54,55,51,53,48,52,93,44,91,45,55,52,46,51,55,49,55,51,56,44,52,48,46,55,51,57,54,52,93,44,91,45,55,52,46,50,55,50,48,54,51,44,52,48,46,56,57,55,52,50,55,93,44,91,45,55,52,46,51,48,49,54,56,53,44,52,48,46,57,57,57,49,55,51,93,44,91,45,55,52,46,53,48,51,50,49,50,44,52,49,46,48,56,53,56,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,49,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,54,54,57,51,53,44,52,48,46,51,56,50,57,57,57,93,44,91,45,57,51,46,51,54,55,50,49,52,44,52,48,46,50,54,54,51,49,52,93,44,91,45,57,51,46,51,54,49,57,53,49,44,52,48,46,48,51,51,48,57,56,93,44,91,45,57,50,46,56,53,54,49,57,49,44,52,48,46,48,51,55,50,53,51,93,44,91,45,57,50,46,56,53,53,54,50,57,44,52,48,46,51,52,50,55,51,54,93,44,91,45,57,50,46,56,53,53,51,49,51,44,52,48,46,51,56,53,56,57,52,93,44,91,45,57,51,46,51,54,54,57,51,53,44,52,48,46,51,56,50,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,78,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,53,53,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,52,55,50,44,51,56,46,54,57,56,49,54,53,93,44,91,45,49,48,48,46,50,52,52,51,57,51,44,51,56,46,50,54,50,50,57,93,44,91,45,49,48,48,46,50,50,55,49,51,55,44,51,56,46,50,54,50,50,51,55,93,44,91,45,57,57,46,53,56,52,50,48,55,44,51,56,46,50,54,50,49,55,57,93,44,91,45,57,57,46,53,56,52,55,57,52,44,51,56,46,51,52,57,51,56,54,93,44,91,45,57,57,46,53,56,53,48,56,55,44,51,56,46,54,57,54,53,51,55,93,44,91,45,57,57,46,53,57,56,51,50,51,44,51,56,46,54,57,54,53,49,52,93,44,91,45,49,48,48,46,49,53,51,56,50,51,44,51,56,46,54,57,55,51,52,49,93,44,91,45,49,48,48,46,50,52,55,50,44,51,56,46,54,57,56,49,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,66,114,97,122,111,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,57,57,57,44,34,98,101,100,115,34,58,50,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,50,52,49,49,56,44,50,57,46,53,56,48,50,51,51,93,44,91,45,57,53,46,52,54,50,53,48,51,44,50,57,46,52,51,57,50,52,93,44,91,45,57,53,46,53,52,57,57,57,52,44,50,57,46,52,51,56,52,51,57,93,44,91,45,57,53,46,53,57,48,55,57,51,44,50,57,46,51,50,55,52,56,53,93,44,91,45,57,53,46,55,53,50,56,54,54,44,50,57,46,51,50,52,53,48,51,93,44,91,45,57,53,46,56,52,55,54,53,54,44,50,57,46,50,54,50,53,57,93,44,91,45,57,53,46,56,55,52,48,50,56,44,50,57,46,50,50,57,55,48,50,93,44,91,45,57,53,46,56,52,49,52,57,57,44,50,57,46,48,57,56,54,50,93,44,91,45,57,53,46,55,54,52,57,51,55,44,50,56,46,57,54,55,51,53,57,93,44,91,45,57,53,46,54,53,53,51,57,56,44,50,56,46,57,53,49,55,49,49,93,44,91,45,57,53,46,52,57,53,54,53,44,50,56,46,55,54,52,56,51,55,93,44,91,45,57,53,46,51,53,51,52,55,49,44,50,56,46,56,49,55,56,54,51,93,44,91,45,57,53,46,48,57,52,51,51,54,44,50,57,46,48,51,50,50,52,93,44,91,45,57,53,46,48,57,49,54,50,50,44,50,57,46,48,54,50,55,51,57,93,44,91,45,57,53,46,48,53,54,53,55,53,44,50,57,46,49,57,57,56,53,54,93,44,91,45,57,53,46,50,51,51,48,56,49,44,50,57,46,52,54,53,53,54,54,93,44,91,45,57,53,46,50,49,54,52,50,50,44,50,57,46,53,53,54,48,56,93,44,91,45,57,53,46,50,54,49,52,54,53,44,50,57,46,53,57,51,48,52,52,93,44,91,45,57,53,46,52,50,52,49,49,56,44,50,57,46,53,56,48,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,57,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,57,48,34,44,34,78,65,77,69,34,58,34,83,116,97,117,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,53,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,55,55,53,54,49,44,51,56,46,49,50,54,52,54,93,44,91,45,55,57,46,48,50,48,51,48,56,44,51,56,46,49,52,51,55,50,53,93,44,91,45,55,57,46,48,51,51,55,56,57,44,51,56,46,49,57,57,48,49,56,93,44,91,45,55,57,46,48,57,51,55,57,49,44,51,56,46,49,56,54,50,56,55,93,44,91,45,55,57,46,48,55,55,53,54,49,44,51,56,46,49,50,54,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,104,97,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,52,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,51,52,53,51,54,53,44,52,48,46,54,57,56,48,57,51,93,44,91,45,49,48,50,46,48,53,49,52,53,55,44,52,48,46,54,57,55,53,51,57,93,44,91,45,49,48,50,46,48,53,49,52,54,53,44,52,48,46,52,52,48,48,48,56,93,44,91,45,49,48,50,46,48,53,49,53,56,54,44,52,48,46,51,52,57,50,49,51,93,44,91,45,49,48,49,46,51,52,50,55,56,56,44,52,48,46,51,53,48,52,52,52,93,44,91,45,49,48,49,46,51,52,53,51,54,53,44,52,48,46,54,57,56,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,50,48,51,52,44,34,98,101,100,115,34,58,50,51,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,56,53,51,54,55,44,51,57,46,57,49,56,52,57,49,93,44,91,45,56,52,46,52,55,57,50,49,51,44,51,57,46,53,57,49,48,50,52,93,44,91,45,56,52,46,51,54,53,50,51,50,44,51,57,46,53,56,57,52,57,51,93,44,91,45,56,52,46,49,49,52,49,57,53,44,51,57,46,53,55,55,57,56,51,93,44,91,45,56,52,46,48,57,50,57,51,56,44,51,57,46,56,51,56,51,52,53,93,44,91,45,56,52,46,48,53,51,55,51,54,44,51,57,46,56,53,48,52,53,56,93,44,91,45,56,52,46,48,53,49,48,49,50,44,51,57,46,56,55,57,56,49,93,44,91,45,56,52,46,49,53,55,54,55,49,44,51,57,46,57,50,50,57,55,93,44,91,45,56,52,46,52,50,53,57,48,50,44,51,57,46,57,49,57,54,50,50,93,44,91,45,56,52,46,52,56,53,51,54,55,44,51,57,46,57,49,56,52,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,52,55,34,44,34,78,65,77,69,34,58,34,84,104,114,111,99,107,109,111,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,55,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,55,49,50,53,56,44,51,50,46,57,53,55,48,50,53,93,44,91,45,57,57,46,48,57,54,48,49,54,44,51,50,46,57,53,55,48,51,55,93,44,91,45,57,56,46,57,53,48,56,55,53,44,51,50,46,57,53,54,57,49,56,93,44,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,44,91,45,57,57,46,52,55,50,52,52,52,44,51,51,46,51,57,57,48,50,51,93,44,91,45,57,57,46,52,55,49,50,53,56,44,51,50,46,57,53,55,48,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,49,34,44,34,78,65,77,69,34,58,34,79,103,108,101,116,104,111,114,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,55,54,50,57,52,44,51,52,46,48,52,51,50,49,57,93,44,91,45,56,51,46,49,50,54,50,50,57,44,51,52,46,48,52,54,50,49,51,93,44,91,45,56,51,46,50,53,56,52,49,51,44,51,51,46,57,57,57,48,57,56,93,44,91,45,56,51,46,50,55,53,57,51,51,44,51,51,46,56,52,55,57,55,55,93,44,91,45,56,51,46,50,56,48,51,52,44,51,51,46,55,54,49,55,55,52,93,44,91,45,56,51,46,49,49,56,55,50,57,44,51,51,46,54,57,56,56,49,56,93,44,91,45,56,50,46,57,57,53,54,48,50,44,51,51,46,54,57,51,53,56,51,93,44,91,45,56,50,46,57,52,57,48,52,54,44,51,51,46,55,51,51,51,51,51,93,44,91,45,56,50,46,57,56,55,50,56,54,44,51,51,46,55,56,48,55,49,93,44,91,45,56,50,46,56,52,54,54,56,54,44,51,51,46,57,52,48,54,51,57,93,44,91,45,56,50,46,55,55,57,53,48,54,44,51,51,46,57,55,49,49,50,52,93,44,91,45,56,50,46,57,55,54,50,57,52,44,51,52,46,48,52,51,50,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,110,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,48,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,53,48,54,50,52,44,51,53,46,52,54,50,57,53,93,44,91,45,57,50,46,56,53,53,44,51,53,46,49,55,50,55,55,55,93,44,91,45,57,50,46,56,57,54,49,48,57,44,51,53,46,49,55,48,54,55,56,93,44,91,45,57,51,46,48,52,48,53,50,53,44,51,53,46,48,55,54,57,50,51,93,44,91,45,57,50,46,55,49,54,51,51,49,44,51,53,46,48,55,49,55,52,50,93,44,91,45,57,50,46,53,53,52,54,56,53,44,51,53,46,49,49,51,50,55,55,93,44,91,45,57,50,46,52,57,57,57,56,53,44,51,53,46,49,54,57,53,55,53,93,44,91,45,57,50,46,52,56,49,52,54,57,44,51,53,46,51,54,56,51,57,50,93,44,91,45,57,50,46,52,55,57,50,54,56,44,51,53,46,52,53,53,51,53,55,93,44,91,45,57,50,46,56,53,48,54,50,52,44,51,53,46,52,54,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,78,111,100,97,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,52,55,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,50,48,50,50,54,53,44,52,48,46,53,55,56,52,56,56,93,44,91,45,57,53,46,49,56,48,54,49,52,44,52,48,46,50,54,49,55,48,54,93,44,91,45,57,53,46,48,55,49,55,48,51,44,52,48,46,50,54,48,56,53,57,93,44,91,45,57,53,46,48,52,51,48,56,44,52,48,46,49,51,48,48,57,54,93,44,91,45,57,52,46,54,48,53,57,52,50,44,52,48,46,49,50,54,49,50,55,93,44,91,45,57,52,46,53,57,56,52,56,55,44,52,48,46,51,56,54,55,49,52,93,44,91,45,57,52,46,54,51,50,48,51,44,52,48,46,53,55,49,51,54,55,93,44,91,45,57,52,46,57,49,52,56,57,54,44,52,48,46,53,55,53,48,54,56,93,44,91,45,57,53,46,50,48,50,50,54,53,44,52,48,46,53,55,56,52,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,82,97,110,115,111,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,54,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,51,51,56,54,50,44,52,54,46,54,51,48,55,50,55,93,44,91,45,57,56,46,48,51,52,53,53,54,44,52,54,46,50,56,50,54,53,55,93,44,91,45,57,56,46,48,48,54,55,49,53,44,52,54,46,50,56,50,54,50,54,93,44,91,45,57,55,46,50,56,48,53,54,54,44,52,54,46,50,56,50,51,57,51,93,44,91,45,57,55,46,50,55,57,57,52,56,44,52,54,46,54,50,57,51,52,56,93,44,91,45,57,55,46,54,56,50,48,48,54,44,52,54,46,54,50,57,57,50,56,93,44,91,45,57,56,46,48,51,51,56,54,50,44,52,54,46,54,51,48,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,55,56,54,44,34,98,101,100,115,34,58,51,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,54,55,51,49,56,44,52,51,46,56,50,53,57,48,50,93,44,91,45,56,52,46,49,54,56,49,50,55,44,52,51,46,53,54,56,56,57,57,93,44,91,45,56,52,46,48,53,48,57,56,55,44,52,51,46,53,50,52,48,54,52,93,44,91,45,56,51,46,56,49,55,50,50,56,44,52,51,46,53,50,50,51,52,53,93,44,91,45,56,51,46,54,57,56,56,49,54,44,52,51,46,52,55,56,57,53,55,93,44,91,45,56,51,46,55,48,56,51,49,55,44,52,51,46,56,50,56,55,50,49,93,44,91,45,56,51,46,55,48,56,53,50,53,44,52,51,46,56,51,51,57,52,56,93,44,91,45,56,51,46,57,48,55,54,48,56,44,52,51,46,57,49,48,52,49,53,93,44,91,45,56,52,46,48,52,52,56,52,51,44,52,51,46,57,49,49,49,52,54,93,44,91,45,56,52,46,49,54,54,51,55,55,44,52,51,46,57,57,54,57,48,49,93,44,91,45,56,52,46,49,54,55,51,49,56,44,52,51,46,56,50,53,57,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,55,48,48,53,44,34,98,101,100,115,34,58,52,48,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,55,52,57,57,50,44,51,53,46,51,56,52,49,53,50,93,44,91,45,57,48,46,49,53,50,48,57,52,44,51,53,46,50,53,53,57,56,57,93,44,91,45,57,48,46,48,54,54,53,57,49,44,51,53,46,49,51,53,57,57,93,44,91,45,57,48,46,49,55,51,54,48,51,44,51,53,46,49,49,56,48,55,51,93,44,91,45,57,48,46,50,48,57,51,57,55,44,51,53,46,48,50,54,53,52,54,93,44,91,45,57,48,46,51,48,57,50,56,57,44,51,52,46,57,57,53,54,57,52,93,44,91,45,56,57,46,55,50,52,51,50,52,44,51,52,46,57,57,52,55,57,93,44,91,45,56,57,46,54,52,52,48,53,44,51,52,46,57,57,53,50,57,49,93,44,91,45,56,57,46,54,51,50,55,55,54,44,51,53,46,51,55,53,56,50,52,93,44,91,45,57,48,46,48,52,49,53,54,51,44,51,53,46,51,57,54,54,50,93,44,91,45,57,48,46,48,53,52,51,50,50,44,51,53,46,51,56,57,50,55,55,93,44,91,45,57,48,46,48,55,52,57,57,50,44,51,53,46,51,56,52,49,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,117,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,48,55,53,44,34,98,101,100,115,34,58,52,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,48,52,54,52,55,49,44,51,57,46,55,57,55,54,52,56,93,44,91,45,49,50,49,46,57,55,52,55,57,52,44,51,57,46,54,55,53,52,56,55,93,44,91,45,49,50,49,46,57,57,52,48,50,49,44,51,57,46,53,51,51,57,50,54,93,44,91,45,49,50,49,46,56,53,54,53,51,50,44,51,57,46,53,51,54,57,48,52,93,44,91,45,49,50,49,46,56,57,48,48,49,51,44,51,57,46,51,56,51,56,54,52,93,44,91,45,49,50,49,46,57,48,56,50,54,57,44,51,57,46,51,48,51,56,55,56,93,44,91,45,49,50,49,46,54,50,51,55,54,44,51,57,46,50,57,53,54,50,49,93,44,91,45,49,50,49,46,52,48,55,53,50,55,44,51,57,46,51,51,57,55,53,52,93,44,91,45,49,50,49,46,51,48,53,49,50,50,44,51,57,46,53,49,57,53,56,53,93,44,91,45,49,50,49,46,49,52,57,57,48,55,44,51,57,46,53,50,54,52,52,54,93,44,91,45,49,50,49,46,48,55,54,54,57,53,44,51,57,46,53,57,55,50,54,52,93,44,91,45,49,50,49,46,49,51,54,55,49,53,44,51,57,46,54,50,56,49,54,57,93,44,91,45,49,50,49,46,51,54,49,50,48,54,44,51,57,46,56,53,53,52,55,51,93,44,91,45,49,50,49,46,52,51,54,56,56,54,44,52,48,46,49,53,49,57,48,53,93,44,91,45,49,50,49,46,53,56,54,52,48,55,44,52,48,46,49,48,48,53,50,50,93,44,91,45,49,50,49,46,54,52,54,48,51,50,44,51,57,46,57,56,50,53,50,55,93,44,91,45,49,50,49,46,56,48,52,48,52,49,44,51,57,46,56,56,52,51,52,52,93,44,91,45,49,50,50,46,48,52,52,56,54,53,44,51,57,46,56,56,51,55,55,49,93,44,91,45,49,50,50,46,48,52,54,52,55,49,44,51,57,46,55,57,55,54,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,80,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,49,50,57,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,53,51,56,55,49,44,52,54,46,49,53,56,49,50,93,44,91,45,57,51,46,48,53,53,48,56,49,44,52,53,46,57,56,49,50,51,51,93,44,91,45,57,51,46,49,52,50,56,54,57,44,52,53,46,57,56,49,48,48,53,93,44,91,45,57,51,46,49,52,49,55,57,51,44,52,53,46,55,51,48,54,53,55,93,44,91,45,57,50,46,56,52,49,48,53,49,44,52,53,46,55,51,48,48,50,52,93,44,91,45,57,50,46,55,49,50,53,48,51,44,52,53,46,56,57,49,55,48,53,93,44,91,45,57,50,46,51,53,48,52,48,55,44,52,54,46,48,49,54,51,54,56,93,44,91,45,57,50,46,50,57,51,55,48,53,44,52,54,46,49,53,55,51,50,49,93,44,91,45,57,50,46,50,57,50,56,54,44,52,54,46,52,49,55,50,50,93,44,91,45,57,51,46,48,53,52,56,52,55,44,52,54,46,52,49,57,50,54,57,93,44,91,45,57,51,46,48,53,51,56,55,49,44,52,54,46,49,53,56,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,97,115,116,114,111,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,53,55,55,44,34,98,101,100,115,34,58,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,57,53,51,57,44,51,48,46,52,49,57,53,54,51,93,44,91,45,57,55,46,52,57,50,52,56,50,44,51,48,46,50,49,48,48,49,49,93,44,91,45,57,55,46,54,52,57,51,55,44,51,48,46,48,54,55,57,52,52,93,44,91,45,57,55,46,51,49,53,56,50,51,44,50,57,46,55,56,54,53,52,49,93,44,91,45,57,55,46,48,50,52,52,54,49,44,51,48,46,48,53,49,52,51,53,93,44,91,45,57,55,46,48,56,49,56,51,52,44,51,48,46,50,53,57,51,53,55,93,44,91,45,57,55,46,51,51,52,52,54,51,44,51,48,46,52,48,50,56,52,51,93,44,91,45,57,55,46,51,54,57,53,51,57,44,51,48,46,52,49,57,53,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,75,108,105,99,107,105,116,97,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,57,54,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,56,54,53,56,50,57,44,52,54,46,48,52,48,56,53,56,93,44,91,45,49,50,48,46,56,48,49,50,57,53,44,52,54,46,48,52,49,48,49,52,93,44,91,45,49,50,49,46,53,50,50,51,50,49,44,52,54,46,48,52,52,48,48,54,93,44,91,45,49,50,49,46,54,49,50,50,51,50,44,52,54,46,48,52,52,48,57,51,93,44,91,45,49,50,49,46,54,48,57,50,52,54,44,52,53,46,55,56,50,53,49,57,93,44,91,45,49,50,49,46,53,50,51,54,56,49,44,52,53,46,55,50,52,57,51,93,44,91,45,49,50,49,46,52,52,49,50,50,57,44,52,53,46,54,57,55,50,56,93,44,91,45,49,50,49,46,51,51,55,55,49,50,44,52,53,46,55,48,52,56,51,57,93,44,91,45,49,50,49,46,48,56,52,56,54,51,44,52,53,46,54,52,55,57,51,50,93,44,91,45,49,50,48,46,57,49,53,56,53,44,52,53,46,54,52,49,50,93,44,91,45,49,50,48,46,54,53,51,53,48,51,44,52,53,46,55,51,55,49,56,49,93,44,91,45,49,50,48,46,53,48,53,55,52,51,44,52,53,46,54,57,57,57,52,57,93,44,91,45,49,50,48,46,50,49,48,55,55,52,44,52,53,46,55,50,53,57,49,53,93,44,91,45,49,49,57,46,57,57,57,53,48,49,44,52,53,46,56,49,50,53,49,55,93,44,91,45,49,49,57,46,56,54,56,51,49,50,44,52,53,46,56,51,54,49,57,56,93,44,91,45,49,49,57,46,56,54,53,56,50,57,44,52,54,46,48,52,48,56,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,117,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,55,51,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,48,48,56,52,56,53,44,52,56,46,56,51,49,50,49,56,93,44,91,45,49,50,51,46,48,48,56,52,56,54,44,52,56,46,55,54,55,48,57,57,93,44,91,45,49,50,51,46,50,54,55,56,55,55,44,52,56,46,54,57,51,57,57,51,93,44,91,45,49,50,51,46,50,49,56,57,50,57,44,52,56,46,53,52,56,55,48,56,93,44,91,45,49,50,51,46,49,49,53,49,51,56,44,52,56,46,52,50,50,56,51,93,44,91,45,49,50,51,46,50,52,55,57,49,57,44,52,56,46,50,56,52,53,53,56,93,44,91,45,49,50,50,46,57,53,50,51,56,54,44,52,56,46,51,52,57,55,48,54,93,44,91,45,49,50,50,46,56,54,51,48,55,56,44,52,56,46,51,55,48,51,54,49,93,44,91,45,49,50,50,46,55,51,53,50,51,49,44,52,56,46,52,48,53,57,51,50,93,44,91,45,49,50,50,46,55,54,52,52,48,52,44,52,56,46,54,48,48,53,55,55,93,44,91,45,49,50,50,46,55,49,51,55,48,52,44,52,56,46,54,52,53,49,51,93,44,91,45,49,50,50,46,56,49,50,51,52,44,52,56,46,55,55,49,56,53,93,44,91,45,49,50,51,46,48,48,56,52,56,53,44,52,56,46,56,51,49,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,57,55,56,54,44,34,98,101,100,115,34,58,49,50,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,52,53,50,48,52,44,52,52,46,53,56,52,55,52,54,93,44,91,45,56,56,46,49,57,48,52,54,53,44,52,52,46,53,56,54,55,57,57,93,44,91,45,56,56,46,49,57,50,54,49,49,44,52,52,46,50,52,49,57,52,55,93,44,91,45,56,56,46,48,52,51,50,52,44,52,52,46,50,52,49,48,49,56,93,44,91,45,56,55,46,56,56,56,48,56,55,44,52,52,46,50,52,48,52,54,49,93,44,91,45,56,55,46,55,54,54,48,50,54,44,52,52,46,51,50,55,49,56,52,93,44,91,45,56,55,46,55,53,56,48,52,56,44,52,52,46,54,55,55,48,53,52,93,44,91,45,56,55,46,55,54,50,51,51,57,44,52,52,46,54,55,55,48,49,53,93,44,91,45,56,56,46,50,52,50,54,56,55,44,52,52,46,54,55,57,54,51,49,93,44,91,45,56,56,46,50,52,53,50,48,52,44,52,52,46,53,56,52,55,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,53,34,44,34,78,65,77,69,34,58,34,87,105,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,56,48,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,54,48,56,55,54,44,51,55,46,55,51,52,51,48,52,93,44,91,45,57,53,46,57,54,49,48,48,50,44,51,55,46,54,48,51,55,54,49,93,44,91,45,57,53,46,57,54,49,54,48,53,44,51,55,46,51,56,54,54,51,54,93,44,91,45,57,53,46,53,50,53,53,54,44,51,55,46,51,56,51,57,55,57,93,44,91,45,57,53,46,53,50,53,52,57,57,44,51,55,46,55,51,50,55,53,57,93,44,91,45,57,53,46,57,54,48,56,55,54,44,51,55,46,55,51,52,51,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,78,97,116,99,104,105,116,111,99,104,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,57,54,51,44,34,98,101,100,115,34,58,49,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,52,49,49,55,49,44,51,49,46,56,52,53,50,51,51,93,44,91,45,57,51,46,52,52,49,55,52,51,44,51,49,46,55,49,52,52,56,53,93,44,91,45,57,51,46,51,51,56,57,55,50,44,51,49,46,55,49,52,50,53,57,93,44,91,45,57,51,46,51,51,55,52,53,54,44,51,49,46,53,51,56,49,49,93,44,91,45,57,51,46,50,51,54,54,54,50,44,51,49,46,53,51,56,51,51,57,93,44,91,45,57,51,46,50,51,54,49,48,52,44,51,49,46,51,54,52,53,48,55,93,44,91,45,57,50,46,57,56,49,52,54,52,44,51,49,46,51,52,54,54,52,52,93,44,91,45,57,50,46,57,49,51,48,49,57,44,51,49,46,51,54,56,50,51,54,93,44,91,45,57,50,46,55,49,56,57,56,51,44,51,49,46,53,49,55,53,57,52,93,44,91,45,57,50,46,56,48,54,50,48,54,44,51,49,46,53,57,56,53,52,56,93,44,91,45,57,50,46,57,48,56,51,49,51,44,51,49,46,54,50,53,49,54,57,93,44,91,45,57,50,46,57,55,51,53,50,57,44,51,49,46,55,48,56,57,50,50,93,44,91,45,57,50,46,57,52,50,50,52,53,44,51,49,46,56,53,52,50,54,56,93,44,91,45,57,50,46,56,56,50,57,57,56,44,51,49,46,57,51,57,57,55,93,44,91,45,57,50,46,57,51,57,48,56,44,51,50,46,49,52,55,57,52,50,93,44,91,45,57,51,46,49,56,55,49,54,50,44,51,50,46,49,52,56,52,49,50,93,44,91,45,57,51,46,49,51,54,49,50,55,44,51,50,46,48,53,54,50,50,52,93,44,91,45,57,51,46,50,51,56,52,55,44,51,49,46,57,55,50,55,56,49,93,44,91,45,57,51,46,51,53,53,52,53,50,44,51,49,46,57,51,50,50,50,50,93,44,91,45,57,51,46,52,52,49,49,55,49,44,51,49,46,56,52,53,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,84,101,114,114,101,98,111,110,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,53,56,55,44,34,98,101,100,115,34,58,53,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,48,57,51,56,44,50,56,46,57,57,53,51,52,93,44,91,45,57,48,46,52,48,57,52,49,51,44,50,57,46,50,51,57,55,51,56,93,44,91,45,57,48,46,51,56,53,53,51,57,44,50,57,46,51,54,55,55,52,57,93,44,91,45,57,48,46,54,49,57,51,48,57,44,50,57,46,53,57,56,48,57,50,93,44,91,45,57,48,46,55,54,54,56,52,57,44,50,57,46,54,57,53,52,55,55,93,44,91,45,57,49,46,48,48,54,55,52,51,44,50,57,46,55,49,52,55,55,49,93,44,91,45,57,49,46,48,56,50,54,48,50,44,50,57,46,54,50,54,51,54,56,93,44,91,45,57,49,46,50,54,48,54,54,49,44,50,57,46,53,52,52,53,49,93,44,91,45,57,49,46,50,49,50,49,53,55,44,50,57,46,52,50,51,52,50,57,93,44,91,45,57,49,46,51,53,52,50,55,50,44,50,57,46,50,51,57,54,48,54,93,44,91,45,57,49,46,50,57,50,54,56,49,44,50,57,46,49,57,54,49,55,55,93,44,91,45,57,49,46,48,48,54,48,53,52,44,50,57,46,49,49,57,57,57,52,93,44,91,45,57,49,46,48,48,56,55,53,57,44,50,57,46,48,50,54,57,48,50,93,44,91,45,57,48,46,57,48,55,48,56,44,50,56,46,57,57,49,49,51,50,93,44,91,45,57,48,46,55,50,48,55,54,53,44,50,56,46,57,57,50,54,51,93,44,91,45,57,48,46,53,53,50,53,52,55,44,50,57,46,48,51,54,56,48,54,93,44,91,45,57,48,46,52,48,57,51,56,44,50,56,46,57,57,53,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,73,114,119,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,54,56,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,48,48,55,48,50,44,51,49,46,53,57,51,57,57,93,44,91,45,56,51,46,51,51,56,55,50,56,44,51,49,46,52,55,53,57,57,49,93,44,91,45,56,51,46,49,52,53,53,56,55,44,51,49,46,52,55,50,50,55,54,93,44,91,45,56,50,46,57,57,56,51,54,44,51,49,46,54,55,51,49,54,52,93,44,91,45,56,51,46,51,50,53,54,49,55,44,51,49,46,54,56,48,54,48,51,93,44,91,45,56,51,46,51,50,53,50,57,54,44,51,49,46,55,53,54,53,56,52,93,44,91,45,56,51,46,52,53,51,54,51,52,44,51,49,46,55,53,55,56,54,49,93,44,91,45,56,51,46,53,48,48,55,48,50,44,51,49,46,53,57,51,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,32,83,108,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,57,55,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,49,46,48,48,50,54,57,52,44,54,56,46,52,57,56,51,54,52,93,44,91,45,49,52,49,46,48,48,50,55,56,50,44,54,57,46,55,48,51,54,52,56,93,44,91,45,49,52,49,46,51,55,55,56,57,54,44,54,57,46,55,52,52,49,52,55,93,44,91,45,49,52,49,46,53,57,49,52,53,51,44,54,57,46,56,49,52,53,56,50,93,44,91,45,49,52,50,46,48,55,57,48,56,55,44,54,57,46,57,48,56,53,48,50,93,44,91,45,49,52,50,46,55,48,54,50,57,53,44,55,48,46,48,56,56,49,57,54,93,44,91,45,49,52,51,46,50,50,54,52,51,51,44,55,48,46,50,48,49,57,57,56,93,44,91,45,49,52,51,46,57,52,48,53,56,53,44,55,48,46,49,54,57,54,56,53,93,44,91,45,49,52,52,46,53,50,57,49,48,52,44,55,48,46,48,55,57,48,54,49,93,44,91,45,49,52,52,46,54,56,49,52,54,56,44,55,48,46,48,49,53,55,55,51,93,44,91,45,49,52,53,46,48,54,52,57,56,51,44,55,48,46,48,56,55,54,49,49,93,44,91,45,49,52,53,46,50,55,57,51,54,44,55,48,46,48,56,56,57,53,57,93,44,91,45,49,52,53,46,57,56,49,55,56,49,44,55,48,46,50,52,50,51,48,55,93,44,91,45,49,52,54,46,51,55,55,57,49,56,44,55,48,46,50,56,51,55,53,93,44,91,45,49,52,54,46,55,48,56,57,54,51,44,55,48,46,50,56,50,52,51,93,44,91,45,49,52,55,46,51,55,50,53,49,56,44,55,48,46,52,51,48,53,51,57,93,44,91,45,49,52,55,46,55,55,57,52,51,54,44,55,48,46,52,55,49,56,54,57,93,44,91,45,49,52,56,46,48,48,51,53,48,50,44,55,48,46,53,52,53,53,55,57,93,44,91,45,49,52,56,46,52,50,49,51,48,53,44,55,48,46,53,51,50,56,54,52,93,44,91,45,49,52,56,46,53,49,53,52,55,57,44,55,48,46,52,55,55,52,55,53,93,44,91,45,49,52,57,46,48,57,48,52,55,54,44,55,48,46,53,54,53,52,50,93,44,91,45,49,52,57,46,54,55,57,56,55,53,44,55,48,46,54,50,49,52,57,53,93,44,91,45,49,53,48,46,51,52,53,50,52,44,55,48,46,53,53,51,50,51,50,93,44,91,45,49,53,48,46,55,57,53,49,53,50,44,55,48,46,53,52,56,51,53,57,93,44,91,45,49,53,49,46,51,49,52,57,55,55,44,55,48,46,52,54,51,52,50,54,93,44,91,45,49,53,49,46,53,52,56,56,57,49,44,55,48,46,52,57,49,48,56,53,93,44,91,45,49,53,49,46,54,49,50,55,52,44,55,48,46,53,57,51,54,48,52,93,44,91,45,49,53,50,46,49,53,49,56,53,49,44,55,48,46,56,55,53,49,51,49,93,44,91,45,49,53,50,46,53,48,57,55,53,55,44,55,48,46,57,51,52,55,50,54,93,44,91,45,49,53,51,46,50,55,52,51,49,44,55,48,46,57,55,48,57,53,55,93,44,91,45,49,53,51,46,56,57,57,49,55,53,44,55,48,46,57,51,54,50,49,56,93,44,91,45,49,53,52,46,52,51,55,54,55,53,44,55,49,46,48,50,51,53,53,50,93,44,91,45,49,53,52,46,56,50,49,51,49,55,44,55,49,46,49,53,56,57,54,49,93,44,91,45,49,53,53,46,52,53,56,56,54,53,44,55,49,46,50,54,56,53,57,93,44,91,45,49,53,53,46,55,53,54,50,49,53,44,55,49,46,50,56,51,51,56,49,93,44,91,45,49,53,53,46,57,50,54,52,50,56,44,55,49,46,51,53,55,54,56,53,93,44,91,45,49,53,54,46,52,48,48,54,50,54,44,55,49,46,52,51,53,52,48,55,93,44,91,45,49,53,54,46,53,56,50,50,53,50,44,55,49,46,52,50,55,54,55,49,93,44,91,45,49,53,54,46,57,52,48,56,51,44,55,49,46,51,49,49,50,48,52,93,44,91,45,49,53,55,46,53,51,50,52,50,50,44,55,49,46,48,48,55,53,53,52,93,44,91,45,49,53,56,46,49,55,49,52,54,51,44,55,48,46,56,55,49,48,52,55,93,44,91,45,49,53,56,46,53,53,50,55,50,51,44,55,48,46,57,48,50,56,50,56,93,44,91,45,49,53,56,46,55,51,51,57,57,56,44,55,48,46,57,54,51,49,49,57,93,44,91,45,49,53,57,46,50,51,56,52,52,44,55,48,46,57,50,48,50,56,49,93,44,91,45,49,53,57,46,55,53,53,52,54,55,44,55,48,46,56,51,48,53,50,54,93,44,91,45,49,54,48,46,52,49,52,50,49,55,44,55,48,46,53,54,49,50,57,56,93,44,91,45,49,54,48,46,57,48,55,56,54,49,44,55,48,46,52,49,53,55,52,50,93,44,91,45,49,54,49,46,51,49,53,49,51,52,44,55,48,46,51,52,55,50,53,54,93,44,91,45,49,54,49,46,57,52,56,54,53,55,44,55,48,46,51,55,52,55,52,50,93,44,91,45,49,54,50,46,52,54,53,50,50,49,44,55,48,46,50,49,55,50,52,51,93,44,91,45,49,54,50,46,56,49,56,56,49,55,44,54,57,46,57,57,57,48,50,56,93,44,91,45,49,54,51,46,49,51,51,53,54,49,44,54,57,46,56,51,56,55,48,50,93,44,91,45,49,54,51,46,50,56,55,55,55,50,44,54,57,46,54,51,50,51,56,52,93,44,91,45,49,54,51,46,50,56,57,53,56,57,44,54,57,46,52,51,48,51,53,55,93,44,91,45,49,54,51,46,51,56,48,53,56,57,44,54,57,46,51,50,48,50,49,57,93,44,91,45,49,54,51,46,54,53,48,55,57,56,44,54,57,46,49,54,56,54,57,50,93,44,91,45,49,54,52,46,48,50,48,51,54,53,44,54,57,46,48,51,51,49,53,93,44,91,45,49,54,52,46,50,55,57,51,55,57,44,54,56,46,57,55,57,54,49,55,93,44,91,45,49,54,53,46,51,53,55,48,52,56,44,54,56,46,57,48,56,57,51,57,93,44,91,45,49,54,54,46,50,48,48,49,53,49,44,54,56,46,57,51,51,56,50,51,93,44,91,45,49,54,54,46,51,52,55,52,50,56,44,54,56,46,57,48,48,51,56,54,93,44,91,45,49,54,54,46,51,54,55,54,54,52,44,54,56,46,53,55,52,57,57,52,93,44,91,45,49,54,54,46,53,48,50,56,55,50,44,54,56,46,52,53,54,49,48,57,93,44,91,45,49,54,54,46,56,52,57,57,56,49,44,54,56,46,52,48,49,54,52,52,93,44,91,45,49,54,54,46,57,52,50,48,52,49,44,54,56,46,51,48,50,53,57,52,93,44,91,45,49,54,54,46,54,53,49,57,56,51,44,54,56,46,50,56,56,51,49,56,93,44,91,45,49,54,54,46,50,56,53,51,44,54,56,46,50,50,52,51,54,55,93,44,91,45,49,54,53,46,57,54,54,48,52,50,44,54,56,46,48,55,50,52,57,50,93,44,91,45,49,54,53,46,53,57,54,48,52,54,44,54,56,46,48,51,52,55,50,55,93,44,91,45,49,54,52,46,52,57,57,52,51,55,44,54,56,46,48,51,52,55,52,56,93,44,91,45,49,54,52,46,52,57,57,52,54,51,44,54,56,46,50,48,55,56,57,93,44,91,45,49,54,50,46,55,50,50,49,57,44,54,56,46,50,48,55,57,50,54,93,44,91,45,49,54,50,46,55,50,50,50,48,50,44,54,56,46,50,57,52,52,57,54,93,44,91,45,49,54,50,46,48,50,51,50,55,51,44,54,56,46,50,57,52,53,49,49,93,44,91,45,49,54,50,46,48,50,51,50,54,49,44,54,56,46,50,48,55,57,52,93,44,91,45,49,54,49,46,53,53,55,51,50,56,44,54,56,46,50,48,55,57,52,57,93,44,91,45,49,54,49,46,53,53,55,51,50,44,54,56,46,50,57,52,53,50,49,93,44,91,45,49,54,49,46,48,57,49,51,54,52,44,54,56,46,50,57,52,53,51,50,93,44,91,45,49,54,49,46,48,57,49,51,53,49,44,54,56,46,50,48,55,57,54,49,93,44,91,45,49,54,48,46,49,53,57,52,52,44,54,56,46,50,48,55,57,56,50,93,44,91,45,49,54,48,46,49,53,57,52,53,50,44,54,56,46,50,57,52,53,53,51,93,44,91,45,49,53,57,46,54,57,51,52,56,55,44,54,56,46,50,57,52,53,54,52,93,44,91,45,49,53,57,46,54,57,51,52,55,55,44,54,56,46,50,48,55,57,57,50,93,44,91,45,49,53,56,46,52,53,55,56,51,54,44,54,56,46,50,48,56,48,49,54,93,44,91,45,49,53,55,46,49,53,52,57,50,52,44,54,56,46,50,48,56,48,53,52,93,44,91,45,49,53,55,46,49,53,52,57,49,44,54,56,46,49,50,49,52,56,51,93,44,91,45,49,53,54,46,50,51,54,56,51,49,44,54,56,46,49,50,49,52,57,56,93,44,91,45,49,53,54,46,50,51,54,56,49,55,44,54,56,46,48,51,52,57,50,54,93,44,91,45,49,53,53,46,51,49,56,55,52,56,44,54,56,46,48,51,52,57,52,50,93,44,91,45,49,53,53,46,51,49,56,55,52,52,44,54,56,46,48,48,48,48,51,50,93,44,91,45,49,53,51,46,52,48,52,49,53,50,44,54,56,93,44,91,45,49,53,49,46,57,48,48,50,55,54,44,54,56,46,48,48,48,48,48,55,93,44,91,45,49,53,48,46,56,57,48,48,50,56,44,54,56,46,48,48,48,48,48,52,93,44,91,45,49,52,57,46,51,50,53,52,51,44,54,55,46,57,57,57,57,57,57,93,44,91,45,49,52,55,46,55,53,51,49,49,55,44,54,55,46,57,57,57,57,56,56,93,44,91,45,49,52,54,44,54,56,93,44,91,45,49,52,54,44,54,56,46,53,93,44,91,45,49,52,51,46,53,50,56,56,50,51,44,54,56,46,53,48,48,48,50,49,93,44,91,45,49,52,49,46,48,48,50,54,57,52,44,54,56,46,52,57,56,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,114,101,110,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,54,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,51,57,55,55,44,52,52,46,49,54,49,55,56,54,93,44,91,45,56,52,46,49,54,54,49,48,55,44,52,52,46,49,54,49,55,56,56,93,44,91,45,56,52,46,49,54,54,51,55,55,44,52,51,46,57,57,54,57,48,49,93,44,91,45,56,52,46,48,52,52,56,52,51,44,52,51,46,57,49,49,49,52,54,93,44,91,45,56,51,46,57,48,55,54,48,56,44,52,51,46,57,49,48,52,49,53,93,44,91,45,56,51,46,55,48,56,53,50,53,44,52,51,46,56,51,51,57,52,56,93,44,91,45,56,51,46,49,56,53,50,56,44,52,52,46,49,54,56,52,48,52,93,44,91,45,56,51,46,56,56,51,57,55,55,44,52,52,46,49,54,49,55,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,53,52,49,44,34,98,101,100,115,34,58,49,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,49,56,55,56,55,44,52,48,46,56,49,51,53,52,52,93,44,91,45,57,49,46,55,49,54,55,54,57,44,52,48,46,53,57,56,53,51,93,44,91,45,57,49,46,52,56,51,49,53,51,44,52,48,46,51,56,50,52,57,50,93,44,91,45,57,49,46,52,49,57,52,50,50,44,52,48,46,51,55,56,50,54,52,93,44,91,45,57,49,46,51,55,53,55,49,50,44,52,48,46,51,57,49,57,50,53,93,44,91,45,57,49,46,51,53,57,56,55,51,44,52,48,46,54,48,49,56,48,53,93,44,91,45,57,49,46,49,56,53,50,57,53,44,52,48,46,54,51,55,56,48,51,93,44,91,45,57,49,46,49,49,50,52,54,55,44,52,48,46,54,57,54,51,48,49,93,44,91,45,57,49,46,52,48,57,52,53,51,44,52,48,46,56,49,50,57,48,53,93,44,91,45,57,49,46,55,49,56,55,56,55,44,52,48,46,56,49,51,53,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,79,115,98,111,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,48,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,52,52,51,57,56,44,51,57,46,53,54,56,48,51,53,93,44,91,45,57,57,46,48,52,55,54,56,55,44,51,57,46,49,51,51,48,49,52,93,44,91,45,57,57,46,48,51,55,53,44,51,57,46,49,51,51,49,50,49,93,44,91,45,57,56,46,52,56,57,57,57,55,44,51,57,46,49,51,50,54,57,55,93,44,91,45,57,56,46,52,57,48,49,52,57,44,51,57,46,50,49,57,55,56,93,44,91,45,57,56,46,52,56,55,51,56,52,44,51,57,46,53,54,55,52,57,50,93,44,91,45,57,56,46,53,48,53,50,54,54,44,51,57,46,53,54,55,54,48,51,93,44,91,45,57,57,46,48,52,52,51,57,56,44,51,57,46,53,54,56,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,69,109,109,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,48,51,57,44,34,98,101,100,115,34,58,50,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,51,57,54,49,56,44,52,53,46,56,55,48,55,52,93,44,91,45,56,53,46,50,50,49,51,57,52,44,52,53,46,55,56,50,56,52,51,93,44,91,45,56,53,46,51,48,55,53,56,52,44,52,53,46,54,50,53,48,48,54,93,44,91,45,56,53,46,50,56,51,50,51,56,44,52,53,46,53,53,48,50,48,57,93,44,91,45,56,52,46,57,54,52,55,56,55,44,52,53,46,50,57,49,54,48,49,93,44,91,45,56,52,46,55,51,50,54,56,55,44,52,53,46,50,56,57,51,56,50,93,44,91,45,56,52,46,55,51,50,53,57,53,44,52,53,46,56,49,48,51,51,93,44,91,45,56,53,46,50,51,57,54,49,56,44,52,53,46,56,55,48,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,70,114,101,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,49,51,52,54,53,44,52,48,46,57,48,49,54,57,51,93,44,91,45,57,53,46,56,51,52,49,50,44,52,48,46,55,56,51,55,56,51,93,44,91,45,57,53,46,56,56,49,53,50,57,44,52,48,46,55,53,48,54,49,49,93,44,91,45,57,53,46,55,54,53,54,52,53,44,52,48,46,53,56,53,50,48,56,93,44,91,45,57,53,46,51,55,51,57,50,51,44,52,48,46,53,56,48,53,48,51,93,44,91,45,57,53,46,51,56,52,57,54,52,44,52,48,46,57,48,49,53,53,93,44,91,45,57,53,46,56,49,51,52,54,53,44,52,48,46,57,48,49,54,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,48,54,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,57,46,53,48,54,51,56,50,44,52,52,46,51,52,50,56,55,93,44,91,45,54,57,46,54,53,48,49,55,49,44,52,52,46,50,55,57,54,50,53,93,44,91,45,54,57,46,54,53,54,55,52,50,44,52,52,46,49,50,50,51,57,50,93,44,91,45,54,57,46,55,53,56,50,48,56,44,52,52,46,49,51,57,51,51,52,93,44,91,45,54,57,46,56,49,51,53,52,57,44,52,52,46,48,50,54,48,49,49,93,44,91,45,54,57,46,55,48,48,48,57,55,44,52,52,46,48,48,54,54,56,53,93,44,91,45,54,57,46,54,54,52,55,52,53,44,52,51,46,55,49,49,55,52,56,93,44,91,45,54,57,46,53,48,49,54,49,55,44,52,51,46,55,55,57,54,56,54,93,44,91,45,54,57,46,50,57,55,56,53,53,44,52,51,46,55,48,55,54,57,52,93,44,91,45,54,57,46,50,51,51,52,56,44,52,51,46,55,55,56,48,48,50,93,44,91,45,54,57,46,51,57,55,55,51,56,44,52,51,46,56,55,49,56,57,93,44,91,45,54,57,46,51,54,51,57,57,54,44,52,52,46,48,49,50,56,55,51,93,44,91,45,54,57,46,50,56,50,48,50,55,44,52,52,46,48,54,52,53,50,51,93,44,91,45,54,57,46,52,48,57,54,51,53,44,52,52,46,51,50,55,57,57,56,93,44,91,45,54,57,46,53,48,54,51,56,50,44,52,52,46,51,52,50,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,83,101,110,101,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,54,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,54,51,57,50,54,44,52,51,46,48,49,51,49,53,55,93,44,91,45,55,54,46,57,55,49,51,57,50,44,52,50,46,55,54,52,50,50,51,93,44,91,45,55,54,46,56,57,53,51,52,57,44,52,50,46,54,53,54,50,53,53,93,44,91,45,55,54,46,56,57,53,53,57,54,44,52,50,46,53,52,49,53,51,55,93,44,91,45,55,54,46,54,57,54,54,53,53,44,52,50,46,53,52,54,55,57,93,44,91,45,55,54,46,54,54,54,53,52,51,44,52,50,46,54,50,51,52,53,55,93,44,91,45,55,54,46,55,51,51,52,53,52,44,52,50,46,55,50,55,56,57,53,93,44,91,45,55,54,46,55,49,51,56,48,54,44,52,51,46,48,50,52,48,51,53,93,44,91,45,55,54,46,57,54,51,57,50,54,44,52,51,46,48,49,51,49,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,76,97,117,114,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,49,56,48,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,56,57,48,55,54,44,51,55,46,49,53,49,55,52,93,44,91,45,56,52,46,51,53,56,48,50,52,44,51,54,46,57,53,57,52,93,44,91,45,56,52,46,50,57,55,52,49,54,44,51,54,46,57,52,53,57,51,49,93,44,91,45,56,52,46,48,57,49,56,53,51,44,51,54,46,57,53,53,57,57,50,93,44,91,45,56,51,46,57,53,57,51,56,53,44,51,54,46,57,55,55,49,50,56,93,44,91,45,56,51,46,56,55,49,51,49,53,44,51,55,46,48,53,52,57,49,57,93,44,91,45,56,51,46,57,54,56,57,57,44,51,55,46,49,55,52,55,57,52,93,44,91,45,56,51,46,57,52,51,55,49,56,44,51,55,46,50,53,48,53,53,49,93,44,91,45,56,52,46,49,51,55,56,57,56,44,51,55,46,51,49,57,55,53,57,93,44,91,45,56,52,46,50,49,54,50,52,49,44,51,55,46,50,56,48,50,53,54,93,44,91,45,56,52,46,50,56,57,48,55,54,44,51,55,46,49,53,49,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,101,105,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,50,51,56,53,51,44,51,53,46,55,53,50,56,57,54,93,44,91,45,56,52,46,55,56,50,51,54,54,44,51,53,46,53,57,52,55,57,57,93,44,91,45,56,52,46,57,49,53,48,52,57,44,51,53,46,52,52,48,55,55,49,93,44,91,45,56,53,46,48,49,54,51,52,51,44,51,53,46,52,48,57,50,56,56,93,44,91,45,56,52,46,57,52,54,51,51,57,44,51,53,46,50,56,55,55,49,55,93,44,91,45,56,52,46,56,54,48,49,54,52,44,51,53,46,51,53,48,48,55,52,93,44,91,45,56,52,46,56,48,53,53,52,52,44,51,53,46,52,52,56,53,55,49,93,44,91,45,56,52,46,54,49,57,56,54,53,44,51,53,46,54,52,52,54,53,49,93,44,91,45,56,52,46,55,50,51,56,53,51,44,51,53,46,55,53,50,56,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,51,34,44,34,78,65,77,69,34,58,34,84,97,110,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,55,50,48,44,34,98,101,100,115,34,58,49,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,48,52,51,53,57,44,51,54,46,56,49,54,56,54,54,93,44,91,45,57,51,46,51,49,53,51,51,50,44,51,54,46,52,57,56,49,52,93,44,91,45,57,51,46,50,57,51,52,54,55,44,51,54,46,52,57,56,50,55,54,93,44,91,45,57,50,46,56,53,52,48,52,57,44,51,54,46,52,57,55,56,52,50,93,44,91,45,57,50,46,55,55,50,51,52,51,44,51,54,46,52,57,55,54,54,50,93,44,91,45,57,50,46,55,54,52,56,54,57,44,51,54,46,56,48,54,48,57,55,93,44,91,45,57,50,46,57,48,57,51,51,54,44,51,54,46,56,48,57,49,55,56,93,44,91,45,57,51,46,51,48,52,51,53,57,44,51,54,46,56,49,54,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,57,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,44,91,45,56,52,46,48,48,51,51,54,51,44,51,50,46,53,50,57,57,50,55,93,44,91,45,56,52,46,49,48,52,57,54,54,44,51,50,46,54,55,51,51,56,53,93,44,91,45,56,52,46,50,48,50,54,50,56,44,51,50,46,54,57,48,48,49,56,93,44,91,45,56,52,46,50,56,54,50,52,54,44,51,50,46,55,52,55,54,50,54,93,44,91,45,56,52,46,52,52,52,51,53,51,44,51,50,46,53,54,50,48,56,51,93,44,91,45,56,52,46,51,57,50,51,49,54,44,51,50,46,52,49,52,48,52,54,93,44,91,45,56,52,46,51,54,51,50,49,54,44,51,50,46,51,57,55,54,52,57,93,44,91,45,56,52,46,50,53,52,54,49,51,44,51,50,46,51,55,50,48,53,51,93,44,91,45,56,52,46,49,50,50,51,52,55,44,51,50,46,53,48,53,57,50,49,93,44,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,93,93,44,91,91,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,44,91,45,56,52,46,48,49,56,49,52,55,44,51,50,46,53,48,54,52,48,54,93,44,91,45,56,52,46,48,48,56,52,57,44,51,50,46,53,50,49,55,54,57,93,44,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,56,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,56,51,48,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,56,56,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,50,55,56,53,57,44,51,55,46,51,48,53,57,50,55,93,44,91,45,55,54,46,55,52,49,48,49,55,44,51,55,46,50,54,53,57,56,52,93,44,91,45,55,54,46,54,56,48,49,53,49,44,51,55,46,50,54,53,57,57,55,93,44,91,45,55,54,46,55,50,55,56,53,57,44,51,55,46,51,48,53,57,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,49,53,34,44,34,78,65,77,69,34,58,34,83,99,117,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,51,56,54,54,44,51,50,46,57,55,48,50,50,53,93,44,91,45,49,48,49,46,49,55,51,51,55,56,44,51,50,46,57,54,51,53,57,55,93,44,91,45,49,48,49,46,49,55,52,53,54,50,44,51,50,46,53,50,55,55,48,51,93,44,91,45,49,48,48,46,54,54,48,54,50,54,44,51,50,46,53,50,53,51,49,50,93,44,91,45,49,48,48,46,54,53,53,56,55,44,51,50,46,57,54,51,52,54,57,93,44,91,45,49,48,49,46,48,51,56,54,54,44,51,50,46,57,55,48,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,71,105,108,112,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,54,55,53,55,57,56,44,51,57,46,57,51,50,52,52,53,93,44,91,45,49,48,53,46,54,57,48,51,52,56,44,51,57,46,56,53,49,57,57,54,93,44,91,45,49,48,53,46,53,51,57,51,57,51,44,51,57,46,55,55,50,51,49,93,44,91,45,49,48,53,46,51,57,55,57,52,57,44,51,57,46,55,52,54,48,52,93,44,91,45,49,48,53,46,51,57,55,56,52,57,44,51,57,46,57,49,50,56,56,54,93,44,91,45,49,48,53,46,54,55,53,55,57,56,44,51,57,46,57,51,50,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,99,67,108,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,54,51,52,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,55,49,52,49,52,44,51,53,46,51,51,53,57,52,54,93,44,91,45,57,55,46,54,54,56,48,57,57,44,51,52,46,56,53,53,49,54,52,93,44,91,45,57,54,46,57,51,50,52,51,54,44,51,52,46,56,53,52,52,57,54,93,44,91,45,57,54,46,57,51,48,53,56,54,44,51,52,46,57,54,52,51,54,52,93,44,91,45,57,55,46,48,49,53,57,51,44,51,52,46,57,48,55,51,52,56,93,44,91,45,57,55,46,49,52,50,51,52,57,44,51,52,46,57,50,56,49,55,54,93,44,91,45,57,55,46,51,52,49,53,48,57,44,51,52,46,57,54,52,48,48,49,93,44,91,45,57,55,46,51,53,52,49,57,50,44,51,53,46,48,55,54,54,53,54,93,44,91,45,57,55,46,53,53,52,55,57,44,51,53,46,50,50,52,51,50,57,93,44,91,45,57,55,46,53,53,54,57,56,55,44,51,53,46,50,56,56,52,52,93,44,91,45,57,55,46,54,55,49,52,49,53,44,51,53,46,51,51,55,52,54,53,93,44,91,45,57,55,46,54,55,49,52,49,52,44,51,53,46,51,51,53,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,80,101,110,100,108,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,54,52,57,48,55,53,44,51,56,46,53,57,49,53,49,53,93,44,91,45,55,57,46,53,51,54,56,55,44,51,56,46,53,53,48,57,49,55,93,44,91,45,55,57,46,52,55,54,54,51,56,44,51,56,46,52,53,55,50,50,56,93,44,91,45,55,57,46,51,49,50,50,55,54,44,51,56,46,52,49,49,56,55,54,93,44,91,45,55,57,46,50,50,52,53,56,51,44,51,56,46,52,55,55,53,56,56,93,44,91,45,55,57,46,48,53,55,50,53,51,44,51,56,46,55,54,49,52,49,51,93,44,91,45,55,57,46,49,51,52,50,57,54,44,51,56,46,56,49,51,51,52,93,44,91,45,55,57,46,51,52,57,56,54,55,44,51,56,46,57,53,55,53,48,57,93,44,91,45,55,57,46,52,53,53,52,55,50,44,51,56,46,57,50,57,57,49,93,44,91,45,55,57,46,53,51,57,48,55,53,44,51,56,46,56,52,49,52,49,49,93,44,91,45,55,57,46,53,49,48,48,55,51,44,51,56,46,55,56,48,55,49,50,93,44,91,45,55,57,46,54,50,54,55,55,52,44,51,56,46,54,54,52,50,49,52,93,44,91,45,55,57,46,54,52,57,48,55,53,44,51,56,46,53,57,49,53,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,80,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,55,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,57,52,55,48,52,44,51,56,46,56,50,50,55,57,93,44,91,45,55,56,46,53,52,56,56,50,56,44,51,56,46,55,51,56,54,53,53,93,44,91,45,55,56,46,54,52,49,55,54,57,44,51,56,46,54,48,52,55,49,57,93,44,91,45,55,56,46,54,57,49,51,49,50,44,51,56,46,53,49,48,48,48,56,93,44,91,45,55,56,46,52,56,53,55,52,44,51,56,46,52,50,49,53,55,57,93,44,91,45,55,56,46,52,53,50,56,48,49,44,51,56,46,52,55,53,53,50,55,93,44,91,45,55,56,46,51,51,56,49,55,54,44,51,56,46,54,50,55,51,49,50,93,44,91,45,55,56,46,50,56,52,56,48,53,44,51,56,46,55,53,57,51,49,53,93,44,91,45,55,56,46,51,57,52,55,48,52,44,51,56,46,56,50,50,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,101,32,70,108,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,57,48,57,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,49,51,54,50,57,44,51,53,46,51,50,51,51,52,52,93,44,91,45,57,52,46,56,49,52,50,55,54,44,51,53,46,50,48,50,51,51,49,93,44,91,45,57,52,46,57,50,55,55,55,52,44,51,53,46,50,48,50,54,49,93,44,91,45,57,52,46,57,50,55,56,54,51,44,51,53,46,48,53,56,50,52,54,93,44,91,45,57,53,46,48,53,57,53,49,50,44,51,52,46,56,53,53,48,49,57,93,44,91,45,57,53,46,48,53,57,54,49,54,44,51,52,46,54,56,48,55,51,54,93,44,91,45,57,52,46,57,51,55,53,53,53,44,51,52,46,54,56,48,55,57,50,93,44,91,45,57,52,46,57,51,55,54,48,52,44,51,52,46,53,48,55,50,57,54,93,44,91,45,57,52,46,52,54,49,49,52,57,44,51,52,46,53,48,55,52,53,55,93,44,91,45,57,52,46,52,53,52,53,54,52,44,51,52,46,55,50,56,57,54,50,93,44,91,45,57,52,46,52,52,55,55,55,52,44,51,52,46,57,51,51,57,51,55,93,44,91,45,57,52,46,52,51,53,53,57,44,51,53,46,51,56,54,49,50,50,93,44,91,45,57,52,46,52,57,53,50,53,49,44,51,53,46,51,48,49,50,93,44,91,45,57,52,46,54,54,56,55,57,54,44,51,53,46,50,57,53,48,50,57,93,44,91,45,57,52,46,56,49,51,54,50,57,44,51,53,46,51,50,51,51,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,117,109,109,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,48,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,52,53,48,57,44,51,55,46,56,49,57,49,50,49,93,44,91,45,56,48,46,57,48,53,57,54,49,44,51,55,46,54,57,56,53,57,54,93,44,91,45,56,49,46,48,54,56,55,55,52,44,51,55,46,54,51,57,56,50,51,93,44,91,45,56,49,46,48,57,52,54,51,44,51,55,46,53,56,56,54,53,56,93,44,91,45,56,48,46,56,53,57,52,53,55,44,51,55,46,52,50,57,52,57,49,93,44,91,45,56,48,46,56,53,56,52,54,54,44,51,55,46,52,50,56,51,48,55,93,44,91,45,56,48,46,54,54,51,51,52,56,44,51,55,46,55,51,49,54,57,54,93,44,91,45,56,48,46,56,48,54,51,49,54,44,51,55,46,56,54,56,57,49,53,93,44,91,45,56,48,46,57,52,53,48,57,44,51,55,46,56,49,57,49,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,101,99,107,108,101,110,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,52,51,49,52,44,34,98,101,100,115,34,58,50,54,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,53,48,51,52,57,44,51,53,46,50,48,56,52,49,50,93,44,91,45,56,48,46,54,54,54,52,56,44,51,53,46,50,54,55,57,51,52,93,44,91,45,56,48,46,55,56,52,49,54,55,44,51,53,46,53,48,54,48,49,55,93,44,91,45,56,48,46,57,52,55,51,52,52,44,51,53,46,52,56,56,52,55,51,93,44,91,45,56,48,46,57,53,52,56,54,44,51,53,46,52,48,48,48,55,56,93,44,91,45,56,49,46,48,51,51,57,48,57,44,51,53,46,49,52,56,54,57,93,44,91,45,56,49,46,48,52,49,52,57,54,44,51,53,46,48,52,52,55,49,51,93,44,91,45,56,48,46,57,48,54,51,56,53,44,51,53,46,48,55,54,50,55,55,93,44,91,45,56,48,46,56,52,48,50,55,56,44,51,53,46,48,48,49,54,57,50,93,44,91,45,56,48,46,53,53,48,51,52,57,44,51,53,46,50,48,56,52,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,69,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,51,53,53,53,44,34,98,101,100,115,34,58,51,53,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,50,55,50,48,54,51,44,52,48,46,56,57,55,52,50,55,93,44,91,45,55,52,46,51,55,49,55,51,56,44,52,48,46,55,51,57,54,52,93,44,91,45,55,52,46,49,51,54,55,48,51,44,52,48,46,54,55,52,52,52,52,93,44,91,45,55,52,46,49,52,55,53,50,57,44,52,48,46,55,56,54,52,57,49,93,44,91,45,55,52,46,49,51,48,48,49,54,44,52,48,46,56,49,57,57,51,56,93,44,91,45,55,52,46,50,55,50,48,54,51,44,52,48,46,56,57,55,52,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,76,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,56,54,44,34,98,101,100,115,34,58,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,54,49,57,53,55,44,51,57,46,57,54,55,54,48,54,93,44,91,45,57,51,46,51,54,52,56,48,56,44,51,57,46,55,48,51,56,48,51,93,44,91,45,57,51,46,50,54,54,57,54,56,44,51,57,46,55,48,51,53,54,50,93,44,91,45,57,50,46,56,53,55,57,50,44,51,57,46,54,57,57,57,56,53,93,44,91,45,57,50,46,56,52,55,52,55,55,44,52,48,46,48,51,55,51,48,49,93,44,91,45,57,50,46,56,53,54,49,57,49,44,52,48,46,48,51,55,50,53,51,93,44,91,45,57,51,46,51,54,49,57,53,49,44,52,48,46,48,51,51,48,57,56,93,44,91,45,57,51,46,51,54,49,57,53,55,44,51,57,46,57,54,55,54,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,57,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,53,53,52,56,54,44,51,50,46,50,57,55,53,54,49,93,44,91,45,56,50,46,53,57,55,54,55,49,44,51,50,46,48,49,51,57,55,57,93,44,91,45,56,50,46,53,52,51,54,53,53,44,51,49,46,57,53,56,57,49,52,93,44,91,45,56,50,46,52,56,51,49,51,49,44,51,49,46,57,54,56,57,54,49,93,44,91,45,56,50,46,52,48,57,49,51,44,51,50,46,51,53,51,55,51,56,93,44,91,45,56,50,46,54,53,53,52,56,54,44,51,50,46,50,57,55,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,83,104,101,114,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,57,49,53,56,53,44,52,53,46,54,52,49,50,93,44,91,45,49,50,48,46,56,51,56,55,55,50,44,52,53,46,53,49,53,57,52,54,93,44,91,45,49,50,48,46,56,54,56,53,54,57,44,52,53,46,52,48,49,49,52,54,93,44,91,45,49,50,49,46,48,50,52,50,57,52,44,52,53,46,50,49,57,53,51,49,93,44,91,45,49,50,48,46,56,56,57,51,53,55,44,52,53,46,50,48,50,51,48,53,93,44,91,45,49,50,48,46,55,50,51,53,54,57,44,52,53,46,49,51,48,57,49,49,93,44,91,45,49,50,48,46,53,48,51,55,51,51,44,52,53,46,48,56,51,52,55,55,93,44,91,45,49,50,48,46,53,51,50,48,53,57,44,52,53,46,51,55,49,50,52,57,93,44,91,45,49,50,48,46,52,57,48,51,53,57,44,52,53,46,52,54,56,57,52,57,93,44,91,45,49,50,48,46,51,54,52,57,53,53,44,52,53,46,52,57,55,50,53,93,44,91,45,49,50,48,46,52,49,49,54,57,57,44,52,53,46,53,57,54,48,54,55,93,44,91,45,49,50,48,46,54,53,51,53,48,51,44,52,53,46,55,51,55,49,56,49,93,44,91,45,49,50,48,46,57,49,53,56,53,44,52,53,46,54,52,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,55,54,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,56,48,51,52,44,51,51,46,55,54,49,55,55,52,93,44,91,45,56,51,46,52,48,54,49,56,57,44,51,51,46,54,57,56,51,48,55,93,44,91,45,56,51,46,50,55,55,54,49,49,44,51,51,46,53,50,55,54,51,93,44,91,45,56,51,46,50,55,57,57,51,49,44,51,51,46,52,56,51,52,51,56,93,44,91,45,56,51,46,49,54,52,50,48,55,44,51,51,46,51,53,53,48,51,93,44,91,45,56,51,46,48,49,50,56,53,51,44,51,51,46,52,54,57,49,55,56,93,44,91,45,56,50,46,57,57,53,54,48,50,44,51,51,46,54,57,51,53,56,51,93,44,91,45,56,51,46,49,49,56,55,50,57,44,51,51,46,54,57,56,56,49,56,93,44,91,45,56,51,46,50,56,48,51,52,44,51,51,46,55,54,49,55,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,117,102,102,97,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,50,53,57,53,51,44,52,52,46,49,57,54,53,55,53,93,44,91,45,57,57,46,51,48,48,49,56,44,52,52,46,49,57,52,56,51,93,44,91,45,57,57,46,53,55,54,53,55,49,44,52,52,46,49,57,50,52,50,49,93,44,91,45,57,57,46,53,54,50,53,51,54,44,52,52,46,49,48,49,53,49,57,93,44,91,45,57,57,46,51,53,51,55,50,44,52,51,46,57,57,53,51,50,57,93,44,91,45,57,57,46,51,53,53,56,54,52,44,52,51,46,57,51,52,51,55,49,93,44,91,45,57,56,46,57,50,54,57,57,55,44,52,51,46,57,51,53,49,52,51,93,44,91,45,57,56,46,57,50,53,57,53,51,44,52,52,46,49,57,54,53,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,101,108,108,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,51,51,56,57,55,44,52,51,46,55,49,54,57,52,50,93,44,91,45,49,48,48,46,53,53,52,54,56,55,44,52,51,46,55,51,55,50,52,55,93,44,91,45,49,48,48,46,54,55,57,51,50,50,44,52,51,46,55,49,49,54,51,54,93,44,91,45,49,48,48,46,57,56,55,48,50,55,44,52,51,46,56,52,57,49,51,50,93,44,91,45,49,48,49,46,48,54,52,51,50,54,44,52,51,46,56,52,49,48,57,93,44,91,45,49,48,49,46,50,50,56,51,51,49,44,52,51,46,55,57,53,48,52,57,93,44,91,45,49,48,49,46,50,50,56,50,51,52,44,52,51,46,51,56,57,49,56,53,93,44,91,45,49,48,48,46,50,49,52,50,50,49,44,52,51,46,51,57,48,51,50,49,93,44,91,45,49,48,48,46,50,51,48,56,52,53,44,52,51,46,55,49,51,56,53,54,93,44,91,45,49,48,48,46,51,51,56,57,55,44,52,51,46,55,49,54,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,69,99,116,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,51,52,50,44,34,98,101,100,115,34,58,54,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,50,56,55,48,52,56,44,51,50,46,48,56,54,57,57,49,93,44,91,45,49,48,50,46,55,57,57,48,56,54,44,51,50,46,48,56,53,55,57,53,93,44,91,45,49,48,50,46,55,57,56,57,51,57,44,51,49,46,54,53,49,55,56,51,93,44,91,45,49,48,50,46,55,54,55,50,52,54,44,51,49,46,54,53,49,55,49,52,93,44,91,45,49,48,50,46,51,49,56,48,53,44,51,49,46,54,53,49,51,50,55,93,44,91,45,49,48,50,46,50,56,55,51,52,53,44,51,49,46,54,53,49,50,55,54,93,44,91,45,49,48,50,46,50,56,55,48,52,56,44,51,50,46,48,56,54,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,51,34,44,34,78,65,77,69,34,58,34,76,105,109,101,115,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,49,53,44,34,98,101,100,115,34,58,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,51,50,50,49,53,44,51,49,46,55,48,56,56,56,55,93,44,91,45,57,54,46,56,48,49,49,50,51,44,51,49,46,53,50,50,50,54,57,93,44,91,45,57,54,46,53,57,54,56,54,50,44,51,49,46,50,50,48,57,93,44,91,45,57,54,46,51,49,57,49,54,53,44,51,49,46,51,53,55,49,50,57,93,44,91,45,57,54,46,50,51,54,54,50,57,44,51,49,46,52,49,51,51,57,50,93,44,91,45,57,54,46,52,57,54,55,49,51,44,51,49,46,55,57,54,49,57,49,93,44,91,45,57,54,46,55,49,57,49,49,52,44,51,49,46,56,49,52,56,56,55,93,44,91,45,57,54,46,57,51,50,50,49,53,44,51,49,46,55,48,56,56,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,71,114,97,121,115,32,72,97,114,98,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,57,54,55,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,52,50,57,53,53,51,44,52,55,46,53,51,50,57,52,57,93,44,91,45,49,50,52,46,52,50,49,55,50,56,44,52,55,46,51,57,51,50,57,51,93,44,91,45,49,50,52,46,51,48,54,51,54,55,44,52,55,46,50,52,56,48,56,51,93,44,91,45,49,50,52,46,50,53,49,50,57,49,44,52,55,46,48,57,54,54,53,52,93,44,91,45,49,50,52,46,50,51,52,51,57,51,44,52,54,46,56,57,49,49,56,56,93,44,91,45,49,50,52,46,49,55,53,49,51,49,44,52,54,46,55,57,51,55,51,50,93,44,91,45,49,50,51,46,51,55,48,57,53,44,52,54,46,55,57,50,49,50,57,93,44,91,45,49,50,51,46,49,54,48,53,56,56,44,52,54,46,55,57,51,51,56,51,93,44,91,45,49,50,51,46,49,53,56,51,54,52,44,52,54,46,57,57,53,56,55,49,93,44,91,45,49,50,51,46,50,48,49,56,57,49,44,52,55,46,48,56,53,48,53,57,93,44,91,45,49,50,51,46,52,56,56,57,52,51,44,52,55,46,48,56,50,54,52,54,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,53,49,55,55,49,54,93,44,91,45,49,50,52,46,48,52,54,55,52,44,52,55,46,53,49,56,53,50,53,93,44,91,45,49,50,52,46,52,50,57,53,53,51,44,52,55,46,53,51,50,57,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,114,107,101,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,52,57,53,44,34,98,101,100,115,34,58,50,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,50,53,53,55,50,44,51,57,46,52,57,51,50,56,57,93,44,91,45,55,55,46,56,56,57,49,51,53,44,51,57,46,53,57,55,52,53,51,93,44,91,45,55,56,46,48,50,50,49,49,44,51,57,46,54,49,57,54,53,55,93,44,91,45,55,56,46,49,51,56,57,51,55,44,51,57,46,53,57,51,55,57,54,93,44,91,45,55,56,46,50,50,56,55,54,54,44,51,57,46,51,57,49,50,51,51,93,44,91,45,55,56,46,48,51,51,49,57,49,44,51,57,46,50,54,52,54,49,50,93,44,91,45,55,55,46,56,50,53,53,55,50,44,51,57,46,52,57,51,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,86,105,108,108,97,108,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,57,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,50,49,56,57,57,44,49,56,46,49,53,49,57,53,52,93,44,91,45,54,54,46,52,51,48,51,49,52,44,49,56,46,48,56,50,48,53,51,93,44,91,45,54,54,46,52,52,52,53,54,44,49,56,46,49,55,54,54,55,52,93,44,91,45,54,54,46,53,50,49,56,57,57,44,49,56,46,49,53,49,57,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,80,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,52,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,55,56,51,56,51,51,44,52,54,46,49,57,50,54,57,57,93,44,91,45,49,49,48,46,55,57,52,55,55,52,44,52,53,46,53,57,48,54,56,50,93,44,91,45,49,49,48,46,57,49,57,50,50,50,44,52,53,46,53,50,52,56,54,49,93,44,91,45,49,49,48,46,57,49,55,56,57,57,44,52,53,46,51,53,49,50,55,51,93,44,91,45,49,49,49,46,48,51,56,49,54,57,44,52,53,46,51,53,49,51,57,49,93,44,91,45,49,49,49,46,48,52,53,48,54,54,44,52,53,46,48,48,48,57,53,93,44,91,45,49,49,48,46,55,48,52,52,55,54,44,52,52,46,57,57,50,49,55,52,93,44,91,45,49,48,57,46,55,57,56,52,56,51,44,52,53,46,48,48,50,51,51,51,93,44,91,45,49,48,57,46,55,57,56,54,55,51,44,52,53,46,49,54,55,51,51,57,93,44,91,45,49,49,48,46,48,54,52,53,49,56,44,52,53,46,49,55,50,49,50,57,93,44,91,45,49,49,48,46,50,50,56,48,53,50,44,52,53,46,49,55,50,49,50,57,93,44,91,45,49,49,48,46,50,50,48,57,48,56,44,52,53,46,55,56,52,57,55,51,93,44,91,45,49,49,48,46,50,57,50,54,54,50,44,52,53,46,55,56,53,48,53,55,93,44,91,45,49,49,48,46,50,56,49,57,49,54,44,52,54,46,49,56,52,51,57,55,93,44,91,45,49,49,48,46,55,56,51,56,51,51,44,52,54,46,49,57,50,54,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,68,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,55,48,52,55,44,34,98,101,100,115,34,58,49,53,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,56,51,48,57,53,44,51,51,46,52,51,48,52,53,93,44,91,45,57,55,46,51,57,56,52,56,44,51,50,46,57,57,48,56,51,57,93,44,91,45,57,55,46,48,51,50,50,56,55,44,51,50,46,57,56,57,51,50,52,93,44,91,45,57,54,46,56,52,51,57,55,57,44,51,50,46,57,56,55,53,53,52,93,44,91,45,57,54,46,56,51,52,49,49,44,51,51,46,52,48,53,52,57,56,93,44,91,45,57,54,46,57,52,51,56,54,44,51,51,46,52,49,54,52,49,93,44,91,45,57,55,46,51,56,51,48,57,53,44,51,51,46,52,51,48,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,55,49,49,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,55,52,54,56,57,44,51,53,46,49,56,52,48,51,54,93,44,91,45,56,49,46,55,53,53,48,56,51,44,51,52,46,57,51,48,50,56,93,44,91,45,56,49,46,55,49,49,54,57,52,44,51,52,46,57,49,50,53,55,55,93,44,91,45,56,49,46,52,53,55,50,53,55,44,51,52,46,56,51,57,50,56,93,44,91,45,56,49,46,52,56,55,48,49,54,44,51,53,46,48,51,52,56,53,51,93,44,91,45,56,49,46,52,48,56,56,55,54,44,51,53,46,48,52,54,51,50,52,93,44,91,45,56,49,46,51,54,54,54,44,51,53,46,49,54,52,56,56,51,93,44,91,45,56,49,46,55,54,56,49,48,50,44,51,53,46,49,56,48,54,49,49,93,44,91,45,56,49,46,56,55,52,54,56,57,44,51,53,46,49,56,52,48,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,89,97,110,99,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,49,54,55,51,56,44,51,54,46,48,55,50,56,50,55,93,44,91,45,56,50,46,53,48,53,52,50,53,44,51,53,46,57,55,55,52,51,50,93,44,91,45,56,50,46,52,48,56,54,48,50,44,51,53,46,56,49,56,49,55,56,93,44,91,45,56,50,46,50,55,53,51,57,57,44,51,53,46,55,48,52,52,51,56,93,44,91,45,56,50,46,49,51,51,52,56,52,44,51,53,46,56,50,51,51,48,57,93,44,91,45,56,50,46,49,57,49,55,48,53,44,51,53,46,57,57,48,54,51,54,93,44,91,45,56,50,46,51,52,53,50,57,44,51,54,46,48,55,54,52,53,57,93,44,91,45,56,50,46,52,49,54,55,51,56,44,51,54,46,48,55,50,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,56,55,34,44,34,78,65,77,69,34,58,34,82,101,100,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,49,48,52,57,55,44,51,51,46,56,55,55,50,48,52,93,44,91,45,57,53,46,51,48,56,54,51,55,44,51,51,46,51,56,48,54,54,50,93,44,91,45,57,53,46,51,48,54,54,52,44,51,51,46,51,55,56,48,50,55,93,44,91,45,57,53,46,49,50,53,52,53,49,44,51,51,46,51,56,57,52,53,52,93,44,91,45,57,52,46,56,48,56,55,56,51,44,51,51,46,51,54,51,54,51,54,93,44,91,45,57,52,46,55,52,54,57,50,53,44,51,51,46,51,50,56,57,51,56,93,44,91,45,57,52,46,55,52,54,48,57,54,44,51,51,46,55,48,51,48,49,54,93,44,91,45,57,52,46,56,54,48,54,56,55,44,51,51,46,55,52,49,57,52,53,93,44,91,45,57,52,46,57,57,56,48,49,57,44,51,51,46,56,54,48,53,48,52,93,44,91,45,57,53,46,49,53,53,56,56,50,44,51,51,46,57,51,54,53,55,50,93,44,91,45,57,53,46,51,49,48,52,57,55,44,51,51,46,56,55,55,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,49,34,44,34,78,65,77,69,34,58,34,77,97,116,97,103,111,114,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,55,52,51,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,48,57,49,55,56,44,50,56,46,57,54,51,50,57,49,93,44,91,45,57,54,46,51,50,51,53,50,50,44,50,56,46,54,55,53,53,57,55,93,44,91,45,57,54,46,51,57,53,49,57,56,44,50,56,46,50,55,57,55,51,54,93,44,91,45,57,54,46,49,56,50,50,52,50,44,50,56,46,52,53,50,48,51,54,93,44,91,45,57,53,46,55,53,48,50,51,56,44,50,56,46,54,51,56,52,49,57,93,44,91,45,57,53,46,52,57,53,54,53,44,50,56,46,55,54,52,56,51,55,93,44,91,45,57,53,46,54,53,53,51,57,56,44,50,56,46,57,53,49,55,49,49,93,44,91,45,57,53,46,55,54,52,57,51,55,44,50,56,46,57,54,55,51,53,57,93,44,91,45,57,53,46,56,52,49,52,57,57,44,50,57,46,48,57,56,54,50,93,44,91,45,57,53,46,56,55,52,48,50,56,44,50,57,46,50,50,57,55,48,50,93,44,91,45,57,53,46,57,54,53,49,57,54,44,50,57,46,49,52,54,56,54,53,93,44,91,45,57,54,46,51,48,57,49,55,56,44,50,56,46,57,54,51,50,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,83,116,101,118,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,56,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,53,51,48,50,54,44,52,53,46,53,56,53,53,50,54,93,44,91,45,57,54,46,50,52,49,51,50,56,44,52,53,46,52,49,50,54,54,55,93,44,91,45,57,54,46,49,49,55,48,51,54,44,52,53,46,52,49,49,57,57,51,93,44,91,45,57,53,46,55,52,55,52,48,50,44,52,53,46,52,49,50,51,49,51,93,44,91,45,57,53,46,55,53,56,53,48,56,44,52,53,46,55,53,57,57,51,50,93,44,91,45,57,54,46,50,53,52,48,50,50,44,52,53,46,55,53,57,56,50,93,44,91,45,57,54,46,50,53,51,48,50,54,44,52,53,46,53,56,53,53,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,49,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,55,57,57,55,53,44,51,51,46,53,57,57,55,57,50,93,44,91,45,56,50,46,56,53,49,57,53,52,44,51,51,46,52,52,51,53,52,51,93,44,91,45,56,50,46,55,53,53,56,52,54,44,51,51,46,50,53,51,52,52,93,44,91,45,56,50,46,53,53,57,55,53,51,44,51,51,46,51,50,55,50,55,93,44,91,45,56,50,46,52,51,49,57,53,55,44,51,51,46,50,55,52,56,51,93,44,91,45,56,50,46,51,56,51,56,50,57,44,51,51,46,51,49,50,49,48,54,93,44,91,45,56,50,46,53,51,53,55,55,57,44,51,51,46,51,53,55,52,54,93,44,91,45,56,50,46,54,52,57,55,48,53,44,51,51,46,54,48,56,55,54,56,93,44,91,45,56,50,46,54,55,57,57,55,53,44,51,51,46,53,57,57,55,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,72,97,114,100,101,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,53,50,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,57,55,54,50,49,44,51,52,46,50,50,52,51,53,53,93,44,91,45,57,57,46,55,55,50,48,52,51,44,51,52,46,48,57,51,50,56,54,93,44,91,45,57,57,46,53,55,51,49,54,49,44,51,52,46,48,54,51,54,48,56,93,44,91,45,57,57,46,52,55,53,50,57,52,44,51,52,46,48,56,53,54,49,56,93,44,91,45,57,57,46,52,55,53,49,49,53,44,51,52,46,51,57,53,57,51,93,44,91,45,57,57,46,53,54,57,54,57,54,44,51,52,46,52,49,56,52,49,56,93,44,91,45,57,57,46,54,57,52,53,50,56,44,51,52,46,51,55,56,50,49,56,93,44,91,45,57,57,46,56,52,52,53,56,53,44,51,52,46,53,48,54,57,49,53,93,44,91,45,57,57,46,57,57,55,53,48,49,44,51,52,46,53,54,48,53,55,52,93,44,91,45,57,57,46,57,57,55,55,50,44,51,52,46,51,49,49,56,50,57,93,44,91,45,57,57,46,57,57,55,54,50,49,44,51,52,46,50,50,52,51,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,57,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,54,52,49,50,51,44,51,56,46,53,50,48,55,50,56,93,44,91,45,57,48,46,51,52,49,52,52,54,44,51,56,46,51,56,56,50,57,56,93,44,91,45,57,48,46,51,53,56,54,50,56,44,51,56,46,50,50,49,57,56,49,93,44,91,45,57,48,46,50,53,50,54,54,54,44,51,56,46,49,50,55,56,49,50,93,44,91,45,57,48,46,50,48,53,50,48,53,44,51,56,46,48,56,54,57,48,55,93,44,91,45,57,48,46,48,51,53,56,54,55,44,51,56,46,49,51,53,55,51,54,93,44,91,45,57,48,46,48,51,54,51,49,54,44,51,56,46,50,50,51,50,52,54,93,44,91,45,56,57,46,56,57,57,48,52,51,44,51,56,46,50,50,48,55,53,53,93,44,91,45,56,57,46,57,49,51,50,50,55,44,51,56,46,51,48,56,50,54,57,93,44,91,45,57,48,46,48,51,54,49,49,51,44,51,56,46,51,50,51,51,55,55,93,44,91,45,57,48,46,50,54,52,49,50,51,44,51,56,46,53,50,48,55,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,74,101,110,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,52,52,57,55,55,44,51,50,46,56,49,50,55,52,49,93,44,91,45,56,50,46,48,56,50,52,52,44,51,50,46,54,54,51,48,54,49,93,44,91,45,56,50,46,48,48,49,50,51,54,44,51,50,46,54,48,54,57,49,93,44,91,45,56,49,46,56,52,49,48,48,53,44,51,50,46,54,52,57,48,57,51,93,44,91,45,56,49,46,56,54,55,57,51,56,44,51,50,46,54,56,49,49,53,93,44,91,45,56,49,46,55,54,55,53,53,51,44,51,50,46,57,48,57,52,49,49,93,44,91,45,56,49,46,56,53,55,57,56,53,44,51,50,46,57,53,51,56,56,50,93,44,91,45,56,50,46,48,56,49,51,51,55,44,51,50,46,57,49,54,55,55,54,93,44,91,45,56,50,46,49,52,52,57,55,55,44,51,50,46,56,49,50,55,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,71,114,97,121,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,49,55,56,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,57,50,56,49,44,51,55,46,53,54,52,51,54,93,44,91,45,56,54,46,54,54,49,56,56,44,51,55,46,53,52,49,57,51,52,93,44,91,45,56,54,46,54,49,50,48,57,53,44,51,55,46,51,57,53,49,50,51,93,44,91,45,56,54,46,52,54,57,49,50,54,44,51,55,46,51,50,49,48,57,57,93,44,91,45,56,54,46,49,53,55,53,56,57,44,51,55,46,51,51,53,54,52,57,93,44,91,45,56,54,46,48,55,51,54,50,54,44,51,55,46,51,52,56,48,52,53,93,44,91,45,56,54,46,48,52,55,53,57,56,44,51,55,46,52,52,57,57,51,51,93,44,91,45,56,54,46,49,49,52,48,57,53,44,51,55,46,53,54,55,49,51,49,93,44,91,45,56,54,46,50,55,53,50,55,44,51,55,46,53,57,51,53,49,57,93,44,91,45,56,54,46,53,57,50,56,49,44,51,55,46,53,54,52,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,54,51,34,44,34,78,65,77,69,34,58,34,80,97,108,111,32,80,105,110,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,49,55,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,55,53,54,49,54,44,51,50,46,57,53,52,51,52,57,93,44,91,45,57,56,46,53,55,54,50,53,54,44,51,50,46,53,49,53,49,54,51,93,44,91,45,57,56,46,52,55,53,49,55,55,44,51,50,46,53,49,51,48,51,57,93,44,91,45,57,56,46,48,54,56,53,52,53,44,51,50,46,53,49,49,54,50,54,93,44,91,45,57,56,46,48,54,54,56,51,54,44,51,50,46,53,53,56,56,50,50,93,44,91,45,57,56,46,48,53,54,48,57,52,44,51,51,46,48,48,51,51,51,50,93,44,91,45,57,56,46,52,50,54,53,53,51,44,51,51,46,48,48,55,57,49,51,93,44,91,45,57,56,46,53,55,53,54,49,54,44,51,50,46,57,53,52,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,72,101,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,57,51,56,48,53,44,51,51,46,52,50,56,48,57,56,93,44,91,45,56,53,46,50,51,54,53,49,56,44,51,51,46,49,50,57,53,53,57,93,44,91,45,56,52,46,57,51,57,48,49,53,44,51,51,46,50,50,52,54,57,51,93,44,91,45,56,53,46,48,49,53,51,53,56,44,51,51,46,52,50,53,53,48,54,93,44,91,45,56,53,46,50,57,51,56,48,53,44,51,51,46,52,50,56,48,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,49,55,49,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,50,57,54,54,55,44,51,52,46,53,54,55,48,56,49,93,44,91,45,56,55,46,53,50,57,55,50,50,44,51,52,46,51,48,52,53,57,56,93,44,91,45,56,55,46,49,48,57,57,49,49,44,51,52,46,50,57,57,50,57,57,93,44,91,45,56,55,46,49,49,48,49,49,49,44,51,52,46,51,49,51,55,57,57,93,44,91,45,56,55,46,49,48,53,48,55,51,44,51,52,46,54,56,54,48,51,55,93,44,91,45,56,55,46,50,54,48,54,55,54,44,51,52,46,55,53,56,54,50,54,93,44,91,45,56,55,46,52,50,54,53,49,44,51,52,46,56,48,48,48,50,50,93,44,91,45,56,55,46,52,51,51,48,54,44,51,52,46,55,49,55,52,56,53,93,44,91,45,56,55,46,53,50,57,54,54,55,44,51,52,46,53,54,55,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,71,117,97,121,110,97,98,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,54,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,51,49,53,56,44,49,56,46,52,50,52,54,53,54,93,44,91,45,54,54,46,49,52,51,56,54,49,44,49,56,46,50,55,57,53,57,93,44,91,45,54,54,46,48,56,48,52,55,53,44,49,56,46,50,57,55,50,57,53,93,44,91,45,54,54,46,49,48,56,50,56,49,44,49,56,46,52,51,56,57,48,50,93,44,91,45,54,54,46,49,51,49,53,56,44,49,56,46,52,50,52,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,56,55,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,50,52,51,50,52,44,51,52,46,57,57,52,55,57,93,44,91,45,56,57,46,55,50,51,52,52,50,44,51,52,46,55,55,50,51,49,49,93,44,91,45,56,57,46,54,54,57,49,54,44,51,52,46,54,56,53,55,56,54,93,44,91,45,56,57,46,54,54,56,52,52,56,44,51,52,46,53,53,52,51,54,55,93,44,91,45,56,57,46,52,55,54,54,52,50,44,51,52,46,53,53,52,49,54,56,93,44,91,45,56,57,46,50,52,54,49,51,51,44,51,52,46,52,57,53,54,51,51,93,44,91,45,56,57,46,50,52,53,54,52,53,44,51,52,46,53,56,51,50,51,52,93,44,91,45,56,57,46,50,57,56,51,51,52,44,51,52,46,53,56,50,57,50,54,93,44,91,45,56,57,46,50,57,57,50,50,55,44,51,52,46,56,52,52,52,49,53,93,44,91,45,56,57,46,51,53,50,54,55,57,44,51,52,46,57,57,51,56,54,51,93,44,91,45,56,57,46,54,52,52,48,53,44,51,52,46,57,57,53,50,57,49,93,44,91,45,56,57,46,55,50,52,51,50,52,44,51,52,46,57,57,52,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,51,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,48,55,50,52,56,44,51,55,46,52,55,52,56,51,54,93,44,91,45,49,48,48,46,48,57,49,53,50,57,44,51,55,46,51,56,54,56,57,50,93,44,91,45,49,48,48,46,48,56,57,52,56,51,44,51,55,46,48,48,50,50,54,49,93,44,91,45,49,48,48,46,48,48,50,53,54,51,44,51,55,46,48,48,49,55,48,54,93,44,91,45,57,57,46,53,52,49,49,49,54,44,51,54,46,57,57,57,54,49,93,44,91,45,57,57,46,53,52,51,49,56,57,44,51,55,46,51,56,49,49,50,52,93,44,91,45,57,57,46,53,53,54,49,49,57,44,51,55,46,52,54,55,55,50,50,93,44,91,45,49,48,48,46,49,48,55,50,52,56,44,51,55,46,52,55,52,56,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,72,97,115,107,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,52,55,44,34,98,101,100,115,34,58,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,54,56,49,48,54,44,51,55,46,51,56,55,55,55,57,93,44,91,45,49,48,48,46,54,53,50,55,50,56,44,51,55,46,51,56,55,54,50,55,93,44,91,45,49,48,48,46,54,53,50,54,52,50,44,51,55,46,52,55,52,56,52,56,93,44,91,45,49,48,48,46,54,53,50,50,53,49,44,51,55,46,55,51,54,50,55,53,93,44,91,45,49,48,49,46,48,56,57,54,54,55,44,51,55,46,55,51,54,51,51,55,93,44,91,45,49,48,49,46,48,56,57,54,53,51,44,51,55,46,51,56,55,55,50,49,93,44,91,45,49,48,49,46,48,54,56,49,48,54,44,51,55,46,51,56,55,55,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,105,101,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,54,56,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,49,55,56,55,54,55,44,51,50,46,53,56,52,57,49,54,93,44,91,45,57,51,46,49,52,55,49,57,51,44,51,50,46,52,53,53,49,55,51,93,44,91,45,57,51,46,50,51,54,54,53,54,44,51,50,46,52,49,48,48,55,49,93,44,91,45,57,51,46,51,55,50,55,56,49,44,51,50,46,52,49,48,49,53,51,93,44,91,45,57,51,46,52,50,56,49,57,44,51,50,46,50,51,53,56,57,55,93,44,91,45,57,51,46,50,49,51,57,56,56,44,51,50,46,50,51,54,48,54,53,93,44,91,45,57,51,46,49,56,55,49,54,50,44,51,50,46,49,52,56,52,49,50,93,44,91,45,57,50,46,57,51,57,48,56,44,51,50,46,49,52,55,57,52,50,93,44,91,45,57,50,46,56,49,52,55,51,55,44,51,50,46,49,52,54,57,48,55,93,44,91,45,57,50,46,55,55,52,57,51,54,44,51,50,46,50,51,55,48,53,53,93,44,91,45,57,50,46,55,55,55,49,57,55,44,51,50,46,52,53,51,52,53,53,93,44,91,45,57,50,46,56,55,57,50,54,56,44,51,50,46,52,53,52,49,49,56,93,44,91,45,57,50,46,56,56,48,56,48,53,44,51,50,46,53,56,53,50,55,55,93,44,91,45,57,51,46,49,55,56,55,54,55,44,51,50,46,53,56,52,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,53,34,44,34,78,65,77,69,34,58,34,87,97,108,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,54,51,57,49,57,44,51,52,46,57,56,51,51,55,53,93,44,91,45,56,53,46,52,53,48,53,54,49,44,51,52,46,56,51,49,54,55,55,93,44,91,45,56,53,46,52,53,48,52,48,57,44,51,52,46,55,53,57,50,52,49,93,44,91,45,56,53,46,53,51,52,48,56,57,44,51,52,46,54,50,51,56,53,56,93,44,91,45,56,53,46,53,50,55,50,54,49,44,51,52,46,53,56,56,54,56,51,93,44,91,45,56,53,46,49,48,55,55,52,56,44,51,52,46,53,56,55,52,56,51,93,44,91,45,56,53,46,48,54,57,49,53,57,44,51,52,46,53,56,55,49,56,52,93,44,91,45,56,53,46,48,53,48,52,52,54,44,51,52,46,54,50,50,52,56,50,93,44,91,45,56,53,46,48,53,48,56,52,55,44,51,52,46,55,49,57,57,56,93,44,91,45,56,53,46,49,52,52,55,56,57,44,51,52,46,55,54,55,54,51,57,93,44,91,45,56,53,46,50,54,52,55,54,50,44,51,52,46,56,53,52,50,55,55,93,44,91,45,56,53,46,50,54,53,48,53,53,44,51,52,46,57,56,53,48,55,53,93,44,91,45,56,53,46,51,54,51,57,49,57,44,51,52,46,57,56,51,51,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,57,56,49,54,52,44,52,49,46,56,54,50,55,55,57,93,44,91,45,57,50,46,50,57,55,52,57,52,44,52,49,46,53,48,57,55,57,93,44,91,45,57,49,46,57,52,54,48,52,51,44,52,49,46,53,49,48,55,52,57,93,44,91,45,57,49,46,56,50,57,50,51,49,44,52,49,46,53,49,49,52,53,55,93,44,91,45,57,49,46,56,51,49,51,55,57,44,52,49,46,56,54,49,56,53,49,93,44,91,45,57,50,46,50,57,56,49,54,52,44,52,49,46,56,54,50,55,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,117,102,102,97,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,51,48,44,34,98,101,100,115,34,58,51,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,50,53,57,56,54,44,52,49,46,48,52,54,52,55,49,93,44,91,45,57,57,46,52,49,55,51,49,54,44,52,48,46,54,55,48,56,50,53,93,44,91,45,57,57,46,49,55,57,50,52,56,44,52,48,46,54,54,48,53,52,49,93,44,91,45,57,56,46,57,48,54,48,57,54,44,52,48,46,54,53,50,55,50,50,93,44,91,45,57,56,46,55,50,52,51,56,55,44,52,48,46,54,56,57,55,55,50,93,44,91,45,57,56,46,55,50,49,52,51,44,52,48,46,54,57,56,57,48,51,93,44,91,45,57,56,46,55,50,49,57,55,53,44,52,49,46,48,52,54,54,55,52,93,44,91,45,57,56,46,55,52,56,53,50,54,44,52,49,46,48,52,54,54,52,93,44,91,45,57,57,46,50,48,55,53,54,52,44,52,49,46,48,52,55,48,48,51,93,44,91,45,57,57,46,52,50,53,57,56,54,44,52,49,46,48,52,54,52,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,97,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,53,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,57,52,53,52,54,51,44,51,54,46,57,57,56,52,49,54,93,44,91,45,49,48,48,46,57,53,52,49,53,51,44,51,54,46,52,57,57,57,49,54,93,44,91,45,49,48,48,46,53,52,54,49,52,53,44,51,54,46,52,57,57,51,52,51,93,44,91,45,49,48,48,46,48,48,51,55,54,50,44,51,54,46,52,57,57,56,52,57,93,44,91,45,49,48,48,46,48,48,51,49,54,44,51,54,46,53,57,51,50,53,93,44,91,45,49,48,48,46,48,48,50,53,54,51,44,51,55,46,48,48,49,55,48,54,93,44,91,45,49,48,48,46,48,56,57,52,56,51,44,51,55,46,48,48,50,50,54,49,93,44,91,45,49,48,48,46,54,51,51,51,50,55,44,51,55,46,48,48,48,49,48,51,93,44,91,45,49,48,48,46,57,52,53,52,54,51,44,51,54,46,57,57,56,52,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,44,91,45,57,51,46,48,50,55,44,52,50,46,53,53,54,56,49,93,44,91,45,57,50,46,53,53,52,51,44,52,50,46,53,53,53,56,53,52,93,44,91,45,57,50,46,53,53,52,52,57,50,44,52,50,46,54,52,50,51,49,52,93,44,91,45,57,50,46,53,53,52,50,49,49,44,52,50,46,57,48,55,49,49,50,93,44,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,82,111,111,115,101,118,101,108,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,50,56,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,49,57,52,55,56,51,44,52,56,46,48,54,54,54,49,55,93,44,91,45,49,48,53,46,48,51,55,48,57,52,44,52,56,46,48,54,51,52,49,54,93,44,91,45,49,48,52,46,56,50,50,53,56,49,44,52,56,46,49,49,56,57,52,53,93,44,91,45,49,48,52,46,53,49,49,54,57,54,44,52,56,46,49,48,57,56,57,52,93,44,91,45,49,48,52,46,48,52,52,48,52,52,44,52,55,46,57,57,54,48,56,50,93,44,91,45,49,48,52,46,48,52,54,55,54,54,44,52,56,46,51,56,57,50,57,56,93,44,91,45,49,48,52,46,54,50,55,55,54,44,52,56,46,51,56,57,51,54,50,93,44,91,45,49,48,52,46,54,50,55,55,50,54,44,52,56,46,52,55,54,51,52,57,93,44,91,45,49,48,52,46,55,53,55,54,49,57,44,52,56,46,53,54,51,49,50,55,93,44,91,45,49,48,52,46,57,55,51,51,53,52,44,52,56,46,53,54,51,49,57,93,44,91,45,49,48,53,46,56,48,52,52,51,54,44,52,56,46,53,54,51,51,53,56,93,44,91,45,49,48,53,46,56,48,52,53,57,57,44,52,56,46,50,49,57,48,51,55,93,44,91,45,49,48,53,46,56,52,51,56,57,49,44,52,56,46,48,49,48,50,56,57,93,44,91,45,49,48,53,46,53,57,53,48,50,55,44,52,56,46,48,56,49,55,56,93,44,91,45,49,48,53,46,50,50,56,57,57,44,52,56,46,48,56,57,50,56,52,93,44,91,45,49,48,53,46,49,57,52,55,56,51,44,52,56,46,48,54,54,54,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,97,114,99,101,108,111,110,101,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,50,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,55,56,52,52,49,44,49,56,46,53,52,49,52,51,49,93,44,91,45,54,54,46,53,56,56,49,56,49,44,49,56,46,51,56,57,52,48,56,93,44,91,45,54,54,46,53,52,51,48,55,57,44,49,56,46,52,48,53,52,50,50,93,44,91,45,54,54,46,53,51,50,53,50,49,44,49,56,46,53,51,53,52,55,56,93,44,91,45,54,54,46,53,55,56,52,52,49,44,49,56,46,53,52,49,52,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,111,119,108,105,116,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,49,49,50,44,34,98,101,100,115,34,58,51,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,50,49,51,48,53,52,44,52,54,46,49,55,50,53,52,49,93,44,91,45,49,50,51,46,49,49,53,57,48,52,44,52,54,46,49,56,53,50,54,56,93,44,91,45,49,50,50,46,57,48,52,49,49,57,44,52,54,46,48,56,51,55,51,52,93,44,91,45,49,50,50,46,55,56,53,53,49,53,44,52,53,46,56,53,48,53,51,54,93,44,91,45,49,50,50,46,55,50,48,57,49,44,52,53,46,57,51,49,56,57,50,93,44,91,45,49,50,50,46,52,55,56,55,53,51,44,52,53,46,57,56,55,57,51,56,93,44,91,45,49,50,50,46,51,51,50,54,54,51,44,52,53,46,57,54,53,48,54,52,93,44,91,45,49,50,50,46,50,52,53,56,53,54,44,52,54,46,48,53,51,56,53,51,93,44,91,45,49,50,50,46,50,52,48,57,54,54,44,52,54,46,51,56,53,51,54,49,93,44,91,45,49,50,51,46,50,49,55,57,53,44,52,54,46,51,56,53,54,49,55,93,44,91,45,49,50,51,46,50,49,51,48,53,52,44,52,54,46,49,55,50,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,55,34,44,34,78,65,77,69,34,58,34,76,105,118,101,32,79,97,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,51,53,48,51,49,44,50,56,46,54,49,50,54,53,56,93,44,91,45,57,56,46,51,51,52,51,50,51,44,50,56,46,48,53,55,56,93,44,91,45,57,56,46,50,51,53,52,57,55,44,50,56,46,48,53,55,57,54,54,93,44,91,45,57,55,46,56,56,51,49,52,56,44,50,56,46,48,53,54,57,93,44,91,45,57,55,46,56,49,55,55,49,54,44,50,56,46,49,55,54,56,52,56,93,44,91,45,57,56,46,48,56,57,55,54,52,44,50,56,46,54,54,50,57,55,57,93,44,91,45,57,56,46,48,48,53,50,53,50,44,50,56,46,54,57,48,50,51,57,93,44,91,45,57,56,46,48,57,56,51,49,53,44,50,56,46,55,56,54,57,52,57,93,44,91,45,57,56,46,51,51,53,48,51,49,44,50,56,46,54,49,50,54,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,77,111,110,105,116,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,53,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,52,57,56,51,55,55,44,51,56,46,57,50,50,48,56,52,93,44,91,45,57,50,46,54,49,55,49,52,55,44,51,56,46,54,56,48,48,49,51,93,44,91,45,57,50,46,56,51,57,56,51,55,44,51,56,46,54,56,51,57,55,52,93,44,91,45,57,50,46,56,52,49,56,55,49,44,51,56,46,53,57,54,55,57,50,93,44,91,45,57,50,46,54,50,53,49,56,57,44,51,56,46,52,51,48,55,55,56,93,44,91,45,57,50,46,52,57,53,49,56,53,44,51,56,46,52,50,55,56,50,57,93,44,91,45,57,50,46,51,57,52,56,54,54,44,51,56,46,55,51,57,49,51,93,44,91,45,57,50,46,51,55,57,54,49,52,44,51,56,46,56,48,48,48,55,54,93,44,91,45,57,50,46,52,57,56,51,55,55,44,51,56,46,57,50,50,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,87,101,115,116,109,111,114,101,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,51,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,51,54,57,53,57,44,51,56,46,48,55,55,48,55,52,93,44,91,45,55,54,46,56,55,55,48,54,50,44,51,56,46,49,50,52,51,53,56,93,44,91,45,55,54,46,55,52,56,56,55,49,44,51,55,46,57,57,52,56,57,55,93,44,91,45,55,54,46,54,51,52,50,51,44,51,55,46,57,54,54,54,51,93,44,91,45,55,54,46,53,49,54,51,54,57,44,51,56,46,48,51,52,55,50,52,93,44,91,45,55,54,46,54,49,48,51,56,52,44,51,56,46,49,52,56,53,49,54,93,44,91,45,55,54,46,56,54,56,56,53,57,44,51,56,46,49,55,49,51,55,50,93,44,91,45,55,54,46,57,57,55,54,55,44,51,56,46,50,55,56,48,52,54,93,44,91,45,55,55,46,48,54,49,54,57,53,44,51,56,46,49,54,49,54,51,49,93,44,91,45,55,54,46,57,51,54,57,53,57,44,51,56,46,48,55,55,48,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,89,97,100,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,54,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,55,51,50,48,53,44,51,54,46,50,51,54,51,48,53,93,44,91,45,56,48,46,56,56,49,53,57,49,44,51,54,46,48,53,53,55,49,56,93,44,91,45,56,48,46,54,57,51,49,57,55,44,51,54,46,48,53,49,50,54,93,44,91,45,56,48,46,52,57,54,50,56,51,44,51,54,46,48,52,54,53,52,53,93,44,91,45,56,48,46,52,51,57,49,48,52,44,51,54,46,49,51,57,57,52,57,93,44,91,45,56,48,46,52,53,50,51,50,50,44,51,54,46,50,52,49,52,49,57,93,44,91,45,56,48,46,54,51,49,53,52,52,44,51,54,46,50,56,53,53,56,52,93,44,91,45,56,48,46,56,55,51,50,48,53,44,51,54,46,50,51,54,51,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,48,55,53,44,34,98,101,100,115,34,58,50,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,51,56,55,54,55,44,51,55,46,54,51,51,51,54,52,93,44,91,45,49,50,48,46,57,56,51,55,53,54,44,51,55,46,51,57,57,54,52,93,44,91,45,49,50,48,46,57,55,50,57,52,49,44,51,55,46,51,51,56,52,56,51,93,44,91,45,49,50,49,46,50,50,54,56,48,52,44,51,55,46,49,51,52,55,55,52,93,44,91,45,49,50,49,46,50,49,53,52,48,54,44,51,54,46,57,54,49,50,52,56,93,44,91,45,49,50,49,46,49,52,49,53,50,51,44,51,54,46,56,51,54,54,53,54,93,44,91,45,49,50,48,46,57,49,56,55,51,49,44,51,54,46,55,52,48,51,56,49,93,44,91,45,49,50,48,46,53,52,49,54,57,54,44,51,55,46,48,52,52,53,48,53,93,44,91,45,49,50,48,46,52,55,54,54,57,50,44,51,55,46,48,57,54,51,57,93,44,91,45,49,50,48,46,50,50,55,50,56,54,44,51,55,46,49,54,51,52,93,44,91,45,49,50,48,46,48,53,50,48,53,53,44,51,55,46,49,56,51,49,48,56,93,44,91,45,49,50,48,46,49,52,51,56,50,54,44,51,55,46,50,51,57,49,57,50,93,44,91,45,49,50,48,46,50,54,54,48,49,44,51,55,46,52,48,48,54,48,55,93,44,91,45,49,50,48,46,51,56,55,54,55,44,51,55,46,54,51,51,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,101,119,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,49,56,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,56,49,48,50,50,44,51,54,46,48,49,50,57,50,53,93,44,91,45,57,57,46,51,55,53,56,49,55,44,51,53,46,56,49,50,49,56,56,93,44,91,45,57,56,46,54,51,49,57,56,53,44,51,53,46,56,49,50,52,48,50,93,44,91,45,57,56,46,54,51,54,56,57,57,44,51,54,46,49,54,52,56,57,52,93,44,91,45,57,56,46,57,53,53,56,52,57,44,51,54,46,49,54,49,53,55,55,93,44,91,45,57,57,46,51,56,50,48,55,52,44,51,54,46,49,54,52,51,48,49,93,44,91,45,57,57,46,51,56,49,48,50,50,44,51,54,46,48,49,50,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,117,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,55,49,50,44,34,98,101,100,115,34,58,55,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,52,51,49,56,56,44,51,53,46,57,54,48,48,53,93,44,91,45,56,49,46,57,48,54,54,53,50,44,51,53,46,56,56,51,51,55,54,93,44,91,45,56,49,46,57,56,54,57,51,57,44,51,53,46,56,48,54,57,50,51,93,44,91,45,56,49,46,56,54,57,51,56,56,44,51,53,46,55,49,57,54,50,52,93,44,91,45,56,49,46,56,50,52,49,50,50,44,51,53,46,53,55,52,57,56,51,93,44,91,45,56,49,46,54,57,49,57,56,57,44,51,53,46,53,56,48,48,52,49,93,44,91,45,56,49,46,53,51,55,53,57,57,44,51,53,46,53,54,52,50,50,56,93,44,91,45,56,49,46,53,51,53,52,48,51,44,51,53,46,53,54,56,49,51,55,93,44,91,45,56,49,46,51,54,51,55,57,54,44,51,53,46,55,54,55,56,48,50,93,44,91,45,56,49,46,53,53,53,57,57,52,44,51,53,46,55,55,55,53,51,56,93,44,91,45,56,49,46,56,48,55,49,54,50,44,51,53,46,57,54,49,57,53,53,93,44,91,45,56,49,46,57,52,51,49,56,56,44,51,53,46,57,54,48,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,48,48,50,44,34,98,101,100,115,34,58,53,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,54,52,55,56,52,44,51,53,46,53,56,53,50,54,51,93,44,91,45,55,56,46,49,53,56,53,56,57,44,51,53,46,51,52,55,53,51,55,93,44,91,45,55,56,46,51,48,54,53,56,44,51,53,46,50,56,55,54,48,52,93,44,91,45,55,56,46,49,54,51,52,50,44,51,53,46,49,56,57,55,49,54,93,44,91,45,55,55,46,56,51,52,50,52,57,44,51,53,46,49,55,55,56,52,54,93,44,91,45,55,55,46,56,48,54,50,52,56,44,51,53,46,51,54,56,55,53,52,93,44,91,45,55,55,46,56,50,50,53,49,49,44,51,53,46,53,56,53,51,56,51,93,44,91,45,55,56,46,48,54,52,55,56,52,44,51,53,46,53,56,53,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,51,53,44,34,98,101,100,115,34,58,50,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,54,49,48,56,51,57,44,52,49,46,57,57,57,48,48,54,93,44,91,45,55,57,46,54,49,50,48,55,50,44,52,49,46,56,53,48,48,53,54,93,44,91,45,55,57,46,54,49,50,56,55,51,44,52,49,46,54,50,51,56,53,56,93,44,91,45,55,57,46,53,49,50,48,55,44,52,49,46,54,50,52,53,53,57,93,44,91,45,55,56,46,57,53,54,48,52,50,44,52,49,46,54,50,51,52,48,50,93,44,91,45,55,56,46,57,53,54,48,53,54,44,52,49,46,54,50,51,56,54,51,93,44,91,45,55,56,46,57,49,56,56,53,53,44,52,49,46,57,57,56,49,49,57,93,44,91,45,55,57,46,48,54,49,50,54,53,44,52,49,46,57,57,57,50,53,57,93,44,91,45,55,57,46,54,49,48,56,51,57,44,52,49,46,57,57,57,48,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,56,57,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,52,51,55,51,57,44,51,52,46,49,57,50,53,48,49,93,44,91,45,57,52,46,48,57,56,53,48,49,44,51,52,46,49,57,49,50,48,51,93,44,91,45,57,52,46,48,53,50,57,52,51,44,51,51,46,56,56,54,48,56,50,93,44,91,45,57,51,46,57,53,56,56,50,56,44,51,51,46,55,53,48,57,57,52,93,44,91,45,57,51,46,57,53,55,51,49,53,44,51,51,46,55,53,48,57,52,93,44,91,45,57,51,46,56,51,49,52,53,50,44,51,51,46,55,52,55,55,48,57,93,44,91,45,57,51,46,56,50,51,48,55,54,44,51,52,46,48,48,56,56,57,51,93,44,91,45,57,51,46,56,50,48,55,50,50,44,51,52,46,49,56,51,56,48,50,93,44,91,45,57,51,46,57,50,53,56,51,44,51,52,46,49,56,54,52,57,54,93,44,91,45,57,51,46,57,51,53,51,55,49,44,51,52,46,51,53,48,48,57,55,93,44,91,45,57,52,46,50,53,52,54,54,56,44,51,52,46,51,53,53,52,56,49,93,44,91,45,57,52,46,50,52,51,55,51,57,44,51,52,46,49,57,50,53,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,68,97,118,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,57,57,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,57,51,49,57,55,44,51,54,46,48,53,49,50,54,93,44,91,45,56,48,46,55,48,55,56,50,54,44,51,53,46,56,53,50,57,50,57,93,44,91,45,56,48,46,54,51,50,55,50,52,44,51,53,46,56,52,53,56,53,52,93,44,91,45,56,48,46,52,53,56,56,56,52,44,51,53,46,55,52,51,48,51,49,93,44,91,45,56,48,46,51,56,53,55,56,52,44,51,53,46,56,53,52,53,56,55,93,44,91,45,56,48,46,51,57,52,51,48,55,44,51,53,46,57,55,50,55,54,50,93,44,91,45,56,48,46,52,57,54,50,56,51,44,51,54,46,48,52,54,53,52,53,93,44,91,45,56,48,46,54,57,51,49,57,55,44,51,54,46,48,53,49,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,77,99,68,111,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,49,48,57,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,51,51,52,56,52,44,51,53,46,56,50,51,51,48,57,93,44,91,45,56,50,46,50,55,53,51,57,57,44,51,53,46,55,48,52,52,51,56,93,44,91,45,56,50,46,50,53,49,50,53,49,44,51,53,46,53,53,57,57,52,51,93,44,91,45,56,50,46,49,54,57,48,52,57,44,51,53,46,53,50,55,56,49,49,93,44,91,45,56,49,46,57,54,55,54,49,57,44,51,53,46,53,50,54,48,48,55,93,44,91,45,56,49,46,56,50,52,49,50,50,44,51,53,46,53,55,52,57,56,51,93,44,91,45,56,49,46,56,54,57,51,56,56,44,51,53,46,55,49,57,54,50,52,93,44,91,45,56,49,46,57,56,54,57,51,57,44,51,53,46,56,48,54,57,50,51,93,44,91,45,56,49,46,57,48,54,54,53,50,44,51,53,46,56,56,51,51,55,54,93,44,91,45,56,49,46,57,52,51,49,56,56,44,51,53,46,57,54,48,48,53,93,44,91,45,56,49,46,57,56,49,57,53,52,44,51,53,46,57,49,49,51,54,49,93,44,91,45,56,50,46,49,51,51,52,56,52,44,51,53,46,56,50,51,51,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,52,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,53,54,55,48,57,44,51,51,46,57,53,54,56,51,55,93,44,91,45,57,51,46,52,56,51,48,57,55,44,51,51,46,52,55,54,48,55,53,93,44,91,45,57,51,46,51,54,53,53,56,53,44,51,51,46,52,52,52,52,53,57,93,44,91,45,57,51,46,49,49,54,51,54,49,44,51,51,46,52,53,50,57,48,57,93,44,91,45,57,51,46,49,48,52,50,57,44,51,51,46,55,55,55,48,49,49,93,44,91,45,57,51,46,50,57,48,53,55,49,44,51,51,46,56,52,53,49,51,51,93,44,91,45,57,51,46,51,55,51,52,48,54,44,51,51,46,57,53,55,48,55,93,44,91,45,57,51,46,52,53,54,55,48,57,44,51,51,46,57,53,54,56,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,89,117,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,54,57,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,53,49,52,54,53,44,52,48,46,52,52,48,48,48,56,93,44,91,45,49,48,50,46,54,54,52,56,48,52,44,52,48,46,52,51,56,52,55,51,93,44,91,45,49,48,50,46,55,55,57,57,54,44,52,48,46,52,51,56,52,52,54,93,44,91,45,49,48,50,46,55,57,51,53,56,50,44,52,48,46,51,53,49,50,56,49,93,44,91,45,49,48,50,46,56,48,50,57,51,50,44,51,57,46,53,54,55,56,52,49,93,44,91,45,49,48,50,46,48,52,57,56,48,54,44,51,57,46,53,55,52,48,53,56,93,44,91,45,49,48,50,46,48,53,49,55,52,52,44,52,48,46,48,48,51,48,55,56,93,44,91,45,49,48,50,46,48,53,49,53,56,54,44,52,48,46,51,52,57,50,49,51,93,44,91,45,49,48,50,46,48,53,49,52,54,53,44,52,48,46,52,52,48,48,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,50,49,34,44,34,78,65,77,69,34,58,34,83,104,101,114,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,51,57,49,53,44,51,54,46,52,57,57,53,50,56,93,44,91,45,49,48,50,46,48,51,50,51,51,56,44,51,54,46,53,48,48,53,55,53,93,44,91,45,49,48,50,46,49,54,50,52,54,51,44,51,54,46,53,48,48,51,50,54,93,44,91,45,49,48,50,46,49,54,51,48,49,53,44,51,54,46,48,53,53,50,52,57,93,44,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,44,91,45,49,48,49,46,54,50,51,57,49,53,44,51,54,46,52,57,57,53,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,54,51,34,44,34,78,65,77,69,34,58,34,85,118,97,108,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,48,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,48,51,49,51,44,50,57,46,54,50,55,49,56,49,93,44,91,45,49,48,48,46,48,49,52,49,56,56,44,50,57,46,54,50,51,52,57,53,93,44,91,45,49,48,48,46,49,49,50,48,57,56,44,50,57,46,54,50,51,50,54,51,93,44,91,45,49,48,48,46,49,49,49,52,48,54,44,50,57,46,48,56,54,51,49,56,93,44,91,45,57,57,46,52,49,51,56,56,44,50,57,46,48,57,49,51,51,53,93,44,91,45,57,57,46,52,49,49,56,49,55,44,50,57,46,54,50,55,53,49,52,93,44,91,45,57,57,46,54,48,51,49,51,44,50,57,46,54,50,55,49,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,117,103,108,97,105,122,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,56,52,44,34,98,101,100,115,34,58,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,53,54,49,56,44,52,48,46,54,56,52,56,54,50,93,44,91,45,56,52,46,52,51,52,51,56,55,44,52,48,46,51,53,52,53,51,52,93,44,91,45,56,52,46,51,51,56,54,44,52,48,46,51,55,57,49,57,57,93,44,91,45,56,52,46,51,51,57,49,51,55,44,52,48,46,52,56,49,48,55,54,93,44,91,45,56,52,46,48,48,50,51,55,50,44,52,48,46,52,56,51,49,49,53,93,44,91,45,56,51,46,56,56,48,48,51,57,44,52,48,46,53,51,56,54,57,52,93,44,91,45,56,51,46,56,56,48,49,57,52,44,52,48,46,54,52,52,54,57,93,44,91,45,56,52,46,49,48,55,55,56,55,44,52,48,46,54,52,51,48,54,57,93,44,91,45,56,52,46,50,50,50,55,57,57,44,52,48,46,54,56,53,57,53,55,93,44,91,45,56,52,46,51,57,54,55,55,56,44,52,48,46,54,56,52,57,50,54,93,44,91,45,56,52,46,52,53,54,49,56,44,52,48,46,54,56,52,56,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,111,115,115,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,49,51,49,44,34,98,101,100,115,34,58,50,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,49,52,53,53,51,44,51,51,46,48,49,57,51,55,49,93,44,91,45,57,51,46,55,56,51,50,51,51,44,51,50,46,55,56,52,51,54,93,44,91,45,57,51,46,56,49,57,49,54,57,44,51,50,46,55,51,54,48,48,50,93,44,91,45,57,51,46,55,51,54,54,49,44,51,50,46,53,55,57,56,52,53,93,44,91,45,57,51,46,55,53,54,50,48,54,44,51,50,46,53,51,55,48,51,55,93,44,91,45,57,51,46,54,49,53,49,51,44,51,50,46,51,52,56,51,51,50,93,44,91,45,57,51,46,52,55,49,50,52,57,44,51,50,46,50,51,55,49,56,54,93,44,91,45,57,51,46,52,50,56,49,57,44,51,50,46,50,51,53,56,57,55,93,44,91,45,57,51,46,51,55,50,55,56,49,44,51,50,46,52,49,48,49,53,51,93,44,91,45,57,51,46,52,52,49,50,49,50,44,51,50,46,52,49,48,52,51,49,93,44,91,45,57,51,46,52,53,51,49,50,49,44,51,50,46,56,53,57,57,51,53,93,44,91,45,57,51,46,53,50,48,57,57,52,44,51,51,46,48,49,56,54,49,54,93,44,91,45,57,51,46,56,48,52,57,51,44,51,51,46,48,49,57,51,53,55,93,44,91,45,57,51,46,56,49,52,53,53,51,44,51,51,46,48,49,57,51,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,69,109,109,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,53,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,49,52,53,56,50,44,52,51,46,53,48,48,56,53,51,93,44,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,44,91,45,57,52,46,52,52,51,49,51,55,44,52,51,46,50,53,53,48,49,52,93,44,91,45,57,52,46,52,52,50,56,53,44,52,51,46,53,48,48,52,50,50,93,44,91,45,57,52,46,56,53,52,53,53,53,44,52,51,46,53,48,48,57,50,53,93,44,91,45,57,52,46,57,49,52,53,56,50,44,52,51,46,53,48,48,56,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,57,55,55,44,34,98,101,100,115,34,58,51,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,50,56,53,57,50,44,51,56,46,56,55,49,48,57,57,93,44,91,45,57,55,46,57,50,52,55,57,53,44,51,56,46,54,48,57,56,56,93,44,91,45,57,55,46,51,55,49,57,49,49,44,51,56,46,54,48,57,51,53,51,93,44,91,45,57,55,46,51,55,49,54,49,52,44,51,56,46,57,53,55,56,53,50,93,44,91,45,57,55,46,57,50,56,53,54,44,51,56,46,57,53,56,51,57,53,93,44,91,45,57,55,46,57,50,56,53,57,50,44,51,56,46,56,55,49,48,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,77,97,103,111,102,102,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,52,56,54,57,50,44,51,55,46,54,54,57,54,49,54,93,44,91,45,56,51,46,48,56,57,55,57,54,44,51,55,46,54,51,50,49,54,55,93,44,91,45,56,50,46,57,52,56,53,52,52,44,51,55,46,53,48,51,49,54,55,93,44,91,45,56,50,46,57,50,53,52,54,44,51,55,46,52,56,54,53,50,53,93,44,91,45,56,50,46,56,57,49,54,48,53,44,51,55,46,53,49,57,48,56,51,93,44,91,45,56,50,46,57,52,48,55,54,51,44,51,55,46,55,49,54,51,51,56,93,44,91,45,56,51,46,48,48,52,54,52,57,44,51,55,46,56,53,57,50,52,55,93,44,91,45,56,51,46,48,56,57,52,48,57,44,51,55,46,56,57,48,51,52,93,44,91,45,56,51,46,50,55,48,51,56,55,44,51,55,46,55,54,54,56,52,53,93,44,91,45,56,51,46,50,54,50,49,55,50,44,51,55,46,55,49,50,54,53,55,93,44,91,45,56,51,46,50,52,56,54,57,50,44,51,55,46,54,54,57,54,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,97,105,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,57,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,52,51,55,54,55,44,51,52,46,51,48,50,54,52,56,93,44,91,45,49,48,51,46,48,52,55,52,48,57,44,51,51,46,56,50,52,54,55,52,93,44,91,45,49,48,50,46,54,49,53,52,52,55,44,51,51,46,56,50,53,49,50,49,93,44,91,45,49,48,50,46,54,49,53,49,53,44,51,52,46,51,49,50,56,57,49,93,44,91,45,49,48,51,46,48,52,51,55,54,50,44,51,52,46,51,49,50,55,53,93,44,91,45,49,48,51,46,48,52,51,55,54,55,44,51,52,46,51,48,50,54,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,108,108,97,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,56,52,48,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,51,51,57,57,56,44,51,57,46,48,53,57,48,53,55,93,44,91,45,57,50,46,49,49,48,51,56,55,44,51,57,46,48,54,52,50,48,52,93,44,91,45,57,50,46,49,54,53,49,49,55,44,51,56,46,57,48,48,57,52,56,93,44,91,45,57,50,46,49,51,53,51,57,55,44,51,56,46,56,49,53,53,56,49,93,44,91,45,57,50,46,50,50,48,54,54,49,44,51,56,46,54,52,51,49,54,55,93,44,91,45,57,50,46,49,48,57,50,56,50,44,51,56,46,53,54,49,52,51,93,44,91,45,57,50,46,48,48,56,57,56,51,44,51,56,46,53,55,48,57,93,44,91,45,57,49,46,56,54,57,52,56,57,44,51,56,46,54,54,51,57,52,93,44,91,45,57,49,46,54,52,55,49,55,49,44,51,56,46,55,48,51,51,57,54,93,44,91,45,57,49,46,54,51,51,57,57,56,44,51,57,46,48,53,57,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,98,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,49,48,50,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,55,51,52,48,51,44,52,50,46,52,51,51,50,51,54,93,44,91,45,49,48,54,46,48,54,56,52,48,54,44,52,49,46,51,57,53,48,50,56,93,44,91,45,49,48,54,46,51,50,50,56,56,53,44,52,49,46,51,57,53,49,52,49,93,44,91,45,49,48,54,46,51,50,49,49,54,53,44,52,48,46,57,57,57,49,50,51,93,44,91,45,49,48,54,46,49,57,48,53,53,52,44,52,48,46,57,57,55,53,55,56,93,44,91,45,49,48,53,46,50,55,54,56,54,44,52,48,46,57,57,56,49,55,50,93,44,91,45,49,48,53,46,50,55,56,50,51,54,44,52,49,46,54,53,54,54,53,53,93,44,91,45,49,48,53,46,50,55,49,55,52,54,44,52,49,46,57,56,54,48,57,53,93,44,91,45,49,48,53,46,50,56,51,57,49,44,52,50,46,52,51,49,52,48,50,93,44,91,45,49,48,53,46,51,55,53,53,52,49,44,52,50,46,50,57,48,49,51,57,93,44,91,45,49,48,53,46,54,49,51,56,54,53,44,52,50,46,51,48,52,52,53,53,93,44,91,45,49,48,53,46,53,53,54,48,52,50,44,52,50,46,52,51,48,53,56,51,93,44,91,45,49,48,54,46,48,55,51,52,48,51,44,52,50,46,52,51,51,50,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,80,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,49,50,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,55,57,56,52,56,51,44,52,53,46,48,48,50,51,51,51,93,44,91,45,49,49,48,46,55,48,52,52,55,54,44,52,52,46,57,57,50,49,55,52,93,44,91,45,49,49,49,46,48,52,53,48,54,54,44,52,53,46,48,48,48,57,53,93,44,91,45,49,49,49,46,48,53,51,52,52,55,44,52,52,46,54,54,54,50,54,56,93,44,91,45,49,49,48,46,54,54,55,56,54,55,44,52,52,46,54,54,54,50,57,49,93,44,91,45,49,49,48,46,54,54,55,56,57,57,44,52,52,46,53,56,50,55,57,50,93,44,91,45,49,49,48,46,51,55,53,51,51,52,44,52,52,46,53,56,51,48,49,54,93,44,91,45,49,49,48,46,50,55,54,53,48,54,44,52,52,46,53,49,53,54,54,53,93,44,91,45,49,49,48,46,50,57,54,54,52,56,44,52,52,46,52,51,49,51,52,49,93,44,91,45,49,49,48,46,49,53,48,49,55,53,44,52,52,46,50,56,57,54,54,54,93,44,91,45,49,49,48,46,49,49,57,49,57,51,44,52,52,46,49,51,50,53,56,52,93,44,91,45,49,49,48,46,48,53,51,49,55,57,44,52,52,46,48,48,56,48,50,50,93,44,91,45,49,48,57,46,56,56,49,57,44,52,51,46,57,52,57,48,55,54,93,44,91,45,49,48,57,46,55,56,57,57,44,52,51,46,56,48,51,50,53,50,93,44,91,45,49,48,57,46,53,52,50,51,51,50,44,52,51,46,57,54,49,51,53,50,93,44,91,45,49,48,57,46,52,52,50,51,54,49,44,52,51,46,57,51,48,52,51,52,93,44,91,45,49,48,57,46,51,49,50,57,52,57,44,52,51,46,56,49,51,50,57,51,93,44,91,45,49,48,57,46,48,57,51,54,48,51,44,52,51,46,56,49,55,54,49,57,93,44,91,45,49,48,57,46,48,57,50,56,55,56,44,52,51,46,57,48,52,52,55,52,93,44,91,45,49,48,56,46,57,49,50,55,56,51,44,52,51,46,57,48,52,55,53,52,93,44,91,45,49,48,56,46,55,57,49,55,55,57,44,52,51,46,57,57,49,48,53,51,93,44,91,45,49,48,56,46,55,57,50,50,55,55,44,52,52,46,48,55,57,54,49,54,93,44,91,45,49,48,56,46,53,53,48,55,53,56,44,52,52,46,48,55,57,52,48,51,93,44,91,45,49,48,56,46,53,53,48,53,54,50,44,52,52,46,49,54,56,52,53,53,93,44,91,45,49,48,56,46,53,57,50,50,57,54,44,52,52,46,56,55,49,52,52,52,93,44,91,45,49,48,56,46,54,50,49,51,49,53,44,52,53,46,48,48,48,51,54,49,93,44,91,45,49,48,57,46,55,57,56,52,56,51,44,52,53,46,48,48,50,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,111,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,57,52,44,34,98,101,100,115,34,58,54,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,51,50,54,55,50,44,52,49,46,49,55,50,48,52,93,44,91,45,55,54,46,55,57,50,54,49,44,52,48,46,57,52,54,54,52,55,93,44,91,45,55,54,46,54,54,49,51,52,56,44,52,48,46,57,54,55,57,57,54,93,44,91,45,55,54,46,53,50,56,48,51,52,44,52,48,46,56,56,50,53,49,53,93,44,91,45,55,54,46,53,49,50,52,50,49,44,52,48,46,57,52,54,49,48,50,93,44,91,45,55,54,46,54,49,56,57,55,49,44,52,49,46,48,54,51,55,53,57,93,44,91,45,55,54,46,54,52,48,55,54,55,44,52,49,46,49,53,53,55,49,56,93,44,91,45,55,54,46,55,51,50,54,55,50,44,52,49,46,49,55,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,81,117,101,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,57,56,53,49,51,44,34,98,101,100,115,34,58,51,50,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,48,51,54,50,57,51,44,52,48,46,53,53,49,48,52,50,93,44,91,45,55,52,46,48,52,50,49,49,50,44,52,48,46,53,48,57,50,57,57,93,44,91,45,55,51,46,56,56,54,54,53,50,44,52,48,46,52,56,57,55,57,52,93,44,91,45,55,51,46,55,54,56,55,56,49,44,52,48,46,53,51,51,55,52,55,93,44,91,45,55,51,46,55,48,49,54,51,51,44,52,48,46,55,53,50,52,57,51,93,44,91,45,55,51,46,55,55,56,57,53,56,44,52,48,46,56,49,49,55,49,51,93,44,91,45,55,51,46,57,49,50,52,53,54,44,52,48,46,55,57,54,48,57,54,93,44,91,45,55,51,46,57,54,50,52,55,56,44,52,48,46,55,51,54,56,48,50,93,44,91,45,55,51,46,56,51,51,48,52,49,44,52,48,46,54,50,56,50,54,49,93,44,91,45,55,51,46,56,55,57,50,50,50,44,52,48,46,53,55,52,54,53,54,93,44,91,45,55,52,46,48,51,54,50,57,51,44,52,48,46,53,53,49,48,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,83,117,119,97,110,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,52,55,50,53,51,44,51,48,46,50,54,48,54,55,93,44,91,45,56,51,46,50,50,54,51,54,44,51,48,46,49,49,52,54,50,49,93,44,91,45,56,51,46,49,54,50,52,53,55,44,51,48,46,49,49,48,48,50,50,93,44,91,45,56,50,46,57,54,51,49,49,50,44,50,57,46,57,57,51,48,53,93,44,91,45,56,50,46,56,55,57,56,48,50,44,50,57,46,56,56,54,56,52,55,93,44,91,45,56,50,46,56,48,48,52,55,55,44,50,57,46,57,51,50,49,50,54,93,44,91,45,56,50,46,55,57,52,53,57,52,44,51,48,46,51,51,55,48,50,52,93,44,91,45,56,50,46,57,53,53,57,44,51,48,46,52,49,51,52,56,54,93,44,91,45,56,51,46,48,55,56,55,48,54,44,51,48,46,52,51,56,49,49,54,93,44,91,45,56,51,46,49,55,48,57,54,57,44,51,48,46,51,56,53,50,50,53,93,44,91,45,56,51,46,50,52,55,50,53,51,44,51,48,46,50,54,48,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,104,101,98,111,121,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,52,53,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,51,50,53,57,53,44,52,53,46,56,49,48,51,51,93,44,91,45,56,52,46,55,51,50,54,56,55,44,52,53,46,50,56,57,51,56,50,93,44,91,45,56,52,46,55,51,52,51,48,51,44,52,53,46,50,48,49,57,51,54,93,44,91,45,56,52,46,51,54,54,54,49,52,44,52,53,46,49,57,56,55,51,55,93,44,91,45,56,52,46,50,52,54,54,51,52,44,52,53,46,49,57,56,55,50,55,93,44,91,45,56,52,46,50,53,50,48,50,44,52,53,46,54,50,53,57,57,56,93,44,91,45,56,52,46,50,48,49,48,54,50,44,52,53,46,55,53,50,50,55,53,93,44,91,45,56,52,46,52,53,50,54,51,52,44,52,53,46,54,57,53,51,55,93,44,91,45,56,52,46,55,51,50,53,57,53,44,52,53,46,56,49,48,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,108,97,100,119,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,56,48,51,57,44,52,52,46,49,54,48,53,51,56,93,44,91,45,56,52,46,54,48,56,49,48,52,44,52,52,46,49,54,48,52,56,50,93,44,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,44,91,45,56,52,46,49,54,55,51,49,56,44,52,51,46,56,50,53,57,48,50,93,44,91,45,56,52,46,49,54,54,51,55,55,44,52,51,46,57,57,54,57,48,49,93,44,91,45,56,52,46,49,54,54,49,48,55,44,52,52,46,49,54,49,55,56,56,93,44,91,45,56,52,46,51,54,56,48,51,57,44,52,52,46,49,54,48,53,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,55,53,57,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,56,48,53,50,55,44,51,56,46,49,49,53,49,49,56,93,44,91,45,56,51,46,57,54,54,51,49,44,51,55,46,57,51,48,55,54,56,93,44,91,45,56,51,46,55,54,56,55,56,51,44,51,55,46,57,49,56,51,55,49,93,44,91,45,56,51,46,55,53,57,52,51,44,51,55,46,57,57,56,55,51,49,93,44,91,45,56,51,46,56,56,49,51,53,51,44,51,56,46,49,51,54,53,49,55,93,44,91,45,56,51,46,57,55,55,57,50,52,44,51,56,46,49,57,50,49,49,56,93,44,91,45,56,52,46,48,56,48,53,50,55,44,51,56,46,49,49,53,49,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,76,97,110,99,97,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,53,52,54,44,34,98,101,100,115,34,58,50,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,57,56,50,49,53,44,51,52,46,56,50,48,55,52,54,93,44,91,45,56,48,46,56,54,48,50,55,52,44,51,52,46,54,57,53,56,52,55,93,44,91,45,56,48,46,56,55,55,52,57,49,44,51,52,46,53,52,51,49,52,54,93,44,91,45,56,48,46,56,55,57,50,50,55,44,51,52,46,52,53,55,55,55,54,93,44,91,45,56,48,46,55,52,51,51,52,53,44,51,52,46,53,51,57,57,49,54,93,44,91,45,56,48,46,54,53,56,52,49,55,44,51,52,46,52,55,56,54,49,50,93,44,91,45,56,48,46,53,53,48,53,53,50,44,51,52,46,53,54,48,49,49,54,93,44,91,45,56,48,46,52,48,56,51,55,51,44,51,52,46,54,49,52,55,54,53,93,44,91,45,56,48,46,53,54,49,55,49,44,51,52,46,56,49,55,52,50,57,93,44,91,45,56,48,46,55,57,55,52,56,52,44,51,52,46,56,49,57,56,48,51,93,44,91,45,56,48,46,55,56,49,57,50,49,44,51,52,46,57,51,53,56,52,56,93,44,91,45,56,48,46,56,52,48,50,55,56,44,51,53,46,48,48,49,54,57,50,93,44,91,45,56,48,46,57,48,54,51,56,53,44,51,53,46,48,55,54,50,55,55,93,44,91,45,56,48,46,56,54,56,54,53,50,44,51,52,46,57,53,49,49,52,51,93,44,91,45,56,48,46,56,57,56,50,49,53,44,51,52,46,56,50,48,55,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,76,97,114,117,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,56,48,52,56,56,44,51,55,46,55,51,50,50,56,52,93,44,91,45,56,53,46,56,55,54,48,48,54,44,51,55,46,53,52,51,50,53,57,93,44,91,45,56,53,46,56,57,50,56,48,52,44,51,55,46,52,52,48,51,48,56,93,44,91,45,56,53,46,54,53,55,51,51,50,44,51,55,46,52,50,49,57,57,54,93,44,91,45,56,53,46,53,56,51,52,57,55,44,51,55,46,52,54,57,57,49,55,93,44,91,45,56,53,46,52,54,54,50,53,44,51,55,46,52,54,53,53,57,53,93,44,91,45,56,53,46,53,50,49,50,57,44,51,55,46,53,53,52,51,52,51,93,44,91,45,56,53,46,54,49,56,48,55,49,44,51,55,46,53,52,48,54,49,49,93,44,91,45,56,53,46,53,57,50,48,56,56,44,51,55,46,54,57,51,52,55,57,93,44,91,45,56,53,46,54,56,48,52,56,56,44,51,55,46,55,51,50,50,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,87,111,111,100,98,117,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,51,57,56,44,34,98,101,100,115,34,58,56,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,52,53,52,56,51,44,52,50,46,52,57,48,54,51,93,44,91,45,57,54,46,51,56,48,55,48,53,44,52,50,46,52,52,54,51,57,51,93,44,91,45,57,54,46,52,48,55,57,57,56,44,52,50,46,51,51,55,52,48,56,93,44,91,45,57,54,46,51,53,54,51,57,53,44,52,50,46,50,55,54,52,57,52,93,44,91,45,57,54,46,51,53,54,53,54,44,52,50,46,50,49,53,48,48,50,93,44,91,45,57,53,46,54,55,48,56,50,50,44,52,50,46,50,49,49,52,48,56,93,44,91,45,57,53,46,54,54,57,50,54,53,44,52,50,46,52,55,52,54,52,53,93,44,91,45,57,53,46,55,52,49,54,49,49,44,52,50,46,53,54,49,50,56,53,93,44,91,45,57,53,46,56,53,57,57,52,57,44,52,50,46,53,54,48,54,50,93,44,91,45,57,54,46,52,57,56,55,55,54,44,52,50,46,53,54,49,48,52,51,93,44,91,45,57,54,46,52,52,53,52,56,51,44,52,50,46,52,57,48,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,57,56,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,57,57,56,56,51,44,51,48,46,48,49,50,50,50,53,93,44,91,45,56,51,46,54,52,55,51,49,49,44,50,57,46,55,57,55,49,51,57,93,44,91,45,56,51,46,54,48,57,51,48,56,44,50,57,46,54,57,56,52,49,54,93,44,91,45,56,51,46,52,56,49,50,54,52,44,50,57,46,54,51,48,51,50,57,93,44,91,45,56,51,46,51,54,54,51,57,56,44,50,57,46,54,54,53,55,48,49,93,44,91,45,56,51,46,51,49,56,56,53,57,44,50,57,46,56,50,50,54,50,51,93,44,91,45,56,51,46,51,55,48,56,57,44,50,57,46,56,56,55,57,51,52,93,44,91,45,56,51,46,51,54,55,50,54,44,51,48,46,50,54,48,52,52,93,44,91,45,56,51,46,52,54,56,55,54,56,44,51,48,46,51,48,52,50,49,50,93,44,91,45,56,51,46,56,50,48,50,51,53,44,51,48,46,51,48,51,53,52,93,44,91,45,56,51,46,57,49,53,51,54,57,44,51,48,46,50,52,52,55,55,57,93,44,91,45,56,51,46,57,57,57,56,56,51,44,51,48,46,48,49,50,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,101,120,97,110,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,55,50,48,56,49,44,51,55,46,48,54,56,51,49,93,44,91,45,56,57,46,50,55,51,54,51,49,44,51,55,46,49,50,54,57,54,56,93,44,91,45,56,57,46,50,52,56,53,54,54,44,51,55,46,51,51,53,50,57,56,93,44,91,45,56,57,46,52,56,54,54,56,57,44,51,55,46,51,51,52,53,53,52,93,44,91,45,56,57,46,52,56,56,55,50,44,51,55,46,50,53,49,52,53,55,93,44,91,45,56,57,46,51,55,54,54,51,50,44,51,55,46,48,51,56,52,56,50,93,44,91,45,56,57,46,51,49,50,55,48,52,44,51,55,46,48,48,56,57,55,49,93,44,91,45,56,57,46,50,53,57,57,51,53,44,51,55,46,48,54,52,48,55,93,44,91,45,56,57,46,49,51,50,57,49,53,44,51,54,46,57,56,50,48,53,55,93,44,91,45,56,57,46,49,55,50,48,56,49,44,51,55,46,48,54,56,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,51,48,50,44,34,98,101,100,115,34,58,51,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,51,54,51,49,49,44,51,56,46,52,54,54,54,52,51,93,44,91,45,57,48,46,55,56,48,49,56,53,44,51,56,46,50,48,52,49,49,50,93,44,91,45,57,48,46,54,51,57,57,56,44,51,56,46,48,55,54,53,52,56,93,44,91,45,57,48,46,53,56,51,51,50,52,44,51,56,46,48,48,51,52,57,57,93,44,91,45,57,48,46,52,49,54,48,50,50,44,51,56,46,48,52,50,51,49,53,93,44,91,45,57,48,46,50,53,50,54,54,54,44,51,56,46,49,50,55,56,49,50,93,44,91,45,57,48,46,51,53,56,54,50,56,44,51,56,46,50,50,49,57,56,49,93,44,91,45,57,48,46,51,52,49,52,52,54,44,51,56,46,51,56,56,50,57,56,93,44,91,45,57,48,46,52,49,50,53,49,57,44,51,56,46,53,48,48,56,53,51,93,44,91,45,57,48,46,53,57,49,49,50,51,44,51,56,46,53,48,49,54,53,50,93,44,91,45,57,48,46,55,51,54,51,49,49,44,51,56,46,52,54,54,54,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,53,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,50,49,56,51,53,44,51,57,46,50,50,52,49,48,56,93,44,91,45,57,49,46,49,56,50,57,52,50,44,51,57,46,50,50,55,50,51,51,93,44,91,45,57,49,46,50,54,48,50,51,50,44,51,57,46,49,51,57,56,52,53,93,44,91,45,57,49,46,50,54,52,50,56,55,44,51,56,46,57,57,50,55,54,50,93,44,91,45,57,49,46,49,49,49,50,53,49,44,51,56,46,56,55,50,55,48,57,93,44,91,45,57,48,46,57,53,56,53,51,54,44,51,56,46,56,55,48,56,54,53,93,44,91,45,57,48,46,56,50,50,55,50,52,44,51,56,46,56,55,54,51,57,50,93,44,91,45,57,48,46,54,54,51,49,56,49,44,51,56,46,57,51,52,50,50,52,93,44,91,45,57,48,46,55,50,49,56,51,53,44,51,57,46,50,50,52,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,67,104,97,116,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,55,48,52,57,44,34,98,101,100,115,34,58,49,54,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,52,52,53,55,50,44,51,50,46,50,50,54,49,50,56,93,44,91,45,56,49,46,49,57,53,54,51,52,44,51,50,46,50,51,55,52,57,57,93,44,91,45,56,49,46,51,57,49,54,57,56,44,51,50,46,48,57,53,56,56,54,93,44,91,45,56,49,46,50,49,50,51,48,57,44,51,49,46,57,49,56,51,53,56,93,44,91,45,56,49,46,49,53,52,55,51,49,44,51,49,46,55,49,51,48,55,93,44,91,45,56,49,46,48,53,49,53,50,49,44,51,49,46,55,48,53,49,57,56,93,44,91,45,56,48,46,55,56,50,57,54,44,51,49,46,57,57,53,57,53,52,93,44,91,45,56,49,46,48,48,52,51,48,53,44,51,50,46,49,48,50,51,54,55,93,44,91,45,56,49,46,49,49,55,50,50,53,44,51,50,46,49,49,55,54,48,52,93,44,91,45,56,49,46,49,52,52,53,55,50,44,51,50,46,50,50,54,49,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,51,57,44,34,98,101,100,115,34,58,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,52,50,53,55,56,44,51,48,46,49,52,51,49,49,55,93,44,91,45,56,50,46,52,53,56,51,54,52,44,51,48,46,49,51,54,52,52,57,93,44,91,45,56,50,46,53,54,57,50,56,44,50,57,46,57,55,52,57,56,93,44,91,45,56,50,46,53,50,57,55,48,53,44,50,57,46,57,52,48,56,56,49,93,44,91,45,56,50,46,52,49,56,55,50,56,44,50,57,46,57,50,51,48,57,51,93,44,91,45,56,50,46,51,49,51,51,56,53,44,50,57,46,57,53,52,55,48,52,93,44,91,45,56,50,46,49,52,50,53,55,56,44,51,48,46,49,52,51,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,71,101,110,101,115,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,49,49,50,44,34,98,101,100,115,34,58,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,54,52,52,52,57,44,52,51,46,48,56,56,55,48,51,93,44,91,45,55,56,46,52,54,52,51,56,49,44,52,50,46,56,54,55,52,54,49,93,44,91,45,55,55,46,57,53,52,57,54,52,44,52,50,46,56,54,50,55,53,52,93,44,91,45,55,55,46,57,48,57,56,51,50,44,52,50,46,57,56,55,55,54,50,93,44,91,45,55,55,46,57,57,55,50,57,44,52,51,46,49,51,50,57,56,49,93,44,91,45,55,56,46,52,54,53,53,48,53,44,52,51,46,49,50,56,54,49,57,93,44,91,45,55,56,46,52,54,52,52,52,57,44,52,51,46,48,56,56,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,49,51,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,44,91,45,57,53,46,51,56,56,48,55,56,44,52,51,46,50,53,53,50,50,49,93,44,91,45,57,53,46,51,56,56,49,56,50,44,52,50,46,57,48,57,56,57,55,93,44,91,45,57,52,46,57,49,51,56,57,44,52,50,46,57,48,57,55,93,44,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,70,97,108,108,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,56,56,53,52,57,53,44,52,54,46,49,51,54,53,57,53,93,44,91,45,49,48,52,46,53,49,54,49,50,54,44,52,54,46,49,51,54,49,57,54,93,44,91,45,49,48,52,46,51,57,48,55,52,52,44,52,54,46,48,53,52,56,50,54,93,44,91,45,49,48,52,46,51,57,48,56,55,54,44,52,53,46,57,55,48,51,54,51,93,44,91,45,49,48,52,46,49,51,52,56,52,50,44,52,53,46,57,54,56,56,51,51,93,44,91,45,49,48,52,46,48,52,52,49,57,52,44,52,53,46,56,56,49,57,55,53,93,44,91,45,49,48,52,46,48,52,53,53,52,55,44,52,53,46,57,52,53,51,48,56,93,44,91,45,49,48,52,46,48,52,53,53,53,57,44,52,54,46,50,56,48,48,56,49,93,44,91,45,49,48,52,46,48,52,53,50,49,49,44,52,54,46,53,52,48,56,54,49,93,44,91,45,49,48,52,46,48,52,53,50,51,52,44,52,54,46,54,52,49,53,48,52,93,44,91,45,49,48,52,46,51,53,52,56,51,53,44,52,54,46,54,52,49,52,48,57,93,44,91,45,49,48,52,46,52,49,55,57,57,56,44,52,54,46,54,56,52,56,57,50,93,44,91,45,49,48,52,46,54,48,54,57,48,51,44,52,54,46,54,56,52,57,50,52,93,44,91,45,49,48,52,46,55,51,51,48,53,57,44,52,54,46,54,49,50,54,57,53,93,44,91,45,49,48,52,46,55,51,50,54,55,50,44,52,54,46,52,56,50,50,48,50,93,44,91,45,49,48,52,46,57,48,53,57,56,56,44,52,54,46,52,56,50,50,53,49,93,44,91,45,49,48,52,46,56,56,53,52,57,53,44,52,54,46,49,51,54,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,80,111,116,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,54,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,55,48,56,57,56,55,44,52,53,46,50,52,53,56,54,54,93,44,91,45,49,48,48,46,50,54,48,50,50,51,44,52,53,46,50,52,54,56,49,93,44,91,45,49,48,48,46,51,50,53,52,53,49,44,52,53,46,48,57,57,51,51,55,93,44,91,45,49,48,48,46,52,50,51,57,49,56,44,52,52,46,57,57,48,48,48,54,93,44,91,45,49,48,48,46,52,48,52,55,53,51,44,52,52,46,56,57,55,54,57,53,93,44,91,45,57,57,46,54,55,52,50,53,50,44,52,52,46,56,57,55,53,48,51,93,44,91,45,57,57,46,53,55,50,54,57,57,44,52,52,46,56,57,55,50,54,51,93,44,91,45,57,57,46,53,55,51,51,51,44,52,53,46,50,52,53,51,54,52,93,44,91,45,57,57,46,55,48,56,57,56,55,44,52,53,46,50,52,53,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,67,117,108,98,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,49,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,49,56,51,53,55,44,51,50,46,48,48,48,52,49,56,93,44,91,45,49,48,52,46,57,48,57,49,50,52,44,51,49,46,50,52,54,54,48,57,93,44,91,45,49,48,52,46,57,49,55,49,54,51,44,51,48,46,54,54,51,54,50,54,93,44,91,45,49,48,52,46,49,48,50,51,53,49,44,51,49,46,49,48,53,50,48,51,93,44,91,45,49,48,52,46,48,50,52,53,49,50,44,51,50,46,48,48,48,49,48,50,93,44,91,45,49,48,52,46,56,52,55,55,52,44,51,50,46,48,48,48,52,49,53,93,44,91,45,49,48,52,46,57,49,56,51,53,55,44,51,50,46,48,48,48,52,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,57,52,52,44,34,98,101,100,115,34,58,49,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,55,56,50,57,56,52,44,52,51,46,56,49,52,49,52,55,93,44,91,45,55,48,46,54,53,57,51,54,57,44,52,51,46,55,57,48,51,56,54,93,44,91,45,55,48,46,53,52,57,57,54,53,44,52,51,46,55,49,53,55,57,54,93,44,91,45,55,48,46,52,57,50,48,48,57,44,52,51,46,54,48,54,55,54,57,93,44,91,45,55,48,46,50,50,50,48,57,44,52,51,46,52,54,54,56,55,56,93,44,91,45,55,48,46,49,53,53,57,56,54,44,52,51,46,53,50,52,52,52,52,93,44,91,45,54,57,46,56,56,49,56,57,53,44,52,51,46,54,51,54,52,54,54,93,44,91,45,54,57,46,56,57,51,50,51,50,44,52,51,46,56,55,56,53,49,56,93,44,91,45,55,48,46,48,51,52,50,51,56,44,52,51,46,57,55,53,54,54,49,93,44,91,45,55,48,46,49,49,53,56,54,44,52,51,46,57,48,54,55,49,93,44,91,45,55,48,46,51,49,53,51,55,52,44,52,52,46,48,51,55,56,48,55,93,44,91,45,55,48,46,52,56,48,48,55,56,44,52,52,46,48,51,50,48,55,56,93,44,91,45,55,48,46,54,48,51,55,56,52,44,52,52,46,48,52,49,53,51,54,93,44,91,45,55,48,46,54,50,52,51,50,57,44,52,52,46,49,55,49,48,51,54,93,44,91,45,55,48,46,56,50,49,56,48,51,44,52,52,46,48,55,55,48,56,57,93,44,91,45,55,48,46,55,49,53,52,49,56,44,52,51,46,57,54,49,56,49,53,93,44,91,45,55,48,46,55,56,50,57,56,52,44,52,51,46,56,49,52,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,65,116,97,115,99,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,56,50,56,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,52,57,44,50,57,46,48,57,48,52,51,52,93,44,91,45,57,56,46,56,48,48,56,52,49,44,50,56,46,54,52,55,52,56,55,93,44,91,45,57,56,46,56,48,48,56,52,56,44,50,56,46,54,52,55,51,48,54,93,44,91,45,57,56,46,51,51,53,48,52,55,44,50,56,46,54,52,56,50,55,53,93,44,91,45,57,56,46,51,51,53,48,51,49,44,50,56,46,54,49,50,54,53,56,93,44,91,45,57,56,46,48,57,56,51,49,53,44,50,56,46,55,56,54,57,52,57,93,44,91,45,57,56,46,49,57,48,57,57,49,44,50,56,46,56,56,50,51,51,51,93,44,91,45,57,56,46,52,48,55,51,51,54,44,50,57,46,49,49,52,52,51,53,93,44,91,45,57,56,46,56,48,52,55,54,51,44,50,57,46,50,53,48,54,57,51,93,44,91,45,57,56,46,56,48,52,57,44,50,57,46,48,57,48,52,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,75,105,110,103,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,55,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,54,52,56,48,52,44,51,55,46,55,51,50,54,55,53,93,44,91,45,57,56,46,52,54,52,54,54,51,44,51,55,46,52,55,49,48,49,51,93,44,91,45,57,56,46,52,54,52,57,53,49,44,51,55,46,51,56,52,48,56,54,93,44,91,45,57,56,46,51,52,57,56,48,52,44,51,55,46,51,56,52,48,53,54,93,44,91,45,57,55,46,56,48,55,48,53,55,44,51,55,46,51,56,54,50,57,51,93,44,91,45,57,55,46,56,48,55,54,44,51,55,46,52,55,52,49,56,52,93,44,91,45,57,55,46,56,48,55,56,50,51,44,51,55,46,55,51,51,56,53,53,93,44,91,45,57,56,46,52,54,52,56,48,52,44,51,55,46,55,51,50,54,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,49,34,44,34,78,65,77,69,34,58,34,82,97,98,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,53,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,56,50,57,52,57,44,51,52,46,57,57,51,51,48,49,93,44,91,45,56,51,46,53,52,57,51,55,54,44,51,52,46,57,57,50,51,57,51,93,44,91,45,56,51,46,54,53,54,50,57,55,44,51,52,46,56,55,56,56,50,51,93,44,91,45,56,51,46,54,53,50,49,57,52,44,51,52,46,56,50,50,57,57,51,93,44,91,45,56,51,46,53,52,56,57,56,56,44,51,52,46,55,52,57,52,53,49,93,44,91,45,56,51,46,51,53,50,52,52,56,44,51,52,46,55,49,54,49,50,53,93,44,91,45,56,51,46,51,50,52,49,53,44,51,52,46,55,56,55,52,55,57,93,44,91,45,56,51,46,49,50,55,51,53,55,44,51,52,46,57,53,48,49,57,53,93,44,91,45,56,51,46,49,48,56,54,49,51,44,51,53,46,48,48,48,54,53,57,93,44,91,45,56,51,46,52,56,50,57,52,57,44,51,52,46,57,57,51,51,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,85,112,115,104,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,54,48,53,44,34,98,101,100,115,34,58,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,51,48,48,50,48,57,44,51,57,46,49,48,51,56,53,55,93,44,91,45,56,48,46,51,49,57,51,52,54,44,51,56,46,57,54,48,57,49,57,93,44,91,45,56,48,46,51,56,54,57,56,57,44,51,56,46,56,55,52,56,48,56,93,44,91,45,56,48,46,51,57,51,48,54,51,44,51,56,46,55,50,55,53,55,49,93,44,91,45,56,48,46,50,56,48,48,53,57,44,51,56,46,54,57,52,56,54,55,93,44,91,45,56,48,46,49,50,54,49,48,53,44,51,56,46,55,52,53,56,51,54,93,44,91,45,56,48,46,48,56,53,48,54,50,44,51,56,46,57,52,55,50,51,54,93,44,91,45,56,48,46,48,52,52,54,57,53,44,51,57,46,48,49,48,49,56,54,93,44,91,45,56,48,46,50,50,55,49,55,51,44,51,57,46,49,49,50,55,57,50,93,44,91,45,56,48,46,51,48,48,50,48,57,44,51,57,46,49,48,51,56,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,53,34,44,34,78,65,77,69,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,55,49,44,34,98,101,100,115,34,58,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,50,57,50,53,56,44,51,55,46,54,48,50,53,52,50,93,44,91,45,57,50,46,50,52,57,52,54,51,44,51,55,46,54,48,52,53,52,51,93,44,91,45,57,50,46,50,53,50,50,54,49,44,51,55,46,52,55,50,57,52,52,93,44,91,45,57,50,46,50,53,49,51,53,57,44,51,55,46,48,53,57,54,53,51,93,44,91,45,57,50,46,48,56,56,55,48,56,44,51,55,46,48,53,54,50,52,56,93,44,91,45,57,49,46,54,53,53,54,48,55,44,51,55,46,48,52,56,57,50,53,93,44,91,45,57,49,46,54,52,54,54,50,54,44,51,55,46,52,50,50,55,51,49,93,44,91,45,57,49,46,55,53,53,48,52,44,51,55,46,52,50,52,49,49,93,44,91,45,57,49,46,56,48,57,49,48,53,44,51,55,46,53,57,56,56,54,51,93,44,91,45,57,50,46,48,50,57,50,53,56,44,51,55,46,54,48,50,53,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,51,52,54,51,44,34,98,101,100,115,34,58,52,51,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,48,56,48,52,49,44,51,52,46,52,57,50,55,54,53,93,44,91,45,57,50,46,48,50,57,57,57,54,44,51,52,46,52,56,57,51,53,50,93,44,91,45,57,50,46,48,50,57,53,51,57,44,51,52,46,54,50,49,50,52,56,93,44,91,45,57,50,46,48,55,56,55,49,49,44,51,52,46,55,50,57,57,56,51,93,44,91,45,57,50,46,48,55,48,56,48,53,44,51,53,46,48,49,49,56,48,50,93,44,91,45,57,50,46,49,50,49,51,51,54,44,51,53,46,48,49,50,50,49,93,44,91,45,57,50,46,50,50,57,56,57,51,44,51,52,46,57,50,55,53,53,56,93,44,91,45,57,50,46,53,52,52,51,52,49,44,51,52,46,57,53,51,51,49,57,93,44,91,45,57,50,46,55,53,51,54,50,54,44,51,52,46,57,49,49,50,52,56,93,44,91,45,57,50,46,55,51,57,55,55,57,44,51,52,46,56,53,51,52,53,57,93,44,91,45,57,50,46,54,53,52,51,50,52,44,51,52,46,55,54,52,53,52,49,93,44,91,45,57,50,46,51,52,56,55,52,57,44,51,52,46,53,56,50,50,57,93,44,91,45,57,50,46,50,52,53,56,49,56,44,51,52,46,52,57,51,53,48,54,93,44,91,45,57,50,46,50,48,56,48,52,49,44,51,52,46,52,57,50,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,54,55,48,56,50,50,44,52,50,46,50,49,49,52,48,56,93,44,91,45,57,53,46,54,55,50,55,55,49,44,52,49,46,56,54,51,49,52,55,93,44,91,45,57,53,46,53,53,55,50,55,55,44,52,49,46,56,54,51,52,52,57,93,44,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,44,91,45,57,53,46,48,57,48,56,53,49,44,52,50,46,50,49,48,52,48,53,93,44,91,45,57,53,46,51,50,51,52,57,55,44,52,50,46,50,49,48,57,51,50,93,44,91,45,57,53,46,54,55,48,56,50,50,44,52,50,46,50,49,49,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,110,110,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,48,54,53,44,34,98,101,100,115,34,58,50,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,55,53,48,53,54,50,44,52,50,46,57,53,49,53,50,56,93,44,91,45,49,49,50,46,53,55,57,50,56,55,44,52,50,46,57,55,50,52,53,49,93,44,91,45,49,49,50,46,53,49,53,53,49,57,44,52,50,46,57,48,57,57,55,53,93,44,91,45,49,49,50,46,52,57,54,57,49,44,52,50,46,55,51,51,48,49,51,93,44,91,45,49,49,50,46,51,56,57,52,49,56,44,52,50,46,54,50,52,51,56,50,93,44,91,45,49,49,50,46,52,49,57,56,50,53,44,52,50,46,53,48,51,48,51,56,93,44,91,45,49,49,50,46,49,50,54,49,57,52,44,52,50,46,50,56,53,50,50,57,93,44,91,45,49,49,49,46,56,57,54,55,50,56,44,52,50,46,50,53,54,50,55,54,93,44,91,45,49,49,49,46,56,55,53,54,51,54,44,52,50,46,52,49,54,49,53,56,93,44,91,45,49,49,49,46,57,49,54,57,50,55,44,52,50,46,54,49,55,50,54,52,93,44,91,45,49,49,49,46,57,55,51,51,55,51,44,52,50,46,55,49,53,52,55,50,93,44,91,45,49,49,50,46,49,48,53,56,56,44,52,50,46,54,57,57,50,48,51,93,44,91,45,49,49,50,46,49,52,53,48,56,57,44,52,50,46,55,57,48,54,54,52,93,44,91,45,49,49,50,46,49,50,55,52,50,52,44,52,50,46,57,52,52,52,57,56,93,44,91,45,49,49,50,46,48,54,51,48,50,51,44,52,51,46,48,50,50,51,54,52,93,44,91,45,49,49,50,46,54,53,54,53,53,50,44,52,51,46,48,50,49,57,52,52,93,44,91,45,49,49,50,46,55,53,48,53,54,50,44,52,50,46,57,53,49,53,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,101,97,117,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,57,54,49,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,48,51,54,51,49,44,52,49,46,55,49,53,49,51,55,93,44,91,45,56,49,46,49,48,49,52,50,50,44,52,49,46,54,52,49,52,53,55,93,44,91,45,56,49,46,50,57,52,54,54,57,44,52,49,46,54,52,48,56,56,57,93,44,91,45,56,49,46,51,57,49,48,48,53,44,52,49,46,53,54,57,55,49,54,93,44,91,45,56,49,46,51,57,49,54,57,52,44,52,49,46,51,52,56,50,55,50,93,44,91,45,56,49,46,48,48,51,51,49,57,44,52,49,46,51,52,55,56,54,93,44,91,45,56,49,46,48,48,51,49,50,53,44,52,49,46,53,48,49,54,56,53,93,44,91,45,56,49,46,48,48,51,54,51,49,44,52,49,46,55,49,53,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,97,121,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,53,51,48,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,57,53,48,57,57,44,49,56,46,49,54,57,48,55,55,93,44,91,45,54,54,46,50,49,54,56,57,57,44,49,56,46,49,52,51,50,50,93,44,91,45,54,54,46,50,50,52,52,57,44,49,56,46,48,57,53,51,51,57,93,44,91,45,54,54,46,49,54,54,49,52,53,44,49,56,46,48,53,48,48,54,51,93,44,91,45,54,54,46,48,53,51,49,52,54,44,49,56,46,49,48,55,50,57,51,93,44,91,45,54,54,46,48,53,49,55,56,56,44,49,56,46,49,48,57,56,55,56,93,44,91,45,54,54,46,48,53,50,53,53,53,44,49,56,46,49,49,51,48,54,57,93,44,91,45,54,54,46,48,57,53,48,57,57,44,49,56,46,49,54,57,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,84,117,108,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,48,52,55,55,44,34,98,101,100,115,34,58,55,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,53,51,56,49,49,54,44,51,53,46,55,56,57,53,54,55,93,44,91,45,49,49,56,46,54,50,57,57,55,53,44,51,53,46,55,56,57,53,56,93,44,91,45,49,49,56,46,48,48,56,48,52,51,44,51,53,46,55,56,57,49,54,49,93,44,91,45,49,49,55,46,57,56,50,52,55,51,44,51,53,46,56,57,53,55,57,54,93,44,91,45,49,49,56,46,49,50,55,54,48,49,44,51,54,46,50,56,48,51,52,56,93,44,91,45,49,49,56,46,49,48,48,49,49,54,44,51,54,46,51,50,56,56,50,51,93,44,91,45,49,49,56,46,50,52,56,57,50,44,51,54,46,52,56,54,53,51,53,93,44,91,45,49,49,56,46,51,54,48,53,56,54,44,51,54,46,55,52,52,55,55,51,93,44,91,45,49,49,56,46,57,56,50,52,52,49,44,51,54,46,55,52,49,54,52,54,93,44,91,45,49,49,56,46,57,56,52,55,55,57,44,51,54,46,54,53,55,49,52,55,93,44,91,45,49,49,57,46,51,48,52,54,50,53,44,51,54,46,54,54,48,54,48,54,93,44,91,45,49,49,57,46,51,48,53,49,48,50,44,51,54,46,53,55,51,55,50,53,93,44,91,45,49,49,57,46,52,54,54,51,50,50,44,51,54,46,53,55,53,50,51,56,93,44,91,45,49,49,57,46,53,55,51,49,57,52,44,51,54,46,52,56,56,56,51,53,93,44,91,45,49,49,57,46,52,55,52,56,57,50,44,51,54,46,52,48,48,57,53,51,93,44,91,45,49,49,57,46,53,50,57,51,53,56,44,51,54,46,50,54,57,56,53,93,44,91,45,49,49,57,46,53,51,56,49,49,54,44,51,53,46,55,56,57,53,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,65,114,114,111,121,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,56,50,50,54,51,44,49,56,46,48,51,50,57,53,56,93,44,91,45,54,54,46,48,54,52,53,48,51,44,49,55,46,57,48,52,56,50,53,93,44,91,45,54,53,46,57,56,55,53,53,49,44,49,55,46,57,48,56,57,50,51,93,44,91,45,54,54,46,48,56,50,50,54,51,44,49,56,46,48,51,50,57,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,83,97,110,32,71,101,114,109,195,161,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,49,49,52,44,34,98,101,100,115,34,58,50,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,48,56,54,51,53,57,44,49,56,46,49,52,57,56,50,57,93,44,91,45,54,55,46,49,48,48,52,57,50,44,49,56,46,49,48,54,51,57,53,93,44,91,45,54,55,46,49,48,57,48,52,52,44,49,56,46,48,53,54,48,56,53,93,44,91,45,54,54,46,57,56,51,51,51,55,44,49,56,46,48,53,50,53,49,56,93,44,91,45,54,54,46,57,55,55,56,53,53,44,49,56,46,49,52,51,55,57,57,93,44,91,45,54,55,46,48,53,49,52,54,49,44,49,56,46,49,55,52,48,53,51,93,44,91,45,54,55,46,48,56,54,51,53,57,44,49,56,46,49,52,57,56,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,56,53,54,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,56,55,57,57,53,44,52,51,46,54,51,49,53,52,51,93,44,91,45,55,55,46,51,55,49,52,55,56,44,52,51,46,48,51,52,54,57,54,93,44,91,45,55,55,46,49,51,52,51,51,53,44,52,51,46,48,51,57,57,50,54,93,44,91,45,55,54,46,57,54,51,57,50,54,44,52,51,46,48,49,51,49,53,55,93,44,91,45,55,54,46,55,49,51,56,48,54,44,52,51,46,48,50,52,48,51,53,93,44,91,45,55,54,46,55,48,50,51,50,53,44,52,51,46,48,56,48,51,57,51,93,44,91,45,55,54,46,55,53,51,53,51,56,44,52,51,46,54,56,52,50,55,53,93,44,91,45,55,54,46,55,55,54,50,51,51,44,52,51,46,54,50,57,53,50,57,93,44,91,45,55,55,46,51,56,55,57,57,53,44,52,51,46,54,51,49,53,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,82,111,99,107,98,114,105,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,54,52,55,53,56,57,44,51,55,46,56,55,52,53,51,56,93,44,91,45,55,57,46,54,55,52,49,54,50,44,51,55,46,55,54,51,48,57,51,93,44,91,45,55,57,46,54,56,51,53,53,52,44,51,55,46,54,54,49,55,54,51,93,44,91,45,55,57,46,52,57,56,54,57,57,44,51,55,46,53,51,50,55,57,55,93,44,91,45,55,57,46,52,51,54,57,52,55,44,51,55,46,54,49,55,48,53,55,93,44,91,45,55,57,46,51,52,53,50,51,53,44,51,55,46,54,54,48,54,50,53,93,44,91,45,55,57,46,50,54,52,54,55,52,44,51,55,46,55,57,52,54,57,52,93,44,91,45,55,57,46,49,55,50,49,51,49,44,51,55,46,56,48,51,48,57,55,93,44,91,45,55,57,46,49,53,55,51,57,44,51,55,46,56,57,49,48,48,51,93,44,91,45,55,57,46,52,56,50,54,54,56,44,51,56,46,48,56,54,48,53,52,93,44,91,45,55,57,46,54,52,55,53,56,57,44,51,55,46,56,55,52,53,51,56,93,93,44,91,91,45,55,57,46,52,54,49,53,56,50,44,51,55,46,55,56,54,51,53,54,93,44,91,45,55,57,46,52,51,55,51,51,55,44,51,55,46,55,57,52,55,56,52,93,44,91,45,55,57,46,52,50,48,56,50,52,44,51,55,46,55,56,56,57,57,56,93,44,91,45,55,57,46,52,53,53,54,54,55,44,51,55,46,55,54,53,50,49,57,93,44,91,45,55,57,46,52,54,49,53,56,50,44,51,55,46,55,56,54,51,53,54,93,93,44,91,91,45,55,57,46,51,56,49,53,48,57,44,51,55,46,55,52,50,49,52,57,93,44,91,45,55,57,46,51,51,49,50,53,50,44,51,55,46,55,52,52,51,51,54,93,44,91,45,55,57,46,51,54,48,55,54,50,44,51,55,46,55,48,50,54,54,54,93,44,91,45,55,57,46,51,56,49,53,48,57,44,51,55,46,55,52,50,49,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,84,111,119,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,54,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,55,48,51,57,50,44,52,56,46,53,52,52,50,51,50,93,44,91,45,57,56,46,57,57,57,56,57,44,52,56,46,55,49,56,49,50,57,93,44,91,45,57,56,46,57,57,57,56,48,50,44,52,57,46,48,48,48,48,48,54,93,44,91,45,57,57,46,53,50,53,55,55,57,44,52,56,46,57,57,57,51,48,55,93,44,91,45,57,57,46,53,50,53,56,57,53,44,52,56,46,55,49,56,51,56,52,93,44,91,45,57,57,46,52,57,51,49,56,57,44,52,56,46,53,52,52,56,51,52,93,44,91,45,57,57,46,52,57,50,57,49,57,44,52,56,46,51,55,48,57,52,54,93,44,91,45,57,57,46,50,48,48,51,48,54,44,52,56,46,51,55,48,54,53,56,93,44,91,45,57,56,46,57,55,48,56,52,50,44,52,56,46,51,55,48,52,49,52,93,44,91,45,57,56,46,57,55,48,51,57,50,44,52,56,46,53,52,52,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,53,50,55,44,34,98,101,100,115,34,58,49,49,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,51,54,49,48,54,54,44,52,48,46,48,54,53,53,52,51,93,44,91,45,55,53,46,53,50,51,56,49,54,44,51,57,46,57,52,52,49,50,52,93,44,91,45,55,53,46,53,57,52,56,56,44,51,57,46,56,51,55,53,50,53,93,44,91,45,55,53,46,53,57,51,48,57,57,44,51,57,46,56,51,55,55,50,51,93,44,91,45,55,53,46,53,55,57,57,50,54,44,51,57,46,56,51,56,56,54,50,93,44,91,45,55,53,46,52,49,53,48,54,50,44,51,57,46,56,48,49,57,49,57,93,44,91,45,55,53,46,50,49,49,52,54,51,44,51,57,46,56,54,55,48,48,52,93,44,91,45,55,53,46,50,55,54,52,56,50,44,51,57,46,57,55,54,57,53,57,93,44,91,45,55,53,46,51,54,49,48,54,54,44,52,48,46,48,54,53,53,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,78,105,97,103,97,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,55,48,52,44,34,98,101,100,115,34,58,52,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,54,56,55,49,49,44,52,51,46,54,51,51,52,50,56,93,44,91,45,55,56,46,54,56,56,50,57,53,44,52,51,46,54,51,52,55,52,50,93,44,91,45,55,57,46,50,48,48,57,51,54,44,52,51,46,52,53,48,52,50,50,93,44,91,45,55,57,46,48,55,48,52,53,50,44,52,51,46,50,54,50,52,53,53,93,44,91,45,55,57,46,48,49,57,50,50,56,44,52,51,46,48,54,55,57,53,56,93,44,91,45,55,56,46,56,51,57,51,53,44,52,51,46,48,49,57,52,53,51,93,44,91,45,55,56,46,56,48,50,48,53,49,44,52,51,46,48,54,53,55,56,49,93,44,91,45,55,56,46,52,54,52,52,52,57,44,52,51,46,48,56,56,55,48,51,93,44,91,45,55,56,46,52,54,53,53,48,53,44,52,51,46,49,50,56,54,49,57,93,44,91,45,55,56,46,52,54,56,55,49,49,44,52,51,46,54,51,51,52,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,110,110,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,57,50,48,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,50,53,52,54,51,51,44,52,51,46,51,49,52,54,55,53,93,44,91,45,55,51,46,50,55,52,50,57,52,44,52,50,46,57,52,51,54,53,50,93,44,91,45,55,51,46,50,54,52,56,50,55,44,52,50,46,55,52,53,56,53,49,93,44,91,45,55,51,46,48,50,51,48,49,53,44,52,50,46,55,52,49,49,51,53,93,44,91,45,55,50,46,57,51,48,50,53,56,44,52,50,46,55,51,57,50,57,51,93,44,91,45,55,50,46,57,50,49,51,55,54,44,52,50,46,57,50,54,55,57,50,93,44,91,45,55,51,46,48,48,56,48,54,51,44,52,50,46,57,51,48,48,56,55,93,44,91,45,55,50,46,57,57,54,57,44,52,51,46,49,49,57,48,57,53,93,44,91,45,55,50,46,56,54,56,55,51,55,44,52,51,46,49,49,51,49,55,93,44,91,45,55,50,46,56,49,57,51,54,56,44,52,51,46,50,53,53,52,57,56,93,44,91,45,55,50,46,56,54,55,57,48,50,44,52,51,46,51,48,48,55,52,50,93,44,91,45,55,51,46,50,53,52,54,51,51,44,52,51,46,51,49,52,54,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,50,57,49,44,34,98,101,100,115,34,58,53,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,56,48,50,49,53,44,51,48,46,49,50,49,50,52,93,44,91,45,56,49,46,54,55,57,54,50,54,44,51,48,46,49,57,48,52,57,53,93,44,91,45,56,50,46,48,52,57,52,49,49,44,51,48,46,49,56,54,57,51,51,93,44,91,45,56,50,46,48,52,57,52,50,53,44,51,48,46,49,52,51,49,51,54,93,44,91,45,56,50,46,48,52,57,50,52,52,44,50,57,46,55,49,56,54,55,93,44,91,45,56,49,46,57,51,57,52,50,55,44,50,57,46,55,52,55,52,57,55,93,44,91,45,56,49,46,56,49,50,52,51,44,50,57,46,56,51,54,52,57,93,44,91,45,56,49,46,53,56,49,50,48,55,44,50,57,46,56,52,48,49,55,54,93,44,91,45,56,49,46,54,49,48,49,52,54,44,50,57,46,57,55,48,50,51,53,93,44,91,45,56,49,46,54,56,56,56,55,54,44,51,48,46,48,50,56,53,54,54,93,44,91,45,56,49,46,54,56,48,50,49,53,44,51,48,46,49,50,49,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,87,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,54,53,53,56,44,34,98,101,100,115,34,58,50,51,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,55,53,49,50,55,51,44,51,54,46,48,55,48,56,51,52,93,44,91,45,55,56,46,54,57,57,51,49,54,44,51,54,46,48,49,49,52,52,56,93,44,91,45,55,56,46,56,50,57,57,54,53,44,51,53,46,56,54,54,57,55,56,93,44,91,45,55,56,46,57,48,54,48,55,49,44,51,53,46,56,54,56,48,57,54,93,44,91,45,55,56,46,57,57,53,48,53,57,44,51,53,46,54,49,48,49,51,53,93,44,91,45,55,56,46,57,49,52,55,51,52,44,51,53,46,53,56,51,54,55,50,93,44,91,45,55,56,46,55,48,56,57,48,50,44,51,53,46,53,49,57,52,53,56,93,44,91,45,55,56,46,52,57,50,49,52,57,44,51,53,46,54,56,54,57,48,51,93,44,91,45,55,56,46,50,53,53,57,55,51,44,51,53,46,56,49,56,49,50,93,44,91,45,55,56,46,52,50,54,56,54,52,44,51,53,46,57,55,53,48,49,50,93,44,91,45,55,56,46,53,52,54,52,49,52,44,51,54,46,48,50,49,56,50,54,93,44,91,45,55,56,46,55,53,49,50,55,51,44,51,54,46,48,55,48,56,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,50,48,51,55,44,34,98,101,100,115,34,58,52,55,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,49,57,52,53,44,51,57,46,51,48,53,49,53,51,93,44,91,45,56,52,46,56,50,48,49,53,55,44,51,57,46,49,48,53,52,56,57,93,44,91,45,56,52,46,55,53,48,51,52,53,44,51,57,46,49,52,55,54,50,50,93,44,91,45,56,52,46,54,50,51,52,56,56,44,51,57,46,48,55,52,50,56,50,93,44,91,45,56,52,46,53,48,54,49,54,49,44,51,57,46,48,57,53,49,55,55,93,44,91,45,56,52,46,51,49,57,57,56,53,44,51,57,46,48,50,49,53,51,52,93,44,91,45,56,52,46,50,53,57,52,51,49,44,51,57,46,50,55,48,55,57,54,93,44,91,45,56,52,46,51,53,51,50,48,57,44,51,57,46,50,57,50,50,56,55,93,44,91,45,56,52,46,56,49,57,52,53,44,51,57,46,51,48,53,49,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,114,103,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,57,57,57,57,44,34,98,101,100,115,34,58,50,56,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,50,49,49,50,50,52,44,52,49,46,49,51,51,55,49,52,93,44,91,45,55,52,46,50,55,50,50,50,54,44,52,49,46,48,49,55,57,51,53,93,44,91,45,55,52,46,49,52,49,48,57,52,44,52,48,46,57,54,54,51,55,52,93,44,91,45,55,52,46,49,51,48,48,49,54,44,52,48,46,56,49,57,57,51,56,93,44,91,45,55,52,46,49,52,55,53,50,57,44,52,48,46,55,56,54,52,57,49,93,44,91,45,55,51,46,57,56,52,55,57,52,44,52,48,46,55,57,55,54,56,55,93,44,91,45,55,51,46,57,51,51,56,48,56,44,52,48,46,56,56,50,50,49,52,93,44,91,45,55,51,46,57,49,55,57,48,53,44,52,48,46,57,49,55,53,55,55,93,44,91,45,55,51,46,56,57,51,57,55,57,44,52,48,46,57,57,55,50,48,53,93,44,91,45,55,52,46,50,49,49,50,50,52,44,52,49,46,49,51,51,55,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,52,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,54,55,55,51,50,50,93,44,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,48,53,48,55,53,55,93,44,91,45,49,49,53,46,56,57,51,56,53,55,44,51,56,46,48,53,48,53,51,49,93,44,91,45,49,49,53,46,56,57,54,57,50,53,44,51,54,46,56,52,50,48,56,53,93,44,91,45,49,49,53,46,55,52,48,56,52,54,44,51,54,46,56,53,51,48,56,52,93,44,91,45,49,49,52,46,55,54,50,53,48,55,44,51,54,46,56,53,51,52,55,51,93,44,91,45,49,49,52,46,48,53,48,51,53,52,44,51,54,46,56,52,51,49,52,49,93,44,91,45,49,49,52,46,48,53,48,48,53,50,44,51,55,46,48,48,48,49,57,49,93,44,91,45,49,49,52,46,48,53,50,51,53,44,51,55,46,54,48,52,55,55,54,93,44,91,45,49,49,52,46,48,52,57,57,55,56,44,51,56,46,49,52,56,55,54,51,93,44,91,45,49,49,52,46,48,52,57,57,55,55,44,51,56,46,53,55,50,57,55,52,93,44,91,45,49,49,52,46,48,52,57,56,48,55,44,51,56,46,54,55,55,51,54,53,93,44,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,54,55,55,51,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,56,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,48,34,44,34,78,65,77,69,34,58,34,78,111,109,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,50,53,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,54,52,46,52,54,49,52,52,57,44,54,54,46,54,50,54,53,48,57,93,44,91,45,49,54,53,46,52,51,52,52,52,44,54,54,46,52,55,53,50,51,93,44,91,45,49,54,54,46,55,49,57,52,55,52,44,54,54,46,49,52,56,48,52,54,93,44,91,45,49,54,55,46,53,50,48,56,50,51,44,54,53,46,56,55,56,49,53,50,93,44,91,45,49,54,56,46,49,53,53,49,50,57,44,54,53,46,55,50,56,51,53,49,93,44,91,45,49,54,56,46,50,51,49,56,56,55,44,54,53,46,54,50,50,53,54,55,93,44,91,45,49,54,56,46,49,54,55,53,56,52,44,54,53,46,53,52,54,57,48,50,93,44,91,45,49,54,55,46,52,48,48,56,57,49,44,54,53,46,51,52,55,50,55,93,44,91,45,49,54,55,46,48,55,48,51,51,49,44,54,53,46,51,50,55,52,57,49,93,44,91,45,49,54,55,46,48,56,52,51,51,57,44,54,53,46,49,53,53,54,57,53,93,44,91,45,49,54,54,46,57,55,56,57,54,52,44,54,53,46,48,54,57,52,49,93,44,91,45,49,54,54,46,53,56,57,49,56,53,44,54,52,46,57,48,56,50,57,49,93,44,91,45,49,54,54,46,53,57,48,49,54,51,44,54,52,46,55,51,56,57,52,56,93,44,91,45,49,54,54,46,53,48,55,56,52,49,44,54,52,46,54,51,49,51,55,51,93,44,91,45,49,54,54,46,50,56,49,51,56,56,44,54,52,46,53,52,52,57,53,54,93,44,91,45,49,54,53,46,51,51,53,57,49,56,44,54,52,46,52,52,52,52,49,55,93,44,91,45,49,54,53,46,48,51,50,50,48,53,44,54,52,46,51,56,55,57,56,55,93,44,91,45,49,54,52,46,55,53,52,56,48,49,44,54,52,46,52,48,55,56,50,52,93,44,91,45,49,54,52,46,51,53,53,51,53,53,44,54,52,46,53,48,56,52,52,55,93,44,91,45,49,54,51,46,54,53,54,57,53,49,44,54,52,46,53,50,49,57,52,93,44,91,45,49,54,51,46,51,54,51,55,53,52,44,54,52,46,52,52,53,54,52,50,93,44,91,45,49,54,51,46,50,52,49,57,51,50,44,54,52,46,51,54,48,55,52,51,93,44,91,45,49,54,50,46,55,57,53,56,48,50,44,54,52,46,50,55,53,54,55,52,93,44,91,45,49,54,50,46,53,49,55,56,55,50,44,54,52,46,51,56,52,57,48,54,93,44,91,45,49,54,50,46,52,56,54,54,57,49,44,54,52,46,52,55,48,56,57,55,93,44,91,45,49,54,50,46,51,49,51,52,57,49,44,54,52,46,53,52,50,55,56,57,93,44,91,45,49,54,49,46,53,57,48,56,52,44,54,52,46,51,51,53,53,52,49,93,44,91,45,49,54,49,46,52,49,51,56,57,57,44,54,52,46,51,53,56,53,56,55,93,44,91,45,49,54,49,46,48,55,53,52,48,50,44,54,52,46,50,48,54,54,53,50,93,44,91,45,49,54,49,46,48,52,53,54,54,44,54,52,46,48,50,50,52,54,55,93,44,91,45,49,54,48,46,56,56,54,50,44,54,51,46,55,55,49,51,57,55,93,44,91,45,49,54,49,46,51,49,52,51,53,56,44,54,51,46,53,49,57,50,50,57,93,44,91,45,49,54,49,46,56,52,48,52,48,53,44,54,51,46,52,57,51,50,56,56,93,44,91,45,49,54,49,46,57,53,54,57,54,44,54,51,46,53,53,55,50,48,57,93,44,91,45,49,54,50,46,50,50,50,55,52,52,44,54,51,46,53,57,54,57,49,52,93,44,91,45,49,54,50,46,51,57,52,51,53,57,44,54,51,46,54,56,56,51,48,52,93,44,91,45,49,54,50,46,53,56,52,51,49,57,44,54,51,46,54,57,49,51,57,50,93,44,91,45,49,54,50,46,56,50,54,52,52,49,44,54,51,46,53,55,54,51,54,93,44,91,45,49,54,50,46,54,55,57,56,51,49,44,54,51,46,52,57,49,54,50,54,93,44,91,45,49,54,50,46,52,51,55,55,55,51,44,54,51,46,52,57,49,57,57,52,93,44,91,45,49,54,50,46,54,55,49,56,49,51,44,54,51,46,51,49,50,56,50,53,93,44,91,45,49,54,50,46,51,56,51,48,56,50,44,54,51,46,50,55,49,56,49,54,93,44,91,45,49,54,50,46,48,48,49,55,57,56,44,54,51,46,48,57,56,53,51,54,93,44,91,45,49,54,50,46,48,48,49,55,54,57,44,54,51,46,48,49,49,57,49,57,93,44,91,45,49,54,48,46,56,53,55,57,57,44,54,51,46,48,49,49,57,53,51,93,44,91,45,49,54,48,46,56,53,56,48,48,52,44,54,51,46,50,55,49,56,51,56,93,44,91,45,49,54,48,46,54,54,55,51,54,49,44,54,51,46,50,55,49,56,52,53,93,44,91,45,49,54,48,46,54,57,48,50,57,52,44,54,51,46,53,51,49,54,56,57,93,44,91,45,49,54,48,46,52,57,55,51,56,49,44,54,51,46,54,49,56,51,52,51,93,44,91,45,49,54,48,46,49,49,49,53,50,50,44,54,51,46,54,49,56,51,53,49,93,44,91,45,49,54,48,46,49,49,49,52,57,56,44,54,51,46,55,48,52,57,55,50,93,44,91,45,49,53,57,46,57,51,50,55,51,49,44,54,51,46,55,57,49,53,56,57,93,44,91,45,49,53,57,46,55,51,55,52,53,49,44,54,51,46,55,57,49,53,57,49,93,44,91,45,49,53,57,46,55,51,55,52,55,53,44,54,52,46,48,53,49,52,53,57,93,44,91,45,49,53,57,46,57,52,55,50,56,56,44,54,52,46,48,53,49,52,53,57,93,44,91,45,49,53,57,46,57,54,50,50,57,44,54,52,46,55,52,52,51,55,55,93,44,91,45,49,53,57,46,55,55,52,56,57,55,44,54,52,46,55,52,52,51,56,50,93,44,91,45,49,53,57,46,55,55,52,57,50,49,44,54,52,46,57,49,55,53,54,53,93,44,91,45,49,53,57,46,53,55,50,49,55,51,44,54,52,46,57,49,55,53,57,55,93,44,91,45,49,53,57,46,53,56,50,55,51,54,44,54,53,46,50,54,52,48,50,54,93,44,91,45,49,53,57,46,51,55,55,51,54,53,44,54,53,46,50,54,52,48,51,51,93,44,91,45,49,53,57,46,51,56,53,53,55,56,44,54,53,46,53,50,51,56,51,53,93,44,91,45,49,53,57,46,53,57,51,53,48,54,44,54,53,46,53,50,51,56,51,53,93,44,91,45,49,53,57,46,56,48,49,54,57,50,44,54,53,46,52,51,55,50,51,49,93,44,91,45,49,54,49,46,53,52,54,56,57,50,44,54,53,46,52,51,55,50,48,51,93,44,91,45,49,54,51,46,55,53,53,51,57,49,44,54,53,46,52,51,55,49,54,53,93,44,91,45,49,54,51,46,55,53,53,52,48,55,44,54,53,46,54,49,48,51,54,55,93,44,91,45,49,54,51,46,57,54,51,52,57,56,44,54,53,46,54,49,48,51,54,51,93,44,91,45,49,54,51,46,57,54,51,53,49,54,44,54,53,46,55,56,51,53,54,49,93,44,91,45,49,54,52,46,50,52,52,49,50,55,44,54,53,46,55,56,51,53,53,51,93,44,91,45,49,54,52,46,50,52,52,49,57,49,44,54,54,46,49,50,57,57,52,54,93,44,91,45,49,54,52,46,51,49,56,57,49,51,44,54,54,46,49,50,57,57,52,52,93,44,91,45,49,54,52,46,51,49,56,57,51,54,44,54,54,46,52,55,54,51,49,57,93,44,91,45,49,54,52,46,52,54,49,52,52,57,44,54,54,46,54,50,54,53,48,57,93,93,93,44,91,91,91,45,49,55,49,46,57,53,52,54,55,50,44,54,51,46,53,50,48,57,49,57,93,44,91,45,49,55,49,46,56,56,52,56,56,55,44,54,51,46,51,55,55,53,57,93,44,91,45,49,55,49,46,55,55,50,50,56,52,44,54,51,46,51,49,53,51,50,55,93,44,91,45,49,55,49,46,52,56,49,57,51,53,44,54,51,46,50,53,52,53,51,49,93,44,91,45,49,55,49,46,50,53,49,51,57,56,44,54,51,46,50,57,50,53,54,56,93,44,91,45,49,55,49,46,48,54,54,56,51,54,44,54,51,46,51,55,49,49,48,56,93,44,91,45,49,55,48,46,57,48,56,50,52,57,44,54,51,46,51,54,57,57,52,53,93,44,91,45,49,55,48,46,53,49,53,50,55,54,44,54,51,46,50,56,55,57,49,93,44,91,45,49,55,48,46,51,50,56,48,50,50,44,54,51,46,49,51,56,55,50,52,93,44,91,45,49,55,48,46,49,49,53,52,49,54,44,54,51,46,49,50,55,50,52,55,93,44,91,45,49,54,57,46,57,48,49,52,48,56,44,54,51,46,48,51,55,51,54,53,93,44,91,45,49,54,57,46,56,51,56,57,53,50,44,54,50,46,57,50,53,56,56,57,93,44,91,45,49,54,57,46,53,57,49,48,51,54,44,54,50,46,56,56,55,56,54,55,93,44,91,45,49,54,57,46,52,49,57,56,54,49,44,54,50,46,57,55,51,56,53,54,93,44,91,45,49,54,57,46,52,53,49,48,56,51,44,54,51,46,48,51,56,53,53,49,93,44,91,45,49,54,57,46,50,56,50,51,50,54,44,54,51,46,49,49,52,52,48,53,93,44,91,45,49,54,56,46,57,50,50,55,56,44,54,51,46,48,57,57,53,54,55,93,44,91,45,49,54,56,46,55,51,51,52,54,44,54,51,46,49,51,49,53,53,51,93,44,91,45,49,54,56,46,54,48,57,50,54,49,44,54,51,46,50,50,57,51,54,50,93,44,91,45,49,54,56,46,54,52,50,55,54,56,44,54,51,46,51,52,52,56,56,93,44,91,45,49,54,57,46,52,53,53,53,51,57,44,54,51,46,52,49,53,48,50,93,44,91,45,49,54,57,46,54,48,50,50,56,53,44,54,51,46,52,56,48,54,51,53,93,44,91,45,49,54,57,46,57,50,54,53,57,57,44,54,51,46,53,50,54,55,51,57,93,44,91,45,49,54,57,46,57,56,53,54,50,56,44,54,51,46,54,50,50,57,53,57,93,44,91,45,49,55,48,46,50,57,54,56,52,54,44,54,51,46,55,53,53,53,55,50,93,44,91,45,49,55,48,46,53,48,52,48,51,44,54,51,46,55,53,51,52,93,44,91,45,49,55,48,46,57,53,57,49,53,53,44,54,51,46,54,50,53,56,56,56,93,44,91,45,49,55,49,46,53,51,53,54,48,51,44,54,51,46,55,50,49,56,55,53,93,44,91,45,49,55,49,46,53,52,56,56,51,44,54,51,46,56,48,48,52,54,49,93,44,91,45,49,55,49,46,55,55,54,51,55,50,44,54,51,46,56,51,55,55,50,52,93,44,91,45,49,55,49,46,57,53,52,54,55,50,44,54,51,46,53,50,48,57,49,57,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,77,99,67,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,49,56,54,50,44,52,55,46,57,53,55,52,53,55,93,44,91,45,49,48,54,46,50,54,48,57,51,50,44,52,55,46,56,54,56,52,51,49,93,44,91,45,49,48,54,46,50,54,49,49,50,49,44,52,55,46,53,50,57,48,53,50,93,44,91,45,49,48,54,46,50,57,56,49,53,56,44,52,55,46,51,53,52,50,57,56,93,44,91,45,49,48,54,46,49,55,48,54,55,53,44,52,55,46,51,53,52,52,57,53,93,44,91,45,49,48,54,46,49,55,48,52,50,44,52,55,46,49,56,48,56,50,54,93,44,91,45,49,48,54,46,48,56,54,55,55,55,44,52,55,46,49,56,48,57,51,56,93,44,91,45,49,48,53,46,57,53,57,56,57,55,44,52,55,46,48,57,50,57,54,56,93,44,91,45,49,48,53,46,56,51,51,48,52,52,44,52,55,46,49,56,49,48,57,50,93,44,91,45,49,48,53,46,52,48,54,51,48,57,44,52,55,46,49,56,49,53,56,51,93,44,91,45,49,48,53,46,52,48,54,53,56,49,44,52,55,46,53,50,57,53,51,52,93,44,91,45,49,48,53,46,51,54,51,50,54,50,44,52,55,46,55,57,48,52,49,57,93,44,91,45,49,48,53,46,50,51,52,55,55,49,44,52,55,46,55,57,48,53,48,50,93,44,91,45,49,48,53,46,49,57,53,49,50,50,44,52,55,46,56,54,56,48,56,49,93,44,91,45,49,48,53,46,49,57,52,55,56,51,44,52,56,46,48,54,54,54,49,55,93,44,91,45,49,48,53,46,50,50,56,57,57,44,52,56,46,48,56,57,50,56,52,93,44,91,45,49,48,53,46,53,57,53,48,50,55,44,52,56,46,48,56,49,55,56,93,44,91,45,49,48,53,46,56,52,51,56,57,49,44,52,56,46,48,49,48,50,56,57,93,44,91,45,49,48,54,46,50,50,57,51,48,50,44,52,56,46,48,50,54,52,49,54,93,44,91,45,49,48,54,46,51,57,52,49,54,51,44,52,56,46,48,54,52,55,50,54,93,44,91,45,49,48,54,46,52,49,56,54,50,44,52,55,46,57,53,55,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,117,99,104,97,110,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,50,53,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,56,49,54,54,49,44,52,50,46,54,52,50,48,53,54,93,44,91,45,57,50,46,48,54,52,55,54,54,44,52,50,46,50,57,55,50,53,57,93,44,91,45,57,49,46,56,51,49,48,56,57,44,52,50,46,50,57,57,48,54,51,93,44,91,45,57,49,46,53,57,54,57,56,49,44,52,50,46,50,57,54,52,48,56,93,44,91,45,57,49,46,54,48,55,48,53,57,44,52,50,46,54,52,51,57,55,51,93,44,91,45,57,50,46,48,56,49,54,54,49,44,52,50,46,54,52,50,48,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,117,80,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,49,55,52,51,44,34,98,101,100,115,34,58,49,57,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,50,56,57,55,51,44,52,49,46,54,56,53,50,52,50,93,44,91,45,56,55,46,57,49,52,50,54,52,44,52,49,46,55,49,54,53,57,56,93,44,91,45,56,55,46,57,50,48,52,55,54,44,52,49,46,57,57,51,56,56,54,93,44,91,45,56,56,46,50,54,50,56,55,53,44,52,49,46,57,56,54,51,55,56,93,44,91,45,56,56,46,50,54,49,57,53,50,44,52,49,46,55,50,52,54,53,50,93,44,91,45,56,56,46,50,54,49,50,55,53,44,52,49,46,55,50,52,54,53,54,93,44,91,45,56,56,46,48,50,56,57,55,51,44,52,49,46,54,56,53,50,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,97,108,108,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,52,56,48,51,44,52,51,46,52,55,55,56,49,53,93,44,91,45,49,48,52,46,48,53,51,48,50,56,44,52,51,46,48,48,48,53,56,53,93,44,91,45,49,48,51,46,53,48,53,49,44,52,51,46,48,48,48,55,55,93,44,91,45,49,48,51,46,48,48,48,54,48,57,44,52,51,46,48,48,48,55,53,49,93,44,91,45,49,48,51,46,48,48,48,57,49,51,44,52,51,46,52,55,54,56,52,56,93,44,91,45,49,48,52,46,48,53,52,56,48,51,44,52,51,46,52,55,55,56,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,75,105,116,116,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,51,55,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,50,56,55,50,50,44,52,57,46,48,48,48,53,54,50,93,44,91,45,57,55,46,50,51,52,49,50,56,44,52,56,46,57,52,55,56,57,56,93,44,91,45,57,55,46,49,48,53,52,52,50,44,52,56,46,54,56,57,54,52,56,93,44,91,45,57,55,46,49,54,51,51,53,53,44,52,56,46,53,52,51,57,54,55,93,44,91,45,57,54,46,51,56,55,56,51,53,44,52,56,46,53,52,52,51,48,56,93,44,91,45,57,54,46,52,48,53,52,48,56,44,52,56,46,57,57,57,57,56,51,93,44,91,45,57,55,46,50,50,56,55,50,50,44,52,57,46,48,48,48,53,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,57,34,44,34,78,65,77,69,34,58,34,79,99,111,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,48,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,52,55,48,51,49,44,51,51,46,57,48,54,49,57,56,93,44,91,45,56,51,46,53,48,53,57,50,56,44,51,51,46,56,49,55,55,54,93,44,91,45,56,51,46,52,48,54,49,56,57,44,51,51,46,54,57,56,51,48,55,93,44,91,45,56,51,46,50,56,48,51,52,44,51,51,46,55,54,49,55,55,52,93,44,91,45,56,51,46,50,55,53,57,51,51,44,51,51,46,56,52,55,57,55,55,93,44,91,45,56,51,46,53,51,55,51,56,53,44,51,51,46,57,54,53,57,49,50,93,44,91,45,56,51,46,54,52,55,48,51,49,44,51,51,46,57,48,54,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,57,51,34,44,34,78,65,77,69,34,58,34,87,105,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,49,57,56,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,49,51,52,49,55,49,44,50,57,46,52,52,49,55,53,49,93,44,91,45,57,56,46,52,48,55,51,51,54,44,50,57,46,49,49,52,52,51,53,93,44,91,45,57,56,46,49,57,48,57,57,49,44,50,56,46,56,56,50,51,51,51,93,44,91,45,57,55,46,55,50,56,52,52,51,44,50,57,46,50,50,49,55,52,56,93,44,91,45,57,55,46,56,52,48,51,56,51,44,50,57,46,51,55,54,55,57,49,93,44,91,45,57,56,46,49,50,50,53,55,52,44,50,57,46,51,55,56,53,52,57,93,44,91,45,57,56,46,49,51,52,49,55,49,44,50,57,46,52,52,49,55,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,70,105,108,108,109,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,55,52,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,50,52,55,56,44,52,48,46,54,57,56,53,51,55,93,44,91,45,57,55,46,56,50,52,49,49,52,44,52,48,46,51,53,48,53,52,49,93,44,91,45,57,55,46,56,50,48,56,49,54,44,52,48,46,51,53,48,53,52,53,93,44,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,44,91,45,57,55,46,51,54,56,52,48,49,44,52,48,46,54,57,56,54,50,53,93,44,91,45,57,55,46,56,50,52,55,56,44,52,48,46,54,57,56,53,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,50,48,50,51,53,44,51,48,46,51,48,51,53,52,93,44,91,45,56,51,46,52,54,56,55,54,56,44,51,48,46,51,48,52,50,49,50,93,44,91,45,56,51,46,51,54,55,50,54,44,51,48,46,50,54,48,52,52,93,44,91,45,56,51,46,50,52,55,50,53,51,44,51,48,46,50,54,48,54,55,93,44,91,45,56,51,46,49,55,48,57,54,57,44,51,48,46,51,56,53,50,50,53,93,44,91,45,56,51,46,50,50,48,48,56,55,44,51,48,46,52,50,50,52,56,52,93,44,91,45,56,51,46,50,55,50,54,49,50,44,51,48,46,54,50,55,54,56,55,93,44,91,45,56,51,46,51,48,57,50,52,57,44,51,48,46,54,51,52,52,48,54,93,44,91,45,56,51,46,51,52,48,56,53,50,44,51,48,46,54,51,54,51,51,54,93,44,91,45,56,51,46,51,53,55,55,48,51,44,51,48,46,54,51,55,51,54,93,44,91,45,56,51,46,54,49,49,55,50,44,51,48,46,54,53,49,50,53,56,93,44,91,45,56,51,46,54,48,52,49,56,54,44,51,48,46,53,56,49,57,49,54,93,44,91,45,56,51,46,55,51,54,57,53,52,44,51,48,46,53,48,55,53,54,57,93,44,91,45,56,51,46,55,50,49,55,50,44,51,48,46,52,51,52,51,53,52,93,44,91,45,56,51,46,56,50,48,50,51,53,44,51,48,46,51,48,51,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,52,53,51,44,34,98,101,100,115,34,58,50,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,57,57,53,53,54,44,49,56,46,51,56,48,48,54,53,93,44,91,45,54,53,46,57,52,50,52,50,57,44,49,56,46,50,57,51,52,54,57,93,44,91,45,54,53,46,57,49,56,53,51,53,44,49,56,46,50,55,48,49,51,93,44,91,45,54,53,46,57,49,57,50,55,56,44,49,56,46,52,48,50,57,57,51,93,44,91,45,54,53,46,57,57,51,52,48,49,44,49,56,46,53,49,54,53,57,56,93,44,91,45,54,54,46,48,51,51,57,55,44,49,56,46,53,49,52,50,54,57,93,44,91,45,54,53,46,57,57,57,53,53,54,44,49,56,46,51,56,48,48,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,57,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,48,52,49,52,49,44,51,57,46,50,53,57,52,53,56,93,44,91,45,56,55,46,54,50,56,55,57,56,44,51,57,46,49,53,55,53,49,51,93,44,91,45,56,55,46,53,50,50,57,51,57,44,51,56,46,57,48,50,51,57,93,44,91,45,56,55,46,50,52,49,48,50,55,44,51,56,46,57,48,55,56,55,52,93,44,91,45,56,55,46,50,52,48,55,51,55,44,51,57,46,49,55,49,55,55,51,93,44,91,45,56,55,46,50,52,48,51,55,57,44,51,57,46,50,53,57,48,54,52,93,44,91,45,56,55,46,54,48,52,49,52,49,44,51,57,46,50,53,57,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,50,34,44,34,78,65,77,69,34,58,34,76,97,32,80,97,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,48,49,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,54,50,55,49,50,53,44,51,51,46,52,51,51,53,53,52,93,44,91,45,49,49,52,46,55,50,48,48,54,53,44,51,51,46,52,48,55,56,57,49,93,44,91,45,49,49,52,46,54,55,55,48,51,50,44,51,51,46,50,55,48,49,54,57,93,44,91,45,49,49,52,46,55,48,55,56,57,54,44,51,51,46,48,57,55,52,51,49,93,44,91,45,49,49,52,46,54,55,48,56,48,51,44,51,51,46,48,51,55,57,56,51,93,44,91,45,49,49,52,46,53,49,54,56,52,50,44,51,51,46,48,50,55,56,56,54,93,44,91,45,49,49,52,46,50,54,56,56,44,51,51,46,48,50,57,57,54,49,93,44,91,45,49,49,52,46,50,54,56,56,48,56,44,51,51,46,52,54,52,52,48,50,93,44,91,45,49,49,51,46,57,53,55,53,49,52,44,51,51,46,52,54,52,52,49,51,93,44,91,45,49,49,51,46,57,53,55,52,56,57,44,51,51,46,51,55,55,51,54,50,93,44,91,45,49,49,51,46,51,51,53,48,52,56,44,51,51,46,51,55,55,52,54,57,93,44,91,45,49,49,51,46,51,51,51,55,53,51,44,51,51,46,57,57,57,50,50,55,93,44,91,45,49,49,51,46,51,51,51,53,48,56,44,51,52,46,51,49,55,56,55,55,93,44,91,45,49,49,51,46,53,51,57,53,50,52,44,51,52,46,51,48,54,51,55,55,93,44,91,45,49,49,51,46,54,48,54,48,57,51,44,51,52,46,50,50,57,51,51,52,93,44,91,45,49,49,52,46,48,51,49,49,51,50,44,51,52,46,50,53,57,56,49,57,93,44,91,45,49,49,52,46,49,51,56,50,56,50,44,51,52,46,51,48,51,50,51,93,44,91,45,49,49,52,46,50,53,52,49,52,49,44,51,52,46,49,55,51,56,51,93,44,91,45,49,49,52,46,52,51,53,52,50,57,44,51,52,46,48,55,57,55,50,55,93,44,91,45,49,49,52,46,53,51,52,49,52,54,44,51,51,46,57,50,53,49,56,55,93,44,91,45,49,49,52,46,52,57,54,52,56,57,44,51,51,46,54,57,54,57,48,49,93,44,91,45,49,49,52,46,53,50,52,50,49,53,44,51,51,46,53,53,51,48,54,56,93,44,91,45,49,49,52,46,54,50,55,49,50,53,44,51,51,46,52,51,51,53,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,66,114,111,111,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,50,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,51,54,49,53,56,44,51,49,46,48,51,55,54,55,57,93,44,91,45,56,51,46,55,52,51,55,50,57,44,51,48,46,54,53,56,51,57,54,93,44,91,45,56,51,46,54,49,49,55,50,44,51,48,46,54,53,49,50,53,56,93,44,91,45,56,51,46,51,53,55,55,48,51,44,51,48,46,54,51,55,51,54,93,44,91,45,56,51,46,52,56,50,52,54,49,44,51,48,46,55,53,54,57,51,49,93,44,91,45,56,51,46,51,55,48,56,57,56,44,51,48,46,56,56,52,56,50,56,93,44,91,45,56,51,46,52,55,53,54,49,55,44,51,49,46,48,51,49,57,54,52,93,44,91,45,56,51,46,53,55,52,56,53,55,44,51,49,46,48,55,56,49,51,53,93,44,91,45,56,51,46,55,51,54,49,53,56,44,51,49,46,48,51,55,54,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,54,34,44,34,78,65,77,69,34,58,34,65,108,101,117,116,105,97,110,115,32,87,101,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,53,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,55,56,46,51,48,55,55,56,55,44,53,49,46,56,56,49,54,48,56,93,44,91,45,49,55,56,46,49,53,49,54,54,44,53,49,46,55,55,51,55,53,54,93,44,91,45,49,55,56,46,49,56,57,51,54,56,44,53,49,46,54,51,51,54,55,51,93,44,91,45,49,55,55,46,57,50,56,50,53,55,44,53,49,46,53,52,49,56,57,53,93,44,91,45,49,55,55,46,55,50,55,55,49,51,44,53,49,46,54,49,48,57,54,52,93,44,91,45,49,55,55,46,52,53,50,48,51,51,44,53,49,46,54,52,48,50,48,49,93,44,91,45,49,55,55,46,50,56,49,48,57,55,44,53,49,46,54,50,55,54,49,50,93,44,91,45,49,55,55,46,48,55,57,57,56,53,44,53,49,46,54,55,52,50,51,49,93,44,91,45,49,55,54,46,57,54,57,54,49,53,44,53,49,46,53,51,56,57,56,53,93,44,91,45,49,55,54,46,54,57,56,55,51,49,44,53,49,46,53,55,56,52,50,56,93,44,91,45,49,55,54,46,53,51,57,55,54,54,44,53,49,46,54,52,56,52,51,56,93,44,91,45,49,55,54,46,50,53,53,49,56,54,44,53,49,46,54,57,53,51,55,54,93,44,91,45,49,55,53,46,56,52,57,55,53,52,44,53,49,46,55,57,53,52,57,51,93,44,91,45,49,55,53,46,56,48,50,52,50,53,44,53,49,46,56,54,48,52,49,53,93,44,91,45,49,55,53,46,52,48,57,57,56,50,44,53,49,46,57,51,48,49,56,52,93,44,91,45,49,55,53,46,51,52,56,55,49,57,44,53,49,46,57,54,50,53,56,53,93,44,91,45,49,55,53,46,48,53,54,51,54,44,53,49,46,57,52,56,49,53,57,93,44,91,45,49,55,52,46,56,55,54,55,51,50,44,53,49,46,57,56,53,57,48,56,93,44,91,45,49,55,52,46,55,52,53,48,54,53,44,53,49,46,57,53,53,54,52,54,93,44,91,45,49,55,52,46,52,56,48,56,57,49,44,53,49,46,57,53,50,52,57,55,93,44,91,45,49,55,52,46,51,49,51,57,55,52,44,53,50,46,48,51,54,50,50,54,93,44,91,45,49,55,52,46,48,53,54,53,48,51,44,53,50,46,48,53,49,54,51,51,93,44,91,45,49,55,51,46,57,51,53,49,54,49,44,53,50,46,48,48,52,52,52,50,93,44,91,45,49,55,51,46,55,49,48,48,51,52,44,53,50,46,48,48,54,56,52,93,44,91,45,49,55,51,46,52,56,55,51,49,56,44,53,49,46,57,55,49,49,56,52,93,44,91,45,49,55,51,46,51,48,52,53,50,50,44,53,50,46,48,48,53,52,50,54,93,44,91,45,49,55,51,46,49,54,54,55,48,51,44,53,49,46,57,52,54,55,48,54,93,44,91,45,49,55,51,46,48,55,57,54,55,50,44,53,50,46,48,49,55,57,49,53,93,44,91,45,49,55,50,46,57,50,51,48,53,56,44,53,50,46,48,50,52,49,54,93,44,91,45,49,55,50,46,56,54,54,54,52,49,44,53,50,46,49,52,56,57,51,51,93,44,91,45,49,55,51,46,52,52,48,55,54,52,44,53,50,46,49,54,56,55,54,52,93,44,91,45,49,55,51,46,53,48,54,51,48,51,44,53,50,46,50,49,51,49,51,56,93,44,91,45,49,55,51,46,55,51,50,49,48,52,44,53,50,46,49,56,51,50,53,52,93,44,91,45,49,55,51,46,57,57,48,52,55,50,44,53,50,46,49,56,51,49,52,51,93,44,91,45,49,55,51,46,57,48,50,56,51,52,44,53,50,46,51,49,57,50,50,56,93,44,91,45,49,55,51,46,57,52,48,50,50,54,44,53,50,46,51,57,54,50,53,54,93,44,91,45,49,55,52,46,49,49,48,53,56,50,44,53,50,46,52,54,56,51,50,49,93,44,91,45,49,55,52,46,51,49,50,55,51,51,44,53,50,46,52,53,54,55,49,50,93,44,91,45,49,55,52,46,55,57,54,54,50,53,44,53,50,46,49,53,51,52,55,93,44,91,45,49,55,52,46,57,50,53,50,51,51,44,53,50,46,49,54,51,57,49,93,44,91,45,49,55,53,46,50,57,54,54,49,55,44,53,50,46,48,56,56,56,50,93,44,91,45,49,55,53,46,53,52,57,49,51,53,44,53,50,46,48,48,57,56,55,57,93,44,91,45,49,55,53,46,56,49,49,57,57,56,44,53,50,46,48,52,55,57,52,56,93,44,91,45,49,55,54,46,48,50,55,55,52,52,44,53,50,46,49,54,48,49,55,53,93,44,91,45,49,55,54,46,50,50,52,52,51,52,44,53,50,46,49,53,51,49,50,54,93,44,91,45,49,55,54,46,50,57,51,49,51,44,53,50,46,48,54,53,52,50,55,93,44,91,45,49,55,54,46,50,52,50,56,54,52,44,53,49,46,57,50,54,55,52,50,93,44,91,45,49,55,54,46,52,50,57,49,51,55,44,53,49,46,57,49,53,51,53,93,44,91,45,49,55,54,46,52,56,56,52,55,57,44,53,50,46,48,50,54,48,52,50,93,44,91,45,49,55,54,46,54,48,49,50,56,44,53,50,46,48,53,54,53,54,93,44,91,45,49,55,55,46,48,49,54,56,57,54,44,53,49,46,57,54,53,48,51,50,93,44,91,45,49,55,55,46,50,48,54,50,48,57,44,53,49,46,57,57,51,49,49,93,44,91,45,49,55,55,46,51,48,56,56,57,52,44,53,49,46,56,51,54,55,57,51,93,44,91,45,49,55,55,46,53,49,53,51,49,54,44,53,49,46,55,57,49,57,55,93,44,91,45,49,55,55,46,54,49,52,57,49,50,44,53,49,46,57,48,53,93,44,91,45,49,55,55,46,56,50,54,56,48,55,44,53,49,46,56,57,54,52,49,52,93,44,91,45,49,55,55,46,57,52,55,48,48,51,44,53,49,46,57,55,49,51,49,50,93,44,91,45,49,55,56,46,50,52,55,51,56,44,53,49,46,57,53,48,49,54,54,93,44,91,45,49,55,56,46,51,48,55,55,56,55,44,53,49,46,56,56,49,54,48,56,93,93,93,44,91,91,91,45,49,54,54,46,50,50,53,54,52,55,44,53,52,46,48,52,49,57,57,51,93,44,91,45,49,54,54,46,55,56,53,49,57,52,44,53,52,46,48,54,53,57,55,57,93,44,91,45,49,54,55,46,48,53,51,57,57,51,44,53,52,46,48,48,56,54,49,51,93,44,91,45,49,54,55,46,50,51,48,48,55,55,44,53,51,46,56,56,56,50,53,50,93,44,91,45,49,54,55,46,49,51,56,50,48,53,44,53,51,46,55,48,57,52,50,51,93,44,91,45,49,54,55,46,50,51,48,51,56,44,53,51,46,53,54,54,55,51,52,93,44,91,45,49,54,55,46,55,52,54,55,54,57,44,53,51,46,52,50,54,51,51,53,93,44,91,45,49,54,55,46,54,57,56,50,49,51,44,53,51,46,53,50,52,50,50,51,93,44,91,45,49,54,55,46,57,53,57,56,56,50,44,53,51,46,54,49,50,56,49,50,93,44,91,45,49,54,56,46,48,57,48,51,53,50,44,53,51,46,54,49,57,54,54,55,93,44,91,45,49,54,56,46,52,49,53,50,53,57,44,53,51,46,53,48,57,52,52,55,93,44,91,45,49,54,56,46,53,48,52,50,57,54,44,53,51,46,51,54,50,56,56,57,93,44,91,45,49,54,56,46,54,56,57,51,51,55,44,53,51,46,51,48,51,50,55,51,93,44,91,45,49,54,56,46,56,53,57,52,52,57,44,53,51,46,49,56,56,49,53,50,93,44,91,45,49,54,57,46,48,48,51,51,52,54,44,53,50,46,57,57,54,53,53,50,93,44,91,45,49,54,57,46,49,57,55,49,51,51,44,53,50,46,57,54,52,56,56,50,93,44,91,45,49,54,57,46,51,50,54,53,57,50,44,53,50,46,55,53,51,53,52,50,93,44,91,45,49,54,57,46,50,50,56,48,53,56,44,53,50,46,55,49,52,54,49,93,44,91,45,49,54,56,46,56,52,57,52,54,52,44,53,50,46,56,52,48,57,50,49,93,44,91,45,49,54,56,46,55,52,51,48,48,50,44,53,50,46,56,53,52,55,51,49,93,44,91,45,49,54,56,46,53,53,52,54,56,54,44,53,50,46,57,53,53,48,51,54,93,44,91,45,49,54,56,46,52,48,50,54,56,52,44,53,50,46,57,50,57,50,53,51,93,44,91,45,49,54,56,46,50,53,55,55,49,51,44,53,51,46,49,52,49,56,57,53,93,44,91,45,49,54,56,46,48,50,54,50,55,44,53,51,46,50,50,54,49,51,55,93,44,91,45,49,54,55,46,54,54,57,50,55,56,44,53,51,46,49,55,50,48,53,93,44,91,45,49,54,55,46,53,50,50,49,52,49,44,53,51,46,49,56,54,48,48,57,93,44,91,45,49,54,55,46,49,48,54,55,53,56,44,53,51,46,51,54,54,57,57,49,93,44,91,45,49,54,54,46,55,48,49,55,57,44,53,51,46,52,48,50,48,51,51,93,44,91,45,49,54,54,46,51,55,56,54,53,53,44,53,51,46,54,48,50,49,52,49,93,44,91,45,49,54,54,46,49,55,52,57,51,56,44,53,51,46,54,53,57,55,55,56,93,44,91,45,49,54,53,46,57,55,54,51,54,44,53,51,46,55,55,49,48,54,49,93,44,91,45,49,54,53,46,57,54,49,48,56,54,44,53,51,46,57,49,54,50,52,51,93,44,91,45,49,54,54,46,50,50,53,54,52,49,44,53,51,46,57,54,48,50,48,54,93,44,91,45,49,54,54,46,50,50,53,54,52,55,44,53,52,46,48,52,49,57,57,51,93,93,93,44,91,91,91,49,55,50,46,51,52,57,51,52,44,53,50,46,57,50,50,49,57,52,93,44,91,49,55,50,46,55,51,54,57,52,53,44,53,50,46,55,50,55,56,56,55,93,44,91,49,55,50,46,57,52,51,48,56,55,44,53,50,46,54,56,56,56,52,55,93,44,91,49,55,51,46,50,48,57,54,50,56,44,53,50,46,55,51,57,54,53,49,93,44,91,49,55,51,46,51,51,48,50,51,54,44,53,50,46,54,57,50,56,51,51,93,44,91,49,55,51,46,53,56,48,54,52,55,44,53,50,46,56,49,53,52,56,53,93,44,91,49,55,51,46,51,50,49,57,51,56,44,53,50,46,57,57,50,49,50,49,93,44,91,49,55,51,46,49,51,50,50,48,56,44,53,51,46,48,52,51,57,53,56,93,44,91,49,55,50,46,55,51,52,52,49,56,44,53,51,46,48,54,51,54,52,53,93,44,91,49,55,50,46,53,50,55,55,51,44,53,51,46,48,50,51,51,49,56,93,44,91,49,55,50,46,51,52,57,51,52,44,53,50,46,57,50,50,49,57,52,93,93,93,44,91,91,91,45,49,55,48,46,50,55,50,57,57,50,44,53,50,46,55,52,56,53,49,53,93,44,91,45,49,55,48,46,50,53,48,48,54,51,44,53,50,46,54,56,49,48,56,57,93,44,91,45,49,55,48,46,48,51,50,53,56,54,44,53,50,46,54,55,53,55,52,52,93,44,91,45,49,54,57,46,56,52,56,55,53,52,44,53,50,46,55,54,51,49,49,93,44,91,45,49,54,57,46,55,48,51,48,54,49,44,53,50,46,55,49,54,48,57,57,93,44,91,45,49,54,57,46,53,56,56,54,49,51,44,53,50,46,56,48,48,53,54,51,93,44,91,45,49,54,57,46,54,50,55,56,50,52,44,53,50,46,57,50,54,55,52,93,44,91,45,49,54,57,46,54,48,52,52,53,52,44,53,51,46,48,54,50,48,51,49,93,44,91,45,49,54,57,46,55,53,57,49,52,56,44,53,51,46,49,51,52,48,53,52,93,44,91,45,49,54,57,46,56,54,48,55,53,52,44,53,51,46,49,48,53,48,49,50,93,44,91,45,49,54,57,46,56,51,49,56,57,56,44,53,50,46,57,51,53,53,51,56,93,44,91,45,49,55,48,46,48,52,54,49,48,54,44,53,50,46,57,55,51,49,49,54,93,44,91,45,49,55,48,46,49,55,54,56,57,44,53,50,46,57,51,53,49,51,55,93,44,91,45,49,55,48,46,50,55,50,57,57,50,44,53,50,46,55,52,56,53,49,53,93,93,93,44,91,91,91,49,55,56,46,53,51,49,56,49,51,44,53,49,46,54,52,57,54,57,50,93,44,91,49,55,56,46,53,53,49,55,55,51,44,53,49,46,53,57,57,56,53,53,93,44,91,49,55,56,46,55,57,48,50,52,49,44,53,49,46,52,57,50,52,53,56,93,44,91,49,55,56,46,56,57,54,48,49,50,44,53,49,46,52,57,50,53,51,53,93,44,91,49,55,57,46,50,49,56,49,57,54,44,53,49,46,50,57,52,57,56,53,93,44,91,49,55,57,46,53,49,48,56,55,44,53,49,46,51,48,56,50,54,53,93,44,91,49,55,57,46,53,55,56,52,48,54,44,53,49,46,51,53,52,51,52,52,93,44,91,49,55,57,46,52,50,53,50,50,49,44,53,49,46,52,54,50,56,49,55,93,44,91,49,55,57,46,49,55,48,51,50,53,44,53,49,46,53,50,51,48,50,56,93,44,91,49,55,57,46,48,54,48,54,50,44,53,49,46,54,51,50,53,49,93,44,91,49,55,56,46,54,57,56,55,56,52,44,53,49,46,55,48,57,53,54,54,93,44,91,49,55,56,46,53,51,49,56,49,51,44,53,49,46,54,52,57,54,57,50,93,93,93,44,91,91,91,49,55,55,46,49,49,49,57,55,54,44,53,49,46,56,57,48,53,52,50,93,44,91,49,55,55,46,50,57,56,54,49,56,44,53,49,46,55,54,50,56,57,53,93,44,91,49,55,55,46,52,55,53,54,51,50,44,53,49,46,56,54,48,52,48,49,93,44,91,49,55,55,46,56,51,55,48,55,54,44,53,49,46,57,48,50,50,54,57,93,44,91,49,55,55,46,56,52,53,55,48,55,44,53,49,46,57,56,51,55,55,57,93,44,91,49,55,55,46,55,52,53,54,53,53,44,53,50,46,49,52,49,54,48,50,93,44,91,49,55,55,46,53,49,48,55,55,54,44,53,50,46,49,54,49,48,57,55,93,44,91,49,55,55,46,52,49,54,52,51,49,44,53,50,46,48,51,56,49,50,56,93,44,91,49,55,55,46,49,54,53,57,54,50,44,53,49,46,57,52,57,48,51,50,93,44,91,49,55,55,46,49,49,49,57,55,54,44,53,49,46,56,57,48,53,52,50,93,93,93,44,91,91,91,49,55,51,46,50,55,51,52,48,52,44,53,50,46,52,49,48,52,54,49,93,44,91,49,55,51,46,51,48,52,48,52,53,44,53,50,46,51,53,54,52,53,51,93,44,91,49,55,51,46,54,51,56,54,51,51,44,53,50,46,50,57,52,50,53,93,44,91,49,55,51,46,56,49,52,48,55,50,44,53,50,46,51,53,51,51,52,55,93,44,91,49,55,51,46,55,56,49,49,57,54,44,53,50,46,52,52,55,57,53,52,93,44,91,49,55,51,46,56,52,55,55,55,52,44,53,50,46,53,51,55,49,56,53,93,44,91,49,55,51,46,54,48,56,50,53,52,44,53,50,46,53,53,57,56,55,51,93,44,91,49,55,51,46,51,49,53,57,52,44,53,50,46,52,54,52,54,51,56,93,44,91,49,55,51,46,50,55,51,52,48,52,44,53,50,46,52,49,48,52,54,49,93,93,93,44,91,91,91,49,55,56,46,48,48,51,52,53,51,44,53,50,46,48,52,57,53,56,56,93,44,91,49,55,56,46,48,53,57,54,55,53,44,53,49,46,57,52,56,49,49,52,93,44,91,49,55,56,46,49,57,53,56,55,44,53,49,46,57,52,56,56,52,51,93,44,91,49,55,56,46,53,51,49,53,57,49,44,53,49,46,56,52,54,55,49,54,93,44,91,49,55,56,46,54,54,54,57,48,52,44,53,49,46,57,51,48,50,53,50,93,44,91,49,55,56,46,53,49,50,52,49,50,44,53,50,46,48,52,51,52,51,54,93,44,91,49,55,56,46,50,54,55,49,53,57,44,53,50,46,48,51,55,52,53,49,93,44,91,49,55,56,46,49,56,56,56,51,56,44,53,50,46,48,57,56,54,55,55,93,44,91,49,55,56,46,48,48,51,52,53,51,44,53,50,46,48,52,57,53,56,56,93,93,93,44,91,91,91,45,49,55,48,46,53,50,50,55,48,57,44,53,55,46,49,57,51,51,55,52,93,44,91,45,49,55,48,46,52,52,52,49,52,51,44,53,54,46,57,57,54,49,51,52,93,44,91,45,49,55,48,46,49,49,49,55,56,50,44,53,55,46,49,51,54,55,48,57,93,44,91,45,49,55,48,46,48,49,54,53,49,49,44,53,55,46,50,54,54,53,56,49,93,44,91,45,49,55,48,46,49,57,49,48,50,52,44,53,55,46,50,57,55,51,53,49,93,44,91,45,49,55,48,46,52,52,57,53,57,56,44,53,55,46,50,52,57,51,51,50,93,44,91,45,49,55,48,46,53,50,50,55,48,57,44,53,55,46,49,57,51,51,55,52,93,93,93,44,91,91,91,45,49,55,50,46,55,50,48,54,56,57,44,53,50,46,50,54,52,51,54,52,93,44,91,45,49,55,50,46,54,55,54,48,48,56,44,53,50,46,50,49,48,53,55,54,93,44,91,45,49,55,50,46,51,55,55,57,49,53,44,53,50,46,50,50,56,51,54,51,93,44,91,45,49,55,50,46,50,49,48,55,49,50,44,53,50,46,51,49,54,50,54,55,93,44,91,45,49,55,50,46,50,52,57,54,54,44,53,50,46,51,57,51,52,53,52,93,44,91,45,49,55,50,46,51,57,57,50,57,54,44,53,50,46,52,52,52,53,48,53,93,44,91,45,49,55,50,46,54,51,51,50,51,57,44,53,50,46,51,56,55,56,54,51,93,44,91,45,49,55,50,46,55,50,48,54,56,57,44,53,50,46,50,54,52,51,54,52,93,93,93,44,91,91,91,49,55,57,46,51,56,56,55,52,50,44,53,49,46,57,52,49,57,49,55,93,44,91,49,55,57,46,52,56,52,54,48,54,44,53,49,46,56,52,56,48,50,55,93,44,91,49,55,57,46,54,50,51,50,49,50,44,53,49,46,56,49,56,57,56,56,93,44,91,49,55,57,46,55,56,53,48,55,44,53,49,46,56,54,50,54,51,57,93,44,91,49,55,57,46,56,53,57,54,56,49,44,53,49,46,57,54,48,51,54,54,93,44,91,49,55,57,46,54,53,56,51,56,49,44,53,50,46,48,55,56,50,55,93,44,91,49,55,57,46,52,48,56,55,50,57,44,53,50,46,48,48,53,51,53,53,93,44,91,49,55,57,46,51,56,56,55,52,50,44,53,49,46,57,52,49,57,49,55,93,93,93,44,91,91,91,45,49,55,57,46,49,52,57,53,48,53,44,53,49,46,53,55,54,53,57,53,93,44,91,45,49,55,56,46,56,48,48,49,57,51,44,53,49,46,52,56,53,56,53,57,93,44,91,45,49,55,56,46,53,53,48,49,57,51,44,53,49,46,53,48,56,52,56,52,93,44,91,45,49,55,56,46,52,50,49,54,55,54,44,53,49,46,53,56,55,50,56,51,93,44,91,45,49,55,56,46,54,54,48,49,50,50,44,53,49,46,54,54,53,56,55,57,93,44,91,45,49,55,56,46,57,52,57,57,51,54,44,53,49,46,53,57,49,53,52,52,93,44,91,45,49,55,57,46,48,53,54,48,50,57,44,53,49,46,54,52,53,57,55,50,93,44,91,45,49,55,57,46,49,52,57,53,48,53,44,53,49,46,53,55,54,53,57,53,93,93,93,44,91,91,91,45,49,55,48,46,57,50,54,48,51,55,44,53,50,46,53,53,56,54,52,52,93,44,91,45,49,55,48,46,56,50,56,51,49,56,44,53,50,46,52,57,49,57,50,55,93,44,91,45,49,55,48,46,53,51,54,49,51,51,44,53,50,46,53,55,51,56,52,55,93,44,91,45,49,55,48,46,52,56,48,57,57,52,44,53,50,46,54,57,48,52,49,93,44,91,45,49,55,48,46,54,56,48,52,53,50,44,53,50,46,55,52,57,53,56,54,93,44,91,45,49,55,48,46,56,56,56,57,49,51,44,53,50,46,54,52,57,50,55,49,93,44,91,45,49,55,48,46,57,50,54,48,51,55,44,53,50,46,53,53,56,54,52,52,93,93,93,44,91,91,91,45,49,55,57,46,50,51,48,50,51,51,44,53,49,46,50,56,51,57,50,55,93,44,91,45,49,55,57,46,49,56,51,56,49,53,44,53,49,46,49,56,51,55,55,54,93,44,91,45,49,55,57,46,48,55,51,53,57,57,44,53,49,46,49,55,57,48,52,49,93,44,91,45,49,55,56,46,56,51,50,56,48,54,44,53,49,46,51,50,51,53,56,56,93,44,91,45,49,55,56,46,56,55,51,49,54,51,44,53,49,46,52,50,52,55,57,49,93,44,91,45,49,55,57,46,48,48,53,48,52,49,44,53,49,46,52,53,50,54,53,50,93,44,91,45,49,55,57,46,50,51,48,50,51,51,44,53,49,46,50,56,51,57,50,55,93,93,93,44,91,91,91,45,49,54,57,46,56,55,57,54,51,50,44,53,54,46,54,49,52,55,57,57,93,44,91,45,49,54,57,46,54,55,54,48,57,50,44,53,54,46,52,57,54,50,50,54,93,44,91,45,49,54,57,46,53,50,54,54,51,55,44,53,54,46,52,57,50,57,55,54,93,44,91,45,49,54,57,46,51,55,55,53,52,53,44,53,54,46,53,56,55,55,50,57,93,44,91,45,49,54,57,46,53,48,57,50,54,53,44,53,54,46,54,54,55,52,55,49,93,44,91,45,49,54,57,46,56,50,57,51,56,52,44,53,54,46,54,54,57,56,49,54,93,44,91,45,49,54,57,46,56,55,57,54,51,50,44,53,54,46,54,49,52,55,57,57,93,93,93,44,91,91,91,45,49,55,49,46,51,57,51,50,57,54,44,53,50,46,52,56,48,56,53,52,93,44,91,45,49,55,49,46,51,53,56,51,53,51,44,53,50,46,52,49,50,53,52,53,93,44,91,45,49,55,49,46,50,48,54,50,53,57,44,53,50,46,51,57,56,56,57,49,93,44,91,45,49,55,49,46,48,50,50,52,50,57,44,53,50,46,54,48,51,55,49,55,93,44,91,45,49,55,49,46,49,52,48,50,51,52,44,53,50,46,54,51,57,54,51,51,93,44,91,45,49,55,49,46,51,55,52,52,51,51,44,53,50,46,53,51,55,49,49,56,93,44,91,45,49,55,49,46,51,57,51,50,57,54,44,53,50,46,52,56,48,56,53,52,93,93,93,44,91,91,91,49,55,51,46,55,55,51,55,56,51,44,53,50,46,55,56,49,53,56,56,93,44,91,49,55,51,46,56,51,55,57,54,50,44,53,50,46,55,49,54,48,50,51,93,44,91,49,55,52,46,49,54,50,53,49,52,44,53,50,46,54,53,54,55,51,53,93,44,91,49,55,52,46,50,51,50,55,50,55,44,53,50,46,55,53,55,50,57,52,93,44,91,49,55,51,46,56,55,48,54,51,56,44,53,50,46,56,51,52,55,57,93,44,91,49,55,51,46,55,55,51,55,56,51,44,53,50,46,55,56,49,53,56,56,93,93,93,44,91,91,91,49,55,56,46,49,50,51,56,51,50,44,53,49,46,56,52,51,57,56,52,93,44,91,49,55,56,46,50,52,57,56,56,49,44,53,49,46,55,50,52,52,55,52,93,44,91,49,55,56,46,52,57,54,51,52,55,44,53,49,46,55,52,52,53,50,50,93,44,91,49,55,56,46,51,54,56,52,51,52,44,53,49,46,56,54,48,53,51,57,93,44,91,49,55,56,46,50,50,48,48,55,56,44,53,49,46,56,56,56,55,50,56,93,44,91,49,55,56,46,49,50,51,56,51,50,44,53,49,46,56,52,51,57,56,52,93,93,93,44,91,91,91,45,49,55,56,46,57,53,55,50,56,49,44,53,49,46,55,56,48,55,57,57,93,44,91,45,49,55,56,46,56,50,56,48,49,57,44,53,49,46,54,57,52,55,55,54,93,44,91,45,49,55,56,46,54,52,54,56,44,53,49,46,55,57,48,51,93,44,91,45,49,55,56,46,55,56,54,53,51,50,44,53,49,46,56,56,55,56,56,93,44,91,45,49,55,56,46,57,53,55,50,56,49,44,53,49,46,55,56,48,55,57,57,93,93,93,44,91,91,91,49,55,53,46,55,54,53,50,56,51,44,53,50,46,51,56,55,51,50,93,44,91,49,55,53,46,56,51,49,51,57,50,44,53,50,46,51,48,53,53,55,55,93,44,91,49,55,54,46,48,48,57,57,50,53,44,53,50,46,50,57,57,53,53,51,93,44,91,49,55,54,46,48,52,57,49,56,49,44,53,50,46,51,56,53,54,52,93,44,91,49,55,53,46,56,52,49,57,48,57,44,53,50,46,52,52,48,50,56,56,93,44,91,49,55,53,46,55,54,53,50,56,51,44,53,50,46,51,56,55,51,50,93,93,93,44,91,91,91,45,49,55,55,46,53,53,49,55,51,57,44,53,49,46,57,49,53,53,50,53,93,44,91,45,49,55,55,46,52,56,54,55,50,54,44,53,49,46,56,52,51,54,52,57,93,44,91,45,49,55,55,46,51,51,54,52,50,55,44,53,49,46,57,50,49,53,54,49,93,44,91,45,49,55,55,46,52,53,57,53,52,54,44,53,49,46,57,56,50,56,56,52,93,44,91,45,49,55,55,46,53,53,49,55,51,57,44,53,49,46,57,49,53,53,50,53,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,53,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,48,34,44,34,78,65,77,69,34,58,34,75,111,100,105,97,107,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,52,46,57,51,51,54,57,52,44,53,55,46,50,57,52,54,55,56,93,44,91,45,49,53,52,46,54,49,57,55,56,50,44,53,55,46,49,54,50,51,54,93,44,91,45,49,53,52,46,53,55,55,52,56,51,44,53,54,46,57,53,50,55,55,51,93,44,91,45,49,53,52,46,51,56,55,55,49,57,44,53,54,46,56,57,53,54,49,56,93,44,91,45,49,53,52,46,51,56,53,53,50,52,44,53,54,46,56,51,48,50,54,57,93,44,91,45,49,53,52,46,50,49,55,56,50,54,44,53,54,46,55,50,48,52,54,55,93,44,91,45,49,53,52,46,51,54,48,49,48,56,44,53,54,46,54,51,51,53,50,52,93,44,91,45,49,53,52,46,53,48,55,53,50,44,53,54,46,54,53,56,56,52,52,93,44,91,45,49,53,52,46,55,53,56,49,48,54,44,53,54,46,53,53,57,56,49,53,93,44,91,45,49,53,52,46,56,57,51,56,52,55,44,53,54,46,52,52,52,55,50,52,93,44,91,45,49,53,52,46,55,50,53,55,51,50,44,53,54,46,51,53,53,50,49,57,93,44,91,45,49,53,52,46,52,57,56,50,48,57,44,53,54,46,52,53,53,55,56,52,93,44,91,45,49,53,51,46,57,51,54,50,55,54,44,53,54,46,52,53,51,52,54,49,93,44,91,45,49,53,51,46,56,48,54,54,48,53,44,53,54,46,53,48,57,51,54,93,44,91,45,49,53,51,46,56,48,48,52,51,50,44,53,54,46,54,56,57,57,50,56,93,44,91,45,49,53,51,46,54,49,53,49,56,44,53,54,46,56,51,52,51,56,53,93,44,91,45,49,53,51,46,52,48,52,53,50,57,44,53,54,46,57,53,48,55,55,51,93,44,91,45,49,53,51,46,49,56,48,57,53,57,44,53,54,46,57,54,48,54,56,93,44,91,45,49,53,51,46,48,57,56,50,56,57,44,53,55,46,48,52,48,51,49,51,93,44,91,45,49,53,50,46,56,51,52,49,54,50,44,53,55,46,48,57,52,52,50,53,93,44,91,45,49,53,50,46,55,56,53,50,48,54,44,53,55,46,49,57,50,52,53,55,93,44,91,45,49,53,50,46,53,50,56,55,53,56,44,53,55,46,51,50,55,51,50,55,93,44,91,45,49,53,50,46,50,53,56,52,56,49,44,53,55,46,51,50,51,52,50,57,93,44,91,45,49,53,50,46,49,53,54,53,49,54,44,53,55,46,52,48,53,56,53,53,93,44,91,45,49,53,50,46,50,50,50,52,51,55,44,53,55,46,52,55,53,50,57,57,93,44,91,45,49,53,50,46,48,51,49,48,48,54,44,53,55,46,54,50,56,54,51,49,93,44,91,45,49,53,50,46,50,50,48,50,49,49,44,53,55,46,57,51,48,50,50,51,93,44,91,45,49,53,50,46,52,49,52,52,53,51,44,53,56,46,48,51,54,53,55,55,93,44,91,45,49,53,50,46,48,51,51,53,49,57,44,53,56,46,49,49,49,55,56,49,93,44,91,45,49,53,49,46,55,54,52,48,50,44,53,56,46,49,51,54,54,50,54,93,44,91,45,49,53,49,46,54,57,48,53,48,53,44,53,56,46,50,51,53,49,51,52,93,44,91,45,49,53,49,46,55,49,50,56,48,52,44,53,56,46,51,55,51,57,56,93,44,91,45,49,53,49,46,56,57,53,50,49,54,44,53,56,46,51,55,49,55,48,53,93,44,91,45,49,53,50,46,49,50,54,51,52,56,44,53,56,46,52,52,57,53,56,57,93,44,91,45,49,53,50,46,50,52,55,55,49,50,44,53,56,46,54,56,48,55,50,56,93,44,91,45,49,53,50,46,52,55,51,53,54,57,44,53,56,46,55,53,55,50,53,56,93,44,91,45,49,53,50,46,54,57,56,52,49,51,44,53,56,46,54,52,56,54,52,52,93,44,91,45,49,53,51,46,50,48,48,48,51,53,44,53,56,46,50,54,54,50,53,50,93,44,91,45,49,53,51,46,53,48,48,49,51,53,44,53,56,46,48,55,57,53,53,53,93,44,91,45,49,53,51,46,53,51,56,57,52,54,44,53,56,46,48,48,55,51,54,54,93,44,91,45,49,53,51,46,55,56,54,54,50,50,44,53,55,46,57,49,55,55,49,50,93,44,91,45,49,53,51,46,56,55,48,53,54,55,44,53,55,46,57,50,56,55,55,57,93,44,91,45,49,53,52,46,50,52,48,48,54,53,44,53,55,46,55,49,53,52,54,55,93,44,91,45,49,53,52,46,52,48,55,48,49,49,44,53,55,46,54,57,48,53,50,53,93,44,91,45,49,53,52,46,55,48,51,49,52,53,44,53,55,46,53,52,50,48,49,54,93,44,91,45,49,53,52,46,57,51,51,54,57,52,44,53,55,46,50,57,52,54,55,56,93,93,93,44,91,91,91,45,49,53,52,46,51,48,53,54,57,49,44,53,56,46,54,53,50,55,53,49,93,44,91,45,49,53,52,46,51,48,51,52,52,55,44,53,56,46,52,54,48,51,56,53,93,44,91,45,49,53,52,46,52,54,53,55,52,49,44,53,56,46,51,54,49,51,53,54,93,44,91,45,49,53,52,46,55,51,48,51,54,57,44,53,56,46,51,48,52,54,54,57,93,44,91,45,49,53,53,46,48,48,56,49,51,50,44,53,56,46,50,57,48,57,48,53,93,44,91,45,49,53,53,46,48,53,55,55,52,49,44,53,56,46,50,51,54,50,48,57,93,44,91,45,49,53,53,46,51,51,49,57,52,53,44,53,56,46,49,57,51,50,56,51,93,44,91,45,49,53,53,46,51,51,48,50,52,53,44,53,55,46,56,55,54,51,52,51,93,44,91,45,49,53,53,46,53,51,56,56,51,44,53,55,46,55,57,57,56,48,54,93,44,91,45,49,53,53,46,54,57,51,55,55,51,44,53,55,46,55,57,55,57,56,55,93,44,91,45,49,53,53,46,55,54,56,48,50,50,44,53,55,46,54,54,56,50,54,49,93,44,91,45,49,53,54,46,50,48,56,48,50,49,44,53,55,46,53,50,50,57,54,51,93,44,91,45,49,53,54,46,51,55,48,50,51,53,44,53,55,46,53,50,50,51,54,56,93,44,91,45,49,53,54,46,55,53,48,55,56,44,53,55,46,50,51,53,55,57,53,93,44,91,45,49,53,54,46,55,53,48,56,49,53,44,53,55,46,49,54,50,56,55,56,93,44,91,45,49,53,54,46,51,53,53,51,57,50,44,53,55,46,49,53,57,57,51,49,93,44,91,45,49,53,54,46,51,50,56,48,50,51,44,53,55,46,48,53,51,50,56,56,93,44,91,45,49,53,54,46,50,50,55,56,49,49,44,53,55,46,49,54,50,52,53,53,93,44,91,45,49,53,54,46,49,54,55,49,57,54,44,53,55,46,51,52,53,56,53,50,93,44,91,45,49,53,53,46,57,51,57,55,53,56,44,53,55,46,52,49,50,56,55,93,44,91,45,49,53,53,46,56,52,52,52,56,53,44,53,55,46,52,57,55,53,49,51,93,44,91,45,49,53,53,46,54,52,53,53,48,51,44,53,55,46,53,50,50,51,53,56,93,44,91,45,49,53,53,46,54,51,50,53,54,55,44,53,55,46,53,56,54,56,49,51,93,44,91,45,49,53,53,46,51,48,48,51,57,55,44,53,55,46,54,52,50,56,57,52,93,44,91,45,49,53,52,46,57,57,52,48,49,55,44,53,55,46,56,54,51,49,56,56,93,44,91,45,49,53,52,46,57,52,48,55,52,50,44,53,55,46,57,55,53,48,55,49,93,44,91,45,49,53,52,46,51,57,48,55,52,52,44,53,55,46,57,57,57,51,48,49,93,44,91,45,49,53,52,46,49,49,57,53,54,53,44,53,56,46,49,49,51,50,50,56,93,44,91,45,49,53,51,46,57,55,48,48,51,56,44,53,56,46,51,49,50,55,50,52,93,44,91,45,49,53,51,46,56,53,56,53,53,55,44,53,56,46,51,55,52,50,55,52,93,44,91,45,49,53,51,46,56,56,49,55,57,52,44,53,56,46,52,53,54,52,57,57,93,44,91,45,49,53,51,46,53,49,53,49,53,44,53,56,46,53,52,56,51,57,55,93,44,91,45,49,53,51,46,52,55,56,55,55,54,44,53,56,46,54,52,49,54,57,52,93,44,91,45,49,53,51,46,49,54,54,56,52,54,44,53,56,46,55,53,53,49,55,53,93,44,91,45,49,53,51,46,49,56,52,48,56,54,44,53,56,46,57,48,53,55,50,57,93,44,91,45,49,53,51,46,50,53,51,54,49,51,44,53,56,46,56,53,53,48,51,54,93,44,91,45,49,53,51,46,54,51,57,52,48,51,44,53,56,46,56,53,53,48,50,57,93,44,91,45,49,53,51,46,54,51,57,48,50,55,44,53,56,46,55,51,57,52,53,93,44,91,45,49,53,51,46,56,49,55,48,55,54,44,53,56,46,55,51,57,52,52,54,93,44,91,45,49,53,51,46,56,49,55,48,55,54,44,53,56,46,54,53,50,55,54,93,44,91,45,49,53,52,46,51,48,53,54,57,49,44,53,56,46,54,53,50,55,53,49,93,93,93,44,91,91,91,45,49,53,50,46,52,54,54,53,50,55,44,53,56,46,57,49,52,57,57,53,93,44,91,45,49,53,50,46,51,56,51,50,57,52,44,53,56,46,56,50,56,50,57,93,44,91,45,49,53,50,46,49,51,52,48,55,50,44,53,56,46,56,53,56,49,49,56,93,44,91,45,49,53,49,46,57,56,49,53,56,50,44,53,56,46,56,51,55,50,55,55,93,44,91,45,49,53,49,46,56,53,51,56,56,57,44,53,56,46,57,48,56,55,54,52,93,44,91,45,49,53,50,46,48,49,57,53,53,53,44,53,57,46,48,49,48,57,50,49,93,44,91,45,49,53,50,46,52,49,52,48,48,51,44,53,56,46,57,57,50,50,51,51,93,44,91,45,49,53,50,46,52,54,54,53,50,55,44,53,56,46,57,49,52,57,57,53,93,93,93,44,91,91,91,45,49,53,54,46,57,48,50,48,51,51,44,53,54,46,49,54,53,52,52,53,93,44,91,45,49,53,54,46,56,49,55,49,55,44,53,54,46,49,48,52,48,57,54,93,44,91,45,49,53,54,46,56,50,50,50,48,57,44,53,53,46,57,54,55,53,53,54,93,44,91,45,49,53,54,46,54,55,53,52,50,55,44,53,53,46,57,53,54,55,55,93,44,91,45,49,53,54,46,53,53,51,51,50,52,44,53,54,46,48,50,55,48,55,53,93,44,91,45,49,53,54,46,54,57,48,54,50,54,44,53,54,46,50,53,55,50,52,57,93,44,91,45,49,53,54,46,56,55,50,50,50,56,44,53,54,46,50,52,55,48,50,51,93,44,91,45,49,53,54,46,57,48,50,48,51,51,44,53,54,46,49,54,53,52,52,53,93,93,93,44,91,91,91,45,49,53,53,46,56,51,54,56,44,53,53,46,56,48,48,56,50,52,93,44,91,45,49,53,53,46,55,57,52,51,52,57,44,53,53,46,55,50,57,53,57,52,93,44,91,45,49,53,53,46,53,50,56,48,57,50,44,53,53,46,55,48,53,56,52,56,93,44,91,45,49,53,53,46,52,55,52,55,53,49,44,53,53,46,55,52,49,52,53,57,93,44,91,45,49,53,53,46,52,55,52,51,53,51,44,53,53,46,57,49,51,53,57,52,93,44,91,45,49,53,53,46,54,55,54,55,54,53,44,53,53,46,57,48,55,54,54,51,93,44,91,45,49,53,53,46,56,51,54,56,44,53,53,46,56,48,48,56,50,52,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,83,116,97,102,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,49,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,49,50,53,56,51,44,51,56,46,50,54,49,48,56,56,93,44,91,45,57,56,46,57,49,51,49,51,54,44,51,56,46,48,48,48,52,53,49,93,44,91,45,57,57,46,48,50,50,49,51,54,44,51,56,46,48,48,48,50,51,54,93,44,91,45,57,57,46,48,49,51,51,49,56,44,51,55,46,56,50,53,51,51,54,93,44,91,45,57,56,46,52,55,50,50,53,55,44,51,55,46,56,50,52,52,57,55,93,44,91,45,57,56,46,52,55,50,55,57,52,44,51,56,46,49,55,50,55,53,55,93,44,91,45,57,56,46,52,55,57,56,52,49,44,51,56,46,50,54,48,55,57,93,44,91,45,57,56,46,57,49,50,53,56,51,44,51,56,46,50,54,49,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,49,34,44,34,78,65,77,69,34,58,34,84,101,108,102,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,55,55,52,54,57,44,51,49,46,56,52,55,56,53,55,93,44,91,45,56,50,46,57,57,53,54,57,56,44,51,49,46,55,56,48,57,56,51,93,44,91,45,56,50,46,56,51,54,51,54,54,44,51,49,46,56,49,54,49,53,52,93,44,91,45,56,50,46,54,52,53,54,53,57,44,51,49,46,57,49,56,56,56,51,93,44,91,45,56,50,46,55,50,56,56,48,54,44,51,50,46,48,48,54,55,48,52,93,44,91,45,56,50,46,56,56,55,54,53,55,44,51,50,46,48,55,57,56,57,49,93,44,91,45,56,50,46,57,50,55,56,54,53,44,51,50,46,49,51,53,50,55,52,93,44,91,45,56,51,46,50,48,53,55,51,57,44,51,49,46,57,48,48,51,50,53,93,44,91,45,56,51,46,49,55,55,52,54,57,44,51,49,46,56,52,55,56,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,54,57,57,44,34,98,101,100,115,34,58,50,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,55,51,57,50,50,44,52,50,46,48,56,50,52,51,93,44,91,45,56,51,46,55,54,51,49,53,44,52,49,46,55,50,51,53,53,50,93,44,91,45,56,51,46,52,49,53,56,53,49,44,52,49,46,55,51,51,55,57,52,93,44,91,45,56,51,46,49,49,50,52,54,44,52,49,46,57,53,57,52,49,93,44,91,45,56,51,46,49,52,51,57,53,54,44,52,50,46,48,50,55,57,51,93,44,91,45,56,51,46,50,57,53,48,54,51,44,52,50,46,48,57,52,50,51,55,93,44,91,45,56,51,46,53,51,57,51,57,54,44,52,50,46,48,56,53,53,57,56,93,44,91,45,56,51,46,55,55,51,57,50,50,44,52,50,46,48,56,50,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,50,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,57,56,51,57,44,52,48,46,55,51,54,53,52,49,93,44,91,45,56,55,46,48,57,53,51,53,55,44,52,48,46,53,54,50,56,57,53,93,44,91,45,56,54,46,55,55,49,50,57,51,44,52,48,46,53,54,50,48,56,50,93,44,91,45,56,54,46,55,52,55,55,54,52,44,52,48,46,55,51,55,53,52,93,44,91,45,56,54,46,53,56,49,55,51,57,44,52,48,46,55,51,53,55,54,53,93,44,91,45,56,54,46,53,56,49,53,51,50,44,52,48,46,57,49,48,57,50,53,93,44,91,45,56,54,46,57,51,48,55,53,57,44,52,48,46,57,49,50,52,49,56,93,44,91,45,56,54,46,57,56,54,52,51,56,44,52,48,46,56,51,55,57,50,49,93,44,91,45,56,55,46,48,57,57,55,57,51,44,52,48,46,56,51,55,54,48,55,93,44,91,45,56,55,46,48,57,56,51,57,44,52,48,46,55,51,54,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,78,111,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,52,53,49,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,51,53,48,55,44,52,49,46,52,51,54,56,53,54,93,44,91,45,56,53,46,54,53,49,57,50,56,44,52,49,46,50,57,52,55,55,54,93,44,91,45,56,53,46,53,51,55,49,56,44,52,49,46,50,54,54,49,53,55,93,44,91,45,56,53,46,51,48,55,55,56,49,44,52,49,46,50,54,52,49,53,56,93,44,91,45,56,53,46,49,57,50,48,57,52,44,52,49,46,50,54,52,50,48,57,93,44,91,45,56,53,46,49,57,52,48,56,52,44,52,49,46,53,50,54,52,51,55,93,44,91,45,56,53,46,54,53,52,55,52,55,44,52,49,46,53,50,51,51,52,55,93,44,91,45,56,53,46,54,53,51,53,48,55,44,52,49,46,52,51,54,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,49,53,52,48,54,44,51,55,46,52,50,51,57,55,50,93,44,91,45,56,56,46,52,55,52,48,57,44,51,55,46,51,57,49,56,54,51,93,44,91,45,56,56,46,53,48,55,48,54,50,44,51,55,46,50,53,57,54,56,57,93,44,91,45,56,56,46,52,50,52,54,48,51,44,51,55,46,49,53,49,55,54,52,93,44,91,45,56,56,46,52,57,48,52,49,49,44,51,55,46,48,54,56,53,55,57,93,44,91,45,56,56,46,53,54,54,48,54,49,44,51,55,46,48,55,53,50,48,52,93,44,91,45,56,56,46,52,56,50,57,53,55,44,51,55,46,48,50,50,53,54,54,93,44,91,45,56,56,46,51,55,48,52,54,51,44,51,55,46,48,54,51,50,55,56,93,44,91,45,56,56,46,50,52,48,51,55,49,44,51,54,46,57,56,49,57,49,49,93,44,91,45,56,56,46,49,57,51,53,49,57,44,51,55,46,49,52,55,50,53,54,93,44,91,45,56,56,46,50,49,56,57,56,44,51,55,46,50,55,51,49,52,53,93,44,91,45,56,56,46,51,53,56,52,54,54,44,51,55,46,52,48,52,55,53,50,93,44,91,45,56,56,46,52,49,53,52,48,54,44,51,55,46,52,50,51,57,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,77,105,108,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,51,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,52,49,54,55,51,44,51,49,46,50,53,56,57,54,55,93,44,91,45,56,52,46,57,49,55,52,50,49,44,51,49,46,50,53,53,57,57,93,44,91,45,56,52,46,57,50,50,52,50,51,44,51,49,46,48,55,50,53,57,93,44,91,45,56,52,46,55,51,48,56,53,53,44,51,49,46,48,54,57,49,57,93,44,91,45,56,52,46,53,52,50,54,53,51,44,51,49,46,48,55,57,48,50,57,93,44,91,45,56,52,46,53,51,55,49,48,49,44,51,49,46,50,53,53,57,51,50,93,44,91,45,56,52,46,54,52,49,54,55,51,44,51,49,46,50,53,56,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,55,49,49,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,56,50,56,51,48,49,44,51,53,46,50,54,51,54,55,55,93,44,91,45,56,54,46,56,51,54,51,48,54,44,51,52,46,57,57,49,56,57,57,93,44,91,45,56,54,46,55,56,51,54,50,56,44,51,52,46,57,57,49,57,52,56,93,44,91,45,56,54,46,51,49,56,55,54,49,44,51,52,46,57,57,49,49,54,57,93,44,91,45,56,54,46,51,49,56,49,54,56,44,51,53,46,49,50,54,57,56,54,93,44,91,45,56,54,46,53,50,53,51,48,54,44,51,53,46,51,53,52,55,49,56,93,44,91,45,56,54,46,53,57,57,52,55,56,44,51,53,46,51,54,52,57,53,93,44,91,45,56,54,46,55,52,54,56,57,57,44,51,53,46,50,53,50,56,55,56,93,44,91,45,56,54,46,56,50,56,51,48,49,44,51,53,46,50,54,51,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,49,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,55,56,54,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,50,52,48,53,52,44,51,56,46,49,52,55,52,51,56,93,44,91,45,56,53,46,49,48,49,54,52,54,44,51,56,46,48,51,55,50,55,93,44,91,45,56,53,46,48,50,51,55,49,49,44,51,56,46,49,50,57,48,53,50,93,44,91,45,56,52,46,57,57,55,54,54,55,44,51,56,46,51,51,53,53,56,54,93,44,91,45,56,53,46,50,56,51,48,56,50,44,51,56,46,51,53,56,48,53,52,93,44,91,45,56,53,46,52,54,56,50,48,54,44,51,56,46,50,56,53,51,48,57,93,44,91,45,56,53,46,52,50,52,48,53,52,44,51,56,46,49,52,55,52,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,57,57,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,50,54,50,56,55,44,52,49,46,48,52,54,53,56,49,93,44,91,45,57,55,46,56,50,53,55,50,51,44,52,48,46,54,57,56,53,53,53,93,44,91,45,57,55,46,56,50,52,55,56,44,52,48,46,54,57,56,53,51,55,93,44,91,45,57,55,46,51,54,56,52,48,49,44,52,48,46,54,57,56,54,50,53,93,44,91,45,57,55,46,51,54,56,49,49,56,44,52,49,46,48,52,54,57,52,55,93,44,91,45,57,55,46,56,50,54,50,56,55,44,52,49,46,48,52,54,53,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,48,50,51,44,34,98,101,100,115,34,58,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,51,55,52,50,53,44,52,48,46,48,54,57,57,52,53,93,44,91,45,55,55,46,49,56,53,54,51,44,52,48,46,48,50,57,53,48,49,93,44,91,45,55,55,46,52,48,51,54,48,54,44,51,57,46,57,57,52,52,55,56,93,44,91,45,55,55,46,52,55,49,48,56,53,44,51,57,46,57,52,52,48,55,55,93,44,91,45,55,55,46,52,53,57,49,51,52,44,51,57,46,55,49,57,57,56,52,93,44,91,45,55,55,46,50,49,55,48,50,52,44,51,57,46,55,49,57,56,54,49,93,44,91,45,55,54,46,57,57,57,51,49,56,44,51,57,46,55,50,48,49,48,54,93,44,91,45,55,54,46,57,53,52,57,51,50,44,51,57,46,56,53,54,56,53,93,44,91,45,55,55,46,48,49,56,54,52,56,44,52,48,46,48,49,51,57,52,55,93,44,91,45,55,55,46,49,51,55,52,50,53,44,52,48,46,48,54,57,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,49,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,57,51,48,57,57,44,51,51,46,49,49,56,54,54,56,93,44,91,45,56,49,46,51,54,52,56,53,55,44,51,51,46,49,48,56,48,54,49,93,44,91,45,56,49,46,53,52,49,56,56,49,44,51,51,46,49,53,56,50,55,57,93,44,91,45,56,49,46,54,49,52,48,51,51,44,51,51,46,48,57,53,50,53,49,93,44,91,45,56,49,46,53,52,49,56,51,49,44,51,51,46,48,52,53,54,53,52,93,44,91,45,56,49,46,52,50,54,52,55,53,44,51,50,46,56,52,48,55,55,51,93,44,91,45,56,49,46,52,48,53,48,53,52,44,51,50,46,55,52,52,57,53,55,93,44,91,45,56,49,46,50,54,49,54,54,50,44,51,50,46,56,51,57,49,51,57,93,44,91,45,56,49,46,50,49,57,53,54,51,44,51,50,46,57,53,51,51,53,93,44,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,44,91,45,56,49,46,49,57,51,48,57,57,44,51,51,46,49,49,56,54,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,97,118,105,100,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,48,49,55,44,34,98,101,100,115,34,58,52,51,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,49,51,50,51,51,44,51,54,46,51,56,50,54,50,49,93,44,91,45,56,54,46,57,57,55,55,48,53,44,51,54,46,49,50,56,53,49,50,93,44,91,45,56,55,46,48,53,51,55,50,50,44,51,54,46,48,52,53,53,56,50,93,44,91,45,56,54,46,55,57,48,56,55,53,44,51,54,46,48,51,54,55,49,53,93,44,91,45,56,54,46,54,49,56,56,57,50,44,51,53,46,57,54,56,50,50,52,93,44,91,45,56,54,46,53,49,53,53,56,57,44,51,54,46,49,48,48,54,49,93,44,91,45,56,54,46,53,57,52,50,56,54,44,51,54,46,50,52,53,49,48,53,93,44,91,45,56,54,46,55,53,52,55,57,53,44,51,54,46,52,48,53,52,57,54,93,44,91,45,56,54,46,57,49,51,50,51,51,44,51,54,46,51,56,50,54,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,85,105,110,116,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,50,51,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,56,57,52,52,44,52,48,46,54,54,50,54,48,49,93,44,91,45,49,48,57,46,49,54,49,48,54,51,44,52,48,46,54,56,51,56,49,55,93,44,91,45,49,48,57,46,50,48,51,50,53,44,52,48,46,56,53,56,52,48,49,93,44,91,45,49,48,57,46,51,57,52,52,57,49,44,52,48,46,56,53,56,49,54,54,93,44,91,45,49,48,57,46,56,55,48,50,48,55,44,52,48,46,55,54,51,56,50,57,93,44,91,45,49,48,57,46,57,55,54,52,48,50,44,52,48,46,56,48,57,54,56,54,93,44,91,45,49,48,57,46,57,55,54,56,49,52,44,51,57,46,56,48,54,50,51,93,44,91,45,49,49,48,46,48,50,51,57,54,51,44,51,57,46,52,54,57,50,54,56,93,44,91,45,49,48,57,46,57,53,51,51,52,57,44,51,57,46,52,54,49,56,48,49,93,44,91,45,49,48,57,46,49,48,54,57,55,50,44,51,57,46,52,54,49,57,55,57,93,44,91,45,49,48,57,46,48,53,49,50,50,54,44,51,57,46,52,57,55,55,51,57,93,44,91,45,49,48,57,46,48,53,49,50,50,55,44,51,57,46,54,54,48,52,54,54,93,44,91,45,49,48,57,46,48,53,48,57,52,57,44,52,48,46,50,50,50,54,52,55,93,44,91,45,49,48,57,46,48,52,56,57,52,52,44,52,48,46,54,54,50,54,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,48,52,52,48,44,34,98,101,100,115,34,58,49,51,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,49,55,50,56,54,50,44,52,48,46,52,54,55,48,54,53,93,44,91,45,49,49,50,46,49,57,56,52,54,49,44,52,48,46,51,49,51,50,48,54,93,44,91,45,49,49,50,46,49,52,54,56,53,54,44,52,48,46,49,55,55,56,49,55,93,44,91,45,49,49,50,46,49,55,57,56,44,52,48,46,48,49,49,54,53,54,93,44,91,45,49,49,50,46,48,54,50,53,53,50,44,51,57,46,57,48,52,54,56,93,44,91,45,49,49,50,46,48,51,49,56,51,53,44,51,57,46,55,56,49,49,55,50,93,44,91,45,49,49,49,46,56,50,55,49,48,54,44,51,57,46,57,52,55,48,48,50,93,44,91,45,49,49,49,46,54,52,49,57,52,52,44,51,57,46,56,49,50,56,54,57,93,44,91,45,49,49,49,46,50,52,55,52,57,54,44,51,57,46,56,49,51,48,50,56,93,44,91,45,49,49,48,46,56,53,55,55,56,44,51,57,46,56,49,51,50,56,53,93,44,91,45,49,49,48,46,56,57,49,54,53,53,44,51,57,46,56,57,57,54,53,52,93,44,91,45,49,49,49,46,48,56,51,48,54,49,44,51,57,46,57,52,51,49,57,56,93,44,91,45,49,49,49,46,50,52,57,51,51,57,44,52,48,46,48,53,53,50,49,55,93,44,91,45,49,49,49,46,50,50,53,53,48,55,44,52,48,46,49,54,55,51,50,52,93,44,91,45,49,49,49,46,51,50,49,51,48,53,44,52,48,46,50,56,55,51,55,50,93,44,91,45,49,49,49,46,52,50,56,55,50,56,44,52,48,46,50,56,55,55,54,93,44,91,45,49,49,49,46,53,53,53,50,51,53,44,52,48,46,51,54,50,54,57,54,93,44,91,45,49,49,49,46,54,50,48,52,51,55,44,52,48,46,52,53,53,48,49,56,93,44,91,45,49,49,49,46,53,57,51,57,52,50,44,52,48,46,53,55,55,48,54,54,93,44,91,45,49,49,49,46,57,52,54,52,53,52,44,52,48,46,52,50,52,53,57,52,93,44,91,45,49,49,50,46,49,55,50,56,54,50,44,52,48,46,52,54,55,48,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,57,57,48,49,50,44,51,57,46,54,48,55,49,51,55,93,44,91,45,56,55,46,50,51,56,57,54,52,44,51,57,46,53,50,48,54,50,93,44,91,45,56,55,46,50,52,48,51,55,57,44,51,57,46,50,53,57,48,54,52,93,44,91,45,56,55,46,50,52,48,55,51,55,44,51,57,46,49,55,49,55,55,51,93,44,91,45,56,55,46,48,53,52,53,55,56,44,51,57,46,49,54,56,48,56,54,93,44,91,45,56,55,46,48,53,51,54,52,54,44,51,57,46,51,52,50,54,50,49,93,44,91,45,56,54,46,57,52,50,52,55,51,44,51,57,46,51,52,50,48,52,51,93,44,91,45,56,54,46,57,51,57,57,56,49,44,51,57,46,52,55,51,51,52,53,93,44,91,45,56,55,46,48,49,51,48,54,50,44,51,57,46,54,48,52,55,56,55,93,44,91,45,56,55,46,49,57,57,48,49,50,44,51,57,46,54,48,55,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,75,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,48,55,52,55,44,34,98,101,100,115,34,58,53,55,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,48,53,53,55,51,57,44,52,48,46,54,53,49,55,54,93,44,91,45,55,52,46,48,51,54,50,57,51,44,52,48,46,53,53,49,48,52,50,93,44,91,45,55,51,46,56,55,57,50,50,50,44,52,48,46,53,55,52,54,53,54,93,44,91,45,55,51,46,56,51,51,48,52,49,44,52,48,46,54,50,56,50,54,49,93,44,91,45,55,51,46,57,54,50,52,55,56,44,52,48,46,55,51,54,56,48,50,93,44,91,45,55,52,46,48,51,52,53,55,51,44,52,48,46,54,56,52,56,54,54,93,44,91,45,55,52,46,48,53,53,55,51,57,44,52,48,46,54,53,49,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,53,57,57,55,52,44,51,56,46,54,57,51,48,55,55,93,44,91,45,57,51,46,48,54,55,50,57,49,44,51,56,46,53,50,57,57,57,53,93,44,91,45,57,51,46,48,55,55,54,57,50,44,51,56,46,50,54,51,48,57,50,93,44,91,45,57,51,46,48,50,50,50,55,55,44,51,56,46,49,57,56,54,52,50,93,44,91,45,57,50,46,55,54,52,57,54,51,44,51,56,46,49,56,57,53,51,52,93,44,91,45,57,50,46,54,57,53,56,56,54,44,51,56,46,50,50,50,48,51,49,93,44,91,45,57,50,46,54,56,57,56,51,52,44,51,56,46,51,52,56,52,55,50,93,44,91,45,57,50,46,54,50,53,49,56,57,44,51,56,46,52,51,48,55,55,56,93,44,91,45,57,50,46,56,52,49,56,55,49,44,51,56,46,53,57,54,55,57,50,93,44,91,45,57,50,46,56,51,57,56,51,55,44,51,56,46,54,56,51,57,55,52,93,44,91,45,57,51,46,48,53,57,57,55,52,44,51,56,46,54,57,51,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,72,111,108,109,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,56,53,57,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,50,48,49,49,44,52,48,46,53,54,56,50,48,54,93,44,91,45,56,50,46,49,56,52,54,48,55,44,52,48,46,52,53,54,50,56,93,44,91,45,56,49,46,55,48,57,49,51,50,44,52,48,46,52,52,52,55,55,53,93,44,91,45,56,49,46,54,52,57,49,57,57,44,52,48,46,54,51,53,49,48,54,93,44,91,45,56,49,46,54,53,48,48,52,53,44,52,48,46,54,54,56,49,49,55,93,44,91,45,56,50,46,49,50,54,49,57,57,44,52,48,46,54,54,56,50,50,57,93,44,91,45,56,50,46,50,50,48,49,49,44,52,48,46,53,54,56,50,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,79,115,99,101,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,54,48,57,52,55,44,52,51,46,53,48,48,48,51,54,93,44,91,45,57,53,46,56,54,49,57,49,52,44,52,51,46,50,53,55,53,54,54,93,44,91,45,57,53,46,51,56,56,48,55,56,44,52,51,46,50,53,53,50,50,49,93,44,91,45,57,53,46,51,56,55,55,56,55,44,52,51,46,53,48,48,50,50,54,93,44,91,45,57,53,46,52,53,52,52,51,51,44,52,51,46,53,48,48,54,52,54,93,44,91,45,57,53,46,56,54,48,57,52,55,44,52,51,46,53,48,48,48,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,74,101,110,110,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,55,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,56,56,48,52,44,51,57,46,48,54,56,53,51,54,93,44,91,45,56,53,46,55,57,53,51,53,55,44,51,56,46,56,48,55,53,48,56,93,44,91,45,56,53,46,54,56,51,56,51,57,44,51,56,46,56,49,53,52,48,54,93,44,91,45,56,53,46,52,52,52,56,57,55,44,51,56,46,57,49,50,57,57,56,93,44,91,45,56,53,46,52,52,48,48,53,52,44,51,57,46,49,57,53,54,49,55,93,44,91,45,56,53,46,53,54,54,51,50,44,51,57,46,49,51,50,55,54,49,93,44,91,45,56,53,46,54,56,54,55,56,51,44,51,57,46,49,51,48,56,53,57,93,44,91,45,56,53,46,55,57,56,56,48,52,44,51,57,46,48,54,56,53,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,84,119,105,110,32,70,97,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,54,54,54,44,34,98,101,100,115,34,58,50,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,54,49,54,52,56,55,44,52,50,46,54,52,57,50,57,56,93,44,91,45,49,49,52,46,56,49,57,57,55,49,44,52,50,46,54,54,57,55,52,54,93,44,91,45,49,49,52,46,57,48,49,54,51,54,44,52,50,46,56,53,57,49,48,56,93,44,91,45,49,49,53,46,48,51,55,55,55,52,44,52,50,46,57,49,49,56,54,52,93,44,91,45,49,49,53,46,48,51,55,54,57,55,44,52,50,46,55,54,56,52,49,52,93,44,91,45,49,49,53,46,48,51,56,49,53,55,44,52,49,46,57,57,54,50,55,57,93,44,91,45,49,49,52,46,50,56,49,55,57,57,44,52,49,46,57,57,52,52,52,49,93,44,91,45,49,49,52,46,50,56,53,52,52,56,44,52,50,46,52,49,55,51,51,51,93,44,91,45,49,49,52,46,48,54,57,49,54,50,44,52,50,46,52,49,55,49,50,52,93,44,91,45,49,49,52,46,48,48,48,51,56,56,44,52,50,46,53,50,54,51,55,51,93,44,91,45,49,49,52,46,49,50,52,57,51,52,44,52,50,46,52,57,54,49,51,93,44,91,45,49,49,52,46,50,52,52,55,48,51,44,52,50,46,53,53,57,50,52,52,93,44,91,45,49,49,52,46,54,49,54,52,56,55,44,52,50,46,54,52,57,50,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,50,51,49,44,34,98,101,100,115,34,58,49,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,48,54,55,53,57,44,51,55,46,56,54,51,52,53,55,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,50,55,55,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,48,53,57,93,44,91,45,56,56,46,52,49,50,54,57,55,44,51,55,46,53,57,57,54,50,53,93,44,91,45,56,56,46,51,55,53,52,51,52,44,51,55,46,53,57,57,53,57,53,93,44,91,45,56,56,46,51,55,52,53,51,44,51,55,46,57,48,55,54,55,56,93,44,91,45,56,56,46,55,48,54,54,50,50,44,51,55,46,57,48,54,55,57,55,93,44,91,45,56,56,46,55,48,54,55,53,57,44,51,55,46,56,54,51,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,75,97,108,97,109,97,122,111,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,49,53,55,51,44,34,98,101,100,115,34,58,57,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,54,52,54,57,55,44,52,50,46,52,50,48,55,49,53,93,44,91,45,56,53,46,55,54,50,57,52,51,44,52,50,46,48,54,57,51,50,55,93,44,91,45,56,53,46,50,57,51,54,50,54,44,52,50,46,48,55,49,53,53,51,93,44,91,45,56,53,46,50,57,56,56,55,57,44,52,50,46,52,49,57,56,52,57,93,44,91,45,56,53,46,53,52,51,49,57,49,44,52,50,46,52,50,49,52,51,51,93,44,91,45,56,53,46,55,54,52,54,57,55,44,52,50,46,52,50,48,55,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,54,57,56,55,56,44,51,52,46,48,56,54,49,57,49,93,44,91,45,56,48,46,49,51,53,52,49,51,44,51,52,46,50,56,52,53,53,50,93,44,91,45,56,48,46,50,56,56,54,57,50,44,51,52,46,51,54,52,49,51,57,93,44,91,45,56,48,46,52,50,48,52,56,52,44,51,52,46,50,57,51,48,55,52,93,44,91,45,56,48,46,52,55,57,56,53,55,44,51,52,46,49,54,56,54,57,54,93,44,91,45,56,48,46,52,56,49,51,49,56,44,51,52,46,49,49,50,54,50,50,93,44,91,45,56,48,46,51,50,49,55,50,49,44,51,52,46,48,56,48,51,53,54,93,44,91,45,56,48,46,49,56,48,51,55,49,44,51,51,46,57,53,50,48,48,50,93,44,91,45,56,48,46,48,48,48,53,57,52,44,51,52,46,48,52,55,56,55,55,93,44,91,45,56,48,46,48,54,57,56,55,56,44,51,52,46,48,56,54,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,49,52,54,56,48,56,44,52,52,46,49,54,53,54,54,54,93,44,91,45,49,48,55,46,49,49,48,55,51,52,44,52,51,46,53,48,48,50,56,54,93,44,91,45,49,48,54,46,53,57,52,56,57,55,44,52,51,46,52,57,49,52,55,93,44,91,45,49,48,54,46,48,55,56,48,54,56,44,52,51,46,52,57,52,52,55,49,93,44,91,45,49,48,54,46,48,49,55,51,54,54,44,52,51,46,52,57,52,57,54,57,93,44,91,45,49,48,54,46,48,48,57,54,55,54,44,52,52,46,53,54,51,57,56,49,93,44,91,45,49,48,54,46,52,50,56,56,57,55,44,52,52,46,53,53,54,55,55,55,93,44,91,45,49,48,55,46,51,54,57,54,50,49,44,52,52,46,53,53,57,56,51,55,93,44,91,45,49,48,55,46,50,48,50,48,51,56,44,52,52,46,52,52,54,51,48,53,93,44,91,45,49,48,55,46,49,52,53,48,48,49,44,52,52,46,51,50,52,48,48,52,93,44,91,45,49,48,55,46,49,52,54,56,48,56,44,52,52,46,49,54,53,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,68,97,118,105,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,51,55,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,57,56,55,55,49,44,51,56,46,57,48,51,57,55,52,93,44,91,45,56,55,46,50,52,54,54,44,51,56,46,56,48,55,55,48,49,93,44,91,45,56,55,46,50,55,56,53,53,51,44,51,56,46,54,57,49,51,52,51,93,44,91,45,56,55,46,50,52,50,48,57,55,44,51,56,46,53,52,52,57,51,93,44,91,45,56,55,46,48,55,50,51,54,57,44,51,56,46,53,49,52,55,93,44,91,45,56,54,46,57,50,52,49,56,54,44,51,56,46,53,48,53,51,53,56,93,44,91,45,56,54,46,57,48,52,50,53,50,44,51,56,46,57,48,52,50,48,52,93,44,91,45,56,55,46,48,57,56,55,55,49,44,51,56,46,57,48,51,57,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,114,97,110,100,32,84,114,97,118,101,114,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,55,52,54,44,34,98,101,100,115,34,58,52,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,56,48,54,55,52,44,52,53,46,49,50,48,51,50,54,93,44,91,45,56,53,46,53,53,48,52,53,53,44,52,53,46,48,53,49,48,55,51,93,44,91,45,56,53,46,54,49,56,48,51,51,44,52,52,46,55,55,52,53,53,55,93,44,91,45,56,53,46,56,49,53,49,49,57,44,52,52,46,55,55,52,53,51,52,93,44,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,44,91,45,56,53,46,51,51,52,44,52,52,46,53,49,50,51,48,51,93,44,91,45,56,53,46,51,51,50,56,51,54,44,52,52,46,56,49,50,51,55,50,93,44,91,45,56,53,46,52,55,51,56,52,49,44,52,52,46,56,53,57,52,52,57,93,44,91,45,56,53,46,52,50,55,54,56,56,44,52,52,46,57,54,53,50,55,51,93,44,91,45,56,53,46,52,56,48,54,55,52,44,52,53,46,49,50,48,51,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,54,49,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,50,51,57,51,50,44,51,48,46,56,57,93,44,91,45,57,50,46,57,55,56,52,53,51,44,51,48,46,56,55,56,49,55,53,93,44,91,45,57,50,46,57,55,57,49,55,44,51,48,46,53,57,56,51,52,93,44,91,45,57,51,46,49,51,48,51,56,44,51,48,46,53,57,55,55,55,55,93,44,91,45,57,51,46,49,51,49,49,53,53,44,51,48,46,52,50,51,54,49,50,93,44,91,45,57,50,46,55,55,53,53,53,52,44,51,48,46,52,51,55,54,53,54,93,44,91,45,57,50,46,54,51,48,51,52,55,44,51,48,46,52,56,55,56,55,51,93,44,91,45,57,50,46,53,57,55,51,53,51,44,51,48,46,53,56,49,54,50,51,93,44,91,45,57,50,46,53,57,55,55,52,49,44,51,48,46,56,57,54,49,48,49,93,44,91,45,57,50,46,56,50,51,57,51,50,44,51,48,46,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,117,103,104,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,49,55,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,55,54,51,57,56,44,52,52,46,53,52,56,49,49,49,93,44,91,45,49,48,48,46,53,50,54,52,57,56,44,52,52,46,53,52,55,52,50,50,93,44,91,45,49,48,48,46,53,55,53,55,57,54,44,52,52,46,52,57,49,55,49,51,93,44,91,45,49,48,48,46,51,56,54,51,55,54,44,52,52,46,52,52,48,48,48,56,93,44,91,45,49,48,48,46,51,54,53,51,57,44,52,52,46,51,53,53,53,50,52,93,44,91,45,49,48,48,46,48,56,53,51,51,44,52,52,46,51,48,56,52,53,49,93,44,91,45,57,57,46,57,51,56,50,49,55,44,52,52,46,49,57,53,49,57,53,93,44,91,45,57,57,46,56,56,52,52,56,53,44,52,52,46,49,50,57,53,56,50,93,44,91,45,57,57,46,54,53,52,53,51,54,44,52,52,46,49,48,49,54,56,57,93,44,91,45,57,57,46,54,54,51,53,48,56,44,52,52,46,50,49,55,53,49,55,93,44,91,45,57,57,46,54,55,54,51,57,56,44,52,52,46,53,52,56,49,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,121,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,55,52,50,53,50,44,52,52,46,56,57,55,53,48,51,93,44,91,45,57,57,46,54,55,54,51,57,56,44,52,52,46,53,52,56,49,49,49,93,44,91,45,57,57,46,54,54,51,53,48,56,44,52,52,46,50,49,55,53,49,55,93,44,91,45,57,57,46,53,55,54,53,55,49,44,52,52,46,49,57,50,52,50,49,93,44,91,45,57,57,46,51,48,48,49,56,44,52,52,46,49,57,52,56,51,93,44,91,45,57,57,46,51,49,49,55,53,52,44,52,52,46,56,57,55,50,50,55,93,44,91,45,57,57,46,53,55,50,54,57,57,44,52,52,46,56,57,55,50,54,51,93,44,91,45,57,57,46,54,55,52,50,53,50,44,52,52,46,56,57,55,53,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,114,101,110,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,48,49,55,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,55,52,54,48,49,44,51,51,46,57,52,54,53,50,55,93,44,91,45,56,48,46,50,53,53,57,48,52,44,51,51,46,56,48,51,55,48,56,93,44,91,45,56,48,46,51,57,55,49,51,49,44,51,51,46,55,54,55,56,50,49,93,44,91,45,56,48,46,53,51,52,48,56,53,44,51,51,46,54,52,51,57,49,49,93,44,91,45,56,48,46,52,57,54,50,55,51,44,51,51,46,53,53,56,52,56,49,93,44,91,45,56,48,46,51,53,52,53,51,57,44,51,51,46,52,51,48,52,48,56,93,44,91,45,56,48,46,50,50,50,50,54,55,44,51,51,46,52,52,51,55,49,54,93,44,91,45,56,48,46,49,48,49,54,57,55,44,51,51,46,52,57,54,56,57,49,93,44,91,45,55,57,46,57,55,52,51,56,50,44,51,51,46,55,50,49,53,57,93,44,91,45,55,57,46,57,57,53,54,51,56,44,51,51,46,55,54,55,57,48,54,93,44,91,45,55,57,46,56,55,53,54,50,44,51,51,46,56,56,53,50,52,53,93,44,91,45,55,57,46,57,55,52,54,48,49,44,51,51,46,57,52,54,53,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,83,116,105,108,108,119,97,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,49,48,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,52,49,55,49,53,56,44,52,54,46,48,52,52,55,53,57,93,44,91,45,49,48,57,46,53,48,54,54,48,52,44,52,53,46,57,53,57,49,49,50,93,44,91,45,49,48,57,46,53,54,51,57,48,55,44,52,53,46,55,56,51,52,55,49,93,44,91,45,49,48,57,46,53,54,50,48,55,44,52,53,46,54,48,57,49,49,57,93,44,91,45,49,48,57,46,54,56,53,51,56,53,44,52,53,46,54,48,57,48,50,50,93,44,91,45,49,48,57,46,57,51,50,48,50,53,44,52,53,46,53,50,50,52,53,54,93,44,91,45,49,48,57,46,57,51,49,57,56,52,44,52,53,46,51,52,56,55,53,53,93,44,91,45,49,49,48,46,48,54,52,53,56,49,44,52,53,46,51,52,56,55,53,53,93,44,91,45,49,49,48,46,48,54,52,53,49,56,44,52,53,46,49,55,50,49,50,57,93,44,91,45,49,48,57,46,55,57,56,54,55,51,44,52,53,46,49,54,55,51,51,57,93,44,91,45,49,48,57,46,54,56,55,55,57,50,44,52,53,46,49,54,55,51,51,57,93,44,91,45,49,48,57,46,53,54,49,57,50,52,44,52,53,46,51,54,50,56,52,51,93,44,91,45,49,48,57,46,51,53,54,52,49,55,44,52,53,46,52,54,52,51,50,54,93,44,91,45,49,48,57,46,49,57,49,55,54,49,44,52,53,46,52,54,52,53,48,52,93,44,91,45,49,48,57,46,48,54,56,52,57,56,44,52,53,46,53,56,51,50,52,49,93,44,91,45,49,48,56,46,56,52,51,48,49,54,44,52,53,46,54,49,49,48,52,50,93,44,91,45,49,48,56,46,57,48,52,55,50,54,44,52,53,46,54,56,50,56,50,49,93,44,91,45,49,48,56,46,57,48,49,54,53,53,44,52,53,46,57,53,57,52,49,54,93,44,91,45,49,48,56,46,57,50,52,53,56,57,44,52,54,46,49,51,50,51,55,93,44,91,45,49,48,57,46,52,49,54,50,50,55,44,52,54,46,49,51,50,51,55,49,93,44,91,45,49,48,57,46,52,49,55,49,53,56,44,52,54,46,48,52,52,55,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,108,101,100,115,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,54,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,49,54,48,54,50,44,51,53,46,55,54,49,57,51,57,93,44,91,45,56,53,46,50,53,52,48,54,50,44,51,53,46,55,54,53,54,49,49,93,44,91,45,56,53,46,52,50,51,56,48,52,44,51,53,46,53,54,55,52,50,50,93,44,91,45,56,53,46,52,48,51,50,57,56,44,51,53,46,52,57,50,50,56,93,44,91,45,56,53,46,50,50,53,56,55,55,44,51,53,46,51,53,52,50,55,54,93,44,91,45,56,53,46,49,51,53,49,57,49,44,51,53,46,52,53,56,54,52,57,93,44,91,45,56,53,46,49,48,55,55,54,50,44,51,53,46,53,55,49,51,53,57,93,44,91,45,56,52,46,57,49,54,48,54,50,44,51,53,46,55,54,49,57,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,57,34,44,34,78,65,77,69,34,58,34,84,111,100,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,53,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,53,57,51,55,49,44,51,55,46,48,55,50,52,48,49,93,44,91,45,56,55,46,51,51,53,57,56,44,51,54,46,54,52,49,54,53,57,93,44,91,45,56,55,46,49,49,52,57,56,51,44,51,54,46,54,52,50,51,55,49,93,44,91,45,56,55,46,48,54,48,56,52,57,44,51,54,46,54,52,50,57,54,51,93,44,91,45,56,55,46,48,53,51,49,54,52,44,51,55,46,48,54,49,48,49,57,93,44,91,45,56,55,46,50,53,57,51,55,49,44,51,55,46,48,55,50,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,87,101,97,107,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,54,50,54,44,34,98,101,100,115,34,58,49,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,50,55,51,48,51,44,51,54,46,53,48,50,54,51,51,93,44,91,45,56,56,46,56,49,53,51,56,57,44,51,54,46,52,50,50,53,50,56,93,44,91,45,56,56,46,57,53,48,50,48,53,44,51,54,46,52,48,57,50,52,56,93,44,91,45,56,56,46,57,53,57,56,51,57,44,51,54,46,50,50,50,56,51,52,93,44,91,45,56,56,46,56,51,53,52,53,55,44,51,54,46,49,50,49,52,54,49,93,44,91,45,56,56,46,54,57,50,55,48,57,44,51,54,46,48,54,50,55,52,54,93,44,91,45,56,56,46,53,51,48,51,50,50,44,51,54,46,49,53,50,48,50,51,93,44,91,45,56,56,46,53,49,54,52,48,51,44,51,54,46,53,48,49,53,56,51,93,44,91,45,56,56,46,56,49,54,55,54,51,44,51,54,46,53,48,50,54,54,53,93,44,91,45,56,56,46,56,50,55,51,48,51,44,51,54,46,53,48,50,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,56,52,50,57,44,34,98,101,100,115,34,58,49,57,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,50,53,56,52,52,44,51,55,46,50,56,50,48,49,49,93,44,91,45,57,51,46,54,48,56,56,57,57,44,51,55,46,48,57,56,49,53,51,93,44,91,45,57,51,46,48,54,53,50,55,52,44,51,55,46,48,56,56,54,57,52,93,44,91,45,57,51,46,48,55,51,51,56,44,51,55,46,52,49,52,57,56,57,93,44,91,45,57,51,46,49,56,50,52,56,57,44,51,55,46,52,49,55,50,48,52,93,44,91,45,57,51,46,54,50,49,49,53,51,44,51,55,46,52,50,55,52,50,51,93,44,91,45,57,51,46,54,50,53,56,52,52,44,51,55,46,50,56,50,48,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,101,104,105,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,50,54,49,51,44,34,98,101,100,115,34,58,49,52,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,57,49,52,55,51,44,52,48,46,54,55,55,50,55,93,44,91,45,55,53,46,53,50,57,54,57,52,44,52,48,46,52,52,54,57,57,53,93,44,91,45,55,53,46,52,56,52,48,53,55,44,52,48,46,52,49,56,52,53,49,93,44,91,45,55,53,46,51,51,51,53,49,52,44,52,48,46,53,51,55,48,53,55,93,44,91,45,55,53,46,51,56,51,48,52,57,44,52,48,46,54,50,51,54,54,51,93,44,91,45,55,53,46,52,56,49,52,54,57,44,52,48,46,54,53,53,55,52,52,93,44,91,45,55,53,46,54,48,56,57,56,53,44,52,48,46,55,56,55,51,56,55,93,44,91,45,55,53,46,55,53,55,56,48,55,44,52,48,46,55,51,53,52,49,52,93,44,91,45,55,53,46,56,57,49,52,55,51,44,52,48,46,54,55,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,83,101,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,50,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,49,49,56,44,52,49,46,48,52,54,57,52,55,93,44,91,45,57,55,46,51,54,56,52,48,49,44,52,48,46,54,57,56,54,50,53,93,44,91,45,57,54,46,57,49,51,52,57,51,44,52,48,46,54,57,55,57,52,56,93,44,91,45,57,54,46,57,49,48,57,52,44,52,49,46,48,52,54,49,49,54,93,44,91,45,57,55,46,51,54,56,49,49,56,44,52,49,46,48,52,54,57,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,104,101,109,117,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,55,52,48,44,34,98,101,100,115,34,58,52,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,54,53,48,50,56,44,52,50,46,50,55,56,52,57,53,93,44,91,45,55,54,46,57,54,53,55,50,56,44,52,50,46,48,48,49,50,55,54,93,44,91,45,55,54,46,57,50,55,48,56,52,44,52,50,46,48,48,49,54,55,52,93,44,91,45,55,54,46,53,53,55,54,50,52,44,52,50,46,48,48,48,49,54,93,44,91,45,55,54,46,53,51,56,51,52,57,44,52,50,46,50,56,49,55,53,53,93,44,91,45,55,54,46,54,49,57,51,48,51,44,52,50,46,50,56,50,56,53,51,93,44,91,45,55,54,46,57,54,53,48,50,56,44,52,50,46,50,55,56,52,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,54,53,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,54,52,51,56,49,44,52,50,46,56,54,55,52,54,49,93,44,91,45,55,56,46,52,54,51,57,52,44,52,50,46,53,51,54,51,51,50,93,44,91,45,55,56,46,51,48,56,56,51,57,44,52,50,46,53,50,49,50,49,55,93,44,91,45,55,56,46,48,51,56,50,54,49,44,52,50,46,53,50,49,53,50,50,93,44,91,45,55,55,46,57,53,54,51,51,52,44,52,50,46,54,54,55,51,50,50,93,44,91,45,55,55,46,57,53,52,57,54,52,44,52,50,46,56,54,50,55,53,52,93,44,91,45,55,56,46,52,54,52,51,56,49,44,52,50,46,56,54,55,52,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,83,116,97,110,105,115,108,97,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,57,51,48,49,44,34,98,101,100,115,34,58,49,51,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,57,50,54,52,52,57,44,51,56,46,48,55,55,52,50,49,93,44,91,45,49,50,48,46,57,50,50,49,55,52,44,51,55,46,55,52,55,56,48,54,93,44,91,45,49,50,49,46,49,53,53,56,52,57,44,51,55,46,55,49,57,56,52,52,93,44,91,45,49,50,49,46,52,55,49,57,50,53,44,51,55,46,52,56,49,55,56,51,93,44,91,45,49,50,49,46,52,55,50,54,52,56,44,51,55,46,52,56,50,49,55,93,44,91,45,49,50,49,46,52,49,50,53,52,57,44,51,55,46,51,56,57,52,51,53,93,44,91,45,49,50,49,46,52,53,52,48,48,57,44,51,55,46,50,56,52,48,53,93,44,91,45,49,50,49,46,52,48,52,54,51,54,44,51,55,46,49,53,53,57,56,57,93,44,91,45,49,50,49,46,50,50,54,56,48,52,44,51,55,46,49,51,52,55,55,52,93,44,91,45,49,50,48,46,57,55,50,57,52,49,44,51,55,46,51,51,56,52,56,51,93,44,91,45,49,50,48,46,57,56,51,55,53,54,44,51,55,46,51,57,57,54,52,93,44,91,45,49,50,48,46,51,56,55,54,55,44,51,55,46,54,51,51,51,54,52,93,44,91,45,49,50,48,46,51,56,55,54,49,51,44,51,55,46,54,51,51,55,48,52,93,44,91,45,49,50,48,46,54,53,51,50,55,52,44,51,55,46,56,51,49,56,53,56,93,44,91,45,49,50,48,46,57,50,54,52,52,57,44,51,56,46,48,55,55,52,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,49,55,55,56,44,34,98,101,100,115,34,58,49,50,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,49,50,48,50,51,50,44,52,48,46,57,54,56,55,48,50,93,44,91,45,55,53,46,51,48,48,53,57,52,44,52,48,46,56,53,57,53,54,51,93,44,91,45,55,53,46,52,55,52,49,57,51,44,52,48,46,56,49,52,55,52,54,93,44,91,45,55,53,46,54,48,56,57,56,53,44,52,48,46,55,56,55,51,56,55,93,44,91,45,55,53,46,52,56,49,52,54,57,44,52,48,46,54,53,53,55,52,52,93,44,91,45,55,53,46,51,56,51,48,52,57,44,52,48,46,54,50,51,54,54,51,93,44,91,45,55,53,46,51,51,51,53,49,52,44,52,48,46,53,51,55,48,53,55,93,44,91,45,55,53,46,49,57,54,56,48,51,44,52,48,46,54,48,56,53,56,93,44,91,45,55,53,46,49,55,49,53,56,55,44,52,48,46,55,55,55,55,52,53,93,44,91,45,55,53,46,48,53,51,54,54,52,44,52,48,46,56,55,51,54,54,93,44,91,45,55,53,46,49,50,48,50,51,50,44,52,48,46,57,54,56,55,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,49,50,50,44,34,98,101,100,115,34,58,50,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,48,53,48,55,51,44,51,52,46,54,56,54,48,51,55,93,44,91,45,56,55,46,49,49,48,49,49,49,44,51,52,46,51,49,51,55,57,57,93,44,91,45,56,54,46,53,56,49,57,51,54,44,51,52,46,51,48,52,54,57,52,93,44,91,45,56,54,46,53,53,48,49,54,54,44,51,52,46,53,52,53,57,54,51,93,44,91,45,56,54,46,54,56,57,51,53,51,44,51,52,46,53,56,54,52,50,53,93,44,91,45,56,54,46,55,57,48,48,53,54,44,51,52,46,53,53,48,55,57,93,44,91,45,56,54,46,57,48,55,50,48,53,44,51,52,46,53,55,57,55,57,50,93,44,91,45,56,55,46,49,48,53,48,55,51,44,51,52,46,54,56,54,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,66,114,101,99,107,105,110,114,105,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,57,48,56,53,52,44,51,56,46,48,52,53,55,51,53,93,44,91,45,56,54,46,53,48,55,48,56,57,44,51,55,46,57,50,57,57,49,55,93,44,91,45,56,54,46,54,53,53,50,55,50,44,51,55,46,56,52,50,53,50,49,93,44,91,45,56,54,46,54,51,56,57,51,53,44,51,55,46,54,54,49,56,55,55,93,44,91,45,56,54,46,53,57,50,56,49,44,51,55,46,53,54,52,51,54,93,44,91,45,56,54,46,50,55,53,50,55,44,51,55,46,53,57,51,53,49,57,93,44,91,45,56,54,46,49,53,49,50,56,53,44,51,55,46,55,57,56,56,55,56,93,44,91,45,56,54,46,52,57,48,56,53,52,44,51,56,46,48,52,53,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,71,114,101,110,97,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,50,55,56,44,34,98,101,100,115,34,58,49,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,50,54,48,57,57,44,51,51,46,56,57,55,57,53,55,93,44,91,45,56,57,46,57,50,54,50,57,52,44,51,51,46,56,50,51,56,53,52,93,44,91,45,57,48,46,49,51,54,52,57,49,44,51,51,46,56,48,57,51,49,57,93,44,91,45,57,48,46,49,51,54,55,56,55,44,51,51,46,55,50,49,54,52,56,93,44,91,45,57,48,46,49,50,55,55,55,53,44,51,51,46,54,55,54,57,53,54,93,44,91,45,56,57,46,55,56,54,56,57,44,51,51,46,54,55,54,55,50,55,93,44,91,45,56,57,46,53,48,54,56,55,50,44,51,51,46,54,55,55,54,48,53,93,44,91,45,56,57,46,53,48,55,49,51,53,44,51,51,46,55,50,49,56,49,57,93,44,91,45,56,57,46,53,48,55,51,53,51,44,51,51,46,56,54,55,52,54,57,93,44,91,45,56,57,46,55,54,57,48,53,44,51,51,46,56,54,55,51,51,52,93,44,91,45,56,57,46,57,50,54,48,57,57,44,51,51,46,56,57,55,57,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,51,34,44,34,78,65,77,69,34,58,34,83,105,109,112,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,55,54,51,50,57,54,44,51,54,46,54,52,56,57,53,52,93,44,91,45,56,54,46,53,54,51,57,48,57,44,51,54,46,54,51,51,53,54,50,93,44,91,45,56,54,46,52,49,49,51,55,57,44,51,54,46,54,53,48,57,50,52,93,44,91,45,56,54,46,52,48,53,55,54,57,44,51,54,46,55,55,54,49,56,55,93,44,91,45,56,54,46,53,56,51,50,56,57,44,51,54,46,56,51,48,50,56,50,93,44,91,45,56,54,46,54,49,49,53,56,54,44,51,54,46,56,56,51,48,53,55,93,44,91,45,56,54,46,54,57,48,55,49,57,44,51,54,46,56,52,52,51,93,44,91,45,56,54,46,55,54,51,50,57,54,44,51,54,46,54,52,56,57,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,100,32,73,115,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,52,51,49,50,52,44,52,53,46,48,49,48,56,52,93,44,91,45,55,51,46,51,51,53,48,52,52,44,52,52,46,56,48,52,49,48,57,93,44,91,45,55,51,46,51,56,57,56,50,44,52,52,46,54,49,55,50,49,49,93,44,91,45,55,51,46,51,54,49,52,53,53,44,52,52,46,53,54,51,53,54,51,93,44,91,45,55,51,46,50,51,51,50,48,57,44,52,52,46,54,52,57,55,57,49,93,44,91,45,55,51,46,50,50,56,56,53,52,44,52,52,46,55,50,50,56,54,54,93,44,91,45,55,51,46,49,57,49,57,50,56,44,52,53,46,48,49,51,54,49,53,93,44,91,45,55,51,46,51,52,51,49,50,52,44,52,53,46,48,49,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,48,48,51,44,34,98,101,100,115,34,58,51,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,56,54,54,55,57,44,52,48,46,57,48,49,54,48,57,93,44,91,45,56,49,46,48,56,55,50,56,57,44,52,48,46,55,50,55,56,49,54,93,44,91,45,56,48,46,57,49,55,49,55,50,44,52,48,46,55,50,54,57,51,52,93,44,91,45,56,48,46,56,54,49,57,57,52,44,52,48,46,53,57,57,52,48,52,93,44,91,45,56,48,46,54,54,55,57,53,55,44,52,48,46,53,56,50,52,57,54,93,44,91,45,56,48,46,53,49,56,57,57,49,44,52,48,46,54,51,56,56,48,49,93,44,91,45,56,48,46,53,49,57,48,52,52,44,52,48,46,56,53,49,51,51,57,93,44,91,45,56,48,46,53,49,57,49,53,44,52,48,46,57,48,48,51,50,54,93,44,91,45,56,49,46,48,56,54,54,55,57,44,52,48,46,57,48,49,54,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,78,101,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,56,51,56,56,55,52,44,51,56,46,48,52,55,51,55,93,44,91,45,55,57,46,48,48,53,49,50,57,44,51,55,46,56,56,49,54,57,93,44,91,45,55,57,46,49,53,55,51,57,44,51,55,46,56,57,49,48,48,51,93,44,91,45,55,57,46,49,55,50,49,51,49,44,51,55,46,56,48,51,48,57,55,93,44,91,45,55,56,46,57,54,54,57,50,54,44,51,55,46,54,55,55,48,48,52,93,44,91,45,55,56,46,56,54,57,50,52,53,44,51,55,46,53,52,50,48,57,50,93,44,91,45,55,56,46,56,50,53,50,51,56,44,51,55,46,53,53,50,53,52,50,93,44,91,45,55,56,46,54,52,51,57,49,56,44,51,55,46,55,51,51,48,56,52,93,44,91,45,55,56,46,56,51,56,56,55,52,44,51,56,46,48,52,55,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,79,115,99,101,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,54,49,57,44,34,98,101,100,115,34,58,54,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,53,55,50,54,56,44,50,56,46,51,52,55,48,57,56,93,44,91,45,56,49,46,54,53,55,49,56,57,44,50,56,46,50,53,57,50,49,55,93,44,91,45,56,49,46,53,53,55,52,53,57,44,50,56,46,50,53,57,51,54,50,93,44,91,45,56,49,46,53,50,52,50,50,55,44,50,56,46,49,52,50,56,48,53,93,44,91,45,56,49,46,52,53,53,55,53,56,44,50,56,46,48,56,52,56,57,93,44,91,45,56,49,46,51,52,54,52,49,56,44,50,56,46,48,56,52,54,57,54,93,44,91,45,56,49,46,51,56,49,48,50,50,44,50,55,46,57,56,51,51,57,51,93,44,91,45,56,49,46,50,57,55,49,49,51,44,50,55,46,56,53,57,53,56,50,93,44,91,45,56,49,46,50,49,52,52,48,57,44,50,55,46,56,50,56,53,53,93,44,91,45,56,49,46,49,52,50,49,54,52,44,50,55,46,54,52,51,50,51,56,93,44,91,45,56,48,46,56,55,51,49,53,44,50,55,46,54,52,50,50,56,56,93,44,91,45,56,48,46,56,54,56,56,56,49,44,50,55,46,56,50,50,53,50,50,93,44,91,45,56,48,46,56,54,50,57,48,56,44,50,56,46,51,52,55,52,56,55,93,44,91,45,56,49,46,54,53,55,50,54,56,44,50,56,46,51,52,55,48,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,52,53,56,49,56,44,51,52,46,52,57,51,53,48,54,93,44,91,45,57,50,46,52,48,52,54,56,44,51,52,46,52,53,49,57,49,54,93,44,91,45,57,50,46,53,56,57,52,49,56,44,51,52,46,52,53,53,54,52,49,93,44,91,45,57,50,46,54,54,56,55,49,49,44,51,52,46,52,49,52,50,51,55,93,44,91,45,57,50,46,54,55,56,51,56,51,44,51,52,46,49,52,57,54,50,50,93,44,91,45,57,50,46,52,57,51,54,55,50,44,51,52,46,49,52,52,50,51,52,93,44,91,45,57,50,46,51,51,54,55,54,53,44,51,52,46,48,53,57,54,51,51,93,44,91,45,57,50,46,50,51,51,51,55,54,44,51,52,46,48,54,50,51,49,50,93,44,91,45,57,50,46,50,48,56,48,52,49,44,51,52,46,52,57,50,55,54,53,93,44,91,45,57,50,46,50,52,53,56,49,56,44,51,52,46,52,57,51,53,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,76,97,117,114,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,52,49,56,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,44,91,45,56,51,46,49,51,56,57,57,49,44,51,50,46,52,50,51,48,54,57,93,44,91,45,56,50,46,57,57,48,57,54,55,44,51,50,46,49,52,55,50,55,52,93,44,91,45,56,50,46,56,56,52,56,48,51,44,51,50,46,49,57,54,48,55,50,93,44,91,45,56,50,46,55,50,49,57,54,52,44,51,50,46,51,48,57,50,56,51,93,44,91,45,56,50,46,54,52,55,55,51,51,44,51,50,46,53,49,50,53,48,55,93,44,91,45,56,50,46,54,54,56,53,53,55,44,51,50,46,54,49,50,49,54,52,93,44,91,45,56,50,46,56,54,50,55,54,51,44,51,50,46,55,49,53,55,54,93,44,91,45,56,50,46,57,53,55,48,54,54,44,51,50,46,55,48,56,51,49,56,93,44,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,50,52,56,48,44,34,98,101,100,115,34,58,49,48,51,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,56,52,55,57,52,44,52,48,46,55,57,55,54,56,55,93,44,91,45,55,52,46,48,51,52,53,55,51,44,52,48,46,54,56,52,56,54,54,93,44,91,45,55,51,46,57,54,50,52,55,56,44,52,48,46,55,51,54,56,48,50,93,44,91,45,55,51,46,57,49,50,52,53,54,44,52,48,46,55,57,54,48,57,54,93,44,91,45,55,51,46,57,51,51,56,48,56,44,52,48,46,56,56,50,50,49,52,93,44,91,45,55,51,46,57,56,52,55,57,52,44,52,48,46,55,57,55,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,57,56,48,44,34,98,101,100,115,34,58,52,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,55,57,49,57,44,51,54,46,52,57,57,52,49,52,93,44,91,45,57,52,46,53,54,50,55,50,55,44,51,54,46,49,54,49,56,57,51,93,44,91,45,57,52,46,53,53,50,49,55,50,44,51,54,46,49,48,50,49,50,56,93,44,91,45,57,52,46,51,57,49,49,50,53,44,51,54,46,48,57,57,51,57,54,93,44,91,45,57,52,46,51,51,51,53,54,53,44,51,54,46,50,49,52,55,50,55,93,44,91,45,57,52,46,48,49,55,53,48,57,44,51,54,46,50,48,56,49,52,57,93,44,91,45,57,51,46,56,56,55,55,55,53,44,51,54,46,50,51,53,48,52,54,93,44,91,45,57,51,46,56,49,53,48,55,56,44,51,54,46,51,48,54,53,53,49,93,44,91,45,57,51,46,56,54,54,57,54,49,44,51,54,46,51,52,56,53,55,57,93,44,91,45,57,51,46,56,54,54,54,56,57,44,51,54,46,52,57,56,55,51,53,93,44,91,45,57,52,46,48,55,55,48,56,57,44,51,54,46,52,57,56,55,51,93,44,91,45,57,52,46,54,49,55,57,49,57,44,51,54,46,52,57,57,52,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,73,115,97,98,101,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,52,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,48,52,57,54,53,44,49,56,46,53,54,54,53,54,93,44,91,45,54,55,46,48,53,54,53,48,55,44,49,56,46,52,54,48,57,53,52,93,44,91,45,54,55,46,48,50,55,49,55,51,44,49,56,46,51,57,51,51,55,54,93,44,91,45,54,54,46,57,50,50,48,50,44,49,56,46,51,57,51,50,48,52,93,44,91,45,54,54,46,57,52,53,57,51,56,44,49,56,46,53,52,48,52,49,57,93,44,91,45,54,55,46,49,48,52,57,54,53,44,49,56,46,53,54,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,56,51,55,49,44,34,98,101,100,115,34,58,56,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,48,54,54,50,44,50,57,46,52,56,53,48,52,56,93,44,91,45,56,50,46,52,48,51,50,51,55,44,50,57,46,50,49,53,54,50,51,93,44,91,45,56,50,46,53,51,52,56,54,44,50,57,46,50,49,52,54,56,93,44,91,45,56,50,46,53,51,53,53,57,49,44,50,57,46,48,52,52,56,53,53,93,44,91,45,56,50,46,52,55,55,54,51,57,44,50,57,46,48,53,50,52,56,52,93,44,91,45,56,50,46,51,49,49,54,57,55,44,50,56,46,57,54,48,51,57,49,93,44,91,45,56,49,46,57,53,52,49,57,44,50,56,46,57,54,48,48,53,51,93,44,91,45,56,49,46,54,53,56,54,57,56,44,50,56,46,57,54,48,51,52,53,93,44,91,45,56,49,46,54,52,49,57,49,54,44,50,57,46,50,55,54,55,54,54,93,44,91,45,56,49,46,54,56,48,57,48,51,44,50,57,46,51,50,52,52,51,93,44,91,45,56,49,46,55,55,54,50,48,53,44,50,57,46,52,56,55,52,52,56,93,44,91,45,56,49,46,56,52,51,48,48,57,44,50,57,46,53,50,49,48,48,52,93,44,91,45,56,50,46,48,53,53,56,57,57,44,50,57,46,52,55,49,50,51,50,93,44,91,45,56,50,46,52,48,54,54,50,44,50,57,46,52,56,53,48,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,78,111,116,116,111,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,48,48,44,34,98,101,100,115,34,58,49,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,55,57,53,57,50,54,44,51,55,46,49,57,50,53,57,50,93,44,91,45,55,56,46,50,51,49,50,51,52,44,51,55,46,50,57,54,50,50,93,44,91,45,55,56,46,50,51,57,51,53,52,44,51,55,46,49,50,48,48,56,57,93,44,91,45,55,56,46,49,55,48,56,57,53,44,51,55,46,48,53,51,57,52,57,93,44,91,45,55,56,46,48,48,51,54,51,57,44,51,55,46,48,50,50,55,53,54,93,44,91,45,55,55,46,56,56,57,56,49,51,44,51,54,46,57,56,56,56,49,56,93,44,91,45,55,55,46,57,48,48,51,51,56,44,51,55,46,49,52,51,56,56,50,93,44,91,45,55,55,46,55,57,53,57,50,54,44,51,55,46,49,57,50,53,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,50,57,51,44,34,98,101,100,115,34,58,49,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,49,50,48,50,51,50,44,52,48,46,57,54,56,55,48,50,93,44,91,45,55,53,46,48,53,51,54,54,52,44,52,48,46,56,55,51,54,54,93,44,91,45,55,53,46,49,55,49,53,56,55,44,52,48,46,55,55,55,55,52,53,93,44,91,45,55,53,46,49,57,54,56,48,51,44,52,48,46,54,48,56,53,56,93,44,91,45,55,53,46,49,56,57,54,44,52,48,46,53,57,49,55,55,54,93,44,91,45,55,52,46,57,55,48,49,49,50,44,52,48,46,55,48,57,56,54,50,93,44,91,45,55,52,46,56,56,57,56,49,57,44,52,48,46,55,56,55,55,50,57,93,44,91,45,55,52,46,55,54,57,52,50,53,44,52,48,46,57,49,48,57,51,52,93,44,91,45,55,52,46,57,54,54,57,48,54,44,52,49,46,48,57,52,52,49,93,44,91,45,55,53,46,49,50,48,50,51,50,44,52,48,46,57,54,56,55,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,57,49,57,44,34,98,101,100,115,34,58,49,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,53,50,52,50,57,44,52,50,46,53,49,48,48,49,55,93,44,91,45,55,51,46,55,56,51,55,50,49,44,52,50,46,52,54,52,50,51,49,93,44,91,45,55,51,46,55,56,57,53,48,50,44,52,50,46,50,54,55,55,51,56,93,44,91,45,55,51,46,57,49,48,54,55,53,44,52,50,46,49,50,55,50,57,51,93,44,91,45,55,51,46,57,50,57,54,50,54,44,52,50,46,48,55,56,55,55,56,93,44,91,45,55,51,46,55,49,48,57,51,44,52,50,46,48,48,53,52,56,56,93,44,91,45,55,51,46,53,50,55,48,55,50,44,52,49,46,57,55,55,57,56,93,44,91,45,55,51,46,52,57,55,48,49,56,44,52,50,46,48,52,57,54,50,52,93,44,91,45,55,51,46,53,48,56,50,49,44,52,50,46,48,56,54,49,51,52,93,44,91,45,55,51,46,51,53,50,52,50,57,44,52,50,46,53,49,48,48,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,57,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,57,48,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,115,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,48,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,48,52,48,55,55,44,51,54,46,54,56,52,49,50,55,93,44,91,45,55,57,46,56,53,57,50,54,44,51,54,46,54,54,49,55,51,55,93,44,91,45,55,57,46,56,51,55,51,53,57,44,51,54,46,55,48,52,49,51,55,93,44,91,45,55,57,46,56,55,52,55,54,44,51,54,46,55,49,53,50,51,55,93,44,91,45,55,57,46,57,48,52,48,55,55,44,51,54,46,54,56,52,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,111,99,116,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,56,54,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,53,54,53,50,49,44,51,52,46,49,53,54,57,54,53,93,44,91,45,57,53,46,55,55,57,51,55,54,44,51,52,46,49,53,54,54,57,57,93,44,91,45,57,53,46,57,57,49,53,55,56,44,51,52,46,49,53,54,56,48,53,93,44,91,45,57,53,46,57,51,56,49,53,44,51,52,46,49,50,53,49,93,44,91,45,57,53,46,57,51,55,57,56,57,44,51,51,46,57,52,56,50,49,57,93,44,91,45,57,53,46,55,54,49,53,50,44,51,51,46,56,55,51,49,49,56,93,44,91,45,57,53,46,53,53,50,55,57,57,44,51,51,46,57,50,52,51,49,49,93,44,91,45,57,53,46,53,51,51,55,57,56,44,51,51,46,56,56,49,49,53,51,93,44,91,45,57,53,46,51,49,48,52,57,55,44,51,51,46,56,55,55,50,48,52,93,44,91,45,57,53,46,49,53,53,56,56,50,44,51,51,46,57,51,54,53,55,50,93,44,91,45,57,53,46,49,53,54,53,50,49,44,51,52,46,49,53,54,57,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,105,99,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,48,52,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,55,49,54,49,52,44,51,56,46,57,53,55,56,53,50,93,44,91,45,57,55,46,51,55,49,57,49,49,44,51,56,46,54,48,57,51,53,51,93,44,91,45,57,54,46,57,51,48,50,56,54,44,51,56,46,54,48,57,51,54,50,93,44,91,45,57,54,46,57,50,55,50,51,52,44,51,56,46,56,49,50,49,54,93,44,91,45,57,54,46,56,57,48,50,52,53,44,51,56,46,56,55,48,48,54,55,93,44,91,45,57,54,46,57,54,51,52,55,44,51,56,46,57,54,52,57,48,49,93,44,91,45,57,54,46,57,54,51,49,55,55,44,51,57,46,49,51,50,51,93,44,91,45,57,55,46,51,55,49,49,53,52,44,51,57,46,49,51,49,57,54,49,93,44,91,45,57,55,46,51,55,49,54,49,52,44,51,56,46,57,53,55,56,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,50,55,34,44,34,78,65,77,69,34,58,34,83,116,97,114,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,56,57,52,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,54,57,52,49,54,44,50,54,46,53,55,49,54,56,50,93,44,91,45,57,57,46,48,56,50,48,48,54,44,50,54,46,51,57,54,54,54,55,93,44,91,45,57,56,46,56,57,53,54,57,52,44,50,54,46,51,53,51,52,57,49,93,44,91,45,57,56,46,56,50,48,52,53,50,44,50,54,46,51,55,49,48,48,50,93,44,91,45,57,56,46,54,54,52,54,51,51,44,50,54,46,50,51,53,51,53,49,93,44,91,45,57,56,46,53,56,54,55,49,53,44,50,54,46,50,53,55,53,52,50,93,44,91,45,57,56,46,51,50,48,54,55,44,50,54,46,55,56,51,48,56,49,93,44,91,45,57,56,46,52,50,50,54,49,54,44,50,54,46,55,56,51,53,51,53,93,44,91,45,57,56,46,57,53,52,50,51,44,50,54,46,55,56,53,54,57,52,93,44,91,45,57,57,46,48,49,49,49,49,50,44,50,54,46,54,55,53,48,50,51,93,44,91,45,57,57,46,49,54,57,52,49,54,44,50,54,46,53,55,49,54,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,69,102,102,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,54,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,52,56,48,48,54,44,51,50,46,52,56,57,50,56,54,93,44,91,45,56,49,46,53,51,48,57,50,49,44,51,50,46,51,57,48,51,56,53,93,44,91,45,56,49,46,52,51,53,56,51,44,51,50,46,50,52,49,50,56,57,93,44,91,45,56,49,46,51,57,49,54,57,56,44,51,50,46,48,57,53,56,56,54,93,44,91,45,56,49,46,49,57,53,54,51,52,44,51,50,46,50,51,55,52,57,57,93,44,91,45,56,49,46,49,52,52,53,55,50,44,51,50,46,50,50,54,49,50,56,93,44,91,45,56,49,46,49,50,56,53,51,53,44,51,50,46,51,51,56,51,56,49,93,44,91,45,56,49,46,50,56,49,50,55,44,51,50,46,53,53,54,52,55,49,93,44,91,45,56,49,46,51,56,57,50,48,53,44,51,50,46,53,57,53,52,49,54,93,44,91,45,56,49,46,53,52,56,48,48,54,44,51,50,46,52,56,57,50,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,82,111,103,101,114,32,77,105,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,48,56,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,56,49,48,50,50,44,51,54,46,48,49,50,57,50,53,93,44,91,45,57,57,46,52,57,53,56,49,50,44,51,53,46,57,55,56,55,51,50,93,44,91,45,57,57,46,53,53,56,52,56,54,44,51,53,46,56,54,53,57,56,56,93,44,91,45,57,57,46,55,49,55,49,48,49,44,51,53,46,56,53,57,55,54,57,93,44,91,45,57,57,46,56,57,51,51,55,50,44,51,53,46,57,56,53,50,57,53,93,44,91,45,49,48,48,46,48,48,48,51,57,54,44,51,53,46,56,56,49,50,51,51,93,44,91,45,49,48,48,46,48,48,48,51,57,50,44,51,53,46,54,49,57,49,49,53,93,44,91,45,57,57,46,57,57,57,54,54,44,51,53,46,52,50,50,51,54,52,93,44,91,45,57,57,46,53,55,53,56,50,44,51,53,46,52,50,49,54,53,53,93,44,91,45,57,57,46,53,55,53,55,50,51,44,51,53,46,53,48,56,56,54,52,93,44,91,45,57,57,46,51,54,52,49,52,49,44,51,53,46,53,48,56,55,57,51,93,44,91,45,57,57,46,51,55,53,56,49,55,44,51,53,46,56,49,50,49,56,56,93,44,91,45,57,57,46,51,56,49,48,50,50,44,51,54,46,48,49,50,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,49,48,54,57,44,52,51,46,53,53,51,57,57,49,93,44,91,45,57,48,46,54,55,49,54,53,50,44,52,51,46,53,53,50,56,53,54,93,44,91,45,57,48,46,54,54,56,53,54,49,44,52,51,46,52,50,50,57,57,52,93,44,91,45,57,48,46,54,54,54,55,56,54,44,52,51,46,49,55,49,55,55,55,93,44,91,45,57,48,46,52,50,57,56,50,53,44,52,51,46,50,48,48,57,52,93,44,91,45,57,48,46,49,57,51,56,49,52,44,52,51,46,49,54,52,52,54,52,93,44,91,45,57,48,46,49,57,49,57,54,52,44,52,51,46,53,53,52,57,57,54,93,44,91,45,57,48,46,51,49,49,48,54,57,44,52,51,46,53,53,51,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,76,101,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,49,50,54,44,34,98,101,100,115,34,58,50,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,49,48,49,50,57,44,51,51,46,53,55,48,49,49,55,93,44,91,45,49,48,51,46,55,50,48,56,48,57,44,51,51,46,53,54,57,53,51,55,93,44,91,45,49,48,51,46,55,54,54,51,54,49,44,51,51,46,51,57,53,50,57,55,93,44,91,45,49,48,51,46,55,54,54,52,49,55,44,51,50,46,57,54,53,50,54,52,93,44,91,45,49,48,51,46,56,49,52,53,48,55,44,51,50,46,57,54,53,49,49,52,93,44,91,45,49,48,51,46,56,49,52,50,49,54,44,51,50,46,53,50,50,51,54,56,93,44,91,45,49,48,51,46,55,50,50,57,51,56,44,51,50,46,53,50,50,51,52,52,93,44,91,45,49,48,51,46,55,50,50,56,56,50,44,51,50,46,48,48,48,50,48,54,93,44,91,45,49,48,51,46,51,50,54,53,48,49,44,51,50,46,48,48,48,51,54,57,93,44,91,45,49,48,51,46,48,54,52,53,49,44,51,50,46,48,48,48,52,50,52,93,44,91,45,49,48,51,46,48,54,52,53,49,54,44,51,50,46,48,56,55,48,53,49,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,53,50,50,49,57,51,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,57,53,57,48,57,57,93,44,91,45,49,48,51,46,48,53,54,52,56,53,44,51,51,46,51,56,56,52,49,52,93,44,91,45,49,48,51,46,48,53,50,54,50,49,44,51,51,46,53,55,48,53,55,53,93,44,91,45,49,48,51,46,53,49,48,49,50,57,44,51,51,46,53,55,48,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,97,109,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,51,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,48,55,50,50,57,44,51,52,46,48,53,56,51,51,51,93,44,91,45,56,56,46,50,52,56,57,49,54,44,51,51,46,55,52,52,57,55,55,93,44,91,45,56,56,46,50,55,52,54,49,57,44,51,51,46,53,51,52,48,48,56,93,44,91,45,56,55,46,57,52,54,53,49,57,44,51,51,46,53,50,52,48,54,53,93,44,91,45,56,55,46,57,53,49,55,56,53,44,51,51,46,57,49,57,57,51,93,44,91,45,56,55,46,57,56,54,57,51,44,51,52,46,48,53,50,49,48,50,93,44,91,45,56,56,46,50,48,55,50,50,57,44,51,52,46,48,53,56,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,52,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,52,34,44,34,78,65,77,69,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,56,56,49,56,49,44,49,56,46,51,56,57,52,48,56,93,44,91,45,54,54,46,53,57,48,55,56,53,44,49,56,46,51,51,56,48,54,93,44,91,45,54,54,46,53,51,51,54,50,51,44,49,56,46,51,53,49,51,51,51,93,44,91,45,54,54,46,53,52,51,48,55,57,44,49,56,46,52,48,53,52,50,50,93,44,91,45,54,54,46,53,56,56,49,56,49,44,49,56,46,51,56,57,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,56,54,49,57,51,44,51,53,46,55,49,48,48,53,49,93,44,91,45,56,54,46,55,56,50,48,49,54,44,51,53,46,55,48,54,53,57,53,93,44,91,45,56,54,46,56,52,57,53,55,51,44,51,53,46,53,50,53,53,49,53,93,44,91,45,56,54,46,57,54,48,56,48,52,44,51,53,46,52,49,55,48,50,49,93,44,91,45,56,54,46,56,50,56,51,48,49,44,51,53,46,50,54,51,54,55,55,93,44,91,45,56,54,46,55,52,54,56,57,57,44,51,53,46,50,53,50,56,55,56,93,44,91,45,56,54,46,53,57,57,52,55,56,44,51,53,46,51,54,52,57,53,93,44,91,45,56,54,46,54,53,56,50,52,55,44,51,53,46,52,51,53,50,56,49,93,44,91,45,56,54,46,54,51,57,52,51,54,44,51,53,46,54,56,53,57,93,44,91,45,56,54,46,54,56,54,49,57,51,44,51,53,46,55,49,48,48,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,112,112,111,109,97,116,116,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,56,54,57,50,52,53,44,51,55,46,53,52,50,48,57,50,93,44,91,45,55,57,46,48,50,49,54,56,55,44,51,55,46,52,50,57,50,52,51,93,44,91,45,55,56,46,57,50,54,52,54,44,51,55,46,50,55,55,48,55,49,93,44,91,45,55,56,46,56,50,52,50,48,57,44,51,55,46,50,48,53,51,54,49,93,44,91,45,55,56,46,54,56,49,53,55,51,44,51,55,46,50,52,56,55,53,57,93,44,91,45,55,56,46,53,57,52,52,51,54,44,51,55,46,51,57,55,57,55,52,93,44,91,45,55,56,46,54,56,51,50,50,52,44,51,55,46,52,50,56,57,55,52,93,44,91,45,55,56,46,56,50,53,50,51,56,44,51,55,46,53,53,50,53,52,50,93,44,91,45,55,56,46,56,54,57,50,52,53,44,51,55,46,53,52,50,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,55,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,56,55,55,55,53,44,51,54,46,50,51,53,48,52,54,93,44,91,45,57,51,46,57,52,52,49,55,55,44,51,54,46,48,57,49,49,48,51,93,44,91,45,57,51,46,57,54,50,56,57,50,44,51,53,46,55,54,48,57,51,93,44,91,45,57,51,46,57,49,48,56,51,54,44,51,53,46,55,53,57,55,53,50,93,44,91,45,57,51,46,54,57,53,57,56,49,44,51,53,46,55,54,56,54,52,57,93,44,91,45,57,51,46,53,49,57,50,48,52,44,51,53,46,55,54,51,53,50,49,93,44,91,45,57,51,46,53,50,51,54,51,57,44,51,53,46,56,56,49,53,57,50,93,44,91,45,57,51,46,52,53,48,55,49,53,44,51,53,46,57,54,55,52,57,51,93,44,91,45,57,51,46,52,55,57,53,50,56,44,51,54,46,49,50,53,48,55,50,93,44,91,45,57,51,46,53,53,49,49,51,53,44,51,54,46,49,50,54,50,55,49,93,44,91,45,57,51,46,54,53,55,54,56,57,44,51,54,46,51,48,51,48,56,50,93,44,91,45,57,51,46,56,49,53,48,55,56,44,51,54,46,51,48,54,53,53,49,93,44,91,45,57,51,46,56,56,55,55,55,53,44,51,54,46,50,51,53,48,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,83,104,101,114,105,100,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,49,50,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,51,54,57,54,50,49,44,52,52,46,53,53,57,56,51,55,93,44,91,45,49,48,54,46,52,50,56,56,57,55,44,52,52,46,53,53,54,55,55,55,93,44,91,45,49,48,54,46,48,48,57,54,55,54,44,52,52,46,53,54,51,57,56,49,93,44,91,45,49,48,54,46,48,50,52,56,49,53,44,52,52,46,57,57,51,52,57,53,93,44,91,45,49,48,54,46,50,54,51,55,49,53,44,52,52,46,57,57,51,56,49,54,93,44,91,45,49,48,55,46,48,56,52,56,56,54,44,52,52,46,57,57,54,54,93,44,91,45,49,48,55,46,57,49,49,53,50,51,44,52,53,46,48,48,48,54,55,56,93,44,91,45,49,48,55,46,56,51,49,54,50,50,44,52,52,46,55,57,57,55,56,55,93,44,91,45,49,48,55,46,55,52,49,53,52,51,44,52,52,46,55,49,52,51,53,50,93,44,91,45,49,48,55,46,53,50,56,50,55,57,44,52,52,46,54,54,53,53,56,52,93,44,91,45,49,48,55,46,51,54,57,54,50,49,44,52,52,46,53,53,57,56,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,55,52,51,51,44,34,98,101,100,115,34,58,49,52,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,49,52,57,55,44,52,48,46,51,50,56,52,56,52,93,44,91,45,55,55,46,50,55,48,48,53,55,44,52,48,46,50,55,56,54,53,50,93,44,91,45,55,55,46,52,50,54,53,57,53,44,52,48,46,50,56,54,54,49,93,44,91,45,55,55,46,54,49,52,54,54,53,44,52,48,46,49,57,56,53,52,57,93,44,91,45,55,55,46,52,55,49,48,56,53,44,51,57,46,57,52,52,48,55,55,93,44,91,45,55,55,46,52,48,51,54,48,54,44,51,57,46,57,57,52,52,55,56,93,44,91,45,55,55,46,49,56,53,54,51,44,52,48,46,48,50,57,53,48,49,93,44,91,45,55,55,46,49,51,55,52,50,53,44,52,48,46,48,54,57,57,52,53,93,44,91,45,55,54,46,56,53,57,48,50,51,44,52,48,46,50,50,54,51,50,56,93,44,91,45,55,54,46,57,49,52,57,55,44,52,48,46,51,50,56,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,55,53,49,44,34,98,101,100,115,34,58,52,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,55,49,48,56,53,44,51,57,46,57,52,52,48,55,55,93,44,91,45,55,55,46,54,49,52,54,54,53,44,52,48,46,49,57,56,53,52,57,93,44,91,45,55,55,46,54,55,49,55,54,49,44,52,48,46,50,56,57,56,50,53,93,44,91,45,55,55,46,55,48,51,48,51,44,52,48,46,50,54,51,53,55,54,93,44,91,45,55,55,46,56,54,52,52,56,57,44,52,48,46,48,54,49,53,54,56,93,44,91,45,55,56,46,48,48,50,55,44,51,57,46,56,50,54,53,57,57,93,44,91,45,55,56,46,48,57,57,52,48,51,44,51,57,46,55,50,50,48,57,57,93,44,91,45,55,55,46,52,54,57,49,52,53,44,51,57,46,55,50,48,48,49,56,93,44,91,45,55,55,46,52,53,57,49,51,52,44,51,57,46,55,49,57,57,56,52,93,44,91,45,55,55,46,52,55,49,48,56,53,44,51,57,46,57,52,52,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,117,122,101,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,55,56,56,52,44,34,98,101,100,115,34,58,49,49,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,51,52,54,57,53,44,52,49,46,52,50,55,50,52,54,93,44,91,45,55,54,46,48,48,53,48,55,44,52,49,46,51,56,52,53,53,49,93,44,91,45,55,54,46,50,56,51,49,44,52,49,46,51,55,54,53,49,55,93,44,91,45,55,54,46,51,49,48,49,51,51,44,52,49,46,51,49,48,49,57,57,93,44,91,45,55,54,46,51,49,57,50,51,54,44,52,49,46,50,48,56,48,57,50,93,44,91,45,55,54,46,50,48,55,56,50,55,44,52,48,46,57,52,57,55,52,93,44,91,45,55,53,46,57,57,55,51,52,56,44,52,48,46,57,49,50,57,56,53,93,44,91,45,55,53,46,55,51,49,57,51,44,52,49,46,48,48,56,50,50,93,44,91,45,55,53,46,55,55,49,51,48,54,44,52,49,46,48,55,55,56,49,54,93,44,91,45,55,53,46,54,52,57,54,51,55,44,52,49,46,49,50,50,51,52,52,93,44,91,45,55,53,46,54,48,48,55,51,54,44,52,49,46,49,54,49,52,57,55,93,44,91,45,55,53,46,54,56,55,50,52,52,44,52,49,46,51,51,57,50,49,54,93,44,91,45,55,53,46,56,51,52,54,57,53,44,52,49,46,52,50,55,50,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,51,54,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,52,55,51,48,57,44,52,52,46,56,53,56,48,51,55,93,44,91,45,56,52,46,56,53,48,57,50,57,44,52,52,46,53,49,49,48,54,57,93,44,91,45,56,52,46,51,55,48,54,52,51,44,52,52,46,53,48,55,50,50,51,93,44,91,45,56,52,46,51,55,49,55,51,55,44,52,52,46,56,53,53,48,51,57,93,44,91,45,56,52,46,56,52,55,51,48,57,44,52,52,46,56,53,56,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,82,117,115,115,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,50,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,48,49,48,50,44,51,50,46,53,49,48,49,53,55,93,44,91,45,56,53,46,48,53,57,50,57,52,44,51,50,46,52,55,50,57,48,57,93,44,91,45,56,53,46,51,51,51,56,52,51,44,51,50,46,52,54,56,54,51,57,93,44,91,45,56,53,46,52,51,52,48,52,53,44,51,50,46,52,48,57,56,52,93,44,91,45,56,53,46,52,51,51,53,52,51,44,51,50,46,50,51,52,54,52,56,93,44,91,45,56,53,46,52,49,48,50,52,49,44,51,50,46,49,52,54,54,53,49,93,44,91,45,56,53,46,50,53,55,55,52,55,44,51,50,46,49,52,56,50,53,49,93,44,91,45,56,53,46,49,56,53,48,54,55,44,51,50,46,48,54,49,55,48,56,93,44,91,45,56,53,46,48,53,54,48,50,57,44,51,50,46,48,54,51,48,53,53,93,44,91,45,56,53,46,48,54,50,48,54,44,51,50,46,49,51,50,52,56,54,93,44,91,45,56,52,46,57,50,51,48,50,55,44,51,50,46,50,51,48,56,53,49,93,44,91,45,56,52,46,57,55,49,57,54,50,44,51,50,46,51,55,55,54,57,56,93,44,91,45,56,53,46,48,48,49,48,50,44,51,50,46,53,49,48,49,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,53,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,49,55,55,51,57,44,52,48,46,54,53,49,53,55,57,93,44,91,45,56,49,46,50,54,52,55,52,52,44,52,48,46,53,54,53,48,52,50,93,44,91,45,56,49,46,50,54,57,57,53,49,44,52,48,46,52,51,51,52,56,54,93,44,91,45,56,48,46,57,52,49,57,49,49,44,52,48,46,52,50,52,55,93,44,91,45,56,48,46,57,50,48,57,50,44,52,48,46,53,53,54,51,49,53,93,44,91,45,56,48,46,56,54,49,57,57,52,44,52,48,46,53,57,57,52,48,52,93,44,91,45,56,48,46,57,49,55,49,55,50,44,52,48,46,55,50,54,57,51,52,93,44,91,45,56,49,46,48,56,55,50,56,57,44,52,48,46,55,50,55,56,49,54,93,44,91,45,56,49,46,50,51,55,50,50,55,44,52,48,46,55,50,51,53,52,50,93,44,91,45,56,49,46,51,49,55,55,51,57,44,52,48,46,54,53,49,53,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,70,108,117,118,97,110,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,48,54,55,54,51,44,51,56,46,48,48,54,52,55,52,93,44,91,45,55,56,46,52,57,49,51,52,53,44,51,55,46,55,57,54,57,53,54,93,44,91,45,55,56,46,52,48,53,53,57,54,44,51,55,46,55,51,53,50,54,51,93,44,91,45,55,56,46,50,51,57,55,52,56,44,51,55,46,54,57,48,52,57,53,93,44,91,45,55,56,46,49,53,57,51,50,54,44,51,55,46,55,52,56,53,50,56,93,44,91,45,55,56,46,48,54,50,52,56,49,44,51,55,46,57,48,52,54,56,53,93,44,91,45,55,56,46,51,48,54,55,54,51,44,51,56,46,48,48,54,52,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,51,54,49,57,44,34,98,101,100,115,34,58,49,48,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,57,57,51,56,57,44,52,50,46,52,57,53,49,51,51,93,44,91,45,56,56,46,49,57,57,53,56,52,44,52,50,46,49,53,52,50,54,93,44,91,45,56,55,46,49,49,49,49,54,50,44,52,50,46,49,52,57,52,48,57,93,44,91,45,56,55,46,48,56,56,51,51,56,44,52,50,46,50,51,53,51,51,52,93,44,91,45,56,55,46,48,52,48,48,52,54,44,52,50,46,52,49,54,57,57,51,93,44,91,45,56,55,46,48,49,57,57,51,53,44,52,50,46,52,57,51,52,57,56,93,44,91,45,56,56,46,49,57,57,51,56,57,44,52,50,46,52,57,53,49,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,49,51,51,54,44,51,52,46,50,55,51,53,51,93,44,91,45,56,51,46,50,57,55,51,49,55,44,51,52,46,50,54,52,53,56,55,93,44,91,45,56,51,46,51,53,53,50,53,49,44,51,52,46,50,50,51,55,57,52,93,44,91,45,56,51,46,52,48,50,52,50,56,44,51,52,46,49,57,55,52,57,57,93,44,91,45,56,51,46,51,54,48,48,50,56,44,51,52,46,48,52,48,53,55,50,93,44,91,45,56,51,46,50,53,56,52,49,51,44,51,51,46,57,57,57,48,57,56,93,44,91,45,56,51,46,49,50,54,50,50,57,44,51,52,46,48,52,54,50,49,51,93,44,91,45,56,50,46,57,55,54,50,57,52,44,51,52,46,48,52,51,50,49,57,93,44,91,45,56,51,46,48,55,56,48,48,52,44,51,52,46,50,50,51,54,48,54,93,44,91,45,56,51,46,49,49,51,51,54,44,51,52,46,50,55,51,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,56,54,50,56,53,44,51,52,46,49,53,53,56,55,55,93,44,91,45,57,50,46,56,57,51,53,51,52,44,51,51,46,56,48,57,57,52,51,93,44,91,45,57,50,46,53,56,51,48,53,52,44,51,51,46,56,48,50,49,57,56,93,44,91,45,57,50,46,51,51,52,50,52,57,44,51,51,46,55,57,53,48,54,53,93,44,91,45,57,50,46,52,53,55,48,55,57,44,51,51,46,57,55,50,53,57,55,93,44,91,45,57,50,46,52,55,49,54,54,55,44,51,52,46,48,53,55,48,53,52,93,44,91,45,57,50,46,51,51,54,55,54,53,44,51,52,46,48,53,57,54,51,51,93,44,91,45,57,50,46,52,57,51,54,55,50,44,51,52,46,49,52,52,50,51,52,93,44,91,45,57,50,46,54,55,56,51,56,51,44,51,52,46,49,52,57,54,50,50,93,44,91,45,57,50,46,56,56,54,50,56,53,44,51,52,46,49,53,53,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,56,53,55,55,55,51,44,52,49,46,48,48,50,54,54,51,93,44,91,45,49,48,54,46,56,54,57,56,57,49,44,52,48,46,57,53,54,55,50,93,44,91,45,49,48,54,46,54,51,54,57,50,50,44,52,48,46,55,56,57,52,56,57,93,44,91,45,49,48,54,46,55,48,54,49,52,57,44,52,48,46,54,49,54,53,57,55,93,44,91,45,49,48,54,46,54,53,50,49,49,50,44,52,48,46,52,52,53,50,51,49,93,44,91,45,49,48,54,46,54,49,50,51,50,49,44,52,48,46,51,55,57,51,56,51,93,44,91,45,49,48,54,46,50,51,48,55,52,54,44,52,48,46,51,50,52,52,56,54,93,44,91,45,49,48,53,46,57,48,53,57,57,44,52,48,46,51,57,57,54,53,50,93,44,91,45,49,48,53,46,56,53,52,57,50,54,44,52,48,46,52,56,54,50,53,50,93,44,91,45,49,48,54,46,48,53,51,55,55,57,44,52,48,46,56,49,50,54,54,50,93,44,91,45,49,48,54,46,49,56,53,51,48,55,44,52,48,46,57,51,51,57,55,51,93,44,91,45,49,48,54,46,49,57,48,53,53,52,44,52,48,46,57,57,55,53,55,56,93,44,91,45,49,48,54,46,51,50,49,49,54,53,44,52,48,46,57,57,57,49,50,51,93,44,91,45,49,48,54,46,56,53,55,55,55,51,44,52,49,46,48,48,50,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,75,105,116,32,67,97,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,51,53,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,57,56,48,54,44,51,57,46,53,55,52,48,53,56,93,44,91,45,49,48,50,46,56,48,50,57,51,50,44,51,57,46,53,54,55,56,52,49,93,44,91,45,49,48,51,46,49,53,52,51,55,54,44,51,57,46,53,54,53,54,53,52,93,44,91,45,49,48,51,46,49,54,51,48,50,53,44,51,57,46,48,51,55,54,49,93,44,91,45,49,48,50,46,48,52,54,53,55,49,44,51,57,46,48,52,55,48,51,56,93,44,91,45,49,48,50,46,48,52,55,49,54,49,44,51,57,46,49,51,51,49,52,55,93,44,91,45,49,48,50,46,48,52,57,55,54,52,44,51,57,46,53,54,56,49,56,93,44,91,45,49,48,50,46,48,52,57,56,48,54,44,51,57,46,53,55,52,48,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,79,119,121,104,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,50,54,53,51,56,44,52,51,46,54,56,48,56,48,50,93,44,91,45,49,49,55,46,48,50,54,56,55,52,44,52,51,46,49,50,55,48,48,53,93,44,91,45,49,49,55,46,48,50,54,50,44,52,50,46,48,48,48,49,57,53,93,44,91,45,49,49,55,46,48,49,56,50,48,52,44,52,49,46,57,57,57,55,49,53,93,44,91,45,49,49,54,46,48,52,53,51,55,51,44,52,49,46,57,57,54,51,51,49,93,44,91,45,49,49,53,46,48,51,56,49,53,55,44,52,49,46,57,57,54,50,55,57,93,44,91,45,49,49,53,46,48,51,55,54,57,55,44,52,50,46,55,54,56,52,49,52,93,44,91,45,49,49,53,46,52,53,52,50,50,52,44,52,50,46,55,54,55,57,51,54,93,44,91,45,49,49,53,46,52,52,49,53,50,50,44,52,50,46,57,51,49,49,50,55,93,44,91,45,49,49,53,46,57,54,48,57,57,57,44,52,50,46,57,56,57,48,56,52,93,44,91,45,49,49,54,46,50,48,49,55,52,44,52,51,46,48,52,56,57,51,93,44,91,45,49,49,54,46,50,54,54,50,48,55,44,52,51,46,49,49,50,50,54,57,93,44,91,45,49,49,54,46,53,49,49,56,57,55,44,52,51,46,50,57,48,53,50,93,44,91,45,49,49,54,46,55,56,49,51,51,54,44,52,51,46,52,55,56,54,51,51,93,44,91,45,49,49,54,46,56,52,52,57,55,56,44,52,51,46,53,57,52,52,93,44,91,45,49,49,55,46,48,50,54,53,51,56,44,52,51,46,54,56,48,56,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,87,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,50,55,52,44,34,98,101,100,115,34,58,54,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,54,50,53,51,44,52,52,46,54,56,53,49,53,52,93,44,91,45,57,48,46,51,49,54,48,53,53,44,52,52,46,52,50,52,53,48,50,93,44,91,45,57,48,46,51,49,50,54,56,44,52,52,46,50,52,56,55,53,93,44,91,45,56,57,46,57,48,50,55,56,51,44,52,52,46,50,52,57,52,55,51,93,44,91,45,56,57,46,55,50,52,55,52,54,44,52,52,46,50,52,55,54,55,56,93,44,91,45,56,57,46,55,50,54,55,50,53,44,52,52,46,53,49,49,49,57,50,93,44,91,45,56,57,46,56,52,52,53,52,54,44,52,52,46,53,49,49,53,48,51,93,44,91,45,56,57,46,56,52,52,57,51,49,44,52,52,46,54,56,52,57,52,53,93,44,91,45,57,48,46,51,49,54,50,53,51,44,52,52,46,54,56,53,49,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,104,97,117,116,97,117,113,117,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,54,53,54,44,34,98,101,100,115,34,58,51,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,54,48,55,55,55,44,52,50,46,53,51,55,56,53,51,93,44,91,45,55,57,46,51,49,50,49,51,54,44,52,50,46,54,56,54,56,48,53,93,44,91,45,55,57,46,55,54,50,52,49,56,44,52,50,46,53,49,54,48,55,50,93,44,91,45,55,57,46,55,54,49,51,49,51,44,52,49,46,57,57,56,56,48,56,93,44,91,45,55,57,46,54,49,48,56,51,57,44,52,49,46,57,57,57,48,48,54,93,44,91,45,55,57,46,48,54,49,50,54,53,44,52,49,46,57,57,57,50,53,57,93,44,91,45,55,57,46,48,54,48,55,55,55,44,52,50,46,53,51,55,56,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,67,111,98,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,53,48,53,55,44,34,98,101,100,115,34,58,49,51,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,51,55,56,51,54,44,51,52,46,48,55,57,51,57,57,93,44,91,45,56,52,46,55,50,52,49,51,57,44,51,51,46,56,48,54,49,55,93,44,91,45,56,52,46,53,55,56,49,51,50,44,51,51,46,55,52,51,53,48,55,93,44,91,45,56,52,46,52,55,49,51,51,44,51,51,46,56,50,53,57,48,53,93,44,91,45,56,52,46,51,56,51,48,50,55,44,51,51,46,57,54,51,56,93,44,91,45,56,52,46,52,49,56,57,50,55,44,51,52,46,48,55,51,50,57,56,93,44,91,45,56,52,46,54,53,57,50,52,49,44,51,52,46,48,55,56,50,52,93,44,91,45,56,52,46,55,51,55,56,51,54,44,51,52,46,48,55,57,51,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,56,57,44,34,98,101,100,115,34,58,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,56,51,56,52,51,44,51,54,46,53,48,56,51,49,52,93,44,91,45,56,50,46,48,52,52,49,52,53,44,51,54,46,51,54,51,55,49,54,93,44,91,45,56,49,46,57,51,51,48,54,53,44,51,54,46,50,54,52,56,55,51,93,44,91,45,56,49,46,57,49,56,49,49,57,44,51,54,46,50,56,55,49,50,57,93,44,91,45,56,49,46,55,50,56,55,56,49,44,51,54,46,51,57,49,51,48,57,93,44,91,45,56,49,46,54,55,55,52,57,44,51,54,46,53,56,56,49,51,55,93,44,91,45,56,49,46,54,52,54,57,44,51,54,46,54,49,49,57,49,56,93,44,91,45,56,49,46,56,50,54,55,52,50,44,51,54,46,54,49,52,50,49,53,93,44,91,45,56,49,46,57,56,51,56,52,51,44,51,54,46,53,48,56,51,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,101,108,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,55,50,44,34,98,101,100,115,34,58,49,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,50,53,57,50,52,44,52,48,46,49,55,48,48,55,53,93,44,91,45,56,49,46,50,51,52,48,53,51,44,51,57,46,57,53,49,50,55,93,44,91,45,56,49,46,50,51,55,51,49,54,44,51,57,46,56,54,55,56,50,56,93,44,91,45,56,48,46,56,50,49,50,55,57,44,51,57,46,56,52,57,57,56,50,93,44,91,45,56,48,46,55,53,54,49,49,51,44,51,57,46,57,49,51,52,48,50,93,44,91,45,56,48,46,55,51,51,56,48,51,44,52,48,46,48,51,51,52,48,57,93,44,91,45,56,48,46,55,48,50,55,53,44,52,48,46,49,53,55,50,52,57,93,44,91,45,56,48,46,56,56,50,56,57,50,44,52,48,46,49,53,57,52,57,53,93,44,91,45,56,49,46,50,50,53,57,50,52,44,52,48,46,49,55,48,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,87,105,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,48,50,53,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,55,56,52,44,51,54,46,56,57,50,57,53,51,93,44,91,45,56,50,46,55,55,49,53,57,53,44,51,54,46,56,48,48,48,51,49,93,44,91,45,56,50,46,54,49,55,55,52,44,51,54,46,56,56,48,55,55,51,93,44,91,45,56,50,46,52,48,54,54,51,51,44,51,54,46,56,55,54,51,53,54,93,44,91,45,56,50,46,51,50,55,56,51,44,51,54,46,57,55,48,57,56,50,93,44,91,45,56,50,46,52,54,55,51,52,53,44,51,55,46,48,50,50,49,51,54,93,44,91,45,56,50,46,53,53,51,56,55,52,44,51,55,46,50,48,50,56,51,51,93,44,91,45,56,50,46,53,54,53,51,55,57,44,51,55,46,49,57,54,48,57,57,93,44,91,45,56,50,46,55,49,53,49,52,57,44,51,55,46,49,50,49,56,52,56,93,44,91,45,56,50,46,55,52,50,55,53,57,44,51,55,46,48,52,50,55,57,54,93,44,91,45,56,50,46,56,54,57,49,57,50,44,51,54,46,57,55,52,49,56,54,93,44,91,45,56,50,46,56,55,56,52,44,51,54,46,56,57,50,57,53,51,93,93,44,91,91,45,56,50,46,54,54,51,54,50,53,44,51,54,46,57,50,48,57,53,57,93,44,91,45,56,50,46,54,51,51,56,51,49,44,51,54,46,57,53,50,50,55,54,93,44,91,45,56,50,46,53,57,49,49,52,55,44,51,54,46,57,51,53,51,49,51,93,44,91,45,56,50,46,54,54,51,54,50,53,44,51,54,46,57,50,48,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,49,55,55,54,54,44,51,55,46,48,57,53,54,55,55,93,44,91,45,57,49,46,50,49,55,49,53,44,51,55,46,48,56,54,49,57,55,93,44,91,45,57,49,46,50,50,50,56,51,44,51,54,46,56,56,51,56,53,55,93,44,91,45,57,49,46,49,49,53,57,50,54,44,51,54,46,56,50,51,54,55,50,93,44,91,45,57,48,46,54,54,50,54,49,55,44,51,54,46,56,49,49,52,53,51,93,44,91,45,57,48,46,54,55,56,53,54,50,44,51,54,46,57,50,54,52,57,93,44,91,45,57,48,46,55,55,57,53,53,51,44,51,55,46,48,53,48,51,50,52,93,44,91,45,57,48,46,57,54,52,52,54,54,44,51,55,46,48,53,51,53,56,52,93,44,91,45,57,49,46,48,49,55,55,54,54,44,51,55,46,48,57,53,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,114,121,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,53,57,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,57,49,53,55,56,44,51,52,46,49,53,54,56,48,53,93,44,91,45,57,54,46,52,48,55,53,49,55,44,51,52,46,49,53,55,51,49,55,93,44,91,45,57,54,46,53,56,53,51,53,53,44,51,52,46,49,49,52,52,53,57,93,44,91,45,57,54,46,54,49,57,57,51,57,44,51,51,46,57,57,57,52,52,57,93,44,91,45,57,54,46,53,56,56,53,48,50,44,51,51,46,56,57,52,57,56,51,93,44,91,45,57,54,46,53,48,48,57,56,52,44,51,51,46,55,55,50,56,48,49,93,44,91,45,57,54,46,51,55,57,52,53,50,44,51,51,46,55,50,53,55,54,52,93,44,91,45,57,54,46,50,57,48,51,53,57,44,51,51,46,55,55,48,56,51,49,93,44,91,45,57,54,46,49,55,57,56,52,54,44,51,51,46,55,53,57,54,49,56,93,44,91,45,57,54,46,49,52,57,50,50,55,44,51,51,46,56,51,55,48,57,49,93,44,91,45,57,53,46,57,52,54,48,51,44,51,51,46,56,53,57,51,51,56,93,44,91,45,57,53,46,56,52,54,53,51,54,44,51,51,46,56,51,57,56,53,53,93,44,91,45,57,53,46,55,54,49,53,50,44,51,51,46,56,55,51,49,49,56,93,44,91,45,57,53,46,57,51,55,57,56,57,44,51,51,46,57,52,56,50,49,57,93,44,91,45,57,53,46,57,51,56,49,53,44,51,52,46,49,50,53,49,93,44,91,45,57,53,46,57,57,49,53,55,56,44,51,52,46,49,53,54,56,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,50,53,55,50,51,44,52,48,46,54,57,56,53,53,53,93,44,91,45,57,56,46,50,55,56,49,48,51,44,52,48,46,54,57,56,50,57,49,93,44,91,45,57,56,46,50,55,56,48,57,44,52,48,46,51,53,48,51,52,55,93,44,91,45,57,56,46,50,55,51,53,55,49,44,52,48,46,51,53,48,51,53,57,93,44,91,45,57,55,46,56,50,52,49,49,52,44,52,48,46,51,53,48,53,52,49,93,44,91,45,57,55,46,56,50,52,55,56,44,52,48,46,54,57,56,53,51,55,93,44,91,45,57,55,46,56,50,53,55,50,51,44,52,48,46,54,57,56,53,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,54,55,49,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,50,50,55,51,51,54,44,51,56,46,54,48,52,53,55,93,44,91,45,55,55,46,50,57,53,52,48,54,44,51,56,46,53,48,57,50,51,57,93,44,91,45,55,55,46,50,56,55,48,57,55,44,51,56,46,51,52,56,56,93,44,91,45,55,55,46,48,49,56,52,57,56,44,51,56,46,51,56,49,57,52,49,93,44,91,45,55,54,46,57,57,55,54,55,44,51,56,46,50,55,56,48,52,54,93,44,91,45,55,54,46,56,54,56,56,53,57,44,51,56,46,49,55,49,51,55,50,93,44,91,45,55,54,46,56,50,49,50,53,54,44,51,56,46,50,54,56,55,53,56,93,44,91,45,55,54,46,56,55,49,52,54,44,51,56,46,51,56,57,57,51,55,93,44,91,45,55,54,46,55,55,52,57,53,53,44,51,56,46,53,48,56,57,93,44,91,45,55,54,46,54,55,52,49,49,56,44,51,56,46,52,57,57,54,50,50,93,44,91,45,55,54,46,54,55,53,52,53,55,44,51,56,46,53,51,53,56,55,54,93,44,91,45,55,54,46,55,52,55,53,55,44,51,56,46,54,49,55,51,51,53,93,44,91,45,55,55,46,48,56,54,51,57,49,44,51,56,46,55,48,54,50,50,55,93,44,91,45,55,55,46,50,50,55,51,51,54,44,51,56,46,54,48,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,101,114,114,111,32,71,111,114,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,57,56,52,44,34,98,101,100,115,34,58,51,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,52,49,52,51,44,52,51,46,50,53,53,53,51,56,93,44,91,45,57,51,46,52,57,55,54,51,53,44,52,51,46,50,53,53,52,54,56,93,44,91,45,57,51,46,52,57,56,54,49,55,44,52,50,46,57,48,56,53,49,50,93,44,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,44,91,45,57,51,46,48,50,52,48,57,50,44,52,51,46,50,49,50,56,49,50,93,44,91,45,57,51,46,48,50,52,49,52,51,44,52,51,46,50,53,53,53,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,48,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,50,56,56,48,54,44,52,50,46,50,48,57,51,57,54,93,44,91,45,57,52,46,54,50,56,55,50,52,44,52,49,46,56,54,50,55,54,51,93,44,91,45,57,52,46,50,56,48,51,52,44,52,49,46,56,54,50,57,57,57,93,44,91,45,57,52,46,49,54,52,49,51,56,44,52,49,46,56,54,51,50,52,52,93,44,91,45,57,52,46,49,54,52,55,48,52,44,52,50,46,50,48,57,57,50,93,44,91,45,57,52,46,51,57,55,53,50,54,44,52,50,46,50,48,57,49,54,49,93,44,91,45,57,52,46,54,50,56,56,48,54,44,52,50,46,50,48,57,51,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,53,34,44,34,78,65,77,69,34,58,34,82,111,119,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,57,57,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,51,53,49,57,53,44,51,56,46,49,56,55,53,50,53,93,44,91,45,56,51,46,52,57,56,56,52,54,44,51,56,46,48,53,48,54,50,93,44,91,45,56,51,46,52,51,51,57,52,50,44,51,56,46,48,51,51,57,55,52,93,44,91,45,56,51,46,50,54,51,50,56,57,44,51,56,46,49,49,53,51,56,54,93,44,91,45,56,51,46,50,52,52,51,48,54,44,51,56,46,49,57,50,51,56,93,44,91,45,56,51,46,51,52,49,51,52,55,44,51,56,46,51,49,57,53,50,49,93,44,91,45,56,51,46,52,53,50,56,52,56,44,51,56,46,51,56,49,55,57,57,93,44,91,45,56,51,46,53,48,55,57,53,51,44,51,56,46,50,55,51,49,53,53,93,44,91,45,56,51,46,54,51,53,49,57,53,44,51,56,46,49,56,55,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,51,48,53,54,54,53,44,51,56,46,53,49,48,49,54,57,93,44,91,45,49,49,49,46,55,54,54,51,57,51,44,51,56,46,53,48,50,50,52,51,93,44,91,45,49,49,49,46,56,52,56,55,54,49,44,51,56,46,52,50,52,57,51,51,93,44,91,45,49,49,49,46,56,52,51,50,49,53,44,51,56,46,49,53,49,50,56,93,44,91,45,49,49,48,46,54,56,55,52,48,54,44,51,56,46,49,53,49,51,56,53,93,44,91,45,49,48,57,46,57,50,55,57,57,53,44,51,56,46,49,53,49,56,56,52,93,44,91,45,49,48,57,46,57,48,57,55,54,44,51,56,46,50,55,49,50,51,93,44,91,45,49,49,48,46,48,51,49,57,55,51,44,51,56,46,51,56,52,57,53,55,93,44,91,45,49,49,48,46,48,50,53,52,48,50,44,51,56,46,52,57,57,57,56,49,93,44,91,45,49,49,49,46,51,48,53,55,48,49,44,51,56,46,52,57,57,57,57,56,93,44,91,45,49,49,49,46,51,48,53,54,54,53,44,51,56,46,53,49,48,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,97,112,101,32,71,105,114,97,114,100,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,51,50,52,44,34,98,101,100,115,34,58,54,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,54,49,49,50,51,44,51,55,46,53,57,57,50,56,54,93,44,91,45,56,57,46,56,54,54,54,50,55,44,51,55,46,49,50,54,50,50,55,93,44,91,45,56,57,46,55,54,53,50,49,49,44,51,55,46,49,50,54,48,54,54,93,44,91,45,56,57,46,54,50,48,50,53,54,44,51,55,46,50,51,51,48,48,56,93,44,91,45,56,57,46,52,56,56,55,50,44,51,55,46,50,53,49,52,53,55,93,44,91,45,56,57,46,52,56,54,54,56,57,44,51,55,46,51,51,52,53,53,52,93,44,91,45,56,57,46,52,50,48,57,51,57,44,51,55,46,51,57,51,57,53,50,93,44,91,45,56,57,46,53,50,49,56,53,53,44,51,55,46,53,54,54,50,49,52,93,44,91,45,56,57,46,54,48,56,57,51,52,44,51,55,46,53,57,55,52,50,55,93,44,91,45,56,57,46,56,54,49,49,50,51,44,51,55,46,53,57,57,50,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,87,97,108,108,97,32,87,97,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,50,51,54,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,50,50,56,54,51,53,44,52,54,46,53,57,51,51,54,50,93,44,91,45,49,49,56,46,52,55,53,57,51,50,44,52,54,46,53,57,53,49,52,50,93,44,91,45,49,49,56,46,54,49,53,53,57,50,44,52,54,46,53,48,52,53,52,51,93,44,91,45,49,49,56,46,54,51,51,56,50,54,44,52,54,46,52,49,52,48,50,50,93,44,91,45,49,49,56,46,55,55,55,50,50,56,44,52,54,46,50,57,48,49,55,55,93,44,91,45,49,49,57,46,48,52,49,52,57,56,44,52,54,46,49,57,50,54,54,55,93,44,91,45,49,49,56,46,57,55,52,54,54,52,44,52,54,46,49,51,57,53,50,51,93,44,91,45,49,49,56,46,57,56,55,50,53,56,44,52,53,46,57,57,57,56,53,53,93,44,91,45,49,49,55,46,57,57,54,57,55,44,52,54,46,48,48,48,53,54,93,44,91,45,49,49,55,46,57,57,49,52,56,49,44,52,54,46,50,48,55,55,48,50,93,44,91,45,49,49,56,46,49,49,54,54,50,52,44,52,54,46,50,48,56,48,53,93,44,91,45,49,49,56,46,50,52,49,56,55,50,44,52,54,46,50,57,53,48,54,52,93,44,91,45,49,49,56,46,50,50,56,54,51,53,44,52,54,46,53,57,51,51,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,49,57,56,48,57,44,51,54,46,56,54,57,54,49,55,93,44,91,45,56,57,46,51,50,55,53,56,56,44,51,54,46,54,51,50,50,55,54,93,44,91,45,56,57,46,50,50,55,48,52,54,44,51,54,46,53,54,57,53,51,55,93,44,91,45,56,57,46,49,55,52,55,50,55,44,51,54,46,54,53,48,52,55,53,93,44,91,45,56,57,46,49,50,51,53,51,49,44,51,54,46,55,56,53,50,49,55,93,44,91,45,56,57,46,49,48,48,56,54,52,44,51,54,46,57,52,52,48,49,54,93,44,91,45,56,57,46,49,51,50,57,49,53,44,51,54,46,57,56,50,48,53,55,93,44,91,45,56,57,46,50,53,57,57,51,53,44,51,55,46,48,54,52,48,55,93,44,91,45,56,57,46,51,49,50,55,48,52,44,51,55,46,48,48,56,57,55,49,93,44,91,45,56,57,46,53,49,57,56,48,57,44,51,54,46,56,54,57,54,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,101,118,101,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,51,54,55,54,53,44,51,52,46,48,53,57,54,51,51,93,44,91,45,57,50,46,52,55,49,54,54,55,44,51,52,46,48,53,55,48,53,52,93,44,91,45,57,50,46,52,53,55,48,55,57,44,51,51,46,57,55,50,53,57,55,93,44,91,45,57,50,46,51,51,52,50,52,57,44,51,51,46,55,57,53,48,54,53,93,44,91,45,57,50,46,51,51,48,56,51,57,44,51,51,46,55,48,55,56,48,54,93,44,91,45,57,49,46,57,55,53,56,52,52,44,51,51,46,55,48,52,52,49,52,93,44,91,45,57,49,46,57,55,53,57,55,52,44,51,51,46,55,57,49,55,56,55,93,44,91,45,57,49,46,57,53,51,55,57,57,44,51,52,46,48,54,52,49,52,49,93,44,91,45,57,50,46,50,51,51,51,55,54,44,51,52,46,48,54,50,51,49,50,93,44,91,45,57,50,46,51,51,54,55,54,53,44,51,52,46,48,53,57,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,54,53,53,50,44,34,98,101,100,115,34,58,56,49,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,50,57,57,56,55,44,51,50,46,53,52,53,50,56,50,93,44,91,45,57,54,46,53,49,56,57,55,44,51,50,46,56,49,51,54,49,54,93,44,91,45,57,54,46,53,49,54,56,54,54,44,51,50,46,57,56,50,51,48,56,93,44,91,45,57,54,46,56,52,51,57,55,57,44,51,50,46,57,56,55,53,53,52,93,44,91,45,57,55,46,48,51,50,50,56,55,44,51,50,46,57,56,57,51,50,52,93,44,91,45,57,55,46,48,51,56,51,56,53,44,51,50,46,53,52,56,54,54,50,93,44,91,45,57,54,46,53,50,57,57,56,55,44,51,50,46,53,52,53,50,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,97,106,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,51,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,48,57,48,52,52,44,49,56,46,48,53,54,48,56,53,93,44,91,45,54,55,46,49,48,56,54,51,53,44,49,55,46,56,57,53,52,48,55,93,44,91,45,54,54,46,57,57,57,54,49,57,44,49,55,46,56,56,51,57,93,44,91,45,54,54,46,57,53,56,55,52,56,44,49,56,46,48,51,50,52,55,55,93,44,91,45,54,54,46,57,56,51,51,51,55,44,49,56,46,48,53,50,53,49,56,93,44,91,45,54,55,46,49,48,57,48,52,52,44,49,56,46,48,53,54,48,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,55,48,52,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,57,52,48,56,52,44,52,49,46,53,50,54,52,51,55,93,44,91,45,56,53,46,49,57,50,48,57,52,44,52,49,46,50,54,52,50,48,57,93,44,91,45,56,52,46,56,48,51,53,56,57,44,52,49,46,50,55,49,50,55,51,93,44,91,45,56,52,46,56,48,52,48,54,51,44,52,49,46,52,50,54,48,53,49,93,44,91,45,56,52,46,56,48,52,54,56,55,44,52,49,46,53,51,48,49,51,52,93,44,91,45,56,53,46,49,57,52,48,56,52,44,52,49,46,53,50,54,52,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,79,117,97,99,104,105,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,48,55,53,44,34,98,101,100,115,34,58,49,48,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,54,53,49,55,57,44,51,50,46,55,50,51,48,48,51,93,44,91,45,57,50,46,50,55,50,51,49,51,44,51,50,46,53,56,48,57,55,53,93,44,91,45,57,50,46,52,49,53,48,55,49,44,51,50,46,53,56,50,56,52,53,93,44,91,45,57,50,46,52,49,53,51,53,44,51,50,46,52,57,53,52,56,54,93,44,91,45,57,50,46,52,49,53,52,49,56,44,51,50,46,52,48,55,56,49,50,93,44,91,45,57,50,46,51,49,49,56,53,49,44,51,50,46,50,55,55,52,52,49,93,44,91,45,57,50,46,48,51,52,51,57,55,44,51,50,46,50,55,55,48,54,56,93,44,91,45,57,50,46,48,48,52,51,52,44,51,50,46,51,56,48,52,57,57,93,44,91,45,57,49,46,57,49,51,48,53,55,44,51,50,46,53,48,53,57,48,50,93,44,91,45,57,49,46,57,55,53,48,50,54,44,51,50,46,55,49,49,52,50,56,93,44,91,45,57,50,46,48,54,53,49,55,57,44,51,50,46,55,50,51,48,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,83,116,46,32,74,111,104,110,32,116,104,101,32,66,97,112,116,105,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,52,52,54,44,34,98,101,100,115,34,58,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,52,49,57,57,56,44,51,48,46,49,54,54,52,51,93,44,91,45,57,48,46,54,53,54,51,49,50,44,50,57,46,56,56,57,50,52,54,93,44,91,45,57,48,46,53,50,57,54,48,49,44,50,57,46,56,56,52,57,57,55,93,44,91,45,57,48,46,53,51,56,49,51,50,44,51,48,46,48,49,54,56,56,52,93,44,91,45,57,48,46,52,53,48,50,49,56,44,51,48,46,48,51,51,49,48,54,93,44,91,45,57,48,46,51,50,54,54,51,55,44,51,48,46,49,53,48,49,56,56,93,44,91,45,57,48,46,50,53,57,56,56,57,44,51,48,46,49,54,51,52,49,93,44,91,45,57,48,46,49,53,54,50,53,54,44,51,48,46,49,56,57,54,49,51,93,44,91,45,57,48,46,49,54,48,54,51,54,44,51,48,46,50,51,52,51,51,55,93,44,91,45,57,48,46,51,48,48,57,50,51,44,51,48,46,50,57,52,54,56,93,44,91,45,57,48,46,52,56,53,56,50,54,44,51,48,46,50,55,54,57,57,50,93,44,91,45,57,48,46,53,53,52,49,52,55,44,51,48,46,49,57,53,54,50,56,93,44,91,45,57,48,46,54,51,50,56,49,49,44,51,48,46,50,50,49,52,48,57,93,44,91,45,57,48,46,54,52,49,57,57,56,44,51,48,46,49,54,54,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,83,116,46,32,72,101,108,101,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,49,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,56,50,53,56,50,57,44,51,48,46,57,57,57,51,54,49,93,44,91,45,57,48,46,56,54,49,48,49,57,44,51,48,46,57,51,53,51,55,51,93,44,91,45,57,48,46,56,52,57,48,52,49,44,51,48,46,55,49,57,51,49,49,93,44,91,45,57,48,46,57,49,48,55,48,49,44,51,48,46,54,52,57,51,56,53,93,44,91,45,57,48,46,53,54,55,49,54,53,44,51,48,46,54,53,48,48,50,51,93,44,91,45,57,48,46,53,54,55,49,57,53,44,51,48,46,57,57,57,55,51,51,93,44,91,45,57,48,46,56,50,53,56,50,57,44,51,48,46,57,57,57,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,83,99,104,117,121,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,49,52,53,57,54,44,52,48,46,53,56,57,52,50,55,93,44,91,45,57,50,46,54,56,52,49,54,55,44,52,48,46,51,52,51,52,54,54,93,44,91,45,57,50,46,51,52,57,57,55,53,44,52,48,46,51,52,54,53,48,53,93,44,91,45,57,50,46,51,53,48,56,48,55,44,52,48,46,53,57,55,50,55,53,93,44,91,45,57,50,46,54,51,55,56,57,56,44,52,48,46,53,57,48,56,53,51,93,44,91,45,57,50,46,55,49,52,53,57,54,44,52,48,46,53,56,57,52,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,52,50,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,53,54,50,57,50,44,51,52,46,52,54,51,50,49,52,93,44,91,45,56,56,46,49,55,51,54,51,50,44,51,52,46,51,50,49,48,53,52,93,44,91,45,56,55,46,54,51,52,55,50,53,44,51,52,46,51,48,54,57,57,55,93,44,91,45,56,55,46,53,50,57,55,50,50,44,51,52,46,51,48,52,53,57,56,93,44,91,45,56,55,46,53,50,57,54,54,55,44,51,52,46,53,54,55,48,56,49,93,44,91,45,56,56,46,49,51,57,57,56,56,44,51,52,46,53,56,49,55,48,51,93,44,91,45,56,56,46,49,53,54,50,57,50,44,51,52,46,52,54,51,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,49,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,50,51,53,49,57,44,51,56,46,55,54,49,56,55,93,44,91,45,56,53,46,50,48,49,52,55,52,44,51,56,46,54,57,49,51,49,56,93,44,91,45,56,53,46,51,51,51,48,57,57,44,51,56,46,55,51,54,50,50,56,93,44,91,45,56,53,46,49,54,56,50,55,44,51,56,46,53,56,53,52,52,56,93,44,91,45,56,53,46,48,55,52,53,56,51,44,51,56,46,53,57,54,56,51,56,93,44,91,45,56,52,46,57,51,52,53,51,54,44,51,56,46,54,54,50,49,51,93,44,91,45,56,53,46,48,50,51,53,49,57,44,51,56,46,55,54,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,101,97,114,32,67,114,101,101,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,54,57,48,51,52,56,44,51,57,46,56,53,49,57,57,54,93,44,91,45,49,48,53,46,57,50,52,54,49,56,44,51,57,46,54,57,56,57,55,50,93,44,91,45,49,48,53,46,55,56,50,54,55,52,44,51,57,46,54,50,57,48,50,52,93,44,91,45,49,48,53,46,56,50,57,54,54,50,44,51,57,46,53,54,52,56,54,53,93,44,91,45,49,48,53,46,51,57,56,57,52,57,44,51,57,46,53,54,54,48,53,54,93,44,91,45,49,48,53,46,51,57,55,57,52,57,44,51,57,46,55,52,54,48,52,93,44,91,45,49,48,53,46,53,51,57,51,57,51,44,51,57,46,55,55,50,51,49,93,44,91,45,49,48,53,46,54,57,48,51,52,56,44,51,57,46,56,53,49,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,55,34,44,34,78,65,77,69,34,58,34,75,105,109,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,48,56,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,54,52,54,49,44,51,48,46,50,57,48,50,57,54,93,44,91,45,57,57,46,55,53,52,49,52,50,44,51,48,46,50,57,48,54,57,56,93,44,91,45,57,57,46,51,48,49,55,49,56,44,51,48,46,50,56,54,54,53,51,93,44,91,45,57,57,46,51,48,51,57,57,54,44,51,48,46,52,57,57,56,51,50,93,44,91,45,57,57,46,52,56,52,52,57,51,44,51,48,46,52,57,57,54,52,49,93,44,91,45,57,57,46,52,56,51,56,54,57,44,51,48,46,55,49,48,55,55,49,93,44,91,45,49,48,48,46,49,49,54,50,51,52,44,51,48,46,55,49,48,51,54,54,93,44,91,45,49,48,48,46,49,49,54,52,54,49,44,51,48,46,50,57,48,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,97,99,107,105,110,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,53,48,50,53,44,52,54,46,50,52,52,54,51,49,93,44,91,45,56,53,46,56,54,56,50,52,49,44,52,53,46,56,49,57,55,57,53,93,44,91,45,56,53,46,53,55,48,48,55,52,44,52,53,46,56,56,51,50,52,52,93,44,91,45,56,53,46,50,51,57,54,49,56,44,52,53,46,56,55,48,55,52,93,44,91,45,56,52,46,55,51,50,53,57,53,44,52,53,46,56,49,48,51,51,93,44,91,45,56,52,46,52,53,50,54,51,52,44,52,53,46,54,57,53,51,55,93,44,91,45,56,52,46,50,48,49,48,54,50,44,52,53,46,55,53,50,50,55,53,93,44,91,45,56,52,46,49,50,51,48,57,56,44,52,53,46,55,55,55,54,54,56,93,44,91,45,56,52,46,49,49,52,49,56,54,44,52,53,46,57,56,53,49,53,50,93,44,91,45,56,52,46,50,51,57,51,51,50,44,52,53,46,57,56,52,57,49,52,93,44,91,45,56,52,46,51,54,51,48,57,44,52,54,46,48,55,49,53,55,52,93,44,91,45,56,52,46,51,54,51,53,48,51,44,52,54,46,49,53,55,57,56,52,93,44,91,45,56,53,46,49,49,50,53,49,51,44,52,54,46,49,53,56,50,54,51,93,44,91,45,56,53,46,50,51,55,56,51,57,44,52,54,46,50,52,53,52,51,93,44,91,45,56,53,46,56,54,53,48,50,53,44,52,54,46,50,52,52,54,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,55,34,44,34,78,65,77,69,34,58,34,77,99,67,117,108,108,111,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,48,50,55,54,56,44,51,49,46,52,54,55,50,51,52,93,44,91,45,57,57,46,51,48,50,54,48,53,44,51,49,46,52,51,50,53,48,52,93,44,91,45,57,57,46,54,48,49,56,53,44,51,49,46,52,57,49,57,53,93,44,91,45,57,57,46,54,48,51,50,50,51,44,51,49,46,48,56,55,50,57,54,93,44,91,45,57,57,46,54,48,51,54,50,55,44,51,48,46,57,52,48,55,50,54,93,44,91,45,57,57,46,52,56,52,55,53,53,44,51,48,46,57,52,48,54,48,53,93,44,91,45,57,57,46,48,57,50,51,49,55,44,51,48,46,57,52,49,48,48,50,93,44,91,45,57,57,46,48,57,48,54,50,50,44,51,49,46,52,54,48,57,50,55,93,44,91,45,57,57,46,50,48,50,55,54,56,44,51,49,46,52,54,55,50,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,84,105,115,104,111,109,105,110,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,55,56,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,48,48,48,54,52,44,51,52,46,57,57,53,54,51,52,93,44,91,45,56,56,46,51,54,51,53,51,49,44,51,52,46,57,57,53,52,55,53,93,44,91,45,56,56,46,51,54,53,52,55,50,44,51,52,46,55,53,53,54,48,52,93,44,91,45,56,56,46,51,51,48,54,57,57,44,51,52,46,55,52,48,55,50,49,93,44,91,45,56,56,46,51,50,57,49,57,51,44,51,52,46,52,54,51,53,55,49,93,44,91,45,56,56,46,49,53,54,50,57,50,44,51,52,46,52,54,51,50,49,52,93,44,91,45,56,56,46,49,51,57,57,56,56,44,51,52,46,53,56,49,55,48,51,93,44,91,45,56,56,46,48,57,55,56,56,56,44,51,52,46,56,57,50,50,48,50,93,44,91,45,56,56,46,50,48,48,48,54,52,44,51,52,46,57,57,53,54,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,67,114,111,99,107,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,55,53,56,52,44,51,48,46,50,56,56,48,52,52,93,44,91,45,49,48,48,46,57,54,48,54,52,51,44,51,48,46,50,56,55,55,55,54,93,44,91,45,49,48,48,46,57,54,48,53,56,55,44,51,48,46,55,48,54,48,55,49,93,44,91,45,49,48,48,46,57,54,50,49,55,54,44,51,49,46,48,56,50,52,57,93,44,91,45,49,48,49,46,50,55,52,55,57,57,44,51,49,46,48,55,57,51,55,57,93,44,91,45,49,48,49,46,55,55,54,49,57,49,44,51,49,46,48,55,57,55,56,52,93,44,91,45,49,48,50,46,51,48,49,50,49,50,44,51,49,46,48,56,54,50,49,50,93,44,91,45,49,48,50,46,51,56,56,56,48,52,44,51,49,46,48,56,55,49,53,54,93,44,91,45,49,48,50,46,50,57,50,54,56,49,44,51,49,46,48,51,54,54,55,55,93,44,91,45,49,48,49,46,57,56,52,53,50,55,44,51,48,46,57,56,55,52,52,53,93,44,91,45,49,48,49,46,56,55,52,50,55,54,44,51,48,46,57,49,50,50,51,54,93,44,91,45,49,48,49,46,56,51,52,53,50,56,44,51,48,46,55,53,55,57,52,57,93,44,91,45,49,48,49,46,55,54,56,52,50,44,51,48,46,54,53,51,48,55,55,93,44,91,45,49,48,49,46,54,54,57,56,51,51,44,51,48,46,54,51,55,57,48,55,93,44,91,45,49,48,49,46,54,52,54,53,48,54,44,51,48,46,53,53,49,49,49,50,93,44,91,45,49,48,49,46,55,52,48,52,50,57,44,51,48,46,52,50,48,56,57,55,93,44,91,45,49,48,49,46,54,53,56,53,51,44,51,48,46,51,53,55,56,54,49,93,44,91,45,49,48,49,46,55,53,56,52,44,51,48,46,50,56,56,48,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,55,34,44,34,78,65,77,69,34,58,34,72,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,57,57,44,34,98,101,100,115,34,58,49,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,55,54,48,56,54,44,51,50,46,49,55,51,52,54,93,44,91,45,57,55,46,52,56,53,57,54,56,44,51,50,46,48,49,55,54,49,49,93,44,91,45,57,55,46,51,50,55,49,52,53,44,51,49,46,56,52,49,52,53,50,93,44,91,45,57,55,46,50,55,55,50,54,53,44,51,49,46,55,52,53,52,57,50,93,44,91,45,57,55,46,48,51,55,50,54,54,44,51,49,46,56,54,51,48,55,57,93,44,91,45,57,54,46,57,51,50,50,49,53,44,51,49,46,55,48,56,56,56,55,93,44,91,45,57,54,46,55,49,57,49,49,52,44,51,49,46,56,49,52,56,56,55,93,44,91,45,57,54,46,56,57,54,50,48,57,44,51,50,46,48,55,51,57,55,55,93,44,91,45,57,54,46,57,52,48,54,53,54,44,51,50,46,48,53,50,48,56,55,93,44,91,45,57,55,46,48,56,54,49,57,49,44,51,50,46,50,54,53,52,53,49,93,44,91,45,57,55,46,52,55,54,48,56,54,44,51,50,46,49,55,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,54,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,55,51,55,55,52,44,52,49,46,48,48,49,55,49,54,93,44,91,45,49,48,51,46,53,56,49,56,52,52,44,52,48,46,53,50,51,51,56,51,93,44,91,45,49,48,51,46,52,54,53,51,55,55,44,52,48,46,52,51,54,51,52,54,93,44,91,45,49,48,50,46,55,55,57,57,54,44,52,48,46,52,51,56,52,52,54,93,44,91,45,49,48,50,46,54,54,52,56,48,52,44,52,48,46,52,51,56,52,55,51,93,44,91,45,49,48,50,46,54,53,49,51,49,44,52,48,46,55,52,57,52,48,50,93,44,91,45,49,48,50,46,54,53,51,52,54,51,44,52,49,46,48,48,50,51,51,50,93,44,91,45,49,48,51,46,51,56,50,52,57,50,44,52,49,46,48,48,50,50,53,50,93,44,91,45,49,48,51,46,53,55,51,55,55,52,44,52,49,46,48,48,49,55,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,70,105,110,110,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,57,53,55,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,49,48,51,50,54,56,44,51,56,46,50,54,52,53,53,55,93,44,91,45,49,48,49,46,49,48,51,55,55,56,44,51,55,46,56,50,57,48,51,53,93,44,91,45,49,48,49,46,48,56,57,54,54,55,44,51,55,46,55,51,54,51,51,55,93,44,91,45,49,48,48,46,54,53,50,50,53,49,44,51,55,46,55,51,54,50,55,53,93,44,91,45,49,48,48,46,54,54,52,49,54,54,44,51,56,46,48,48,50,53,51,93,44,91,45,49,48,48,46,50,50,54,54,49,44,51,56,46,48,48,49,48,49,53,93,44,91,45,49,48,48,46,50,50,55,49,51,55,44,51,56,46,50,54,50,50,51,55,93,44,91,45,49,48,48,46,50,52,52,51,57,51,44,51,56,46,50,54,50,50,57,93,44,91,45,49,48,48,46,54,56,52,54,57,57,44,51,56,46,50,54,52,49,51,55,93,44,91,45,49,48,49,46,49,48,51,50,54,56,44,51,56,46,50,54,52,53,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,55,48,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,54,52,51,57,57,44,51,55,46,50,57,57,50,51,50,93,44,91,45,57,53,46,57,54,52,50,55,44,51,54,46,57,57,57,49,48,52,93,44,91,45,57,53,46,55,56,54,55,54,50,44,51,54,46,57,57,57,51,49,93,44,91,45,57,53,46,53,50,50,52,49,53,44,51,54,46,57,57,57,50,56,93,44,91,45,57,53,46,53,50,49,49,51,44,51,55,46,51,56,51,57,57,93,44,91,45,57,53,46,53,50,53,53,54,44,51,55,46,51,56,51,57,55,57,93,44,91,45,57,53,46,57,54,49,54,48,53,44,51,55,46,51,56,54,54,51,54,93,44,91,45,57,53,46,57,54,52,51,57,57,44,51,55,46,50,57,57,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,70,97,105,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,50,51,50,52,49,44,51,52,46,52,57,52,51,55,57,93,44,91,45,56,49,46,51,49,54,57,49,49,44,51,52,46,50,51,57,52,53,56,93,44,91,45,56,49,46,48,57,53,56,54,51,44,51,52,46,50,49,51,56,55,50,93,44,91,45,56,48,46,56,50,53,57,50,49,44,51,52,46,50,54,56,55,54,93,44,91,45,56,48,46,55,54,57,57,50,54,44,51,52,46,51,55,55,49,49,49,93,44,91,45,56,48,46,56,55,57,50,50,55,44,51,52,46,52,53,55,55,55,54,93,44,91,45,56,48,46,56,55,55,52,57,49,44,51,52,46,53,52,51,49,52,54,93,44,91,45,56,49,46,52,50,50,55,48,54,44,51,52,46,53,55,50,48,50,57,93,44,91,45,56,49,46,52,50,51,50,52,49,44,51,52,46,52,57,52,51,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,104,101,121,101,110,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,53,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,51,54,54,57,53,44,52,49,46,52,51,57,48,53,51,93,44,91,45,49,48,51,46,51,54,57,48,50,52,44,52,49,46,52,51,55,54,53,53,93,44,91,45,49,48,51,46,51,55,55,54,50,44,52,49,46,51,57,52,54,51,51,93,44,91,45,49,48,51,46,51,56,50,52,57,50,44,52,49,46,48,48,50,50,53,50,93,44,91,45,49,48,50,46,54,53,51,52,54,51,44,52,49,46,48,48,50,51,51,50,93,44,91,45,49,48,50,46,54,50,49,48,51,51,44,52,49,46,48,48,50,53,57,55,93,44,91,45,49,48,50,46,54,49,48,52,49,51,44,52,49,46,50,50,49,54,49,52,93,44,91,45,49,48,50,46,54,51,54,54,57,53,44,52,49,46,52,51,57,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,54,52,44,34,98,101,100,115,34,58,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,51,54,56,57,55,52,44,52,51,46,56,52,56,48,52,55,93,44,91,45,57,52,46,56,53,52,52,52,52,44,52,51,46,56,52,56,48,57,57,93,44,91,45,57,52,46,56,53,52,53,53,53,44,52,51,46,53,48,48,57,50,53,93,44,91,45,57,52,46,52,52,50,56,53,44,52,51,46,53,48,48,52,50,50,93,44,91,45,57,52,46,50,52,55,57,54,56,44,52,51,46,53,48,48,49,51,51,93,44,91,45,57,52,46,50,52,55,49,50,51,44,52,51,46,56,52,55,57,52,54,93,44,91,45,57,52,46,51,54,56,57,55,52,44,52,51,46,56,52,56,48,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,83,101,118,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,50,56,55,44,34,98,101,100,115,34,58,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,57,52,50,55,53,44,51,53,46,56,56,55,49,50,53,93,44,91,45,56,51,46,54,54,50,57,57,57,44,51,53,46,53,54,57,52,54,56,93,44,91,45,56,51,46,52,56,53,56,51,52,44,51,53,46,53,54,56,49,57,93,44,91,45,56,51,46,50,53,52,50,53,55,44,51,53,46,54,57,53,53,57,51,93,44,91,45,56,51,46,50,53,53,51,52,51,44,51,53,46,55,49,53,48,56,52,93,44,91,45,56,51,46,51,49,48,55,56,50,44,51,53,46,56,57,53,56,52,54,93,44,91,45,56,51,46,52,55,52,57,48,49,44,51,53,46,57,50,50,56,57,51,93,44,91,45,56,51,46,54,55,51,50,57,55,44,51,54,46,48,51,56,52,56,54,93,44,91,45,56,51,46,54,53,52,54,48,53,44,51,53,46,57,55,49,57,51,55,93,44,91,45,56,51,46,55,57,52,50,55,53,44,51,53,46,56,56,55,49,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,48,51,54,48,55,44,51,53,46,50,52,49,48,52,51,93,44,91,45,56,52,46,54,57,57,57,51,55,44,51,53,46,49,55,48,57,55,52,93,44,91,45,56,52,46,55,55,53,56,53,51,44,51,52,46,57,56,55,56,56,52,93,44,91,45,56,52,46,54,50,49,52,56,51,44,51,52,46,57,56,56,51,50,57,93,44,91,45,56,52,46,51,50,49,56,50,49,44,51,52,46,57,56,56,52,48,56,93,44,91,45,56,52,46,50,57,50,51,54,53,44,51,53,46,50,48,54,54,57,52,93,44,91,45,56,52,46,52,57,53,53,50,57,44,51,53,46,50,56,53,52,55,50,93,44,91,45,56,52,46,55,48,51,54,48,55,44,51,53,46,50,52,49,48,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,51,34,44,34,78,65,77,69,34,58,34,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,44,91,45,49,48,49,46,48,51,56,54,54,44,51,50,46,57,55,48,50,50,53,93,44,91,45,49,48,48,46,54,53,53,56,55,44,51,50,46,57,54,51,52,54,57,93,44,91,45,49,48,48,46,53,49,57,50,48,56,44,51,50,46,57,54,50,57,50,54,93,44,91,45,49,48,48,46,53,49,55,52,52,57,44,51,51,46,51,57,55,56,54,54,93,44,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,84,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,57,56,52,55,51,52,44,52,55,46,57,53,51,57,49,56,93,44,91,45,49,49,50,46,57,49,51,50,53,54,44,52,55,46,56,50,54,50,49,54,93,44,91,45,49,49,50,46,57,49,51,56,55,52,44,52,55,46,54,57,55,49,57,57,93,44,91,45,49,49,50,46,56,53,52,55,48,49,44,52,55,46,54,50,57,50,51,52,93,44,91,45,49,49,50,46,53,54,56,54,54,44,52,55,46,54,51,54,48,49,56,93,44,91,45,49,49,50,46,52,51,50,55,49,49,44,52,55,46,54,48,54,49,48,52,93,44,91,45,49,49,50,46,50,55,56,44,52,55,46,53,48,53,54,50,51,93,44,91,45,49,49,50,46,48,52,55,55,56,49,44,52,55,46,53,49,54,48,51,52,93,44,91,45,49,49,49,46,57,50,50,55,57,53,44,52,55,46,53,48,53,48,54,52,93,44,91,45,49,49,49,46,57,50,50,57,51,54,44,52,55,46,54,49,49,50,51,49,93,44,91,45,49,49,49,46,54,54,54,50,54,44,52,55,46,54,49,49,50,53,51,93,44,91,45,49,49,49,46,54,54,54,52,56,50,44,52,55,46,54,57,55,55,54,49,93,44,91,45,49,49,49,46,52,48,56,56,53,44,52,55,46,54,57,56,49,50,51,93,44,91,45,49,49,49,46,52,48,56,53,49,52,44,52,55,46,57,56,55,49,55,56,93,44,91,45,49,49,49,46,57,56,52,50,54,51,44,52,55,46,57,56,52,53,57,50,93,44,91,45,49,49,50,46,48,52,55,57,57,57,44,52,56,46,48,56,54,54,49,50,93,44,91,45,49,49,50,46,49,55,55,56,51,51,44,52,56,46,49,51,48,55,49,50,93,44,91,45,49,49,51,46,48,49,52,56,49,49,44,52,56,46,49,51,49,48,51,93,44,91,45,49,49,50,46,56,56,52,56,56,51,44,52,55,46,57,56,53,52,49,52,93,44,91,45,49,49,50,46,57,56,52,55,51,52,44,52,55,46,57,53,51,57,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,71,97,114,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,48,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,51,54,54,57,53,44,52,49,46,52,51,57,48,53,51,93,44,91,45,49,48,50,46,54,49,48,52,49,51,44,52,49,46,50,50,49,54,49,52,93,44,91,45,49,48,50,46,48,53,53,53,51,53,44,52,49,46,50,50,49,53,52,55,93,44,91,45,49,48,50,46,48,53,53,50,53,54,44,52,49,46,51,57,53,49,54,50,93,44,91,45,49,48,49,46,57,56,52,54,51,44,52,49,46,51,57,52,55,49,50,93,44,91,45,49,48,49,46,57,56,53,53,50,51,44,52,49,46,55,52,50,50,57,93,44,91,45,49,48,50,46,48,54,55,57,49,56,44,52,49,46,55,52,50,48,57,57,93,44,91,45,49,48,50,46,48,54,54,54,53,44,52,50,46,48,48,57,49,57,53,93,44,91,45,49,48,50,46,54,55,55,53,56,50,44,52,50,46,48,48,53,50,56,50,93,44,91,45,49,48,50,46,54,55,57,48,57,51,44,52,49,46,56,52,51,48,53,93,44,91,45,49,48,50,46,54,51,54,52,55,54,44,52,49,46,55,52,51,49,51,57,93,44,91,45,49,48,50,46,54,51,54,54,57,53,44,52,49,46,52,51,57,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,97,99,111,117,112,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,49,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,53,51,55,56,50,44,51,57,46,53,50,48,51,49,53,93,44,91,45,57,48,46,49,52,56,49,50,49,44,51,57,46,50,54,49,57,52,55,93,44,91,45,57,48,46,49,52,53,57,56,52,44,51,56,46,57,57,57,51,48,51,93,44,91,45,56,57,46,54,57,56,53,53,53,44,51,56,46,57,57,56,57,55,57,93,44,91,45,56,57,46,55,48,49,54,54,49,44,51,57,46,53,50,51,51,49,54,93,44,91,45,56,57,46,57,50,54,48,51,55,44,51,57,46,53,50,50,49,48,52,93,44,91,45,57,48,46,49,53,51,55,56,50,44,51,57,46,53,50,48,51,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,82,111,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,48,53,49,44,34,98,101,100,115,34,58,50,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,55,50,55,49,52,44,51,57,46,51,55,55,52,49,54,93,44,91,45,56,51,46,51,53,51,53,51,49,44,51,57,46,49,57,55,53,56,53,93,44,91,45,56,50,46,55,56,53,56,57,49,44,51,57,46,49,54,56,55,54,57,93,44,91,45,56,50,46,55,54,50,56,57,50,44,51,57,46,50,48,55,57,54,55,93,44,91,45,56,50,46,55,52,56,53,57,49,44,51,57,46,51,54,56,49,54,53,93,44,91,45,56,50,46,55,52,48,55,50,57,44,51,57,46,52,54,56,51,53,93,44,91,45,56,50,46,57,56,52,53,54,44,51,57,46,53,48,54,55,53,52,93,44,91,45,56,51,46,50,54,54,55,51,55,44,51,57,46,53,49,54,50,52,57,93,44,91,45,56,51,46,51,55,50,55,49,52,44,51,57,46,51,55,55,52,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,115,105,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,57,54,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,53,49,57,56,44,52,49,46,57,50,56,57,49,55,93,44,91,45,57,48,46,50,52,50,51,56,44,52,49,46,55,56,50,57,54,52,93,44,91,45,57,48,46,49,56,53,53,51,54,44,52,49,46,53,56,52,53,55,52,93,44,91,45,56,57,46,56,54,50,51,53,49,44,52,49,46,53,56,52,48,48,53,93,44,91,45,56,57,46,54,51,49,52,57,52,44,52,49,46,53,56,52,57,52,57,93,44,91,45,56,57,46,54,50,57,51,51,44,52,49,46,57,48,49,54,49,55,93,44,91,45,56,57,46,54,56,53,51,54,54,44,52,49,46,57,51,48,51,52,93,44,91,45,57,48,46,49,53,49,57,56,44,52,49,46,57,50,56,57,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,69,108,32,80,97,115,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,55,54,53,52,44,34,98,101,100,115,34,58,50,54,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,51,55,55,49,55,52,44,51,50,46,48,48,49,53,48,51,93,44,91,45,49,48,54,46,54,49,56,52,56,54,44,51,50,46,48,48,48,52,57,53,93,44,91,45,49,48,54,46,54,51,53,57,50,44,51,49,46,56,54,54,50,51,51,93,44,91,45,49,48,54,46,53,50,56,48,52,55,44,51,49,46,55,56,51,56,57,49,93,44,91,45,49,48,54,46,51,56,49,48,55,52,44,51,49,46,55,51,50,48,56,50,93,44,91,45,49,48,54,46,50,49,57,54,50,44,51,49,46,52,56,49,53,54,49,93,44,91,45,49,48,53,46,57,57,55,49,53,50,44,51,49,46,51,56,55,50,51,93,44,91,45,49,48,53,46,57,57,56,48,49,50,44,51,50,46,48,48,50,51,55,55,93,44,91,45,49,48,54,46,51,55,55,49,55,52,44,51,50,46,48,48,49,53,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,49,34,44,34,78,65,77,69,34,58,34,76,111,118,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,57,56,48,49,55,57,44,51,50,46,48,48,48,49,50,53,93,44,91,45,49,48,51,46,57,49,50,50,52,56,44,51,49,46,57,48,50,52,50,52,93,44,91,45,49,48,51,46,56,49,52,57,57,44,51,49,46,56,53,50,49,52,50,93,44,91,45,49,48,51,46,55,57,54,54,49,50,44,51,49,46,55,55,48,48,49,51,93,44,91,45,49,48,51,46,55,48,48,54,48,51,44,51,49,46,55,52,56,51,57,53,93,44,91,45,49,48,51,46,54,49,48,56,56,55,44,51,49,46,54,53,49,56,48,50,93,44,91,45,49,48,51,46,51,50,55,53,51,56,44,51,49,46,54,53,49,52,50,93,44,91,45,49,48,51,46,51,50,54,53,48,49,44,51,50,46,48,48,48,51,54,57,93,44,91,45,49,48,51,46,55,50,50,56,56,50,44,51,50,46,48,48,48,50,48,54,93,44,91,45,49,48,51,46,57,56,48,49,55,57,44,51,50,46,48,48,48,49,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,97,116,105,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,57,53,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,50,55,56,54,51,44,51,53,46,48,53,56,50,52,54,93,44,91,45,57,53,46,51,52,57,52,48,57,44,51,53,46,48,53,56,53,50,93,44,91,45,57,53,46,53,48,55,55,51,56,44,51,53,46,48,50,57,50,54,53,93,44,91,45,57,53,46,53,49,52,52,55,53,44,51,52,46,54,56,48,55,49,56,93,44,91,45,57,53,46,48,53,57,54,49,54,44,51,52,46,54,56,48,55,51,54,93,44,91,45,57,53,46,48,53,57,53,49,50,44,51,52,46,56,53,53,48,49,57,93,44,91,45,57,52,46,57,50,55,56,54,51,44,51,53,46,48,53,56,50,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,54,55,49,44,34,98,101,100,115,34,58,50,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,56,51,48,55,53,44,51,57,46,54,48,53,55,57,54,93,44,91,45,56,49,46,53,56,56,49,56,53,44,51,57,46,53,56,54,57,55,51,93,44,91,45,56,49,46,54,56,56,56,56,52,44,51,57,46,53,57,48,53,49,49,93,44,91,45,56,49,46,55,48,56,53,50,55,44,51,57,46,52,56,48,55,55,53,93,44,91,45,56,49,46,56,52,52,56,54,51,44,51,57,46,52,53,48,50,49,54,93,44,91,45,56,49,46,56,53,51,54,54,56,44,51,57,46,51,49,56,49,54,53,93,44,91,45,56,49,46,55,50,53,54,50,50,44,51,57,46,50,49,53,57,48,53,93,44,91,45,56,49,46,54,55,55,53,57,53,44,51,57,46,50,55,52,49,55,49,93,44,91,45,56,49,46,52,53,54,49,52,51,44,51,57,46,52,48,57,50,55,52,93,44,91,45,56,49,46,51,55,49,50,54,44,51,57,46,51,52,49,57,50,52,93,44,91,45,56,49,46,49,50,49,53,51,51,44,51,57,46,52,53,55,55,55,53,93,44,91,45,56,49,46,48,51,56,55,49,50,44,51,57,46,53,51,57,56,56,54,93,44,91,45,56,49,46,50,56,51,48,55,53,44,51,57,46,54,48,53,55,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,111,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,49,48,50,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,56,56,55,48,56,44,51,55,46,48,53,54,50,52,56,93,44,91,45,57,50,46,49,49,50,51,52,54,44,51,54,46,55,57,52,50,51,49,93,44,91,45,57,50,46,49,50,48,52,51,44,51,54,46,52,57,56,55,93,44,91,45,57,49,46,54,55,50,51,52,51,44,51,54,46,52,57,57,52,54,51,93,44,91,45,57,49,46,54,53,56,49,49,49,44,51,54,46,56,56,56,55,50,52,93,44,91,45,57,49,46,54,53,53,54,48,55,44,51,55,46,48,52,56,57,50,53,93,44,91,45,57,50,46,48,56,56,55,48,56,44,51,55,46,48,53,54,50,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,69,100,119,97,114,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,50,53,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,50,50,49,51,54,44,51,56,46,48,48,48,50,51,54,93,44,91,45,57,57,46,51,53,48,50,56,57,44,51,56,46,48,48,48,55,52,53,93,44,91,45,57,57,46,51,53,48,51,53,57,44,51,56,46,48,56,55,53,57,52,93,44,91,45,57,57,46,53,54,57,53,51,51,44,51,56,46,48,56,55,51,55,50,93,44,91,45,57,57,46,53,54,57,56,55,57,44,51,55,46,57,49,51,48,49,54,93,44,91,45,57,57,46,53,53,57,53,56,44,51,55,46,55,51,52,56,56,56,93,44,91,45,57,57,46,48,49,51,53,53,44,51,55,46,55,51,50,57,55,93,44,91,45,57,57,46,48,49,51,51,49,56,44,51,55,46,56,50,53,51,51,54,93,44,91,45,57,57,46,48,50,50,49,51,54,44,51,56,46,48,48,48,50,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,55,49,53,52,44,34,98,101,100,115,34,58,50,57,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,50,51,49,54,44,51,56,46,50,56,55,52,51,51,93,44,91,45,56,53,46,56,57,57,55,54,44,51,56,46,49,56,48,52,52,52,93,44,91,45,56,53,46,57,52,55,49,49,52,44,51,56,46,48,48,53,48,56,53,93,44,91,45,56,53,46,57,51,56,51,50,49,44,51,55,46,57,57,56,55,53,54,93,44,91,45,56,53,46,55,49,50,53,55,56,44,51,56,46,48,56,55,51,49,49,93,44,91,45,56,53,46,53,53,55,50,55,44,51,56,46,48,55,51,56,52,49,93,44,91,45,56,53,46,52,50,56,56,51,44,51,56,46,49,49,56,51,56,51,93,44,91,45,56,53,46,52,50,52,48,53,52,44,51,56,46,49,52,55,52,51,56,93,44,91,45,56,53,46,52,54,56,50,48,54,44,51,56,46,50,56,53,51,48,57,93,44,91,45,56,53,46,54,51,55,56,54,49,44,51,56,46,51,56,48,50,54,51,93,44,91,45,56,53,46,55,57,50,51,49,54,44,51,56,46,50,56,55,52,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,50,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,54,51,55,52,44,52,48,46,51,50,53,51,52,52,93,44,91,45,56,57,46,54,48,50,57,55,57,44,52,48,46,51,50,48,49,50,57,93,44,91,45,56,57,46,54,48,49,54,56,56,44,52,48,46,49,50,50,51,55,56,93,44,91,45,56,57,46,53,55,56,50,56,57,44,51,57,46,57,55,54,49,50,55,93,44,91,45,56,57,46,52,48,52,57,56,52,44,51,57,46,57,49,56,49,56,55,93,44,91,45,56,57,46,50,49,55,56,52,54,44,51,57,46,57,49,54,57,57,93,44,91,45,56,57,46,49,52,52,55,54,52,44,52,48,46,48,52,56,56,53,51,93,44,91,45,56,57,46,49,52,56,55,54,52,44,52,48,46,50,56,50,48,51,56,93,44,91,45,56,57,46,50,54,51,55,52,44,52,48,46,51,50,53,51,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,87,105,110,110,101,98,97,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,57,50,54,44,34,98,101,100,115,34,58,55,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,48,52,48,55,44,52,52,46,50,52,52,49,48,50,93,44,91,45,56,56,46,55,51,57,55,55,44,52,52,46,50,52,51,51,48,51,93,44,91,45,56,56,46,56,56,54,54,55,51,44,52,52,46,50,52,50,54,50,50,93,44,91,45,56,56,46,56,56,54,49,57,51,44,52,51,46,57,56,51,50,51,51,93,44,91,45,56,56,46,56,56,53,54,57,55,44,52,51,46,56,57,53,49,56,52,93,44,91,45,56,56,46,52,48,51,49,57,53,44,52,51,46,56,57,50,57,55,55,93,44,91,45,56,56,46,52,48,52,49,56,55,44,52,51,46,57,51,56,50,93,44,91,45,56,56,46,52,48,52,48,55,44,52,52,46,50,52,52,49,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,51,52,53,56,56,44,51,54,46,53,48,50,54,49,49,93,44,91,45,56,56,46,57,48,51,52,56,44,51,54,46,53,55,54,56,54,52,93,44,91,45,56,57,46,49,55,52,55,50,55,44,51,54,46,54,53,48,52,55,53,93,44,91,45,56,57,46,50,50,55,48,52,54,44,51,54,46,53,54,57,53,51,55,93,44,91,45,56,57,46,51,50,55,53,56,56,44,51,54,46,54,51,50,50,55,54,93,44,91,45,56,57,46,52,49,55,50,55,53,44,51,54,46,52,57,57,48,49,49,93,44,91,45,56,57,46,51,52,54,48,54,54,44,51,54,46,53,48,51,50,51,50,93,44,91,45,56,56,46,56,51,52,53,56,56,44,51,54,46,53,48,50,54,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,72,97,114,118,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,53,53,53,44,34,98,101,100,115,34,58,49,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,48,49,56,52,49,44,51,56,46,49,55,51,56,49,52,93,44,91,45,57,55,46,55,48,49,57,54,57,44,51,55,46,57,49,49,51,50,53,93,44,91,45,57,55,46,49,53,50,52,55,54,44,51,55,46,57,49,50,55,51,51,93,44,91,45,57,55,46,49,53,50,57,49,51,44,51,56,46,48,56,55,55,48,52,93,44,91,45,57,55,46,49,53,51,48,57,51,44,51,56,46,49,55,52,54,51,52,93,44,91,45,57,55,46,51,55,49,55,53,44,51,56,46,49,55,51,54,55,51,93,44,91,45,57,55,46,55,48,49,56,52,49,44,51,56,46,49,55,51,56,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,68,97,119,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,57,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,52,48,54,51,48,57,44,52,55,46,49,56,49,53,56,51,93,44,91,45,49,48,53,46,51,50,52,56,53,51,44,52,55,46,49,56,49,52,57,54,93,44,91,45,49,48,53,46,51,50,52,55,53,55,44,52,54,46,57,55,55,49,57,54,93,44,91,45,49,48,53,46,49,57,54,55,51,53,44,52,54,46,57,55,55,49,55,50,93,44,91,45,49,48,53,46,48,50,55,53,50,54,44,52,54,46,56,54,49,52,53,55,93,44,91,45,49,48,52,46,54,48,51,55,54,54,44,52,54,46,56,54,48,56,53,51,93,44,91,45,49,48,52,46,52,49,50,49,50,52,44,52,54,46,57,48,52,48,48,51,93,44,91,45,49,48,52,46,51,48,54,48,54,50,44,52,55,46,48,52,50,48,52,54,93,44,91,45,49,48,52,46,51,52,49,54,56,44,52,55,46,50,52,53,51,57,50,93,44,91,45,49,48,52,46,52,50,48,51,52,55,44,52,55,46,51,53,52,52,51,53,93,44,91,45,49,48,52,46,53,49,51,50,57,50,44,52,55,46,51,53,52,55,49,57,93,44,91,45,49,48,52,46,53,49,51,48,52,57,44,52,55,46,53,50,57,52,52,50,93,44,91,45,49,48,52,46,53,57,51,54,54,52,44,52,55,46,54,49,54,50,57,52,93,44,91,45,49,48,52,46,57,55,56,53,53,51,44,52,55,46,54,49,54,50,55,50,93,44,91,45,49,48,52,46,57,55,56,48,57,44,52,55,46,55,48,51,50,57,51,93,44,91,45,49,48,53,46,50,51,53,48,49,54,44,52,55,46,55,48,51,53,56,49,93,44,91,45,49,48,53,46,50,51,52,55,55,49,44,52,55,46,55,57,48,53,48,50,93,44,91,45,49,48,53,46,51,54,51,50,54,50,44,52,55,46,55,57,48,52,49,57,93,44,91,45,49,48,53,46,52,48,54,53,56,49,44,52,55,46,53,50,57,53,51,52,93,44,91,45,49,48,53,46,52,48,54,51,48,57,44,52,55,46,49,56,49,53,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,53,49,44,34,98,101,100,115,34,58,49,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,51,56,56,55,56,44,51,57,46,52,53,50,52,54,53,93,44,91,45,56,48,46,48,50,53,48,48,49,44,51,57,46,52,48,49,52,52,54,93,44,91,45,56,48,46,49,57,55,50,56,54,44,51,57,46,51,57,51,49,56,54,93,44,91,45,56,48,46,49,54,54,51,56,55,44,51,57,46,50,52,50,50,56,51,93,44,91,45,56,48,46,48,50,51,52,49,49,44,51,57,46,50,52,55,56,57,50,93,44,91,45,55,57,46,56,57,53,53,51,54,44,51,57,46,50,57,57,53,56,52,93,44,91,45,55,57,46,56,57,52,54,56,56,44,51,57,46,52,51,53,53,56,56,93,44,91,45,55,57,46,57,51,56,56,55,56,44,51,57,46,52,53,50,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,77,105,100,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,51,56,57,44,34,98,101,100,115,34,58,51,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,44,91,45,56,52,46,54,48,55,53,52,44,52,51,46,52,54,54,48,48,54,93,44,91,45,56,52,46,51,54,57,56,55,54,44,52,51,46,52,54,54,48,52,52,93,44,91,45,56,52,46,49,55,48,53,55,54,44,52,51,46,52,56,49,57,54,57,93,44,91,45,56,52,46,49,54,56,49,50,55,44,52,51,46,53,54,56,56,57,57,93,44,91,45,56,52,46,49,54,55,51,49,56,44,52,51,46,56,50,53,57,48,50,93,44,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,81,117,105,116,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,55,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,57,56,53,51,54,44,51,52,46,53,49,49,48,56,56,93,44,91,45,57,48,46,51,48,52,51,49,55,44,51,52,46,53,48,57,54,50,49,93,44,91,45,57,48,46,51,57,57,52,57,56,44,51,52,46,52,50,51,56,48,55,93,44,91,45,57,48,46,52,53,48,53,55,50,44,51,52,46,50,54,50,52,48,50,93,44,91,45,57,48,46,52,53,48,57,56,49,44,51,52,46,48,55,50,57,51,50,93,44,91,45,57,48,46,49,51,53,54,57,53,44,51,52,46,48,55,50,57,93,44,91,45,57,48,46,49,51,53,52,53,54,44,51,52,46,49,54,48,48,55,52,93,44,91,45,57,48,46,49,57,52,48,56,54,44,51,52,46,51,48,49,52,48,55,93,44,91,45,57,48,46,49,57,56,53,51,54,44,51,52,46,53,49,49,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,57,53,44,34,98,101,100,115,34,58,52,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,53,49,50,56,53,44,51,55,46,55,57,56,56,55,56,93,44,91,45,56,54,46,50,55,53,50,55,44,51,55,46,53,57,51,53,49,57,93,44,91,45,56,54,46,49,49,52,48,57,53,44,51,55,46,53,54,55,49,51,49,93,44,91,45,56,54,46,48,52,55,53,57,56,44,51,55,46,52,52,57,57,51,51,93,44,91,45,56,53,46,56,57,50,56,48,52,44,51,55,46,52,52,48,51,48,56,93,44,91,45,56,53,46,56,55,54,48,48,54,44,51,55,46,53,52,51,50,53,57,93,44,91,45,56,53,46,54,56,48,52,56,56,44,51,55,46,55,51,50,50,56,52,93,44,91,45,56,53,46,55,51,55,55,55,55,44,51,55,46,56,49,49,55,57,93,44,91,45,56,53,46,57,51,56,51,50,49,44,51,55,46,57,57,56,55,53,54,93,44,91,45,56,53,46,57,52,55,49,49,52,44,51,56,46,48,48,53,48,56,53,93,44,91,45,56,53,46,57,57,56,57,53,50,44,51,55,46,57,57,57,54,53,52,93,44,91,45,56,54,46,48,48,55,52,51,50,44,51,55,46,56,49,56,52,51,57,93,44,91,45,56,54,46,49,53,49,50,56,53,44,51,55,46,55,57,56,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,49,54,57,44,34,98,101,100,115,34,58,49,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,52,52,51,56,56,44,51,56,46,52,55,51,56,55,56,93,44,91,45,56,57,46,49,52,55,53,57,55,44,51,56,46,50,49,50,56,57,53,93,44,91,45,56,57,46,49,50,57,54,51,50,44,51,56,46,49,50,52,55,54,55,93,44,91,45,56,56,46,55,48,52,54,48,54,44,51,56,46,49,50,53,49,57,53,93,44,91,45,56,56,46,55,48,50,51,57,49,44,51,56,46,50,53,54,54,54,49,93,44,91,45,56,56,46,54,57,56,57,54,49,44,51,56,46,52,55,52,57,49,52,93,44,91,45,56,57,46,49,52,52,51,56,56,44,51,56,46,52,55,51,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,97,109,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,57,49,51,52,54,44,52,52,46,56,48,52,48,51,53,93,44,91,45,57,55,46,52,57,50,50,54,54,44,52,52,46,53,52,51,56,56,52,93,44,91,45,57,55,46,49,50,56,48,50,52,44,52,52,46,53,52,51,49,50,54,93,44,91,45,57,54,46,56,56,53,53,48,52,44,52,52,46,53,52,51,55,55,51,93,44,91,45,57,54,46,56,56,52,53,55,44,52,52,46,56,48,52,52,51,54,93,44,91,45,57,55,46,52,57,49,51,52,54,44,52,52,46,56,48,52,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,52,56,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,52,51,52,49,52,44,52,53,46,53,53,53,48,56,50,93,44,91,45,57,48,46,48,52,50,50,55,51,44,52,53,46,51,56,49,56,54,54,93,44,91,45,57,48,46,48,52,51,54,56,53,44,52,53,46,49,50,48,50,49,52,93,44,91,45,56,57,46,52,50,53,57,55,49,44,52,53,46,49,49,57,48,57,56,93,44,91,45,56,57,46,52,50,52,56,50,52,44,52,53,46,52,54,55,49,54,54,93,44,91,45,56,57,46,52,50,56,50,53,56,44,52,53,46,53,53,53,51,53,51,93,44,91,45,57,48,46,48,52,51,52,49,52,44,52,53,46,53,53,53,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,54,57,50,44,34,98,101,100,115,34,58,49,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,50,54,50,50,56,44,52,52,46,57,57,52,56,54,51,93,44,91,45,55,52,46,54,52,49,56,55,50,44,52,52,46,57,53,50,54,50,49,93,44,91,45,55,52,46,53,50,53,54,56,51,44,52,52,46,49,55,48,54,51,54,93,44,91,45,55,52,46,53,51,53,49,53,54,44,52,52,46,48,57,57,50,53,93,44,91,45,55,52,46,50,56,49,56,55,44,52,52,46,49,50,48,53,53,50,93,44,91,45,55,52,46,48,57,51,52,57,44,52,52,46,49,51,55,54,49,53,93,44,91,45,55,52,46,49,52,49,52,50,52,44,52,52,46,52,48,55,50,54,56,93,44,91,45,55,51,46,57,48,57,54,56,55,44,52,52,46,52,50,57,54,57,57,93,44,91,45,55,51,46,57,56,54,51,56,50,44,52,52,46,55,48,55,55,55,51,93,44,91,45,55,52,46,48,50,55,51,56,57,44,52,52,46,57,57,53,54,56,53,93,44,91,45,55,52,46,55,50,54,50,50,56,44,52,52,46,57,57,52,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,51,48,34,44,34,78,65,77,69,34,58,34,70,114,101,100,101,114,105,99,107,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,54,57,44,34,98,101,100,115,34,58,52,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,53,51,48,50,56,51,44,51,56,46,51,48,57,49,55,53,93,44,91,45,55,55,46,52,52,55,49,50,54,44,51,56,46,50,56,52,54,49,52,93,44,91,45,55,55,46,52,54,55,48,53,51,44,51,56,46,51,49,56,54,54,93,44,91,45,55,55,46,53,51,48,50,56,51,44,51,56,46,51,48,57,49,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,82,97,108,101,105,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,50,51,50,44,34,98,101,100,115,34,58,52,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,49,52,50,50,56,44,51,55,46,55,57,49,50,49,49,93,44,91,45,56,49,46,52,50,55,55,56,49,44,51,55,46,55,52,57,51,53,50,93,44,91,45,56,49,46,51,48,52,49,51,44,51,55,46,53,52,54,53,54,52,93,44,91,45,56,49,46,50,50,50,49,50,49,44,51,55,46,53,49,48,52,49,54,93,44,91,45,56,49,46,48,57,52,54,51,44,51,55,46,53,56,56,54,53,56,93,44,91,45,56,49,46,48,54,56,55,55,52,44,51,55,46,54,51,57,56,50,51,93,44,91,45,56,48,46,57,48,53,57,54,49,44,51,55,46,54,57,56,53,57,54,93,44,91,45,56,48,46,57,52,53,48,57,44,51,55,46,56,49,57,49,50,49,93,44,91,45,56,49,46,48,55,51,50,52,57,44,51,55,46,56,55,53,56,54,53,93,44,91,45,56,49,46,50,57,53,49,50,55,44,51,55,46,56,56,57,51,49,49,93,44,91,45,56,49,46,51,56,48,56,50,57,44,51,55,46,57,54,57,49,48,57,93,44,91,45,56,49,46,52,53,54,54,51,50,44,51,55,46,57,56,55,51,48,55,93,44,91,45,56,49,46,53,55,49,51,51,52,44,51,55,46,57,50,56,49,48,55,93,44,91,45,56,49,46,53,49,52,50,50,56,44,51,55,46,55,57,49,50,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,104,97,118,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,52,53,57,44,34,98,101,100,115,34,58,50,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,56,57,51,51,55,55,44,51,52,46,48,56,56,52,48,55,93,44,91,45,49,48,52,46,56,57,50,52,51,51,44,51,51,46,51,57,56,49,57,57,93,44,91,45,49,48,52,46,57,48,53,52,50,52,44,51,51,46,49,51,56,57,48,52,93,44,91,45,49,48,53,46,51,49,54,57,54,56,44,51,51,46,49,51,50,51,48,51,93,44,91,45,49,48,53,46,51,53,50,53,49,51,44,51,50,46,57,54,50,48,48,55,93,44,91,45,49,48,53,46,51,53,52,48,49,44,51,50,46,53,49,56,55,55,54,93,44,91,45,49,48,52,46,56,53,49,53,50,52,44,51,50,46,53,50,48,53,52,49,93,44,91,45,49,48,52,46,56,52,49,53,55,54,44,51,50,46,57,54,51,50,49,51,93,44,91,45,49,48,51,46,56,49,52,53,48,55,44,51,50,46,57,54,53,49,49,52,93,44,91,45,49,48,51,46,55,54,54,52,49,55,44,51,50,46,57,54,53,50,54,52,93,44,91,45,49,48,51,46,55,54,54,51,54,49,44,51,51,46,51,57,53,50,57,55,93,44,91,45,49,48,51,46,55,50,48,56,48,57,44,51,51,46,53,54,57,53,51,55,93,44,91,45,49,48,51,46,53,49,48,49,50,57,44,51,51,46,53,55,48,49,49,55,93,44,91,45,49,48,51,46,53,48,57,55,53,57,44,51,51,46,54,53,55,50,54,50,93,44,91,45,49,48,51,46,55,49,56,51,51,51,44,51,51,46,54,53,54,50,49,93,44,91,45,49,48,51,46,55,49,54,56,56,53,44,51,51,46,56,49,57,53,53,56,93,44,91,45,49,48,51,46,56,52,49,57,51,51,44,51,51,46,56,49,57,50,93,44,91,45,49,48,51,46,56,52,49,54,57,49,44,51,52,46,48,56,49,57,48,57,93,44,91,45,49,48,51,46,57,52,54,48,49,57,44,51,52,46,48,56,50,52,54,51,93,44,91,45,49,48,52,46,49,53,53,54,44,51,52,46,48,56,51,50,48,53,93,44,91,45,49,48,52,46,49,53,54,50,54,57,44,51,51,46,57,57,53,52,49,51,93,44,91,45,49,48,52,46,55,56,54,49,48,52,44,51,52,46,48,48,48,49,51,55,93,44,91,45,49,48,52,46,55,56,54,52,50,57,44,51,52,46,48,56,55,54,54,52,93,44,91,45,49,48,52,46,56,57,51,51,55,55,44,51,52,46,48,56,56,52,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,70,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,57,49,55,44,34,98,101,100,115,34,58,50,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,50,52,56,50,53,55,44,51,53,46,56,51,57,49,55,56,93,44,91,45,49,48,54,46,50,53,48,52,57,57,44,51,53,46,55,53,53,56,49,56,93,44,91,45,49,48,54,46,50,52,52,50,49,54,44,51,53,46,50,49,53,54,53,55,93,44,91,45,49,48,54,46,50,52,51,56,55,52,44,51,53,46,48,52,48,48,48,51,93,44,91,45,49,48,53,46,55,49,52,52,49,57,44,51,53,46,48,52,49,54,48,53,93,44,91,45,49,48,53,46,55,50,48,53,50,57,44,51,53,46,56,55,49,49,56,53,93,44,91,45,49,48,53,46,55,49,55,52,55,55,44,51,53,46,57,55,56,55,52,49,93,44,91,45,49,48,54,46,48,55,49,51,52,57,44,51,54,46,48,48,49,57,55,93,44,91,45,49,48,54,46,48,53,52,51,52,54,44,51,53,46,57,51,48,55,56,51,93,44,91,45,49,48,54,46,50,52,53,54,52,57,44,51,53,46,57,51,48,55,52,50,93,44,91,45,49,48,54,46,50,52,56,51,52,53,44,51,53,46,56,53,53,54,53,50,93,44,91,45,49,48,54,46,50,52,56,50,53,55,44,51,53,46,56,51,57,49,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,52,49,56,50,44,34,98,101,100,115,34,58,53,57,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,49,50,53,57,44,51,51,46,54,57,55,49,53,49,93,44,91,45,49,49,56,46,48,57,54,52,55,51,44,51,51,46,54,53,51,54,53,49,93,44,91,45,49,49,55,46,56,49,54,51,53,54,44,51,51,46,52,57,48,56,55,50,93,44,91,45,49,49,55,46,54,49,49,48,56,49,44,51,51,46,51,51,51,57,57,50,93,44,91,45,49,49,55,46,53,55,56,52,56,44,51,51,46,52,53,51,57,50,55,93,44,91,45,49,49,55,46,53,48,57,55,50,50,44,51,51,46,53,48,53,48,49,57,93,44,91,45,49,49,55,46,52,49,50,57,56,55,44,51,51,46,54,53,57,48,52,53,93,44,91,45,49,49,55,46,53,51,51,57,57,57,44,51,51,46,55,49,48,51,53,53,93,44,91,45,49,49,55,46,54,55,51,49,51,52,44,51,51,46,56,55,49,48,48,53,93,44,91,45,49,49,55,46,55,56,51,50,56,55,44,51,51,46,57,52,54,52,49,49,93,44,91,45,49,49,55,46,57,55,54,52,57,56,44,51,51,46,57,52,54,48,53,93,44,91,45,49,49,56,46,48,53,56,57,49,56,44,51,51,46,56,52,54,49,50,49,93,44,91,45,49,49,56,46,49,50,53,57,44,51,51,46,54,57,55,49,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,67,114,117,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,53,56,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,52,53,50,51,44,51,49,46,55,51,49,50,49,57,93,44,91,45,49,49,49,46,49,54,52,49,56,51,44,51,49,46,55,50,53,56,57,93,44,91,45,49,49,49,46,49,54,51,55,49,55,44,51,49,46,53,50,49,55,50,52,93,44,91,45,49,49,49,46,51,54,54,57,50,50,44,51,49,46,53,50,49,51,54,49,93,44,91,45,49,49,49,46,51,54,54,51,55,50,44,51,49,46,52,50,54,48,54,49,93,44,91,45,49,49,49,46,48,55,52,57,56,44,51,49,46,51,51,50,51,52,49,93,44,91,45,49,49,48,46,52,53,57,55,53,49,44,51,49,46,51,51,50,57,49,52,93,44,91,45,49,49,48,46,52,53,50,51,44,51,49,46,55,51,49,50,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,67,117,114,114,105,116,117,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,51,49,51,51,48,51,44,51,54,46,53,53,48,53,50,93,44,91,45,55,54,46,49,49,52,48,54,57,44,51,54,46,51,53,55,52,57,56,93,44,91,45,55,53,46,57,54,57,54,50,53,44,51,54,46,51,48,54,51,49,50,93,44,91,45,55,53,46,56,56,55,57,56,52,44,51,54,46,49,54,51,51,49,49,93,44,91,45,55,53,46,57,48,54,50,57,53,44,51,54,46,48,56,53,56,55,55,93,44,91,45,55,53,46,56,52,48,48,52,54,44,51,54,46,48,50,56,56,51,52,93,44,91,45,55,53,46,55,54,52,55,50,55,44,51,54,46,48,54,48,49,51,57,93,44,91,45,55,53,46,56,49,51,49,48,56,44,51,54,46,50,50,51,53,54,93,44,91,45,55,53,46,55,48,57,48,55,56,44,51,54,46,50,52,52,57,56,52,93,44,91,45,55,53,46,55,57,55,52,57,55,44,51,54,46,53,53,48,57,49,54,93,44,91,45,55,54,46,49,50,50,51,52,57,44,51,54,46,53,53,48,53,50,51,93,44,91,45,55,54,46,51,49,51,51,48,51,44,51,54,46,53,53,48,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,51,49,49,52,53,44,51,56,46,56,53,50,53,48,55,93,44,91,45,56,55,46,57,48,56,49,49,51,44,51,56,46,56,53,48,49,48,55,93,44,91,45,56,55,46,57,49,50,50,56,54,44,51,56,46,53,55,48,49,48,52,93,44,91,45,56,55,46,54,53,49,53,50,57,44,51,56,46,53,54,56,49,54,54,93,44,91,45,56,55,46,53,49,57,54,49,44,51,56,46,54,57,55,49,57,56,93,44,91,45,56,55,46,53,51,49,49,52,53,44,51,56,46,56,53,50,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,51,56,55,44,34,98,101,100,115,34,58,50,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,51,54,52,49,44,52,48,46,53,54,53,53,50,53,93,44,91,45,56,54,46,49,54,53,48,50,52,44,52,48,46,53,54,50,54,52,57,93,44,91,45,56,54,46,51,55,52,52,49,55,44,52,48,46,53,54,49,51,54,49,93,44,91,45,56,54,46,51,55,53,55,54,50,44,52,48,46,52,51,49,56,53,49,93,44,91,45,56,54,46,50,52,50,57,57,50,44,52,48,46,51,55,51,54,54,49,93,44,91,45,56,54,46,50,52,50,56,49,50,44,52,48,46,52,48,50,57,49,52,93,44,91,45,56,53,46,56,54,50,49,49,55,44,52,48,46,52,48,54,56,56,57,93,44,91,45,56,53,46,56,54,51,54,52,49,44,52,48,46,53,54,53,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,54,50,56,57,50,44,51,56,46,53,51,51,53,49,57,93,44,91,45,56,55,46,52,48,55,53,56,51,44,51,56,46,51,55,53,53,48,49,93,44,91,45,56,55,46,51,49,53,57,51,44,51,56,46,51,55,53,48,52,56,93,44,91,45,56,55,46,51,49,54,56,57,51,44,51,56,46,50,52,54,48,55,55,93,44,91,45,56,55,46,48,55,51,48,54,55,44,51,56,46,50,51,50,53,57,54,93,44,91,45,56,55,46,48,55,50,51,54,57,44,51,56,46,53,49,52,55,93,44,91,45,56,55,46,50,52,50,48,57,55,44,51,56,46,53,52,52,57,51,93,44,91,45,56,55,46,52,54,50,56,57,50,44,51,56,46,53,51,51,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,104,114,105,115,116,105,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,54,51,44,34,98,101,100,115,34,58,55,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,51,51,51,54,56,44,51,55,46,48,48,50,49,48,51,93,44,91,45,56,55,46,54,53,57,55,50,52,44,51,54,46,57,54,54,51,57,55,93,44,91,45,56,55,46,54,57,52,49,57,50,44,51,54,46,54,51,55,49,48,56,93,44,91,45,56,55,46,54,52,49,49,53,55,44,51,54,46,54,51,56,49,48,57,93,44,91,45,56,55,46,51,51,53,57,56,44,51,54,46,54,52,49,54,53,57,93,44,91,45,56,55,46,50,53,57,51,55,49,44,51,55,46,48,55,50,52,48,49,93,44,91,45,56,55,46,51,51,51,55,52,49,44,51,55,46,49,53,55,49,56,54,93,44,91,45,56,55,46,53,50,49,54,48,57,44,51,55,46,49,48,53,51,52,52,93,44,91,45,56,55,46,54,56,48,54,49,55,44,51,55,46,49,52,57,50,51,57,93,44,91,45,56,55,46,55,51,51,51,54,56,44,51,55,46,48,48,50,49,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,69,97,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,49,53,53,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,55,52,50,52,53,44,52,50,46,55,55,48,55,56,52,93,44,91,45,56,53,46,48,55,49,54,48,57,44,52,50,46,52,50,49,52,50,56,93,44,91,45,56,52,46,55,49,56,52,57,51,44,52,50,46,52,50,49,53,50,93,44,91,45,56,52,46,54,48,48,52,48,51,44,52,50,46,52,50,49,57,56,52,93,44,91,45,56,52,46,54,48,50,55,54,49,44,52,50,46,55,54,57,56,56,93,44,91,45,56,52,46,56,51,55,48,56,53,44,52,50,46,55,55,48,52,55,57,93,44,91,45,56,53,46,48,55,52,50,52,53,44,52,50,46,55,55,48,55,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,87,97,112,101,108,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,49,53,44,34,98,101,100,115,34,58,50,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,52,48,51,54,49,44,52,49,46,49,54,49,50,57,56,93,44,91,45,57,50,46,54,51,57,48,57,49,44,52,48,46,56,57,56,56,56,54,93,44,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,44,91,45,57,50,46,49,55,57,57,55,52,44,52,49,46,49,54,50,54,54,50,93,44,91,45,57,50,46,52,49,48,50,51,51,44,52,49,46,49,54,49,57,52,50,93,44,91,45,57,50,46,54,52,48,51,54,49,44,52,49,46,49,54,49,50,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,73,109,112,101,114,105,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,50,49,54,44,34,98,101,100,115,34,58,50,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,48,54,49,54,56,44,51,50,46,54,49,56,52,56,93,44,91,45,49,49,52,46,55,49,57,52,57,55,44,51,50,46,55,49,56,55,51,57,93,44,91,45,49,49,52,46,53,50,54,56,53,54,44,51,50,46,55,53,55,48,57,52,93,44,91,45,49,49,52,46,52,54,50,57,50,57,44,51,50,46,57,48,55,57,52,52,93,44,91,45,49,49,52,46,53,49,54,56,52,50,44,51,51,46,48,50,55,56,56,54,93,44,91,45,49,49,52,46,54,55,48,56,48,51,44,51,51,46,48,51,55,57,56,51,93,44,91,45,49,49,52,46,55,48,55,56,57,54,44,51,51,46,48,57,55,52,51,49,93,44,91,45,49,49,52,46,54,55,55,48,51,50,44,51,51,46,50,55,48,49,54,57,93,44,91,45,49,49,52,46,55,50,48,48,54,53,44,51,51,46,52,48,55,56,57,49,93,44,91,45,49,49,52,46,54,50,55,49,50,53,44,51,51,46,52,51,51,53,53,52,93,44,91,45,49,49,53,46,54,48,57,54,53,53,44,51,51,46,52,50,54,56,55,51,93,44,91,45,49,49,54,46,48,56,53,49,54,53,44,51,51,46,52,50,53,57,51,50,93,44,91,45,49,49,54,46,49,48,51,50,53,50,44,51,51,46,48,55,52,54,55,93,44,91,45,49,49,54,46,49,48,54,49,54,56,44,51,50,46,54,49,56,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,52,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,50,50,57,52,44,52,50,46,48,55,49,52,56,52,93,44,91,45,56,54,46,50,50,54,48,57,53,44,52,49,46,55,54,48,52,48,54,93,44,91,45,56,54,46,48,54,50,53,55,53,44,52,49,46,55,54,48,53,49,51,93,44,91,45,56,53,46,55,57,49,51,51,53,44,52,49,46,55,53,57,48,55,56,93,44,91,45,56,53,46,55,54,48,49,56,54,44,52,49,46,55,57,56,56,49,52,93,44,91,45,56,53,46,55,54,50,57,52,51,44,52,50,46,48,54,57,51,50,55,93,44,91,45,56,54,46,50,50,50,57,52,44,52,50,46,48,55,49,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,87,105,108,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,53,56,49,53,44,51,49,46,51,52,54,54,57,53,93,44,91,45,57,49,46,51,48,51,53,56,44,51,49,46,51,54,48,57,55,53,93,44,91,45,57,49,46,52,50,52,48,49,50,44,51,49,46,51,49,53,48,52,93,44,91,45,57,49,46,52,55,56,55,57,57,44,51,49,46,50,51,56,57,57,57,93,44,91,45,57,49,46,53,56,57,52,53,49,44,51,49,46,49,57,49,49,52,93,44,91,45,57,49,46,54,51,54,57,52,50,44,51,48,46,57,57,57,52,49,54,93,44,91,45,57,49,46,49,55,54,49,52,44,51,48,46,57,57,57,48,56,93,44,91,45,57,49,46,48,54,48,50,49,57,44,51,48,46,57,57,56,57,50,55,93,44,91,45,57,49,46,48,53,57,52,51,49,44,51,49,46,50,56,49,56,53,56,93,44,91,45,57,49,46,48,57,53,51,57,56,44,51,49,46,51,50,48,57,55,53,93,44,91,45,57,49,46,49,53,56,49,53,44,51,49,46,51,52,54,54,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,56,50,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,50,34,44,34,78,65,77,69,34,58,34,89,97,107,117,116,97,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,49,46,48,48,49,57,53,53,44,54,48,46,51,57,49,54,56,56,93,44,91,45,49,52,49,46,50,49,51,52,53,49,44,54,48,46,52,51,53,50,54,56,93,44,91,45,49,52,49,46,55,57,48,54,48,49,44,54,48,46,52,51,53,50,51,56,93,44,91,45,49,52,49,46,55,57,48,54,49,57,44,54,48,46,53,50,49,56,57,57,93,44,91,45,49,52,51,46,49,57,51,53,49,57,44,54,48,46,53,50,49,56,50,56,93,44,91,45,49,52,51,46,56,57,51,51,50,53,44,54,48,46,48,50,52,49,54,54,93,44,91,45,49,52,51,46,56,57,53,50,49,44,53,57,46,57,52,50,54,52,55,93,44,91,45,49,52,51,46,54,52,50,55,48,50,44,53,57,46,57,56,56,56,50,53,93,44,91,45,49,52,50,46,56,50,54,48,52,53,44,54,48,46,48,53,49,49,48,50,93,44,91,45,49,52,50,46,53,55,55,57,56,55,44,54,48,46,48,52,51,53,50,93,44,91,45,49,52,49,46,56,56,57,51,49,50,44,53,57,46,57,53,50,54,57,53,93,44,91,45,49,52,48,46,57,50,55,49,57,50,44,53,57,46,55,48,50,48,55,53,93,44,91,45,49,52,48,46,52,50,53,48,57,55,44,53,57,46,54,53,55,48,51,93,44,91,45,49,51,57,46,57,48,50,56,51,53,44,53,57,46,52,57,55,57,56,51,93,44,91,45,49,51,57,46,53,55,57,53,51,57,44,53,57,46,51,55,55,54,48,54,93,44,91,45,49,51,56,46,56,55,51,57,48,51,44,53,57,46,49,56,48,49,54,54,93,44,91,45,49,51,56,46,54,49,56,49,55,54,44,53,57,46,48,55,52,55,50,56,93,44,91,45,49,51,56,46,50,53,50,53,48,54,44,53,56,46,57,56,57,52,52,93,44,91,45,49,51,56,46,48,50,49,52,54,55,44,53,56,46,56,54,49,52,52,57,93,44,91,45,49,51,56,46,48,50,49,54,49,44,53,56,46,55,57,48,48,50,51,93,44,91,45,49,51,55,46,53,50,53,54,55,53,44,53,56,46,57,48,56,57,55,53,93,44,91,45,49,51,55,46,53,44,53,56,46,57,56,53,51,57,53,93,44,91,45,49,51,55,46,54,48,55,51,53,54,44,53,57,46,50,52,51,56,48,51,93,44,91,45,49,51,56,46,54,50,54,50,48,50,44,53,57,46,55,54,56,53,56,93,44,91,45,49,51,56,46,55,48,55,51,55,56,44,53,57,46,57,48,54,51,50,53,93,44,91,45,49,51,57,46,48,53,51,54,55,49,44,53,57,46,57,57,52,56,51,55,93,44,91,45,49,51,57,46,49,57,56,56,52,54,44,54,48,46,48,56,56,50,57,54,93,44,91,45,49,51,57,46,48,55,52,56,49,57,44,54,48,46,51,53,50,53,48,53,93,44,91,45,49,51,57,46,54,57,50,57,56,49,44,54,48,46,51,51,53,50,50,52,93,44,91,45,49,51,57,46,57,56,49,48,57,52,44,54,48,46,49,56,49,57,54,54,93,44,91,45,49,52,48,46,52,53,56,50,48,54,44,54,48,46,51,48,56,48,56,53,93,44,91,45,49,52,48,46,53,50,48,52,50,53,44,54,48,46,50,49,57,56,49,57,93,44,91,45,49,52,49,46,48,48,49,57,56,44,54,48,46,51,48,54,51,54,57,93,44,91,45,49,52,49,46,48,48,49,57,53,53,44,54,48,46,51,57,49,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,83,104,101,114,105,100,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,54,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,50,48,50,49,51,44,51,57,46,53,54,56,48,51,52,93,44,91,45,49,48,48,46,55,50,49,50,57,54,44,51,57,46,49,51,51,51,56,49,93,44,91,45,49,48,48,46,49,54,52,50,44,51,57,46,49,51,50,48,55,49,93,44,91,45,49,48,48,46,49,54,49,54,54,55,44,51,57,46,53,54,55,50,55,55,93,44,91,45,49,48,48,46,49,56,48,51,53,49,44,51,57,46,53,54,54,56,57,93,44,91,45,49,48,48,46,55,50,48,50,49,51,44,51,57,46,53,54,56,48,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,101,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,55,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,44,91,45,56,57,46,55,51,48,49,53,52,44,51,50,46,57,50,57,57,50,52,93,44,91,45,56,57,46,55,51,48,48,49,54,44,51,50,46,56,56,53,48,55,50,93,44,91,45,56,57,46,55,51,48,51,48,52,44,51,50,46,54,51,52,50,50,56,93,44,91,45,56,57,46,55,51,48,49,53,50,44,51,50,46,53,55,55,50,52,56,93,44,91,45,56,57,46,51,50,50,53,57,56,44,51,50,46,53,55,54,52,51,51,93,44,91,45,56,57,46,51,49,55,53,56,56,44,51,50,46,53,55,54,52,53,56,93,44,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,103,117,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,51,54,51,44,34,98,101,100,115,34,58,54,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,54,54,49,48,51,44,49,56,46,51,48,51,51,50,49,93,44,91,45,54,54,46,49,49,55,55,55,52,44,49,56,46,50,48,57,57,52,57,93,44,91,45,54,54,46,48,57,53,48,57,57,44,49,56,46,49,54,57,48,55,55,93,44,91,45,54,54,46,48,53,50,53,53,53,44,49,56,46,49,49,51,48,54,57,93,44,91,45,54,53,46,57,57,55,54,53,44,49,56,46,50,48,54,57,57,50,93,44,91,45,54,54,46,48,50,49,55,52,55,44,49,56,46,51,48,53,48,51,52,93,44,91,45,54,54,46,48,52,49,53,51,53,44,49,56,46,51,49,50,51,52,52,93,44,91,45,54,54,46,48,54,54,49,48,51,44,49,56,46,51,48,51,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,109,117,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,57,48,50,48,56,54,44,49,56,46,53,51,53,50,51,56,93,44,91,45,54,54,46,56,57,56,57,44,49,56,46,51,54,54,49,48,56,93,44,91,45,54,54,46,56,57,51,51,51,57,44,49,56,46,51,54,55,48,56,57,93,44,91,45,54,54,46,56,50,52,50,50,51,44,49,56,46,51,52,50,57,57,56,93,44,91,45,54,54,46,56,51,54,54,57,51,44,49,56,46,53,52,48,50,48,54,93,44,91,45,54,54,46,57,48,50,48,56,54,44,49,56,46,53,51,53,50,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,56,48,56,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,49,57,57,55,57,44,51,51,46,56,49,49,51,51,93,44,91,45,56,56,46,57,51,49,49,55,54,44,51,51,46,56,49,50,51,55,52,93,44,91,45,56,57,46,48,51,52,52,57,56,44,51,51,46,55,51,57,52,51,93,44,91,45,56,57,46,48,49,56,54,49,51,44,51,51,46,53,54,50,49,49,52,93,44,91,45,56,56,46,54,55,49,53,50,54,44,51,51,46,53,54,53,49,51,53,93,44,91,45,56,56,46,54,55,49,50,53,44,51,51,46,53,48,54,49,54,56,93,44,91,45,56,56,46,52,57,50,53,48,52,44,51,51,46,53,52,51,49,53,52,93,44,91,45,56,56,46,53,49,51,57,49,55,44,51,51,46,54,53,48,50,48,57,93,44,91,45,56,56,46,55,49,57,54,50,54,44,51,51,46,54,56,48,50,53,51,93,44,91,45,56,56,46,55,49,57,57,55,57,44,51,51,46,56,49,49,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,53,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,51,55,51,51,44,51,49,46,54,49,49,49,50,52,93,44,91,45,57,49,46,49,53,51,56,54,52,44,51,49,46,54,49,48,48,54,56,93,44,91,45,57,49,46,49,53,56,49,53,44,51,49,46,51,52,54,54,57,53,93,44,91,45,57,49,46,48,57,53,51,57,56,44,51,49,46,51,50,48,57,55,53,93,44,91,45,57,48,46,57,56,51,48,48,50,44,51,49,46,51,52,56,54,55,49,93,44,91,45,57,48,46,54,51,51,51,48,50,44,51,49,46,51,52,57,51,48,54,93,44,91,45,57,48,46,54,51,51,50,51,49,44,51,49,46,54,49,49,52,48,57,93,44,91,45,57,48,46,55,51,55,51,51,44,51,49,46,54,49,49,49,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,78,101,115,104,111,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,55,54,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,44,91,45,56,57,46,51,49,55,53,56,56,44,51,50,46,53,55,54,52,53,56,93,44,91,45,56,56,46,57,49,52,53,49,54,44,51,50,46,53,55,54,57,53,53,93,44,91,45,56,56,46,57,49,52,52,49,51,44,51,50,46,57,50,54,54,93,44,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,69,100,109,117,110,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,48,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,55,48,55,55,48,53,44,52,53,46,53,57,51,51,57,49,93,44,91,45,57,57,46,55,48,56,57,56,55,44,52,53,46,50,52,53,56,54,54,93,44,91,45,57,57,46,53,55,51,51,51,44,52,53,46,50,52,53,51,54,52,93,44,91,45,57,56,46,55,50,50,52,56,49,44,52,53,46,50,52,51,55,54,52,93,44,91,45,57,56,46,55,50,53,48,48,50,44,52,53,46,53,57,49,50,53,50,93,44,91,45,57,57,46,55,48,55,55,48,53,44,52,53,46,53,57,51,51,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,82,195,173,111,32,71,114,97,110,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,53,53,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,56,48,53,51,49,51,44,49,56,46,52,55,56,50,53,51,93,44,91,45,54,53,46,56,54,55,52,52,55,44,49,56,46,51,55,56,49,57,56,93,44,91,45,54,53,46,56,51,54,51,56,55,44,49,56,46,50,55,53,50,52,54,93,44,91,45,54,53,46,56,50,52,50,50,44,49,56,46,50,55,51,48,53,52,93,44,91,45,54,53,46,55,54,54,56,51,49,44,49,56,46,50,56,48,48,48,52,93,44,91,45,54,53,46,55,53,56,56,54,49,44,49,56,46,50,57,48,54,48,52,93,44,91,45,54,53,46,55,49,51,56,50,53,44,49,56,46,52,52,52,48,50,52,93,44,91,45,54,53,46,56,48,53,51,49,51,44,49,56,46,52,55,56,50,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,111,110,101,99,117,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,49,52,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,48,53,56,57,57,44,51,49,46,55,53,51,48,51,53,93,44,91,45,56,55,46,49,51,53,48,53,49,44,51,49,46,54,52,50,52,49,55,93,44,91,45,56,55,46,49,54,54,53,56,49,44,51,49,46,53,49,57,53,54,49,93,44,91,45,56,55,46,52,50,55,52,53,53,44,51,49,46,50,54,48,51,56,54,93,44,91,45,56,54,46,55,54,51,57,54,49,44,51,49,46,50,54,49,50,57,51,93,44,91,45,56,54,46,55,48,48,50,56,50,44,51,49,46,49,57,50,50,49,55,93,44,91,45,56,54,46,55,48,49,53,53,52,44,51,49,46,53,50,51,57,52,54,93,44,91,45,56,54,46,56,51,57,51,56,54,44,51,49,46,53,50,53,50,48,52,93,44,91,45,56,54,46,57,48,54,55,54,57,44,51,49,46,54,51,50,54,55,49,93,44,91,45,56,54,46,57,48,53,56,57,57,44,51,49,46,55,53,51,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,68,101,97,114,98,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,53,48,49,44,34,98,101,100,115,34,58,49,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,54,53,53,55,52,44,51,57,46,51,48,55,50,51,50,93,44,91,45,56,53,46,49,51,50,53,48,56,44,51,56,46,57,52,56,48,53,53,93,44,91,45,56,52,46,56,55,55,54,50,52,44,51,57,46,48,51,49,50,49,51,93,44,91,45,56,52,46,56,50,48,49,53,55,44,51,57,46,49,48,53,52,56,57,93,44,91,45,56,52,46,56,49,57,52,53,44,51,57,46,51,48,53,49,53,51,93,44,91,45,56,53,46,48,54,53,53,55,52,44,51,57,46,51,48,55,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,51,56,44,34,98,101,100,115,34,58,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,49,55,52,55,52,44,51,56,46,57,57,48,56,55,93,44,91,45,56,54,46,50,55,53,50,56,49,44,51,56,46,55,54,51,55,57,53,93,44,91,45,56,54,46,48,57,49,55,48,53,44,51,56,46,55,56,51,51,57,57,93,44,91,45,56,53,46,56,56,56,51,51,52,44,51,56,46,55,51,52,52,52,51,93,44,91,45,56,53,46,55,57,53,51,53,55,44,51,56,46,56,48,55,53,48,56,93,44,91,45,56,53,46,55,57,56,56,48,52,44,51,57,46,48,54,56,53,51,54,93,44,91,45,56,53,46,56,54,48,53,55,51,44,51,57,46,48,52,48,57,49,93,44,91,45,56,54,46,48,56,48,50,55,50,44,51,57,46,48,53,48,50,55,93,44,91,45,56,54,46,51,49,56,49,51,51,44,51,57,46,48,52,56,56,49,93,44,91,45,56,54,46,51,49,55,52,55,52,44,51,56,46,57,57,48,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,57,49,53,44,34,98,101,100,115,34,58,55,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,52,50,48,55,57,44,51,52,46,52,54,53,50,55,54,93,44,91,45,56,56,46,55,51,54,52,54,53,44,51,52,46,53,48,56,57,49,93,44,91,45,56,56,46,56,50,52,57,54,54,44,51,52,46,51,54,52,55,53,57,93,44,91,45,56,56,46,56,50,52,53,50,51,44,51,52,46,48,55,52,57,52,56,93,44,91,45,56,56,46,55,49,56,57,54,52,44,51,52,46,48,55,52,53,50,49,93,44,91,45,56,56,46,53,52,51,51,53,50,44,51,52,46,48,56,57,48,52,52,93,44,91,45,56,56,46,53,52,50,48,55,57,44,51,52,46,52,54,53,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,87,101,115,116,32,70,101,108,105,99,105,97,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,55,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,57,49,46,54,54,50,53,48,54,44,51,48,46,57,55,48,51,54,50,93,44,91,45,57,49,46,54,54,49,51,55,50,44,51,48,46,56,53,55,48,57,57,93,44,91,45,57,49,46,53,49,53,54,50,54,44,51,48,46,56,54,49,51,55,56,93,44,91,45,57,49,46,53,53,51,48,49,57,44,51,48,46,55,51,48,55,57,56,93,44,91,45,57,49,46,51,56,48,54,50,44,51,48,46,55,53,56,56,48,52,93,44,91,45,57,49,46,51,51,48,56,55,44,51,48,46,54,53,56,54,55,55,93,44,91,45,57,49,46,51,49,48,48,54,49,44,51,48,46,54,53,51,57,54,49,93,44,91,45,57,49,46,50,52,48,52,57,52,44,51,48,46,55,56,55,49,54,51,93,44,91,45,57,49,46,49,55,54,49,52,44,51,48,46,57,57,57,48,56,93,44,91,45,57,49,46,54,51,54,57,52,50,44,51,48,46,57,57,57,52,49,54,93,44,91,45,57,49,46,54,54,50,53,48,54,44,51,48,46,57,55,48,51,54,50,93,93,93,44,91,91,91,45,57,49,46,55,50,51,56,48,52,44,51,49,46,48,52,52,50,53,52,93,44,91,45,57,49,46,55,53,48,49,49,57,44,51,49,46,48,49,56,56,49,52,93,44,91,45,57,49,46,54,53,56,51,50,49,44,51,48,46,57,57,52,51,54,53,93,44,91,45,57,49,46,55,50,51,56,48,52,44,51,49,46,48,52,52,50,53,52,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,114,105,116,116,101,110,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,49,51,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,48,50,52,50,57,44,51,53,46,52,52,49,55,50,54,93,44,91,45,57,48,46,53,48,50,57,57,51,44,51,53,46,49,52,52,50,49,52,93,44,91,45,57,48,46,52,48,48,52,51,56,44,51,53,46,49,52,56,50,51,49,93,44,91,45,57,48,46,52,48,56,53,52,44,51,52,46,57,48,52,49,50,49,93,44,91,45,57,48,46,52,48,55,57,57,49,44,51,52,46,56,51,50,57,55,93,44,91,45,57,48,46,51,48,52,53,51,50,44,51,52,46,56,54,48,53,56,56,93,44,91,45,57,48,46,50,52,54,49,49,54,44,51,52,46,57,52,52,51,49,54,93,44,91,45,57,48,46,51,48,57,50,56,57,44,51,52,46,57,57,53,54,57,52,93,44,91,45,57,48,46,50,48,57,51,57,55,44,51,53,46,48,50,54,53,52,54,93,44,91,45,57,48,46,49,55,51,54,48,51,44,51,53,46,49,49,56,48,55,51,93,44,91,45,57,48,46,48,54,54,53,57,49,44,51,53,46,49,51,53,57,57,93,44,91,45,57,48,46,49,53,50,48,57,52,44,51,53,46,50,53,53,57,56,57,93,44,91,45,57,48,46,48,55,52,57,57,50,44,51,53,46,51,56,52,49,53,50,93,44,91,45,57,48,46,49,52,48,50,53,55,44,51,53,46,52,51,54,54,51,54,93,44,91,45,57,48,46,50,56,54,56,57,57,44,51,53,46,52,51,56,53,55,51,93,44,91,45,57,48,46,53,48,50,52,50,57,44,51,53,46,52,52,49,55,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,55,50,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,48,50,52,57,57,44,51,49,46,48,48,48,54,56,53,93,44,91,45,56,53,46,52,56,56,50,57,56,44,51,48,46,57,57,55,48,54,52,93,44,91,45,56,53,46,52,57,55,57,57,50,44,51,48,46,57,57,54,57,51,49,93,44,91,45,56,53,46,53,57,57,57,51,52,44,51,48,46,56,51,48,53,53,50,93,44,91,45,56,53,46,52,51,50,50,55,52,44,51,48,46,55,56,53,52,53,55,93,44,91,45,56,53,46,52,51,52,55,56,50,44,51,48,46,53,54,55,53,54,93,44,91,45,56,53,46,51,56,51,57,52,56,44,51,48,46,53,54,54,56,53,54,93,44,91,45,56,53,46,49,55,49,56,57,49,44,51,48,46,53,54,52,51,51,54,93,44,91,45,56,53,46,49,54,52,55,52,52,44,51,48,46,54,48,56,48,55,57,93,44,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,44,91,45,56,52,46,56,54,52,54,57,51,44,51,48,46,55,49,49,53,52,50,93,44,91,45,56,52,46,57,49,49,49,50,50,44,51,48,46,55,53,49,49,57,49,93,44,91,45,56,53,46,48,48,50,52,57,57,44,51,49,46,48,48,48,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,68,105,99,107,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,44,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,44,91,45,49,48,48,46,53,49,55,52,52,57,44,51,51,46,51,57,55,56,54,54,93,44,91,45,49,48,48,46,53,49,56,54,57,49,44,51,51,46,56,51,53,54,53,93,44,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,97,116,104,101,119,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,51,55,53,54,49,44,51,55,46,53,49,52,51,54,93,44,91,45,55,54,46,52,52,52,55,51,54,44,51,55,46,52,49,56,53,51,57,93,44,91,45,55,54,46,51,48,52,53,44,51,55,46,50,55,56,51,54,49,93,44,91,45,55,54,46,49,51,54,51,48,49,44,51,55,46,50,56,50,49,51,55,93,44,91,45,55,54,46,49,52,48,56,51,53,44,51,55,46,53,52,50,50,50,93,44,91,45,55,54,46,52,51,55,53,54,49,44,51,55,46,53,49,52,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,82,101,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,50,49,54,52,51,44,52,56,46,56,48,55,49,48,56,93,44,91,45,49,48,50,46,48,50,49,52,50,56,44,52,56,46,55,50,48,50,56,51,93,44,91,45,49,48,49,46,56,52,50,50,52,52,44,52,56,46,55,50,48,48,54,52,93,44,91,45,49,48,49,46,56,52,50,56,52,49,44,52,56,46,52,53,57,52,51,57,93,44,91,45,49,48,49,46,48,53,57,56,51,51,44,52,56,46,52,53,56,52,52,56,93,44,91,45,49,48,49,46,48,53,57,54,54,51,44,52,56,46,53,52,53,52,49,57,93,44,91,45,49,48,49,46,52,53,49,50,55,53,44,52,56,46,53,52,54,48,55,57,93,44,91,45,49,48,49,46,52,57,54,54,56,52,44,52,56,46,55,50,48,48,55,56,93,44,91,45,49,48,49,46,52,57,54,53,53,50,44,52,56,46,57,57,57,52,50,49,93,44,91,45,49,48,50,46,48,50,49,49,52,52,44,52,56,46,57,57,57,48,49,53,93,44,91,45,49,48,50,46,48,50,49,54,52,51,44,52,56,46,56,48,55,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,51,34,44,34,78,65,77,69,34,58,34,76,97,32,83,97,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,57,52,49,55,55,44,50,56,46,50,48,52,54,50,55,93,44,91,45,57,57,46,51,56,56,57,52,54,44,50,56,46,48,51,48,52,49,57,93,44,91,45,57,56,46,56,48,51,51,50,53,44,50,56,46,48,53,55,52,56,93,44,91,45,57,56,46,56,48,48,56,52,56,44,50,56,46,54,52,55,51,48,54,93,44,91,45,57,56,46,56,48,48,56,52,49,44,50,56,46,54,52,55,52,56,55,93,44,91,45,57,57,46,51,57,53,55,51,54,44,50,56,46,54,52,48,55,56,52,93,44,91,45,57,57,46,51,57,52,49,55,55,44,50,56,46,50,48,52,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,79,110,111,110,100,97,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,52,50,52,50,44,34,98,101,100,115,34,58,49,56,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,55,57,50,50,52,44,52,51,46,50,50,55,53,49,57,93,44,91,45,55,54,46,52,53,48,55,51,56,44,52,50,46,56,52,53,55,54,93,44,91,45,55,54,46,51,53,54,57,55,52,44,52,50,46,56,52,57,52,53,93,44,91,45,55,54,46,50,55,52,54,55,51,44,52,50,46,55,55,49,50,53,55,93,44,91,45,55,53,46,56,57,54,48,55,57,44,52,50,46,55,57,48,57,54,52,93,44,91,45,55,53,46,57,49,55,49,56,57,44,52,51,46,48,56,53,55,55,57,93,44,91,45,55,53,46,57,57,51,51,57,52,44,52,51,46,49,56,51,51,55,54,93,44,91,45,55,54,46,49,54,57,48,52,55,44,52,51,46,50,52,54,54,54,56,93,44,91,45,55,54,46,52,55,57,50,50,52,44,52,51,46,50,50,55,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,50,54,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,49,54,48,52,50,44,52,49,46,49,54,50,56,48,56,93,44,91,45,57,49,46,55,49,56,49,56,44,52,48,46,57,48,49,48,56,55,93,44,91,45,57,49,46,55,49,56,55,56,55,44,52,48,46,56,49,51,53,52,52,93,44,91,45,57,49,46,52,48,57,52,53,51,44,52,48,46,56,49,50,57,48,53,93,44,91,45,57,49,46,51,55,48,55,49,44,52,49,46,48,55,52,49,49,50,93,44,91,45,57,49,46,52,56,53,55,49,55,44,52,49,46,49,54,50,52,48,53,93,44,91,45,57,49,46,55,49,54,48,52,50,44,52,49,46,49,54,50,56,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,97,114,108,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,51,56,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,44,91,45,57,57,46,54,51,48,52,53,57,44,52,48,46,51,53,49,49,50,93,44,91,45,57,57,46,54,50,56,50,53,52,44,52,48,46,48,48,49,56,52,55,93,44,91,45,57,57,46,54,50,53,51,50,52,44,52,48,46,48,48,49,56,53,57,93,44,91,45,57,57,46,49,55,57,49,51,52,44,52,48,46,48,48,50,48,49,51,93,44,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,80,111,119,100,101,114,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,56,49,57,52,44,52,53,46,55,56,54,57,56,50,93,44,91,45,49,48,54,46,49,57,49,55,51,52,44,52,53,46,55,56,56,54,93,44,91,45,49,48,54,46,50,51,52,53,48,50,44,52,53,46,55,56,56,53,55,56,93,44,91,45,49,48,54,46,50,51,53,55,49,54,44,52,53,46,51,53,49,55,57,54,93,44,91,45,49,48,54,46,50,55,57,55,48,57,44,52,53,46,49,55,57,55,50,56,93,44,91,45,49,48,54,46,50,54,51,55,49,53,44,52,52,46,57,57,51,56,49,54,93,44,91,45,49,48,54,46,48,50,52,56,49,53,44,52,52,46,57,57,51,52,57,53,93,44,91,45,49,48,53,46,48,55,54,54,48,49,44,52,52,46,57,57,57,57,50,54,93,44,91,45,49,48,53,46,48,51,56,50,52,57,44,52,53,46,48,48,48,49,48,54,93,44,91,45,49,48,53,46,48,51,56,50,48,53,44,52,53,46,51,53,50,48,51,53,93,44,91,45,49,48,52,46,57,56,55,51,49,56,44,52,53,46,51,53,50,48,52,93,44,91,45,49,48,52,46,57,56,49,57,52,44,52,53,46,55,56,54,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,74,117,97,110,97,32,68,195,173,97,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,57,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,53,50,55,54,54,44,49,56,46,49,53,50,48,53,55,93,44,91,45,54,54,46,53,52,57,55,48,55,44,49,55,46,57,52,49,57,51,56,93,44,91,45,54,54,46,52,57,57,54,49,51,44,49,55,46,56,52,49,53,53,56,93,44,91,45,54,54,46,52,50,52,53,55,53,44,49,55,46,56,56,49,57,51,56,93,44,91,45,54,54,46,52,50,54,57,56,57,44,49,56,46,48,52,50,54,50,55,93,44,91,45,54,54,46,52,51,48,51,49,52,44,49,56,46,48,56,50,48,53,51,93,44,91,45,54,54,46,53,50,49,56,57,57,44,49,56,46,49,53,49,57,53,52,93,44,91,45,54,54,46,53,52,55,50,50,44,49,56,46,49,53,51,49,51,93,44,91,45,54,54,46,53,53,50,55,54,54,44,49,56,46,49,53,50,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,80,101,112,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,54,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,53,48,51,54,49,44,52,52,46,54,56,51,54,51,51,93,44,91,45,57,50,46,49,51,53,50,48,50,44,52,52,46,54,56,52,51,55,52,93,44,91,45,57,50,46,49,51,53,51,44,52,52,46,53,51,57,53,56,93,44,91,45,57,50,46,51,49,54,49,54,57,44,52,52,46,53,52,49,48,48,57,93,44,91,45,57,50,46,50,52,50,48,49,44,52,52,46,52,53,52,50,53,52,93,44,91,45,57,50,46,48,56,51,53,55,50,44,52,52,46,52,48,55,51,51,54,93,44,91,45,57,50,46,48,50,57,49,56,44,52,52,46,53,56,54,50,57,50,93,44,91,45,57,49,46,54,53,48,50,52,56,44,52,52,46,53,57,54,54,52,57,93,44,91,45,57,49,46,54,53,48,51,54,49,44,52,52,46,54,56,51,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,112,97,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,53,50,50,44,34,98,101,100,115,34,58,49,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,48,48,48,54,56,56,44,51,54,46,57,57,56,51,52,57,93,44,91,45,49,49,48,46,48,48,48,54,55,54,44,51,54,46,52,52,53,50,56,52,93,44,91,45,49,49,48,46,48,48,48,54,55,52,44,51,53,46,54,54,51,48,56,55,93,44,91,45,49,48,57,46,56,50,54,57,54,52,44,51,53,46,54,54,50,56,56,55,93,44,91,45,49,48,57,46,56,52,51,55,54,52,44,51,53,46,53,49,55,56,55,53,93,44,91,45,49,48,57,46,56,52,52,54,50,52,44,51,52,46,56,50,50,53,54,50,93,44,91,45,49,48,57,46,56,54,52,57,56,57,44,51,52,46,53,54,54,56,57,51,93,44,91,45,49,48,57,46,56,52,56,50,52,54,44,51,52,46,52,55,51,52,48,49,93,44,91,45,49,48,57,46,56,53,57,50,55,52,44,51,51,46,55,55,55,54,56,51,93,44,91,45,49,48,57,46,56,57,49,54,55,54,44,51,51,46,53,54,55,56,55,52,93,44,91,45,49,48,57,46,55,57,57,55,56,50,44,51,51,46,52,56,56,51,49,52,93,44,91,45,49,48,57,46,52,57,53,52,52,44,51,51,46,54,53,50,54,57,55,93,44,91,45,49,48,57,46,51,52,56,53,56,49,44,51,51,46,55,55,56,49,50,51,93,44,91,45,49,48,57,46,48,52,54,55,49,55,44,51,51,46,55,55,55,52,48,55,93,44,91,45,49,48,57,46,48,52,54,49,50,50,44,51,52,46,53,55,57,50,57,49,93,44,91,45,49,48,57,46,48,52,53,57,57,54,44,51,52,46,57,53,57,56,49,57,93,44,91,45,49,48,57,46,48,52,54,48,54,55,44,51,54,46,48,48,50,55,48,49,93,44,91,45,49,48,57,46,48,52,53,49,55,50,44,51,54,46,57,57,56,57,55,55,93,44,91,45,49,49,48,46,48,48,48,54,56,56,44,51,54,46,57,57,56,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,53,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,52,55,52,55,55,44,52,48,46,48,51,55,51,48,49,93,44,91,45,57,50,46,56,53,55,57,50,44,51,57,46,54,57,57,57,56,53,93,44,91,45,57,50,46,54,56,57,51,51,49,44,51,57,46,54,57,56,48,57,52,93,44,91,45,57,50,46,54,57,50,49,52,57,44,51,57,46,54,49,48,50,54,53,93,44,91,45,57,50,46,51,48,48,56,55,49,44,51,57,46,54,48,53,51,52,56,93,44,91,45,57,50,46,50,57,57,51,49,54,44,51,57,46,54,48,53,51,52,52,93,44,91,45,57,50,46,50,56,55,56,56,50,44,51,57,46,57,53,50,52,57,93,44,91,45,57,50,46,51,52,53,48,54,52,44,52,48,46,48,51,55,50,49,93,44,91,45,57,50,46,56,52,55,52,55,55,44,52,48,46,48,51,55,51,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,57,34,44,34,78,65,77,69,34,58,34,76,97,109,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,54,50,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,49,53,49,53,44,51,52,46,51,49,50,56,57,49,93,44,91,45,49,48,50,46,54,49,53,52,52,55,44,51,51,46,56,50,53,49,50,49,93,44,91,45,49,48,50,46,48,56,53,55,51,51,44,51,51,46,56,50,52,54,55,53,93,44,91,45,49,48,50,46,48,57,48,52,49,53,44,51,52,46,51,49,51,49,51,50,93,44,91,45,49,48,50,46,53,50,53,54,51,49,44,51,52,46,51,49,51,48,51,52,93,44,91,45,49,48,50,46,54,49,53,49,53,44,51,52,46,51,49,50,56,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,75,105,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,54,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,53,57,53,56,44,51,55,46,55,51,52,56,56,56,93,44,91,45,57,57,46,53,53,54,49,49,57,44,51,55,46,52,54,55,55,50,50,93,44,91,45,57,57,46,53,52,51,49,56,57,44,51,55,46,51,56,49,49,50,52,93,44,91,45,57,57,46,48,49,49,52,57,57,44,51,55,46,51,56,52,50,54,51,93,44,91,45,57,57,46,48,49,50,53,57,56,44,51,55,46,52,55,48,52,50,49,93,44,91,45,57,57,46,48,49,51,53,53,44,51,55,46,55,51,50,57,55,93,44,91,45,57,57,46,53,53,57,53,56,44,51,55,46,55,51,52,56,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,65,117,115,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,53,54,53,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,54,57,56,52,52,44,50,57,46,57,54,49,53,49,54,93,44,91,45,57,54,46,52,49,51,50,56,51,44,50,57,46,56,50,52,57,56,53,93,44,91,45,57,54,46,51,51,48,56,54,57,44,50,57,46,56,49,52,52,52,57,93,44,91,45,57,54,46,50,53,54,54,57,54,44,50,57,46,54,54,55,48,54,49,93,44,91,45,57,54,46,49,55,53,52,50,50,44,50,57,46,54,51,51,56,48,54,93,44,91,45,57,54,46,48,56,56,57,49,50,44,50,57,46,54,48,49,54,53,56,93,44,91,45,57,54,46,48,51,50,55,49,49,44,50,57,46,55,50,55,57,52,52,93,44,91,45,57,54,46,49,48,50,52,57,54,44,50,57,46,56,48,57,54,54,53,93,44,91,45,57,54,46,49,51,49,54,53,44,50,57,46,57,51,55,53,48,52,93,44,91,45,57,54,46,48,56,52,53,52,49,44,51,48,46,48,48,53,49,51,55,93,44,91,45,57,54,46,49,52,54,48,53,50,44,51,48,46,48,55,48,50,50,52,93,44,91,45,57,54,46,50,57,50,56,52,57,44,51,48,46,48,57,54,49,53,93,44,91,45,57,54,46,54,50,49,57,56,44,51,48,46,48,52,52,50,56,51,93,44,91,45,57,54,46,53,54,57,56,52,52,44,50,57,46,57,54,49,53,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,68,97,118,105,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,49,56,56,44,52,48,46,48,51,52,56,56,53,93,44,91,45,57,52,46,50,48,53,56,52,52,44,51,57,46,55,56,56,57,53,52,93,44,91,45,57,51,46,55,53,56,57,57,50,44,51,57,46,55,56,52,54,55,52,93,44,91,45,57,51,46,55,54,49,57,55,51,44,51,57,46,57,53,57,53,53,50,93,44,91,45,57,51,46,55,54,52,48,50,49,44,52,48,46,49,51,50,57,48,57,93,44,91,45,57,52,46,50,49,54,54,57,54,44,52,48,46,49,51,54,54,50,54,93,44,91,45,57,52,46,50,49,56,56,44,52,48,46,48,51,52,56,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,51,34,44,34,78,65,77,69,34,58,34,83,101,109,105,110,111,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,51,55,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,51,48,56,53,53,44,51,49,46,48,54,57,49,57,93,44,91,45,56,52,46,57,50,50,52,50,51,44,51,49,46,48,55,50,53,57,93,44,91,45,56,53,46,48,50,56,53,54,52,44,51,49,46,48,55,53,53,50,51,93,44,91,45,56,53,46,48,48,50,52,57,57,44,51,49,46,48,48,48,54,56,53,93,44,91,45,56,52,46,57,49,49,49,50,50,44,51,48,46,55,53,49,49,57,49,93,44,91,45,56,52,46,56,54,52,54,57,51,44,51,48,46,55,49,49,53,52,50,93,44,91,45,56,52,46,56,54,51,52,54,53,44,51,48,46,55,49,49,52,57,52,93,44,91,45,56,52,46,55,53,53,57,49,55,44,51,48,46,56,56,53,50,55,93,44,91,45,56,52,46,55,51,48,56,53,53,44,51,49,46,48,54,57,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,97,110,105,115,116,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,52,52,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,44,91,45,56,54,46,56,52,54,57,50,56,44,52,52,46,53,49,57,52,50,57,93,44,91,45,56,54,46,57,50,51,52,48,51,44,52,52,46,51,50,56,56,50,53,93,44,91,45,56,54,46,57,56,55,57,57,56,44,52,52,46,49,56,50,54,52,57,93,44,91,45,56,54,46,48,52,51,53,48,55,44,52,52,46,49,54,55,48,56,56,93,44,91,45,56,53,46,56,50,49,49,56,54,44,52,52,46,49,54,52,49,57,55,93,44,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,76,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,54,57,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,53,51,49,54,50,44,52,51,46,53,48,48,49,53,53,93,44,91,45,57,54,46,52,53,51,50,54,44,52,51,46,53,48,48,51,57,93,44,91,45,57,54,46,53,57,57,49,57,49,44,52,51,46,53,48,48,52,53,54,93,44,91,45,57,54,46,53,50,49,55,50,44,52,51,46,51,56,54,55,53,53,93,44,91,45,57,54,46,53,53,52,57,54,57,44,52,51,46,50,53,57,57,53,49,93,44,91,45,57,53,46,56,54,49,57,49,52,44,52,51,46,50,53,55,53,54,54,93,44,91,45,57,53,46,56,54,48,57,52,55,44,52,51,46,53,48,48,48,51,54,93,44,91,45,57,54,46,48,53,51,49,54,50,44,52,51,46,53,48,48,49,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,51,34,44,34,78,65,77,69,34,58,34,72,117,116,99,104,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,55,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,44,91,45,49,48,49,46,54,50,50,56,51,49,44,51,53,46,54,50,52,48,53,55,93,44,91,45,49,48,49,46,48,56,54,48,54,56,44,51,53,46,54,50,53,50,54,55,93,44,91,45,49,48,49,46,48,56,53,55,51,53,44,51,54,46,48,53,53,50,55,54,93,44,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,50,49,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,54,54,52,53,49,44,51,54,46,57,57,55,57,50,50,93,44,91,45,49,48,49,46,53,53,53,50,53,57,44,51,54,46,57,57,53,51,50,52,93,44,91,45,49,48,50,46,48,50,56,50,48,52,44,51,54,46,57,57,51,49,48,50,93,44,91,45,49,48,50,46,48,51,50,51,51,56,44,51,54,46,53,48,48,53,55,53,93,44,91,45,49,48,49,46,54,50,51,57,49,53,44,51,54,46,52,57,57,53,50,56,93,44,91,45,49,48,49,46,48,56,53,49,53,54,44,51,54,46,52,57,57,50,52,52,93,44,91,45,49,48,48,46,57,53,52,49,53,51,44,51,54,46,52,57,57,57,49,54,93,44,91,45,49,48,48,46,57,52,53,52,54,51,44,51,54,46,57,57,56,52,49,54,93,44,91,45,49,48,49,46,48,54,54,52,53,49,44,51,54,46,57,57,55,57,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,87,111,111,100,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,54,55,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,57,53,49,56,54,44,51,54,46,56,49,57,53,54,54,93,44,91,45,57,57,46,50,57,53,49,57,51,44,51,54,46,53,57,53,48,51,49,93,44,91,45,57,57,46,54,48,53,54,51,52,44,51,54,46,53,57,50,55,53,52,93,44,91,45,57,57,46,53,57,54,48,55,57,44,51,54,46,49,54,52,48,54,49,93,44,91,45,57,57,46,51,56,50,48,55,52,44,51,54,46,49,54,52,51,48,49,93,44,91,45,57,56,46,57,53,53,56,52,57,44,51,54,46,49,54,49,53,55,55,93,44,91,45,57,56,46,57,54,48,51,51,52,44,51,54,46,53,48,54,57,49,52,93,44,91,45,57,56,46,57,53,57,57,55,51,44,51,54,46,53,57,56,57,57,49,93,44,91,45,57,57,46,49,51,57,56,53,53,44,51,54,46,55,56,51,48,52,93,44,91,45,57,57,46,50,57,53,49,56,54,44,51,54,46,56,49,57,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,54,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,50,55,53,56,55,44,52,49,46,49,53,56,53,48,56,93,44,91,45,57,52,46,57,50,56,52,53,57,44,52,48,46,57,48,48,54,53,51,93,44,91,45,57,52,46,52,55,48,55,55,57,44,52,48,46,56,57,57,53,48,50,93,44,91,45,57,52,46,52,55,48,54,48,51,44,52,49,46,49,53,55,53,54,54,93,44,91,45,57,52,46,55,48,48,53,56,57,44,52,49,46,49,53,56,48,56,53,93,44,91,45,57,52,46,57,50,55,53,56,55,44,52,49,46,49,53,56,53,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,83,117,116,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,56,55,50,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,57,48,56,50,54,57,44,51,57,46,51,48,51,56,55,56,93,44,91,45,49,50,49,46,57,52,53,53,49,52,44,51,57,46,49,55,57,56,52,51,93,44,91,45,49,50,49,46,56,49,57,49,52,50,44,51,56,46,57,56,56,53,53,49,93,44,91,45,49,50,49,46,56,51,53,52,56,56,44,51,56,46,57,50,52,52,56,49,93,44,91,45,49,50,49,46,55,50,51,51,52,54,44,51,56,46,56,48,51,55,53,57,93,44,91,45,49,50,49,46,54,48,50,56,57,52,44,51,56,46,55,51,53,56,51,56,93,44,91,45,49,50,49,46,52,56,52,51,57,54,44,51,56,46,55,51,52,53,57,56,93,44,91,45,49,50,49,46,52,54,57,51,53,54,44,51,56,46,57,50,53,57,57,50,93,44,91,45,49,50,49,46,52,49,52,55,55,57,44,51,56,46,57,57,54,52,53,50,93,44,91,45,49,50,49,46,53,52,51,51,48,54,44,51,56,46,57,55,50,52,48,52,93,44,91,45,49,50,49,46,54,50,57,48,56,57,44,51,57,46,50,48,52,54,55,56,93,44,91,45,49,50,49,46,54,50,51,55,54,44,51,57,46,50,57,53,54,50,49,93,44,91,45,49,50,49,46,57,48,56,50,54,57,44,51,57,46,51,48,51,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,80,111,116,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,51,55,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,48,54,54,48,52,44,52,49,46,57,57,57,53,57,53,93,44,91,45,55,56,46,50,48,51,52,50,50,44,52,49,46,54,49,56,49,53,55,93,44,91,45,55,56,46,48,53,48,52,52,50,44,52,49,46,52,55,53,52,54,50,93,44,91,45,55,55,46,57,56,57,49,57,52,44,52,49,46,52,55,52,56,50,50,93,44,91,45,55,55,46,53,57,56,49,50,57,44,52,49,46,52,55,56,53,55,54,93,44,91,45,55,55,46,53,57,57,50,55,56,44,52,49,46,53,52,50,50,55,49,93,44,91,45,55,55,46,54,49,48,48,50,55,44,52,49,46,57,57,57,51,54,56,93,44,91,45,55,55,46,55,52,57,57,51,49,44,52,49,46,57,57,56,55,56,50,93,44,91,45,55,56,46,50,48,54,54,48,52,44,52,49,46,57,57,57,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,54,53,34,44,34,78,65,77,69,34,58,34,86,97,108,32,86,101,114,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,50,55,44,34,98,101,100,115,34,58,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,55,54,48,57,50,52,44,50,57,46,55,56,49,56,48,50,93,44,91,45,49,48,49,46,54,52,54,57,51,54,44,50,57,46,55,53,52,53,54,53,93,44,91,45,49,48,49,46,52,53,53,55,57,57,44,50,57,46,55,56,56,48,52,57,93,44,91,45,49,48,49,46,51,48,48,48,50,55,44,50,57,46,54,52,48,55,48,50,93,44,91,45,49,48,49,46,50,54,49,49,55,54,44,50,57,46,53,51,54,55,55,54,93,44,91,45,49,48,49,46,48,54,48,49,53,49,44,50,57,46,52,53,56,54,54,49,93,44,91,45,49,48,49,46,48,48,51,57,53,51,44,50,57,46,51,54,52,55,48,51,93,44,91,45,49,48,48,46,55,57,52,54,50,55,44,50,57,46,50,52,49,54,49,50,93,44,91,45,49,48,48,46,55,52,53,51,48,56,44,50,57,46,50,54,52,56,57,56,93,44,91,45,49,48,48,46,54,57,57,49,52,49,44,50,57,46,52,49,57,55,52,55,93,44,91,45,49,48,48,46,54,57,57,57,51,50,44,50,57,46,54,50,51,56,57,55,93,44,91,45,49,48,48,46,55,48,48,51,57,51,44,51,48,46,50,56,56,50,55,54,93,44,91,45,49,48,48,46,57,54,48,54,52,51,44,51,48,46,50,56,55,55,55,54,93,44,91,45,49,48,49,46,55,53,56,52,44,51,48,46,50,56,56,48,52,52,93,44,91,45,49,48,49,46,55,54,48,57,50,52,44,50,57,46,55,56,49,56,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,72,97,114,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,52,57,56,48,52,44,51,55,46,51,56,52,48,53,54,93,44,91,45,57,56,46,51,52,55,49,52,57,44,51,54,46,57,57,56,49,53,53,93,44,91,45,57,56,46,49,49,49,57,56,53,44,51,54,46,57,57,56,48,57,51,93,44,91,45,57,55,46,56,48,50,51,49,51,44,51,54,46,57,57,56,55,49,56,93,44,91,45,57,55,46,56,48,55,48,53,55,44,51,55,46,51,56,54,50,57,51,93,44,91,45,57,56,46,51,52,57,56,48,52,44,51,55,46,51,56,52,48,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,77,111,110,111,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,57,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,53,54,53,54,44,52,50,46,50,49,53,48,48,50,93,44,91,45,57,54,46,50,55,51,49,50,44,52,50,46,48,52,55,49,53,56,93,44,91,45,57,54,46,49,50,57,49,56,54,44,52,49,46,57,54,53,49,51,54,93,44,91,45,57,54,46,49,51,57,48,48,56,44,52,49,46,56,54,54,50,55,55,93,44,91,45,57,53,46,54,55,50,55,55,49,44,52,49,46,56,54,51,49,52,55,93,44,91,45,57,53,46,54,55,48,56,50,50,44,52,50,46,50,49,49,52,48,56,93,44,91,45,57,54,46,51,53,54,53,54,44,52,50,46,50,49,53,48,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,74,117,97,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,52,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,48,52,55,54,52,57,44,51,57,46,53,52,50,55,52,50,93,44,91,45,49,49,51,46,56,49,53,55,52,51,44,51,57,46,53,53,50,54,52,52,93,44,91,45,49,49,51,46,49,48,55,52,55,53,44,51,57,46,53,53,50,53,49,51,93,44,91,45,49,49,50,46,50,49,50,48,52,53,44,51,57,46,53,53,51,57,56,55,93,44,91,45,49,49,50,46,49,56,56,57,50,50,44,51,57,46,51,50,57,51,57,50,93,44,91,45,49,49,50,46,48,49,54,48,48,51,44,51,57,46,51,49,52,53,54,49,93,44,91,45,49,49,49,46,57,50,50,51,56,57,44,51,57,46,51,56,49,53,57,49,93,44,91,45,49,49,49,46,55,52,55,48,52,52,44,51,57,46,51,56,50,55,53,93,44,91,45,49,49,49,46,55,49,51,50,50,52,44,51,57,46,52,54,48,50,57,52,93,44,91,45,49,49,49,46,55,49,55,52,56,50,44,51,57,46,54,57,52,53,54,93,44,91,45,49,49,49,46,53,56,52,55,53,52,44,51,57,46,55,52,48,49,52,49,93,44,91,45,49,49,49,46,54,52,49,57,52,52,44,51,57,46,56,49,50,56,54,57,93,44,91,45,49,49,49,46,56,50,55,49,48,54,44,51,57,46,57,52,55,48,48,50,93,44,91,45,49,49,50,46,48,51,49,56,51,53,44,51,57,46,55,56,49,49,55,50,93,44,91,45,49,49,50,46,48,54,50,53,53,50,44,51,57,46,57,48,52,54,56,93,44,91,45,49,49,50,46,49,55,57,56,44,52,48,46,48,49,49,54,53,54,93,44,91,45,49,49,50,46,51,52,49,57,56,56,44,51,57,46,57,48,52,52,53,56,93,44,91,45,49,49,51,46,50,52,56,52,57,56,44,51,57,46,57,48,52,55,49,52,93,44,91,45,49,49,52,46,48,52,55,48,50,54,44,51,57,46,57,48,54,48,57,55,93,44,91,45,49,49,52,46,48,52,55,54,52,57,44,51,57,46,53,52,50,55,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,83,116,101,112,104,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,56,51,44,34,98,101,100,115,34,58,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,49,52,50,49,52,56,44,51,52,46,53,48,54,57,57,52,93,44,91,45,57,56,46,49,51,57,50,50,55,44,51,52,46,50,56,57,56,50,52,93,44,91,45,57,55,46,53,54,50,53,49,50,44,51,52,46,50,56,57,49,56,51,93,44,91,45,57,55,46,53,54,50,51,50,51,44,51,52,46,53,48,55,48,51,54,93,44,91,45,57,55,46,53,54,51,48,48,52,44,51,52,46,54,56,49,49,56,53,93,44,91,45,57,55,46,54,54,56,53,49,50,44,51,52,46,54,56,49,51,52,93,44,91,45,57,56,46,48,56,57,48,57,55,44,51,52,46,54,56,49,49,54,51,93,44,91,45,57,56,46,49,52,50,49,52,56,44,51,52,46,53,48,54,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,101,110,97,110,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,51,52,56,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,56,57,56,51,50,44,52,50,46,55,50,51,56,52,52,93,44,91,45,55,53,46,56,54,52,48,50,44,52,50,46,52,49,53,55,48,50,93,44,91,45,55,53,46,56,52,51,55,57,50,44,52,50,46,50,53,57,55,48,55,93,44,91,45,55,53,46,54,51,56,50,57,57,44,52,50,46,50,52,56,54,56,54,93,44,91,45,55,53,46,54,51,55,49,49,44,52,50,46,49,57,53,54,50,56,93,44,91,45,55,53,46,52,49,56,52,50,49,44,52,50,46,49,57,53,48,51,50,93,44,91,45,55,53,46,52,49,53,51,49,57,44,52,50,46,51,49,52,49,53,49,93,44,91,45,55,53,46,52,48,52,52,54,52,44,52,50,46,52,55,57,49,49,55,93,44,91,45,55,53,46,51,51,50,57,52,57,44,52,50,46,53,54,54,51,49,50,93,44,91,45,55,53,46,50,57,53,56,55,55,44,52,50,46,55,52,52,49,48,54,93,44,91,45,55,53,46,56,56,57,56,51,50,44,52,50,46,55,50,51,56,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,80,101,111,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,52,54,51,44,34,98,101,100,115,34,58,49,50,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,56,53,52,55,57,44,52,48,46,57,55,52,52,57,53,93,44,91,45,56,57,46,57,56,54,48,54,52,44,52,48,46,55,49,50,51,54,49,93,44,91,45,56,57,46,56,55,51,54,56,44,52,48,46,54,50,52,57,55,53,93,44,91,45,56,57,46,56,55,50,52,54,51,44,52,48,46,53,49,51,49,50,55,93,44,91,45,56,57,46,54,53,56,48,48,51,44,52,48,46,53,54,55,52,51,56,93,44,91,45,56,57,46,53,53,52,57,57,52,44,52,48,46,55,52,55,54,51,55,93,44,91,45,56,57,46,52,55,50,51,51,44,52,48,46,57,50,49,50,48,54,93,44,91,45,56,57,46,54,51,56,55,50,55,44,52,48,46,57,55,51,55,48,55,93,44,91,45,56,57,46,57,56,53,52,55,57,44,52,48,46,57,55,52,52,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,117,109,98,111,108,100,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,54,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,44,91,45,57,52,46,52,52,51,48,56,51,44,52,50,46,54,52,53,49,54,52,93,44,91,45,57,51,46,57,55,49,55,49,52,44,52,50,46,54,52,52,55,48,55,93,44,91,45,57,51,46,57,55,49,50,51,56,44,52,50,46,57,48,55,55,54,50,93,44,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,49,57,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,52,52,55,56,53,44,52,49,46,54,56,51,54,51,51,93,44,91,45,57,54,46,52,52,51,56,57,56,44,52,49,46,53,50,51,57,51,51,93,44,91,45,57,54,46,51,50,57,48,49,50,44,52,49,46,51,57,51,49,51,54,93,44,91,45,57,53,46,57,51,55,55,57,49,44,52,49,46,51,57,48,55,53,50,93,44,91,45,57,53,46,57,57,54,49,57,52,44,52,49,46,53,48,54,57,54,93,44,91,45,57,54,46,48,53,55,51,51,49,44,52,49,46,53,49,49,48,53,49,93,44,91,45,57,54,46,49,50,50,54,48,52,44,52,49,46,54,56,51,48,52,93,44,91,45,57,54,46,52,52,52,55,56,53,44,52,49,46,54,56,51,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,54,50,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,57,51,56,49,52,44,52,51,46,49,54,52,52,54,52,93,44,91,45,57,48,46,52,50,57,56,50,53,44,52,51,46,50,48,48,57,52,93,44,91,45,57,48,46,52,50,54,57,48,50,44,52,50,46,56,49,50,56,54,50,93,44,91,45,56,57,46,56,51,56,52,49,44,52,50,46,56,49,51,55,57,57,93,44,91,45,56,57,46,56,51,56,49,54,55,44,52,50,46,56,53,55,51,57,55,93,44,91,45,56,57,46,56,51,56,49,51,53,44,52,51,46,50,48,54,48,53,55,93,44,91,45,57,48,46,49,57,51,56,49,52,44,52,51,46,49,54,52,52,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,111,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,52,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,53,51,52,54,50,44,52,54,46,51,52,56,54,55,56,93,44,91,45,57,52,46,54,52,51,57,57,44,52,53,46,55,55,51,57,53,93,44,91,45,57,52,46,50,55,49,55,55,54,44,52,53,46,55,55,53,50,48,56,93,44,91,45,57,52,46,51,53,51,49,49,50,44,52,53,46,56,50,49,57,54,55,93,44,91,45,57,51,46,55,54,51,57,52,56,44,52,53,46,56,50,50,49,52,51,93,44,91,45,57,51,46,56,49,48,51,50,49,44,52,53,46,57,56,51,48,56,93,44,91,45,57,51,46,56,49,48,51,54,50,44,52,54,46,49,53,54,53,56,53,93,44,91,45,57,52,46,51,55,52,53,57,50,44,52,54,46,49,53,55,48,57,51,93,44,91,45,57,52,46,51,52,49,54,55,57,44,52,54,46,50,55,55,55,48,53,93,44,91,45,57,52,46,54,53,51,52,54,50,44,52,54,46,51,52,56,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,104,101,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,53,53,54,49,44,34,98,101,100,115,34,58,55,50,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,49,52,56,54,56,50,44,52,48,46,54,55,52,50,56,49,93,44,91,45,56,48,46,49,56,48,52,50,52,44,52,48,46,54,48,55,55,54,57,93,44,91,45,56,48,46,51,54,48,56,55,51,44,52,48,46,52,55,55,53,51,57,93,44,91,45,56,48,46,49,56,51,52,55,50,44,52,48,46,51,51,50,55,56,50,93,44,91,45,55,57,46,57,49,52,49,51,57,44,52,48,46,50,53,50,53,49,56,93,44,91,45,55,57,46,56,55,48,53,56,53,44,52,48,46,49,57,55,52,49,53,93,44,91,45,55,57,46,55,56,49,55,54,49,44,52,48,46,50,50,55,55,49,49,93,44,91,45,55,57,46,55,55,49,48,56,50,44,52,48,46,51,55,53,52,49,57,93,44,91,45,55,57,46,55,48,52,55,51,57,44,52,48,46,52,50,55,50,51,49,93,44,91,45,55,57,46,55,54,53,52,49,53,44,52,48,46,53,52,57,56,53,52,93,44,91,45,55,57,46,54,57,50,53,56,55,44,52,48,46,54,54,57,55,51,50,93,44,91,45,55,57,46,54,57,50,57,51,44,52,48,46,54,54,57,55,52,52,93,44,91,45,56,48,46,49,52,56,54,56,50,44,52,48,46,54,55,52,50,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,53,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,56,55,56,56,50,44,51,57,46,57,53,50,52,57,93,44,91,45,57,50,46,50,57,57,51,49,54,44,51,57,46,54,48,53,51,52,52,93,44,91,45,57,50,46,49,56,52,57,56,54,44,51,57,46,54,54,50,57,51,50,93,44,91,45,57,49,46,56,52,54,55,52,51,44,51,57,46,54,53,56,53,49,51,93,44,91,45,57,49,46,56,52,48,51,53,51,44,51,57,46,57,52,56,50,51,53,93,44,91,45,57,49,46,57,53,50,55,50,54,44,51,57,46,57,52,57,52,50,54,93,44,91,45,57,50,46,50,56,55,56,56,50,44,51,57,46,57,53,50,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,56,56,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,49,54,49,53,53,44,52,48,46,48,49,48,49,56,56,93,44,91,45,56,51,46,53,56,56,48,52,49,44,51,57,46,55,54,56,55,55,56,93,44,91,45,56,51,46,54,52,55,49,54,57,44,51,57,46,55,55,51,48,50,57,93,44,91,45,56,51,46,54,53,51,51,51,44,51,57,46,55,49,54,56,55,54,93,44,91,45,56,51,46,50,53,50,52,51,53,44,51,57,46,54,57,53,52,51,56,93,44,91,45,56,51,46,50,52,51,55,48,50,44,51,57,46,56,49,50,53,48,51,93,44,91,45,56,51,46,50,53,51,56,51,44,52,48,46,48,52,57,50,49,56,93,44,91,45,56,51,46,50,48,54,50,55,51,44,52,48,46,49,48,55,55,51,51,93,44,91,45,56,51,46,53,48,51,55,49,52,44,52,48,46,49,49,49,52,54,56,93,44,91,45,56,51,46,53,49,54,49,53,53,44,52,48,46,48,49,48,49,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,50,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,57,49,57,57,44,52,48,46,48,48,49,57,54,54,93,44,91,45,57,55,46,51,54,56,54,55,44,51,57,46,54,53,52,48,52,51,93,44,91,45,57,55,46,51,54,56,53,55,52,44,51,57,46,53,54,55,48,49,56,93,44,91,45,57,54,46,57,53,56,55,49,57,44,51,57,46,53,54,54,52,48,49,93,44,91,45,57,54,46,56,48,54,53,52,52,44,51,57,46,53,54,54,52,50,51,93,44,91,45,57,54,46,56,48,53,55,54,56,44,52,48,46,48,48,49,52,57,53,93,44,91,45,57,54,46,57,49,54,52,48,55,44,52,48,46,48,48,49,53,49,49,93,44,91,45,57,55,46,51,54,57,49,57,57,44,52,48,46,48,48,49,57,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,104,97,109,112,97,105,103,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,52,52,56,44,34,98,101,100,115,34,58,54,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,54,48,52,49,56,44,52,48,46,50,56,49,57,51,53,93,44,91,45,56,56,46,52,54,50,50,48,55,44,51,57,46,56,55,57,48,57,50,93,44,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,44,91,45,56,55,46,57,51,50,51,56,55,44,52,48,46,51,57,57,52,93,44,91,45,56,56,46,52,53,57,57,53,55,44,52,48,46,51,57,56,56,53,93,44,91,45,56,56,46,52,54,48,52,49,56,44,52,48,46,50,56,49,57,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,56,57,57,55,49,49,44,52,52,46,56,52,48,54,48,57,93,44,91,45,49,49,55,46,48,52,52,50,49,55,44,52,52,46,55,52,53,49,52,93,44,91,45,49,49,55,46,49,52,52,49,54,49,44,52,52,46,53,52,53,54,52,55,93,44,91,45,49,49,55,46,50,50,52,49,48,52,44,52,52,46,52,56,51,55,51,52,93,44,91,45,49,49,55,46,50,50,48,48,52,56,44,52,52,46,51,48,49,52,48,52,93,44,91,45,49,49,55,46,49,49,57,56,54,49,44,52,52,46,50,55,56,50,55,50,93,44,91,45,49,49,54,46,56,57,55,55,57,44,52,52,46,49,53,50,53,57,93,44,91,45,49,49,54,46,52,53,50,48,54,56,44,52,52,46,49,53,49,52,54,53,93,44,91,45,49,49,54,46,51,53,56,52,57,50,44,52,52,46,49,53,49,49,53,56,93,44,91,45,49,49,54,46,50,57,57,56,55,54,44,52,52,46,52,52,52,53,55,54,93,44,91,45,49,49,54,46,53,50,56,56,57,56,44,52,52,46,52,57,49,53,52,53,93,44,91,45,49,49,54,46,53,50,57,49,54,55,44,52,52,46,54,49,53,49,53,52,93,44,91,45,49,49,54,46,54,50,52,49,53,51,44,52,52,46,54,54,51,50,54,57,93,44,91,45,49,49,54,46,54,50,53,48,51,52,44,52,52,46,56,51,56,57,53,50,93,44,91,45,49,49,54,46,56,57,57,55,49,49,44,52,52,46,56,52,48,54,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,69,100,103,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,44,91,45,56,55,46,57,54,54,51,52,55,44,51,57,46,54,56,53,57,55,51,93,44,91,45,56,55,46,57,54,48,49,55,57,44,51,57,46,52,56,49,51,48,57,93,44,91,45,56,55,46,53,51,49,54,52,44,51,57,46,52,55,55,49,48,53,93,44,91,45,56,55,46,53,51,50,49,57,52,44,51,57,46,54,48,55,51,48,54,93,44,91,45,56,55,46,53,51,51,50,50,56,44,51,57,46,56,56,51,93,44,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,52,54,53,51,55,55,44,52,48,46,52,51,54,51,52,54,93,44,91,45,49,48,51,46,52,55,49,57,57,44,52,48,46,48,48,49,53,48,50,93,44,91,45,49,48,51,46,55,48,53,55,48,49,44,52,48,46,48,48,49,51,54,54,93,44,91,45,49,48,51,46,55,48,54,53,52,55,44,51,57,46,55,51,57,56,57,52,93,44,91,45,49,48,51,46,55,48,55,48,55,50,44,51,57,46,53,54,54,50,57,53,93,44,91,45,49,48,51,46,49,53,52,51,55,54,44,51,57,46,53,54,53,54,53,52,93,44,91,45,49,48,50,46,56,48,50,57,51,50,44,51,57,46,53,54,55,56,52,49,93,44,91,45,49,48,50,46,55,57,51,53,56,50,44,52,48,46,51,53,49,50,56,49,93,44,91,45,49,48,50,46,55,55,57,57,54,44,52,48,46,52,51,56,52,52,54,93,44,91,45,49,48,51,46,52,54,53,51,55,55,44,52,48,46,52,51,54,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,48,49,57,52,44,52,48,46,54,52,52,54,57,93,44,91,45,56,51,46,56,56,48,48,51,57,44,52,48,46,53,51,56,54,57,52,93,44,91,45,56,51,46,53,50,48,50,50,55,44,52,48,46,53,48,52,48,55,55,93,44,91,45,56,51,46,52,49,56,54,55,44,52,48,46,53,48,53,50,50,57,93,44,91,45,56,51,46,52,49,57,56,51,54,44,52,48,46,54,56,54,56,50,51,93,44,91,45,56,51,46,52,57,53,55,57,56,44,52,48,46,55,48,49,53,49,53,93,44,91,45,56,51,46,53,49,53,56,56,51,44,52,48,46,56,49,56,49,51,52,93,44,91,45,56,51,46,56,56,48,48,54,51,44,52,48,46,56,49,57,57,49,57,93,44,91,45,56,51,46,56,56,48,49,57,52,44,52,48,46,54,52,52,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,105,115,115,97,117,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,51,52,44,52,52,46,53,49,50,51,48,51,93,44,91,45,56,53,46,51,51,52,55,55,55,44,52,52,46,49,54,53,49,49,56,93,44,91,45,56,53,46,48,56,55,52,48,51,44,52,52,46,49,54,52,50,52,50,93,44,91,45,56,52,46,56,53,49,55,48,53,44,52,52,46,49,54,49,51,55,53,93,44,91,45,56,52,46,56,53,48,57,50,57,44,52,52,46,53,49,49,48,54,57,93,44,91,45,56,53,46,51,51,52,44,52,52,46,53,49,50,51,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,83,116,117,116,115,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,48,54,52,44,34,98,101,100,115,34,58,49,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,56,49,48,57,53,44,52,55,46,51,50,55,48,50,55,93,44,91,45,57,57,46,52,56,49,48,50,44,52,54,46,57,56,48,51,54,57,93,44,91,45,57,57,46,52,52,53,56,57,49,44,52,54,46,57,56,48,49,56,57,93,44,91,45,57,57,46,52,52,57,55,50,44,52,54,46,54,51,49,54,51,93,44,91,45,57,57,46,48,51,54,54,50,53,44,52,54,46,54,51,48,50,49,49,93,44,91,45,57,56,46,52,51,57,48,53,54,44,52,54,46,54,51,49,49,50,93,44,91,45,57,56,46,52,51,57,55,51,52,44,52,54,46,57,55,57,54,51,49,93,44,91,45,57,56,46,52,54,55,48,54,54,44,52,55,46,50,52,48,52,48,52,93,44,91,45,57,56,46,52,57,57,50,52,54,44,52,55,46,51,50,54,53,51,56,93,44,91,45,57,57,46,50,54,54,50,49,53,44,52,55,46,51,50,54,57,57,57,93,44,91,45,57,57,46,52,56,49,48,57,53,44,52,55,46,51,50,55,48,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,51,34,44,34,78,65,77,69,34,58,34,83,104,97,110,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,49,49,56,54,51,44,51,55,46,52,49,53,50,55,55,93,44,91,45,57,49,46,54,52,54,54,50,54,44,51,55,46,52,50,50,55,51,49,93,44,91,45,57,49,46,54,53,53,54,48,55,44,51,55,46,48,52,56,57,50,53,93,44,91,45,57,49,46,54,53,56,49,49,49,44,51,54,46,56,56,56,55,50,52,93,44,91,45,57,49,46,50,50,50,56,51,44,51,54,46,56,56,51,56,53,55,93,44,91,45,57,49,46,50,49,55,49,53,44,51,55,46,48,56,54,49,57,55,93,44,91,45,57,49,46,48,49,55,55,54,54,44,51,55,46,48,57,53,54,55,55,93,44,91,45,57,49,46,49,50,54,48,50,56,44,51,55,46,49,57,57,52,56,93,44,91,45,57,49,46,50,49,49,56,54,51,44,51,55,46,52,49,53,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,50,51,34,44,34,78,65,77,69,34,58,34,83,109,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,48,49,53,44,34,98,101,100,115,34,58,49,55,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,52,57,49,54,53,44,51,50,46,51,53,53,50,51,51,93,44,91,45,57,53,46,52,56,56,44,51,50,46,50,51,53,52,56,52,93,44,91,45,57,53,46,52,53,57,57,48,56,44,51,50,46,49,51,53,53,53,57,93,44,91,45,57,52,46,57,56,53,50,55,50,44,51,50,46,49,51,55,57,56,57,93,44,91,45,57,52,46,57,56,53,52,49,49,44,51,50,46,51,55,48,56,50,93,44,91,45,57,52,46,57,56,54,57,51,53,44,51,50,46,53,51,55,50,52,54,93,44,91,45,57,53,46,49,53,51,52,49,44,51,50,46,53,55,48,49,49,53,93,44,91,45,57,53,46,53,49,48,57,52,53,44,51,50,46,54,50,48,51,50,56,93,44,91,45,57,53,46,53,57,52,53,52,49,44,51,50,46,54,56,55,48,50,54,93,44,91,45,57,53,46,53,57,52,51,44,51,50,46,52,55,57,56,53,56,93,44,91,45,57,53,46,52,52,57,49,54,53,44,51,50,46,51,53,53,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,84,117,108,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,50,55,56,49,44,34,98,101,100,115,34,58,52,52,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,48,49,49,55,49,44,51,54,46,52,50,51,54,56,54,93,44,91,45,57,54,46,48,48,49,50,50,54,44,51,54,46,49,54,49,50,57,54,93,44,91,45,57,54,46,50,54,56,50,56,55,44,51,54,46,49,54,49,57,56,93,44,91,45,57,54,46,50,57,55,56,56,56,44,51,54,46,49,54,50,50,55,57,93,44,91,45,57,54,46,50,57,55,57,48,53,44,51,54,46,48,55,53,55,54,54,93,44,91,45,57,54,46,48,50,57,53,56,51,44,51,54,46,48,55,53,51,54,54,93,44,91,45,57,54,46,48,51,51,49,49,56,44,51,53,46,56,53,54,56,50,52,93,44,91,45,57,53,46,56,49,57,52,53,57,44,51,53,46,56,53,54,50,53,53,93,44,91,45,57,53,46,55,54,49,55,48,50,44,51,53,46,57,48,49,49,52,55,93,44,91,45,57,53,46,55,54,49,54,53,44,51,54,46,49,54,50,55,53,93,44,91,45,57,53,46,56,49,53,52,44,51,54,46,49,54,50,54,51,93,44,91,45,57,53,46,56,49,50,51,52,50,44,51,54,46,52,50,51,53,56,93,44,91,45,57,54,46,48,48,49,49,55,49,44,51,54,46,52,50,51,54,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,99,73,110,116,111,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,56,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,49,50,57,53,51,44,51,53,46,53,53,49,55,51,56,93,44,91,45,57,53,46,56,50,50,51,54,49,44,51,53,46,53,53,49,54,57,51,93,44,91,45,57,53,46,56,55,53,52,48,53,44,51,53,46,51,55,54,54,57,93,44,91,45,57,53,46,57,56,49,52,54,53,44,51,53,46,51,55,54,55,56,56,93,44,91,45,57,53,46,57,56,49,53,49,49,44,51,53,46,50,56,57,55,56,93,44,91,45,57,53,46,57,56,51,48,55,55,44,51,53,46,49,53,49,54,57,53,93,44,91,45,57,53,46,55,49,54,49,53,55,44,51,53,46,49,56,57,51,53,50,93,44,91,45,57,53,46,52,53,49,50,53,44,51,53,46,50,57,54,48,49,57,93,44,91,45,57,53,46,51,52,52,55,54,54,44,51,53,46,50,57,51,48,51,53,93,44,91,45,57,53,46,51,52,52,55,57,57,44,51,53,46,53,53,49,55,53,49,93,44,91,45,57,53,46,55,49,50,57,53,51,44,51,53,46,53,53,49,55,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,57,53,34,44,34,78,65,77,69,34,58,34,82,111,98,101,114,116,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,50,57,49,50,49,44,51,49,46,49,48,53,56,55,49,93,44,91,45,57,54,46,55,53,54,51,51,44,51,48,46,57,50,55,50,48,54,93,44,91,45,57,54,46,54,52,49,50,56,44,51,48,46,56,49,56,48,53,49,93,44,91,45,57,54,46,54,50,49,50,56,49,44,51,48,46,55,51,48,56,49,57,93,44,91,45,57,54,46,53,54,54,57,56,51,44,51,48,46,54,57,53,54,55,93,44,91,45,57,54,46,52,53,55,54,51,44,51,48,46,55,52,52,52,55,52,93,44,91,45,57,54,46,51,51,56,48,48,49,44,51,48,46,57,50,48,53,51,49,93,44,91,45,57,54,46,50,52,49,48,50,44,51,48,46,57,55,51,55,51,55,93,44,91,45,57,54,46,51,50,55,54,51,44,51,49,46,50,56,52,56,55,54,93,44,91,45,57,54,46,51,49,57,49,54,53,44,51,49,46,51,53,55,49,50,57,93,44,91,45,57,54,46,53,57,54,56,54,50,44,51,49,46,50,50,48,57,93,44,91,45,57,54,46,56,50,57,49,50,49,44,51,49,46,49,48,53,56,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,71,105,108,108,101,115,112,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,48,56,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,57,49,54,55,44,51,48,46,52,57,57,56,55,53,93,44,91,45,57,56,46,57,54,52,50,51,50,44,51,48,46,52,57,56,52,56,50,93,44,91,45,57,57,46,51,48,51,57,57,54,44,51,48,46,52,57,57,56,51,50,93,44,91,45,57,57,46,51,48,49,55,49,56,44,51,48,46,50,56,54,54,53,51,93,44,91,45,57,57,46,51,48,48,57,56,56,44,51,48,46,49,51,52,50,57,56,93,44,91,45,57,56,46,57,50,48,49,52,55,44,51,48,46,49,51,56,50,57,93,44,91,45,57,56,46,53,56,55,56,57,55,44,51,48,46,49,51,56,57,53,52,93,44,91,45,57,56,46,53,57,49,54,55,44,51,48,46,52,57,57,56,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,79,97,107,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,48,56,52,51,44,34,98,101,100,115,34,58,52,53,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,56,54,52,57,51,44,52,50,46,55,56,51,50,54,51,93,44,91,45,56,51,46,54,54,52,56,48,56,44,52,50,46,52,51,49,49,55,57,93,44,91,45,56,51,46,53,53,49,57,48,55,44,52,50,46,52,51,53,49,54,54,93,44,91,45,56,51,46,48,56,51,51,57,51,44,52,50,46,52,52,55,49,53,51,93,44,91,45,56,51,46,49,48,50,56,57,49,44,52,50,46,56,56,56,54,52,55,93,44,91,45,56,51,46,52,53,51,51,54,52,44,52,50,46,56,56,48,52,51,50,93,44,91,45,56,51,46,54,56,57,51,56,52,44,52,50,46,56,55,49,50,54,51,93,44,91,45,56,51,46,54,56,54,52,57,51,44,52,50,46,55,56,51,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,71,111,108,100,101,110,32,86,97,108,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,52,57,54,56,44,52,55,46,51,51,48,49,52,49,93,44,91,45,49,48,52,46,48,52,53,50,51,52,44,52,54,46,54,52,49,53,48,52,93,44,91,45,49,48,52,46,48,52,53,50,49,49,44,52,54,46,53,52,48,56,54,49,93,44,91,45,49,48,51,46,56,48,48,56,56,44,52,54,46,53,52,48,54,55,49,93,44,91,45,49,48,51,46,56,48,48,56,55,51,44,52,54,46,54,50,57,55,51,49,93,44,91,45,49,48,51,46,54,48,57,50,55,51,44,52,54,46,54,50,57,56,50,50,93,44,91,45,49,48,51,46,54,48,57,53,57,50,44,52,54,46,57,55,57,56,53,52,93,44,91,45,49,48,51,46,54,54,55,48,55,51,44,52,54,46,57,55,57,55,55,53,93,44,91,45,49,48,51,46,54,54,54,54,55,53,44,52,55,46,51,50,57,50,53,54,93,44,91,45,49,48,52,46,48,52,52,57,54,56,44,52,55,46,51,51,48,49,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,78,105,111,98,114,97,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,56,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,52,55,56,54,44,52,51,46,53,48,51,51,50,56,93,44,91,45,49,48,52,46,56,57,57,57,52,49,44,52,51,46,52,57,57,54,52,93,44,91,45,49,48,52,46,56,57,50,52,51,55,44,52,50,46,54,48,56,57,51,57,93,44,91,45,49,48,52,46,54,53,53,54,51,57,44,52,50,46,54,48,57,52,54,56,93,44,91,45,49,48,52,46,48,53,50,56,51,56,44,52,50,46,54,49,49,55,54,55,93,44,91,45,49,48,52,46,48,53,51,48,50,56,44,52,51,46,48,48,48,53,56,53,93,44,91,45,49,48,52,46,48,53,52,56,48,51,44,52,51,46,52,55,55,56,49,53,93,44,91,45,49,48,52,46,48,53,52,55,56,54,44,52,51,46,53,48,51,51,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,80,105,112,101,115,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,56,53,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,53,50,55,55,51,44,52,52,46,49,57,54,55,56,93,44,91,45,57,54,46,52,53,50,57,56,56,44,52,51,46,56,52,57,53,48,55,93,44,91,45,57,54,46,48,54,52,54,50,44,52,51,46,56,52,57,48,51,57,93,44,91,45,57,54,46,48,54,51,55,55,56,44,52,52,46,49,57,54,52,50,53,93,44,91,45,57,54,46,48,55,56,53,56,44,52,52,46,49,57,54,54,50,93,44,91,45,57,54,46,52,53,50,55,55,51,44,52,52,46,49,57,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,75,105,110,103,32,71,101,111,114,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,57,55,54,55,44,51,56,46,50,55,56,48,52,54,93,44,91,45,55,55,46,48,49,56,52,57,56,44,51,56,46,51,56,49,57,52,49,93,44,91,45,55,55,46,50,56,55,48,57,55,44,51,56,46,51,52,56,56,93,44,91,45,55,55,46,51,50,54,54,57,50,44,51,56,46,50,52,53,49,51,54,93,44,91,45,55,55,46,49,49,53,57,57,55,44,51,56,46,49,52,57,57,51,49,93,44,91,45,55,55,46,48,54,49,54,57,53,44,51,56,46,49,54,49,54,51,49,93,44,91,45,55,54,46,57,57,55,54,55,44,51,56,46,50,55,56,48,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,56,54,48,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,57,56,50,50,51,52,44,52,55,46,57,54,50,48,50,53,93,44,91,45,49,49,57,46,49,48,51,56,55,51,44,52,55,46,57,54,49,55,54,51,93,44,91,45,49,49,57,46,50,49,50,50,50,53,44,52,55,46,56,56,55,55,48,56,93,44,91,45,49,49,57,46,50,49,50,52,49,44,52,55,46,56,48,48,54,57,53,93,44,91,45,49,49,57,46,51,52,49,55,54,55,44,52,55,46,54,49,50,51,56,56,93,44,91,45,49,49,57,46,53,51,50,56,56,57,44,52,55,46,53,50,55,55,53,54,93,44,91,45,49,49,57,46,53,51,51,49,50,51,44,52,55,46,52,52,49,50,48,55,93,44,91,45,49,49,57,46,56,55,53,55,54,44,52,55,46,52,51,55,52,57,50,93,44,91,45,49,50,48,46,48,48,52,55,48,52,44,52,55,46,51,49,57,57,57,52,93,44,91,45,49,50,48,46,48,48,55,48,55,52,44,52,55,46,50,50,48,49,51,51,93,44,91,45,49,50,48,46,48,52,50,56,54,54,44,52,55,46,48,55,51,52,53,51,93,44,91,45,49,49,57,46,57,50,55,53,51,55,44,52,54,46,56,49,55,48,57,50,93,44,91,45,49,49,57,46,57,55,51,48,51,54,44,52,54,46,55,51,55,49,50,54,93,44,91,45,49,49,57,46,56,55,52,48,52,50,44,52,54,46,54,50,56,50,56,51,93,44,91,45,49,49,57,46,54,53,57,49,56,57,44,52,54,46,54,52,48,51,51,51,93,44,91,45,49,49,57,46,53,49,54,53,56,50,44,52,54,46,55,50,55,54,51,56,93,44,91,45,49,49,57,46,52,53,51,49,57,44,52,54,46,54,55,57,50,52,51,93,44,91,45,49,49,57,46,51,54,57,52,50,57,44,52,54,46,55,51,55,54,57,53,93,44,91,45,49,49,57,46,51,54,56,54,54,50,44,52,54,46,57,49,50,53,54,50,93,44,91,45,49,49,56,46,57,56,50,54,53,50,44,52,54,46,57,49,49,51,52,52,93,44,91,45,49,49,56,46,57,55,57,55,55,55,44,52,55,46,50,54,49,55,48,57,93,44,91,45,49,49,56,46,57,55,51,53,48,52,44,52,55,46,57,52,51,52,49,52,93,44,91,45,49,49,56,46,57,56,50,50,51,52,44,52,55,46,57,54,50,48,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,82,101,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,50,49,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,50,52,56,53,50,44,52,52,46,56,57,49,51,49,93,44,91,45,57,53,46,52,56,50,56,56,57,44,52,52,46,56,57,48,55,49,50,93,44,91,45,57,53,46,52,56,50,56,52,51,44,52,52,46,55,53,50,53,48,53,93,44,91,45,57,53,46,51,54,48,49,55,55,44,52,52,46,54,57,56,53,52,93,44,91,45,57,53,46,50,52,48,52,51,57,44,52,52,46,54,54,52,54,48,52,93,44,91,45,57,53,46,48,49,51,53,57,57,44,52,52,46,53,52,50,56,51,51,93,44,91,45,57,52,46,56,54,53,56,50,52,44,52,52,46,52,57,56,50,49,56,93,44,91,45,57,52,46,55,56,48,54,51,44,52,52,46,52,53,54,54,53,93,44,91,45,57,52,46,54,50,52,50,44,52,52,46,52,53,54,48,51,93,44,91,45,57,52,46,54,50,57,52,56,57,44,52,52,46,55,49,54,54,54,51,93,44,91,45,57,52,46,52,57,56,48,55,52,44,52,52,46,55,49,55,49,55,49,93,44,91,45,57,52,46,53,48,50,51,57,53,44,52,52,46,56,57,50,50,57,53,93,44,91,45,57,52,46,55,53,56,49,56,57,44,52,52,46,56,57,50,48,57,55,93,44,91,45,57,53,46,50,52,56,53,50,44,52,52,46,56,57,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,97,99,104,117,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,51,49,52,56,44,34,98,101,100,115,34,58,49,56,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,53,56,53,53,52,44,50,57,46,56,51,48,49,52,52,93,44,91,45,56,50,46,54,53,54,51,48,49,44,50,57,46,53,54,52,56,49,49,93,44,91,45,56,50,46,53,53,54,55,54,54,44,50,57,46,52,56,48,48,53,53,93,44,91,45,56,50,46,52,48,54,54,50,44,50,57,46,52,56,53,48,52,56,93,44,91,45,56,50,46,48,53,53,56,57,57,44,50,57,46,52,55,49,50,51,50,93,44,91,45,56,50,46,48,53,53,54,50,53,44,50,57,46,55,49,56,50,51,50,93,44,91,45,56,50,46,49,51,51,49,50,54,44,50,57,46,56,51,53,57,52,57,93,44,91,45,56,50,46,50,56,49,56,51,55,44,50,57,46,56,52,52,52,52,56,93,44,91,45,56,50,46,52,49,56,55,50,56,44,50,57,46,57,50,51,48,57,51,93,44,91,45,56,50,46,53,50,57,55,48,53,44,50,57,46,57,52,48,56,56,49,93,44,91,45,56,50,46,54,53,56,53,53,52,44,50,57,46,56,51,48,49,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,111,111,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,50,54,53,53,55,44,52,50,46,48,57,50,49,57,52,93,44,91,45,49,48,49,46,52,50,53,57,50,44,52,49,46,55,52,51,48,53,57,93,44,91,45,49,48,49,46,52,48,54,52,54,54,44,52,49,46,55,52,51,50,93,44,91,45,49,48,48,46,56,52,50,52,53,57,44,52,49,46,55,52,48,52,48,52,93,44,91,45,49,48,48,46,56,52,54,49,50,57,44,52,50,46,48,56,56,49,54,54,93,44,91,45,49,48,49,46,52,50,54,53,53,55,44,52,50,46,48,57,50,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,80,114,105,110,99,101,32,69,100,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,57,53,54,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,53,57,52,52,51,54,44,51,55,46,51,57,55,57,55,52,93,44,91,45,55,56,46,54,56,49,53,55,51,44,51,55,46,50,52,56,55,53,57,93,44,91,45,55,56,46,54,57,50,52,55,50,44,51,55,46,50,48,52,55,56,54,93,44,91,45,55,56,46,52,52,51,54,52,52,44,51,55,46,48,55,57,51,55,49,93,44,91,45,55,56,46,50,51,57,51,53,52,44,51,55,46,49,50,48,48,56,57,93,44,91,45,55,56,46,50,51,49,50,51,52,44,51,55,46,50,57,54,50,50,93,44,91,45,55,56,46,50,51,53,48,51,57,44,51,55,46,51,54,56,49,48,50,93,44,91,45,55,56,46,51,50,49,56,52,44,51,55,46,51,48,57,50,57,50,93,44,91,45,55,56,46,52,54,53,48,56,57,44,51,55,46,51,51,57,54,55,55,93,44,91,45,55,56,46,53,57,52,52,51,54,44,51,55,46,51,57,55,57,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,97,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,53,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,50,52,55,51,57,49,44,51,57,46,55,48,52,51,53,93,44,91,45,49,49,49,46,48,56,53,51,53,53,44,51,57,46,53,50,49,49,55,93,44,91,45,49,49,49,46,48,55,55,53,52,53,44,51,57,46,52,54,57,55,52,51,93,44,91,45,49,49,48,46,48,50,52,49,49,56,44,51,57,46,52,54,57,50,54,57,93,44,91,45,49,49,48,46,48,50,51,57,54,51,44,51,57,46,52,54,57,50,54,56,93,44,91,45,49,48,57,46,57,55,54,56,49,52,44,51,57,46,56,48,54,50,51,93,44,91,45,49,49,48,46,56,53,55,55,56,44,51,57,46,56,49,51,50,56,53,93,44,91,45,49,49,49,46,50,52,55,52,57,54,44,51,57,46,56,49,51,48,50,56,93,44,91,45,49,49,49,46,50,52,55,51,57,49,44,51,57,46,55,48,52,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,117,99,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,54,51,55,48,44,34,98,101,100,115,34,58,49,49,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,52,56,52,48,53,55,44,52,48,46,52,49,56,52,53,49,93,44,91,45,55,53,46,48,49,53,48,54,54,44,52,48,46,49,51,55,57,57,50,93,44,91,45,55,52,46,57,55,51,57,56,49,44,52,48,46,48,52,56,53,57,53,93,44,91,45,55,52,46,55,50,50,48,52,56,44,52,48,46,49,53,48,51,49,49,93,44,91,45,55,52,46,57,52,50,57,48,57,44,52,48,46,51,52,49,54,56,51,93,44,91,45,55,53,46,48,54,48,57,49,55,44,52,48,46,52,50,49,55,51,55,93,44,91,45,55,53,46,48,54,56,49,44,52,48,46,53,52,49,52,56,56,93,44,91,45,55,53,46,49,56,57,54,44,52,48,46,53,57,49,55,55,54,93,44,91,45,55,53,46,49,57,54,56,48,51,44,52,48,46,54,48,56,53,56,93,44,91,45,55,53,46,51,51,51,53,49,52,44,52,48,46,53,51,55,48,53,55,93,44,91,45,55,53,46,52,56,52,48,53,55,44,52,48,46,52,49,56,52,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,49,49,55,53,52,44,52,52,46,56,57,55,50,50,55,93,44,91,45,57,57,46,51,48,48,49,56,44,52,52,46,49,57,52,56,51,93,44,91,45,57,56,46,57,50,53,57,53,51,44,52,52,46,49,57,54,53,55,53,93,44,91,45,57,56,46,55,48,48,52,53,51,44,52,52,46,49,57,54,55,50,55,93,44,91,45,57,56,46,55,48,53,55,54,50,44,52,52,46,54,51,52,49,53,57,93,44,91,45,57,56,46,55,49,54,52,57,56,44,52,52,46,56,57,54,57,50,53,93,44,91,45,57,57,46,51,49,49,55,53,52,44,52,52,46,56,57,55,50,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,121,99,111,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,56,53,57,44,34,98,101,100,115,34,58,51,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,53,57,56,49,50,57,44,52,49,46,52,55,56,53,55,54,93,44,91,45,55,55,46,53,50,54,53,51,55,44,52,49,46,51,53,56,53,50,56,93,44,91,45,55,55,46,49,52,52,49,49,49,44,52,49,46,48,54,56,56,52,93,44,91,45,55,54,46,57,55,55,57,51,57,44,52,49,46,48,56,55,56,56,51,93,44,91,45,55,54,46,56,57,54,49,49,52,44,52,49,46,49,51,57,48,55,93,44,91,45,55,54,46,55,51,50,54,55,50,44,52,49,46,49,55,50,48,52,93,44,91,45,55,54,46,54,52,48,55,54,55,44,52,49,46,49,53,53,55,49,56,93,44,91,45,55,54,46,52,52,55,53,57,55,44,52,49,46,50,55,53,54,50,57,93,44,91,45,55,54,46,53,57,50,53,51,50,44,52,49,46,51,48,52,51,51,50,93,44,91,45,55,54,46,55,52,57,52,57,55,44,52,49,46,52,48,53,53,55,50,93,44,91,45,55,54,46,56,49,51,55,51,49,44,52,49,46,53,57,48,48,51,52,93,44,91,45,55,54,46,56,55,52,55,49,52,44,52,49,46,53,57,54,57,49,57,93,44,91,45,55,54,46,57,54,48,52,55,57,44,52,49,46,53,53,49,51,55,49,93,44,91,45,55,55,46,53,57,57,50,55,56,44,52,49,46,53,52,50,50,55,49,93,44,91,45,55,55,46,53,57,56,49,50,57,44,52,49,46,52,55,56,53,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,76,97,116,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,50,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,51,57,55,53,50,44,52,55,46,49,50,55,50,54,57,93,44,91,45,49,49,55,46,48,51,57,54,57,52,44,52,54,46,53,52,49,55,48,57,93,44,91,45,49,49,54,46,55,49,57,48,56,53,44,52,54,46,53,52,50,56,55,52,93,44,91,45,49,49,54,46,54,49,49,55,52,44,52,54,46,54,51,49,50,52,53,93,44,91,45,49,49,54,46,52,53,54,48,57,56,44,52,54,46,54,50,57,48,57,55,93,44,91,45,49,49,54,46,51,50,57,53,52,44,52,54,46,54,50,55,57,53,55,93,44,91,45,49,49,54,46,51,50,57,52,51,54,44,52,54,46,57,51,52,54,54,57,93,44,91,45,49,49,54,46,51,50,57,52,49,56,44,52,55,46,48,50,49,57,49,53,93,44,91,45,49,49,54,46,56,51,53,50,54,57,44,52,55,46,48,51,50,52,53,50,93,44,91,45,49,49,55,46,48,51,57,55,53,50,44,52,55,46,49,50,55,50,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,55,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,51,51,55,51,54,44,51,51,46,52,51,52,52,55,50,93,44,91,45,56,51,46,53,52,53,56,55,54,44,51,51,46,49,55,49,57,52,52,93,44,91,45,56,51,46,52,50,57,48,57,44,51,51,46,49,56,53,51,53,50,93,44,91,45,56,51,46,50,55,52,49,48,56,44,51,51,46,49,56,55,50,51,56,93,44,91,45,56,51,46,49,54,52,50,48,55,44,51,51,46,51,53,53,48,51,93,44,91,45,56,51,46,50,55,57,57,51,49,44,51,51,46,52,56,51,52,51,56,93,44,91,45,56,51,46,53,51,51,55,51,54,44,51,51,46,52,51,52,52,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,52,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,52,48,34,44,34,78,65,77,69,34,58,34,71,97,108,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,51,56,44,34,98,101,100,115,34,58,49,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,51,50,50,55,49,44,51,54,46,54,55,49,53,57,51,93,44,91,45,56,48,46,57,49,52,49,55,51,44,51,54,46,54,53,48,50,52,54,93,44,91,45,56,48,46,56,55,55,50,55,52,44,51,54,46,54,57,50,50,49,53,93,44,91,45,56,48,46,57,49,54,49,54,54,44,51,54,46,54,57,52,54,52,93,44,91,45,56,48,46,57,51,50,50,55,49,44,51,54,46,54,55,49,53,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,81,117,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,54,51,55,48,53,51,44,51,53,46,51,56,57,54,54,50,93,44,91,45,49,48,51,46,54,51,55,49,51,44,51,53,46,50,52,48,56,49,57,93,44,91,45,49,48,51,46,56,53,55,53,51,44,51,53,46,50,52,50,52,48,53,93,44,91,45,49,48,52,46,49,50,53,49,50,49,44,51,53,46,49,52,50,48,53,56,93,44,91,45,49,48,52,46,49,50,57,49,52,51,44,51,52,46,55,55,57,51,51,55,93,44,91,45,49,48,52,46,49,50,56,56,56,44,51,52,46,54,48,53,50,48,49,93,44,91,45,49,48,51,46,57,52,56,55,55,56,44,51,52,46,54,48,53,48,53,56,93,44,91,45,49,48,51,46,55,51,56,49,54,54,44,51,52,46,54,48,52,54,55,93,44,91,45,49,48,51,46,55,48,53,55,56,56,44,51,52,46,54,57,50,52,52,54,93,44,91,45,49,48,51,46,52,57,53,54,53,51,44,51,52,46,54,57,49,51,57,51,93,44,91,45,49,48,51,46,50,56,52,51,49,55,44,51,52,46,56,54,52,57,57,93,44,91,45,49,48,51,46,50,56,52,49,52,57,44,51,52,46,57,53,52,49,55,50,93,44,91,45,49,48,51,46,48,52,50,55,48,49,44,51,52,46,57,53,52,49,52,50,93,44,91,45,49,48,51,46,48,52,50,53,49,49,44,51,53,46,49,56,51,49,53,55,93,44,91,45,49,48,51,46,48,52,49,55,48,54,44,51,53,46,54,50,50,52,56,56,93,44,91,45,49,48,51,46,48,52,49,51,52,57,44,51,53,46,55,51,57,52,51,51,93,44,91,45,49,48,51,46,51,55,53,49,49,55,44,51,53,46,55,51,57,53,49,54,93,44,91,45,49,48,51,46,51,55,57,55,51,44,51,53,46,51,57,54,55,57,54,93,44,91,45,49,48,51,46,54,51,55,48,53,51,44,51,53,46,51,56,57,54,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,57,34,44,34,78,65,77,69,34,58,34,75,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,49,56,54,57,49,44,51,51,46,56,51,53,54,53,93,44,91,45,49,48,48,46,53,49,55,52,52,57,44,51,51,46,51,57,55,56,54,54,93,44,91,45,57,57,46,57,57,48,57,56,44,51,51,46,51,57,55,52,48,52,93,44,91,45,57,57,46,57,57,54,52,51,52,44,51,51,46,56,51,53,57,54,55,93,44,91,45,49,48,48,46,48,52,56,52,56,44,51,51,46,56,51,53,57,55,52,93,44,91,45,49,48,48,46,53,49,56,54,57,49,44,51,51,46,56,51,53,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,50,50,56,54,55,44,51,51,46,52,56,49,57,54,51,93,44,91,45,57,51,46,54,56,51,55,49,53,44,51,51,46,50,56,49,48,57,50,93,44,91,45,57,51,46,56,53,57,48,56,55,44,51,51,46,48,56,57,53,51,55,93,44,91,45,57,51,46,56,48,52,57,51,44,51,51,46,48,49,57,51,53,55,93,44,91,45,57,51,46,53,50,48,57,57,52,44,51,51,46,48,49,56,54,49,54,93,44,91,45,57,51,46,52,57,48,53,50,44,51,51,46,48,49,56,52,52,50,93,44,91,45,57,51,46,52,56,49,55,54,44,51,51,46,50,53,57,57,57,49,93,44,91,45,57,51,46,51,54,53,53,56,53,44,51,51,46,52,52,52,52,53,57,93,44,91,45,57,51,46,52,56,51,48,57,55,44,51,51,46,52,55,54,48,55,53,93,44,91,45,57,51,46,55,50,50,56,54,55,44,51,51,46,52,56,49,57,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,53,49,34,44,34,78,65,77,69,34,58,34,84,111,109,32,71,114,101,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,52,54,54,44,34,98,101,100,115,34,58,53,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,51,53,55,54,49,44,51,49,46,54,57,50,57,55,93,44,91,45,49,48,48,46,56,50,53,51,55,44,51,49,46,54,57,54,49,53,53,93,44,91,45,49,48,48,46,56,54,53,50,53,54,44,51,49,46,53,54,50,50,57,52,93,44,91,45,49,48,49,46,50,54,55,54,51,44,51,49,46,53,53,54,52,54,50,93,44,91,45,49,48,49,46,50,54,55,57,52,55,44,51,49,46,53,50,56,54,56,56,93,44,91,45,49,48,48,46,54,57,51,48,54,53,44,51,49,46,53,50,51,57,53,52,93,44,91,45,49,48,48,46,54,56,56,55,54,52,44,51,49,46,48,56,54,53,55,54,93,44,91,45,49,48,48,46,49,49,53,50,49,54,44,51,49,46,48,56,55,57,57,52,93,44,91,45,49,48,48,46,49,49,49,50,51,52,44,51,49,46,53,56,48,50,54,55,93,44,91,45,49,48,48,46,50,51,52,54,51,54,44,51,49,46,53,56,55,49,52,55,93,44,91,45,49,48,48,46,50,51,53,55,54,49,44,51,49,46,54,57,50,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,72,97,114,100,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,44,91,45,56,50,46,48,53,53,55,53,51,44,50,55,46,51,51,56,50,54,52,93,44,91,45,56,49,46,53,54,52,48,54,50,44,50,55,46,51,52,48,54,52,49,93,44,91,45,56,49,46,53,54,51,53,51,51,44,50,55,46,54,52,54,54,52,53,93,44,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,50,49,54,44,34,98,101,100,115,34,58,49,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,48,54,55,56,50,44,51,57,46,50,53,53,48,54,56,93,44,91,45,56,52,46,50,53,57,52,51,49,44,51,57,46,50,55,48,55,57,54,93,44,91,45,56,52,46,51,49,57,57,56,53,44,51,57,46,48,50,49,53,51,52,93,44,91,45,56,52,46,50,51,49,57,49,55,44,51,56,46,56,55,52,56,54,54,93,44,91,45,56,52,46,50,51,48,52,49,49,44,51,56,46,56,50,55,52,51,55,93,44,91,45,56,52,46,48,53,50,55,48,57,44,51,56,46,55,55,49,50,50,54,93,44,91,45,56,51,46,57,57,51,49,50,44,51,57,46,50,53,52,50,51,53,93,44,91,45,56,52,46,48,48,54,55,56,50,44,51,57,46,50,53,53,48,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,53,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,48,49,34,44,34,78,65,77,69,34,58,34,89,111,97,107,117,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,55,49,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,53,54,52,56,53,44,51,51,46,51,56,56,52,49,52,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,57,53,57,48,57,57,93,44,91,45,49,48,50,46,53,57,53,48,50,51,44,51,50,46,57,53,56,56,51,49,93,44,91,45,49,48,50,46,53,57,52,56,51,54,44,51,51,46,51,56,56,52,56,57,93,44,91,45,49,48,51,46,48,53,54,52,56,53,44,51,51,46,51,56,56,52,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,89,97,109,104,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,56,50,48,44,34,98,101,100,115,34,58,49,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,52,54,52,56,56,44,52,53,46,52,51,51,51,51,50,93,44,91,45,49,50,51,46,52,54,51,53,49,56,44,52,53,46,50,49,54,51,49,50,93,44,91,45,49,50,51,46,55,56,52,53,52,44,52,53,46,50,49,54,50,57,52,93,44,91,45,49,50,51,46,55,50,52,51,54,56,44,52,53,46,48,55,54,50,50,54,93,44,91,45,49,50,51,46,48,54,56,54,54,55,44,52,53,46,48,55,52,56,54,93,44,91,45,49,50,51,46,48,48,48,55,56,56,44,52,53,46,50,53,57,51,52,55,93,44,91,45,49,50,50,46,56,52,57,57,50,53,44,52,53,46,50,53,57,54,57,55,93,44,91,45,49,50,50,46,56,54,55,56,57,49,44,52,53,46,51,49,55,51,52,53,93,44,91,45,49,50,51,46,49,51,53,52,50,55,44,52,53,46,52,51,51,52,53,57,93,44,91,45,49,50,51,46,52,54,52,56,56,44,52,53,46,52,51,51,51,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,76,111,117,105,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,56,51,57,57,53,44,52,49,46,52,50,51,56,52,56,93,44,91,45,57,49,46,52,56,53,55,49,55,44,52,49,46,49,54,50,52,48,53,93,44,91,45,57,49,46,51,55,48,55,49,44,52,49,46,48,55,52,49,49,50,93,44,91,45,57,48,46,57,52,57,51,56,49,44,52,49,46,48,55,50,55,49,93,44,91,45,57,48,46,57,56,57,54,54,50,44,52,49,46,49,53,53,55,48,55,93,44,91,45,57,49,46,49,49,52,49,56,54,44,52,49,46,50,53,48,48,50,57,93,44,91,45,57,49,46,48,55,50,48,55,44,52,49,46,51,51,51,51,54,49,93,44,91,45,57,49,46,48,55,50,48,52,53,44,52,49,46,51,51,51,53,57,57,93,44,91,45,57,49,46,51,54,57,51,51,50,44,52,49,46,51,51,54,48,54,51,93,44,91,45,57,49,46,51,54,56,53,50,49,44,52,49,46,52,50,51,49,55,56,93,44,91,45,57,49,46,52,56,51,57,57,53,44,52,49,46,52,50,51,56,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,69,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,54,49,48,48,50,44,51,55,46,54,48,51,55,54,49,93,44,91,45,57,54,46,53,50,53,51,44,51,55,46,54,48,55,48,49,53,93,44,91,45,57,54,46,53,50,53,54,57,44,51,55,46,52,55,54,52,48,53,93,44,91,45,57,54,46,53,50,52,56,55,51,44,51,55,46,51,48,50,55,51,93,44,91,45,57,53,46,57,54,52,51,57,57,44,51,55,46,50,57,57,50,51,50,93,44,91,45,57,53,46,57,54,49,54,48,53,44,51,55,46,51,56,54,54,51,54,93,44,91,45,57,53,46,57,54,49,48,48,50,44,51,55,46,54,48,51,55,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,78,111,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,57,55,52,52,50,44,51,57,46,55,53,53,53,55,50,93,44,91,45,56,49,46,53,56,56,49,56,53,44,51,57,46,53,56,54,57,55,51,93,44,91,45,56,49,46,50,56,51,48,55,53,44,51,57,46,54,48,53,55,57,54,93,44,91,45,56,49,46,51,49,57,49,50,53,44,51,57,46,55,48,55,51,54,93,44,91,45,56,49,46,51,49,51,53,57,49,44,51,57,46,56,54,57,52,55,49,93,44,91,45,56,49,46,50,51,55,51,49,54,44,51,57,46,56,54,55,56,50,56,93,44,91,45,56,49,46,50,51,52,48,53,51,44,51,57,46,57,53,49,50,55,93,44,91,45,56,49,46,51,56,54,48,48,54,44,51,57,46,57,53,48,54,57,52,93,44,91,45,56,49,46,54,57,52,49,52,54,44,51,57,46,56,52,50,54,51,54,93,44,91,45,56,49,46,54,57,55,52,52,50,44,51,57,46,55,53,53,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,57,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,49,54,48,50,44,52,49,46,49,54,53,53,50,52,93,44,91,45,56,52,46,51,57,57,52,56,54,44,52,48,46,57,57,48,51,49,53,93,44,91,45,56,52,46,51,52,48,53,51,49,44,52,48,46,56,53,57,48,57,57,93,44,91,45,56,52,46,49,48,57,53,56,54,44,52,48,46,56,54,48,57,57,52,93,44,91,45,56,52,46,49,48,57,53,49,54,44,52,48,46,57,48,52,55,51,93,44,91,45,56,51,46,56,56,48,52,50,51,44,52,48,46,57,50,48,52,50,57,93,44,91,45,56,51,46,56,56,49,49,52,57,44,52,49,46,49,54,55,56,50,52,93,44,91,45,56,52,46,50,50,56,50,50,50,44,52,49,46,49,54,53,56,54,50,93,44,91,45,56,52,46,51,52,49,54,48,50,44,52,49,46,49,54,53,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,50,53,34,44,34,78,65,77,69,34,58,34,83,111,109,101,114,118,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,52,51,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,52,53,54,50,53,44,51,50,46,50,51,51,52,54,56,93,44,91,45,57,55,46,56,54,52,56,54,52,44,51,50,46,48,56,55,51,50,56,93,44,91,45,57,55,46,54,49,53,48,53,53,44,51,50,46,50,48,51,53,56,49,93,44,91,45,57,55,46,54,49,53,50,56,54,44,51,50,46,51,49,56,54,49,56,93,44,91,45,57,55,46,55,56,50,55,54,44,51,50,46,51,49,54,52,57,51,93,44,91,45,57,55,46,57,52,53,54,50,53,44,51,50,46,50,51,51,52,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,101,98,97,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,54,55,52,44,34,98,101,100,115,34,58,52,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,51,53,52,49,52,44,52,48,46,53,53,53,49,53,55,93,44,91,45,55,54,46,54,55,56,48,52,44,52,48,46,52,55,52,55,49,55,93,44,91,45,55,54,46,53,54,54,51,51,57,44,52,48,46,49,57,54,54,52,52,93,44,91,45,55,54,46,51,48,55,53,55,56,44,52,48,46,50,53,53,48,54,54,93,44,91,45,55,54,46,49,53,49,50,49,53,44,52,48,46,51,49,53,57,55,49,93,44,91,45,55,54,46,52,52,48,49,56,49,44,52,48,46,52,57,53,57,53,50,93,44,91,45,55,54,46,53,51,53,52,49,52,44,52,48,46,53,53,53,49,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,71,108,97,99,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,57,57,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,49,57,51,52,49,44,52,56,46,57,57,56,52,55,53,93,44,91,45,49,49,50,46,56,55,53,57,49,55,44,52,56,46,57,57,56,53,48,53,93,44,91,45,49,49,52,46,48,54,56,49,56,44,52,56,46,57,57,56,56,53,55,93,44,91,45,49,49,51,46,57,53,54,56,54,52,44,52,56,46,56,49,55,52,55,52,93,44,91,45,49,49,51,46,56,49,56,51,55,51,44,52,56,46,56,52,56,50,49,56,93,44,91,45,49,49,51,46,55,48,50,57,51,56,44,52,56,46,55,49,57,56,54,53,93,44,91,45,49,49,51,46,55,53,48,52,53,52,44,52,56,46,54,49,52,51,51,53,93,44,91,45,49,49,51,46,52,54,55,51,55,50,44,52,56,46,53,52,55,53,53,53,93,44,91,45,49,49,51,46,52,56,48,56,51,57,44,52,56,46,52,53,57,54,54,50,93,44,91,45,49,49,51,46,51,53,53,57,55,54,44,52,56,46,52,50,51,57,49,50,93,44,91,45,49,49,51,46,51,52,57,48,52,54,44,52,56,46,51,49,48,50,54,51,93,44,91,45,49,49,50,46,53,56,48,52,56,52,44,52,56,46,51,48,57,57,51,50,93,44,91,45,49,49,50,46,53,55,54,57,56,50,44,52,56,46,52,56,51,51,52,56,93,44,91,45,49,49,50,46,49,56,52,55,56,52,44,52,56,46,52,55,55,53,55,56,93,44,91,45,49,49,50,46,49,57,51,52,49,44,52,56,46,57,57,56,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,80,101,114,115,104,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,49,49,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,51,48,57,53,57,56,44,52,48,46,57,54,48,51,55,56,93,44,91,45,49,49,57,46,51,49,51,48,51,55,44,52,48,46,53,49,56,51,49,52,93,44,91,45,49,49,57,46,51,51,56,53,48,52,44,52,48,46,53,49,55,56,48,53,93,44,91,45,49,49,57,46,51,51,57,50,57,54,44,51,57,46,57,57,56,54,48,57,93,44,91,45,49,49,57,46,50,50,53,49,55,54,44,51,57,46,57,57,57,51,56,53,93,44,91,45,49,49,56,46,53,48,48,57,55,57,44,51,57,46,57,57,56,54,55,54,93,44,91,45,49,49,55,46,53,52,49,55,52,57,44,52,48,46,48,48,49,48,51,52,93,44,91,45,49,49,55,46,51,48,48,53,57,55,44,52,48,46,53,50,54,49,51,54,93,44,91,45,49,49,55,46,51,48,57,52,52,49,44,52,48,46,54,56,51,53,51,55,93,44,91,45,49,49,55,46,54,52,52,51,57,57,44,52,48,46,54,56,52,51,52,51,93,44,91,45,49,49,55,46,54,52,52,50,50,44,52,48,46,56,53,55,56,50,52,93,44,91,45,49,49,56,46,55,56,54,55,51,56,44,52,48,46,56,53,53,57,50,57,93,44,91,45,49,49,56,46,55,56,54,55,48,53,44,52,48,46,57,54,48,56,53,93,44,91,45,49,49,57,46,51,48,57,53,57,56,44,52,48,46,57,54,48,51,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,97,104,110,111,109,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,48,54,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,54,55,54,50,49,44,52,55,46,52,57,57,49,51,54,93,44,91,45,57,54,46,48,54,55,48,54,57,44,52,55,46,49,53,49,56,49,51,93,44,91,45,57,53,46,53,53,49,49,56,54,44,52,55,46,49,53,49,52,53,51,93,44,91,45,57,53,46,53,53,52,50,52,56,44,52,55,46,52,57,57,56,57,51,93,44,91,45,57,54,46,48,54,55,54,50,49,44,52,55,46,52,57,57,49,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,80,97,115,115,97,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,52,48,52,49,44,34,98,101,100,115,34,58,57,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,50,55,50,48,54,51,44,52,48,46,56,57,55,52,50,55,93,44,91,45,55,52,46,49,51,48,48,49,54,44,52,48,46,56,49,57,57,51,56,93,44,91,45,55,52,46,49,52,49,48,57,52,44,52,48,46,57,54,54,51,55,52,93,44,91,45,55,52,46,50,55,50,50,50,54,44,52,49,46,48,49,55,57,51,53,93,44,91,45,55,52,46,50,49,49,50,50,52,44,52,49,46,49,51,51,55,49,52,93,44,91,45,55,52,46,50,51,52,50,56,56,44,52,49,46,49,52,51,48,48,56,93,44,91,45,55,52,46,51,54,55,53,49,44,52,49,46,50,48,51,50,52,49,93,44,91,45,55,52,46,53,48,51,50,49,50,44,52,49,46,48,56,53,56,55,51,93,44,91,45,55,52,46,51,48,49,54,56,53,44,52,48,46,57,57,57,49,55,51,93,44,91,45,55,52,46,50,55,50,48,54,51,44,52,48,46,56,57,55,52,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,55,55,52,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,54,51,52,48,55,57,44,52,55,46,54,48,48,48,50,55,93,44,91,45,49,49,51,46,54,55,50,51,51,53,44,52,55,46,56,57,54,52,57,49,93,44,91,45,49,49,51,46,56,51,50,53,53,54,44,52,55,46,57,55,54,52,51,52,93,44,91,45,49,49,51,46,56,56,52,53,52,49,44,52,56,46,48,53,49,57,93,44,91,45,49,49,52,46,48,50,57,48,52,50,44,52,56,46,48,53,49,54,53,51,93,44,91,45,49,49,52,46,48,51,56,53,52,53,44,52,55,46,57,54,50,53,53,93,44,91,45,49,49,52,46,52,57,50,49,57,44,52,55,46,57,54,49,57,56,57,93,44,91,45,49,49,52,46,52,55,55,50,57,44,52,55,46,55,56,57,57,52,49,93,44,91,45,49,49,52,46,54,48,52,52,54,50,44,52,55,46,55,56,57,56,55,49,93,44,91,45,49,49,52,46,53,56,51,55,54,44,52,55,46,54,48,49,55,49,56,93,44,91,45,49,49,52,46,51,53,48,51,54,52,44,52,55,46,54,48,50,49,52,50,93,44,91,45,49,49,52,46,51,53,51,48,56,44,52,55,46,51,56,57,56,53,93,44,91,45,49,49,52,46,50,48,51,48,50,54,44,52,55,46,51,53,53,55,52,54,93,44,91,45,49,49,52,46,49,56,55,49,55,44,52,55,46,49,51,56,49,57,49,93,44,91,45,49,49,51,46,57,51,51,53,48,51,44,52,55,46,49,51,56,50,56,57,93,44,91,45,49,49,51,46,56,50,49,52,52,55,44,52,55,46,49,56,49,55,48,57,93,44,91,45,49,49,51,46,56,55,49,49,49,44,52,55,46,51,57,49,57,55,93,44,91,45,49,49,51,46,57,52,50,56,56,54,44,52,55,46,52,55,57,54,55,56,93,44,91,45,49,49,51,46,57,50,52,56,50,54,44,52,55,46,54,48,48,50,51,57,93,44,91,45,49,49,51,46,54,51,52,48,55,57,44,52,55,46,54,48,48,48,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,49,34,44,34,78,65,77,69,34,58,34,75,101,110,101,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,56,53,56,56,55,44,50,55,46,50,48,57,51,48,56,93,44,91,45,57,55,46,57,56,53,52,57,52,44,50,54,46,55,56,48,57,49,55,93,44,91,45,57,55,46,57,53,55,52,48,53,44,50,54,46,54,49,49,55,54,57,93,44,91,45,57,55,46,56,54,49,54,56,56,44,50,54,46,53,57,55,57,57,53,93,44,91,45,57,55,46,50,50,53,51,55,52,44,50,54,46,54,48,48,50,50,55,93,44,91,45,57,55,46,51,48,48,52,50,51,44,50,54,46,56,51,52,54,49,51,93,44,91,45,57,55,46,51,50,51,50,49,57,44,50,55,46,48,49,48,50,53,54,93,44,91,45,57,55,46,50,56,56,51,51,55,44,50,55,46,50,55,55,53,56,52,93,44,91,45,57,55,46,56,49,52,57,51,52,44,50,55,46,50,55,49,56,57,51,93,44,91,45,57,55,46,57,56,53,56,56,55,44,50,55,46,50,48,57,51,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,66,111,114,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,57,49,50,56,52,44,51,50,46,57,54,49,56,51,56,93,44,91,45,49,48,49,46,54,56,56,55,52,44,51,50,46,53,50,53,50,50,50,93,44,91,45,49,48,49,46,49,55,52,53,55,49,44,51,50,46,53,50,52,49,49,50,93,44,91,45,49,48,49,46,49,55,52,53,54,50,44,51,50,46,53,50,55,55,48,51,93,44,91,45,49,48,49,46,49,55,51,51,55,56,44,51,50,46,57,54,51,53,57,55,93,44,91,45,49,48,49,46,53,53,55,52,51,52,44,51,50,46,57,54,49,48,50,53,93,44,91,45,49,48,49,46,54,57,49,50,56,52,44,51,50,46,57,54,49,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,52,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,51,56,54,48,56,44,51,55,46,56,55,52,51,48,52,93,44,91,45,57,48,46,49,49,48,53,51,55,44,51,55,46,54,55,49,51,52,93,44,91,45,57,48,46,49,52,54,55,55,56,44,51,55,46,54,52,49,54,49,56,93,44,91,45,57,48,46,49,52,54,55,54,51,44,51,55,46,53,57,55,52,51,52,93,44,91,45,56,57,46,56,54,49,49,50,51,44,51,55,46,53,57,57,50,56,54,93,44,91,45,56,57,46,54,48,56,57,51,52,44,51,55,46,53,57,55,52,50,55,93,44,91,45,56,57,46,53,50,49,56,53,53,44,51,55,46,53,54,54,50,49,52,93,44,91,45,56,57,46,53,50,49,53,54,52,44,51,55,46,53,55,50,49,53,54,93,44,91,45,56,57,46,53,49,50,48,48,57,44,51,55,46,54,56,53,53,50,53,93,44,91,45,56,57,46,54,55,52,51,50,49,44,51,55,46,56,48,51,49,53,50,93,44,91,45,56,57,46,56,52,52,55,56,54,44,51,55,46,57,48,53,53,55,50,93,44,91,45,56,57,46,57,51,56,54,48,56,44,51,55,46,56,55,52,51,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,49,49,34,44,34,78,65,77,69,34,58,34,83,97,110,32,83,97,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,57,48,54,50,50,44,51,49,46,52,54,48,57,50,55,93,44,91,45,57,57,46,48,57,50,51,49,55,44,51,48,46,57,52,49,48,48,50,93,44,91,45,57,56,46,57,54,52,54,49,50,44,51,48,46,57,50,49,51,54,56,93,44,91,45,57,56,46,52,52,53,55,56,50,44,51,48,46,57,50,49,52,51,57,93,44,91,45,57,56,46,52,51,57,54,56,55,44,51,49,46,48,50,57,53,51,55,93,44,91,45,57,56,46,53,54,50,55,51,57,44,51,49,46,50,51,48,53,56,50,93,44,91,45,57,56,46,54,50,53,54,50,56,44,51,49,46,50,54,57,55,57,56,93,44,91,45,57,56,46,54,57,54,54,51,52,44,51,49,46,52,48,55,50,56,55,93,44,91,45,57,56,46,57,54,51,53,57,51,44,51,49,46,52,52,54,50,53,49,93,44,91,45,57,56,46,57,57,49,54,48,56,44,51,49,46,52,56,52,48,55,49,93,44,91,45,57,57,46,48,57,48,54,50,50,44,51,49,46,52,54,48,57,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,75,105,110,103,102,105,115,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,49,48,52,48,53,44,51,54,46,49,54,52,56,56,57,93,44,91,45,57,56,46,50,48,55,49,48,52,44,51,53,46,55,50,53,49,56,55,93,44,91,45,57,55,46,54,55,52,48,50,54,44,51,53,46,55,50,53,57,55,93,44,91,45,57,55,46,54,55,53,54,49,55,44,51,54,46,49,54,52,54,54,51,93,44,91,45,57,56,46,49,48,51,57,48,52,44,51,54,46,49,54,52,56,55,55,93,44,91,45,57,56,46,50,49,48,52,48,53,44,51,54,46,49,54,52,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,66,117,114,108,101,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,54,51,54,50,57,44,51,48,46,53,53,55,49,54,57,93,44,91,45,57,54,46,55,53,51,56,51,53,44,51,48,46,51,50,57,51,52,56,93,44,91,45,57,54,46,54,52,48,56,56,51,44,51,48,46,50,57,54,55,56,54,93,44,91,45,57,54,46,50,57,57,49,55,51,44,51,48,46,51,55,57,49,53,50,93,44,91,45,57,54,46,50,56,50,53,54,52,44,51,48,46,52,50,54,54,49,52,93,44,91,45,57,54,46,53,54,54,57,56,51,44,51,48,46,54,57,53,54,55,93,44,91,45,57,54,46,54,50,49,50,56,49,44,51,48,46,55,51,48,56,49,57,93,44,91,45,57,54,46,57,54,51,54,50,57,44,51,48,46,53,53,55,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,55,52,51,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,49,50,54,49,53,44,52,51,46,50,56,54,49,52,51,93,44,91,45,55,52,46,54,57,54,55,56,55,44,52,51,46,49,56,51,49,49,54,93,44,91,45,55,52,46,55,53,57,56,57,53,44,52,51,46,48,52,55,52,50,51,93,44,91,45,55,52,46,53,52,50,51,54,55,44,52,50,46,57,56,53,53,51,93,44,91,45,55,52,46,48,57,55,52,54,55,44,52,50,46,57,56,50,57,51,52,93,44,91,45,55,52,46,49,52,48,49,52,55,44,52,51,46,50,53,51,57,55,57,93,44,91,45,55,52,46,53,51,52,54,53,55,44,52,51,46,50,50,56,49,49,53,93,44,91,45,55,52,46,55,49,50,54,49,53,44,52,51,46,50,56,54,49,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,83,117,110,102,108,111,119,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,53,51,50,44,34,98,101,100,115,34,58,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,53,55,48,48,50,44,51,51,46,57,56,55,53,56,54,93,44,91,45,57,48,46,54,53,56,54,44,51,51,46,54,49,54,50,55,50,93,44,91,45,57,48,46,55,54,51,53,48,57,44,51,51,46,53,50,57,51,56,57,93,44,91,45,57,48,46,55,54,51,55,55,51,44,51,51,46,50,55,48,51,53,57,93,44,91,45,57,48,46,55,49,54,50,55,55,44,51,51,46,50,55,48,48,51,50,93,44,91,45,57,48,46,53,53,53,50,49,49,44,51,51,46,50,55,48,53,51,51,93,44,91,45,57,48,46,52,53,51,50,51,51,44,51,51,46,51,50,57,52,56,52,93,44,91,45,57,48,46,52,53,49,54,52,51,44,51,51,46,56,49,49,51,57,93,44,91,45,57,48,46,52,53,49,48,49,50,44,51,51,46,57,56,53,54,56,57,93,44,91,45,57,48,46,54,53,55,48,48,50,44,51,51,46,57,56,55,53,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,72,101,110,110,101,112,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,53,52,55,56,44,34,98,101,100,115,34,58,53,56,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,50,49,54,53,51,44,52,53,46,50,52,54,54,49,56,93,44,91,45,57,51,46,54,53,56,57,49,55,44,52,53,46,49,57,51,53,53,49,93,44,91,45,57,51,46,55,54,54,56,48,56,44,52,53,46,48,53,55,51,49,50,93,44,91,45,57,51,46,55,54,55,51,54,55,44,52,52,46,57,55,55,57,54,52,93,44,91,45,57,51,46,55,54,55,48,52,49,44,52,52,46,56,57,48,56,54,50,93,44,91,45,57,51,46,53,50,48,55,48,54,44,52,52,46,56,57,49,53,48,50,93,44,91,45,57,51,46,53,50,48,52,51,49,44,52,52,46,56,48,52,50,54,51,93,44,91,45,57,51,46,51,50,57,54,49,53,44,52,52,46,55,57,49,48,56,54,93,44,91,45,57,51,46,49,55,56,53,51,57,44,52,52,46,56,56,56,51,51,56,93,44,91,45,57,51,46,50,50,54,57,50,57,44,52,53,46,48,51,53,54,55,49,93,44,91,45,57,51,46,51,49,49,53,52,52,44,52,53,46,49,52,51,55,55,56,93,44,91,45,57,51,46,53,49,50,49,57,44,52,53,46,50,52,53,54,56,51,93,44,91,45,57,51,46,53,50,49,54,53,51,44,52,53,46,50,52,54,54,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,101,110,116,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,52,52,51,44,34,98,101,100,115,34,58,52,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,51,56,50,48,51,44,52,49,46,49,53,51,54,51,51,93,44,91,45,55,56,46,48,55,55,55,52,44,52,48,46,57,53,56,56,50,52,93,44,91,45,55,56,46,50,49,57,56,49,51,44,52,48,46,57,49,50,55,52,49,93,44,91,45,55,56,46,51,53,57,57,49,50,44,52,48,46,55,51,50,53,57,50,93,44,91,45,55,56,46,49,49,54,53,50,49,44,52,48,46,55,51,57,49,50,55,93,44,91,45,55,55,46,57,52,52,50,53,44,52,48,46,54,57,49,53,53,55,93,44,91,45,55,55,46,56,50,52,53,48,54,44,52,48,46,55,52,51,54,56,49,93,44,91,45,55,55,46,54,56,49,51,51,52,44,52,48,46,55,50,57,55,53,56,93,44,91,45,55,55,46,51,54,52,49,56,44,52,48,46,56,52,54,57,51,55,93,44,91,45,55,55,46,49,52,52,49,54,44,52,49,46,48,52,52,51,51,56,93,44,91,45,55,55,46,53,48,56,53,57,54,44,52,48,46,57,54,50,57,51,56,93,44,91,45,55,55,46,54,50,49,55,53,57,44,52,49,46,48,57,49,49,56,53,93,44,91,45,55,55,46,55,52,49,57,49,49,44,52,49,46,49,48,55,54,49,52,93,44,91,45,55,55,46,55,57,56,53,54,44,52,49,46,49,56,49,57,53,93,44,91,45,55,56,46,48,51,56,50,48,51,44,52,49,46,49,53,51,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,66,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,54,57,49,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,48,53,50,53,50,44,50,56,46,54,57,48,50,51,57,93,44,91,45,57,56,46,48,56,57,55,54,52,44,50,56,46,54,54,50,57,55,57,93,44,91,45,57,55,46,56,49,55,55,49,54,44,50,56,46,49,55,54,56,52,56,93,44,91,45,57,55,46,53,54,55,54,50,50,44,50,56,46,49,50,57,54,56,51,93,44,91,45,57,55,46,53,52,49,48,55,49,44,50,56,46,49,54,52,54,54,57,93,44,91,45,57,55,46,51,55,53,53,55,57,44,50,56,46,51,56,56,54,56,52,93,44,91,45,57,55,46,53,53,51,57,49,54,44,50,56,46,52,53,53,50,55,56,93,44,91,45,57,55,46,53,55,55,48,53,56,44,50,56,46,53,50,50,53,52,55,93,44,91,45,57,55,46,54,57,54,57,52,53,44,50,56,46,53,52,49,56,53,54,93,44,91,45,57,55,46,55,55,56,53,51,44,50,56,46,54,54,56,48,50,55,93,44,91,45,57,55,46,57,49,53,49,48,54,44,50,56,46,55,49,57,54,52,56,93,44,91,45,57,56,46,48,48,53,50,53,50,44,50,56,46,54,57,48,50,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,72,101,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,53,57,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,48,54,56,54,50,44,51,53,46,55,56,57,51,53,52,93,44,91,45,56,56,46,54,49,51,54,49,49,44,51,53,46,53,56,56,48,56,57,93,44,91,45,56,56,46,52,49,52,53,56,50,44,51,53,46,52,56,50,51,51,57,93,44,91,45,56,56,46,51,54,48,56,50,57,44,51,53,46,52,49,56,57,55,50,93,44,91,45,56,56,46,50,52,49,54,55,55,44,51,53,46,52,50,51,50,54,51,93,44,91,45,56,56,46,49,57,48,52,54,53,44,51,53,46,54,48,57,48,56,56,93,44,91,45,56,56,46,49,55,57,49,55,55,44,51,53,46,56,49,54,55,56,53,93,44,91,45,56,56,46,53,54,57,48,52,55,44,51,53,46,56,50,52,56,50,57,93,44,91,45,56,56,46,54,48,54,56,54,50,44,51,53,46,55,56,57,51,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,84,97,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,54,55,52,54,51,44,52,50,46,50,49,48,49,52,93,44,91,45,57,50,46,55,54,53,57,57,57,44,52,49,46,56,54,50,51,55,51,93,44,91,45,57,50,46,50,57,56,49,54,52,44,52,49,46,56,54,50,55,55,57,93,44,91,45,57,50,46,50,57,56,55,57,50,44,52,50,46,50,57,55,53,50,55,93,44,91,45,57,50,46,53,51,51,53,49,44,52,50,46,50,57,55,48,48,49,93,44,91,45,57,50,46,55,54,56,48,57,44,52,50,46,50,57,54,54,56,93,44,91,45,57,50,46,55,54,55,52,54,51,44,52,50,46,50,49,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,83,101,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,57,50,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,54,56,49,48,54,44,51,55,46,51,56,55,55,55,57,93,44,91,45,49,48,49,46,48,54,54,52,53,49,44,51,54,46,57,57,55,57,50,50,93,44,91,45,49,48,48,46,57,52,53,52,54,51,44,51,54,46,57,57,56,52,49,54,93,44,91,45,49,48,48,46,54,51,51,51,50,55,44,51,55,46,48,48,48,49,48,51,93,44,91,45,49,48,48,46,54,53,50,55,50,56,44,51,55,46,51,56,55,54,50,55,93,44,91,45,49,48,49,46,48,54,56,49,48,54,44,51,55,46,51,56,55,55,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,57,57,50,49,55,44,52,49,46,49,54,48,56,54,55,93,44,91,45,57,51,46,48,57,55,53,57,53,44,52,48,46,56,57,56,52,53,49,93,44,91,45,57,50,46,54,51,57,48,57,49,44,52,48,46,56,57,56,56,56,54,93,44,91,45,57,50,46,54,52,48,51,54,49,44,52,49,46,49,54,49,50,57,56,93,44,91,45,57,50,46,56,54,57,55,55,49,44,52,49,46,49,54,49,48,54,54,93,44,91,45,57,51,46,48,57,57,50,49,55,44,52,49,46,49,54,48,56,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,82,105,99,104,97,114,100,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,48,57,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,53,50,52,55,51,44,52,48,46,50,54,49,57,48,52,93,44,91,45,57,54,46,48,49,48,49,55,54,44,52,48,46,50,54,49,52,56,50,93,44,91,45,57,54,46,48,49,48,54,56,44,52,48,46,48,48,48,54,53,49,93,44,91,45,57,53,46,55,56,56,49,49,49,44,52,48,46,48,48,48,52,54,50,93,44,91,45,57,53,46,51,51,57,56,57,54,44,51,57,46,57,57,57,57,57,57,93,44,91,45,57,53,46,51,48,56,50,57,44,51,57,46,57,57,57,57,57,56,93,44,91,45,57,53,46,52,49,57,57,57,57,44,52,48,46,48,53,48,52,52,93,44,91,45,57,53,46,51,57,54,53,52,57,44,52,48,46,49,50,52,55,48,49,93,44,91,45,57,53,46,53,53,50,52,55,51,44,52,48,46,50,54,49,57,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,114,105,115,116,105,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,50,51,49,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,49,55,52,55,51,44,51,57,46,56,49,51,54,54,54,93,44,91,45,56,57,46,52,48,57,52,55,53,44,51,57,46,55,52,51,53,51,93,44,91,45,56,57,46,53,51,53,48,50,56,44,51,57,46,54,52,49,49,51,56,93,44,91,45,56,57,46,53,51,51,54,53,53,44,51,57,46,53,50,52,53,57,50,93,44,91,45,56,57,46,53,51,48,56,51,54,44,51,57,46,51,52,56,56,54,52,93,44,91,45,56,57,46,49,51,57,56,48,55,44,51,57,46,51,52,56,56,56,56,93,44,91,45,56,57,46,48,50,53,52,53,51,44,51,57,46,51,52,54,49,49,53,93,44,91,45,56,57,46,48,50,53,54,56,44,51,57,46,54,53,52,49,56,51,93,44,91,45,56,57,46,49,51,57,49,50,53,44,51,57,46,54,53,53,49,51,49,93,44,91,45,56,57,46,49,52,49,57,54,55,44,51,57,46,56,48,49,50,55,51,93,44,91,45,56,57,46,50,49,55,52,55,51,44,51,57,46,56,49,51,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,78,97,115,115,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,53,55,56,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,52,55,48,49,53,44,51,48,46,55,49,50,52,52,52,93,44,91,45,56,49,46,55,49,56,49,48,57,44,51,48,46,55,52,52,56,48,54,93,44,91,45,56,49,46,57,48,52,56,53,53,44,51,48,46,56,50,56,51,52,93,44,91,45,56,50,46,48,51,57,55,57,53,44,51,48,46,55,52,55,50,57,55,93,44,91,45,56,50,46,48,48,53,56,49,44,51,48,46,53,54,53,51,53,56,93,44,91,45,56,50,46,48,52,57,57,53,56,44,51,48,46,51,54,50,52,55,50,93,44,91,45,56,50,46,48,52,57,50,51,54,44,51,48,46,50,55,51,52,51,50,93,44,91,45,56,49,46,56,51,49,50,50,55,44,51,48,46,52,54,55,52,51,55,93,44,91,45,56,49,46,54,50,52,53,49,51,44,51,48,46,53,56,54,50,51,50,93,44,91,45,56,49,46,53,52,51,48,49,56,44,51,48,46,53,50,51,56,56,57,93,44,91,45,56,49,46,51,53,56,55,57,51,44,51,48,46,53,48,49,53,48,52,93,44,91,45,56,49,46,51,56,48,56,54,55,44,51,48,46,54,50,55,51,52,53,93,44,91,45,56,49,46,51,52,55,48,49,53,44,51,48,46,55,49,50,52,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,53,54,54,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,57,57,57,51,52,44,51,48,46,56,51,48,53,53,50,93,44,91,45,56,53,46,54,49,57,48,49,49,44,51,48,46,55,52,51,56,54,56,93,44,91,45,56,53,46,56,52,52,52,50,49,44,51,48,46,55,48,51,49,51,93,44,91,45,56,53,46,57,49,53,50,57,55,44,51,48,46,54,51,54,52,50,55,93,44,91,45,56,53,46,56,54,54,56,49,56,44,51,48,46,52,56,55,54,51,55,93,44,91,45,56,53,46,57,57,50,55,51,54,44,51,48,46,51,56,57,51,50,93,44,91,45,56,53,46,56,53,51,53,44,51,48,46,52,52,48,54,50,51,93,44,91,45,56,53,46,52,56,55,57,54,56,44,51,48,46,52,51,54,54,53,53,93,44,91,45,56,53,46,52,51,52,55,56,50,44,51,48,46,53,54,55,53,54,93,44,91,45,56,53,46,52,51,50,50,55,52,44,51,48,46,55,56,53,52,53,55,93,44,91,45,56,53,46,53,57,57,57,51,52,44,51,48,46,56,51,48,53,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,97,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,50,57,56,55,54,44,51,49,46,52,51,54,54,54,49,93,44,91,45,56,52,46,54,51,55,53,55,57,44,51,49,46,52,51,51,57,50,54,93,44,91,45,56,52,46,54,52,49,54,55,51,44,51,49,46,50,53,56,57,54,55,93,44,91,45,56,52,46,53,51,55,49,48,49,44,51,49,46,50,53,53,57,51,50,93,44,91,45,56,52,46,53,52,50,54,53,51,44,51,49,46,48,55,57,48,50,57,93,44,91,45,56,52,46,53,48,56,48,55,56,44,51,49,46,48,55,56,52,93,44,91,45,56,52,46,51,52,48,53,53,50,44,51,49,46,51,48,53,51,52,49,93,44,91,45,56,52,46,49,57,55,57,56,54,44,51,49,46,51,53,55,53,50,49,93,44,91,45,56,52,46,49,52,49,49,50,52,44,51,49,46,52,52,48,49,55,57,93,44,91,45,56,52,46,52,50,57,56,55,54,44,51,49,46,52,51,54,54,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,53,34,44,34,78,65,77,69,34,58,34,84,104,111,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,55,51,48,44,34,98,101,100,115,34,58,50,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,49,54,54,52,52,44,51,49,46,48,55,55,57,55,49,93,44,91,45,56,52,46,48,55,55,49,49,57,44,51,48,46,57,49,52,57,54,53,93,44,91,45,56,52,46,48,56,51,55,53,55,44,51,48,46,54,55,53,56,48,52,93,44,91,45,56,52,46,48,48,55,52,53,52,44,51,48,46,54,55,50,49,50,55,93,44,91,45,56,51,46,55,52,51,55,50,57,44,51,48,46,54,53,56,51,57,54,93,44,91,45,56,51,46,55,51,54,49,53,56,44,51,49,46,48,51,55,54,55,57,93,44,91,45,56,52,46,48,48,51,56,55,54,44,51,49,46,48,52,49,53,56,50,93,44,91,45,56,52,46,48,48,51,54,50,55,44,51,49,46,48,55,55,50,57,93,44,91,45,56,52,46,49,49,54,54,52,52,44,51,49,46,48,55,55,57,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,50,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,48,49,54,52,54,44,51,56,46,48,51,55,50,55,93,44,91,45,56,53,46,49,54,55,56,51,52,44,51,55,46,57,55,49,56,48,57,93,44,91,45,56,53,46,49,53,50,55,57,55,44,51,55,46,56,57,55,54,54,49,93,44,91,45,56,53,46,48,51,48,53,50,56,44,51,55,46,56,57,49,53,51,56,93,44,91,45,56,52,46,57,51,51,48,56,53,44,51,55,46,57,53,52,49,56,54,93,44,91,45,56,52,46,55,57,54,51,50,55,44,51,55,46,57,55,48,48,56,56,93,44,91,45,56,52,46,56,54,52,57,48,56,44,51,56,46,49,49,54,57,50,54,93,44,91,45,56,53,46,48,50,51,55,49,49,44,51,56,46,49,50,57,48,53,50,93,44,91,45,56,53,46,49,48,49,54,52,54,44,51,56,46,48,51,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,79,108,100,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,51,55,52,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,51,51,49,56,57,44,51,56,46,53,50,52,51,55,53,93,44,91,45,56,53,46,53,56,54,48,51,51,44,51,56,46,52,53,48,48,57,50,93,44,91,45,56,53,46,54,51,55,56,54,49,44,51,56,46,51,56,48,50,54,51,93,44,91,45,56,53,46,52,54,56,50,48,54,44,51,56,46,50,56,53,51,48,57,93,44,91,45,56,53,46,50,56,51,48,56,50,44,51,56,46,51,53,56,48,53,52,93,44,91,45,56,53,46,51,49,52,48,48,54,44,51,56,46,52,57,50,53,57,50,93,44,91,45,56,53,46,52,51,51,49,56,57,44,51,56,46,53,50,52,51,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,57,49,48,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,53,51,50,51,50,44,51,52,46,52,49,50,53,57,93,44,91,45,56,52,46,54,53,57,50,52,49,44,51,52,46,48,55,56,50,52,93,44,91,45,56,52,46,52,49,56,57,50,55,44,51,52,46,48,55,51,50,57,56,93,44,91,45,56,52,46,51,50,56,50,54,51,44,51,52,46,49,56,54,49,52,52,93,44,91,45,56,52,46,50,53,56,55,52,51,44,51,52,46,49,56,53,57,48,57,93,44,91,45,56,52,46,50,53,56,48,55,53,44,51,52,46,51,51,53,49,53,54,93,44,91,45,56,52,46,50,53,55,53,56,54,44,51,52,46,51,56,48,57,57,50,93,44,91,45,56,52,46,53,56,50,54,51,44,51,52,46,51,56,49,52,57,50,93,44,91,45,56,52,46,54,53,51,50,51,50,44,51,52,46,52,49,50,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,79,108,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,55,54,52,51,57,50,44,52,54,46,57,56,49,51,48,54,93,44,91,45,49,48,48,46,57,51,53,57,56,51,44,52,54,46,57,56,50,56,52,93,44,91,45,49,48,48,46,56,56,50,49,55,50,44,52,55,46,48,49,53,49,49,53,93,44,91,45,49,48,48,46,57,54,53,52,52,44,52,55,46,49,53,55,49,51,52,93,44,91,45,49,48,49,46,48,54,48,52,50,52,44,52,55,46,50,57,51,50,57,51,93,44,91,45,49,48,49,46,50,53,55,48,51,49,44,52,55,46,50,54,52,56,57,53,93,44,91,45,49,48,49,46,50,53,55,54,51,51,44,52,55,46,50,52,49,51,52,51,93,44,91,45,49,48,49,46,55,54,52,54,52,55,44,52,55,46,50,52,49,53,49,56,93,44,91,45,49,48,49,46,55,54,52,51,57,50,44,52,54,46,57,56,49,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,79,115,99,101,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,54,52,53,53,52,44,52,52,46,49,54,52,56,54,49,93,44,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,44,91,45,56,53,46,48,56,56,56,49,49,44,52,51,46,56,49,51,54,55,54,93,44,91,45,56,53,46,48,56,55,52,48,51,44,52,52,46,49,54,52,50,52,50,93,44,91,45,56,53,46,51,51,52,55,55,55,44,52,52,46,49,54,53,49,49,56,93,44,91,45,56,53,46,53,54,52,53,53,52,44,52,52,46,49,54,52,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,77,99,78,97,105,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,57,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,54,50,53,55,50,44,51,53,46,51,56,48,57,57,52,93,44,91,45,56,56,46,54,52,48,57,51,52,44,51,53,46,51,54,49,48,49,55,93,44,91,45,56,56,46,55,49,57,55,54,49,44,51,53,46,50,52,55,53,53,93,44,91,45,56,56,46,55,56,49,55,54,56,44,51,53,46,50,52,55,53,56,55,93,44,91,45,56,56,46,55,56,54,54,49,50,44,51,52,46,57,57,53,50,53,50,93,44,91,45,56,56,46,51,56,48,53,48,56,44,51,52,46,57,57,53,54,49,93,44,91,45,56,56,46,51,54,50,53,55,50,44,51,53,46,51,56,48,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,53,50,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,57,55,57,55,55,55,44,52,55,46,50,54,49,55,48,57,93,44,91,45,49,49,56,46,57,56,50,54,53,50,44,52,54,46,57,49,49,51,52,52,93,44,91,45,49,49,57,46,51,54,56,54,54,50,44,52,54,46,57,49,50,53,54,50,93,44,91,45,49,49,57,46,51,54,57,52,50,57,44,52,54,46,55,51,55,54,57,53,93,44,91,45,49,49,56,46,50,49,48,50,52,51,44,52,54,46,55,51,56,56,51,51,93,44,91,45,49,49,56,46,48,49,50,52,52,50,44,52,54,46,55,57,48,55,56,93,44,91,45,49,49,55,46,57,53,57,51,51,53,44,52,54,46,57,49,52,56,49,49,93,44,91,45,49,49,55,46,57,54,48,57,51,44,52,55,46,50,54,48,53,54,56,93,44,91,45,49,49,56,46,57,55,57,55,55,55,44,52,55,46,50,54,49,55,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,68,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,55,53,51,56,53,44,51,55,46,53,56,49,53,55,93,44,91,45,57,52,46,48,56,50,48,56,51,44,51,55,46,51,52,57,50,57,49,93,44,91,45,57,52,46,48,53,50,51,49,51,44,51,55,46,50,57,48,48,55,56,93,44,91,45,57,51,46,54,50,53,56,52,52,44,51,55,46,50,56,50,48,49,49,93,44,91,45,57,51,46,54,50,49,49,53,51,44,51,55,46,52,50,55,52,50,51,93,44,91,45,57,51,46,54,49,54,48,51,51,44,51,55,46,53,55,50,54,56,57,93,44,91,45,57,52,46,48,55,53,51,56,53,44,51,55,46,53,56,49,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,83,116,46,32,77,97,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,51,52,44,34,98,101,100,115,34,58,49,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,55,49,57,53,49,44,50,57,46,57,53,53,57,56,57,93,44,91,45,57,49,46,54,50,52,55,48,57,44,50,57,46,57,52,53,50,55,53,93,44,91,45,57,49,46,55,49,49,49,52,57,44,50,57,46,56,52,54,48,54,53,93,44,91,45,57,49,46,57,51,53,49,54,50,44,50,57,46,54,55,50,53,55,56,93,44,91,45,57,49,46,55,50,51,50,53,52,44,50,57,46,54,54,49,50,57,55,93,44,91,45,57,49,46,53,57,49,51,44,50,57,46,53,48,55,55,48,49,93,44,91,45,57,49,46,53,57,49,56,54,52,44,50,57,46,51,53,57,51,55,53,93,44,91,45,57,49,46,52,50,49,49,50,56,44,50,57,46,51,48,50,56,50,56,93,44,91,45,57,49,46,51,53,52,50,55,50,44,50,57,46,50,51,57,54,48,54,93,44,91,45,57,49,46,50,49,50,49,53,55,44,50,57,46,52,50,51,52,50,57,93,44,91,45,57,49,46,50,54,48,54,54,49,44,50,57,46,53,52,52,53,49,93,44,91,45,57,49,46,48,56,50,54,48,50,44,50,57,46,54,50,54,51,54,56,93,44,91,45,57,49,46,49,48,48,48,49,44,50,57,46,54,57,57,52,48,50,93,44,91,45,57,49,46,51,56,54,52,57,49,44,50,57,46,55,56,51,54,56,49,93,44,91,45,57,49,46,51,55,51,54,52,50,44,50,57,46,56,51,52,52,48,49,93,44,91,45,57,49,46,52,55,49,57,53,49,44,50,57,46,57,53,53,57,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,104,105,116,116,101,110,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,48,53,50,44,34,98,101,100,115,34,58,53,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,50,50,56,56,53,52,44,52,52,46,55,50,50,56,54,54,93,44,91,45,55,51,46,50,51,51,50,48,57,44,52,52,46,54,52,57,55,57,49,93,44,91,45,55,51,46,51,54,49,52,53,53,44,52,52,46,53,54,51,53,54,51,93,44,91,45,55,51,46,51,51,56,54,51,54,44,52,52,46,53,52,54,56,52,52,93,44,91,45,55,51,46,50,57,54,48,53,50,44,52,52,46,52,50,56,51,51,52,93,44,91,45,55,51,46,51,49,51,50,56,51,44,52,52,46,50,54,52,49,51,93,44,91,45,55,50,46,57,55,51,51,49,56,44,52,52,46,50,57,51,52,50,93,44,91,45,55,50,46,57,53,50,49,54,55,44,52,52,46,49,54,49,50,55,49,93,44,91,45,55,50,46,56,48,52,57,57,53,44,52,52,46,52,53,49,54,55,54,93,44,91,45,55,50,46,56,50,57,48,55,51,44,52,52,46,53,53,50,50,55,51,93,44,91,45,55,50,46,57,50,52,49,49,50,44,52,52,46,54,51,51,48,53,49,93,44,91,45,55,51,46,50,50,56,56,53,52,44,52,52,46,55,50,50,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,111,109,101,114,195,173,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,57,48,54,55,54,44,49,56,46,50,53,56,56,52,93,44,91,45,54,54,46,50,48,54,49,51,53,44,49,56,46,50,55,54,54,54,93,44,91,45,54,54,46,50,54,54,52,54,54,44,49,56,46,50,52,53,50,55,93,44,91,45,54,54,46,50,52,48,52,54,44,49,56,46,49,56,52,55,57,52,93,44,91,45,54,54,46,49,54,57,49,50,54,44,49,56,46,50,50,52,50,57,93,44,91,45,54,54,46,49,57,48,54,55,54,44,49,56,46,50,53,56,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,77,97,117,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,72,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,53,50,56,49,44,34,98,101,100,115,34,58,51,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,54,46,53,55,55,50,50,52,44,50,48,46,55,52,51,49,51,93,44,91,45,49,53,54,46,53,44,50,48,46,54,57,57,48,56,55,93,44,91,45,49,53,54,46,55,48,52,52,52,50,44,50,48,46,54,48,52,53,57,49,93,44,91,45,49,53,54,46,55,53,44,50,48,46,52,53,52,51,51,53,93,44,91,45,49,53,54,46,53,51,51,52,53,54,44,50,48,46,52,54,50,57,56,93,44,91,45,49,53,54,46,52,53,57,56,54,56,44,50,48,46,53,53,55,54,54,54,93,44,91,45,49,53,54,46,50,57,48,52,55,50,44,50,48,46,53,51,54,56,57,53,93,44,91,45,49,53,54,46,48,49,54,51,48,53,44,50,48,46,54,49,50,51,55,52,93,44,91,45,49,53,53,46,57,50,54,55,56,53,44,50,48,46,55,56,49,55,51,53,93,44,91,45,49,53,54,46,49,57,53,50,57,54,44,50,48,46,57,55,49,53,48,50,93,44,91,45,49,53,54,46,51,51,57,50,49,56,44,50,49,46,48,48,52,49,57,53,93,44,91,45,49,53,54,46,52,53,49,48,57,44,50,48,46,57,54,56,55,53,56,93,44,91,45,49,53,54,46,53,57,49,48,51,49,44,50,49,46,48,57,50,52,49,49,93,44,91,45,49,53,54,46,55,51,53,48,49,55,44,50,49,46,48,48,53,55,50,57,93,44,91,45,49,53,54,46,55,50,49,55,51,55,44,50,48,46,56,52,50,52,51,54,93,44,91,45,49,53,54,46,53,55,55,50,50,52,44,50,48,46,55,52,51,49,51,93,93,93,44,91,91,91,45,49,53,55,46,48,49,53,48,53,56,44,50,49,46,50,54,49,49,57,52,93,44,91,45,49,53,55,46,50,50,48,50,49,50,44,50,49,46,50,55,56,52,57,54,93,44,91,45,49,53,55,46,51,48,53,50,53,50,44,50,49,46,50,53,50,56,56,49,93,44,91,45,49,53,55,46,51,54,54,53,52,57,44,50,49,46,49,48,48,57,53,54,93,44,91,45,49,53,55,46,51,50,49,50,52,52,44,50,49,46,48,53,48,54,55,54,93,44,91,45,49,53,55,46,48,55,50,49,52,57,44,50,49,46,48,53,55,53,57,55,93,44,91,45,49,53,54,46,57,49,52,53,51,53,44,50,48,46,57,57,55,53,56,52,93,44,91,45,49,53,54,46,56,51,54,57,53,52,44,50,49,93,44,91,45,49,53,54,46,54,55,50,53,56,54,44,50,49,46,48,57,53,55,49,55,93,44,91,45,49,53,54,46,55,50,50,48,55,54,44,50,49,46,50,50,54,48,54,50,93,44,91,45,49,53,54,46,56,55,49,49,57,53,44,50,49,46,50,51,49,56,56,55,93,44,91,45,49,53,54,46,57,49,55,49,44,50,49,46,49,54,51,55,49,93,44,91,45,49,53,55,46,48,49,52,54,49,50,44,50,49,46,49,56,50,51,52,57,93,44,91,45,49,53,55,46,48,49,53,48,53,56,44,50,49,46,50,54,49,49,57,52,93,93,93,44,91,91,91,45,49,53,55,46,49,49,54,49,56,55,44,50,48,46,57,48,50,56,49,51,93,44,91,45,49,53,54,46,57,57,52,52,51,52,44,50,48,46,54,57,51,53,55,53,93,44,91,45,49,53,54,46,56,55,53,44,50,48,46,54,57,48,57,54,53,93,44,91,45,49,53,54,46,55,53,44,50,48,46,56,48,55,54,48,53,93,44,91,45,49,53,54,46,56,50,51,51,50,57,44,50,48,46,57,51,48,56,48,56,93,44,91,45,49,53,54,46,57,49,51,51,50,51,44,50,48,46,57,55,55,57,54,51,93,44,91,45,49,53,55,46,48,51,53,50,54,56,44,50,48,46,57,56,51,51,48,50,93,44,91,45,49,53,55,46,49,49,54,49,56,55,44,50,48,46,57,48,50,56,49,51,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,76,97,102,111,117,114,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,50,49,52,44,34,98,101,100,115,34,58,50,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,48,54,55,52,51,44,50,57,46,55,49,52,55,55,49,93,44,91,45,57,48,46,55,54,54,56,52,57,44,50,57,46,54,57,53,52,55,55,93,44,91,45,57,48,46,54,49,57,51,48,57,44,50,57,46,53,57,56,48,57,50,93,44,91,45,57,48,46,51,56,53,53,51,57,44,50,57,46,51,54,55,55,52,57,93,44,91,45,57,48,46,52,48,57,52,49,51,44,50,57,46,50,51,57,55,51,56,93,44,91,45,57,48,46,52,48,57,51,56,44,50,56,46,57,57,53,51,52,93,44,91,45,57,48,46,50,48,48,54,57,54,44,50,57,46,48,51,54,49,56,52,93,44,91,45,57,48,46,48,56,57,48,57,50,44,50,57,46,48,57,52,54,52,56,93,44,91,45,57,48,46,48,57,48,51,51,55,44,50,57,46,49,56,48,53,55,52,93,44,91,45,57,48,46,48,48,48,48,54,56,44,50,57,46,50,57,52,57,49,50,93,44,91,45,57,48,46,48,50,48,54,50,50,44,50,57,46,52,50,56,52,54,49,93,44,91,45,57,48,46,49,51,55,53,48,52,44,50,57,46,52,55,55,49,54,51,93,44,91,45,57,48,46,49,55,48,51,56,55,44,50,57,46,54,56,51,53,50,51,93,44,91,45,57,48,46,50,50,56,49,53,55,44,50,57,46,54,57,50,48,50,56,93,44,91,45,57,48,46,51,52,54,49,57,49,44,50,57,46,54,57,51,51,48,50,93,44,91,45,57,48,46,51,55,49,57,55,56,44,50,57,46,55,53,57,50,51,57,93,44,91,45,57,48,46,53,50,57,54,48,49,44,50,57,46,56,56,52,57,57,55,93,44,91,45,57,48,46,54,53,54,51,49,50,44,50,57,46,56,56,57,50,52,54,93,44,91,45,57,48,46,56,56,53,53,56,57,44,50,57,46,57,48,53,51,53,51,93,44,91,45,57,49,46,48,48,54,55,52,51,44,50,57,46,55,49,52,55,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,77,117,115,99,97,116,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,57,53,48,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,54,54,52,52,56,44,52,49,46,53,57,56,51,55,51,93,44,91,45,57,49,46,51,54,56,53,50,49,44,52,49,46,52,50,51,49,55,56,93,44,91,45,57,49,46,51,54,57,51,51,50,44,52,49,46,51,51,54,48,54,51,93,44,91,45,57,49,46,48,55,50,48,52,53,44,52,49,46,51,51,51,53,57,57,93,44,91,45,57,49,46,48,52,56,50,53,57,44,52,49,46,52,48,57,55,52,56,93,44,91,45,57,48,46,55,56,54,50,56,50,44,52,49,46,52,53,50,56,56,56,93,44,91,45,57,48,46,55,56,51,56,49,50,44,52,49,46,53,57,54,53,51,49,93,44,91,45,57,48,46,56,57,57,56,53,51,44,52,49,46,53,57,55,49,51,51,93,44,91,45,57,49,46,51,54,54,52,52,56,44,52,49,46,53,57,56,51,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,82,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,52,52,50,44,34,98,101,100,115,34,58,51,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,54,51,54,53,51,44,51,48,46,57,57,57,48,50,57,93,44,91,45,56,55,46,50,56,50,50,57,44,51,48,46,57,50,52,56,50,57,93,44,91,45,56,55,46,51,49,50,52,48,57,44,51,48,46,55,51,52,55,55,93,44,91,45,56,55,46,50,54,48,54,55,55,44,51,48,46,54,50,49,51,54,51,93,44,91,45,56,55,46,49,50,52,57,54,56,44,51,48,46,53,48,48,49,57,54,93,44,91,45,56,55,46,49,55,56,57,54,56,44,51,48,46,51,51,52,53,57,57,93,44,91,45,56,54,46,57,50,48,49,49,51,44,51,48,46,51,56,54,53,54,55,93,44,91,45,56,54,46,57,49,54,54,48,55,44,51,48,46,51,49,56,55,50,52,93,44,91,45,56,54,46,56,48,48,53,53,52,44,51,48,46,51,51,52,52,57,50,93,44,91,45,56,54,46,55,56,53,54,57,50,44,51,48,46,57,57,54,57,56,93,44,91,45,56,55,46,49,54,51,54,53,51,44,51,48,46,57,57,57,48,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,48,52,50,53,50,44,51,56,46,57,48,52,50,48,52,93,44,91,45,56,54,46,57,50,52,49,56,54,44,51,56,46,53,48,53,51,53,56,93,44,91,45,56,54,46,54,56,50,51,53,57,44,51,56,46,53,50,54,51,55,56,93,44,91,45,56,54,46,54,56,51,49,48,50,44,51,56,46,54,56,54,53,54,49,93,44,91,45,56,54,46,54,56,50,56,53,51,44,51,56,46,57,48,52,54,57,55,93,44,91,45,56,54,46,57,48,52,50,53,50,44,51,56,46,57,48,52,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,51,34,44,34,78,65,77,69,34,58,34,82,111,99,107,99,97,115,116,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,50,55,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,55,56,48,53,44,51,55,46,53,51,57,48,54,52,93,44,91,45,56,52,46,52,52,54,55,49,57,44,51,55,46,52,56,53,56,57,51,93,44,91,45,56,52,46,53,48,50,57,51,50,44,51,55,46,51,50,56,56,48,49,93,44,91,45,56,52,46,50,56,57,48,55,54,44,51,55,46,49,53,49,55,52,93,44,91,45,56,52,46,50,49,54,50,52,49,44,51,55,46,50,56,48,50,53,54,93,44,91,45,56,52,46,49,51,55,56,57,56,44,51,55,46,51,49,57,55,53,57,93,44,91,45,56,52,46,49,57,57,52,56,57,44,51,55,46,53,50,50,56,53,56,93,44,91,45,56,52,46,51,52,55,56,48,53,44,51,55,46,53,51,57,48,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,51,34,44,34,78,65,77,69,34,58,34,84,114,105,109,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,51,51,48,57,57,44,51,56,46,55,51,54,50,50,56,93,44,91,45,56,53,46,52,53,50,48,56,55,44,51,56,46,55,48,57,55,56,53,93,44,91,45,56,53,46,52,50,56,50,56,51,44,51,56,46,53,56,54,51,50,53,93,44,91,45,56,53,46,52,51,51,49,56,57,44,51,56,46,53,50,52,51,55,53,93,44,91,45,56,53,46,51,49,52,48,48,54,44,51,56,46,52,57,50,53,57,50,93,44,91,45,56,53,46,49,54,56,50,55,44,51,56,46,53,56,53,52,52,56,93,44,91,45,56,53,46,51,51,51,48,57,57,44,51,56,46,55,51,54,50,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,67,104,97,116,116,111,111,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,48,55,55,52,56,44,51,52,46,53,56,55,52,56,51,93,44,91,45,56,53,46,53,50,55,50,54,49,44,51,52,46,53,56,56,54,56,51,93,44,91,45,56,53,46,53,49,51,54,49,50,44,51,52,46,53,50,51,56,50,53,93,44,91,45,56,53,46,52,54,50,50,48,55,44,51,52,46,50,56,54,51,56,54,93,44,91,45,56,53,46,49,56,48,53,52,56,44,51,52,46,52,51,53,57,57,54,93,44,91,45,56,53,46,49,48,55,55,52,56,44,51,52,46,53,56,55,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,68,105,108,108,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,55,49,44,34,98,101,100,115,34,58,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,53,48,48,50,52,44,51,52,46,54,50,49,48,53,51,93,44,91,45,55,57,46,54,51,51,52,49,51,44,51,52,46,50,57,55,57,57,52,93,44,91,45,55,57,46,53,52,55,57,51,44,51,52,46,50,51,48,57,49,51,93,44,91,45,55,57,46,52,56,48,55,49,50,44,51,52,46,50,56,56,48,56,49,93,44,91,45,55,57,46,49,50,56,49,54,53,44,51,52,46,50,53,51,54,53,50,93,44,91,45,55,57,46,48,55,49,50,49,49,44,51,52,46,50,57,57,51,52,50,93,44,91,45,55,57,46,52,53,48,48,50,52,44,51,52,46,54,50,49,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,55,52,56,48,53,44,51,52,46,57,55,51,57,93,44,91,45,55,55,46,53,48,50,55,55,49,44,51,52,46,57,54,57,54,51,53,93,44,91,45,55,55,46,51,54,54,55,54,56,44,51,52,46,57,48,56,54,53,93,44,91,45,55,55,46,50,54,55,52,51,51,44,51,52,46,57,50,53,53,51,55,93,44,91,45,55,55,46,49,54,53,57,56,54,44,51,52,46,55,56,53,48,51,50,93,44,91,45,55,55,46,48,55,56,50,54,51,44,51,52,46,56,49,49,51,50,50,93,44,91,45,55,55,46,49,48,56,56,53,49,44,51,52,46,56,51,48,55,56,93,44,91,45,55,55,46,49,48,57,49,56,57,44,51,53,46,48,54,55,50,48,54,93,44,91,45,55,55,46,49,56,55,54,55,57,44,51,53,46,48,56,49,48,56,54,93,44,91,45,55,55,46,52,55,51,54,57,50,44,51,53,46,50,50,56,57,56,53,93,44,91,45,55,55,46,54,48,49,50,56,50,44,51,53,46,48,55,49,51,54,56,93,44,91,45,55,55,46,55,51,49,48,50,54,44,51,53,46,48,48,56,49,51,56,93,44,91,45,55,55,46,54,55,52,56,48,53,44,51,52,46,57,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,83,99,111,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,55,57,55,56,44,52,48,46,54,48,48,53,50,57,93,44,91,45,57,50,46,51,53,48,56,48,55,44,52,48,46,53,57,55,50,55,53,93,44,91,45,57,50,46,51,52,57,57,55,53,44,52,48,46,51,52,54,53,48,53,93,44,91,45,57,50,46,51,52,55,56,48,49,44,52,48,46,51,48,50,55,53,54,93,44,91,45,57,49,46,57,52,57,55,52,55,44,52,48,46,51,48,48,56,51,50,93,44,91,45,57,49,46,57,52,51,49,49,50,44,52,48,46,54,48,53,56,50,55,93,44,91,45,57,50,46,49,55,57,55,56,44,52,48,46,54,48,48,53,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,78,101,109,97,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,48,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,51,57,50,44,52,48,46,48,48,48,56,56,49,93,44,91,45,57,54,46,50,51,56,57,54,57,44,51,57,46,53,54,54,50,50,93,44,91,45,57,54,46,48,51,53,57,53,50,44,51,57,46,53,54,54,49,93,44,91,45,57,53,46,55,56,57,49,48,49,44,51,57,46,53,54,53,57,49,54,93,44,91,45,57,53,46,55,56,56,57,52,49,44,51,57,46,54,53,51,48,48,49,93,44,91,45,57,53,46,55,56,56,49,49,49,44,52,48,46,48,48,48,52,54,50,93,44,91,45,57,54,46,48,49,48,54,56,44,52,48,46,48,48,48,54,53,49,93,44,91,45,57,54,46,50,51,57,50,44,52,48,46,48,48,48,56,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,78,111,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,56,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,55,55,55,57,52,44,52,48,46,48,48,49,54,48,50,93,44,91,45,49,48,48,46,49,56,48,51,53,49,44,51,57,46,53,54,54,56,57,93,44,91,45,49,48,48,46,49,54,49,54,54,55,44,51,57,46,53,54,55,50,55,55,93,44,91,45,57,57,46,54,50,55,57,53,51,44,51,57,46,53,54,55,52,51,55,93,44,91,45,57,57,46,54,50,53,51,50,52,44,52,48,46,48,48,49,56,53,57,93,44,91,45,57,57,46,54,50,56,50,53,52,44,52,48,46,48,48,49,56,52,55,93,44,91,45,49,48,48,46,49,55,55,55,57,52,44,52,48,46,48,48,49,54,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,103,117,97,115,32,66,117,101,110,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,56,48,52,55,53,44,49,56,46,50,57,55,50,57,53,93,44,91,45,54,54,46,49,52,51,56,54,49,44,49,56,46,50,55,57,53,57,93,44,91,45,54,54,46,49,57,48,54,55,54,44,49,56,46,50,53,56,56,52,93,44,91,45,54,54,46,49,54,57,49,50,54,44,49,56,46,50,50,52,50,57,93,44,91,45,54,54,46,49,49,55,55,55,52,44,49,56,46,50,48,57,57,52,57,93,44,91,45,54,54,46,48,54,54,49,48,51,44,49,56,46,51,48,51,51,50,49,93,44,91,45,54,54,46,48,56,48,52,55,53,44,49,56,46,50,57,55,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,97,116,97,195,177,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,48,56,50,56,49,44,49,56,46,52,51,56,57,48,50,93,44,91,45,54,54,46,49,50,57,52,48,51,44,49,56,46,52,54,53,54,51,50,93,44,91,45,54,54,46,49,54,57,53,49,54,44,49,56,46,52,51,48,57,57,56,93,44,91,45,54,54,46,49,51,49,53,56,44,49,56,46,52,50,52,54,53,54,93,44,91,45,54,54,46,49,48,56,50,56,49,44,49,56,46,52,51,56,57,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,70,117,114,110,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,56,54,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,57,55,56,48,55,44,52,48,46,51,53,48,48,50,55,93,44,91,45,49,48,48,46,49,57,51,53,57,57,44,52,48,46,48,48,49,54,54,51,93,44,91,45,49,48,48,46,49,55,55,55,57,52,44,52,48,46,48,48,49,54,48,50,93,44,91,45,57,57,46,54,50,56,50,53,52,44,52,48,46,48,48,49,56,52,55,93,44,91,45,57,57,46,54,51,48,52,53,57,44,52,48,46,51,53,49,49,50,93,44,91,45,57,57,46,54,52,50,50,48,57,44,52,48,46,51,53,49,50,93,44,91,45,49,48,48,46,48,57,52,55,57,56,44,52,48,46,51,53,49,50,52,53,93,44,91,45,49,48,48,46,49,57,55,56,48,55,44,52,48,46,51,53,48,48,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,68,101,99,97,116,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,56,51,51,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,51,48,56,53,53,44,51,49,46,48,54,57,49,57,93,44,91,45,56,52,46,55,53,53,57,49,55,44,51,48,46,56,56,53,50,55,93,44,91,45,56,52,46,56,54,51,52,54,53,44,51,48,46,55,49,49,52,57,52,93,44,91,45,56,52,46,51,56,48,55,48,53,44,51,48,46,54,56,57,57,57,51,93,44,91,45,56,52,46,51,55,54,54,49,50,44,51,49,46,48,55,56,56,56,51,93,44,91,45,56,52,46,53,48,56,48,55,56,44,51,49,46,48,55,56,52,93,44,91,45,56,52,46,53,52,50,54,53,51,44,51,49,46,48,55,57,48,50,57,93,44,91,45,56,52,46,55,51,48,56,53,53,44,51,49,46,48,54,57,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,54,49,51,44,34,98,101,100,115,34,58,51,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,48,49,52,55,51,44,52,48,46,48,48,52,53,50,49,93,44,91,45,56,53,46,50,50,49,49,49,56,44,51,57,46,55,56,56,52,52,57,93,44,91,45,56,53,46,49,56,53,48,56,57,44,51,57,46,55,49,53,53,49,53,93,44,91,45,56,53,46,48,51,52,53,55,53,44,51,57,46,55,49,52,55,54,52,93,44,91,45,56,52,46,56,49,52,51,55,51,44,51,57,46,55,50,54,54,50,93,44,91,45,56,52,46,56,49,50,52,49,44,51,57,46,57,49,54,57,49,53,93,44,91,45,56,52,46,56,49,48,56,50,53,44,52,48,46,48,48,53,48,55,55,93,44,91,45,56,53,46,50,48,49,52,55,51,44,52,48,46,48,48,52,53,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,54,56,48,44,34,98,101,100,115,34,58,49,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,49,51,53,49,50,44,51,55,46,48,54,49,48,55,50,93,44,91,45,56,54,46,49,54,54,55,52,44,51,54,46,57,51,52,48,49,53,93,44,91,45,56,54,46,48,55,48,50,57,51,44,51,54,46,56,55,56,49,56,56,93,44,91,45,56,54,46,48,54,57,57,53,55,44,51,54,46,56,48,53,55,56,51,93,44,91,45,56,53,46,57,55,54,57,49,44,51,54,46,55,50,50,55,50,50,93,44,91,45,56,53,46,55,51,57,50,53,53,44,51,54,46,56,52,49,52,55,54,93,44,91,45,56,53,46,55,52,52,50,50,49,44,51,55,46,49,54,57,56,49,51,93,44,91,45,56,53,46,57,48,54,51,51,54,44,51,55,46,49,52,56,51,55,55,93,44,91,45,56,54,46,48,53,54,52,52,51,44,51,55,46,49,54,55,50,48,56,93,44,91,45,56,54,46,49,49,51,53,49,50,44,51,55,46,48,54,49,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,48,53,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,52,52,51,51,44,52,49,46,51,57,52,49,55,56,93,44,91,45,57,56,46,55,52,56,53,50,54,44,52,49,46,48,52,54,54,52,93,44,91,45,57,56,46,55,50,49,57,55,53,44,52,49,46,48,52,54,54,55,52,93,44,91,45,57,56,46,50,56,55,49,54,56,44,52,49,46,48,52,54,51,54,51,93,44,91,45,57,56,46,50,56,54,53,56,52,44,52,49,46,51,57,51,56,57,56,93,44,91,45,57,56,46,50,57,49,52,49,57,44,52,49,46,51,57,51,56,57,52,93,44,91,45,57,56,46,55,52,52,51,51,44,52,49,46,51,57,52,49,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,68,117,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,52,50,50,54,54,44,52,55,46,56,50,51,55,49,51,93,44,91,45,49,48,50,46,54,52,50,54,54,57,44,52,55,46,54,55,52,48,49,50,93,44,91,45,49,48,51,46,48,57,57,54,55,44,52,55,46,54,55,52,53,49,56,93,44,91,45,49,48,51,46,48,57,57,49,57,55,44,52,55,46,51,50,56,55,49,52,93,44,91,45,49,48,51,46,48,51,50,51,54,54,44,52,55,46,51,50,56,54,56,54,93,44,91,45,49,48,51,46,48,51,50,54,56,49,44,52,54,46,57,56,48,53,56,93,44,91,45,49,48,50,46,53,50,53,51,54,52,44,52,54,46,57,56,49,50,56,56,93,44,91,45,49,48,50,46,49,52,52,55,55,49,44,52,55,46,48,49,48,51,48,55,93,44,91,45,49,48,50,46,49,52,52,52,53,51,44,52,55,46,51,50,56,48,55,57,93,44,91,45,49,48,50,46,50,48,53,53,53,54,44,52,55,46,51,50,56,48,55,49,93,44,91,45,49,48,50,46,50,48,53,51,53,44,52,55,46,53,55,52,53,48,54,93,44,91,45,49,48,50,46,50,54,53,52,53,50,44,52,55,46,54,50,52,51,48,55,93,44,91,45,49,48,50,46,50,54,48,57,53,49,44,52,55,46,55,56,49,52,48,57,93,44,91,45,49,48,50,46,51,56,53,55,53,56,44,52,55,46,55,53,56,48,48,56,93,44,91,45,49,48,50,46,54,52,50,50,54,54,44,52,55,46,56,50,51,55,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,109,97,100,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,50,57,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,48,50,55,53,48,55,44,51,56,46,53,48,56,50,57,50,93,44,91,45,49,50,49,46,48,50,55,48,56,52,44,51,56,46,51,48,48,50,53,50,93,44,91,45,49,50,48,46,57,57,53,52,57,55,44,51,56,46,50,50,53,52,48,50,93,44,91,45,49,50,48,46,54,52,54,54,49,51,44,51,56,46,51,51,52,53,56,54,93,44,91,45,49,50,48,46,53,48,52,54,52,44,51,56,46,52,51,57,51,55,56,93,44,91,45,49,50,48,46,48,55,50,52,56,52,44,51,56,46,53,48,57,56,54,57,93,44,91,45,49,50,48,46,48,55,50,51,57,50,44,51,56,46,55,48,50,55,54,55,93,44,91,45,49,50,48,46,50,55,52,53,50,50,44,51,56,46,53,53,57,52,53,50,93,44,91,45,49,50,48,46,54,50,56,52,50,56,44,51,56,46,53,48,51,50,48,52,93,44,91,45,49,50,48,46,56,50,51,50,56,51,44,51,56,46,53,53,57,54,56,55,93,44,91,45,49,50,49,46,48,50,55,53,48,55,44,51,56,46,53,48,56,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,70,101,110,116,114,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,50,48,52,52,53,44,51,54,46,52,48,55,49,54,52,93,44,91,45,56,53,46,48,56,50,52,57,55,44,51,54,46,49,57,54,49,55,49,93,44,91,45,56,53,46,49,49,57,53,56,51,44,51,54,46,49,52,52,55,49,57,93,44,91,45,56,53,46,49,48,48,50,49,51,44,51,54,46,49,51,56,53,54,49,93,44,91,45,56,52,46,57,48,55,55,53,51,44,51,54,46,49,53,54,50,57,51,93,44,91,45,56,52,46,56,54,54,49,48,52,44,51,54,46,50,57,50,57,50,56,93,44,91,45,56,52,46,55,48,48,55,56,53,44,51,54,46,51,55,48,56,50,52,93,44,91,45,56,52,46,55,51,49,56,51,57,44,51,54,46,53,50,52,54,55,52,93,44,91,45,56,52,46,57,52,51,49,52,52,44,51,54,46,53,56,49,50,55,93,44,91,45,56,53,46,48,52,51,57,50,52,44,51,54,46,53,53,56,55,57,49,93,44,91,45,56,53,46,49,50,48,52,52,53,44,51,54,46,52,48,55,49,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,102,102,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,57,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,53,48,50,56,50,44,51,56,46,52,51,52,49,48,53,93,44,91,45,57,53,46,57,53,56,56,54,50,44,51,56,46,49,55,48,57,51,57,93,44,91,45,57,53,46,57,53,57,48,52,54,44,51,56,46,48,52,48,49,57,53,93,44,91,45,57,53,46,53,49,56,57,55,44,51,56,46,48,51,56,50,51,93,44,91,45,57,53,46,53,48,56,51,50,56,44,51,56,46,51,57,48,50,55,56,93,44,91,45,57,53,46,53,48,56,50,54,55,44,51,56,46,52,51,51,57,51,51,93,44,91,45,57,53,46,57,53,48,50,56,50,44,51,56,46,52,51,52,49,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,114,97,110,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,53,56,52,44,34,98,101,100,115,34,58,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,57,51,54,50,54,44,52,50,46,48,55,49,53,53,51,93,44,91,45,56,53,46,50,57,50,49,55,57,44,52,49,46,55,53,57,56,56,57,93,44,91,45,56,53,46,49,57,54,55,55,52,44,52,49,46,55,53,57,54,52,52,93,44,91,45,56,52,46,56,50,53,49,51,44,52,49,46,55,53,57,57,57,57,93,44,91,45,56,52,46,56,50,54,52,57,49,44,52,50,46,48,55,50,52,54,56,93,44,91,45,56,53,46,50,57,51,54,50,54,44,52,50,46,48,55,49,53,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,97,109,112,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,49,55,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,53,55,57,53,53,44,51,55,46,51,53,53,56,49,54,93,44,91,45,55,57,46,52,52,50,56,53,57,44,51,55,46,48,53,53,56,54,55,93,44,91,45,55,57,46,51,51,50,49,54,49,44,51,55,46,49,50,53,53,54,56,93,44,91,45,55,57,46,48,57,50,50,54,52,44,51,55,46,48,54,49,52,57,56,93,44,91,45,55,56,46,57,48,52,53,56,55,44,51,55,46,48,50,50,50,56,56,93,44,91,45,55,56,46,56,50,52,50,48,57,44,51,55,46,50,48,53,51,54,49,93,44,91,45,55,56,46,57,50,54,52,54,44,51,55,46,50,55,55,48,55,49,93,44,91,45,55,57,46,48,50,49,54,56,55,44,51,55,46,52,50,57,50,52,51,93,44,91,45,55,57,46,48,56,53,49,50,51,44,51,55,46,51,57,52,56,55,53,93,44,91,45,55,57,46,50,53,55,57,53,53,44,51,55,46,51,53,53,56,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,77,101,105,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,54,56,53,56,51,44,51,57,46,50,48,51,55,54,93,44,91,45,56,50,46,51,50,50,56,55,52,44,51,57,46,48,50,55,54,55,52,93,44,91,45,56,50,46,48,57,53,52,54,53,44,51,57,46,48,48,50,55,55,56,93,44,91,45,56,50,46,48,57,56,57,54,53,44,51,56,46,57,53,56,51,55,56,93,44,91,45,56,50,46,48,48,53,57,57,44,51,57,46,48,50,57,51,56,55,93,44,91,45,56,49,46,57,48,48,53,57,53,44,51,56,46,57,51,55,54,55,49,93,44,91,45,56,49,46,57,48,56,54,52,53,44,51,56,46,56,55,56,52,54,93,44,91,45,56,49,46,55,56,49,56,50,44,51,56,46,57,54,52,57,51,53,93,44,91,45,56,49,46,55,52,55,50,53,52,44,51,57,46,48,57,53,51,55,57,93,44,91,45,56,49,46,55,53,54,48,56,44,51,57,46,49,56,48,53,54,93,44,91,45,56,50,46,50,54,56,53,56,51,44,51,57,46,50,48,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,78,105,99,104,111,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,50,52,44,34,98,101,100,115,34,58,49,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,56,49,50,51,50,44,51,56,46,53,48,55,48,52,53,93,44,91,45,56,48,46,57,49,49,51,54,49,44,51,56,46,52,49,52,55,56,53,93,44,91,45,56,49,46,50,51,49,52,51,52,44,51,56,46,50,54,51,55,49,54,93,44,91,45,56,49,46,50,51,49,54,51,54,44,51,56,46,50,54,51,53,49,52,93,44,91,45,56,49,46,48,55,53,48,51,57,44,51,56,46,49,57,54,49,51,54,93,44,91,45,56,48,46,57,56,51,52,55,50,44,51,56,46,50,50,50,53,52,93,44,91,45,56,48,46,56,56,50,49,56,55,44,51,56,46,49,48,51,52,53,55,93,44,91,45,56,48,46,55,49,49,57,54,49,44,51,56,46,48,55,57,49,50,57,93,44,91,45,56,48,46,52,51,54,53,49,52,44,51,56,46,50,54,55,51,51,52,93,44,91,45,56,48,46,54,48,57,51,55,56,44,51,56,46,51,53,56,54,48,54,93,44,91,45,56,48,46,54,53,48,55,56,54,44,51,56,46,53,50,54,53,57,93,44,91,45,56,48,46,55,56,53,49,55,55,44,51,56,46,53,53,55,54,52,57,93,44,91,45,56,48,46,56,56,49,50,51,50,44,51,56,46,53,48,55,48,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,49,49,49,57,56,53,44,51,54,46,57,57,56,48,57,51,93,44,91,45,57,56,46,49,48,52,50,56,54,44,51,54,46,53,57,51,53,55,56,93,44,91,45,57,55,46,52,54,50,52,53,57,44,51,54,46,53,57,51,54,50,55,93,44,91,45,57,55,46,52,54,50,51,52,54,44,51,54,46,57,57,56,55,48,49,93,44,91,45,57,55,46,56,48,50,51,49,51,44,51,54,46,57,57,56,55,49,56,93,44,91,45,57,56,46,49,49,49,57,56,53,44,51,54,46,57,57,56,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,112,105,110,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,49,55,55,53,57,44,52,53,46,50,52,51,55,51,50,93,44,91,45,57,56,46,55,49,54,52,57,56,44,52,52,46,56,57,54,57,50,53,93,44,91,45,57,56,46,55,48,53,55,54,50,44,52,52,46,54,51,52,49,53,57,93,44,91,45,57,55,46,57,55,55,55,57,49,44,52,52,46,54,51,49,54,48,50,93,44,91,45,57,55,46,57,56,49,55,57,50,44,52,53,46,49,53,51,50,57,53,93,44,91,45,57,55,46,57,56,49,52,53,55,44,52,53,46,50,52,48,52,49,53,93,44,91,45,57,56,46,55,49,55,55,53,57,44,52,53,46,50,52,51,55,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,87,105,110,100,115,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,50,55,44,34,98,101,100,115,34,58,49,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,57,53,56,56,53,51,44,52,51,46,56,50,54,53,52,50,93,44,91,45,55,50,46,55,56,50,56,49,50,44,52,51,46,56,48,52,51,51,56,93,44,91,45,55,50,46,56,50,48,48,52,51,44,52,51,46,55,49,54,56,51,52,93,44,91,45,55,50,46,55,48,48,57,52,53,44,52,51,46,54,56,50,56,51,49,93,44,91,45,55,50,46,55,56,56,57,56,55,44,52,51,46,53,48,48,48,55,93,44,91,45,55,50,46,55,53,57,55,57,57,44,52,51,46,51,53,52,49,52,52,93,44,91,45,55,50,46,56,54,55,57,48,50,44,52,51,46,51,48,48,55,52,50,93,44,91,45,55,50,46,56,49,57,51,54,56,44,52,51,46,50,53,53,52,57,56,93,44,91,45,55,50,46,54,56,53,54,51,55,44,52,51,46,50,50,50,52,57,53,93,44,91,45,55,50,46,52,51,52,54,52,53,44,52,51,46,50,51,51,51,49,49,93,44,91,45,55,50,46,51,55,51,56,44,52,51,46,53,55,57,49,49,57,93,44,91,45,55,50,46,51,50,57,56,57,57,44,52,51,46,54,48,48,50,49,52,93,44,91,45,55,50,46,51,48,53,49,51,51,44,52,51,46,54,57,53,51,50,49,93,44,91,45,55,50,46,50,48,53,50,49,57,44,52,51,46,55,55,48,57,54,52,93,44,91,45,55,50,46,55,56,51,50,48,56,44,52,51,46,57,50,56,57,54,55,93,44,91,45,55,50,46,55,57,49,51,51,54,44,52,51,46,57,54,49,56,53,53,93,44,91,45,55,50,46,57,53,51,48,56,51,44,52,51,46,56,55,52,56,55,93,44,91,45,55,50,46,57,53,56,56,53,51,44,52,51,46,56,50,54,53,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,53,53,34,44,34,78,65,77,69,34,58,34,84,114,105,110,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,50,55,52,56,44,51,48,46,56,53,57,53,52,55,93,44,91,45,57,53,46,50,48,48,49,56,44,51,48,46,56,50,52,53,54,54,93,44,91,45,57,52,46,57,51,57,49,50,55,44,51,49,46,48,52,50,48,52,56,93,44,91,45,57,52,46,56,52,50,57,52,55,44,51,49,46,49,52,54,53,55,56,93,44,91,45,57,52,46,56,57,57,48,49,55,44,51,49,46,51,50,54,57,55,50,93,44,91,45,57,52,46,57,53,56,49,49,44,51,49,46,51,56,54,57,51,93,44,91,45,57,53,46,52,51,52,55,56,49,44,51,49,46,48,53,56,48,57,56,93,44,91,45,57,53,46,52,51,52,51,51,53,44,51,48,46,57,51,55,52,48,53,93,44,91,45,57,53,46,51,50,55,52,56,44,51,48,46,56,53,57,53,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,101,114,110,97,108,105,108,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,55,54,57,50,44,34,98,101,100,115,34,58,50,48,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,48,54,54,53,54,50,44,51,52,46,57,53,55,49,57,93,44,91,45,49,48,55,46,48,50,52,52,56,49,44,51,52,46,56,54,57,57,53,51,93,44,91,45,49,48,54,46,55,50,48,54,54,54,44,51,52,46,56,55,48,48,53,51,93,44,91,45,49,48,54,46,54,56,53,56,48,49,44,51,52,46,57,48,54,51,53,56,93,44,91,45,49,48,54,46,52,50,57,52,56,54,44,51,52,46,57,48,51,52,93,44,91,45,49,48,54,46,52,49,49,55,56,49,44,51,52,46,56,55,48,50,53,50,93,44,91,45,49,48,54,46,49,52,57,55,51,55,44,51,52,46,56,55,48,49,52,50,93,44,91,45,49,48,54,46,50,52,51,55,54,50,44,51,52,46,57,53,51,51,53,53,93,44,91,45,49,48,54,46,50,52,51,56,55,52,44,51,53,46,48,52,48,48,48,51,93,44,91,45,49,48,54,46,50,52,52,50,49,54,44,51,53,46,50,49,53,54,53,55,93,44,91,45,49,48,55,46,49,57,55,50,52,52,44,51,53,46,50,49,57,52,53,57,93,44,91,45,49,48,55,46,48,54,54,53,54,50,44,51,52,46,57,53,55,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,53,34,44,34,78,65,77,69,34,58,34,77,105,116,99,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,52,49,49,50,52,44,51,49,46,52,52,48,49,55,57,93,44,91,45,56,52,46,49,57,55,57,56,54,44,51,49,46,51,53,55,53,50,49,93,44,91,45,56,52,46,51,52,48,53,53,50,44,51,49,46,51,48,53,51,52,49,93,44,91,45,56,52,46,53,48,56,48,55,56,44,51,49,46,48,55,56,52,93,44,91,45,56,52,46,51,55,54,54,49,50,44,51,49,46,48,55,56,56,56,51,93,44,91,45,56,52,46,49,49,54,54,52,52,44,51,49,46,48,55,55,57,55,49,93,44,91,45,56,52,46,48,48,51,54,50,55,44,51,49,46,48,55,55,50,57,93,44,91,45,56,51,46,57,57,57,52,51,44,51,49,46,51,51,52,57,54,54,93,44,91,45,56,51,46,57,57,55,55,57,54,44,51,49,46,52,52,51,55,53,51,93,44,91,45,56,52,46,49,52,49,49,50,52,44,51,49,46,52,52,48,49,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,72,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,54,53,56,44,34,98,101,100,115,34,58,53,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,53,46,52,51,50,56,54,50,44,50,48,46,49,52,53,50,48,55,93,44,91,45,49,53,53,46,53,55,56,55,54,56,44,50,48,46,49,56,48,49,52,55,93,44,91,45,49,53,53,46,55,53,49,52,54,52,44,50,48,46,50,57,52,52,55,93,44,91,45,49,53,53,46,56,51,54,55,56,51,44,50,48,46,51,50,49,50,50,54,93,44,91,45,49,53,53,46,57,52,55,57,54,50,44,50,48,46,50,54,49,54,53,50,93,44,91,45,49,53,53,46,57,53,55,55,49,57,44,50,48,46,49,54,55,54,49,52,93,44,91,45,49,53,53,46,56,56,52,51,49,49,44,50,48,46,48,49,56,51,50,55,93,44,91,45,49,53,53,46,57,54,50,52,50,55,44,49,57,46,57,48,57,49,53,50,93,44,91,45,49,53,54,46,49,48,55,50,52,44,49,57,46,55,57,48,52,48,50,93,44,91,45,49,53,54,46,49,49,57,48,55,53,44,49,57,46,55,49,57,51,48,49,93,44,91,45,49,53,54,46,48,51,53,56,57,53,44,49,57,46,53,57,55,57,54,49,93,44,91,45,49,53,53,46,57,52,51,50,49,51,44,49,57,46,51,52,52,50,50,55,93,44,91,45,49,53,53,46,57,55,52,48,52,49,44,49,57,46,49,48,55,55,56,57,93,44,91,45,49,53,53,46,57,50,53,57,51,49,44,49,57,46,48,48,56,49,53,52,93,44,91,45,49,53,53,46,55,51,57,57,55,49,44,49,56,46,57,49,54,56,57,49,93,44,91,45,49,53,53,46,54,57,52,50,53,55,44,49,56,46,56,54,54,55,56,54,93,44,91,45,49,53,53,46,53,54,53,54,44,49,56,46,57,51,52,53,49,55,93,44,91,45,49,53,53,46,52,57,52,56,55,56,44,49,57,46,48,55,49,53,56,54,93,44,91,45,49,53,53,46,50,53,56,48,49,53,44,49,57,46,50,50,50,49,55,49,93,44,91,45,49,53,53,46,49,56,50,48,57,56,44,49,57,46,50,48,57,57,53,52,93,44,91,45,49,53,52,46,57,51,57,54,54,51,44,49,57,46,51,49,50,56,51,52,93,44,91,45,49,53,52,46,55,55,53,55,53,49,44,49,57,46,52,53,55,49,49,51,93,44,91,45,49,53,52,46,55,53,57,51,51,51,44,49,57,46,53,51,54,52,54,50,93,44,91,45,49,53,52,46,57,50,56,57,51,53,44,49,57,46,54,55,51,54,48,53,93,44,91,45,49,53,53,46,48,51,49,54,50,44,49,57,46,56,55,53,93,44,91,45,49,53,53,46,49,52,48,51,51,44,49,57,46,57,56,57,52,56,49,93,44,91,45,49,53,53,46,52,51,50,56,54,50,44,50,48,46,49,52,53,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,77,99,67,114,101,97,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,55,56,49,53,56,44,51,54,46,56,54,55,49,51,51,93,44,91,45,56,52,46,55,55,56,52,53,52,44,51,54,46,54,48,51,50,57,93,44,91,45,56,52,46,50,54,49,51,51,55,44,51,54,46,53,57,49,55,56,52,93,44,91,45,56,52,46,50,50,55,50,57,50,44,51,54,46,53,57,50,48,52,53,93,44,91,45,56,52,46,51,53,48,48,48,54,44,51,54,46,55,56,48,54,56,49,93,44,91,45,56,52,46,50,57,55,52,49,54,44,51,54,46,57,52,53,57,51,49,93,44,91,45,56,52,46,51,53,56,48,50,52,44,51,54,46,57,53,57,52,93,44,91,45,56,52,46,53,55,56,49,53,56,44,51,54,46,56,54,55,49,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,80,101,110,100,108,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,51,50,50,56,56,44,51,56,46,55,57,49,57,51,55,93,44,91,45,56,52,46,52,55,54,50,57,57,44,51,56,46,53,52,50,55,50,51,93,44,91,45,56,52,46,50,48,53,51,52,54,44,51,56,46,53,56,50,48,51,57,93,44,91,45,56,52,46,50,51,48,52,49,49,44,51,56,46,56,50,55,52,51,55,93,44,91,45,56,52,46,50,51,49,57,49,55,44,51,56,46,56,55,52,56,54,54,93,44,91,45,56,52,46,52,49,56,49,48,55,44,51,56,46,56,48,54,53,57,54,93,44,91,45,56,52,46,53,51,50,50,56,56,44,51,56,46,55,57,49,57,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,53,34,44,34,78,65,77,69,34,58,34,83,112,101,110,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,48,49,54,52,54,44,51,56,46,48,51,55,50,55,93,44,91,45,56,53,46,52,50,52,48,53,52,44,51,56,46,49,52,55,52,51,56,93,44,91,45,56,53,46,52,50,56,56,51,44,51,56,46,49,49,56,51,56,51,93,44,91,45,56,53,46,52,56,57,50,48,50,44,51,55,46,57,57,48,54,53,52,93,44,91,45,56,53,46,51,57,57,56,55,49,44,51,55,46,57,51,57,57,53,54,93,44,91,45,56,53,46,49,54,55,56,51,52,44,51,55,46,57,55,49,56,48,57,93,44,91,45,56,53,46,49,48,49,54,52,54,44,51,56,46,48,51,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,72,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,51,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,52,56,57,53,53,44,52,57,46,48,48,48,50,57,50,93,44,91,45,49,49,48,46,55,52,51,48,54,52,44,52,56,46,57,57,56,54,48,54,93,44,91,45,49,49,48,46,55,53,53,56,55,51,44,52,56,46,50,49,57,54,48,49,93,44,91,45,49,49,48,46,54,50,53,52,48,57,44,52,56,46,51,48,54,52,55,57,93,44,91,45,49,48,57,46,56,52,53,57,51,50,44,52,56,46,51,48,53,57,55,49,93,44,91,45,49,48,57,46,55,50,54,57,52,51,44,52,56,46,50,50,49,53,50,53,93,44,91,45,49,48,57,46,55,50,54,57,49,52,44,52,56,46,49,51,50,56,53,57,93,44,91,45,49,48,57,46,53,51,52,50,57,53,44,52,56,46,49,51,52,53,54,52,93,44,91,45,49,48,57,46,53,49,56,55,56,44,52,56,46,51,57,52,55,50,54,93,44,91,45,49,48,57,46,52,54,52,51,49,56,44,52,56,46,52,53,50,54,51,56,93,44,91,45,49,48,57,46,53,48,53,51,51,51,44,52,56,46,53,54,55,57,49,93,44,91,45,49,48,57,46,52,56,57,53,53,44,52,57,46,48,48,48,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,86,97,108,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,50,52,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,49,50,48,49,54,44,52,49,46,55,52,48,54,49,51,93,44,91,45,57,57,46,50,48,51,50,54,49,44,52,49,46,51,57,52,49,52,93,44,91,45,57,56,46,55,53,49,53,53,56,44,52,49,46,51,57,52,48,56,52,93,44,91,45,57,56,46,55,53,50,50,50,53,44,52,49,46,55,52,48,51,55,50,93,44,91,45,57,56,46,55,53,57,49,51,51,44,52,49,46,55,52,48,51,56,50,93,44,91,45,57,57,46,50,49,50,48,49,54,44,52,49,46,55,52,48,54,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,67,97,115,116,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,56,55,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,53,50,53,49,56,52,44,51,52,46,55,52,54,57,51,49,93,44,91,45,49,48,50,46,53,50,53,54,51,49,44,51,52,46,51,49,51,48,51,52,93,44,91,45,49,48,50,46,48,57,48,52,49,53,44,51,52,46,51,49,51,49,51,50,93,44,91,45,49,48,49,46,57,57,56,48,50,44,51,52,46,51,49,51,48,51,57,93,44,91,45,49,48,49,46,57,57,56,52,57,51,44,51,52,46,55,52,56,49,57,93,44,91,45,49,48,50,46,49,54,56,56,51,57,44,51,52,46,55,52,55,52,49,55,93,44,91,45,49,48,50,46,53,50,53,49,56,52,44,51,52,46,55,52,54,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,56,49,49,44,34,98,101,100,115,34,58,51,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,50,50,49,49,44,51,57,46,54,49,57,54,53,55,93,44,91,45,55,55,46,56,56,57,49,51,53,44,51,57,46,53,57,55,52,53,51,93,44,91,45,55,55,46,56,50,53,53,55,50,44,51,57,46,52,57,51,50,56,57,93,44,91,45,55,55,46,55,49,57,53,49,57,44,51,57,46,51,50,49,51,49,52,93,44,91,45,55,55,46,54,55,55,49,54,52,44,51,57,46,51,50,52,53,51,52,93,44,91,45,55,55,46,53,55,48,49,56,50,44,51,57,46,54,49,57,57,57,56,93,44,91,45,55,55,46,52,54,57,49,52,53,44,51,57,46,55,50,48,48,49,56,93,44,91,45,55,56,46,48,57,57,52,48,51,44,51,57,46,55,50,50,48,57,57,93,44,91,45,55,56,46,51,52,50,56,51,52,44,51,57,46,55,50,50,50,54,51,93,44,91,45,55,56,46,51,51,51,56,49,57,44,51,57,46,54,51,54,55,54,50,93,44,91,45,55,56,46,49,55,49,53,52,57,44,51,57,46,54,57,53,54,52,51,93,44,91,45,55,56,46,48,50,50,49,49,44,51,57,46,54,49,57,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,76,101,116,99,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,55,54,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,51,50,54,57,51,44,51,55,46,50,55,49,53,48,50,93,44,91,45,56,51,46,48,48,48,49,52,50,44,51,55,46,49,57,53,55,49,93,44,91,45,56,51,46,49,50,50,48,57,44,51,55,46,48,48,48,57,57,55,93,44,91,45,56,50,46,57,51,57,52,54,54,44,51,55,46,48,49,53,53,50,93,44,91,45,56,50,46,56,54,57,49,57,50,44,51,54,46,57,55,52,49,56,54,93,44,91,45,56,50,46,55,52,50,55,53,57,44,51,55,46,48,52,50,55,57,54,93,44,91,45,56,50,46,55,49,53,49,52,57,44,51,55,46,49,50,49,56,52,56,93,44,91,45,56,50,46,53,54,53,51,55,57,44,51,55,46,49,57,54,48,57,57,93,44,91,45,56,50,46,55,51,50,54,57,51,44,51,55,46,50,55,49,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,83,97,108,101,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,51,51,54,44,34,98,101,100,115,34,58,50,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,52,48,53,52,56,57,44,51,57,46,55,57,54,51,54,56,93,44,91,45,55,53,46,53,53,56,55,55,51,44,51,57,46,54,50,57,57,56,55,93,44,91,45,55,53,46,53,49,50,55,55,44,51,57,46,53,55,56,50,57,93,44,91,45,55,53,46,53,54,48,53,51,56,44,51,57,46,52,53,53,54,52,53,93,44,91,45,55,53,46,52,56,49,51,54,44,51,57,46,51,56,55,53,53,53,93,44,91,45,55,53,46,52,52,52,55,53,49,44,51,57,46,51,53,53,48,56,57,93,44,91,45,55,53,46,50,51,56,52,51,52,44,51,57,46,53,53,57,48,51,57,93,44,91,45,55,53,46,48,56,51,56,50,51,44,51,57,46,52,53,55,51,53,52,93,44,91,45,55,53,46,48,54,49,56,53,52,44,51,57,46,53,54,56,55,52,54,93,44,91,45,55,53,46,49,57,57,55,57,51,44,51,57,46,54,54,54,57,57,54,93,44,91,45,55,53,46,51,54,55,50,51,57,44,51,57,46,55,49,55,53,54,53,93,44,91,45,55,53,46,52,48,53,52,56,57,44,51,57,46,55,57,54,51,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,56,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,56,48,34,44,34,78,65,77,69,34,58,34,76,121,110,99,104,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,49,51,49,44,34,98,101,100,115,34,58,51,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,49,56,53,55,48,50,44,51,55,46,52,54,53,56,50,93,44,91,45,55,57,46,50,53,55,57,53,53,44,51,55,46,51,53,53,56,49,54,93,44,91,45,55,57,46,48,56,53,49,50,51,44,51,55,46,51,57,52,56,55,53,93,44,91,45,55,57,46,49,56,53,55,48,50,44,51,55,46,52,54,53,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,48,48,57,44,34,98,101,100,115,34,58,50,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,55,53,49,55,56,44,51,52,46,55,55,49,56,57,50,93,44,91,45,57,50,46,57,54,57,50,53,44,51,52,46,55,55,50,50,54,54,93,44,91,45,57,50,46,57,55,57,57,48,50,44,51,52,46,54,51,55,50,50,50,93,44,91,45,57,50,46,56,48,56,48,50,56,44,51,52,46,53,57,48,52,48,54,93,44,91,45,57,50,46,55,57,51,49,57,55,44,51,52,46,53,48,51,54,48,54,93,44,91,45,57,50,46,54,54,56,55,49,49,44,51,52,46,52,49,52,50,51,55,93,44,91,45,57,50,46,53,56,57,52,49,56,44,51,52,46,52,53,53,54,52,49,93,44,91,45,57,50,46,52,48,52,54,56,44,51,52,46,52,53,49,57,49,54,93,44,91,45,57,50,46,50,52,53,56,49,56,44,51,52,46,52,57,51,53,48,54,93,44,91,45,57,50,46,51,52,56,55,52,57,44,51,52,46,53,56,50,50,57,93,44,91,45,57,50,46,54,53,52,51,50,52,44,51,52,46,55,54,52,53,52,49,93,44,91,45,57,50,46,55,51,57,55,55,57,44,51,52,46,56,53,51,52,53,57,93,44,91,45,57,51,46,48,55,51,56,55,55,44,51,52,46,56,53,56,48,57,49,93,44,91,45,57,51,46,48,55,53,49,55,56,44,51,52,46,55,55,49,56,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,51,57,44,34,98,101,100,115,34,58,50,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,48,56,54,52,53,44,51,56,46,56,55,56,52,54,93,44,91,45,56,49,46,57,48,48,53,57,53,44,51,56,46,57,51,55,54,55,49,93,44,91,45,56,50,46,48,48,53,57,57,44,51,57,46,48,50,57,51,56,55,93,44,91,45,56,50,46,48,57,56,57,54,53,44,51,56,46,57,53,56,51,55,56,93,44,91,45,56,50,46,49,52,52,49,54,55,44,51,56,46,56,52,49,56,56,93,44,91,45,56,50,46,50,50,49,53,54,54,44,51,56,46,55,56,55,49,56,55,93,44,91,45,56,50,46,49,55,49,57,54,54,44,51,56,46,54,50,53,51,56,52,93,44,91,45,56,50,46,50,49,56,57,54,55,44,51,56,46,53,57,49,54,56,51,93,44,91,45,56,50,46,48,53,53,49,50,55,44,51,56,46,52,55,52,53,52,55,93,44,91,45,56,50,46,48,54,52,53,54,50,44,51,56,46,54,48,55,57,56,53,93,44,91,45,56,49,46,57,53,53,55,57,49,44,51,56,46,54,53,55,51,53,53,93,44,91,45,56,49,46,55,55,50,56,52,51,44,51,56,46,54,56,48,56,52,51,93,44,91,45,56,49,46,57,48,56,54,52,53,44,51,56,46,56,55,56,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,71,105,108,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,51,51,54,51,50,44,51,57,46,48,48,57,53,56,52,93,44,91,45,56,48,46,57,56,52,57,53,44,51,56,46,55,49,55,56,57,56,93,44,91,45,56,48,46,55,48,49,53,50,50,44,51,56,46,56,55,57,48,52,53,93,44,91,45,56,48,46,54,48,53,55,57,57,44,51,56,46,57,48,52,49,54,55,93,44,91,45,56,48,46,55,49,54,56,49,53,44,51,57,46,48,48,56,52,51,93,44,91,45,56,48,46,55,50,56,51,50,54,44,51,57,46,48,57,53,54,55,57,93,44,91,45,56,48,46,56,49,50,57,55,44,51,57,46,49,48,57,52,48,49,93,44,91,45,56,49,46,48,51,51,54,51,50,44,51,57,46,48,48,57,53,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,52,54,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,52,56,49,52,52,44,51,49,46,56,54,57,56,52,56,93,44,91,45,57,49,46,51,52,53,50,49,52,44,51,49,46,56,52,51,56,54,49,93,44,91,45,57,49,46,51,49,55,56,54,52,44,51,49,46,55,52,57,55,54,54,93,44,91,45,57,49,46,50,57,53,53,55,44,51,49,46,54,54,57,56,55,93,44,91,45,57,49,46,49,53,51,56,54,52,44,51,49,46,54,49,48,48,54,56,93,44,91,45,57,48,46,55,51,55,51,51,44,51,49,46,54,49,49,49,50,52,93,44,91,45,57,48,46,55,51,54,56,50,52,44,51,49,46,54,57,56,52,57,49,93,44,91,45,57,48,46,55,51,54,50,56,50,44,51,49,46,55,56,54,49,51,52,93,44,91,45,57,49,46,48,49,51,54,55,54,44,51,49,46,56,54,49,56,53,50,93,44,91,45,57,49,46,50,52,56,49,52,52,44,51,49,46,56,54,57,56,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,82,111,108,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,54,48,51,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,56,50,54,48,56,44,52,56,46,57,57,57,50,48,52,93,44,91,45,49,48,48,46,49,56,51,48,51,52,44,52,56,46,55,49,56,57,48,57,93,44,91,45,49,48,48,46,49,52,53,56,53,56,44,52,56,46,53,52,53,50,49,49,93,44,91,45,57,57,46,52,57,51,49,56,57,44,52,56,46,53,52,52,56,51,52,93,44,91,45,57,57,46,53,50,53,56,57,53,44,52,56,46,55,49,56,51,56,52,93,44,91,45,57,57,46,53,50,53,55,55,57,44,52,56,46,57,57,57,51,48,55,93,44,91,45,49,48,48,46,49,56,50,54,48,56,44,52,56,46,57,57,57,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,84,114,101,97,115,117,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,55,51,56,53,52,56,44,52,54,46,52,56,49,56,48,54,93,44,91,45,49,48,55,46,52,54,54,57,57,54,44,52,54,46,49,50,57,57,57,53,93,44,91,45,49,48,55,46,53,49,49,53,51,52,44,52,54,46,48,52,51,52,48,51,93,44,91,45,49,48,55,46,52,50,53,49,50,56,44,52,53,46,57,53,54,54,55,52,93,44,91,45,49,48,55,46,49,55,54,51,53,56,44,52,53,46,57,53,54,55,54,49,93,44,91,45,49,48,54,46,57,51,57,48,57,53,44,52,53,46,56,55,48,48,52,49,93,44,91,45,49,48,54,46,57,51,57,48,54,55,44,52,54,46,49,51,54,54,54,55,93,44,91,45,49,48,55,46,48,48,53,53,51,52,44,52,54,46,49,51,54,54,54,57,93,44,91,45,49,48,55,46,48,50,56,52,50,50,44,52,54,46,51,57,53,52,54,93,44,91,45,49,48,55,46,49,53,51,52,52,52,44,52,54,46,51,57,53,54,49,51,93,44,91,45,49,48,55,46,49,55,52,53,51,49,44,52,54,46,52,56,50,55,49,51,93,44,91,45,49,48,55,46,55,51,56,53,52,56,44,52,54,46,52,56,49,56,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,56,55,50,44,34,98,101,100,115,34,58,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,56,54,52,54,49,44,51,56,46,48,54,55,48,50,56,93,44,91,45,56,52,46,51,51,55,51,57,51,44,51,55,46,56,57,50,48,48,55,93,44,91,45,56,52,46,48,56,48,51,51,55,44,51,55,46,56,53,51,48,54,54,93,44,91,45,56,52,46,48,48,49,57,54,55,44,51,55,46,56,51,55,53,57,50,93,44,91,45,56,51,46,57,54,54,51,49,44,51,55,46,57,51,48,55,54,56,93,44,91,45,56,52,46,48,56,48,53,50,55,44,51,56,46,49,49,53,49,49,56,93,44,91,45,56,52,46,50,56,54,52,54,49,44,51,56,46,48,54,55,48,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,111,114,111,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,51,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,52,54,51,50,49,49,44,49,56,46,51,55,49,52,55,51,93,44,91,45,54,54,46,52,53,53,55,48,51,44,49,56,46,50,53,55,55,50,54,93,44,91,45,54,54,46,51,55,55,55,49,50,44,49,56,46,50,57,51,57,55,54,93,44,91,45,54,54,46,51,54,53,50,55,50,44,49,56,46,51,51,51,50,50,57,93,44,91,45,54,54,46,51,55,55,48,53,56,44,49,56,46,51,52,52,50,52,54,93,44,91,45,54,54,46,52,52,51,56,44,49,56,46,51,55,49,48,50,55,93,44,91,45,54,54,46,52,54,51,50,49,49,44,49,56,46,51,55,49,52,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,50,53,48,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,56,50,52,57,56,44,52,50,46,55,54,56,50,93,44,91,45,56,55,46,48,53,56,55,49,54,44,52,50,46,55,54,53,50,48,50,93,44,91,45,56,55,46,48,52,51,56,57,57,44,52,50,46,54,54,51,55,50,57,93,44,91,45,56,55,46,48,49,57,57,51,53,44,52,50,46,52,57,51,52,57,56,93,44,91,45,56,55,46,48,52,48,48,52,54,44,52,50,46,52,49,54,57,57,51,93,44,91,45,56,53,46,55,54,52,54,57,55,44,52,50,46,52,50,48,55,49,53,93,44,91,45,56,53,46,53,52,51,49,57,49,44,52,50,46,52,50,49,52,51,51,93,44,91,45,56,53,46,53,52,53,53,54,52,44,52,50,46,55,54,56,49,51,57,93,44,91,45,56,53,46,55,56,50,52,57,56,44,52,50,46,55,54,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,49,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,57,48,57,50,44,51,54,46,51,54,48,49,51,51,93,44,91,45,56,56,46,50,49,50,53,53,57,44,51,54,46,49,50,48,50,57,93,44,91,45,56,56,46,50,49,55,52,51,54,44,51,53,46,56,52,54,53,56,50,93,44,91,45,56,56,46,49,55,55,56,53,57,44,51,53,46,56,52,53,56,52,49,93,44,91,45,56,55,46,57,55,48,55,51,56,44,51,53,46,56,49,53,55,48,53,93,44,91,45,56,55,46,57,54,50,55,52,44,51,53,46,56,52,48,57,50,49,93,44,91,45,56,55,46,57,50,53,56,51,53,44,51,53,46,57,51,48,52,51,50,93,44,91,45,56,56,46,48,48,48,56,48,57,44,51,54,46,48,50,56,48,56,57,93,44,91,45,56,55,46,57,49,57,48,52,51,44,51,54,46,49,51,48,48,52,57,93,44,91,45,56,55,46,57,52,57,54,48,51,44,51,54,46,50,52,51,49,54,93,44,91,45,56,55,46,57,56,48,55,52,44,51,54,46,51,53,51,51,48,55,93,44,91,45,56,55,46,57,57,48,57,50,44,51,54,46,51,54,48,49,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,49,49,44,34,98,101,100,115,34,58,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,54,53,56,50,52,44,52,52,46,52,57,56,50,49,56,93,44,91,45,57,52,46,56,54,54,50,53,57,44,52,52,46,50,56,50,51,55,50,93,44,91,45,57,53,46,49,48,55,52,56,44,52,52,46,50,56,49,55,54,56,93,44,91,45,57,53,46,49,48,56,55,55,55,44,52,52,46,49,57,53,48,52,52,93,44,91,45,57,53,46,49,48,48,50,50,49,44,52,52,46,49,48,56,48,51,52,93,44,91,45,57,52,46,56,53,57,56,48,51,44,52,52,46,49,48,56,48,49,54,93,44,91,45,57,52,46,51,54,56,56,53,44,52,52,46,49,48,56,54,57,56,93,44,91,45,57,52,46,51,55,49,55,51,49,44,52,52,46,50,54,52,52,52,56,93,44,91,45,57,52,46,52,57,49,54,56,54,44,52,52,46,51,53,50,50,53,52,93,44,91,45,57,52,46,55,56,48,54,51,44,52,52,46,52,53,54,54,53,93,44,91,45,57,52,46,56,54,53,56,50,52,44,52,52,46,52,57,56,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,80,105,99,107,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,55,52,56,49,49,44,51,54,46,54,49,53,52,54,53,93,44,91,45,56,53,46,50,55,54,50,56,49,44,51,54,46,54,50,54,56,49,54,93,44,91,45,56,53,46,50,56,52,56,55,56,44,51,54,46,53,51,49,50,57,51,93,44,91,45,56,53,46,49,50,48,52,52,53,44,51,54,46,52,48,55,49,54,52,93,44,91,45,56,53,46,48,52,51,57,50,52,44,51,54,46,53,53,56,55,57,49,93,44,91,45,56,52,46,57,52,51,49,52,52,44,51,54,46,53,56,49,50,55,93,44,91,45,56,52,46,55,51,49,56,51,57,44,51,54,46,53,50,52,54,55,52,93,44,91,45,56,52,46,55,56,53,52,53,44,51,54,46,54,48,51,52,52,52,93,44,91,45,56,52,46,57,55,52,56,49,49,44,51,54,46,54,49,53,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,76,111,117,105,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,54,50,52,56,49,44,51,55,46,57,48,52,54,56,53,93,44,91,45,55,55,46,55,57,55,51,48,54,44,51,55,46,55,50,57,51,53,56,93,44,91,45,55,55,46,54,56,55,52,54,57,44,51,56,46,48,48,55,56,48,54,93,44,91,45,55,55,46,56,51,57,55,49,55,44,51,56,46,49,48,54,48,51,56,93,44,91,45,55,55,46,57,53,51,54,51,57,44,51,56,46,49,49,56,53,48,49,93,44,91,45,55,56,46,49,48,49,55,52,56,44,51,56,46,49,53,50,53,54,55,93,44,91,45,55,56,46,50,48,57,51,56,52,44,51,56,46,49,51,49,49,50,56,93,44,91,45,55,56,46,51,48,54,55,54,51,44,51,56,46,48,48,54,52,55,52,93,44,91,45,55,56,46,48,54,50,52,56,49,44,51,55,46,57,48,52,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,51,57,57,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,53,50,48,56,44,51,57,46,54,51,56,51,52,53,93,44,91,45,56,53,46,57,53,50,48,48,53,44,51,57,46,51,52,55,51,55,51,93,44,91,45,56,53,46,54,56,52,53,49,53,44,51,57,46,51,53,48,48,52,57,93,44,91,45,56,53,46,54,50,57,51,50,55,44,51,57,46,52,53,50,55,53,93,44,91,45,56,53,46,54,51,51,50,50,56,44,51,57,46,54,57,56,52,54,50,93,44,91,45,56,53,46,57,53,49,55,50,49,44,51,57,46,54,57,55,49,51,54,93,44,91,45,56,53,46,57,53,50,48,56,44,51,57,46,54,51,56,51,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,53,51,51,51,44,34,98,101,100,115,34,58,53,56,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,54,49,56,50,55,44,52,48,46,49,50,53,56,53,53,93,44,91,45,56,51,46,49,54,57,57,56,49,44,52,48,46,49,52,51,48,56,55,93,44,91,45,56,51,46,50,48,54,50,55,51,44,52,48,46,49,48,55,55,51,51,93,44,91,45,56,51,46,50,53,51,56,51,44,52,48,46,48,52,57,50,49,56,93,44,91,45,56,51,46,50,52,51,55,48,50,44,51,57,46,56,49,50,53,48,51,93,44,91,45,56,50,46,56,50,52,50,53,52,44,51,57,46,55,57,52,57,57,54,93,44,91,45,56,50,46,55,56,50,52,57,53,44,51,57,46,57,51,57,54,54,50,93,44,91,45,56,50,46,55,54,49,56,50,55,44,52,48,46,49,50,53,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,73,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,54,57,49,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,48,53,50,51,53,44,51,55,46,54,48,52,55,55,54,93,44,91,45,49,49,51,46,53,56,55,55,57,55,44,51,55,46,54,48,52,54,49,49,93,44,91,45,49,49,51,46,52,55,52,48,50,57,44,51,55,46,53,50,57,48,56,53,93,44,91,45,49,49,51,46,50,53,51,51,52,44,51,55,46,53,50,56,57,56,51,93,44,91,45,49,49,51,46,50,53,51,52,57,44,51,55,46,52,56,50,49,54,55,93,44,91,45,49,49,51,46,48,51,55,48,52,56,44,51,55,46,52,55,52,52,55,52,93,44,91,45,49,49,50,46,57,48,48,57,57,51,44,51,55,46,53,48,48,48,50,49,93,44,91,45,49,49,50,46,54,56,51,55,53,44,51,55,46,53,52,51,54,57,50,93,44,91,45,49,49,50,46,54,56,57,50,50,49,44,51,55,46,56,48,53,53,57,93,44,91,45,49,49,50,46,53,55,56,51,57,55,44,51,55,46,56,56,50,49,52,55,93,44,91,45,49,49,50,46,52,54,56,49,55,55,44,51,55,46,56,57,48,52,54,52,93,44,91,45,49,49,50,46,52,55,56,54,56,44,51,56,46,49,52,55,52,49,57,93,44,91,45,49,49,51,46,52,55,49,54,44,51,56,46,49,52,56,54,54,53,93,44,91,45,49,49,52,46,48,52,57,57,55,56,44,51,56,46,49,52,56,55,54,51,93,44,91,45,49,49,52,46,48,53,50,51,53,44,51,55,46,54,48,52,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,69,115,109,101,114,97,108,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,52,50,56,49,52,52,44,51,55,46,56,57,54,50,50,93,44,91,45,49,49,55,46,56,51,50,55,50,54,44,51,55,46,52,54,52,57,50,57,93,44,91,45,49,49,55,46,49,54,54,48,48,49,44,51,54,46,57,55,49,49,49,49,93,44,91,45,49,49,55,46,49,54,53,54,49,50,44,51,56,46,48,48,49,54,57,50,93,44,91,45,49,49,55,46,54,57,49,48,50,49,44,51,56,46,52,55,51,55,57,55,93,44,91,45,49,49,56,46,51,53,49,52,56,52,44,51,55,46,56,57,51,55,48,53,93,44,91,45,49,49,56,46,52,50,56,49,52,52,44,51,55,46,56,57,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,75,101,119,101,101,110,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,52,56,56,54,57,44,52,55,46,52,55,55,49,52,53,93,44,91,45,56,56,46,53,49,50,53,57,50,44,52,55,46,50,56,53,57,52,51,93,44,91,45,56,56,46,50,57,56,57,57,50,44,52,55,46,50,56,54,48,57,55,93,44,91,45,56,56,46,50,57,56,52,51,54,44,52,55,46,49,57,57,55,56,50,93,44,91,45,56,56,46,48,52,54,48,54,51,44,52,55,46,49,57,57,55,50,50,93,44,91,45,56,56,46,48,52,54,54,49,52,44,52,55,46,50,49,56,54,57,54,93,44,91,45,56,55,46,49,49,50,49,49,52,44,52,55,46,50,50,51,50,54,57,93,44,91,45,56,55,46,49,49,50,54,57,53,44,52,55,46,56,49,55,57,57,56,93,44,91,45,56,56,46,51,54,57,56,54,50,44,52,56,46,51,48,54,48,54,51,93,44,91,45,56,56,46,54,55,55,52,52,50,44,52,56,46,50,52,53,51,57,55,93,44,91,45,56,57,46,51,51,55,53,53,44,52,55,46,57,55,52,50,54,49,93,44,91,45,56,57,46,52,56,51,51,56,53,44,52,56,46,48,49,51,55,49,54,93,44,91,45,56,57,46,54,56,48,55,51,44,52,55,46,55,49,52,53,53,50,93,44,91,45,56,56,46,57,52,56,56,54,57,44,52,55,46,52,55,55,49,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,83,97,110,112,101,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,54,54,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,54,52,49,57,52,52,44,51,57,46,56,49,50,56,54,57,93,44,91,45,49,49,49,46,53,56,52,55,53,52,44,51,57,46,55,52,48,49,52,49,93,44,91,45,49,49,49,46,55,49,55,52,56,50,44,51,57,46,54,57,52,53,54,93,44,91,45,49,49,49,46,55,49,51,50,50,52,44,51,57,46,52,54,48,50,57,52,93,44,91,45,49,49,49,46,55,52,55,48,52,52,44,51,57,46,51,56,50,55,53,93,44,91,45,49,49,49,46,57,50,50,51,56,57,44,51,57,46,51,56,49,53,57,49,93,44,91,45,49,49,50,46,48,49,54,48,48,51,44,51,57,46,51,49,52,53,54,49,93,44,91,45,49,49,50,46,48,49,52,48,56,51,44,51,57,46,48,52,53,53,49,56,93,44,91,45,49,49,49,46,56,53,51,50,57,55,44,51,57,46,48,51,50,57,56,52,93,44,91,45,49,49,49,46,50,57,57,51,54,44,51,57,46,48,51,50,50,54,52,93,44,91,45,49,49,49,46,51,48,48,57,48,53,44,51,57,46,52,54,55,50,51,55,93,44,91,45,49,49,49,46,50,52,55,55,52,56,44,51,57,46,52,54,55,49,57,57,93,44,91,45,49,49,49,46,50,52,55,51,57,49,44,51,57,46,55,48,52,51,53,93,44,91,45,49,49,49,46,50,52,55,52,57,54,44,51,57,46,56,49,51,48,50,56,93,44,91,45,49,49,49,46,54,52,49,57,52,52,44,51,57,46,56,49,50,56,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,75,101,97,114,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,52,50,51,49,50,44,51,56,46,50,54,51,50,48,55,93,44,91,45,49,48,49,46,53,52,50,55,53,55,44,51,55,46,56,50,55,53,57,52,93,44,91,45,49,48,49,46,53,50,55,48,54,51,44,51,55,46,55,51,54,51,49,52,93,44,91,45,49,48,49,46,48,56,57,54,54,55,44,51,55,46,55,51,54,51,51,55,93,44,91,45,49,48,49,46,49,48,51,55,55,56,44,51,55,46,56,50,57,48,51,53,93,44,91,45,49,48,49,46,49,48,51,50,54,56,44,51,56,46,50,54,52,53,53,55,93,44,91,45,49,48,49,46,49,50,53,52,51,56,44,51,56,46,50,54,52,53,48,57,93,44,91,45,49,48,49,46,53,52,50,51,49,50,44,51,56,46,50,54,51,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,114,101,118,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,54,56,48,56,44,34,98,101,100,115,34,58,50,48,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,54,50,57,48,56,44,50,56,46,51,52,55,52,56,55,93,44,91,45,56,48,46,56,54,56,56,56,49,44,50,55,46,56,50,50,53,50,50,93,44,91,45,56,48,46,53,48,57,48,55,53,44,50,55,46,56,50,50,48,53,56,93,44,91,45,56,48,46,51,56,53,48,54,57,44,50,55,46,56,54,49,51,54,50,93,44,91,45,56,48,46,52,57,57,55,55,51,44,50,56,46,48,55,55,50,54,93,44,91,45,56,48,46,53,52,51,57,57,57,44,50,56,46,50,55,49,48,57,50,93,44,91,45,56,48,46,52,54,57,51,57,44,50,56,46,52,53,51,48,57,55,93,44,91,45,56,48,46,53,50,50,57,55,51,44,50,56,46,54,48,56,50,51,56,93,44,91,45,56,48,46,54,54,51,52,54,49,44,50,56,46,55,57,48,53,56,56,93,44,91,45,56,48,46,57,54,55,56,57,53,44,50,56,46,55,57,48,49,57,55,93,44,91,45,56,48,46,57,56,55,50,53,44,50,56,46,54,49,50,57,57,55,93,44,91,45,56,48,46,56,56,53,57,48,50,44,50,56,46,53,49,48,50,51,56,93,44,91,45,56,48,46,56,54,50,57,48,56,44,50,56,46,51,52,55,52,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,52,48,51,44,34,98,101,100,115,34,58,51,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,51,48,56,49,56,44,51,57,46,51,52,54,57,52,56,93,44,91,45,56,54,46,54,56,53,54,49,44,51,57,46,51,51,54,48,52,51,93,44,91,45,56,54,46,54,56,51,48,48,50,44,51,57,46,49,54,53,55,52,54,93,44,91,45,56,54,46,54,56,50,50,55,55,44,51,56,46,57,57,50,52,48,52,93,44,91,45,56,54,46,51,49,55,52,55,52,44,51,56,46,57,57,48,56,55,93,44,91,45,56,54,46,51,49,56,49,51,51,44,51,57,46,48,52,56,56,49,93,44,91,45,56,54,46,51,55,48,48,54,54,44,51,57,46,48,52,56,51,55,53,93,44,91,45,56,54,46,51,56,49,51,57,53,44,51,57,46,51,51,57,55,53,50,93,44,91,45,56,54,46,54,51,48,56,49,56,44,51,57,46,51,52,54,57,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,76,117,99,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,57,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,53,55,53,53,54,44,52,49,46,49,54,49,50,55,49,93,44,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,44,91,45,57,51,46,48,57,55,53,57,53,44,52,48,46,56,57,56,52,53,49,93,44,91,45,57,51,46,48,57,57,50,49,55,44,52,49,46,49,54,48,56,54,55,93,44,91,45,57,51,46,51,50,55,56,56,54,44,52,49,46,49,54,48,54,53,57,93,44,91,45,57,51,46,53,53,55,53,53,54,44,52,49,46,49,54,49,50,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,57,34,44,34,78,65,77,69,34,58,34,87,111,111,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,57,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,50,53,49,54,56,44,51,56,46,49,57,53,52,50,54,93,44,91,45,56,52,46,56,54,52,57,48,56,44,51,56,46,49,49,54,57,50,54,93,44,91,45,56,52,46,55,57,54,51,50,55,44,51,55,46,57,55,48,48,56,56,93,44,91,45,56,52,46,55,48,57,57,49,56,44,51,55,46,56,54,49,57,53,50,93,44,91,45,56,52,46,54,54,48,51,52,44,51,56,46,48,48,51,56,51,54,93,44,91,45,56,52,46,54,50,53,48,55,57,44,51,56,46,49,49,54,51,57,55,93,44,91,45,56,52,46,55,50,53,49,54,56,44,51,56,46,49,57,53,52,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,48,48,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,56,49,50,55,44,51,50,46,53,53,54,52,55,49,93,44,91,45,56,49,46,49,50,56,53,51,53,44,51,50,46,51,51,56,51,56,49,93,44,91,45,56,49,46,49,52,52,53,55,50,44,51,50,46,50,50,54,49,50,56,93,44,91,45,56,49,46,49,49,55,50,50,53,44,51,50,46,49,49,55,54,48,52,93,44,91,45,56,49,46,48,48,52,51,48,53,44,51,50,46,49,48,50,51,54,55,93,44,91,45,56,48,46,55,56,50,57,54,44,51,49,46,57,57,53,57,53,52,93,44,91,45,56,48,46,55,52,53,53,51,54,44,51,50,46,48,55,56,54,54,55,93,44,91,45,56,48,46,57,48,48,53,55,51,44,51,50,46,49,49,49,54,49,55,93,44,91,45,56,49,46,48,48,56,53,52,44,51,50,46,50,49,50,49,50,56,93,44,91,45,56,48,46,57,50,49,56,56,51,44,51,50,46,51,53,49,56,51,52,93,44,91,45,56,48,46,56,52,49,52,53,56,44,51,50,46,51,56,53,48,54,52,93,44,91,45,56,48,46,56,50,48,50,50,56,44,51,50,46,52,57,48,55,56,56,93,44,91,45,56,48,46,56,54,57,55,48,53,44,51,50,46,54,54,48,57,51,53,93,44,91,45,56,49,46,48,49,56,52,57,53,44,51,50,46,55,53,48,49,55,50,93,44,91,45,56,49,46,50,56,49,50,55,44,51,50,46,53,53,54,52,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,66,114,101,119,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,53,54,55,48,52,57,44,51,48,46,48,53,50,56,48,56,93,44,91,45,49,48,51,46,52,51,57,57,55,54,44,51,48,46,54,54,53,57,51,57,93,44,91,45,49,48,51,46,56,48,48,54,56,44,51,48,46,52,49,50,53,50,55,93,44,91,45,49,48,51,46,55,57,50,55,48,51,44,50,57,46,50,54,50,52,57,57,93,44,91,45,49,48,51,46,55,49,56,53,54,49,44,50,57,46,49,56,48,56,50,54,93,44,91,45,49,48,51,46,53,53,54,56,54,56,44,50,57,46,49,53,53,53,48,50,93,44,91,45,49,48,51,46,51,56,54,56,49,55,44,50,57,46,48,50,49,55,51,53,93,44,91,45,49,48,51,46,49,53,51,56,57,54,44,50,56,46,57,55,49,54,48,54,93,44,91,45,49,48,50,46,57,48,54,51,56,50,44,50,57,46,50,54,50,48,53,53,93,44,91,45,49,48,50,46,56,55,55,55,50,54,44,50,57,46,51,53,52,56,93,44,91,45,49,48,50,46,54,57,51,53,51,57,44,50,57,46,54,55,54,57,53,55,93,44,91,45,49,48,50,46,54,55,55,50,49,57,44,50,57,46,55,52,49,48,53,50,93,44,91,45,49,48,50,46,52,51,52,50,50,56,44,50,57,46,55,55,54,57,52,54,93,44,91,45,49,48,50,46,51,50,48,56,49,57,44,50,57,46,56,55,56,57,51,51,93,44,91,45,49,48,50,46,53,54,55,48,52,57,44,51,48,46,48,53,50,56,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,77,99,67,111,114,109,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,53,54,52,52,57,49,44,51,51,46,57,53,53,55,51,51,93,44,91,45,56,50,46,51,52,54,57,51,51,44,51,51,46,56,51,52,50,57,56,93,44,91,45,56,50,46,50,49,56,54,52,57,44,51,51,46,54,56,54,50,57,57,93,44,91,45,56,50,46,49,49,53,51,50,57,44,51,51,46,53,57,54,54,49,51,93,44,91,45,56,50,46,49,55,50,56,48,55,44,51,51,46,55,54,53,49,57,52,93,44,91,45,56,50,46,49,50,52,56,52,50,44,51,51,46,56,52,50,50,56,49,93,44,91,45,56,50,46,49,53,53,55,44,51,51,46,57,50,57,50,57,93,44,91,45,56,50,46,48,52,54,57,55,52,44,51,51,46,57,53,51,50,49,93,44,91,45,56,50,46,50,48,48,50,56,54,44,51,51,46,57,55,56,53,57,55,93,44,91,45,56,50,46,51,50,54,57,52,55,44,51,52,46,48,54,52,49,50,93,44,91,45,56,50,46,53,51,48,53,54,55,44,51,52,46,48,55,49,57,50,53,93,44,91,45,56,50,46,53,57,52,54,51,49,44,51,52,46,48,49,51,55,57,54,93,44,91,45,56,50,46,53,54,52,52,57,49,44,51,51,46,57,53,53,55,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,54,52,52,44,34,98,101,100,115,34,58,49,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,49,49,54,57,52,44,51,52,46,57,49,50,53,55,55,93,44,91,45,56,49,46,55,56,51,51,57,44,51,52,46,56,51,55,49,50,53,93,44,91,45,56,49,46,56,53,52,48,48,50,44,51,52,46,53,57,52,53,52,57,93,44,91,45,56,49,46,54,52,51,53,53,50,44,51,52,46,53,51,51,54,53,50,93,44,91,45,56,49,46,53,53,51,50,48,52,44,51,52,46,52,55,55,49,49,52,93,44,91,45,56,49,46,52,50,51,50,52,49,44,51,52,46,52,57,52,51,55,57,93,44,91,45,56,49,46,52,50,50,55,48,54,44,51,52,46,53,55,50,48,50,57,93,44,91,45,56,49,46,52,55,56,52,53,52,44,51,52,46,56,50,49,53,48,57,93,44,91,45,56,49,46,52,53,55,50,53,55,44,51,52,46,56,51,57,50,56,93,44,91,45,56,49,46,55,49,49,54,57,52,44,51,52,46,57,49,50,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,78,105,99,111,108,108,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,55,56,51,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,50,57,53,53,44,52,52,46,52,53,54,55,49,54,93,44,91,45,57,52,46,54,50,52,50,44,52,52,46,52,53,54,48,51,93,44,91,45,57,52,46,55,56,48,54,51,44,52,52,46,52,53,54,54,53,93,44,91,45,57,52,46,52,57,49,54,56,54,44,52,52,46,51,53,50,50,53,52,93,44,91,45,57,52,46,51,55,49,55,51,49,44,52,52,46,50,54,52,52,52,56,93,44,91,45,57,52,46,48,53,54,55,53,55,44,52,52,46,49,53,52,54,49,55,93,44,91,45,57,52,46,48,49,49,56,54,56,44,52,52,46,50,51,57,53,50,93,44,91,45,57,51,46,57,51,54,48,51,50,44,52,52,46,51,51,57,54,54,53,93,44,91,45,57,51,46,57,50,57,53,53,44,52,52,46,52,53,54,55,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,110,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,51,55,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,50,56,49,48,50,44,52,53,46,51,55,55,48,49,93,44,91,45,56,56,46,51,48,53,56,49,49,44,52,53,46,51,55,52,54,49,93,44,91,45,56,56,46,51,48,57,48,54,51,44,52,53,46,50,48,49,53,56,93,44,91,45,56,56,46,49,56,54,51,53,53,44,52,53,46,49,57,55,57,55,52,93,44,91,45,56,56,46,49,50,49,49,53,50,44,52,53,46,48,50,51,53,56,49,93,44,91,45,56,55,46,55,54,48,48,55,49,44,52,52,46,57,57,48,53,51,93,44,91,45,56,55,46,55,54,50,52,54,52,44,52,52,46,55,54,52,51,54,55,93,44,91,45,56,55,46,53,53,49,50,54,50,44,52,53,46,48,48,56,48,52,57,93,44,91,45,56,55,46,52,52,50,55,54,44,52,53,46,48,55,54,52,55,49,93,44,91,45,56,55,46,54,54,49,50,49,49,44,52,53,46,49,48,56,50,55,57,93,44,91,45,56,55,46,55,51,53,50,56,50,44,52,53,46,49,55,54,53,54,53,93,44,91,45,56,55,46,54,52,55,55,54,56,44,52,53,46,51,52,48,53,54,51,93,44,91,45,56,55,46,56,56,52,56,53,53,44,52,53,46,51,54,50,55,57,50,93,44,91,45,56,55,46,55,57,50,55,54,57,44,52,53,46,52,57,57,57,54,55,93,44,91,45,56,55,46,55,55,52,54,56,50,44,52,53,46,54,48,50,48,50,52,93,44,91,45,56,55,46,56,52,54,54,48,50,44,52,53,46,55,50,50,53,52,52,93,44,91,45,56,56,46,48,53,56,50,53,51,44,52,53,46,55,56,48,54,50,57,93,44,91,45,56,56,46,48,53,57,50,52,54,44,52,53,46,55,49,51,48,54,51,93,44,91,45,56,56,46,52,50,53,51,48,50,44,52,53,46,55,50,50,52,50,54,93,44,91,45,56,56,46,52,50,56,49,48,50,44,52,53,46,51,55,55,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,53,51,56,52,44,34,98,101,100,115,34,58,56,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,55,56,53,53,49,53,44,52,53,46,56,53,48,53,51,54,93,44,91,45,49,50,50,46,55,54,50,52,51,55,44,52,53,46,55,50,56,54,54,53,93,44,91,45,49,50,50,46,55,54,51,56,49,44,52,53,46,54,53,55,49,51,56,93,44,91,45,49,50,50,46,52,51,56,54,55,52,44,52,53,46,53,54,51,53,56,53,93,44,91,45,49,50,50,46,50,52,57,50,49,55,44,52,53,46,53,52,56,54,53,51,93,44,91,45,49,50,50,46,50,52,53,56,53,54,44,52,54,46,48,53,51,56,53,51,93,44,91,45,49,50,50,46,51,51,50,54,54,51,44,52,53,46,57,54,53,48,54,52,93,44,91,45,49,50,50,46,52,55,56,55,53,51,44,52,53,46,57,56,55,57,51,56,93,44,91,45,49,50,50,46,55,50,48,57,49,44,52,53,46,57,51,49,56,57,50,93,44,91,45,49,50,50,46,55,56,53,53,49,53,44,52,53,46,56,53,48,53,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,80,114,105,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,55,54,57,54,56,44,52,53,46,57,56,49,53,53,52,93,44,91,45,57,48,46,54,55,56,55,52,57,44,52,53,46,54,51,56,50,54,52,93,44,91,45,57,48,46,54,55,56,55,55,51,44,52,53,46,51,55,55,57,48,55,93,44,91,45,57,48,46,48,52,50,50,55,51,44,52,53,46,51,56,49,56,54,54,93,44,91,45,57,48,46,48,52,51,52,49,52,44,52,53,46,53,53,53,48,56,50,93,44,91,45,57,48,46,48,52,50,56,53,55,44,52,53,46,56,57,55,50,54,51,93,44,91,45,57,48,46,48,52,51,57,53,56,44,52,53,46,57,56,49,57,52,56,93,44,91,45,57,48,46,51,48,50,48,54,51,44,52,53,46,57,56,49,51,52,57,93,44,91,45,57,48,46,54,55,54,57,54,56,44,52,53,46,57,56,49,53,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,77,105,97,109,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,57,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,54,57,48,49,50,44,52,48,46,57,48,57,56,51,54,93,44,91,45,56,54,46,49,54,53,48,50,52,44,52,48,46,53,54,50,54,52,57,93,44,91,45,56,53,46,56,54,51,54,52,49,44,52,48,46,53,54,53,53,50,53,93,44,91,45,56,53,46,56,54,52,55,57,49,44,52,48,46,54,53,49,54,57,51,93,44,91,45,56,53,46,57,51,57,53,50,53,44,52,48,46,54,53,48,57,57,49,93,44,91,45,56,53,46,57,52,54,52,51,54,44,52,48,46,57,57,57,49,57,53,93,44,91,45,56,54,46,49,54,56,52,53,57,44,52,48,46,57,57,54,48,57,55,93,44,91,45,56,54,46,49,54,57,48,49,50,44,52,48,46,57,48,57,56,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,69,108,108,115,119,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,57,51,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,56,52,56,54,49,44,51,56,46,56,55,48,55,57,49,93,44,91,45,57,56,46,52,56,54,49,48,56,44,51,56,46,54,57,54,56,55,56,93,44,91,45,57,56,46,52,56,48,51,55,55,44,51,56,46,53,50,49,56,52,49,93,44,91,45,57,55,46,57,50,52,50,54,57,44,51,56,46,53,50,50,55,53,53,93,44,91,45,57,55,46,57,50,52,55,57,53,44,51,56,46,54,48,57,56,56,93,44,91,45,57,55,46,57,50,56,53,57,50,44,51,56,46,56,55,49,48,57,57,93,44,91,45,57,56,46,52,56,52,56,54,49,44,51,56,46,56,55,48,55,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,87,101,115,116,32,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,56,48,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,51,53,55,56,50,44,51,51,46,48,48,54,48,57,57,93,44,91,45,57,49,46,53,54,54,51,54,51,44,51,50,46,56,53,53,53,54,49,93,44,91,45,57,49,46,54,51,55,53,56,55,44,51,50,46,54,54,55,51,52,49,93,44,91,45,57,49,46,53,57,54,48,50,55,44,51,50,46,53,56,50,49,57,50,93,44,91,45,57,49,46,52,52,53,50,57,57,44,51,50,46,53,56,49,57,53,54,93,44,91,45,57,49,46,51,52,52,56,52,53,44,51,50,46,55,53,54,54,53,57,93,44,91,45,57,49,46,51,51,53,52,54,51,44,51,50,46,56,54,54,49,48,52,93,44,91,45,57,49,46,50,54,53,48,49,56,44,51,51,46,48,48,53,48,56,51,93,44,91,45,57,49,46,52,51,53,55,56,50,44,51,51,46,48,48,54,48,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,105,98,101,114,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,52,54,52,48,56,44,51,48,46,51,56,56,50,56,49,93,44,91,45,56,52,46,56,56,50,54,49,54,44,51,48,46,53,51,51,48,57,52,93,44,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,44,91,45,56,53,46,48,51,50,57,51,49,44,51,48,46,52,50,48,50,57,57,93,44,91,45,56,53,46,48,53,50,55,55,55,44,51,48,46,50,56,55,52,48,54,93,44,91,45,56,53,46,49,49,53,54,54,44,51,48,46,49,57,57,57,55,54,93,44,91,45,56,53,46,49,51,53,50,53,52,44,51,48,46,48,52,51,50,55,93,44,91,45,56,53,46,48,50,53,52,51,57,44,50,57,46,57,55,49,51,57,57,93,44,91,45,56,53,46,48,48,55,54,50,54,44,51,48,46,48,49,51,56,56,51,93,44,91,45,56,52,46,53,52,52,52,53,44,51,48,46,48,49,49,48,51,93,44,91,45,56,52,46,54,54,57,50,53,56,44,51,48,46,49,50,53,50,93,44,91,45,56,52,46,55,49,51,51,53,49,44,51,48,46,51,48,48,49,55,93,44,91,45,56,52,46,54,52,54,52,48,56,44,51,48,46,51,56,56,50,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,111,100,103,101,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,56,52,50,48,55,44,51,56,46,50,54,50,49,55,57,93,44,91,45,49,48,48,46,50,50,55,49,51,55,44,51,56,46,50,54,50,50,51,55,93,44,91,45,49,48,48,46,50,50,54,54,49,44,51,56,46,48,48,49,48,49,53,93,44,91,45,49,48,48,46,50,50,55,48,57,44,51,55,46,57,49,52,48,49,56,93,44,91,45,57,57,46,53,54,57,56,55,57,44,51,55,46,57,49,51,48,49,54,93,44,91,45,57,57,46,53,54,57,53,51,51,44,51,56,46,48,56,55,51,55,50,93,44,91,45,57,57,46,53,56,52,50,48,55,44,51,56,46,50,54,50,49,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,101,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,54,49,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,49,54,50,50,57,44,51,55,46,52,55,53,49,57,93,44,91,45,49,48,48,46,54,53,50,54,52,50,44,51,55,46,52,55,52,56,52,56,93,44,91,45,49,48,48,46,54,53,50,55,50,56,44,51,55,46,51,56,55,54,50,55,93,44,91,45,49,48,48,46,54,51,51,51,50,55,44,51,55,46,48,48,48,49,48,51,93,44,91,45,49,48,48,46,48,56,57,52,56,51,44,51,55,46,48,48,50,50,54,49,93,44,91,45,49,48,48,46,48,57,49,53,50,57,44,51,55,46,51,56,54,56,57,50,93,44,91,45,49,48,48,46,49,48,55,50,52,56,44,51,55,46,52,55,52,56,51,54,93,44,91,45,49,48,48,46,50,49,54,50,50,57,44,51,55,46,52,55,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,77,99,76,101,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,55,53,49,52,53,44,51,55,46,53,54,57,57,56,56,93,44,91,45,56,55,46,51,53,49,56,57,51,44,51,55,46,52,50,53,54,53,53,93,44,91,45,56,55,46,50,57,53,57,54,53,44,51,55,46,51,57,49,56,49,57,93,44,91,45,56,55,46,48,57,57,56,48,51,44,51,55,46,52,49,54,48,52,50,93,44,91,45,56,55,46,48,51,56,50,54,44,51,55,46,53,54,48,56,48,51,93,44,91,45,56,55,46,52,48,56,53,52,55,44,51,55,46,54,56,51,53,54,51,93,44,91,45,56,55,46,52,57,53,51,51,49,44,51,55,46,54,52,55,53,52,55,93,44,91,45,56,55,46,51,55,53,49,52,53,44,51,55,46,53,54,57,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,52,55,44,34,98,101,100,115,34,58,49,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,56,48,50,53,52,44,51,49,46,55,51,51,50,53,53,93,44,91,45,57,49,46,52,52,51,57,49,54,44,51,49,46,53,52,50,52,54,54,93,44,91,45,57,49,46,53,49,53,57,49,57,44,51,49,46,53,51,48,55,50,57,93,44,91,45,57,49,46,52,55,50,48,54,55,44,51,49,46,51,57,55,48,55,54,93,44,91,45,57,49,46,53,56,57,52,53,49,44,51,49,46,49,57,49,49,52,93,44,91,45,57,49,46,52,55,56,55,57,57,44,51,49,46,50,51,56,57,57,57,93,44,91,45,57,49,46,52,50,52,48,49,50,44,51,49,46,51,49,53,48,52,93,44,91,45,57,49,46,51,48,51,53,56,44,51,49,46,51,54,48,57,55,53,93,44,91,45,57,49,46,49,53,56,49,53,44,51,49,46,51,52,54,54,57,53,93,44,91,45,57,49,46,49,53,51,56,54,52,44,51,49,46,54,49,48,48,54,56,93,44,91,45,57,49,46,50,57,53,53,55,44,51,49,46,54,54,57,56,55,93,44,91,45,57,49,46,51,49,55,56,54,52,44,51,49,46,55,52,57,55,54,54,93,44,91,45,57,49,46,51,56,48,50,53,52,44,51,49,46,55,51,51,50,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,97,115,32,77,97,114,195,173,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,48,56,50,48,48,50,44,49,56,46,50,53,52,57,52,54,93,44,91,45,54,55,46,48,49,57,56,51,54,44,49,56,46,49,57,53,52,55,49,93,44,91,45,54,54,46,56,57,55,57,54,52,44,49,56,46,49,56,55,55,52,52,93,44,91,45,54,54,46,57,48,55,50,51,54,44,49,56,46,50,53,51,48,57,93,44,91,45,54,55,46,48,51,55,57,51,53,44,49,56,46,50,56,57,55,48,53,93,44,91,45,54,55,46,48,56,50,48,48,50,44,49,56,46,50,53,52,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,73,116,97,119,97,109,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,52,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,52,50,48,55,57,44,51,52,46,52,54,53,50,55,54,93,44,91,45,56,56,46,53,52,51,51,53,50,44,51,52,46,48,56,57,48,52,52,93,44,91,45,56,56,46,50,48,51,56,54,52,44,51,52,46,48,56,54,53,54,52,93,44,91,45,56,56,46,49,55,51,54,51,50,44,51,52,46,51,50,49,48,53,52,93,44,91,45,56,56,46,49,53,54,50,57,50,44,51,52,46,52,54,51,50,49,52,93,44,91,45,56,56,46,51,50,57,49,57,51,44,51,52,46,52,54,51,53,55,49,93,44,91,45,56,56,46,53,52,50,48,55,57,44,51,52,46,52,54,53,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,50,57,54,44,34,98,101,100,115,34,58,49,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,55,48,52,56,50,44,51,56,46,51,53,54,55,53,49,93,44,91,45,56,52,46,57,57,55,54,54,55,44,51,56,46,51,51,53,53,56,54,93,44,91,45,56,53,46,48,50,51,55,49,49,44,51,56,46,49,50,57,48,53,50,93,44,91,45,56,52,46,56,54,52,57,48,56,44,51,56,46,49,49,54,57,50,54,93,44,91,45,56,52,46,55,50,53,49,54,56,44,51,56,46,49,57,53,52,50,54,93,44,91,45,56,52,46,55,52,48,53,57,52,44,51,56,46,51,53,50,52,49,53,93,44,91,45,56,52,46,56,55,48,52,56,50,44,51,56,46,51,53,54,55,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,53,52,49,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,56,46,48,53,52,57,56,53,44,52,53,46,50,53,50,53,55,55,93,44,91,45,54,56,46,51,48,51,55,49,52,44,52,53,46,50,50,49,53,51,49,93,44,91,45,54,56,46,50,55,48,52,57,55,44,52,53,46,49,48,48,49,50,49,93,44,91,45,54,56,46,51,57,54,57,48,51,44,52,53,46,48,56,51,50,57,54,93,44,91,45,54,56,46,51,55,53,56,57,50,44,52,52,46,57,57,55,51,55,51,93,44,91,45,54,56,46,53,48,49,48,57,53,44,52,52,46,57,56,48,55,49,56,93,44,91,45,54,56,46,52,52,53,50,49,57,44,52,52,46,55,54,51,48,49,52,93,44,91,45,54,56,46,56,49,53,55,57,51,44,52,52,46,54,56,51,55,53,52,93,44,91,45,54,56,46,56,48,52,54,49,53,44,52,52,46,52,53,56,52,49,49,93,44,91,45,54,56,46,56,57,54,51,56,52,44,52,52,46,50,48,57,57,51,53,93,44,91,45,54,56,46,55,50,48,57,49,55,44,52,52,46,49,49,53,50,54,93,44,91,45,54,56,46,53,55,57,51,52,56,44,52,52,46,49,50,56,55,53,93,44,91,45,54,56,46,52,56,52,54,51,53,44,52,52,46,48,50,56,51,50,54,93,44,91,45,54,56,46,51,49,49,51,57,51,44,52,52,46,48,53,51,52,50,57,93,44,91,45,54,56,46,49,55,53,56,53,56,44,52,52,46,49,50,53,48,56,51,93,44,91,45,54,56,46,49,50,56,50,56,44,52,52,46,50,54,52,50,53,51,93,44,91,45,54,55,46,57,50,53,49,55,56,44,52,52,46,51,52,49,52,51,52,93,44,91,45,54,55,46,57,56,49,57,56,56,44,52,52,46,52,55,51,55,53,54,93,44,91,45,54,56,46,49,48,53,48,49,55,44,52,52,46,57,51,57,48,56,56,93,44,91,45,54,55,46,57,56,49,56,53,49,44,52,52,46,57,53,53,56,56,53,93,44,91,45,54,56,46,48,53,52,57,56,53,44,52,53,46,50,53,50,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,56,50,51,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,57,46,52,48,57,54,51,53,44,52,52,46,51,50,55,57,57,56,93,44,91,45,54,57,46,50,56,50,48,50,55,44,52,52,46,48,54,52,53,50,51,93,44,91,45,54,57,46,51,54,51,57,57,54,44,52,52,46,48,49,50,56,55,51,93,44,91,45,54,57,46,51,57,55,55,51,56,44,52,51,46,56,55,49,56,57,93,44,91,45,54,57,46,50,51,51,52,56,44,52,51,46,55,55,56,48,48,50,93,44,91,45,54,57,46,48,53,53,56,57,52,44,52,51,46,56,53,56,57,49,49,93,44,91,45,54,56,46,57,50,53,53,49,56,44,52,51,46,55,53,48,48,56,56,93,44,91,45,54,56,46,56,50,54,57,49,54,44,52,51,46,55,51,53,55,49,49,93,44,91,45,54,56,46,55,52,57,52,55,51,44,52,51,46,56,51,50,53,51,49,93,44,91,45,54,56,46,52,56,52,54,51,53,44,52,52,46,48,50,56,51,50,54,93,44,91,45,54,56,46,53,55,57,51,52,56,44,52,52,46,49,50,56,55,53,93,44,91,45,54,56,46,55,50,48,57,49,55,44,52,52,46,49,49,53,50,54,93,44,91,45,54,56,46,56,57,54,51,56,52,44,52,52,46,50,48,57,57,51,53,93,44,91,45,54,56,46,57,57,57,52,53,53,44,52,52,46,50,48,50,55,50,49,93,44,91,45,54,57,46,50,54,56,56,56,50,44,52,52,46,51,54,52,54,53,51,93,44,91,45,54,57,46,52,48,57,54,51,53,44,52,52,46,51,50,55,57,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,55,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,52,57,55,44,34,98,101,100,115,34,58,49,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,52,52,52,57,51,44,51,51,46,53,50,53,55,55,54,93,44,91,45,56,51,46,57,50,51,57,49,51,44,51,51,46,52,52,52,49,57,52,93,44,91,45,56,51,46,56,54,51,48,53,56,44,51,51,46,51,54,56,50,55,56,93,44,91,45,56,51,46,54,56,50,49,57,54,44,51,51,46,53,50,54,50,50,93,44,91,45,56,51,46,54,56,48,56,57,54,44,51,51,46,53,57,54,57,49,57,93,44,91,45,56,51,46,57,49,52,56,50,51,44,51,51,46,55,52,52,50,48,51,93,44,91,45,56,51,46,57,51,48,56,54,51,44,51,51,46,54,53,49,56,50,51,93,44,91,45,56,52,46,48,52,52,52,57,51,44,51,51,46,53,50,53,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,70,97,117,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,50,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,55,51,51,51,44,52,53,46,50,52,53,51,54,52,93,44,91,45,57,57,46,53,55,50,54,57,57,44,52,52,46,56,57,55,50,54,51,93,44,91,45,57,57,46,51,49,49,55,53,52,44,52,52,46,56,57,55,50,50,55,93,44,91,45,57,56,46,55,49,54,52,57,56,44,52,52,46,56,57,54,57,50,53,93,44,91,45,57,56,46,55,49,55,55,53,57,44,52,53,46,50,52,51,55,51,50,93,44,91,45,57,56,46,55,50,50,52,56,49,44,52,53,46,50,52,51,55,54,52,93,44,91,45,57,57,46,53,55,51,51,51,44,52,53,46,50,52,53,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,111,117,103,104,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,54,48,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,52,56,56,54,57,44,52,55,46,52,55,55,49,52,53,93,44,91,45,56,56,46,57,51,50,52,56,44,52,54,46,55,54,52,55,56,55,93,44,91,45,56,56,46,57,56,57,53,50,57,44,52,54,46,54,56,48,49,49,57,93,44,91,45,56,56,46,57,57,49,50,51,54,44,52,54,46,52,49,57,55,48,52,93,44,91,45,56,56,46,54,55,57,51,57,50,44,52,54,46,52,50,48,49,51,57,93,44,91,45,56,56,46,54,55,56,57,56,51,44,52,54,46,56,53,49,56,50,50,93,44,91,45,56,56,46,53,53,49,57,52,51,44,52,54,46,56,53,49,55,57,53,93,44,91,45,56,56,46,52,53,49,50,44,52,54,46,57,51,56,57,55,54,93,44,91,45,56,56,46,48,52,51,55,51,49,44,52,55,46,48,52,51,57,53,56,93,44,91,45,56,56,46,48,52,54,48,54,51,44,52,55,46,49,57,57,55,50,50,93,44,91,45,56,56,46,50,57,56,52,51,54,44,52,55,46,49,57,57,55,56,50,93,44,91,45,56,56,46,50,57,56,57,57,50,44,52,55,46,50,56,54,48,57,55,93,44,91,45,56,56,46,53,49,50,53,57,50,44,52,55,46,50,56,53,57,52,51,93,44,91,45,56,56,46,57,52,56,56,54,57,44,52,55,46,52,55,55,49,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,77,105,110,101,114,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,49,49,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,54,50,57,52,56,56,44,52,55,46,52,55,57,54,49,93,44,91,45,49,49,53,46,55,52,54,54,49,57,44,52,55,46,52,52,50,51,49,49,93,44,91,45,49,49,53,46,51,52,48,56,52,57,44,52,55,46,50,54,50,56,53,93,44,91,45,49,49,53,46,48,52,55,56,53,55,44,52,54,46,57,54,57,53,51,50,93,44,91,45,49,49,52,46,57,53,57,51,49,55,44,52,54,46,57,51,50,56,57,56,93,44,91,45,49,49,52,46,57,50,50,51,49,50,44,52,54,46,56,50,56,54,48,50,93,44,91,45,49,49,52,46,54,55,52,57,52,50,44,52,54,46,55,51,54,56,50,54,93,44,91,45,49,49,52,46,53,52,57,49,50,55,44,52,54,46,55,52,55,51,54,54,93,44,91,45,49,49,52,46,53,54,54,49,50,57,44,52,54,46,57,54,51,52,48,53,93,44,91,45,49,49,52,46,52,56,51,50,50,55,44,52,55,46,48,50,51,51,53,56,93,44,91,45,49,49,52,46,55,55,53,56,51,51,44,52,55,46,50,50,53,53,55,51,93,44,91,45,49,49,52,46,55,57,55,50,48,52,44,52,55,46,50,54,56,57,49,54,93,44,91,45,49,49,52,46,57,54,56,57,55,56,44,52,55,46,51,49,50,54,50,53,93,44,91,45,49,49,52,46,57,56,50,50,54,53,44,52,55,46,51,57,54,56,48,52,93,44,91,45,49,49,53,46,50,56,51,56,53,54,44,52,55,46,52,56,54,54,51,56,93,44,91,45,49,49,53,46,54,50,57,52,56,56,44,52,55,46,52,55,57,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,53,49,50,44,34,98,101,100,115,34,58,49,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,54,49,52,56,57,44,51,53,46,51,51,51,53,55,57,93,44,91,45,56,54,46,51,49,56,49,54,56,44,51,53,46,49,50,54,57,56,54,93,44,91,45,56,54,46,51,49,56,55,54,49,44,51,52,46,57,57,49,49,54,57,93,44,91,45,56,54,46,51,49,49,50,55,52,44,51,52,46,57,57,49,48,57,56,93,44,91,45,56,53,46,56,54,51,57,51,53,44,51,52,46,57,56,56,50,53,51,93,44,91,45,56,53,46,56,55,51,48,50,53,44,51,53,46,50,50,51,51,54,50,93,44,91,45,56,53,46,57,49,51,53,57,51,44,51,53,46,50,56,57,49,56,57,93,44,91,45,56,54,46,49,53,56,48,49,56,44,51,53,46,51,54,50,54,48,55,93,44,91,45,56,54,46,50,54,49,52,56,57,44,51,53,46,51,51,51,53,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,110,99,111,114,100,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,50,49,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,52,52,55,57,49,44,51,49,46,55,53,49,55,51,49,93,44,91,45,57,49,46,54,57,52,52,54,57,44,51,49,46,55,51,53,50,56,54,93,44,91,45,57,49,46,55,48,53,57,52,56,44,51,49,46,54,52,50,56,54,51,93,44,91,45,57,49,46,56,50,54,57,50,54,44,51,49,46,53,57,49,54,55,49,93,44,91,45,57,49,46,56,53,53,57,48,56,44,51,49,46,52,57,54,48,49,93,44,91,45,57,49,46,56,51,52,50,56,44,51,49,46,50,54,54,51,52,52,93,44,91,45,57,49,46,54,55,55,51,48,50,44,51,49,46,49,56,56,48,52,55,93,44,91,45,57,49,46,55,50,51,56,48,52,44,51,49,46,48,52,52,50,53,52,93,44,91,45,57,49,46,54,53,56,51,50,49,44,51,48,46,57,57,52,51,54,53,93,44,91,45,57,49,46,54,54,50,53,48,54,44,51,48,46,57,55,48,51,54,50,93,44,91,45,57,49,46,54,51,54,57,52,50,44,51,48,46,57,57,57,52,49,54,93,44,91,45,57,49,46,53,56,57,52,53,49,44,51,49,46,49,57,49,49,52,93,44,91,45,57,49,46,52,55,50,48,54,55,44,51,49,46,51,57,55,48,55,54,93,44,91,45,57,49,46,53,49,53,57,49,57,44,51,49,46,53,51,48,55,50,57,93,44,91,45,57,49,46,52,52,51,57,49,54,44,51,49,46,53,52,50,52,54,54,93,44,91,45,57,49,46,51,56,48,50,53,52,44,51,49,46,55,51,51,50,53,53,93,44,91,45,57,49,46,53,52,52,55,57,49,44,51,49,46,55,53,49,55,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,49,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,48,55,48,49,44,51,48,46,54,52,57,51,56,53,93,44,91,45,57,48,46,57,55,55,52,48,49,44,51,48,46,53,57,51,52,56,53,93,44,91,45,57,48,46,57,55,55,53,48,51,44,51,48,46,52,50,48,56,57,57,93,44,91,45,57,48,46,56,57,49,55,50,56,44,51,48,46,51,52,53,50,52,52,93,44,91,45,57,48,46,55,49,57,53,51,57,44,51,48,46,49,56,57,57,57,52,93,44,91,45,57,48,46,54,51,50,56,49,49,44,51,48,46,50,50,49,52,48,57,93,44,91,45,57,48,46,53,53,52,49,52,55,44,51,48,46,49,57,53,54,50,56,93,44,91,45,57,48,46,52,56,53,56,50,54,44,51,48,46,50,55,54,57,57,50,93,44,91,45,57,48,46,52,55,55,56,44,51,48,46,51,53,54,52,52,55,93,44,91,45,57,48,46,53,54,54,57,48,54,44,51,48,46,52,56,55,48,54,93,44,91,45,57,48,46,53,54,55,49,54,53,44,51,48,46,54,53,48,48,50,51,93,44,91,45,57,48,46,57,49,48,55,48,49,44,51,48,46,54,52,57,51,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,69,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,49,48,50,52,44,34,98,101,100,115,34,58,49,51,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,55,51,53,48,48,53,44,52,50,46,56,55,52,54,56,53,93,44,91,45,55,48,46,57,50,57,53,57,52,44,52,50,46,56,56,53,48,51,50,93,44,91,45,55,49,46,49,51,50,56,48,53,44,52,50,46,56,50,49,52,55,54,93,44,91,45,55,49,46,50,52,53,52,56,49,44,52,50,46,55,52,50,53,49,52,93,44,91,45,55,49,46,50,53,53,49,52,55,44,52,50,46,55,51,54,53,53,52,93,44,91,45,55,49,46,50,53,54,49,56,56,44,52,50,46,54,53,55,49,52,53,93,44,91,45,55,49,46,49,51,53,52,48,53,44,52,50,46,53,57,57,48,56,93,44,91,45,55,49,46,48,50,53,56,51,54,44,52,50,46,52,52,52,55,48,57,93,44,91,45,55,48,46,57,50,52,53,57,51,44,52,50,46,51,56,54,55,57,56,93,44,91,45,55,48,46,54,52,56,48,55,50,44,52,50,46,52,48,53,54,50,56,93,44,91,45,55,48,46,54,48,54,50,57,44,52,50,46,53,51,49,50,50,93,44,91,45,55,48,46,53,48,50,49,52,51,44,52,50,46,54,50,52,53,55,57,93,44,91,45,55,48,46,53,52,57,51,48,54,44,52,50,46,55,50,52,49,54,52,93,44,91,45,55,48,46,55,48,50,53,56,44,52,50,46,55,50,52,49,54,50,93,44,91,45,55,48,46,55,51,53,48,48,53,44,52,50,46,56,55,52,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,117,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,57,53,55,50,56,49,44,52,53,46,50,49,50,56,53,49,93,44,91,45,49,48,52,46,48,52,48,48,48,52,44,52,53,46,50,49,50,56,57,49,93,44,91,45,49,48,52,46,48,53,55,56,55,57,44,52,52,46,57,57,55,54,48,53,93,44,91,45,49,48,52,46,48,53,53,57,52,51,44,52,52,46,53,55,49,48,50,53,93,44,91,45,49,48,51,46,56,50,48,54,51,57,44,52,52,46,54,48,52,55,55,55,93,44,91,45,49,48,51,46,53,54,55,54,53,51,44,52,52,46,54,48,52,48,57,56,93,44,91,45,49,48,50,46,57,54,52,49,50,53,44,52,52,46,54,48,52,50,56,55,93,44,91,45,49,48,50,46,57,53,55,51,55,49,44,52,53,46,48,51,57,53,54,57,93,44,91,45,49,48,50,46,57,53,55,50,56,49,44,52,53,46,50,49,50,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,56,54,49,52,44,34,98,101,100,115,34,58,55,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,54,54,48,54,50,54,44,51,57,46,53,54,53,57,48,57,93,44,91,45,49,48,53,46,48,52,56,55,52,44,51,57,46,53,54,54,48,56,56,93,44,91,45,49,48,53,46,50,51,51,57,51,56,44,51,57,46,50,52,54,56,54,56,93,44,91,45,49,48,53,46,51,50,57,50,50,44,51,57,46,49,50,57,54,56,57,93,44,91,45,49,48,53,46,48,51,51,53,52,52,44,51,57,46,49,50,57,56,49,57,93,44,91,45,49,48,52,46,54,54,50,56,57,54,44,51,57,46,49,50,57,53,50,55,93,44,91,45,49,48,52,46,54,54,48,54,50,54,44,51,57,46,53,54,53,57,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,56,50,54,51,44,34,98,101,100,115,34,58,50,50,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,50,53,57,50,49,44,51,52,46,50,54,56,55,54,93,44,91,45,56,49,46,48,57,53,56,54,51,44,51,52,46,50,49,51,56,55,50,93,44,91,45,56,49,46,51,49,54,57,49,49,44,51,52,46,50,51,57,52,53,56,93,44,91,45,56,49,46,51,51,56,57,54,49,44,51,52,46,49,57,55,53,56,55,93,44,91,45,56,49,46,50,55,53,56,52,53,44,51,52,46,48,57,55,51,56,49,93,44,91,45,56,49,46,50,48,49,56,51,57,44,51,52,46,48,57,55,49,54,56,93,44,91,45,56,49,46,48,54,55,54,49,53,44,51,52,46,48,48,56,57,53,51,93,44,91,45,56,49,46,48,49,50,51,51,44,51,51,46,56,56,48,48,56,93,44,91,45,56,48,46,56,48,55,53,57,49,44,51,51,46,55,55,52,50,49,49,93,44,91,45,56,48,46,54,50,48,49,48,55,44,51,51,46,55,52,51,50,51,55,93,44,91,45,56,48,46,53,57,55,55,49,53,44,51,51,46,55,55,55,53,49,50,93,44,91,45,56,48,46,54,52,48,57,56,54,44,51,51,46,57,57,57,52,51,51,93,44,91,45,56,48,46,54,49,54,49,56,54,44,51,52,46,48,57,57,54,48,53,93,44,91,45,56,48,46,55,49,57,51,49,56,44,51,52,46,48,54,56,57,55,50,93,44,91,45,56,48,46,56,54,57,53,50,52,44,51,52,46,49,56,50,50,55,49,93,44,91,45,56,48,46,56,50,53,57,50,49,44,51,52,46,50,54,56,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,53,48,53,44,34,98,101,100,115,34,58,51,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,49,57,48,51,44,52,48,46,50,49,56,57,51,54,93,44,91,45,56,53,46,56,54,50,52,56,57,44,51,57,46,57,52,51,54,49,56,93,44,91,45,56,53,46,53,55,54,49,57,50,44,51,57,46,57,52,53,55,53,54,93,44,91,45,56,53,46,53,55,54,49,57,55,44,52,48,46,48,55,55,49,52,51,93,44,91,45,56,53,46,53,55,56,53,56,57,44,52,48,46,51,55,57,53,50,52,93,44,91,45,56,53,46,56,54,50,50,57,54,44,52,48,46,51,55,56,51,54,55,93,44,91,45,56,53,46,56,54,49,57,48,51,44,52,48,46,50,49,56,57,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,117,114,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,53,50,49,56,51,44,51,52,46,53,48,54,55,57,54,93,44,91,45,57,55,46,51,53,50,49,49,53,44,51,52,46,51,55,54,49,56,56,93,44,91,45,57,55,46,48,51,56,50,51,57,44,51,52,46,51,55,53,55,48,55,93,44,91,45,57,54,46,57,51,51,51,48,53,44,51,52,46,51,51,50,53,54,49,93,44,91,45,57,54,46,56,56,48,55,57,44,51,52,46,53,48,54,48,53,51,93,44,91,45,57,54,46,56,50,55,51,52,51,44,51,52,46,53,48,54,48,54,50,93,44,91,45,57,54,46,56,50,55,49,52,52,44,51,52,46,53,57,51,50,50,93,44,91,45,57,54,46,57,51,50,52,53,50,44,51,52,46,54,51,54,56,49,50,93,44,91,45,57,55,46,49,52,50,54,55,49,44,51,52,46,54,51,55,49,50,54,93,44,91,45,57,55,46,49,52,51,57,55,51,44,51,52,46,53,48,54,54,48,54,93,44,91,45,57,55,46,51,53,50,49,56,51,44,51,52,46,53,48,54,55,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,114,111,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,55,50,44,34,98,101,100,115,34,58,51,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,50,57,54,56,52,44,52,48,46,51,57,52,57,55,56,93,44,91,45,56,48,46,53,57,57,56,57,53,44,52,48,46,51,49,55,54,54,54,93,44,91,45,56,48,46,54,56,49,56,49,49,44,52,48,46,49,56,53,53,54,51,93,44,91,45,56,48,46,53,49,57,49,48,52,44,52,48,46,49,53,57,54,55,50,93,44,91,45,56,48,46,53,49,55,57,57,49,44,52,48,46,51,57,57,54,52,52,93,44,91,45,56,48,46,54,50,57,54,56,52,44,52,48,46,51,57,52,57,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,57,54,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,54,50,52,53,53,44,51,57,46,48,51,48,54,48,56,93,44,91,45,56,49,46,50,55,56,52,49,50,44,51,56,46,57,49,52,56,54,55,93,44,91,45,56,49,46,48,56,51,55,49,44,51,56,46,54,49,49,57,56,50,93,44,91,45,56,49,46,48,51,49,54,55,55,44,51,56,46,54,54,55,56,51,57,93,44,91,45,56,48,46,57,56,52,57,53,44,51,56,46,55,49,55,56,57,56,93,44,91,45,56,49,46,48,51,51,54,51,50,44,51,57,46,48,48,57,53,56,52,93,44,91,45,56,49,46,49,54,50,52,53,53,44,51,57,46,48,51,48,54,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,52,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,50,53,49,48,52,44,51,55,46,50,51,52,56,55,52,93,44,91,45,56,49,46,50,55,48,48,55,56,44,51,55,46,48,57,51,48,49,50,93,44,91,45,56,49,46,52,51,54,55,51,44,51,55,46,48,49,48,49,51,53,93,44,91,45,56,49,46,51,55,57,52,48,50,44,51,54,46,57,53,50,52,52,50,93,44,91,45,56,49,46,50,50,52,54,50,52,44,51,55,46,48,52,55,56,51,53,93,44,91,45,56,49,46,49,49,52,51,49,57,44,51,55,46,48,50,50,54,49,50,93,44,91,45,56,48,46,57,49,50,54,55,52,44,51,55,46,48,55,51,51,52,57,93,44,91,45,56,48,46,56,53,52,54,50,55,44,51,55,46,49,52,55,52,56,50,93,44,91,45,56,48,46,57,56,48,49,52,54,44,51,55,46,50,57,50,55,52,51,93,44,91,45,56,49,46,50,50,53,49,48,52,44,51,55,46,50,51,52,56,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,89,101,108,108,111,119,115,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,56,49,54,44,34,98,101,100,115,34,58,54,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,55,56,49,50,49,52,44,52,54,46,52,57,54,48,49,52,93,44,91,45,49,48,55,46,55,56,50,48,56,55,44,52,54,46,51,57,53,49,56,50,93,44,91,45,49,48,55,46,57,50,56,53,52,55,44,52,54,46,51,57,53,50,56,52,93,44,91,45,49,48,56,46,48,50,57,51,54,51,44,52,54,46,50,54,52,48,53,53,93,44,91,45,49,48,56,46,51,50,48,56,49,50,44,52,54,46,50,54,51,57,57,55,93,44,91,45,49,48,56,46,52,48,52,56,53,54,44,52,54,46,50,51,53,57,54,93,44,91,45,49,48,56,46,52,48,52,55,57,53,44,52,54,46,49,51,50,57,53,50,93,44,91,45,49,48,56,46,55,55,57,55,51,51,44,52,54,46,49,51,50,52,53,55,93,44,91,45,49,48,56,46,57,50,52,53,56,57,44,52,54,46,49,51,50,51,55,93,44,91,45,49,48,56,46,57,48,49,54,53,53,44,52,53,46,57,53,57,52,49,54,93,44,91,45,49,48,56,46,57,48,52,55,50,54,44,52,53,46,54,56,50,56,50,49,93,44,91,45,49,48,56,46,56,52,51,48,49,54,44,52,53,46,54,49,49,48,52,50,93,44,91,45,49,48,56,46,54,52,53,51,50,53,44,52,53,46,52,54,52,48,55,51,93,44,91,45,49,48,56,46,51,49,54,51,55,52,44,52,53,46,52,54,48,53,48,57,93,44,91,45,49,48,56,46,49,57,51,50,48,53,44,52,53,46,53,49,56,53,51,56,93,44,91,45,49,48,56,46,48,54,57,55,53,50,44,52,53,46,53,49,56,53,51,53,93,44,91,45,49,48,56,46,48,52,55,51,53,50,44,52,53,46,56,57,57,52,55,57,93,44,91,45,49,48,55,46,56,56,49,56,52,54,44,52,53,46,56,57,57,50,51,51,93,44,91,45,49,48,55,46,54,55,52,52,53,52,44,52,54,46,48,52,51,54,49,93,44,91,45,49,48,55,46,53,49,49,53,51,52,44,52,54,46,48,52,51,52,48,51,93,44,91,45,49,48,55,46,52,54,54,57,57,54,44,52,54,46,49,50,57,57,57,53,93,44,91,45,49,48,55,46,55,51,56,53,52,56,44,52,54,46,52,56,49,56,48,54,93,44,91,45,49,48,55,46,55,56,49,50,49,52,44,52,54,46,52,57,54,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,48,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,52,55,49,50,56,44,51,56,46,51,55,52,52,51,50,93,44,91,45,56,50,46,49,57,53,55,53,49,44,51,56,46,51,50,51,52,57,57,93,44,91,45,56,50,46,50,54,52,56,52,57,44,51,56,46,50,50,57,49,57,57,93,44,91,45,56,50,46,50,56,53,54,57,51,44,51,56,46,49,52,52,57,53,50,93,44,91,45,56,50,46,50,48,50,50,51,54,44,51,56,46,48,51,54,49,57,51,93,44,91,45,56,50,46,51,48,54,51,57,49,44,51,55,46,57,52,51,54,52,93,44,91,45,56,50,46,49,57,48,54,53,56,44,51,55,46,57,55,52,55,55,56,93,44,91,45,56,49,46,57,51,50,53,48,55,44,51,56,46,48,50,53,51,53,54,93,44,91,45,56,49,46,57,51,50,52,52,52,44,51,56,46,49,53,48,48,56,53,93,44,91,45,56,49,46,56,51,51,52,55,44,51,56,46,50,48,57,53,55,93,44,91,45,56,49,46,56,49,56,50,51,52,44,51,56,46,51,49,54,55,53,49,93,44,91,45,56,49,46,57,49,53,49,57,55,44,51,56,46,51,50,53,53,57,55,93,44,91,45,56,50,46,48,52,55,49,50,56,44,51,56,46,51,55,52,52,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,49,52,56,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,56,56,53,51,53,50,44,51,57,46,53,56,48,49,48,56,93,44,91,45,49,50,50,46,56,57,48,51,49,44,51,57,46,53,50,57,48,49,52,93,44,91,45,49,50,51,46,48,54,51,49,56,49,44,51,57,46,53,48,51,53,51,57,93,44,91,45,49,50,51,46,48,55,53,49,49,52,44,51,57,46,52,48,55,54,56,51,93,44,91,45,49,50,51,46,48,49,50,55,49,44,51,57,46,50,51,54,49,56,56,93,44,91,45,49,50,51,46,48,57,51,48,49,51,44,51,57,46,48,55,49,57,57,52,93,44,91,45,49,50,50,46,57,56,54,54,52,44,51,56,46,57,57,55,50,56,51,93,44,91,45,49,50,50,46,57,52,56,56,54,53,44,51,56,46,57,48,48,50,50,93,44,91,45,49,50,50,46,56,50,49,53,57,50,44,51,56,46,56,53,48,49,52,93,44,91,45,49,50,50,46,54,50,55,51,57,54,44,51,56,46,54,54,55,53,48,54,93,44,91,45,49,50,50,46,52,54,51,56,57,44,51,56,46,55,48,53,50,48,51,93,44,91,45,49,50,50,46,51,57,53,48,53,54,44,51,56,46,56,54,52,50,52,53,93,44,91,45,49,50,50,46,51,52,48,49,55,50,44,51,56,46,57,50,52,50,52,54,93,44,91,45,49,50,50,46,52,56,51,56,55,57,44,51,57,46,48,54,54,57,53,53,93,44,91,45,49,50,50,46,53,49,53,51,51,49,44,51,57,46,50,48,57,50,49,53,93,44,91,45,49,50,50,46,54,57,49,51,54,49,44,51,57,46,50,52,55,52,51,49,93,44,91,45,49,50,50,46,55,55,53,48,52,51,44,51,57,46,51,49,49,55,55,56,93,44,91,45,49,50,50,46,55,51,57,48,54,50,44,51,57,46,51,56,51,50,54,54,93,44,91,45,49,50,50,46,55,51,53,54,51,57,44,51,57,46,53,56,48,54,54,56,93,44,91,45,49,50,50,46,56,56,53,51,53,50,44,51,57,46,53,56,48,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,71,114,97,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,50,54,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,55,54,54,49,50,44,51,49,46,48,55,56,56,56,51,93,44,91,45,56,52,46,51,56,48,55,48,53,44,51,48,46,54,56,57,57,57,51,93,44,91,45,56,52,46,50,56,50,53,53,57,44,51,48,46,54,56,53,51,51,52,93,44,91,45,56,52,46,48,56,51,55,53,55,44,51,48,46,54,55,53,56,48,52,93,44,91,45,56,52,46,48,55,55,49,49,57,44,51,48,46,57,49,52,57,54,53,93,44,91,45,56,52,46,49,49,54,54,52,52,44,51,49,46,48,55,55,57,55,49,93,44,91,45,56,52,46,51,55,54,54,49,50,44,51,49,46,48,55,56,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,111,110,101,106,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,52,50,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,55,49,56,52,54,51,44,51,54,46,57,57,53,56,52,49,93,44,91,45,49,48,53,46,55,52,51,51,51,57,44,51,55,46,51,53,54,55,57,56,93,44,91,45,49,48,54,46,48,51,56,57,49,50,44,51,55,46,51,53,54,57,53,51,93,44,91,45,49,48,54,46,48,51,57,51,51,49,44,51,55,46,52,48,48,56,53,50,93,44,91,45,49,48,54,46,54,55,56,51,55,51,44,51,55,46,52,48,51,53,57,54,93,44,91,45,49,48,54,46,54,55,56,51,53,52,44,51,55,46,50,50,56,53,54,54,93,44,91,45,49,48,54,46,52,55,54,48,57,44,51,54,46,57,57,51,53,52,56,93,44,91,45,49,48,54,46,48,48,54,51,49,54,44,51,54,46,57,57,53,50,54,55,93,44,91,45,49,48,53,46,55,49,56,52,54,51,44,51,54,46,57,57,53,56,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,117,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,56,49,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,54,52,54,51,57,52,44,51,55,46,53,52,49,48,54,51,93,44,91,45,49,49,48,46,55,52,50,49,57,56,44,51,55,46,51,52,52,51,57,50,93,44,91,45,49,49,48,46,56,49,50,53,48,49,44,51,55,46,51,50,52,57,57,50,93,44,91,45,49,49,48,46,56,57,57,53,49,55,44,51,55,46,49,55,54,49,53,51,93,44,91,45,49,49,48,46,57,57,50,52,48,52,44,51,55,46,49,49,49,48,57,51,93,44,91,45,49,49,49,46,49,55,56,51,52,57,44,51,55,46,49,48,50,54,49,51,93,44,91,45,49,49,49,46,52,49,50,55,56,52,44,51,55,46,48,48,49,53,48,51,93,44,91,45,49,49,48,46,55,53,48,54,57,44,51,55,46,48,48,51,48,48,55,93,44,91,45,49,49,48,46,48,48,48,54,56,56,44,51,54,46,57,57,56,51,52,57,93,44,91,45,49,48,57,46,48,52,53,49,55,50,44,51,54,46,57,57,56,57,55,55,93,44,91,45,49,48,57,46,48,52,51,51,54,54,44,51,55,46,52,56,52,56,49,56,93,44,91,45,49,48,57,46,48,52,49,57,57,50,44,51,55,46,56,56,49,48,56,51,93,44,91,45,49,48,57,46,48,52,50,53,56,51,44,51,56,46,49,53,51,48,50,56,93,44,91,45,49,48,57,46,48,54,48,49,49,57,44,51,56,46,52,57,57,57,56,57,93,44,91,45,49,49,48,46,48,50,53,52,48,50,44,51,56,46,52,57,57,57,56,49,93,44,91,45,49,49,48,46,48,51,49,57,55,51,44,51,56,46,51,56,52,57,53,55,93,44,91,45,49,48,57,46,57,48,57,55,54,44,51,56,46,50,55,49,50,51,93,44,91,45,49,48,57,46,57,50,55,57,57,53,44,51,56,46,49,53,49,56,56,52,93,44,91,45,49,49,48,46,48,48,57,52,57,52,44,51,56,46,49,48,57,54,53,54,93,44,91,45,49,49,48,46,50,49,52,57,52,57,44,51,55,46,56,57,50,53,53,53,93,44,91,45,49,49,48,46,51,54,52,49,52,54,44,51,55,46,56,57,50,49,56,53,93,44,91,45,49,49,48,46,52,51,55,53,51,56,44,51,55,46,56,48,54,57,50,93,44,91,45,49,49,48,46,53,48,49,53,57,52,44,51,55,46,54,53,93,44,91,45,49,49,48,46,54,52,54,51,57,52,44,51,55,46,53,52,49,48,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,53,53,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,48,57,52,55,55,44,51,57,46,56,54,54,55,48,53,93,44,91,45,56,55,46,48,49,51,48,54,50,44,51,57,46,54,48,52,55,56,55,93,44,91,45,56,54,46,57,51,57,57,56,49,44,51,57,46,52,55,51,51,52,53,93,44,91,45,56,54,46,54,56,53,55,49,44,51,57,46,52,55,48,48,54,51,93,44,91,45,56,54,46,54,53,54,54,53,44,51,57,46,54,48,49,51,57,53,93,44,91,45,56,54,46,54,56,55,52,48,54,44,51,57,46,54,51,48,52,51,55,93,44,91,45,56,54,46,54,57,53,49,50,55,44,51,57,46,56,54,52,56,52,53,93,44,91,45,56,55,46,48,48,57,52,55,55,44,51,57,46,56,54,54,55,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,71,111,111,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,54,57,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,48,51,55,55,55,52,44,52,50,46,57,49,49,56,54,52,93,44,91,45,49,49,52,46,57,48,49,54,51,54,44,52,50,46,56,53,57,49,48,56,93,44,91,45,49,49,52,46,56,49,57,57,55,49,44,52,50,46,54,54,57,55,52,54,93,44,91,45,49,49,52,46,54,49,54,52,56,55,44,52,50,46,54,52,57,50,57,56,93,44,91,45,49,49,52,46,53,57,52,51,55,53,44,52,50,46,56,53,48,57,48,49,93,44,91,45,49,49,52,46,53,57,52,54,48,53,44,52,51,46,49,57,56,51,52,53,93,44,91,45,49,49,53,46,48,56,54,49,53,53,44,52,51,46,49,57,56,48,54,52,93,44,91,45,49,49,53,46,48,56,54,56,53,50,44,52,50,46,57,49,52,53,54,93,44,91,45,49,49,53,46,48,51,55,55,55,52,44,52,50,46,57,49,49,56,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,84,105,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,52,52,54,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,56,57,46,53,48,50,49,49,56,44,51,53,46,53,56,48,54,50,49,93,44,91,45,56,57,46,54,49,50,57,55,54,44,51,53,46,54,52,51,50,51,54,93,44,91,45,56,57,46,55,57,51,49,52,53,44,51,53,46,54,51,55,51,53,54,93,44,91,45,56,57,46,57,48,57,55,57,55,44,51,53,46,53,51,55,57,49,52,93,44,91,45,57,48,46,48,53,48,52,51,55,44,51,53,46,53,49,53,56,57,52,93,44,91,45,57,48,46,48,52,49,53,54,51,44,51,53,46,51,57,54,54,50,93,44,91,45,56,57,46,54,51,50,55,55,54,44,51,53,46,51,55,53,56,50,52,93,44,91,45,56,57,46,52,55,52,49,55,49,44,51,53,46,52,48,51,48,51,57,93,44,91,45,56,57,46,53,48,50,49,49,56,44,51,53,46,53,56,48,54,50,49,93,93,93,44,91,91,91,45,57,48,46,49,52,48,50,53,55,44,51,53,46,52,51,54,54,51,54,93,44,91,45,57,48,46,48,55,52,57,57,50,44,51,53,46,51,56,52,49,53,50,93,44,91,45,57,48,46,48,53,52,51,50,50,44,51,53,46,51,56,57,50,55,55,93,44,91,45,57,48,46,49,52,48,50,53,55,44,51,53,46,52,51,54,54,51,54,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,87,101,115,116,32,66,97,116,111,110,32,82,111,117,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,51,48,56,55,44,51,48,46,54,53,56,54,55,55,93,44,91,45,57,49,46,52,49,52,55,54,44,51,48,46,53,49,49,53,49,54,93,44,91,45,57,49,46,52,56,53,48,56,57,44,51,48,46,52,57,55,49,51,56,93,44,91,45,57,49,46,51,49,49,54,54,44,51,48,46,51,50,50,52,55,49,93,44,91,45,57,49,46,49,52,50,49,48,53,44,51,48,46,51,50,51,50,57,51,93,44,91,45,57,49,46,50,52,49,53,48,56,44,51,48,46,51,53,55,53,57,50,93,44,91,45,57,49,46,49,57,55,50,48,56,44,51,48,46,53,48,55,48,56,56,93,44,91,45,57,49,46,51,49,53,50,56,50,44,51,48,46,53,57,52,50,56,56,93,44,91,45,57,49,46,50,57,55,54,53,56,44,51,48,46,54,52,57,53,52,56,93,44,91,45,57,49,46,51,49,48,48,54,49,44,51,48,46,54,53,51,57,54,49,93,44,91,45,57,49,46,51,51,48,56,55,44,51,48,46,54,53,56,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,49,53,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,57,55,50,57,54,44,52,48,46,53,56,52,48,49,52,93,44,91,45,57,51,46,51,55,52,51,56,54,44,52,48,46,53,56,48,51,51,51,93,44,91,45,57,51,46,51,54,54,57,51,53,44,52,48,46,51,56,50,57,57,57,93,44,91,45,57,50,46,56,53,53,51,49,51,44,52,48,46,51,56,53,56,57,52,93,44,91,45,57,50,46,56,53,53,54,50,57,44,52,48,46,51,52,50,55,51,54,93,44,91,45,57,50,46,54,56,52,49,54,55,44,52,48,46,51,52,51,52,54,54,93,44,91,45,57,50,46,55,49,52,53,57,54,44,52,48,46,53,56,57,52,50,55,93,44,91,45,57,51,46,48,57,55,50,57,54,44,52,48,46,53,56,52,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,84,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,53,57,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,48,53,50,52,51,52,44,52,52,46,52,55,56,52,49,49,93,44,91,45,49,49,49,46,48,52,55,49,53,55,44,52,51,46,57,56,51,52,53,57,93,44,91,45,49,49,49,46,48,52,53,52,55,51,44,52,51,46,53,48,49,48,53,49,93,44,91,45,49,49,49,46,48,52,52,56,57,51,44,52,51,46,51,49,53,55,49,57,93,44,91,45,49,49,48,46,56,49,51,57,57,54,44,52,51,46,51,49,51,57,52,93,44,91,45,49,49,48,46,56,49,51,57,57,51,44,52,51,46,50,51,53,49,55,56,93,44,91,45,49,49,48,46,53,55,56,54,53,54,44,52,51,46,50,51,53,50,50,52,93,44,91,45,49,49,48,46,53,55,56,51,56,44,52,51,46,50,57,49,54,52,93,44,91,45,49,49,48,46,51,52,51,57,53,57,44,52,51,46,50,57,49,49,54,53,93,44,91,45,49,49,48,46,51,52,52,50,49,56,44,52,51,46,51,55,55,57,49,56,93,44,91,45,49,49,48,46,48,53,55,51,49,44,52,51,46,51,55,55,55,54,56,93,44,91,45,49,49,48,46,48,53,49,53,55,44,52,51,46,52,54,52,55,56,51,93,44,91,45,49,49,48,46,48,53,51,49,55,57,44,52,52,46,48,48,56,48,50,50,93,44,91,45,49,49,48,46,49,49,57,49,57,51,44,52,52,46,49,51,50,53,56,52,93,44,91,45,49,49,48,46,49,53,48,49,55,53,44,52,52,46,50,56,57,54,54,54,93,44,91,45,49,49,48,46,50,57,54,54,52,56,44,52,52,46,52,51,49,51,52,49,93,44,91,45,49,49,48,46,50,55,54,53,48,54,44,52,52,46,53,49,53,54,54,53,93,44,91,45,49,49,48,46,51,55,53,51,51,52,44,52,52,46,53,56,51,48,49,54,93,44,91,45,49,49,48,46,54,54,55,56,57,57,44,52,52,46,53,56,50,55,57,50,93,44,91,45,49,49,48,46,54,54,55,56,54,55,44,52,52,46,54,54,54,50,57,49,93,44,91,45,49,49,49,46,48,53,51,52,52,55,44,52,52,46,54,54,54,50,54,56,93,44,91,45,49,49,49,46,48,53,50,52,51,52,44,52,52,46,52,55,56,52,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,56,50,56,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,53,54,56,49,50,44,52,50,46,57,56,56,49,55,93,44,91,45,57,49,46,48,53,49,50,55,53,44,52,50,46,55,51,55,48,48,49,93,44,91,45,57,48,46,56,57,54,57,53,49,44,52,50,46,54,55,53,48,56,50,93,44,91,45,57,48,46,55,50,48,50,48,57,44,52,50,46,54,52,48,55,53,56,93,44,91,45,57,48,46,54,52,50,56,52,51,44,52,50,46,53,48,56,52,56,49,93,44,91,45,57,48,46,52,50,54,51,55,55,44,52,50,46,53,48,55,49,55,51,93,44,91,45,57,48,46,52,50,54,57,48,50,44,52,50,46,56,49,50,56,54,50,93,44,91,45,57,48,46,52,50,57,56,50,53,44,52,51,46,50,48,48,57,52,93,44,91,45,57,48,46,54,54,54,55,56,54,44,52,51,46,49,55,49,55,55,55,93,44,91,45,57,49,46,48,54,53,50,55,44,52,50,46,57,57,50,48,55,52,93,44,91,45,57,49,46,49,53,54,56,49,50,44,52,50,46,57,56,56,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,77,111,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,52,52,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,54,54,50,48,49,53,44,52,54,46,54,51,52,54,93,44,91,45,49,48,48,46,55,56,56,55,54,56,44,52,54,46,54,57,49,55,48,49,93,44,91,45,49,48,48,46,57,51,53,57,56,51,44,52,54,46,57,56,50,56,52,93,44,91,45,49,48,49,46,55,54,52,51,57,50,44,52,54,46,57,56,49,51,48,54,93,44,91,45,49,48,50,46,48,57,53,57,48,52,44,52,54,46,57,56,49,51,50,57,93,44,91,45,49,48,50,46,48,57,54,50,52,44,52,54,46,55,49,55,55,55,50,93,44,91,45,49,48,49,46,55,49,56,50,50,56,44,52,54,46,55,49,55,56,51,52,93,44,91,45,49,48,49,46,55,49,56,52,54,50,44,52,54,46,54,51,49,50,56,51,93,44,91,45,49,48,49,46,50,57,56,56,50,51,44,52,54,46,54,51,48,52,51,49,93,44,91,45,49,48,49,46,50,57,56,57,56,57,44,52,54,46,51,55,49,52,48,52,93,44,91,45,49,48,49,46,48,52,56,53,50,55,44,52,54,46,51,55,49,52,53,93,44,91,45,49,48,49,46,48,50,53,54,57,49,44,52,54,46,50,56,52,52,49,52,93,44,91,45,49,48,48,46,57,49,56,57,53,44,52,54,46,51,57,52,57,56,51,93,44,91,45,49,48,48,46,56,49,52,56,55,51,44,52,54,46,51,56,52,55,48,49,93,44,91,45,49,48,48,46,53,57,48,49,57,57,44,52,54,46,52,50,55,56,57,52,93,44,91,45,49,48,48,46,53,52,52,53,53,53,44,52,54,46,53,51,51,55,54,54,93,44,91,45,49,48,48,46,54,54,50,48,49,53,44,52,54,46,54,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,104,111,119,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,48,53,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,48,54,53,56,52,44,51,54,46,50,52,51,55,57,54,93,44,91,45,55,54,46,55,51,54,57,51,51,44,51,54,46,49,53,48,53,56,51,93,44,91,45,55,54,46,54,56,50,53,51,53,44,51,54,46,48,51,48,57,52,55,93,44,91,45,55,54,46,54,48,54,50,49,52,44,51,53,46,57,55,56,48,53,49,93,44,91,45,55,54,46,51,57,54,55,57,52,44,51,54,46,48,50,54,52,52,51,93,44,91,45,55,54,46,52,48,50,57,53,55,44,51,54,46,48,55,50,56,54,55,93,44,91,45,55,54,46,53,55,51,48,55,51,44,51,54,46,49,49,49,55,53,55,93,44,91,45,55,54,46,53,57,48,49,48,55,44,51,54,46,50,51,56,56,54,50,93,44,91,45,55,54,46,53,53,57,54,52,54,44,51,54,46,51,53,49,48,53,54,93,44,91,45,55,54,46,54,57,54,53,55,49,44,51,54,46,50,57,54,49,51,56,93,44,91,45,55,54,46,55,48,54,53,56,52,44,51,54,46,50,52,51,55,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,117,110,99,111,109,98,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,52,52,55,52,44,34,98,101,100,115,34,58,57,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,48,56,54,48,50,44,51,53,46,56,49,56,49,55,56,93,44,91,45,56,50,46,53,49,51,49,54,49,44,51,53,46,56,48,51,51,56,93,44,91,45,56,50,46,56,48,55,48,53,54,44,51,53,46,54,56,53,56,55,52,93,44,91,45,56,50,46,56,56,51,57,48,57,44,51,53,46,54,55,56,50,51,53,93,44,91,45,56,50,46,55,54,53,56,57,51,44,51,53,46,53,54,55,52,57,53,93,44,91,45,56,50,46,55,52,53,49,51,57,44,51,53,46,52,50,50,57,54,55,93,44,91,45,56,50,46,52,55,48,53,53,55,44,51,53,46,52,52,53,49,55,52,93,44,91,45,56,50,46,51,51,50,51,51,49,44,51,53,46,53,48,48,49,49,55,93,44,91,45,56,50,46,50,54,53,55,57,53,44,51,53,46,52,54,55,56,49,56,93,44,91,45,56,50,46,49,54,57,48,52,57,44,51,53,46,53,50,55,56,49,49,93,44,91,45,56,50,46,50,53,49,50,53,49,44,51,53,46,53,53,57,57,52,51,93,44,91,45,56,50,46,50,55,53,51,57,57,44,51,53,46,55,48,52,52,51,56,93,44,91,45,56,50,46,52,48,56,54,48,50,44,51,53,46,56,49,56,49,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,80,108,117,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,57,57,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,52,51,54,56,56,54,44,52,48,46,49,53,49,57,48,53,93,44,91,45,49,50,49,46,51,54,49,50,48,54,44,51,57,46,56,53,53,52,55,51,93,44,91,45,49,50,49,46,49,51,54,55,49,53,44,51,57,46,54,50,56,49,54,57,93,44,91,45,49,50,49,46,48,55,54,54,57,53,44,51,57,46,53,57,55,50,54,52,93,44,91,45,49,50,49,46,48,48,57,52,55,55,44,51,57,46,54,51,57,52,53,57,93,44,91,45,49,50,48,46,56,55,49,52,57,56,44,51,57,46,55,55,54,53,50,57,93,44,91,45,49,50,48,46,54,53,52,50,50,55,44,51,57,46,55,48,54,54,50,57,93,44,91,45,49,50,48,46,49,52,55,49,52,57,44,51,57,46,55,48,55,54,53,56,93,44,91,45,49,50,48,46,49,49,48,54,50,55,44,51,57,46,55,54,53,55,55,57,93,44,91,45,49,50,48,46,49,48,56,55,54,49,44,51,57,46,57,51,57,53,49,93,44,91,45,49,50,48,46,50,48,57,54,52,49,44,52,48,46,48,56,54,48,48,56,93,44,91,45,49,50,48,46,51,52,49,51,56,53,44,52,48,46,49,49,53,50,52,51,93,44,91,45,49,50,48,46,53,55,54,56,50,53,44,52,48,46,50,56,53,52,51,93,44,91,45,49,50,48,46,55,54,52,52,48,51,44,52,48,46,51,49,54,48,49,93,44,91,45,49,50,48,46,56,55,49,55,56,50,44,52,48,46,50,52,49,54,52,93,44,91,45,49,50,49,46,48,54,49,52,57,51,44,52,48,46,50,53,54,52,49,55,93,44,91,45,49,50,49,46,48,54,49,52,49,55,44,52,48,46,52,52,54,53,51,54,93,44,91,45,49,50,49,46,51,50,55,56,50,54,44,52,48,46,52,52,53,51,54,55,93,44,91,45,49,50,49,46,52,57,55,54,51,53,44,52,48,46,52,52,53,53,57,49,93,44,91,45,49,50,49,46,52,55,48,51,57,53,44,52,48,46,51,53,48,50,49,51,93,44,91,45,49,50,49,46,51,52,57,44,52,48,46,50,54,52,52,53,52,93,44,91,45,49,50,49,46,52,51,54,56,56,54,44,52,48,46,49,53,49,57,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,51,48,34,44,34,78,65,77,69,34,58,34,80,101,116,101,114,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,56,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,52,55,52,48,56,44,51,55,46,50,50,51,48,54,54,93,44,91,45,55,55,46,51,57,57,50,48,51,44,51,55,46,49,55,48,56,53,93,44,91,45,55,55,46,51,55,54,55,56,53,44,51,55,46,50,52,52,56,52,57,93,44,91,45,55,55,46,51,56,51,56,53,54,44,51,55,46,50,51,56,57,48,54,93,44,91,45,55,55,46,52,48,51,54,55,49,44,51,55,46,50,51,55,51,52,54,93,44,91,45,55,55,46,52,49,54,53,48,49,44,51,55,46,50,51,51,50,48,56,93,44,91,45,55,55,46,52,52,55,52,48,56,44,51,55,46,50,50,51,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,52,55,55,44,34,98,101,100,115,34,58,49,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,52,51,52,51,49,53,44,52,52,46,53,48,54,48,57,56,93,44,91,45,55,50,46,52,57,50,57,49,52,44,52,52,46,52,50,51,48,51,93,44,91,45,55,50,46,54,53,52,51,57,56,44,52,52,46,51,57,56,50,50,52,93,44,91,45,55,50,46,56,48,52,57,57,53,44,52,52,46,52,53,49,54,55,54,93,44,91,45,55,50,46,57,53,50,49,54,55,44,52,52,46,49,54,49,50,55,49,93,44,91,45,55,50,46,57,49,54,55,55,56,44,52,52,46,48,55,49,56,56,54,93,44,91,45,55,50,46,55,52,50,51,48,51,44,52,52,46,48,50,57,54,53,53,93,44,91,45,55,50,46,53,56,57,56,53,53,44,52,52,46,49,53,57,51,52,51,93,44,91,45,55,50,46,52,52,51,48,51,50,44,52,52,46,49,50,56,54,54,57,93,44,91,45,55,50,46,51,54,56,51,53,51,44,52,52,46,50,48,52,48,53,55,93,44,91,45,55,50,46,50,50,51,54,56,57,44,52,52,46,52,50,52,53,55,51,93,44,91,45,55,50,46,52,51,52,51,49,53,44,52,52,46,53,48,54,48,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,101,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,50,52,44,34,98,101,100,115,34,58,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,57,53,55,51,55,49,44,52,53,46,48,51,57,53,54,57,93,44,91,45,49,48,50,46,57,54,52,49,50,53,44,52,52,46,54,48,52,50,56,55,93,44,91,45,49,48,51,46,53,54,55,54,53,51,44,52,52,46,54,48,52,48,57,56,93,44,91,45,49,48,51,46,53,55,52,51,57,54,44,52,52,46,50,53,54,48,55,55,93,44,91,45,49,48,51,46,52,53,51,48,49,54,44,52,52,46,50,53,54,54,48,57,93,44,91,45,49,48,51,46,52,53,50,52,53,51,44,52,52,46,49,52,48,55,55,50,93,44,91,45,49,48,50,46,51,56,56,48,52,53,44,52,52,46,49,52,48,49,56,51,93,44,91,45,49,48,50,46,51,52,49,54,51,53,44,52,52,46,51,52,56,55,55,50,93,44,91,45,49,48,50,46,50,56,52,52,48,52,44,52,52,46,52,52,49,50,51,50,93,44,91,45,49,48,50,46,49,49,50,53,51,53,44,52,52,46,52,51,53,56,56,54,93,44,91,45,49,48,50,46,48,48,49,48,54,56,44,52,52,46,53,49,48,57,50,54,93,44,91,45,49,48,50,46,48,48,48,52,51,50,44,52,52,46,53,49,49,54,54,51,93,44,91,45,49,48,49,46,57,57,57,57,57,44,52,53,46,48,51,56,50,55,52,93,44,91,45,49,48,50,46,57,53,55,51,55,49,44,52,53,46,48,51,57,53,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,52,53,50,51,44,34,98,101,100,115,34,58,51,56,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,51,55,53,56,55,44,51,57,46,57,50,55,49,51,55,93,44,91,45,56,54,46,50,51,57,55,51,57,44,51,57,46,57,50,54,48,53,53,93,44,91,45,56,54,46,51,50,54,50,57,51,44,51,57,46,57,50,52,48,50,57,93,44,91,45,56,54,46,51,50,54,51,52,49,44,51,57,46,54,51,50,49,55,55,93,44,91,45,56,54,46,50,52,57,56,56,53,44,51,57,46,54,51,51,54,52,53,93,44,91,45,56,53,46,57,53,50,48,56,44,51,57,46,54,51,56,51,52,53,93,44,91,45,56,53,46,57,53,49,55,50,49,44,51,57,46,54,57,55,49,51,54,93,44,91,45,56,53,46,57,51,55,53,56,55,44,51,57,46,57,50,55,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,105,99,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,50,54,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,53,51,52,51,56,44,51,51,46,53,54,51,55,48,51,93,44,91,45,57,49,46,52,53,55,51,55,44,51,51,46,51,56,56,57,55,52,93,44,91,45,57,49,46,52,54,48,52,44,51,51,46,48,48,53,57,49,53,93,44,91,45,57,49,46,52,51,53,55,56,50,44,51,51,46,48,48,54,48,57,57,93,44,91,45,57,49,46,50,54,53,48,49,56,44,51,51,46,48,48,53,48,56,51,93,44,91,45,57,49,46,49,54,54,48,55,51,44,51,51,46,48,48,52,49,48,54,93,44,91,45,57,49,46,49,54,54,50,56,50,44,51,51,46,48,49,49,51,51,49,93,44,91,45,57,49,46,48,56,55,53,56,57,44,51,51,46,49,52,53,49,55,54,93,44,91,45,57,49,46,49,54,57,52,53,57,44,51,51,46,52,53,50,49,51,55,93,44,91,45,57,49,46,50,49,53,54,55,49,44,51,51,46,53,50,57,52,50,51,93,44,91,45,57,49,46,50,51,48,56,57,55,44,51,51,46,53,54,49,52,93,44,91,45,57,49,46,52,53,51,52,51,56,44,51,51,46,53,54,51,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,105,98,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,52,57,48,44,34,98,101,100,115,34,58,49,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,49,48,54,56,53,44,51,50,46,57,53,50,55,57,50,93,44,91,45,56,51,46,56,57,49,57,50,50,44,51,50,46,56,52,56,51,53,49,93,44,91,45,56,51,46,56,48,56,50,54,55,44,51,50,46,55,50,56,54,56,50,93,44,91,45,56,51,46,55,48,49,49,53,50,44,51,50,46,54,57,50,49,54,57,93,44,91,45,56,51,46,53,57,55,54,53,54,44,51,50,46,54,54,52,51,51,56,93,44,91,45,56,51,46,53,49,51,53,49,49,44,51,50,46,56,52,52,56,54,56,93,44,91,45,56,51,46,54,53,56,50,49,49,44,51,50,46,56,56,55,57,49,51,93,44,91,45,56,51,46,55,49,48,54,56,53,44,51,50,46,57,53,50,55,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,71,117,97,121,97,110,105,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,55,57,55,53,53,55,44,49,56,46,49,51,51,52,52,53,93,44,91,45,54,54,46,56,53,56,50,51,51,44,49,55,46,57,53,48,56,50,53,93,44,91,45,54,54,46,56,51,57,57,50,57,44,49,55,46,56,57,56,57,57,51,93,44,91,45,54,54,46,55,55,52,49,50,51,44,49,55,46,57,49,52,55,57,54,93,44,91,45,54,54,46,55,54,57,48,52,57,44,49,56,46,49,51,52,57,56,51,93,44,91,45,54,54,46,55,57,55,53,53,55,44,49,56,46,49,51,51,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,83,97,110,32,83,101,98,97,115,116,105,195,161,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,57,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,48,50,55,49,55,51,44,49,56,46,51,57,51,51,55,54,93,44,91,45,54,55,46,48,53,50,53,56,51,44,49,56,46,51,48,54,54,53,53,93,44,91,45,54,55,46,48,51,55,57,51,53,44,49,56,46,50,56,57,55,48,53,93,44,91,45,54,54,46,57,48,55,50,51,54,44,49,56,46,50,53,51,48,57,93,44,91,45,54,54,46,56,57,51,51,51,57,44,49,56,46,51,54,55,48,56,57,93,44,91,45,54,54,46,56,57,56,57,44,49,56,46,51,54,54,49,48,56,93,44,91,45,54,54,46,57,50,50,48,50,44,49,56,46,51,57,51,50,48,52,93,44,91,45,54,55,46,48,50,55,49,55,51,44,49,56,46,51,57,51,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,80,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,54,52,52,44,34,98,101,100,115,34,58,49,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,49,54,52,52,53,50,44,51,53,46,55,50,56,56,51,49,93,44,91,45,57,51,46,49,54,55,56,44,51,53,46,53,57,55,54,57,53,93,44,91,45,57,51,46,50,50,51,54,51,51,44,51,53,46,52,54,56,53,57,51,93,44,91,45,57,51,46,50,57,53,57,49,44,51,53,46,52,54,57,57,49,53,93,44,91,45,57,51,46,50,57,57,48,49,44,51,53,46,51,50,55,54,52,52,93,44,91,45,57,51,46,50,55,56,49,51,54,44,51,53,46,51,49,55,53,48,51,93,44,91,45,57,51,46,49,53,54,48,55,56,44,51,53,46,50,51,53,51,48,55,93,44,91,45,57,51,46,48,56,52,54,55,56,44,51,53,46,49,50,55,51,57,93,44,91,45,57,50,46,56,57,54,49,48,57,44,51,53,46,49,55,48,54,55,56,93,44,91,45,57,50,46,56,53,53,44,51,53,46,49,55,50,55,55,55,93,44,91,45,57,50,46,56,53,48,54,50,52,44,51,53,46,52,54,50,57,53,93,44,91,45,57,50,46,56,49,51,52,49,55,44,51,53,46,53,52,57,93,44,91,45,57,50,46,56,48,57,55,54,51,44,51,53,46,55,50,50,52,48,49,93,44,91,45,57,50,46,57,53,49,51,49,53,44,51,53,46,55,50,52,54,54,51,93,44,91,45,57,51,46,49,54,52,52,53,50,44,51,53,46,55,50,56,56,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,83,111,117,116,104,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,51,48,49,50,55,44,51,54,46,55,48,55,54,53,56,93,44,91,45,55,55,46,51,54,48,57,48,54,44,51,54,46,53,54,52,55,54,93,44,91,45,55,55,46,50,57,54,56,55,53,44,51,54,46,53,52,52,56,53,53,93,44,91,45,55,55,46,49,54,52,51,55,55,44,51,54,46,53,52,54,51,50,57,93,44,91,45,55,54,46,57,49,53,57,55,55,44,51,54,46,53,52,51,56,56,52,93,44,91,45,55,54,46,57,49,53,56,57,57,44,51,54,46,53,53,50,49,52,57,93,44,91,45,55,54,46,56,57,55,53,57,50,44,51,54,46,54,52,52,48,53,93,44,91,45,55,54,46,57,48,57,54,55,50,44,51,54,46,54,52,56,49,55,53,93,44,91,45,55,54,46,57,53,53,52,50,52,44,51,54,46,54,54,52,53,56,55,93,44,91,45,55,54,46,57,50,52,54,50,57,44,51,54,46,55,48,55,55,50,57,93,44,91,45,55,54,46,56,49,52,57,52,49,44,51,54,46,57,48,48,52,54,53,93,44,91,45,55,54,46,56,52,57,54,56,52,44,51,54,46,57,57,54,50,49,49,93,44,91,45,55,54,46,57,53,51,53,52,54,44,51,54,46,57,52,52,52,53,93,44,91,45,55,55,46,52,51,48,49,50,55,44,51,54,46,55,48,55,54,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,71,114,101,103,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,52,57,52,44,34,98,101,100,115,34,58,55,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,56,54,57,51,53,44,51,50,46,53,51,55,50,52,54,93,44,91,45,57,52,46,57,56,53,52,49,49,44,51,50,46,51,55,48,56,50,93,44,91,45,57,52,46,54,51,56,51,52,55,44,51,50,46,51,55,48,53,51,57,93,44,91,45,57,52,46,53,55,57,50,49,57,44,51,50,46,51,57,52,57,49,54,93,44,91,45,57,52,46,55,48,49,57,56,54,44,51,50,46,52,50,49,55,56,50,93,44,91,45,57,52,46,55,48,49,55,57,44,51,50,46,54,53,50,50,48,57,93,44,91,45,57,52,46,57,56,54,57,51,53,44,51,50,46,53,51,55,50,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,82,111,99,107,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,51,54,56,54,44,34,98,101,100,115,34,58,49,51,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,56,49,51,56,52,44,52,49,46,51,50,52,54,57,51,93,44,91,45,55,52,46,50,51,52,50,56,56,44,52,49,46,49,52,51,48,48,56,93,44,91,45,55,52,46,50,49,49,50,50,52,44,52,49,46,49,51,51,55,49,52,93,44,91,45,55,51,46,56,57,51,57,55,57,44,52,48,46,57,57,55,50,48,53,93,44,91,45,55,51,46,56,56,57,52,56,44,52,49,46,49,52,53,48,57,53,93,44,91,45,55,51,46,57,56,50,53,56,52,44,52,49,46,51,50,49,54,57,51,93,44,91,45,55,51,46,57,56,49,51,56,52,44,52,49,46,51,50,52,54,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,51,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,53,52,48,52,57,44,51,54,46,52,57,55,56,52,50,93,44,91,45,57,50,46,56,56,52,57,53,52,44,51,54,46,52,57,48,56,57,49,93,44,91,45,57,50,46,56,57,48,54,57,53,44,51,54,46,49,49,52,49,51,50,93,44,91,45,57,50,46,56,51,55,55,55,54,44,51,54,46,48,55,48,49,50,52,93,44,91,45,57,50,46,52,49,49,53,48,50,44,51,54,46,48,54,50,55,53,54,93,44,91,45,57,50,46,52,48,57,49,55,53,44,51,54,46,49,51,52,54,56,52,93,44,91,45,57,50,46,53,50,48,53,56,49,44,51,54,46,50,54,56,56,50,52,93,44,91,45,57,50,46,53,50,57,49,50,56,44,51,54,46,52,57,56,53,57,57,93,44,91,45,57,50,46,55,55,50,51,52,51,44,51,54,46,52,57,55,54,54,50,93,44,91,45,57,50,46,56,53,52,48,52,57,44,51,54,46,52,57,55,56,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,56,48,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,56,48,48,34,44,34,78,65,77,69,34,58,34,83,117,102,102,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,49,54,48,44,34,98,101,100,115,34,58,49,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,56,57,55,53,57,50,44,51,54,46,54,52,52,48,53,93,44,91,45,55,54,46,57,49,53,56,57,57,44,51,54,46,53,53,50,49,52,57,93,44,91,45,55,54,46,53,52,49,57,54,54,44,51,54,46,53,53,48,54,53,51,93,44,91,45,55,54,46,52,57,49,52,57,54,44,51,54,46,53,53,48,54,52,56,93,44,91,45,55,54,46,52,53,55,52,54,57,44,51,54,46,56,49,52,56,52,49,93,44,91,45,55,54,46,52,50,48,51,54,56,44,51,54,46,56,54,54,51,52,56,93,44,91,45,55,54,46,51,57,57,53,54,55,44,51,54,46,57,51,48,57,52,55,93,44,91,45,55,54,46,52,52,53,51,48,49,44,51,54,46,57,52,49,56,57,49,93,44,91,45,55,54,46,53,51,51,53,50,44,51,54,46,57,49,53,53,54,51,93,44,91,45,55,54,46,56,57,55,53,57,50,44,51,54,46,54,52,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,69,108,32,80,97,115,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,49,53,51,44,34,98,101,100,115,34,58,49,50,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,51,51,53,52,52,44,51,57,46,49,50,57,56,49,57,93,44,91,45,49,48,53,46,48,50,56,57,48,51,44,51,56,46,56,54,56,57,48,55,93,44,91,45,49,48,52,46,57,51,56,57,57,52,44,51,56,46,55,57,54,56,56,52,93,44,91,45,49,48,52,46,57,52,50,52,50,54,44,51,56,46,54,52,57,56,56,50,93,44,91,45,49,48,52,46,57,52,49,53,51,51,44,51,56,46,53,49,57,53,54,57,93,44,91,45,49,48,52,46,48,53,51,57,50,49,44,51,56,46,53,50,50,51,57,51,93,44,91,45,49,48,52,46,48,53,53,53,50,56,44,51,56,46,56,54,56,56,54,56,93,44,91,45,49,48,52,46,48,53,49,53,56,57,44,51,57,46,49,50,56,51,55,93,44,91,45,49,48,52,46,54,54,50,56,57,54,44,51,57,46,49,50,57,53,50,55,93,44,91,45,49,48,53,46,48,51,51,53,52,52,44,51,57,46,49,50,57,56,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,70,114,97,110,99,111,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,51,52,50,44,34,98,101,100,115,34,58,52,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,51,57,57,56,44,51,56,46,48,55,54,53,52,56,93,44,91,45,57,48,46,54,52,53,49,51,53,44,51,55,46,55,51,52,56,49,51,93,44,91,45,57,48,46,54,52,55,56,55,52,44,51,55,46,54,52,50,56,48,57,93,44,91,45,57,48,46,53,51,53,48,49,54,44,51,55,46,54,52,51,54,52,49,93,44,91,45,57,48,46,49,52,54,55,55,56,44,51,55,46,54,52,49,54,49,56,93,44,91,45,57,48,46,49,49,48,53,51,55,44,51,55,46,54,55,49,51,52,93,44,91,45,57,48,46,50,48,48,50,48,56,44,51,55,46,54,54,57,54,50,56,93,44,91,45,57,48,46,52,53,57,49,51,51,44,51,55,46,56,55,56,57,50,52,93,44,91,45,57,48,46,51,50,50,56,55,44,51,55,46,57,56,49,55,51,49,93,44,91,45,57,48,46,52,49,54,48,50,50,44,51,56,46,48,52,50,51,49,53,93,44,91,45,57,48,46,53,56,51,51,50,52,44,51,56,46,48,48,51,52,57,57,93,44,91,45,57,48,46,54,51,57,57,56,44,51,56,46,48,55,54,53,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,55,53,34,44,34,78,65,77,69,34,58,34,87,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,56,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,54,49,48,56,56,55,44,51,49,46,54,53,49,56,48,50,93,44,91,45,49,48,51,46,53,48,56,56,48,53,44,51,49,46,54,50,52,49,49,55,93,44,91,45,49,48,51,46,52,54,53,48,53,55,44,51,49,46,52,51,49,57,52,56,93,44,91,45,49,48,51,46,49,56,49,50,50,53,44,51,49,46,51,55,48,50,52,53,93,44,91,45,49,48,51,46,48,49,49,48,52,44,51,49,46,51,55,49,51,48,54,93,44,91,45,49,48,50,46,56,50,53,49,49,54,44,51,49,46,50,54,54,57,49,52,93,44,91,45,49,48,50,46,55,54,55,51,54,53,44,51,49,46,50,57,51,56,48,51,93,44,91,45,49,48,50,46,55,54,55,50,52,54,44,51,49,46,54,53,49,55,49,52,93,44,91,45,49,48,50,46,55,57,56,57,51,57,44,51,49,46,54,53,49,55,56,51,93,44,91,45,49,48,51,46,51,50,55,53,51,56,44,51,49,46,54,53,49,52,50,93,44,91,45,49,48,51,46,54,49,48,56,56,55,44,51,49,46,54,53,49,56,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,75,105,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,53,48,56,50,44,51,56,46,54,49,53,49,55,50,93,44,91,45,49,48,51,46,49,55,50,57,52,51,44,51,56,46,54,49,50,52,53,93,44,91,45,49,48,51,46,49,55,50,56,55,56,44,51,56,46,53,50,53,51,49,53,93,44,91,45,49,48,51,46,53,48,52,54,54,54,44,51,56,46,53,49,54,52,48,57,93,44,91,45,49,48,51,46,53,48,49,55,54,52,44,51,56,46,50,54,53,48,49,54,93,44,91,45,49,48,51,46,51,57,57,57,51,56,44,51,56,46,50,54,53,52,51,53,93,44,91,45,49,48,50,46,55,52,50,51,51,44,51,56,46,50,54,54,57,55,49,93,44,91,45,49,48,50,46,48,52,52,52,55,53,44,51,56,46,50,54,56,55,52,57,93,44,91,45,49,48,50,46,48,52,53,48,56,50,44,51,56,46,54,49,53,49,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,56,55,34,44,34,78,65,77,69,34,58,34,87,105,108,98,97,114,103,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,48,54,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,55,53,50,57,52,44,51,52,46,48,56,53,54,49,56,93,44,91,45,57,57,46,52,55,53,54,53,44,51,51,46,56,51,52,48,48,53,93,44,91,45,57,56,46,57,53,51,50,48,50,44,51,51,46,56,51,52,48,50,53,93,44,91,45,57,56,46,57,53,50,51,57,53,44,51,52,46,50,49,50,52,57,55,93,44,91,45,57,57,46,49,56,57,55,55,54,44,51,52,46,50,49,52,51,53,55,93,44,91,45,57,57,46,50,48,54,57,48,53,44,51,52,46,51,51,56,50,55,55,93,44,91,45,57,57,46,50,54,49,50,55,53,44,51,52,46,52,48,51,53,48,56,93,44,91,45,57,57,46,52,55,53,49,49,53,44,51,52,46,51,57,53,57,51,93,44,91,45,57,57,46,52,55,53,50,57,52,44,51,52,46,48,56,53,54,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,117,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,48,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,53,53,50,51,55,51,44,52,50,46,57,53,52,51,49,49,93,44,91,45,49,50,52,46,55,48,48,50,56,51,44,52,50,46,55,56,52,48,50,56,93,44,91,45,49,50,52,46,52,55,51,53,53,52,44,52,50,46,54,49,52,55,51,52,93,44,91,45,49,50,52,46,53,54,55,50,50,49,44,52,50,46,52,55,55,55,57,49,93,44,91,45,49,50,52,46,52,57,52,49,53,52,44,52,50,46,51,57,54,48,56,54,93,44,91,45,49,50,52,46,52,55,49,51,53,54,44,52,50,46,50,48,51,55,50,51,93,44,91,45,49,50,52,46,52,48,57,51,49,52,44,52,50,46,48,54,52,48,55,55,93,44,91,45,49,50,52,46,51,50,56,56,51,53,44,52,49,46,57,57,56,51,51,52,93,44,91,45,49,50,51,46,56,50,50,48,52,49,44,52,49,46,57,57,53,53,56,93,44,91,45,49,50,51,46,56,53,56,53,52,57,44,52,50,46,49,51,53,49,49,54,93,44,91,45,49,50,51,46,55,57,50,56,51,52,44,52,50,46,50,50,52,51,49,52,93,44,91,45,49,50,51,46,56,57,50,54,53,49,44,52,50,46,51,53,51,50,57,51,93,44,91,45,49,50,52,46,48,50,53,57,56,52,44,52,50,46,51,53,57,52,48,57,93,44,91,45,49,50,51,46,57,57,56,55,56,44,52,50,46,52,57,57,57,54,50,93,44,91,45,49,50,51,46,56,57,48,54,53,55,44,52,50,46,53,48,48,53,51,56,93,44,91,45,49,50,51,46,55,49,54,52,57,50,44,52,50,46,55,56,52,48,54,49,93,44,91,45,49,50,51,46,56,49,49,53,53,51,44,52,50,46,55,56,56,56,51,55,93,44,91,45,49,50,51,46,57,50,53,55,49,55,44,52,50,46,55,55,52,53,49,52,93,44,91,45,49,50,51,46,57,57,54,50,57,49,44,52,50,46,54,56,53,54,53,49,93,44,91,45,49,50,52,46,49,51,56,55,52,56,44,52,50,46,54,55,49,49,49,53,93,44,91,45,49,50,52,46,49,54,49,51,48,56,44,52,50,46,56,56,51,52,57,57,93,44,91,45,49,50,52,46,50,53,56,51,56,56,44,52,50,46,57,53,52,57,52,54,93,44,91,45,49,50,52,46,53,53,50,51,55,51,44,52,50,46,57,53,52,51,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,84,101,108,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,49,51,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,51,51,48,52,52,52,44,51,57,46,49,50,57,54,56,53,93,44,91,45,49,48,53,46,51,50,57,49,51,52,44,51,56,46,54,57,55,50,48,53,93,44,91,45,49,48,53,46,50,52,48,51,54,50,44,51,56,46,54,52,55,53,57,53,93,44,91,45,49,48,52,46,57,52,50,52,50,54,44,51,56,46,54,52,57,56,56,50,93,44,91,45,49,48,52,46,57,51,56,57,57,52,44,51,56,46,55,57,54,56,56,52,93,44,91,45,49,48,53,46,48,50,56,57,48,51,44,51,56,46,56,54,56,57,48,55,93,44,91,45,49,48,53,46,48,51,51,53,52,52,44,51,57,46,49,50,57,56,49,57,93,44,91,45,49,48,53,46,51,50,57,50,50,44,51,57,46,49,50,57,54,56,57,93,44,91,45,49,48,53,46,51,51,48,52,52,52,44,51,57,46,49,50,57,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,55,53,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,50,50,53,55,44,51,57,46,55,52,55,49,57,53,93,44,91,45,57,52,46,54,48,49,50,49,53,44,51,57,46,53,51,48,49,55,93,44,91,45,57,52,46,54,48,48,56,49,57,44,51,57,46,52,53,54,49,53,53,93,44,91,45,57,52,46,50,49,48,54,52,50,44,51,57,46,52,53,52,54,56,50,93,44,91,45,57,52,46,50,48,56,52,50,51,44,51,57,46,53,50,55,50,93,44,91,45,57,52,46,50,48,53,57,54,49,44,51,57,46,55,52,53,56,52,49,93,44,91,45,57,52,46,54,48,50,50,53,55,44,51,57,46,55,52,55,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,87,97,115,97,116,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,50,51,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,53,57,51,57,52,50,44,52,48,46,53,55,55,48,54,54,93,44,91,45,49,49,49,46,54,50,48,52,51,55,44,52,48,46,52,53,53,48,49,56,93,44,91,45,49,49,49,46,53,53,53,50,51,53,44,52,48,46,51,54,50,54,57,54,93,44,91,45,49,49,49,46,52,50,56,55,50,56,44,52,48,46,50,56,55,55,54,93,44,91,45,49,49,49,46,51,50,49,51,48,53,44,52,48,46,50,56,55,51,55,50,93,44,91,45,49,49,49,46,50,50,53,53,48,55,44,52,48,46,49,54,55,51,50,52,93,44,91,45,49,49,49,46,50,52,57,51,51,57,44,52,48,46,48,53,53,50,49,55,93,44,91,45,49,49,49,46,48,56,51,48,54,49,44,51,57,46,57,52,51,49,57,56,93,44,91,45,49,49,48,46,56,57,49,54,53,53,44,51,57,46,56,57,57,54,53,52,93,44,91,45,49,49,48,46,57,48,49,57,55,52,44,52,48,46,54,55,56,49,54,50,93,44,91,45,49,49,48,46,57,55,54,48,56,54,44,52,48,46,53,57,50,57,53,52,93,44,91,45,49,49,49,46,49,52,55,50,49,54,44,52,48,46,53,52,57,54,48,50,93,44,91,45,49,49,49,46,51,55,53,52,56,49,44,52,48,46,54,51,51,49,49,54,93,44,91,45,49,49,49,46,53,53,51,50,54,54,44,52,48,46,54,48,57,51,49,51,93,44,91,45,49,49,49,46,53,57,51,57,52,50,44,52,48,46,53,55,55,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,97,114,105,98,111,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,48,54,51,48,50,51,44,52,51,46,48,50,50,51,54,52,93,44,91,45,49,49,50,46,49,50,55,52,50,52,44,52,50,46,57,52,52,52,57,56,93,44,91,45,49,49,50,46,49,52,53,48,56,57,44,52,50,46,55,57,48,54,54,52,93,44,91,45,49,49,50,46,49,48,53,56,56,44,52,50,46,54,57,57,50,48,51,93,44,91,45,49,49,49,46,57,55,51,51,55,51,44,52,50,46,55,49,53,52,55,50,93,44,91,45,49,49,49,46,57,49,54,57,50,55,44,52,50,46,54,49,55,50,54,52,93,44,91,45,49,49,49,46,56,55,53,54,51,54,44,52,50,46,52,49,54,49,53,56,93,44,91,45,49,49,49,46,53,57,57,50,50,55,44,52,50,46,52,49,53,51,57,53,93,44,91,45,49,49,49,46,54,51,52,57,49,44,52,50,46,53,55,48,48,50,54,93,44,91,45,49,49,49,46,51,54,56,48,54,50,44,52,50,46,53,57,48,50,57,52,93,44,91,45,49,49,49,46,50,51,54,48,56,57,44,52,50,46,52,55,57,55,53,57,93,44,91,45,49,49,49,46,48,52,54,56,49,55,44,52,50,46,53,49,51,57,50,53,93,44,91,45,49,49,49,46,48,52,52,48,55,50,44,52,51,46,48,49,57,52,48,55,93,44,91,45,49,49,49,46,53,56,57,52,56,57,44,52,51,46,48,50,48,48,53,50,93,44,91,45,49,49,50,46,48,54,51,48,50,51,44,52,51,46,48,50,50,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,82,111,99,107,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,50,55,48,44,34,98,101,100,115,34,58,49,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,55,49,52,56,52,57,44,51,54,46,53,52,49,57,54,53,93,44,91,45,56,48,46,48,50,55,51,51,57,44,51,54,46,53,52,50,52,56,93,44,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,44,91,45,55,57,46,53,51,50,52,49,44,51,54,46,50,52,49,52,54,51,93,44,91,45,55,57,46,53,51,49,56,54,53,44,51,54,46,50,52,57,54,55,51,93,44,91,45,55,57,46,53,49,51,54,51,56,44,51,54,46,53,52,48,57,48,50,93,44,91,45,55,57,46,55,49,52,56,52,57,44,51,54,46,53,52,49,57,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,80,114,97,105,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,52,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,48,50,53,48,53,44,51,53,46,48,51,48,52,50,53,93,44,91,45,57,49,46,56,48,51,55,48,51,44,51,52,46,57,50,49,53,50,52,93,44,91,45,57,49,46,54,57,51,55,48,53,44,51,52,46,57,49,57,54,48,53,93,44,91,45,57,49,46,55,48,48,56,50,56,44,51,52,46,54,55,50,48,50,57,93,44,91,45,57,49,46,54,52,51,48,56,44,51,52,46,54,51,54,56,54,50,93,44,91,45,57,49,46,54,55,56,48,51,55,44,51,52,46,52,56,49,57,50,93,44,91,45,57,49,46,53,57,52,52,50,57,44,51,52,46,53,54,56,48,53,93,44,91,45,57,49,46,51,55,55,56,50,44,51,52,46,53,54,51,52,56,93,44,91,45,57,49,46,51,54,56,53,54,44,51,52,46,57,49,50,55,51,53,93,44,91,45,57,49,46,51,54,51,55,54,51,44,51,53,46,48,53,49,56,56,55,93,44,91,45,57,49,46,52,54,53,49,49,52,44,51,53,46,48,56,57,52,53,52,93,44,91,45,57,49,46,53,56,52,48,48,53,44,51,53,46,48,57,49,53,56,52,93,44,91,45,57,49,46,56,48,50,53,48,53,44,51,53,46,48,51,48,52,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,114,97,100,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,52,56,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,51,48,56,51,57,44,51,51,46,55,48,55,56,48,54,93,44,91,45,57,50,46,51,49,49,48,55,57,44,51,51,46,52,57,57,55,56,50,93,44,91,45,57,50,46,51,56,50,48,54,44,51,51,46,51,52,53,57,55,49,93,44,91,45,57,50,46,51,53,48,52,51,50,44,51,51,46,50,57,56,57,52,49,93,44,91,45,57,50,46,49,51,55,53,50,55,44,51,51,46,49,54,50,57,53,54,93,44,91,45,57,49,46,57,55,55,50,56,52,44,51,51,46,51,48,50,48,50,54,93,44,91,45,57,49,46,57,57,48,49,54,55,44,51,51,46,51,57,56,50,49,52,93,44,91,45,57,49,46,57,55,53,56,52,52,44,51,51,46,55,48,52,52,49,52,93,44,91,45,57,50,46,51,51,48,56,51,57,44,51,51,46,55,48,55,56,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,54,57,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,48,56,51,56,54,44,51,49,46,57,49,55,53,49,49,93,44,91,45,57,56,46,49,53,54,53,54,56,44,51,49,46,56,52,49,55,49,51,93,44,91,45,57,56,46,52,54,51,55,51,54,44,51,49,46,54,56,51,57,56,57,93,44,91,45,57,56,46,50,55,49,48,55,44,51,49,46,52,49,54,51,57,56,93,44,91,45,57,56,46,49,56,48,48,48,54,44,51,49,46,52,54,51,55,49,55,93,44,91,45,57,55,46,55,54,54,52,51,49,44,51,49,46,54,55,50,52,54,49,93,44,91,45,57,56,46,48,48,53,52,54,50,44,51,50,46,48,49,55,56,57,55,93,44,91,45,57,56,46,50,48,56,51,56,54,44,51,49,46,57,49,55,53,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,97,114,111,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,56,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,57,52,57,51,51,53,44,51,56,46,57,49,56,51,51,51,93,44,91,45,55,53,46,56,57,54,55,55,52,44,51,56,46,56,49,53,49,48,57,93,44,91,45,55,54,46,48,49,53,48,52,53,44,51,56,46,55,50,56,54,56,55,93,44,91,45,55,53,46,57,52,53,50,52,56,44,51,56,46,54,55,52,49,48,57,93,44,91,45,55,53,46,56,51,55,57,55,52,44,51,56,46,55,48,51,57,57,93,44,91,45,55,53,46,55,48,55,52,52,55,44,51,56,46,54,51,53,51,57,54,93,44,91,45,55,53,46,55,50,50,55,57,55,44,51,56,46,56,50,57,56,53,49,93,44,91,45,55,53,46,55,52,55,55,54,49,44,51,57,46,49,52,51,51,51,56,93,44,91,45,55,53,46,56,51,52,57,52,56,44,51,57,46,49,48,56,52,51,55,93,44,91,45,55,53,46,57,52,57,51,51,53,44,51,56,46,57,49,56,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,48,51,44,34,98,101,100,115,34,58,49,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,54,57,55,53,44,52,54,46,49,48,55,52,53,93,44,91,45,57,53,46,55,53,56,53,48,56,44,52,53,46,55,53,57,57,51,50,93,44,91,45,57,53,46,49,51,57,54,55,44,52,53,46,55,53,56,56,57,49,93,44,91,45,57,53,46,49,51,57,55,51,49,44,52,53,46,55,55,51,52,49,54,93,44,91,45,57,53,46,49,52,53,56,56,44,52,54,46,49,48,54,55,54,49,93,44,91,45,57,53,46,55,54,57,55,53,44,52,54,46,49,48,55,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,53,55,55,49,48,54,44,52,54,46,49,55,56,57,56,49,93,44,91,45,49,49,50,46,52,54,54,51,50,57,44,52,54,46,48,57,50,57,55,57,93,44,91,45,49,49,50,46,52,48,49,52,52,49,44,52,53,46,56,51,49,56,53,49,93,44,91,45,49,49,50,46,49,57,48,50,54,57,44,52,53,46,55,52,56,53,48,51,93,44,91,45,49,49,50,46,48,56,56,55,54,44,52,53,46,56,52,57,48,53,93,44,91,45,49,49,49,46,57,50,54,57,54,53,44,52,53,46,56,53,53,54,57,52,93,44,91,45,49,49,49,46,56,48,53,50,53,57,44,52,53,46,55,57,56,51,48,54,93,44,91,45,49,49,49,46,54,54,48,48,53,55,44,52,53,46,56,51,51,53,93,44,91,45,49,49,49,46,54,54,48,52,50,50,44,52,54,46,48,52,57,49,57,50,93,44,91,45,49,49,49,46,55,56,52,53,54,53,44,52,54,46,48,52,57,56,49,51,93,44,91,45,49,49,49,46,55,56,55,57,52,57,44,52,54,46,53,54,57,52,54,53,93,44,91,45,49,49,50,46,48,50,57,50,51,49,44,52,54,46,53,54,56,56,48,53,93,44,91,45,49,49,50,46,49,55,54,50,51,53,44,52,54,46,52,53,54,51,52,50,93,44,91,45,49,49,50,46,51,49,48,53,55,51,44,52,54,46,52,50,49,49,55,49,93,44,91,45,49,49,50,46,53,51,51,54,50,53,44,52,54,46,51,51,48,56,57,56,93,44,91,45,49,49,50,46,53,53,56,53,57,57,44,52,54,46,50,54,53,56,50,49,93,44,91,45,49,49,50,46,53,55,55,49,48,54,44,52,54,46,49,55,56,57,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,70,97,105,114,102,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,55,51,57,52,44,34,98,101,100,115,34,58,50,57,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,50,56,51,49,56,44,51,57,46,48,53,55,54,55,56,93,44,91,45,55,55,46,53,51,53,57,57,49,44,51,56,46,56,52,55,51,54,56,93,44,91,45,55,55,46,50,50,51,54,56,51,44,51,56,46,54,53,50,48,54,52,93,44,91,45,55,55,46,50,50,55,51,51,54,44,51,56,46,54,48,52,53,55,93,44,91,45,55,55,46,48,56,54,51,57,49,44,51,56,46,55,48,54,50,50,55,93,44,91,45,55,55,46,48,52,49,51,54,50,44,51,56,46,55,56,53,52,49,53,93,44,91,45,55,55,46,49,49,48,55,57,57,44,51,56,46,56,52,51,52,52,54,93,44,91,45,55,55,46,49,52,57,55,48,49,44,51,56,46,56,55,53,54,55,93,44,91,45,55,55,46,49,56,57,55,53,52,44,51,56,46,56,55,56,49,51,54,93,44,91,45,55,55,46,49,55,50,50,55,54,44,51,56,46,56,57,51,50,52,53,93,44,91,45,55,55,46,49,49,57,55,57,50,44,51,56,46,57,51,52,51,55,52,93,44,91,45,55,55,46,51,50,56,51,49,56,44,51,57,46,48,53,55,54,55,56,93,93,44,91,91,45,55,55,46,51,51,52,56,53,50,44,51,56,46,56,53,51,55,51,55,93,44,91,45,55,55,46,51,48,51,49,51,57,44,51,56,46,56,54,57,50,48,56,93,44,91,45,55,55,46,50,55,48,53,57,55,44,51,56,46,56,54,54,48,55,53,93,44,91,45,55,55,46,50,55,48,53,50,44,51,56,46,56,52,48,57,48,50,93,44,91,45,55,55,46,51,49,54,50,50,52,44,51,56,46,56,51,54,52,48,56,93,44,91,45,55,55,46,51,51,52,56,53,50,44,51,56,46,56,53,51,55,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,68,101,101,114,32,76,111,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,48,48,44,34,98,101,100,115,34,58,49,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,48,51,54,56,50,53,44,52,54,46,50,54,54,56,50,54,93,44,91,45,49,49,51,46,50,56,52,53,51,50,44,52,54,46,50,50,50,55,56,51,93,44,91,45,49,49,51,46,50,55,56,48,49,50,44,52,54,46,48,52,53,50,54,56,93,44,91,45,49,49,51,46,53,49,55,52,48,57,44,52,53,46,57,52,48,48,56,57,93,44,91,45,49,49,51,46,53,49,54,49,52,52,44,52,53,46,57,51,56,56,49,52,93,44,91,45,49,49,51,46,51,57,54,57,48,51,44,52,53,46,55,54,55,54,53,93,44,91,45,49,49,51,46,49,55,57,55,57,49,44,52,53,46,56,56,53,48,48,57,93,44,91,45,49,49,51,46,48,56,53,53,49,55,44,52,53,46,56,54,48,54,52,56,93,44,91,45,49,49,50,46,57,50,52,53,53,50,44,52,53,46,57,51,54,52,52,51,93,44,91,45,49,49,50,46,55,55,55,49,50,44,52,54,46,49,51,53,56,50,54,93,44,91,45,49,49,50,46,53,55,55,49,48,54,44,52,54,46,49,55,56,57,56,49,93,44,91,45,49,49,50,46,53,53,56,53,57,57,44,52,54,46,50,54,53,56,50,49,93,44,91,45,49,49,51,46,48,51,54,56,50,53,44,52,54,46,50,54,54,56,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,55,55,53,44,34,98,101,100,115,34,58,51,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,49,56,49,50,44,51,54,46,48,52,56,57,55,55,93,44,91,45,56,52,46,50,55,49,53,56,55,44,51,53,46,57,49,48,49,54,53,93,44,91,45,56,52,46,49,57,50,50,56,55,44,51,53,46,57,57,53,52,56,56,93,44,91,45,56,51,46,57,52,49,55,49,49,44,51,54,46,49,56,54,51,55,56,93,44,91,45,56,52,46,48,48,52,51,49,55,44,51,54,46,50,55,48,51,55,56,93,44,91,45,56,52,46,48,54,57,54,49,56,44,51,54,46,50,51,48,57,55,56,93,44,91,45,56,52,46,50,50,55,53,50,55,44,51,54,46,50,52,52,56,55,57,93,44,91,45,56,52,46,51,55,50,55,51,49,44,51,54,46,50,49,54,55,55,56,93,44,91,45,56,52,46,52,52,49,48,51,52,44,51,54,46,49,54,51,52,55,56,93,44,91,45,56,52,46,51,52,49,56,49,50,44,51,54,46,48,52,56,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,72,117,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,52,53,55,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,52,48,48,56,55,44,52,49,46,50,53,53,51,51,55,93,44,91,45,56,50,46,56,50,57,53,49,50,44,52,48,46,57,57,54,54,50,52,93,44,91,45,56,50,46,55,50,52,55,57,50,44,52,48,46,57,57,53,54,51,56,93,44,91,45,56,50,46,52,51,50,56,53,50,44,52,48,46,57,57,50,57,52,52,93,44,91,45,56,50,46,51,51,54,52,57,54,44,52,49,46,48,54,53,55,54,49,93,44,91,45,56,50,46,51,52,50,51,49,52,44,52,49,46,50,56,51,53,53,52,93,44,91,45,56,50,46,56,52,49,52,55,53,44,52,49,46,50,57,48,48,50,51,93,44,91,45,56,50,46,56,52,48,48,56,55,44,52,49,46,50,53,53,51,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,53,50,49,52,50,44,51,49,46,55,49,48,55,57,54,93,44,91,45,56,50,46,54,50,55,51,52,50,44,51,49,46,54,55,50,54,55,50,93,44,91,45,56,50,46,53,57,55,53,48,57,44,51,49,46,52,54,57,50,57,51,93,44,91,45,56,50,46,52,49,55,50,52,54,44,51,49,46,52,49,55,49,49,57,93,44,91,45,56,50,46,51,52,52,56,52,51,44,51,49,46,52,51,48,49,51,93,44,91,45,56,50,46,50,50,54,53,56,53,44,51,49,46,53,51,48,54,57,57,93,44,91,45,56,50,46,53,50,49,52,50,44,51,49,46,55,49,48,55,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,68,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,52,56,50,50,44,34,98,101,100,115,34,58,52,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,52,55,55,54,49,44,51,57,46,49,52,51,51,51,56,93,44,91,45,55,53,46,55,50,50,55,57,55,44,51,56,46,56,50,57,56,53,49,93,44,91,45,55,53,46,53,53,53,48,49,51,44,51,56,46,56,51,53,54,52,57,93,44,91,45,55,53,46,51,55,50,49,51,49,44,51,56,46,57,54,49,52,51,54,93,44,91,45,55,53,46,49,51,56,52,54,49,44,51,57,46,48,48,50,54,57,55,93,44,91,45,55,53,46,49,54,56,52,54,50,44,51,57,46,48,53,54,49,55,57,93,44,91,45,55,53,46,51,50,49,48,50,49,44,51,57,46,50,53,49,51,55,57,93,44,91,45,55,53,46,52,52,52,55,53,49,44,51,57,46,51,53,53,48,56,57,93,44,91,45,55,53,46,52,56,49,51,54,44,51,57,46,51,56,55,53,53,53,93,44,91,45,55,53,46,53,55,52,52,50,57,44,51,57,46,51,49,51,54,49,49,93,44,91,45,55,53,46,55,54,48,48,55,52,44,51,57,46,50,57,54,56,49,57,93,44,91,45,55,53,46,55,53,54,48,48,52,44,51,57,46,50,52,54,48,54,54,93,44,91,45,55,53,46,55,52,55,55,54,49,44,51,57,46,49,52,51,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,87,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,57,51,54,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,49,53,57,52,49,44,52,49,46,54,49,57,49,49,93,44,91,45,56,51,46,53,54,57,57,51,52,44,52,49,46,54,49,55,49,53,93,44,91,45,56,51,46,55,52,55,50,49,55,44,52,49,46,52,54,54,50,49,54,93,44,91,45,56,51,46,56,56,51,50,51,52,44,52,49,46,52,49,52,53,48,51,93,44,91,45,56,51,46,56,56,49,49,52,57,44,52,49,46,49,54,55,56,50,52,93,44,91,45,56,51,46,52,50,49,48,53,52,44,52,49,46,49,54,54,55,56,93,44,91,45,56,51,46,52,49,57,56,52,51,44,52,49,46,50,53,52,48,48,51,93,44,91,45,56,51,46,52,49,52,54,50,54,44,52,49,46,53,48,48,50,50,56,93,44,91,45,56,51,46,52,49,53,57,52,49,44,52,49,46,54,49,57,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,55,53,53,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,50,48,49,49,53,44,51,52,46,50,57,53,50,55,54,93,44,91,45,56,51,46,56,49,55,54,56,50,44,51,52,46,49,50,55,52,57,51,93,44,91,45,56,51,46,55,53,49,51,56,49,44,51,52,46,48,54,52,50,48,49,93,44,91,45,56,51,46,53,54,51,50,49,53,44,51,52,46,48,51,49,55,53,55,93,44,91,45,56,51,46,53,51,55,51,56,53,44,51,51,46,57,54,53,57,49,50,93,44,91,45,56,51,46,51,54,48,48,50,56,44,51,52,46,48,52,48,53,55,50,93,44,91,45,56,51,46,52,48,50,52,50,56,44,51,52,46,49,57,55,52,57,57,93,44,91,45,56,51,46,52,56,48,51,54,49,44,51,52,46,50,54,50,48,51,56,93,44,91,45,56,51,46,54,50,48,49,49,53,44,51,52,46,50,57,53,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,53,50,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,44,91,45,57,53,46,53,48,56,51,50,56,44,51,56,46,51,57,48,50,55,56,93,44,91,45,57,53,46,53,49,56,57,55,44,51,56,46,48,51,56,50,51,93,44,91,45,57,53,46,48,55,55,56,55,54,44,51,56,46,48,51,55,55,48,54,93,44,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,57,57,57,44,34,98,101,100,115,34,58,50,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,51,57,52,50,51,44,52,49,46,48,54,51,57,57,53,93,44,91,45,57,48,46,52,52,52,51,51,57,44,52,48,46,55,49,52,56,54,56,93,44,91,45,56,57,46,57,56,54,48,54,52,44,52,48,46,55,49,50,51,54,49,93,44,91,45,56,57,46,57,56,53,52,55,57,44,52,48,46,57,55,52,52,57,53,93,44,91,45,56,57,46,57,56,52,53,53,57,44,52,49,46,49,52,57,51,57,52,93,44,91,45,57,48,46,52,51,55,54,53,50,44,52,49,46,49,53,49,52,54,51,93,44,91,45,57,48,46,52,51,57,52,50,51,44,52,49,46,48,54,51,57,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,87,104,101,97,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,55,52,53,55,52,53,44,52,54,46,54,57,52,48,57,55,93,44,91,45,49,48,57,46,57,54,55,56,44,52,54,46,55,53,48,56,55,53,93,44,91,45,49,49,48,46,50,55,51,51,51,55,44,52,54,46,55,49,48,53,48,57,93,44,91,45,49,49,48,46,50,56,49,57,55,49,44,52,54,46,50,50,48,54,48,53,93,44,91,45,49,48,57,46,54,53,51,56,55,49,44,52,54,46,50,49,57,52,48,52,93,44,91,45,49,48,57,46,52,48,50,57,48,54,44,52,54,46,50,49,57,55,48,54,93,44,91,45,49,48,57,46,51,56,57,49,54,51,44,52,54,46,54,57,51,54,50,53,93,44,91,45,49,48,57,46,55,52,53,55,52,53,44,52,54,46,54,57,52,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,110,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,55,54,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,53,51,50,49,52,44,51,53,46,57,53,52,51,57,57,93,44,91,45,56,54,46,50,48,55,49,52,55,44,51,53,46,55,48,51,55,57,93,44,91,45,56,54,46,49,52,51,54,53,50,44,51,53,46,54,54,49,55,52,55,93,44,91,45,56,53,46,57,56,53,48,54,50,44,51,53,46,54,54,48,49,48,56,93,44,91,45,56,53,46,57,56,52,56,57,49,44,51,53,46,55,51,52,53,53,51,93,44,91,45,56,53,46,56,56,53,49,53,54,44,51,53,46,56,51,57,54,53,56,93,44,91,45,56,54,46,48,49,52,56,52,57,44,51,53,46,57,54,49,48,54,93,44,91,45,56,54,46,49,53,51,50,49,52,44,51,53,46,57,53,52,51,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,49,57,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,56,51,53,49,52,50,44,52,53,46,50,55,55,48,52,55,93,44,91,45,55,48,46,55,55,57,56,52,50,44,52,53,46,48,49,56,51,55,57,93,44,91,45,55,48,46,55,54,57,50,50,56,44,52,52,46,55,51,50,50,50,56,93,44,91,45,55,48,46,54,49,53,48,51,44,52,52,46,55,57,53,54,51,52,93,44,91,45,55,48,46,53,49,48,53,57,56,44,52,52,46,54,50,55,50,49,54,93,44,91,45,55,48,46,50,56,48,55,52,56,44,52,52,46,53,54,57,54,49,57,93,44,91,45,55,48,46,50,51,56,57,48,52,44,52,52,46,52,53,56,57,52,50,93,44,91,45,55,48,46,49,50,57,51,57,44,52,52,46,52,56,55,50,49,55,93,44,91,45,55,48,46,48,52,48,50,49,53,44,52,52,46,53,56,56,55,50,50,93,44,91,45,54,57,46,57,51,48,52,53,49,44,52,52,46,54,49,48,56,53,50,93,44,91,45,54,57,46,57,57,54,49,57,49,44,52,52,46,54,55,55,52,57,55,93,44,91,45,55,48,46,48,51,51,50,55,44,52,52,46,56,54,52,53,52,93,44,91,45,55,48,46,49,49,48,51,54,53,44,52,52,46,57,52,55,51,49,49,93,44,91,45,55,48,46,49,53,57,51,55,53,44,52,53,46,49,50,56,51,57,54,93,44,91,45,55,48,46,50,57,51,56,50,54,44,52,53,46,49,48,57,57,48,51,93,44,91,45,55,48,46,52,49,56,53,49,57,44,52,53,46,49,52,52,48,48,53,93,44,91,45,55,48,46,53,53,50,56,53,51,44,52,53,46,54,54,55,56,57,57,93,44,91,45,55,48,46,55,50,50,53,55,49,44,52,53,46,53,49,51,54,55,50,93,44,91,45,55,48,46,54,50,52,52,53,52,44,52,53,46,52,48,54,49,52,57,93,44,91,45,55,48,46,56,50,53,55,51,55,44,52,53,46,52,48,48,50,54,53,93,44,91,45,55,48,46,56,51,53,49,52,50,44,52,53,46,50,55,55,48,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,77,101,110,105,102,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,51,49,48,54,44,51,55,46,56,50,53,51,55,50,93,44,91,45,56,51,46,52,57,53,48,56,44,51,55,46,56,54,49,57,48,54,93,44,91,45,56,51,46,52,51,51,57,52,50,44,51,56,46,48,51,51,57,55,52,93,44,91,45,56,51,46,52,57,56,56,52,54,44,51,56,46,48,53,48,54,50,93,44,91,45,56,51,46,55,53,57,52,51,44,51,55,46,57,57,56,55,51,49,93,44,91,45,56,51,46,55,54,56,55,56,51,44,51,55,46,57,49,56,51,55,49,93,44,91,45,56,51,46,54,51,49,48,54,44,51,55,46,56,50,53,51,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,99,80,104,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,54,52,44,34,98,101,100,115,34,58,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,48,53,55,53,56,44,52,53,46,57,51,57,55,51,49,93,44,91,45,57,57,46,55,49,56,48,55,49,44,52,53,46,57,52,48,56,56,51,93,44,91,45,57,57,46,55,49,55,52,54,54,44,52,53,46,53,57,51,52,50,56,93,44,91,45,57,57,46,55,48,55,55,48,53,44,52,53,46,53,57,51,51,57,49,93,44,91,45,57,56,46,55,50,53,48,48,50,44,52,53,46,53,57,49,50,53,50,93,44,91,45,57,56,46,55,50,52,51,55,53,44,52,53,46,57,51,56,55,51,49,93,44,91,45,57,57,46,48,48,53,55,53,56,44,52,53,46,57,51,57,55,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,117,110,110,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,53,51,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,53,48,48,54,48,54,44,51,57,46,50,49,55,57,49,54,93,44,91,45,49,48,55,46,53,48,48,54,53,53,44,51,56,46,54,54,56,53,53,51,93,44,91,45,49,48,55,46,53,48,48,48,50,44,51,56,46,51,48,49,57,50,54,93,44,91,45,49,48,55,46,54,51,53,48,52,44,51,56,46,51,48,49,56,57,54,93,44,91,45,49,48,55,46,53,54,56,54,50,44,51,56,46,49,52,55,50,54,55,93,44,91,45,49,48,55,46,48,48,49,49,49,57,44,51,56,46,49,52,55,48,55,50,93,44,91,45,49,48,55,46,48,48,48,54,48,49,44,51,56,46,52,50,53,54,49,57,93,44,91,45,49,48,54,46,50,52,54,57,52,44,51,56,46,52,50,50,55,54,56,93,44,91,45,49,48,54,46,51,52,56,49,48,56,44,51,56,46,53,49,50,52,57,57,93,44,91,45,49,48,54,46,52,51,48,49,53,57,44,51,56,46,54,53,51,52,54,56,93,44,91,45,49,48,54,46,52,49,54,50,54,51,44,51,56,46,56,50,51,56,53,93,44,91,45,49,48,54,46,52,54,53,48,51,50,44,51,56,46,57,49,48,51,53,52,93,44,91,45,49,48,54,46,53,57,57,50,49,52,44,51,56,46,57,57,55,57,57,52,93,44,91,45,49,48,54,46,55,52,48,54,57,53,44,51,57,46,48,52,53,57,48,54,93,44,91,45,49,48,54,46,56,48,49,56,55,52,44,51,56,46,57,55,56,51,48,51,93,44,91,45,49,48,54,46,57,48,56,49,57,54,44,51,56,46,57,57,50,53,55,57,93,44,91,45,49,48,55,46,48,54,54,51,50,44,51,57,46,49,49,56,56,48,53,93,44,91,45,49,48,55,46,50,56,50,52,57,44,51,57,46,49,49,56,55,49,56,93,44,91,45,49,48,55,46,51,57,52,52,56,54,44,51,57,46,50,53,54,50,57,57,93,44,91,45,49,48,55,46,53,48,48,54,48,54,44,51,57,46,50,49,55,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,101,118,111,105,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,49,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,53,56,56,57,54,44,52,53,46,50,48,54,53,55,52,93,44,91,45,56,53,46,50,50,50,55,48,55,44,52,53,46,50,48,53,53,54,93,44,91,45,56,53,46,50,50,51,54,56,49,44,52,53,46,49,49,55,56,54,49,93,44,91,45,56,52,46,56,53,55,52,53,50,44,52,53,46,49,49,54,55,48,55,93,44,91,45,56,52,46,55,51,52,51,48,51,44,52,53,46,50,48,49,57,51,54,93,44,91,45,56,52,46,55,51,50,54,56,55,44,52,53,46,50,56,57,51,56,50,93,44,91,45,56,52,46,57,54,52,55,56,55,44,52,53,46,50,57,49,54,48,49,93,44,91,45,56,53,46,50,56,51,50,51,56,44,52,53,46,53,53,48,50,48,57,93,44,91,45,56,53,46,51,48,55,53,56,52,44,52,53,46,54,50,53,48,48,54,93,44,91,45,56,53,46,50,50,49,51,57,52,44,52,53,46,55,56,50,56,52,51,93,44,91,45,56,53,46,50,51,57,54,49,56,44,52,53,46,56,55,48,55,52,93,44,91,45,56,53,46,53,55,48,48,55,52,44,52,53,46,56,56,51,50,52,52,93,44,91,45,56,53,46,56,54,56,50,52,49,44,52,53,46,56,49,57,55,57,53,93,44,91,45,56,53,46,56,53,53,55,54,56,44,52,53,46,53,55,56,51,56,54,93,44,91,45,56,53,46,54,50,53,48,55,54,44,52,53,46,52,53,52,54,48,50,93,44,91,45,56,53,46,52,53,56,56,57,54,44,52,53,46,50,48,54,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,119,105,102,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,49,49,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,49,49,55,48,51,54,44,52,53,46,52,49,49,57,57,51,93,44,91,45,57,54,46,49,48,51,54,49,52,44,52,53,46,49,55,54,54,55,53,93,44,91,45,57,54,46,48,51,54,54,57,56,44,52,53,46,49,53,50,50,48,54,93,44,91,45,57,53,46,50,52,54,52,56,57,44,52,53,46,49,53,50,52,51,49,93,44,91,45,57,53,46,50,53,53,50,49,51,44,52,53,46,52,49,50,55,51,57,93,44,91,45,57,53,46,55,52,55,52,48,50,44,52,53,46,52,49,50,51,49,51,93,44,91,45,57,54,46,49,49,55,48,51,54,44,52,53,46,52,49,49,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,83,101,110,101,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,55,53,44,34,98,101,100,115,34,58,49,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,49,57,56,52,51,44,52,49,46,50,53,52,48,48,51,93,44,91,45,56,51,46,52,50,49,48,53,52,44,52,49,46,49,54,54,55,56,93,44,91,45,56,51,46,52,50,48,51,49,57,44,52,48,46,57,57,49,56,56,57,93,44,91,45,56,51,46,49,49,50,55,51,55,44,52,48,46,57,57,51,52,52,55,93,44,91,45,56,50,46,56,50,57,53,49,50,44,52,48,46,57,57,54,54,50,52,93,44,91,45,56,50,46,56,52,48,48,56,55,44,52,49,46,50,53,53,51,51,55,93,44,91,45,56,51,46,52,49,57,56,52,51,44,52,49,46,50,53,52,48,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,55,34,44,34,78,65,77,69,34,58,34,84,97,116,116,110,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,51,50,55,56,56,44,51,50,46,51,49,56,56,51,56,93,44,91,45,56,50,46,49,56,50,55,50,55,44,51,50,46,49,54,48,52,52,50,93,44,91,45,56,50,46,50,50,53,48,52,50,44,51,49,46,57,49,51,48,55,52,93,44,91,45,56,50,46,48,52,56,53,56,50,44,51,49,46,56,50,55,48,55,53,93,44,91,45,56,49,46,57,54,57,48,53,50,44,51,49,46,55,56,57,51,50,52,93,44,91,45,56,49,46,56,50,52,52,48,53,44,51,50,46,48,49,52,56,56,50,93,44,91,45,56,49,46,55,54,49,55,51,53,44,51,50,46,48,52,55,57,93,44,91,45,56,49,46,57,56,48,48,52,49,44,51,50,46,48,56,49,53,48,50,93,44,91,45,56,50,46,48,50,53,51,51,57,44,51,50,46,50,55,56,56,56,51,93,44,91,45,56,50,46,50,51,50,55,56,56,44,51,50,46,51,49,56,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,50,57,34,44,34,78,65,77,69,34,58,34,83,116,101,112,104,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,55,50,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,57,54,48,49,54,44,51,50,46,57,53,55,48,51,55,93,44,91,45,57,57,46,48,57,54,48,53,44,51,50,46,53,49,52,55,54,56,93,44,91,45,57,56,46,53,55,54,50,53,54,44,51,50,46,53,49,53,49,54,51,93,44,91,45,57,56,46,53,55,53,54,49,54,44,51,50,46,57,53,52,51,52,57,93,44,91,45,57,56,46,57,53,48,56,55,53,44,51,50,46,57,53,54,57,49,56,93,44,91,45,57,57,46,48,57,54,48,49,54,44,51,50,46,57,53,55,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,53,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,48,50,54,49,52,44,51,54,46,48,48,52,57,54,54,93,44,91,45,55,55,46,51,52,50,52,49,56,44,51,53,46,57,48,53,50,54,50,93,44,91,45,55,55,46,51,53,48,51,54,57,44,51,53,46,56,49,57,50,50,56,93,44,91,45,55,55,46,49,55,52,44,51,53,46,55,51,50,56,51,49,93,44,91,45,55,54,46,57,56,53,56,52,50,44,51,53,46,54,53,56,56,52,56,93,44,91,45,55,54,46,56,52,55,50,54,52,44,51,53,46,55,49,57,57,56,50,93,44,91,45,55,54,46,55,54,48,53,57,56,44,51,53,46,56,54,52,56,56,55,93,44,91,45,55,55,46,48,48,53,50,53,44,51,53,46,56,53,56,52,51,51,93,44,91,45,55,55,46,48,52,50,56,56,50,44,51,53,46,57,52,50,50,55,56,93,44,91,45,55,55,46,51,50,55,53,54,57,44,51,54,46,48,55,49,51,54,49,93,44,91,45,55,55,46,52,48,50,54,49,52,44,51,54,46,48,48,52,57,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,82,97,118,97,108,108,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,57,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,51,51,50,55,57,54,44,52,54,46,54,54,48,53,56,49,93,44,91,45,49,49,52,46,51,52,50,57,56,53,44,52,54,46,53,49,56,48,52,93,44,91,45,49,49,52,46,52,55,48,55,57,53,44,52,54,46,50,54,53,51,55,55,93,44,91,45,49,49,52,46,52,52,53,50,51,52,44,52,54,46,49,54,55,57,52,54,93,44,91,45,49,49,52,46,52,56,48,53,51,55,44,52,54,46,48,51,48,52,51,57,93,44,91,45,49,49,52,46,52,48,53,57,49,55,44,52,53,46,56,55,48,52,93,44,91,45,49,49,52,46,53,54,54,51,52,56,44,52,53,46,55,55,50,55,51,57,93,44,91,45,49,49,52,46,52,57,57,54,54,55,44,52,53,46,54,54,56,53,49,51,93,44,91,45,49,49,52,46,53,54,52,57,57,57,44,52,53,46,53,53,55,56,48,51,93,44,91,45,49,49,52,46,50,54,57,56,57,50,44,52,53,46,52,56,52,53,53,50,93,44,91,45,49,49,51,46,57,51,56,48,57,53,44,52,53,46,54,57,53,55,52,93,44,91,45,49,49,51,46,55,49,50,53,50,50,44,52,53,46,56,51,56,51,56,52,93,44,91,45,49,49,51,46,53,51,50,51,55,44,52,53,46,56,55,56,52,48,53,93,44,91,45,49,49,51,46,53,49,54,49,52,52,44,52,53,46,57,51,56,56,49,52,93,44,91,45,49,49,51,46,53,49,55,52,48,57,44,52,53,46,57,52,48,48,56,57,93,44,91,45,49,49,51,46,54,52,56,51,53,56,44,52,53,46,57,54,53,48,51,56,93,44,91,45,49,49,51,46,55,53,51,50,52,54,44,52,54,46,49,49,50,56,93,44,91,45,49,49,51,46,55,56,50,48,51,50,44,52,54,46,51,53,57,53,49,56,93,44,91,45,49,49,51,46,56,55,52,54,53,49,44,52,54,46,53,48,56,51,50,57,93,44,91,45,49,49,51,46,56,50,55,55,52,51,44,52,54,46,54,54,48,56,57,54,93,44,91,45,49,49,52,46,51,51,50,55,57,54,44,52,54,46,54,54,48,53,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,55,34,44,34,78,65,77,69,34,58,34,87,105,108,107,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,56,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,55,57,53,48,54,44,51,51,46,57,55,49,49,50,52,93,44,91,45,56,50,46,56,52,54,54,56,54,44,51,51,46,57,52,48,54,51,57,93,44,91,45,56,50,46,57,56,55,50,56,54,44,51,51,46,55,56,48,55,49,93,44,91,45,56,50,46,57,52,57,48,52,54,44,51,51,46,55,51,51,51,51,51,93,44,91,45,56,50,46,56,57,48,53,57,57,44,51,51,46,54,51,50,56,55,55,93,44,91,45,56,50,46,56,49,50,57,53,56,44,51,51,46,54,53,53,56,51,54,93,44,91,45,56,50,46,54,55,57,57,55,53,44,51,51,46,53,57,57,55,57,50,93,44,91,45,56,50,46,54,52,57,55,48,53,44,51,51,46,54,48,56,55,54,56,93,44,91,45,56,50,46,52,55,57,53,49,56,44,51,51,46,54,51,57,53,51,53,93,44,91,45,56,50,46,53,55,51,54,53,50,44,51,51,46,55,56,54,49,49,54,93,44,91,45,56,50,46,54,52,53,52,53,49,44,51,51,46,57,56,52,49,57,53,93,44,91,45,56,50,46,55,55,57,53,48,54,44,51,51,46,57,55,49,49,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,51,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,51,52,48,57,51,56,44,52,55,46,56,57,52,51,49,54,93,44,91,45,49,49,56,46,53,51,49,50,57,55,44,52,55,46,56,55,52,56,55,56,93,44,91,45,49,49,56,46,55,51,48,51,50,53,44,52,55,46,57,48,48,49,54,57,93,44,91,45,49,49,56,46,56,53,49,57,54,44,52,55,46,57,53,55,57,48,54,93,44,91,45,49,49,56,46,57,55,51,53,48,52,44,52,55,46,57,52,51,52,49,52,93,44,91,45,49,49,56,46,57,55,57,55,55,55,44,52,55,46,50,54,49,55,48,57,93,44,91,45,49,49,55,46,57,54,48,57,51,44,52,55,46,50,54,48,53,54,56,93,44,91,45,49,49,55,46,56,50,51,54,50,57,44,52,55,46,50,54,48,50,50,93,44,91,45,49,49,55,46,56,50,48,57,52,55,44,52,55,46,56,50,53,55,55,53,93,44,91,45,49,49,56,46,48,55,56,49,56,50,44,52,55,46,56,48,48,48,54,50,93,44,91,45,49,49,56,46,50,49,50,51,50,51,44,52,55,46,57,52,53,52,57,51,93,44,91,45,49,49,56,46,51,52,48,57,51,56,44,52,55,46,56,57,52,51,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,83,97,110,32,77,97,116,101,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,53,57,51,53,44,34,98,101,100,115,34,58,50,52,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,53,55,53,49,56,57,44,51,55,46,55,48,54,55,50,49,93,44,91,45,49,50,50,46,53,55,52,57,54,51,44,51,55,46,52,57,57,57,52,51,93,44,91,45,49,50,50,46,52,54,53,56,54,57,44,51,55,46,51,52,49,50,52,93,44,91,45,49,50,50,46,52,54,52,49,49,55,44,51,55,46,49,55,55,56,52,56,93,44,91,45,49,50,50,46,51,49,51,56,57,57,44,51,55,46,48,53,52,55,54,52,93,44,91,45,49,50,50,46,51,49,55,54,56,50,44,51,55,46,49,56,54,57,52,53,93,44,91,45,49,50,50,46,49,53,50,55,55,52,44,51,55,46,50,49,53,52,52,52,93,44,91,45,49,50,50,46,49,53,50,50,55,56,44,51,55,46,50,56,54,48,53,53,93,44,91,45,49,50,50,46,49,57,48,52,48,50,44,51,55,46,52,51,49,52,55,50,93,44,91,45,49,50,50,46,48,56,49,52,55,51,44,51,55,46,52,55,55,56,51,56,93,44,91,45,49,50,50,46,50,56,49,55,56,44,51,55,46,55,48,56,50,51,93,44,91,45,49,50,50,46,53,55,53,49,56,57,44,51,55,46,55,48,54,55,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,57,51,54,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,57,57,53,52,54,44,52,49,46,55,48,53,56,49,54,93,44,91,45,56,52,46,56,48,53,57,55,50,44,52,49,46,54,57,54,49,49,56,93,44,91,45,56,52,46,56,48,52,54,56,55,44,52,49,46,53,51,48,49,51,52,93,44,91,45,56,52,46,56,48,52,48,54,51,44,52,49,46,52,50,54,48,53,49,93,44,91,45,56,52,46,51,52,49,54,54,52,44,52,49,46,52,50,55,53,54,56,93,44,91,45,56,52,46,51,52,49,57,48,50,44,52,49,46,52,56,53,53,49,57,93,44,91,45,56,52,46,51,56,48,55,51,53,44,52,49,46,53,49,51,57,52,50,93,44,91,45,56,52,46,51,57,57,53,52,54,44,52,49,46,55,48,53,56,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,54,51,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,48,50,51,50,57,44,51,55,46,48,48,48,49,53,93,44,91,45,49,48,50,46,48,52,50,48,56,57,44,51,54,46,57,57,51,48,49,54,93,44,91,45,49,48,50,46,48,52,49,54,52,50,44,51,55,46,51,56,57,49,57,93,44,91,45,49,48,50,46,48,52,49,53,56,53,44,51,55,46,54,52,52,50,56,50,93,44,91,45,49,48,50,46,55,52,55,54,49,53,44,51,55,46,54,52,51,54,52,50,93,44,91,45,49,48,51,46,48,55,53,57,51,56,44,51,55,46,54,52,51,52,50,93,44,91,45,49,48,51,46,48,56,54,49,48,50,44,51,55,46,48,48,48,49,56,56,93,44,91,45,49,48,51,46,48,48,50,51,50,57,44,51,55,46,48,48,48,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,111,117,110,100,97,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,52,57,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,48,52,57,48,56,54,44,52,57,46,48,48,48,56,52,54,93,44,91,45,49,49,55,46,48,51,50,51,52,53,44,52,56,46,57,57,57,50,48,49,93,44,91,45,49,49,55,46,48,51,50,52,52,49,44,52,56,46,56,52,54,54,54,54,93,44,91,45,49,49,54,46,55,56,53,49,55,52,44,52,56,46,56,52,55,52,48,50,93,44,91,45,49,49,54,46,55,56,52,56,55,56,44,52,56,46,53,48,48,52,55,50,93,44,91,45,49,49,54,46,48,52,57,48,53,56,44,52,56,46,53,48,50,48,54,50,93,44,91,45,49,49,54,46,48,52,57,48,56,54,44,52,57,46,48,48,48,56,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,97,114,32,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,54,50,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,53,57,57,50,50,55,44,52,50,46,52,49,53,51,57,53,93,44,91,45,49,49,49,46,53,54,54,54,50,56,44,52,50,46,50,55,51,53,55,52,93,44,91,45,49,49,49,46,54,50,54,49,48,52,44,52,50,46,50,48,55,53,52,50,93,44,91,45,49,49,49,46,53,57,53,55,52,51,44,52,50,46,48,57,52,50,49,93,44,91,45,49,49,49,46,53,48,55,56,48,54,44,52,49,46,57,57,57,53,53,50,93,44,91,45,49,49,49,46,48,52,54,55,49,52,44,52,50,46,48,48,49,55,48,50,93,44,91,45,49,49,49,46,48,52,54,56,49,55,44,52,50,46,53,49,51,57,50,53,93,44,91,45,49,49,49,46,50,51,54,48,56,57,44,52,50,46,52,55,57,55,53,57,93,44,91,45,49,49,49,46,51,54,56,48,54,50,44,52,50,46,53,57,48,50,57,52,93,44,91,45,49,49,49,46,54,51,52,57,49,44,52,50,46,53,55,48,48,50,54,93,44,91,45,49,49,49,46,53,57,57,50,50,55,44,52,50,46,52,49,53,51,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,54,53,52,44,34,98,101,100,115,34,58,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,50,48,50,50,55,44,52,48,46,53,48,52,48,55,55,93,44,91,45,56,51,46,53,53,49,51,51,56,44,52,48,46,50,50,57,51,55,93,44,91,45,56,51,46,53,48,51,55,49,52,44,52,48,46,49,49,49,52,54,56,93,44,91,45,56,51,46,50,48,54,50,55,51,44,52,48,46,49,48,55,55,51,51,93,44,91,45,56,51,46,49,54,57,57,56,49,44,52,48,46,49,52,51,48,56,55,93,44,91,45,56,51,46,50,52,56,52,50,56,44,52,48,46,50,52,52,52,54,54,93,44,91,45,56,51,46,50,52,56,53,57,53,44,52,48,46,52,52,51,57,56,57,93,44,91,45,56,51,46,50,52,56,49,56,51,44,52,48,46,53,48,55,48,51,52,93,44,91,45,56,51,46,52,49,56,54,55,44,52,48,46,53,48,53,50,50,57,93,44,91,45,56,51,46,53,50,48,50,50,55,44,52,48,46,53,48,52,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,117,121,97,104,111,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,51,55,56,51,44,34,98,101,100,115,34,58,55,49,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,55,48,53,56,44,52,49,46,56,55,55,56,52,53,93,44,91,45,56,49,46,57,55,49,50,54,50,44,52,49,46,51,53,49,50,54,56,93,44,91,45,56,49,46,56,55,56,48,53,51,44,52,49,46,50,55,53,48,52,52,93,44,91,45,56,49,46,54,56,52,57,53,44,52,49,46,50,55,55,49,52,54,93,44,91,45,56,49,46,53,57,56,48,53,50,44,52,49,46,51,53,49,49,53,55,93,44,91,45,56,49,46,51,57,49,54,57,52,44,52,49,46,51,52,56,50,55,50,93,44,91,45,56,49,46,51,57,49,48,48,53,44,52,49,46,53,54,57,55,49,54,93,44,91,45,56,49,46,52,56,55,56,52,50,44,52,49,46,53,55,48,48,53,49,93,44,91,45,56,49,46,52,57,53,49,56,49,44,52,50,46,48,57,54,52,48,50,93,44,91,45,56,49,46,57,55,48,53,56,44,52,49,46,56,55,55,56,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,53,34,44,34,78,65,77,69,34,58,34,76,97,118,97,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,52,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,52,48,49,48,56,44,50,57,46,51,56,52,52,56,56,93,44,91,45,57,54,46,57,55,54,51,55,56,44,50,57,46,49,48,52,48,52,54,93,44,91,45,57,54,46,57,51,56,53,56,55,44,50,57,46,48,54,51,50,52,52,93,44,91,45,57,54,46,54,53,56,52,54,54,44,50,57,46,50,54,51,56,55,54,93,44,91,45,57,54,46,53,54,48,53,53,53,44,50,57,46,51,51,53,52,51,57,93,44,91,45,57,54,46,55,57,51,49,51,50,44,50,57,46,53,55,55,51,55,56,93,44,91,45,57,54,46,56,55,52,50,50,50,44,50,57,46,54,51,50,55,48,54,93,44,91,45,57,55,46,49,52,50,54,52,51,44,50,57,46,54,50,56,49,48,49,93,44,91,45,57,55,46,50,48,52,48,56,55,44,50,57,46,53,56,48,54,49,51,93,44,91,45,57,55,46,50,52,48,49,48,56,44,50,57,46,51,56,52,52,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,78,111,119,97,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,56,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,56,54,55,54,50,44,51,54,46,57,57,57,51,49,93,44,91,45,57,53,46,56,48,57,56,50,44,51,54,46,57,52,49,57,51,93,44,91,45,57,53,46,56,48,57,53,52,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,52,51,49,53,55,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,52,51,49,55,53,56,44,51,54,46,57,52,50,53,57,51,93,44,91,45,57,53,46,52,48,55,55,51,51,44,51,54,46,57,57,57,51,49,49,93,44,91,45,57,53,46,53,50,50,52,49,53,44,51,54,46,57,57,57,50,56,93,44,91,45,57,53,46,55,56,54,55,54,50,44,51,54,46,57,57,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,71,108,97,115,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,49,57,53,55,44,51,51,46,50,55,52,56,51,93,44,91,45,56,50,46,53,53,57,55,53,51,44,51,51,46,51,50,55,50,55,93,44,91,45,56,50,46,55,53,53,56,52,54,44,51,51,46,50,53,51,52,52,93,44,91,45,56,50,46,55,52,56,51,49,49,44,51,51,46,50,51,56,51,52,56,93,44,91,45,56,50,46,54,54,49,57,49,55,44,51,51,46,49,50,54,51,51,49,93,44,91,45,56,50,46,52,51,49,57,53,55,44,51,51,46,50,55,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,85,109,97,116,105,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,56,57,56,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,57,56,55,50,53,56,44,52,53,46,57,57,57,56,53,53,93,44,91,45,49,49,57,46,49,50,54,51,50,50,44,52,53,46,57,51,50,55,56,52,93,44,91,45,49,49,57,46,52,51,50,49,53,44,52,53,46,57,49,56,50,55,49,93,44,91,45,49,49,57,46,52,51,52,54,52,44,52,53,46,54,48,50,57,56,53,93,44,91,45,49,49,57,46,50,52,56,53,52,55,44,52,53,46,54,48,49,57,51,53,93,44,91,45,49,49,57,46,49,52,53,49,52,52,44,52,53,46,53,49,53,57,48,57,93,44,91,45,49,49,57,46,49,52,54,52,50,52,44,52,53,46,48,56,50,57,52,93,44,91,45,49,49,57,46,49,54,50,57,54,54,44,52,52,46,57,57,54,50,52,49,93,44,91,45,49,49,56,46,53,49,56,54,56,57,44,52,52,46,57,57,53,56,55,55,93,44,91,45,49,49,56,46,53,52,54,54,51,50,44,52,53,46,49,57,54,56,57,56,93,44,91,45,49,49,56,46,54,53,53,57,57,50,44,52,53,46,49,57,54,57,50,56,93,44,91,45,49,49,56,46,54,57,55,55,54,54,44,52,53,46,51,52,53,54,52,55,93,44,91,45,49,49,56,46,52,50,56,51,50,57,44,52,53,46,51,53,53,49,57,93,44,91,45,49,49,56,46,52,50,56,53,51,57,44,52,53,46,52,50,57,48,55,54,93,44,91,45,49,49,56,46,49,57,55,56,55,54,44,52,53,46,52,50,55,50,48,52,93,44,91,45,49,49,56,46,49,49,54,52,54,49,44,52,53,46,52,55,48,55,51,50,93,44,91,45,49,49,56,46,49,49,55,49,57,52,44,52,53,46,54,56,56,54,48,55,93,44,91,45,49,49,55,46,57,55,50,57,56,44,52,53,46,56,54,48,53,57,53,93,44,91,45,49,49,55,46,57,55,55,54,54,52,44,52,54,46,48,48,48,53,50,50,93,44,91,45,49,49,55,46,57,57,54,57,55,44,52,54,46,48,48,48,53,54,93,44,91,45,49,49,56,46,57,56,55,50,53,56,44,52,53,46,57,57,57,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,50,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,50,34,44,34,78,65,77,69,34,58,34,79,103,108,97,108,97,32,76,97,107,111,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,49,51,57,49,53,56,44,52,51,46,55,48,48,57,52,56,93,44,91,45,49,48,50,46,49,55,53,50,51,49,44,52,51,46,54,56,55,55,53,54,93,44,91,45,49,48,50,46,56,48,57,51,57,56,44,52,51,46,54,56,55,53,54,93,44,91,45,49,48,51,46,48,48,49,48,49,55,44,52,51,46,54,48,53,56,49,54,93,44,91,45,49,48,51,46,48,48,48,57,49,51,44,52,51,46,52,55,54,56,52,56,93,44,91,45,49,48,51,46,48,48,48,54,48,57,44,52,51,46,48,48,48,55,53,49,93,44,91,45,49,48,50,46,55,57,50,49,49,49,44,52,50,46,57,57,57,57,56,93,44,91,45,49,48,50,46,48,56,50,53,52,54,44,52,50,46,57,57,57,51,53,54,93,44,91,45,49,48,50,46,48,56,50,52,56,54,44,52,50,46,57,57,57,51,53,53,93,44,91,45,49,48,50,46,49,48,56,56,57,50,44,52,51,46,49,50,57,50,53,56,93,44,91,45,49,48,50,46,49,49,48,56,49,57,44,52,51,46,51,56,57,57,48,50,93,44,91,45,49,48,50,46,49,51,57,48,53,49,44,52,51,46,52,55,54,54,55,54,93,44,91,45,49,48,50,46,49,51,57,49,53,56,44,52,51,46,55,48,48,57,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,48,53,55,54,56,44,52,48,46,48,48,49,52,57,53,93,44,91,45,57,54,46,56,48,54,53,52,52,44,51,57,46,53,54,54,52,50,51,93,44,91,45,57,54,46,53,56,48,51,54,50,44,51,57,46,53,54,54,51,51,50,93,44,91,45,57,54,46,50,51,56,57,54,57,44,51,57,46,53,54,54,50,50,93,44,91,45,57,54,46,50,51,57,50,44,52,48,46,48,48,48,56,56,49,93,44,91,45,57,54,46,52,54,51,55,49,50,44,52,48,46,48,48,49,48,50,51,93,44,91,45,57,54,46,56,48,53,55,54,56,44,52,48,46,48,48,49,52,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,55,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,53,55,54,52,51,44,51,50,46,53,51,55,56,48,55,93,44,91,45,57,49,46,52,55,54,55,51,57,44,51,50,46,52,48,53,56,48,56,93,44,91,45,57,49,46,53,52,51,48,50,49,44,51,50,46,50,53,57,48,48,54,93,44,91,45,57,49,46,52,57,50,55,49,56,44,51,50,46,50,48,51,51,52,57,93,44,91,45,57,49,46,49,50,52,48,52,51,44,51,50,46,50,49,49,49,48,52,93,44,91,45,57,48,46,57,56,51,51,56,49,44,51,50,46,50,49,49,55,54,55,93,44,91,45,57,48,46,57,56,54,54,55,50,44,51,50,46,51,53,49,55,54,93,44,91,45,57,49,46,49,49,54,55,48,56,44,51,50,46,53,48,48,49,51,56,93,44,91,45,57,49,46,48,54,57,55,57,50,44,51,50,46,53,54,50,56,48,51,93,44,91,45,57,49,46,49,51,51,55,49,51,44,51,50,46,53,51,55,57,49,50,93,44,91,45,57,49,46,52,53,55,54,52,51,44,51,50,46,53,51,55,56,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,86,97,108,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,49,49,50,48,53,56,44,52,56,46,57,57,57,52,54,93,44,91,45,49,48,55,46,49,55,57,56,49,50,44,52,57,46,48,48,48,49,48,51,93,44,91,45,49,48,55,46,50,48,54,48,51,50,44,52,56,46,57,49,50,55,49,93,44,91,45,49,48,55,46,50,48,54,51,49,54,44,52,56,46,53,54,56,49,55,93,44,91,45,49,48,55,46,51,48,49,55,50,49,44,52,56,46,52,56,48,57,52,51,93,44,91,45,49,48,55,46,50,54,48,52,53,56,44,52,56,46,51,48,52,55,54,56,93,44,91,45,49,48,55,46,52,48,52,53,49,51,44,52,56,46,50,49,56,52,52,93,44,91,45,49,48,55,46,52,49,52,56,56,54,44,52,55,46,54,57,49,55,51,52,93,44,91,45,49,48,55,46,50,52,57,44,52,55,46,54,54,49,53,54,54,93,44,91,45,49,48,54,46,56,56,49,49,54,50,44,52,55,46,54,55,56,49,50,56,93,44,91,45,49,48,54,46,56,54,49,54,54,56,44,52,55,46,55,51,55,51,55,50,93,44,91,45,49,48,54,46,53,55,49,48,48,51,44,52,55,46,56,49,50,57,51,51,93,44,91,45,49,48,54,46,52,49,56,54,50,44,52,55,46,57,53,55,52,53,55,93,44,91,45,49,48,54,46,51,57,52,49,54,51,44,52,56,46,48,54,52,55,50,54,93,44,91,45,49,48,54,46,50,50,57,51,48,50,44,52,56,46,48,50,54,52,49,54,93,44,91,45,49,48,53,46,56,52,51,56,57,49,44,52,56,46,48,49,48,50,56,57,93,44,91,45,49,48,53,46,56,48,52,53,57,57,44,52,56,46,50,49,57,48,51,55,93,44,91,45,49,48,53,46,56,48,52,52,51,54,44,52,56,46,53,54,51,51,53,56,93,44,91,45,49,48,54,46,48,49,57,56,50,44,52,56,46,53,54,51,50,50,49,93,44,91,45,49,48,54,46,48,50,49,50,53,49,44,52,56,46,56,50,51,57,55,53,93,44,91,45,49,48,54,46,49,53,49,57,48,56,44,52,56,46,56,50,51,57,50,55,93,44,91,45,49,48,54,46,49,49,50,48,53,56,44,52,56,46,57,57,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,51,34,44,34,78,65,77,69,34,58,34,87,104,105,116,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,56,52,57,44,34,98,101,100,115,34,58,50,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,55,57,56,54,44,51,52,46,57,56,55,54,52,55,93,44,91,45,56,53,46,48,54,49,54,52,56,44,51,52,46,56,49,57,52,55,56,93,44,91,45,56,53,46,49,52,52,55,56,57,44,51,52,46,55,54,55,54,51,57,93,44,91,45,56,53,46,48,53,48,56,52,55,44,51,52,46,55,49,57,57,56,93,44,91,45,56,53,46,48,53,48,52,52,54,44,51,52,46,54,50,50,52,56,50,93,44,91,45,56,52,46,57,49,51,52,53,54,44,51,52,46,54,51,52,49,50,56,93,44,91,45,56,52,46,57,50,52,57,48,57,44,51,52,46,55,49,53,57,55,49,93,44,91,45,56,52,46,56,49,56,55,49,53,44,51,52,46,56,55,54,57,53,93,44,91,45,56,52,46,56,49,48,52,55,55,44,51,52,46,57,56,55,54,48,53,93,44,91,45,56,52,46,57,55,54,57,55,54,44,51,52,46,57,56,55,54,54,52,93,44,91,45,56,52,46,57,55,57,56,54,44,51,52,46,57,56,55,54,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,51,34,44,34,78,65,77,69,34,58,34,87,105,99,104,105,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,54,55,48,57,52,44,51,56,46,54,57,57,54,54,57,93,44,91,45,49,48,49,46,53,54,55,52,56,50,44,51,56,46,50,54,51,49,52,53,93,44,91,45,49,48,49,46,53,52,50,51,49,50,44,51,56,46,50,54,51,50,48,55,93,44,91,45,49,48,49,46,49,50,53,52,51,56,44,51,56,46,50,54,52,53,48,57,93,44,91,45,49,48,49,46,49,50,56,51,55,57,44,51,56,46,55,48,48,54,48,51,93,44,91,45,49,48,49,46,52,56,52,51,56,51,44,51,56,46,55,48,48,49,54,54,93,44,91,45,49,48,49,46,53,54,55,48,57,52,44,51,56,46,54,57,57,54,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,101,115,32,77,105,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,52,52,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,57,55,57,57,56,44,52,51,46,52,57,57,54,54,57,93,44,91,45,57,57,46,49,53,50,56,56,57,44,52,51,46,52,50,54,57,48,56,93,44,91,45,57,57,46,48,54,57,50,56,53,44,52,51,46,51,50,48,54,56,56,93,44,91,45,57,56,46,56,57,54,55,56,51,44,52,51,46,50,52,54,57,48,57,93,44,91,45,57,56,46,56,54,56,55,54,50,44,52,51,46,49,54,50,48,48,57,93,44,91,45,57,56,46,52,57,56,53,53,44,52,50,46,57,57,56,53,53,57,93,44,91,45,57,56,46,51,48,57,55,55,49,44,52,50,46,56,56,50,54,48,53,93,44,91,45,57,56,46,49,53,51,49,48,55,44,52,50,46,56,51,56,57,56,54,93,44,91,45,57,56,46,48,57,50,55,56,50,44,52,50,46,57,55,51,57,50,49,93,44,91,45,57,56,46,48,55,55,49,48,56,44,52,51,46,49,54,56,51,51,93,44,91,45,57,56,46,49,48,57,52,57,50,44,52,51,46,49,57,54,56,51,56,93,44,91,45,57,56,46,54,56,48,54,56,56,44,52,51,46,51,55,51,49,53,55,93,44,91,45,57,56,46,55,48,53,55,56,50,44,52,51,46,52,57,57,51,49,57,93,44,91,45,57,56,46,55,57,52,53,56,56,44,52,51,46,52,57,57,49,56,55,93,44,91,45,57,57,46,50,57,55,56,56,50,44,52,51,46,52,57,57,56,53,54,93,44,91,45,57,57,46,50,57,55,57,57,56,44,52,51,46,52,57,57,54,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,101,100,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,56,52,57,50,49,44,52,50,46,56,53,48,51,54,56,93,44,91,45,57,55,46,52,56,53,50,57,56,44,52,50,46,52,51,56,53,55,56,93,44,91,45,57,55,46,51,54,55,55,50,52,44,52,50,46,51,53,49,56,54,49,93,44,91,45,57,55,46,48,49,55,55,56,57,44,52,50,46,51,53,49,51,52,55,93,44,91,45,57,55,46,48,49,53,56,52,57,44,52,50,46,55,54,49,51,51,56,93,44,91,45,57,55,46,49,54,48,51,53,51,44,52,50,46,55,57,57,55,48,49,93,44,91,45,57,55,46,50,49,56,48,52,54,44,52,50,46,56,52,53,49,49,51,93,44,91,45,57,55,46,52,56,52,57,50,49,44,52,50,46,56,53,48,51,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,75,105,116,115,97,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,52,55,53,44,34,98,101,100,115,34,58,51,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,54,48,54,55,54,44,52,55,46,57,55,50,57,53,51,93,44,91,45,49,50,50,46,53,57,57,51,54,52,44,52,55,46,56,55,52,56,49,53,93,44,91,45,49,50,50,46,55,50,49,57,55,49,44,52,55,46,55,56,55,54,54,53,93,44,91,45,49,50,50,46,55,56,51,50,51,55,44,52,55,46,54,55,50,55,53,52,93,44,91,45,49,50,50,46,57,53,48,54,50,49,44,52,55,46,54,48,54,51,48,56,93,44,91,45,49,50,51,46,48,51,56,52,48,52,44,52,55,46,53,50,48,50,51,54,93,44,91,45,49,50,50,46,56,48,49,48,49,50,44,52,55,46,53,50,48,52,48,54,93,44,91,45,49,50,50,46,56,48,49,49,57,57,44,52,55,46,52,48,51,53,55,56,93,44,91,45,49,50,50,46,53,51,54,57,57,51,44,52,55,46,52,48,51,51,53,53,93,44,91,45,49,50,50,46,52,52,55,48,49,55,44,52,55,46,53,52,48,48,52,52,93,44,91,45,49,50,50,46,52,51,56,48,57,51,44,52,55,46,55,55,55,56,49,52,93,44,91,45,49,50,50,46,52,50,57,54,50,53,44,52,55,46,56,50,56,48,57,56,93,44,91,45,49,50,50,46,54,48,54,55,54,44,52,55,46,57,55,50,57,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,77,99,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,55,55,56,57,44,34,98,101,100,115,34,58,52,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,57,57,51,56,57,44,52,50,46,52,57,53,49,51,51,93,44,91,45,56,56,46,51,48,52,54,57,50,44,52,50,46,52,57,52,54,49,56,93,44,91,45,56,56,46,55,48,55,52,50,49,44,52,50,46,52,57,51,53,57,54,93,44,91,45,56,56,46,55,48,53,53,56,53,44,52,50,46,49,53,51,53,51,55,93,44,91,45,56,56,46,53,56,56,54,53,55,44,52,50,46,49,53,51,53,57,93,44,91,45,56,56,46,50,51,56,52,52,57,44,52,50,46,49,53,52,50,52,57,93,44,91,45,56,56,46,49,57,57,53,56,52,44,52,50,46,49,53,52,50,54,93,44,91,45,56,56,46,49,57,57,51,56,57,44,52,50,46,52,57,53,49,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,80,101,116,114,111,108,101,117,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,51,49,51,48,52,56,44,52,55,46,53,56,51,54,53,93,44,91,45,49,48,56,46,51,49,53,52,56,49,44,52,55,46,51,49,53,49,53,50,93,44,91,45,49,48,56,46,53,57,48,56,51,53,44,52,55,46,51,48,54,53,49,54,93,44,91,45,49,48,56,46,55,49,57,49,56,57,44,52,55,46,50,55,48,51,52,50,93,44,91,45,49,48,56,46,55,51,54,56,51,56,44,52,55,46,48,57,56,50,49,56,93,44,91,45,49,48,56,46,54,48,56,57,53,52,44,52,55,46,48,57,56,49,50,54,93,44,91,45,49,48,56,46,54,51,49,52,54,50,44,52,54,46,55,52,57,51,57,50,93,44,91,45,49,48,55,46,56,50,55,54,56,55,44,52,54,46,55,53,53,56,55,53,93,44,91,45,49,48,55,46,56,57,50,50,51,51,44,52,54,46,56,53,49,50,49,53,93,44,91,45,49,48,55,46,56,56,52,55,49,56,44,52,54,46,57,56,52,50,52,57,93,44,91,45,49,48,55,46,57,53,52,51,52,55,44,52,55,46,49,50,48,54,53,50,93,44,91,45,49,48,55,46,57,53,54,54,50,52,44,52,55,46,51,54,48,57,52,51,93,44,91,45,49,48,55,46,57,48,57,49,50,44,52,55,46,52,53,48,54,57,50,93,44,91,45,49,48,55,46,57,51,49,49,48,53,44,52,55,46,53,54,57,48,55,51,93,44,91,45,49,48,56,46,48,54,53,52,49,56,44,52,55,46,53,57,56,50,57,52,93,44,91,45,49,48,56,46,51,49,51,48,52,56,44,52,55,46,53,56,51,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,55,56,48,57,56,44,51,57,46,54,49,53,54,51,50,93,44,91,45,57,51,46,55,53,56,51,53,55,44,51,57,46,54,49,49,52,48,55,93,44,91,45,57,51,46,55,53,57,49,56,51,44,51,57,46,53,50,52,53,53,56,93,44,91,45,57,51,46,55,53,56,52,54,51,44,51,57,46,50,48,55,48,50,49,93,44,91,45,57,51,46,54,53,48,53,50,54,44,51,57,46,50,52,56,50,49,52,93,44,91,45,57,51,46,52,56,55,56,56,53,44,51,57,46,50,50,56,56,55,53,93,44,91,45,57,51,46,52,55,55,50,51,51,44,51,57,46,50,57,50,55,57,54,93,44,91,45,57,51,46,50,50,49,50,48,52,44,51,57,46,51,51,49,54,53,54,93,44,91,45,57,51,46,49,48,52,52,56,53,44,51,57,46,51,56,51,54,53,54,93,44,91,45,57,51,46,50,55,53,57,51,50,44,51,57,46,52,56,52,51,55,49,93,44,91,45,57,51,46,50,55,56,48,57,56,44,51,57,46,54,49,53,54,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,87,104,105,116,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,53,57,51,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,57,54,48,57,51,44,52,55,46,50,54,48,53,54,56,93,44,91,45,49,49,55,46,57,53,57,51,51,53,44,52,54,46,57,49,52,56,49,49,93,44,91,45,49,49,56,46,48,49,50,52,52,50,44,52,54,46,55,57,48,55,56,93,44,91,45,49,49,56,46,50,49,48,50,52,51,44,52,54,46,55,51,56,56,51,51,93,44,91,45,49,49,56,46,50,49,53,54,54,44,52,54,46,53,56,56,57,50,52,93,44,91,45,49,49,56,46,49,55,50,53,53,50,44,52,54,46,53,53,54,57,52,55,93,44,91,45,49,49,55,46,56,53,49,56,53,44,52,54,46,54,50,52,54,55,93,44,91,45,49,49,55,46,55,52,48,56,54,56,44,52,54,46,54,57,52,53,56,51,93,44,91,45,49,49,55,46,52,54,52,55,54,57,44,52,54,46,54,57,57,54,50,54,93,44,91,45,49,49,55,46,50,53,52,50,54,50,44,52,54,46,53,52,53,48,56,50,93,44,91,45,49,49,55,46,50,50,56,49,50,44,52,54,46,52,54,50,50,52,53,93,44,91,45,49,49,55,46,48,51,57,55,54,54,44,52,54,46,52,50,53,56,56,55,93,44,91,45,49,49,55,46,48,51,57,54,57,52,44,52,54,46,53,52,49,55,48,57,93,44,91,45,49,49,55,46,48,51,57,55,53,50,44,52,55,46,49,50,55,50,54,57,93,44,91,45,49,49,55,46,48,51,57,56,55,56,44,52,55,46,50,53,57,50,55,50,93,44,91,45,49,49,55,46,56,50,51,54,50,57,44,52,55,46,50,54,48,50,50,93,44,91,45,49,49,55,46,57,54,48,57,51,44,52,55,46,50,54,48,53,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,83,116,101,101,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,55,54,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,52,53,57,49,44,52,52,46,49,57,54,55,49,54,93,44,91,45,57,51,46,52,48,54,53,54,53,44,52,52,46,49,57,54,51,55,55,93,44,91,45,57,51,46,52,48,54,54,52,50,44,52,51,46,56,52,56,49,50,93,44,91,45,57,51,46,48,52,57,53,50,52,44,52,51,46,56,52,56,52,52,51,93,44,91,45,57,51,46,48,52,53,57,54,54,44,52,51,46,56,52,56,52,54,55,93,44,91,45,57,51,46,48,52,53,57,49,44,52,52,46,49,57,54,55,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,84,104,97,121,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,57,56,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,44,91,45,57,55,46,56,50,48,56,49,54,44,52,48,46,51,53,48,53,52,53,93,44,91,45,57,55,46,56,50,49,52,57,53,44,52,48,46,48,48,50,48,52,55,93,44,91,45,57,55,46,51,54,57,49,57,57,44,52,48,46,48,48,49,57,54,54,93,44,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,114,111,99,107,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,53,54,48,51,51,44,51,53,46,56,49,55,54,51,53,93,44,91,45,56,57,46,50,55,49,50,50,52,44,51,53,46,55,53,52,57,50,50,93,44,91,45,56,57,46,48,54,57,53,52,52,44,51,53,46,54,57,50,54,55,57,93,44,91,45,56,56,46,57,49,54,49,56,49,44,51,53,46,55,57,55,51,48,55,93,44,91,45,56,57,46,49,48,57,54,48,50,44,51,53,46,56,54,50,48,57,53,93,44,91,45,56,57,46,49,56,56,56,52,52,44,51,53,46,57,57,57,55,54,93,44,91,45,56,57,46,50,56,48,49,56,56,44,51,53,46,56,56,54,52,49,54,93,44,91,45,56,57,46,51,52,50,56,50,57,44,51,53,46,56,56,48,57,51,52,93,44,91,45,56,57,46,51,53,54,48,51,51,44,51,53,46,56,49,55,54,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,55,49,53,56,51,44,52,50,46,53,53,56,49,51,57,93,44,91,45,57,51,46,57,51,49,54,56,52,44,52,50,46,52,55,50,48,49,49,93,44,91,45,57,51,46,57,51,49,53,56,44,52,50,46,50,48,57,57,48,56,93,44,91,45,57,51,46,54,57,56,51,57,44,52,50,46,50,48,57,51,51,57,93,44,91,45,57,51,46,52,54,51,48,52,51,44,52,50,46,50,48,57,51,48,50,93,44,91,45,57,51,46,52,54,50,54,51,53,44,52,50,46,52,55,48,56,48,50,93,44,91,45,57,51,46,52,57,57,52,56,53,44,52,50,46,53,53,55,55,93,44,91,45,57,51,46,57,55,49,53,56,51,44,52,50,46,53,53,56,49,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,53,54,52,44,34,98,101,100,115,34,58,51,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,53,50,51,50,44,51,57,46,53,56,57,52,57,51,93,44,91,45,56,52,46,51,51,50,48,56,57,44,51,57,46,53,52,56,56,48,51,93,44,91,45,56,52,46,51,53,51,50,48,57,44,51,57,46,50,57,50,50,56,55,93,44,91,45,56,52,46,50,53,57,52,51,49,44,51,57,46,50,55,48,55,57,54,93,44,91,45,56,52,46,48,48,54,55,56,50,44,51,57,46,50,53,53,48,54,56,93,44,91,45,56,51,46,57,55,55,48,48,53,44,51,57,46,53,54,57,49,54,57,93,44,91,45,56,52,46,49,49,52,49,57,53,44,51,57,46,53,55,55,57,56,51,93,44,91,45,56,52,46,51,54,53,50,51,50,44,51,57,46,53,56,57,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,53,34,44,34,78,65,77,69,34,58,34,83,112,97,108,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,55,49,57,44,34,98,101,100,115,34,58,49,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,52,56,49,56,53,44,51,51,46,49,56,57,48,49,57,93,44,91,45,56,52,46,49,50,51,55,54,55,44,51,51,46,50,48,50,56,50,52,93,44,91,45,56,52,46,49,48,50,53,56,50,44,51,51,46,50,57,56,49,57,49,93,44,91,45,56,52,46,49,53,48,53,56,49,44,51,51,46,51,51,53,54,51,57,93,44,91,45,56,52,46,51,53,52,52,44,51,51,46,51,53,50,53,49,52,93,44,91,45,56,52,46,51,56,56,49,49,56,44,51,51,46,51,53,50,52,54,53,93,44,91,45,56,52,46,52,57,55,53,50,55,44,51,51,46,50,53,55,52,50,50,93,44,91,45,56,52,46,53,48,50,51,53,50,44,51,51,46,50,50,49,48,53,53,93,44,91,45,56,52,46,52,57,54,55,56,51,44,51,51,46,49,56,51,56,54,54,93,44,91,45,56,52,46,50,52,56,49,56,53,44,51,51,46,49,56,57,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,72,117,110,116,101,114,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,48,53,49,44,34,98,101,100,115,34,58,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,56,56,57,56,49,57,44,52,48,46,55,56,55,55,50,57,93,44,91,45,55,52,46,57,55,48,49,49,50,44,52,48,46,55,48,57,56,54,50,93,44,91,45,55,53,46,49,56,57,54,44,52,48,46,53,57,49,55,55,54,93,44,91,45,55,53,46,48,54,56,49,44,52,48,46,53,52,49,52,56,56,93,44,91,45,55,53,46,48,54,48,57,49,55,44,52,48,46,52,50,49,55,51,55,93,44,91,45,55,52,46,57,52,50,57,48,57,44,52,48,46,51,52,49,54,56,51,93,44,91,45,55,52,46,55,52,56,49,52,55,44,52,48,46,52,50,52,49,53,54,93,44,91,45,55,52,46,55,55,53,57,55,57,44,52,48,46,53,48,51,54,48,54,93,44,91,45,55,52,46,55,49,51,49,53,44,52,48,46,53,56,51,57,48,51,93,44,91,45,55,52,46,55,50,53,54,54,54,44,52,48,46,55,49,57,53,51,50,93,44,91,45,55,52,46,56,56,57,56,49,57,44,52,48,46,55,56,55,55,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,55,34,44,34,78,65,77,69,34,58,34,86,101,114,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,57,49,44,34,98,101,100,115,34,58,49,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,53,56,50,56,53,44,51,56,46,48,51,54,54,50,55,93,44,91,45,57,52,46,54,49,52,48,54,49,44,51,56,46,48,54,48,48,53,54,93,44,91,45,57,52,46,54,49,52,48,56,57,44,51,56,46,48,51,55,48,53,55,93,44,91,45,57,52,46,54,49,55,55,55,57,44,51,55,46,54,55,51,49,48,53,93,44,91,45,57,52,46,54,49,55,54,57,56,44,51,55,46,54,53,51,53,55,56,93,44,91,45,57,52,46,48,55,51,53,50,52,44,51,55,46,54,51,57,55,50,50,93,44,91,45,57,52,46,48,54,53,54,55,53,44,51,55,46,57,48,48,57,56,55,93,44,91,45,57,52,46,48,53,56,50,56,53,44,51,56,46,48,51,54,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,80,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,50,48,50,50,49,44,51,57,46,57,53,50,52,53,50,93,44,91,45,56,55,46,51,54,56,56,54,51,44,51,57,46,56,57,48,52,55,49,93,44,91,45,56,55,46,51,56,50,52,49,56,44,51,57,46,54,48,55,57,51,55,93,44,91,45,56,55,46,49,57,57,48,49,50,44,51,57,46,54,48,55,49,51,55,93,44,91,45,56,55,46,48,49,51,48,54,50,44,51,57,46,54,48,52,55,56,55,93,44,91,45,56,55,46,48,48,57,52,55,55,44,51,57,46,56,54,54,55,48,53,93,44,91,45,56,55,46,48,57,49,48,48,54,44,51,57,46,57,53,51,48,48,57,93,44,91,45,56,55,46,52,50,48,50,50,49,44,51,57,46,57,53,50,52,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,52,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,44,91,45,57,51,46,52,57,56,54,49,55,44,52,50,46,57,48,56,53,49,50,93,44,91,45,57,51,46,52,57,57,52,56,53,44,52,50,46,53,53,55,55,93,44,91,45,57,51,46,48,50,55,44,52,50,46,53,53,54,56,49,93,44,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,66,117,116,116,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,55,53,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,50,51,57,49,51,44,51,51,46,52,52,52,49,57,52,93,44,91,45,56,52,46,49,48,50,53,56,50,44,51,51,46,50,57,56,49,57,49,93,44,91,45,56,52,46,49,50,51,55,54,55,44,51,51,46,50,48,50,56,50,52,93,44,91,45,56,52,46,48,52,49,52,57,56,44,51,51,46,50,48,50,54,50,57,93,44,91,45,56,51,46,56,50,50,50,54,49,44,51,51,46,49,56,48,50,51,56,93,44,91,45,56,51,46,56,54,51,48,53,56,44,51,51,46,51,54,56,50,55,56,93,44,91,45,56,51,46,57,50,51,57,49,51,44,51,51,46,52,52,52,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,69,108,98,101,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,49,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,55,49,52,51,53,53,44,51,57,46,53,54,54,51,51,49,93,44,91,45,49,48,52,46,54,54,48,54,50,54,44,51,57,46,53,54,53,57,48,57,93,44,91,45,49,48,52,46,54,54,50,56,57,54,44,51,57,46,49,50,57,53,50,55,93,44,91,45,49,48,52,46,48,53,49,53,56,57,44,51,57,46,49,50,56,51,55,93,44,91,45,49,48,52,46,48,53,53,53,50,56,44,51,56,46,56,54,56,56,54,56,93,44,91,45,49,48,51,46,55,49,57,54,54,52,44,51,56,46,56,54,54,56,50,55,93,44,91,45,49,48,51,46,55,49,52,51,53,53,44,51,57,46,53,54,54,51,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,52,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,114,105,115,116,111,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,82,104,111,100,101,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,82,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,57,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,51,51,48,57,55,44,52,49,46,54,56,54,57,54,50,93,44,91,45,55,49,46,50,48,56,51,55,49,44,52,49,46,54,57,48,53,57,56,93,44,91,45,55,49,46,51,49,55,56,55,51,44,52,49,46,55,55,54,49,57,57,93,44,91,45,55,49,46,51,54,53,50,48,55,44,52,49,46,55,51,53,54,52,57,93,44,91,45,55,49,46,51,51,48,57,55,44,52,49,46,54,56,54,57,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,66,111,115,113,117,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,50,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,49,53,48,53,53,44,51,50,46,50,48,51,53,56,49,93,44,91,45,57,55,46,56,54,52,56,54,52,44,51,50,46,48,56,55,51,50,56,93,44,91,45,57,56,46,48,48,53,52,54,50,44,51,50,46,48,49,55,56,57,55,93,44,91,45,57,55,46,55,54,54,52,51,49,44,51,49,46,54,55,50,52,54,49,93,44,91,45,57,55,46,54,56,57,56,51,52,44,51,49,46,55,49,49,48,49,57,93,44,91,45,57,55,46,54,48,53,50,51,44,51,49,46,53,56,55,55,54,50,93,44,91,45,57,55,46,50,55,55,50,54,53,44,51,49,46,55,52,53,52,57,50,93,44,91,45,57,55,46,51,50,55,49,52,53,44,51,49,46,56,52,49,52,53,50,93,44,91,45,57,55,46,52,56,53,57,54,56,44,51,50,46,48,49,55,54,49,49,93,44,91,45,57,55,46,52,55,54,48,56,54,44,51,50,46,49,55,51,52,54,93,44,91,45,57,55,46,54,49,53,48,53,53,44,51,50,46,50,48,51,53,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,52,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,78,101,119,112,111,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,82,104,111,100,101,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,82,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,48,55,53,44,34,98,101,100,115,34,58,49,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,51,56,48,53,52,50,44,52,49,46,54,53,48,51,50,54,93,44,91,45,55,49,46,52,48,57,48,57,57,44,52,49,46,52,54,56,50,48,50,93,44,91,45,55,49,46,53,48,57,52,52,50,44,52,49,46,51,48,55,55,51,50,93,44,91,45,55,49,46,48,56,56,53,55,49,44,52,49,46,52,51,49,51,49,53,93,44,91,45,55,49,46,49,51,50,53,53,55,44,52,49,46,54,54,48,51,54,51,93,44,91,45,55,49,46,50,48,56,51,55,49,44,52,49,46,54,57,48,53,57,56,93,44,91,45,55,49,46,51,51,48,57,55,44,52,49,46,54,56,54,57,54,50,93,44,91,45,55,49,46,51,56,48,53,52,50,44,52,49,46,54,53,48,51,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,70,97,105,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,57,49,48,44,34,98,101,100,115,34,58,50,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,56,50,52,57,53,44,51,57,46,57,51,57,54,54,50,93,44,91,45,56,50,46,56,50,52,50,53,52,44,51,57,46,55,57,52,57,57,54,93,44,91,45,56,50,46,56,52,50,57,53,51,44,51,57,46,53,54,49,52,56,93,44,91,45,56,50,46,55,51,49,53,49,56,44,51,57,46,53,53,52,52,52,53,93,44,91,45,56,50,46,52,57,54,49,50,51,44,51,57,46,54,48,50,56,52,57,93,44,91,45,56,50,46,51,55,52,53,51,49,44,51,57,46,54,53,52,57,53,57,93,44,91,45,56,50,46,51,57,54,53,57,52,44,51,57,46,56,51,51,48,53,55,93,44,91,45,56,50,46,52,54,50,56,49,51,44,51,57,46,57,51,48,51,56,93,44,91,45,56,50,46,55,56,50,52,57,53,44,51,57,46,57,51,57,54,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,80,105,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,55,54,54,49,57,44,52,56,46,53,52,52,56,49,51,93,44,91,45,49,48,48,46,50,51,55,48,57,57,44,52,56,46,51,55,49,50,52,52,93,44,91,45,49,48,48,46,50,51,55,48,50,50,44,52,56,46,48,50,49,56,54,54,93,44,91,45,49,48,48,46,49,57,55,57,57,54,44,52,55,46,56,52,55,54,53,50,93,44,91,45,49,48,48,46,48,54,57,51,49,49,44,52,55,46,56,52,55,52,51,49,93,44,91,45,57,57,46,56,49,50,49,54,55,44,52,55,46,56,52,55,50,53,55,93,44,91,45,57,57,46,56,52,56,50,50,50,44,52,56,46,48,50,49,52,50,52,93,44,91,45,57,57,46,56,52,55,48,52,54,44,52,56,46,51,55,49,50,93,44,91,45,57,57,46,52,57,50,57,49,57,44,52,56,46,51,55,48,57,52,54,93,44,91,45,57,57,46,52,57,51,49,56,57,44,52,56,46,53,52,52,56,51,52,93,44,91,45,49,48,48,46,49,52,53,56,53,56,44,52,56,46,53,52,53,50,49,49,93,44,91,45,49,48,48,46,50,55,54,54,49,57,44,52,56,46,53,52,52,56,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,55,51,57,53,44,52,50,46,49,57,51,54,52,53,93,44,91,45,57,48,46,49,54,50,56,57,53,44,52,50,46,49,49,54,55,49,56,93,44,91,45,57,48,46,49,53,52,50,50,49,44,52,50,46,48,51,51,48,55,51,93,44,91,45,57,48,46,49,53,49,57,56,44,52,49,46,57,50,56,57,49,55,93,44,91,45,56,57,46,54,56,53,51,54,54,44,52,49,46,57,51,48,51,52,93,44,91,45,56,57,46,54,56,56,52,56,54,44,52,50,46,49,57,57,49,49,50,93,44,91,45,56,57,46,57,49,57,55,55,50,44,52,50,46,49,57,54,56,56,49,93,44,91,45,57,48,46,51,49,55,51,57,53,44,52,50,46,49,57,51,54,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,82,101,100,32,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,56,50,53,53,44,52,55,46,57,54,51,53,57,53,93,44,91,45,57,54,46,52,56,50,48,57,50,44,52,55,46,56,52,55,52,50,56,93,44,91,45,57,54,46,51,53,49,55,50,55,44,52,55,46,55,54,48,51,93,44,91,45,57,53,46,56,51,55,49,55,55,44,52,55,46,55,54,48,56,57,52,93,44,91,45,57,53,46,56,51,54,56,50,55,44,52,55,46,56,52,56,50,49,57,93,44,91,45,57,53,46,55,48,57,54,49,57,44,52,55,46,57,51,53,56,48,53,93,44,91,45,57,53,46,55,48,57,56,52,44,52,55,46,57,54,52,51,51,93,44,91,45,57,54,46,52,56,50,53,53,44,52,55,46,57,54,51,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,56,52,51,49,51,56,44,52,52,46,51,57,50,54,51,93,44,91,45,49,50,49,46,49,48,55,53,51,52,44,52,52,46,51,57,48,54,93,44,91,45,49,50,48,46,57,56,56,56,50,52,44,52,52,46,52,55,54,52,56,52,93,44,91,45,49,50,48,46,56,50,54,56,57,57,44,52,52,46,52,55,54,52,57,57,93,44,91,45,49,50,48,46,56,50,55,53,53,53,44,52,52,46,53,54,50,55,57,51,93,44,91,45,49,50,48,46,51,56,54,53,54,49,44,52,52,46,53,54,52,48,48,57,93,44,91,45,49,50,48,46,51,55,49,52,52,49,44,52,52,46,56,50,49,55,54,57,93,44,91,45,49,50,49,46,48,56,57,52,56,44,52,52,46,56,50,51,50,55,50,93,44,91,45,49,50,49,46,55,53,50,57,57,52,44,52,52,46,56,50,57,57,49,57,93,44,91,45,49,50,49,46,56,48,48,48,49,53,44,52,52,46,54,56,51,52,50,53,93,44,91,45,49,50,49,46,56,52,51,49,51,56,44,52,52,46,51,57,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,101,97,116,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,57,50,57,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,56,54,53,48,49,44,51,54,46,51,50,49,57,51,51,93,44,91,45,56,55,46,49,53,54,53,56,57,44,51,54,46,51,48,55,55,48,54,93,44,91,45,56,55,46,49,56,50,53,55,51,44,51,54,46,48,52,57,55,50,54,93,44,91,45,56,55,46,48,53,51,55,50,50,44,51,54,46,48,52,53,53,56,50,93,44,91,45,56,54,46,57,57,55,55,48,53,44,51,54,46,49,50,56,53,49,50,93,44,91,45,56,54,46,57,49,51,50,51,51,44,51,54,46,51,56,50,54,50,49,93,44,91,45,56,54,46,57,56,56,48,54,44,51,54,46,51,54,57,49,53,52,93,44,91,45,56,55,46,49,50,48,52,52,51,44,51,54,46,52,53,53,52,54,93,44,91,45,56,55,46,50,56,54,53,48,49,44,51,54,46,51,50,49,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,55,55,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,48,53,54,56,50,44,52,51,46,48,56,51,54,55,93,44,91,45,57,54,46,56,48,54,50,49,51,44,52,50,46,55,48,52,49,53,52,93,44,91,45,57,54,46,54,51,49,52,57,50,44,52,50,46,53,50,52,51,49,56,93,44,91,45,57,54,46,52,52,53,52,56,51,44,52,50,46,52,57,48,54,51,93,44,91,45,57,54,46,52,57,56,55,55,54,44,52,50,46,53,54,49,48,52,51,93,44,91,45,57,54,46,54,51,53,53,54,49,44,52,50,46,55,52,48,56,52,55,93,44,91,45,57,54,46,53,51,56,52,53,56,44,52,50,46,57,48,56,55,55,49,93,44,91,45,57,54,46,53,49,51,54,56,49,44,52,51,46,48,52,55,48,51,93,44,91,45,57,54,46,52,53,52,49,51,44,52,51,46,48,56,51,51,56,93,44,91,45,57,54,46,56,48,53,54,56,50,44,52,51,46,48,56,51,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,69,108,109,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,50,49,50,44,34,98,101,100,115,34,58,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,55,52,57,55,52,44,51,50,46,55,53,51,53,56,93,44,91,45,56,54,46,52,49,51,49,49,54,44,51,50,46,55,48,55,51,56,54,93,44,91,45,56,54,46,52,49,49,49,55,50,44,51,50,46,52,48,57,57,51,55,93,44,91,45,56,54,46,50,51,55,48,54,56,44,51,50,46,52,57,52,57,56,93,44,91,45,56,54,46,49,49,54,51,50,57,44,51,50,46,52,49,55,48,50,54,93,44,91,45,56,54,46,48,50,51,48,49,50,44,51,50,46,52,49,57,57,55,56,93,44,91,45,56,53,46,56,56,54,49,52,56,44,51,50,46,52,57,51,48,53,51,93,44,91,45,56,53,46,56,55,57,56,54,44,51,50,46,55,53,52,53,50,56,93,44,91,45,56,54,46,48,48,55,49,56,55,44,51,50,46,55,53,52,57,56,52,93,44,91,45,56,54,46,51,55,52,57,55,52,44,51,50,46,55,53,51,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,76,117,109,112,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,57,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,53,54,53,48,54,44,51,52,46,55,50,50,49,57,49,93,44,91,45,56,51,46,57,51,57,48,48,55,44,51,52,46,55,52,48,56,53,57,93,44,91,45,56,52,46,48,51,54,50,55,54,44,51,52,46,54,52,50,48,56,55,93,44,91,45,56,52,46,49,53,56,48,51,53,44,51,52,46,54,52,56,50,52,51,93,44,91,45,56,52,46,49,56,56,53,53,55,44,51,52,46,54,48,50,54,57,50,93,44,91,45,56,52,46,49,57,49,48,52,44,51,52,46,53,51,57,49,56,49,93,44,91,45,56,51,46,57,56,48,54,52,57,44,51,52,46,52,49,56,51,56,57,93,44,91,45,56,51,46,56,52,51,52,48,53,44,51,52,46,53,48,53,52,57,52,93,44,91,45,56,51,46,56,53,54,53,48,54,44,51,52,46,55,50,50,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,50,49,53,44,34,98,101,100,115,34,58,49,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,50,51,54,48,57,44,52,48,46,53,52,57,56,55,57,93,44,91,45,56,50,46,54,52,54,53,48,51,44,52,48,46,51,52,53,48,55,54,93,44,91,45,56,50,46,55,52,52,57,51,49,44,52,48,46,51,52,57,54,48,51,93,44,91,45,56,50,46,55,53,48,55,52,55,44,52,48,46,50,55,54,57,57,54,93,44,91,45,56,50,46,52,55,55,50,55,51,44,52,48,46,50,52,53,56,49,93,44,91,45,56,50,46,49,57,53,57,49,49,44,52,48,46,50,51,57,48,55,49,93,44,91,45,56,50,46,49,56,52,54,48,55,44,52,48,46,52,53,54,50,56,93,44,91,45,56,50,46,50,50,48,49,49,44,52,48,46,53,54,56,50,48,54,93,44,91,45,56,50,46,51,51,54,57,54,50,44,52,48,46,53,53,53,48,48,49,93,44,91,45,56,50,46,54,50,51,54,48,57,44,52,48,46,53,52,57,56,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,114,101,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,55,56,50,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,52,50,49,49,44,52,50,46,57,48,55,49,49,50,93,44,91,45,57,50,46,53,53,52,52,57,50,44,52,50,46,54,52,50,51,49,52,93,44,91,45,57,50,46,48,56,49,54,54,49,44,52,50,46,54,52,50,48,53,54,93,44,91,45,57,50,46,48,56,49,53,54,56,44,52,50,46,57,48,55,48,49,51,93,44,91,45,57,50,46,53,53,52,50,49,49,44,52,50,46,57,48,55,49,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,71,111,108,105,97,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,48,53,57,49,54,44,50,56,46,56,54,52,48,51,55,93,44,91,45,57,55,46,52,49,55,51,52,44,50,56,46,57,50,53,50,50,56,93,44,91,45,57,55,46,53,55,52,54,51,57,44,50,56,46,56,49,51,51,93,44,91,45,57,55,46,55,55,56,53,51,44,50,56,46,54,54,56,48,50,55,93,44,91,45,57,55,46,54,57,54,57,52,53,44,50,56,46,53,52,49,56,53,54,93,44,91,45,57,55,46,53,55,55,48,53,56,44,50,56,46,53,50,50,53,52,55,93,44,91,45,57,55,46,53,53,51,57,49,54,44,50,56,46,52,53,53,50,55,56,93,44,91,45,57,55,46,51,55,53,53,55,57,44,50,56,46,51,56,56,54,56,52,93,44,91,45,57,55,46,49,54,48,55,53,49,44,50,56,46,53,53,51,52,55,53,93,44,91,45,57,55,46,49,53,56,57,51,51,44,50,56,46,55,55,54,49,53,54,93,44,91,45,57,55,46,50,48,52,57,57,56,44,50,56,46,56,53,53,48,52,93,44,91,45,57,55,46,51,48,53,57,49,54,44,50,56,46,56,54,52,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,72,101,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,54,50,53,44,34,98,101,100,115,34,58,51,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,54,53,55,57,53,44,51,53,46,52,54,55,56,49,56,93,44,91,45,56,50,46,51,51,50,51,51,49,44,51,53,46,53,48,48,49,49,55,93,44,91,45,56,50,46,52,55,48,53,53,55,44,51,53,46,52,52,53,49,55,52,93,44,91,45,56,50,46,55,52,53,49,51,57,44,51,53,46,52,50,50,57,54,55,93,44,91,45,56,50,46,54,49,48,49,56,54,44,51,53,46,50,56,56,49,57,57,93,44,91,45,56,50,46,53,55,52,56,51,57,44,51,53,46,49,52,53,52,52,57,93,44,91,45,56,50,46,51,53,51,55,53,52,44,51,53,46,49,57,48,57,54,55,93,44,91,45,56,50,46,51,52,54,49,52,49,44,51,53,46,50,56,53,57,57,50,93,44,91,45,56,50,46,50,54,49,51,48,53,44,51,53,46,51,57,51,49,57,56,93,44,91,45,56,50,46,50,54,53,55,57,53,44,51,53,46,52,54,55,56,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,73,110,100,105,97,110,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,57,56,52,44,34,98,101,100,115,34,58,52,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,55,57,56,50,49,44,50,55,46,53,53,56,52,55,93,44,91,45,56,48,46,50,54,51,53,52,51,44,50,55,46,53,53,54,55,56,50,93,44,91,45,56,48,46,51,56,53,48,54,57,44,50,55,46,56,54,49,51,54,50,93,44,91,45,56,48,46,53,48,57,48,55,53,44,50,55,46,56,50,50,48,53,56,93,44,91,45,56,48,46,56,54,56,56,56,49,44,50,55,46,56,50,50,53,50,50,93,44,91,45,56,48,46,56,55,51,49,53,44,50,55,46,54,52,50,50,56,56,93,44,91,45,56,48,46,55,55,55,49,54,54,44,50,55,46,53,53,56,55,51,51,93,44,91,45,56,48,46,54,55,57,56,50,49,44,50,55,46,53,53,56,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,57,51,34,44,34,78,65,77,69,34,58,34,82,111,98,101,114,116,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,56,53,55,51,53,44,51,54,46,48,53,53,50,55,54,93,44,91,45,49,48,49,46,48,56,54,48,54,56,44,51,53,46,54,50,53,50,54,55,93,44,91,45,49,48,49,46,48,56,53,57,51,53,44,51,53,46,54,49,57,49,48,50,93,44,91,45,49,48,48,46,53,52,48,49,53,56,44,51,53,46,54,49,57,50,57,54,93,44,91,45,49,48,48,46,53,52,48,50,50,49,44,51,54,46,48,53,54,52,57,49,93,44,91,45,49,48,48,46,53,52,54,55,50,52,44,51,54,46,48,53,54,53,51,54,93,44,91,45,49,48,49,46,48,56,53,55,49,54,44,51,54,46,48,53,55,53,55,50,93,44,91,45,49,48,49,46,48,56,53,55,51,53,44,51,54,46,48,53,53,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,68,101,117,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,49,48,52,49,51,44,52,49,46,50,50,49,54,49,52,93,44,91,45,49,48,50,46,54,50,49,48,51,51,44,52,49,46,48,48,50,53,57,55,93,44,91,45,49,48,50,46,48,53,49,55,49,55,44,52,49,46,48,48,50,51,53,57,93,44,91,45,49,48,50,46,48,53,49,55,54,49,44,52,49,46,48,48,51,56,57,93,44,91,45,49,48,50,46,48,53,53,53,51,53,44,52,49,46,50,50,49,53,52,55,93,44,91,45,49,48,50,46,54,49,48,52,49,51,44,52,49,46,50,50,49,54,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,57,48,55,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,57,48,57,56,51,50,44,52,50,46,57,56,55,55,54,50,93,44,91,45,55,55,46,57,53,52,57,54,52,44,52,50,46,56,54,50,55,53,52,93,44,91,45,55,55,46,57,53,54,51,51,52,44,52,50,46,54,54,55,51,50,50,93,44,91,45,55,56,46,48,51,56,50,54,49,44,52,50,46,53,50,49,53,50,50,93,44,91,45,55,55,46,56,52,48,57,48,49,44,52,50,46,53,49,55,55,54,55,93,44,91,45,55,55,46,55,50,50,57,54,52,44,52,50,46,52,55,49,50,49,54,93,44,91,45,55,55,46,54,53,57,57,49,55,44,52,50,46,53,56,48,52,48,57,93,44,91,45,55,55,46,52,57,48,56,56,57,44,52,50,46,53,55,55,50,56,56,93,44,91,45,55,55,46,53,57,56,56,49,53,44,52,50,46,54,55,49,57,54,53,93,44,91,45,55,55,46,53,56,48,51,55,55,44,52,50,46,57,52,51,57,54,51,93,44,91,45,55,55,46,55,51,48,57,53,55,44,52,50,46,57,56,56,51,55,50,93,44,91,45,55,55,46,57,48,57,56,51,50,44,52,50,46,57,56,55,55,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,79,39,66,114,105,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,49,49,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,54,49,57,49,52,44,52,51,46,50,53,55,53,54,54,93,44,91,45,57,53,46,56,53,57,51,55,55,44,52,50,46,57,48,57,48,57,55,93,44,91,45,57,53,46,51,56,56,49,56,50,44,52,50,46,57,48,57,56,57,55,93,44,91,45,57,53,46,51,56,56,48,55,56,44,52,51,46,50,53,53,50,50,49,93,44,91,45,57,53,46,56,54,49,57,49,52,44,52,51,46,50,53,55,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,67,97,108,108,97,104,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,55,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,49,52,50,57,51,44,51,50,46,53,49,52,56,49,49,93,44,91,45,57,57,46,54,49,50,48,50,54,44,51,50,46,53,49,52,54,53,52,93,44,91,45,57,57,46,54,50,57,53,55,57,44,51,50,46,53,49,52,54,53,55,93,44,91,45,57,57,46,54,51,49,52,49,51,44,51,50,46,48,56,49,50,55,52,93,44,91,45,57,57,46,49,57,53,56,55,49,44,51,50,46,48,55,57,50,51,53,93,44,91,45,57,57,46,49,49,56,54,54,53,44,51,50,46,48,55,57,53,56,53,93,44,91,45,57,57,46,49,49,52,50,57,51,44,51,50,46,53,49,52,56,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,55,57,34,44,34,78,65,77,69,34,58,34,82,97,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,55,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,51,52,52,51,51,44,51,50,46,56,51,55,50,49,55,93,44,91,45,57,53,46,54,51,53,48,49,55,44,51,50,46,55,50,48,51,56,93,44,91,45,57,53,46,54,54,53,51,56,57,44,51,50,46,57,54,48,52,51,52,93,44,91,45,57,53,46,56,54,50,53,50,49,44,51,50,46,57,55,57,53,55,49,93,44,91,45,57,53,46,57,52,53,51,44,51,50,46,57,55,57,56,55,55,93,44,91,45,57,53,46,57,51,52,52,51,51,44,51,50,46,56,51,55,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,49,54,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,50,55,48,54,51,44,51,55,46,55,51,54,51,49,52,93,44,91,45,49,48,49,46,53,50,53,56,49,44,51,55,46,51,56,56,51,57,50,93,44,91,45,49,48,49,46,48,56,57,54,53,51,44,51,55,46,51,56,55,55,50,49,93,44,91,45,49,48,49,46,48,56,57,54,54,55,44,51,55,46,55,51,54,51,51,55,93,44,91,45,49,48,49,46,53,50,55,48,54,51,44,51,55,46,55,51,54,51,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,51,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,55,56,52,44,51,54,46,56,57,50,57,53,51,93,44,91,45,56,51,46,48,55,50,56,51,54,44,51,54,46,56,53,52,52,53,55,93,44,91,45,56,51,46,49,57,52,50,53,50,44,51,54,46,55,51,57,53,49,57,93,44,91,45,56,51,46,52,54,49,48,49,54,44,51,54,46,54,54,52,56,54,93,44,91,45,56,51,46,54,55,53,51,57,53,44,51,54,46,54,48,48,55,56,52,93,44,91,45,56,51,46,52,55,50,49,48,56,44,51,54,46,53,57,55,50,56,52,93,44,91,45,56,50,46,57,56,53,49,50,52,44,51,54,46,53,57,51,55,50,57,93,44,91,45,56,50,46,57,52,55,54,52,55,44,51,54,46,54,55,53,55,53,49,93,44,91,45,56,50,46,55,55,49,53,57,53,44,51,54,46,56,48,48,48,51,49,93,44,91,45,56,50,46,56,55,56,52,44,51,54,46,56,57,50,57,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,83,105,101,114,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,51,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,51,55,50,55,57,55,44,51,51,46,52,55,57,56,55,53,93,44,91,45,49,48,54,46,52,55,52,50,57,53,44,51,51,46,52,55,53,55,56,54,93,44,91,45,49,48,55,46,55,49,50,55,53,52,44,51,51,46,52,55,54,56,51,50,93,44,91,45,49,48,56,46,48,48,48,54,48,50,44,51,51,46,52,55,56,48,49,52,93,44,91,45,49,48,56,46,48,48,48,53,57,56,44,51,51,46,50,48,49,50,53,51,93,44,91,45,49,48,55,46,56,54,53,48,48,57,44,51,51,46,49,57,57,57,55,52,93,44,91,45,49,48,55,46,56,53,54,54,55,50,44,51,51,46,48,48,50,53,51,57,93,44,91,45,49,48,55,46,55,56,48,53,52,56,44,51,50,46,57,53,50,55,55,54,93,44,91,45,49,48,55,46,55,50,49,51,56,55,44,51,50,46,55,55,56,48,55,55,93,44,91,45,49,48,55,46,55,51,50,50,56,50,44,51,50,46,54,50,55,51,53,51,93,44,91,45,49,48,55,46,54,48,56,52,56,53,44,51,50,46,54,48,53,52,52,57,93,44,91,45,49,48,55,46,50,57,57,54,51,49,44,51,50,46,54,48,53,51,55,93,44,91,45,49,48,55,46,50,57,57,52,55,53,44,51,50,46,55,56,48,49,54,54,93,44,91,45,49,48,54,46,56,56,55,55,51,51,44,51,50,46,55,55,57,50,55,51,93,44,91,45,49,48,54,46,56,56,55,56,57,49,44,51,50,46,56,50,50,55,56,49,93,44,91,45,49,48,54,46,51,52,48,53,49,53,44,51,51,46,48,53,50,55,55,55,93,44,91,45,49,48,54,46,51,52,53,55,49,44,51,51,46,51,57,48,53,57,53,93,44,91,45,49,48,54,46,51,55,50,55,57,55,44,51,51,46,52,55,57,56,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,114,101,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,48,50,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,55,53,56,52,52,44,51,51,46,55,48,52,52,49,52,93,44,91,45,57,49,46,57,57,48,49,54,55,44,51,51,46,51,57,56,50,49,52,93,44,91,45,57,49,46,52,53,55,51,55,44,51,51,46,51,56,56,57,55,52,93,44,91,45,57,49,46,52,53,51,52,51,56,44,51,51,46,53,54,51,55,48,51,93,44,91,45,57,49,46,52,53,48,51,50,53,44,51,51,46,55,56,48,52,49,53,93,44,91,45,57,49,46,53,53,55,54,52,56,44,51,51,46,55,56,51,51,56,52,93,44,91,45,57,49,46,57,55,53,57,55,52,44,51,51,46,55,57,49,55,56,55,93,44,91,45,57,49,46,57,55,53,56,52,52,44,51,51,46,55,48,52,52,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,111,114,114,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,49,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,57,55,56,51,53,44,52,50,46,48,48,52,56,52,51,93,44,91,45,49,48,51,46,51,54,51,51,51,55,44,52,50,46,48,48,50,57,51,93,44,91,45,49,48,51,46,51,55,48,51,57,49,44,52,49,46,54,57,57,50,49,93,44,91,45,49,48,51,46,51,54,57,48,50,52,44,52,49,46,52,51,55,54,53,53,93,44,91,45,49,48,50,46,54,51,54,54,57,53,44,52,49,46,52,51,57,48,53,51,93,44,91,45,49,48,50,46,54,51,54,52,55,54,44,52,49,46,55,52,51,49,51,57,93,44,91,45,49,48,50,46,54,55,57,48,57,51,44,52,49,46,56,52,51,48,53,93,44,91,45,49,48,50,46,54,55,55,53,56,50,44,52,50,46,48,48,53,50,56,50,93,44,91,45,49,48,50,46,54,57,55,56,51,53,44,52,50,46,48,48,52,56,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,57,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,54,55,50,57,49,44,51,56,46,53,50,57,57,57,53,93,44,91,45,57,51,46,50,57,48,52,53,52,44,51,56,46,53,51,53,51,56,56,93,44,91,45,57,51,46,53,49,50,55,52,51,44,51,56,46,53,49,50,52,55,54,93,44,91,45,57,51,46,53,50,51,52,56,52,44,51,56,46,50,48,55,50,49,54,93,44,91,45,57,51,46,53,48,51,57,52,54,44,51,56,46,48,55,51,49,50,51,93,44,91,45,57,51,46,48,54,53,49,57,57,44,51,56,46,48,54,50,52,55,57,93,44,91,45,57,51,46,48,55,55,54,57,50,44,51,56,46,50,54,51,48,57,50,93,44,91,45,57,51,46,48,54,55,50,57,49,44,51,56,46,53,50,57,57,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,51,53,51,55,49,44,51,52,46,51,53,48,48,57,55,93,44,91,45,57,51,46,57,50,53,56,51,44,51,52,46,49,56,54,52,57,54,93,44,91,45,57,51,46,56,50,48,55,50,50,44,51,52,46,49,56,51,56,48,50,93,44,91,45,57,51,46,56,50,51,48,55,54,44,51,52,46,48,48,56,56,57,51,93,44,91,45,57,51,46,54,49,55,52,54,44,51,51,46,57,53,57,54,50,55,93,44,91,45,57,51,46,52,53,54,55,48,57,44,51,51,46,57,53,54,56,51,55,93,44,91,45,57,51,46,51,55,51,52,48,54,44,51,51,46,57,53,55,48,55,93,44,91,45,57,51,46,52,51,52,56,56,55,44,51,52,46,48,53,50,50,57,56,93,44,91,45,57,51,46,52,55,56,54,52,54,44,51,52,46,51,52,48,56,53,49,93,44,91,45,57,51,46,57,51,53,51,55,49,44,51,52,46,51,53,48,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,77,101,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,57,57,56,44,34,98,101,100,115,34,58,52,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,53,48,55,54,53,44,51,57,46,51,54,54,54,55,55,93,44,91,45,49,48,57,46,48,54,48,49,49,57,44,51,56,46,52,57,57,57,56,57,93,44,91,45,49,48,56,46,51,55,57,49,51,54,44,51,56,46,52,57,57,57,56,55,93,44,91,45,49,48,56,46,51,55,56,54,57,56,44,51,56,46,54,54,56,48,57,55,93,44,91,45,49,48,56,46,51,55,56,57,53,51,44,51,56,46,56,50,57,49,48,56,93,44,91,45,49,48,56,46,49,53,50,52,55,56,44,51,56,46,57,48,49,50,54,56,93,44,91,45,49,48,55,46,57,56,50,49,55,51,44,51,57,46,48,53,57,56,55,56,93,44,91,45,49,48,55,46,55,54,53,48,53,57,44,51,57,46,48,52,52,54,56,51,93,44,91,45,49,48,55,46,53,48,48,54,48,54,44,51,57,46,50,49,55,57,49,54,93,44,91,45,49,48,55,46,51,57,52,52,56,54,44,51,57,46,50,53,54,50,57,57,93,44,91,45,49,48,55,46,52,51,48,57,52,57,44,51,57,46,51,54,54,49,55,56,93,44,91,45,49,48,56,46,52,48,57,54,48,55,44,51,57,46,51,54,53,57,56,51,93,44,91,45,49,48,57,46,48,53,48,55,54,53,44,51,57,46,51,54,54,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,68,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,48,52,44,34,98,101,100,115,34,58,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,48,57,49,48,53,44,51,55,46,53,57,56,56,54,51,93,44,91,45,57,49,46,55,53,53,48,52,44,51,55,46,52,50,52,49,49,93,44,91,45,57,49,46,54,52,54,54,50,54,44,51,55,46,52,50,50,55,51,49,93,44,91,45,57,49,46,50,49,49,56,54,51,44,51,55,46,52,49,53,50,55,55,93,44,91,45,57,49,46,51,49,52,50,51,54,44,51,55,46,53,48,53,49,51,50,93,44,91,45,57,49,46,51,49,50,52,53,56,44,51,55,46,53,57,50,56,50,52,93,44,91,45,57,49,46,49,53,53,48,55,51,44,51,55,46,53,56,56,48,57,50,93,44,91,45,57,49,46,49,53,51,51,52,53,44,51,55,46,54,57,55,51,52,93,44,91,45,57,49,46,51,49,48,54,53,53,44,51,55,46,55,48,48,48,52,56,93,44,91,45,57,49,46,51,48,56,51,49,49,44,51,55,46,55,56,55,49,56,54,93,44,91,45,57,49,46,53,50,56,55,57,55,44,51,55,46,55,56,56,57,56,57,93,44,91,45,57,49,46,56,48,54,50,49,57,44,51,55,46,55,57,49,50,56,54,93,44,91,45,57,49,46,56,48,57,49,48,53,44,51,55,46,53,57,56,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,84,97,122,101,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,48,56,48,44,34,98,101,100,115,34,58,50,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,52,48,49,50,52,44,51,55,46,50,51,55,55,53,50,93,44,91,45,56,49,46,57,48,48,56,57,50,44,51,55,46,49,52,50,53,53,51,93,44,91,45,56,49,46,55,56,48,53,52,53,44,51,54,46,57,53,56,54,50,57,93,44,91,45,56,49,46,54,56,50,55,56,54,44,51,54,46,57,51,50,57,51,52,93,44,91,45,56,49,46,52,51,54,55,51,44,51,55,46,48,49,48,49,51,53,93,44,91,45,56,49,46,50,55,48,48,55,56,44,51,55,46,48,57,51,48,49,50,93,44,91,45,56,49,46,50,50,53,49,48,52,44,51,55,46,50,51,52,56,55,52,93,44,91,45,56,49,46,51,54,50,49,53,54,44,51,55,46,51,51,55,54,56,55,93,44,91,45,56,49,46,53,54,48,54,51,49,44,51,55,46,50,48,54,54,54,51,93,44,91,45,56,49,46,55,52,48,49,50,52,44,51,55,46,50,51,55,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,48,54,57,53,53,57,44,52,49,46,54,48,49,56,55,52,93,44,91,45,55,53,46,51,53,57,49,56,52,44,52,49,46,50,51,57,50,48,54,93,44,91,45,55,53,46,49,50,57,55,50,49,44,52,49,46,50,53,50,49,48,49,93,44,91,45,55,53,46,49,53,54,53,48,55,44,52,49,46,49,53,48,51,52,49,93,44,91,45,55,52,46,57,57,49,55,49,56,44,52,49,46,48,57,50,50,56,52,93,44,91,45,55,52,46,56,56,50,49,51,57,44,52,49,46,49,56,48,56,51,54,93,44,91,45,55,52,46,56,51,48,48,53,55,44,52,49,46,50,56,55,50,93,44,91,45,55,52,46,54,57,52,57,49,52,44,52,49,46,51,53,55,52,50,51,93,44,91,45,55,52,46,55,53,52,54,57,44,52,49,46,52,50,52,57,55,51,93,44,91,45,55,52,46,57,56,49,54,53,50,44,52,49,46,52,55,57,57,52,53,93,44,91,45,55,53,46,48,54,57,53,53,57,44,52,49,46,54,48,49,56,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,117,115,113,117,101,104,97,110,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,51,52,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,52,56,51,49,52,57,44,52,49,46,57,57,57,50,49,52,93,44,91,45,55,54,46,49,48,53,56,52,44,52,49,46,57,57,56,56,53,56,93,44,91,45,55,54,46,49,52,53,53,49,57,44,52,49,46,57,57,56,56,52,50,93,44,91,45,55,54,46,49,49,53,49,55,50,44,52,49,46,54,53,49,56,50,53,93,44,91,45,55,53,46,55,49,57,56,56,55,44,52,49,46,54,52,50,50,54,51,93,44,91,45,55,53,46,52,54,50,52,49,49,44,52,49,46,54,52,49,53,56,55,93,44,91,45,55,53,46,52,56,51,49,52,57,44,52,49,46,57,57,57,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,52,51,34,44,34,78,65,77,69,34,58,34,77,111,114,114,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,48,56,55,56,51,44,51,51,46,51,54,51,54,51,54,93,44,91,45,57,52,46,56,49,57,56,50,56,44,51,50,46,57,56,50,56,56,54,93,44,91,45,57,52,46,55,49,57,57,52,50,44,51,50,46,57,48,52,53,48,50,93,44,91,45,57,52,46,55,48,53,56,55,56,44,51,50,46,56,55,57,49,55,55,93,44,91,45,57,52,46,54,53,51,57,57,52,44,51,50,46,56,55,57,53,48,54,93,44,91,45,57,52,46,54,53,50,50,54,44,51,51,46,50,54,56,56,54,49,93,44,91,45,57,52,46,55,52,54,57,50,53,44,51,51,46,51,50,56,57,51,56,93,44,91,45,57,52,46,56,48,56,55,56,51,44,51,51,46,51,54,51,54,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,53,52,55,44,34,98,101,100,115,34,58,53,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,55,57,57,49,44,52,48,46,51,57,57,54,52,52,93,44,91,45,56,48,46,53,49,57,49,48,52,44,52,48,46,49,53,57,54,55,50,93,44,91,45,56,48,46,53,49,57,49,50,44,52,48,46,48,49,54,52,49,93,44,91,45,56,48,46,53,49,57,48,57,49,44,51,57,46,57,54,50,50,93,44,91,45,56,48,46,50,56,55,52,50,49,44,52,48,46,48,49,57,50,48,54,93,44,91,45,55,57,46,57,57,56,48,49,52,44,51,57,46,57,56,51,51,50,50,93,44,91,45,55,57,46,56,55,55,51,56,53,44,52,48,46,49,50,54,55,57,50,93,44,91,45,55,57,46,56,55,48,53,56,53,44,52,48,46,49,57,55,52,49,53,93,44,91,45,55,57,46,57,49,52,49,51,57,44,52,48,46,50,53,50,53,49,56,93,44,91,45,56,48,46,49,56,51,52,55,50,44,52,48,46,51,51,50,55,56,50,93,44,91,45,56,48,46,51,54,48,56,55,51,44,52,48,46,52,55,55,53,51,57,93,44,91,45,56,48,46,53,49,57,48,51,56,44,52,48,46,52,55,55,51,54,51,93,44,91,45,56,48,46,53,49,55,57,57,49,44,52,48,46,51,57,57,54,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,57,51,57,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,49,51,50,56,51,44,52,52,46,50,54,52,49,51,93,44,91,45,55,51,46,51,57,48,54,50,53,44,52,52,46,49,57,49,48,54,56,93,44,91,45,55,51,46,52,51,55,57,48,53,44,52,52,46,48,52,53,49,50,53,93,44,91,45,55,51,46,51,55,57,50,56,49,44,52,51,46,56,48,56,52,56,49,93,44,91,45,55,51,46,51,54,50,56,50,51,44,52,51,46,55,53,51,48,56,52,93,44,91,45,55,51,46,50,48,54,51,50,50,44,52,51,46,55,54,54,55,55,53,93,44,91,45,55,51,46,50,49,56,57,53,54,44,52,51,46,56,51,55,50,57,49,93,44,91,45,55,50,46,57,53,56,56,53,51,44,52,51,46,56,50,54,53,52,50,93,44,91,45,55,50,46,57,53,51,48,56,51,44,52,51,46,56,55,52,56,55,93,44,91,45,55,50,46,55,57,49,51,51,54,44,52,51,46,57,54,49,56,53,53,93,44,91,45,55,50,46,55,52,50,51,48,51,44,52,52,46,48,50,57,54,53,53,93,44,91,45,55,50,46,57,49,54,55,55,56,44,52,52,46,48,55,49,56,56,54,93,44,91,45,55,50,46,57,53,50,49,54,55,44,52,52,46,49,54,49,50,55,49,93,44,91,45,55,50,46,57,55,51,51,49,56,44,52,52,46,50,57,51,52,50,93,44,91,45,55,51,46,51,49,51,50,56,51,44,52,52,46,50,54,52,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,76,101,97,118,101,110,119,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,48,52,50,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,56,48,56,57,49,44,51,57,46,52,49,57,50,49,56,93,44,91,45,57,53,46,49,56,55,49,48,51,44,51,57,46,48,52,52,49,48,57,93,44,91,45,57,53,46,48,53,54,50,53,56,44,51,56,46,57,56,50,49,50,93,44,91,45,57,52,46,57,48,56,55,54,53,44,51,56,46,57,57,49,52,48,49,93,44,91,45,57,52,46,57,48,48,49,57,49,44,51,57,46,50,48,50,57,49,49,93,44,91,45,57,52,46,55,55,53,53,51,50,44,51,57,46,50,48,48,54,48,54,93,44,91,45,57,52,46,56,57,56,53,49,54,44,51,57,46,50,57,56,52,53,93,44,91,45,57,52,46,57,54,56,57,55,51,44,51,57,46,52,49,56,56,55,57,93,44,91,45,57,53,46,49,56,48,56,57,49,44,51,57,46,52,49,57,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,117,115,107,101,103,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,48,52,51,44,34,98,101,100,115,34,58,51,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,48,52,52,56,44,52,51,46,50,57,51,48,48,51,93,44,91,45,56,54,46,48,51,56,57,53,51,44,52,51,46,50,57,51,53,49,57,93,44,91,45,56,54,46,48,51,57,52,57,49,44,52,51,46,52,54,55,52,52,55,93,44,91,45,56,55,46,49,52,48,51,51,49,44,52,51,46,52,55,49,52,51,54,93,44,91,45,56,55,46,49,49,57,48,48,56,44,52,51,46,49,57,48,56,49,54,93,44,91,45,56,55,46,49,48,55,54,54,57,44,52,51,46,49,49,56,50,52,51,93,44,91,45,56,53,46,57,48,55,52,51,53,44,52,51,46,49,49,56,57,49,49,93,44,91,45,56,53,46,55,57,48,54,54,50,44,52,51,46,50,48,53,49,54,55,93,44,91,45,56,53,46,55,57,48,52,52,56,44,52,51,46,50,57,51,48,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,72,105,110,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,55,55,52,44,34,98,101,100,115,34,58,50,52,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,54,53,54,57,55,44,51,50,46,51,57,57,53,50,57,93,44,91,45,57,48,46,50,52,51,55,54,52,44,51,50,46,52,48,48,48,57,56,93,44,91,45,57,48,46,50,52,51,54,52,49,44,51,50,46,52,56,55,53,51,51,93,44,91,45,57,48,46,52,52,53,57,52,54,44,51,50,46,52,56,55,57,48,51,93,44,91,45,57,48,46,52,53,48,48,51,55,44,51,50,46,53,55,51,55,56,51,93,44,91,45,57,48,46,53,53,51,56,50,49,44,51,50,46,53,48,55,53,55,52,93,44,91,45,57,48,46,54,56,51,53,55,49,44,51,50,46,51,53,50,55,56,52,93,44,91,45,57,48,46,55,50,56,54,50,50,44,51,50,46,50,50,53,49,49,57,93,44,91,45,57,48,46,55,49,56,50,57,55,44,51,50,46,48,52,56,51,53,50,93,44,91,45,57,48,46,50,51,48,51,51,49,44,51,50,46,48,52,57,55,50,56,93,44,91,45,57,48,46,50,52,53,51,56,44,51,50,46,49,55,49,51,57,54,93,44,91,45,57,48,46,48,54,53,54,57,55,44,51,50,46,51,57,57,53,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,49,34,44,34,78,65,77,69,34,58,34,76,97,109,112,97,115,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,52,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,55,49,48,55,44,51,49,46,52,49,54,51,57,56,93,44,91,45,57,56,46,53,54,50,55,51,57,44,51,49,46,50,51,48,53,56,50,93,44,91,45,57,56,46,52,51,57,54,56,55,44,51,49,46,48,50,57,53,51,55,93,44,91,45,57,55,46,57,49,49,54,56,52,44,51,49,46,48,51,52,57,49,57,93,44,91,45,57,55,46,57,48,55,49,44,51,49,46,48,54,57,51,55,52,93,44,91,45,57,56,46,49,56,48,48,48,54,44,51,49,46,52,54,51,55,49,55,93,44,91,45,57,56,46,50,55,49,48,55,44,51,49,46,52,49,54,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,76,111,117,100,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,53,49,52,51,44,34,98,101,100,115,34,58,52,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,50,56,51,49,56,44,51,57,46,48,53,55,54,55,56,93,44,91,45,55,55,46,52,54,48,54,48,50,44,51,57,46,48,55,52,56,52,51,93,44,91,45,55,55,46,53,50,55,51,50,50,44,51,57,46,49,52,54,57,54,49,93,44,91,45,55,55,46,52,53,56,56,48,56,44,51,57,46,50,50,48,50,55,93,44,91,45,55,55,46,53,54,56,55,53,51,44,51,57,46,51,48,54,52,52,55,93,44,91,45,55,55,46,54,55,55,49,54,52,44,51,57,46,51,50,52,53,51,52,93,44,91,45,55,55,46,55,49,57,53,49,57,44,51,57,46,51,50,49,51,49,52,93,44,91,45,55,55,46,56,50,56,50,57,57,44,51,57,46,49,51,50,52,50,54,93,44,91,45,55,55,46,57,54,50,50,48,51,44,51,57,46,48,49,51,55,51,51,93,44,91,45,55,55,46,54,53,53,49,54,57,44,51,56,46,57,52,50,54,53,54,93,44,91,45,55,55,46,53,51,53,57,57,49,44,51,56,46,56,52,55,51,54,56,93,44,91,45,55,55,46,51,50,56,51,49,56,44,51,57,46,48,53,55,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,108,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,56,51,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,53,56,50,56,53,44,51,56,46,48,51,54,54,50,55,93,44,91,45,57,52,46,48,54,53,54,55,53,44,51,55,46,57,48,48,57,56,55,93,44,91,45,57,51,46,56,48,56,54,52,56,44,51,55,46,56,57,50,55,55,53,93,44,91,45,57,51,46,56,49,49,52,48,50,44,51,55,46,56,51,52,53,55,49,93,44,91,45,57,51,46,54,50,56,52,48,52,44,51,55,46,56,50,57,52,51,53,93,44,91,45,57,51,46,53,55,51,50,48,50,44,51,55,46,56,50,56,48,51,53,93,44,91,45,57,51,46,53,49,50,49,48,51,44,51,55,46,57,49,51,53,51,53,93,44,91,45,57,51,46,53,48,51,57,52,54,44,51,56,46,48,55,51,49,50,51,93,44,91,45,57,51,46,53,50,51,52,56,52,44,51,56,46,50,48,55,50,49,54,93,44,91,45,57,52,46,48,52,57,56,57,53,44,51,56,46,50,49,51,57,56,53,93,44,91,45,57,52,46,48,53,56,50,56,53,44,51,56,46,48,51,54,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,53,48,50,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,49,49,53,56,44,52,50,46,53,49,55,55,57,57,93,44,91,45,55,52,46,56,52,52,49,50,49,44,52,50,46,53,49,50,53,57,49,93,44,91,45,55,53,46,48,49,57,56,49,56,44,52,50,46,52,50,57,48,52,53,93,44,91,45,55,53,46,52,49,53,51,49,57,44,52,50,46,51,49,52,49,53,49,93,44,91,45,55,53,46,52,49,56,52,50,49,44,52,50,46,49,57,53,48,51,50,93,44,91,45,55,53,46,52,50,49,55,55,54,44,52,50,46,48,52,50,48,51,93,44,91,45,55,53,46,51,53,57,53,55,57,44,52,49,46,57,57,57,52,52,53,93,44,91,45,55,53,46,50,55,49,50,57,51,44,52,49,46,56,56,55,51,53,56,93,44,91,45,55,53,46,49,52,54,52,52,54,44,52,49,46,56,53,48,56,57,57,93,44,91,45,55,52,46,55,56,48,54,57,51,44,52,50,46,48,49,54,51,55,53,93,44,91,45,55,52,46,52,53,49,55,49,51,44,52,50,46,49,54,57,50,50,53,93,44,91,45,55,52,46,53,51,55,51,49,44,52,50,46,50,48,49,52,50,52,93,44,91,45,55,52,46,52,52,51,53,48,54,44,52,50,46,51,53,53,48,49,55,93,44,91,45,55,52,46,54,49,56,56,57,53,44,52,50,46,52,50,52,51,56,57,93,44,91,45,55,52,46,55,49,49,53,56,44,52,50,46,53,49,55,55,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,80,104,105,108,108,105,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,52,44,34,98,101,100,115,34,58,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,50,51,54,52,57,55,44,52,56,46,57,57,57,53,55,49,93,44,91,45,49,48,56,46,50,53,57,51,56,52,44,52,56,46,55,52,50,50,50,53,93,44,91,45,49,48,56,46,51,49,57,48,49,49,44,52,56,46,53,54,56,52,51,49,93,44,91,45,49,48,56,46,52,49,49,49,56,54,44,52,56,46,52,52,52,57,56,49,93,44,91,45,49,48,56,46,52,51,51,57,56,44,52,55,46,57,55,54,53,53,51,93,44,91,45,49,48,56,46,54,48,55,53,55,57,44,52,55,46,57,57,48,57,57,55,93,44,91,45,49,48,56,46,54,50,53,53,56,55,44,52,55,46,57,50,48,52,49,49,93,44,91,45,49,48,56,46,56,56,56,51,49,54,44,52,55,46,57,50,50,55,50,50,93,44,91,45,49,48,56,46,56,57,49,49,49,53,44,52,55,46,55,51,52,52,53,54,93,44,91,45,49,48,56,46,54,55,49,52,44,52,55,46,54,49,57,53,53,54,93,44,91,45,49,48,56,46,51,49,51,48,52,56,44,52,55,46,53,56,51,54,53,93,44,91,45,49,48,56,46,48,54,53,52,49,56,44,52,55,46,53,57,56,50,57,52,93,44,91,45,49,48,55,46,57,51,49,49,48,53,44,52,55,46,53,54,57,48,55,51,93,44,91,45,49,48,55,46,57,48,57,49,50,44,52,55,46,52,53,48,54,57,50,93,44,91,45,49,48,55,46,56,54,52,57,50,50,44,52,55,46,53,49,51,55,52,93,44,91,45,49,48,55,46,53,57,52,50,53,44,52,55,46,54,52,57,55,51,49,93,44,91,45,49,48,55,46,52,49,52,56,56,54,44,52,55,46,54,57,49,55,51,52,93,44,91,45,49,48,55,46,52,48,52,53,49,51,44,52,56,46,50,49,56,52,52,93,44,91,45,49,48,55,46,50,54,48,52,53,56,44,52,56,46,51,48,52,55,54,56,93,44,91,45,49,48,55,46,51,48,49,55,50,49,44,52,56,46,52,56,48,57,52,51,93,44,91,45,49,48,55,46,50,48,54,51,49,54,44,52,56,46,53,54,56,49,55,93,44,91,45,49,48,55,46,50,48,54,48,51,50,44,52,56,46,57,49,50,55,49,93,44,91,45,49,48,55,46,49,55,57,56,49,50,44,52,57,46,48,48,48,49,48,51,93,44,91,45,49,48,56,46,50,51,54,52,57,55,44,52,56,46,57,57,57,53,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,53,54,56,57,57,44,52,48,46,53,56,48,50,51,53,93,44,91,45,57,51,46,55,55,52,51,52,52,44,52,48,46,53,55,55,53,52,56,93,44,91,45,57,51,46,55,54,51,51,50,52,44,52,48,46,50,54,51,57,56,56,93,44,91,45,57,51,46,51,54,55,50,49,52,44,52,48,46,50,54,54,51,49,52,93,44,91,45,57,51,46,51,54,54,57,51,53,44,52,48,46,51,56,50,57,57,57,93,44,91,45,57,51,46,51,55,52,51,56,54,44,52,48,46,53,56,48,51,51,51,93,44,91,45,57,51,46,53,53,54,56,57,57,44,52,48,46,53,56,48,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,54,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,56,50,48,53,55,54,44,52,55,46,49,57,52,50,50,93,44,91,45,49,50,50,46,56,53,49,49,56,55,44,52,55,46,50,52,57,55,55,52,93,44,91,45,49,50,50,46,56,48,49,49,57,57,44,52,55,46,52,48,51,53,55,56,93,44,91,45,49,50,50,46,56,48,49,48,49,50,44,52,55,46,53,50,48,52,48,54,93,44,91,45,49,50,51,46,48,51,56,52,48,52,44,52,55,46,53,50,48,50,51,54,93,44,91,45,49,50,50,46,57,53,48,54,50,49,44,52,55,46,54,48,54,51,48,56,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,54,48,52,54,49,53,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,53,49,55,55,49,54,93,44,91,45,49,50,51,46,52,56,56,57,52,51,44,52,55,46,48,56,50,54,52,54,93,44,91,45,49,50,51,46,50,48,49,56,57,49,44,52,55,46,48,56,53,48,53,57,93,44,91,45,49,50,51,46,48,55,53,48,50,54,44,52,55,46,48,56,52,55,56,55,93,44,91,45,49,50,51,46,48,48,50,52,51,53,44,52,55,46,49,53,49,51,48,50,93,44,91,45,49,50,50,46,56,50,48,53,55,54,44,52,55,46,49,57,52,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,78,97,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,48,48,51,44,34,98,101,100,115,34,58,51,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,48,54,53,53,49,44,51,54,46,50,48,50,54,51,51,93,44,91,45,55,56,46,50,53,53,57,55,51,44,51,53,46,56,49,56,49,50,93,44,91,45,55,56,46,49,57,50,49,49,55,44,51,53,46,55,51,48,53,52,53,93,44,91,45,55,55,46,56,50,56,52,52,52,44,51,53,46,56,54,55,50,48,56,93,44,91,45,55,55,46,54,57,55,57,53,54,44,51,54,46,49,53,51,49,53,93,44,91,45,55,55,46,56,56,55,50,52,44,51,54,46,49,52,51,56,52,93,44,91,45,55,56,46,48,48,54,53,53,49,44,51,54,46,50,48,50,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,53,56,55,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,57,49,51,48,50,44,51,55,46,50,49,51,50,48,53,93,44,91,45,55,54,46,52,51,56,48,50,54,44,51,55,46,48,57,52,51,52,56,93,44,91,45,55,54,46,51,57,53,55,57,53,44,51,55,46,49,48,55,49,55,52,93,44,91,45,55,54,46,51,51,48,52,51,53,44,51,55,46,49,57,48,57,56,52,93,44,91,45,55,54,46,49,51,53,53,50,44,51,55,46,49,57,49,57,55,93,44,91,45,55,54,46,49,51,54,51,48,49,44,51,55,46,50,56,50,49,51,55,93,44,91,45,55,54,46,51,48,52,53,44,51,55,46,50,55,56,51,54,49,93,44,91,45,55,54,46,53,49,54,48,53,55,44,51,55,46,50,52,56,55,53,50,93,44,91,45,55,54,46,54,53,56,54,53,49,44,51,55,46,51,56,48,49,51,57,93,44,91,45,55,54,46,55,50,55,56,53,57,44,51,55,46,51,48,53,57,50,55,93,44,91,45,55,54,46,54,56,48,49,53,49,44,51,55,46,50,54,53,57,57,55,93,44,91,45,55,54,46,53,57,49,51,48,50,44,51,55,46,50,49,51,50,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,80,101,116,116,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,51,55,49,44,34,98,101,100,115,34,58,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,53,48,52,53,51,44,51,56,46,57,50,56,50,52,52,93,44,91,45,57,51,46,52,57,54,51,55,55,44,51,56,46,57,52,50,56,51,55,93,44,91,45,57,51,46,52,57,55,50,55,56,44,51,56,46,57,50,56,52,51,93,44,91,45,57,51,46,53,49,49,48,51,44,51,56,46,53,53,54,50,49,93,44,91,45,57,51,46,53,49,50,55,52,51,44,51,56,46,53,49,50,52,55,54,93,44,91,45,57,51,46,50,57,48,52,53,52,44,51,56,46,53,51,53,51,56,56,93,44,91,45,57,51,46,48,54,55,50,57,49,44,51,56,46,53,50,57,57,57,53,93,44,91,45,57,51,46,48,53,57,57,55,52,44,51,56,46,54,57,51,48,55,55,93,44,91,45,57,51,46,48,53,48,52,53,51,44,51,56,46,57,50,56,50,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,77,105,115,115,111,117,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,57,56,51,44,34,98,101,100,115,34,58,52,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,54,51,52,48,55,57,44,52,55,46,54,48,48,48,50,55,93,44,91,45,49,49,51,46,57,50,52,56,50,54,44,52,55,46,54,48,48,50,51,57,93,44,91,45,49,49,51,46,57,52,50,56,56,54,44,52,55,46,52,55,57,54,55,56,93,44,91,45,49,49,51,46,56,55,49,49,49,44,52,55,46,51,57,49,57,55,93,44,91,45,49,49,51,46,56,50,49,52,52,55,44,52,55,46,49,56,49,55,48,57,93,44,91,45,49,49,51,46,57,51,51,53,48,51,44,52,55,46,49,51,56,50,56,57,93,44,91,45,49,49,52,46,49,56,55,49,55,44,52,55,46,49,51,56,49,57,49,93,44,91,45,49,49,52,46,50,53,51,53,56,52,44,52,55,46,49,50,49,48,48,55,93,44,91,45,49,49,52,46,52,50,51,56,53,56,44,52,55,46,50,49,48,48,57,49,93,44,91,45,49,49,52,46,54,56,55,50,57,53,44,52,55,46,50,55,52,51,49,93,44,91,45,49,49,52,46,55,57,55,50,48,52,44,52,55,46,50,54,56,57,49,54,93,44,91,45,49,49,52,46,55,55,53,56,51,51,44,52,55,46,50,50,53,53,55,51,93,44,91,45,49,49,52,46,52,56,51,50,50,55,44,52,55,46,48,50,51,51,53,56,93,44,91,45,49,49,52,46,53,54,54,49,50,57,44,52,54,46,57,54,51,52,48,53,93,44,91,45,49,49,52,46,53,52,57,49,50,55,44,52,54,46,55,52,55,51,54,54,93,44,91,45,49,49,52,46,54,55,52,57,52,50,44,52,54,46,55,51,54,56,50,54,93,44,91,45,49,49,52,46,53,57,52,54,51,52,44,52,54,46,54,51,51,52,52,56,93,44,91,45,49,49,52,46,51,51,50,55,57,54,44,52,54,46,54,54,48,53,56,49,93,44,91,45,49,49,51,46,56,50,55,55,52,51,44,52,54,46,54,54,48,56,57,54,93,44,91,45,49,49,51,46,52,55,57,56,53,54,44,52,54,46,55,52,52,55,49,52,93,44,91,45,49,49,51,46,52,49,54,53,57,57,44,52,54,46,56,51,50,49,49,51,93,44,91,45,49,49,51,46,51,48,50,57,48,51,44,52,54,46,56,51,50,49,53,57,93,44,91,45,49,49,51,46,51,48,50,57,52,51,44,52,55,46,49,55,57,54,52,51,93,44,91,45,49,49,51,46,52,54,54,52,53,44,52,55,46,49,55,57,49,56,54,93,44,91,45,49,49,51,46,52,54,54,52,56,53,44,52,55,46,54,48,48,48,53,55,93,44,91,45,49,49,51,46,54,51,52,48,55,57,44,52,55,46,54,48,48,48,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,104,97,117,116,97,117,113,117,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,54,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,50,52,56,55,51,44,51,55,46,51,48,50,55,51,93,44,91,45,57,54,46,53,50,53,53,56,50,44,51,54,46,57,57,56,55,49,93,44,91,45,57,54,46,48,48,48,56,49,44,51,54,46,57,57,56,56,54,93,44,91,45,57,53,46,57,54,52,50,55,44,51,54,46,57,57,57,49,48,52,93,44,91,45,57,53,46,57,54,52,51,57,57,44,51,55,46,50,57,57,50,51,50,93,44,91,45,57,54,46,53,50,52,56,55,51,44,51,55,46,51,48,50,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,53,57,34,44,34,78,65,77,69,34,58,34,85,112,115,104,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,55,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,53,50,49,49,44,51,50,46,57,48,50,54,52,49,93,44,91,45,57,53,46,49,53,51,52,49,44,51,50,46,53,55,48,49,49,53,93,44,91,45,57,52,46,57,56,54,57,51,53,44,51,50,46,53,51,55,50,52,54,93,44,91,45,57,52,46,55,48,49,55,57,44,51,50,46,54,53,50,50,48,57,93,44,91,45,57,52,46,55,48,50,49,52,44,51,50,46,55,57,51,48,56,56,93,44,91,45,57,52,46,55,48,53,56,55,56,44,51,50,46,56,55,57,49,55,55,93,44,91,45,57,52,46,55,49,57,57,52,50,44,51,50,46,57,48,52,53,48,50,93,44,91,45,57,53,46,49,53,50,49,49,44,51,50,46,57,48,50,54,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,117,108,112,101,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,52,53,48,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,51,49,56,48,51,44,51,56,46,53,51,50,53,51,57,93,44,91,45,55,56,46,48,57,54,48,56,51,44,51,56,46,52,48,52,51,52,51,93,44,91,45,55,56,46,48,57,52,52,57,56,44,51,56,46,51,49,49,50,52,50,93,44,91,45,55,55,46,57,48,56,57,55,57,44,51,56,46,51,56,49,53,48,51,93,44,91,45,55,55,46,55,48,50,56,52,51,44,51,56,46,51,54,48,56,52,93,44,91,45,55,55,46,54,49,56,55,50,55,44,51,56,46,51,54,55,56,51,53,93,44,91,45,55,55,46,54,51,52,57,52,44,51,56,46,52,49,48,50,49,56,93,44,91,45,55,55,46,55,51,53,57,48,49,44,51,56,46,52,49,51,52,53,56,93,44,91,45,55,55,46,57,51,53,51,53,53,44,51,56,46,54,57,53,56,52,93,44,91,45,55,56,46,49,54,56,55,57,50,44,51,56,46,53,50,51,56,48,57,93,44,91,45,55,56,46,50,51,49,56,48,51,44,51,56,46,53,51,50,53,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,97,115,107,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,52,57,57,51,51,44,51,53,46,52,53,56,56,57,52,93,44,91,45,57,53,46,49,55,49,55,54,51,44,51,53,46,51,48,53,53,53,51,93,44,91,45,57,53,46,51,52,52,55,54,54,44,51,53,46,50,57,51,48,51,53,93,44,91,45,57,53,46,52,53,49,50,53,44,51,53,46,50,57,54,48,49,57,93,44,91,45,57,53,46,52,53,53,48,49,56,44,51,53,46,49,54,48,53,55,53,93,44,91,45,57,53,46,51,52,57,53,50,53,44,51,53,46,49,54,48,48,50,49,93,44,91,45,57,53,46,51,52,57,52,48,57,44,51,53,46,48,53,56,53,50,93,44,91,45,57,52,46,57,50,55,56,54,51,44,51,53,46,48,53,56,50,52,54,93,44,91,45,57,52,46,57,50,55,55,55,52,44,51,53,46,50,48,50,54,49,93,44,91,45,57,52,46,56,49,52,50,55,54,44,51,53,46,50,48,50,51,51,49,93,44,91,45,57,52,46,56,49,51,54,50,57,44,51,53,46,51,50,51,51,52,52,93,44,91,45,57,53,46,48,52,57,57,51,51,44,51,53,46,52,53,56,56,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,53,52,55,44,34,98,101,100,115,34,58,52,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,51,51,56,48,51,44,52,48,46,48,51,51,52,48,57,93,44,91,45,56,48,46,53,49,57,49,50,44,52,48,46,48,49,54,52,49,93,44,91,45,56,48,46,53,49,57,49,48,52,44,52,48,46,49,53,57,54,55,50,93,44,91,45,56,48,46,54,56,49,56,49,49,44,52,48,46,49,56,53,53,54,51,93,44,91,45,56,48,46,55,48,50,55,53,44,52,48,46,49,53,55,50,52,57,93,44,91,45,56,48,46,55,51,51,56,48,51,44,52,48,46,48,51,51,52,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,50,52,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,50,50,49,49,44,51,57,46,54,49,57,54,53,55,93,44,91,45,55,56,46,49,55,49,53,52,57,44,51,57,46,54,57,53,54,52,51,93,44,91,45,55,56,46,51,51,51,56,49,57,44,51,57,46,54,51,54,55,54,50,93,44,91,45,55,56,46,52,54,56,53,56,49,44,51,57,46,53,49,54,54,49,57,93,44,91,45,55,56,46,51,52,55,48,56,55,44,51,57,46,52,54,54,48,49,50,93,44,91,45,55,56,46,50,50,56,55,54,54,44,51,57,46,51,57,49,50,51,51,93,44,91,45,55,56,46,49,51,56,57,51,55,44,51,57,46,53,57,51,55,57,54,93,44,91,45,55,56,46,48,50,50,49,49,44,51,57,46,54,49,57,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,82,111,99,107,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,52,52,52,44,34,98,101,100,115,34,58,50,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,53,55,50,53,51,44,51,56,46,55,54,49,52,49,51,93,44,91,45,55,57,46,50,50,52,53,56,51,44,51,56,46,52,55,55,53,56,56,93,44,91,45,55,56,46,55,52,57,51,57,54,44,51,56,46,50,48,54,54,52,56,93,44,91,45,55,56,46,54,54,51,49,52,53,44,51,56,46,50,55,55,57,51,51,93,44,91,45,55,56,46,52,56,53,55,52,44,51,56,46,52,50,49,53,55,57,93,44,91,45,55,56,46,54,57,49,51,49,50,44,51,56,46,53,49,48,48,48,56,93,44,91,45,55,56,46,54,52,49,55,54,57,44,51,56,46,54,48,52,55,49,57,93,44,91,45,55,56,46,56,54,57,50,54,49,44,51,56,46,55,54,50,57,56,93,44,91,45,55,56,46,57,57,51,55,54,49,44,51,56,46,56,53,48,48,50,49,93,44,91,45,55,57,46,48,53,55,50,53,51,44,51,56,46,55,54,49,52,49,51,93,93,44,91,91,45,55,56,46,57,49,55,56,55,49,44,51,56,46,51,57,52,49,53,51,93,44,91,45,55,56,46,57,48,48,53,56,57,44,51,56,46,52,53,57,50,49,55,93,44,91,45,55,56,46,56,50,52,51,50,44,51,56,46,52,51,53,48,55,57,93,44,91,45,55,56,46,57,49,55,56,55,49,44,51,56,46,51,57,52,49,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,87,104,105,116,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,54,52,57,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,49,57,50,56,44,52,49,46,50,57,52,55,55,54,93,44,91,45,56,53,46,54,56,52,49,56,49,44,52,49,46,48,52,54,55,49,54,93,44,91,45,56,53,46,54,52,51,56,52,49,44,52,49,46,48,48,50,51,48,53,93,44,91,45,56,53,46,51,51,53,54,52,51,44,52,49,46,48,48,53,50,53,93,44,91,45,56,53,46,51,48,55,55,56,49,44,52,49,46,50,54,52,49,53,56,93,44,91,45,56,53,46,53,51,55,49,56,44,52,49,46,50,54,54,49,53,55,93,44,91,45,56,53,46,54,53,49,57,50,56,44,52,49,46,50,57,52,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,83,105,115,107,105,121,111,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,53,52,48,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,50,56,57,55,52,56,44,52,50,46,48,48,56,48,57,56,93,44,91,45,49,50,51,46,50,51,49,49,49,51,44,52,50,46,48,48,51,57,52,51,93,44,91,45,49,50,51,46,53,49,55,57,49,49,44,52,50,46,48,48,48,55,53,54,93,44,91,45,49,50,51,46,53,54,53,52,52,50,44,52,49,46,57,48,51,49,52,49,93,44,91,45,49,50,51,46,55,48,51,54,56,49,44,52,49,46,56,50,57,52,56,55,93,44,91,45,49,50,51,46,54,54,55,49,49,52,44,52,49,46,54,57,49,54,56,57,93,44,91,45,49,50,51,46,55,49,57,49,55,52,44,52,49,46,53,57,53,54,49,51,93,44,91,45,49,50,51,46,54,49,50,51,57,53,44,52,49,46,52,52,56,57,53,52,93,44,91,45,49,50,51,46,54,54,49,51,54,51,44,52,49,46,51,56,50,48,57,93,44,91,45,49,50,51,46,52,55,52,48,56,53,44,52,49,46,51,54,54,49,57,51,93,44,91,45,49,50,51,46,52,48,56,50,57,49,44,52,49,46,49,55,57,57,52,52,93,44,91,45,49,50,51,46,50,52,53,50,50,50,44,52,49,46,48,55,55,57,56,55,93,44,91,45,49,50,51,46,49,48,57,48,55,55,44,52,49,46,48,55,53,52,50,57,93,44,91,45,49,50,51,46,48,51,54,56,48,56,44,52,49,46,48,48,52,48,53,56,93,44,91,45,49,50,50,46,56,57,55,48,54,54,44,52,49,46,50,48,49,48,48,54,93,44,91,45,49,50,50,46,56,49,49,51,52,50,44,52,49,46,50,48,50,52,53,49,93,44,91,45,49,50,50,46,53,57,48,56,48,56,44,52,49,46,51,50,53,57,49,93,44,91,45,49,50,50,46,53,48,52,50,53,52,44,52,49,46,51,51,52,55,49,93,44,91,45,49,50,50,46,52,57,56,51,55,54,44,52,49,46,49,56,50,54,55,53,93,44,91,45,49,50,49,46,52,52,54,52,57,53,44,52,49,46,49,56,51,52,56,52,93,44,91,45,49,50,49,46,52,52,55,53,51,56,44,52,49,46,57,57,55,52,54,53,93,44,91,45,49,50,50,46,50,56,57,55,52,56,44,52,50,46,48,48,56,48,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,48,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,55,57,53,57,50,44,52,53,46,53,56,56,52,56,51,93,44,91,45,57,55,46,57,56,49,52,53,55,44,52,53,46,50,52,48,52,49,53,93,44,91,45,57,55,46,57,56,49,55,57,50,44,52,53,46,49,53,51,50,57,53,93,44,91,45,57,55,46,52,57,52,50,53,52,44,52,53,46,49,53,49,54,51,49,93,44,91,45,57,55,46,50,50,54,50,56,49,44,52,53,46,49,53,49,56,50,54,93,44,91,45,57,55,46,50,50,54,50,52,52,44,52,53,46,50,57,55,54,52,55,93,44,91,45,57,55,46,50,50,55,48,56,57,44,52,53,46,53,53,56,49,53,56,93,44,91,45,57,55,46,51,55,51,51,54,54,44,52,53,46,53,56,55,54,51,52,93,44,91,45,57,55,46,57,55,57,53,57,50,44,52,53,46,53,56,56,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,79,114,108,101,97,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,57,54,52,56,44,34,98,101,100,115,34,58,49,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,48,56,49,49,57,44,51,48,46,49,54,52,57,52,93,44,91,45,57,48,46,49,51,56,53,55,52,44,50,57,46,57,49,56,56,48,53,93,44,91,45,57,48,46,48,48,56,48,53,54,44,50,57,46,56,57,53,53,50,56,93,44,91,45,56,57,46,57,49,48,55,48,56,44,50,57,46,56,54,55,56,54,53,93,44,91,45,56,57,46,56,56,49,53,57,57,44,50,57,46,57,56,54,50,93,44,91,45,56,57,46,54,56,51,50,51,44,51,48,46,48,55,54,52,48,54,93,44,91,45,56,57,46,54,50,53,48,53,52,44,51,48,46,49,53,51,52,57,51,93,44,91,45,56,57,46,55,57,55,52,49,52,44,51,48,46,49,54,48,55,53,55,93,44,91,45,56,57,46,57,48,51,50,51,52,44,51,48,46,49,57,56,54,54,93,44,91,45,57,48,46,49,48,56,49,49,57,44,51,48,46,49,54,52,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,57,56,57,50,44,34,98,101,100,115,34,58,52,55,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,53,51,54,54,52,44,51,51,46,56,49,53,50,57,55,93,44,91,45,56,55,46,48,50,51,50,56,54,44,51,51,46,55,55,50,55,50,55,93,44,91,45,56,55,46,48,57,50,55,51,51,44,51,51,46,54,50,55,56,53,93,44,91,45,56,55,46,49,55,57,52,51,44,51,51,46,54,49,51,55,57,52,93,44,91,45,56,55,46,50,54,54,57,50,51,44,51,51,46,53,49,50,57,50,57,93,44,91,45,56,55,46,50,56,52,51,54,51,44,51,51,46,52,52,48,53,55,56,93,44,91,45,56,55,46,49,55,57,54,51,56,44,51,51,46,51,50,49,49,49,50,93,44,91,45,56,55,46,48,54,53,55,51,56,44,51,51,46,50,52,54,57,48,55,93,44,91,45,56,55,46,48,50,54,56,52,54,44,51,51,46,50,52,54,52,53,57,93,44,91,45,56,54,46,54,55,52,52,49,56,44,51,51,46,52,54,54,53,50,49,93,44,91,45,56,54,46,53,49,54,55,56,51,44,51,51,46,53,52,53,56,57,54,93,44,91,45,56,54,46,53,50,53,48,55,51,44,51,51,46,55,50,49,50,51,54,93,44,91,45,56,54,46,53,55,55,55,57,57,44,51,51,46,55,54,53,51,49,54,93,44,91,45,56,54,46,55,53,57,49,52,52,44,51,51,46,56,52,48,54,49,55,93,44,91,45,56,54,46,57,53,51,54,54,52,44,51,51,46,56,49,53,50,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,87,97,108,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,52,57,51,44,34,98,101,100,115,34,58,50,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,51,53,57,51,50,44,51,51,46,57,49,53,50,53,49,93,44,91,45,56,55,46,53,51,49,54,48,50,44,51,51,46,56,54,55,54,49,56,93,44,91,45,56,55,46,53,50,56,51,51,56,44,51,51,46,54,57,50,48,52,57,93,44,91,45,56,55,46,52,50,51,56,52,51,44,51,51,46,54,56,57,49,49,50,93,44,91,45,56,55,46,52,50,51,55,48,49,44,51,51,46,54,48,50,48,57,54,93,44,91,45,56,55,46,51,49,56,53,51,50,44,51,51,46,53,56,55,51,57,51,93,44,91,45,56,55,46,50,54,54,57,50,51,44,51,51,46,53,49,50,57,50,57,93,44,91,45,56,55,46,49,55,57,52,51,44,51,51,46,54,49,51,55,57,52,93,44,91,45,56,55,46,48,57,50,55,51,51,44,51,51,46,54,50,55,56,53,93,44,91,45,56,55,46,48,50,51,50,56,54,44,51,51,46,55,55,50,55,50,55,93,44,91,45,56,54,46,57,53,51,54,54,52,44,51,51,46,56,49,53,50,57,55,93,44,91,45,56,54,46,57,54,51,51,53,56,44,51,51,46,56,53,56,50,50,49,93,44,91,45,56,55,46,49,53,49,48,51,54,44,51,51,46,57,57,51,50,50,53,93,44,91,45,56,55,46,54,51,54,49,49,56,44,51,52,46,48,48,50,50,48,51,93,44,91,45,56,55,46,54,51,53,57,51,50,44,51,51,46,57,49,53,50,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,53,51,55,55,44,52,48,46,48,51,57,50,49,55,93,44,91,45,57,52,46,54,48,50,56,51,44,51,57,46,56,49,57,57,48,54,93,44,91,45,57,52,46,54,48,50,50,53,55,44,51,57,46,55,52,55,49,57,53,93,44,91,45,57,52,46,50,48,53,57,54,49,44,51,57,46,55,52,53,56,52,49,93,44,91,45,57,52,46,50,48,53,56,52,52,44,51,57,46,55,56,56,57,53,52,93,44,91,45,57,52,46,50,49,56,56,44,52,48,46,48,51,52,56,56,53,93,44,91,45,57,52,46,54,48,53,51,55,55,44,52,48,46,48,51,57,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,71,97,100,115,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,48,49,55,44,34,98,101,100,115,34,58,57,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,44,91,45,56,52,46,56,56,50,54,49,54,44,51,48,46,53,51,51,48,57,52,93,44,91,45,56,52,46,54,52,54,52,48,56,44,51,48,46,51,56,56,50,56,49,93,44,91,45,56,52,46,52,50,48,52,55,52,44,51,48,46,52,54,51,57,48,53,93,44,91,45,56,52,46,50,56,50,53,53,57,44,51,48,46,54,56,53,51,51,52,93,44,91,45,56,52,46,51,56,48,55,48,53,44,51,48,46,54,56,57,57,57,51,93,44,91,45,56,52,46,56,54,51,52,54,53,44,51,48,46,55,49,49,52,57,52,93,44,91,45,56,52,46,56,54,52,54,57,51,44,51,48,46,55,49,49,53,52,50,93,44,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,68,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,50,55,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,56,51,49,52,53,44,51,52,46,56,54,48,51,55,49,93,44,91,45,56,53,46,53,51,52,48,56,57,44,51,52,46,54,50,51,56,53,56,93,44,91,45,56,53,46,52,53,48,52,48,57,44,51,52,46,55,53,57,50,52,49,93,44,91,45,56,53,46,52,53,48,53,54,49,44,51,52,46,56,51,49,54,55,55,93,44,91,45,56,53,46,51,54,51,57,49,57,44,51,52,46,57,56,51,51,55,53,93,44,91,45,56,53,46,52,55,52,48,55,51,44,51,52,46,57,56,51,48,50,93,44,91,45,56,53,46,54,48,53,49,54,53,44,51,52,46,57,56,52,54,55,56,93,44,91,45,56,53,46,53,56,51,49,52,53,44,51,52,46,56,54,48,51,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,68,101,83,111,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,49,51,50,44,34,98,101,100,115,34,58,53,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,48,52,53,51,50,44,51,52,46,56,54,48,53,56,56,93,44,91,45,57,48,46,50,48,50,49,50,54,44,51,52,46,56,54,48,51,55,52,93,44,91,45,57,48,46,50,48,48,49,57,57,44,51,52,46,55,50,52,52,49,56,93,44,91,45,57,48,46,48,50,57,49,52,52,44,51,52,46,55,48,56,49,55,54,93,44,91,45,56,57,46,57,48,56,53,56,55,44,51,52,46,55,55,50,54,52,49,93,44,91,45,56,57,46,55,50,51,52,52,50,44,51,52,46,55,55,50,51,49,49,93,44,91,45,56,57,46,55,50,52,51,50,52,44,51,52,46,57,57,52,55,57,93,44,91,45,57,48,46,51,48,57,50,56,57,44,51,52,46,57,57,53,54,57,52,93,44,91,45,57,48,46,50,52,54,49,49,54,44,51,52,46,57,52,52,51,49,54,93,44,91,45,57,48,46,51,48,52,53,51,50,44,51,52,46,56,54,48,53,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,52,57,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,49,52,48,56,44,51,57,46,48,48,55,57,57,52,93,44,91,45,55,56,46,51,48,48,52,49,52,44,51,56,46,57,52,51,53,57,50,93,44,91,45,55,56,46,51,57,52,55,48,52,44,51,56,46,56,50,50,55,57,93,44,91,45,55,56,46,50,56,52,56,48,53,44,51,56,46,55,53,57,51,49,53,93,44,91,45,55,56,46,49,51,48,53,55,52,44,51,56,46,56,54,52,56,54,53,93,44,91,45,55,56,46,48,48,52,51,49,51,44,51,56,46,57,55,57,52,51,56,93,44,91,45,55,56,46,49,53,49,54,49,52,44,51,57,46,48,51,54,54,50,57,93,44,91,45,55,56,46,51,49,52,48,56,44,51,57,46,48,48,55,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,69,100,119,97,114,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,52,55,56,48,51,44,51,56,46,53,54,57,48,51,55,93,44,91,45,56,56,46,49,53,48,56,57,49,44,51,56,46,50,53,54,49,53,54,93,44,91,45,56,55,46,57,57,48,54,50,56,44,51,56,46,50,53,57,54,50,57,93,44,91,45,56,55,46,57,52,51,48,51,52,44,51,56,46,52,52,57,50,49,54,93,44,91,45,56,55,46,57,53,52,54,55,53,44,51,56,46,53,55,48,50,51,93,44,91,45,56,56,46,49,52,55,56,48,51,44,51,56,46,53,54,57,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,54,56,50,44,34,98,101,100,115,34,58,57,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,49,54,49,56,49,44,51,53,46,55,57,55,51,48,55,93,44,91,45,56,57,46,48,54,57,53,52,52,44,51,53,46,54,57,50,54,55,57,93,44,91,45,56,57,46,48,55,56,56,55,54,44,51,53,46,52,51,49,52,50,56,93,44,91,45,56,56,46,56,52,49,54,48,55,44,51,53,46,52,50,55,56,50,54,93,44,91,45,56,56,46,54,55,53,56,54,55,44,51,53,46,52,56,57,49,54,51,93,44,91,45,56,56,46,54,49,51,54,49,49,44,51,53,46,53,56,56,48,56,57,93,44,91,45,56,56,46,54,48,54,56,54,50,44,51,53,46,55,56,57,51,53,52,93,44,91,45,56,56,46,55,48,54,56,49,49,44,51,53,46,55,57,49,48,55,53,93,44,91,45,56,56,46,57,49,54,49,56,49,44,51,53,46,55,57,55,51,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,55,52,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,52,51,52,56,50,44,51,51,46,52,57,53,56,56,53,93,44,91,45,56,53,46,54,53,51,54,53,52,44,51,51,46,49,48,54,54,51,52,93,44,91,45,56,53,46,53,57,51,49,55,55,44,51,51,46,49,48,55,51,52,93,44,91,45,56,53,46,50,51,50,51,55,56,44,51,51,46,49,48,56,48,55,55,93,44,91,45,56,53,46,50,51,54,53,49,56,44,51,51,46,49,50,57,53,53,57,93,44,91,45,56,53,46,50,57,51,56,48,53,44,51,51,46,52,50,56,48,57,56,93,44,91,45,56,53,46,51,48,52,52,51,57,44,51,51,46,52,56,50,56,56,52,93,44,91,45,56,53,46,54,52,51,52,56,50,44,51,51,46,52,57,53,56,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,115,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,56,54,44,34,98,101,100,115,34,58,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,55,55,52,57,44,51,54,46,53,56,56,49,51,55,93,44,91,45,56,49,46,55,50,56,55,56,49,44,51,54,46,51,57,49,51,48,57,93,44,91,45,56,49,46,52,55,55,53,49,54,44,51,54,46,50,52,48,50,53,93,44,91,45,56,49,46,50,53,51,54,52,57,44,51,54,46,51,54,54,54,48,49,93,44,91,45,56,49,46,51,53,51,50,53,57,44,51,54,46,53,55,52,54,57,50,93,44,91,45,56,49,46,54,55,55,52,57,44,51,54,46,53,56,56,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,68,111,108,111,114,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,56,54,48,56,52,53,44,51,55,46,55,55,53,53,49,55,93,44,91,45,49,48,55,46,57,56,57,50,48,56,44,51,55,46,56,53,54,54,52,93,44,91,45,49,48,56,46,50,48,57,48,57,51,44,51,55,46,56,50,48,57,51,54,93,44,91,45,49,48,56,46,50,53,54,52,57,56,44,51,55,46,56,57,52,54,48,55,93,44,91,45,49,48,56,46,56,49,54,55,49,44,51,55,46,56,57,53,53,51,56,93,44,91,45,49,48,57,46,48,52,49,57,57,50,44,51,55,46,56,56,49,48,56,51,93,44,91,45,49,48,57,46,48,52,51,51,54,54,44,51,55,46,52,56,52,56,49,56,93,44,91,45,49,48,56,46,57,49,55,48,56,49,44,51,55,46,54,51,49,57,48,50,93,44,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,44,91,45,49,48,55,46,56,54,48,56,52,53,44,51,55,46,55,55,53,53,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,76,105,99,107,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,50,57,51,44,34,98,101,100,115,34,58,50,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,54,49,56,50,55,44,52,48,46,49,50,53,56,53,53,93,44,91,45,56,50,46,55,56,50,52,57,53,44,51,57,46,57,51,57,54,54,50,93,44,91,45,56,50,46,52,54,50,56,49,51,44,51,57,46,57,51,48,51,56,93,44,91,45,56,50,46,50,51,51,57,55,52,44,51,57,46,57,49,51,50,54,93,44,91,45,56,50,46,49,57,56,55,55,50,44,51,57,46,57,53,48,49,52,93,44,91,45,56,50,46,49,56,55,49,48,53,44,52,48,46,49,54,54,56,56,93,44,91,45,56,50,46,49,57,53,57,49,49,44,52,48,46,50,51,57,48,55,49,93,44,91,45,56,50,46,52,55,55,50,55,51,44,52,48,46,50,52,53,56,49,93,44,91,45,56,50,46,55,53,48,55,52,55,44,52,48,46,50,55,54,57,57,54,93,44,91,45,56,50,46,55,54,49,56,50,55,44,52,48,46,49,50,53,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,56,51,34,44,34,78,65,77,69,34,58,34,77,97,110,97,115,115,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,52,53,55,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,55,53,55,54,44,51,56,46,55,56,49,49,55,49,93,44,91,45,55,55,46,52,57,57,52,51,44,51,56,46,55,51,55,49,51,55,93,44,91,45,55,55,46,52,53,49,54,52,50,44,51,56,46,55,51,56,51,51,55,93,44,91,45,55,55,46,52,53,56,54,57,53,44,51,56,46,55,55,50,51,49,57,93,44,91,45,55,55,46,52,55,53,55,54,44,51,56,46,55,56,49,49,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,55,51,50,44,34,98,101,100,115,34,58,49,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,55,56,52,54,57,44,51,51,46,51,55,55,50,56,93,44,91,45,57,50,46,57,56,56,55,48,55,44,51,51,46,48,49,55,52,51,51,93,44,91,45,57,50,46,55,50,52,55,52,44,51,51,46,48,49,52,51,57,93,44,91,45,57,50,46,48,54,57,49,48,53,44,51,51,46,48,48,56,49,54,51,93,44,91,45,57,50,46,49,51,55,53,50,55,44,51,51,46,49,54,50,57,53,54,93,44,91,45,57,50,46,51,53,48,52,51,50,44,51,51,46,50,57,56,57,52,49,93,44,91,45,57,50,46,52,52,49,54,55,55,44,51,51,46,50,55,51,54,52,55,93,44,91,45,57,50,46,53,54,55,49,53,54,44,51,51,46,51,54,55,50,93,44,91,45,57,50,46,57,55,56,52,54,57,44,51,51,46,51,55,55,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,72,101,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,52,56,57,56,57,44,52,49,46,48,55,48,50,53,93,44,91,45,57,48,46,57,54,50,57,49,54,44,52,48,46,57,50,52,57,53,55,93,44,91,45,57,49,46,48,57,54,57,52,54,44,52,48,46,56,49,49,52,48,51,93,44,91,45,57,49,46,49,49,50,52,54,55,44,52,48,46,54,57,54,51,48,49,93,44,91,45,57,49,46,49,56,53,50,57,53,44,52,48,46,54,51,55,56,48,51,93,44,91,45,57,48,46,57,48,52,50,49,54,44,52,48,46,54,51,57,50,48,49,93,44,91,45,57,48,46,55,56,57,54,53,50,44,52,48,46,54,51,53,55,53,93,44,91,45,57,48,46,55,56,53,49,57,52,44,52,49,46,48,54,56,55,52,57,93,44,91,45,57,48,46,57,52,56,57,56,57,44,52,49,46,48,55,48,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,57,52,49,44,34,98,101,100,115,34,58,49,50,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,57,54,55,55,52,44,51,50,46,51,52,52,52,51,55,93,44,91,45,56,54,46,52,48,56,55,55,49,44,51,50,46,50,52,52,51,48,57,93,44,91,45,56,54,46,52,48,54,50,55,54,44,51,50,46,48,53,48,55,51,49,93,44,91,45,56,54,46,51,48,50,50,49,55,44,51,49,46,57,54,53,48,54,53,93,44,91,45,56,54,46,49,57,49,51,55,57,44,51,49,46,57,54,54,52,53,51,93,44,91,45,56,53,46,57,57,53,53,54,51,44,51,49,46,57,54,55,53,53,52,93,44,91,45,56,53,46,57,57,54,56,53,51,44,51,50,46,48,53,49,48,52,57,93,44,91,45,56,53,46,57,57,57,49,53,55,44,51,50,46,50,53,48,53,52,51,93,44,91,45,56,53,46,57,49,57,50,57,51,44,51,50,46,50,55,52,51,56,50,93,44,91,45,56,54,46,48,50,51,48,49,50,44,51,50,46,52,49,57,57,55,56,93,44,91,45,56,54,46,49,49,54,51,50,57,44,51,50,46,52,49,55,48,50,54,93,44,91,45,56,54,46,50,51,55,48,54,56,44,51,50,46,52,57,52,57,56,93,44,91,45,56,54,46,52,49,49,49,55,50,44,51,50,46,52,48,57,57,51,55,93,44,91,45,56,54,46,52,57,54,55,55,52,44,51,50,46,51,52,52,52,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,114,97,112,97,104,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,54,54,55,49,44,34,98,101,100,115,34,58,49,50,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,52,56,55,52,44,51,57,46,53,54,54,48,56,56,93,44,91,45,49,48,52,46,54,54,48,54,50,54,44,51,57,46,53,54,53,57,48,57,93,44,91,45,49,48,51,46,55,49,52,51,53,53,44,51,57,46,53,54,54,51,51,49,93,44,91,45,49,48,51,46,55,48,55,48,55,50,44,51,57,46,53,54,54,50,57,53,93,44,91,45,49,48,51,46,55,48,54,53,52,55,44,51,57,46,55,51,57,56,57,52,93,44,91,45,49,48,52,46,56,56,52,54,52,54,44,51,57,46,55,52,48,49,53,54,93,44,91,45,49,48,53,46,48,53,51,52,49,49,44,51,57,46,54,51,49,53,56,54,93,44,91,45,49,48,53,46,48,53,51,52,53,55,44,51,57,46,54,50,57,53,50,54,93,44,91,45,49,48,53,46,48,53,51,51,51,44,51,57,46,54,50,55,57,56,57,93,44,91,45,49,48,53,46,48,53,51,52,51,57,44,51,57,46,54,50,52,51,56,55,93,44,91,45,49,48,53,46,48,53,51,52,51,55,44,51,57,46,54,50,48,57,56,52,93,44,91,45,49,48,53,46,48,52,56,55,52,44,51,57,46,53,54,54,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,51,50,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,51,48,49,55,50,44,51,55,46,54,51,49,50,55,93,44,91,45,56,53,46,50,53,55,50,57,56,44,51,55,46,54,51,48,57,48,51,93,44,91,45,56,53,46,52,48,49,55,56,52,44,51,55,46,55,51,48,54,53,56,93,44,91,45,56,53,46,53,50,49,50,57,44,51,55,46,53,53,52,51,52,51,93,44,91,45,56,53,46,52,54,54,50,53,44,51,55,46,52,54,53,53,57,53,93,44,91,45,56,53,46,51,52,49,50,50,44,51,55,46,52,54,57,52,53,56,93,44,91,45,56,53,46,50,52,54,55,53,57,44,51,55,46,52,50,48,50,48,53,93,44,91,45,56,53,46,49,54,57,53,54,53,44,51,55,46,52,54,52,48,48,52,93,44,91,45,56,53,46,48,55,51,55,55,50,44,51,55,46,52,49,51,54,54,57,93,44,91,45,56,53,46,48,51,57,54,55,52,44,51,55,46,53,52,53,50,51,50,93,44,91,45,56,53,46,48,51,48,49,55,50,44,51,55,46,54,51,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,83,107,97,103,105,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,57,48,55,44,34,98,101,100,115,34,58,50,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,55,51,53,50,51,49,44,52,56,46,52,48,53,57,51,50,93,44,91,45,49,50,50,46,53,57,49,57,52,52,44,52,56,46,52,49,55,55,53,56,93,44,91,45,49,50,50,46,52,53,56,53,57,54,44,52,56,46,50,57,55,55,48,51,93,44,91,45,49,50,49,46,48,48,49,54,53,56,44,52,56,46,50,57,54,48,48,57,93,44,91,45,49,50,49,46,48,54,50,52,53,44,52,56,46,52,54,48,51,54,55,93,44,91,45,49,50,48,46,56,53,55,52,50,55,44,52,56,46,53,52,55,54,55,54,93,44,91,45,49,50,48,46,55,48,50,48,54,57,44,52,56,46,53,51,49,53,56,57,93,44,91,45,49,50,48,46,55,53,49,57,48,52,44,52,56,46,54,53,55,48,48,50,93,44,91,45,49,50,49,46,50,54,49,54,51,56,44,52,56,46,54,52,48,57,49,50,93,44,91,45,49,50,50,46,55,49,51,55,48,52,44,52,56,46,54,52,53,49,51,93,44,91,45,49,50,50,46,55,54,52,52,48,52,44,52,56,46,54,48,48,53,55,55,93,44,91,45,49,50,50,46,55,51,53,50,51,49,44,52,56,46,52,48,53,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,53,52,44,34,98,101,100,115,34,58,50,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,52,51,51,53,53,44,51,49,46,56,50,52,53,54,53,93,44,91,45,56,57,46,51,49,54,53,54,44,51,49,46,56,48,50,48,57,93,44,91,45,56,57,46,52,48,49,50,50,55,44,51,49,46,55,57,54,56,54,51,93,44,91,45,56,57,46,51,57,57,49,55,56,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,49,52,54,48,57,50,44,51,49,46,52,51,52,48,53,50,93,44,91,45,56,56,46,57,52,51,52,54,56,44,51,49,46,52,51,51,52,53,56,93,44,91,45,56,56,46,57,52,51,51,53,53,44,51,49,46,56,50,52,53,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,57,53,52,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,56,53,56,48,57,44,52,51,46,54,52,49,48,52,57,93,44,91,45,56,57,46,55,50,55,55,56,56,44,52,51,46,53,54,57,52,55,56,93,44,91,45,56,57,46,53,57,57,51,53,55,44,52,51,46,53,53,56,48,52,49,93,44,91,45,56,57,46,54,48,48,55,51,44,52,51,46,51,56,48,54,54,54,93,44,91,45,56,57,46,55,50,48,52,54,51,44,52,51,46,50,57,51,48,56,52,93,44,91,45,56,57,46,48,48,57,49,51,57,44,52,51,46,50,56,52,56,51,93,44,91,45,56,57,46,48,48,54,56,52,56,44,52,51,46,54,51,51,48,52,53,93,44,91,45,56,57,46,50,52,53,52,51,55,44,52,51,46,54,52,51,48,56,51,93,44,91,45,56,57,46,53,57,57,53,52,55,44,52,51,46,54,52,50,54,51,54,93,44,91,45,56,57,46,55,56,52,57,48,49,44,52,51,46,54,52,49,48,53,49,93,44,91,45,56,57,46,55,56,53,56,48,57,44,52,51,46,54,52,49,48,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,114,117,110,115,119,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,56,54,48,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,54,50,51,53,44,51,52,46,51,53,55,48,48,55,93,44,91,45,55,56,46,50,53,52,54,50,50,44,51,52,46,50,49,54,51,48,53,93,44,91,45,55,56,46,51,55,52,50,57,53,44,51,52,46,50,48,52,56,57,51,93,44,91,45,55,56,46,53,53,53,48,52,51,44,51,52,46,48,54,55,48,55,49,93,44,91,45,55,56,46,54,53,48,51,49,52,44,51,51,46,57,52,52,51,52,50,93,44,91,45,55,56,46,52,57,57,51,48,49,44,51,51,46,56,49,50,56,53,50,93,44,91,45,55,56,46,50,54,50,51,51,53,44,51,51,46,56,54,51,49,54,51,93,44,91,45,55,56,46,48,54,54,53,56,49,44,51,51,46,56,52,55,57,56,53,93,44,91,45,55,55,46,57,54,52,48,53,50,44,51,51,46,55,53,50,56,57,57,93,44,91,45,55,55,46,56,57,55,48,49,49,44,51,51,46,55,56,54,56,93,44,91,45,55,55,46,57,52,56,52,55,57,44,51,51,46,57,55,49,50,55,52,93,44,91,45,55,55,46,57,53,54,54,48,53,44,51,52,46,50,51,52,52,57,49,93,44,91,45,55,56,46,48,50,57,57,50,50,44,51,52,46,51,51,49,55,54,56,93,44,91,45,55,56,46,49,54,50,51,53,44,51,52,46,51,53,55,48,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,108,101,97,114,119,97,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,49,50,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,56,50,49,53,53,44,52,55,46,57,51,51,57,54,54,93,44,91,45,57,53,46,53,53,52,50,52,56,44,52,55,46,52,57,57,56,57,51,93,44,91,45,57,53,46,53,53,49,49,56,54,44,52,55,46,49,53,49,52,53,51,93,44,91,45,57,53,46,49,54,57,49,55,50,44,52,55,46,49,53,50,53,49,53,93,44,91,45,57,53,46,49,56,51,50,49,54,44,52,55,46,52,49,50,55,55,51,93,44,91,45,57,53,46,49,57,51,55,48,53,44,52,55,46,56,55,50,53,52,52,93,44,91,45,57,53,46,50,55,55,56,51,52,44,52,55,46,57,50,53,51,52,54,93,44,91,45,57,53,46,50,50,57,49,51,51,44,52,56,46,48,49,57,57,53,56,93,44,91,45,57,53,46,53,56,50,56,56,55,44,52,56,46,48,50,48,53,53,55,93,44,91,45,57,53,46,53,56,50,49,53,53,44,52,55,46,57,51,51,57,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,49,52,48,56,51,53,44,51,55,46,53,52,50,50,50,93,44,91,45,55,54,46,49,51,54,51,48,49,44,51,55,46,50,56,50,49,51,55,93,44,91,45,55,54,46,49,51,53,53,50,44,51,55,46,49,57,49,57,55,93,44,91,45,55,54,46,49,51,52,57,52,49,44,51,55,46,49,49,55,54,48,51,93,44,91,45,55,54,46,49,51,51,56,55,50,44,51,55,46,48,52,48,56,56,54,93,44,91,45,55,53,46,57,48,57,52,57,49,44,51,54,46,57,57,48,55,48,56,93,44,91,45,55,53,46,56,56,57,54,55,54,44,51,55,46,48,53,52,53,49,53,93,44,91,45,55,53,46,55,52,52,54,51,57,44,51,55,46,49,56,50,51,52,57,93,44,91,45,55,53,46,55,49,53,53,49,53,44,51,55,46,50,55,53,54,56,55,93,44,91,45,55,53,46,53,57,55,52,52,49,44,51,55,46,52,53,48,57,56,56,93,44,91,45,55,53,46,55,56,55,48,51,44,51,55,46,52,54,52,53,55,56,93,44,91,45,55,53,46,56,51,53,50,49,52,44,51,55,46,53,53,52,50,52,53,93,44,91,45,55,54,46,49,52,48,56,51,53,44,51,55,46,53,52,50,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,82,111,111,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,48,50,49,55,54,44,51,57,46,53,54,55,51,50,56,93,44,91,45,57,57,46,54,48,53,49,56,55,44,51,57,46,49,51,50,52,56,49,93,44,91,45,57,57,46,53,57,49,55,55,54,44,51,57,46,49,51,50,51,53,55,93,44,91,45,57,57,46,48,52,55,54,56,55,44,51,57,46,49,51,51,48,49,52,93,44,91,45,57,57,46,48,52,52,51,57,56,44,51,57,46,53,54,56,48,51,53,93,44,91,45,57,57,46,48,54,54,50,50,44,51,57,46,53,54,56,49,50,53,93,44,91,45,57,57,46,54,48,50,49,55,54,44,51,57,46,53,54,55,51,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,48,49,53,56,52,44,51,57,46,55,56,55,53,55,57,93,44,91,45,56,53,46,50,57,56,49,49,44,51,57,46,53,50,53,52,55,54,93,44,91,45,56,53,46,48,51,54,48,56,55,44,51,57,46,53,50,54,50,49,51,93,44,91,45,56,53,46,48,51,52,53,55,53,44,51,57,46,55,49,52,55,54,52,93,44,91,45,56,53,46,49,56,53,48,56,57,44,51,57,46,55,49,53,53,49,53,93,44,91,45,56,53,46,50,50,49,49,49,56,44,51,57,46,55,56,56,52,52,57,93,44,91,45,56,53,46,51,48,49,53,56,52,44,51,57,46,55,56,55,53,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,72,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,51,52,51,44,34,98,101,100,115,34,58,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,50,49,57,55,53,44,52,49,46,48,52,54,54,55,52,93,44,91,45,57,56,46,55,50,49,52,51,44,52,48,46,54,57,56,57,48,51,93,44,91,45,57,56,46,50,56,50,56,53,49,44,52,48,46,54,57,56,50,56,52,93,44,91,45,57,56,46,50,56,50,53,55,56,44,52,48,46,56,54,56,54,55,55,93,44,91,45,57,56,46,50,56,55,49,54,56,44,52,49,46,48,52,54,51,54,51,93,44,91,45,57,56,46,55,50,49,57,55,53,44,52,49,46,48,52,54,54,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,55,56,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,56,50,53,55,56,44,52,48,46,56,54,56,54,55,55,93,44,91,45,57,56,46,50,56,50,56,53,49,44,52,48,46,54,57,56,50,56,52,93,44,91,45,57,56,46,50,55,56,49,48,51,44,52,48,46,54,57,56,50,57,49,93,44,91,45,57,55,46,56,50,53,55,50,51,44,52,48,46,54,57,56,53,53,53,93,44,91,45,57,55,46,56,50,54,50,56,55,44,52,49,46,48,52,54,53,56,49,93,44,91,45,57,55,46,56,50,56,50,53,54,44,52,49,46,49,55,51,52,51,57,93,44,91,45,57,56,46,48,49,48,53,52,56,44,52,49,46,48,55,50,55,54,49,93,44,91,45,57,56,46,50,56,50,53,55,56,44,52,48,46,56,54,56,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,76,111,117,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,51,52,54,50,57,44,52,50,46,48,56,55,57,57,53,93,44,91,45,57,57,46,54,54,50,51,55,57,44,52,50,46,48,56,54,48,48,57,93,44,91,45,57,57,46,54,56,54,57,53,57,44,52,50,46,48,56,54,48,55,53,93,44,91,45,57,57,46,54,56,54,56,51,52,44,52,49,46,55,52,48,51,50,54,93,44,91,45,57,57,46,50,50,49,56,51,44,52,49,46,55,52,48,55,57,50,93,44,91,45,57,57,46,50,50,50,55,51,51,44,52,50,46,48,56,55,57,49,54,93,44,91,45,57,57,46,50,51,52,54,50,57,44,52,50,46,48,56,55,57,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,83,104,101,114,105,100,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,52,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,53,55,54,52,50,44,52,56,46,57,57,57,48,49,50,93,44,91,45,49,48,53,46,48,51,56,53,52,56,44,52,56,46,54,53,48,48,57,57,93,44,91,45,49,48,52,46,57,55,51,51,53,52,44,52,56,46,53,54,51,49,57,93,44,91,45,49,48,52,46,55,53,55,54,49,57,44,52,56,46,53,54,51,49,50,55,93,44,91,45,49,48,52,46,54,50,55,55,50,54,44,52,56,46,52,55,54,51,52,57,93,44,91,45,49,48,52,46,54,50,55,55,54,44,52,56,46,51,56,57,51,54,50,93,44,91,45,49,48,52,46,48,52,54,55,54,54,44,52,56,46,51,56,57,50,57,56,93,44,91,45,49,48,52,46,48,52,55,57,50,52,44,52,56,46,54,51,51,57,49,49,93,44,91,45,49,48,52,46,48,52,56,54,56,57,44,52,56,46,57,57,57,53,57,51,93,44,91,45,49,48,53,46,48,53,55,54,52,50,44,52,56,46,57,57,57,48,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,70,114,111,110,116,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,55,55,56,51,51,44,52,48,46,55,48,48,49,51,53,93,44,91,45,49,48,48,46,55,55,55,51,55,54,44,52,48,46,51,52,57,52,54,54,93,44,91,45,49,48,48,46,55,53,56,52,51,53,44,52,48,46,51,52,57,53,48,55,93,44,91,45,49,48,48,46,49,57,55,56,48,55,44,52,48,46,51,53,48,48,50,55,93,44,91,45,49,48,48,46,48,57,52,55,57,56,44,52,48,46,51,53,49,50,52,53,93,44,91,45,57,57,46,57,56,49,49,57,51,44,52,48,46,52,51,56,50,57,49,93,44,91,45,57,57,46,57,56,49,55,52,51,44,52,48,46,55,48,48,48,48,51,93,44,91,45,49,48,48,46,50,50,51,51,49,49,44,52,48,46,55,48,48,50,53,52,93,44,91,45,49,48,48,46,55,55,55,56,51,51,44,52,48,46,55,48,48,49,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,76,117,113,117,105,108,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,52,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,55,49,51,56,50,53,44,49,56,46,52,52,52,48,50,52,93,44,91,45,54,53,46,55,53,56,56,54,49,44,49,56,46,50,57,48,54,48,52,93,44,91,45,54,53,46,55,53,51,53,57,49,44,49,56,46,50,57,54,55,53,53,93,44,91,45,54,53,46,54,56,53,57,50,44,49,56,46,51,50,57,57,57,49,93,44,91,45,54,53,46,54,52,54,48,56,51,44,49,56,46,52,52,50,50,50,93,44,91,45,54,53,46,55,49,51,56,50,53,44,49,56,46,52,52,52,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,105,98,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,50,55,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,54,53,55,51,56,44,51,51,46,50,52,54,57,48,55,93,44,91,45,56,55,46,50,56,49,57,52,53,44,51,51,46,49,51,51,48,54,93,44,91,45,56,55,46,51,49,56,53,51,57,44,51,51,46,48,48,54,49,55,57,93,44,91,45,56,55,46,52,50,49,57,51,54,44,51,51,46,48,48,51,51,55,57,93,44,91,45,56,55,46,52,50,49,50,44,51,50,46,56,55,52,53,48,56,93,44,91,45,56,55,46,51,49,57,49,56,52,44,51,50,46,56,51,49,53,50,50,93,44,91,45,56,55,46,48,49,57,49,53,55,44,51,50,46,56,51,55,48,51,52,93,44,91,45,56,54,46,56,55,54,49,49,56,44,51,50,46,56,51,54,50,54,52,93,44,91,45,56,54,46,56,56,49,49,56,50,44,51,51,46,48,52,57,57,48,49,93,44,91,45,56,55,46,48,50,53,53,57,54,44,51,51,46,49,54,53,55,57,53,93,44,91,45,56,55,46,48,50,54,56,52,54,44,51,51,46,50,52,54,52,53,57,93,44,91,45,56,55,46,48,54,53,55,51,56,44,51,51,46,50,52,54,57,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,97,117,100,101,114,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,51,50,51,44,34,98,101,100,115,34,58,57,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,49,52,53,49,54,44,51,50,46,53,55,54,57,53,53,93,44,91,45,56,56,46,57,49,51,56,52,55,44,51,50,46,50,50,52,49,56,54,93,44,91,45,56,56,46,52,51,49,51,55,57,44,51,50,46,50,50,55,54,54,54,93,44,91,45,56,56,46,52,50,49,52,53,51,44,51,50,46,51,48,56,54,56,93,44,91,45,56,56,46,51,56,56,55,57,55,44,51,50,46,53,55,56,49,50,51,93,44,91,45,56,56,46,57,49,52,53,49,54,44,51,50,46,53,55,54,57,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,105,103,32,83,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,49,54,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,51,53,52,53,49,44,52,53,46,53,56,54,49,50,57,93,44,91,45,57,54,46,54,56,48,52,53,52,44,52,53,46,52,49,48,52,57,57,93,44,91,45,57,54,46,52,55,48,52,55,53,44,52,53,46,51,50,54,53,52,53,93,44,91,45,57,54,46,52,53,50,57,52,55,44,52,53,46,50,54,56,57,50,53,93,44,91,45,57,54,46,50,56,51,49,57,53,44,52,53,46,50,52,54,51,57,49,93,44,91,45,57,54,46,49,48,51,54,49,52,44,52,53,46,49,55,54,54,55,53,93,44,91,45,57,54,46,49,49,55,48,51,54,44,52,53,46,52,49,49,57,57,51,93,44,91,45,57,54,46,50,52,49,51,50,56,44,52,53,46,52,49,50,54,54,55,93,44,91,45,57,54,46,50,53,51,48,50,54,44,52,53,46,53,56,53,53,50,54,93,44,91,45,57,54,46,56,51,53,52,53,49,44,52,53,46,53,56,54,49,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,108,117,101,32,69,97,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,51,50,50,44,34,98,101,100,115,34,58,50,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,51,55,49,55,51,49,44,52,52,46,50,54,52,52,52,56,93,44,91,45,57,52,46,51,54,56,56,53,44,52,52,46,49,48,56,54,57,56,93,44,91,45,57,52,46,51,54,56,57,55,52,44,52,51,46,56,52,56,48,52,55,93,44,91,45,57,52,46,50,52,55,49,50,51,44,52,51,46,56,52,55,57,52,54,93,44,91,45,57,51,46,55,54,55,55,54,49,44,52,51,46,56,52,55,57,53,54,93,44,91,45,57,51,46,55,54,55,57,55,49,44,52,52,46,49,57,53,56,51,54,93,44,91,45,57,52,46,48,49,49,56,54,56,44,52,52,46,50,51,57,53,50,93,44,91,45,57,52,46,48,53,54,55,53,55,44,52,52,46,49,53,52,54,49,55,93,44,91,45,57,52,46,51,55,49,55,51,49,44,52,52,46,50,54,52,52,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,105,103,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,55,57,53,57,50,49,44,51,56,46,50,54,53,53,53,50,93,44,91,45,55,57,46,53,49,50,49,53,56,44,51,56,46,49,56,48,52,49,57,93,44,91,45,55,57,46,52,51,51,54,55,44,51,56,46,50,50,57,52,57,51,93,44,91,45,55,57,46,51,49,50,50,55,54,44,51,56,46,52,49,49,56,55,54,93,44,91,45,55,57,46,52,55,54,54,51,56,44,51,56,46,52,53,55,50,50,56,93,44,91,45,55,57,46,53,51,54,56,55,44,51,56,46,53,53,48,57,49,55,93,44,91,45,55,57,46,54,52,57,48,55,53,44,51,56,46,53,57,49,53,49,53,93,44,91,45,55,57,46,54,56,57,54,54,55,44,51,56,46,52,51,49,52,54,50,93,44,91,45,55,57,46,55,57,53,57,50,49,44,51,56,46,50,54,53,53,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,83,112,111,116,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,52,49,50,44,34,98,101,100,115,34,58,49,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,55,48,50,56,52,51,44,51,56,46,51,54,48,56,52,93,44,91,45,55,55,46,57,53,51,54,51,57,44,51,56,46,49,49,56,53,48,49,93,44,91,45,55,55,46,56,51,57,55,49,55,44,51,56,46,49,48,54,48,51,56,93,44,91,45,55,55,46,54,56,55,52,54,57,44,51,56,46,48,48,55,56,48,54,93,44,91,45,55,55,46,54,52,50,53,49,56,44,51,55,46,57,57,48,54,56,56,93,44,91,45,55,55,46,51,55,48,50,57,55,44,51,56,46,50,52,54,53,55,54,93,44,91,45,55,55,46,52,52,55,49,50,54,44,51,56,46,50,56,52,54,49,52,93,44,91,45,55,55,46,53,51,48,50,56,51,44,51,56,46,51,48,57,49,55,53,93,44,91,45,55,55,46,54,49,56,55,50,55,44,51,56,46,51,54,55,56,51,53,93,44,91,45,55,55,46,55,48,50,56,52,51,44,51,56,46,51,54,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,83,116,114,97,102,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,50,51,55,44,34,98,101,100,115,34,58,50,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,49,54,50,54,55,53,44,52,51,46,53,51,56,57,53,57,93,44,91,45,55,49,46,49,53,57,51,54,52,44,52,51,46,51,53,53,49,50,51,93,44,91,45,55,49,46,50,51,54,48,49,49,44,52,51,46,50,56,52,57,57,52,93,44,91,45,55,49,46,50,52,55,51,51,54,44,52,51,46,50,55,53,50,51,50,93,44,91,45,55,49,46,48,50,54,54,56,54,44,52,51,46,49,51,55,57,52,55,93,44,91,45,55,48,46,56,55,53,52,51,54,44,52,51,46,48,56,48,52,50,50,93,44,91,45,55,48,46,56,50,48,48,49,57,44,52,51,46,49,50,50,53,52,53,93,44,91,45,55,48,46,56,49,56,49,57,53,44,52,51,46,50,51,56,51,51,93,44,91,45,55,48,46,57,55,56,49,49,53,44,52,51,46,51,53,56,57,49,52,93,44,91,45,55,48,46,57,54,50,49,53,52,44,52,51,46,53,52,49,48,56,55,93,44,91,45,55,49,46,49,54,50,54,55,53,44,52,51,46,53,51,56,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,72,111,117,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,54,56,50,44,34,98,101,100,115,34,58,50,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,48,49,48,57,44,51,50,46,54,57,49,53,57,56,93,44,91,45,56,51,46,55,49,57,56,53,57,44,51,50,46,53,51,49,55,54,93,44,91,45,56,51,46,56,52,54,54,55,54,44,51,50,46,52,54,56,53,49,52,93,44,91,45,56,51,46,56,52,56,51,55,57,44,51,50,46,50,57,48,57,55,93,44,91,45,56,51,46,54,49,53,53,55,57,44,51,50,46,50,56,56,53,53,54,93,44,91,45,56,51,46,52,57,56,48,51,57,44,51,50,46,52,48,49,55,49,53,93,44,91,45,56,51,46,52,57,55,57,50,51,44,51,50,46,52,53,50,49,57,56,93,44,91,45,56,51,46,53,57,55,54,53,54,44,51,50,46,54,54,52,51,51,56,93,44,91,45,56,51,46,55,48,49,49,53,50,44,51,50,46,54,57,50,49,54,57,93,44,91,45,56,51,46,55,48,49,48,57,44,51,50,46,54,57,49,53,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,108,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,49,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,54,55,56,52,57,44,52,53,46,57,56,53,51,50,49,93,44,91,45,56,55,46,51,50,53,51,57,49,44,52,53,46,56,57,56,54,54,53,93,44,91,45,56,55,46,51,50,55,53,48,50,44,52,53,46,53,53,49,50,53,93,44,91,45,56,55,46,49,50,57,49,49,56,44,52,53,46,53,53,48,52,56,53,93,44,91,45,56,55,46,49,50,55,56,50,54,44,52,53,46,52,48,57,52,56,55,93,44,91,45,56,55,46,49,48,49,49,51,51,44,52,53,46,52,52,52,50,51,93,44,91,45,56,54,46,55,53,52,50,51,54,44,52,53,46,52,52,51,54,49,93,44,91,45,56,54,46,52,54,52,49,50,44,52,53,46,51,50,52,56,49,93,44,91,45,56,54,46,52,54,48,55,57,55,44,52,53,46,53,56,52,52,51,51,93,44,91,45,56,54,46,52,53,57,49,49,52,44,52,53,46,56,57,54,51,54,51,93,44,91,45,56,54,46,52,57,48,49,52,50,44,52,54,46,49,53,56,49,55,56,93,44,91,45,56,54,46,54,49,53,54,48,49,44,52,54,46,49,53,56,54,57,49,93,44,91,45,56,55,46,49,49,54,49,51,56,44,52,54,46,49,53,57,48,53,93,44,91,45,56,55,46,50,52,49,53,48,54,44,52,54,46,49,53,57,49,48,51,93,44,91,45,56,55,46,50,52,50,56,56,53,44,52,53,46,57,56,53,49,49,55,93,44,91,45,56,55,46,51,54,55,56,52,57,44,52,53,46,57,56,53,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,83,101,98,97,115,116,105,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,52,54,49,44,34,98,101,100,115,34,58,49,48,55,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,51,53,53,57,44,51,53,46,51,56,54,49,50,50,93,44,91,45,57,52,46,52,52,55,55,55,52,44,51,52,46,57,51,51,57,51,55,93,44,91,45,57,52,46,50,51,48,53,50,52,44,51,52,46,57,54,56,53,50,55,93,44,91,45,57,52,46,50,50,56,50,50,54,44,51,53,46,48,55,49,57,53,53,93,44,91,45,57,52,46,49,52,48,53,55,49,44,51,53,46,48,57,57,54,55,56,93,44,91,45,57,52,46,48,51,49,50,51,54,44,51,53,46,49,52,48,57,48,56,93,44,91,45,57,52,46,48,50,56,56,56,54,44,51,53,46,50,49,51,56,52,49,93,44,91,45,57,52,46,48,56,50,55,57,56,44,51,53,46,50,49,53,57,49,51,93,44,91,45,57,52,46,48,55,52,56,57,53,44,51,53,46,52,52,53,52,48,51,93,44,91,45,57,52,46,50,56,57,51,51,50,44,51,53,46,51,52,53,50,49,49,93,44,91,45,57,52,46,52,51,49,48,52,53,44,51,53,46,51,57,51,55,51,53,93,44,91,45,57,52,46,52,51,53,53,57,44,51,53,46,51,56,54,49,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,67,114,117,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,51,55,54,53,44,34,98,101,100,115,34,58,51,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,49,53,50,50,55,56,44,51,55,46,50,56,54,48,53,53,93,44,91,45,49,50,50,46,49,53,50,55,55,52,44,51,55,46,50,49,53,52,52,52,93,44,91,45,49,50,50,46,51,49,55,54,56,50,44,51,55,46,49,56,54,57,52,53,93,44,91,45,49,50,50,46,51,49,51,56,57,57,44,51,55,46,48,53,52,55,54,52,93,44,91,45,49,50,50,46,50,53,49,48,56,50,44,51,54,46,57,56,53,56,51,51,93,44,91,45,49,50,50,46,48,55,54,51,57,57,44,51,54,46,57,49,48,49,57,57,93,44,91,45,49,50,50,46,48,53,49,56,55,56,44,51,54,46,56,49,57,54,93,44,91,45,49,50,49,46,54,52,52,48,48,49,44,51,54,46,56,57,51,57,57,54,93,44,91,45,49,50,49,46,53,56,49,51,53,52,44,51,54,46,56,57,57,49,53,50,93,44,91,45,49,50,49,46,55,53,55,54,44,51,55,46,48,52,57,54,51,93,44,91,45,49,50,50,46,48,50,54,49,48,55,44,51,55,46,49,54,54,56,49,93,44,91,45,49,50,50,46,49,53,50,50,55,56,44,51,55,46,50,56,54,48,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,77,99,73,110,116,111,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,50,52,50,57,44,51,49,46,52,53,50,57,56,50,93,44,91,45,56,49,46,52,51,53,56,55,52,44,51,49,46,51,49,51,50,54,51,93,44,91,45,56,49,46,49,56,51,55,49,54,44,51,49,46,50,57,52,50,56,51,93,44,91,45,56,49,46,49,57,48,55,53,56,44,51,49,46,51,57,57,56,55,54,93,44,91,45,56,49,46,48,57,53,51,56,51,44,51,49,46,53,50,48,57,56,49,93,44,91,45,56,49,46,49,55,53,49,52,56,44,51,49,46,53,51,57,54,54,93,44,91,45,56,49,46,50,54,49,56,54,56,44,51,49,46,54,53,48,49,52,50,93,44,91,45,56,49,46,52,51,53,55,54,44,51,49,46,54,52,50,48,53,53,93,44,91,45,56,49,46,52,57,49,55,57,56,44,51,49,46,54,57,57,53,55,53,93,44,91,45,56,49,46,53,54,54,48,48,57,44,51,49,46,53,55,54,52,54,55,93,44,91,45,56,49,46,54,54,51,50,48,54,44,51,49,46,53,51,56,54,54,55,93,44,91,45,56,49,46,54,50,52,50,57,44,51,49,46,52,53,50,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,55,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,48,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,52,49,52,57,56,44,51,51,46,50,48,50,54,50,57,93,44,91,45,56,52,46,48,52,52,49,49,51,44,51,50,46,57,52,55,56,55,52,93,44,91,45,56,52,46,49,50,51,51,52,44,51,50,46,57,51,50,49,56,52,93,44,91,45,56,52,46,49,50,52,50,55,53,44,51,50,46,56,52,57,53,54,50,93,44,91,45,56,51,46,56,57,49,57,50,50,44,51,50,46,56,52,56,51,53,49,93,44,91,45,56,51,46,55,49,48,54,56,53,44,51,50,46,57,53,50,55,57,50,93,44,91,45,56,51,46,56,49,54,48,52,56,44,51,51,46,49,51,49,56,49,54,93,44,91,45,56,51,46,56,50,50,50,54,49,44,51,51,46,49,56,48,50,51,56,93,44,91,45,56,52,46,48,52,49,52,57,56,44,51,51,46,50,48,50,54,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,68,117,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,52,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,50,48,55,51,50,44,51,54,46,52,57,55,56,53,57,93,44,91,45,57,48,46,48,54,51,53,57,52,44,51,54,46,51,56,52,50,51,53,93,44,91,45,57,48,46,49,50,53,52,56,55,44,51,54,46,50,51,49,50,51,50,93,44,91,45,57,48,46,49,57,48,50,48,55,44,51,54,46,50,48,49,51,54,49,93,44,91,45,57,48,46,51,55,55,56,57,44,51,53,46,57,57,53,54,56,51,93,44,91,45,57,48,46,50,56,56,57,52,55,44,51,53,46,57,57,54,52,49,93,44,91,45,56,57,46,57,53,57,51,55,54,44,51,53,46,57,57,57,49,51,49,93,44,91,45,56,57,46,57,54,49,51,49,44,51,54,46,51,56,56,56,48,51,93,44,91,45,56,57,46,57,53,56,55,56,54,44,51,54,46,54,50,57,51,51,49,93,44,91,45,57,48,46,49,52,56,51,57,56,44,51,54,46,54,51,48,54,53,54,93,44,91,45,57,48,46,50,50,48,55,51,50,44,51,54,46,52,57,55,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,56,51,34,44,34,78,65,77,69,34,58,34,87,104,101,101,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,56,50,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,52,48,49,53,56,44,51,53,46,54,49,57,50,57,54,93,44,91,45,49,48,48,46,53,51,56,57,55,56,44,51,53,46,49,56,51,49,52,52,93,44,91,45,49,48,48,46,48,48,48,51,56,53,44,51,53,46,49,56,50,55,48,50,93,44,91,45,57,57,46,57,57,57,54,54,44,51,53,46,52,50,50,51,54,52,93,44,91,45,49,48,48,46,48,48,48,51,57,50,44,51,53,46,54,49,57,49,49,53,93,44,91,45,49,48,48,46,53,52,48,49,53,56,44,51,53,46,54,49,57,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,70,111,114,115,121,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,56,56,48,44,34,98,101,100,115,34,58,51,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,53,56,48,55,53,44,51,52,46,51,51,53,49,53,54,93,44,91,45,56,52,46,50,53,56,55,52,51,44,51,52,46,49,56,53,57,48,57,93,44,91,45,56,52,46,50,53,56,57,51,52,44,51,52,46,49,48,57,53,51,57,93,44,91,45,56,52,46,48,57,55,54,57,51,44,51,52,46,48,53,48,55,48,56,93,44,91,45,56,52,46,48,54,50,56,52,49,44,51,52,46,49,54,55,56,55,51,93,44,91,45,56,51,46,57,50,55,50,56,52,44,51,52,46,50,55,57,51,57,57,93,44,91,45,56,51,46,57,53,55,48,55,55,44,51,52,46,51,51,52,48,49,49,93,44,91,45,56,52,46,50,53,56,48,55,53,44,51,52,46,51,51,53,49,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,48,57,34,44,34,78,65,77,69,34,58,34,83,97,110,32,80,97,116,114,105,99,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,48,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,57,56,53,49,55,44,50,55,46,57,57,53,54,53,57,93,44,91,45,57,55,46,53,56,57,52,55,51,44,50,55,46,56,53,54,49,48,49,93,44,91,45,57,55,46,51,51,55,54,55,55,44,50,55,46,56,56,51,49,54,53,93,44,91,45,57,55,46,49,56,53,53,55,57,44,50,55,46,56,51,48,50,55,50,93,44,91,45,57,55,46,49,51,54,51,49,50,44,50,55,46,57,48,52,51,57,93,44,91,45,57,55,46,50,54,48,56,49,56,44,50,56,46,48,55,53,55,53,57,93,44,91,45,57,55,46,51,49,57,49,57,57,44,50,56,46,49,50,53,57,53,56,93,44,91,45,57,55,46,53,52,49,48,55,49,44,50,56,46,49,54,52,54,54,57,93,44,91,45,57,55,46,53,54,55,54,50,50,44,50,56,46,49,50,57,54,56,51,93,44,91,45,57,55,46,56,49,55,55,49,54,44,50,56,46,49,55,54,56,52,56,93,44,91,45,57,55,46,56,56,51,49,52,56,44,50,56,46,48,53,54,57,93,44,91,45,57,55,46,55,57,56,53,49,55,44,50,55,46,57,57,53,54,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,87,97,108,116,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,54,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,54,48,51,57,49,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,50,53,57,53,53,53,44,51,49,46,48,48,48,54,55,57,93,44,91,45,56,57,46,56,51,53,57,48,56,44,51,49,46,48,48,50,48,52,55,93,44,91,45,56,57,46,56,51,53,56,55,51,44,51,49,46,48,55,52,57,50,54,93,44,91,45,57,48,46,48,51,49,56,57,54,44,51,49,46,49,55,53,55,50,55,93,44,91,45,57,48,46,48,52,48,52,54,54,44,51,49,46,51,51,54,48,49,52,93,44,91,45,57,48,46,50,52,51,56,57,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,50,54,48,51,57,49,44,51,49,46,51,53,48,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,52,54,55,52,51,44,51,57,46,54,53,56,53,49,51,93,44,91,45,57,50,46,49,56,52,57,56,54,44,51,57,46,54,54,50,57,51,50,93,44,91,45,57,50,46,50,57,57,51,49,54,44,51,57,46,54,48,53,51,52,52,93,44,91,45,57,50,46,51,48,48,56,55,49,44,51,57,46,54,48,53,51,52,56,93,44,91,45,57,50,46,51,49,48,48,50,56,44,51,57,46,51,52,55,55,57,53,93,44,91,45,57,49,46,55,49,55,57,54,56,44,51,57,46,51,51,57,49,50,50,93,44,91,45,57,49,46,55,49,53,50,52,55,44,51,57,46,54,53,55,54,52,52,93,44,91,45,57,49,46,56,52,54,55,52,51,44,51,57,46,54,53,56,53,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,73,115,97,98,101,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,55,55,53,44,34,98,101,100,115,34,58,49,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,44,91,45,56,53,46,48,56,56,56,49,49,44,52,51,46,56,49,51,54,55,54,93,44,91,45,56,53,46,48,56,52,57,57,54,44,52,51,46,52,54,54,49,57,93,44,91,45,56,52,46,56,52,53,57,54,50,44,52,51,46,52,54,54,49,53,56,93,44,91,45,56,52,46,54,48,55,53,52,44,52,51,46,52,54,54,48,48,54,93,44,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,52,49,34,44,34,78,65,77,69,34,58,34,77,111,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,44,91,45,49,48,50,46,49,54,51,48,49,53,44,51,54,46,48,53,53,50,52,57,93,44,91,45,49,48,50,46,49,54,50,56,48,57,44,51,53,46,54,50,55,53,49,53,93,44,91,45,49,48,50,46,49,54,50,55,53,50,44,51,53,46,54,50,48,48,51,53,93,44,91,45,49,48,49,46,54,50,50,56,44,51,53,46,54,50,48,49,57,54,93,44,91,45,49,48,49,46,54,50,50,56,51,49,44,51,53,46,54,50,52,48,53,55,93,44,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,52,50,56,53,52,44,51,51,46,55,48,55,49,51,49,93,44,91,45,56,48,46,57,54,53,52,56,57,44,51,51,46,54,50,53,50,56,50,93,44,91,45,56,48,46,56,48,55,54,51,49,44,51,51,46,54,48,52,48,56,49,93,44,91,45,56,48,46,54,53,57,48,50,44,51,51,46,52,55,48,57,56,50,93,44,91,45,56,48,46,52,57,54,50,55,51,44,51,51,46,53,53,56,52,56,49,93,44,91,45,56,48,46,53,51,52,48,56,53,44,51,51,46,54,52,51,57,49,49,93,44,91,45,56,48,46,54,50,48,49,48,55,44,51,51,46,55,52,51,50,51,55,93,44,91,45,56,48,46,56,48,55,53,57,49,44,51,51,46,55,55,52,50,49,49,93,44,91,45,56,49,46,48,49,50,51,51,44,51,51,46,56,56,48,48,56,93,44,91,45,56,49,46,48,52,50,56,53,52,44,51,51,46,55,48,55,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,83,117,98,108,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,53,55,56,54,53,54,44,52,51,46,50,51,53,50,50,52,93,44,91,45,49,49,48,46,53,57,48,49,51,49,44,52,50,46,52,52,56,52,51,53,93,44,91,45,49,49,48,46,53,52,49,54,51,52,44,52,50,46,50,55,55,52,57,49,93,44,91,45,49,49,48,46,48,53,51,55,48,56,44,52,50,46,50,55,48,55,52,52,93,44,91,45,49,48,57,46,48,52,51,56,54,52,44,52,50,46,50,54,51,54,56,52,93,44,91,45,49,48,57,46,48,55,50,56,53,49,44,52,50,46,54,57,51,53,49,52,93,44,91,45,49,48,57,46,50,49,52,54,48,50,44,52,50,46,55,54,49,55,57,53,93,44,91,45,49,48,57,46,51,55,48,54,53,56,44,52,50,46,57,52,53,55,50,56,93,44,91,45,49,48,57,46,53,53,50,53,55,57,44,52,51,46,48,49,50,53,51,56,93,44,91,45,49,48,57,46,54,57,50,55,49,54,44,52,51,46,50,54,53,48,51,93,44,91,45,49,48,57,46,55,53,52,55,49,55,44,52,51,46,52,54,51,50,93,44,91,45,49,49,48,46,48,53,49,53,55,44,52,51,46,52,54,52,55,56,51,93,44,91,45,49,49,48,46,48,53,55,51,49,44,52,51,46,51,55,55,55,54,56,93,44,91,45,49,49,48,46,51,52,52,50,49,56,44,52,51,46,51,55,55,57,49,56,93,44,91,45,49,49,48,46,51,52,51,57,53,57,44,52,51,46,50,57,49,49,54,53,93,44,91,45,49,49,48,46,53,55,56,51,56,44,52,51,46,50,57,49,54,52,93,44,91,45,49,49,48,46,53,55,56,54,53,54,44,52,51,46,50,51,53,50,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,70,108,101,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,55,57,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,52,49,56,53,50,44,51,56,46,53,50,53,51,56,49,93,44,91,45,56,51,46,56,53,57,50,56,44,51,56,46,52,53,54,51,52,56,93,44,91,45,56,51,46,57,51,48,51,52,56,44,51,56,46,52,57,50,50,55,56,93,44,91,45,56,51,46,57,56,48,48,54,56,44,51,56,46,52,51,57,52,52,56,93,44,91,45,56,51,46,56,52,56,51,53,53,44,51,56,46,50,57,54,57,52,57,93,44,91,45,56,51,46,54,51,53,49,57,53,44,51,56,46,49,56,55,53,50,53,93,44,91,45,56,51,46,53,48,55,57,53,51,44,51,56,46,50,55,51,49,53,53,93,44,91,45,56,51,46,52,53,50,56,52,56,44,51,56,46,51,56,49,55,57,57,93,44,91,45,56,51,46,53,56,48,53,54,54,44,51,56,46,52,51,48,49,54,57,93,44,91,45,56,51,46,54,52,49,56,53,50,44,51,56,46,53,50,53,51,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,57,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,54,50,53,51,44,52,52,46,54,56,53,49,53,52,93,44,91,45,57,48,46,51,49,53,48,51,56,44,52,53,46,48,51,51,56,50,57,93,44,91,45,57,48,46,57,50,51,51,54,50,44,52,53,46,48,51,49,49,52,51,93,44,91,45,57,48,46,57,50,50,50,52,55,44,52,52,46,56,53,55,51,48,57,93,44,91,45,57,48,46,57,50,50,51,53,44,52,52,46,53,57,54,50,57,51,93,44,91,45,57,48,46,56,48,49,53,50,53,44,52,52,46,53,48,57,54,56,49,93,44,91,45,57,48,46,56,48,49,57,49,56,44,52,52,46,52,50,50,52,52,50,93,44,91,45,57,48,46,51,49,54,48,53,53,44,52,52,46,52,50,52,53,48,50,93,44,91,45,57,48,46,51,49,54,50,53,51,44,52,52,46,54,56,53,49,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,54,52,49,44,34,98,101,100,115,34,58,51,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,54,54,54,44,51,53,46,49,54,52,56,56,51,93,44,91,45,56,49,46,52,48,56,56,55,54,44,51,53,46,48,52,54,51,50,52,93,44,91,45,56,49,46,52,56,55,48,49,54,44,51,53,46,48,51,52,56,53,51,93,44,91,45,56,49,46,52,53,55,50,53,55,44,51,52,46,56,51,57,50,56,93,44,91,45,56,49,46,52,55,56,52,53,52,44,51,52,46,56,50,49,53,48,57,93,44,91,45,56,48,46,56,57,56,50,49,53,44,51,52,46,56,50,48,55,52,54,93,44,91,45,56,48,46,56,54,56,54,53,50,44,51,52,46,57,53,49,49,52,51,93,44,91,45,56,48,46,57,48,54,51,56,53,44,51,53,46,48,55,54,50,55,55,93,44,91,45,56,49,46,48,52,49,52,57,54,44,51,53,46,48,52,52,55,49,51,93,44,91,45,56,49,46,48,51,51,57,48,57,44,51,53,46,49,52,56,54,57,93,44,91,45,56,49,46,51,50,56,48,51,55,44,51,53,46,49,54,51,52,54,55,93,44,91,45,56,49,46,51,54,54,54,44,51,53,46,49,54,52,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,49,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,55,51,56,54,49,44,52,48,46,57,49,55,56,50,51,93,44,91,45,56,53,46,48,54,56,52,55,57,44,52,48,46,53,54,56,50,52,93,44,91,45,56,52,46,56,48,50,52,55,55,44,52,48,46,53,55,50,50,49,51,93,44,91,45,56,52,46,56,48,50,50,55,51,44,52,48,46,55,50,56,49,52,54,93,44,91,45,56,52,46,56,48,50,57,50,50,44,52,48,46,57,50,50,53,54,56,93,44,91,45,56,53,46,48,55,51,56,54,49,44,52,48,46,57,49,55,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,115,99,101,110,115,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,49,55,54,44,34,98,101,100,115,34,58,49,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,56,57,49,55,50,56,44,51,48,46,51,52,53,50,52,52,93,44,91,45,57,49,46,48,50,49,48,49,52,44,51,48,46,51,50,49,52,56,57,93,44,91,45,57,49,46,49,48,53,57,53,49,44,51,48,46,48,54,50,52,55,56,93,44,91,45,57,48,46,57,54,51,54,57,51,44,51,48,46,48,54,54,52,53,93,44,91,45,57,48,46,57,49,53,53,54,53,44,51,48,46,49,49,51,50,56,53,93,44,91,45,57,48,46,54,52,49,57,57,56,44,51,48,46,49,54,54,52,51,93,44,91,45,57,48,46,54,51,50,56,49,49,44,51,48,46,50,50,49,52,48,57,93,44,91,45,57,48,46,55,49,57,53,51,57,44,51,48,46,49,56,57,57,57,52,93,44,91,45,57,48,46,56,57,49,55,50,56,44,51,48,46,51,52,53,50,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,49,49,52,44,34,98,101,100,115,34,58,49,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,52,52,49,54,44,52,49,46,48,52,52,51,51,56,93,44,91,45,55,55,46,51,54,52,49,56,44,52,48,46,56,52,54,57,51,55,93,44,91,45,55,55,46,51,53,54,54,50,56,44,52,48,46,56,48,55,51,51,52,93,44,91,45,55,54,46,57,52,48,55,48,54,44,52,48,46,56,56,56,48,50,51,93,44,91,45,55,54,46,56,48,48,50,52,50,44,52,48,46,56,56,49,57,57,52,93,44,91,45,55,54,46,56,56,50,50,56,44,52,48,46,57,55,49,51,51,52,93,44,91,45,55,54,46,56,57,54,49,49,52,44,52,49,46,49,51,57,48,55,93,44,91,45,55,54,46,57,55,55,57,51,57,44,52,49,46,48,56,55,56,56,51,93,44,91,45,55,55,46,49,52,52,49,49,49,44,52,49,46,48,54,56,56,52,93,44,91,45,55,55,46,49,52,52,49,54,44,52,49,46,48,52,52,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,104,101,115,116,101,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,57,52,52,55,44,34,98,101,100,115,34,58,52,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,44,91,45,55,55,46,56,53,53,49,52,56,44,51,55,46,52,49,56,51,54,51,93,44,91,45,55,55,46,56,55,55,53,53,54,44,51,55,46,51,54,54,50,52,55,93,44,91,45,55,55,46,55,53,56,54,50,44,51,55,46,50,54,56,55,49,55,93,44,91,45,55,55,46,54,53,48,54,49,44,51,55,46,50,54,53,49,49,50,93,44,91,45,55,55,46,52,52,55,52,48,56,44,51,55,46,50,50,51,48,54,54,93,44,91,45,55,55,46,52,49,54,53,48,49,44,51,55,46,50,51,51,50,48,56,93,44,91,45,55,55,46,52,49,52,52,48,54,44,51,55,46,50,54,48,57,52,57,93,44,91,45,55,55,46,51,56,56,57,49,55,44,51,55,46,50,56,55,51,52,57,93,44,91,45,55,55,46,51,55,57,49,57,51,44,51,55,46,50,54,55,53,56,93,44,91,45,55,55,46,51,56,50,53,50,49,44,51,55,46,50,52,50,56,51,55,93,44,91,45,55,55,46,52,48,51,54,55,49,44,51,55,46,50,51,55,51,52,54,93,44,91,45,55,55,46,51,56,51,56,53,54,44,51,55,46,50,51,56,57,48,54,93,44,91,45,55,55,46,51,55,54,55,56,53,44,51,55,46,50,52,52,56,52,57,93,44,91,45,55,55,46,51,51,53,54,54,54,44,51,55,46,51,49,51,48,51,57,93,44,91,45,55,55,46,50,56,52,48,49,57,44,51,55,46,51,49,51,48,49,50,93,44,91,45,55,55,46,50,55,48,54,55,53,44,51,55,46,51,50,48,55,53,54,93,44,91,45,55,55,46,50,52,57,54,54,53,44,51,55,46,51,56,50,93,44,91,45,55,55,46,51,52,57,50,51,53,44,51,55,46,51,55,56,52,54,54,93,44,91,45,55,55,46,52,50,48,56,55,53,44,51,55,46,52,52,55,49,48,49,93,44,91,45,55,55,46,53,57,53,52,54,50,44,51,55,46,53,53,53,55,53,93,44,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,99,97,100,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,53,54,56,44,34,98,101,100,115,34,58,49,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,51,49,57,56,55,44,51,48,46,52,56,49,49,52,55,93,44,91,45,57,50,46,54,50,53,52,56,52,44,51,48,46,48,57,50,51,51,93,44,91,45,57,50,46,53,51,52,54,51,56,44,51,48,46,49,48,55,56,53,50,93,44,91,45,57,50,46,52,50,54,48,51,57,44,51,48,46,48,52,57,51,54,57,93,44,91,45,57,50,46,50,56,52,54,55,53,44,51,48,46,49,52,55,52,52,51,93,44,91,45,57,50,46,49,52,50,49,56,52,44,51,48,46,50,57,56,56,49,55,93,44,91,45,57,50,46,49,55,54,52,52,52,44,51,48,46,52,51,54,56,53,50,93,44,91,45,57,50,46,50,52,52,55,57,53,44,51,48,46,52,56,48,49,57,51,93,44,91,45,57,50,46,52,57,51,50,53,57,44,51,48,46,52,56,48,52,57,57,93,44,91,45,57,50,46,54,51,49,57,56,55,44,51,48,46,52,56,49,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,49,54,52,44,34,98,101,100,115,34,58,50,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,51,53,52,44,52,49,46,56,52,57,53,54,51,93,44,91,45,56,48,46,53,49,57,50,50,53,44,52,49,46,52,57,57,57,50,52,93,44,91,45,56,48,46,53,49,57,50,49,55,44,52,49,46,52,56,57,48,49,51,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,52,57,48,48,52,57,93,44,91,45,55,57,46,56,50,56,56,55,54,44,52,49,46,54,50,50,48,53,55,93,44,91,45,55,57,46,54,49,50,56,55,51,44,52,49,46,54,50,51,56,53,56,93,44,91,45,55,57,46,54,49,50,48,55,50,44,52,49,46,56,53,48,48,53,54,93,44,91,45,56,48,46,53,49,57,51,53,52,44,52,49,46,56,52,57,53,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,84,114,105,112,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,51,48,56,52,53,44,52,51,46,55,49,51,56,53,54,93,44,91,45,49,48,48,46,50,49,52,50,50,49,44,52,51,46,51,57,48,51,50,49,93,44,91,45,49,48,48,46,49,57,56,52,49,51,44,52,50,46,57,57,56,54,55,52,93,44,91,45,57,57,46,53,51,52,48,52,57,44,52,50,46,57,57,56,48,51,51,93,44,91,45,57,57,46,53,51,52,52,56,49,44,52,51,46,52,57,57,56,48,49,93,44,91,45,57,57,46,54,50,51,53,55,56,44,52,51,46,52,57,57,56,53,57,93,44,91,45,57,57,46,54,50,51,53,56,55,44,52,51,46,55,52,50,52,49,52,93,44,91,45,57,57,46,56,51,55,56,50,53,44,52,51,46,54,56,57,48,55,49,93,44,91,45,49,48,48,46,50,51,48,56,52,53,44,52,51,46,55,49,51,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,117,116,104,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,56,48,51,52,44,52,49,46,56,54,50,57,57,57,93,44,91,45,57,52,46,54,50,56,55,50,52,44,52,49,46,56,54,50,55,54,51,93,44,91,45,57,52,46,55,52,52,56,55,54,44,52,49,46,56,54,50,51,57,52,93,44,91,45,57,52,46,55,52,52,50,48,52,44,52,49,46,54,48,50,49,56,53,93,44,91,45,57,52,46,55,48,48,54,50,57,44,52,49,46,53,48,52,49,52,56,93,44,91,45,57,52,46,50,52,49,53,57,51,44,52,49,46,53,48,51,54,55,57,93,44,91,45,57,52,46,50,56,48,48,53,55,44,52,49,46,54,48,49,51,49,50,93,44,91,45,57,52,46,50,56,48,51,52,44,52,49,46,56,54,50,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,52,54,48,52,51,44,52,49,46,53,49,48,55,52,57,93,44,91,45,57,49,46,57,52,53,53,55,49,44,52,49,46,49,54,51,53,55,56,93,44,91,45,57,49,46,55,49,54,48,52,50,44,52,49,46,49,54,50,56,48,56,93,44,91,45,57,49,46,52,56,53,55,49,55,44,52,49,46,49,54,50,52,48,53,93,44,91,45,57,49,46,52,56,51,57,57,53,44,52,49,46,52,50,51,56,52,56,93,44,91,45,57,49,46,53,50,50,52,56,44,52,49,46,53,49,49,48,51,53,93,44,91,45,57,49,46,56,50,57,50,51,49,44,52,49,46,53,49,49,52,53,55,93,44,91,45,57,49,46,57,52,54,48,52,51,44,52,49,46,53,49,48,55,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,83,97,110,98,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,51,49,57,49,44,52,52,46,49,57,54,54,56,55,93,44,91,45,57,56,46,51,51,49,53,48,56,44,52,51,46,57,51,55,55,48,56,93,44,91,45,57,56,46,51,50,53,50,52,50,44,52,51,46,56,53,49,48,53,56,93,44,91,45,57,55,46,57,54,55,50,55,57,44,52,51,46,56,53,48,54,56,54,93,44,91,45,57,55,46,56,53,49,49,49,44,52,51,46,56,52,57,56,53,55,93,44,91,45,57,55,46,56,52,57,52,57,50,44,52,52,46,49,57,53,50,51,53,93,44,91,45,57,55,46,56,53,51,54,54,44,52,52,46,49,57,53,50,51,51,93,44,91,45,57,56,46,51,51,49,57,49,44,52,52,46,49,57,54,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,114,97,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,55,51,51,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,57,54,48,49,52,44,51,53,46,51,55,55,55,53,51,93,44,91,45,57,56,46,48,57,51,49,50,55,44,51,52,46,56,53,52,57,56,56,93,44,91,45,57,56,46,48,56,57,48,57,55,44,51,52,46,54,56,49,49,54,51,93,44,91,45,57,55,46,54,54,56,53,49,50,44,51,52,46,54,56,49,51,52,93,44,91,45,57,55,46,54,54,56,48,57,57,44,51,52,46,56,53,53,49,54,52,93,44,91,45,57,55,46,54,55,49,52,49,52,44,51,53,46,51,51,53,57,52,54,93,44,91,45,57,55,46,57,53,53,49,50,52,44,51,53,46,51,52,54,48,52,56,93,44,91,45,57,56,46,48,57,54,48,49,52,44,51,53,46,51,55,55,55,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,75,97,110,97,119,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,55,49,48,44,34,98,101,100,115,34,58,49,51,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,49,53,49,57,55,44,51,56,46,51,50,53,53,57,55,93,44,91,45,56,49,46,56,49,56,50,51,52,44,51,56,46,51,49,54,55,53,49,93,44,91,45,56,49,46,56,51,51,52,55,44,51,56,46,50,48,57,53,55,93,44,91,45,56,49,46,54,52,56,53,51,55,44,51,56,46,49,56,53,48,51,54,93,44,91,45,56,49,46,52,55,56,49,50,50,44,51,56,46,48,54,48,49,51,56,93,44,91,45,56,49,46,52,53,54,54,51,50,44,51,55,46,57,56,55,51,48,55,93,44,91,45,56,49,46,51,56,48,56,50,57,44,51,55,46,57,54,57,49,48,57,93,44,91,45,56,49,46,51,51,49,53,48,51,44,51,56,46,49,54,55,53,55,56,93,44,91,45,56,49,46,50,51,49,54,51,54,44,51,56,46,50,54,51,53,49,52,93,44,91,45,56,49,46,50,51,49,52,51,52,44,51,56,46,50,54,51,55,49,54,93,44,91,45,56,49,46,50,56,51,56,55,50,44,51,56,46,52,55,50,48,50,57,93,44,91,45,56,49,46,49,57,52,49,49,51,44,51,56,46,53,50,55,54,51,52,93,44,91,45,56,49,46,52,54,53,51,55,50,44,51,56,46,53,52,57,56,57,56,93,44,91,45,56,49,46,53,50,50,49,54,54,44,51,56,46,54,49,50,55,52,54,93,44,91,45,56,49,46,54,51,50,56,51,54,44,51,56,46,53,53,52,51,55,93,44,91,45,56,49,46,54,57,54,51,52,56,44,51,56,46,54,50,54,52,50,55,93,44,91,45,56,49,46,55,53,48,53,52,55,44,51,56,46,53,57,49,48,49,52,93,44,91,45,56,49,46,55,50,53,56,48,49,44,51,56,46,52,54,54,54,50,93,44,91,45,56,49,46,57,48,48,50,50,50,44,51,56,46,51,57,56,53,55,50,93,44,91,45,56,49,46,57,49,53,49,57,55,44,51,56,46,51,50,53,53,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,114,111,105,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,57,49,55,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,53,56,48,48,56,44,52,53,46,50,48,57,53,54,54,93,44,91,45,57,50,46,55,54,57,53,48,49,44,52,52,46,56,54,50,48,48,49,93,44,91,45,57,50,46,49,51,54,51,52,56,44,52,52,46,56,53,55,56,52,56,93,44,91,45,57,50,46,49,53,54,52,54,53,44,52,53,46,50,48,57,53,53,52,93,44,91,45,57,50,46,55,53,56,48,48,56,44,52,53,46,50,48,57,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,86,101,110,97,110,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,51,55,54,44,34,98,101,100,115,34,58,49,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,52,57,48,48,52,57,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,49,55,49,56,54,49,93,44,91,45,55,57,46,54,57,52,57,56,52,44,52,49,46,49,55,50,56,54,53,93,44,91,45,55,57,46,52,55,55,56,50,50,44,52,49,46,51,56,54,52,55,57,93,44,91,45,55,57,46,53,49,50,48,55,44,52,49,46,54,50,52,53,53,57,93,44,91,45,55,57,46,54,49,50,56,55,51,44,52,49,46,54,50,51,56,53,56,93,44,91,45,55,57,46,56,50,56,56,55,54,44,52,49,46,54,50,50,48,53,55,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,52,57,48,48,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,83,117,109,109,105,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,56,49,48,44,34,98,101,100,115,34,58,50,53,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,56,52,57,53,44,52,49,46,50,55,55,49,52,54,93,44,91,45,56,49,46,54,56,56,52,57,49,44,52,48,46,57,56,56,53,57,93,44,91,45,56,49,46,54,52,55,55,51,53,44,52,48,46,57,49,52,48,49,54,93,44,91,45,56,49,46,52,50,48,51,54,51,44,52,48,46,57,48,54,53,48,50,93,44,91,45,56,49,46,51,57,51,50,52,57,44,52,48,46,57,56,56,53,51,49,93,44,91,45,56,49,46,51,57,49,54,57,52,44,52,49,46,51,52,56,50,55,50,93,44,91,45,56,49,46,53,57,56,48,53,50,44,52,49,46,51,53,49,49,53,55,93,44,91,45,56,49,46,54,56,52,57,53,44,52,49,46,50,55,55,49,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,71,108,121,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,57,55,52,44,34,98,101,100,115,34,58,52,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,50,52,50,57,44,51,49,46,52,53,50,57,56,50,93,44,91,45,56,49,46,55,51,49,54,57,52,44,51,49,46,51,51,48,48,52,56,93,44,91,45,56,49,46,55,54,54,51,50,50,44,51,49,46,49,54,57,53,57,53,93,44,91,45,56,49,46,53,54,53,49,49,54,44,51,49,46,48,57,49,57,52,93,44,91,45,56,49,46,52,50,51,55,55,53,44,51,48,46,57,57,48,56,57,50,93,44,91,45,56,49,46,51,48,54,52,51,53,44,51,48,46,57,57,48,54,52,52,93,44,91,45,56,49,46,50,57,50,49,52,53,44,51,49,46,49,53,53,52,49,53,93,44,91,45,56,49,46,50,51,52,51,51,55,44,51,49,46,49,55,48,50,53,56,93,44,91,45,56,49,46,49,56,51,55,49,54,44,51,49,46,50,57,52,50,56,51,93,44,91,45,56,49,46,52,51,53,56,55,52,44,51,49,46,51,49,51,50,54,51,93,44,91,45,56,49,46,54,50,52,50,57,44,51,49,46,52,53,50,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,55,57,34,44,34,78,65,77,69,34,58,34,87,101,98,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,48,53,51,44,34,98,101,100,115,34,58,53,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,49,50,49,56,57,44,50,56,46,49,57,54,56,51,55,93,44,91,45,49,48,48,46,48,56,54,56,57,56,44,50,56,46,49,52,54,55,56,51,93,44,91,45,57,57,46,57,56,57,55,54,50,44,50,55,46,57,57,50,56,55,54,93,44,91,45,57,57,46,56,57,51,52,53,54,44,50,55,46,56,57,57,50,48,56,93,44,91,45,57,57,46,56,55,50,50,57,52,44,50,55,46,55,57,53,50,53,56,93,44,91,45,57,57,46,55,50,49,53,49,57,44,50,55,46,54,54,54,49,53,53,93,44,91,45,57,57,46,54,48,51,53,51,51,44,50,55,46,54,52,49,57,57,50,93,44,91,45,57,57,46,53,49,49,48,52,57,44,50,55,46,53,54,52,53,48,55,93,44,91,45,57,57,46,52,55,57,50,53,49,44,50,55,46,52,55,56,54,51,53,93,44,91,45,57,57,46,53,48,52,51,57,55,44,50,55,46,51,51,57,56,57,54,93,44,91,45,57,57,46,52,53,51,55,57,52,44,50,55,46,50,54,53,48,53,56,93,44,91,45,57,56,46,57,53,52,54,54,57,44,50,55,46,50,54,57,51,57,55,93,44,91,45,57,56,46,55,57,56,48,56,55,44,50,55,46,50,54,56,48,49,50,93,44,91,45,57,56,46,55,57,56,51,50,51,44,50,55,46,51,53,52,48,50,57,93,44,91,45,57,56,46,56,48,51,51,50,53,44,50,56,46,48,53,55,52,56,93,44,91,45,57,57,46,51,56,56,57,52,54,44,50,56,46,48,51,48,52,49,57,93,44,91,45,57,57,46,51,57,52,49,55,55,44,50,56,46,50,48,52,54,50,55,93,44,91,45,49,48,48,46,49,49,51,55,49,57,44,50,56,46,49,57,55,56,49,57,93,44,91,45,49,48,48,46,50,49,50,49,56,57,44,50,56,46,49,57,54,56,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,51,51,56,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,49,56,50,53,53,57,44,51,53,46,53,48,52,49,53,49,93,44,91,45,56,48,46,48,53,49,55,51,57,44,51,53,46,51,55,50,53,56,53,93,44,91,45,56,48,46,48,57,56,49,56,53,44,51,53,46,50,53,53,49,55,51,93,44,91,45,56,48,46,48,55,53,51,54,53,44,51,53,46,49,52,51,48,56,49,93,44,91,45,55,57,46,56,53,49,50,54,56,44,51,53,46,49,56,51,56,53,53,93,44,91,45,55,57,46,54,49,52,51,48,52,44,51,53,46,49,54,51,54,55,57,93,44,91,45,55,57,46,54,57,55,55,55,51,44,51,53,46,50,53,49,51,55,57,93,44,91,45,55,57,46,55,54,55,57,53,55,44,51,53,46,53,49,49,52,56,52,93,44,91,45,56,48,46,48,54,54,56,52,50,44,51,53,46,53,48,53,54,54,49,93,44,91,45,56,48,46,49,56,50,53,53,57,44,51,53,46,53,48,52,49,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,114,111,111,115,116,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,50,54,57,44,34,98,101,100,115,34,58,50,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,56,48,53,54,56,57,44,52,53,46,54,56,48,48,53,49,93,44,91,45,54,55,46,55,56,49,50,52,56,44,52,53,46,57,52,51,52,53,93,44,91,45,54,55,46,55,57,48,49,57,54,44,52,55,46,48,54,55,50,50,93,44,91,45,54,55,46,57,53,49,57,56,54,44,52,55,46,49,57,52,54,50,56,93,44,91,45,54,56,46,50,51,52,53,49,51,44,52,55,46,51,53,53,50,57,53,93,44,91,45,54,56,46,51,56,51,57,55,50,44,52,55,46,51,48,49,49,55,49,93,44,91,45,54,56,46,53,56,48,48,53,44,52,55,46,50,56,55,49,49,53,93,44,91,45,54,56,46,57,48,52,57,56,49,44,52,55,46,49,56,48,52,51,54,93,44,91,45,54,57,46,48,52,48,57,49,56,44,52,55,46,50,52,52,57,55,51,93,44,91,45,54,57,46,48,51,53,52,56,49,44,52,55,46,52,49,52,57,56,53,93,44,91,45,54,57,46,50,50,52,52,54,49,44,52,55,46,52,53,57,56,51,51,93,44,91,45,54,57,46,57,57,55,49,49,49,44,52,54,46,54,57,53,53,50,93,44,91,45,55,48,46,48,50,51,49,56,55,44,52,54,46,53,55,51,52,56,55,93,44,91,45,54,57,46,55,50,49,49,48,57,44,52,54,46,53,55,52,48,53,51,93,44,91,45,54,56,46,56,50,49,52,49,52,44,52,54,46,53,55,50,53,49,93,44,91,45,54,56,46,56,49,57,52,48,49,44,52,54,46,51,57,53,55,56,50,93,44,91,45,54,56,46,52,51,54,52,52,51,44,52,54,46,51,56,50,49,50,49,93,44,91,45,54,56,46,52,50,54,49,54,57,44,52,53,46,56,55,48,56,50,57,93,44,91,45,54,56,46,52,51,51,48,50,56,44,52,53,46,53,55,56,52,56,50,93,44,91,45,54,56,46,48,52,56,48,49,50,44,52,53,46,54,51,57,56,57,55,93,44,91,45,54,55,46,56,48,53,54,56,57,44,52,53,46,54,56,48,48,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,32,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,57,53,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,55,52,53,56,54,44,51,49,46,55,54,49,54,53,53,93,44,91,45,56,57,46,57,53,56,57,52,44,51,49,46,51,57,48,52,56,57,93,44,91,45,56,57,46,56,50,52,50,51,54,44,51,49,46,52,51,52,48,57,51,93,44,91,45,56,57,46,54,53,52,50,49,50,44,51,49,46,52,51,51,56,48,53,93,44,91,45,56,57,46,53,56,54,56,49,57,44,51,49,46,52,51,51,54,56,56,93,44,91,45,56,57,46,54,48,50,56,56,57,44,51,49,46,53,51,56,56,51,54,93,44,91,45,56,57,46,55,53,53,54,49,52,44,51,49,46,54,48,57,55,53,49,93,44,91,45,56,57,46,55,53,53,49,48,51,44,51,49,46,55,55,52,54,53,52,93,44,91,45,56,57,46,57,55,52,53,56,54,44,51,49,46,55,54,49,54,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,48,56,55,48,49,44,51,56,46,54,56,56,49,48,49,93,44,91,45,56,54,46,51,48,56,54,55,52,44,51,56,46,52,50,50,56,55,53,93,44,91,45,56,54,46,50,53,53,48,52,53,44,51,56,46,52,50,50,54,56,53,93,44,91,45,56,54,46,48,51,50,56,49,55,44,51,56,46,52,49,55,56,57,56,93,44,91,45,56,53,46,57,57,52,54,50,44,51,56,46,52,49,56,51,52,53,93,44,91,45,56,53,46,57,57,51,51,49,55,44,51,56,46,52,56,56,53,52,93,44,91,45,56,53,46,56,52,55,56,57,51,44,51,56,46,53,54,49,50,54,57,93,44,91,45,56,53,46,56,56,56,51,51,52,44,51,56,46,55,51,52,52,52,51,93,44,91,45,56,54,46,48,57,49,55,48,53,44,51,56,46,55,56,51,51,57,57,93,44,91,45,56,54,46,50,55,53,50,56,49,44,51,56,46,55,54,51,55,57,53,93,44,91,45,56,54,46,51,48,56,55,48,49,44,51,56,46,54,56,56,49,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,66,108,97,110,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,57,49,54,55,44,51,48,46,52,57,57,56,55,53,93,44,91,45,57,56,46,53,56,55,56,57,55,44,51,48,46,49,51,56,57,53,52,93,44,91,45,57,56,46,52,49,52,48,49,56,44,50,57,46,57,51,55,53,53,55,93,44,91,45,57,56,46,50,57,55,54,44,51,48,46,48,51,55,57,57,52,93,44,91,45,57,56,46,49,55,50,57,55,55,44,51,48,46,51,53,54,51,49,50,93,44,91,45,57,56,46,49,50,53,53,53,54,44,51,48,46,52,50,54,49,56,54,93,44,91,45,57,56,46,51,53,49,48,52,49,44,51,48,46,52,56,54,48,57,54,93,44,91,45,57,56,46,53,57,49,54,55,44,51,48,46,52,57,57,56,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,66,114,117,110,115,119,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,50,55,52,49,49,44,51,54,46,55,55,55,56,53,56,93,44,91,45,55,56,46,48,52,54,50,55,49,44,51,54,46,53,52,51,53,53,49,93,44,91,45,55,55,46,56,57,57,55,55,51,44,51,54,46,53,52,52,53,57,54,93,44,91,45,55,55,46,55,54,55,49,53,44,51,54,46,53,52,53,51,55,52,93,44,91,45,55,55,46,54,53,53,56,52,49,44,51,54,46,55,49,51,53,51,57,93,44,91,45,55,55,46,54,53,56,48,51,54,44,51,54,46,56,57,52,53,49,52,93,44,91,45,55,55,46,55,54,53,53,52,44,51,54,46,57,55,52,54,53,53,93,44,91,45,55,55,46,56,56,57,56,49,51,44,51,54,46,57,56,56,56,49,56,93,44,91,45,55,56,46,48,48,51,54,51,57,44,51,55,46,48,50,50,55,53,54,93,44,91,45,55,56,46,48,50,55,52,49,49,44,51,54,46,55,55,55,56,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,68,121,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,53,55,54,44,34,98,101,100,115,34,58,50,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,56,50,57,55,49,44,51,54,46,50,49,50,54,53,57,93,44,91,45,56,57,46,54,50,57,52,53,51,44,51,54,46,49,56,53,51,56,50,93,44,91,45,56,57,46,55,51,51,48,57,53,44,51,54,46,48,48,48,54,48,56,93,44,91,45,56,57,46,54,52,52,56,51,56,44,51,53,46,57,48,52,51,53,49,93,44,91,45,56,57,46,52,48,54,57,54,53,44,51,53,46,57,52,54,53,57,57,93,44,91,45,56,57,46,51,52,50,56,50,57,44,51,53,46,56,56,48,57,51,52,93,44,91,45,56,57,46,50,56,48,49,56,56,44,51,53,46,56,56,54,52,49,54,93,44,91,45,56,57,46,49,56,56,56,52,52,44,51,53,46,57,57,57,55,54,93,44,91,45,56,57,46,49,53,52,52,54,52,44,51,54,46,50,48,52,54,55,56,93,44,91,45,56,57,46,52,56,50,57,55,49,44,51,54,46,50,49,50,54,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,105,98,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,49,55,53,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,56,56,56,52,52,44,51,53,46,57,57,57,55,54,93,44,91,45,56,57,46,49,48,57,54,48,50,44,51,53,46,56,54,50,48,57,53,93,44,91,45,56,56,46,57,49,54,49,56,49,44,51,53,46,55,57,55,51,48,55,93,44,91,45,56,56,46,55,48,54,56,49,49,44,51,53,46,55,57,49,48,55,53,93,44,91,45,56,56,46,54,57,50,55,48,57,44,51,54,46,48,54,50,55,52,54,93,44,91,45,56,56,46,56,51,53,52,53,55,44,51,54,46,49,50,49,52,54,49,93,44,91,45,56,56,46,57,53,57,56,51,57,44,51,54,46,50,50,50,56,51,52,93,44,91,45,56,57,46,49,53,52,52,54,52,44,51,54,46,50,48,52,54,55,56,93,44,91,45,56,57,46,49,56,56,56,52,52,44,51,53,46,57,57,57,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,80,114,105,110,99,101,32,71,101,111,114,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,57,52,44,34,98,101,100,115,34,58,52,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,55,54,55,56,53,44,51,55,46,50,52,52,56,52,57,93,44,91,45,55,55,46,51,57,57,50,48,51,44,51,55,46,49,55,48,56,53,93,44,91,45,55,55,46,51,57,56,52,57,56,44,51,54,46,57,57,50,57,56,53,93,44,91,45,55,55,46,49,53,53,52,49,53,44,51,55,46,49,49,50,48,51,52,93,44,91,45,55,54,46,57,55,50,52,51,57,44,51,55,46,50,52,56,53,48,49,93,44,91,45,55,55,46,50,55,48,54,55,53,44,51,55,46,51,50,48,55,53,54,93,44,91,45,55,55,46,50,56,52,48,49,57,44,51,55,46,51,49,51,48,49,50,93,44,91,45,55,55,46,50,55,51,54,49,52,44,51,55,46,50,55,56,51,48,56,93,44,91,45,55,55,46,51,50,53,51,50,44,51,55,46,50,54,48,57,51,50,93,44,91,45,55,55,46,51,51,53,54,54,54,44,51,55,46,51,49,51,48,51,57,93,44,91,45,55,55,46,51,55,54,55,56,53,44,51,55,46,50,52,52,56,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,56,48,57,56,49,54,44,51,54,46,49,52,57,53,54,55,93,44,91,45,57,49,46,49,49,57,54,50,53,44,51,54,46,49,53,51,54,55,49,93,44,91,45,57,49,46,50,53,56,57,50,44,51,54,46,50,53,55,56,56,93,44,91,45,57,49,46,51,52,57,56,51,52,44,51,54,46,50,51,48,57,54,55,93,44,91,45,57,49,46,51,53,55,50,51,44,51,53,46,56,57,48,54,50,49,93,44,91,45,57,49,46,49,57,56,53,53,54,44,51,53,46,56,57,48,48,50,52,93,44,91,45,57,49,46,48,51,50,52,57,57,44,51,53,46,56,56,53,48,55,93,44,91,45,57,48,46,56,55,50,55,56,53,44,51,53,46,56,56,48,56,55,93,44,91,45,57,48,46,56,53,50,48,54,52,44,51,53,46,57,54,56,48,57,50,93,44,91,45,57,48,46,56,48,57,56,49,54,44,51,54,46,49,52,57,53,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,69,100,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,57,55,50,48,50,44,52,55,46,56,52,54,56,51,52,93,44,91,45,57,57,46,50,54,53,55,57,56,44,52,55,46,53,56,55,54,93,44,91,45,57,56,46,53,48,48,48,56,53,44,52,55,46,53,56,55,50,50,56,93,44,91,45,57,56,46,53,48,48,49,56,49,44,52,55,46,54,55,50,52,49,51,93,44,91,45,57,56,46,53,50,53,53,49,54,44,52,55,46,56,52,54,50,55,54,93,44,91,45,57,57,46,50,57,55,50,48,50,44,52,55,46,56,52,54,56,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,80,105,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,57,56,52,48,44,34,98,101,100,115,34,58,50,52,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,56,50,48,53,55,54,44,52,55,46,49,57,52,50,50,93,44,91,45,49,50,50,46,54,51,56,50,49,49,44,52,54,46,57,55,56,49,51,57,93,44,91,45,49,50,50,46,52,57,48,56,56,56,44,52,54,46,56,54,55,52,53,50,93,44,91,45,49,50,50,46,50,48,51,49,49,53,44,52,54,46,55,54,51,48,54,49,93,44,91,45,49,50,49,46,56,52,49,56,57,44,52,54,46,55,50,56,52,53,53,93,44,91,45,49,50,49,46,55,53,56,53,57,51,44,52,54,46,55,56,51,55,57,49,93,44,91,45,49,50,49,46,52,53,53,50,49,56,44,52,54,46,55,56,51,55,57,55,93,44,91,45,49,50,49,46,52,57,55,51,52,53,44,52,54,46,56,54,50,56,54,54,93,44,91,45,49,50,49,46,51,55,57,57,54,49,44,52,55,46,48,56,55,50,52,56,93,44,91,45,49,50,49,46,55,57,54,52,54,52,44,52,55,46,49,55,51,48,53,57,93,44,91,45,49,50,49,46,57,50,56,49,57,53,44,52,55,46,49,52,55,51,53,56,93,44,91,45,49,50,50,46,48,57,52,55,54,52,44,52,55,46,49,57,52,57,55,55,93,44,91,45,49,50,50,46,49,52,51,57,55,54,44,52,55,46,50,53,55,53,50,54,93,44,91,45,49,50,50,46,51,51,52,57,49,52,44,52,55,46,50,53,55,51,54,54,93,44,91,45,49,50,50,46,53,51,54,57,57,51,44,52,55,46,52,48,51,51,53,53,93,44,91,45,49,50,50,46,56,48,49,49,57,57,44,52,55,46,52,48,51,53,55,56,93,44,91,45,49,50,50,46,56,53,49,49,56,55,44,52,55,46,50,52,57,55,55,52,93,44,91,45,49,50,50,46,56,50,48,53,55,54,44,52,55,46,49,57,52,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,50,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,55,49,52,54,52,50,44,52,51,46,49,57,57,55,56,51,93,44,91,45,49,49,52,46,51,55,52,57,54,50,44,52,51,46,49,57,57,54,52,93,44,91,45,49,49,52,46,53,57,52,54,48,53,44,52,51,46,49,57,56,51,52,53,93,44,91,45,49,49,52,46,53,57,52,51,55,53,44,52,50,46,56,53,48,57,48,49,93,44,91,45,49,49,52,46,51,54,53,51,54,54,44,52,50,46,56,53,48,55,57,93,44,91,45,49,49,52,46,51,52,53,54,53,57,44,52,50,46,56,48,57,48,53,53,93,44,91,45,49,49,52,46,48,52,57,56,52,57,44,52,50,46,56,48,56,52,52,52,93,44,91,45,49,49,51,46,57,51,49,54,56,55,44,52,50,46,55,54,53,48,50,54,93,44,91,45,49,49,51,46,55,54,51,56,54,50,44,52,50,46,55,54,52,53,48,56,93,44,91,45,49,49,51,46,55,49,52,48,52,52,44,52,50,46,56,52,57,55,51,52,93,44,91,45,49,49,51,46,55,49,52,54,52,50,44,52,51,46,49,57,57,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,76,97,110,99,97,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,56,51,52,55,44,34,98,101,100,115,34,58,49,48,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,54,54,51,51,57,44,52,48,46,49,57,54,54,52,52,93,44,91,45,55,54,46,55,50,49,54,50,44,52,48,46,49,50,48,48,55,93,44,91,45,55,54,46,53,51,52,53,50,52,44,52,48,46,48,53,49,51,52,56,93,44,91,45,55,54,46,52,55,51,53,56,44,51,57,46,57,52,55,51,53,50,93,44,91,45,55,54,46,50,51,57,56,48,53,44,51,57,46,55,50,49,51,51,53,93,44,91,45,55,54,46,50,51,51,50,55,57,44,51,57,46,55,50,49,51,54,55,93,44,91,45,55,54,46,49,51,53,52,56,52,44,51,57,46,55,50,49,49,52,55,93,44,91,45,55,53,46,57,56,54,56,50,51,44,51,57,46,56,57,50,49,57,50,93,44,91,45,55,53,46,57,57,52,54,50,57,44,51,57,46,57,53,50,52,50,57,93,44,91,45,55,53,46,56,55,51,51,55,53,44,52,48,46,49,51,55,49,48,55,93,44,91,45,55,54,46,49,53,49,50,49,53,44,52,48,46,51,49,53,57,55,49,93,44,91,45,55,54,46,51,48,55,53,55,56,44,52,48,46,50,53,53,48,54,54,93,44,91,45,55,54,46,53,54,54,51,51,57,44,52,48,46,49,57,54,54,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,74,117,110,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,49,57,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,48,50,55,56,51,44,52,52,46,50,52,57,52,55,51,93,44,91,45,57,48,46,51,49,50,54,56,44,52,52,46,50,52,56,55,53,93,44,91,45,57,48,46,51,49,50,53,50,50,44,52,52,46,49,53,53,49,57,56,93,44,91,45,57,48,46,51,49,50,49,57,52,44,52,51,46,55,51,49,52,55,57,93,44,91,45,57,48,46,51,49,50,52,48,52,44,52,51,46,54,52,48,57,56,56,93,44,91,45,56,57,46,55,56,53,56,48,57,44,52,51,46,54,52,49,48,52,57,93,44,91,45,56,57,46,55,56,52,57,48,49,44,52,51,46,54,52,49,48,53,49,93,44,91,45,56,57,46,56,54,53,49,51,50,44,52,51,46,55,56,51,52,49,52,93,44,91,45,56,57,46,57,54,49,50,50,49,44,52,51,46,56,54,52,48,50,55,93,44,91,45,56,57,46,57,54,50,54,48,49,44,52,51,46,57,55,57,50,51,54,93,44,91,45,57,48,46,48,50,53,57,53,51,44,52,52,46,48,57,49,55,52,56,93,44,91,45,56,57,46,57,48,50,55,56,51,44,52,52,46,50,52,57,52,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,53,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,51,49,56,51,57,44,51,54,46,53,50,52,54,55,52,93,44,91,45,56,52,46,55,48,48,55,56,53,44,51,54,46,51,55,48,56,50,52,93,44,91,45,56,52,46,53,54,56,55,52,49,44,51,54,46,50,51,55,48,55,55,93,44,91,45,56,52,46,52,52,49,48,51,52,44,51,54,46,49,54,51,52,55,56,93,44,91,45,56,52,46,51,55,50,55,51,49,44,51,54,46,50,49,54,55,55,56,93,44,91,45,56,52,46,51,50,57,57,50,55,44,51,54,46,50,56,53,48,56,54,93,44,91,45,56,52,46,51,52,57,57,51,57,44,51,54,46,52,54,54,50,57,50,93,44,91,45,56,52,46,50,53,57,53,57,51,44,51,54,46,53,49,51,57,56,53,93,44,91,45,56,52,46,50,54,49,51,51,55,44,51,54,46,53,57,49,55,56,52,93,44,91,45,56,52,46,55,55,56,52,53,52,44,51,54,46,54,48,51,50,57,93,44,91,45,56,52,46,55,56,53,52,53,44,51,54,46,54,48,51,52,52,52,93,44,91,45,56,52,46,55,51,49,56,51,57,44,51,54,46,53,50,52,54,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,49,49,57,52,57,44,52,53,46,57,52,51,55,49,50,93,44,91,45,49,48,49,46,57,57,56,55,51,51,44,52,53,46,57,52,52,54,53,51,93,44,91,45,49,48,50,46,48,48,48,54,56,49,44,52,53,46,57,52,52,53,54,51,93,44,91,45,49,48,49,46,57,57,57,55,57,44,52,53,46,52,55,50,52,49,52,93,44,91,45,49,48,49,46,52,55,48,49,57,44,52,53,46,52,55,50,52,49,54,93,44,91,45,49,48,48,46,51,52,49,57,50,52,44,52,53,46,52,55,50,57,48,52,93,44,91,45,49,48,48,46,52,56,54,53,54,49,44,52,53,46,53,51,54,53,50,49,93,44,91,45,49,48,48,46,52,51,48,48,55,57,44,52,53,46,53,57,52,56,50,51,93,44,91,45,49,48,48,46,51,48,57,48,49,51,44,52,53,46,55,48,55,56,52,50,93,44,91,45,49,48,48,46,51,56,55,48,51,54,44,52,53,46,56,54,57,49,52,50,93,44,91,45,49,48,48,46,52,57,57,51,55,49,44,52,53,46,57,52,51,54,53,51,93,44,91,45,49,48,48,46,53,49,49,57,52,57,44,52,53,46,57,52,51,55,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,114,101,103,111,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,48,49,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,51,52,52,56,49,44,52,51,46,52,57,57,56,48,49,93,44,91,45,57,57,46,53,51,52,48,52,57,44,52,50,46,57,57,56,48,51,51,93,44,91,45,57,57,46,50,53,52,52,53,53,44,52,50,46,57,57,56,48,55,52,93,44,91,45,57,56,46,52,57,56,53,53,44,52,50,46,57,57,56,53,53,57,93,44,91,45,57,56,46,56,54,56,55,54,50,44,52,51,46,49,54,50,48,48,57,93,44,91,45,57,56,46,56,57,54,55,56,51,44,52,51,46,50,52,54,57,48,57,93,44,91,45,57,57,46,48,54,57,50,56,53,44,52,51,46,51,50,48,54,56,56,93,44,91,45,57,57,46,49,53,50,56,56,57,44,52,51,46,52,50,54,57,48,56,93,44,91,45,57,57,46,50,57,55,57,57,56,44,52,51,46,52,57,57,54,54,57,93,44,91,45,57,57,46,53,51,52,52,56,49,44,52,51,46,52,57,57,56,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,86,97,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,52,56,50,44,34,98,101,100,115,34,58,49,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,53,54,57,49,51,44,51,54,46,53,52,50,53,52,49,93,44,91,45,55,56,46,53,49,49,50,50,52,44,51,54,46,52,53,52,56,48,56,93,44,91,45,55,56,46,52,57,54,54,49,52,44,51,54,46,49,55,53,49,57,57,93,44,91,45,55,56,46,52,49,50,48,57,53,44,51,54,46,49,54,57,53,57,55,93,44,91,45,55,56,46,51,48,54,57,54,53,44,51,54,46,50,54,54,49,57,49,93,44,91,45,55,56,46,50,55,55,49,54,53,44,51,54,46,51,48,54,49,51,50,93,44,91,45,55,56,46,51,50,51,57,57,49,44,51,54,46,53,52,51,56,50,50,93,44,91,45,55,56,46,52,53,54,57,49,51,44,51,54,46,53,52,50,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,97,108,100,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,57,53,55,56,49,44,51,55,46,49,55,57,54,56,52,93,44,91,45,56,56,46,48,52,50,49,52,50,44,51,55,46,49,55,52,55,53,54,93,44,91,45,56,55,46,56,55,54,57,57,54,44,51,54,46,57,54,48,49,49,54,93,44,91,45,56,55,46,55,51,51,51,54,56,44,51,55,46,48,48,50,49,48,51,93,44,91,45,56,55,46,54,56,48,54,49,55,44,51,55,46,49,52,57,50,51,57,93,44,91,45,56,55,46,55,55,52,54,57,52,44,51,55,46,49,57,56,49,50,55,93,44,91,45,56,55,46,56,49,51,52,49,51,44,51,55,46,51,53,48,54,52,53,93,44,91,45,56,55,46,56,48,49,48,52,54,44,51,55,46,51,55,57,52,52,53,93,44,91,45,56,56,46,48,56,49,48,53,56,44,51,55,46,50,50,51,51,52,55,93,44,91,45,56,56,46,48,57,53,55,56,49,44,51,55,46,49,55,57,54,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,97,114,110,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,55,50,57,51,49,44,51,51,46,52,57,48,52,49,55,93,44,91,45,56,49,46,55,53,55,48,51,53,44,51,51,46,49,57,56,49,52,56,93,44,91,45,56,49,46,55,48,52,54,51,52,44,51,51,46,49,49,54,52,53,93,44,91,45,56,49,46,54,49,52,48,51,51,44,51,51,46,48,57,53,50,53,49,93,44,91,45,56,49,46,53,52,49,56,56,49,44,51,51,46,49,53,56,50,55,57,93,44,91,45,56,49,46,51,54,52,56,53,55,44,51,51,46,49,48,56,48,54,49,93,44,91,45,56,49,46,49,57,51,48,57,57,44,51,51,46,49,49,56,54,54,56,93,44,91,45,56,49,46,50,50,55,55,55,56,44,51,51,46,49,54,50,54,50,50,93,44,91,45,56,49,46,50,50,50,54,55,51,44,51,51,46,52,52,93,44,91,45,56,49,46,51,55,50,57,51,49,44,51,51,46,52,57,48,52,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,101,99,97,116,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,56,51,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,55,57,49,55,55,44,51,53,46,56,49,54,55,56,53,93,44,91,45,56,56,46,49,57,48,52,54,53,44,51,53,46,54,48,57,48,56,56,93,44,91,45,56,56,46,50,52,49,54,55,55,44,51,53,46,52,50,51,50,54,51,93,44,91,45,56,56,46,49,56,57,54,54,49,44,51,53,46,51,56,52,51,48,51,93,44,91,45,56,56,46,48,50,52,55,52,49,44,51,53,46,51,57,50,51,48,55,93,44,91,45,56,56,46,48,48,55,55,48,57,44,51,53,46,52,50,51,51,56,49,93,44,91,45,56,55,46,57,55,52,54,51,44,51,53,46,53,50,49,48,50,53,93,44,91,45,56,56,46,48,51,53,56,51,55,44,51,53,46,54,50,49,56,51,57,93,44,91,45,56,56,46,48,51,52,55,56,56,44,51,53,46,55,49,55,50,54,49,93,44,91,45,56,55,46,57,55,48,55,51,56,44,51,53,46,56,49,53,55,48,53,93,44,91,45,56,56,46,49,55,55,56,53,57,44,51,53,46,56,52,53,56,52,49,93,44,91,45,56,56,46,49,55,57,49,55,55,44,51,53,46,56,49,54,55,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,108,97,99,107,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,50,57,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,52,55,48,49,52,44,52,48,46,53,54,54,57,50,57,93,44,91,45,56,53,46,52,52,52,51,51,44,52,48,46,51,55,57,49,52,93,44,91,45,56,53,46,50,49,57,57,48,49,44,52,48,46,51,55,57,48,51,52,93,44,91,45,56,53,46,50,48,49,49,52,54,44,52,48,46,53,54,55,50,52,50,93,44,91,45,56,53,46,52,52,55,48,49,52,44,52,48,46,53,54,54,57,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,69,116,111,119,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,57,51,57,44,34,98,101,100,115,34,58,55,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,48,54,48,56,54,44,51,52,46,50,48,48,55,53,54,93,44,91,45,56,54,46,51,48,51,53,49,54,44,51,52,46,48,57,57,48,55,51,93,44,91,45,56,54,46,51,50,53,54,50,50,44,51,51,46,57,52,48,49,52,55,93,44,91,45,56,54,46,50,49,53,53,50,53,44,51,51,46,57,56,55,52,50,49,93,44,91,45,56,54,46,48,54,53,50,55,50,44,51,51,46,56,52,50,49,57,56,93,44,91,45,56,53,46,56,56,49,55,54,56,44,51,51,46,57,53,48,50,57,57,93,44,91,45,56,53,46,55,51,56,57,55,53,44,51,51,46,57,54,56,52,54,93,44,91,45,56,53,46,56,52,51,54,49,55,44,51,52,46,50,48,48,48,48,54,93,44,91,45,56,54,46,49,48,54,48,56,54,44,51,52,46,50,48,48,55,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,51,55,52,57,54,50,44,52,51,46,49,57,57,54,52,93,44,91,45,49,49,52,46,51,57,52,54,48,54,44,52,51,46,51,50,54,52,54,55,93,44,91,45,49,49,52,46,53,51,52,52,56,56,44,52,51,46,51,51,51,51,56,51,93,44,91,45,49,49,52,46,53,49,50,52,51,56,44,52,51,46,52,54,48,52,53,52,93,44,91,45,49,49,52,46,54,56,51,49,52,44,52,51,46,53,57,51,51,54,55,93,44,91,45,49,49,52,46,55,48,50,48,53,44,52,51,46,56,48,53,52,49,51,93,44,91,45,49,49,52,46,57,56,57,50,53,56,44,52,51,46,56,53,56,53,54,51,93,44,91,45,49,49,53,46,48,56,51,48,56,57,44,52,51,46,54,48,52,50,57,50,93,44,91,45,49,49,53,46,48,56,54,49,53,53,44,52,51,46,49,57,56,48,54,52,93,44,91,45,49,49,52,46,53,57,52,54,48,53,44,52,51,46,49,57,56,51,52,53,93,44,91,45,49,49,52,46,51,55,52,57,54,50,44,52,51,46,49,57,57,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,82,101,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,49,48,49,44,34,98,101,100,115,34,58,50,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,50,50,49,51,54,44,51,56,46,49,55,51,55,49,51,93,44,91,45,57,56,46,52,55,50,55,57,52,44,51,56,46,49,55,50,55,53,55,93,44,91,45,57,56,46,52,55,50,50,53,55,44,51,55,46,56,50,52,52,57,55,93,44,91,45,57,56,46,52,54,52,56,48,52,44,51,55,46,55,51,50,54,55,53,93,44,91,45,57,55,46,56,48,55,56,50,51,44,51,55,46,55,51,51,56,53,53,93,44,91,45,57,55,46,54,57,56,54,57,50,44,51,55,46,55,51,53,48,53,54,93,44,91,45,57,55,46,55,48,49,57,54,57,44,51,55,46,57,49,49,51,50,53,93,44,91,45,57,55,46,55,48,49,56,52,49,44,51,56,46,49,55,51,56,49,52,93,44,91,45,57,55,46,57,50,50,49,51,54,44,51,56,46,49,55,51,55,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,97,117,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,55,55,54,44,34,98,101,100,115,34,58,50,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,51,57,50,51,50,44,51,53,46,54,53,57,49,49,93,44,91,45,56,55,46,50,57,52,53,51,52,44,51,53,46,52,52,52,54,55,54,93,44,91,45,56,55,46,50,48,54,53,55,56,44,51,53,46,52,51,51,50,48,55,93,44,91,45,56,55,46,49,50,48,56,56,51,44,51,53,46,52,53,53,54,54,93,44,91,45,56,54,46,57,54,48,56,48,52,44,51,53,46,52,49,55,48,50,49,93,44,91,45,56,54,46,56,52,57,53,55,51,44,51,53,46,53,50,53,53,49,53,93,44,91,45,56,54,46,55,56,50,48,49,54,44,51,53,46,55,48,54,53,57,53,93,44,91,45,56,55,46,50,49,53,48,57,57,44,51,53,46,56,53,48,54,53,49,93,44,91,45,56,55,46,50,51,52,49,52,51,44,51,53,46,55,50,52,54,57,49,93,44,91,45,56,55,46,51,51,57,50,51,50,44,51,53,46,54,53,57,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,71,111,115,104,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,51,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,54,53,53,54,51,57,44,52,50,46,54,48,57,52,54,56,93,44,91,45,49,48,52,46,54,53,51,51,51,56,44,52,49,46,54,53,51,48,48,55,93,44,91,45,49,48,52,46,54,53,50,57,57,50,44,52,49,46,53,54,53,48,49,52,93,44,91,45,49,48,52,46,48,53,50,53,52,44,52,49,46,53,54,52,50,55,52,93,44,91,45,49,48,52,46,48,53,50,54,56,56,44,52,49,46,54,57,55,57,53,52,93,44,91,45,49,48,52,46,48,53,50,54,52,53,44,52,50,46,48,48,49,55,49,56,93,44,91,45,49,48,52,46,48,53,50,56,51,56,44,52,50,46,54,49,49,55,54,55,93,44,91,45,49,48,52,46,54,53,53,54,51,57,44,52,50,46,54,48,57,52,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,82,117,115,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,56,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,55,56,55,52,57,44,52,53,46,54,51,56,50,54,52,93,44,91,45,57,49,46,53,52,48,50,57,52,44,52,53,46,54,51,55,54,48,53,93,44,91,45,57,49,46,53,52,49,51,50,50,44,52,53,46,50,57,50,50,50,93,44,91,45,57,48,46,57,50,53,50,50,50,44,52,53,46,50,57,50,48,54,49,93,44,91,45,57,48,46,57,50,53,51,52,51,44,52,53,46,51,55,57,51,53,93,44,91,45,57,48,46,54,55,56,55,55,51,44,52,53,46,51,55,55,57,48,55,93,44,91,45,57,48,46,54,55,56,55,52,57,44,52,53,46,54,51,56,50,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,87,97,117,107,101,115,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,56,56,55,57,44,34,98,101,100,115,34,58,49,48,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,51,53,56,52,51,44,52,51,46,49,57,54,48,52,56,93,44,91,45,56,56,46,53,52,49,53,51,53,44,52,50,46,56,52,50,57,57,54,93,44,91,45,56,56,46,51,48,54,51,56,52,44,52,50,46,56,52,50,48,57,53,93,44,91,45,56,56,46,48,54,57,57,50,52,44,52,50,46,56,52,51,51,50,51,93,44,91,45,56,56,46,48,54,51,51,53,51,44,52,51,46,49,57,50,49,49,55,93,44,91,45,56,56,46,52,49,55,57,56,55,44,52,51,46,49,57,52,54,57,55,93,44,91,45,56,56,46,53,51,53,56,52,51,44,52,51,46,49,57,54,48,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,71,97,114,114,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,52,52,56,56,56,44,51,55,46,55,49,51,48,55,53,93,44,91,45,56,52,46,54,53,56,50,57,54,44,51,55,46,54,51,52,53,48,49,93,44,91,45,56,52,46,52,52,54,55,49,57,44,51,55,46,52,56,53,56,57,51,93,44,91,45,56,52,46,51,52,55,56,48,53,44,51,55,46,53,51,57,48,54,52,93,44,91,45,56,52,46,53,50,53,54,52,51,44,51,55,46,55,54,57,52,57,55,93,44,91,45,56,52,46,55,49,54,57,50,53,44,51,55,46,56,49,53,51,56,57,93,44,91,45,56,52,46,55,52,52,56,56,56,44,51,55,46,55,49,51,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,78,111,114,102,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,56,50,52,57,44,34,98,101,100,115,34,58,49,51,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,49,57,49,49,53,53,44,52,50,46,50,56,51,48,53,57,93,44,91,45,55,49,46,52,55,56,49,49,57,44,52,50,46,49,53,54,55,56,50,93,44,91,45,55,49,46,52,57,56,50,53,57,44,52,50,46,48,49,55,50,55,50,93,44,91,45,55,49,46,51,56,49,50,57,57,44,52,49,46,57,56,53,48,56,52,93,44,91,45,55,49,46,48,56,48,52,56,51,44,52,50,46,48,57,53,53,51,57,93,44,91,45,55,48,46,57,50,52,56,55,55,44,52,50,46,49,53,55,53,56,93,44,91,45,55,48,46,57,54,48,49,57,50,44,52,50,46,50,57,57,52,57,56,93,44,91,45,55,49,46,49,57,49,49,53,53,44,52,50,46,50,56,51,48,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,101,110,100,114,105,99,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,57,52,48,44,34,98,101,100,115,34,58,50,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,57,53,49,50,55,44,51,57,46,56,54,52,56,52,53,93,44,91,45,56,54,46,54,56,55,52,48,54,44,51,57,46,54,51,48,52,51,55,93,44,91,45,56,54,46,54,53,54,54,53,44,51,57,46,54,48,49,51,57,53,93,44,91,45,56,54,46,52,54,53,54,48,53,44,51,57,46,54,48,48,55,54,57,93,44,91,45,56,54,46,51,50,54,51,52,49,44,51,57,46,54,51,50,49,55,55,93,44,91,45,56,54,46,51,50,54,50,57,51,44,51,57,46,57,50,52,48,50,57,93,44,91,45,56,54,46,54,57,53,48,55,49,44,51,57,46,57,50,50,55,55,93,44,91,45,56,54,46,54,57,53,49,50,55,44,51,57,46,56,54,52,56,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,53,53,49,44,34,98,101,100,115,34,58,49,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,57,53,48,55,51,44,51,55,46,57,53,53,51,52,51,93,44,91,45,56,57,46,54,55,52,51,50,49,44,51,55,46,56,48,51,49,53,50,93,44,91,45,56,57,46,53,49,50,48,48,57,44,51,55,46,54,56,53,53,50,53,93,44,91,45,56,57,46,53,50,49,53,54,52,44,51,55,46,53,55,50,49,53,54,93,44,91,45,56,57,46,52,52,56,53,57,56,44,51,55,46,53,57,56,56,50,49,93,44,91,45,56,57,46,49,53,51,54,49,55,44,51,55,46,54,48,48,50,51,55,93,44,91,45,56,57,46,49,53,49,49,55,54,44,51,55,46,56,54,49,57,57,57,93,44,91,45,56,57,46,49,55,55,53,57,55,44,51,55,46,57,53,48,51,49,49,93,44,91,45,56,57,46,53,57,53,48,55,51,44,51,55,46,57,53,53,51,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,71,101,111,114,103,101,116,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,54,48,53,44,34,98,101,100,115,34,58,52,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,51,49,55,48,52,49,44,51,51,46,55,55,57,56,55,56,93,44,91,45,55,57,46,52,48,57,51,51,50,44,51,51,46,54,56,56,56,57,93,44,91,45,55,57,46,52,51,53,55,51,51,44,51,51,46,53,55,50,55,48,50,93,44,91,45,55,57,46,53,57,48,49,49,44,51,51,46,52,52,51,53,52,93,44,91,45,55,57,46,54,55,55,48,49,52,44,51,51,46,51,48,52,57,52,52,93,44,91,45,55,57,46,52,52,54,54,57,57,44,51,51,46,50,49,51,52,53,56,93,44,91,45,55,57,46,50,54,49,56,51,44,51,51,46,48,52,57,55,57,51,93,44,91,45,55,57,46,48,57,49,54,49,52,44,51,51,46,49,53,57,48,53,54,93,44,91,45,55,57,46,49,50,48,50,49,55,44,51,51,46,50,52,54,57,51,50,93,44,91,45,55,57,46,48,56,55,53,56,49,44,51,51,46,51,54,57,50,56,55,93,44,91,45,55,56,46,57,50,54,48,55,53,44,51,51,46,53,55,50,54,53,56,93,44,91,45,55,57,46,49,48,49,48,55,52,44,51,51,46,53,55,50,57,54,57,93,44,91,45,55,57,46,49,57,48,50,54,52,44,51,51,46,55,48,53,55,56,55,93,44,91,45,55,57,46,51,49,55,48,52,49,44,51,51,46,55,55,57,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,72,101,116,116,105,110,103,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,57,54,55,52,52,44,52,54,46,54,51,49,48,50,54,93,44,91,45,49,48,50,46,57,50,55,52,53,49,44,52,54,46,54,51,48,48,50,93,44,91,45,49,48,50,46,57,50,52,53,52,55,44,52,54,46,50,56,49,53,49,56,93,44,91,45,49,48,50,46,52,57,55,54,52,50,44,52,54,46,50,56,51,49,57,53,93,44,91,45,49,48,50,46,52,57,55,49,51,55,44,52,54,46,50,48,53,57,48,52,93,44,91,45,49,48,49,46,57,57,55,57,51,44,52,54,46,50,48,53,51,50,52,93,44,91,45,49,48,50,46,48,52,54,55,56,57,44,52,54,46,50,56,51,55,52,54,93,44,91,45,49,48,50,46,48,53,49,50,52,44,52,54,46,54,51,48,57,49,55,93,44,91,45,49,48,50,46,48,57,54,55,52,52,44,52,54,46,54,51,49,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,71,114,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,49,54,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,53,49,50,50,54,44,51,57,46,52,57,55,55,51,57,93,44,91,45,49,48,57,46,49,48,54,57,55,50,44,51,57,46,52,54,49,57,55,57,93,44,91,45,49,48,57,46,57,53,51,51,52,57,44,51,57,46,52,54,49,56,48,49,93,44,91,45,49,49,48,46,48,50,51,57,54,51,44,51,57,46,52,54,57,50,54,56,93,44,91,45,49,49,48,46,48,50,52,49,49,56,44,51,57,46,52,54,57,50,54,57,93,44,91,45,49,49,48,46,48,50,50,49,54,54,44,51,57,46,51,53,50,48,49,56,93,44,91,45,49,49,48,46,48,55,55,50,55,44,51,57,46,50,55,53,56,54,57,93,44,91,45,49,49,48,46,49,53,54,50,50,50,44,51,57,46,48,51,50,54,53,52,93,44,91,45,49,49,48,46,49,54,50,53,50,57,44,51,56,46,56,54,51,57,50,50,93,44,91,45,49,49,48,46,48,56,49,57,51,57,44,51,56,46,55,53,54,54,54,54,93,44,91,45,49,48,57,46,57,57,52,50,56,51,44,51,56,46,53,50,55,49,49,56,93,44,91,45,49,49,48,46,48,50,53,52,48,50,44,51,56,46,52,57,57,57,56,49,93,44,91,45,49,48,57,46,48,54,48,49,49,57,44,51,56,46,52,57,57,57,56,57,93,44,91,45,49,48,57,46,48,53,48,55,54,53,44,51,57,46,51,54,54,54,55,55,93,44,91,45,49,48,57,46,48,53,49,50,50,54,44,51,57,46,52,57,55,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,84,111,111,101,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,49,56,53,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,52,57,51,53,49,53,44,52,49,46,48,55,54,56,56,56,93,44,91,45,49,49,50,46,55,57,57,51,53,57,44,52,48,46,57,57,57,57,51,57,93,44,91,45,49,49,52,46,48,52,50,48,50,57,44,52,48,46,57,57,57,56,57,54,93,44,91,45,49,49,52,46,48,52,54,54,49,52,44,52,48,46,49,49,54,57,51,54,93,44,91,45,49,49,52,46,48,52,55,48,50,54,44,51,57,46,57,48,54,48,57,55,93,44,91,45,49,49,51,46,50,52,56,52,57,56,44,51,57,46,57,48,52,55,49,52,93,44,91,45,49,49,50,46,51,52,49,57,56,56,44,51,57,46,57,48,52,52,53,56,93,44,91,45,49,49,50,46,49,55,57,56,44,52,48,46,48,49,49,54,53,54,93,44,91,45,49,49,50,46,49,52,54,56,53,54,44,52,48,46,49,55,55,56,49,55,93,44,91,45,49,49,50,46,49,57,56,52,54,49,44,52,48,46,51,49,51,50,48,54,93,44,91,45,49,49,50,46,49,55,50,56,54,50,44,52,48,46,52,54,55,48,54,53,93,44,91,45,49,49,50,46,49,55,53,51,51,55,44,52,48,46,54,48,51,57,56,49,93,44,91,45,49,49,50,46,50,54,48,50,49,54,44,52,48,46,55,54,57,48,57,51,93,44,91,45,49,49,50,46,52,57,51,53,49,53,44,52,49,46,48,55,54,56,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,53,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,53,48,34,44,34,78,65,77,69,34,58,34,72,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,53,56,51,44,34,98,101,100,115,34,58,51,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,51,56,48,50,54,44,51,55,46,48,57,52,51,52,56,93,44,91,45,55,54,46,51,56,52,52,49,57,44,51,54,46,57,53,49,48,53,57,93,44,91,45,55,54,46,51,52,49,56,50,53,44,51,54,46,57,50,52,55,55,50,93,44,91,45,55,54,46,51,51,50,50,53,55,44,51,54,46,57,54,54,48,57,57,93,44,91,45,55,54,46,49,51,51,56,55,50,44,51,55,46,48,52,48,56,56,54,93,44,91,45,55,54,46,49,51,52,57,52,49,44,51,55,46,49,49,55,54,48,51,93,44,91,45,55,54,46,51,57,53,55,57,53,44,51,55,46,49,48,55,49,55,52,93,44,91,45,55,54,46,52,51,56,48,50,54,44,51,55,46,48,57,52,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,117,102,102,97,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,53,48,50,52,56,44,52,52,46,53,57,54,54,52,57,93,44,91,45,57,50,46,48,50,57,49,56,44,52,52,46,53,56,54,50,57,50,93,44,91,45,57,50,46,48,56,51,53,55,50,44,52,52,46,52,48,55,51,51,54,93,44,91,45,57,49,46,57,50,56,50,50,52,44,52,52,46,51,51,53,52,55,51,93,44,91,45,57,49,46,56,53,56,50,52,53,44,52,52,46,49,57,51,48,48,52,93,44,91,45,57,49,46,53,53,57,48,48,52,44,52,52,46,48,50,53,51,49,53,93,44,91,45,57,49,46,54,49,50,51,51,49,44,52,52,46,49,54,56,56,48,57,93,44,91,45,57,49,46,53,50,57,55,52,49,44,52,52,46,50,52,54,55,55,55,93,44,91,45,57,49,46,53,50,57,49,48,49,44,52,52,46,53,57,54,49,57,55,93,44,91,45,57,49,46,54,53,48,50,52,56,44,52,52,46,53,57,54,54,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,70,114,101,100,101,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,49,53,51,44,34,98,101,100,115,34,58,51,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,52,55,48,56,55,44,51,57,46,52,54,54,48,49,50,93,44,91,45,55,56,46,51,52,48,52,49,53,44,51,57,46,51,53,51,54,50,56,93,44,91,45,55,56,46,52,49,57,52,50,50,44,51,57,46,50,53,55,52,55,54,93,44,91,45,55,56,46,52,48,51,57,48,55,44,51,57,46,49,54,55,55,51,56,93,44,91,45,55,56,46,53,48,56,49,51,50,44,51,57,46,48,56,56,54,51,93,44,91,45,55,56,46,53,52,52,49,56,50,44,51,57,46,48,53,54,53,53,57,93,44,91,45,55,56,46,51,49,52,48,56,44,51,57,46,48,48,55,57,57,52,93,44,91,45,55,56,46,49,53,49,54,49,52,44,51,57,46,48,51,54,54,50,57,93,44,91,45,55,56,46,48,51,51,49,57,49,44,51,57,46,50,54,52,54,49,50,93,44,91,45,55,56,46,50,50,56,55,54,54,44,51,57,46,51,57,49,50,51,51,93,44,91,45,55,56,46,51,52,55,48,56,55,44,51,57,46,52,54,54,48,49,50,93,93,44,91,91,45,55,56,46,50,48,48,52,57,55,44,51,57,46,49,56,48,49,54,51,93,44,91,45,55,56,46,49,52,56,56,57,53,44,51,57,46,49,55,53,51,53,50,93,44,91,45,55,56,46,49,55,49,54,50,44,51,57,46,49,52,51,49,55,52,93,44,91,45,55,56,46,50,48,48,52,57,55,44,51,57,46,49,56,48,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,55,54,44,34,98,101,100,115,34,58,50,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,50,56,51,50,54,44,51,57,46,48,57,53,54,55,57,93,44,91,45,56,48,46,55,49,54,56,49,53,44,51,57,46,48,48,56,52,51,93,44,91,45,56,48,46,54,48,53,55,57,57,44,51,56,46,57,48,52,49,54,55,93,44,91,45,56,48,46,52,55,51,55,54,56,44,51,56,46,56,50,57,48,57,56,93,44,91,45,56,48,46,52,53,55,51,51,50,44,51,56,46,55,51,57,49,54,57,93,44,91,45,56,48,46,51,57,51,48,54,51,44,51,56,46,55,50,55,53,55,49,93,44,91,45,56,48,46,51,56,54,57,56,57,44,51,56,46,56,55,52,56,48,56,93,44,91,45,56,48,46,51,49,57,51,52,54,44,51,56,46,57,54,48,57,49,57,93,44,91,45,56,48,46,51,48,48,50,48,57,44,51,57,46,49,48,51,56,53,55,93,44,91,45,56,48,46,53,57,54,49,50,54,44,51,57,46,49,54,55,48,54,57,93,44,91,45,56,48,46,55,50,56,51,50,54,44,51,57,46,48,57,53,54,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,57,49,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,52,54,55,48,51,44,52,56,46,49,55,51,50,50,51,93,44,91,45,57,55,46,48,53,53,53,57,55,44,52,55,46,57,52,57,49,50,57,93,44,91,45,57,54,46,56,56,54,56,52,54,44,52,55,46,54,55,50,48,54,51,93,44,91,45,57,54,46,56,52,56,57,50,51,44,52,55,46,52,57,56,57,57,49,93,44,91,45,57,54,46,48,54,55,54,50,49,44,52,55,46,52,57,57,49,51,54,93,44,91,45,57,53,46,53,53,52,50,52,56,44,52,55,46,52,57,57,56,57,51,93,44,91,45,57,53,46,53,56,50,49,53,53,44,52,55,46,57,51,51,57,54,54,93,44,91,45,57,53,46,55,48,57,54,49,57,44,52,55,46,57,51,53,56,48,53,93,44,91,45,57,53,46,56,51,54,56,50,55,44,52,55,46,56,52,56,50,49,57,93,44,91,45,57,53,46,56,51,55,49,55,55,44,52,55,46,55,54,48,56,57,52,93,44,91,45,57,54,46,51,53,49,55,50,55,44,52,55,46,55,54,48,51,93,44,91,45,57,54,46,52,56,50,48,57,50,44,52,55,46,56,52,55,52,50,56,93,44,91,45,57,54,46,52,56,50,53,53,44,52,55,46,57,54,51,53,57,53,93,44,91,45,57,54,46,53,48,48,56,52,51,44,52,56,46,49,55,52,49,48,56,93,44,91,45,57,55,46,49,52,54,55,48,51,44,52,56,46,49,55,51,50,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,82,101,100,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,54,48,49,55,55,44,52,52,46,54,57,56,53,52,93,44,91,45,57,53,46,51,54,48,52,44,52,52,46,53,52,49,55,54,50,93,44,91,45,57,53,46,53,57,52,56,49,55,44,52,52,46,53,52,50,51,48,53,93,44,91,45,57,53,46,53,57,51,53,55,44,52,52,46,49,57,53,53,51,93,44,91,45,57,53,46,52,54,50,53,52,55,44,52,52,46,49,57,53,57,52,50,93,44,91,45,57,53,46,49,48,56,55,55,55,44,52,52,46,49,57,53,48,52,52,93,44,91,45,57,53,46,49,48,55,52,56,44,52,52,46,50,56,49,55,54,56,93,44,91,45,57,52,46,56,54,54,50,53,57,44,52,52,46,50,56,50,51,55,50,93,44,91,45,57,52,46,56,54,53,56,50,52,44,52,52,46,52,57,56,50,49,56,93,44,91,45,57,53,46,48,49,51,53,57,57,44,52,52,46,53,52,50,56,51,51,93,44,91,45,57,53,46,50,52,48,52,51,57,44,52,52,46,54,54,52,54,48,52,93,44,91,45,57,53,46,51,54,48,49,55,55,44,52,52,46,54,57,56,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,57,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,51,50,55,55,54,44,51,53,46,51,55,53,56,50,52,93,44,91,45,56,57,46,54,52,52,48,53,44,51,52,46,57,57,53,50,57,49,93,44,91,45,56,57,46,51,53,50,54,55,57,44,51,52,46,57,57,51,56,54,51,93,44,91,45,56,57,46,49,57,56,50,56,56,44,51,52,46,57,57,52,52,56,52,93,44,91,45,56,57,46,49,56,51,57,52,52,44,51,53,46,51,57,55,49,50,54,93,44,91,45,56,57,46,52,55,52,49,55,49,44,51,53,46,52,48,51,48,51,57,93,44,91,45,56,57,46,54,51,50,55,55,54,44,51,53,46,51,55,53,56,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,104,97,114,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,50,52,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,53,57,56,56,57,44,51,48,46,49,54,51,52,49,93,44,91,45,57,48,46,51,50,54,54,51,55,44,51,48,46,49,53,48,49,56,56,93,44,91,45,57,48,46,52,53,48,50,49,56,44,51,48,46,48,51,51,49,48,54,93,44,91,45,57,48,46,53,51,56,49,51,50,44,51,48,46,48,49,54,56,56,52,93,44,91,45,57,48,46,53,50,57,54,48,49,44,50,57,46,56,56,52,57,57,55,93,44,91,45,57,48,46,51,55,49,57,55,56,44,50,57,46,55,53,57,50,51,57,93,44,91,45,57,48,46,51,52,54,49,57,49,44,50,57,46,54,57,51,51,48,50,93,44,91,45,57,48,46,50,50,56,49,53,55,44,50,57,46,54,57,50,48,50,56,93,44,91,45,57,48,46,49,54,55,50,57,55,44,50,57,46,56,49,55,52,48,55,93,44,91,45,57,48,46,50,52,48,49,55,51,44,50,57,46,56,54,50,49,49,55,93,44,91,45,57,48,46,50,56,48,50,57,54,44,50,57,46,57,55,50,54,49,56,93,44,91,45,57,48,46,50,53,57,56,56,57,44,51,48,46,49,54,51,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,80,111,105,110,115,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,56,54,55,51,54,44,51,53,46,54,57,57,57,49,52,93,44,91,45,57,49,46,48,51,54,57,54,55,44,51,53,46,55,48,56,52,49,56,93,44,91,45,57,49,46,48,51,57,50,51,44,51,53,46,52,52,52,55,49,55,93,44,91,45,57,48,46,53,48,50,52,50,57,44,51,53,46,52,52,49,55,50,54,93,44,91,45,57,48,46,50,56,54,56,57,57,44,51,53,46,52,51,56,53,55,51,93,44,91,45,57,48,46,50,56,54,55,51,54,44,51,53,46,54,57,57,57,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,71,117,108,102,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,53,53,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,56,57,54,55,57,44,51,48,46,50,48,48,57,55,51,93,44,91,45,56,53,46,51,56,56,54,54,57,44,50,57,46,57,50,52,51,53,57,93,44,91,45,56,53,46,52,52,54,50,56,57,44,50,57,46,57,48,49,48,51,51,93,44,91,45,56,53,46,52,55,52,57,57,54,44,50,57,46,56,51,49,53,52,50,93,44,91,45,56,53,46,51,56,49,54,56,52,44,50,57,46,54,49,50,56,53,51,93,44,91,45,56,53,46,50,52,54,51,49,54,44,50,57,46,54,50,53,48,48,50,93,44,91,45,56,53,46,50,48,54,50,50,54,44,50,57,46,55,49,49,49,56,56,93,44,91,45,56,53,46,48,50,48,53,51,52,44,50,57,46,56,48,55,51,55,51,93,44,91,45,56,53,46,48,50,53,52,51,57,44,50,57,46,57,55,49,51,57,57,93,44,91,45,56,53,46,49,51,53,50,53,52,44,51,48,46,48,52,51,50,55,93,44,91,45,56,53,46,49,49,53,54,54,44,51,48,46,49,57,57,57,55,54,93,44,91,45,56,53,46,51,56,57,54,55,57,44,51,48,46,50,48,48,57,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,97,109,98,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,55,52,48,44,34,98,101,100,115,34,58,49,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,53,53,50,57,50,44,51,54,46,50,56,57,48,57,50,93,44,91,45,56,51,46,51,53,53,49,57,54,44,51,54,46,50,56,50,53,57,93,44,91,45,56,51,46,52,54,55,48,57,55,44,51,54,46,49,55,52,54,56,56,93,44,91,45,56,51,46,50,57,51,54,56,57,44,51,54,46,49,51,56,49,57,51,93,44,91,45,56,51,46,50,51,52,53,56,53,44,51,54,46,48,56,53,48,57,52,93,44,91,45,56,51,46,49,54,54,48,56,53,44,51,54,46,49,56,48,56,57,52,93,44,91,45,56,51,46,48,56,50,51,49,50,44,51,54,46,50,52,50,50,57,54,93,44,91,45,56,51,46,49,53,49,54,56,57,44,51,54,46,51,49,56,49,57,50,93,44,91,45,56,51,46,50,53,53,50,57,50,44,51,54,46,50,56,57,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,51,48,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,56,56,49,49,56,50,44,51,51,46,48,52,57,57,48,49,93,44,91,45,56,54,46,56,55,54,49,49,56,44,51,50,46,56,51,54,50,54,52,93,44,91,45,56,55,46,48,49,57,49,53,55,44,51,50,46,56,51,55,48,51,52,93,44,91,45,56,55,46,48,49,55,55,54,50,44,51,50,46,55,50,57,53,51,50,93,44,91,45,56,54,46,57,49,55,53,57,53,44,51,50,46,54,54,52,49,54,57,93,44,91,45,56,54,46,55,49,52,50,49,57,44,51,50,46,55,48,53,54,57,52,93,44,91,45,56,54,46,52,49,51,49,49,54,44,51,50,46,55,48,55,51,56,54,93,44,91,45,56,54,46,51,55,52,57,55,52,44,51,50,46,55,53,51,53,56,93,44,91,45,56,54,46,52,53,55,48,49,53,44,51,50,46,56,49,51,56,57,57,93,44,91,45,56,54,46,53,49,55,51,52,52,44,51,51,46,48,50,48,53,54,54,93,44,91,45,56,54,46,54,49,48,48,48,51,44,51,51,46,48,55,48,48,48,51,93,44,91,45,56,54,46,56,56,49,49,56,50,44,51,51,46,48,52,57,57,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,53,49,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,49,49,49,50,54,44,51,49,46,49,53,56,48,55,49,93,44,91,45,57,51,46,56,54,53,55,49,49,44,51,48,46,57,52,55,50,49,56,93,44,91,45,57,51,46,57,48,49,52,53,50,44,51,48,46,50,52,50,54,55,50,93,44,91,45,57,51,46,55,48,54,57,57,51,44,51,48,46,50,52,51,55,51,54,93,44,91,45,57,51,46,55,54,52,50,53,50,44,51,48,46,51,51,48,50,50,57,93,44,91,45,57,51,46,55,52,49,54,55,57,44,51,48,46,52,48,50,57,55,53,93,44,91,45,57,51,46,55,51,56,55,56,56,44,51,48,46,53,52,48,57,55,53,93,44,91,45,57,51,46,54,51,49,51,52,53,44,51,48,46,54,55,55,56,55,50,93,44,91,45,57,51,46,53,53,56,53,57,54,44,51,48,46,56,54,56,56,50,50,93,44,91,45,57,51,46,53,50,52,55,51,57,44,51,49,46,48,51,57,48,48,55,93,44,91,45,57,51,46,53,53,50,53,50,52,44,51,49,46,49,56,53,52,48,53,93,44,91,45,57,51,46,54,48,48,51,48,56,44,51,49,46,49,55,54,49,53,56,93,44,91,45,57,51,46,57,49,49,49,50,54,44,51,49,46,49,53,56,48,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,57,34,44,34,78,65,77,69,34,58,34,72,111,99,107,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,54,50,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,49,53,52,52,55,44,51,51,46,56,50,53,49,50,49,93,44,91,45,49,48,50,46,53,57,52,56,51,54,44,51,51,46,51,56,56,52,56,57,93,44,91,45,49,48,50,46,48,55,53,57,50,57,44,51,51,46,51,56,57,53,56,54,93,44,91,45,49,48,50,46,48,56,53,55,51,51,44,51,51,46,56,50,52,54,55,53,93,44,91,45,49,48,50,46,54,49,53,52,52,55,44,51,51,46,56,50,53,49,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,108,100,119,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,50,56,54,44,34,98,101,100,115,34,58,51,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,50,57,48,57,44,51,51,46,49,56,53,51,53,50,93,44,91,45,56,51,46,51,53,55,54,56,53,44,51,50,46,57,50,54,49,52,49,93,44,91,45,56,51,46,49,51,51,56,52,55,44,51,51,46,48,48,55,50,52,56,93,44,91,45,56,51,46,48,55,51,54,52,56,44,51,50,46,57,52,54,53,54,50,93,44,91,45,56,51,46,48,53,50,49,57,55,44,51,51,46,48,56,48,54,56,50,93,44,91,45,56,51,46,48,57,55,54,52,57,44,51,51,46,49,53,49,53,51,54,93,44,91,45,56,51,46,50,55,52,49,48,56,44,51,51,46,49,56,55,50,51,56,93,44,91,45,56,51,46,52,50,57,48,57,44,51,51,46,49,56,53,51,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,84,114,97,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,49,51,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,50,48,56,56,49,44,51,53,46,50,57,50,48,51,55,93,44,91,45,56,51,46,48,48,56,53,51,49,44,51,53,46,48,50,55,51,57,52,93,44,91,45,56,50,46,56,57,55,51,55,51,44,51,53,46,48,53,54,50,49,52,93,44,91,45,56,50,46,55,54,52,53,55,53,44,51,53,46,48,54,56,51,56,93,44,91,45,56,50,46,53,55,52,56,51,57,44,51,53,46,49,52,53,52,52,57,93,44,91,45,56,50,46,54,49,48,49,56,54,44,51,53,46,50,56,56,49,57,57,93,44,91,45,56,50,46,55,52,53,49,51,57,44,51,53,46,52,50,50,57,54,55,93,44,91,45,56,50,46,56,51,50,50,52,52,44,51,53,46,51,49,56,51,50,52,93,44,91,45,56,50,46,57,50,48,56,56,49,44,51,53,46,50,57,50,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,83,117,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,48,57,57,44,34,98,101,100,115,34,58,50,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,54,55,49,53,51,44,51,54,46,52,48,50,48,50,93,44,91,45,56,48,46,56,54,56,55,52,54,44,51,54,46,51,50,54,52,52,55,93,44,91,45,56,48,46,56,55,51,50,48,53,44,51,54,46,50,51,54,51,48,53,93,44,91,45,56,48,46,54,51,49,53,52,52,44,51,54,46,50,56,53,53,56,52,93,44,91,45,56,48,46,52,53,50,51,50,50,44,51,54,46,50,52,49,52,49,57,93,44,91,45,56,48,46,52,53,49,54,57,54,44,51,54,46,50,54,49,53,48,50,93,44,91,45,56,48,46,52,52,48,48,57,56,44,51,54,46,53,53,48,54,53,53,93,44,91,45,56,48,46,54,49,50,48,53,55,44,51,54,46,53,53,55,56,57,56,93,44,91,45,56,48,46,56,51,55,57,53,52,44,51,54,46,53,53,57,49,52,51,93,44,91,45,56,48,46,57,48,49,54,52,49,44,51,54,46,53,54,49,55,54,54,93,44,91,45,56,48,46,57,54,55,49,53,51,44,51,54,46,52,48,50,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,102,102,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,50,56,56,44,34,98,101,100,115,34,58,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,52,53,56,57,53,44,51,49,46,54,49,55,55,52,49,93,44,91,45,56,54,46,49,57,51,57,53,49,44,51,49,46,52,52,48,48,55,50,93,44,91,45,56,54,46,49,57,51,52,55,54,44,51,49,46,49,57,50,50,49,51,93,44,91,45,56,53,46,55,57,49,52,48,50,44,51,49,46,49,57,54,51,52,57,93,44,91,45,56,53,46,55,56,57,49,52,50,44,51,49,46,54,49,55,57,54,52,93,44,91,45,56,54,46,49,52,53,56,57,53,44,51,49,46,54,49,55,55,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,55,57,55,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,51,52,54,51,49,44,52,48,46,51,53,52,50,53,57,93,44,91,45,56,52,46,52,51,50,53,55,53,44,52,48,46,49,57,55,48,51,55,93,44,91,45,56,52,46,48,50,50,57,49,57,44,52,48,46,49,56,51,57,52,53,93,44,91,45,56,52,46,48,49,52,55,54,51,44,52,48,46,50,55,51,52,53,57,93,44,91,45,56,52,46,48,48,50,51,55,50,44,52,48,46,52,56,51,49,49,53,93,44,91,45,56,52,46,51,51,57,49,51,55,44,52,48,46,52,56,49,48,55,54,93,44,91,45,56,52,46,51,51,56,54,44,52,48,46,51,55,57,49,57,57,93,44,91,45,56,52,46,52,51,52,51,56,55,44,52,48,46,51,53,52,53,51,52,93,44,91,45,56,52,46,52,51,52,54,51,49,44,52,48,46,51,53,52,50,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,110,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,50,50,51,48,44,34,98,101,100,115,34,58,51,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,50,54,53,51,56,44,52,51,46,54,56,48,56,48,50,93,44,91,45,49,49,54,46,56,52,52,57,55,56,44,52,51,46,53,57,52,52,93,44,91,45,49,49,54,46,55,56,49,51,51,54,44,52,51,46,52,55,56,54,51,51,93,44,91,45,49,49,54,46,53,49,49,56,57,55,44,52,51,46,50,57,48,53,50,93,44,91,45,49,49,54,46,52,55,51,53,57,55,44,52,51,46,52,53,57,50,49,56,93,44,91,45,49,49,54,46,52,55,51,52,57,50,44,52,51,46,54,51,52,49,48,51,93,44,91,45,49,49,54,46,53,49,50,53,48,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,55,49,50,54,55,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,56,53,51,49,53,52,44,52,51,46,55,57,50,55,49,93,44,91,45,49,49,54,46,57,56,51,56,50,55,44,52,51,46,56,56,48,48,52,54,93,44,91,45,49,49,55,46,48,51,50,50,56,57,44,52,51,46,56,50,56,55,54,55,93,44,91,45,49,49,55,46,48,50,54,53,51,56,44,52,51,46,54,56,48,56,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,68,97,110,105,101,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,49,49,50,48,53,56,44,52,56,46,57,57,57,52,54,93,44,91,45,49,48,54,46,49,53,49,57,48,56,44,52,56,46,56,50,51,57,50,55,93,44,91,45,49,48,54,46,48,50,49,50,53,49,44,52,56,46,56,50,51,57,55,53,93,44,91,45,49,48,54,46,48,49,57,56,50,44,52,56,46,53,54,51,50,50,49,93,44,91,45,49,48,53,46,56,48,52,52,51,54,44,52,56,46,53,54,51,51,53,56,93,44,91,45,49,48,52,46,57,55,51,51,53,52,44,52,56,46,53,54,51,49,57,93,44,91,45,49,48,53,46,48,51,56,53,52,56,44,52,56,46,54,53,48,48,57,57,93,44,91,45,49,48,53,46,48,53,55,54,52,50,44,52,56,46,57,57,57,48,49,50,93,44,91,45,49,48,54,46,49,49,50,48,53,56,44,52,56,46,57,57,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,101,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,56,49,48,50,44,34,98,101,100,115,34,58,49,50,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,56,50,53,53,57,44,51,48,46,54,56,53,51,51,52,93,44,91,45,56,52,46,52,50,48,52,55,52,44,51,48,46,52,54,51,57,48,53,93,44,91,45,56,52,46,54,52,54,52,48,56,44,51,48,46,51,56,56,50,56,49,93,44,91,45,56,52,46,55,49,51,51,53,49,44,51,48,46,51,48,48,49,55,93,44,91,45,56,52,46,50,52,55,54,55,51,44,51,48,46,51,48,51,52,57,51,93,44,91,45,56,52,46,48,55,53,53,51,57,44,51,48,46,50,55,51,54,49,55,93,44,91,45,56,52,46,48,55,52,54,57,49,44,51,48,46,52,51,52,51,48,50,93,44,91,45,56,51,46,57,55,56,54,48,55,44,51,48,46,53,50,50,54,56,55,93,44,91,45,56,52,46,48,48,55,52,53,52,44,51,48,46,54,55,50,49,50,55,93,44,91,45,56,52,46,48,56,51,55,53,55,44,51,48,46,54,55,53,56,48,52,93,44,91,45,56,52,46,50,56,50,53,53,57,44,51,48,46,54,56,53,51,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,80,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,53,49,50,44,34,98,101,100,115,34,58,50,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,50,50,49,50,44,51,54,46,49,53,57,57,48,51,93,44,91,45,57,54,46,56,49,57,48,48,53,44,51,54,46,49,53,56,56,56,54,93,44,91,45,57,54,46,57,50,53,48,54,57,44,51,54,46,50,52,54,52,55,52,93,44,91,45,57,55,46,49,52,48,57,54,56,44,51,54,46,50,52,54,52,51,53,93,44,91,45,57,55,46,49,52,48,54,54,56,44,51,54,46,49,53,57,50,51,49,93,44,91,45,57,55,46,51,53,52,49,51,50,44,51,54,46,49,53,57,48,55,50,93,44,91,45,57,55,46,51,50,51,54,50,44,51,54,46,48,49,48,56,55,55,93,44,91,45,57,55,46,49,52,48,53,56,51,44,51,53,46,57,52,49,57,57,49,93,44,91,45,57,54,46,54,49,57,54,53,53,44,51,53,46,57,52,49,53,55,49,93,44,91,45,57,54,46,54,50,50,49,50,44,51,54,46,49,53,57,57,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,111,118,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,53,49,44,34,98,101,100,115,34,58,49,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,57,51,57,53,49,44,51,49,46,52,52,48,48,55,50,93,44,91,45,56,54,46,51,57,56,53,51,54,44,51,49,46,52,53,49,51,50,53,93,44,91,45,56,54,46,52,57,57,50,49,51,44,51,49,46,53,50,53,51,51,49,93,44,91,45,56,54,46,55,48,49,53,53,52,44,51,49,46,53,50,51,57,52,54,93,44,91,45,56,54,46,55,48,48,50,56,50,44,51,49,46,49,57,50,50,49,55,93,44,91,45,56,54,46,54,56,56,51,49,55,44,51,48,46,57,57,52,53,48,55,93,44,91,45,56,54,46,51,56,56,54,52,54,44,51,48,46,57,57,52,49,56,49,93,44,91,45,56,54,46,49,56,55,50,52,54,44,51,48,46,57,57,52,48,50,49,93,44,91,45,56,54,46,49,57,51,52,55,54,44,51,49,46,49,57,50,50,49,51,93,44,91,45,56,54,46,49,57,51,57,53,49,44,51,49,46,52,52,48,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,49,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,56,50,56,53,51,44,51,56,46,57,48,52,54,57,55,93,44,91,45,56,54,46,54,56,51,49,48,50,44,51,56,46,54,56,54,53,54,49,93,44,91,45,56,54,46,51,48,56,55,48,49,44,51,56,46,54,56,56,49,48,49,93,44,91,45,56,54,46,50,55,53,50,56,49,44,51,56,46,55,54,51,55,57,53,93,44,91,45,56,54,46,51,49,55,52,55,52,44,51,56,46,57,57,48,56,55,93,44,91,45,56,54,46,54,56,50,50,55,55,44,51,56,46,57,57,50,52,48,52,93,44,91,45,56,54,46,54,56,50,56,53,51,44,51,56,46,57,48,52,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,71,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,50,54,54,49,44,51,56,46,48,48,49,48,49,53,93,44,91,45,49,48,48,46,54,54,52,49,54,54,44,51,56,46,48,48,50,53,51,93,44,91,45,49,48,48,46,54,53,50,50,53,49,44,51,55,46,55,51,54,50,55,53,93,44,91,45,49,48,48,46,54,53,50,54,52,50,44,51,55,46,52,55,52,56,52,56,93,44,91,45,49,48,48,46,50,49,54,50,50,57,44,51,55,46,52,55,53,49,57,93,44,91,45,49,48,48,46,50,50,55,48,57,44,51,55,46,57,49,52,48,49,56,93,44,91,45,49,48,48,46,50,50,54,54,49,44,51,56,46,48,48,49,48,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,97,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,57,54,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,51,57,54,55,52,44,51,55,46,53,52,53,50,51,50,93,44,91,45,56,53,46,48,55,51,55,55,50,44,51,55,46,52,49,51,54,54,57,93,44,91,45,56,53,46,49,54,53,49,55,52,44,51,55,46,51,49,48,51,57,54,93,44,91,45,56,53,46,48,53,54,56,57,56,44,51,55,46,50,53,55,48,52,49,93,44,91,45,56,53,46,48,52,51,51,49,54,44,51,55,46,49,56,54,48,50,56,93,44,91,45,56,52,46,57,48,49,49,49,50,44,51,55,46,49,49,54,50,57,55,93,44,91,45,56,52,46,55,50,48,55,49,50,44,51,55,46,50,51,56,51,50,56,93,44,91,45,56,52,46,55,50,50,56,50,54,44,51,55,46,51,54,48,48,52,51,93,44,91,45,56,52,46,56,53,48,56,49,54,44,51,55,46,52,50,55,49,52,51,93,44,91,45,56,52,46,56,52,55,52,51,52,44,51,55,46,53,52,56,51,52,51,93,44,91,45,56,53,46,48,51,57,54,55,52,44,51,55,46,53,52,53,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,77,101,116,99,97,108,102,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,52,52,50,50,49,44,51,55,46,49,54,57,56,49,51,93,44,91,45,56,53,46,55,51,57,50,53,53,44,51,54,46,56,52,49,52,55,54,93,44,91,45,56,53,46,53,57,54,50,49,52,44,51,54,46,56,49,56,48,51,57,93,44,91,45,56,53,46,52,53,49,56,51,44,51,54,46,57,51,56,49,51,56,93,44,91,45,56,53,46,53,50,54,56,56,49,44,51,55,46,49,48,57,52,53,93,44,91,45,56,53,46,54,56,54,52,56,50,44,51,55,46,49,56,50,52,50,55,93,44,91,45,56,53,46,55,52,52,50,50,49,44,51,55,46,49,54,57,56,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,55,34,44,34,78,65,77,69,34,58,34,82,117,115,115,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,52,51,51,49,54,44,51,55,46,49,56,54,48,50,56,93,44,91,45,56,53,46,50,48,53,56,51,49,44,51,54,46,57,57,54,56,54,50,93,44,91,45,56,53,46,50,51,50,48,50,54,44,51,54,46,57,50,53,48,54,57,93,44,91,45,56,53,46,50,49,53,52,48,53,44,51,54,46,56,53,52,52,54,55,93,44,91,45,56,53,46,48,54,52,51,48,55,44,51,54,46,56,53,56,55,52,51,93,44,91,45,56,52,46,56,51,53,55,49,50,44,51,54,46,57,57,55,54,49,50,93,44,91,45,56,52,46,57,48,49,49,49,50,44,51,55,46,49,49,54,50,57,55,93,44,91,45,56,53,46,48,52,51,51,49,54,44,51,55,46,49,56,54,48,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,101,97,117,114,101,103,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,55,54,57,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,55,56,52,53,51,44,51,48,46,56,55,56,49,55,53,93,44,91,45,57,51,46,52,50,49,49,48,50,44,51,48,46,56,56,51,49,51,56,93,44,91,45,57,51,46,53,53,56,53,57,54,44,51,48,46,56,54,56,56,50,50,93,44,91,45,57,51,46,54,51,49,51,52,53,44,51,48,46,54,55,55,56,55,50,93,44,91,45,57,51,46,55,51,56,55,56,56,44,51,48,46,53,52,48,57,55,53,93,44,91,45,57,51,46,55,52,49,54,55,57,44,51,48,46,52,48,50,57,55,53,93,44,91,45,57,51,46,49,51,49,49,48,57,44,51,48,46,52,48,51,48,53,55,93,44,91,45,57,51,46,49,51,49,49,53,53,44,51,48,46,52,50,51,54,49,50,93,44,91,45,57,51,46,49,51,48,51,56,44,51,48,46,53,57,55,55,55,55,93,44,91,45,57,50,46,57,55,57,49,55,44,51,48,46,53,57,56,51,52,93,44,91,45,57,50,46,57,55,56,52,53,51,44,51,48,46,56,55,56,49,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,83,111,109,101,114,115,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,55,49,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,48,50,51,49,56,55,44,52,54,46,53,55,51,52,56,55,93,44,91,45,55,48,46,48,53,54,53,53,54,44,52,54,46,52,49,54,53,53,93,44,91,45,55,48,46,50,48,56,57,56,57,44,52,54,46,51,50,57,53,50,55,93,44,91,45,55,48,46,50,57,48,52,48,53,44,52,54,46,49,56,53,48,56,55,93,44,91,45,55,48,46,51,49,49,53,55,44,52,53,46,57,54,54,51,53,57,93,44,91,45,55,48,46,50,53,52,48,57,44,52,53,46,57,48,50,50,56,54,93,44,91,45,55,48,46,52,49,54,57,55,55,44,52,53,46,55,57,53,51,56,50,93,44,91,45,55,48,46,52,48,48,52,57,52,44,52,53,46,55,49,57,55,52,51,93,44,91,45,55,48,46,53,53,50,56,53,51,44,52,53,46,54,54,55,56,57,57,93,44,91,45,55,48,46,52,49,56,53,49,57,44,52,53,46,49,52,52,48,48,53,93,44,91,45,55,48,46,50,57,51,56,50,54,44,52,53,46,49,48,57,57,48,51,93,44,91,45,55,48,46,49,53,57,51,55,53,44,52,53,46,49,50,56,51,57,54,93,44,91,45,55,48,46,49,49,48,51,54,53,44,52,52,46,57,52,55,51,49,49,93,44,91,45,55,48,46,48,51,51,50,55,44,52,52,46,56,54,52,53,52,93,44,91,45,54,57,46,57,57,54,49,57,49,44,52,52,46,54,55,55,52,57,55,93,44,91,45,54,57,46,57,51,48,52,53,49,44,52,52,46,54,49,48,56,53,50,93,44,91,45,54,57,46,54,48,53,55,52,54,44,52,52,46,53,55,55,50,54,52,93,44,91,45,54,57,46,54,51,51,49,49,56,44,52,52,46,55,48,48,51,55,51,93,44,91,45,54,57,46,52,55,49,55,49,50,44,52,52,46,54,57,50,56,57,57,93,44,91,45,54,57,46,50,54,54,55,56,53,44,52,52,46,55,50,49,57,50,56,93,44,91,45,54,57,46,51,53,53,54,54,55,44,52,53,46,48,55,51,52,54,57,93,44,91,45,54,57,46,54,50,48,57,54,55,44,52,53,46,48,49,48,57,53,54,93,44,91,45,54,57,46,55,55,57,57,50,56,44,52,53,46,53,52,50,55,54,54,93,44,91,45,54,57,46,55,48,49,54,56,56,44,52,53,46,54,50,55,57,56,50,93,44,91,45,54,57,46,55,56,53,50,53,55,44,52,53,46,54,57,50,55,56,93,44,91,45,54,57,46,55,48,52,50,54,53,44,52,53,46,56,52,54,49,51,54,93,44,91,45,54,57,46,55,50,56,53,55,55,44,52,53,46,57,55,54,56,56,50,93,44,91,45,54,57,46,55,50,49,49,48,57,44,52,54,46,53,55,52,48,53,51,93,44,91,45,55,48,46,48,50,51,49,56,55,44,52,54,46,53,55,51,52,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,105,109,97,114,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,50,48,56,57,44,51,54,46,57,57,51,48,49,54,93,44,91,45,49,48,51,46,48,48,50,51,50,57,44,51,55,46,48,48,48,49,53,93,44,91,45,49,48,51,46,48,48,50,51,53,57,44,51,54,46,53,48,48,53,53,49,93,44,91,45,49,48,50,46,49,54,50,52,54,51,44,51,54,46,53,48,48,51,50,54,93,44,91,45,49,48,50,46,48,51,50,51,51,56,44,51,54,46,53,48,48,53,55,53,93,44,91,45,49,48,50,46,48,50,56,50,48,52,44,51,54,46,57,57,51,49,48,50,93,44,91,45,49,48,50,46,48,52,50,48,56,57,44,51,54,46,57,57,51,48,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,77,101,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,57,48,56,53,52,44,51,56,46,48,52,53,55,51,53,93,44,91,45,56,54,46,49,53,49,50,56,53,44,51,55,46,55,57,56,56,55,56,93,44,91,45,56,54,46,48,48,55,52,51,50,44,51,55,46,56,49,56,52,51,57,93,44,91,45,56,53,46,57,57,56,57,53,50,44,51,55,46,57,57,57,54,53,52,93,44,91,45,56,54,46,49,55,56,57,51,44,51,56,46,48,49,48,56,49,93,44,91,45,56,54,46,50,54,55,55,54,57,44,51,56,46,48,53,55,49,55,49,93,44,91,45,56,54,46,51,50,57,54,44,51,56,46,49,56,49,56,48,53,93,44,91,45,56,54,46,52,54,49,48,50,50,44,51,56,46,49,50,49,48,56,55,93,44,91,45,56,54,46,52,57,48,56,53,52,44,51,56,46,48,52,53,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,78,101,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,51,56,56,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,56,57,50,48,50,44,51,55,46,57,57,48,54,53,52,93,44,91,45,56,53,46,54,52,51,50,53,52,44,51,55,46,56,51,52,48,51,51,93,44,91,45,56,53,46,55,51,55,55,55,55,44,51,55,46,56,49,49,55,57,93,44,91,45,56,53,46,54,56,48,52,56,56,44,51,55,46,55,51,50,50,56,52,93,44,91,45,56,53,46,53,57,50,48,56,56,44,51,55,46,54,57,51,52,55,57,93,44,91,45,56,53,46,54,49,56,48,55,49,44,51,55,46,53,52,48,54,49,49,93,44,91,45,56,53,46,53,50,49,50,57,44,51,55,46,53,53,52,51,52,51,93,44,91,45,56,53,46,52,48,49,55,56,52,44,51,55,46,55,51,48,54,53,56,93,44,91,45,56,53,46,50,57,48,50,56,52,44,51,55,46,56,51,49,49,56,50,93,44,91,45,56,53,46,49,53,50,55,57,55,44,51,55,46,56,57,55,54,54,49,93,44,91,45,56,53,46,49,54,55,56,51,52,44,51,55,46,57,55,49,56,48,57,93,44,91,45,56,53,46,51,57,57,56,55,49,44,51,55,46,57,51,57,57,53,54,93,44,91,45,56,53,46,52,56,57,50,48,50,44,51,55,46,57,57,48,54,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,79,119,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,55,52,53,56,51,44,51,56,46,53,57,54,56,51,56,93,44,91,45,56,53,46,48,50,57,56,56,56,44,51,56,46,53,49,48,55,54,53,93,44,91,45,56,52,46,56,56,48,50,52,56,44,51,56,46,52,49,54,49,56,93,44,91,45,56,52,46,56,55,48,52,56,50,44,51,56,46,51,53,54,55,53,49,93,44,91,45,56,52,46,55,52,48,53,57,52,44,51,56,46,51,53,50,52,49,53,93,44,91,45,56,52,46,53,56,48,53,51,57,44,51,56,46,52,55,51,48,51,57,93,44,91,45,56,52,46,55,55,52,51,50,50,44,51,56,46,54,49,56,53,57,52,93,44,91,45,56,52,46,55,56,53,55,56,56,44,51,56,46,55,50,48,52,53,57,93,44,91,45,56,52,46,57,51,52,53,51,54,44,51,56,46,54,54,50,49,51,93,44,91,45,56,53,46,48,55,52,53,56,51,44,51,56,46,53,57,54,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,80,101,109,105,115,99,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,51,49,44,34,98,101,100,115,34,58,49,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,54,49,51,49,44,51,54,46,51,56,56,56,48,51,93,44,91,45,56,57,46,57,53,57,51,55,54,44,51,53,46,57,57,57,49,51,49,93,44,91,45,56,57,46,55,51,51,48,57,53,44,51,54,46,48,48,48,54,48,56,93,44,91,45,56,57,46,54,50,57,52,53,51,44,51,54,46,49,56,53,51,56,50,93,44,91,45,56,57,46,53,51,54,52,52,49,44,51,54,46,50,55,50,56,50,55,93,44,91,45,56,57,46,53,52,53,48,48,54,44,51,54,46,51,51,54,56,48,57,93,44,91,45,56,57,46,54,49,49,51,48,56,44,51,54,46,52,49,49,50,55,51,93,44,91,45,56,57,46,57,54,49,51,49,44,51,54,46,51,56,56,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,78,97,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,52,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,56,54,53,56,52,44,52,49,46,51,57,51,56,57,56,93,44,91,45,57,56,46,50,55,53,52,48,56,44,52,49,46,50,54,52,51,52,49,93,44,91,45,57,56,46,48,53,51,49,51,55,44,52,49,46,50,57,51,49,50,51,93,44,91,45,57,55,46,55,48,53,52,57,55,44,52,49,46,51,48,57,49,51,52,93,44,91,45,57,55,46,55,48,51,55,54,53,44,52,49,46,51,57,52,56,55,54,93,44,91,45,57,55,46,55,48,51,54,50,55,44,52,49,46,53,50,54,55,57,54,93,44,91,45,57,55,46,56,50,57,56,52,54,44,52,49,46,53,50,54,49,55,52,93,44,91,45,57,56,46,48,57,57,53,50,51,44,52,49,46,52,56,48,55,55,55,93,44,91,45,57,56,46,50,57,49,51,52,52,44,52,49,46,52,56,48,55,50,55,93,44,91,45,57,56,46,50,57,49,52,49,57,44,52,49,46,51,57,51,56,57,52,93,44,91,45,57,56,46,50,56,54,53,56,52,44,52,49,46,51,57,51,56,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,56,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,56,34,44,34,78,65,77,69,34,58,34,77,101,110,111,109,105,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,52,49,49,53,57,44,52,53,46,49,49,55,51,52,54,93,44,91,45,56,56,46,57,56,50,49,53,57,44,52,53,46,49,49,56,48,50,54,93,44,91,45,56,56,46,57,56,49,54,56,44,52,53,46,48,50,56,57,49,55,93,44,91,45,56,56,46,57,56,49,51,49,57,44,52,52,46,57,52,50,55,52,53,93,44,91,45,56,56,46,55,51,53,53,52,56,44,52,52,46,57,52,51,49,55,56,93,44,91,45,56,56,46,55,51,54,49,57,52,44,52,52,46,56,53,54,51,55,54,93,44,91,45,56,56,46,52,56,57,49,52,57,44,52,52,46,56,53,53,52,52,53,93,44,91,45,56,56,46,52,56,51,55,51,50,44,52,53,46,49,49,54,56,56,55,93,44,91,45,56,56,46,54,52,49,49,53,57,44,52,53,46,49,49,55,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,54,53,34,44,34,78,65,77,69,34,58,34,80,97,110,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,52,52,48,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,57,49,56,49,56,44,51,50,46,51,57,52,49,51,55,93,44,91,45,57,52,46,53,56,48,53,44,51,50,46,50,48,49,51,54,51,93,44,91,45,57,52,46,53,57,57,57,55,56,44,51,49,46,57,55,51,49,57,51,93,44,91,45,57,52,46,53,49,49,52,51,49,44,51,49,46,57,55,51,57,56,52,93,44,91,45,57,52,46,48,49,53,54,51,44,51,49,46,57,55,57,56,53,54,93,44,91,45,57,52,46,48,52,50,53,57,56,44,51,50,46,49,57,54,48,48,53,93,44,91,45,57,52,46,48,52,50,57,48,49,44,51,50,46,51,57,50,50,56,51,93,44,91,45,57,52,46,51,53,52,50,57,52,44,51,50,46,51,50,57,50,48,57,93,44,91,45,57,52,46,52,57,49,56,49,56,44,51,50,46,51,57,52,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,97,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,55,55,57,50,52,44,51,56,46,49,57,50,49,49,56,93,44,91,45,56,51,46,56,56,49,51,53,51,44,51,56,46,49,51,54,53,49,55,93,44,91,45,56,51,46,55,53,57,52,51,44,51,55,46,57,57,56,55,51,49,93,44,91,45,56,51,46,52,57,56,56,52,54,44,51,56,46,48,53,48,54,50,93,44,91,45,56,51,46,54,51,53,49,57,53,44,51,56,46,49,56,55,53,50,53,93,44,91,45,56,51,46,56,52,56,51,53,53,44,51,56,46,50,57,54,57,52,57,93,44,91,45,56,51,46,57,55,55,57,50,52,44,51,56,46,49,57,50,49,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,56,54,51,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,50,56,53,49,50,44,51,50,46,48,56,52,52,55,53,93,44,91,45,57,54,46,48,53,50,55,56,54,44,51,50,46,48,48,53,56,57,53,93,44,91,45,57,53,46,57,56,51,52,52,57,44,51,49,46,55,56,57,57,55,57,93,44,91,45,57,53,46,56,55,53,57,51,55,44,51,49,46,55,53,53,53,48,51,93,44,91,45,57,53,46,55,56,55,51,44,51,49,46,54,49,56,51,56,53,93,44,91,45,57,53,46,55,51,57,50,55,57,44,51,49,46,53,48,52,48,53,54,93,44,91,45,57,53,46,54,53,49,55,54,52,44,51,49,46,53,52,49,55,57,49,93,44,91,45,57,53,46,50,55,51,50,48,51,44,51,49,46,53,57,50,56,56,54,93,44,91,45,57,53,46,50,56,57,54,54,49,44,51,49,46,54,56,51,57,57,55,93,44,91,45,57,53,46,51,54,54,49,56,55,44,51,49,46,55,50,54,55,53,51,93,44,91,45,57,53,46,52,52,54,48,50,52,44,51,49,46,56,52,55,57,56,55,93,44,91,45,57,53,46,52,50,56,53,49,50,44,51,50,46,48,56,52,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,97,114,111,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,49,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,55,48,50,57,55,44,51,56,46,50,52,54,53,55,54,93,44,91,45,55,55,46,54,52,50,53,49,56,44,51,55,46,57,57,48,54,56,56,93,44,91,45,55,55,46,51,52,53,50,49,53,44,51,55,46,55,56,57,49,55,53,93,44,91,45,55,55,46,49,56,49,52,49,56,44,51,55,46,56,57,49,54,53,52,93,44,91,45,55,55,46,48,55,48,49,49,53,44,51,55,46,57,54,52,55,55,93,44,91,45,55,55,46,49,55,48,49,44,51,56,46,48,55,57,53,52,51,93,44,91,45,55,55,46,49,49,53,57,57,55,44,51,56,46,49,52,57,57,51,49,93,44,91,45,55,55,46,51,50,54,54,57,50,44,51,56,46,50,52,53,49,51,54,93,44,91,45,55,55,46,51,55,48,50,57,55,44,51,56,46,50,52,54,53,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,83,105,111,117,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,56,50,53,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,53,52,57,54,57,44,52,51,46,50,53,57,57,53,49,93,44,91,45,57,54,46,52,55,54,55,50,57,44,52,51,46,50,50,49,57,56,55,93,44,91,45,57,54,46,52,53,52,49,51,44,52,51,46,48,56,51,51,56,93,44,91,45,57,54,46,53,49,51,54,56,49,44,52,51,46,48,52,55,48,51,93,44,91,45,57,54,46,53,51,56,52,53,56,44,52,50,46,57,48,56,55,55,49,93,44,91,45,57,53,46,56,53,57,51,55,55,44,52,50,46,57,48,57,48,57,55,93,44,91,45,57,53,46,56,54,49,57,49,52,44,52,51,46,50,53,55,53,54,54,93,44,91,45,57,54,46,53,53,52,57,54,57,44,52,51,46,50,53,57,57,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,71,108,101,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,57,55,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,57,51,55,54,53,52,44,51,57,46,55,57,56,49,53,54,93,44,91,45,49,50,50,46,56,56,53,51,53,50,44,51,57,46,53,56,48,49,48,56,93,44,91,45,49,50,50,46,55,51,53,54,51,57,44,51,57,46,53,56,48,54,54,56,93,44,91,45,49,50,50,46,55,51,57,48,54,50,44,51,57,46,51,56,51,50,54,54,93,44,91,45,49,50,50,46,49,51,54,48,48,54,44,51,57,46,51,56,53,52,57,52,93,44,91,45,49,50,50,46,48,48,56,56,53,55,44,51,57,46,52,49,51,53,54,55,93,44,91,45,49,50,49,46,56,57,48,48,49,51,44,51,57,46,51,56,51,56,54,52,93,44,91,45,49,50,49,46,56,53,54,53,51,50,44,51,57,46,53,51,54,57,48,52,93,44,91,45,49,50,49,46,57,57,52,48,50,49,44,51,57,46,53,51,51,57,50,54,93,44,91,45,49,50,49,46,57,55,52,55,57,52,44,51,57,46,54,55,53,52,56,55,93,44,91,45,49,50,50,46,48,52,54,52,55,49,44,51,57,46,55,57,55,54,52,56,93,44,91,45,49,50,50,46,57,51,55,54,53,52,44,51,57,46,55,57,56,49,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,53,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,49,48,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,111,117,105,115,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,49,50,55,51,44,34,98,101,100,115,34,58,50,56,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,54,54,53,55,52,44,51,56,46,55,55,50,52,52,56,93,44,91,45,57,48,46,50,53,49,55,52,53,44,51,56,46,55,49,56,56,56,55,93,44,91,45,57,48,46,51,50,48,53,48,52,44,51,56,46,53,57,52,49,55,55,93,44,91,45,57,48,46,50,53,55,52,49,51,44,51,56,46,53,51,49,56,53,50,93,44,91,45,57,48,46,49,56,49,53,52,51,44,51,56,46,54,54,48,48,54,50,93,44,91,45,57,48,46,49,54,54,53,55,52,44,51,56,46,55,55,50,52,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,70,97,110,110,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,50,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,50,49,56,50,49,44,51,52,46,57,56,56,52,48,56,93,44,91,45,56,52,46,54,50,49,52,56,51,44,51,52,46,57,56,56,51,50,57,93,44,91,45,56,52,46,54,49,56,54,51,55,44,51,52,46,56,53,53,51,57,56,93,44,91,45,56,52,46,52,50,57,48,57,51,44,51,52,46,56,53,53,48,51,54,93,44,91,45,56,52,46,51,49,52,54,53,51,44,51,52,46,56,48,55,51,50,56,93,44,91,45,56,52,46,49,57,54,55,53,52,44,51,52,46,54,49,55,57,50,52,93,44,91,45,56,52,46,49,56,56,53,53,55,44,51,52,46,54,48,50,54,57,50,93,44,91,45,56,52,46,49,53,56,48,51,53,44,51,52,46,54,52,56,50,52,51,93,44,91,45,56,52,46,49,48,51,54,51,44,51,52,46,55,50,55,56,51,55,93,44,91,45,56,52,46,49,50,57,52,52,56,44,51,52,46,57,56,55,53,49,52,93,44,91,45,56,52,46,51,50,49,56,50,49,44,51,52,46,57,56,56,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,50,54,50,52,52,44,52,53,46,50,57,55,54,52,55,93,44,91,45,57,55,46,50,50,54,50,56,49,44,52,53,46,49,53,49,56,50,54,93,44,91,45,57,54,46,56,56,51,57,52,56,44,52,53,46,49,53,48,50,50,52,93,44,91,45,57,54,46,56,56,50,51,52,53,44,52,52,46,57,55,54,56,55,93,44,91,45,57,54,46,52,53,50,48,51,53,44,52,52,46,57,55,55,54,53,93,44,91,45,57,54,46,52,53,50,57,52,55,44,52,53,46,50,54,56,57,50,53,93,44,91,45,57,54,46,52,55,48,52,55,53,44,52,53,46,51,50,54,53,52,53,93,44,91,45,57,54,46,57,57,50,57,52,54,44,52,53,46,51,50,54,56,56,93,44,91,45,57,55,46,50,50,54,50,52,52,44,52,53,46,50,57,55,54,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,57,53,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,55,56,55,55,56,44,52,53,46,57,51,53,56,54,51,93,44,91,45,57,55,46,57,55,57,53,57,50,44,52,53,46,53,56,56,52,56,51,93,44,91,45,57,55,46,51,55,51,51,54,54,44,52,53,46,53,56,55,54,51,52,93,44,91,45,57,55,46,50,50,55,48,56,57,44,52,53,46,53,53,56,49,53,56,93,44,91,45,57,55,46,50,50,56,50,57,49,44,52,53,46,57,51,53,51,56,51,93,44,91,45,57,55,46,57,55,56,55,55,56,44,52,53,46,57,51,53,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,84,104,117,114,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,54,56,52,44,34,98,101,100,115,34,58,52,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,50,48,49,56,57,49,44,52,55,46,48,56,53,48,53,57,93,44,91,45,49,50,51,46,49,53,56,51,54,52,44,52,54,46,57,57,53,56,55,49,93,44,91,45,49,50,51,46,49,54,48,53,56,56,44,52,54,46,55,57,51,51,56,51,93,44,91,45,49,50,51,46,49,54,48,57,48,57,44,52,54,46,55,54,52,51,51,93,44,91,45,49,50,50,46,50,48,51,49,49,53,44,52,54,46,55,54,51,48,54,49,93,44,91,45,49,50,50,46,52,57,48,56,56,56,44,52,54,46,56,54,55,52,53,50,93,44,91,45,49,50,50,46,54,51,56,50,49,49,44,52,54,46,57,55,56,49,51,57,93,44,91,45,49,50,50,46,56,50,48,53,55,54,44,52,55,46,49,57,52,50,50,93,44,91,45,49,50,51,46,48,48,50,52,51,53,44,52,55,46,49,53,49,51,48,50,93,44,91,45,49,50,51,46,48,55,53,48,50,54,44,52,55,46,48,56,52,55,56,55,93,44,91,45,49,50,51,46,50,48,49,56,57,49,44,52,55,46,48,56,53,48,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,54,48,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,56,52,57,50,49,44,52,50,46,56,53,48,51,54,56,93,44,91,45,57,55,46,54,51,53,52,52,44,52,50,46,56,53,49,53,51,50,93,44,91,45,57,55,46,56,55,53,53,51,49,44,52,50,46,56,53,56,54,53,54,93,44,91,45,57,56,46,48,49,51,48,55,50,44,52,50,46,55,54,50,50,49,57,93,44,91,45,57,56,46,49,53,51,49,48,55,44,52,50,46,56,51,56,57,56,54,93,44,91,45,57,56,46,51,48,57,55,55,49,44,52,50,46,56,56,50,54,48,53,93,44,91,45,57,56,46,51,48,53,49,52,57,44,52,50,46,55,54,49,50,48,55,93,44,91,45,57,56,46,51,48,48,50,51,53,44,52,50,46,52,51,54,57,49,51,93,44,91,45,57,55,46,56,51,52,52,51,49,44,52,50,46,52,51,55,54,56,52,93,44,91,45,57,55,46,52,56,53,50,57,56,44,52,50,46,52,51,56,53,55,56,93,44,91,45,57,55,46,52,56,52,57,50,49,44,52,50,46,56,53,48,51,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,86,97,108,101,110,99,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,57,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,49,49,55,56,49,44,51,52,46,56,55,48,50,53,50,93,44,91,45,49,48,54,46,52,50,57,52,56,54,44,51,52,46,57,48,51,52,93,44,91,45,49,48,54,46,54,56,53,56,48,49,44,51,52,46,57,48,54,51,53,56,93,44,91,45,49,48,54,46,55,50,48,54,54,54,44,51,52,46,56,55,48,48,53,51,93,44,91,45,49,48,55,46,48,50,52,52,56,49,44,51,52,46,56,54,57,57,53,51,93,44,91,45,49,48,55,46,48,54,54,53,54,50,44,51,52,46,57,53,55,49,57,93,44,91,45,49,48,55,46,50,48,50,56,56,50,44,51,52,46,57,53,55,53,55,50,93,44,91,45,49,48,55,46,50,48,49,55,52,51,44,51,52,46,53,55,56,55,53,55,93,44,91,45,49,48,54,46,56,56,50,56,49,51,44,51,52,46,53,55,57,54,50,56,93,44,91,45,49,48,54,46,55,54,56,50,56,49,44,51,52,46,53,51,49,50,54,50,93,44,91,45,49,48,54,46,52,49,54,57,50,52,44,51,52,46,52,51,57,54,56,55,93,44,91,45,49,48,54,46,52,54,57,55,57,44,51,52,46,53,50,49,50,49,55,93,44,91,45,49,48,54,46,52,54,51,56,54,56,44,51,52,46,56,55,48,49,57,52,93,44,91,45,49,48,54,46,52,49,49,55,56,49,44,51,52,46,56,55,48,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,80,114,97,105,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,50,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,56,54,53,56,53,44,52,54,46,56,54,48,50,57,93,44,91,45,49,48,53,46,56,51,50,54,55,52,44,52,54,46,56,54,48,56,50,93,44,91,45,49,48,53,46,54,49,56,49,53,56,44,52,54,46,56,51,50,49,52,56,93,44,91,45,49,48,53,46,53,55,54,48,54,51,44,52,54,46,54,53,56,48,48,51,93,44,91,45,49,48,53,46,52,52,57,49,57,54,44,52,54,46,53,55,48,57,54,55,93,44,91,45,49,48,53,46,50,51,57,50,51,56,44,52,54,46,53,52,49,49,56,56,93,44,91,45,49,48,52,46,57,56,52,55,49,52,44,52,54,46,53,52,48,51,56,57,93,44,91,45,49,48,52,46,55,51,51,48,53,57,44,52,54,46,54,49,50,54,57,53,93,44,91,45,49,48,52,46,54,48,54,57,48,51,44,52,54,46,54,56,52,57,50,52,93,44,91,45,49,48,52,46,54,48,51,55,54,54,44,52,54,46,56,54,48,56,53,51,93,44,91,45,49,48,53,46,48,50,55,53,50,54,44,52,54,46,56,54,49,52,53,55,93,44,91,45,49,48,53,46,49,57,54,55,51,53,44,52,54,46,57,55,55,49,55,50,93,44,91,45,49,48,53,46,51,50,52,55,53,55,44,52,54,46,57,55,55,49,57,54,93,44,91,45,49,48,53,46,51,50,52,56,53,51,44,52,55,46,49,56,49,52,57,54,93,44,91,45,49,48,53,46,52,48,54,51,48,57,44,52,55,46,49,56,49,53,56,51,93,44,91,45,49,48,53,46,56,51,51,48,52,52,44,52,55,46,49,56,49,48,57,50,93,44,91,45,49,48,53,46,57,53,57,56,57,55,44,52,55,46,48,57,50,57,54,56,93,44,91,45,49,48,54,46,48,56,54,55,55,55,44,52,55,46,49,56,48,57,51,56,93,44,91,45,49,48,54,46,48,56,54,53,56,53,44,52,54,46,56,54,48,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,108,108,97,109,97,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,49,48,56,51,53,44,52,51,46,53,48,48,54,53,55,93,44,91,45,57,49,46,54,48,53,51,48,55,44,52,51,46,48,56,49,54,53,51,93,44,91,45,57,49,46,49,55,55,50,50,50,44,52,51,46,48,56,48,50,52,55,93,44,91,45,57,49,46,48,53,55,57,49,44,52,51,46,50,53,51,57,54,56,93,44,91,45,57,49,46,50,48,49,56,52,55,44,52,51,46,51,52,57,49,48,51,93,44,91,45,57,49,46,50,48,53,53,53,44,52,51,46,52,50,50,57,52,57,93,44,91,45,57,49,46,50,49,55,55,48,54,44,52,51,46,53,48,48,53,53,93,44,91,45,57,49,46,54,49,48,56,51,53,44,52,51,46,53,48,48,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,67,97,109,101,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,49,55,53,48,44,34,98,101,100,115,34,58,49,51,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,54,55,50,53,53,44,50,54,46,52,49,50,55,49,53,93,44,91,45,57,55,46,51,56,54,53,48,53,44,50,54,46,52,49,48,52,51,55,93,44,91,45,57,55,46,53,50,55,53,56,50,44,50,54,46,50,57,57,51,48,52,93,44,91,45,57,55,46,56,54,49,56,55,53,44,50,54,46,51,52,56,49,53,54,93,44,91,45,57,55,46,56,54,49,56,50,50,44,50,54,46,48,54,57,57,50,49,93,44,91,45,57,55,46,54,54,55,52,50,50,44,50,54,46,48,50,57,48,55,51,93,44,91,45,57,55,46,53,50,48,56,49,50,44,50,53,46,56,56,54,93,44,91,45,57,55,46,51,55,51,49,56,55,44,50,53,46,56,51,57,57,53,54,93,44,91,45,57,55,46,50,55,54,55,48,49,44,50,53,46,57,53,50,49,52,54,93,44,91,45,57,55,46,48,57,49,49,50,49,44,50,53,46,57,55,51,56,52,93,44,91,45,57,55,46,49,50,54,49,50,49,44,50,54,46,50,53,48,51,53,49,93,44,91,45,57,55,46,49,54,55,50,53,53,44,50,54,46,52,49,50,55,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,51,57,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,52,52,53,44,34,98,101,100,115,34,58,49,55,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,48,52,51,48,54,44,51,48,46,50,52,53,53,55,93,44,91,45,57,53,46,56,48,51,51,51,44,51,48,46,48,57,48,48,57,54,93,44,91,45,57,53,46,54,48,49,49,51,50,44,51,48,46,49,51,50,55,56,93,44,91,45,57,53,46,52,50,52,50,49,54,44,51,48,46,49,49,53,52,57,49,93,44,91,45,57,53,46,50,54,52,49,51,56,44,51,48,46,48,51,50,48,54,57,93,44,91,45,57,53,46,48,57,54,55,48,56,44,51,48,46,49,54,55,50,49,52,93,44,91,45,57,53,46,49,54,53,56,57,55,44,51,48,46,51,52,52,57,55,54,93,44,91,45,57,53,46,51,48,56,51,57,53,44,51,48,46,52,48,53,55,53,93,44,91,45,57,53,46,51,53,57,49,53,54,44,51,48,46,53,48,52,51,54,57,93,44,91,45,57,53,46,53,57,56,57,55,49,44,51,48,46,53,48,57,48,48,50,93,44,91,45,57,53,46,56,51,48,50,52,44,51,48,46,54,51,48,50,56,52,93,44,91,45,57,53,46,56,48,52,51,48,54,44,51,48,46,50,52,53,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,76,97,115,32,65,110,105,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,55,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,51,53,49,49,48,57,44,51,55,46,56,49,55,52,56,56,93,44,91,45,49,48,52,46,52,53,52,57,51,44,51,55,46,55,52,48,56,51,57,93,44,91,45,49,48,52,46,53,52,56,54,53,50,44,51,55,46,53,55,52,55,93,44,91,45,49,48,52,46,55,52,56,52,52,55,44,51,55,46,52,48,55,52,51,55,93,44,91,45,49,48,52,46,57,57,53,53,48,53,44,51,55,46,51,55,53,53,53,49,93,44,91,45,49,48,53,46,49,53,52,49,55,54,44,51,55,46,50,57,51,49,50,57,93,44,91,45,49,48,53,46,49,53,53,48,52,50,44,51,54,46,57,57,53,50,54,50,93,44,91,45,49,48,52,46,48,48,55,56,53,49,44,51,54,46,57,57,54,49,51,52,93,44,91,45,49,48,51,46,48,56,54,49,48,50,44,51,55,46,48,48,48,49,56,56,93,44,91,45,49,48,51,46,48,55,53,57,51,56,44,51,55,46,54,52,51,52,50,93,44,91,45,49,48,51,46,52,48,52,51,51,57,44,51,55,46,54,52,51,53,55,54,93,44,91,45,49,48,52,46,48,53,56,49,57,54,44,51,55,46,54,52,52,48,52,57,93,44,91,45,49,48,52,46,48,54,49,49,51,50,44,51,55,46,55,51,52,55,48,52,93,44,91,45,49,48,52,46,51,53,49,49,48,57,44,51,55,46,56,49,55,52,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,57,34,44,34,78,65,77,69,34,58,34,76,108,97,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,52,48,44,34,98,101,100,115,34,58,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,54,52,54,49,50,44,51,48,46,57,50,49,51,54,56,93,44,91,45,57,56,46,57,54,52,50,51,50,44,51,48,46,52,57,56,52,56,50,93,44,91,45,57,56,46,53,57,49,54,55,44,51,48,46,52,57,57,56,55,53,93,44,91,45,57,56,46,51,53,49,48,52,49,44,51,48,46,52,56,54,48,57,54,93,44,91,45,57,56,46,52,49,56,53,57,52,44,51,48,46,54,52,53,57,50,54,93,44,91,45,57,56,46,51,57,51,54,52,54,44,51,48,46,56,52,50,57,54,93,44,91,45,57,56,46,52,52,53,55,56,50,44,51,48,46,57,50,49,52,51,57,93,44,91,45,57,56,46,57,54,52,54,49,50,44,51,48,46,57,50,49,51,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,57,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,48,51,57,57,54,44,51,48,46,52,57,57,56,51,50,93,44,91,45,57,56,46,57,54,52,50,51,50,44,51,48,46,52,57,56,52,56,50,93,44,91,45,57,56,46,57,54,52,54,49,50,44,51,48,46,57,50,49,51,54,56,93,44,91,45,57,57,46,48,57,50,51,49,55,44,51,48,46,57,52,49,48,48,50,93,44,91,45,57,57,46,52,56,52,55,53,53,44,51,48,46,57,52,48,54,48,53,93,44,91,45,57,57,46,52,56,51,56,54,57,44,51,48,46,55,49,48,55,55,49,93,44,91,45,57,57,46,52,56,52,52,57,51,44,51,48,46,52,57,57,54,52,49,93,44,91,45,57,57,46,51,48,51,57,57,54,44,51,48,46,52,57,57,56,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,51,54,51,57,53,44,51,52,46,57,56,55,53,54,52,93,44,91,45,56,51,46,53,52,57,51,55,54,44,51,52,46,57,57,50,51,57,51,93,44,91,45,56,51,46,52,56,50,57,52,57,44,51,52,46,57,57,51,51,48,49,93,44,91,45,56,51,46,54,52,56,52,53,53,44,51,53,46,49,53,50,56,57,54,93,44,91,45,56,51,46,55,51,56,49,50,57,44,51,53,46,49,53,53,57,53,93,44,91,45,56,51,46,56,52,48,55,51,51,44,51,53,46,49,52,51,56,52,49,93,44,91,45,56,52,46,48,48,53,49,51,50,44,51,52,46,57,56,55,49,55,53,93,44,91,45,56,51,46,57,51,54,51,57,53,44,51,52,46,57,56,55,53,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,50,50,55,44,34,98,101,100,115,34,58,49,48,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,51,54,55,48,53,53,44,52,49,46,53,57,48,57,55,55,93,44,91,45,55,52,46,52,56,52,51,54,55,44,52,49,46,53,48,52,50,51,53,93,44,91,45,55,52,46,55,53,50,51,57,57,44,52,49,46,52,57,51,55,52,51,93,44,91,45,55,52,46,55,53,52,54,57,44,52,49,46,52,50,52,57,55,51,93,44,91,45,55,52,46,54,57,52,57,49,52,44,52,49,46,51,53,55,52,50,51,93,44,91,45,55,52,46,51,54,55,53,49,44,52,49,46,50,48,51,50,52,49,93,44,91,45,55,52,46,50,51,52,50,56,56,44,52,49,46,49,52,51,48,48,56,93,44,91,45,55,51,46,57,56,49,51,56,52,44,52,49,46,51,50,52,54,57,51,93,44,91,45,55,51,46,57,56,49,52,56,54,44,52,49,46,52,51,56,57,48,53,93,44,91,45,55,51,46,57,53,51,51,48,55,44,52,49,46,53,56,57,57,55,55,93,44,91,45,55,52,46,51,54,55,48,53,53,44,52,49,46,53,57,48,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,83,99,104,101,110,101,99,116,97,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,56,56,51,44,34,98,101,100,115,34,58,52,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,49,56,48,50,55,52,44,52,50,46,55,50,57,57,55,57,93,44,91,45,55,51,46,56,48,57,51,54,57,44,52,50,46,55,55,56,56,54,57,93,44,91,45,55,52,46,48,48,53,54,53,54,44,52,50,46,57,51,51,52,56,52,93,44,91,45,55,52,46,48,57,50,57,56,44,52,50,46,57,53,53,56,54,56,93,44,91,45,55,52,46,48,56,51,56,56,51,44,52,50,46,56,57,55,51,53,52,93,44,91,45,55,52,46,50,54,51,51,49,52,44,52,50,46,55,57,54,53,51,52,93,44,91,45,55,52,46,49,56,48,50,55,52,44,52,50,46,55,50,57,57,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,77,105,110,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,55,52,49,44,34,98,101,100,115,34,58,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,51,51,49,51,54,44,51,55,46,55,52,48,56,52,56,93,44,91,45,56,50,46,49,49,55,51,48,52,44,51,55,46,53,53,57,50,50,54,93,44,91,45,56,49,46,57,54,56,48,49,50,44,51,55,46,53,51,56,48,51,53,93,44,91,45,56,49,46,57,50,55,54,56,49,44,51,55,46,53,49,50,49,49,51,93,44,91,45,56,49,46,56,53,53,57,51,57,44,51,55,46,53,52,56,57,49,93,44,91,45,56,49,46,56,48,50,57,51,55,44,51,55,46,54,54,48,53,48,56,93,44,91,45,56,50,46,48,55,57,57,52,49,44,51,55,46,55,48,48,49,50,50,93,44,91,45,56,50,46,49,57,48,54,53,56,44,51,55,46,57,55,52,55,55,56,93,44,91,45,56,50,46,51,48,54,51,57,49,44,51,55,46,57,52,51,54,52,93,44,91,45,56,50,46,52,49,52,55,53,55,44,51,55,46,56,53,53,53,48,57,93,44,91,45,56,50,46,51,51,51,49,51,54,44,51,55,46,55,52,48,56,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,87,97,98,97,117,110,115,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,56,57,48,52,54,44,51,57,46,49,55,50,56,55,56,93,44,91,45,57,54,46,51,57,48,55,57,54,44,51,57,46,48,52,51,50,53,55,93,44,91,45,57,54,46,53,48,49,49,54,54,44,51,57,46,48,52,51,54,54,54,93,44,91,45,57,54,46,53,48,49,53,53,54,44,51,56,46,56,54,57,55,48,52,93,44,91,45,57,54,46,51,57,48,51,57,56,44,51,56,46,56,50,53,56,53,56,93,44,91,45,57,54,46,51,53,50,54,49,51,44,51,56,46,55,51,57,48,50,49,93,44,91,45,57,53,46,57,52,53,57,50,52,44,51,56,46,55,51,57,49,49,50,93,44,91,45,57,53,46,57,52,54,53,56,55,44,51,56,46,56,54,57,57,55,51,93,44,91,45,57,53,46,57,52,54,55,53,52,44,51,57,46,48,57,56,54,56,53,93,44,91,45,57,54,46,48,51,57,48,54,44,51,57,46,49,50,54,53,50,55,93,44,91,45,57,54,46,48,56,51,53,53,55,44,51,57,46,49,57,51,53,48,52,93,44,91,45,57,54,46,50,51,51,54,55,49,44,51,57,46,50,49,50,50,55,57,93,44,91,45,57,54,46,51,56,57,48,52,54,44,51,57,46,49,55,50,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,72,111,117,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,51,48,52,50,52,44,52,51,46,56,52,54,57,51,53,93,44,91,45,57,49,46,55,51,48,50,49,55,44,52,51,46,53,48,48,56,48,54,93,44,91,45,57,49,46,54,49,48,56,51,53,44,52,51,46,53,48,48,54,53,55,93,44,91,45,57,49,46,50,49,55,55,48,54,44,52,51,46,53,48,48,53,53,93,44,91,45,57,49,46,50,54,56,55,52,56,44,52,51,46,54,49,53,51,52,56,93,44,91,45,57,49,46,50,53,55,56,51,57,44,52,51,46,55,50,53,54,54,49,93,44,91,45,57,49,46,50,56,52,49,51,56,44,52,51,46,56,52,55,48,54,53,93,44,91,45,57,49,46,55,51,48,52,50,52,44,52,51,46,56,52,54,57,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,78,105,99,104,111,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,57,52,48,53,44,51,56,46,51,55,49,55,53,93,44,91,45,56,52,46,48,54,50,54,57,49,44,51,56,46,50,51,53,50,48,51,93,44,91,45,56,51,46,57,55,55,57,50,52,44,51,56,46,49,57,50,49,49,56,93,44,91,45,56,51,46,56,52,56,51,53,53,44,51,56,46,50,57,54,57,52,57,93,44,91,45,56,51,46,57,56,48,48,54,56,44,51,56,46,52,51,57,52,52,56,93,44,91,45,56,52,46,49,48,50,49,44,51,56,46,52,53,57,51,55,57,93,44,91,45,56,52,46,49,57,52,48,53,44,51,56,46,51,55,49,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,80,108,121,109,111,117,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,50,49,51,53,44,34,98,101,100,115,34,58,55,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,48,56,48,52,56,51,44,52,50,46,48,57,53,53,51,57,93,44,91,45,55,49,46,48,52,57,52,56,53,44,52,49,46,57,54,51,48,57,52,93,44,91,45,55,48,46,56,56,54,52,51,57,44,52,49,46,55,54,48,50,51,50,93,44,91,45,55,48,46,56,51,57,49,55,53,44,52,49,46,54,49,52,55,54,49,93,44,91,45,55,48,46,55,53,50,52,50,52,44,52,49,46,53,54,53,56,53,49,93,44,91,45,55,48,46,54,50,49,54,50,50,44,52,49,46,55,52,56,57,55,50,93,44,91,45,55,48,46,51,53,53,48,48,52,44,52,50,46,48,48,48,49,48,52,93,44,91,45,55,48,46,51,50,50,53,50,50,44,52,50,46,49,49,55,57,49,53,93,44,91,45,55,48,46,54,48,56,51,56,49,44,52,50,46,49,51,56,52,55,57,93,44,91,45,55,48,46,54,57,48,51,57,51,44,52,50,46,50,55,56,57,57,57,93,44,91,45,55,48,46,54,53,56,55,50,51,44,52,50,46,51,55,53,48,57,56,93,44,91,45,55,48,46,54,55,53,54,57,44,52,50,46,51,55,53,48,57,56,93,44,91,45,55,48,46,55,50,57,50,49,50,44,52,50,46,51,55,51,56,52,56,93,44,91,45,55,48,46,56,57,52,50,57,50,44,52,50,46,51,55,50,51,57,57,93,44,91,45,55,48,46,57,54,48,49,57,50,44,52,50,46,50,57,57,52,57,56,93,44,91,45,55,48,46,57,50,52,56,55,55,44,52,50,46,49,53,55,53,56,93,44,91,45,55,49,46,48,56,48,52,56,51,44,52,50,46,48,57,53,53,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,114,111,110,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,55,56,55,50,44,34,98,101,100,115,34,58,51,52,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,49,55,57,48,53,44,52,48,46,57,49,55,53,55,55,93,44,91,45,55,51,46,57,51,51,56,48,56,44,52,48,46,56,56,50,50,49,52,93,44,91,45,55,51,46,57,49,50,52,53,54,44,52,48,46,55,57,54,48,57,54,93,44,91,45,55,51,46,55,55,56,57,53,56,44,52,48,46,56,49,49,55,49,51,93,44,91,45,55,51,46,55,52,56,48,54,44,52,48,46,56,55,49,55,50,49,93,44,91,45,55,51,46,57,49,55,57,48,53,44,52,48,46,57,49,55,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,68,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,52,49,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,48,57,48,55,56,44,51,54,46,50,52,52,57,56,52,93,44,91,45,55,53,46,56,49,51,49,48,56,44,51,54,46,50,50,51,53,54,93,44,91,45,55,53,46,55,54,52,55,50,55,44,51,54,46,48,54,48,49,51,57,93,44,91,45,55,53,46,56,52,48,48,52,54,44,51,54,46,48,50,56,56,51,52,93,44,91,45,55,53,46,57,53,52,51,55,52,44,51,53,46,57,57,48,48,54,52,93,44,91,45,55,54,46,48,48,56,51,52,56,44,51,53,46,56,57,53,56,48,50,93,44,91,45,55,54,46,48,50,55,52,55,57,44,51,53,46,54,54,56,56,52,57,93,44,91,45,55,53,46,57,48,49,51,52,50,44,51,53,46,54,54,56,57,53,50,93,44,91,45,55,53,46,56,49,52,48,50,49,44,51,53,46,53,48,48,49,56,50,93,44,91,45,55,53,46,55,51,54,54,50,44,51,53,46,49,52,48,53,54,53,93,44,91,45,55,53,46,52,55,52,54,44,51,53,46,50,48,50,48,50,57,93,44,91,45,55,53,46,52,48,48,51,57,44,51,53,46,53,57,51,53,49,50,93,44,91,45,55,53,46,52,51,55,54,49,55,44,51,53,46,55,52,54,57,54,93,44,91,45,55,53,46,55,48,57,48,55,56,44,51,54,46,50,52,52,57,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,77,101,100,105,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,50,53,55,44,34,98,101,100,115,34,58,49,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,56,52,57,53,44,52,49,46,50,55,55,49,52,54,93,44,91,45,56,49,46,56,55,56,48,53,51,44,52,49,46,50,55,53,48,52,52,93,44,91,45,56,49,46,57,55,51,56,57,53,44,52,49,46,49,57,57,56,51,49,93,44,91,45,56,50,46,49,54,57,56,55,53,44,52,49,46,49,51,55,48,57,55,93,44,91,45,56,50,46,49,55,49,52,57,50,44,52,49,46,48,54,51,53,51,55,93,44,91,45,56,50,46,49,50,57,51,51,52,44,52,48,46,57,57,49,56,48,55,93,44,91,45,56,49,46,54,56,56,52,57,49,44,52,48,46,57,56,56,53,57,93,44,91,45,56,49,46,54,56,52,57,53,44,52,49,46,50,55,55,49,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,114,109,115,116,114,111,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,51,51,49,44,34,98,101,100,115,34,58,49,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,54,57,48,55,49,49,44,52,49,46,49,55,48,54,57,49,93,44,91,45,55,57,46,54,57,50,57,51,44,52,48,46,54,54,57,55,52,52,93,44,91,45,55,57,46,54,57,50,53,56,55,44,52,48,46,54,54,57,55,51,50,93,44,91,45,55,57,46,53,54,49,49,49,44,52,48,46,53,54,52,49,49,51,93,44,91,45,55,57,46,52,53,48,49,55,54,44,52,48,46,53,51,48,49,52,57,93,44,91,45,55,57,46,50,49,53,50,49,53,44,52,48,46,55,55,53,57,52,50,93,44,91,45,55,57,46,50,49,53,51,49,44,52,48,46,57,49,49,51,52,54,93,44,91,45,55,57,46,50,49,53,50,49,52,44,52,49,46,48,53,48,53,49,53,93,44,91,45,55,57,46,51,56,53,53,51,55,44,52,48,46,57,56,57,55,54,54,93,44,91,45,55,57,46,53,57,55,48,49,51,44,52,48,46,57,57,52,51,56,56,93,44,91,45,55,57,46,54,54,53,55,54,50,44,52,49,46,48,52,57,49,50,51,93,44,91,45,55,57,46,54,57,48,55,49,49,44,52,49,46,49,55,48,54,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,116,108,97,110,116,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,56,53,51,57,44,34,98,101,100,115,34,58,56,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,57,56,53,50,55,49,44,51,57,46,53,49,52,57,54,55,93,44,91,45,55,52,46,56,53,53,57,55,56,44,51,57,46,52,50,52,50,51,56,93,44,91,45,55,52,46,56,54,49,50,57,52,44,51,57,46,51,50,51,56,49,53,93,44,91,45,55,52,46,55,53,50,49,54,53,44,51,57,46,50,57,53,48,48,53,93,44,91,45,55,52,46,52,54,52,57,51,44,51,57,46,50,57,56,50,51,93,44,91,45,55,52,46,51,54,50,53,49,51,44,51,57,46,51,50,53,55,56,49,93,44,91,45,55,52,46,50,51,50,48,54,50,44,51,57,46,52,55,53,49,57,56,93,44,91,45,55,52,46,51,56,48,55,57,54,44,51,57,46,52,57,56,53,51,55,93,44,91,45,55,52,46,52,49,55,51,57,51,44,51,57,46,53,53,55,50,53,53,93,44,91,45,55,52,46,54,53,57,50,57,53,44,51,57,46,54,51,49,50,51,51,93,44,91,45,55,52,46,55,51,54,50,49,54,44,51,57,46,55,50,57,55,55,53,93,44,91,45,55,52,46,56,55,55,50,54,44,51,57,46,54,48,56,51,53,50,93,44,91,45,55,52,46,57,56,53,50,55,49,44,51,57,46,53,49,52,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,77,97,110,105,116,111,119,111,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,52,48,55,44,34,98,101,100,115,34,58,50,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,52,51,50,52,44,52,52,46,50,52,49,48,49,56,93,44,91,45,56,56,46,48,52,49,55,57,52,44,52,51,46,56,57,49,54,57,50,93,44,91,45,56,55,46,48,55,53,51,51,53,44,52,51,46,56,57,52,55,55,52,93,44,91,45,56,54,46,57,56,55,57,57,56,44,52,52,46,49,56,50,54,52,57,93,44,91,45,56,54,46,57,50,51,52,48,51,44,52,52,46,51,50,56,56,50,53,93,44,91,45,56,55,46,55,54,54,48,50,54,44,52,52,46,51,50,55,49,56,52,93,44,91,45,56,55,46,56,56,56,48,56,55,44,52,52,46,50,52,48,52,54,49,93,44,91,45,56,56,46,48,52,51,50,52,44,52,52,46,50,52,49,48,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,68,111,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,50,55,56,50,54,44,52,53,46,52,48,57,52,56,55,93,44,91,45,56,55,46,51,49,53,52,50,50,44,52,53,46,50,52,48,54,53,55,93,44,91,45,56,55,46,52,48,53,54,57,52,44,52,53,46,50,48,49,57,54,57,93,44,91,45,56,55,46,52,52,50,55,54,44,52,53,46,48,55,54,52,55,49,93,44,91,45,56,55,46,53,53,49,50,54,50,44,52,53,46,48,48,56,48,52,57,93,44,91,45,56,55,46,55,54,50,52,54,52,44,52,52,46,55,54,52,51,54,55,93,44,91,45,56,55,46,55,54,50,51,51,57,44,52,52,46,54,55,55,48,49,53,93,44,91,45,56,55,46,55,53,56,48,52,56,44,52,52,46,54,55,55,48,53,52,93,44,91,45,56,54,46,55,55,56,51,57,56,44,52,52,46,54,55,53,50,49,57,93,44,91,45,56,54,46,55,51,52,53,50,57,44,52,52,46,55,55,51,48,55,52,93,44,91,45,56,54,46,54,56,54,50,56,56,44,52,52,46,56,56,49,48,48,50,93,44,91,45,56,54,46,52,57,57,57,51,44,52,53,46,48,56,48,56,93,44,91,45,56,54,46,50,53,48,49,44,52,53,46,50,51,53,55,51,53,93,44,91,45,56,54,46,52,54,52,49,50,44,52,53,46,51,50,52,56,49,93,44,91,45,56,54,46,55,53,52,50,51,54,44,52,53,46,52,52,51,54,49,93,44,91,45,56,55,46,49,48,49,49,51,51,44,52,53,46,52,52,52,50,51,93,44,91,45,56,55,46,49,50,55,56,50,54,44,52,53,46,52,48,57,52,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,50,57,51,44,34,98,101,100,115,34,58,49,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,53,54,48,56,53,44,51,52,46,51,57,57,52,54,57,93,44,91,45,55,56,46,52,52,53,51,50,44,51,52,46,51,55,55,52,93,44,91,45,55,56,46,54,54,55,53,56,56,44,51,52,46,52,54,57,54,52,53,93,44,91,45,55,56,46,56,54,56,57,54,49,44,51,52,46,52,56,52,55,55,56,93,44,91,45,55,56,46,57,53,49,56,48,56,44,51,52,46,52,52,56,55,53,54,93,44,91,45,55,57,46,48,55,49,50,49,49,44,51,52,46,50,57,57,51,52,50,93,44,91,45,55,56,46,54,53,48,51,49,52,44,51,51,46,57,52,52,51,52,50,93,44,91,45,55,56,46,53,53,53,48,52,51,44,51,52,46,48,54,55,48,55,49,93,44,91,45,55,56,46,51,55,52,50,57,53,44,51,52,46,50,48,52,56,57,51,93,44,91,45,55,56,46,50,53,52,54,50,50,44,51,52,46,50,49,54,51,48,53,93,44,91,45,55,56,46,49,54,50,51,53,44,51,52,46,51,53,55,48,48,55,93,44,91,45,55,56,46,50,53,54,48,56,53,44,51,52,46,51,57,57,52,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,97,108,108,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,49,57,53,44,34,98,101,100,115,34,58,50,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,53,51,48,57,44,51,57,46,48,51,53,48,55,57,93,44,91,45,56,50,46,52,53,53,49,55,57,44,51,56,46,56,52,52,53,55,55,93,44,91,45,56,50,46,53,55,53,53,56,51,44,51,56,46,56,52,52,52,55,56,93,44,91,45,56,50,46,52,56,51,53,55,57,44,51,56,46,55,55,50,50,55,56,93,44,91,45,56,50,46,52,55,50,52,55,56,44,51,56,46,54,56,50,50,55,57,93,44,91,45,56,50,46,51,53,52,52,54,56,44,51,56,46,54,55,54,48,55,93,44,91,45,56,50,46,50,56,55,50,55,44,51,56,46,53,56,50,55,56,51,93,44,91,45,56,50,46,50,49,56,57,54,55,44,51,56,46,53,57,49,54,56,51,93,44,91,45,56,50,46,49,55,49,57,54,54,44,51,56,46,54,50,53,51,56,52,93,44,91,45,56,50,46,50,50,49,53,54,54,44,51,56,46,55,56,55,49,56,55,93,44,91,45,56,50,46,49,52,52,49,54,55,44,51,56,46,56,52,49,56,56,93,44,91,45,56,50,46,48,57,56,57,54,53,44,51,56,46,57,53,56,51,55,56,93,44,91,45,56,50,46,48,57,53,52,54,53,44,51,57,46,48,48,50,55,55,56,93,44,91,45,56,50,46,51,50,50,56,55,52,44,51,57,46,48,50,55,54,55,52,93,44,91,45,56,50,46,52,51,53,51,48,57,44,51,57,46,48,51,53,48,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,52,49,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,51,52,56,44,34,98,101,100,115,34,58,49,48,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,50,57,53,55,57,44,51,50,46,53,49,52,54,53,55,93,44,91,45,49,48,48,46,49,52,54,53,52,51,44,51,50,46,53,50,50,55,57,51,93,44,91,45,49,48,48,46,49,53,49,57,49,49,44,51,50,46,48,56,50,54,51,56,93,44,91,45,57,57,46,55,49,51,57,55,49,44,51,50,46,48,56,50,48,56,57,93,44,91,45,57,57,46,54,51,49,52,49,51,44,51,50,46,48,56,49,50,55,52,93,44,91,45,57,57,46,54,50,57,53,55,57,44,51,50,46,53,49,52,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,55,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,55,48,34,44,34,78,65,77,69,34,58,34,67,111,108,111,110,105,97,108,32,72,101,105,103,104,116,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,48,51,54,55,49,44,51,55,46,50,51,55,51,52,54,93,44,91,45,55,55,46,51,56,50,53,50,49,44,51,55,46,50,52,50,56,51,55,93,44,91,45,55,55,46,51,55,57,49,57,51,44,51,55,46,50,54,55,53,56,93,44,91,45,55,55,46,51,56,56,57,49,55,44,51,55,46,50,56,55,51,52,57,93,44,91,45,55,55,46,52,49,52,52,48,54,44,51,55,46,50,54,48,57,52,57,93,44,91,45,55,55,46,52,49,54,53,48,49,44,51,55,46,50,51,51,50,48,56,93,44,91,45,55,55,46,52,48,51,54,55,49,44,51,55,46,50,51,55,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,115,104,111,99,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,53,55,52,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,56,52,54,48,55,44,52,48,46,52,53,54,50,56,93,44,91,45,56,50,46,49,57,53,57,49,49,44,52,48,46,50,51,57,48,55,49,93,44,91,45,56,50,46,49,56,55,49,48,53,44,52,48,46,49,54,54,56,56,93,44,91,45,56,49,46,55,49,54,50,55,54,44,52,48,46,49,53,50,49,54,54,93,44,91,45,56,49,46,54,50,50,54,56,51,44,52,48,46,50,50,49,51,48,56,93,44,91,45,56,49,46,54,49,54,48,51,44,52,48,46,51,54,56,49,49,56,93,44,91,45,56,49,46,55,48,57,49,51,50,44,52,48,46,52,52,52,55,55,53,93,44,91,45,56,50,46,49,56,52,54,48,55,44,52,48,46,52,53,54,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,80,101,114,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,55,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,52,57,57,55,53,44,52,49,46,48,48,51,57,53,93,44,91,45,49,48,50,46,48,53,49,55,54,49,44,52,49,46,48,48,51,56,57,93,44,91,45,49,48,50,46,48,53,49,55,49,55,44,52,49,46,48,48,50,51,53,57,93,44,91,45,49,48,50,46,48,53,49,52,49,54,44,52,48,46,55,52,57,53,56,54,93,44,91,45,49,48,50,46,48,53,49,52,53,55,44,52,48,46,54,57,55,53,51,57,93,44,91,45,49,48,49,46,51,52,53,51,54,53,44,52,48,46,54,57,56,48,57,51,93,44,91,45,49,48,49,46,50,52,55,57,54,51,44,52,48,46,54,57,55,56,48,50,93,44,91,45,49,48,49,46,50,52,57,57,55,53,44,52,49,46,48,48,51,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,53,34,44,34,78,65,77,69,34,58,34,72,97,114,116,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,54,55,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,52,49,51,52,57,44,51,53,46,55,51,57,52,51,51,93,44,91,45,49,48,51,46,48,52,49,55,48,54,44,51,53,46,54,50,50,52,56,56,93,44,91,45,49,48,50,46,49,54,50,56,48,57,44,51,53,46,54,50,55,53,49,53,93,44,91,45,49,48,50,46,49,54,51,48,49,53,44,51,54,46,48,53,53,50,52,57,93,44,91,45,49,48,51,46,48,52,49,48,54,50,44,51,54,46,48,53,53,50,50,54,93,44,91,45,49,48,51,46,48,52,49,51,52,57,44,51,53,46,55,51,57,52,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,71,114,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,54,54,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,56,53,52,57,50,54,44,52,48,46,52,56,54,50,53,50,93,44,91,45,49,48,53,46,57,48,53,57,57,44,52,48,46,51,57,57,54,53,50,93,44,91,45,49,48,54,46,50,51,48,55,52,54,44,52,48,46,51,50,52,52,56,54,93,44,91,45,49,48,54,46,54,49,50,51,50,49,44,52,48,46,51,55,57,51,56,51,93,44,91,45,49,48,54,46,54,53,50,49,49,50,44,52,48,46,52,52,53,50,51,49,93,44,91,45,49,48,54,46,54,51,50,50,53,55,44,52,48,46,51,52,49,53,53,57,93,44,91,45,49,48,54,46,54,50,54,53,54,57,44,51,57,46,57,50,52,55,56,53,93,44,91,45,49,48,54,46,52,51,52,53,48,56,44,51,57,46,57,50,52,57,49,52,93,44,91,45,49,48,54,46,50,53,50,48,50,55,44,51,57,46,57,49,52,55,49,50,93,44,91,45,49,48,54,46,48,56,51,55,49,49,44,51,57,46,56,48,53,57,54,52,93,44,91,45,49,48,54,46,48,50,51,55,56,51,44,51,57,46,54,56,56,52,50,93,44,91,45,49,48,53,46,57,50,52,54,49,56,44,51,57,46,54,57,56,57,55,50,93,44,91,45,49,48,53,46,54,57,48,51,52,56,44,51,57,46,56,53,49,57,57,54,93,44,91,45,49,48,53,46,54,55,53,55,57,56,44,51,57,46,57,51,50,52,52,53,93,44,91,45,49,48,53,46,54,51,56,50,57,50,44,52,48,46,48,52,52,51,50,54,93,44,91,45,49,48,53,46,54,53,51,51,50,49,44,52,48,46,50,54,48,52,53,55,93,44,91,45,49,48,53,46,56,53,52,57,50,54,44,52,48,46,52,56,54,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,57,34,44,34,78,65,77,69,34,58,34,74,105,109,32,87,101,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,49,57,50,44,34,98,101,100,115,34,58,49,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,51,53,52,57,55,44,50,56,46,48,53,55,57,54,54,93,44,91,45,57,56,46,50,51,50,52,54,52,44,50,55,46,50,54,50,52,56,55,93,44,91,45,57,56,46,48,53,56,48,55,56,44,50,55,46,50,54,48,57,56,49,93,44,91,45,57,56,46,48,53,57,56,44,50,55,46,54,51,53,56,54,57,93,44,91,45,57,55,46,57,52,50,49,52,54,44,50,55,46,54,51,53,57,51,50,93,44,91,45,57,55,46,57,51,52,50,55,52,44,50,55,46,56,56,53,50,48,50,93,44,91,45,57,55,46,55,57,56,53,49,55,44,50,55,46,57,57,53,54,53,57,93,44,91,45,57,55,46,56,56,51,49,52,56,44,50,56,46,48,53,54,57,93,44,91,45,57,56,46,50,51,53,52,57,55,44,50,56,46,48,53,55,57,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,87,105,110,110,101,98,97,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,55,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,55,48,55,54,50,44,52,51,46,52,57,57,56,56,54,93,44,91,45,57,51,46,57,55,48,52,49,53,44,52,51,46,50,53,53,51,53,56,93,44,91,45,57,51,46,52,57,55,54,51,53,44,52,51,46,50,53,53,52,54,56,93,44,91,45,57,51,46,52,57,55,51,53,51,44,52,51,46,52,57,57,54,50,50,93,44,91,45,57,51,46,54,52,56,53,51,51,44,52,51,46,52,57,57,54,56,93,44,91,45,57,51,46,57,55,48,55,54,50,44,52,51,46,52,57,57,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,83,97,110,32,76,117,105,115,32,79,98,105,115,112,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,49,52,53,53,44,34,98,101,100,115,34,58,49,55,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,50,49,51,57,55,57,44,51,53,46,55,56,57,50,55,54,93,44,91,45,49,50,49,46,52,51,56,49,55,54,44,51,53,46,55,57,54,54,53,53,93,44,91,45,49,50,49,46,51,50,51,53,49,50,44,51,53,46,54,50,52,57,54,57,93,44,91,45,49,50,49,46,50,48,49,53,53,53,44,51,53,46,53,56,51,54,57,93,44,91,45,49,50,49,46,48,52,49,54,51,53,44,51,53,46,52,49,57,57,57,93,44,91,45,49,50,48,46,57,51,51,50,57,50,44,51,53,46,51,57,50,55,52,56,93,44,91,45,49,50,48,46,57,54,48,50,52,55,44,51,53,46,50,52,51,54,50,50,93,44,91,45,49,50,48,46,56,48,48,52,49,49,44,51,53,46,49,49,54,53,55,55,93,44,91,45,49,50,48,46,54,56,57,54,48,54,44,51,53,46,48,57,56,56,50,56,93,44,91,45,49,50,48,46,55,48,50,55,57,53,44,51,52,46,57,57,57,57,55,53,93,44,91,45,49,50,48,46,54,51,52,49,52,52,44,51,52,46,57,53,57,53,54,50,93,44,91,45,49,50,48,46,52,57,54,50,50,50,44,51,52,46,57,57,51,49,53,53,93,44,91,45,49,50,48,46,51,50,55,49,49,53,44,51,52,46,57,56,54,53,50,53,93,44,91,45,49,50,48,46,48,57,54,57,51,44,51,53,46,49,48,57,53,57,53,93,44,91,45,49,49,57,46,55,52,53,53,54,54,44,51,52,46,57,55,51,54,55,54,93,44,91,45,49,49,57,46,52,55,50,55,53,52,44,51,52,46,57,48,49,49,55,52,93,44,91,45,49,49,57,46,52,55,50,55,49,57,44,51,53,46,48,55,54,56,56,53,93,44,91,45,49,49,57,46,53,53,51,54,52,49,44,51,53,46,49,55,57,57,55,53,93,44,91,45,49,49,57,46,54,54,55,48,53,54,44,51,53,46,49,55,52,56,48,57,93,44,91,45,49,49,57,46,54,54,54,54,54,51,44,51,53,46,50,54,50,53,50,55,93,44,91,45,49,49,57,46,56,48,57,52,52,57,44,51,53,46,50,54,51,53,56,52,93,44,91,45,49,49,57,46,56,56,48,49,55,50,44,51,53,46,51,53,49,50,49,49,93,44,91,45,49,49,57,46,56,56,48,48,52,53,44,51,53,46,52,51,57,49,51,51,93,44,91,45,49,50,48,46,48,56,54,54,55,52,44,51,53,46,53,50,54,53,53,52,93,44,91,45,49,50,48,46,49,57,51,57,49,56,44,51,53,46,54,49,52,51,53,57,93,44,91,45,49,50,48,46,49,57,52,49,52,54,44,51,53,46,55,56,57,50,48,52,93,44,91,45,49,50,48,46,50,49,51,57,55,57,44,51,53,46,55,56,57,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,49,54,52,51,55,44,51,49,46,54,49,57,52,54,54,93,44,91,45,56,53,46,52,49,55,52,51,52,44,51,49,46,51,49,52,57,55,51,93,44,91,45,56,53,46,48,56,55,54,53,49,44,51,49,46,51,48,56,54,55,55,93,44,91,45,56,53,46,48,52,53,52,57,53,44,51,49,46,53,49,55,49,50,57,93,44,91,45,56,53,46,49,50,55,51,50,57,44,51,49,46,55,54,50,53,54,51,93,44,91,45,56,53,46,50,49,54,48,55,54,44,51,49,46,55,48,50,52,48,57,93,44,91,45,56,53,46,52,49,54,48,51,56,44,51,49,46,55,48,54,54,54,52,93,44,91,45,56,53,46,52,49,54,52,51,55,44,51,49,46,54,49,57,52,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,87,121,97,110,100,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,48,55,44,34,98,101,100,115,34,58,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,50,48,51,49,57,44,52,48,46,57,57,49,56,56,57,93,44,91,45,56,51,46,53,49,53,56,56,51,44,52,48,46,56,49,56,49,51,52,93,44,91,45,56,51,46,52,57,53,55,57,56,44,52,48,46,55,48,49,53,49,53,93,44,91,45,56,51,46,52,49,57,56,51,54,44,52,48,46,54,56,54,56,50,51,93,44,91,45,56,51,46,49,49,49,51,54,44,52,48,46,55,48,50,57,49,53,93,44,91,45,56,51,46,49,49,50,55,51,55,44,52,48,46,57,57,51,52,52,55,93,44,91,45,56,51,46,52,50,48,51,49,57,44,52,48,46,57,57,49,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,53,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,48,53,34,44,34,78,65,77,69,34,58,34,90,97,112,97,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,53,51,55,57,52,44,50,55,46,50,54,53,48,53,56,93,44,91,45,57,57,46,52,50,54,52,49,56,44,50,55,46,49,55,56,50,56,55,93,44,91,45,57,57,46,52,52,54,49,50,51,44,50,55,46,48,50,51,48,52,56,93,44,91,45,57,57,46,50,54,56,54,49,51,44,50,54,46,56,52,51,50,49,51,93,44,91,45,57,57,46,49,54,57,52,49,54,44,50,54,46,53,55,49,54,56,50,93,44,91,45,57,57,46,48,49,49,49,49,50,44,50,54,46,54,55,53,48,50,51,93,44,91,45,57,56,46,57,53,52,50,51,44,50,54,46,55,56,53,54,57,52,93,44,91,45,57,56,46,57,53,52,54,54,57,44,50,55,46,50,54,57,51,57,55,93,44,91,45,57,57,46,52,53,51,55,57,52,44,50,55,46,50,54,53,48,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,48,53,50,48,52,44,51,49,46,54,57,49,48,53,56,93,44,91,45,56,52,46,50,57,55,56,48,49,44,51,49,46,54,50,49,57,53,49,93,44,91,45,56,52,46,48,52,51,50,49,51,44,51,49,46,54,50,51,53,55,51,93,44,91,45,56,52,46,48,49,56,52,48,52,44,51,49,46,54,53,48,50,55,52,93,44,91,45,56,52,46,48,50,53,54,50,51,44,51,49,46,55,49,48,48,50,50,93,44,91,45,56,51,46,57,51,57,52,51,55,44,51,49,46,56,52,55,57,50,57,93,44,91,45,56,51,46,57,50,50,52,57,52,44,51,49,46,57,48,57,54,53,51,93,44,91,45,56,52,46,51,51,56,49,52,51,44,51,49,46,57,49,54,49,57,93,44,91,45,56,52,46,51,51,56,50,52,53,44,51,49,46,56,55,51,53,57,49,93,44,91,45,56,52,46,50,54,50,51,52,57,44,51,49,46,56,50,56,52,56,56,93,44,91,45,56,52,46,51,48,53,50,48,52,44,51,49,46,54,57,49,48,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,48,57,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,49,55,52,53,52,44,51,56,46,51,55,51,57,51,53,93,44,91,45,56,50,46,55,57,52,50,48,54,44,51,56,46,50,52,51,55,55,50,93,44,91,45,56,50,46,54,48,52,54,50,53,44,51,56,46,50,52,55,54,54,50,93,44,91,45,56,50,46,53,57,51,52,56,44,51,56,46,52,50,49,56,50,49,93,44,91,45,56,50,46,54,54,53,52,49,49,44,51,56,46,53,48,53,55,56,55,93,44,91,45,56,50,46,56,49,55,52,53,52,44,51,56,46,51,55,51,57,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,114,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,52,49,54,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,54,55,51,54,55,44,52,52,46,57,55,55,57,54,52,93,44,91,45,57,52,46,48,49,50,50,51,54,44,52,52,46,57,55,56,55,49,50,93,44,91,45,57,52,46,48,49,48,52,57,52,44,52,52,46,55,49,55,52,54,52,93,44,91,45,57,51,46,55,54,56,48,51,57,44,52,52,46,54,52,48,51,48,51,93,44,91,45,57,51,46,53,50,48,52,51,49,44,52,52,46,56,48,52,50,54,51,93,44,91,45,57,51,46,53,50,48,55,48,54,44,52,52,46,56,57,49,53,48,50,93,44,91,45,57,51,46,55,54,55,48,52,49,44,52,52,46,56,57,48,56,54,50,93,44,91,45,57,51,46,55,54,55,51,54,55,44,52,52,46,57,55,55,57,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,111,108,102,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,53,50,52,50,53,44,52,49,46,55,52,51,48,56,53,93,44,91,45,57,55,46,50,53,51,53,49,57,44,52,49,46,51,56,52,50,49,50,93,44,91,45,57,55,46,49,55,53,54,49,51,44,52,49,46,51,55,55,48,56,51,93,44,91,45,57,54,46,57,48,53,57,49,44,52,49,46,52,53,54,52,51,54,93,44,91,45,57,54,46,57,48,53,57,50,50,44,52,49,46,55,52,50,55,54,51,93,44,91,45,57,55,46,48,49,57,57,49,49,44,52,49,46,55,52,50,57,56,93,44,91,45,57,55,46,50,53,50,52,50,53,44,52,49,46,55,52,51,48,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,104,101,115,116,101,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,48,50,52,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,54,49,55,49,44,51,52,46,56,49,55,52,50,57,93,44,91,45,56,48,46,52,48,56,51,55,51,44,51,52,46,54,49,52,55,54,53,93,44,91,45,56,48,46,51,50,55,53,57,44,51,52,46,52,57,55,55,54,93,44,91,45,56,48,46,50,56,56,53,57,54,44,51,52,46,51,54,54,50,48,55,93,44,91,45,56,48,46,48,52,53,52,51,57,44,51,52,46,52,57,50,54,51,49,93,44,91,45,55,57,46,56,56,52,53,52,50,44,51,52,46,52,57,49,50,49,56,93,44,91,45,55,57,46,56,50,57,57,56,49,44,51,52,46,53,51,49,57,50,53,93,44,91,45,55,57,46,56,48,51,56,55,55,44,51,52,46,54,48,57,48,53,51,93,44,91,45,55,57,46,57,50,55,52,49,50,44,51,52,46,56,48,54,55,51,52,93,44,91,45,56,48,46,51,50,48,56,50,56,44,51,52,46,56,49,51,57,48,54,93,44,91,45,56,48,46,53,54,49,55,49,44,51,52,46,56,49,55,52,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,53,56,49,56,57,44,51,53,46,54,48,57,51,52,57,93,44,91,45,56,55,46,55,49,55,53,53,57,44,51,53,46,52,56,51,51,52,55,93,44,91,45,56,55,46,53,55,53,51,53,50,44,51,53,46,51,57,56,52,53,52,93,44,91,45,56,55,46,50,57,52,53,51,52,44,51,53,46,52,52,52,54,55,54,93,44,91,45,56,55,46,51,51,57,50,51,50,44,51,53,46,54,53,57,49,49,93,44,91,45,56,55,46,52,53,57,53,56,55,44,51,53,46,54,49,53,49,50,52,93,44,91,45,56,55,46,53,54,56,56,51,49,44,51,53,46,54,53,50,50,57,54,93,44,91,45,56,55,46,54,53,56,49,56,57,44,51,53,46,54,48,57,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,49,56,50,49,44,34,98,101,100,115,34,58,57,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,52,54,52,56,56,44,52,53,46,52,51,51,51,51,50,93,44,91,45,49,50,51,46,49,51,53,52,50,55,44,52,53,46,52,51,51,52,53,57,93,44,91,45,49,50,50,46,56,54,55,56,57,49,44,52,53,46,51,49,55,51,52,53,93,44,91,45,49,50,50,46,55,52,51,55,52,49,44,52,53,46,51,51,50,48,54,55,93,44,91,45,49,50,50,46,55,52,51,55,50,49,44,52,53,46,52,51,51,50,57,52,93,44,91,45,49,50,50,46,55,52,51,56,54,50,44,52,53,46,53,49,57,53,48,57,93,44,91,45,49,50,50,46,57,50,57,49,50,56,44,52,53,46,54,51,53,51,49,51,93,44,91,45,49,50,50,46,57,50,57,49,52,54,44,52,53,46,55,50,49,52,56,50,93,44,91,45,49,50,51,46,48,51,48,56,55,51,44,52,53,46,55,55,57,49,53,57,93,44,91,45,49,50,51,46,51,54,49,54,50,50,44,52,53,46,55,55,57,53,55,57,93,44,91,45,49,50,51,46,52,56,52,55,50,54,44,52,53,46,55,48,56,55,54,52,93,44,91,45,49,50,51,46,51,54,49,49,51,49,44,52,53,46,53,55,56,55,55,57,93,44,91,45,49,50,51,46,52,54,52,56,56,44,52,53,46,52,51,51,51,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,56,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,56,49,48,34,44,34,78,65,77,69,34,58,34,86,105,114,103,105,110,105,97,32,66,101,97,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,48,49,51,53,44,34,98,101,100,115,34,58,56,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,50,50,54,48,54,44,51,54,46,56,51,57,57,52,55,93,44,91,45,55,54,46,49,50,49,57,53,53,44,51,54,46,54,54,53,55,53,93,44,91,45,55,54,46,49,50,50,51,52,57,44,51,54,46,53,53,48,53,50,51,93,44,91,45,55,53,46,55,57,55,52,57,55,44,51,54,46,53,53,48,57,49,54,93,44,91,45,55,53,46,57,50,54,56,52,55,44,51,54,46,57,51,54,52,54,50,93,44,91,45,55,53,46,57,48,57,52,57,49,44,51,54,46,57,57,48,55,48,56,93,44,91,45,55,54,46,49,51,51,56,55,50,44,51,55,46,48,52,48,56,56,54,93,44,91,45,55,54,46,50,50,54,48,54,44,51,54,46,56,51,57,57,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,49,56,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,48,53,50,53,57,44,52,53,46,55,57,56,51,48,54,93,44,91,45,49,49,49,46,57,50,54,57,54,53,44,52,53,46,56,53,53,54,57,52,93,44,91,45,49,49,50,46,48,56,56,55,54,44,52,53,46,56,52,57,48,53,93,44,91,45,49,49,50,46,49,57,48,50,54,57,44,52,53,46,55,52,56,53,48,51,93,44,91,45,49,49,50,46,53,49,53,52,53,51,44,52,53,46,55,52,54,55,48,50,93,44,91,45,49,49,50,46,54,56,55,48,53,52,44,52,53,46,54,50,52,56,53,52,93,44,91,45,49,49,50,46,54,56,55,56,51,57,44,52,53,46,52,55,55,50,52,93,44,91,45,49,49,50,46,53,48,53,53,54,56,44,52,53,46,52,52,51,48,48,57,93,44,91,45,49,49,50,46,52,53,56,48,54,50,44,52,53,46,51,52,57,57,49,93,44,91,45,49,49,50,46,52,53,54,56,53,52,44,52,53,46,48,56,56,53,48,57,93,44,91,45,49,49,50,46,51,51,52,50,52,56,44,52,53,46,48,48,48,53,49,57,93,44,91,45,49,49,50,46,49,57,49,49,56,55,44,52,53,46,48,48,48,53,49,50,93,44,91,45,49,49,50,46,49,54,55,49,48,56,44,52,52,46,56,50,54,55,51,56,93,44,91,45,49,49,50,46,48,54,53,55,57,55,44,52,52,46,55,56,51,52,55,53,93,44,91,45,49,49,49,46,55,56,49,49,53,55,44,52,52,46,55,56,49,48,50,55,93,44,91,45,49,49,49,46,55,56,49,48,57,57,44,52,52,46,55,48,56,56,52,53,93,44,91,45,49,49,49,46,52,55,52,57,54,51,44,52,52,46,55,48,56,55,55,51,93,44,91,45,49,49,49,46,51,55,55,48,49,53,44,52,52,46,55,53,49,52,52,51,93,44,91,45,49,49,49,46,51,55,51,48,51,44,52,53,46,51,53,48,53,50,49,93,44,91,45,49,49,49,46,51,53,49,51,56,44,52,53,46,54,52,49,57,51,56,93,44,91,45,49,49,49,46,53,51,54,50,52,49,44,52,53,46,54,52,50,50,53,55,93,44,91,45,49,49,49,46,54,53,57,55,51,56,44,52,53,46,55,52,51,51,52,52,93,44,91,45,49,49,49,46,56,48,53,50,53,57,44,52,53,46,55,57,56,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,76,97,110,99,97,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,48,55,56,50,56,44,51,55,46,56,51,56,56,49,52,93,44,91,45,55,54,46,54,54,56,49,56,50,44,51,55,46,55,55,56,51,56,54,93,44,91,45,55,54,46,53,51,54,53,56,57,44,51,55,46,54,51,57,49,57,52,93,44,91,45,55,54,46,51,54,56,50,49,51,44,51,55,46,53,57,52,51,51,49,93,44,91,45,55,54,46,49,53,49,55,49,49,44,51,55,46,53,56,53,57,54,56,93,44,91,45,55,54,46,49,55,53,54,56,55,44,51,55,46,54,55,49,54,50,54,93,44,91,45,55,54,46,51,48,56,51,54,55,44,51,55,46,54,54,57,55,55,51,93,44,91,45,55,54,46,52,50,48,48,55,49,44,51,55,46,56,50,51,55,54,54,93,44,91,45,55,54,46,53,48,55,56,50,56,44,51,55,46,56,51,56,56,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,97,116,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,55,52,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,51,50,51,50,44,51,56,46,51,56,56,55,49,56,93,44,91,45,57,52,46,54,49,52,48,54,49,44,51,56,46,48,54,48,48,53,54,93,44,91,45,57,52,46,48,53,56,50,56,53,44,51,56,46,48,51,54,54,50,55,93,44,91,45,57,52,46,48,52,57,56,57,53,44,51,56,46,50,49,51,57,56,53,93,44,91,45,57,52,46,48,54,53,55,49,51,44,51,56,46,52,52,55,48,56,55,93,44,91,45,57,52,46,54,49,50,56,56,50,44,51,56,46,52,55,55,53,57,55,93,44,91,45,57,52,46,54,49,51,50,51,50,44,51,56,46,51,56,56,55,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,101,108,107,110,97,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,54,52,48,44,34,98,101,100,115,34,58,49,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,55,50,55,53,55,51,44,52,51,46,53,54,51,52,49,49,93,44,91,45,55,49,46,54,49,50,52,50,54,44,52,51,46,52,51,55,56,57,51,93,44,91,45,55,49,46,53,53,48,48,51,44,52,51,46,52,53,50,55,48,49,93,44,91,45,55,49,46,50,51,54,48,49,49,44,52,51,46,50,56,52,57,57,52,93,44,91,45,55,49,46,49,53,57,51,54,52,44,52,51,46,51,53,53,49,50,51,93,44,91,45,55,49,46,49,54,50,54,55,53,44,52,51,46,53,51,56,57,53,57,93,44,91,45,55,49,46,50,53,56,50,53,57,44,52,51,46,53,55,49,51,52,53,93,44,91,45,55,49,46,53,51,49,54,53,56,44,52,51,46,55,54,48,57,55,57,93,44,91,45,55,49,46,54,52,56,51,52,54,44,52,51,46,54,56,52,53,49,49,93,44,91,45,55,49,46,55,50,55,53,55,51,44,52,51,46,53,54,51,52,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,82,105,99,104,109,111,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,55,56,44,34,98,101,100,115,34,58,57,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,51,54,57,53,57,44,51,56,46,48,55,55,48,55,52,93,44,91,45,55,54,46,57,48,48,52,57,44,51,55,46,57,56,50,49,52,50,93,44,91,45,55,54,46,54,54,56,49,56,50,44,51,55,46,55,55,56,51,56,54,93,44,91,45,55,54,46,53,48,55,56,50,56,44,51,55,46,56,51,56,56,49,52,93,44,91,45,55,54,46,54,51,52,50,51,44,51,55,46,57,54,54,54,51,93,44,91,45,55,54,46,55,52,56,56,55,49,44,51,55,46,57,57,52,56,57,55,93,44,91,45,55,54,46,56,55,55,48,54,50,44,51,56,46,49,50,52,51,53,56,93,44,91,45,55,54,46,57,51,54,57,53,57,44,51,56,46,48,55,55,48,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,48,34,44,34,78,65,77,69,34,58,34,83,107,97,103,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,53,46,55,49,55,51,48,55,44,53,57,46,55,51,48,48,52,51,93,44,91,45,49,51,53,46,51,55,53,48,50,44,53,57,46,51,53,48,48,51,51,93,44,91,45,49,51,53,46,48,51,48,53,50,53,44,53,57,46,51,52,54,51,52,56,93,44,91,45,49,51,53,46,49,48,49,48,50,44,53,57,46,52,50,55,53,51,49,93,44,91,45,49,51,53,46,48,50,56,57,48,51,44,53,57,46,53,54,51,54,53,57,93,44,91,45,49,51,53,46,52,55,57,49,54,49,44,53,57,46,55,57,56,48,52,49,93,44,91,45,49,51,53,46,55,49,55,51,48,55,44,53,57,46,55,51,48,48,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,72,111,111,110,97,104,45,65,110,103,111,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,44,91,45,49,51,51,46,56,49,51,48,53,49,44,53,55,46,56,51,55,54,50,52,93,44,91,45,49,51,52,46,49,55,54,57,57,44,53,56,46,49,53,56,51,50,93,44,91,45,49,51,52,46,53,51,56,52,49,51,44,53,56,46,48,57,56,49,55,50,93,44,91,45,49,51,52,46,54,57,55,55,54,54,44,53,56,46,48,51,50,48,51,54,93,44,91,45,49,51,52,46,55,55,54,56,54,50,44,53,56,46,48,57,57,48,52,53,93,44,91,45,49,51,52,46,54,57,52,56,51,54,44,53,56,46,50,55,54,53,50,50,93,44,91,45,49,51,53,46,48,55,48,52,53,44,53,56,46,52,57,57,56,57,55,93,44,91,45,49,51,53,46,48,48,48,52,51,50,44,53,56,46,49,49,56,48,54,52,93,44,91,45,49,51,53,46,50,53,48,48,50,44,53,56,46,49,54,54,55,93,44,91,45,49,51,53,46,52,52,57,54,56,55,44,53,56,46,51,49,55,48,55,51,93,44,91,45,49,51,53,46,52,55,54,49,51,57,44,53,56,46,52,55,53,51,52,55,93,44,91,45,49,51,53,46,52,50,50,54,56,55,44,53,56,46,54,51,49,52,49,54,93,44,91,45,49,51,53,46,55,53,53,51,50,51,44,53,56,46,55,52,53,57,53,52,93,44,91,45,49,51,53,46,53,54,54,56,54,53,44,53,56,46,57,54,51,56,50,93,44,91,45,49,51,53,46,55,49,48,51,56,51,44,53,57,46,49,48,49,52,57,49,93,44,91,45,49,51,53,46,57,54,57,56,52,55,44,53,57,46,49,55,57,55,52,93,44,91,45,49,51,54,46,52,56,56,52,48,50,44,53,57,46,50,53,57,50,57,93,44,91,45,49,51,54,46,53,56,49,53,50,49,44,53,57,46,49,54,52,57,48,57,93,44,91,45,49,51,54,46,56,50,54,54,51,51,44,53,57,46,49,53,56,51,56,57,93,44,91,45,49,51,55,46,53,50,53,54,55,53,44,53,56,46,57,48,56,57,55,53,93,44,91,45,49,51,56,46,48,50,49,54,49,44,53,56,46,55,57,48,48,50,51,93,44,91,45,49,51,55,46,55,54,50,50,49,56,44,53,56,46,53,57,54,53,48,50,93,44,91,45,49,51,55,46,49,52,57,53,56,54,44,53,56,46,51,52,49,51,48,55,93,44,91,45,49,51,55,46,48,49,52,53,44,53,56,46,51,52,52,51,49,49,93,44,91,45,49,51,54,46,56,49,52,52,49,50,44,53,56,46,49,56,56,55,57,93,44,91,45,49,51,54,46,54,49,54,51,51,57,44,53,56,46,49,52,55,50,51,93,44,91,45,49,51,54,46,54,55,56,56,57,49,44,53,56,46,48,51,54,50,57,51,93,44,91,45,49,51,54,46,54,53,56,53,54,56,44,53,55,46,57,48,49,52,53,53,93,44,91,45,49,51,54,46,52,53,52,52,50,55,44,53,55,46,56,51,48,54,55,54,93,44,91,45,49,51,54,46,48,50,52,51,50,56,44,53,55,46,56,51,56,55,57,53,93,44,91,45,49,51,53,46,57,48,49,57,54,52,44,53,56,46,48,48,49,51,52,51,93,44,91,45,49,51,53,46,53,50,56,53,51,52,44,53,55,46,56,56,48,52,55,93,44,91,45,49,51,53,46,50,51,56,49,50,57,44,53,55,46,55,54,49,55,49,49,93,44,91,45,49,51,52,46,56,51,54,50,44,53,55,46,55,56,55,55,93,44,91,45,49,51,52,46,55,48,49,49,52,49,44,53,55,46,52,53,52,54,49,51,93,44,91,45,49,51,52,46,55,51,56,53,53,54,44,53,55,46,50,50,54,51,48,51,93,44,91,45,49,51,52,46,54,55,55,50,44,53,54,46,57,57,57,93,44,91,45,49,51,52,46,53,54,57,50,56,57,44,53,54,46,56,54,51,48,53,50,93,44,91,45,49,51,52,46,51,51,53,51,49,57,44,53,54,46,57,54,55,53,51,57,93,44,91,45,49,51,52,46,48,54,51,49,52,53,44,53,55,46,49,53,54,50,56,54,93,44,91,45,49,51,51,46,54,53,56,50,50,50,44,53,55,46,49,54,50,52,57,51,93,44,91,45,49,51,51,46,55,51,56,54,49,49,44,53,55,46,49,56,54,51,52,56,93,44,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,93,93,44,91,91,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,44,91,45,49,51,51,46,52,53,50,50,52,50,44,53,55,46,56,49,52,48,54,50,93,44,91,45,49,51,50,46,56,55,49,56,57,56,44,53,55,46,55,49,50,55,57,54,93,44,91,45,49,51,50,46,56,56,55,56,53,44,53,55,46,54,49,51,55,51,57,93,44,91,45,49,51,50,46,54,53,50,52,53,54,44,53,55,46,54,48,55,51,53,55,93,44,91,45,49,51,50,46,56,54,57,51,49,56,44,53,55,46,56,52,50,57,52,49,93,44,91,45,49,51,51,46,48,55,54,52,50,49,44,53,55,46,57,57,57,55,54,50,93,44,91,45,49,51,51,46,49,55,54,57,51,55,44,53,56,46,49,53,48,53,54,55,93,44,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,54,54,48,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,52,53,51,49,57,44,52,54,46,54,55,57,50,52,51,93,44,91,45,49,49,57,46,50,55,48,51,50,44,52,54,46,53,50,49,51,49,49,93,44,91,45,49,49,57,46,50,54,55,50,48,50,44,52,54,46,50,56,52,54,50,53,93,44,91,45,49,49,57,46,48,52,49,52,57,56,44,52,54,46,49,57,50,54,54,55,93,44,91,45,49,49,56,46,55,55,55,50,50,56,44,52,54,46,50,57,48,49,55,55,93,44,91,45,49,49,56,46,54,51,51,56,50,54,44,52,54,46,52,49,52,48,50,50,93,44,91,45,49,49,56,46,54,49,53,53,57,50,44,52,54,46,53,48,52,53,52,51,93,44,91,45,49,49,56,46,52,55,53,57,51,50,44,52,54,46,53,57,53,49,52,50,93,44,91,45,49,49,56,46,50,50,56,54,51,53,44,52,54,46,53,57,51,51,54,50,93,44,91,45,49,49,56,46,50,49,53,54,54,44,52,54,46,53,56,56,57,50,52,93,44,91,45,49,49,56,46,50,49,48,50,52,51,44,52,54,46,55,51,56,56,51,51,93,44,91,45,49,49,57,46,51,54,57,52,50,57,44,52,54,46,55,51,55,54,57,53,93,44,91,45,49,49,57,46,52,53,51,49,57,44,52,54,46,54,55,57,50,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,73,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,52,49,54,49,49,44,52,50,46,53,54,49,50,56,53,93,44,91,45,57,53,46,54,54,57,50,54,53,44,52,50,46,52,55,52,54,52,53,93,44,91,45,57,53,46,54,55,48,56,50,50,44,52,50,46,50,49,49,52,48,56,93,44,91,45,57,53,46,51,50,51,52,57,55,44,52,50,46,50,49,48,57,51,50,93,44,91,45,57,53,46,51,50,50,51,53,55,44,52,50,46,52,55,52,55,51,55,93,44,91,45,57,53,46,51,56,56,48,49,44,52,50,46,53,54,49,55,52,50,93,44,91,45,57,53,46,55,52,49,54,49,49,44,52,50,46,53,54,49,50,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,83,101,100,103,119,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,50,48,54,52,44,34,98,101,100,115,34,58,50,56,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,44,91,45,57,55,46,49,53,50,52,55,54,44,51,55,46,57,49,50,55,51,51,93,44,91,45,57,55,46,55,48,49,57,54,57,44,51,55,46,57,49,49,51,50,53,93,44,91,45,57,55,46,54,57,56,54,57,50,44,51,55,46,55,51,53,48,53,54,93,44,91,45,57,55,46,56,48,55,56,50,51,44,51,55,46,55,51,51,56,53,53,93,44,91,45,57,55,46,56,48,55,54,44,51,55,46,52,55,52,49,56,52,93,44,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,53,51,34,44,34,78,65,77,69,34,58,34,84,114,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,51,49,54,54,44,34,98,101,100,115,34,58,51,48,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,52,57,56,56,54,44,51,48,46,54,50,52,49,53,53,93,44,91,45,57,56,46,49,50,53,53,53,54,44,51,48,46,52,50,54,49,56,54,93,44,91,45,57,56,46,49,55,50,57,55,55,44,51,48,46,51,53,54,51,49,50,93,44,91,45,57,55,46,55,49,48,50,49,53,44,51,48,46,48,50,52,52,57,57,93,44,91,45,57,55,46,54,52,57,51,55,44,51,48,46,48,54,55,57,52,52,93,44,91,45,57,55,46,52,57,50,52,56,50,44,51,48,46,50,49,48,48,49,49,93,44,91,45,57,55,46,51,54,57,53,51,57,44,51,48,46,52,49,57,53,54,51,93,44,91,45,57,55,46,53,57,54,50,51,54,44,51,48,46,53,48,49,53,49,51,93,44,91,45,57,55,46,56,49,49,56,54,51,44,51,48,46,52,52,55,48,49,56,93,44,91,45,57,55,46,57,53,54,55,51,52,44,51,48,46,54,50,56,50,52,57,93,44,91,45,57,56,46,48,52,57,56,56,54,44,51,48,46,54,50,52,49,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,105,108,108,115,98,111,114,111,117,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,56,56,56,51,44,34,98,101,100,115,34,58,52,48,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,53,49,49,54,53,44,50,56,46,49,55,51,50,54,54,93,44,91,45,56,50,46,54,52,56,51,50,44,50,55,46,57,52,55,51,57,56,93,44,91,45,56,50,46,53,57,55,50,49,57,44,50,55,46,57,51,53,49,57,57,93,44,91,45,56,50,46,53,52,49,53,49,56,44,50,55,46,55,56,50,50,48,52,93,44,91,45,56,50,46,54,48,54,49,51,57,44,50,55,46,54,52,51,54,51,56,93,44,91,45,56,50,46,56,49,51,51,54,50,44,50,55,46,54,52,53,55,52,56,93,44,91,45,56,50,46,56,50,51,48,50,57,44,50,55,46,53,55,48,53,53,93,44,91,45,56,50,46,55,52,53,49,51,55,44,50,55,46,53,55,48,53,53,93,44,91,45,56,50,46,53,53,51,54,54,54,44,50,55,46,54,52,53,52,54,53,93,44,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,44,91,45,56,50,46,48,53,54,50,54,49,44,50,56,46,49,55,49,53,57,50,93,44,91,45,56,50,46,49,48,53,56,53,51,44,50,56,46,49,55,49,54,53,93,44,91,45,56,50,46,54,53,49,49,54,53,44,50,56,46,49,55,51,50,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,55,54,50,44,34,98,101,100,115,34,58,50,48,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,57,52,50,57,48,57,44,52,48,46,51,52,49,54,56,51,93,44,91,45,55,52,46,55,50,50,48,52,56,44,52,48,46,49,53,48,51,49,49,93,44,91,45,55,52,46,53,56,55,56,51,53,44,52,48,46,49,51,56,50,53,52,93,44,91,45,55,52,46,52,56,52,57,54,50,44,52,48,46,50,53,51,51,50,53,93,44,91,45,55,52,46,54,50,48,50,52,44,52,48,46,51,55,51,55,52,57,93,44,91,45,55,52,46,55,52,56,49,52,55,44,52,48,46,52,50,52,49,53,54,93,44,91,45,55,52,46,57,52,50,57,48,57,44,52,48,46,51,52,49,54,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,54,55,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,48,53,57,49,44,52,49,46,52,53,54,52,51,54,93,44,91,45,57,55,46,49,55,53,54,49,51,44,52,49,46,51,55,55,48,56,51,93,44,91,45,57,55,46,50,53,51,53,49,57,44,52,49,46,51,56,52,50,49,50,93,44,91,45,57,55,46,51,54,56,49,56,54,44,52,49,46,51,57,54,52,49,54,93,44,91,45,57,55,46,51,54,56,49,49,56,44,52,49,46,48,52,54,57,52,55,93,44,91,45,57,54,46,57,49,48,57,52,44,52,49,46,48,52,54,49,49,54,93,44,91,45,57,54,46,57,48,56,53,48,55,44,52,49,46,48,52,54,48,57,49,93,44,91,45,57,54,46,57,48,53,56,54,50,44,52,49,46,52,53,51,51,56,57,93,44,91,45,57,54,46,57,48,53,57,49,44,52,49,46,52,53,54,52,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,87,101,115,116,109,111,114,101,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,52,55,53,49,44,34,98,101,100,115,34,58,57,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,53,48,49,55,54,44,52,48,46,53,51,48,49,52,57,93,44,91,45,55,57,46,53,54,49,49,49,44,52,48,46,53,54,52,49,49,51,93,44,91,45,55,57,46,54,57,50,53,56,55,44,52,48,46,54,54,57,55,51,50,93,44,91,45,55,57,46,55,54,53,52,49,53,44,52,48,46,53,52,57,56,53,52,93,44,91,45,55,57,46,55,48,52,55,51,57,44,52,48,46,52,50,55,50,51,49,93,44,91,45,55,57,46,55,55,49,48,56,50,44,52,48,46,51,55,53,52,49,57,93,44,91,45,55,57,46,55,56,49,55,54,49,44,52,48,46,50,50,55,55,49,49,93,44,91,45,55,57,46,56,55,48,53,56,53,44,52,48,46,49,57,55,52,49,53,93,44,91,45,55,57,46,56,55,55,51,56,53,44,52,48,46,49,50,54,55,57,50,93,44,91,45,55,57,46,54,51,56,57,57,52,44,52,48,46,48,56,50,56,53,57,93,44,91,45,55,57,46,53,48,53,49,56,56,44,52,48,46,49,52,48,53,54,56,93,44,91,45,55,57,46,50,57,51,54,56,50,44,52,48,46,48,52,48,52,49,51,93,44,91,45,55,57,46,48,53,53,57,56,51,44,52,48,46,50,56,53,48,56,57,93,44,91,45,55,56,46,57,55,52,54,52,57,44,52,48,46,51,57,53,57,55,50,93,44,91,45,55,57,46,49,50,49,54,51,52,44,52,48,46,51,55,48,53,55,54,93,44,91,45,55,57,46,52,53,48,49,55,54,44,52,48,46,53,51,48,49,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,111,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,57,53,52,44,34,98,101,100,115,34,58,54,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,55,52,54,57,44,50,55,46,48,51,50,49,49,57,93,44,91,45,56,50,46,50,53,53,50,51,55,44,50,55,46,48,51,50,57,55,53,93,44,91,45,56,50,46,50,53,53,53,50,49,44,50,54,46,57,52,53,50,54,52,93,44,91,45,56,50,46,52,51,55,51,50,55,44,50,54,46,57,52,54,48,50,53,93,44,91,45,56,50,46,51,51,53,48,52,44,50,54,46,55,56,55,57,52,54,93,44,91,45,56,50,46,49,57,56,54,50,54,44,50,54,46,55,55,48,56,57,50,93,44,91,45,56,49,46,53,54,53,57,51,49,44,50,54,46,55,54,57,53,53,50,93,44,91,45,56,49,46,53,54,50,53,51,49,44,50,55,46,48,51,51,54,56,55,93,44,91,45,56,49,46,53,54,50,54,50,52,44,50,55,46,48,51,51,56,51,53,93,44,91,45,56,50,46,48,53,55,52,54,57,44,50,55,46,48,51,50,49,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,57,49,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,53,52,55,50,50,44,52,49,46,53,48,53,50,49,49,93,44,91,45,57,53,46,49,53,53,56,53,49,44,52,49,46,49,53,57,50,51,54,93,44,91,45,57,52,46,57,50,55,53,56,55,44,52,49,46,49,53,56,53,48,56,93,44,91,45,57,52,46,55,48,48,53,56,57,44,52,49,46,49,53,56,48,56,53,93,44,91,45,57,52,46,55,48,48,54,50,57,44,52,49,46,53,48,52,49,52,56,93,44,91,45,57,53,46,48,52,48,55,55,44,52,49,46,53,48,52,54,57,93,44,91,45,57,53,46,49,53,52,55,50,50,44,52,49,46,53,48,53,50,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,56,48,54,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,48,50,52,55,55,44,52,48,46,53,55,50,50,49,51,93,44,91,45,56,52,46,56,48,51,56,57,52,44,52,48,46,51,53,50,55,53,56,93,44,91,45,56,52,46,52,51,52,54,51,49,44,52,48,46,51,53,52,50,53,57,93,44,91,45,56,52,46,52,51,52,51,56,55,44,52,48,46,51,53,52,53,51,52,93,44,91,45,56,52,46,52,53,54,49,56,44,52,48,46,54,56,52,56,54,50,93,44,91,45,56,52,46,52,53,54,49,55,50,44,52,48,46,55,50,56,51,48,54,93,44,91,45,56,52,46,56,48,50,50,55,51,44,52,48,46,55,50,56,49,52,54,93,44,91,45,56,52,46,56,48,50,52,55,55,44,52,48,46,53,55,50,50,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,52,51,44,34,98,101,100,115,34,58,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,48,48,52,54,52,57,44,51,55,46,56,53,57,50,52,55,93,44,91,45,56,50,46,57,52,48,55,54,51,44,51,55,46,55,49,54,51,51,56,93,44,91,45,56,50,46,55,54,50,49,57,44,51,55,46,55,53,53,56,53,54,93,44,91,45,56,50,46,54,52,48,55,53,44,51,55,46,55,50,48,49,56,50,93,44,91,45,56,50,46,54,49,50,51,57,51,44,51,55,46,56,55,57,50,55,50,93,44,91,45,56,50,46,57,52,55,57,51,54,44,51,56,46,48,48,48,52,51,49,93,44,91,45,56,50,46,57,56,57,48,49,52,44,51,55,46,57,54,51,57,54,56,93,44,91,45,56,51,46,48,48,52,54,52,57,44,51,55,46,56,53,57,50,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,52,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,82,104,111,100,101,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,82,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,56,54,49,44,34,98,101,100,115,34,58,51,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,51,54,53,50,48,55,44,52,49,46,55,51,53,54,52,57,93,44,91,45,55,49,46,55,56,57,55,48,52,44,52,49,46,55,50,53,49,57,56,93,44,91,45,55,49,46,55,56,55,54,53,56,44,52,49,46,54,51,57,57,49,56,93,44,91,45,55,49,46,55,56,57,50,52,55,44,52,49,46,53,57,54,56,52,55,93,44,91,45,55,49,46,52,56,52,52,50,55,44,52,49,46,54,48,50,53,57,49,93,44,91,45,55,49,46,51,56,48,53,52,50,44,52,49,46,54,53,48,51,50,54,93,44,91,45,55,49,46,51,51,48,57,55,44,52,49,46,54,56,54,57,54,50,93,44,91,45,55,49,46,51,54,53,50,48,55,44,52,49,46,55,51,53,54,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,87,105,110,100,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,49,53,48,44,34,98,101,100,115,34,58,50,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,56,49,57,51,54,56,44,52,51,46,50,53,53,52,57,56,93,44,91,45,55,50,46,56,54,56,55,51,55,44,52,51,46,49,49,51,49,55,93,44,91,45,55,50,46,57,57,54,57,44,52,51,46,49,49,57,48,57,53,93,44,91,45,55,51,46,48,48,56,48,54,51,44,52,50,46,57,51,48,48,56,55,93,44,91,45,55,50,46,57,50,49,51,55,54,44,52,50,46,57,50,54,55,57,50,93,44,91,45,55,50,46,57,51,48,50,53,56,44,52,50,46,55,51,57,50,57,51,93,44,91,45,55,50,46,52,53,56,52,49,50,44,52,50,46,55,50,54,57,51,51,93,44,91,45,55,50,46,53,52,49,53,49,51,44,52,50,46,56,48,55,48,57,52,93,44,91,45,55,50,46,53,51,50,48,50,50,44,52,50,46,57,53,52,57,52,51,93,44,91,45,55,50,46,52,55,51,48,55,54,44,52,50,46,57,55,50,53,50,56,93,44,91,45,55,50,46,52,53,50,50,53,49,44,52,51,46,49,54,49,51,53,52,93,44,91,45,55,50,46,52,51,52,54,52,53,44,52,51,46,50,51,51,51,49,49,93,44,91,45,55,50,46,54,56,53,54,51,55,44,52,51,46,50,50,50,52,57,53,93,44,91,45,55,50,46,56,49,57,51,54,56,44,52,51,46,50,53,53,52,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,79,114,108,101,97,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,49,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,56,57,55,54,48,56,44,52,53,46,48,48,56,51,53,93,44,91,45,55,50,46,53,53,52,51,54,44,52,53,46,48,48,56,50,55,49,93,44,91,45,55,50,46,53,51,50,54,51,56,44,52,52,46,56,51,51,51,52,54,93,44,91,45,55,50,46,53,55,56,49,54,49,44,52,52,46,55,56,49,53,55,56,93,44,91,45,55,50,46,52,49,55,51,49,53,44,52,52,46,55,50,50,56,57,51,93,44,91,45,55,50,46,52,56,50,51,48,50,44,52,52,46,54,51,51,57,50,56,93,44,91,45,55,50,46,51,55,52,55,56,54,44,52,52,46,53,56,52,49,50,53,93,44,91,45,55,50,46,50,54,50,57,54,53,44,52,52,46,53,52,50,51,51,54,93,44,91,45,55,50,46,49,49,52,53,48,51,44,52,52,46,55,52,57,54,50,52,93,44,91,45,55,50,46,48,49,50,53,48,52,44,52,52,46,54,57,56,56,50,49,93,44,91,45,55,49,46,57,51,57,57,51,54,44,52,52,46,55,54,57,48,51,50,93,44,91,45,55,49,46,56,55,52,52,51,51,44,52,52,46,56,55,54,51,56,50,93,44,91,45,55,49,46,56,57,55,54,48,56,44,52,53,46,48,48,56,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,56,56,57,52,49,44,51,57,46,54,53,51,48,48,49,93,44,91,45,57,53,46,55,56,57,49,48,49,44,51,57,46,53,54,53,57,49,54,93,44,91,45,57,54,46,48,51,53,57,53,50,44,51,57,46,53,54,54,49,93,44,91,45,57,54,46,48,51,53,53,55,51,44,51,57,46,50,49,54,53,50,93,44,91,45,57,53,46,53,56,57,52,55,50,44,51,57,46,50,49,54,48,56,49,93,44,91,45,57,53,46,53,55,48,51,53,49,44,51,57,46,52,49,57,48,53,93,44,91,45,57,53,46,53,54,52,49,50,54,44,51,57,46,54,53,50,56,55,50,93,44,91,45,57,53,46,55,56,56,57,52,49,44,51,57,46,54,53,51,48,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,50,50,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,55,54,55,51,57,44,51,50,46,52,48,53,56,48,56,93,44,91,45,57,49,46,54,50,53,49,50,49,44,51,50,46,52,48,53,51,52,52,93,44,91,45,57,49,46,55,53,57,48,57,56,44,51,50,46,51,49,55,55,49,52,93,44,91,45,57,49,46,55,55,54,53,56,55,44,51,50,46,50,51,57,49,48,54,93,44,91,45,57,49,46,56,57,52,55,50,57,44,51,50,46,49,53,49,53,53,93,44,91,45,57,49,46,56,56,57,54,56,55,44,51,49,46,57,55,49,52,55,52,93,44,91,45,57,49,46,55,55,57,57,50,56,44,51,49,46,56,56,49,52,56,49,93,44,91,45,57,49,46,54,52,54,48,52,44,51,49,46,57,54,49,49,52,49,93,44,91,45,57,49,46,53,55,53,55,50,49,44,51,49,46,56,56,50,53,54,93,44,91,45,57,49,46,53,49,49,51,55,52,44,51,49,46,57,51,48,48,50,53,93,44,91,45,57,49,46,52,57,50,55,49,56,44,51,50,46,50,48,51,51,52,57,93,44,91,45,57,49,46,53,52,51,48,50,49,44,51,50,46,50,53,57,48,48,54,93,44,91,45,57,49,46,52,55,54,55,51,57,44,51,50,46,52,48,53,56,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,50,56,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,57,49,55,56,49,44,51,51,46,55,51,56,54,48,50,93,44,91,45,56,57,46,53,48,55,49,51,53,44,51,51,46,55,50,49,56,49,57,93,44,91,45,56,57,46,53,48,54,56,55,50,44,51,51,46,54,55,55,54,48,53,93,44,91,45,56,57,46,53,48,54,52,57,54,44,51,51,46,52,53,57,56,48,54,93,44,91,45,56,57,46,51,56,49,48,57,50,44,51,51,46,52,54,48,51,48,55,93,44,91,45,56,57,46,50,50,50,48,51,57,44,51,51,46,53,50,55,50,52,53,93,44,91,45,56,57,46,48,56,56,52,52,54,44,51,51,46,53,51,51,50,48,50,93,44,91,45,56,57,46,48,49,56,54,49,51,44,51,51,46,53,54,50,49,49,52,93,44,91,45,56,57,46,48,51,52,52,57,56,44,51,51,46,55,51,57,52,51,93,44,91,45,56,57,46,49,57,49,55,56,49,44,51,51,46,55,51,56,54,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,57,51,53,44,34,98,101,100,115,34,58,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,48,50,51,48,49,53,44,52,50,46,55,52,49,49,51,53,93,44,91,45,55,50,46,57,53,49,48,51,57,44,52,50,46,54,52,49,48,48,54,93,44,91,45,55,50,46,57,55,53,52,48,57,44,52,50,46,53,53,54,48,51,55,93,44,91,45,55,50,46,56,55,49,49,51,54,44,52,50,46,52,56,52,48,52,49,93,44,91,45,55,50,46,51,55,53,48,50,50,44,52,50,46,52,50,48,56,49,57,93,44,91,45,55,50,46,51,49,52,50,53,51,44,52,50,46,51,52,51,54,56,56,93,44,91,45,55,50,46,50,55,54,52,51,52,44,52,50,46,53,55,55,51,55,52,93,44,91,45,55,50,46,50,56,51,48,52,53,44,52,50,46,55,50,49,54,49,53,93,44,91,45,55,50,46,52,53,56,52,49,50,44,52,50,46,55,50,54,57,51,51,93,44,91,45,55,50,46,57,51,48,50,53,56,44,52,50,46,55,51,57,50,57,51,93,44,91,45,55,51,46,48,50,51,48,49,53,44,52,50,46,55,52,49,49,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,104,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,50,56,48,49,51,44,52,50,46,57,57,56,49,51,54,93,44,91,45,49,48,50,46,48,56,50,52,56,54,44,52,50,46,57,57,57,51,53,53,93,44,91,45,49,48,50,46,48,56,50,53,52,54,44,52,50,46,57,57,57,51,53,54,93,44,91,45,49,48,50,46,48,54,54,54,56,57,44,52,50,46,52,52,51,52,54,51,93,44,91,45,49,48,50,46,48,52,48,50,56,44,52,50,46,48,57,54,55,52,52,93,44,91,45,49,48,50,46,48,48,54,50,48,52,44,52,50,46,48,57,54,51,51,56,93,44,91,45,49,48,49,46,52,50,54,53,53,55,44,52,50,46,48,57,50,49,57,52,93,44,91,45,49,48,48,46,56,52,54,49,50,57,44,52,50,46,48,56,56,49,54,54,93,44,91,45,49,48,48,46,50,54,55,54,50,50,44,52,50,46,48,56,54,49,52,55,93,44,91,45,49,48,48,46,49,54,55,54,48,53,44,52,50,46,48,56,53,56,52,56,93,44,91,45,49,48,48,46,49,57,56,52,55,56,44,52,50,46,56,52,54,49,48,50,93,44,91,45,49,48,48,46,49,57,56,52,49,51,44,52,50,46,57,57,56,54,55,52,93,44,91,45,49,48,49,46,50,50,56,48,49,51,44,52,50,46,57,57,56,49,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,101,97,118,101,114,104,101,97,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,57,51,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,57,51,56,48,57,53,44,52,53,46,54,57,53,55,52,93,44,91,45,49,49,51,46,56,48,54,52,51,49,44,52,53,46,54,48,49,54,51,93,44,91,45,49,49,51,46,55,55,51,55,53,51,44,52,53,46,52,48,54,51,53,57,93,44,91,45,49,49,51,46,53,55,54,55,50,53,44,52,53,46,49,51,49,50,51,55,93,44,91,45,49,49,51,46,52,53,50,48,52,52,44,52,53,46,48,53,57,49,55,52,93,44,91,45,49,49,51,46,52,53,53,48,55,49,44,52,52,46,56,54,53,52,50,52,93,44,91,45,49,49,51,46,50,52,55,49,57,50,44,52,52,46,56,50,50,57,53,52,93,44,91,45,49,49,51,46,49,48,49,54,49,56,44,52,52,46,55,50,57,52,54,53,93,44,91,45,49,49,51,46,48,48,49,57,55,56,44,52,52,46,52,52,57,56,53,55,93,44,91,45,49,49,50,46,56,49,51,56,48,53,44,52,52,46,51,55,54,52,53,53,93,44,91,45,49,49,50,46,55,49,55,57,51,44,52,52,46,53,48,52,50,55,51,93,44,91,45,49,49,50,46,52,55,51,52,49,57,44,52,52,46,52,55,57,51,53,57,93,44,91,45,49,49,50,46,50,56,56,54,55,51,44,52,52,46,53,54,55,57,49,93,44,91,45,49,49,50,46,48,57,54,52,56,52,44,52,52,46,53,50,50,57,57,50,93,44,91,45,49,49,49,46,56,54,51,54,53,55,44,52,52,46,53,53,49,50,52,52,93,44,91,45,49,49,49,46,54,49,55,51,52,53,44,52,52,46,53,53,48,51,57,50,93,44,91,45,49,49,49,46,53,50,53,54,49,44,52,52,46,54,48,52,55,52,93,44,91,45,49,49,49,46,52,55,52,57,54,51,44,52,52,46,55,48,56,55,55,51,93,44,91,45,49,49,49,46,55,56,49,48,57,57,44,52,52,46,55,48,56,56,52,53,93,44,91,45,49,49,49,46,55,56,49,49,53,55,44,52,52,46,55,56,49,48,50,55,93,44,91,45,49,49,50,46,48,54,53,55,57,55,44,52,52,46,55,56,51,52,55,53,93,44,91,45,49,49,50,46,49,54,55,49,48,56,44,52,52,46,56,50,54,55,51,56,93,44,91,45,49,49,50,46,49,57,49,49,56,55,44,52,53,46,48,48,48,53,49,50,93,44,91,45,49,49,50,46,51,51,52,50,52,56,44,52,53,46,48,48,48,53,49,57,93,44,91,45,49,49,50,46,52,53,54,56,53,52,44,52,53,46,48,56,56,53,48,57,93,44,91,45,49,49,50,46,52,53,56,48,54,50,44,52,53,46,51,52,57,57,49,93,44,91,45,49,49,50,46,53,48,53,53,54,56,44,52,53,46,52,52,51,48,48,57,93,44,91,45,49,49,50,46,54,56,55,56,51,57,44,52,53,46,52,55,55,50,52,93,44,91,45,49,49,50,46,54,56,55,48,53,52,44,52,53,46,54,50,52,56,53,52,93,44,91,45,49,49,50,46,55,53,57,51,51,57,44,52,53,46,55,52,56,50,48,57,93,44,91,45,49,49,51,46,48,48,48,49,53,53,44,52,53,46,56,48,55,55,52,55,93,44,91,45,49,49,51,46,48,56,53,53,49,55,44,52,53,46,56,54,48,54,52,56,93,44,91,45,49,49,51,46,49,55,57,55,57,49,44,52,53,46,56,56,53,48,48,57,93,44,91,45,49,49,51,46,51,57,54,57,48,51,44,52,53,46,55,54,55,54,53,93,44,91,45,49,49,51,46,53,49,54,49,52,52,44,52,53,46,57,51,56,56,49,52,93,44,91,45,49,49,51,46,53,51,50,51,55,44,52,53,46,56,55,56,52,48,53,93,44,91,45,49,49,51,46,55,49,50,53,50,50,44,52,53,46,56,51,56,51,56,52,93,44,91,45,49,49,51,46,57,51,56,48,57,53,44,52,53,46,54,57,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,78,101,119,32,77,97,100,114,105,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,57,49,54,48,51,44,51,54,46,56,53,57,53,49,55,93,44,91,45,56,57,46,55,48,48,57,53,50,44,51,54,46,54,50,55,52,53,51,93,44,91,45,56,57,46,57,53,56,55,56,54,44,51,54,46,54,50,57,51,51,49,93,44,91,45,56,57,46,57,54,49,51,49,44,51,54,46,51,56,56,56,48,51,93,44,91,45,56,57,46,54,49,49,51,48,56,44,51,54,46,52,49,49,50,55,51,93,44,91,45,56,57,46,53,52,53,48,48,54,44,51,54,46,51,51,54,56,48,57,93,44,91,45,56,57,46,53,51,57,50,51,50,44,51,54,46,52,57,55,57,51,52,93,44,91,45,56,57,46,52,56,53,52,50,55,44,51,54,46,52,57,55,52,57,49,93,44,91,45,56,57,46,52,49,55,50,55,53,44,51,54,46,52,57,57,48,49,49,93,44,91,45,56,57,46,51,50,55,53,56,56,44,51,54,46,54,51,50,50,55,54,93,44,91,45,56,57,46,53,49,57,56,48,57,44,51,54,46,56,54,57,54,49,55,93,44,91,45,56,57,46,54,57,49,54,48,51,44,51,54,46,56,53,57,53,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,101,109,112,115,116,101,97,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,49,56,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,50,51,48,55,54,44,51,52,46,48,48,56,56,57,51,93,44,91,45,57,51,46,56,51,49,52,53,50,44,51,51,46,55,52,55,55,48,57,93,44,91,45,57,51,46,57,53,55,51,49,53,44,51,51,46,55,53,48,57,52,93,44,91,45,57,51,46,57,54,53,54,51,55,44,51,51,46,54,54,57,55,51,54,93,44,91,45,57,51,46,56,50,53,56,56,52,44,51,51,46,54,48,57,56,53,51,93,44,91,45,57,51,46,55,50,50,56,54,55,44,51,51,46,52,56,49,57,54,51,93,44,91,45,57,51,46,52,56,51,48,57,55,44,51,51,46,52,55,54,48,55,53,93,44,91,45,57,51,46,52,53,54,55,48,57,44,51,51,46,57,53,54,56,51,55,93,44,91,45,57,51,46,54,49,55,52,54,44,51,51,46,57,53,57,54,50,55,93,44,91,45,57,51,46,56,50,51,48,55,54,44,51,52,46,48,48,56,56,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,97,109,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,48,57,54,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,55,55,54,57,50,44,51,56,46,50,54,51,48,57,50,93,44,91,45,57,51,46,48,54,53,49,57,57,44,51,56,46,48,54,50,52,55,57,93,44,91,45,57,51,46,48,55,50,52,52,55,44,51,55,46,57,48,50,54,50,55,93,44,91,45,57,50,46,56,53,53,51,56,52,44,51,55,46,56,57,53,55,51,54,93,44,91,45,57,50,46,54,50,48,49,56,49,44,51,55,46,56,57,50,53,50,49,93,44,91,45,57,50,46,53,52,56,57,51,52,44,51,55,46,56,48,48,52,55,93,44,91,45,57,50,46,52,48,57,50,51,49,44,51,55,46,56,53,57,49,56,93,44,91,45,57,50,46,52,48,54,50,55,53,44,51,56,46,48,50,49,49,55,57,93,44,91,45,57,50,46,53,55,48,50,56,49,44,51,56,46,48,54,54,54,51,53,93,44,91,45,57,50,46,54,52,48,48,56,53,44,51,56,46,50,49,51,48,51,50,93,44,91,45,57,50,46,54,57,53,56,56,54,44,51,56,46,50,50,50,48,51,49,93,44,91,45,57,50,46,55,54,52,57,54,51,44,51,56,46,49,56,57,53,51,52,93,44,91,45,57,51,46,48,50,50,50,55,55,44,51,56,46,49,57,56,54,52,50,93,44,91,45,57,51,46,48,55,55,54,57,50,44,51,56,46,50,54,51,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,101,99,107,108,101,110,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,52,55,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,50,55,52,49,49,44,51,54,46,55,55,55,56,53,56,93,44,91,45,55,56,46,50,52,49,53,48,57,44,51,54,46,56,48,55,57,53,56,93,44,91,45,55,56,46,52,57,51,48,50,56,44,51,54,46,56,57,49,50,50,93,44,91,45,55,56,46,54,52,56,53,52,49,44,51,54,46,54,57,55,57,48,57,93,44,91,45,55,56,46,55,51,52,49,50,50,44,51,54,46,53,52,49,57,51,57,93,44,91,45,55,56,46,52,53,54,57,49,51,44,51,54,46,53,52,50,53,52,49,93,44,91,45,55,56,46,51,50,51,57,57,49,44,51,54,46,53,52,51,56,50,50,93,44,91,45,55,56,46,48,52,54,50,55,49,44,51,54,46,53,52,51,53,53,49,93,44,91,45,55,56,46,48,50,55,52,49,49,44,51,54,46,55,55,55,56,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,51,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,51,52,53,52,53,44,51,55,46,54,51,56,51,55,54,93,44,91,45,56,55,46,57,51,50,57,53,50,44,51,55,46,52,56,48,48,53,50,93,44,91,45,56,55,46,56,48,49,48,52,54,44,51,55,46,51,55,57,52,52,53,93,44,91,45,56,55,46,56,49,51,52,49,51,44,51,55,46,51,53,48,54,52,53,93,44,91,45,56,55,46,51,55,53,49,52,53,44,51,55,46,53,54,57,57,56,56,93,44,91,45,56,55,46,52,57,53,51,51,49,44,51,55,46,54,52,55,53,52,55,93,44,91,45,56,55,46,55,51,52,53,52,53,44,51,55,46,54,51,56,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,49,57,48,44,34,98,101,100,115,34,58,52,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,49,48,52,52,50,55,44,51,54,46,52,54,51,49,48,53,93,44,91,45,57,56,46,49,48,51,57,48,52,44,51,54,46,49,54,52,56,55,55,93,44,91,45,57,55,46,54,55,53,54,49,55,44,51,54,46,49,54,52,54,54,51,93,44,91,45,57,55,46,52,54,48,55,57,50,44,51,54,46,49,54,52,52,54,50,93,44,91,45,57,55,46,52,54,49,54,48,51,44,51,54,46,53,57,51,54,51,55,93,44,91,45,57,55,46,52,54,50,52,53,57,44,51,54,46,53,57,51,54,50,55,93,44,91,45,57,56,46,49,48,52,50,56,54,44,51,54,46,53,57,51,53,55,56,93,44,91,45,57,56,46,49,48,52,52,50,55,44,51,54,46,52,54,51,49,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,83,107,97,109,97,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,50,52,53,56,53,54,44,52,54,46,48,53,51,56,53,51,93,44,91,45,49,50,50,46,50,52,57,50,49,55,44,52,53,46,53,52,56,54,53,51,93,44,91,45,49,50,49,46,57,50,50,48,50,56,44,52,53,46,54,52,57,50,48,53,93,44,91,45,49,50,49,46,56,54,55,48,50,49,44,52,53,46,54,57,51,51,57,49,93,44,91,45,49,50,49,46,53,50,51,54,56,49,44,52,53,46,55,50,52,57,51,93,44,91,45,49,50,49,46,54,48,57,50,52,54,44,52,53,46,55,56,50,53,49,57,93,44,91,45,49,50,49,46,54,49,50,50,51,50,44,52,54,46,48,52,52,48,57,51,93,44,91,45,49,50,49,46,53,50,50,51,50,49,44,52,54,46,48,52,52,48,48,54,93,44,91,45,49,50,49,46,53,50,50,51,50,52,44,52,54,46,51,56,56,50,50,52,93,44,91,45,49,50,50,46,50,52,48,57,54,54,44,52,54,46,51,56,53,51,54,49,93,44,91,45,49,50,50,46,50,52,53,56,53,54,44,52,54,46,48,53,51,56,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,76,101,110,97,119,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,52,55,52,44,34,98,101,100,115,34,58,49,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,51,50,57,55,44,52,50,46,48,55,51,52,53,54,93,44,91,45,56,52,46,51,54,48,52,49,54,44,52,49,46,55,48,54,53,56,57,93,44,91,45,56,51,46,56,56,48,51,57,49,44,52,49,46,55,50,48,50,49,50,93,44,91,45,56,51,46,55,54,51,49,53,44,52,49,46,55,50,51,53,53,50,93,44,91,45,56,51,46,55,55,51,57,50,50,44,52,50,46,48,56,50,52,51,93,44,91,45,56,52,46,49,51,49,57,54,51,44,52,50,46,48,55,49,53,55,55,93,44,91,45,56,52,46,51,54,51,50,57,55,44,52,50,46,48,55,51,52,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,71,105,108,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,57,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,49,56,54,51,55,44,51,52,46,56,53,53,51,57,56,93,44,91,45,56,52,46,54,53,55,48,57,56,44,51,52,46,55,50,56,57,48,53,93,44,91,45,56,52,46,54,53,52,53,50,51,44,51,52,46,53,56,51,49,56,55,93,44,91,45,56,52,46,54,53,52,51,54,54,44,51,52,46,53,52,56,57,52,54,93,44,91,45,56,52,46,51,52,53,53,53,51,44,51,52,46,53,54,50,55,51,53,93,44,91,45,56,52,46,49,57,54,55,53,52,44,51,52,46,54,49,55,57,50,52,93,44,91,45,56,52,46,51,49,52,54,53,51,44,51,52,46,56,48,55,51,50,56,93,44,91,45,56,52,46,52,50,57,48,57,51,44,51,52,46,56,53,53,48,51,54,93,44,91,45,56,52,46,54,49,56,54,51,55,44,51,52,46,56,53,53,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,82,111,115,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,54,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,48,53,52,48,56,44,52,56,46,57,57,57,57,56,51,93,44,91,45,57,54,46,51,56,55,56,51,53,44,52,56,46,53,52,52,51,48,56,93,44,91,45,57,53,46,54,48,50,51,49,53,44,52,56,46,53,51,56,56,56,55,93,44,91,45,57,53,46,51,52,50,53,52,44,52,56,46,53,52,48,50,49,49,93,44,91,45,57,53,46,51,52,50,55,51,44,52,56,46,55,49,51,48,50,56,93,44,91,45,57,53,46,48,56,57,56,54,51,44,52,56,46,55,49,51,48,54,50,93,44,91,45,57,53,46,48,57,49,50,56,50,44,52,56,46,57,49,57,49,55,51,93,44,91,45,57,53,46,50,51,53,54,48,54,44,52,56,46,56,56,49,52,53,93,44,91,45,57,53,46,51,49,57,56,57,53,44,52,56,46,57,57,56,55,55,93,44,91,45,57,54,46,52,48,53,52,48,56,44,52,56,46,57,57,57,57,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,52,57,56,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,44,91,45,57,48,46,48,52,57,49,50,57,44,51,50,46,55,51,53,54,55,52,93,44,91,45,57,48,46,52,53,48,48,51,55,44,51,50,46,53,55,51,55,56,51,93,44,91,45,57,48,46,52,52,53,57,52,54,44,51,50,46,52,56,55,57,48,51,93,44,91,45,57,48,46,50,52,51,54,52,49,44,51,50,46,52,56,55,53,51,51,93,44,91,45,57,48,46,50,52,51,55,54,52,44,51,50,46,52,48,48,48,57,56,93,44,91,45,57,48,46,48,54,53,54,57,55,44,51,50,46,51,57,57,53,50,57,93,44,91,45,56,57,46,56,54,49,49,53,57,44,51,50,46,53,56,51,49,54,50,93,44,91,45,56,57,46,55,56,52,49,50,51,44,51,50,46,53,56,54,56,57,49,93,44,91,45,56,57,46,55,51,48,51,48,52,44,51,50,46,54,51,52,50,50,56,93,44,91,45,56,57,46,55,51,48,48,49,54,44,51,50,46,56,56,53,48,55,50,93,44,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,55,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,54,55,44,34,98,101,100,115,34,58,51,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,56,56,55,52,44,51,50,46,53,50,53,50,50,50,93,44,91,45,49,48,49,46,54,57,53,48,49,49,44,51,50,46,48,56,55,53,51,50,93,44,91,45,49,48,49,46,50,54,52,50,49,54,44,51,50,46,48,56,55,49,51,54,93,44,91,45,49,48,49,46,49,56,51,57,57,55,44,51,50,46,48,56,55,50,48,56,93,44,91,45,49,48,49,46,49,55,52,53,55,49,44,51,50,46,53,50,52,49,49,50,93,44,91,45,49,48,49,46,54,56,56,55,52,44,51,50,46,53,50,53,50,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,55,48,56,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,53,57,51,52,56,44,51,56,46,52,50,49,56,50,49,93,44,91,45,56,50,46,54,48,52,54,50,53,44,51,56,46,50,52,55,54,54,50,93,44,91,45,56,50,46,54,51,52,55,48,50,44,51,56,46,49,51,54,57,52,49,93,44,91,45,56,50,46,53,52,57,50,52,44,51,56,46,48,54,55,57,53,50,93,44,91,45,56,50,46,52,57,55,55,57,54,44,51,55,46,57,52,53,52,56,56,93,44,91,45,56,50,46,52,49,52,55,53,55,44,51,55,46,56,53,53,53,48,57,93,44,91,45,56,50,46,51,48,54,51,57,49,44,51,55,46,57,52,51,54,52,93,44,91,45,56,50,46,50,48,50,50,51,54,44,51,56,46,48,51,54,49,57,51,93,44,91,45,56,50,46,50,56,53,54,57,51,44,51,56,46,49,52,52,57,53,50,93,44,91,45,56,50,46,50,54,52,56,52,57,44,51,56,46,50,50,57,49,57,57,93,44,91,45,56,50,46,53,48,56,50,56,44,51,56,46,52,49,49,49,57,56,93,44,91,45,56,50,46,53,57,51,52,56,44,51,56,46,52,50,49,56,50,49,93,93,93,125,125,93,125]) \ No newline at end of file diff --git a/package.json b/package.json index 29d26fe34..5235d91ec 100644 --- a/package.json +++ b/package.json @@ -21,6 +21,7 @@ "@deck.gl/mapbox": "^8.4.18", "@deck.gl/mesh-layers": "^8.4.18", "@deck.gl/react": "^8.3.11", + "@google-cloud/bigquery": "^5.7.0", "@material-ui/core": "^4.11.2", "@material-ui/lab": "^4.0.0-alpha.57", "@testing-library/jest-dom": "^5.11.4", diff --git a/yarn.lock b/yarn.lock index ead693420..8da1d3f1d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1743,6 +1743,56 @@ minimatch "^3.0.4" strip-json-comments "^3.1.1" +"@google-cloud/bigquery@^5.7.0": + version "5.7.0" + resolved "https://registry.yarnpkg.com/@google-cloud/bigquery/-/bigquery-5.7.0.tgz#b13eeb159c9385f484574842b8b8055629085a9c" + integrity sha512-bIl9wzLw9iupEKyLlTqdxaj6F5WA8yUBspwJ9jl1TtKs2+xrpscwlxmNaVpZ7RMoJaFHGkwHao3bR2GSytKfEw== + dependencies: + "@google-cloud/common" "^3.1.0" + "@google-cloud/paginator" "^3.0.0" + "@google-cloud/promisify" "^2.0.0" + arrify "^2.0.1" + big.js "^6.0.0" + duplexify "^4.0.0" + extend "^3.0.2" + is "^3.3.0" + p-event "^4.1.0" + stream-events "^1.0.5" + uuid "^8.0.0" + +"@google-cloud/common@^3.1.0": + version "3.7.0" + resolved "https://registry.yarnpkg.com/@google-cloud/common/-/common-3.7.0.tgz#ee3fba75aeaa614978aebf8740380670026592aa" + integrity sha512-oFgpKLjH9JTOAyQd3kB36iSuH8wNSpDKb1TywlB6zcsG0xmJFxLutmfPhz03KUxRMNQOZ1K1Gc9BYvJifVnGVA== + dependencies: + "@google-cloud/projectify" "^2.0.0" + "@google-cloud/promisify" "^2.0.0" + arrify "^2.0.1" + duplexify "^4.1.1" + ent "^2.2.0" + extend "^3.0.2" + google-auth-library "^7.0.2" + retry-request "^4.2.2" + teeny-request "^7.0.0" + +"@google-cloud/paginator@^3.0.0": + version "3.0.5" + resolved "https://registry.yarnpkg.com/@google-cloud/paginator/-/paginator-3.0.5.tgz#9d6b96c421a89bd560c1bc2c197c7611ef21db6c" + integrity sha512-N4Uk4BT1YuskfRhKXBs0n9Lg2YTROZc6IMpkO/8DIHODtm5s3xY8K5vVBo23v/2XulY3azwITQlYWgT4GdLsUw== + dependencies: + arrify "^2.0.0" + extend "^3.0.2" + +"@google-cloud/projectify@^2.0.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/@google-cloud/projectify/-/projectify-2.1.0.tgz#3df145c932e244cdeb87a30d93adce615bc69e6d" + integrity sha512-qbpidP/fOvQNz3nyabaVnZqcED1NNzf7qfeOlgtAZd9knTwY+KtsGRkYpiQzcATABy4gnGP2lousM3S0nuWVzA== + +"@google-cloud/promisify@^2.0.0": + version "2.0.3" + resolved "https://registry.yarnpkg.com/@google-cloud/promisify/-/promisify-2.0.3.tgz#f934b5cdc939e3c7039ff62b9caaf59a9d89e3a8" + integrity sha512-d4VSA86eL/AFTe5xtyZX+ePUjE8dIFu2T8zmdeNBSa5/kNgXPCx/o/wbFNHAGLJdGnk1vddRuMESD9HbOC8irw== + "@hapi/address@2.x.x", "@hapi/address@^2.1.2": version "2.1.4" resolved "https://registry.yarnpkg.com/@hapi/address/-/address-2.1.4.tgz#5d67ed43f3fd41a69d4b9ff7b56e7c0d1d0a81e5" @@ -2646,6 +2696,11 @@ dependencies: "@babel/runtime" "^7.12.5" +"@tootallnate/once@1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" + integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== + "@types/anymatch@*": version "1.3.1" resolved "https://registry.yarnpkg.com/@types/anymatch/-/anymatch-1.3.1.tgz#336badc1beecb9dacc38bea2cf32adf627a8421a" @@ -3194,6 +3249,13 @@ abbrev@1, abbrev@~1.1.1: resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== +abort-controller@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" + integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== + dependencies: + event-target-shim "^5.0.0" + accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7: version "1.3.7" resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" @@ -3250,6 +3312,13 @@ agent-base@4, agent-base@^4.3.0: dependencies: es6-promisify "^5.0.0" +agent-base@6: + version "6.0.2" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" + integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== + dependencies: + debug "4" + agent-base@~4.2.1: version "4.2.1" resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.2.1.tgz#d89e5999f797875674c07d87f260fc41e83e8ca9" @@ -3282,7 +3351,7 @@ ajv-keywords@^3.1.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2: resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== -ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.12.5: +ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.11.0, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.12.5: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== @@ -3516,7 +3585,7 @@ array.prototype.flatmap@^1.2.3: es-abstract "^1.18.0-next.1" function-bind "^1.1.1" -arrify@^2.0.1: +arrify@^2.0.0, arrify@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/arrify/-/arrify-2.0.1.tgz#c9655e9331e0abcd588d2a7cad7e9956f66701fa" integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== @@ -3890,7 +3959,7 @@ balanced-match@^1.0.0: resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= -base64-js@^1.0.2: +base64-js@^1.0.2, base64-js@^1.3.0: version "1.5.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== @@ -3935,6 +4004,16 @@ big.js@^5.2.2: resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== +big.js@^6.0.0: + version "6.1.1" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-6.1.1.tgz#63b35b19dc9775c94991ee5db7694880655d5537" + integrity sha512-1vObw81a8ylZO5ePrtMay0n018TcftpTA5HFKDaSuiUDBo8biRBtjIobw60OpwuvrGk+FsxKamqN4cnmj/eXdg== + +bignumber.js@^9.0.0: + version "9.0.1" + resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-9.0.1.tgz#8d7ba124c882bfd8e43260c67475518d0689e4e5" + integrity sha512-IdZR9mh6ahOBv/hYGiXyVuyCetmGJhtYkqLBpTStdhEGjegpPlUawydyaF3pbIOFynJTpllEs+NP+CS9jKFLjA== + bin-links@^1.1.2, bin-links@^1.1.8: version "1.1.8" resolved "https://registry.yarnpkg.com/bin-links/-/bin-links-1.1.8.tgz#bd39aadab5dc4bdac222a07df5baf1af745b2228" @@ -4012,6 +4091,11 @@ boolbase@^1.0.0, boolbase@~1.0.0: resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= +boolean@^3.0.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.1.2.tgz#e30f210a26b02458482a8cc353ab06f262a780c2" + integrity sha512-YN6UmV0FfLlBVvRvNPx3pz5W/mUoYB24J4WSXOKP/OOJpi+Oq6WYqPaNTHzjI0QzwWtnvEd5CGYyQPgp1jFxnw== + boxen@^1.2.1: version "1.3.0" resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" @@ -4171,6 +4255,11 @@ btoa@^1.2.1: resolved "https://registry.yarnpkg.com/btoa/-/btoa-1.2.1.tgz#01a9909f8b2c93f6bf680ba26131eb30f7fa3d73" integrity sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g== +buffer-equal-constant-time@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" + integrity sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk= + buffer-from@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" @@ -5524,6 +5613,13 @@ debug@3.1.0: dependencies: ms "2.0.0" +debug@4: + version "4.3.2" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" + integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== + dependencies: + ms "2.1.2" + debug@^3.1.0, debug@^3.1.1, debug@^3.2.5: version "3.2.7" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" @@ -5538,7 +5634,7 @@ debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: dependencies: ms "2.1.2" -debuglog@*, debuglog@^1.0.1: +debuglog@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492" integrity sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI= @@ -5652,6 +5748,11 @@ del@^4.1.1: pify "^4.0.1" rimraf "^2.6.3" +delay@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/delay/-/delay-5.0.0.tgz#137045ef1b96e5071060dd5be60bf9334436bd1d" + integrity sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw== + delayed-stream@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" @@ -5700,6 +5801,11 @@ detect-node@^2.0.4: resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c" integrity sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw== +detect-node@^2.0.5: + version "2.1.0" + resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" + integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== + detect-port-alt@1.1.6: version "1.1.6" resolved "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.6.tgz#24707deabe932d4a3cf621302027c2b266568275" @@ -5945,6 +6051,16 @@ duplexify@^3.4.2, duplexify@^3.6.0: readable-stream "^2.0.0" stream-shift "^1.0.0" +duplexify@^4.0.0, duplexify@^4.1.1: + version "4.1.2" + resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-4.1.2.tgz#18b4f8d28289132fa0b9573c898d9f903f81c7b0" + integrity sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw== + dependencies: + end-of-stream "^1.4.1" + inherits "^2.0.3" + readable-stream "^3.1.1" + stream-shift "^1.0.0" + earcut@^2.0.6, earcut@^2.2.2: version "2.2.2" resolved "https://registry.yarnpkg.com/earcut/-/earcut-2.2.2.tgz#41b0bc35f63e0fe80da7cddff28511e7e2e80d11" @@ -5958,6 +6074,13 @@ ecc-jsbn@~0.1.1: jsbn "~0.1.0" safer-buffer "^2.1.0" +ecdsa-sig-formatter@1.0.11, ecdsa-sig-formatter@^1.0.11: + version "1.0.11" + resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz#ae0f0fa2d85045ef14a817daa3ce9acd0489e5bf" + integrity sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ== + dependencies: + safe-buffer "^5.0.1" + editor@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/editor/-/editor-1.0.0.tgz#60c7f87bd62bcc6a894fa8ccd6afb7823a24f742" @@ -6045,7 +6168,7 @@ encoding@^0.1.11: dependencies: iconv-lite "^0.6.2" -end-of-stream@^1.0.0, end-of-stream@^1.1.0: +end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: version "1.4.4" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== @@ -6068,6 +6191,11 @@ enquirer@^2.3.5: dependencies: ansi-colors "^4.1.1" +ent@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/ent/-/ent-2.2.0.tgz#e964219325a21d05f44466a2f686ed6ce5f5dd1d" + integrity sha1-6WQhkyWiHQX0RGai9obtbOX13R0= + entities@^1.1.1: version "1.1.2" resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" @@ -6478,6 +6606,11 @@ etag@~1.8.1: resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= +event-target-shim@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" + integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== + eventemitter3@1.x.x: version "1.2.0" resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" @@ -6642,7 +6775,7 @@ extend-shallow@^3.0.0, extend-shallow@^3.0.2: assign-symbols "^1.0.0" is-extendable "^1.0.1" -extend@^3.0.0, extend@~3.0.2: +extend@^3.0.0, extend@^3.0.2, extend@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== @@ -6693,11 +6826,33 @@ fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== +fast-json-stringify@^2.5.2: + version "2.7.7" + resolved "https://registry.yarnpkg.com/fast-json-stringify/-/fast-json-stringify-2.7.7.tgz#9e1c0f238f566559c3d4b99ae17a8e545381c16e" + integrity sha512-2kiwC/hBlK7QiGALsvj0QxtYwaReLOmAwOWJIxt5WHBB9EwXsqbsu8LCel47yh8NV8CEcFmnZYcXh4BionJcwQ== + dependencies: + ajv "^6.11.0" + deepmerge "^4.2.2" + rfdc "^1.2.0" + string-similarity "^4.0.1" + fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= +fast-printf@^1.6.4: + version "1.6.6" + resolved "https://registry.yarnpkg.com/fast-printf/-/fast-printf-1.6.6.tgz#7e9af8dabedf7a0b9760feae4d10b651d0d6a03b" + integrity sha512-Uz/uW6R1Fd8YqCGeoQosRIfB4dBbr8uMbFVdEci2AyXYcfucFqhpSMAGs8skRRdZd+MGCDBu48+B8Zmu7Pta5A== + dependencies: + boolean "^3.0.2" + +fast-text-encoding@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/fast-text-encoding/-/fast-text-encoding-1.0.3.tgz#ec02ac8e01ab8a319af182dae2681213cfe9ce53" + integrity sha512-dtm4QZH9nZtcDt8qJiOH9fcQd1NAgi+K1O2DbE6GG1PPCK/BWfOH3idCTRQ4ImXRUOyopDEgDEnVEE7Y/2Wrig== + fastq@^1.6.0: version "1.11.0" resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.11.0.tgz#bb9fb955a07130a918eb63c1f5161cc32a5d0858" @@ -7052,6 +7207,25 @@ gauge@~2.7.3: strip-ansi "^3.0.1" wide-align "^1.1.0" +gaxios@^4.0.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/gaxios/-/gaxios-4.3.0.tgz#ad4814d89061f85b97ef52aed888c5dbec32f774" + integrity sha512-pHplNbslpwCLMyII/lHPWFQbJWOX0B3R1hwBEOvzYi1GmdKZruuEHK4N9V6f7tf1EaPYyF80mui1+344p6SmLg== + dependencies: + abort-controller "^3.0.0" + extend "^3.0.2" + https-proxy-agent "^5.0.0" + is-stream "^2.0.0" + node-fetch "^2.3.0" + +gcp-metadata@^4.2.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/gcp-metadata/-/gcp-metadata-4.3.0.tgz#0423d06becdbfb9cbb8762eaacf14d5324997900" + integrity sha512-L9XQUpvKJCM76YRSmcxrR4mFPzPGsgZUH+GgHMxAET8qc6+BhRJq63RLhWakgEO2KKVgeSDVfyiNjkGSADwNTA== + dependencies: + gaxios "^4.0.0" + json-bigint "^1.0.0" + genfun@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/genfun/-/genfun-5.0.0.tgz#9dd9710a06900a5c4a5bf57aca5da4e52fe76537" @@ -7211,6 +7385,13 @@ globals@^12.1.0: dependencies: type-fest "^0.8.1" +globalthis@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.2.tgz#2a235d34f4d8036219f7e34929b5de9e18166b8b" + integrity sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ== + dependencies: + define-properties "^1.1.3" + globby@11.0.1: version "11.0.1" resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.1.tgz#9a2bf107a068f3ffeabc49ad702c79ede8cfd357" @@ -7246,6 +7427,28 @@ globby@^6.1.0: pify "^2.0.0" pinkie-promise "^2.0.0" +google-auth-library@^7.0.2: + version "7.3.0" + resolved "https://registry.yarnpkg.com/google-auth-library/-/google-auth-library-7.3.0.tgz#946a911c72425b05f02735915f03410604466657" + integrity sha512-MPeeMlnsYnoiiVFMwX3hgaS684aiXrSqKoDP+xL4Ejg4Z0qLvIeg4XsaChemyFI8ZUO7ApwDAzNtgmhWSDNh5w== + dependencies: + arrify "^2.0.0" + base64-js "^1.3.0" + ecdsa-sig-formatter "^1.0.11" + fast-text-encoding "^1.0.0" + gaxios "^4.0.0" + gcp-metadata "^4.2.0" + gtoken "^5.0.4" + jws "^4.0.0" + lru-cache "^6.0.0" + +google-p12-pem@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/google-p12-pem/-/google-p12-pem-3.1.0.tgz#a1421b432fcc926812e3835289807170768a9885" + integrity sha512-JUtEHXL4DY/N+xhlm7TC3qL797RPAtk0ZGXNs3/gWyiDHYoA/8Rjes0pztkda+sZv4ej1EoO2KhWgW5V9KTrSQ== + dependencies: + node-forge "^0.10.0" + got@^6.7.1: version "6.7.1" resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" @@ -7278,6 +7481,15 @@ growly@^1.3.0: resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= +gtoken@^5.0.4: + version "5.3.0" + resolved "https://registry.yarnpkg.com/gtoken/-/gtoken-5.3.0.tgz#6536eb2880d9829f0b9d78f756795d4d9064b217" + integrity sha512-mCcISYiaRZrJpfqOs0QWa6lfEM/C1V9ASkzFmuz43XBb5s1Vynh+CZy1ECeeJXVGx2PRByjYzb4Y4/zr1byr0w== + dependencies: + gaxios "^4.0.0" + google-p12-pem "^3.0.3" + jws "^4.0.0" + gzip-size@5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274" @@ -7611,6 +7823,15 @@ http-proxy-agent@^2.1.0: agent-base "4" debug "3.1.0" +http-proxy-agent@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" + integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== + dependencies: + "@tootallnate/once" "1" + agent-base "6" + debug "4" + http-proxy-middleware@0.19.1: version "0.19.1" resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz#183c7dc4aa1479150306498c210cdaf96080a43a" @@ -7647,6 +7868,15 @@ http-signature@~1.2.0: jsprim "^1.2.2" sshpk "^1.7.0" +http-terminator@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/http-terminator/-/http-terminator-3.0.0.tgz#8b2f2d0b62f9751a3036c88bcfd19d0362a20154" + integrity sha512-YdNsDQgsHuxBSOWWhkQHMgOD7c5CU3e9u+pokp9tI6BwJ8LjUhJYBO+k2a3NXoDXbToSm7OQk4RzNTooPQP5IQ== + dependencies: + delay "^5.0.0" + roarr "^4.0.10" + type-fest "^0.20.2" + https-browserify@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" @@ -7660,6 +7890,14 @@ https-proxy-agent@^2.2.3: agent-base "^4.3.0" debug "^3.1.0" +https-proxy-agent@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" + integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== + dependencies: + agent-base "6" + debug "4" + human-signals@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-1.1.1.tgz#c5b1cd14f50aeae09ab6c59fe63ba3395fe4dfa3" @@ -7798,7 +8036,7 @@ import-local@^3.0.2: pkg-dir "^4.2.0" resolve-cwd "^3.0.0" -imurmurhash@*, imurmurhash@^0.1.4: +imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= @@ -8018,6 +8256,11 @@ is-cidr@^3.0.0: dependencies: cidr-regex "^2.0.10" +is-circular@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-circular/-/is-circular-1.0.2.tgz#2e0ab4e9835f4c6b0ea2b9855a84acd501b8366c" + integrity sha512-YttjnrswnUYRVJvxCvu8z+PGMUSzC2JttP0OEXezlAEdp3EXzhf7IZ3j0gRAybJBQupedIZFhY61Tga6E0qASA== + is-color-stop@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345" @@ -8329,6 +8572,11 @@ is-wsl@^2.1.1, is-wsl@^2.2.0: dependencies: is-docker "^2.0.0" +is@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/is/-/is-3.3.0.tgz#61cff6dd3c4193db94a3d62582072b44e5645d79" + integrity sha512-nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg== + isarray@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" @@ -8915,6 +9163,13 @@ jsgeoda@^0.2.3: install "^0.13.0" npm "^6.14.8" +json-bigint@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-bigint/-/json-bigint-1.0.0.tgz#ae547823ac0cad8398667f8cd9ef4730f5b01ff1" + integrity sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ== + dependencies: + bignumber.js "^9.0.0" + json-parse-better-errors@^1.0.0, json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" @@ -8945,7 +9200,7 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= -json-stringify-safe@~5.0.1: +json-stringify-safe@^5.0.1, json-stringify-safe@~5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= @@ -9089,6 +9344,23 @@ jszip@^3.6.0: readable-stream "~2.3.6" set-immediate-shim "~1.0.1" +jwa@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/jwa/-/jwa-2.0.0.tgz#a7e9c3f29dae94027ebcaf49975c9345593410fc" + integrity sha512-jrZ2Qx916EA+fq9cEAeCROWPTfCwi1IVHqT2tapuqLEVVDKFDENFw1oL+MwrTvH6msKxsd1YTDVw6uKEcsrLEA== + dependencies: + buffer-equal-constant-time "1.0.1" + ecdsa-sig-formatter "1.0.11" + safe-buffer "^5.0.1" + +jws@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jws/-/jws-4.0.0.tgz#2d4e8cf6a318ffaa12615e9dec7e86e6c97310f4" + integrity sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg== + dependencies: + jwa "^2.0.0" + safe-buffer "^5.0.1" + kdbush@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/kdbush/-/kdbush-3.0.0.tgz#f8484794d47004cc2d85ed3a79353dbe0abc2bf0" @@ -9415,11 +9687,6 @@ lockfile@^1.0.4: dependencies: signal-exit "^3.0.2" -lodash._baseindexof@*: - version "3.1.0" - resolved "https://registry.yarnpkg.com/lodash._baseindexof/-/lodash._baseindexof-3.1.0.tgz#fe52b53a1c6761e42618d654e4a25789ed61822c" - integrity sha1-/lK1OhxnYeQmGNZU5KJXie1hgiw= - lodash._baseuniq@~4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash._baseuniq/-/lodash._baseuniq-4.6.0.tgz#0ebb44e456814af7905c6212fa2c9b2d51b841e8" @@ -9428,33 +9695,11 @@ lodash._baseuniq@~4.6.0: lodash._createset "~4.0.0" lodash._root "~3.0.0" -lodash._bindcallback@*: - version "3.0.1" - resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e" - integrity sha1-5THCdkTPi1epnhftlbNcdIeJOS4= - -lodash._cacheindexof@*: - version "3.0.2" - resolved "https://registry.yarnpkg.com/lodash._cacheindexof/-/lodash._cacheindexof-3.0.2.tgz#3dc69ac82498d2ee5e3ce56091bafd2adc7bde92" - integrity sha1-PcaayCSY0u5ePOVgkbr9Ktx73pI= - -lodash._createcache@*: - version "3.1.2" - resolved "https://registry.yarnpkg.com/lodash._createcache/-/lodash._createcache-3.1.2.tgz#56d6a064017625e79ebca6b8018e17440bdcf093" - integrity sha1-VtagZAF2JeeevKa4AY4XRAvc8JM= - dependencies: - lodash._getnative "^3.0.0" - lodash._createset@~4.0.0: version "4.0.3" resolved "https://registry.yarnpkg.com/lodash._createset/-/lodash._createset-4.0.3.tgz#0f4659fbb09d75194fa9e2b88a6644d363c9fe26" integrity sha1-D0ZZ+7CddRlPqeK4imZE02PJ/iY= -lodash._getnative@*, lodash._getnative@^3.0.0: - version "3.9.1" - resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" - integrity sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U= - lodash._reinterpolate@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" @@ -9485,11 +9730,6 @@ lodash.memoize@^4.1.2: resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= -lodash.restparam@*: - version "3.6.1" - resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" - integrity sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU= - lodash.sortby@^4.7.0: version "4.7.0" resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" @@ -10263,7 +10503,7 @@ node-fetch-npm@^2.0.2: json-parse-better-errors "^1.0.0" safe-buffer "^5.1.1" -node-fetch@^2.6.1: +node-fetch@^2.3.0, node-fetch@^2.6.1: version "2.6.1" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== @@ -10901,6 +11141,13 @@ p-each-series@^2.1.0: resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-2.2.0.tgz#105ab0357ce72b202a8a8b94933672657b5e2a9a" integrity sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA== +p-event@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/p-event/-/p-event-4.2.0.tgz#af4b049c8acd91ae81083ebd1e6f5cae2044c1b5" + integrity sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ== + dependencies: + p-timeout "^3.1.0" + p-finally@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" @@ -10967,6 +11214,13 @@ p-retry@^3.0.1: dependencies: retry "^0.12.0" +p-timeout@^3.1.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe" + integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg== + dependencies: + p-finally "^1.0.0" + p-try@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" @@ -13080,6 +13334,14 @@ ret@~0.1.10: resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== +retry-request@^4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/retry-request/-/retry-request-4.2.2.tgz#b7d82210b6d2651ed249ba3497f07ea602f1a903" + integrity sha512-xA93uxUD/rogV7BV59agW/JHPGXeREMWiZc9jhcwY4YdZ7QOtC7qbomYg0n4wyk2lJhggjvKvhNX8wln/Aldhg== + dependencies: + debug "^4.1.1" + extend "^3.0.2" + retry@^0.10.0: version "0.10.1" resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4" @@ -13108,6 +13370,11 @@ rework@1.0.1: convert-source-map "^0.3.3" css "^2.0.0" +rfdc@^1.2.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b" + integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA== + rgb-regex@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1" @@ -13147,6 +13414,20 @@ ripemd160@^2.0.0, ripemd160@^2.0.1: hash-base "^3.0.0" inherits "^2.0.1" +roarr@^4.0.10: + version "4.2.5" + resolved "https://registry.yarnpkg.com/roarr/-/roarr-4.2.5.tgz#b4e5ddba4ef40ce66fbef0dc57cf9c584687a7cb" + integrity sha512-ZSs1hr2gyWickWDr2Yw0qcuef+EJKwZtNxUj7poxvIDxVq+ZvQreVNdPVLHonWpavBeZaOcAGVFV5xM/HqRR8g== + dependencies: + boolean "^3.0.2" + detect-node "^2.0.5" + fast-json-stringify "^2.5.2" + fast-printf "^1.6.4" + globalthis "^1.0.2" + is-circular "^1.0.2" + json-stringify-safe "^5.0.1" + semver-compare "^1.0.0" + rollup-plugin-babel@^4.3.3: version "4.4.0" resolved "https://registry.yarnpkg.com/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz#d15bd259466a9d1accbdb2fe2fff17c52d030acb" @@ -13335,6 +13616,11 @@ selfsigned@^1.10.7: dependencies: node-forge "^0.10.0" +semver-compare@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" + integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= + semver-diff@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" @@ -13893,6 +14179,13 @@ stream-each@^1.1.0: end-of-stream "^1.1.0" stream-shift "^1.0.0" +stream-events@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/stream-events/-/stream-events-1.0.5.tgz#bbc898ec4df33a4902d892333d47da9bf1c406d5" + integrity sha512-E1GUzBSgvct8Jsb3v2X15pjzN1tYebtbLaMg+eBOUOAxgbLoSbT2NS91ckc5lJD1KfLjId+jXJRgo0qnV5Nerg== + dependencies: + stubs "^3.0.0" + stream-http@^2.7.2: version "2.8.3" resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" @@ -13940,6 +14233,11 @@ string-natural-compare@^3.0.1: resolved "https://registry.yarnpkg.com/string-natural-compare/-/string-natural-compare-3.0.1.tgz#7a42d58474454963759e8e8b7ae63d71c1e7fdf4" integrity sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw== +string-similarity@^4.0.1: + version "4.0.4" + resolved "https://registry.yarnpkg.com/string-similarity/-/string-similarity-4.0.4.tgz#42d01ab0b34660ea8a018da8f56a3309bb8b2a5b" + integrity sha512-/q/8Q4Bl4ZKAPjj8WerIBJWALKkaPRfrvhfF8k/B23i4nzrlRj2/go1m90In7nG/3XDSbOo0+pu6RvCTM9RGMQ== + string-width@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" @@ -14115,6 +14413,11 @@ strip-json-comments@~2.0.1: resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= +stubs@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/stubs/-/stubs-3.0.0.tgz#e8d2ba1fa9c90570303c030b6900f7d5f89abe5b" + integrity sha1-6NK6H6nJBXAwPAMLaQD31fiavls= + style-loader@1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.3.0.tgz#828b4a3b3b7e7aa5847ce7bae9e874512114249e" @@ -14258,6 +14561,17 @@ tar@^6.0.2: mkdirp "^1.0.3" yallist "^4.0.0" +teeny-request@^7.0.0: + version "7.1.1" + resolved "https://registry.yarnpkg.com/teeny-request/-/teeny-request-7.1.1.tgz#2b0d156f4a8ad81de44303302ba8d7f1f05e20e6" + integrity sha512-iwY6rkW5DDGq8hE2YgNQlKbptYpY5Nn2xecjQiNjOXWbKzPGUfmeUBCSQbbr306d7Z7U2N0TPl+/SwYRfua1Dg== + dependencies: + http-proxy-agent "^4.0.0" + https-proxy-agent "^5.0.0" + node-fetch "^2.6.1" + stream-events "^1.0.5" + uuid "^8.0.0" + temp-dir@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d" @@ -14612,6 +14926,11 @@ type-fest@^0.16.0: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.16.0.tgz#3240b891a78b0deae910dbeb86553e552a148860" integrity sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg== +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + type-fest@^0.3.1: version "0.3.1" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1" @@ -14951,7 +15270,7 @@ uuid@^3.3.2, uuid@^3.3.3, uuid@^3.4.0: resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== -uuid@^8.3.0: +uuid@^8.0.0, uuid@^8.3.0: version "8.3.2" resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== From 809eaf31dc8c71a2037dbef0c40ff636cb5cf752 Mon Sep 17 00:00:00 2001 From: theuscovidatlas Date: Wed, 21 Jul 2021 12:34:00 -0500 Subject: [PATCH 07/40] Update query.js --- functions/query.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/functions/query.js b/functions/query.js index 859f02df2..163577567 100644 --- a/functions/query.js +++ b/functions/query.js @@ -50,6 +50,8 @@ const dataColumn = 'count'; exports.handler = async (event) => { try { + console.log(event) + console.log(options) if (event.queryStringParameters.lisa == 'true') { const bigquery = new BigQuery(options); const [geoda, raw] = await Promise.all([ From ced9d0eda1eea1dfea6552f96dbe59026bf6e442 Mon Sep 17 00:00:00 2001 From: theuscovidatlas Date: Wed, 21 Jul 2021 12:42:40 -0500 Subject: [PATCH 08/40] Update query.js --- functions/query.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions/query.js b/functions/query.js index 163577567..ea2f288ef 100644 --- a/functions/query.js +++ b/functions/query.js @@ -5,8 +5,8 @@ const options = { credentials: { "type": "service_account", "project_id": process.env.project_id, - "private_key_id": process.env.PK_ID, - "private_key": process.env.PK, + "private_key_id": process.env.SK_ID, + "private_key": process.env.SK.replace(/\\n/gm, '\n'), "client_email": process.env.CLIENT_EMAIL, "client_id": process.env.CLIENT_ID, "auth_uri": "https://accounts.google.com/o/oauth2/auth", @@ -14,7 +14,7 @@ const options = { "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", "client_x509_cert_url": process.env.client_x509_cert_url }, - projectId: 'covid-atlas', + projectId: process.env.project_id, }; async function query(queryString, bigquery) { From 222d85e9c23256aaa469cfebf5ec454492c2918c Mon Sep 17 00:00:00 2001 From: theuscovidatlas Date: Wed, 21 Jul 2021 12:50:56 -0500 Subject: [PATCH 09/40] Remove logs --- functions/bigquery.js | 26 +++++++++++++------------- functions/query.js | 2 -- 2 files changed, 13 insertions(+), 15 deletions(-) diff --git a/functions/bigquery.js b/functions/bigquery.js index 57552d6a6..6a43f562d 100644 --- a/functions/bigquery.js +++ b/functions/bigquery.js @@ -1,19 +1,19 @@ const {BigQuery} = require('@google-cloud/bigquery'); const options = { - credentials: { - "type": "service_account", - "project_id": process.env.project_id, - "private_key_id": process.env.PK_ID, - "private_key": process.env.PK, - "client_email": process.env.CLIENT_EMAIL, - "client_id": process.env.CLIENT_ID, - "auth_uri": "https://accounts.google.com/o/oauth2/auth", - "token_uri": "https://oauth2.googleapis.com/token", - "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", - "client_x509_cert_url": process.env.client_x509_cert_url - }, - projectId: 'covid-atlas', + credentials: { + "type": "service_account", + "project_id": process.env.project_id, + "private_key_id": process.env.SK_ID, + "private_key": process.env.SK.replace(/\\n/gm, '\n'), + "client_email": process.env.CLIENT_EMAIL, + "client_id": process.env.CLIENT_ID, + "auth_uri": "https://accounts.google.com/o/oauth2/auth", + "token_uri": "https://oauth2.googleapis.com/token", + "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", + "client_x509_cert_url": process.env.client_x509_cert_url + }, + projectId: process.env.project_id, }; async function query(queryString, bigquery) { diff --git a/functions/query.js b/functions/query.js index ea2f288ef..e6810da74 100644 --- a/functions/query.js +++ b/functions/query.js @@ -50,8 +50,6 @@ const dataColumn = 'count'; exports.handler = async (event) => { try { - console.log(event) - console.log(options) if (event.queryStringParameters.lisa == 'true') { const bigquery = new BigQuery(options); const [geoda, raw] = await Promise.all([ From d8b9d5fddfad0f2e1d5fed254853113acdf59225 Mon Sep 17 00:00:00 2001 From: theuscovidatlas Date: Wed, 28 Jul 2021 15:25:32 -0500 Subject: [PATCH 10/40] Range Bigquery --- columns.json | 1 + functions/columns.json | 0 functions/q.js | 129 +++++++++++++++++++++++++++++++++++++++++ package.json | 1 + yarn.lock | 5 ++ 5 files changed, 136 insertions(+) create mode 100644 columns.json create mode 100644 functions/columns.json create mode 100644 functions/q.js diff --git a/columns.json b/columns.json new file mode 100644 index 000000000..1cee44446 --- /dev/null +++ b/columns.json @@ -0,0 +1 @@ +{"availableColumns":{"covid_testing_cdc":["fips_code","_2020_01_22","_2020_01_23","_2020_01_24","_2020_01_25","_2020_01_26","_2020_01_27","_2020_01_28","_2020_01_29","_2020_01_30","_2020_01_31","_2020_02_01","_2020_02_02","_2020_02_03","_2020_02_04","_2020_02_05","_2020_02_06","_2020_02_07","_2020_02_08","_2020_02_09","_2020_02_10","_2020_02_11","_2020_02_12","_2020_02_13","_2020_02_14","_2020_02_15","_2020_02_16","_2020_02_17","_2020_02_18","_2020_02_19","_2020_02_20","_2020_02_21","_2020_02_22","_2020_02_23","_2020_02_24","_2020_02_25","_2020_02_26","_2020_02_27","_2020_02_28","_2020_02_29","_2020_03_01","_2020_03_02","_2020_03_03","_2020_03_04","_2020_03_05","_2020_03_06","_2020_03_07","_2020_03_08","_2020_03_09","_2020_03_10","_2020_03_11","_2020_03_12","_2020_03_13","_2020_03_14","_2020_03_15","_2020_03_16","_2020_03_17","_2020_03_18","_2020_03_19","_2020_03_20","_2020_03_21","_2020_03_22","_2020_03_23","_2020_03_24","_2020_03_25","_2020_03_26","_2020_03_27","_2020_03_28","_2020_03_29","_2020_03_30","_2020_03_31","_2020_04_01","_2020_04_02","_2020_04_03","_2020_04_04","_2020_04_05","_2020_04_06","_2020_04_07","_2020_04_08","_2020_04_09","_2020_04_10","_2020_04_11","_2020_04_12","_2020_04_13","_2020_04_14","_2020_04_15","_2020_04_16","_2020_04_17","_2020_04_18","_2020_04_19","_2020_04_20","_2020_04_21","_2020_04_22","_2020_04_23","_2020_04_24","_2020_04_25","_2020_04_26","_2020_04_27","_2020_04_28","_2020_04_29","_2020_04_30","_2020_05_01","_2020_05_02","_2020_05_03","_2020_05_04","_2020_05_05","_2020_05_06","_2020_05_07","_2020_05_08","_2020_05_09","_2020_05_10","_2020_05_11","_2020_05_12","_2020_05_13","_2020_05_14","_2020_05_15","_2020_05_16","_2020_05_17","_2020_05_18","_2020_05_19","_2020_05_20","_2020_05_21","_2020_05_22","_2020_05_23","_2020_05_24","_2020_05_25","_2020_05_26","_2020_05_27","_2020_05_28","_2020_05_29","_2020_05_30","_2020_05_31","_2020_06_01","_2020_06_02","_2020_06_03","_2020_06_04","_2020_06_05","_2020_06_06","_2020_06_07","_2020_06_08","_2020_06_09","_2020_06_10","_2020_06_11","_2020_06_12","_2020_06_13","_2020_06_14","_2020_06_15","_2020_06_16","_2020_06_17","_2020_06_18","_2020_06_19","_2020_06_20","_2020_06_21","_2020_06_22","_2020_06_23","_2020_06_24","_2020_06_25","_2020_06_26","_2020_06_27","_2020_06_28","_2020_06_29","_2020_06_30","_2020_07_01","_2020_07_02","_2020_07_03","_2020_07_04","_2020_07_05","_2020_07_06","_2020_07_07","_2020_07_08","_2020_07_09","_2020_07_10","_2020_07_11","_2020_07_12","_2020_07_13","_2020_07_14","_2020_07_15","_2020_07_16","_2020_07_17","_2020_07_18","_2020_07_19","_2020_07_20","_2020_07_21","_2020_07_22","_2020_07_23","_2020_07_24","_2020_07_25","_2020_07_26","_2020_07_27","_2020_07_28","_2020_07_29","_2020_07_30","_2020_07_31","_2020_08_01","_2020_08_02","_2020_08_03","_2020_08_04","_2020_08_05","_2020_08_06","_2020_08_07","_2020_08_08","_2020_08_09","_2020_08_10","_2020_08_11","_2020_08_12","_2020_08_13","_2020_08_14","_2020_08_15","_2020_08_16","_2020_08_17","_2020_08_18","_2020_08_19","_2020_08_20","_2020_08_21","_2020_08_22","_2020_08_23","_2020_08_24","_2020_08_25","_2020_08_26","_2020_08_27","_2020_08_28","_2020_08_29","_2020_08_30","_2020_08_31","_2020_09_01","_2020_09_02","_2020_09_03","_2020_09_04","_2020_09_05","_2020_09_06","_2020_09_07","_2020_09_08","_2020_09_09","_2020_09_10","_2020_09_11","_2020_09_12","_2020_09_13","_2020_09_14","_2020_09_15","_2020_09_16","_2020_09_17","_2020_09_18","_2020_09_19","_2020_09_20","_2020_09_21","_2020_09_22","_2020_09_23","_2020_09_24","_2020_09_25","_2020_09_26","_2020_09_27","_2020_09_28","_2020_09_29","_2020_09_30","_2020_10_01","_2020_10_02","_2020_10_03","_2020_10_04","_2020_10_05","_2020_10_06","_2020_10_07","_2020_10_08","_2020_10_09","_2020_10_10","_2020_10_11","_2020_10_12","_2020_10_13","_2020_10_14","_2020_10_15","_2020_10_16","_2020_10_17","_2020_10_18","_2020_10_19","_2020_10_20","_2020_10_21","_2020_10_22","_2020_10_23","_2020_10_24","_2020_10_25","_2020_10_26","_2020_10_27","_2020_10_28","_2020_10_29","_2020_10_30","_2020_10_31","_2020_11_01","_2020_11_02","_2020_11_03","_2020_11_04","_2020_11_05","_2020_11_06","_2020_11_07","_2020_11_08","_2020_11_09","_2020_11_10","_2020_11_11","_2020_11_12","_2020_11_13","_2020_11_14","_2020_11_15","_2020_11_16","_2020_11_17","_2020_11_18","_2020_11_19","_2020_11_20","_2020_11_21","_2020_11_22","_2020_11_23","_2020_11_24","_2020_11_25","_2020_11_26","_2020_11_27","_2020_11_28","_2020_11_29","_2020_11_30","_2020_12_01","_2020_12_02","_2020_12_03","_2020_12_04","_2020_12_05","_2020_12_06","_2020_12_07","_2020_12_08","_2020_12_09","_2020_12_10","_2020_12_11","_2020_12_12","_2020_12_13","_2020_12_14","_2020_12_15","_2020_12_16","_2020_12_17","_2020_12_18","_2020_12_19","_2020_12_20","_2020_12_21","_2020_12_22","_2020_12_23","_2020_12_24","_2020_12_25","_2020_12_26","_2020_12_27","_2020_12_28","_2020_12_29","_2020_12_30","_2020_12_31","_2021_01_01","_2021_01_02","_2021_01_03","_2021_01_04","_2021_01_05","_2021_01_06","_2021_01_07","_2021_01_08","_2021_01_09","_2021_01_10","_2021_01_11","_2021_01_12","_2021_01_13","_2021_01_14","_2021_01_15","_2021_01_16","_2021_01_17","_2021_01_18","_2021_01_19","_2021_01_20","_2021_01_21","_2021_01_22","_2021_01_23","_2021_01_24","_2021_01_25","_2021_01_26","_2021_01_27","_2021_01_28","_2021_01_29","_2021_01_30","_2021_01_31","_2021_02_01","_2021_02_02","_2021_02_03","_2021_02_04","_2021_02_05","_2021_02_06","_2021_02_07","_2021_02_08","_2021_02_09","_2021_02_10","_2021_02_11","_2021_02_12","_2021_02_13","_2021_02_14","_2021_02_15","_2021_02_16","_2021_02_17","_2021_02_18","_2021_02_19","_2021_02_20","_2021_02_21","_2021_02_22","_2021_02_23","_2021_02_24","_2021_02_25","_2021_02_26","_2021_02_27","_2021_02_28","_2021_03_01","_2021_03_02","_2021_03_03","_2021_03_04","_2021_03_05","_2021_03_06","_2021_03_07","_2021_03_08","_2021_03_09","_2021_03_10","_2021_03_11","_2021_03_12","_2021_03_13","_2021_03_14","_2021_03_15","_2021_03_16","_2021_03_17","_2021_03_18","_2021_03_19","_2021_03_20","_2021_03_21","_2021_03_22","_2021_03_23","_2021_03_24","_2021_03_25","_2021_03_26","_2021_03_27","_2021_03_28","_2021_03_29","_2021_03_30","_2021_03_31","_2021_04_01","_2021_04_02","_2021_04_03","_2021_04_04","_2021_04_05","_2021_04_06","_2021_04_07","_2021_04_08","_2021_04_09","_2021_04_10","_2021_04_11","_2021_04_12","_2021_04_13","_2021_04_14","_2021_04_15","_2021_04_16","_2021_04_17","_2021_04_18","_2021_04_19","_2021_04_20","_2021_04_21","_2021_04_22","_2021_04_23","_2021_04_24","_2021_04_25","_2021_04_26","_2021_04_27","_2021_04_28","_2021_04_29","_2021_04_30","_2021_05_01","_2021_05_02","_2021_05_03","_2021_05_04","_2021_05_05","_2021_05_06","_2021_05_07","_2021_05_08","_2021_05_09","_2021_05_10","_2021_05_11","_2021_05_12","_2021_05_13","_2021_05_14","_2021_05_15","_2021_05_16","_2021_05_17","_2021_05_18","_2021_05_19","_2021_05_20","_2021_05_21","_2021_05_22","_2021_05_23","_2021_05_24","_2021_05_25","_2021_05_26","_2021_05_27","_2021_05_28","_2021_05_29","_2021_05_30","_2021_05_31","_2021_06_01","_2021_06_02","_2021_06_03","_2021_06_04","_2021_06_05","_2021_06_06","_2021_06_07","_2021_06_08","_2021_06_09","_2021_06_10","_2021_06_11","_2021_06_12","_2021_06_13","_2021_06_14","_2021_06_15","_2021_06_16","_2021_06_17","_2021_06_18","_2021_06_19","_2021_06_20","_2021_06_21","_2021_06_22","_2021_06_23","_2021_06_24","_2021_06_25","_2021_06_26","_2021_06_27","_2021_06_28","_2021_06_29","_2021_06_30","_2021_07_01","_2021_07_02","_2021_07_03","_2021_07_04","_2021_07_05"],"covid_confirmed_usafacts":["countyFIPS","County_Name","State","StateFIPS","_2020_01_22","_2020_01_23","_2020_01_24","_2020_01_25","_2020_01_26","_2020_01_27","_2020_01_28","_2020_01_29","_2020_01_30","_2020_01_31","_2020_02_01","_2020_02_02","_2020_02_03","_2020_02_04","_2020_02_05","_2020_02_06","_2020_02_07","_2020_02_08","_2020_02_09","_2020_02_10","_2020_02_11","_2020_02_12","_2020_02_13","_2020_02_14","_2020_02_15","_2020_02_16","_2020_02_17","_2020_02_18","_2020_02_19","_2020_02_20","_2020_02_21","_2020_02_22","_2020_02_23","_2020_02_24","_2020_02_25","_2020_02_26","_2020_02_27","_2020_02_28","_2020_02_29","_2020_03_01","_2020_03_02","_2020_03_03","_2020_03_04","_2020_03_05","_2020_03_06","_2020_03_07","_2020_03_08","_2020_03_09","_2020_03_10","_2020_03_11","_2020_03_12","_2020_03_13","_2020_03_14","_2020_03_15","_2020_03_16","_2020_03_17","_2020_03_18","_2020_03_19","_2020_03_20","_2020_03_21","_2020_03_22","_2020_03_23","_2020_03_24","_2020_03_25","_2020_03_26","_2020_03_27","_2020_03_28","_2020_03_29","_2020_03_30","_2020_03_31","_2020_04_01","_2020_04_02","_2020_04_03","_2020_04_04","_2020_04_05","_2020_04_06","_2020_04_07","_2020_04_08","_2020_04_09","_2020_04_10","_2020_04_11","_2020_04_12","_2020_04_13","_2020_04_14","_2020_04_15","_2020_04_16","_2020_04_17","_2020_04_18","_2020_04_19","_2020_04_20","_2020_04_21","_2020_04_22","_2020_04_23","_2020_04_24","_2020_04_25","_2020_04_26","_2020_04_27","_2020_04_28","_2020_04_29","_2020_04_30","_2020_05_01","_2020_05_02","_2020_05_03","_2020_05_04","_2020_05_05","_2020_05_06","_2020_05_07","_2020_05_08","_2020_05_09","_2020_05_10","_2020_05_11","_2020_05_12","_2020_05_13","_2020_05_14","_2020_05_15","_2020_05_16","_2020_05_17","_2020_05_18","_2020_05_19","_2020_05_20","_2020_05_21","_2020_05_22","_2020_05_23","_2020_05_24","_2020_05_25","_2020_05_26","_2020_05_27","_2020_05_28","_2020_05_29","_2020_05_30","_2020_05_31","_2020_06_01","_2020_06_02","_2020_06_03","_2020_06_04","_2020_06_05","_2020_06_06","_2020_06_07","_2020_06_08","_2020_06_09","_2020_06_10","_2020_06_11","_2020_06_12","_2020_06_13","_2020_06_14","_2020_06_15","_2020_06_16","_2020_06_17","_2020_06_18","_2020_06_19","_2020_06_20","_2020_06_21","_2020_06_22","_2020_06_23","_2020_06_24","_2020_06_25","_2020_06_26","_2020_06_27","_2020_06_28","_2020_06_29","_2020_06_30","_2020_07_01","_2020_07_02","_2020_07_03","_2020_07_04","_2020_07_05","_2020_07_06","_2020_07_07","_2020_07_08","_2020_07_09","_2020_07_10","_2020_07_11","_2020_07_12","_2020_07_13","_2020_07_14","_2020_07_15","_2020_07_16","_2020_07_17","_2020_07_18","_2020_07_19","_2020_07_20","_2020_07_21","_2020_07_22","_2020_07_23","_2020_07_24","_2020_07_25","_2020_07_26","_2020_07_27","_2020_07_28","_2020_07_29","_2020_07_30","_2020_07_31","_2020_08_01","_2020_08_02","_2020_08_03","_2020_08_04","_2020_08_05","_2020_08_06","_2020_08_07","_2020_08_08","_2020_08_09","_2020_08_10","_2020_08_11","_2020_08_12","_2020_08_13","_2020_08_14","_2020_08_15","_2020_08_16","_2020_08_17","_2020_08_18","_2020_08_19","_2020_08_20","_2020_08_21","_2020_08_22","_2020_08_23","_2020_08_24","_2020_08_25","_2020_08_26","_2020_08_27","_2020_08_28","_2020_08_29","_2020_08_30","_2020_08_31","_2020_09_01","_2020_09_02","_2020_09_03","_2020_09_04","_2020_09_05","_2020_09_06","_2020_09_07","_2020_09_08","_2020_09_09","_2020_09_10","_2020_09_11","_2020_09_12","_2020_09_13","_2020_09_14","_2020_09_15","_2020_09_16","_2020_09_17","_2020_09_18","_2020_09_19","_2020_09_20","_2020_09_21","_2020_09_22","_2020_09_23","_2020_09_24","_2020_09_25","_2020_09_26","_2020_09_27","_2020_09_28","_2020_09_29","_2020_09_30","_2020_10_01","_2020_10_02","_2020_10_03","_2020_10_04","_2020_10_05","_2020_10_06","_2020_10_07","_2020_10_08","_2020_10_09","_2020_10_10","_2020_10_11","_2020_10_12","_2020_10_13","_2020_10_14","_2020_10_15","_2020_10_16","_2020_10_17","_2020_10_18","_2020_10_19","_2020_10_20","_2020_10_21","_2020_10_22","_2020_10_23","_2020_10_24","_2020_10_25","_2020_10_26","_2020_10_27","_2020_10_28","_2020_10_29","_2020_10_30","_2020_10_31","_2020_11_01","_2020_11_02","_2020_11_03","_2020_11_04","_2020_11_05","_2020_11_06","_2020_11_07","_2020_11_08","_2020_11_09","_2020_11_10","_2020_11_11","_2020_11_12","_2020_11_13","_2020_11_14","_2020_11_15","_2020_11_16","_2020_11_17","_2020_11_18","_2020_11_19","_2020_11_20","_2020_11_21","_2020_11_22","_2020_11_23","_2020_11_24","_2020_11_25","_2020_11_26","_2020_11_27","_2020_11_28","_2020_11_29","_2020_11_30","_2020_12_01","_2020_12_02","_2020_12_03","_2020_12_04","_2020_12_05","_2020_12_06","_2020_12_07","_2020_12_08","_2020_12_09","_2020_12_10","_2020_12_11","_2020_12_12","_2020_12_13","_2020_12_14","_2020_12_15","_2020_12_16","_2020_12_17","_2020_12_18","_2020_12_19","_2020_12_20","_2020_12_21","_2020_12_22","_2020_12_23","_2020_12_24","_2020_12_25","_2020_12_26","_2020_12_27","_2020_12_28","_2020_12_29","_2020_12_30","_2020_12_31","_2021_01_01","_2021_01_02","_2021_01_03","_2021_01_04","_2021_01_05","_2021_01_06","_2021_01_07","_2021_01_08","_2021_01_09","_2021_01_10","_2021_01_11","_2021_01_12","_2021_01_13","_2021_01_14","_2021_01_15","_2021_01_16","_2021_01_17","_2021_01_18","_2021_01_19","_2021_01_20","_2021_01_21","_2021_01_22","_2021_01_23","_2021_01_24","_2021_01_25","_2021_01_26","_2021_01_27","_2021_01_28","_2021_01_29","_2021_01_30","_2021_01_31","_2021_02_01","_2021_02_02","_2021_02_03","_2021_02_04","_2021_02_05","_2021_02_06","_2021_02_07","_2021_02_08","_2021_02_09","_2021_02_10","_2021_02_11","_2021_02_12","_2021_02_13","_2021_02_14","_2021_02_15","_2021_02_16","_2021_02_17","_2021_02_18","_2021_02_19","_2021_02_20","_2021_02_21","_2021_02_22","_2021_02_23","_2021_02_24","_2021_02_25","_2021_02_26","_2021_02_27","_2021_02_28","_2021_03_01","_2021_03_02","_2021_03_03","_2021_03_04","_2021_03_05","_2021_03_06","_2021_03_07","_2021_03_08","_2021_03_09","_2021_03_10","_2021_03_11","_2021_03_12","_2021_03_13","_2021_03_14","_2021_03_15","_2021_03_16","_2021_03_17","_2021_03_18","_2021_03_19","_2021_03_20","_2021_03_21","_2021_03_22","_2021_03_23","_2021_03_24","_2021_03_25","_2021_03_26","_2021_03_27","_2021_03_28","_2021_03_29","_2021_03_30","_2021_03_31","_2021_04_01","_2021_04_02","_2021_04_03","_2021_04_04","_2021_04_05","_2021_04_06","_2021_04_07","_2021_04_08","_2021_04_09","_2021_04_10","_2021_04_11","_2021_04_12","_2021_04_13","_2021_04_14","_2021_04_15","_2021_04_16","_2021_04_17","_2021_04_18","_2021_04_19","_2021_04_20","_2021_04_21","_2021_04_22","_2021_04_23","_2021_04_24","_2021_04_25","_2021_04_26","_2021_04_27","_2021_04_28","_2021_04_29","_2021_04_30","_2021_05_01","_2021_05_02","_2021_05_03","_2021_05_04","_2021_05_05","_2021_05_06","_2021_05_07","_2021_05_08","_2021_05_09","_2021_05_10","_2021_05_11","_2021_05_12","_2021_05_13","_2021_05_14","_2021_05_15","_2021_05_16","_2021_05_17","_2021_05_18","_2021_05_19","_2021_05_20","_2021_05_21","_2021_05_22","_2021_05_23","_2021_05_24","_2021_05_25","_2021_05_26","_2021_05_27","_2021_05_28","_2021_05_29","_2021_05_30","_2021_05_31","_2021_06_01","_2021_06_02","_2021_06_03","_2021_06_04","_2021_06_05","_2021_06_06","_2021_06_07","_2021_06_08","_2021_06_09","_2021_06_10","_2021_06_11","_2021_06_12","_2021_06_13","_2021_06_14","_2021_06_15","_2021_06_16","_2021_06_17","_2021_06_18","_2021_06_19","_2021_06_20","_2021_06_21","_2021_06_22","_2021_06_23","_2021_06_24","_2021_06_25","_2021_06_26","_2021_06_27","_2021_06_28","_2021_06_29","_2021_06_30","_2021_07_01","_2021_07_02","_2021_07_03","_2021_07_04","_2021_07_05","_2021_07_06","_2021_07_07"],"covid_confirmed_nyt":["fips","_2020_01_21","_2020_01_22","_2020_01_23","_2020_01_24","_2020_01_25","_2020_01_26","_2020_01_27","_2020_01_28","_2020_01_29","_2020_01_30","_2020_01_31","_2020_02_01","_2020_02_02","_2020_02_03","_2020_02_04","_2020_02_05","_2020_02_06","_2020_02_07","_2020_02_08","_2020_02_09","_2020_02_10","_2020_02_11","_2020_02_12","_2020_02_13","_2020_02_14","_2020_02_15","_2020_02_16","_2020_02_17","_2020_02_18","_2020_02_19","_2020_02_20","_2020_02_21","_2020_02_22","_2020_02_23","_2020_02_24","_2020_02_25","_2020_02_26","_2020_02_27","_2020_02_28","_2020_02_29","_2020_03_01","_2020_03_02","_2020_03_03","_2020_03_04","_2020_03_05","_2020_03_06","_2020_03_07","_2020_03_08","_2020_03_09","_2020_03_10","_2020_03_11","_2020_03_12","_2020_03_13","_2020_03_14","_2020_03_15","_2020_03_16","_2020_03_17","_2020_03_18","_2020_03_19","_2020_03_20","_2020_03_21","_2020_03_22","_2020_03_23","_2020_03_24","_2020_03_25","_2020_03_26","_2020_03_27","_2020_03_28","_2020_03_29","_2020_03_30","_2020_03_31","_2020_04_01","_2020_04_02","_2020_04_03","_2020_04_04","_2020_04_05","_2020_04_06","_2020_04_07","_2020_04_08","_2020_04_09","_2020_04_10","_2020_04_11","_2020_04_12","_2020_04_13","_2020_04_14","_2020_04_15","_2020_04_16","_2020_04_17","_2020_04_18","_2020_04_19","_2020_04_20","_2020_04_21","_2020_04_22","_2020_04_23","_2020_04_24","_2020_04_25","_2020_04_26","_2020_04_27","_2020_04_28","_2020_04_29","_2020_04_30","_2020_05_01","_2020_05_02","_2020_05_03","_2020_05_04","_2020_05_05","_2020_05_06","_2020_05_07","_2020_05_08","_2020_05_09","_2020_05_10","_2020_05_11","_2020_05_12","_2020_05_13","_2020_05_14","_2020_05_15","_2020_05_16","_2020_05_17","_2020_05_18","_2020_05_19","_2020_05_20","_2020_05_21","_2020_05_22","_2020_05_23","_2020_05_24","_2020_05_25","_2020_05_26","_2020_05_27","_2020_05_28","_2020_05_29","_2020_05_30","_2020_05_31","_2020_06_01","_2020_06_02","_2020_06_03","_2020_06_04","_2020_06_05","_2020_06_06","_2020_06_07","_2020_06_08","_2020_06_09","_2020_06_10","_2020_06_11","_2020_06_12","_2020_06_13","_2020_06_14","_2020_06_15","_2020_06_16","_2020_06_17","_2020_06_18","_2020_06_19","_2020_06_20","_2020_06_21","_2020_06_22","_2020_06_23","_2020_06_24","_2020_06_25","_2020_06_26","_2020_06_27","_2020_06_28","_2020_06_29","_2020_06_30","_2020_07_01","_2020_07_02","_2020_07_03","_2020_07_04","_2020_07_05","_2020_07_06","_2020_07_07","_2020_07_08","_2020_07_09","_2020_07_10","_2020_07_11","_2020_07_12","_2020_07_13","_2020_07_14","_2020_07_15","_2020_07_16","_2020_07_17","_2020_07_18","_2020_07_19","_2020_07_20","_2020_07_21","_2020_07_22","_2020_07_23","_2020_07_24","_2020_07_25","_2020_07_26","_2020_07_27","_2020_07_28","_2020_07_29","_2020_07_30","_2020_07_31","_2020_08_01","_2020_08_02","_2020_08_03","_2020_08_04","_2020_08_05","_2020_08_06","_2020_08_07","_2020_08_08","_2020_08_09","_2020_08_10","_2020_08_11","_2020_08_12","_2020_08_13","_2020_08_14","_2020_08_15","_2020_08_16","_2020_08_17","_2020_08_18","_2020_08_19","_2020_08_20","_2020_08_21","_2020_08_22","_2020_08_23","_2020_08_24","_2020_08_25","_2020_08_26","_2020_08_27","_2020_08_28","_2020_08_29","_2020_08_30","_2020_08_31","_2020_09_01","_2020_09_02","_2020_09_03","_2020_09_04","_2020_09_05","_2020_09_06","_2020_09_07","_2020_09_08","_2020_09_09","_2020_09_10","_2020_09_11","_2020_09_12","_2020_09_13","_2020_09_14","_2020_09_15","_2020_09_16","_2020_09_17","_2020_09_18","_2020_09_19","_2020_09_20","_2020_09_21","_2020_09_22","_2020_09_23","_2020_09_24","_2020_09_25","_2020_09_26","_2020_09_27","_2020_09_28","_2020_09_29","_2020_09_30","_2020_10_01","_2020_10_02","_2020_10_03","_2020_10_04","_2020_10_05","_2020_10_06","_2020_10_07","_2020_10_08","_2020_10_09","_2020_10_10","_2020_10_11","_2020_10_12","_2020_10_13","_2020_10_14","_2020_10_15","_2020_10_16","_2020_10_17","_2020_10_18","_2020_10_19","_2020_10_20","_2020_10_21","_2020_10_22","_2020_10_23","_2020_10_24","_2020_10_25","_2020_10_26","_2020_10_27","_2020_10_28","_2020_10_29","_2020_10_30","_2020_10_31","_2020_11_01","_2020_11_02","_2020_11_03","_2020_11_04","_2020_11_05","_2020_11_06","_2020_11_07","_2020_11_08","_2020_11_09","_2020_11_10","_2020_11_11","_2020_11_12","_2020_11_13","_2020_11_14","_2020_11_15","_2020_11_16","_2020_11_17","_2020_11_18","_2020_11_19","_2020_11_20","_2020_11_21","_2020_11_22","_2020_11_23","_2020_11_24","_2020_11_25","_2020_11_26","_2020_11_27","_2020_11_28","_2020_11_29","_2020_11_30","_2020_12_01","_2020_12_02","_2020_12_03","_2020_12_04","_2020_12_05","_2020_12_06","_2020_12_07","_2020_12_08","_2020_12_09","_2020_12_10","_2020_12_11","_2020_12_12","_2020_12_13","_2020_12_14","_2020_12_15","_2020_12_16","_2020_12_17","_2020_12_18","_2020_12_19","_2020_12_20","_2020_12_21","_2020_12_22","_2020_12_23","_2020_12_24","_2020_12_25","_2020_12_26","_2020_12_27","_2020_12_28","_2020_12_29","_2020_12_30","_2020_12_31","_2021_01_01","_2021_01_02","_2021_01_03","_2021_01_04","_2021_01_05","_2021_01_06","_2021_01_07","_2021_01_08","_2021_01_09","_2021_01_10","_2021_01_11","_2021_01_12","_2021_01_13","_2021_01_14","_2021_01_15","_2021_01_16","_2021_01_17","_2021_01_18","_2021_01_19","_2021_01_20","_2021_01_21","_2021_01_22","_2021_01_23","_2021_01_24","_2021_01_25","_2021_01_26","_2021_01_27","_2021_01_28","_2021_01_29","_2021_01_30","_2021_01_31","_2021_02_01","_2021_02_02","_2021_02_03","_2021_02_04","_2021_02_05","_2021_02_06","_2021_02_07","_2021_02_08","_2021_02_09","_2021_02_10","_2021_02_11","_2021_02_12","_2021_02_13","_2021_02_14","_2021_02_15","_2021_02_16","_2021_02_17","_2021_02_18","_2021_02_19","_2021_02_20","_2021_02_21","_2021_02_22","_2021_02_23","_2021_02_24","_2021_02_25","_2021_02_26","_2021_02_27","_2021_02_28","_2021_03_01","_2021_03_02","_2021_03_03","_2021_03_04","_2021_03_05","_2021_03_06","_2021_03_07","_2021_03_08","_2021_03_09","_2021_03_10","_2021_03_11","_2021_03_12","_2021_03_13","_2021_03_14","_2021_03_15","_2021_03_16","_2021_03_17","_2021_03_18","_2021_03_19","_2021_03_20","_2021_03_21","_2021_03_22","_2021_03_23","_2021_03_24","_2021_03_25","_2021_03_26","_2021_03_27","_2021_03_28","_2021_03_29","_2021_03_30","_2021_03_31","_2021_04_01","_2021_04_02","_2021_04_03","_2021_04_04","_2021_04_05","_2021_04_06","_2021_04_07","_2021_04_08","_2021_04_09","_2021_04_10","_2021_04_11","_2021_04_12","_2021_04_13","_2021_04_14","_2021_04_15","_2021_04_16","_2021_04_17","_2021_04_18","_2021_04_19","_2021_04_20","_2021_04_21","_2021_04_22","_2021_04_23","_2021_04_24","_2021_04_25","_2021_04_26","_2021_04_27","_2021_04_28","_2021_04_29","_2021_04_30","_2021_05_01","_2021_05_02","_2021_05_03","_2021_05_04","_2021_05_05","_2021_05_06","_2021_05_07","_2021_05_08","_2021_05_09","_2021_05_10","_2021_05_11","_2021_05_12","_2021_05_13","_2021_05_14","_2021_05_15","_2021_05_16","_2021_05_17","_2021_05_18","_2021_05_19","_2021_05_20","_2021_05_21","_2021_05_22","_2021_05_23","_2021_05_24","_2021_05_25","_2021_05_26","_2021_05_27","_2021_05_28","_2021_05_29","_2021_05_30","_2021_05_31","_2021_06_01","_2021_06_02","_2021_06_03","_2021_06_04","_2021_06_05","_2021_06_06","_2021_06_07","_2021_06_08","_2021_06_09","_2021_06_10","_2021_06_11","_2021_06_12","_2021_06_13","_2021_06_14","_2021_06_15","_2021_06_16","_2021_06_17","_2021_06_18","_2021_06_19","_2021_06_20","_2021_06_21","_2021_06_22","_2021_06_23","_2021_06_24","_2021_06_25","_2021_06_26","_2021_06_27","_2021_06_28","_2021_06_29","_2021_06_30","_2021_07_01","_2021_07_02","_2021_07_03","_2021_07_04","_2021_07_05","_2021_07_06","_2021_07_07"],"covid_deaths_nyt":["fips","_2020_01_21","_2020_01_22","_2020_01_23","_2020_01_24","_2020_01_25","_2020_01_26","_2020_01_27","_2020_01_28","_2020_01_29","_2020_01_30","_2020_01_31","_2020_02_01","_2020_02_02","_2020_02_03","_2020_02_04","_2020_02_05","_2020_02_06","_2020_02_07","_2020_02_08","_2020_02_09","_2020_02_10","_2020_02_11","_2020_02_12","_2020_02_13","_2020_02_14","_2020_02_15","_2020_02_16","_2020_02_17","_2020_02_18","_2020_02_19","_2020_02_20","_2020_02_21","_2020_02_22","_2020_02_23","_2020_02_24","_2020_02_25","_2020_02_26","_2020_02_27","_2020_02_28","_2020_02_29","_2020_03_01","_2020_03_02","_2020_03_03","_2020_03_04","_2020_03_05","_2020_03_06","_2020_03_07","_2020_03_08","_2020_03_09","_2020_03_10","_2020_03_11","_2020_03_12","_2020_03_13","_2020_03_14","_2020_03_15","_2020_03_16","_2020_03_17","_2020_03_18","_2020_03_19","_2020_03_20","_2020_03_21","_2020_03_22","_2020_03_23","_2020_03_24","_2020_03_25","_2020_03_26","_2020_03_27","_2020_03_28","_2020_03_29","_2020_03_30","_2020_03_31","_2020_04_01","_2020_04_02","_2020_04_03","_2020_04_04","_2020_04_05","_2020_04_06","_2020_04_07","_2020_04_08","_2020_04_09","_2020_04_10","_2020_04_11","_2020_04_12","_2020_04_13","_2020_04_14","_2020_04_15","_2020_04_16","_2020_04_17","_2020_04_18","_2020_04_19","_2020_04_20","_2020_04_21","_2020_04_22","_2020_04_23","_2020_04_24","_2020_04_25","_2020_04_26","_2020_04_27","_2020_04_28","_2020_04_29","_2020_04_30","_2020_05_01","_2020_05_02","_2020_05_03","_2020_05_04","_2020_05_05","_2020_05_06","_2020_05_07","_2020_05_08","_2020_05_09","_2020_05_10","_2020_05_11","_2020_05_12","_2020_05_13","_2020_05_14","_2020_05_15","_2020_05_16","_2020_05_17","_2020_05_18","_2020_05_19","_2020_05_20","_2020_05_21","_2020_05_22","_2020_05_23","_2020_05_24","_2020_05_25","_2020_05_26","_2020_05_27","_2020_05_28","_2020_05_29","_2020_05_30","_2020_05_31","_2020_06_01","_2020_06_02","_2020_06_03","_2020_06_04","_2020_06_05","_2020_06_06","_2020_06_07","_2020_06_08","_2020_06_09","_2020_06_10","_2020_06_11","_2020_06_12","_2020_06_13","_2020_06_14","_2020_06_15","_2020_06_16","_2020_06_17","_2020_06_18","_2020_06_19","_2020_06_20","_2020_06_21","_2020_06_22","_2020_06_23","_2020_06_24","_2020_06_25","_2020_06_26","_2020_06_27","_2020_06_28","_2020_06_29","_2020_06_30","_2020_07_01","_2020_07_02","_2020_07_03","_2020_07_04","_2020_07_05","_2020_07_06","_2020_07_07","_2020_07_08","_2020_07_09","_2020_07_10","_2020_07_11","_2020_07_12","_2020_07_13","_2020_07_14","_2020_07_15","_2020_07_16","_2020_07_17","_2020_07_18","_2020_07_19","_2020_07_20","_2020_07_21","_2020_07_22","_2020_07_23","_2020_07_24","_2020_07_25","_2020_07_26","_2020_07_27","_2020_07_28","_2020_07_29","_2020_07_30","_2020_07_31","_2020_08_01","_2020_08_02","_2020_08_03","_2020_08_04","_2020_08_05","_2020_08_06","_2020_08_07","_2020_08_08","_2020_08_09","_2020_08_10","_2020_08_11","_2020_08_12","_2020_08_13","_2020_08_14","_2020_08_15","_2020_08_16","_2020_08_17","_2020_08_18","_2020_08_19","_2020_08_20","_2020_08_21","_2020_08_22","_2020_08_23","_2020_08_24","_2020_08_25","_2020_08_26","_2020_08_27","_2020_08_28","_2020_08_29","_2020_08_30","_2020_08_31","_2020_09_01","_2020_09_02","_2020_09_03","_2020_09_04","_2020_09_05","_2020_09_06","_2020_09_07","_2020_09_08","_2020_09_09","_2020_09_10","_2020_09_11","_2020_09_12","_2020_09_13","_2020_09_14","_2020_09_15","_2020_09_16","_2020_09_17","_2020_09_18","_2020_09_19","_2020_09_20","_2020_09_21","_2020_09_22","_2020_09_23","_2020_09_24","_2020_09_25","_2020_09_26","_2020_09_27","_2020_09_28","_2020_09_29","_2020_09_30","_2020_10_01","_2020_10_02","_2020_10_03","_2020_10_04","_2020_10_05","_2020_10_06","_2020_10_07","_2020_10_08","_2020_10_09","_2020_10_10","_2020_10_11","_2020_10_12","_2020_10_13","_2020_10_14","_2020_10_15","_2020_10_16","_2020_10_17","_2020_10_18","_2020_10_19","_2020_10_20","_2020_10_21","_2020_10_22","_2020_10_23","_2020_10_24","_2020_10_25","_2020_10_26","_2020_10_27","_2020_10_28","_2020_10_29","_2020_10_30","_2020_10_31","_2020_11_01","_2020_11_02","_2020_11_03","_2020_11_04","_2020_11_05","_2020_11_06","_2020_11_07","_2020_11_08","_2020_11_09","_2020_11_10","_2020_11_11","_2020_11_12","_2020_11_13","_2020_11_14","_2020_11_15","_2020_11_16","_2020_11_17","_2020_11_18","_2020_11_19","_2020_11_20","_2020_11_21","_2020_11_22","_2020_11_23","_2020_11_24","_2020_11_25","_2020_11_26","_2020_11_27","_2020_11_28","_2020_11_29","_2020_11_30","_2020_12_01","_2020_12_02","_2020_12_03","_2020_12_04","_2020_12_05","_2020_12_06","_2020_12_07","_2020_12_08","_2020_12_09","_2020_12_10","_2020_12_11","_2020_12_12","_2020_12_13","_2020_12_14","_2020_12_15","_2020_12_16","_2020_12_17","_2020_12_18","_2020_12_19","_2020_12_20","_2020_12_21","_2020_12_22","_2020_12_23","_2020_12_24","_2020_12_25","_2020_12_26","_2020_12_27","_2020_12_28","_2020_12_29","_2020_12_30","_2020_12_31","_2021_01_01","_2021_01_02","_2021_01_03","_2021_01_04","_2021_01_05","_2021_01_06","_2021_01_07","_2021_01_08","_2021_01_09","_2021_01_10","_2021_01_11","_2021_01_12","_2021_01_13","_2021_01_14","_2021_01_15","_2021_01_16","_2021_01_17","_2021_01_18","_2021_01_19","_2021_01_20","_2021_01_21","_2021_01_22","_2021_01_23","_2021_01_24","_2021_01_25","_2021_01_26","_2021_01_27","_2021_01_28","_2021_01_29","_2021_01_30","_2021_01_31","_2021_02_01","_2021_02_02","_2021_02_03","_2021_02_04","_2021_02_05","_2021_02_06","_2021_02_07","_2021_02_08","_2021_02_09","_2021_02_10","_2021_02_11","_2021_02_12","_2021_02_13","_2021_02_14","_2021_02_15","_2021_02_16","_2021_02_17","_2021_02_18","_2021_02_19","_2021_02_20","_2021_02_21","_2021_02_22","_2021_02_23","_2021_02_24","_2021_02_25","_2021_02_26","_2021_02_27","_2021_02_28","_2021_03_01","_2021_03_02","_2021_03_03","_2021_03_04","_2021_03_05","_2021_03_06","_2021_03_07","_2021_03_08","_2021_03_09","_2021_03_10","_2021_03_11","_2021_03_12","_2021_03_13","_2021_03_14","_2021_03_15","_2021_03_16","_2021_03_17","_2021_03_18","_2021_03_19","_2021_03_20","_2021_03_21","_2021_03_22","_2021_03_23","_2021_03_24","_2021_03_25","_2021_03_26","_2021_03_27","_2021_03_28","_2021_03_29","_2021_03_30","_2021_03_31","_2021_04_01","_2021_04_02","_2021_04_03","_2021_04_04","_2021_04_05","_2021_04_06","_2021_04_07","_2021_04_08","_2021_04_09","_2021_04_10","_2021_04_11","_2021_04_12","_2021_04_13","_2021_04_14","_2021_04_15","_2021_04_16","_2021_04_17","_2021_04_18","_2021_04_19","_2021_04_20","_2021_04_21","_2021_04_22","_2021_04_23","_2021_04_24","_2021_04_25","_2021_04_26","_2021_04_27","_2021_04_28","_2021_04_29","_2021_04_30","_2021_05_01","_2021_05_02","_2021_05_03","_2021_05_04","_2021_05_05","_2021_05_06","_2021_05_07","_2021_05_08","_2021_05_09","_2021_05_10","_2021_05_11","_2021_05_12","_2021_05_13","_2021_05_14","_2021_05_15","_2021_05_16","_2021_05_17","_2021_05_18","_2021_05_19","_2021_05_20","_2021_05_21","_2021_05_22","_2021_05_23","_2021_05_24","_2021_05_25","_2021_05_26","_2021_05_27","_2021_05_28","_2021_05_29","_2021_05_30","_2021_05_31","_2021_06_01","_2021_06_02","_2021_06_03","_2021_06_04","_2021_06_05","_2021_06_06","_2021_06_07","_2021_06_08","_2021_06_09","_2021_06_10","_2021_06_11","_2021_06_12","_2021_06_13","_2021_06_14","_2021_06_15","_2021_06_16","_2021_06_17","_2021_06_18","_2021_06_19","_2021_06_20","_2021_06_21","_2021_06_22","_2021_06_23","_2021_06_24","_2021_06_25","_2021_06_26","_2021_06_27","_2021_06_28","_2021_06_29","_2021_06_30","_2021_07_01","_2021_07_02","_2021_07_03","_2021_07_04","_2021_07_05","_2021_07_06","_2021_07_07"],"covid_ccpt_cdc":["fips_code","_2020_01_22","_2020_01_23","_2020_01_24","_2020_01_25","_2020_01_26","_2020_01_27","_2020_01_28","_2020_01_29","_2020_01_30","_2020_01_31","_2020_02_01","_2020_02_02","_2020_02_03","_2020_02_04","_2020_02_05","_2020_02_06","_2020_02_07","_2020_02_08","_2020_02_09","_2020_02_10","_2020_02_11","_2020_02_12","_2020_02_13","_2020_02_14","_2020_02_15","_2020_02_16","_2020_02_17","_2020_02_18","_2020_02_19","_2020_02_20","_2020_02_21","_2020_02_22","_2020_02_23","_2020_02_24","_2020_02_25","_2020_02_26","_2020_02_27","_2020_02_28","_2020_02_29","_2020_03_01","_2020_03_02","_2020_03_03","_2020_03_04","_2020_03_05","_2020_03_06","_2020_03_07","_2020_03_08","_2020_03_09","_2020_03_10","_2020_03_11","_2020_03_12","_2020_03_13","_2020_03_14","_2020_03_15","_2020_03_16","_2020_03_17","_2020_03_18","_2020_03_19","_2020_03_20","_2020_03_21","_2020_03_22","_2020_03_23","_2020_03_24","_2020_03_25","_2020_03_26","_2020_03_27","_2020_03_28","_2020_03_29","_2020_03_30","_2020_03_31","_2020_04_01","_2020_04_02","_2020_04_03","_2020_04_04","_2020_04_05","_2020_04_06","_2020_04_07","_2020_04_08","_2020_04_09","_2020_04_10","_2020_04_11","_2020_04_12","_2020_04_13","_2020_04_14","_2020_04_15","_2020_04_16","_2020_04_17","_2020_04_18","_2020_04_19","_2020_04_20","_2020_04_21","_2020_04_22","_2020_04_23","_2020_04_24","_2020_04_25","_2020_04_26","_2020_04_27","_2020_04_28","_2020_04_29","_2020_04_30","_2020_05_01","_2020_05_02","_2020_05_03","_2020_05_04","_2020_05_05","_2020_05_06","_2020_05_07","_2020_05_08","_2020_05_09","_2020_05_10","_2020_05_11","_2020_05_12","_2020_05_13","_2020_05_14","_2020_05_15","_2020_05_16","_2020_05_17","_2020_05_18","_2020_05_19","_2020_05_20","_2020_05_21","_2020_05_22","_2020_05_23","_2020_05_24","_2020_05_25","_2020_05_26","_2020_05_27","_2020_05_28","_2020_05_29","_2020_05_30","_2020_05_31","_2020_06_01","_2020_06_02","_2020_06_03","_2020_06_04","_2020_06_05","_2020_06_06","_2020_06_07","_2020_06_08","_2020_06_09","_2020_06_10","_2020_06_11","_2020_06_12","_2020_06_13","_2020_06_14","_2020_06_15","_2020_06_16","_2020_06_17","_2020_06_18","_2020_06_19","_2020_06_20","_2020_06_21","_2020_06_22","_2020_06_23","_2020_06_24","_2020_06_25","_2020_06_26","_2020_06_27","_2020_06_28","_2020_06_29","_2020_06_30","_2020_07_01","_2020_07_02","_2020_07_03","_2020_07_04","_2020_07_05","_2020_07_06","_2020_07_07","_2020_07_08","_2020_07_09","_2020_07_10","_2020_07_11","_2020_07_12","_2020_07_13","_2020_07_14","_2020_07_15","_2020_07_16","_2020_07_17","_2020_07_18","_2020_07_19","_2020_07_20","_2020_07_21","_2020_07_22","_2020_07_23","_2020_07_24","_2020_07_25","_2020_07_26","_2020_07_27","_2020_07_28","_2020_07_29","_2020_07_30","_2020_07_31","_2020_08_01","_2020_08_02","_2020_08_03","_2020_08_04","_2020_08_05","_2020_08_06","_2020_08_07","_2020_08_08","_2020_08_09","_2020_08_10","_2020_08_11","_2020_08_12","_2020_08_13","_2020_08_14","_2020_08_15","_2020_08_16","_2020_08_17","_2020_08_18","_2020_08_19","_2020_08_20","_2020_08_21","_2020_08_22","_2020_08_23","_2020_08_24","_2020_08_25","_2020_08_26","_2020_08_27","_2020_08_28","_2020_08_29","_2020_08_30","_2020_08_31","_2020_09_01","_2020_09_02","_2020_09_03","_2020_09_04","_2020_09_05","_2020_09_06","_2020_09_07","_2020_09_08","_2020_09_09","_2020_09_10","_2020_09_11","_2020_09_12","_2020_09_13","_2020_09_14","_2020_09_15","_2020_09_16","_2020_09_17","_2020_09_18","_2020_09_19","_2020_09_20","_2020_09_21","_2020_09_22","_2020_09_23","_2020_09_24","_2020_09_25","_2020_09_26","_2020_09_27","_2020_09_28","_2020_09_29","_2020_09_30","_2020_10_01","_2020_10_02","_2020_10_03","_2020_10_04","_2020_10_05","_2020_10_06","_2020_10_07","_2020_10_08","_2020_10_09","_2020_10_10","_2020_10_11","_2020_10_12","_2020_10_13","_2020_10_14","_2020_10_15","_2020_10_16","_2020_10_17","_2020_10_18","_2020_10_19","_2020_10_20","_2020_10_21","_2020_10_22","_2020_10_23","_2020_10_24","_2020_10_25","_2020_10_26","_2020_10_27","_2020_10_28","_2020_10_29","_2020_10_30","_2020_10_31","_2020_11_01","_2020_11_02","_2020_11_03","_2020_11_04","_2020_11_05","_2020_11_06","_2020_11_07","_2020_11_08","_2020_11_09","_2020_11_10","_2020_11_11","_2020_11_12","_2020_11_13","_2020_11_14","_2020_11_15","_2020_11_16","_2020_11_17","_2020_11_18","_2020_11_19","_2020_11_20","_2020_11_21","_2020_11_22","_2020_11_23","_2020_11_24","_2020_11_25","_2020_11_26","_2020_11_27","_2020_11_28","_2020_11_29","_2020_11_30","_2020_12_01","_2020_12_02","_2020_12_03","_2020_12_04","_2020_12_05","_2020_12_06","_2020_12_07","_2020_12_08","_2020_12_09","_2020_12_10","_2020_12_11","_2020_12_12","_2020_12_13","_2020_12_14","_2020_12_15","_2020_12_16","_2020_12_17","_2020_12_18","_2020_12_19","_2020_12_20","_2020_12_21","_2020_12_22","_2020_12_23","_2020_12_24","_2020_12_25","_2020_12_26","_2020_12_27","_2020_12_28","_2020_12_29","_2020_12_30","_2020_12_31","_2021_01_01","_2021_01_02","_2021_01_03","_2021_01_04","_2021_01_05","_2021_01_06","_2021_01_07","_2021_01_08","_2021_01_09","_2021_01_10","_2021_01_11","_2021_01_12","_2021_01_13","_2021_01_14","_2021_01_15","_2021_01_16","_2021_01_17","_2021_01_18","_2021_01_19","_2021_01_20","_2021_01_21","_2021_01_22","_2021_01_23","_2021_01_24","_2021_01_25","_2021_01_26","_2021_01_27","_2021_01_28","_2021_01_29","_2021_01_30","_2021_01_31","_2021_02_01","_2021_02_02","_2021_02_03","_2021_02_04","_2021_02_05","_2021_02_06","_2021_02_07","_2021_02_08","_2021_02_09","_2021_02_10","_2021_02_11","_2021_02_12","_2021_02_13","_2021_02_14","_2021_02_15","_2021_02_16","_2021_02_17","_2021_02_18","_2021_02_19","_2021_02_20","_2021_02_21","_2021_02_22","_2021_02_23","_2021_02_24","_2021_02_25","_2021_02_26","_2021_02_27","_2021_02_28","_2021_03_01","_2021_03_02","_2021_03_03","_2021_03_04","_2021_03_05","_2021_03_06","_2021_03_07","_2021_03_08","_2021_03_09","_2021_03_10","_2021_03_11","_2021_03_12","_2021_03_13","_2021_03_14","_2021_03_15","_2021_03_16","_2021_03_17","_2021_03_18","_2021_03_19","_2021_03_20","_2021_03_21","_2021_03_22","_2021_03_23","_2021_03_24","_2021_03_25","_2021_03_26","_2021_03_27","_2021_03_28","_2021_03_29","_2021_03_30","_2021_03_31","_2021_04_01","_2021_04_02","_2021_04_03","_2021_04_04","_2021_04_05","_2021_04_06","_2021_04_07","_2021_04_08","_2021_04_09","_2021_04_10","_2021_04_11","_2021_04_12","_2021_04_13","_2021_04_14","_2021_04_15","_2021_04_16","_2021_04_17","_2021_04_18","_2021_04_19","_2021_04_20","_2021_04_21","_2021_04_22","_2021_04_23","_2021_04_24","_2021_04_25","_2021_04_26","_2021_04_27","_2021_04_28","_2021_04_29","_2021_04_30","_2021_05_01","_2021_05_02","_2021_05_03","_2021_05_04","_2021_05_05","_2021_05_06","_2021_05_07","_2021_05_08","_2021_05_09","_2021_05_10","_2021_05_11","_2021_05_12","_2021_05_13","_2021_05_14","_2021_05_15","_2021_05_16","_2021_05_17","_2021_05_18","_2021_05_19","_2021_05_20","_2021_05_21","_2021_05_22","_2021_05_23","_2021_05_24","_2021_05_25","_2021_05_26","_2021_05_27","_2021_05_28","_2021_05_29","_2021_05_30","_2021_05_31","_2021_06_01","_2021_06_02","_2021_06_03","_2021_06_04","_2021_06_05","_2021_06_06","_2021_06_07","_2021_06_08","_2021_06_09","_2021_06_10","_2021_06_11","_2021_06_12","_2021_06_13","_2021_06_14","_2021_06_15","_2021_06_16","_2021_06_17","_2021_06_18","_2021_06_19","_2021_06_20","_2021_06_21","_2021_06_22","_2021_06_23","_2021_06_24","_2021_06_25","_2021_06_26","_2021_06_27","_2021_06_28","_2021_06_29","_2021_06_30","_2021_07_01","_2021_07_02","_2021_07_03","_2021_07_04","_2021_07_05"],"vaccine_admin2_cdc":["fips","_2021_01_12","_2021_01_14","_2021_01_15","_2021_01_19","_2021_01_20","_2021_01_21","_2021_01_22","_2021_01_23","_2021_01_24","_2021_01_25","_2021_01_26","_2021_01_27","_2021_01_28","_2021_01_29","_2021_01_30","_2021_01_31","_2021_02_01","_2021_02_02","_2021_02_03","_2021_02_04","_2021_02_05","_2021_02_06","_2021_02_07","_2021_02_08","_2021_02_09","_2021_02_10","_2021_02_11","_2021_02_12","_2021_02_13","_2021_02_14","_2021_02_16","_2021_02_17","_2021_02_18","_2021_02_21","_2021_02_22","_2021_02_23","_2021_02_24","_2021_02_25","_2021_02_26","_2021_02_28","_2021_03_01","_2021_03_02","_2021_03_03","_2021_03_04","_2021_03_06","_2021_03_07"],"covid_deaths_cdc":["fips_code","_2020_01_22","_2020_01_23","_2020_01_24","_2020_01_25","_2020_01_26","_2020_01_27","_2020_01_28","_2020_01_29","_2020_01_30","_2020_01_31","_2020_02_01","_2020_02_02","_2020_02_03","_2020_02_04","_2020_02_05","_2020_02_06","_2020_02_07","_2020_02_08","_2020_02_09","_2020_02_10","_2020_02_11","_2020_02_12","_2020_02_13","_2020_02_14","_2020_02_15","_2020_02_16","_2020_02_17","_2020_02_18","_2020_02_19","_2020_02_20","_2020_02_21","_2020_02_22","_2020_02_23","_2020_02_24","_2020_02_25","_2020_02_26","_2020_02_27","_2020_02_28","_2020_02_29","_2020_03_01","_2020_03_02","_2020_03_03","_2020_03_04","_2020_03_05","_2020_03_06","_2020_03_07","_2020_03_08","_2020_03_09","_2020_03_10","_2020_03_11","_2020_03_12","_2020_03_13","_2020_03_14","_2020_03_15","_2020_03_16","_2020_03_17","_2020_03_18","_2020_03_19","_2020_03_20","_2020_03_21","_2020_03_22","_2020_03_23","_2020_03_24","_2020_03_25","_2020_03_26","_2020_03_27","_2020_03_28","_2020_03_29","_2020_03_30","_2020_03_31","_2020_04_01","_2020_04_02","_2020_04_03","_2020_04_04","_2020_04_05","_2020_04_06","_2020_04_07","_2020_04_08","_2020_04_09","_2020_04_10","_2020_04_11","_2020_04_12","_2020_04_13","_2020_04_14","_2020_04_15","_2020_04_16","_2020_04_17","_2020_04_18","_2020_04_19","_2020_04_20","_2020_04_21","_2020_04_22","_2020_04_23","_2020_04_24","_2020_04_25","_2020_04_26","_2020_04_27","_2020_04_28","_2020_04_29","_2020_04_30","_2020_05_01","_2020_05_02","_2020_05_03","_2020_05_04","_2020_05_05","_2020_05_06","_2020_05_07","_2020_05_08","_2020_05_09","_2020_05_10","_2020_05_11","_2020_05_12","_2020_05_13","_2020_05_14","_2020_05_15","_2020_05_16","_2020_05_17","_2020_05_18","_2020_05_19","_2020_05_20","_2020_05_21","_2020_05_22","_2020_05_23","_2020_05_24","_2020_05_25","_2020_05_26","_2020_05_27","_2020_05_28","_2020_05_29","_2020_05_30","_2020_05_31","_2020_06_01","_2020_06_02","_2020_06_03","_2020_06_04","_2020_06_05","_2020_06_06","_2020_06_07","_2020_06_08","_2020_06_09","_2020_06_10","_2020_06_11","_2020_06_12","_2020_06_13","_2020_06_14","_2020_06_15","_2020_06_16","_2020_06_17","_2020_06_18","_2020_06_19","_2020_06_20","_2020_06_21","_2020_06_22","_2020_06_23","_2020_06_24","_2020_06_25","_2020_06_26","_2020_06_27","_2020_06_28","_2020_06_29","_2020_06_30","_2020_07_01","_2020_07_02","_2020_07_03","_2020_07_04","_2020_07_05","_2020_07_06","_2020_07_07","_2020_07_08","_2020_07_09","_2020_07_10","_2020_07_11","_2020_07_12","_2020_07_13","_2020_07_14","_2020_07_15","_2020_07_16","_2020_07_17","_2020_07_18","_2020_07_19","_2020_07_20","_2020_07_21","_2020_07_22","_2020_07_23","_2020_07_24","_2020_07_25","_2020_07_26","_2020_07_27","_2020_07_28","_2020_07_29","_2020_07_30","_2020_07_31","_2020_08_01","_2020_08_02","_2020_08_03","_2020_08_04","_2020_08_05","_2020_08_06","_2020_08_07","_2020_08_08","_2020_08_09","_2020_08_10","_2020_08_11","_2020_08_12","_2020_08_13","_2020_08_14","_2020_08_15","_2020_08_16","_2020_08_17","_2020_08_18","_2020_08_19","_2020_08_20","_2020_08_21","_2020_08_22","_2020_08_23","_2020_08_24","_2020_08_25","_2020_08_26","_2020_08_27","_2020_08_28","_2020_08_29","_2020_08_30","_2020_08_31","_2020_09_01","_2020_09_02","_2020_09_03","_2020_09_04","_2020_09_05","_2020_09_06","_2020_09_07","_2020_09_08","_2020_09_09","_2020_09_10","_2020_09_11","_2020_09_12","_2020_09_13","_2020_09_14","_2020_09_15","_2020_09_16","_2020_09_17","_2020_09_18","_2020_09_19","_2020_09_20","_2020_09_21","_2020_09_22","_2020_09_23","_2020_09_24","_2020_09_25","_2020_09_26","_2020_09_27","_2020_09_28","_2020_09_29","_2020_09_30","_2020_10_01","_2020_10_02","_2020_10_03","_2020_10_04","_2020_10_05","_2020_10_06","_2020_10_07","_2020_10_08","_2020_10_09","_2020_10_10","_2020_10_11","_2020_10_12","_2020_10_13","_2020_10_14","_2020_10_15","_2020_10_16","_2020_10_17","_2020_10_18","_2020_10_19","_2020_10_20","_2020_10_21","_2020_10_22","_2020_10_23","_2020_10_24","_2020_10_25","_2020_10_26","_2020_10_27","_2020_10_28","_2020_10_29","_2020_10_30","_2020_10_31","_2020_11_01","_2020_11_02","_2020_11_03","_2020_11_04","_2020_11_05","_2020_11_06","_2020_11_07","_2020_11_08","_2020_11_09","_2020_11_10","_2020_11_11","_2020_11_12","_2020_11_13","_2020_11_14","_2020_11_15","_2020_11_16","_2020_11_17","_2020_11_18","_2020_11_19","_2020_11_20","_2020_11_21","_2020_11_22","_2020_11_23","_2020_11_24","_2020_11_25","_2020_11_26","_2020_11_27","_2020_11_28","_2020_11_29","_2020_11_30","_2020_12_01","_2020_12_02","_2020_12_03","_2020_12_04","_2020_12_05","_2020_12_06","_2020_12_07","_2020_12_08","_2020_12_09","_2020_12_10","_2020_12_11","_2020_12_12","_2020_12_13","_2020_12_14","_2020_12_15","_2020_12_16","_2020_12_17","_2020_12_18","_2020_12_19","_2020_12_20","_2020_12_21","_2020_12_22","_2020_12_23","_2020_12_24","_2020_12_25","_2020_12_26","_2020_12_27","_2020_12_28","_2020_12_29","_2020_12_30","_2020_12_31","_2021_01_01","_2021_01_02","_2021_01_03","_2021_01_04","_2021_01_05","_2021_01_06","_2021_01_07","_2021_01_08","_2021_01_09","_2021_01_10","_2021_01_11","_2021_01_12","_2021_01_13","_2021_01_14","_2021_01_15","_2021_01_16","_2021_01_17","_2021_01_18","_2021_01_19","_2021_01_20","_2021_01_21","_2021_01_22","_2021_01_23","_2021_01_24","_2021_01_25","_2021_01_26","_2021_01_27","_2021_01_28","_2021_01_29","_2021_01_30","_2021_01_31","_2021_02_01","_2021_02_02","_2021_02_03","_2021_02_04","_2021_02_05","_2021_02_06","_2021_02_07","_2021_02_08","_2021_02_09","_2021_02_10","_2021_02_11","_2021_02_12","_2021_02_13","_2021_02_14","_2021_02_15","_2021_02_16","_2021_02_17","_2021_02_18","_2021_02_19","_2021_02_20","_2021_02_21","_2021_02_22","_2021_02_23","_2021_02_24","_2021_02_25","_2021_02_26","_2021_02_27","_2021_02_28","_2021_03_01","_2021_03_02","_2021_03_03","_2021_03_04","_2021_03_05","_2021_03_06","_2021_03_07","_2021_03_08","_2021_03_09","_2021_03_10","_2021_03_11","_2021_03_12","_2021_03_13","_2021_03_14","_2021_03_15","_2021_03_16","_2021_03_17","_2021_03_18","_2021_03_19","_2021_03_20","_2021_03_21","_2021_03_22","_2021_03_23","_2021_03_24","_2021_03_25","_2021_03_26","_2021_03_27","_2021_03_28","_2021_03_29","_2021_03_30","_2021_03_31","_2021_04_01","_2021_04_02","_2021_04_03","_2021_04_04","_2021_04_05","_2021_04_06","_2021_04_07","_2021_04_08","_2021_04_09","_2021_04_10","_2021_04_11","_2021_04_12","_2021_04_13","_2021_04_14","_2021_04_15","_2021_04_16","_2021_04_17","_2021_04_18","_2021_04_19","_2021_04_20","_2021_04_21","_2021_04_22","_2021_04_23","_2021_04_24","_2021_04_25","_2021_04_26","_2021_04_27","_2021_04_28","_2021_04_29","_2021_04_30","_2021_05_01","_2021_05_02","_2021_05_03","_2021_05_04","_2021_05_05","_2021_05_06","_2021_05_07","_2021_05_08","_2021_05_09","_2021_05_10","_2021_05_11","_2021_05_12","_2021_05_13","_2021_05_14","_2021_05_15","_2021_05_16","_2021_05_17","_2021_05_18","_2021_05_19","_2021_05_20","_2021_05_21","_2021_05_22","_2021_05_23","_2021_05_24","_2021_05_25","_2021_05_26","_2021_05_27","_2021_05_28","_2021_05_29","_2021_05_30","_2021_05_31","_2021_06_01","_2021_06_02","_2021_06_03","_2021_06_04","_2021_06_05","_2021_06_06","_2021_06_07","_2021_06_08","_2021_06_09","_2021_06_10","_2021_06_11","_2021_06_12","_2021_06_13","_2021_06_14","_2021_06_15","_2021_06_16","_2021_06_17","_2021_06_18","_2021_06_19","_2021_06_20","_2021_06_21","_2021_06_22","_2021_06_23","_2021_06_24","_2021_06_25","_2021_06_26","_2021_06_27","_2021_06_28","_2021_06_29","_2021_06_30","_2021_07_01","_2021_07_02","_2021_07_03","_2021_07_04","_2021_07_05"],"vaccine_dist_cdc":["fips","_2021_01_12","_2021_01_14","_2021_01_15","_2021_01_19","_2021_01_20","_2021_01_21","_2021_01_22","_2021_01_23","_2021_01_24","_2021_01_25","_2021_01_26","_2021_01_27","_2021_01_28","_2021_01_29","_2021_01_30","_2021_01_31","_2021_02_01","_2021_02_02","_2021_02_03","_2021_02_04","_2021_02_05","_2021_02_06","_2021_02_07","_2021_02_08","_2021_02_09","_2021_02_10","_2021_02_11","_2021_02_12","_2021_02_13","_2021_02_14","_2021_02_16","_2021_02_17","_2021_02_18","_2021_02_21","_2021_02_22","_2021_02_23","_2021_02_24","_2021_02_25","_2021_02_26","_2021_02_28","_2021_03_01","_2021_03_02","_2021_03_03","_2021_03_04","_2021_03_06","_2021_03_07"],"vaccination_to_be_distributed_cdc":["fips","_2021_02_27","_2021_04_19","_2021_04_11","_2021_01_31","_2021_02_13","_2021_06_16","_2021_02_23","_2021_05_07","_2021_06_11","_2021_05_01","_2021_04_16","_2021_04_25","_2021_05_09","_2021_01_28","_2021_04_07","_2021_04_13","_2021_01_21","_2021_01_20","_2021_03_30","_2021_04_03","_2021_03_28","_2021_06_23","_2021_06_10","_2021_02_10","_2021_05_04","_2021_05_03","_2021_06_29","_2021_02_11","_2021_02_06","_2021_04_01","_2021_06_27","_2021_05_17","_2021_04_27","_2021_04_28","_2021_02_07","_2021_06_04","_2021_01_26","_2021_03_04","_2021_05_24","_2021_02_02","_2021_06_07","_2021_06_18","_2021_03_26","_2021_06_15","_2021_05_02","_2021_06_06","_2021_03_23","_2021_07_06","_2021_04_22","_2021_03_27","_2021_01_24","_2021_03_06","_2021_03_21","_2021_05_25","_2021_02_16","_2021_06_13","_2021_06_25","_2021_01_27","_2021_01_25","_2021_05_19","_2021_06_20","_2021_03_17","_2021_04_09","_2021_05_29","_2021_05_22","_2021_05_11","_2021_01_29","_2021_01_15","_2021_01_23","_2021_03_08","_2021_03_07","_2021_05_28","_2021_03_12","_2021_04_26","_2021_05_21","_2021_04_14","_2021_03_09","_2021_05_10","_2021_07_03","_2021_03_11","_2021_05_23","_2021_03_22","_2021_07_02","_2021_04_20","_2021_06_24","_2021_03_25","_2021_06_21","_2021_03_15","_2021_03_03","_2021_04_12","_2021_05_20","_2021_04_06","_2021_03_16","_2021_02_25","_2021_07_04","_2021_02_08","_2021_01_14","_2021_02_01","_2021_05_26","_2021_02_03","_2021_04_24","_2021_02_24","_2021_05_08","_2021_02_17","_2021_04_08","_2021_04_05","_2021_06_12","_2021_05_13","_2021_04_29","_2021_06_01","_2021_07_07","_2021_01_19","_2021_05_27","_2021_04_02","_2021_04_10","_2021_03_02","_2021_04_04","_2021_04_30","_2021_06_08","_2021_06_14","_2021_06_02","_2021_05_16","_2021_03_01","_2021_06_28","_2021_03_31","_2021_01_30","_2021_03_18","_2021_05_12","_2021_02_12","_2021_04_23","_2021_04_17","_2021_06_09","_2021_02_22","_2021_02_19","_2021_04_21","_2021_03_19","_2021_05_05","_2021_04_18","_2021_04_15","_2021_02_26","_2021_03_29","_2021_05_30","_2021_02_21","_2021_02_14","_2021_03_10","_2021_02_28","_2021_06_17","_2021_05_18","_2021_06_05","_2021_06_26","_2021_02_18","_2021_06_22","_2021_02_05","_2021_02_09","_2021_03_24","_2021_02_04","_2021_07_01","_2021_01_22","_2021_06_19","_2021_03_13","_2021_05_06","_2021_03_14","_2021_05_15","_2021_02_20","_2021_03_20","_2021_06_30","_2021_06_03"],"covid_deaths_usafacts":["countyFIPS","County_Name","State","StateFIPS","_2020_01_22","_2020_01_23","_2020_01_24","_2020_01_25","_2020_01_26","_2020_01_27","_2020_01_28","_2020_01_29","_2020_01_30","_2020_01_31","_2020_02_01","_2020_02_02","_2020_02_03","_2020_02_04","_2020_02_05","_2020_02_06","_2020_02_07","_2020_02_08","_2020_02_09","_2020_02_10","_2020_02_11","_2020_02_12","_2020_02_13","_2020_02_14","_2020_02_15","_2020_02_16","_2020_02_17","_2020_02_18","_2020_02_19","_2020_02_20","_2020_02_21","_2020_02_22","_2020_02_23","_2020_02_24","_2020_02_25","_2020_02_26","_2020_02_27","_2020_02_28","_2020_02_29","_2020_03_01","_2020_03_02","_2020_03_03","_2020_03_04","_2020_03_05","_2020_03_06","_2020_03_07","_2020_03_08","_2020_03_09","_2020_03_10","_2020_03_11","_2020_03_12","_2020_03_13","_2020_03_14","_2020_03_15","_2020_03_16","_2020_03_17","_2020_03_18","_2020_03_19","_2020_03_20","_2020_03_21","_2020_03_22","_2020_03_23","_2020_03_24","_2020_03_25","_2020_03_26","_2020_03_27","_2020_03_28","_2020_03_29","_2020_03_30","_2020_03_31","_2020_04_01","_2020_04_02","_2020_04_03","_2020_04_04","_2020_04_05","_2020_04_06","_2020_04_07","_2020_04_08","_2020_04_09","_2020_04_10","_2020_04_11","_2020_04_12","_2020_04_13","_2020_04_14","_2020_04_15","_2020_04_16","_2020_04_17","_2020_04_18","_2020_04_19","_2020_04_20","_2020_04_21","_2020_04_22","_2020_04_23","_2020_04_24","_2020_04_25","_2020_04_26","_2020_04_27","_2020_04_28","_2020_04_29","_2020_04_30","_2020_05_01","_2020_05_02","_2020_05_03","_2020_05_04","_2020_05_05","_2020_05_06","_2020_05_07","_2020_05_08","_2020_05_09","_2020_05_10","_2020_05_11","_2020_05_12","_2020_05_13","_2020_05_14","_2020_05_15","_2020_05_16","_2020_05_17","_2020_05_18","_2020_05_19","_2020_05_20","_2020_05_21","_2020_05_22","_2020_05_23","_2020_05_24","_2020_05_25","_2020_05_26","_2020_05_27","_2020_05_28","_2020_05_29","_2020_05_30","_2020_05_31","_2020_06_01","_2020_06_02","_2020_06_03","_2020_06_04","_2020_06_05","_2020_06_06","_2020_06_07","_2020_06_08","_2020_06_09","_2020_06_10","_2020_06_11","_2020_06_12","_2020_06_13","_2020_06_14","_2020_06_15","_2020_06_16","_2020_06_17","_2020_06_18","_2020_06_19","_2020_06_20","_2020_06_21","_2020_06_22","_2020_06_23","_2020_06_24","_2020_06_25","_2020_06_26","_2020_06_27","_2020_06_28","_2020_06_29","_2020_06_30","_2020_07_01","_2020_07_02","_2020_07_03","_2020_07_04","_2020_07_05","_2020_07_06","_2020_07_07","_2020_07_08","_2020_07_09","_2020_07_10","_2020_07_11","_2020_07_12","_2020_07_13","_2020_07_14","_2020_07_15","_2020_07_16","_2020_07_17","_2020_07_18","_2020_07_19","_2020_07_20","_2020_07_21","_2020_07_22","_2020_07_23","_2020_07_24","_2020_07_25","_2020_07_26","_2020_07_27","_2020_07_28","_2020_07_29","_2020_07_30","_2020_07_31","_2020_08_01","_2020_08_02","_2020_08_03","_2020_08_04","_2020_08_05","_2020_08_06","_2020_08_07","_2020_08_08","_2020_08_09","_2020_08_10","_2020_08_11","_2020_08_12","_2020_08_13","_2020_08_14","_2020_08_15","_2020_08_16","_2020_08_17","_2020_08_18","_2020_08_19","_2020_08_20","_2020_08_21","_2020_08_22","_2020_08_23","_2020_08_24","_2020_08_25","_2020_08_26","_2020_08_27","_2020_08_28","_2020_08_29","_2020_08_30","_2020_08_31","_2020_09_01","_2020_09_02","_2020_09_03","_2020_09_04","_2020_09_05","_2020_09_06","_2020_09_07","_2020_09_08","_2020_09_09","_2020_09_10","_2020_09_11","_2020_09_12","_2020_09_13","_2020_09_14","_2020_09_15","_2020_09_16","_2020_09_17","_2020_09_18","_2020_09_19","_2020_09_20","_2020_09_21","_2020_09_22","_2020_09_23","_2020_09_24","_2020_09_25","_2020_09_26","_2020_09_27","_2020_09_28","_2020_09_29","_2020_09_30","_2020_10_01","_2020_10_02","_2020_10_03","_2020_10_04","_2020_10_05","_2020_10_06","_2020_10_07","_2020_10_08","_2020_10_09","_2020_10_10","_2020_10_11","_2020_10_12","_2020_10_13","_2020_10_14","_2020_10_15","_2020_10_16","_2020_10_17","_2020_10_18","_2020_10_19","_2020_10_20","_2020_10_21","_2020_10_22","_2020_10_23","_2020_10_24","_2020_10_25","_2020_10_26","_2020_10_27","_2020_10_28","_2020_10_29","_2020_10_30","_2020_10_31","_2020_11_01","_2020_11_02","_2020_11_03","_2020_11_04","_2020_11_05","_2020_11_06","_2020_11_07","_2020_11_08","_2020_11_09","_2020_11_10","_2020_11_11","_2020_11_12","_2020_11_13","_2020_11_14","_2020_11_15","_2020_11_16","_2020_11_17","_2020_11_18","_2020_11_19","_2020_11_20","_2020_11_21","_2020_11_22","_2020_11_23","_2020_11_24","_2020_11_25","_2020_11_26","_2020_11_27","_2020_11_28","_2020_11_29","_2020_11_30","_2020_12_01","_2020_12_02","_2020_12_03","_2020_12_04","_2020_12_05","_2020_12_06","_2020_12_07","_2020_12_08","_2020_12_09","_2020_12_10","_2020_12_11","_2020_12_12","_2020_12_13","_2020_12_14","_2020_12_15","_2020_12_16","_2020_12_17","_2020_12_18","_2020_12_19","_2020_12_20","_2020_12_21","_2020_12_22","_2020_12_23","_2020_12_24","_2020_12_25","_2020_12_26","_2020_12_27","_2020_12_28","_2020_12_29","_2020_12_30","_2020_12_31","_2021_01_01","_2021_01_02","_2021_01_03","_2021_01_04","_2021_01_05","_2021_01_06","_2021_01_07","_2021_01_08","_2021_01_09","_2021_01_10","_2021_01_11","_2021_01_12","_2021_01_13","_2021_01_14","_2021_01_15","_2021_01_16","_2021_01_17","_2021_01_18","_2021_01_19","_2021_01_20","_2021_01_21","_2021_01_22","_2021_01_23","_2021_01_24","_2021_01_25","_2021_01_26","_2021_01_27","_2021_01_28","_2021_01_29","_2021_01_30","_2021_01_31","_2021_02_01","_2021_02_02","_2021_02_03","_2021_02_04","_2021_02_05","_2021_02_06","_2021_02_07","_2021_02_08","_2021_02_09","_2021_02_10","_2021_02_11","_2021_02_12","_2021_02_13","_2021_02_14","_2021_02_15","_2021_02_16","_2021_02_17","_2021_02_18","_2021_02_19","_2021_02_20","_2021_02_21","_2021_02_22","_2021_02_23","_2021_02_24","_2021_02_25","_2021_02_26","_2021_02_27","_2021_02_28","_2021_03_01","_2021_03_02","_2021_03_03","_2021_03_04","_2021_03_05","_2021_03_06","_2021_03_07","_2021_03_08","_2021_03_09","_2021_03_10","_2021_03_11","_2021_03_12","_2021_03_13","_2021_03_14","_2021_03_15","_2021_03_16","_2021_03_17","_2021_03_18","_2021_03_19","_2021_03_20","_2021_03_21","_2021_03_22","_2021_03_23","_2021_03_24","_2021_03_25","_2021_03_26","_2021_03_27","_2021_03_28","_2021_03_29","_2021_03_30","_2021_03_31","_2021_04_01","_2021_04_02","_2021_04_03","_2021_04_04","_2021_04_05","_2021_04_06","_2021_04_07","_2021_04_08","_2021_04_09","_2021_04_10","_2021_04_11","_2021_04_12","_2021_04_13","_2021_04_14","_2021_04_15","_2021_04_16","_2021_04_17","_2021_04_18","_2021_04_19","_2021_04_20","_2021_04_21","_2021_04_22","_2021_04_23","_2021_04_24","_2021_04_25","_2021_04_26","_2021_04_27","_2021_04_28","_2021_04_29","_2021_04_30","_2021_05_01","_2021_05_02","_2021_05_03","_2021_05_04","_2021_05_05","_2021_05_06","_2021_05_07","_2021_05_08","_2021_05_09","_2021_05_10","_2021_05_11","_2021_05_12","_2021_05_13","_2021_05_14","_2021_05_15","_2021_05_16","_2021_05_17","_2021_05_18","_2021_05_19","_2021_05_20","_2021_05_21","_2021_05_22","_2021_05_23","_2021_05_24","_2021_05_25","_2021_05_26","_2021_05_27","_2021_05_28","_2021_05_29","_2021_05_30","_2021_05_31","_2021_06_01","_2021_06_02","_2021_06_03","_2021_06_04","_2021_06_05","_2021_06_06","_2021_06_07","_2021_06_08","_2021_06_09","_2021_06_10","_2021_06_11","_2021_06_12","_2021_06_13","_2021_06_14","_2021_06_15","_2021_06_16","_2021_06_17","_2021_06_18","_2021_06_19","_2021_06_20","_2021_06_21","_2021_06_22","_2021_06_23","_2021_06_24","_2021_06_25","_2021_06_26","_2021_06_27","_2021_06_28","_2021_06_29","_2021_06_30","_2021_07_01","_2021_07_02","_2021_07_03","_2021_07_04","_2021_07_05","_2021_07_06","_2021_07_07"],"vaccine_fully_vaccinated_cdc":["fips","_2021_03_26","_2021_03_27","_2021_03_28","_2021_03_29","_2021_03_30","_2021_03_31","_2021_04_01","_2021_04_02","_2021_04_03","_2021_04_04","_2021_04_05","_2021_04_06","_2021_04_07","_2021_04_08","_2021_04_09","_2021_04_10","_2021_04_11","_2021_04_12","_2021_04_13","_2021_04_14","_2021_04_15","_2021_04_16","_2021_04_17","_2021_04_18","_2021_04_19","_2021_04_20","_2021_04_21","_2021_04_22","_2021_04_23","_2021_04_24","_2021_04_25","_2021_04_26","_2021_04_27","_2021_04_28","_2021_04_29","_2021_04_30","_2021_05_01","_2021_05_02","_2021_05_03","_2021_05_04","_2021_05_05","_2021_05_06","_2021_05_07","_2021_05_08","_2021_05_09","_2021_05_10","_2021_05_11","_2021_05_12","_2021_05_13","_2021_05_14","_2021_05_15","_2021_05_16","_2021_05_17","_2021_05_18","_2021_05_19","_2021_05_20","_2021_05_21","_2021_05_22","_2021_05_23","_2021_05_24","_2021_05_25","_2021_05_26","_2021_05_27","_2021_05_28","_2021_05_29","_2021_05_30","_2021_06_01","_2021_06_02","_2021_06_03","_2021_06_04","_2021_06_05","_2021_06_06","_2021_06_07","_2021_06_08","_2021_06_09","_2021_06_10","_2021_06_11","_2021_06_12","_2021_06_13","_2021_06_14","_2021_06_15","_2021_06_16","_2021_06_17","_2021_06_18","_2021_06_19","_2021_06_20","_2021_06_21","_2021_06_22","_2021_06_23","_2021_06_24","_2021_06_25","_2021_06_26","_2021_06_27","_2021_06_28","_2021_06_29","_2021_06_30","_2021_07_01","_2021_07_02","_2021_07_03","_2021_07_04","_2021_07_06","_2021_07_07"],"covid_tcap_cdc":["fips_code","_2020_01_22","_2020_01_23","_2020_01_24","_2020_01_25","_2020_01_26","_2020_01_27","_2020_01_28","_2020_01_29","_2020_01_30","_2020_01_31","_2020_02_01","_2020_02_02","_2020_02_03","_2020_02_04","_2020_02_05","_2020_02_06","_2020_02_07","_2020_02_08","_2020_02_09","_2020_02_10","_2020_02_11","_2020_02_12","_2020_02_13","_2020_02_14","_2020_02_15","_2020_02_16","_2020_02_17","_2020_02_18","_2020_02_19","_2020_02_20","_2020_02_21","_2020_02_22","_2020_02_23","_2020_02_24","_2020_02_25","_2020_02_26","_2020_02_27","_2020_02_28","_2020_02_29","_2020_03_01","_2020_03_02","_2020_03_03","_2020_03_04","_2020_03_05","_2020_03_06","_2020_03_07","_2020_03_08","_2020_03_09","_2020_03_10","_2020_03_11","_2020_03_12","_2020_03_13","_2020_03_14","_2020_03_15","_2020_03_16","_2020_03_17","_2020_03_18","_2020_03_19","_2020_03_20","_2020_03_21","_2020_03_22","_2020_03_23","_2020_03_24","_2020_03_25","_2020_03_26","_2020_03_27","_2020_03_28","_2020_03_29","_2020_03_30","_2020_03_31","_2020_04_01","_2020_04_02","_2020_04_03","_2020_04_04","_2020_04_05","_2020_04_06","_2020_04_07","_2020_04_08","_2020_04_09","_2020_04_10","_2020_04_11","_2020_04_12","_2020_04_13","_2020_04_14","_2020_04_15","_2020_04_16","_2020_04_17","_2020_04_18","_2020_04_19","_2020_04_20","_2020_04_21","_2020_04_22","_2020_04_23","_2020_04_24","_2020_04_25","_2020_04_26","_2020_04_27","_2020_04_28","_2020_04_29","_2020_04_30","_2020_05_01","_2020_05_02","_2020_05_03","_2020_05_04","_2020_05_05","_2020_05_06","_2020_05_07","_2020_05_08","_2020_05_09","_2020_05_10","_2020_05_11","_2020_05_12","_2020_05_13","_2020_05_14","_2020_05_15","_2020_05_16","_2020_05_17","_2020_05_18","_2020_05_19","_2020_05_20","_2020_05_21","_2020_05_22","_2020_05_23","_2020_05_24","_2020_05_25","_2020_05_26","_2020_05_27","_2020_05_28","_2020_05_29","_2020_05_30","_2020_05_31","_2020_06_01","_2020_06_02","_2020_06_03","_2020_06_04","_2020_06_05","_2020_06_06","_2020_06_07","_2020_06_08","_2020_06_09","_2020_06_10","_2020_06_11","_2020_06_12","_2020_06_13","_2020_06_14","_2020_06_15","_2020_06_16","_2020_06_17","_2020_06_18","_2020_06_19","_2020_06_20","_2020_06_21","_2020_06_22","_2020_06_23","_2020_06_24","_2020_06_25","_2020_06_26","_2020_06_27","_2020_06_28","_2020_06_29","_2020_06_30","_2020_07_01","_2020_07_02","_2020_07_03","_2020_07_04","_2020_07_05","_2020_07_06","_2020_07_07","_2020_07_08","_2020_07_09","_2020_07_10","_2020_07_11","_2020_07_12","_2020_07_13","_2020_07_14","_2020_07_15","_2020_07_16","_2020_07_17","_2020_07_18","_2020_07_19","_2020_07_20","_2020_07_21","_2020_07_22","_2020_07_23","_2020_07_24","_2020_07_25","_2020_07_26","_2020_07_27","_2020_07_28","_2020_07_29","_2020_07_30","_2020_07_31","_2020_08_01","_2020_08_02","_2020_08_03","_2020_08_04","_2020_08_05","_2020_08_06","_2020_08_07","_2020_08_08","_2020_08_09","_2020_08_10","_2020_08_11","_2020_08_12","_2020_08_13","_2020_08_14","_2020_08_15","_2020_08_16","_2020_08_17","_2020_08_18","_2020_08_19","_2020_08_20","_2020_08_21","_2020_08_22","_2020_08_23","_2020_08_24","_2020_08_25","_2020_08_26","_2020_08_27","_2020_08_28","_2020_08_29","_2020_08_30","_2020_08_31","_2020_09_01","_2020_09_02","_2020_09_03","_2020_09_04","_2020_09_05","_2020_09_06","_2020_09_07","_2020_09_08","_2020_09_09","_2020_09_10","_2020_09_11","_2020_09_12","_2020_09_13","_2020_09_14","_2020_09_15","_2020_09_16","_2020_09_17","_2020_09_18","_2020_09_19","_2020_09_20","_2020_09_21","_2020_09_22","_2020_09_23","_2020_09_24","_2020_09_25","_2020_09_26","_2020_09_27","_2020_09_28","_2020_09_29","_2020_09_30","_2020_10_01","_2020_10_02","_2020_10_03","_2020_10_04","_2020_10_05","_2020_10_06","_2020_10_07","_2020_10_08","_2020_10_09","_2020_10_10","_2020_10_11","_2020_10_12","_2020_10_13","_2020_10_14","_2020_10_15","_2020_10_16","_2020_10_17","_2020_10_18","_2020_10_19","_2020_10_20","_2020_10_21","_2020_10_22","_2020_10_23","_2020_10_24","_2020_10_25","_2020_10_26","_2020_10_27","_2020_10_28","_2020_10_29","_2020_10_30","_2020_10_31","_2020_11_01","_2020_11_02","_2020_11_03","_2020_11_04","_2020_11_05","_2020_11_06","_2020_11_07","_2020_11_08","_2020_11_09","_2020_11_10","_2020_11_11","_2020_11_12","_2020_11_13","_2020_11_14","_2020_11_15","_2020_11_16","_2020_11_17","_2020_11_18","_2020_11_19","_2020_11_20","_2020_11_21","_2020_11_22","_2020_11_23","_2020_11_24","_2020_11_25","_2020_11_26","_2020_11_27","_2020_11_28","_2020_11_29","_2020_11_30","_2020_12_01","_2020_12_02","_2020_12_03","_2020_12_04","_2020_12_05","_2020_12_06","_2020_12_07","_2020_12_08","_2020_12_09","_2020_12_10","_2020_12_11","_2020_12_12","_2020_12_13","_2020_12_14","_2020_12_15","_2020_12_16","_2020_12_17","_2020_12_18","_2020_12_19","_2020_12_20","_2020_12_21","_2020_12_22","_2020_12_23","_2020_12_24","_2020_12_25","_2020_12_26","_2020_12_27","_2020_12_28","_2020_12_29","_2020_12_30","_2020_12_31","_2021_01_01","_2021_01_02","_2021_01_03","_2021_01_04","_2021_01_05","_2021_01_06","_2021_01_07","_2021_01_08","_2021_01_09","_2021_01_10","_2021_01_11","_2021_01_12","_2021_01_13","_2021_01_14","_2021_01_15","_2021_01_16","_2021_01_17","_2021_01_18","_2021_01_19","_2021_01_20","_2021_01_21","_2021_01_22","_2021_01_23","_2021_01_24","_2021_01_25","_2021_01_26","_2021_01_27","_2021_01_28","_2021_01_29","_2021_01_30","_2021_01_31","_2021_02_01","_2021_02_02","_2021_02_03","_2021_02_04","_2021_02_05","_2021_02_06","_2021_02_07","_2021_02_08","_2021_02_09","_2021_02_10","_2021_02_11","_2021_02_12","_2021_02_13","_2021_02_14","_2021_02_15","_2021_02_16","_2021_02_17","_2021_02_18","_2021_02_19","_2021_02_20","_2021_02_21","_2021_02_22","_2021_02_23","_2021_02_24","_2021_02_25","_2021_02_26","_2021_02_27","_2021_02_28","_2021_03_01","_2021_03_02","_2021_03_03","_2021_03_04","_2021_03_05","_2021_03_06","_2021_03_07","_2021_03_08","_2021_03_09","_2021_03_10","_2021_03_11","_2021_03_12","_2021_03_13","_2021_03_14","_2021_03_15","_2021_03_16","_2021_03_17","_2021_03_18","_2021_03_19","_2021_03_20","_2021_03_21","_2021_03_22","_2021_03_23","_2021_03_24","_2021_03_25","_2021_03_26","_2021_03_27","_2021_03_28","_2021_03_29","_2021_03_30","_2021_03_31","_2021_04_01","_2021_04_02","_2021_04_03","_2021_04_04","_2021_04_05","_2021_04_06","_2021_04_07","_2021_04_08","_2021_04_09","_2021_04_10","_2021_04_11","_2021_04_12","_2021_04_13","_2021_04_14","_2021_04_15","_2021_04_16","_2021_04_17","_2021_04_18","_2021_04_19","_2021_04_20","_2021_04_21","_2021_04_22","_2021_04_23","_2021_04_24","_2021_04_25","_2021_04_26","_2021_04_27","_2021_04_28","_2021_04_29","_2021_04_30","_2021_05_01","_2021_05_02","_2021_05_03","_2021_05_04","_2021_05_05","_2021_05_06","_2021_05_07","_2021_05_08","_2021_05_09","_2021_05_10","_2021_05_11","_2021_05_12","_2021_05_13","_2021_05_14","_2021_05_15","_2021_05_16","_2021_05_17","_2021_05_18","_2021_05_19","_2021_05_20","_2021_05_21","_2021_05_22","_2021_05_23","_2021_05_24","_2021_05_25","_2021_05_26","_2021_05_27","_2021_05_28","_2021_05_29","_2021_05_30","_2021_05_31","_2021_06_01","_2021_06_02","_2021_06_03","_2021_06_04","_2021_06_05","_2021_06_06","_2021_06_07","_2021_06_08","_2021_06_09","_2021_06_10","_2021_06_11","_2021_06_12","_2021_06_13","_2021_06_14","_2021_06_15","_2021_06_16","_2021_06_17","_2021_06_18","_2021_06_19","_2021_06_20","_2021_06_21","_2021_06_22","_2021_06_23","_2021_06_24","_2021_06_25","_2021_06_26","_2021_06_27","_2021_06_28","_2021_06_29","_2021_06_30","_2021_07_01","_2021_07_02","_2021_07_03","_2021_07_04","_2021_07_05"],"vaccine_admin1_cdc":["fips","_2021_01_12","_2021_01_14","_2021_01_15","_2021_01_19","_2021_01_20","_2021_01_21","_2021_01_22","_2021_01_23","_2021_01_24","_2021_01_25","_2021_01_26","_2021_01_27","_2021_01_28","_2021_01_29","_2021_01_30","_2021_01_31","_2021_02_01","_2021_02_02","_2021_02_03","_2021_02_04","_2021_02_05","_2021_02_06","_2021_02_07","_2021_02_08","_2021_02_09","_2021_02_10","_2021_02_11","_2021_02_12","_2021_02_13","_2021_02_14","_2021_02_16","_2021_02_17","_2021_02_18","_2021_02_21","_2021_02_22","_2021_02_23","_2021_02_24","_2021_02_25","_2021_02_26","_2021_02_28","_2021_03_01","_2021_03_02","_2021_03_03","_2021_03_04","_2021_03_06","_2021_03_07"],"vaccination_one_or_more_doses_cdc":["fips","_2021_02_27","_2021_04_19","_2021_04_11","_2021_01_31","_2021_02_13","_2021_06_16","_2021_02_23","_2021_05_07","_2021_06_11","_2021_05_01","_2021_04_16","_2021_04_25","_2021_05_09","_2021_01_28","_2021_04_07","_2021_04_13","_2021_01_21","_2021_01_20","_2021_03_30","_2021_04_03","_2021_03_28","_2021_06_23","_2021_06_10","_2021_02_10","_2021_05_04","_2021_05_03","_2021_06_29","_2021_02_11","_2021_02_06","_2021_04_01","_2021_06_27","_2021_05_17","_2021_04_27","_2021_04_28","_2021_02_07","_2021_06_04","_2021_01_26","_2021_03_04","_2021_05_24","_2021_02_02","_2021_06_07","_2021_06_18","_2021_03_26","_2021_06_15","_2021_05_02","_2021_06_06","_2021_03_23","_2021_07_06","_2021_04_22","_2021_03_27","_2021_01_24","_2021_03_06","_2021_03_21","_2021_05_25","_2021_02_16","_2021_06_13","_2021_06_25","_2021_01_27","_2021_01_25","_2021_05_19","_2021_06_20","_2021_03_17","_2021_04_09","_2021_05_29","_2021_05_22","_2021_05_11","_2021_01_29","_2021_01_15","_2021_01_23","_2021_03_08","_2021_03_07","_2021_05_28","_2021_03_12","_2021_04_26","_2021_05_21","_2021_04_14","_2021_03_09","_2021_05_10","_2021_07_03","_2021_03_11","_2021_05_23","_2021_03_22","_2021_07_02","_2021_04_20","_2021_06_24","_2021_03_25","_2021_06_21","_2021_03_15","_2021_03_03","_2021_04_12","_2021_05_20","_2021_04_06","_2021_03_16","_2021_02_25","_2021_07_04","_2021_02_08","_2021_01_14","_2021_02_01","_2021_05_26","_2021_02_03","_2021_04_24","_2021_02_24","_2021_05_08","_2021_02_17","_2021_04_08","_2021_04_05","_2021_06_12","_2021_05_13","_2021_04_29","_2021_06_01","_2021_07_07","_2021_01_19","_2021_05_27","_2021_04_02","_2021_04_10","_2021_03_02","_2021_04_04","_2021_04_30","_2021_06_08","_2021_06_14","_2021_06_02","_2021_05_16","_2021_03_01","_2021_06_28","_2021_03_31","_2021_01_30","_2021_03_18","_2021_05_12","_2021_02_12","_2021_04_23","_2021_04_17","_2021_06_09","_2021_02_22","_2021_02_19","_2021_04_21","_2021_03_19","_2021_05_05","_2021_04_18","_2021_04_15","_2021_02_26","_2021_03_29","_2021_05_30","_2021_02_21","_2021_02_14","_2021_03_10","_2021_02_28","_2021_06_17","_2021_05_18","_2021_06_05","_2021_06_26","_2021_02_18","_2021_06_22","_2021_02_05","_2021_02_09","_2021_03_24","_2021_02_04","_2021_07_01","_2021_01_22","_2021_06_19","_2021_03_13","_2021_05_06","_2021_03_14","_2021_05_15","_2021_02_20","_2021_03_20","_2021_06_30","_2021_06_03"],"covid_confirmed_cdc":["fips_code","_2020_01_22","_2020_01_23","_2020_01_24","_2020_01_25","_2020_01_26","_2020_01_27","_2020_01_28","_2020_01_29","_2020_01_30","_2020_01_31","_2020_02_01","_2020_02_02","_2020_02_03","_2020_02_04","_2020_02_05","_2020_02_06","_2020_02_07","_2020_02_08","_2020_02_09","_2020_02_10","_2020_02_11","_2020_02_12","_2020_02_13","_2020_02_14","_2020_02_15","_2020_02_16","_2020_02_17","_2020_02_18","_2020_02_19","_2020_02_20","_2020_02_21","_2020_02_22","_2020_02_23","_2020_02_24","_2020_02_25","_2020_02_26","_2020_02_27","_2020_02_28","_2020_02_29","_2020_03_01","_2020_03_02","_2020_03_03","_2020_03_04","_2020_03_05","_2020_03_06","_2020_03_07","_2020_03_08","_2020_03_09","_2020_03_10","_2020_03_11","_2020_03_12","_2020_03_13","_2020_03_14","_2020_03_15","_2020_03_16","_2020_03_17","_2020_03_18","_2020_03_19","_2020_03_20","_2020_03_21","_2020_03_22","_2020_03_23","_2020_03_24","_2020_03_25","_2020_03_26","_2020_03_27","_2020_03_28","_2020_03_29","_2020_03_30","_2020_03_31","_2020_04_01","_2020_04_02","_2020_04_03","_2020_04_04","_2020_04_05","_2020_04_06","_2020_04_07","_2020_04_08","_2020_04_09","_2020_04_10","_2020_04_11","_2020_04_12","_2020_04_13","_2020_04_14","_2020_04_15","_2020_04_16","_2020_04_17","_2020_04_18","_2020_04_19","_2020_04_20","_2020_04_21","_2020_04_22","_2020_04_23","_2020_04_24","_2020_04_25","_2020_04_26","_2020_04_27","_2020_04_28","_2020_04_29","_2020_04_30","_2020_05_01","_2020_05_02","_2020_05_03","_2020_05_04","_2020_05_05","_2020_05_06","_2020_05_07","_2020_05_08","_2020_05_09","_2020_05_10","_2020_05_11","_2020_05_12","_2020_05_13","_2020_05_14","_2020_05_15","_2020_05_16","_2020_05_17","_2020_05_18","_2020_05_19","_2020_05_20","_2020_05_21","_2020_05_22","_2020_05_23","_2020_05_24","_2020_05_25","_2020_05_26","_2020_05_27","_2020_05_28","_2020_05_29","_2020_05_30","_2020_05_31","_2020_06_01","_2020_06_02","_2020_06_03","_2020_06_04","_2020_06_05","_2020_06_06","_2020_06_07","_2020_06_08","_2020_06_09","_2020_06_10","_2020_06_11","_2020_06_12","_2020_06_13","_2020_06_14","_2020_06_15","_2020_06_16","_2020_06_17","_2020_06_18","_2020_06_19","_2020_06_20","_2020_06_21","_2020_06_22","_2020_06_23","_2020_06_24","_2020_06_25","_2020_06_26","_2020_06_27","_2020_06_28","_2020_06_29","_2020_06_30","_2020_07_01","_2020_07_02","_2020_07_03","_2020_07_04","_2020_07_05","_2020_07_06","_2020_07_07","_2020_07_08","_2020_07_09","_2020_07_10","_2020_07_11","_2020_07_12","_2020_07_13","_2020_07_14","_2020_07_15","_2020_07_16","_2020_07_17","_2020_07_18","_2020_07_19","_2020_07_20","_2020_07_21","_2020_07_22","_2020_07_23","_2020_07_24","_2020_07_25","_2020_07_26","_2020_07_27","_2020_07_28","_2020_07_29","_2020_07_30","_2020_07_31","_2020_08_01","_2020_08_02","_2020_08_03","_2020_08_04","_2020_08_05","_2020_08_06","_2020_08_07","_2020_08_08","_2020_08_09","_2020_08_10","_2020_08_11","_2020_08_12","_2020_08_13","_2020_08_14","_2020_08_15","_2020_08_16","_2020_08_17","_2020_08_18","_2020_08_19","_2020_08_20","_2020_08_21","_2020_08_22","_2020_08_23","_2020_08_24","_2020_08_25","_2020_08_26","_2020_08_27","_2020_08_28","_2020_08_29","_2020_08_30","_2020_08_31","_2020_09_01","_2020_09_02","_2020_09_03","_2020_09_04","_2020_09_05","_2020_09_06","_2020_09_07","_2020_09_08","_2020_09_09","_2020_09_10","_2020_09_11","_2020_09_12","_2020_09_13","_2020_09_14","_2020_09_15","_2020_09_16","_2020_09_17","_2020_09_18","_2020_09_19","_2020_09_20","_2020_09_21","_2020_09_22","_2020_09_23","_2020_09_24","_2020_09_25","_2020_09_26","_2020_09_27","_2020_09_28","_2020_09_29","_2020_09_30","_2020_10_01","_2020_10_02","_2020_10_03","_2020_10_04","_2020_10_05","_2020_10_06","_2020_10_07","_2020_10_08","_2020_10_09","_2020_10_10","_2020_10_11","_2020_10_12","_2020_10_13","_2020_10_14","_2020_10_15","_2020_10_16","_2020_10_17","_2020_10_18","_2020_10_19","_2020_10_20","_2020_10_21","_2020_10_22","_2020_10_23","_2020_10_24","_2020_10_25","_2020_10_26","_2020_10_27","_2020_10_28","_2020_10_29","_2020_10_30","_2020_10_31","_2020_11_01","_2020_11_02","_2020_11_03","_2020_11_04","_2020_11_05","_2020_11_06","_2020_11_07","_2020_11_08","_2020_11_09","_2020_11_10","_2020_11_11","_2020_11_12","_2020_11_13","_2020_11_14","_2020_11_15","_2020_11_16","_2020_11_17","_2020_11_18","_2020_11_19","_2020_11_20","_2020_11_21","_2020_11_22","_2020_11_23","_2020_11_24","_2020_11_25","_2020_11_26","_2020_11_27","_2020_11_28","_2020_11_29","_2020_11_30","_2020_12_01","_2020_12_02","_2020_12_03","_2020_12_04","_2020_12_05","_2020_12_06","_2020_12_07","_2020_12_08","_2020_12_09","_2020_12_10","_2020_12_11","_2020_12_12","_2020_12_13","_2020_12_14","_2020_12_15","_2020_12_16","_2020_12_17","_2020_12_18","_2020_12_19","_2020_12_20","_2020_12_21","_2020_12_22","_2020_12_23","_2020_12_24","_2020_12_25","_2020_12_26","_2020_12_27","_2020_12_28","_2020_12_29","_2020_12_30","_2020_12_31","_2021_01_01","_2021_01_02","_2021_01_03","_2021_01_04","_2021_01_05","_2021_01_06","_2021_01_07","_2021_01_08","_2021_01_09","_2021_01_10","_2021_01_11","_2021_01_12","_2021_01_13","_2021_01_14","_2021_01_15","_2021_01_16","_2021_01_17","_2021_01_18","_2021_01_19","_2021_01_20","_2021_01_21","_2021_01_22","_2021_01_23","_2021_01_24","_2021_01_25","_2021_01_26","_2021_01_27","_2021_01_28","_2021_01_29","_2021_01_30","_2021_01_31","_2021_02_01","_2021_02_02","_2021_02_03","_2021_02_04","_2021_02_05","_2021_02_06","_2021_02_07","_2021_02_08","_2021_02_09","_2021_02_10","_2021_02_11","_2021_02_12","_2021_02_13","_2021_02_14","_2021_02_15","_2021_02_16","_2021_02_17","_2021_02_18","_2021_02_19","_2021_02_20","_2021_02_21","_2021_02_22","_2021_02_23","_2021_02_24","_2021_02_25","_2021_02_26","_2021_02_27","_2021_02_28","_2021_03_01","_2021_03_02","_2021_03_03","_2021_03_04","_2021_03_05","_2021_03_06","_2021_03_07","_2021_03_08","_2021_03_09","_2021_03_10","_2021_03_11","_2021_03_12","_2021_03_13","_2021_03_14","_2021_03_15","_2021_03_16","_2021_03_17","_2021_03_18","_2021_03_19","_2021_03_20","_2021_03_21","_2021_03_22","_2021_03_23","_2021_03_24","_2021_03_25","_2021_03_26","_2021_03_27","_2021_03_28","_2021_03_29","_2021_03_30","_2021_03_31","_2021_04_01","_2021_04_02","_2021_04_03","_2021_04_04","_2021_04_05","_2021_04_06","_2021_04_07","_2021_04_08","_2021_04_09","_2021_04_10","_2021_04_11","_2021_04_12","_2021_04_13","_2021_04_14","_2021_04_15","_2021_04_16","_2021_04_17","_2021_04_18","_2021_04_19","_2021_04_20","_2021_04_21","_2021_04_22","_2021_04_23","_2021_04_24","_2021_04_25","_2021_04_26","_2021_04_27","_2021_04_28","_2021_04_29","_2021_04_30","_2021_05_01","_2021_05_02","_2021_05_03","_2021_05_04","_2021_05_05","_2021_05_06","_2021_05_07","_2021_05_08","_2021_05_09","_2021_05_10","_2021_05_11","_2021_05_12","_2021_05_13","_2021_05_14","_2021_05_15","_2021_05_16","_2021_05_17","_2021_05_18","_2021_05_19","_2021_05_20","_2021_05_21","_2021_05_22","_2021_05_23","_2021_05_24","_2021_05_25","_2021_05_26","_2021_05_27","_2021_05_28","_2021_05_29","_2021_05_30","_2021_05_31","_2021_06_01","_2021_06_02","_2021_06_03","_2021_06_04","_2021_06_05","_2021_06_06","_2021_06_07","_2021_06_08","_2021_06_09","_2021_06_10","_2021_06_11","_2021_06_12","_2021_06_13","_2021_06_14","_2021_06_15","_2021_06_16","_2021_06_17","_2021_06_18","_2021_06_19","_2021_06_20","_2021_06_21","_2021_06_22","_2021_06_23","_2021_06_24","_2021_06_25","_2021_06_26","_2021_06_27","_2021_06_28","_2021_06_29","_2021_06_30","_2021_07_01","_2021_07_02","_2021_07_03","_2021_07_04","_2021_07_05"],"vaccine_fully_vaccinated_cdc_h":["fips","_2021_03_26","_2021_03_27","_2021_03_28","_2021_03_29","_2021_03_30","_2021_03_31","_2021_04_01","_2021_04_02","_2021_04_03","_2021_04_04","_2021_04_05","_2021_04_06","_2021_04_07","_2021_04_08","_2021_04_09","_2021_04_10","_2021_04_11","_2021_04_12","_2021_04_13","_2021_04_14","_2021_04_15","_2021_04_16","_2021_04_17","_2021_04_18","_2021_04_19","_2021_04_20","_2021_04_21","_2021_04_22","_2021_04_23","_2021_04_24","_2021_04_25","_2021_04_26","_2021_04_27","_2021_04_28","_2021_04_29","_2021_04_30","_2021_05_01","_2021_05_02","_2021_05_03","_2021_05_04","_2021_05_05","_2021_05_06","_2021_05_07","_2021_05_08","_2021_05_09","_2021_05_10","_2021_05_11","_2021_05_12","_2021_05_13","_2021_05_14","_2021_05_15","_2021_05_16","_2021_05_17","_2021_05_18","_2021_05_19","_2021_05_20","_2021_05_21","_2021_05_22","_2021_05_23","_2021_05_24","_2021_05_25","_2021_05_26","_2021_05_27","_2021_05_28","_2021_05_29","_2021_05_30","_2021_06_01","_2021_06_02","_2021_06_03","_2021_06_04","_2021_06_05","_2021_06_06","_2021_06_07","_2021_06_08","_2021_06_09","_2021_06_10","_2021_06_11","_2021_06_12","_2021_06_13","_2021_06_14","_2021_06_15","_2021_06_16","_2021_06_17","_2021_06_18","_2021_06_19","_2021_06_20","_2021_06_21","_2021_06_22","_2021_06_23","_2021_06_24","_2021_06_25","_2021_06_26","_2021_06_27","_2021_06_28","_2021_06_29","_2021_06_30","_2021_07_01","_2021_07_02","_2021_07_03","_2021_07_04","_2021_07_06","_2021_07_07"],"vaccination_fully_vaccinated_cdc":["fips","_2021_02_27","_2021_04_19","_2021_04_11","_2021_01_31","_2021_02_13","_2021_06_16","_2021_02_23","_2021_05_07","_2021_06_11","_2021_05_01","_2021_04_16","_2021_04_25","_2021_05_09","_2021_01_28","_2021_04_07","_2021_04_13","_2021_01_21","_2021_01_20","_2021_03_30","_2021_04_03","_2021_03_28","_2021_06_23","_2021_06_10","_2021_02_10","_2021_05_04","_2021_05_03","_2021_06_29","_2021_02_11","_2021_02_06","_2021_04_01","_2021_06_27","_2021_05_17","_2021_04_27","_2021_04_28","_2021_02_07","_2021_06_04","_2021_01_26","_2021_03_04","_2021_05_24","_2021_02_02","_2021_06_07","_2021_06_18","_2021_03_26","_2021_06_15","_2021_05_02","_2021_06_06","_2021_03_23","_2021_07_06","_2021_04_22","_2021_03_27","_2021_01_24","_2021_03_06","_2021_03_21","_2021_05_25","_2021_02_16","_2021_06_13","_2021_06_25","_2021_01_27","_2021_01_25","_2021_05_19","_2021_06_20","_2021_03_17","_2021_04_09","_2021_05_29","_2021_05_22","_2021_05_11","_2021_01_29","_2021_01_15","_2021_01_23","_2021_03_08","_2021_03_07","_2021_05_28","_2021_03_12","_2021_04_26","_2021_05_21","_2021_04_14","_2021_03_09","_2021_05_10","_2021_07_03","_2021_03_11","_2021_05_23","_2021_03_22","_2021_07_02","_2021_04_20","_2021_06_24","_2021_03_25","_2021_06_21","_2021_03_15","_2021_03_03","_2021_04_12","_2021_05_20","_2021_04_06","_2021_03_16","_2021_02_25","_2021_07_04","_2021_02_08","_2021_01_14","_2021_02_01","_2021_05_26","_2021_02_03","_2021_04_24","_2021_02_24","_2021_05_08","_2021_02_17","_2021_04_08","_2021_04_05","_2021_06_12","_2021_05_13","_2021_04_29","_2021_06_01","_2021_07_07","_2021_01_19","_2021_05_27","_2021_04_02","_2021_04_10","_2021_03_02","_2021_04_04","_2021_04_30","_2021_06_08","_2021_06_14","_2021_06_02","_2021_05_16","_2021_03_01","_2021_06_28","_2021_03_31","_2021_01_30","_2021_03_18","_2021_05_12","_2021_02_12","_2021_04_23","_2021_04_17","_2021_06_09","_2021_02_22","_2021_02_19","_2021_04_21","_2021_03_19","_2021_05_05","_2021_04_18","_2021_04_15","_2021_02_26","_2021_03_29","_2021_05_30","_2021_02_21","_2021_02_14","_2021_03_10","_2021_02_28","_2021_06_17","_2021_05_18","_2021_06_05","_2021_06_26","_2021_02_18","_2021_06_22","_2021_02_05","_2021_02_09","_2021_03_24","_2021_02_04","_2021_07_01","_2021_01_22","_2021_06_19","_2021_03_13","_2021_05_06","_2021_03_14","_2021_05_15","_2021_02_20","_2021_03_20","_2021_06_30","_2021_06_03"],"covid_wk_pos_cdc":["fips_code","_2020_01_22","_2020_01_23","_2020_01_24","_2020_01_25","_2020_01_26","_2020_01_27","_2020_01_28","_2020_01_29","_2020_01_30","_2020_01_31","_2020_02_01","_2020_02_02","_2020_02_03","_2020_02_04","_2020_02_05","_2020_02_06","_2020_02_07","_2020_02_08","_2020_02_09","_2020_02_10","_2020_02_11","_2020_02_12","_2020_02_13","_2020_02_14","_2020_02_15","_2020_02_16","_2020_02_17","_2020_02_18","_2020_02_19","_2020_02_20","_2020_02_21","_2020_02_22","_2020_02_23","_2020_02_24","_2020_02_25","_2020_02_26","_2020_02_27","_2020_02_28","_2020_02_29","_2020_03_01","_2020_03_02","_2020_03_03","_2020_03_04","_2020_03_05","_2020_03_06","_2020_03_07","_2020_03_08","_2020_03_09","_2020_03_10","_2020_03_11","_2020_03_12","_2020_03_13","_2020_03_14","_2020_03_15","_2020_03_16","_2020_03_17","_2020_03_18","_2020_03_19","_2020_03_20","_2020_03_21","_2020_03_22","_2020_03_23","_2020_03_24","_2020_03_25","_2020_03_26","_2020_03_27","_2020_03_28","_2020_03_29","_2020_03_30","_2020_03_31","_2020_04_01","_2020_04_02","_2020_04_03","_2020_04_04","_2020_04_05","_2020_04_06","_2020_04_07","_2020_04_08","_2020_04_09","_2020_04_10","_2020_04_11","_2020_04_12","_2020_04_13","_2020_04_14","_2020_04_15","_2020_04_16","_2020_04_17","_2020_04_18","_2020_04_19","_2020_04_20","_2020_04_21","_2020_04_22","_2020_04_23","_2020_04_24","_2020_04_25","_2020_04_26","_2020_04_27","_2020_04_28","_2020_04_29","_2020_04_30","_2020_05_01","_2020_05_02","_2020_05_03","_2020_05_04","_2020_05_05","_2020_05_06","_2020_05_07","_2020_05_08","_2020_05_09","_2020_05_10","_2020_05_11","_2020_05_12","_2020_05_13","_2020_05_14","_2020_05_15","_2020_05_16","_2020_05_17","_2020_05_18","_2020_05_19","_2020_05_20","_2020_05_21","_2020_05_22","_2020_05_23","_2020_05_24","_2020_05_25","_2020_05_26","_2020_05_27","_2020_05_28","_2020_05_29","_2020_05_30","_2020_05_31","_2020_06_01","_2020_06_02","_2020_06_03","_2020_06_04","_2020_06_05","_2020_06_06","_2020_06_07","_2020_06_08","_2020_06_09","_2020_06_10","_2020_06_11","_2020_06_12","_2020_06_13","_2020_06_14","_2020_06_15","_2020_06_16","_2020_06_17","_2020_06_18","_2020_06_19","_2020_06_20","_2020_06_21","_2020_06_22","_2020_06_23","_2020_06_24","_2020_06_25","_2020_06_26","_2020_06_27","_2020_06_28","_2020_06_29","_2020_06_30","_2020_07_01","_2020_07_02","_2020_07_03","_2020_07_04","_2020_07_05","_2020_07_06","_2020_07_07","_2020_07_08","_2020_07_09","_2020_07_10","_2020_07_11","_2020_07_12","_2020_07_13","_2020_07_14","_2020_07_15","_2020_07_16","_2020_07_17","_2020_07_18","_2020_07_19","_2020_07_20","_2020_07_21","_2020_07_22","_2020_07_23","_2020_07_24","_2020_07_25","_2020_07_26","_2020_07_27","_2020_07_28","_2020_07_29","_2020_07_30","_2020_07_31","_2020_08_01","_2020_08_02","_2020_08_03","_2020_08_04","_2020_08_05","_2020_08_06","_2020_08_07","_2020_08_08","_2020_08_09","_2020_08_10","_2020_08_11","_2020_08_12","_2020_08_13","_2020_08_14","_2020_08_15","_2020_08_16","_2020_08_17","_2020_08_18","_2020_08_19","_2020_08_20","_2020_08_21","_2020_08_22","_2020_08_23","_2020_08_24","_2020_08_25","_2020_08_26","_2020_08_27","_2020_08_28","_2020_08_29","_2020_08_30","_2020_08_31","_2020_09_01","_2020_09_02","_2020_09_03","_2020_09_04","_2020_09_05","_2020_09_06","_2020_09_07","_2020_09_08","_2020_09_09","_2020_09_10","_2020_09_11","_2020_09_12","_2020_09_13","_2020_09_14","_2020_09_15","_2020_09_16","_2020_09_17","_2020_09_18","_2020_09_19","_2020_09_20","_2020_09_21","_2020_09_22","_2020_09_23","_2020_09_24","_2020_09_25","_2020_09_26","_2020_09_27","_2020_09_28","_2020_09_29","_2020_09_30","_2020_10_01","_2020_10_02","_2020_10_03","_2020_10_04","_2020_10_05","_2020_10_06","_2020_10_07","_2020_10_08","_2020_10_09","_2020_10_10","_2020_10_11","_2020_10_12","_2020_10_13","_2020_10_14","_2020_10_15","_2020_10_16","_2020_10_17","_2020_10_18","_2020_10_19","_2020_10_20","_2020_10_21","_2020_10_22","_2020_10_23","_2020_10_24","_2020_10_25","_2020_10_26","_2020_10_27","_2020_10_28","_2020_10_29","_2020_10_30","_2020_10_31","_2020_11_01","_2020_11_02","_2020_11_03","_2020_11_04","_2020_11_05","_2020_11_06","_2020_11_07","_2020_11_08","_2020_11_09","_2020_11_10","_2020_11_11","_2020_11_12","_2020_11_13","_2020_11_14","_2020_11_15","_2020_11_16","_2020_11_17","_2020_11_18","_2020_11_19","_2020_11_20","_2020_11_21","_2020_11_22","_2020_11_23","_2020_11_24","_2020_11_25","_2020_11_26","_2020_11_27","_2020_11_28","_2020_11_29","_2020_11_30","_2020_12_01","_2020_12_02","_2020_12_03","_2020_12_04","_2020_12_05","_2020_12_06","_2020_12_07","_2020_12_08","_2020_12_09","_2020_12_10","_2020_12_11","_2020_12_12","_2020_12_13","_2020_12_14","_2020_12_15","_2020_12_16","_2020_12_17","_2020_12_18","_2020_12_19","_2020_12_20","_2020_12_21","_2020_12_22","_2020_12_23","_2020_12_24","_2020_12_25","_2020_12_26","_2020_12_27","_2020_12_28","_2020_12_29","_2020_12_30","_2020_12_31","_2021_01_01","_2021_01_02","_2021_01_03","_2021_01_04","_2021_01_05","_2021_01_06","_2021_01_07","_2021_01_08","_2021_01_09","_2021_01_10","_2021_01_11","_2021_01_12","_2021_01_13","_2021_01_14","_2021_01_15","_2021_01_16","_2021_01_17","_2021_01_18","_2021_01_19","_2021_01_20","_2021_01_21","_2021_01_22","_2021_01_23","_2021_01_24","_2021_01_25","_2021_01_26","_2021_01_27","_2021_01_28","_2021_01_29","_2021_01_30","_2021_01_31","_2021_02_01","_2021_02_02","_2021_02_03","_2021_02_04","_2021_02_05","_2021_02_06","_2021_02_07","_2021_02_08","_2021_02_09","_2021_02_10","_2021_02_11","_2021_02_12","_2021_02_13","_2021_02_14","_2021_02_15","_2021_02_16","_2021_02_17","_2021_02_18","_2021_02_19","_2021_02_20","_2021_02_21","_2021_02_22","_2021_02_23","_2021_02_24","_2021_02_25","_2021_02_26","_2021_02_27","_2021_02_28","_2021_03_01","_2021_03_02","_2021_03_03","_2021_03_04","_2021_03_05","_2021_03_06","_2021_03_07","_2021_03_08","_2021_03_09","_2021_03_10","_2021_03_11","_2021_03_12","_2021_03_13","_2021_03_14","_2021_03_15","_2021_03_16","_2021_03_17","_2021_03_18","_2021_03_19","_2021_03_20","_2021_03_21","_2021_03_22","_2021_03_23","_2021_03_24","_2021_03_25","_2021_03_26","_2021_03_27","_2021_03_28","_2021_03_29","_2021_03_30","_2021_03_31","_2021_04_01","_2021_04_02","_2021_04_03","_2021_04_04","_2021_04_05","_2021_04_06","_2021_04_07","_2021_04_08","_2021_04_09","_2021_04_10","_2021_04_11","_2021_04_12","_2021_04_13","_2021_04_14","_2021_04_15","_2021_04_16","_2021_04_17","_2021_04_18","_2021_04_19","_2021_04_20","_2021_04_21","_2021_04_22","_2021_04_23","_2021_04_24","_2021_04_25","_2021_04_26","_2021_04_27","_2021_04_28","_2021_04_29","_2021_04_30","_2021_05_01","_2021_05_02","_2021_05_03","_2021_05_04","_2021_05_05","_2021_05_06","_2021_05_07","_2021_05_08","_2021_05_09","_2021_05_10","_2021_05_11","_2021_05_12","_2021_05_13","_2021_05_14","_2021_05_15","_2021_05_16","_2021_05_17","_2021_05_18","_2021_05_19","_2021_05_20","_2021_05_21","_2021_05_22","_2021_05_23","_2021_05_24","_2021_05_25","_2021_05_26","_2021_05_27","_2021_05_28","_2021_05_29","_2021_05_30","_2021_05_31","_2021_06_01","_2021_06_02","_2021_06_03","_2021_06_04","_2021_06_05","_2021_06_06","_2021_06_07","_2021_06_08","_2021_06_09","_2021_06_10","_2021_06_11","_2021_06_12","_2021_06_13","_2021_06_14","_2021_06_15","_2021_06_16","_2021_06_17","_2021_06_18","_2021_06_19","_2021_06_20","_2021_06_21","_2021_06_22","_2021_06_23","_2021_06_24","_2021_06_25","_2021_06_26","_2021_06_27","_2021_06_28","_2021_06_29","_2021_06_30","_2021_07_01","_2021_07_02","_2021_07_03","_2021_07_04","_2021_07_05"]},"lastUpdated":1627502347079} \ No newline at end of file diff --git a/functions/columns.json b/functions/columns.json new file mode 100644 index 000000000..e69de29bb diff --git a/functions/q.js b/functions/q.js new file mode 100644 index 000000000..a131a9517 --- /dev/null +++ b/functions/q.js @@ -0,0 +1,129 @@ +const {BigQuery} = require('@google-cloud/bigquery'); +const fs = require('fs') +const dayjs = require('dayjs') + +const options = { + credentials: { + "type": "service_account", + "project_id": process.env.project_id, + "private_key_id": process.env.SK_ID, + "private_key": process.env.SK, + "client_email": process.env.CLIENT_EMAIL, + "client_id": process.env.CLIENT_ID, + "auth_uri": "https://accounts.google.com/o/oauth2/auth", + "token_uri": "https://oauth2.googleapis.com/token", + "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", + "client_x509_cert_url": process.env.client_x509_cert_url + }, + projectId: process.env.project_id, +}; + +async function query(query, bigquery) { + const options = { + query, + location: 'US', + }; + const [job] = await bigquery.createQueryJob(options); + return await job.getQueryResults(); +}; + +async function getColumns(bigquery){ + const queryResult = await query( + 'SELECT DISTINCT column_name,table_name FROM `covid-atlas.wide_format`.INFORMATION_SCHEMA.COLUMNS', + bigquery + ) + let availableColumns={} + for (let i=0; i `${x}`.length === 2 ? x : '0'+ x + +const constructTimeQuery = ( + from, + to, + dataset, + columns + )=> { + const t0 = dayjs(from); + const t1 = dayjs(to); + const range = (t1 - t0)/8.64e7; + let queryString = 'SELECT fips_code as fips, ARRAY (' + let dateRange = [] + for (let i=0; i { + try { + const { + dataset, + from, + to + } = event.queryStringParameters; + + const bigquery = new BigQuery(options); + const columns = await checkCachedColumns(bigquery); + const { + queryString, + dateRange + } = constructTimeQuery( + from, + to, + dataset, + columns + ) + const result = await query(queryString, bigquery) + + return { + statusCode: 200, + body: JSON.stringify({ result, dateRange }) + }; + } catch (error) { + console.log(error); + return { + statusCode: 500, + body: JSON.stringify({ error: 'Failed fetching data' }), + }; + } +}; + +// http://localhost:59632/q?from=2021-01-01&to=2021-02-01&dataset=covid_confirmed_cdc \ No newline at end of file diff --git a/package.json b/package.json index 5235d91ec..ca1f1ad47 100644 --- a/package.json +++ b/package.json @@ -32,6 +32,7 @@ "cors-anywhere": "^0.4.4", "d3-dsv": "^2.0.0", "d3-scale": "^3.2.0", + "dayjs": "^1.10.6", "file-saver": "^2.0.5", "http-terminator": "^3.0.0", "jsgeoda": "^0.2.3", diff --git a/yarn.lock b/yarn.lock index 8da1d3f1d..ae8c312f5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5599,6 +5599,11 @@ data-urls@^2.0.0: whatwg-mimetype "^2.3.0" whatwg-url "^8.0.0" +dayjs@^1.10.6: + version "1.10.6" + resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.10.6.tgz#288b2aa82f2d8418a6c9d4df5898c0737ad02a63" + integrity sha512-AztC/IOW4L1Q41A86phW5Thhcrco3xuAA+YX/BLpLWWjRcTj5TOt/QImBLmCKlrF7u7k47arTnOyL6GnbG8Hvw== + debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" From e5927317e4c5c07ef218ba1e7882be1e10222b70 Mon Sep 17 00:00:00 2001 From: theuscovidatlas Date: Wed, 28 Jul 2021 15:25:57 -0500 Subject: [PATCH 11/40] Update q.js --- functions/q.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/q.js b/functions/q.js index a131a9517..4c0ad90e1 100644 --- a/functions/q.js +++ b/functions/q.js @@ -7,7 +7,7 @@ const options = { "type": "service_account", "project_id": process.env.project_id, "private_key_id": process.env.SK_ID, - "private_key": process.env.SK, + "private_key": process.env.SK.replace(/\\n/gm, '\n'), "client_email": process.env.CLIENT_EMAIL, "client_id": process.env.CLIENT_ID, "auth_uri": "https://accounts.google.com/o/oauth2/auth", @@ -70,7 +70,7 @@ const constructTimeQuery = ( to, dataset, columns - )=> { + ) => { const t0 = dayjs(from); const t1 = dayjs(to); const range = (t1 - t0)/8.64e7; From e3c94597fa31a301138bc411cd4db9b210000b18 Mon Sep 17 00:00:00 2001 From: theuscovidatlas Date: Wed, 28 Jul 2021 15:40:16 -0500 Subject: [PATCH 12/40] Columns fix --- functions/columns.json | 0 columns.json => functions/meta/columns.json | 0 functions/q.js | 52 +++++---------------- 3 files changed, 12 insertions(+), 40 deletions(-) delete mode 100644 functions/columns.json rename columns.json => functions/meta/columns.json (100%) diff --git a/functions/columns.json b/functions/columns.json deleted file mode 100644 index e69de29bb..000000000 diff --git a/columns.json b/functions/meta/columns.json similarity index 100% rename from columns.json rename to functions/meta/columns.json diff --git a/functions/q.js b/functions/q.js index 4c0ad90e1..7bd4388f8 100644 --- a/functions/q.js +++ b/functions/q.js @@ -1,6 +1,6 @@ const {BigQuery} = require('@google-cloud/bigquery'); -const fs = require('fs') -const dayjs = require('dayjs') +const dayjs = require('dayjs'); +const columns = require('./meta/columns.json'); const options = { credentials: { @@ -27,42 +27,6 @@ async function query(query, bigquery) { return await job.getQueryResults(); }; -async function getColumns(bigquery){ - const queryResult = await query( - 'SELECT DISTINCT column_name,table_name FROM `covid-atlas.wide_format`.INFORMATION_SCHEMA.COLUMNS', - bigquery - ) - let availableColumns={} - for (let i=0; i `${x}`.length === 2 ? x : '0'+ x const constructTimeQuery = ( @@ -101,7 +65,14 @@ exports.handler = async (event) => { } = event.queryStringParameters; const bigquery = new BigQuery(options); - const columns = await checkCachedColumns(bigquery); + + if (columns === null) { + return { + statusCode: 500, + body: JSON.stringify({ message: 'Missing column validation' }) + }; + } + const { queryString, dateRange @@ -109,8 +80,9 @@ exports.handler = async (event) => { from, to, dataset, - columns + columns.availableColumns ) + const result = await query(queryString, bigquery) return { From b26e82e436e4f20b95d3c5b62111812be28ff18a Mon Sep 17 00:00:00 2001 From: theuscovidatlas Date: Wed, 28 Jul 2021 15:50:04 -0500 Subject: [PATCH 13/40] Update q.js --- functions/q.js | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/functions/q.js b/functions/q.js index 7bd4388f8..d785d4d84 100644 --- a/functions/q.js +++ b/functions/q.js @@ -33,25 +33,35 @@ const constructTimeQuery = ( from, to, dataset, - columns + columns, + array ) => { const t0 = dayjs(from); const t1 = dayjs(to); const range = (t1 - t0)/8.64e7; - let queryString = 'SELECT fips_code as fips, ARRAY (' + let queryString = 'SELECT fips_code as fips, ' + if (array) queryString += 'ARRAY (' let dateRange = [] + const format = array + ? (datestring) => `SELECT IFNULL(${datestring},-999) UNION ALL ` + : (datestring) => `${datestring}, ` + + const tailFormat = array + ? (queryString, dataset) => queryString.slice(0,-10) + ') as data FROM `covid-atlas.wide_format.' + dataset + '`' + : (queryString, dataset) => queryString.slice(0,-2) + 'FROM `covid-atlas.wide_format.' + dataset + '`' + for (let i=0; i { const { dataset, from, - to + to, + array } = event.queryStringParameters; const bigquery = new BigQuery(options); @@ -80,7 +91,8 @@ exports.handler = async (event) => { from, to, dataset, - columns.availableColumns + columns.availableColumns, + array ) const result = await query(queryString, bigquery) From 21d01239eccf8de7546b519a2e82411ef319c83c Mon Sep 17 00:00:00 2001 From: theuscovidatlas Date: Wed, 28 Jul 2021 15:58:32 -0500 Subject: [PATCH 14/40] Update q.js --- functions/q.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/q.js b/functions/q.js index d785d4d84..5e1a8db5c 100644 --- a/functions/q.js +++ b/functions/q.js @@ -48,7 +48,7 @@ const constructTimeQuery = ( const tailFormat = array ? (queryString, dataset) => queryString.slice(0,-10) + ') as data FROM `covid-atlas.wide_format.' + dataset + '`' - : (queryString, dataset) => queryString.slice(0,-2) + 'FROM `covid-atlas.wide_format.' + dataset + '`' + : (queryString, dataset) => queryString.slice(0,-2) + ' FROM `covid-atlas.wide_format.' + dataset + '`' for (let i=0; i Date: Thu, 19 Aug 2021 13:36:57 -0500 Subject: [PATCH 15/40] Update michigan-schools.csv --- public/csv/michigan-schools.csv | 437 ++++++++++++++++++-------------- 1 file changed, 249 insertions(+), 188 deletions(-) diff --git a/public/csv/michigan-schools.csv b/public/csv/michigan-schools.csv index 774c1b068..a2373c24b 100644 --- a/public/csv/michigan-schools.csv +++ b/public/csv/michigan-schools.csv @@ -1,189 +1,250 @@ Name,description,layer,x,y -Sault Ste Marie Public Schools,,Schools in Michigan - mask policies fall 2021 Decision not announced,-84.3439620,46.4780929 -Dexter Community School District,,Schools in Michigan - mask policies fall 2021 Decision not announced,-83.8822754,42.3347898 -Chelsea School District,,Schools in Michigan - mask policies fall 2021 Decision not announced,-84.0400550,42.3000298 -Dearborn Public Schools,,Schools in Michigan - mask policies fall 2021 Decision not announced,-83.2200280,42.3013966 -Lake Superior State University,,Schools in Michigan - mask policies fall 2021 Decision not announced,-84.3645399,46.4920154 -Potterville Public Schools,"Masks ""permitted""","Schools in Michigan - mask policies fall 2021 Masks not encouraged or just ""permitted""",-84.7440714,42.6371820 -Kingsbury Country Day School,"Masks optional, not specifically recommended","Schools in Michigan - mask policies fall 2021 Masks not encouraged or just ""permitted""",-83.2025535,42.8712514 -Jackson Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.4134041,42.2431338 -Plymouth-Canton Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.4977231,42.3448609 -South Lyon Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.6539439,42.4584571 -Bloomfield Hills School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.2829511,42.5766258 -Birmingham Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.2428813,42.5174939 -Walled Lake Consolidated Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.4800687,42.5422734 -Owosso Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.2161159,43.0149774 -Ovid-Elsie Area Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.3894614,43.0458076 -Wyandotte City School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.1642398,42.2144327 -Grandville Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.7792170,42.9327373 -Port Huron Area School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-82.5309997,43.0486934 -Kentwood Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.6169717,42.8691457 -Taylor Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.2965002,42.2312866 -Schoolcraft Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.6640505,42.1338009 -Livonia Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.3596867,42.3798776 -Woodhaven-Brownstown School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.2629546,42.1480879 -Lake Orion Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.2771565,42.7641565 -Huron Valley School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.5762017,42.6306221 -Troy School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.1555951,42.5919646 -Charlotte Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.8394379,42.6134913 -Waterford School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.4019805,42.6545720 -Warren Consolidated Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.0146557,42.5238396 -Clarkston Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.4462542,42.7357913 -Wayne-Westland Community School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.4144927,42.2944769 -Brighton Area Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.7435064,42.5185819 -Kent ISD,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.5985136,42.9964902 -Eaton Rapids Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.6378068,42.5040714 -Montague Area Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-86.3827819,43.4694015 -Fremont Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.9363495,43.4629420 -Rochester Community School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.1402336,42.6812801 -Van Buren Public Schools/Belleville ,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.4892688,42.2286071 -St Joseph Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-86.4732886,42.0553179 -Lake Shore Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-82.8912234,42.5214642 -Gladwin Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.4914447,43.9839290 -Clare Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.7618300,43.8243156 -Harrison Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.8086227,44.0185523 -Midland Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.2294174,43.6859467 -Napoleon Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.2624164,42.1821007 -Croswell-Lexington School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-82.6156484,43.2066662 -Wayland Union Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.6263542,42.6840047 -Adrian Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.0483623,41.9111316 -West Branch-Rose City Area Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.1933285,44.3274297 -Rockford Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.5640938,43.1293218 -Utica Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.0173835,42.6335137 -Hastings Area School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.2663657,42.5921434 -Novi Community School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.4771635,42.4738576 -East China School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-82.5868376,42.7615004 -Marysville Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-82.5520176,42.9061539 -St. Johns Public School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.5663790,42.9913608 -Clarenceville School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.3316217,42.4406380 -Harper Creek Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.1299722,42.2332920 -Zeeland Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.9991404,42.8106235 -Pennfield School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.1302572,42.3885390 -Hamilton Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-86.0159739,42.6824853 -Plainwell Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.5916038,42.4482010 -Grosse Ile Township Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.1395671,42.1355338 -Traverse City Area Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.7337144,44.7324849 -Grass Lake Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.2075327,42.2671907 -Grosse Pointe Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-82.8969086,42.4385159 -Landmark Academy,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-82.5176144,42.9845986 -Da Vinci Institute schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.4513734,42.2781779 -Bay City School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.0619172,43.6768051 -Plymouth Christian Academy ,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.4655053,42.3485786 -Mattawan Consolidated School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.7962226,42.2132480 -Airport Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.3589830,42.0649969 -Vicksburg Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.4611805,42.1269304 -Northwest Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.4637139,42.3331673 -Portage Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.6235503,42.2202960 -Marshall Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.9576593,42.2705698 -Macomb Community College,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-82.9734095,42.5053532 -Lamphere Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.1056321,42.5156390 -Dundee Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.6566060,41.9634212 -Hartland Consolidated Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.7640067,42.6346150 -Mio Ausable Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.1442676,44.6532338 -Fraser Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-82.9457295,42.5443714 -South Canton Scholars Charter School,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.4847119,42.2842386 -Morrice Area Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.1710038,42.8529772 -Kenowa Hills Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.7456147,43.0366790 -Plymouth Scholars Charter Academy,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.5207990,42.3773183 -Manchester Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.0385420,42.1802924 -Brandon School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.4016822,42.8508388 -Maple Valley Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.0546874,42.6117350 -Rogers City Area Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.8195376,45.4202843 -Bullock Creek School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.2935299,43.5700187 -Canton Charter Academy,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.5236534,42.3225604 -Achieve Charter Academy,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.5276520,42.2815820 -University of Michigan,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.7103295,42.2518751 -Wayne State University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.0680332,42.3610415 -Michigan State University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-84.4491580,42.7499966 -University of Michigan-Dearborn,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.2327030,42.3175930 -University of Michigan-Flint,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.6888414,43.0198705 -University of Detroit Mercy,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.1380813,42.4141696 -Grand Valley State University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-85.8913223,42.9624705 -Saginaw Valley State University,"Vaccinated people can remove masks when together in a conference room, by mutual consent, as well as in closed offices when alone.",Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.9629364,43.5143044 -Oakland University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.2088101,42.6678068 -Lansing Community College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-84.5511620,42.7381133 -Alpena Community College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.4446735,45.0812718 -Lawrence Technological University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.2506414,42.4747714 -Wayne State University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.0808822,42.3794716 -Jackson Community College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-84.4063734,42.1639735 -Eastern Michigan University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.6245435,42.2508591 -Hope College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-86.1027730,42.7875370 -Calvin University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-85.5825312,42.9328955 -Western Michigan University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-85.6155423,42.2831712 -Central Michigan University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-84.7781541,43.5827075 -Northern Michigan University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-87.4084618,46.5602113 -Michigan Technological University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-88.5470922,47.1192940 -Aquinas College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-85.6263499,42.9604042 -Delta College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.9860378,43.5585625 -Oakland Community College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.2233506,42.6469874 -Henry Ford Community College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.2376903,42.3241415 -Bay Community College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-87.0853412,45.7730302 -Kalamazoo College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-85.5982660,42.2900598 -Washtenaw Community College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.6642095,42.2628232 -Grand Rapids Community College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-85.6667778,42.9669375 -Detroit Public Schools,REQUIRED,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.0676273,42.3615470 -Detroit Country Day School,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.2653933,42.5159273 -Grand Rapids Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-85.6688558,42.9574780 -Lansing Public School District,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-84.5466205,42.7544141 -Ann Arbor Public Schools,REQUIRED,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.7350467,42.2884436 -Mount Clemens Community Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-82.8833880,42.5970831 -Ypsilanti Community Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.6250221,42.2476193 -Flint Community Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.6957225,43.0174558 -East Lansing Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-84.4722476,42.7399127 -Kalamazoo Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-85.6251799,42.2921191 -Haslett Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-84.3886204,42.7567776 -Holt Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-84.6212532,42.6706582 -Benton Harbor Area Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-86.3907921,42.0913180 -Hamtramck Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.0495188,42.3930301 -South Arbor Charter Academy,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.6815092,42.1689783 -Okemos Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-84.4569526,42.6847031 -Spring Lake Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-86.1037867,43.0593484 -Ferndale Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.1494934,42.4524945 -New Morning School ,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.4440959,42.3885959 -Hazel Park Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.1148897,42.4683977 -Arts Academy in the Woods,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-82.9520243,42.5325256 -Royal Oak Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.1351761,42.5147334 -Oak Park Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.1854181,42.4576983 -Cesar Chavez Academy Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.1147736,42.3119408 -Berkley School District,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.1915312,42.4846357 -The Roeper School,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.2530583,42.5932839 -Midland County ESA,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-84.2276653,43.6330534 -Grand Ledge Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-84.7489178,42.7497252 -Battle Creek Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-85.1803713,42.3208039 -Fortis Academy,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.6599451,42.2328251 -East Arbor Charter Academy,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.6223414,42.1885648 -South Pointe Scholars Academy,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.5528724,42.2759329 -Saline Area Schools,"Requires masks for 6th grade and below when CDC risk level is Low or moderate, and masks for all indoors when risk level is Substantial or High",Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.7495465,42.1881389 -Fenton Area Public Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.7007918,42.7486121 -Farmington Public Schools,Masks required when Oakland County is orange or red on CDC map,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.3615127,42.4637277 -Bentley Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.5986233,43.0201506 -Forest Hills Public Schools,Masks required for all children and unvaccinated people in preK-6 schools,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-85.5071547,42.9549184 -Gaylord Community Schools,K-6 parents can opt to have their child placed in a classroom where masks are required,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-84.7124480,44.9919464 -Mount Pleasant Public Schools,Masks required up to age 12,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-84.7697909,43.6101901 -Mount Morris Consolidated School District,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.6886022,43.1269800 -Atherton Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.6309644,42.9835312 -Grand Blanc Public Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.6162384,42.9384273 -Whitmore Lake Public Schools,"At Substantial risk (orange) on CDC map: Masks required for all adults and children in pre-K through 6. At High (red) level, masks required for all. At Moderate (Yellow) or Low (Blue), masks optional",Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.7839514,42.4213630 -Flushing Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.8712263,43.0709789 -Genesee School District,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.6109943,43.1173384 -Northville Public Schools,"Required for staff who do not voluntarily submit proof of vaccination;  strongly recommended for students and vaccinated staff",Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.4759230,42.4264255 -Davison Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.5268985,43.0106828 -Lincoln Consolidated Schools,Masks required for all in K-12 when county is at Substantial (orange) or High (red) level on CDC map. Required for all in K-6 when county is at Substantial (yellow).,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.6020013,42.1580538 -LakeVille Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.4441824,43.1602566 -Carman-Ainsworth Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.7330011,42.9742349 -Clio Area School District,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.7445546,43.1786464 -Beecher Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.7002027,43.1012413 -Westwood Heights Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.7534525,43.0724613 -Lake Fenton Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.7334867,42.8592972 -Kearsley Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.6167751,43.0558744 -Swartz Creek Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.8336497,42.9527456 -Linden Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.8293169,42.7946204 -Williamston Community School District,"Masks required for unvaccinated staff, recommended for all students and vaccinated staff",Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-84.2925026,42.7035795 -Bendle Public Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.6714372,42.9757556 -Goodrich Area Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.5322412,42.9172093 -Montrose Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.8867209,43.1807941 -Milan Area Schools,"Masks required of all when Washtenaw County is red or orange on the CDC map; required of K-6 students and adults when county is yellow on map",Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.7028699,42.0786931 -Ferris State University,Masks required for unvaccinated individuals,Schools in Michigan - mask policies fall 2021 Partial requirement - higher education (see notes on pin),-85.4853948,43.6842175 -Schoolcraft College,Masks required for unvaccinated students & employees,Schools in Michigan - mask policies fall 2021 Partial requirement - higher education (see notes on pin),-83.4294933,42.4204804 -Siena Heights University,Required for unvaccinated people,Schools in Michigan - mask policies fall 2021 Partial requirement - higher education (see notes on pin),-84.0164296,41.9045729 -Muskegon Community College,Masks for unvaccinated people,Schools in Michigan - mask policies fall 2021 Partial requirement - higher education (see notes on pin),-86.1966120,43.2496542 +Chelsea School District,,Schools in Michigan - mask policies fall 2021 Decision not announced,-84.040055,42.300030 +Cranbrook Schools,,Schools in Michigan - mask policies fall 2021 Decision not announced,-83.251711,42.567628 +Dearborn Public Schools,,Schools in Michigan - mask policies fall 2021 Decision not announced,-83.220028,42.301397 +Lake Superior State University,,Schools in Michigan - mask policies fall 2021 Decision not announced,-84.342573,46.484468 +West Bloomfield School District,,Schools in Michigan - mask policies fall 2021 Decision not announced,-83.398125,42.590577 +Kingsbury Country Day School,"Masks optional, not specifically recommended","Schools in Michigan - mask policies fall 2021 Masks not encouraged or just ""permitted""",-83.202554,42.871251 +Potterville Public Schools,"Masks ""permitted""","Schools in Michigan - mask policies fall 2021 Masks not encouraged or just ""permitted""",-84.744071,42.637182 +Achieve Charter Academy,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.527652,42.281582 +Adrian Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.048362,41.911132 +Airport Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.358983,42.064997 +Bay City School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.061917,43.676805 +Brandon School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.401682,42.850839 +Brighton Area Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.743506,42.518582 +Bullock Creek School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.293530,43.570019 +Canton Charter Academy,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.523653,42.322560 +Charlotte Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.839438,42.613491 +Chippewa Valley Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-82.938673,42.635979 +Clare Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.761830,43.824316 +Clarenceville School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.331622,42.440638 +Clarkston Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.446254,42.735791 +Clawson Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.155565,42.537933 +Croswell-Lexington School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-82.615648,43.206666 +Da Vinci Institute schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.451373,42.278178 +Dansville Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.312917,42.527786 +Davenport University,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.530584,42.849449 +Dundee Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.656606,41.963421 +East China School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-82.586838,42.761500 +Escanaba Area Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-87.194849,45.755950 +Fraser Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-82.945730,42.544371 +Fremont Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.936350,43.462942 +Fruitport Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-86.117238,43.133791 +Gladwin Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.491445,43.983929 +Grand Rapids Christian Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.623325,42.919536 +Grand Traverse Academy,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.553190,44.717905 +Grandville Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.779217,42.932737 +Grass Lake Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.207533,42.267191 +Greenville Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.275823,43.189108 +Grosse Ile Township Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.139567,42.135534 +Grosse Pointe Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-82.896909,42.438516 +Harper Creek Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.129972,42.233292 +Harrison Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.808623,44.018552 +Hartland Consolidated Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.764007,42.634615 +Hastings Area School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.266366,42.592143 +Holly Area School District ,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.576757,42.786420 +Huron Valley School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.576202,42.630622 +Jackson Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.413404,42.243134 +Jenison Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.818713,42.913988 +Kenowa Hills Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.745615,43.036679 +Kent ISD,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.598514,42.996490 +Lake Orion Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.277157,42.764157 +Lake Shore Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-82.891223,42.521464 +Lakeshore School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-86.482664,42.004840 +Lamphere Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.105632,42.515639 +Landmark Academy,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-82.517614,42.984599 +Livonia Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.359687,42.379878 +Manchester Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.038542,42.180292 +Maple Valley Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.054687,42.611735 +Marshall Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.957659,42.270570 +Marysville Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-82.552018,42.906154 +Mason Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.445823,42.578972 +Mattawan Consolidated School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.796223,42.213248 +Midland Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.229417,43.685947 +Millington Community School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.518333,43.274005 +Mio Ausable Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.144268,44.653234 +Mona Shores Public School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-86.248613,43.171426 +Montague Area Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-86.382782,43.469402 +Morrice Area Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.171004,42.852977 +Napoleon Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.262416,42.182101 +North Branch Area Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.196353,43.227961 +North Muskegon Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-86.268844,43.257172 +Northwest Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.463714,42.333167 +Norton Shores Public School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-86.268596,43.162678 +Novi Community School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.477164,42.473858 +Ovid-Elsie Area Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.389461,43.045808 +Owosso Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.216116,43.014977 +Pennfield School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.130257,42.388539 +Pinckney Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.913074,42.449567 +Plymouth-Canton Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.497723,42.344861 +Plymouth Christian Academy ,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.465505,42.348579 +Plymouth Scholars Charter Academy,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.520799,42.377318 +Port Huron Area School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-82.531000,43.048693 +Rochester Community School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.140234,42.681280 +Rockford Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.564094,43.129322 +Rogers City Area Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.819538,45.420284 +Romeo Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.012831,42.805953 +St. Johns Public School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.566379,42.991361 +St Joseph Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-86.473289,42.055318 +Sault Ste Marie Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.278042,46.462996 +South Canton Scholars Charter School,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.484712,42.284239 +South Lyon Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.653944,42.458457 +Taylor Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.296500,42.231287 +Tawas Area Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.534255,44.278788 +Traverse City Area Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.733714,44.732485 +Triumph Academy,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.362180,41.953784 +Troy School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.155595,42.591965 +Utica Community Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.017384,42.633514 +Van Buren Public Schools/Belleville ,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.489269,42.228607 +Vassar Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.587815,43.379713 +Walled Lake Consolidated Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.480069,42.542273 +Warren Consolidated Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.014656,42.523840 +Waterford School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.401981,42.654572 +Wayne-Westland Community School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.414493,42.294477 +West Branch-Rose City Area Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-84.193329,44.327430 +Woodhaven-Brownstown School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.262955,42.148088 +Wyandotte City School District,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-83.164240,42.214433 +Zeeland Public Schools,,Schools in Michigan - mask policies fall 2021 Masks recommended/not required,-85.999140,42.810624 +Alma College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-84.672875,43.380751 +Alpena Community College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.444674,45.081272 +Aquinas College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-85.626350,42.960404 +Bay Community College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-87.085341,45.773030 +Calvin University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-85.582531,42.932896 +Central Michigan University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-84.778154,43.582708 +Delta College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.986038,43.558563 +Eastern Michigan University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.624544,42.250859 +Grand Rapids Community College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-85.666778,42.966938 +Grand Valley State University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-85.891322,42.962471 +Henry Ford College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.237690,42.324142 +Hope College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-86.102773,42.787537 +Jackson Community College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-84.406373,42.163974 +Kalamazoo College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-85.598266,42.290060 +Lansing Community College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-84.551162,42.738113 +Lawrence Technological University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.250641,42.474771 +Macomb Community College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-82.973410,42.505353 +Michigan State University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-84.449158,42.749997 +Michigan Technological University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-88.547092,47.119294 +Muskegon Community College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-86.196612,43.249654 +North Central Michigan College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-84.955476,45.362318 +Northern Michigan University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-87.408462,46.560211 +Northwestern Michigan College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-85.582509,44.765927 +Oakland Community College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.223351,42.646987 +Oakland University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.208810,42.667807 +Saginaw Valley State University,"Vaccinated people can remove masks when together in a conference room, by mutual consent, as well as in closed offices when alone.",Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.962936,43.514304 +St Clair Community College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-82.814453,43.317860 +University of Detroit Mercy,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.138081,42.414170 +University of Michigan,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.710330,42.251875 +University of Michigan-Dearborn,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.232703,42.317593 +University of Michigan-Flint,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.688841,43.019871 +Wayne State University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.080882,42.379472 +Western Michigan University,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-85.615542,42.283171 +Washtenaw Community College,,Schools in Michigan - mask policies fall 2021 Masks required - higher education,-83.664210,42.262823 +Allen Park Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.213041,42.247366 +Ann Arbor Public Schools,REQUIRED,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.735047,42.288444 +Arts Academy in the Woods,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-82.952024,42.532526 +Barry Intermediate School District,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-85.293918,42.661478 +Battle Creek Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-85.180371,42.320804 +Benton Harbor Area Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-86.390792,42.091318 +Berkley School District,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.191531,42.484636 +Birmingham Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.242881,42.517494 +Bloomfield Hills School District,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.282951,42.576626 +Cesar Chavez Academy Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.114774,42.311941 +The Children's House Montessori,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-85.682664,44.744014 +Dearborn Academy,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.228312,42.330832 +Detroit Public Schools,REQUIRED,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.067627,42.361547 +Detroit Country Day School,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.265393,42.515927 +DeWitt Public Schools,"Masks required for all at High (Red) level on CDC map. At Substantial (Orange) level, masks required for students and staff at grade 8 and below, and recommended for all others. At Moderate (Yellow) level, masks recommended for all.","Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-84.585409,42.833786 +Dexter Community School District,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.882275,42.334790 +East Arbor Charter Academy,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.622341,42.188565 +East Lansing Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-84.472248,42.739913 +Eaton Rapids Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-84.637807,42.504071 +Ferndale Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.149493,42.452495 +Flint Community Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.695723,43.017456 +Fortis Academy,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.659945,42.232825 +Grand Blanc Montessori,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.693331,42.914591 +Grand Haven Area Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-86.197228,43.014844 +Grand Ledge Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-84.748918,42.749725 +Grand Rapids Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-85.668856,42.957478 +Hamtramck Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.049519,42.393030 +Haslett Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-84.388620,42.756778 +Hazel Park Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.114890,42.468398 +Henry Ford Academy,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.234946,42.302701 +Holland Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-86.121886,42.775487 +Holt Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-84.621253,42.670658 +Immaculate Heart of Mary School,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-84.547752,42.693025 +Ingham Intermediate School District ,Applies to ISD facilities and programs it runs in other districts,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-84.447677,42.597597 +Kalamazoo Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-85.625180,42.292119 +Kentwood Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-85.644145,42.858009 +Lakeview School District,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-85.220127,42.285070 +Lansing Public School District,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-84.546621,42.754414 +Maple Tree Montessori Academy,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.756491,42.560583 +Melvindale-Northern Allen Park Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.185558,42.279678 +Midland County ESA,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-84.227665,43.633053 +Monroe Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.386064,41.932172 +Mount Clemens Community Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-82.883388,42.597083 +New Morning School ,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.444096,42.388596 +Oak Park Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.185418,42.457698 +Oakland Schools Technical Campuses,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.264354,42.666963 +Okemos Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-84.456953,42.684703 +School District of the City of Pontiac,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.288039,42.635284 +Royal Oak Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.135176,42.514733 +South Arbor Charter Academy,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.681509,42.168978 +South Pointe Scholars Academy,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.552872,42.275933 +Southfield Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.264332,42.466388 +Spring Lake Public Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-86.103787,43.059348 +Summers Knoll School,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.699880,42.255525 +The Roeper School,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.253058,42.593284 +University Liggett School,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-82.900855,42.424328 +Waverly Community Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-84.616075,42.728843 +Ypsilanti Community Schools,,"Schools in Michigan - mask policies fall 2021 Masks required - public, private & charter K-12 schools",-83.625022,42.247619 +Allegan Public Schools,Required for all in K-6 by public health order https://www.kalcounty.com/userfiles/hcs/mediareleases/08.18.21%20Allegan%20and%20Kalamazoo%20Counties%20Issue%20Orders%20for%20Educational%20Settings.pdf,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-85.893078,42.513440 +Atherton Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.630964,42.983531 +Beecher Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.700203,43.101241 +Bendle Public Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.671437,42.975756 +Bentley Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.598623,43.020151 +Carman-Ainsworth Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.733001,42.974235 +Climax-Scotts Community School District,Required for all in K-6 by public health order https://www.kalcounty.com/userfiles/hcs/mediareleases/08.18.21%20Allegan%20and%20Kalamazoo%20Counties%20Issue%20Orders%20for%20Educational%20Settings.pdf,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-85.336592,42.199383 +Clio Area School District,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.744555,43.178646 +Comstock Public Schools,Required for all in K-6 by public health order https://www.kalcounty.com/userfiles/hcs/mediareleases/08.18.21%20Allegan%20and%20Kalamazoo%20Counties%20Issue%20Orders%20for%20Educational%20Settings.pdf,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-85.541511,42.313058 +Davison Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.526899,43.010683 +Farmington Public Schools,Masks required when Oakland County is orange or red on CDC map,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.361513,42.463728 +Fennville Public Schools,Required for all in K-6 by public health order https://www.kalcounty.com/userfiles/hcs/mediareleases/08.18.21%20Allegan%20and%20Kalamazoo%20Counties%20Issue%20Orders%20for%20Educational%20Settings.pdf,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-86.115178,42.545944 +Fenton Area Public Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.700792,42.748612 +Flushing Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.871226,43.070979 +Forest Hills Public Schools,Masks required for all children and unvaccinated people in preK-6 schools,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-85.507155,42.954918 +Galesburg-Augusta Community Schools,Required for all in K-6 by public health order https://www.kalcounty.com/userfiles/hcs/mediareleases/08.18.21%20Allegan%20and%20Kalamazoo%20Counties%20Issue%20Orders%20for%20Educational%20Settings.pdf,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-85.362224,42.339020 +Gaylord Community Schools,K-6 parents can opt to have their child placed in a classroom where masks are required,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-84.712448,44.991946 +Genesee School District,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.610994,43.117338 +Goodrich Area Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.532241,42.917209 +Grand Blanc Public Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.616238,42.938427 +Gull Lake Community Schools,Required for all in K-6 by public health order https://www.kalcounty.com/userfiles/hcs/mediareleases/08.18.21%20Allegan%20and%20Kalamazoo%20Counties%20Issue%20Orders%20for%20Educational%20Settings.pdf,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-85.433745,42.375743 +Hamilton Community Schools,Required for all in K-6 by public health order https://www.kalcounty.com/userfiles/hcs/mediareleases/08.18.21%20Allegan%20and%20Kalamazoo%20Counties%20Issue%20Orders%20for%20Educational%20Settings.pdf,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-86.015974,42.682485 +Hopkins Public School District,Required for all in K-6 by public health order https://www.kalcounty.com/userfiles/hcs/mediareleases/08.18.21%20Allegan%20and%20Kalamazoo%20Counties%20Issue%20Orders%20for%20Educational%20Settings.pdf,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-85.760821,42.617788 +Kalamazoo RESA,Required for all in K-6 by public health order https://www.kalcounty.com/userfiles/hcs/mediareleases/08.18.21%20Allegan%20and%20Kalamazoo%20Counties%20Issue%20Orders%20for%20Educational%20Settings.pdf,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-85.646802,42.303563 +Kearsley Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.616775,43.055874 +Lake Fenton Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.733487,42.859297 +LakeVille Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.444182,43.160257 +Lincoln Consolidated Schools,Masks required for all in K-12 when county is at Substantial (orange) or High (red) level on CDC map. Required for all in K-6 when county is at Substantial (yellow).,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.602001,42.158054 +Linden Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.829317,42.794620 +Martin Public School District,Required for all in K-6 by public health order https://www.kalcounty.com/userfiles/hcs/mediareleases/08.18.21%20Allegan%20and%20Kalamazoo%20Counties%20Issue%20Orders%20for%20Educational%20Settings.pdf,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-85.637238,42.536124 +Milan Area Schools,"Masks required of all when Washtenaw County is red or orange on the CDC map; required of K-6 students and adults when county is yellow on map",Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.702870,42.078693 +Montrose Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.886721,43.180794 +Mount Morris Consolidated School District,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.688602,43.126980 +Mount Pleasant Public Schools,Masks required up to age 12,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-84.769791,43.610190 +Northville Public Schools,"Required for staff who do not voluntarily submit proof of vaccination;  strongly recommended for students and vaccinated staff",Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.475923,42.426426 +Otsego Public Schools,Required for all in K-6 by public health order https://www.kalcounty.com/userfiles/hcs/mediareleases/08.18.21%20Allegan%20and%20Kalamazoo%20Counties%20Issue%20Orders%20for%20Educational%20Settings.pdf,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-85.712072,42.455229 +Parchment School District,Required for all in K-6 by public health order https://www.kalcounty.com/userfiles/hcs/mediareleases/08.18.21%20Allegan%20and%20Kalamazoo%20Counties%20Issue%20Orders%20for%20Educational%20Settings.pdf,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-85.561118,42.330657 +Plainwell Community Schools,Required for all in K-6 by public health order https://www.kalcounty.com/userfiles/hcs/mediareleases/08.18.21%20Allegan%20and%20Kalamazoo%20Counties%20Issue%20Orders%20for%20Educational%20Settings.pdf,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-85.591604,42.448201 +Portage Public Schools,Required for all in K-6 by public health order https://www.kalcounty.com/userfiles/hcs/mediareleases/08.18.21%20Allegan%20and%20Kalamazoo%20Counties%20Issue%20Orders%20for%20Educational%20Settings.pdf,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-85.623550,42.220296 +Saline Area Schools,"Requires masks for 6th grade and below when CDC risk level is Low or moderate, and masks for all indoors when risk level is Substantial or High",Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.749547,42.188139 +Saugatuck Public Schools,Required for all in K-6 by public health order https://www.kalcounty.com/userfiles/hcs/mediareleases/08.18.21%20Allegan%20and%20Kalamazoo%20Counties%20Issue%20Orders%20for%20Educational%20Settings.pdf,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-86.204876,42.641589 +Schoolcraft Community Schools,Required for all in K-6 by public health order https://www.kalcounty.com/userfiles/hcs/mediareleases/08.18.21%20Allegan%20and%20Kalamazoo%20Counties%20Issue%20Orders%20for%20Educational%20Settings.pdf,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-85.664051,42.133801 +Swartz Creek Community Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.833650,42.952746 +Vicksburg Community Schools,Required for all in K-6 by public health order https://www.kalcounty.com/userfiles/hcs/mediareleases/08.18.21%20Allegan%20and%20Kalamazoo%20Counties%20Issue%20Orders%20for%20Educational%20Settings.pdf,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-85.461181,42.126930 +Wayland Union Schools,Required for all in K-6 by public health order https://www.kalcounty.com/userfiles/hcs/mediareleases/08.18.21%20Allegan%20and%20Kalamazoo%20Counties%20Issue%20Orders%20for%20Educational%20Settings.pdf,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-85.626354,42.684005 +Westwood Heights Schools,Subject to Genessee County Public Health order requiring masks for K-6 students and all interacting with them: https://www.gchd.us/wp-content/uploads/2021/08/GCHD-Masking-Final-Medical-Health-Officer-PBH-August-12.-2021-004.pdf?fbclid=IwAR3goDvofU2peWV7Lr7t2vFuud50eaSq27Cpv3gXG24oXidjzyVVNJxsuTw,Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.753453,43.072461 +Whitmore Lake Public Schools,"At Substantial risk (orange) on CDC map: Masks required for all adults and children in pre-K through 6. At High (red) level, masks required for all. At Moderate (Yellow) or Low (Blue), masks optional",Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-83.783951,42.421363 +Williamston Community School District,"Masks required for unvaccinated staff, recommended for all students and vaccinated staff",Schools in Michigan - mask policies fall 2021 Partial requirement K-12 (see notes on each pin),-84.292503,42.703580 +Ferris State University,Masks required for unvaccinated individuals,Schools in Michigan - mask policies fall 2021 Partial requirement - higher education (see notes on pin),-85.485395,43.684218 +Schoolcraft College,Masks required for unvaccinated students & employees,Schools in Michigan - mask policies fall 2021 Partial requirement - higher education (see notes on pin),-83.429493,42.420480 +Siena Heights University,Required for unvaccinated people,Schools in Michigan - mask policies fall 2021 Partial requirement - higher education (see notes on pin),-84.016430,41.904573 From 8892078825c69b2d8e23a70b6df9dc62f5f58111 Mon Sep 17 00:00:00 2001 From: theuscovidatlas Date: Thu, 19 Aug 2021 15:38:18 -0500 Subject: [PATCH 16/40] Time Series Function --- functions/qTimeseries.js | 148 +++++++++++++++++++++++++++++++++++++++ src/hooks/useBigQuery.js | 4 ++ 2 files changed, 152 insertions(+) create mode 100644 functions/qTimeseries.js create mode 100644 src/hooks/useBigQuery.js diff --git a/functions/qTimeseries.js b/functions/qTimeseries.js new file mode 100644 index 000000000..06cd511d0 --- /dev/null +++ b/functions/qTimeseries.js @@ -0,0 +1,148 @@ +const {BigQuery} = require('@google-cloud/bigquery'); +const columns = require('./meta/columns.json'); + +const options = { + credentials: { + "type": "service_account", + "project_id": process.env.project_id, + "private_key_id": process.env.SK_ID, + "private_key": process.env.SK.replace(/\\n/gm, '\n'), + "client_email": process.env.CLIENT_EMAIL, + "client_id": process.env.CLIENT_ID, + "auth_uri": "https://accounts.google.com/o/oauth2/auth", + "token_uri": "https://oauth2.googleapis.com/token", + "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", + "client_x509_cert_url": process.env.client_x509_cert_url + }, + projectId: process.env.project_id, +}; + +async function query(query, bigquery) { + const options = { + query, + location: 'US', + }; + const [job] = await bigquery.createQueryJob(options); + return await job.getQueryResults(); +}; + +const zip = (result, dateRange, indvData=false) => { + let returnCollection = [] + + const vals = Object.values(result[0][0]) + + const indvVals = indvData + ? indvData[0].map(t => Object.values(t).slice(1,)) + : null + + const indvKeys = indvData + ? indvData[0].map(t => t['fips_code']) + : null + + const indvFunc = indvData + ? (indvVals, indvKeys, i) => { + for (let n=0; n {} + + for (let i=0; i { + let queryString = 'SELECT ' + let dateRange = [] + const currColumns = columns[dataset] + if (allSeries) { + queryString += 'fips_code, ' + for (let i=0; i 1) queryString += ' where fips_code IN (' + geoid.join(',') + ')' + + return { + queryString, + dateRange + } +} + + + +exports.handler = async (event) => { + try { + const { + dataset, + geoid + } = event.queryStringParameters; + const idArray = geoid ? JSON.parse(geoid) : false; + + const bigquery = new BigQuery(options); + + const { + queryString, + dateRange + } = constructTimeQuery( + 'public.' + dataset, + idArray + ) + if (idArray && idArray.length > 1) { + + const indQuery = constructTimeQuery( + 'public.' + dataset, + idArray, + true + ) + + const [resultSum, resultIndividual] = await Promise.all([query(queryString, bigquery), query(indQuery.queryString, bigquery)]) + const data = zip(resultSum, dateRange, resultIndividual) + return { + statusCode: 200, + body: JSON.stringify({ data }) + }; + } else { + const result = await query(queryString, bigquery) + const data = zip(result, dateRange) + return { + statusCode: 200, + body: JSON.stringify({ data }) + }; + } + } catch (error) { + console.log(error); + return { + statusCode: 500, + body: JSON.stringify({ error: 'Failed fetching data' }), + }; + } +}; \ No newline at end of file diff --git a/src/hooks/useBigQuery.js b/src/hooks/useBigQuery.js new file mode 100644 index 000000000..72183d5a9 --- /dev/null +++ b/src/hooks/useBigQuery.js @@ -0,0 +1,4 @@ + +// export default function useBigQuery(){ + +// } \ No newline at end of file From 6fdd80b000044c490c7267ce315798afbafd536a Mon Sep 17 00:00:00 2001 From: theuscovidatlas Date: Thu, 19 Aug 2021 17:59:04 -0500 Subject: [PATCH 17/40] Create qLastMonth.js --- functions/qLastMonth.js | 83 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 functions/qLastMonth.js diff --git a/functions/qLastMonth.js b/functions/qLastMonth.js new file mode 100644 index 000000000..d0c313bcc --- /dev/null +++ b/functions/qLastMonth.js @@ -0,0 +1,83 @@ +const {BigQuery} = require('@google-cloud/bigquery'); +const columns = require('./meta/columns.json'); + +const options = { + credentials: { + "type": "service_account", + "project_id": process.env.project_id, + "private_key_id": process.env.SK_ID, + "private_key": process.env.SK.replace(/\\n/gm, '\n'), + "client_email": process.env.CLIENT_EMAIL, + "client_id": process.env.CLIENT_ID, + "auth_uri": "https://accounts.google.com/o/oauth2/auth", + "token_uri": "https://oauth2.googleapis.com/token", + "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", + "client_x509_cert_url": process.env.client_x509_cert_url + }, + projectId: process.env.project_id, +}; + +async function query(query, bigquery) { + const options = { + query, + location: 'US', + }; + const [job] = await bigquery.createQueryJob(options); + return await job.getQueryResults(); +}; + +const constructQuery = (datasets, days=30) => { + let queryStrings = [] + datasets.forEach(dataset => { + const currColumns = columns['public.' + dataset]; + const dateRange = currColumns.slice(-days,).map(col => col[0] === '_' ? col.slice(1,).replace(/_/g, '-') : col) + queryStrings.push({ + query: `SELECT fips_code as id, ARRAY(SELECT IFNULL(${currColumns.slice(-days,).join(',-999) UNION ALL SELECT IFNULL( ')},-999)) as data from covid-atlas.public.${dataset}`, + dataset, + dateRange + }) + }) + + return { + queryStrings, + } +} + + + +exports.handler = async (event) => { + try { + const { + datasets, + days + } = event.queryStringParameters; + console.log(datasets) + const datasetsArray = JSON.parse(datasets) + const bigquery = new BigQuery(options); + + const { + queryStrings + } = constructQuery( + datasetsArray, + days||30 + ) + const results = await Promise.all(queryStrings.map(entry => query(entry.query, bigquery))) + + const parsed = results.map((result, idx) => {return { + data: result, + dataset: queryStrings[idx].dataset, + dateRange: queryStrings[idx].dateRange, + }}) + + return { + statusCode: 200, + body: JSON.stringify({ data: parsed }) + }; + } catch (error) { + console.log(error); + return { + statusCode: 500, + body: JSON.stringify({ error: 'Failed fetching data' }), + }; + } +}; \ No newline at end of file From 915755780defab479cdf7304abd71322c2a3501b Mon Sep 17 00:00:00 2001 From: theuscovidatlas Date: Fri, 20 Aug 2021 16:35:34 -0500 Subject: [PATCH 18/40] Snapshot initial load --- functions/_query.js | 90 ++++++++++++++++ functions/qLastMonth.js | 83 -------------- functions/qTimeseries.js | 3 +- functions/query.js | 226 ++++++++++++++++++++++++++++----------- src/config/index.js | 2 + src/hooks/useBigQuery.js | 24 ++++- src/hooks/useLoadData.js | 12 ++- 7 files changed, 287 insertions(+), 153 deletions(-) create mode 100644 functions/_query.js delete mode 100644 functions/qLastMonth.js diff --git a/functions/_query.js b/functions/_query.js new file mode 100644 index 000000000..e6810da74 --- /dev/null +++ b/functions/_query.js @@ -0,0 +1,90 @@ +const jsgeoda = require('jsgeoda'); +const {BigQuery} = require('@google-cloud/bigquery'); + +const options = { + credentials: { + "type": "service_account", + "project_id": process.env.project_id, + "private_key_id": process.env.SK_ID, + "private_key": process.env.SK.replace(/\\n/gm, '\n'), + "client_email": process.env.CLIENT_EMAIL, + "client_id": process.env.CLIENT_ID, + "auth_uri": "https://accounts.google.com/o/oauth2/auth", + "token_uri": "https://oauth2.googleapis.com/token", + "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", + "client_x509_cert_url": process.env.client_x509_cert_url + }, + projectId: process.env.project_id, +}; + +async function query(queryString, bigquery) { + const options = { + query: queryString, + location: 'US', + }; + const [job] = await bigquery.createQueryJob(options); + return await job.getQueryResults(); +}; + +function orderData(data, idColumn, idOrder, dataColumn){ + let result = []; + let indexed = {}; + + for (let i=0; i { + try { + if (event.queryStringParameters.lisa == 'true') { + const bigquery = new BigQuery(options); + const [geoda, raw] = await Promise.all([ + jsgeoda.New(), + query( + event.queryStringParameters.q, + bigquery) + ]); + const uid = geoda.readGeoJSON(geom); + const data = orderData( + raw[0], + idColumn, + geoidOrder, + dataColumn + ) + const weights = geoda.getQueenWeights(uid) + return { statusCode: 200, body: JSON.stringify({ localMoran: geoda.localMoran(weights, data) }) + }; + } else { + const bigquery = new BigQuery(options); + const result = await query( + event.queryStringParameters.q, + bigquery); + return { statusCode: 200, body: JSON.stringify({ result }) }; + } + + } catch (error) { + console.log(error); + return { + statusCode: 500, + body: JSON.stringify({ error: 'Failed fetching data' }), + }; + } +}; + +var geoidOrder = [31039,53069,35011,31109,31129,72085,46099,48327,6091,21053,39063,48189,1027,48011,39003,13189,55111,5137,41063,42007,28061,29083,8109,37037,49033,40001,39085,51775,51121,47065,35035,35003,1091,56023,29011,48057,51735,54075,48077,51095,31101,31137,22019,22111,40135,1049,36101,42053,22105,51179,26109,18073,13025,13171,18151,48361,39047,25015,21003,37001,20073,25025,16051,48177,47115,26007,21231,47185,48147,20043,48265,12053,12129,12131,28017,2130,26035,20157,12127,40017,72115,13115,32001,31181,17067,46067,41013,50011,26103,9007,37057,17025,29103,29117,42117,31043,26089,51181,48391,39017,13273,13063,56013,18115,13073,8115,30065,42043,46101,54079,34037,20039,18123,28145,31015,27095,38099,39115,39133,56041,32013,48247,8017,41005,5113,13193,18007,47129,46043,24047,17185,18069,21209,19053,18169,18003,18099,31171,38085,48127,27045,45023,27073,49005,55093,13049,13233,17113,23001,16055,32003,20147,31089,29101,55063,22021,21061,17005,17009,27085,55033,8027,29123,48353,42127,36091,48041,40095,24001,54103,55053,41007,53041,36003,19031,18117,13089,13227,30015,31017,47013,37069,24510,20111,19027,22107,47123,20075,19151,16045,5063,5085,18111,13119,12051,13265,48245,30059,8067,48027,28069,5019,41035,36075,72105,1019,48019,30087,35059,26153,36111,34007,17083,51085,20199,26003,5049,48215,37155,26123,41049,27153,5083,37109,5091,12095,8111,16041,13045,20161,48413,51167,37027,16065,18173,21001,21077,21097,23023,30097,48181,42059,2188,20051,1065,1105,1033,20151,21017,47149,13075,20101,40059,17147,48107,72053,1063,16033,19109,72151,38013,37063,19085,31103,19187,17151,47159,51089,51510,19101,30049,49013,40003,48119,47169,21193,46039,41029,72067,48507,31007,19121,12011,13279,26151,48397,26163,27105,27001,38071,37145,20195,28151,48133,28055,48123,48005,45081,29125,5001,29109,51540,17011,39145,37115,16053,39163,48309,16037,19089,12099,13181,1013,47165,51097,5015,51820,2220,41051,47061,27057,38081,36089,29179,6067,39125,18179,51063,6083,54005,28009,21055,19147,19159,37151,24015,18171,31077,31095,31151,21119,19045,27063,27039,27047,6009,25001,51119,42065,18089,47003,47027,17029,47097,41001,36097,26159,17131,21127,21175,21177,17049,47105,46025,15003,12041,18157,42109,48277,12086,31057,48289,8097,38035,18091,18057,51595,40081,20071,13145,13251,72127,48433,39069,33009,29145,18129,48311,17035,13297,27121,51157,51009,6111,17033,8093,6037,4027,13129,19025,12055,51580,50017,20113,4021,39051,8003,12017,72049,72051,47041,42031,46097,46073,18031,18037,51057,45089,36031,19195,40063,51027,51005,28087,18143,8099,48435,72121,40101,29043,72039,28073,18137,38057,13147,22049,51133,48157,55047,30073,55127,32021,17057,36103,18161,29119,31157,35047,1081,48367,38021,38003,27143,13293,6097,26033,16019,13013,13183,48271,40115,42033,26037,72133,17135,28003,28071,22043,29005,17115,26149,17055,30033,31001,27109,34039,72139,1097,46087,1057,1017,37131,8081,21087,18047,37013,72073,38015,37159,26071,27067,21237,48149,46081,23029,48045,26131,28015,41003,27133,42063,22061,42099,46137,48203,26013,40131,29019,72097,40015,8059,54011,48383,5141,8117,20035,5071,36041,51045,48083,2290,4017,28085,48357,48103,56003,47081,28143,29081,72029,18005,13223,39015,47141,38101,25027,39091,6031,6073,72123,13079,72103,29037,36027,48477,8101,29067,38009,37051,56017,26001,6061,5129,48305,36077,37153,37093,31131,42023,45035,27161,46015,47177,17023,21201,47095,45015,5051,20139,39155,48333,48359,42019,16049,20115,51029,37025,29225,49011,27033,12093,13291,19013,48403,39131,1125,1131,28097,31099,31087,10003,16081,17161,51073,5133,18017,16077,18015,42101,56043,37029,36109,5069,5079,55123,29093,48223,36001,48225,39111,20165,18107,20187,21129,27071,48029,8013,47089,40097,27165,16013,22053,46119,8031,40029,30011,48461,18051,31105,17093,11001,8085,27171,55059,8037,6075,8113,2020,12109,28019,29079,26085,26139,17031,17059,45047,20059,27027,47075,49003,28139,54051,54035,16039,24005,38005,29163,39087,29201,39001,48143,13137,13319,54061,39033,12027,9011,39059,26015,29209,51760,37169,19039,19065,6041,48381,48401,19181,39161,12043,13199,8023,48099,19001,13053,6043,29089,41047,55079,27139,39129,51145,8014,47099,26009,45069,16009,17103,31127,37031,20149,26075,48091,25019,45009,48007,13019,18165,26143,37005,6035,51610,12081,39119,8015,8025,8043,28109,28111,31041,12013,21117,19037,17037,19081,38089,26095,40019,37139,35055,28011,32023,47073,38011,42057,22055,48237,17175,40055,48211,16069,46129,6055,40033,29221,36011,48417,48407,19061,51075,20181,39139,17001,39021,33019,17075,19157,39169,13113,13141,48259,36039,51137,40089,13277,31025,46077,56009,36043,38047,26053,27005,1095,47173,54057,55003,17053,38029,6089,22113,5121,55085,22035,22037,22087,48481,2198,2195,48153,2275,21151,47009,30031,45031,1053,13143,20001,17041,51079,55137,5065,6053,35017,29131,37193,2110,29165,29021,1083,18065,31143,39123,27107,19165,24013,19011,21159,27025,21189,42015,54029,29051,26021,42061,31045,51141,26119,26135,35007,17163,17189,42009,5127,20099,42073,39067,37003,34009,33005,27089,51101,8055,48255,47023,17171,49027,49029,48257,4011,4013,26129,47087,17159,1009,30051,48131,29173,48251,13061,41023,41011,48159,36113,51113,40005,17129,13015,12069,40111,38083,18049,20091,24009,55129,53031,72003,27169,28149,29003,29139,20021,37083,35043,21051,42035,41043,55065,40147,54077,55135,48137,41037,29153,48473,1099,50009,51111,38097,13139,13283,13037,55125,27007,72043,72055,24019,42037,39023,48323,4019,35006,34005,50021,13099,25007,38049,31179,38045,16023,33007,38043,48273,18127,28101,37163,47127,12103,72019,17065,5105,20023,8029,19185,48165,1093,37189,51770,48317,48037,49057,29127,36045,19097,38063,36019,8045,29177,39073,1085,13043,19113,6105,13215,28135,20005,72081,48003,39109,48375,40133,45003,6045,51550,72153,56037,48169,54031,72001,55089,47163,45059,56011,55117,25013,48055,20029,6027,1037,19059,21095,20061,42011,47019,27083,51037,47179,45071,51093,41069,29023,22047,28125,51061,51750,32005,12037,18055,18139,55131,29105,42085,5031,29195,17193,17039,32033,27049,37173,12101,12119,36059,38091,18163,29071,37011,54107,55007,47161,55097,45063,24003,55039,54101,55061,48369,40151,21063,25003,29041,8103,8087,41045,34023,20167,17155,46055,47111,5023,1109,16003,25005,42107,38103,37045,5059,24021,17169,6051,6109,35013,13081,5027,38039,6095,19043,48449,54027,37125,20009,38087,22083,31071,22099,1119,1133,12117,28035,26065,20177,46061,27061,8073,36053,36115,18081,48445,35021,1121,55067,48155,19021,19129,48385,39041,37067,32510,19049,48065,13261,29223,45007,56007,30093,17177,26087,22027,28161,72093,26079,72005,22039,47069,4003,35023,38023,6071,8083,28023,19125,31055,51600,40057,29039,13059,16085,48275,5103,39037,40071,46041,41057,13077,28127,28131,6013,47017,51087,18119,36119,29017,54047,54033,37077,9009,31139,13023,13033,17181,17091,38051,31141,37185,72009,13197,46027,10005,13159,29175,20015,48209,48325,26105,45013,46135,55105,45077,53013,18023,17027,16067,42113,28121,48345,41039,48485,26155,20089,20123,12007,28091,28039,17085,18059,51620,48329,20171,30013,51660,17199,30029,72111,20189,21067,21091,46013,54001,47181,31013,42097,48469,51530,26147,31173,50015,51067,40011,53037,18135,49025,54093,72113,55023,1071,19123,20045,21059,21197,29097,41061,13151,38001,37137,21083,42021,47107,26093,8001,42069,40123,40037,48457,47175,40125,9013,35053,13003,12031,48145,5149,20033,21113,21171,40075,46079,37033,48377,39057,48489,72021,35028,2122,1003,19007,51127,13263,36049,54015,18077,51019,35033,31011,29149,47083,42131,37107,18167,18039,51077,48303,27093,39005,31119,12085,8079,13085,13167,5095,29059,51143,2068,20145,20209,12029,26157,2240,20065,22097,47055,39095,5093,72117,18043,20129,21081,21217,37075,54045,54073,51071,54019,53061,35015,31117,31145,31149,47085,17125,51197,13303,53077,5143,48213,55035,47153,48471,4005,20191,26127,27065,39007,6003,48167,1011,17105,39135,39079,48201,25017,72145,48115,36069,2261,1001,20121,13091,36023,13039,26161,18087,48371,13225,13311,13163,55083,48347,44009,53047,53063,55041,55113,34017,39151,48187,53029,54037,51153,42029,54055,47145,53009,53065,19177,31073,28095,12033,48439,24033,51169,48239,40085,13289,39099,1087,17191,48437,29151,17089,6017,45055,37073,8089,41019,42089,5101,38019,40103,20063,22077,31067,1115,28123,13095,18061,16017,13047,22059,23027,24027,49035,9003,9015,12087,39157,36085,39071,27077,16011,72023,72069,72077,45045,46085,55121,6113,48431,48495,46071,49041,51036,1023,18083,31047,20057,38105,38017,17069,31005,48163,19103,20133,21089,20107,49017,32011,31085,8095,5013,2090,21101,28051,28105,72037,72047,30027,24023,22119,26059,21141,46033,33013,42133,37161,46005,1043,13097,31097,37187,46075,37007,2100,38007,31003,29073,21031,56005,13211,5037,5107,22093,6115,1117,8091,35009,40149,37135,18131,26019,36029,24031,51685,51013,51035,29183,6069,24035,20013,13031,21071,30007,13309,37049,29087,48295,41009,45041,38061,49053,30003,42047,31165,28031,72099,18013,18019,21021,21065,48087,48089,17063,27081,13109,48497,2050,13307,13169,13135,55095,55045,72107,36079,51700,8011,40065,30089,48173,5047,40093,47125,53051,38055,41027,19197,48419,29055,51017,27111,22075,28115,22067,21029,1047,48093,30053,72129,72135,27021,8007,28163,55087,29107,37195,39117,30039,38031,5033,48053,29186,48179,17109,19137,5067,48229,22079,31111,48067,47079,51840,37061,37087,27037,41025,72095,55001,29045,21015,21229,22009,28137,29227,31163,46021,46063,26057,19175,17127,31113,31121,31161,21039,56025,13321,18109,48139,13229,18053,12035,28077,22127,17073,41041,23031,46029,13231,13259,34025,5021,5045,40041,19107,17061,27075,13285,6023,47043,27003,46009,47059,51183,18141,38067,46007,22115,23019,24041,13257,6065,5005,28007,19169,20011,51049,45085,2164,54109,6029,48097,45075,55119,27099,27101,44007,29161,28117,21235,18149,48491,72109,19131,13107,22025,42025,31133,47171,45083,55073,32007,54007,26165,48079,42013,29085,29009,27123,5081,32019,12071,41033,72091,28113,47031,16059,21183,31153,13071,27167,17157,23011,51173,35041,42111,51191,37081,16001,40039,39101,17149,17203,13245,1107,40045,17145,19075,8107,34035,6011,17087,8053,16031,27059,42049,28029,48467,51161,51015,2060,49031,21161,27009,48129,12005,1077,18045,17173,17051,39127,51590,13011,13305,40109,40069,37099,49043,29167,32015,19191,21023,55037,54087,27159,51670,17201,4007,24045,21043,37097,51083,37091,36057,27113,53073,41021,34029,5009,40031,48253,48185,26049,22007,28013,28041,30017,46109,17141,38077,55005,55051,27157,6015,40127,53007,26141,40027,36105,37149,37165,37085,37105,18159,20027,40145,30083,5003,5041,72147,47135,27163,51740,42051,54023,51171,48235,29025,12107,18025,29111,31075,72087,16071,17139,21107,16035,21013,27035,72011,4009,5123,13101,2070,20105,20183,12065,72041,28005,5097,26025,1029,8123,40009,6049,19153,13179,48349,48047,47187,56021,53003,27155,17017,13247,42067,42083,40049,31021,35045,36073,22031,6019,13105,1005,37017,48111,17167,40035,47035,26137,19161,49015,53019,30109,35027,40021,27173,48231,48335,48499,40113,37039,26107,21195,12067,37035,21025,48075,29181,17179,48243,51678,5135,8069,37177,27131,29219,21227,22017,46121,19127,40141,37113,54063,18155,21105,1061,17099,19055,20127,19051,16015,55081,37143,12047,2170,18035,12075,72063,72065,28045,13315,22081,47093,23017,29095,13281,28129,16075,16079,37095,19067,21145,21225,46125,47029,47067,47071,45067,72057,22117,29207,13093,27145,31155,27141,46035,47025,48337,48049,55101,55115,19009,48207,40083,36065,8065,40121,54017,54105,33003,54095,27079,53017,36009,55027,19105,20007,29169,1045,20109,6039,29075,31009,49009,56031,37071,35019,30037,37101,6085,45019,53005,29001,39043,17183,29189,17007,6103,55025,48151,22085,17137,13235,37015,37167,47143,37079,21131,24039,17123,21143,48095,48081,47133,26063,26069,13069,13299,38037,22051,22103,19083,22023,39027,27137,39093,72143,19015,48373,31051,24025,45037,51001,55015,21121,26067,37129,47131,21035,51003,47147,51043,53023,21109,27031,45073,22033,28021,24037,26081,37147,30009,31167,13001,19099,28153,48101,51081,12105,48503,1123,33015,8105,19149,36123,53033,41017,19155,29229,30101,36107,48287,13121,48073,29007,45029,55055,5055,48191,55013,35057,53049,37141,48221,46117,32031,21007,48009,48023,48405,32029,13249,9001,48313,6077,28159,21103,21167,31183,21135,27051,28053,1025,20017,21221,1069,46003,2013,31061,24029,20037,27023,46103,45049,16043,13029,51053,12111,36055,46083,55017,20207,21157,13065,13185,15005,15007,26099,13287,17079,48331,18147,21099,21137,30005,51710,48389,51155,37179,38053,12091,6001,17013,18085,28103,5147,34015,33011,30045,37121,30077,41053,41065,46105,19173,1129,39039,54025,17121,51051,51007,13243,35029,48355,56045,72137,17187,1089,47189,48063,40067,54085,19145,20087,22045,2158,37133,27043,47057,48161,42087,1041,51520,48399,48443,20153,20193,13161,19035,5145,28083,29053,26043,17197,48117,46011,29047,28027,18011,19057,19163,20143,12023,12059,28047,72141,47011,27017,48315,36095,40117,36007,48291,39009,39081,54083,54049,34011,6057,55031,21199,37065,48241,49001,13213,18075,26117,36083,12021,35031,13017,5077,12003,13173,20159,1015,28059,21037,21057,28107,48195,48071,13239,48199,9005,39143,23021,17153,40107,26145,35039,50005,51023,17119,48085,45001,31053,12115,55077,4015,4025,45051,42091,16061,72013,51720,34027,29211,20135,48039,51790,31029,39113,48447,13221,5029,29147,38073,26017,47157,6007,27115,48021,53039,53055,55009,20205,22069,22109,13155,2185,26011,19111,20141,26047,19071,23015,36099,21125,47121,29213,13269,51830,48415,8047,40087,54071,51139,40079,54089,37119,34013,29115,13209,41055,13133,46017,46095,48135,48293,53027,54003,72149,30067,48121,45021,37199,48387,48321,27149,13301,48197,17133,13165,21085,48363,13149,1079,72061,28093,20025,20081,22013,13295,19095,31019,40007,19023,30085,72017,53015,48297,29135,51193,37197,6047,40043,37023,37191,42123,5061,37059,37111,5099,8125,48421,48463,39011,22015,19063,20169,21153,48017,29027,56001,56029,42093,36081,12121,26031,26051,21173,45057,21123,19193,12123,17003,29099,29113,13051,12125,36037,19041,30025,46107,48109,23005,48013,20095,13241,54097,29215,5119,19047,16005,39055,72035,6107,72015,72125,36117,51163,38095,42045,36063,50003,12019,37183,39061,34003,32017,2180,30055,19019,17043,46047,27069,13219,48493,31059,12079,72031,18153,4012,13027,2016,2150,20185,13271,26115,18181,18113,21139,13201,47103,21211,31185,42001,45005,47037,49047,49049,18021,36047,29141,39075,19143,18079,16083,17165,26077,45061,56019,18027,26055,22003,46065,46069,45027,30095,47007,21219,47183,29077,42077,31159,36015,36121,6099,42095,1103,21027,28043,21213,50013,39029,51125,12097,5053,13175,36061,5007,72071,12083,51135,34041,36021,51690,40023,20041,48427,13103,40129,55103,35025,1075,72054,47117,51011,5087,56033,42041,42055,42079,26039,1113,39019,51065,17097,13195,5039,8057,8063,16073,55141,36013,13067,47091,39013,51195,29035,40013,31035,24017,19033,19073,21205,49055,29031,53071,29133,5025,48113,72079,18033,22073,22095,22091,29197,1059,21041,8019,48267,26097,48307,28141,48105,48217,8075,20055,20125,45039,31033,27091,47155,47139,48263,30099,31069,17117,39141,17195,48141,48301,40077,39167,29091,20047,21111,17107,55139,21075,20079,30021,54091,26111,28119,21093,17081,46057,55069,36033,51630,54081,35005,35049,6059,4023,37053,17101,18067,18125,21047,26045,19179,6025,26027,28157,2282,20179,28079,72025,72027,28025,28037,28099,46045,72119,1035,18029,18071,28081,22125,5035,12063,48125,51115,38075,48283,36067,19087,31083,30075,72075,55091,4001,29121,48279,20097,48015,29061,13253,26101,19119,48233,40139,40153,19003,6101,42105,48465,20077,19133,49023,40137,36017,17143,19091,31177,55049,27097,42003,29205,39097,20201,17019,16087,17045,8121,39065,26113,38093,29203,48423,40143,40091,48395,48171,26125,38033,56027,27117,51099,53025,27129,12001,31091,51147,49007,42017,46059,42081,16057,13237,51640,35037,48269,5073,48451,12049,39025,48501,41071,19115,20049,39121,39137,48425,42075,30035,32027,27087,34031,30047,48261,48033,29157,48411,40073,48051,36035,28133,27053,42027,48025,47077,19171,20175,19135,31147,17021,12089,12133,13007,13275,21005,21185,13057,38065,26133,47109,53001,29057,22101,50007,72045,15009,22057,19139,12113,18101,21203,21223,13055,45033,37103,29199,20131,20137,72007,72033,31065,13087,18177,21009,31093,38025,6005,47049,20031,26023,51031,39105,54067,40053,46115,50027,48455,35001,13205,15001,21147,21191,21215,30041,31175,48069,24043,21133,34033,51680,5125,54053,54021,28063,38079,30103,21049,72101,26005,47005,27015,47137,51109,18145,39049,49021,32009,26083,49039,20093,12009,18105,19117,21239,45053,48043,45065,45087,27103,55075,53011,55099,18103,20053,22123,12077,20083,20119,21149,28001,72083,28057,21073,23009,23013,13217,46049,26061,30061,47051,22029,22063,25009,46019,8035,45079,18095,40099,54009,54013,51021,30111,54043,6033,13131,8021,49037,18133,16047,47167,22121,29171,56039,55043,38059,37041,37021,6063,51730,50023,46093,18097,5017,13021,72059,72131,5115,51175,48183,36087,5089,51800,8041,29187,48475,8061,48487,41015,8119,29049,49051,16029,37157,5117,5011,48193,24011,27041,30043,51059,30023,47001,39077,13005,10001,39173,13157,20003,17095,30107,47015,23007,21165,46089,8051,26029,27151,39147,13267,48429,37117,30081,13317,53043,6081,39171,8009,16021,16007,39159,39035,48285,40105,13125,41059,46102,20117,22065,30105,13313,20203,46023,31027,53035,17111,30069,29033,53075,27147,31169,47033,19079,39165,13255,34019,29217,18121,19069,13035,8039,44001,48035,44005,39045,38069,17015,27125,41031,47021,46127,1051,13187,39083,19017,48175,37089,12061,48393,31049,36051,19141,48059,48379,20067,51105,35051,5043,31123,29015,5109,8077,29065,51185,42103,42115,48343,42125,50001,20103,26121,28049,48281,51107,29185,36025,30071,29129,53045,37127,51199,29159,30063,20019,48459,51047,40061,54069,54065,51165,18183,6093,46037,22071,1073,1127,29063,12039,13083,28033,51187,17047,47113,1111,37009,8033,39089,51683,5139,17071,1101,8005,21155,53057,28067,55021,37019,27029,51131,20163,18041,31079,31081,31115,30091,31063,72089,1007,28075,27011,27013,51091,51177,33017,13153,26041,5131,6087,13191,13207,29069,48483,13117,48409,28147,29137,26073,48341,45017,56035,21069,55019,45091,18001,22005,42119,51041,22001,42039,46123,19077,19183,46111,40051,54039,55109,42121,39153,13127,48479,37123,23003,28065,18175,48031,51025,47045,47053,51149,5075,38027,53053,16063,42071,55057,47151,46031,46053,37181,21033,45011,47039,18009,1055,16025,20155,47119,56015,55107,55133,21079,25021,18063,17077,45043,38041,49019,49045,51650,55011,51069,54041,27119,27127,47047,22089,5111,12045,47063,1021,48351,48219,13009,37175,37171,1031,39149,16027,30019,12073,40119,1039,18093,20069,21045,21169,21207,22011,23025,40025,21163,21179,21187,29155,31125,55078,48365,21011,48001,51033,19167,6021,29510,13111,46051,46091,53067,31107,35061,30079,19005,48061,48339,8071,48299,48319,37043,36071,36093,54059,20197,27055,21181,25023,36005,37055,39103,42005,34001,55071,55029,37047,39053,48441,51570,39031,31135,48205,8049,48249,19189,6079,1067,39175,48505,13177,21019,27019,31037,45025,47101,41067,51810,30057,51103,29013,33001,51159,2230,2105,53021,19093,20173,48453,12057,34021,31023,42129,12015,19029,39107,21115,44003,50025,50019,20085,22041,28155,25011,31031,30001,29143,5057,29029,51117,21233,40047,53059,26091,13123,27135,28089,48227,54099] + +var geom = new Uint8Array([123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,67,111,108,108,101,99,116,105,111,110,34,44,34,110,97,109,101,34,58,34,99,100,99,34,44,34,99,114,115,34,58,123,34,116,121,112,101,34,58,34,110,97,109,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,110,97,109,101,34,58,34,117,114,110,58,111,103,99,58,100,101,102,58,99,114,115,58,79,71,67,58,49,46,51,58,67,82,83,56,52,34,125,125,44,34,102,101,97,116,117,114,101,115,34,58,91,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,117,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,57,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,49,57,51,53,57,44,52,50,46,48,57,48,53,55,55,93,44,91,45,57,55,46,48,49,57,57,49,49,44,52,49,46,55,52,50,57,56,93,44,91,45,57,54,46,57,48,53,57,50,50,44,52,49,46,55,52,50,55,54,51,93,44,91,45,57,54,46,53,53,53,49,55,50,44,52,49,46,55,52,50,48,49,56,93,44,91,45,57,54,46,53,53,52,56,54,54,44,52,50,46,48,49,53,56,55,53,93,44,91,45,57,54,46,53,53,53,53,49,49,44,52,50,46,48,56,57,57,53,55,93,44,91,45,57,54,46,56,50,51,54,55,44,52,50,46,48,57,48,52,49,49,93,44,91,45,57,55,46,48,49,57,51,53,57,44,52,50,46,48,57,48,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,87,97,104,107,105,97,107,117,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,55,50,56,51,49,54,44,52,54,46,50,54,52,53,52,49,93,44,91,45,49,50,51,46,52,55,57,54,52,52,44,52,54,46,50,54,57,49,51,49,93,44,91,45,49,50,51,46,51,54,51,55,52,51,44,52,54,46,49,52,54,51,51,51,93,44,91,45,49,50,51,46,50,49,51,48,53,52,44,52,54,46,49,55,50,53,52,49,93,44,91,45,49,50,51,46,50,49,55,57,53,44,52,54,46,51,56,53,54,49,55,93,44,91,45,49,50,51,46,51,53,56,51,51,52,44,52,54,46,51,56,52,48,50,53,93,44,91,45,49,50,51,46,55,50,54,53,53,55,44,52,54,46,51,56,52,56,55,50,93,44,91,45,49,50,51,46,55,50,56,51,49,54,44,52,54,46,50,54,52,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,68,101,32,66,97,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,56,57,51,51,55,55,44,51,52,46,48,56,56,52,48,55,93,44,91,45,49,48,52,46,55,56,54,52,50,57,44,51,52,46,48,56,55,54,54,52,93,44,91,45,49,48,52,46,55,56,54,49,48,52,44,51,52,46,48,48,48,49,51,55,93,44,91,45,49,48,52,46,49,53,54,50,54,57,44,51,51,46,57,57,53,52,49,51,93,44,91,45,49,48,52,46,49,53,53,54,44,51,52,46,48,56,51,50,48,53,93,44,91,45,49,48,51,46,57,52,54,48,49,57,44,51,52,46,48,56,50,52,54,51,93,44,91,45,49,48,51,46,57,52,56,55,55,56,44,51,52,46,54,48,53,48,53,56,93,44,91,45,49,48,52,46,49,50,56,56,56,44,51,52,46,54,48,53,50,48,49,93,44,91,45,49,48,52,46,49,50,57,49,52,51,44,51,52,46,55,55,57,51,51,55,93,44,91,45,49,48,52,46,51,51,57,56,49,55,44,51,52,46,55,55,57,48,54,50,93,44,91,45,49,48,52,46,51,51,57,55,50,53,44,51,52,46,54,57,50,50,51,52,93,44,91,45,49,48,52,46,52,52,52,55,54,50,44,51,52,46,54,48,52,57,53,50,93,44,91,45,49,48,52,46,56,57,50,48,50,51,44,51,52,46,54,48,52,52,50,54,93,44,91,45,49,48,52,46,56,57,49,55,52,53,44,51,52,46,51,52,55,48,52,51,93,44,91,45,49,48,52,46,56,57,51,51,55,55,44,51,52,46,48,56,56,52,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,76,97,110,99,97,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,48,48,57,52,44,34,98,101,100,115,34,58,49,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,49,48,57,52,44,52,49,46,48,52,54,49,49,54,93,44,91,45,57,54,46,57,49,51,52,57,51,44,52,48,46,54,57,55,57,52,56,93,44,91,45,57,54,46,57,49,50,54,51,55,44,52,48,46,53,50,51,54,50,53,93,44,91,45,57,54,46,52,54,51,54,51,50,44,52,48,46,53,50,51,48,49,51,93,44,91,45,57,54,46,52,54,51,55,54,52,44,52,48,46,55,56,51,57,54,93,44,91,45,57,54,46,52,54,51,56,54,49,44,52,49,46,48,49,54,48,54,57,93,44,91,45,57,54,46,52,54,51,56,54,57,44,52,49,46,48,52,53,48,56,51,93,44,91,45,57,54,46,57,48,56,53,48,55,44,52,49,46,48,52,54,48,57,49,93,44,91,45,57,54,46,57,49,48,57,52,44,52,49,46,48,52,54,49,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,78,117,99,107,111,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,55,51,53,55,49,44,52,48,46,51,53,48,51,53,57,93,44,91,45,57,56,46,50,55,52,48,49,55,44,52,48,46,48,48,50,54,54,50,93,44,91,45,57,55,46,57,51,49,56,50,53,44,52,48,46,48,48,50,48,55,50,93,44,91,45,57,55,46,56,50,49,52,57,53,44,52,48,46,48,48,50,48,52,55,93,44,91,45,57,55,46,56,50,48,56,49,54,44,52,48,46,51,53,48,53,52,53,93,44,91,45,57,55,46,56,50,52,49,49,52,44,52,48,46,51,53,48,53,52,49,93,44,91,45,57,56,46,50,55,51,53,55,49,44,52,48,46,51,53,48,51,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,97,115,32,80,105,101,100,114,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,55,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,56,53,50,54,49,54,44,49,56,46,50,53,52,57,55,50,93,44,91,45,54,53,46,57,50,56,51,52,49,44,49,56,46,49,52,50,56,52,53,93,44,91,45,54,53,46,57,50,54,50,50,55,44,49,56,46,49,49,57,57,54,51,93,44,91,45,54,53,46,56,55,55,54,49,53,44,49,56,46,49,49,56,49,54,55,93,44,91,45,54,53,46,56,50,54,48,54,51,44,49,56,46,50,48,48,52,48,56,93,44,91,45,54,53,46,56,50,52,50,50,44,49,56,46,50,55,51,48,53,52,93,44,91,45,54,53,46,56,51,54,51,56,55,44,49,56,46,50,55,53,50,52,54,93,44,91,45,54,53,46,56,53,50,54,49,54,44,49,56,46,50,53,52,57,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,105,110,110,101,104,97,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,55,52,57,44,34,98,101,100,115,34,58,49,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,50,57,48,56,57,44,52,51,46,56,52,55,57,55,51,93,44,91,45,57,55,46,49,50,57,52,55,56,44,52,51,46,52,57,57,54,56,51,93,44,91,45,57,54,46,57,50,52,56,52,49,44,52,51,46,53,48,48,48,48,55,93,44,91,45,57,54,46,53,57,57,49,57,49,44,52,51,46,53,48,48,52,53,54,93,44,91,45,57,54,46,52,53,51,50,54,44,52,51,46,53,48,48,51,57,93,44,91,45,57,54,46,52,53,50,57,56,56,44,52,51,46,56,52,57,53,48,55,93,44,91,45,57,54,46,56,56,56,54,54,52,44,52,51,46,56,52,56,51,56,53,93,44,91,45,57,55,46,49,50,57,48,56,57,44,52,51,46,56,52,55,57,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,55,34,44,34,78,65,77,69,34,58,34,77,101,110,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,48,51,50,50,51,44,51,49,46,48,56,55,50,57,54,93,44,91,45,49,48,48,46,49,49,53,50,49,54,44,51,49,46,48,56,55,57,57,52,93,44,91,45,49,48,48,46,49,49,54,50,51,52,44,51,48,46,55,49,48,51,54,54,93,44,91,45,57,57,46,52,56,51,56,54,57,44,51,48,46,55,49,48,55,55,49,93,44,91,45,57,57,46,52,56,52,55,53,53,44,51,48,46,57,52,48,54,48,53,93,44,91,45,57,57,46,54,48,51,54,50,55,44,51,48,46,57,52,48,55,50,54,93,44,91,45,57,57,46,54,48,51,50,50,51,44,51,49,46,48,56,55,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,83,105,101,114,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,49,52,55,49,52,57,44,51,57,46,55,48,55,54,53,56,93,44,91,45,49,50,48,46,54,53,52,50,50,55,44,51,57,46,55,48,54,54,50,57,93,44,91,45,49,50,48,46,56,55,49,52,57,56,44,51,57,46,55,55,54,53,50,57,93,44,91,45,49,50,49,46,48,48,57,52,55,55,44,51,57,46,54,51,57,52,53,57,93,44,91,45,49,50,49,46,48,50,50,48,56,53,44,51,57,46,51,57,49,53,53,56,93,44,91,45,49,50,48,46,55,53,53,55,50,57,44,51,57,46,52,53,50,54,54,51,93,44,91,45,49,50,48,46,53,55,55,49,56,56,44,51,57,46,53,50,51,49,52,52,93,44,91,45,49,50,48,46,53,48,53,52,52,53,44,51,57,46,52,52,54,49,49,55,93,44,91,45,49,50,48,46,48,48,51,55,55,51,44,51,57,46,52,52,53,48,53,54,93,44,91,45,49,50,48,46,48,48,49,48,54,50,44,51,57,46,55,50,50,52,49,56,93,44,91,45,49,50,48,46,49,52,55,49,52,57,44,51,57,46,55,48,55,54,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,49,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,49,53,52,48,53,44,51,54,46,56,53,52,52,54,55,93,44,91,45,56,53,46,50,57,54,48,48,50,44,51,54,46,54,50,53,55,49,56,93,44,91,45,56,53,46,50,55,54,50,56,49,44,51,54,46,54,50,54,56,49,54,93,44,91,45,56,52,46,57,55,52,56,49,49,44,51,54,46,54,49,53,52,54,53,93,44,91,45,56,53,46,48,54,52,51,48,55,44,51,54,46,56,53,56,55,52,51,93,44,91,45,56,53,46,50,49,53,52,48,53,44,51,54,46,56,53,52,52,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,54,57,48,44,34,98,101,100,115,34,58,50,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,49,49,52,57,44,52,49,46,49,54,55,56,50,52,93,44,91,45,56,51,46,56,56,48,52,50,51,44,52,48,46,57,50,48,52,50,57,93,44,91,45,56,51,46,56,56,48,48,54,51,44,52,48,46,56,49,57,57,49,57,93,44,91,45,56,51,46,53,49,53,56,56,51,44,52,48,46,56,49,56,49,51,52,93,44,91,45,56,51,46,52,50,48,51,49,57,44,52,48,46,57,57,49,56,56,57,93,44,91,45,56,51,46,52,50,49,48,53,52,44,52,49,46,49,54,54,55,56,93,44,91,45,56,51,46,56,56,49,49,52,57,44,52,49,46,49,54,55,56,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,72,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,49,49,51,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,57,48,52,49,53,44,51,52,46,51,49,51,49,51,50,93,44,91,45,49,48,50,46,48,56,53,55,51,51,44,51,51,46,56,50,52,54,55,53,93,44,91,45,49,48,49,46,53,54,51,53,56,44,51,51,46,56,51,48,52,53,49,93,44,91,45,49,48,49,46,53,54,52,56,53,54,44,51,52,46,51,49,50,52,57,51,93,44,91,45,49,48,49,46,57,57,56,48,50,44,51,52,46,51,49,51,48,51,57,93,44,91,45,49,48,50,46,48,57,48,52,49,53,44,51,52,46,51,49,51,49,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,55,56,44,34,98,101,100,115,34,58,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,53,49,56,57,44,51,51,46,52,57,56,55,52,50,93,44,91,45,56,53,46,57,56,48,50,57,51,44,51,51,46,50,57,52,49,57,93,44,91,45,56,54,46,49,49,56,49,57,56,44,51,51,46,50,57,54,51,50,93,44,91,45,56,54,46,49,55,52,51,55,44,51,51,46,49,48,52,51,57,52,93,44,91,45,56,54,46,48,48,57,49,55,44,51,51,46,48,57,48,50,54,93,44,91,45,56,53,46,54,53,51,54,53,52,44,51,51,46,49,48,54,54,51,52,93,44,91,45,56,53,46,54,52,51,52,56,50,44,51,51,46,52,57,53,56,56,53,93,44,91,45,56,53,46,56,53,49,56,57,44,51,51,46,52,57,56,55,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,114,109,115,116,114,111,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,44,91,45,49,48,49,46,54,50,57,50,53,55,44,51,52,46,55,52,55,54,52,57,93,44,91,45,49,48,49,46,52,55,49,53,54,50,44,51,52,46,55,52,55,52,54,50,93,44,91,45,49,48,49,46,48,57,48,55,52,57,44,51,52,46,55,52,56,50,52,54,93,44,91,45,49,48,49,46,48,56,54,50,56,49,44,51,53,46,49,56,50,49,52,93,44,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,54,52,50,44,34,98,101,100,115,34,58,56,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,48,53,51,49,44,52,48,46,56,53,57,48,57,57,93,44,91,45,56,52,46,51,57,55,51,55,52,44,52,48,46,56,49,53,57,52,49,93,44,91,45,56,52,46,51,57,54,55,55,56,44,52,48,46,54,56,52,57,50,54,93,44,91,45,56,52,46,50,50,50,55,57,57,44,52,48,46,54,56,53,57,53,55,93,44,91,45,56,52,46,49,48,55,55,56,55,44,52,48,46,54,52,51,48,54,57,93,44,91,45,56,51,46,56,56,48,49,57,52,44,52,48,46,54,52,52,54,57,93,44,91,45,56,51,46,56,56,48,48,54,51,44,52,48,46,56,49,57,57,49,57,93,44,91,45,56,51,46,56,56,48,52,50,51,44,52,48,46,57,50,48,52,50,57,93,44,91,45,56,52,46,49,48,57,53,49,54,44,52,48,46,57,48,52,55,51,93,44,91,45,56,52,46,49,48,57,53,56,54,44,52,48,46,56,54,48,57,57,52,93,44,91,45,56,52,46,51,52,48,53,51,49,44,52,48,46,56,53,57,48,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,77,99,68,117,102,102,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,52,57,55,48,53,44,51,51,46,54,48,56,55,54,56,93,44,91,45,56,50,46,53,51,53,55,55,57,44,51,51,46,51,53,55,52,54,93,44,91,45,56,50,46,51,56,51,56,50,57,44,51,51,46,51,49,50,49,48,54,93,44,91,45,56,50,46,51,53,51,52,57,56,44,51,51,46,51,49,50,51,49,56,93,44,91,45,56,50,46,50,57,52,49,55,57,44,51,51,46,51,53,52,54,51,53,93,44,91,45,56,50,46,52,51,54,56,49,52,44,51,51,46,53,52,57,54,53,56,93,44,91,45,56,50,46,52,50,53,51,50,56,44,51,51,46,54,53,48,54,50,57,93,44,91,45,56,50,46,52,55,57,53,49,56,44,51,51,46,54,51,57,53,51,53,93,44,91,45,56,50,46,54,52,57,55,48,53,44,51,51,46,54,48,56,55,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,83,97,117,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,53,57,54,44,34,98,101,100,115,34,58,49,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,49,48,54,57,44,52,51,46,53,53,51,57,57,49,93,44,91,45,57,48,46,49,57,49,57,54,52,44,52,51,46,53,53,52,57,57,54,93,44,91,45,57,48,46,49,57,51,56,49,52,44,52,51,46,49,54,52,52,54,52,93,44,91,45,56,57,46,56,51,56,49,51,53,44,52,51,46,50,48,54,48,53,55,93,44,91,45,56,57,46,55,50,48,52,54,51,44,52,51,46,50,57,51,48,56,52,93,44,91,45,56,57,46,54,48,48,55,51,44,52,51,46,51,56,48,54,54,54,93,44,91,45,56,57,46,53,57,57,51,53,55,44,52,51,46,53,53,56,48,52,49,93,44,91,45,56,57,46,55,50,55,55,56,56,44,52,51,46,53,54,57,52,55,56,93,44,91,45,56,57,46,55,56,53,56,48,57,44,52,51,46,54,52,49,48,52,57,93,44,91,45,57,48,46,51,49,50,52,48,52,44,52,51,46,54,52,48,57,56,56,93,44,91,45,57,48,46,51,49,49,48,54,57,44,52,51,46,53,53,51,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,83,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,52,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,52,49,52,51,57,54,44,51,53,46,57,55,53,55,57,56,93,44,91,45,57,50,46,52,49,54,56,52,55,44,51,53,46,55,56,56,53,57,49,93,44,91,45,57,50,46,52,49,56,52,48,56,44,51,53,46,55,49,54,48,52,54,93,44,91,45,57,50,46,50,52,48,53,50,44,51,53,46,55,49,50,49,57,93,44,91,45,57,49,46,56,51,55,49,55,57,44,51,53,46,55,48,52,57,51,50,93,44,91,45,57,49,46,56,52,57,52,52,56,44,51,53,46,56,54,55,52,49,49,93,44,91,45,57,50,46,48,56,53,52,56,53,44,51,53,46,57,54,53,57,52,51,93,44,91,45,57,50,46,49,51,57,49,48,52,44,51,54,46,49,49,50,50,50,49,93,44,91,45,57,50,46,49,57,53,52,51,44,51,54,46,49,51,50,55,57,56,93,44,91,45,57,50,46,52,49,52,51,57,54,44,51,53,46,57,55,53,55,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,87,97,108,108,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,57,55,50,57,56,44,52,53,46,56,54,48,53,57,53,93,44,91,45,49,49,55,46,55,52,55,51,50,55,44,52,53,46,56,54,49,48,55,50,93,44,91,45,49,49,55,46,55,56,55,54,50,51,44,52,53,46,54,56,57,53,54,55,93,44,91,45,49,49,55,46,54,52,51,52,57,52,44,52,53,46,51,51,54,56,55,93,44,91,45,49,49,55,46,53,50,50,50,52,57,44,52,53,46,50,54,55,55,51,49,93,44,91,45,49,49,55,46,52,55,54,54,56,52,44,52,53,46,49,54,54,53,51,57,93,44,91,45,49,49,55,46,50,54,54,48,48,54,44,52,53,46,49,54,54,53,51,57,93,44,91,45,49,49,55,46,50,54,54,48,48,53,44,52,53,46,48,56,48,53,55,93,44,91,45,49,49,54,46,55,56,51,56,50,57,44,52,53,46,48,55,56,50,54,51,93,44,91,45,49,49,54,46,54,56,55,49,55,55,44,52,53,46,50,54,55,54,52,51,93,44,91,45,49,49,54,46,53,53,55,54,50,49,44,52,53,46,53,48,51,52,57,53,93,44,91,45,49,49,54,46,52,54,51,54,51,53,44,52,53,46,54,48,50,55,56,53,93,44,91,45,49,49,54,46,53,57,52,50,49,44,52,53,46,55,55,57,48,56,93,44,91,45,49,49,54,46,55,57,52,53,54,50,44,52,53,46,56,53,54,48,52,57,93,44,91,45,49,49,54,46,57,49,54,48,55,49,44,52,53,46,57,57,53,51,53,55,93,44,91,45,49,49,55,46,52,55,57,57,51,53,44,52,53,46,57,57,55,56,48,49,93,44,91,45,49,49,55,46,54,48,51,52,50,52,44,52,53,46,57,57,56,57,53,93,44,91,45,49,49,55,46,57,55,55,54,54,52,44,52,54,46,48,48,48,53,50,50,93,44,91,45,49,49,55,46,57,55,50,57,56,44,52,53,46,56,54,48,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,97,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,56,57,54,44,34,98,101,100,115,34,58,51,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,48,52,52,44,52,48,46,56,53,49,51,51,57,93,44,91,45,56,48,46,53,49,56,57,57,49,44,52,48,46,54,51,56,56,48,49,93,44,91,45,56,48,46,53,49,57,48,51,56,44,52,48,46,52,55,55,51,54,51,93,44,91,45,56,48,46,51,54,48,56,55,51,44,52,48,46,52,55,55,53,51,57,93,44,91,45,56,48,46,49,56,48,52,50,52,44,52,48,46,54,48,55,55,54,57,93,44,91,45,56,48,46,49,52,56,54,56,50,44,52,48,46,54,55,52,50,56,49,93,44,91,45,56,48,46,49,53,56,53,51,44,52,48,46,56,53,53,48,57,54,93,44,91,45,56,48,46,53,49,57,48,52,52,44,52,48,46,56,53,49,51,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,53,50,57,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,44,91,45,56,57,46,51,49,54,53,54,44,51,49,46,56,48,50,48,57,93,44,91,45,56,56,46,57,52,51,51,53,53,44,51,49,46,56,50,52,53,54,53,93,44,91,45,56,56,46,57,49,48,52,53,57,44,51,49,46,56,50,54,54,52,57,93,44,91,45,56,56,46,57,49,51,56,52,55,44,51,50,46,50,50,52,49,56,54,93,44,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,54,53,44,34,98,101,100,115,34,58,49,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,54,52,51,49,55,44,51,56,46,53,54,55,51,56,93,44,91,45,57,52,46,48,54,53,55,49,51,44,51,56,46,52,52,55,48,56,55,93,44,91,45,57,52,46,48,52,57,56,57,53,44,51,56,46,50,49,51,57,56,53,93,44,91,45,57,51,46,53,50,51,52,56,52,44,51,56,46,50,48,55,50,49,54,93,44,91,45,57,51,46,53,49,50,55,52,51,44,51,56,46,53,49,50,52,55,54,93,44,91,45,57,51,46,53,49,49,48,51,44,51,56,46,53,53,54,50,49,93,44,91,45,57,52,46,48,54,52,51,49,55,44,51,56,46,53,54,55,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,83,97,103,117,97,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,48,48,48,54,48,50,44,51,55,46,57,53,54,48,52,49,93,44,91,45,49,48,54,46,56,57,55,56,51,52,44,51,55,46,57,54,55,56,57,49,93,44,91,45,49,48,54,46,54,57,51,56,52,53,44,51,55,46,56,51,53,50,52,52,93,44,91,45,49,48,54,46,53,56,54,51,55,52,44,51,55,46,55,52,55,56,48,57,93,44,91,45,49,48,54,46,48,51,56,52,49,51,44,51,55,46,55,52,56,51,53,51,93,44,91,45,49,48,53,46,52,53,55,50,53,53,44,51,55,46,55,53,49,52,54,52,93,44,91,45,49,48,53,46,52,55,51,50,48,52,44,51,55,46,56,57,53,57,55,93,44,91,45,49,48,53,46,53,54,48,51,49,49,44,51,55,46,57,53,49,56,56,54,93,44,91,45,49,48,53,46,54,56,54,56,51,56,44,51,56,46,49,54,54,56,52,53,93,44,91,45,49,48,53,46,55,57,54,56,57,55,44,51,56,46,50,54,53,48,52,55,93,44,91,45,49,48,54,46,48,49,48,55,53,49,44,51,56,46,52,52,54,53,54,54,93,44,91,45,49,48,54,46,50,52,54,57,52,44,51,56,46,52,50,50,55,54,56,93,44,91,45,49,48,55,46,48,48,48,54,48,49,44,51,56,46,52,50,53,54,49,57,93,44,91,45,49,48,55,46,48,48,49,49,49,57,44,51,56,46,49,52,55,48,55,50,93,44,91,45,49,48,55,46,48,48,48,54,48,50,44,51,55,46,57,53,54,48,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,104,97,116,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,55,57,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,53,52,50,52,50,56,44,51,53,46,56,52,51,51,48,51,93,44,91,45,55,57,46,53,53,53,56,48,52,44,51,53,46,53,49,53,48,51,57,93,44,91,45,55,57,46,51,53,48,48,55,51,44,51,53,46,53,49,56,48,48,50,93,44,91,45,55,57,46,49,57,57,49,51,54,44,51,53,46,53,53,57,56,52,52,93,44,91,45,55,57,46,49,49,55,48,57,54,44,51,53,46,54,50,56,49,54,52,93,44,91,45,55,56,46,57,54,57,54,52,44,51,53,46,53,50,49,54,54,57,93,44,91,45,55,56,46,57,49,52,55,51,52,44,51,53,46,53,56,51,54,55,50,93,44,91,45,55,56,46,57,57,53,48,53,57,44,51,53,46,54,49,48,49,51,53,93,44,91,45,55,56,46,57,48,54,48,55,49,44,51,53,46,56,54,56,48,57,54,93,44,91,45,55,57,46,48,49,54,51,48,53,44,51,53,46,56,54,51,50,49,93,44,91,45,55,57,46,50,52,57,53,51,56,44,51,53,46,56,55,54,56,49,93,44,91,45,55,57,46,53,52,50,52,50,56,44,51,53,46,56,52,51,51,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,82,105,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,53,48,55,56,48,54,44,52,49,46,57,57,57,53,53,50,93,44,91,45,49,49,49,46,52,50,54,56,53,53,44,52,49,46,54,55,55,56,54,52,93,44,91,45,49,49,49,46,52,52,50,57,52,57,44,52,49,46,53,51,49,51,54,53,93,44,91,45,49,49,49,46,53,49,48,56,51,57,44,52,49,46,52,50,51,49,93,44,91,45,49,49,49,46,52,50,48,55,50,56,44,52,49,46,51,54,49,51,48,56,93,44,91,45,49,49,49,46,50,57,52,56,56,54,44,52,49,46,51,50,57,57,54,57,93,44,91,45,49,49,49,46,50,50,53,56,50,51,44,52,49,46,49,57,49,48,49,55,93,44,91,45,49,49,49,46,50,54,52,57,55,52,44,52,49,46,49,52,52,48,52,52,93,44,91,45,49,49,49,46,48,52,54,55,54,54,44,52,49,46,50,53,49,54,50,55,93,44,91,45,49,49,49,46,48,52,53,56,51,55,44,52,49,46,53,55,57,56,52,53,93,44,91,45,49,49,49,46,48,52,54,55,49,52,44,52,50,46,48,48,49,55,48,50,93,44,91,45,49,49,49,46,53,48,55,56,48,54,44,52,49,46,57,57,57,53,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,49,51,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,57,55,52,48,57,44,51,54,46,49,54,49,54,53,50,93,44,91,45,57,52,46,56,48,55,55,53,55,44,51,53,46,54,51,56,53,52,54,93,44,91,45,57,52,46,52,55,50,54,52,55,44,51,53,46,54,51,56,53,53,54,93,44,91,45,57,52,46,52,57,51,49,51,44,51,53,46,55,53,57,49,54,55,93,44,91,45,57,52,46,53,53,50,49,55,50,44,51,54,46,49,48,50,49,50,56,93,44,91,45,57,52,46,53,54,50,55,50,55,44,51,54,46,49,54,49,56,57,51,93,44,91,45,57,52,46,55,57,55,52,48,57,44,51,54,46,49,54,49,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,48,53,50,44,34,98,101,100,115,34,58,52,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,57,53,49,56,49,44,52,50,46,48,57,54,52,48,50,93,44,91,45,56,49,46,52,56,55,56,52,50,44,52,49,46,53,55,48,48,53,49,93,44,91,45,56,49,46,51,57,49,48,48,53,44,52,49,46,53,54,57,55,49,54,93,44,91,45,56,49,46,50,57,52,54,54,57,44,52,49,46,54,52,48,56,56,57,93,44,91,45,56,49,46,49,48,49,52,50,50,44,52,49,46,54,52,49,52,53,55,93,44,91,45,56,49,46,48,48,51,54,51,49,44,52,49,46,55,49,53,49,51,55,93,44,91,45,56,49,46,48,48,57,56,50,55,44,52,50,46,50,53,49,54,48,50,93,44,91,45,56,49,46,50,52,57,56,51,51,44,52,50,46,50,49,54,52,49,53,93,44,91,45,56,49,46,52,57,53,49,56,49,44,52,50,46,48,57,54,52,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,55,53,34,44,34,78,65,77,69,34,58,34,83,97,108,101,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,49,57,44,34,98,101,100,115,34,58,51,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,50,50,50,50,54,44,51,55,46,51,48,56,51,51,56,93,44,91,45,56,48,46,48,57,51,54,55,53,44,51,55,46,50,56,50,53,48,50,93,44,91,45,56,48,46,48,51,51,52,54,52,44,51,55,46,50,54,50,56,57,93,44,91,45,56,48,46,48,50,50,50,50,54,44,51,55,46,51,48,56,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,57,57,55,44,34,98,101,100,115,34,58,49,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,48,54,57,54,50,44,51,55,46,50,52,52,56,55,49,93,44,91,45,56,48,46,53,50,57,55,54,50,44,51,55,46,49,51,51,56,52,50,93,44,91,45,56,48,46,53,56,48,52,54,57,44,51,55,46,48,56,57,54,54,50,93,44,91,45,56,48,46,53,52,51,57,51,51,44,51,54,46,57,56,52,54,51,57,93,44,91,45,56,48,46,51,52,53,51,54,50,44,51,55,46,48,50,54,56,49,56,93,44,91,45,56,48,46,49,55,56,49,50,53,44,51,55,46,49,49,51,52,93,44,91,45,56,48,46,49,57,48,55,51,56,44,51,55,46,50,50,55,55,56,51,93,44,91,45,56,48,46,50,54,50,49,56,52,44,51,55,46,51,52,49,53,50,54,93,44,91,45,56,48,46,52,51,48,57,52,51,44,51,55,46,51,49,54,51,55,56,93,44,91,45,56,48,46,54,48,54,57,54,50,44,51,55,46,50,52,52,56,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,53,52,54,44,34,98,101,100,115,34,58,49,55,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,50,53,56,55,55,44,51,53,46,51,53,52,50,55,54,93,44,91,45,56,53,46,51,56,55,48,56,57,44,51,53,46,49,52,55,49,54,57,93,44,91,45,56,53,46,51,56,50,50,53,53,44,51,53,46,48,52,52,55,51,93,44,91,45,56,53,46,52,55,52,48,55,51,44,51,52,46,57,56,51,48,50,93,44,91,45,56,53,46,51,54,51,57,49,57,44,51,52,46,57,56,51,51,55,53,93,44,91,45,56,53,46,50,54,53,48,53,53,44,51,52,46,57,56,53,48,55,53,93,44,91,45,56,52,46,57,55,57,56,54,44,51,52,46,57,56,55,54,52,55,93,44,91,45,56,52,46,57,55,54,57,55,54,44,51,52,46,57,56,55,54,54,52,93,44,91,45,56,53,46,48,50,51,54,44,51,53,46,49,50,53,48,55,51,93,44,91,45,56,52,46,57,52,54,51,51,57,44,51,53,46,50,56,55,55,49,55,93,44,91,45,56,53,46,48,49,54,51,52,51,44,51,53,46,52,48,57,50,56,56,93,44,91,45,56,53,46,49,51,53,49,57,49,44,51,53,46,52,53,56,54,52,57,93,44,91,45,56,53,46,50,50,53,56,55,55,44,51,53,46,51,53,52,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,79,116,101,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,55,52,53,44,34,98,101,100,115,34,58,49,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,51,52,48,53,49,53,44,51,51,46,48,53,50,55,55,55,93,44,91,45,49,48,54,46,51,55,54,53,56,53,44,51,50,46,57,53,56,48,53,93,44,91,45,49,48,54,46,51,55,55,49,55,52,44,51,50,46,48,48,49,53,48,51,93,44,91,45,49,48,53,46,57,57,56,48,49,50,44,51,50,46,48,48,50,51,55,55,93,44,91,45,49,48,52,46,57,49,56,51,53,55,44,51,50,46,48,48,48,52,49,56,93,44,91,45,49,48,52,46,56,52,55,55,52,44,51,50,46,48,48,48,52,49,53,93,44,91,45,49,48,52,46,56,53,49,53,50,52,44,51,50,46,53,50,48,53,52,49,93,44,91,45,49,48,53,46,51,53,52,48,49,44,51,50,46,53,49,56,55,55,54,93,44,91,45,49,48,53,46,51,53,50,53,49,51,44,51,50,46,57,54,50,48,48,55,93,44,91,45,49,48,53,46,51,49,54,57,54,56,44,51,51,46,49,51,50,51,48,51,93,44,91,45,49,48,53,46,51,49,55,51,55,54,44,51,51,46,51,48,53,57,55,55,93,44,91,45,49,48,53,46,55,50,53,57,53,55,44,51,51,46,51,48,52,56,51,52,93,44,91,45,49,48,53,46,55,50,55,49,55,49,44,51,51,46,51,57,48,54,51,51,93,44,91,45,49,48,54,46,51,52,53,55,49,44,51,51,46,51,57,48,53,57,53,93,44,91,45,49,48,54,46,51,52,48,53,49,53,44,51,51,46,48,53,50,55,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,67,97,116,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,54,49,50,50,44,51,52,46,53,55,57,50,57,49,93,44,91,45,49,48,57,46,48,52,54,55,49,55,44,51,51,46,55,55,55,52,48,55,93,44,91,45,49,48,57,46,48,52,55,53,55,56,44,51,51,46,50,48,56,56,57,56,93,44,91,45,49,48,56,46,48,48,48,53,57,56,44,51,51,46,50,48,49,50,53,51,93,44,91,45,49,48,56,46,48,48,48,54,48,50,44,51,51,46,52,55,56,48,49,52,93,44,91,45,49,48,55,46,55,49,50,55,53,52,44,51,51,46,52,55,54,56,51,50,93,44,91,45,49,48,55,46,55,49,54,51,48,49,44,51,52,46,50,53,57,56,53,54,93,44,91,45,49,48,55,46,55,50,52,55,57,52,44,51,52,46,53,55,56,49,51,50,93,44,91,45,49,48,57,46,48,52,54,49,50,50,44,51,52,46,53,55,57,50,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,97,114,101,110,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,51,56,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,51,48,54,54,49,44,51,50,46,51,49,48,53,55,52,93,44,91,45,56,56,46,48,49,57,49,52,53,44,51,50,46,50,56,53,50,52,93,44,91,45,56,56,46,48,48,55,48,55,55,44,51,50,46,49,56,53,51,49,51,93,44,91,45,56,56,46,48,55,51,52,57,44,51,49,46,57,57,48,49,56,50,93,44,91,45,56,55,46,54,54,55,55,54,57,44,51,49,46,57,57,49,51,53,53,93,44,91,45,56,55,46,54,50,52,48,48,53,44,51,50,46,49,51,50,51,52,53,93,44,91,45,56,55,46,53,50,49,57,52,54,44,51,50,46,49,51,50,56,49,54,93,44,91,45,56,55,46,52,55,50,50,48,54,44,51,50,46,50,54,52,57,49,57,93,44,91,45,56,55,46,52,55,51,48,56,44,51,50,46,51,48,55,54,49,52,93,44,91,45,56,55,46,53,50,52,52,56,53,44,51,50,46,52,56,50,48,50,56,93,44,91,45,56,55,46,55,50,56,55,52,52,44,51,50,46,52,56,48,57,49,56,93,44,91,45,56,55,46,56,49,50,53,53,57,44,51,50,46,53,50,52,53,54,93,44,91,45,56,55,46,56,53,51,52,50,44,51,50,46,53,51,50,48,56,54,93,44,91,45,56,56,46,48,51,49,54,50,51,44,51,50,46,52,51,51,54,49,93,44,91,45,56,56,46,48,52,54,51,51,53,44,51,50,46,51,55,55,48,56,55,93,44,91,45,56,55,46,57,51,48,54,54,49,44,51,50,46,51,49,48,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,49,49,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,48,52,54,56,49,55,44,52,50,46,53,49,51,57,50,53,93,44,91,45,49,49,49,46,48,52,54,55,49,52,44,52,50,46,48,48,49,55,48,50,93,44,91,45,49,49,49,46,48,52,53,56,51,55,44,52,49,46,53,55,57,56,52,53,93,44,91,45,49,49,48,46,48,52,56,44,52,49,46,53,55,56,48,49,53,93,44,91,45,49,49,48,46,48,53,51,55,48,56,44,52,50,46,50,55,48,55,52,52,93,44,91,45,49,49,48,46,53,52,49,54,51,52,44,52,50,46,50,55,55,52,57,49,93,44,91,45,49,49,48,46,53,57,48,49,51,49,44,52,50,46,52,52,56,52,51,53,93,44,91,45,49,49,48,46,53,55,56,54,53,54,44,52,51,46,50,51,53,50,50,52,93,44,91,45,49,49,48,46,56,49,51,57,57,51,44,52,51,46,50,51,53,49,55,56,93,44,91,45,49,49,48,46,56,49,51,57,57,54,44,52,51,46,51,49,51,57,52,93,44,91,45,49,49,49,46,48,52,52,56,57,51,44,52,51,46,51,49,53,55,49,57,93,44,91,45,49,49,49,46,48,52,52,48,55,50,44,52,51,46,48,49,57,52,48,55,93,44,91,45,49,49,49,46,48,52,54,56,49,55,44,52,50,46,53,49,51,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,97,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,53,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,55,54,57,56,44,51,55,46,54,53,51,53,55,56,93,44,91,45,57,52,46,54,49,55,53,55,44,51,55,46,51,54,52,49,55,93,44,91,45,57,52,46,48,56,50,48,56,51,44,51,55,46,51,52,57,50,57,49,93,44,91,45,57,52,46,48,55,53,51,56,53,44,51,55,46,53,56,49,53,55,93,44,91,45,57,52,46,48,55,51,53,50,52,44,51,55,46,54,51,57,55,50,50,93,44,91,45,57,52,46,54,49,55,54,57,56,44,51,55,46,54,53,51,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,52,51,52,52,50,44,50,56,46,55,49,50,49,48,53,93,44,91,45,57,54,46,56,53,51,55,53,55,44,50,56,46,54,51,53,49,57,57,93,44,91,45,57,54,46,56,57,48,57,53,49,44,50,56,46,53,48,55,49,55,56,93,44,91,45,57,54,46,55,55,56,54,51,52,44,50,56,46,52,48,52,50,53,57,93,44,91,45,57,54,46,55,57,48,53,49,50,44,50,56,46,51,49,57,50,51,56,93,44,91,45,57,54,46,56,51,48,56,54,49,44,50,56,46,49,48,56,93,44,91,45,57,54,46,56,49,53,57,48,53,44,50,56,46,48,50,50,56,51,53,93,44,91,45,57,54,46,54,49,56,55,56,53,44,50,56,46,49,54,57,53,50,50,93,44,91,45,57,54,46,51,57,53,49,57,56,44,50,56,46,50,55,57,55,51,54,93,44,91,45,57,54,46,51,50,51,53,50,50,44,50,56,46,54,55,53,53,57,55,93,44,91,45,57,54,46,54,52,51,52,52,50,44,50,56,46,55,49,50,49,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,51,53,34,44,34,78,65,77,69,34,58,34,80,111,113,117,111,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,49,51,53,53,50,44,51,55,46,49,57,49,57,55,93,44,91,45,55,54,46,51,51,48,52,51,53,44,51,55,46,49,57,48,57,56,52,93,44,91,45,55,54,46,51,57,53,55,57,53,44,51,55,46,49,48,55,49,55,52,93,44,91,45,55,54,46,49,51,52,57,52,49,44,51,55,46,49,49,55,54,48,51,93,44,91,45,55,54,46,49,51,53,53,50,44,51,55,46,49,57,49,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,80,111,99,97,104,111,110,116,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,50,52,53,53,49,56,44,51,56,46,51,56,56,52,53,55,93,44,91,45,56,48,46,51,51,48,50,54,55,44,51,56,46,51,51,53,55,53,56,93,44,91,45,56,48,46,51,54,48,48,52,56,44,51,56,46,50,50,53,56,52,53,93,44,91,45,56,48,46,51,54,51,50,57,53,44,51,56,46,49,49,52,51,51,49,93,44,91,45,56,48,46,50,54,52,54,53,51,44,51,56,46,48,52,54,54,49,54,93,44,91,45,55,57,46,57,53,57,56,52,52,44,51,56,46,48,54,51,54,57,55,93,44,91,45,55,57,46,56,57,55,51,51,53,44,51,56,46,49,57,51,51,56,49,93,44,91,45,55,57,46,55,57,53,57,50,49,44,51,56,46,50,54,53,53,53,50,93,44,91,45,55,57,46,54,56,57,54,54,55,44,51,56,46,52,51,49,52,54,50,93,44,91,45,55,57,46,54,52,57,48,55,53,44,51,56,46,53,57,49,53,49,53,93,44,91,45,55,57,46,54,50,54,55,55,52,44,51,56,46,54,54,52,50,49,52,93,44,91,45,55,57,46,55,57,56,50,56,51,44,51,56,46,55,48,51,50,49,49,93,44,91,45,55,57,46,56,54,51,50,53,44,51,56,46,53,53,48,56,50,93,44,91,45,56,48,46,48,50,57,50,48,56,44,51,56,46,52,53,57,49,56,52,93,44,91,45,56,48,46,49,49,54,57,50,44,51,56,46,52,55,51,57,53,51,93,44,91,45,56,48,46,50,52,53,53,49,56,44,51,56,46,51,56,56,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,56,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,50,51,53,51,51,44,51,52,46,48,56,50,56,52,51,93,44,91,45,57,56,46,52,50,51,53,55,55,44,51,51,46,56,51,54,48,52,55,93,44,91,45,57,56,46,52,50,49,52,49,57,44,51,51,46,52,54,54,55,57,55,93,44,91,45,57,55,46,57,55,56,57,49,57,44,51,51,46,52,54,55,49,50,57,93,44,91,45,57,55,46,57,55,55,56,54,44,51,51,46,56,56,57,56,50,53,93,44,91,45,57,55,46,57,52,54,56,48,50,44,51,51,46,57,57,48,56,57,51,93,44,91,45,57,56,46,48,56,52,52,51,53,44,51,52,46,48,48,50,56,57,51,93,44,91,45,57,56,46,49,51,57,48,55,50,44,51,52,46,49,52,49,56,55,93,44,91,45,57,56,46,51,54,52,48,50,51,44,51,52,46,49,53,55,49,48,57,93,44,91,45,57,56,46,52,50,51,53,51,51,44,51,52,46,48,56,50,56,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,74,97,109,101,115,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,49,53,51,44,34,98,101,100,115,34,58,50,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,52,49,57,56,52,44,51,55,46,52,54,55,48,55,54,93,44,91,45,55,54,46,57,48,52,52,55,49,44,51,55,46,51,55,55,54,54,53,93,44,91,45,55,54,46,56,56,51,49,53,54,44,51,55,46,50,50,51,48,53,55,93,44,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,44,91,45,55,54,46,53,57,49,51,48,50,44,51,55,46,50,49,51,50,48,53,93,44,91,45,55,54,46,54,56,48,49,53,49,44,51,55,46,50,54,53,57,57,55,93,44,91,45,55,54,46,55,52,49,48,49,55,44,51,55,46,50,54,53,57,56,52,93,44,91,45,55,54,46,55,50,55,56,53,57,44,51,55,46,51,48,53,57,50,55,93,44,91,45,55,54,46,54,53,56,54,53,49,44,51,55,46,51,56,48,49,51,57,93,44,91,45,55,54,46,55,49,50,51,48,53,44,51,55,46,52,51,49,51,48,57,93,44,91,45,55,54,46,55,52,49,57,56,52,44,51,55,46,52,54,55,48,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,75,101,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,57,57,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,53,49,55,54,49,44,52,49,46,48,48,51,56,57,93,44,91,45,49,48,49,46,50,52,57,57,55,53,44,52,49,46,48,48,51,57,53,93,44,91,45,49,48,49,46,50,55,48,51,56,49,44,52,49,46,48,52,55,51,57,50,93,44,91,45,49,48,49,46,50,54,57,54,57,53,44,52,49,46,51,57,52,57,51,52,93,44,91,45,49,48,49,46,52,48,55,50,54,44,52,49,46,51,57,53,52,49,54,93,44,91,45,49,48,49,46,57,56,52,54,51,44,52,49,46,51,57,52,55,49,50,93,44,91,45,49,48,50,46,48,53,53,50,53,54,44,52,49,46,51,57,53,49,54,50,93,44,91,45,49,48,50,46,48,53,53,53,51,53,44,52,49,46,50,50,49,53,52,55,93,44,91,45,49,48,50,46,48,53,49,55,54,49,44,52,49,46,48,48,51,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,80,104,101,108,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,50,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,52,51,52,54,50,44,52,48,46,54,56,52,57,49,49,93,44,91,45,57,57,46,54,52,50,50,48,57,44,52,48,46,51,53,49,50,93,44,91,45,57,57,46,54,51,48,52,53,57,44,52,48,46,51,53,49,49,50,93,44,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,44,91,45,57,57,46,49,55,57,50,52,56,44,52,48,46,54,54,48,53,52,49,93,44,91,45,57,57,46,52,49,55,51,49,54,44,52,48,46,54,55,48,56,50,53,93,44,91,45,57,57,46,54,52,51,52,54,50,44,52,48,46,54,56,52,57,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,108,99,97,115,105,101,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,49,56,50,44,34,98,101,100,115,34,58,57,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,50,50,53,49,55,44,51,48,46,48,53,48,56,55,50,93,44,91,45,57,51,46,49,50,56,52,55,53,44,51,48,46,48,53,50,53,56,55,93,44,91,45,57,50,46,57,57,54,51,55,49,44,51,48,46,48,51,56,52,55,57,93,44,91,45,57,51,46,48,51,48,57,53,53,44,51,48,46,51,55,57,51,57,93,44,91,45,57,51,46,49,51,49,49,48,57,44,51,48,46,52,48,51,48,53,55,93,44,91,45,57,51,46,55,52,49,54,55,57,44,51,48,46,52,48,50,57,55,53,93,44,91,45,57,51,46,55,54,52,50,53,50,44,51,48,46,51,51,48,50,50,57,93,44,91,45,57,51,46,55,48,54,57,57,51,44,51,48,46,50,52,51,55,51,54,93,44,91,45,57,51,46,55,50,50,53,49,55,44,51,48,46,48,53,48,56,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,55,53,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,50,52,55,52,44,51,51,46,48,49,52,51,57,93,44,91,45,57,50,46,55,50,53,52,51,57,44,51,50,46,55,53,57,53,52,93,44,91,45,57,50,46,54,50,56,50,56,56,44,51,50,46,55,53,57,54,54,57,93,44,91,45,57,50,46,52,49,53,48,53,44,51,50,46,54,55,48,48,53,54,93,44,91,45,57,50,46,52,49,53,48,55,49,44,51,50,46,53,56,50,56,52,53,93,44,91,45,57,50,46,50,55,50,51,49,51,44,51,50,46,53,56,48,57,55,53,93,44,91,45,57,50,46,48,54,53,49,55,57,44,51,50,46,55,50,51,48,48,51,93,44,91,45,57,50,46,48,54,57,49,48,53,44,51,51,46,48,48,56,49,54,51,93,44,91,45,57,50,46,55,50,52,55,52,44,51,51,46,48,49,52,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,83,101,113,117,111,121,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,51,53,57,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,48,55,55,53,55,44,51,53,46,54,51,56,53,52,54,93,44,91,45,57,53,46,49,50,55,50,49,51,44,51,53,46,54,51,56,56,56,56,93,44,91,45,57,53,46,49,51,50,50,55,49,44,51,53,46,53,50,54,48,53,53,93,44,91,45,57,53,46,48,52,57,57,51,51,44,51,53,46,52,53,56,56,57,52,93,44,91,45,57,52,46,56,49,51,54,50,57,44,51,53,46,51,50,51,51,52,52,93,44,91,45,57,52,46,54,54,56,55,57,54,44,51,53,46,50,57,53,48,50,57,93,44,91,45,57,52,46,52,57,53,50,53,49,44,51,53,46,51,48,49,50,93,44,91,45,57,52,46,52,51,53,53,57,44,51,53,46,51,56,54,49,50,50,93,44,91,45,57,52,46,52,51,49,48,52,53,44,51,53,46,51,57,51,55,51,53,93,44,91,45,57,52,46,52,55,50,54,52,55,44,51,53,46,54,51,56,53,53,54,93,44,91,45,57,52,46,56,48,55,55,53,55,44,51,53,46,54,51,56,53,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,50,48,48,44,34,98,101,100,115,34,58,49,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,56,51,49,52,53,44,51,52,46,56,54,48,51,55,49,93,44,91,45,56,53,46,55,56,53,52,55,49,44,51,52,46,54,50,52,53,56,52,93,44,91,45,56,54,46,48,48,51,56,52,44,51,52,46,52,56,48,48,51,49,93,44,91,45,56,54,46,48,53,55,55,49,50,44,51,52,46,52,55,53,57,57,52,93,44,91,45,56,54,46,49,49,48,51,54,50,44,51,52,46,52,50,55,55,57,55,93,44,91,45,56,54,46,49,48,54,48,56,54,44,51,52,46,50,48,48,55,53,54,93,44,91,45,56,53,46,56,52,51,54,49,55,44,51,52,46,50,48,48,48,48,54,93,44,91,45,56,53,46,54,51,54,54,52,53,44,51,52,46,51,54,54,54,50,50,93,44,91,45,56,53,46,53,49,51,54,49,50,44,51,52,46,53,50,51,56,50,53,93,44,91,45,56,53,46,53,50,55,50,54,49,44,51,52,46,53,56,56,54,56,51,93,44,91,45,56,53,46,53,51,52,48,56,57,44,51,52,46,54,50,51,56,53,56,93,44,91,45,56,53,46,53,56,51,49,52,53,44,51,52,46,56,54,48,51,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,83,116,101,117,98,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,57,50,55,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,54,54,53,48,53,44,52,50,46,53,55,54,51,54,56,93,44,91,45,55,55,46,52,57,48,56,56,57,44,52,50,46,53,55,55,50,56,56,93,44,91,45,55,55,46,54,53,57,57,49,55,44,52,50,46,53,56,48,52,48,57,93,44,91,45,55,55,46,55,50,50,57,54,52,44,52,50,46,52,55,49,50,49,54,93,44,91,45,55,55,46,55,52,57,57,51,49,44,52,49,46,57,57,56,55,56,50,93,44,91,45,55,55,46,54,49,48,48,50,55,44,52,49,46,57,57,57,51,54,56,93,44,91,45,55,54,46,57,54,53,55,50,56,44,52,50,46,48,48,49,50,55,54,93,44,91,45,55,54,46,57,54,53,48,50,56,44,52,50,46,50,55,56,52,57,53,93,44,91,45,55,55,46,48,57,57,54,53,55,44,52,50,46,50,55,50,51,53,54,93,44,91,45,55,55,46,49,48,55,50,48,51,44,52,50,46,52,56,51,55,55,49,93,44,91,45,55,55,46,49,52,51,55,57,53,44,52,50,46,53,55,54,56,54,57,93,44,91,45,55,55,46,51,54,54,53,48,53,44,52,50,46,53,55,54,51,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,70,111,114,101,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,53,54,48,52,50,44,52,49,46,54,50,51,52,48,50,93,44,91,45,55,57,46,53,49,50,48,55,44,52,49,46,54,50,52,53,53,57,93,44,91,45,55,57,46,52,55,55,56,50,50,44,52,49,46,51,56,54,52,55,57,93,44,91,45,55,57,46,52,48,48,50,54,57,44,52,49,46,52,51,54,49,52,53,93,44,91,45,55,57,46,50,48,55,49,57,54,44,52,49,46,52,51,48,57,50,50,93,44,91,45,55,57,46,50,48,56,56,55,56,44,52,49,46,51,51,49,56,54,49,93,44,91,45,55,57,46,48,57,53,48,57,54,44,52,49,46,51,52,48,54,53,56,93,44,91,45,55,57,46,48,57,51,53,56,56,44,52,49,46,52,50,51,50,56,54,93,44,91,45,55,56,46,57,55,54,54,53,56,44,52,49,46,52,53,49,55,54,49,93,44,91,45,55,56,46,57,53,54,48,52,50,44,52,49,46,54,50,51,52,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,84,97,110,103,105,112,97,104,111,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,48,53,48,52,44,34,98,101,100,115,34,58,53,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,54,55,49,54,53,44,51,48,46,54,53,48,48,50,51,93,44,91,45,57,48,46,53,54,54,57,48,54,44,51,48,46,52,56,55,48,54,93,44,91,45,57,48,46,52,55,55,56,44,51,48,46,51,53,54,52,52,55,93,44,91,45,57,48,46,52,56,53,56,50,54,44,51,48,46,50,55,54,57,57,50,93,44,91,45,57,48,46,51,48,48,57,50,51,44,51,48,46,50,57,52,54,56,93,44,91,45,57,48,46,49,54,48,54,51,54,44,51,48,46,50,51,52,51,51,55,93,44,91,45,57,48,46,50,52,51,54,52,57,44,51,48,46,51,54,49,53,56,49,93,44,91,45,57,48,46,50,53,53,54,52,56,44,51,48,46,55,49,49,57,48,53,93,44,91,45,57,48,46,51,52,54,55,49,44,51,48,46,57,48,53,52,50,55,93,44,91,45,57,48,46,51,52,55,50,53,53,44,51,49,46,48,48,48,53,51,93,44,91,45,57,48,46,53,52,55,54,49,54,44,51,48,46,57,57,57,55,50,93,44,91,45,57,48,46,53,54,55,49,57,53,44,51,48,46,57,57,57,55,51,51,93,44,91,45,57,48,46,53,54,55,49,54,53,44,51,48,46,54,53,48,48,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,83,116,97,102,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,48,49,50,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,53,51,49,51,50,56,44,51,56,46,53,53,54,53,53,93,44,91,45,55,55,46,54,51,52,57,52,44,51,56,46,52,49,48,50,49,56,93,44,91,45,55,55,46,54,49,56,55,50,55,44,51,56,46,51,54,55,56,51,53,93,44,91,45,55,55,46,53,51,48,50,56,51,44,51,56,46,51,48,57,49,55,53,93,44,91,45,55,55,46,52,54,55,48,53,51,44,51,56,46,51,49,56,54,54,93,44,91,45,55,55,46,52,52,55,49,50,54,44,51,56,46,50,56,52,54,49,52,93,44,91,45,55,55,46,51,55,48,50,57,55,44,51,56,46,50,52,54,53,55,54,93,44,91,45,55,55,46,51,50,54,54,57,50,44,51,56,46,50,52,53,49,51,54,93,44,91,45,55,55,46,50,56,55,48,57,55,44,51,56,46,51,52,56,56,93,44,91,45,55,55,46,50,57,53,52,48,54,44,51,56,46,53,48,57,50,51,57,93,44,91,45,55,55,46,52,55,54,56,52,55,44,51,56,46,53,57,50,50,56,54,93,44,91,45,55,55,46,53,51,49,51,50,56,44,51,56,46,53,53,54,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,77,101,110,111,109,105,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,51,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,54,55,56,52,57,44,52,53,46,57,56,53,51,50,49,93,44,91,45,56,55,46,54,49,55,48,57,49,44,52,53,46,57,56,54,48,49,52,93,44,91,45,56,55,46,54,57,54,57,52,54,44,52,53,46,56,57,56,56,52,50,93,44,91,45,56,55,46,54,57,55,49,53,57,44,52,53,46,55,50,50,57,54,93,44,91,45,56,55,46,56,52,54,54,48,50,44,52,53,46,55,50,50,53,52,52,93,44,91,45,56,55,46,55,55,52,54,56,50,44,52,53,46,54,48,50,48,50,52,93,44,91,45,56,55,46,55,57,50,55,54,57,44,52,53,46,52,57,57,57,54,55,93,44,91,45,56,55,46,56,56,52,56,53,53,44,52,53,46,51,54,50,55,57,50,93,44,91,45,56,55,46,54,52,55,55,54,56,44,52,53,46,51,52,48,53,54,51,93,44,91,45,56,55,46,55,51,53,50,56,50,44,52,53,46,49,55,54,53,54,53,93,44,91,45,56,55,46,54,54,49,50,49,49,44,52,53,46,49,48,56,50,55,57,93,44,91,45,56,55,46,52,52,50,55,54,44,52,53,46,48,55,54,52,55,49,93,44,91,45,56,55,46,52,48,53,54,57,52,44,52,53,46,50,48,49,57,54,57,93,44,91,45,56,55,46,51,49,53,52,50,50,44,52,53,46,50,52,48,54,53,55,93,44,91,45,56,55,46,49,50,55,56,50,54,44,52,53,46,52,48,57,52,56,55,93,44,91,45,56,55,46,49,50,57,49,49,56,44,52,53,46,53,53,48,52,56,53,93,44,91,45,56,55,46,51,50,55,53,48,50,44,52,53,46,53,53,49,50,53,93,44,91,45,56,55,46,51,50,53,51,57,49,44,52,53,46,56,57,56,54,54,53,93,44,91,45,56,55,46,51,54,55,56,52,57,44,52,53,46,57,56,53,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,52,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,55,53,56,56,50,44,52,49,46,50,49,56,53,57,53,93,44,91,45,56,55,46,50,54,55,50,57,56,44,52,48,46,55,51,54,53,56,50,93,44,91,45,56,55,46,48,57,56,51,57,44,52,48,46,55,51,54,53,52,49,93,44,91,45,56,55,46,48,57,57,55,57,51,44,52,48,46,56,51,55,54,48,55,93,44,91,45,56,54,46,57,56,54,52,51,56,44,52,48,46,56,51,55,57,50,49,93,44,91,45,56,54,46,57,51,48,55,53,57,44,52,48,46,57,49,50,52,49,56,93,44,91,45,56,54,46,57,51,48,49,55,44,52,49,46,49,55,50,51,49,56,93,44,91,45,56,54,46,57,51,48,48,55,57,44,52,49,46,50,51,54,55,57,56,93,44,91,45,56,55,46,49,51,49,54,53,51,44,52,49,46,50,56,54,49,53,53,93,44,91,45,56,55,46,50,49,56,56,54,50,44,52,49,46,50,52,50,48,50,55,93,44,91,45,56,55,46,50,55,53,56,56,50,44,52,49,46,50,49,56,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,66,114,97,110,116,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,51,49,54,57,52,44,51,49,46,51,51,48,48,52,56,93,44,91,45,56,50,46,48,52,49,49,50,57,44,51,49,46,51,55,51,55,50,49,93,44,91,45,56,50,46,48,57,50,55,50,44,51,49,46,50,55,54,49,49,57,93,44,91,45,56,50,46,49,57,52,56,50,52,44,51,49,46,50,48,55,53,57,93,44,91,45,56,50,46,50,56,52,53,54,49,44,51,49,46,50,50,52,52,52,57,93,44,91,45,56,50,46,50,48,56,55,51,50,44,51,49,46,49,55,48,57,51,56,93,44,91,45,56,50,46,50,48,56,50,54,50,44,51,49,46,48,56,52,55,54,56,93,44,91,45,56,50,46,49,51,49,54,57,56,44,51,49,46,48,49,48,55,49,52,93,44,91,45,56,50,46,48,54,48,56,55,44,51,49,46,48,55,53,56,48,57,93,44,91,45,56,49,46,57,51,54,48,48,54,44,51,49,46,48,52,55,57,57,51,93,44,91,45,56,49,46,55,54,54,51,50,50,44,51,49,46,49,54,57,53,57,53,93,44,91,45,56,49,46,55,51,49,54,57,52,44,51,49,46,51,51,48,48,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,76,97,109,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,52,56,49,56,53,44,51,51,46,49,56,57,48,49,57,93,44,91,45,56,52,46,50,55,48,49,52,44,51,50,46,57,57,49,48,49,49,93,44,91,45,56,52,46,49,50,51,51,52,44,51,50,46,57,51,50,49,56,52,93,44,91,45,56,52,46,48,52,52,49,49,51,44,51,50,46,57,52,55,56,55,52,93,44,91,45,56,52,46,48,52,49,52,57,56,44,51,51,46,50,48,50,54,50,57,93,44,91,45,56,52,46,49,50,51,55,54,55,44,51,51,46,50,48,50,56,50,52,93,44,91,45,56,52,46,50,52,56,49,56,53,44,51,51,46,49,56,57,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,116,101,117,98,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,57,54,55,55,52,44,52,49,46,55,53,57,54,52,52,93,44,91,45,56,53,46,49,57,52,48,56,52,44,52,49,46,53,50,54,52,51,55,93,44,91,45,56,52,46,56,48,52,54,56,55,44,52,49,46,53,51,48,49,51,52,93,44,91,45,56,52,46,56,48,53,57,55,50,44,52,49,46,54,57,54,49,49,56,93,44,91,45,56,52,46,56,50,53,49,51,44,52,49,46,55,53,57,57,57,57,93,44,91,45,56,53,46,49,57,54,55,55,52,44,52,49,46,55,53,57,54,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,54,49,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,48,52,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,49,49,53,57,49,55,44,51,48,46,49,54,48,51,52,55,93,44,91,45,57,52,46,48,51,49,57,55,54,44,51,48,46,48,50,56,48,49,51,93,44,91,45,57,51,46,56,54,48,49,54,57,44,50,57,46,57,55,55,51,57,55,93,44,91,45,57,51,46,56,53,52,52,49,50,44,50,57,46,56,54,53,48,53,51,93,44,91,45,57,51,46,55,50,50,53,49,55,44,51,48,46,48,53,48,56,55,50,93,44,91,45,57,51,46,55,48,54,57,57,51,44,51,48,46,50,52,51,55,51,54,93,44,91,45,57,51,46,57,48,49,52,53,50,44,51,48,46,50,52,50,54,55,50,93,44,91,45,57,52,46,49,49,55,54,48,52,44,51,48,46,50,52,49,54,54,53,93,44,91,45,57,52,46,49,49,53,57,49,55,44,51,48,46,49,54,48,51,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,52,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,53,51,51,51,44,51,57,46,55,49,54,56,55,54,93,44,91,45,56,51,46,54,55,48,49,57,54,44,51,57,46,53,53,48,50,53,52,93,44,91,45,56,51,46,53,55,54,50,56,54,44,51,57,46,53,52,52,53,52,55,93,44,91,45,56,51,46,53,57,48,56,55,56,44,51,57,46,51,55,56,55,51,54,93,44,91,45,56,51,46,51,55,50,55,49,52,44,51,57,46,51,55,55,52,49,54,93,44,91,45,56,51,46,50,54,54,55,51,55,44,51,57,46,53,49,54,50,52,57,93,44,91,45,56,51,46,50,53,50,52,51,53,44,51,57,46,54,57,53,52,51,56,93,44,91,45,56,51,46,54,53,51,51,51,44,51,57,46,55,49,54,56,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,49,53,57,44,34,98,101,100,115,34,58,49,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,57,55,53,52,48,57,44,52,50,46,53,53,54,48,51,55,93,44,91,45,55,51,46,48,48,48,49,55,51,44,52,50,46,51,49,50,54,55,56,93,44,91,45,55,50,46,55,56,49,48,51,57,44,52,50,46,49,57,57,55,52,57,93,44,91,45,55,50,46,50,50,49,50,49,56,44,52,50,46,50,52,53,50,53,50,93,44,91,45,55,50,46,51,49,52,50,53,51,44,52,50,46,51,52,51,54,56,56,93,44,91,45,55,50,46,51,55,53,48,50,50,44,52,50,46,52,50,48,56,49,57,93,44,91,45,55,50,46,56,55,49,49,51,54,44,52,50,46,52,56,52,48,52,49,93,44,91,45,55,50,46,57,55,53,52,48,57,44,52,50,46,53,53,54,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,57,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,54,54,55,52,44,51,54,46,57,51,52,48,49,53,93,44,91,45,56,54,46,52,48,53,55,54,57,44,51,54,46,55,55,54,49,56,55,93,44,91,45,56,54,46,52,49,49,51,55,57,44,51,54,46,54,53,48,57,50,52,93,44,91,45,56,54,46,50,48,53,51,56,56,44,51,54,46,54,52,48,49,56,52,93,44,91,45,56,53,46,57,55,54,52,49,56,44,51,54,46,54,50,56,52,57,51,93,44,91,45,56,53,46,57,55,54,57,49,44,51,54,46,55,50,50,55,50,50,93,44,91,45,56,54,46,48,54,57,57,53,55,44,51,54,46,56,48,53,55,56,51,93,44,91,45,56,54,46,48,55,48,50,57,51,44,51,54,46,56,55,56,49,56,56,93,44,91,45,56,54,46,49,54,54,55,52,44,51,54,46,57,51,52,48,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,97,109,97,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,53,55,54,44,34,98,101,100,115,34,58,50,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,53,51,50,52,49,44,51,54,46,50,52,49,52,54,51,93,44,91,45,55,57,46,53,52,49,55,50,56,44,51,53,46,56,57,57,56,53,49,93,44,91,45,55,57,46,53,52,50,52,50,56,44,51,53,46,56,52,51,51,48,51,93,44,91,45,55,57,46,50,52,57,53,51,56,44,51,53,46,56,55,54,56,49,93,44,91,45,55,57,46,50,53,55,57,53,50,44,51,54,46,50,52,51,52,52,53,93,44,91,45,55,57,46,53,51,49,56,54,53,44,51,54,46,50,52,57,54,55,51,93,44,91,45,55,57,46,53,51,50,52,49,44,51,54,46,50,52,49,52,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,53,55,50,55,55,44,51,56,46,49,55,50,54,54,93,44,91,45,57,54,46,51,53,56,48,57,57,44,51,56,46,48,56,53,56,49,55,93,44,91,45,57,54,46,53,50,50,55,56,50,44,51,56,46,48,56,54,51,55,93,44,91,45,57,54,46,53,50,53,51,44,51,55,46,54,48,55,48,49,53,93,44,91,45,57,53,46,57,54,49,48,48,50,44,51,55,46,54,48,51,55,54,49,93,44,91,45,57,53,46,57,54,48,56,55,54,44,51,55,46,55,51,52,51,48,52,93,44,91,45,57,53,46,57,53,57,48,52,54,44,51,56,46,48,52,48,49,57,53,93,44,91,45,57,53,46,57,53,56,56,54,50,44,51,56,46,49,55,48,57,51,57,93,44,91,45,57,54,46,51,53,55,50,55,55,44,51,56,46,49,55,50,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,83,117,102,102,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,49,55,54,54,44,34,98,101,100,115,34,58,54,50,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,48,50,53,56,51,54,44,52,50,46,52,52,52,55,48,57,93,44,91,45,55,49,46,49,53,55,48,51,54,44,52,50,46,51,51,48,51,57,93,44,91,45,55,49,46,49,54,52,55,48,50,44,52,50,46,51,48,51,56,51,93,44,91,45,55,49,46,49,57,49,49,53,53,44,52,50,46,50,56,51,48,53,57,93,44,91,45,55,48,46,57,54,48,49,57,50,44,52,50,46,50,57,57,52,57,56,93,44,91,45,55,48,46,56,57,52,50,57,50,44,52,50,46,51,55,50,51,57,57,93,44,91,45,55,48,46,55,50,57,50,49,50,44,52,50,46,51,55,51,56,52,56,93,44,91,45,55,48,46,54,55,53,54,57,44,52,50,46,51,55,53,48,57,56,93,44,91,45,55,48,46,54,53,56,55,50,51,44,52,50,46,51,55,53,48,57,56,93,44,91,45,55,48,46,54,52,56,48,55,50,44,52,50,46,52,48,53,54,50,56,93,44,91,45,55,48,46,57,50,52,53,57,51,44,52,50,46,51,56,54,55,57,56,93,44,91,45,55,49,46,48,50,53,56,51,54,44,52,50,46,52,52,52,55,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,54,50,54,48,52,51,44,52,51,46,54,50,54,55,53,54,93,44,91,45,49,49,49,46,57,51,52,51,53,55,44,52,51,46,55,54,54,49,54,93,44,91,45,49,49,49,46,57,55,54,56,52,57,44,52,51,46,57,50,55,51,56,53,93,44,91,45,49,49,50,46,49,53,54,51,55,44,52,51,46,57,55,49,50,52,55,93,44,91,45,49,49,50,46,49,53,53,57,51,53,44,52,52,46,48,53,55,55,56,93,44,91,45,49,49,50,46,54,57,52,55,52,52,44,52,52,46,48,53,56,52,54,52,93,44,91,45,49,49,50,46,54,57,53,50,52,50,44,52,51,46,57,55,49,57,52,49,93,44,91,45,49,49,50,46,54,57,55,49,50,50,44,52,51,46,54,50,51,49,52,93,44,91,45,49,49,50,46,53,49,57,56,54,49,44,52,51,46,54,50,54,54,50,51,93,44,91,45,49,49,49,46,54,50,54,48,52,51,44,52,51,46,54,50,54,55,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,71,111,110,122,97,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,54,55,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,51,51,49,55,54,44,50,57,46,54,52,57,56,54,51,93,44,91,45,57,55,46,56,52,48,51,56,51,44,50,57,46,51,55,54,55,57,49,93,44,91,45,57,55,46,55,50,56,52,52,51,44,50,57,46,50,50,49,55,52,56,93,44,91,45,57,55,46,54,49,51,49,51,50,44,50,57,46,49,48,57,55,54,53,93,44,91,45,57,55,46,50,52,48,49,48,56,44,50,57,46,51,56,52,52,56,56,93,44,91,45,57,55,46,50,48,52,48,56,55,44,50,57,46,53,56,48,54,49,51,93,44,91,45,57,55,46,49,52,50,54,52,51,44,50,57,46,54,50,56,49,48,49,93,44,91,45,57,55,46,51,49,55,56,57,51,44,50,57,46,55,56,52,54,53,56,93,44,91,45,57,55,46,53,57,55,55,52,51,44,50,57,46,54,51,48,55,49,56,93,44,91,45,57,55,46,54,51,51,49,55,54,44,50,57,46,54,52,57,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,56,55,48,56,57,44,51,53,46,49,52,55,49,54,57,93,44,91,45,56,53,46,52,52,52,49,52,52,44,51,53,46,50,54,50,54,52,54,93,44,91,45,56,53,46,53,53,56,53,53,49,44,51,53,46,51,49,57,50,57,50,93,44,91,45,56,53,46,54,57,48,52,49,53,44,51,53,46,50,56,54,48,55,53,93,44,91,45,56,53,46,55,52,48,49,49,51,44,51,53,46,50,49,53,50,57,53,93,44,91,45,56,53,46,56,55,51,48,50,53,44,51,53,46,50,50,51,51,54,50,93,44,91,45,56,53,46,56,54,51,57,51,53,44,51,52,46,57,56,56,50,53,51,93,44,91,45,56,53,46,54,48,53,49,54,53,44,51,52,46,57,56,52,54,55,56,93,44,91,45,56,53,46,52,55,52,48,55,51,44,51,52,46,57,56,51,48,50,93,44,91,45,56,53,46,51,56,50,50,53,53,44,51,53,46,48,52,52,55,51,93,44,91,45,56,53,46,51,56,55,48,56,57,44,51,53,46,49,52,55,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,108,112,101,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,49,50,44,34,98,101,100,115,34,58,49,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,57,48,53,57,54,44,52,53,46,50,48,56,52,56,52,93,44,91,45,56,51,46,56,56,49,50,50,51,44,52,53,46,50,48,50,48,55,49,93,44,91,45,56,51,46,56,56,56,52,56,50,44,52,52,46,56,53,54,54,51,53,93,44,91,45,56,51,46,56,56,56,52,56,52,44,52,52,46,56,53,54,52,53,56,93,44,91,45,56,50,46,52,48,56,55,49,55,44,52,52,46,56,53,56,49,52,55,93,44,91,45,56,50,46,52,57,48,53,57,54,44,52,53,46,50,48,56,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,49,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,51,53,55,49,50,44,51,54,46,57,57,55,54,49,50,93,44,91,45,56,53,46,48,54,52,51,48,55,44,51,54,46,56,53,56,55,52,51,93,44,91,45,56,52,46,57,55,52,56,49,49,44,51,54,46,54,49,53,52,54,53,93,44,91,45,56,52,46,55,56,53,52,53,44,51,54,46,54,48,51,52,52,52,93,44,91,45,56,52,46,55,55,56,52,53,52,44,51,54,46,54,48,51,50,57,93,44,91,45,56,52,46,53,55,56,49,53,56,44,51,54,46,56,54,55,49,51,51,93,44,91,45,56,52,46,54,55,57,49,54,53,44,51,54,46,57,56,48,57,49,52,93,44,91,45,56,52,46,56,51,53,55,49,50,44,51,54,46,57,57,55,54,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,53,56,48,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,52,52,54,48,52,44,51,54,46,48,49,53,48,53,51,93,44,91,45,56,53,46,54,56,50,48,57,53,44,51,53,46,56,51,49,50,53,52,93,44,91,45,56,53,46,54,48,50,56,55,54,44,51,53,46,55,57,52,57,57,54,93,44,91,45,56,53,46,52,52,57,51,54,44,51,53,46,56,50,49,53,53,57,93,44,91,45,56,53,46,50,54,57,51,53,57,44,51,53,46,55,57,51,51,56,56,93,44,91,45,56,53,46,50,50,50,53,50,52,44,51,53,46,56,55,55,51,54,52,93,44,91,45,56,53,46,50,54,52,50,48,54,44,51,53,46,57,55,57,49,53,52,93,44,91,45,56,53,46,51,53,54,54,49,57,44,51,54,46,48,52,53,56,57,51,93,44,91,45,56,53,46,53,48,55,54,55,55,44,51,54,46,48,56,50,48,49,50,93,44,91,45,56,53,46,54,52,52,54,48,52,44,51,54,46,48,49,53,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,70,97,110,110,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,49,55,53,44,34,98,101,100,115,34,58,51,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,55,57,52,53,50,44,51,51,46,55,50,53,55,54,52,93,44,91,45,57,54,46,51,56,52,54,48,50,44,51,51,46,51,57,55,56,50,54,93,44,91,45,57,54,46,50,57,53,52,49,51,44,51,51,46,51,53,49,57,51,54,93,44,91,45,57,53,46,56,53,56,55,50,51,44,51,51,46,52,48,57,53,51,93,44,91,45,57,53,46,56,53,55,55,51,56,44,51,51,46,52,54,49,55,50,50,93,44,91,45,57,53,46,56,52,54,53,51,54,44,51,51,46,56,51,57,56,53,53,93,44,91,45,57,53,46,57,52,54,48,51,44,51,51,46,56,53,57,51,51,56,93,44,91,45,57,54,46,49,52,57,50,50,55,44,51,51,46,56,51,55,48,57,49,93,44,91,45,57,54,46,49,55,57,56,52,54,44,51,51,46,55,53,57,54,49,56,93,44,91,45,57,54,46,50,57,48,51,53,57,44,51,51,46,55,55,48,56,51,49,93,44,91,45,57,54,46,51,55,57,52,53,50,44,51,51,46,55,50,53,55,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,111,110,105,112,104,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,51,57,56,57,54,44,51,57,46,57,57,57,57,57,57,93,44,91,45,57,53,46,51,51,57,55,52,44,51,57,46,54,53,50,57,56,93,44,91,45,57,53,46,49,49,53,49,56,57,44,51,57,46,54,53,50,53,52,57,93,44,91,45,57,53,46,48,53,51,53,56,54,44,51,57,46,54,49,53,50,54,57,93,44,91,45,57,52,46,56,55,54,53,53,56,44,51,57,46,56,50,48,56,56,51,93,44,91,45,57,52,46,57,57,51,51,56,50,44,51,57,46,56,57,55,57,48,54,93,44,91,45,57,53,46,48,56,53,48,48,51,44,51,57,46,56,54,49,56,56,51,93,44,91,45,57,53,46,51,48,56,50,57,44,51,57,46,57,57,57,57,57,56,93,44,91,45,57,53,46,51,51,57,56,57,54,44,51,57,46,57,57,57,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,53,34,44,34,78,65,77,69,34,58,34,75,101,114,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,51,54,53,44,34,98,101,100,115,34,58,51,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,48,50,55,55,54,44,50,57,46,57,48,55,54,55,57,93,44,91,45,57,57,46,49,55,54,57,56,56,44,50,57,46,56,57,53,48,54,51,93,44,91,45,57,56,46,57,49,55,55,50,53,44,50,57,46,55,56,49,51,57,56,93,44,91,45,57,56,46,57,50,48,49,52,55,44,51,48,46,49,51,56,50,57,93,44,91,45,57,57,46,51,48,48,57,56,56,44,51,48,46,49,51,52,50,57,56,93,44,91,45,57,57,46,51,48,49,55,49,56,44,51,48,46,50,56,54,54,53,51,93,44,91,45,57,57,46,55,53,52,49,52,50,44,51,48,46,50,57,48,54,57,56,93,44,91,45,57,57,46,55,53,55,54,50,49,44,51,48,46,48,55,52,49,51,50,93,44,91,45,57,57,46,54,56,57,56,55,57,44,51,48,46,48,55,51,57,52,56,93,44,91,45,57,57,46,54,57,49,50,49,53,44,50,57,46,57,48,56,53,56,50,93,44,91,45,57,57,46,54,48,50,55,55,54,44,50,57,46,57,48,55,54,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,72,101,114,110,97,110,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,54,57,54,44,34,98,101,100,115,34,58,53,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,53,51,57,55,55,44,50,56,46,52,51,51,50,57,93,44,91,45,56,50,46,50,53,51,52,51,57,44,50,56,46,52,51,52,56,50,52,93,44,91,45,56,50,46,48,53,52,54,57,52,44,50,56,46,52,55,56,51,57,55,93,44,91,45,56,50,46,50,54,51,48,53,50,44,50,56,46,54,54,55,54,51,52,93,44,91,45,56,50,46,52,49,56,51,53,51,44,50,56,46,54,57,52,56,53,57,93,44,91,45,56,50,46,55,55,56,52,51,55,44,50,56,46,54,57,52,50,48,54,93,44,91,45,56,50,46,55,50,55,51,57,50,44,50,56,46,53,57,53,53,56,55,93,44,91,45,56,50,46,55,53,51,57,55,55,44,50,56,46,52,51,51,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,87,97,107,117,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,56,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,55,53,53,51,57,44,51,48,46,50,55,51,54,49,55,93,44,91,45,56,52,46,50,52,55,54,55,51,44,51,48,46,51,48,51,52,57,51,93,44,91,45,56,52,46,55,49,51,51,53,49,44,51,48,46,51,48,48,49,55,93,44,91,45,56,52,46,54,54,57,50,53,56,44,51,48,46,49,50,53,50,93,44,91,45,56,52,46,53,52,52,52,53,44,51,48,46,48,49,49,48,51,93,44,91,45,56,52,46,51,50,53,49,57,56,44,50,57,46,57,53,56,48,53,93,44,91,45,56,52,46,50,54,52,55,51,53,44,50,57,46,57,55,56,48,54,49,93,44,91,45,56,52,46,48,55,53,52,53,53,44,51,48,46,48,51,52,54,50,54,93,44,91,45,56,52,46,48,55,53,53,51,57,44,51,48,46,50,55,51,54,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,87,97,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,56,53,56,44,34,98,101,100,115,34,58,49,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,56,56,54,52,54,44,51,48,46,57,57,52,49,56,49,93,44,91,45,56,54,46,51,57,55,53,48,52,44,51,48,46,51,50,53,51,53,52,93,44,91,45,56,53,46,57,57,57,56,57,51,44,51,48,46,50,49,51,48,57,93,44,91,45,56,53,46,57,57,50,55,51,54,44,51,48,46,51,56,57,51,50,93,44,91,45,56,53,46,56,54,54,56,49,56,44,51,48,46,52,56,55,54,51,55,93,44,91,45,56,53,46,57,49,53,50,57,55,44,51,48,46,54,51,54,52,50,55,93,44,91,45,56,53,46,56,52,52,52,50,49,44,51,48,46,55,48,51,49,51,93,44,91,45,56,54,46,48,51,55,53,57,49,44,51,48,46,55,48,52,53,55,50,93,44,91,45,56,54,46,48,51,53,48,51,57,44,51,48,46,57,57,51,51,50,93,44,91,45,56,54,46,49,56,55,50,52,54,44,51,48,46,57,57,52,48,50,49,93,44,91,45,56,54,46,51,56,56,54,52,54,44,51,48,46,57,57,52,49,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,105,99,107,97,115,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,55,57,44,34,98,101,100,115,34,58,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,50,52,53,50,51,44,51,52,46,48,55,52,57,52,56,93,44,91,45,56,57,46,49,51,57,49,53,56,44,51,52,46,48,55,52,49,49,54,93,44,91,45,56,57,46,49,51,55,56,55,54,44,51,51,46,56,49,50,49,52,52,93,44,91,45,56,57,46,49,57,49,55,56,49,44,51,51,46,55,51,56,54,48,50,93,44,91,45,56,57,46,48,51,52,52,57,56,44,51,51,46,55,51,57,52,51,93,44,91,45,56,56,46,57,51,49,49,55,54,44,51,51,46,56,49,50,51,55,52,93,44,91,45,56,56,46,55,49,57,57,55,57,44,51,51,46,56,49,49,51,51,93,44,91,45,56,56,46,55,49,56,57,54,52,44,51,52,46,48,55,52,53,50,49,93,44,91,45,56,56,46,56,50,52,53,50,51,44,51,52,46,48,55,52,57,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,48,34,44,34,78,65,77,69,34,58,34,75,101,116,99,104,105,107,97,110,32,71,97,116,101,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,48,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,50,46,49,57,57,55,52,57,44,53,53,46,54,51,51,56,51,52,93,44,91,45,49,51,50,46,50,50,53,57,55,57,44,53,53,46,53,54,53,56,49,50,93,44,91,45,49,51,50,46,48,51,55,48,48,54,44,53,53,46,52,54,53,50,52,54,93,44,91,45,49,51,49,46,57,52,49,51,54,52,44,53,53,46,51,49,50,56,50,54,93,44,91,45,49,51,49,46,56,53,53,48,48,51,44,53,53,46,48,56,56,54,49,53,93,44,91,45,49,51,49,46,54,56,53,51,55,55,44,53,53,46,49,49,52,52,53,56,93,44,91,45,49,51,49,46,54,48,57,50,53,51,44,53,53,46,50,56,50,48,49,51,93,44,91,45,49,51,49,46,52,56,54,55,53,54,44,53,53,46,50,55,54,49,56,51,93,44,91,45,49,51,49,46,50,51,57,53,53,52,44,53,53,46,49,54,57,54,56,51,93,44,91,45,49,51,49,46,51,51,54,57,56,51,44,53,52,46,57,57,53,53,51,52,93,44,91,45,49,51,49,46,53,49,48,54,54,44,53,53,46,48,49,54,51,54,54,93,44,91,45,49,51,49,46,55,57,52,50,56,55,44,53,52,46,57,52,52,48,49,55,93,44,91,45,49,51,49,46,55,54,50,51,51,57,44,53,52,46,54,56,54,56,52,93,44,91,45,49,51,49,46,50,48,51,48,55,52,44,53,52,46,54,57,49,51,49,55,93,44,91,45,49,51,48,46,55,50,54,53,57,53,44,53,52,46,54,54,57,57,50,51,93,44,91,45,49,51,48,46,51,52,52,53,51,55,44,53,52,46,57,49,56,56,49,51,93,44,91,45,49,51,48,46,49,56,55,53,54,50,44,53,53,46,48,54,50,56,52,49,93,44,91,45,49,51,48,46,49,48,50,56,52,50,44,53,53,46,49,57,50,54,48,50,93,44,91,45,49,50,57,46,57,55,52,49,54,55,44,53,53,46,50,56,49,57,49,57,93,44,91,45,49,51,48,46,49,50,55,57,48,52,44,53,53,46,53,56,49,48,51,53,93,44,91,45,49,51,48,46,49,53,49,53,55,55,44,53,53,46,55,54,55,52,50,56,93,44,91,45,49,51,48,46,51,56,56,54,48,54,44,53,53,46,57,52,51,49,55,57,93,44,91,45,49,51,48,46,50,52,54,55,54,55,44,53,54,46,48,57,54,53,56,49,93,44,91,45,49,51,48,46,52,50,54,48,48,54,44,53,54,46,49,52,49,53,54,49,93,44,91,45,49,51,48,46,52,54,55,56,55,44,53,54,46,50,52,51,48,53,51,93,44,91,45,49,51,48,46,54,50,51,51,48,56,44,53,54,46,50,54,54,56,55,56,93,44,91,45,49,51,48,46,55,56,49,57,56,49,44,53,54,46,51,54,54,56,52,52,93,44,91,45,49,51,49,46,48,56,55,51,52,57,44,53,54,46,52,48,54,48,48,53,93,44,91,45,49,51,49,46,48,49,53,57,55,49,44,53,54,46,50,52,57,56,54,49,93,44,91,45,49,51,49,46,50,53,51,51,53,56,44,53,54,46,50,48,54,56,53,93,44,91,45,49,51,49,46,52,51,57,57,53,55,44,53,54,46,49,51,49,48,56,51,93,44,91,45,49,51,49,46,51,55,57,57,56,55,44,53,54,46,48,49,51,52,49,57,93,44,91,45,49,51,49,46,56,51,51,49,56,50,44,53,54,46,48,53,51,53,49,50,93,44,91,45,49,51,49,46,57,51,53,54,51,53,44,53,53,46,55,57,56,52,51,49,93,44,91,45,49,51,50,46,48,57,49,49,55,56,44,53,53,46,54,54,48,55,48,51,93,44,91,45,49,51,50,46,49,57,57,55,52,57,44,53,53,46,54,51,51,56,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,108,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,54,49,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,56,55,52,48,51,44,52,52,46,49,54,52,50,52,50,93,44,91,45,56,53,46,48,56,56,56,49,49,44,52,51,46,56,49,51,54,55,54,93,44,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,44,91,45,56,52,46,54,48,56,49,48,52,44,52,52,46,49,54,48,52,56,50,93,44,91,45,56,52,46,56,53,49,55,48,53,44,52,52,46,49,54,49,51,55,53,93,44,91,45,56,53,46,48,56,55,52,48,51,44,52,52,46,49,54,52,50,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,82,101,112,117,98,108,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,56,54,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,51,49,56,50,53,44,52,48,46,48,48,50,48,55,50,93,44,91,45,57,55,46,57,51,49,52,56,50,44,51,57,46,54,53,51,55,54,55,93,44,91,45,57,55,46,51,54,56,54,55,44,51,57,46,54,53,52,48,52,51,93,44,91,45,57,55,46,51,54,57,49,57,57,44,52,48,46,48,48,49,57,54,54,93,44,91,45,57,55,46,56,50,49,52,57,53,44,52,48,46,48,48,50,48,52,55,93,44,91,45,57,55,46,57,51,49,56,50,53,44,52,48,46,48,48,50,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,86,111,108,117,115,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,54,51,52,44,34,98,101,100,115,34,58,49,52,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,52,49,57,49,54,44,50,57,46,50,55,54,55,54,54,93,44,91,45,56,49,46,53,51,50,53,55,54,44,50,57,46,49,55,55,54,49,53,93,44,91,45,56,49,46,53,48,50,48,53,53,44,50,57,46,48,57,55,56,48,50,93,44,91,45,56,49,46,51,53,52,53,53,52,44,50,56,46,57,56,52,51,55,53,93,44,91,45,56,49,46,51,54,54,57,52,44,50,56,46,56,55,57,50,50,55,93,44,91,45,56,49,46,51,50,48,52,55,51,44,50,56,46,56,51,52,53,51,93,44,91,45,56,49,46,49,48,53,55,53,44,50,56,46,56,50,56,53,52,49,93,44,91,45,56,48,46,57,56,55,50,53,44,50,56,46,54,49,50,57,57,55,93,44,91,45,56,48,46,57,54,55,56,57,53,44,50,56,46,55,57,48,49,57,55,93,44,91,45,56,48,46,54,54,51,52,54,49,44,50,56,46,55,57,48,53,56,56,93,44,91,45,56,48,46,57,48,54,56,51,54,44,50,57,46,49,52,52,55,48,54,93,44,91,45,56,49,46,48,52,53,55,48,54,44,50,57,46,52,51,50,52,54,50,93,44,91,45,56,49,46,49,53,53,56,56,49,44,50,57,46,52,49,48,57,53,52,93,44,91,45,56,49,46,49,53,48,48,56,49,44,50,57,46,50,54,53,57,53,55,93,44,91,45,56,49,46,52,49,55,50,57,44,50,57,46,50,54,49,49,53,54,93,44,91,45,56,49,46,52,51,51,57,57,50,44,50,57,46,51,57,56,53,53,50,93,44,91,45,56,49,46,54,56,48,57,48,51,44,50,57,46,51,50,52,52,51,93,44,91,45,56,49,46,54,52,49,57,49,54,44,50,57,46,50,55,54,55,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,110,97,100,105,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,55,49,48,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,57,54,48,49,52,44,51,53,46,51,55,55,55,53,51,93,44,91,45,57,55,46,57,53,53,49,50,52,44,51,53,46,51,52,54,48,52,56,93,44,91,45,57,55,46,54,55,49,52,49,52,44,51,53,46,51,51,53,57,52,54,93,44,91,45,57,55,46,54,55,49,52,49,53,44,51,53,46,51,51,55,52,54,53,93,44,91,45,57,55,46,54,55,49,51,54,57,44,51,53,46,51,55,55,49,53,49,93,44,91,45,57,55,46,54,55,52,48,50,54,44,51,53,46,55,50,53,57,55,93,44,91,45,57,56,46,50,48,55,49,48,52,44,51,53,46,55,50,53,49,56,55,93,44,91,45,57,56,46,51,49,51,49,53,51,44,51,53,46,55,50,53,49,54,49,93,44,91,45,57,56,46,51,49,51,50,53,49,44,51,53,46,53,53,49,53,50,51,93,44,91,45,57,56,46,51,48,54,51,50,54,44,51,53,46,51,55,55,50,51,57,93,44,91,45,57,56,46,48,57,54,48,49,52,44,51,53,46,51,55,55,55,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,81,117,101,98,114,97,100,105,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,57,52,53,57,51,56,44,49,56,46,53,52,48,52,49,57,93,44,91,45,54,54,46,57,50,50,48,50,44,49,56,46,51,57,51,50,48,52,93,44,91,45,54,54,46,56,57,56,57,44,49,56,46,51,54,54,49,48,56,93,44,91,45,54,54,46,57,48,50,48,56,54,44,49,56,46,53,51,53,50,51,56,93,44,91,45,54,54,46,57,52,53,57,51,56,44,49,56,46,53,52,48,52,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,56,50,52,44,34,98,101,100,115,34,58,53,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,48,55,55,52,56,44,51,52,46,53,56,55,52,56,51,93,44,91,45,56,53,46,49,56,48,53,52,56,44,51,52,46,52,51,53,57,57,54,93,44,91,45,56,53,46,52,54,50,50,48,55,44,51,52,46,50,56,54,51,56,54,93,44,91,45,56,53,46,52,50,49,56,53,50,44,51,52,46,48,56,48,56,50,50,93,44,91,45,56,53,46,48,52,54,56,55,49,44,51,52,46,48,57,54,52,49,50,93,44,91,45,56,53,46,48,48,53,55,55,53,44,51,52,46,51,57,50,52,52,54,93,44,91,45,56,53,46,48,56,54,55,54,49,44,51,52,46,52,48,49,50,54,52,93,44,91,45,56,53,46,48,54,57,49,53,57,44,51,52,46,53,56,55,49,56,52,93,44,91,45,56,53,46,49,48,55,55,52,56,44,51,52,46,53,56,55,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,67,104,117,114,99,104,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,49,48,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,49,56,57,51,52,50,44,51,57,46,54,53,48,56,55,93,44,91,45,49,49,57,46,48,55,55,57,56,56,44,51,57,46,55,50,50,52,52,49,93,44,91,45,49,49,57,46,49,49,56,49,57,51,44,51,57,46,51,56,56,53,49,54,93,44,91,45,49,49,56,46,55,53,52,48,49,52,44,51,57,46,49,49,50,48,50,51,93,44,91,45,49,49,56,46,55,53,51,56,51,53,44,51,57,46,48,55,52,54,51,93,44,91,45,49,49,55,46,56,54,53,49,49,54,44,51,57,46,48,55,51,54,53,52,93,44,91,45,49,49,55,46,55,55,53,52,54,56,44,51,57,46,48,57,51,52,50,53,93,44,91,45,49,49,55,46,55,49,57,57,53,44,51,57,46,50,51,54,56,50,49,93,44,91,45,49,49,55,46,55,54,51,48,52,54,44,51,57,46,51,53,50,56,51,93,44,91,45,49,49,55,46,54,52,54,48,49,49,44,51,57,46,52,50,54,54,48,50,93,44,91,45,49,49,55,46,53,56,55,49,52,44,51,57,46,53,49,56,53,50,49,93,44,91,45,49,49,55,46,52,56,53,51,51,54,44,51,57,46,53,52,53,51,50,50,93,44,91,45,49,49,55,46,52,57,53,51,52,52,44,51,57,46,55,52,56,51,54,52,93,44,91,45,49,49,55,46,52,54,49,51,52,44,51,57,46,56,54,55,56,49,56,93,44,91,45,49,49,55,46,53,52,49,55,52,57,44,52,48,46,48,48,49,48,51,52,93,44,91,45,49,49,56,46,53,48,48,57,55,57,44,51,57,46,57,57,56,54,55,54,93,44,91,45,49,49,57,46,50,50,53,49,55,54,44,51,57,46,57,57,57,51,56,53,93,44,91,45,49,49,57,46,49,56,57,51,52,50,44,51,57,46,54,53,48,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,49,44,34,98,101,100,115,34,58,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,50,54,56,50,55,44,52,48,46,51,53,48,51,57,56,93,44,91,45,57,56,46,55,50,54,51,55,51,44,52,48,46,48,48,50,52,93,44,91,45,57,56,46,53,48,52,52,53,53,44,52,48,46,48,48,50,50,57,49,93,44,91,45,57,56,46,50,55,52,48,49,55,44,52,48,46,48,48,50,54,54,50,93,44,91,45,57,56,46,50,55,51,53,55,49,44,52,48,46,51,53,48,51,53,57,93,44,91,45,57,56,46,50,55,56,48,57,44,52,48,46,51,53,48,51,52,55,93,44,91,45,57,56,46,55,50,51,57,52,56,44,52,48,46,51,53,48,51,57,49,93,44,91,45,57,56,46,55,50,54,56,50,55,44,52,48,46,51,53,48,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,49,50,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,56,53,50,57,53,44,52,48,46,54,51,55,56,48,51,93,44,91,45,57,49,46,51,53,57,56,55,51,44,52,48,46,54,48,49,56,48,53,93,44,91,45,57,49,46,51,55,53,55,49,50,44,52,48,46,51,57,49,57,50,53,93,44,91,45,57,49,46,52,49,57,52,50,50,44,52,48,46,51,55,56,50,54,52,93,44,91,45,57,49,46,52,57,55,50,54,54,44,52,48,46,50,52,56,55,54,51,93,44,91,45,57,49,46,53,48,53,48,54,49,44,52,48,46,49,57,57,57,50,53,93,44,91,45,57,48,46,57,49,49,57,54,57,44,52,48,46,49,57,51,48,56,56,93,44,91,45,57,48,46,57,48,57,55,53,54,44,52,48,46,50,56,52,51,57,52,93,44,91,45,57,48,46,57,48,52,50,49,54,44,52,48,46,54,51,57,50,48,49,93,44,91,45,57,49,46,49,56,53,50,57,53,44,52,48,46,54,51,55,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,117,116,99,104,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,49,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,48,55,48,49,50,44,52,51,46,52,57,57,56,50,54,93,44,91,45,57,55,46,57,54,52,53,56,54,44,52,51,46,52,57,57,48,52,49,93,44,91,45,57,56,46,49,49,52,55,53,56,44,52,51,46,52,57,56,50,57,55,93,44,91,45,57,56,46,49,48,57,52,57,50,44,52,51,46,49,57,54,56,51,56,93,44,91,45,57,56,46,48,55,55,49,48,56,44,52,51,46,49,54,56,51,51,93,44,91,45,57,55,46,54,51,55,52,57,54,44,52,51,46,49,54,56,55,55,93,44,91,45,57,55,46,51,57,57,49,57,49,44,52,51,46,49,54,57,52,49,57,93,44,91,45,57,55,46,52,48,49,52,53,44,52,51,46,52,57,57,55,56,51,93,44,91,45,57,55,46,54,48,55,48,49,50,44,52,51,46,52,57,57,56,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,114,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,51,55,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,51,56,54,53,54,49,44,52,52,46,53,54,52,48,48,57,93,44,91,45,49,50,48,46,56,50,55,53,53,53,44,52,52,46,53,54,50,55,57,51,93,44,91,45,49,50,48,46,56,50,54,56,57,57,44,52,52,46,52,55,54,52,57,57,93,44,91,45,49,50,48,46,57,56,56,56,50,52,44,52,52,46,52,55,54,52,56,52,93,44,91,45,49,50,49,46,49,48,55,53,51,52,44,52,52,46,51,57,48,54,93,44,91,45,49,50,49,46,49,48,50,55,55,51,44,52,52,46,49,51,56,49,50,53,93,44,91,45,49,50,48,46,57,56,55,50,55,49,44,52,52,46,49,51,52,48,50,54,93,44,91,45,49,50,48,46,57,56,54,53,56,55,44,52,51,46,57,54,48,56,53,50,93,44,91,45,49,50,48,46,55,52,56,50,52,57,44,52,51,46,57,53,55,51,49,93,44,91,45,49,50,48,46,55,52,55,56,52,56,44,52,51,46,56,55,49,51,51,49,93,44,91,45,49,50,48,46,51,55,56,55,52,44,52,51,46,56,55,50,51,54,50,93,44,91,45,49,50,48,46,51,55,56,49,48,55,44,52,51,46,55,56,53,52,50,57,93,44,91,45,49,50,48,46,50,53,55,55,55,55,44,52,51,46,54,57,56,55,54,50,93,44,91,45,49,49,57,46,56,57,55,52,51,52,44,52,51,46,54,57,56,50,93,44,91,45,49,49,57,46,55,55,55,53,50,56,44,52,51,46,54,57,55,57,53,55,93,44,91,45,49,49,57,46,55,55,53,52,48,50,44,52,51,46,57,53,57,48,56,54,93,44,91,45,49,49,57,46,54,53,55,49,56,51,44,52,51,46,57,53,56,57,50,93,44,91,45,49,49,57,46,54,53,53,53,49,55,44,52,52,46,51,48,55,48,52,53,93,44,91,45,49,49,57,46,56,57,57,48,48,50,44,52,52,46,51,48,54,54,50,93,44,91,45,49,49,57,46,56,57,57,50,56,51,44,52,52,46,51,56,57,53,55,53,93,44,91,45,49,50,48,46,48,50,49,54,50,49,44,52,52,46,52,51,56,55,57,51,93,44,91,45,49,50,48,46,51,56,54,48,55,52,44,52,52,46,52,51,54,48,56,51,93,44,91,45,49,50,48,46,51,56,54,53,54,49,44,52,52,46,53,54,52,48,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,50,53,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,49,57,49,57,50,56,44,52,53,46,48,49,51,54,49,53,93,44,91,45,55,51,46,50,50,56,56,53,52,44,52,52,46,55,50,50,56,54,54,93,44,91,45,55,50,46,57,50,52,49,49,50,44,52,52,46,54,51,51,48,53,49,93,44,91,45,55,50,46,55,52,55,51,54,44,52,52,46,55,56,54,49,55,93,44,91,45,55,50,46,53,55,56,49,54,49,44,52,52,46,55,56,49,53,55,56,93,44,91,45,55,50,46,53,51,50,54,51,56,44,52,52,46,56,51,51,51,52,54,93,44,91,45,55,50,46,53,53,52,51,54,44,52,53,46,48,48,56,50,55,49,93,44,91,45,55,51,46,49,57,49,57,50,56,44,52,53,46,48,49,51,54,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,77,97,114,113,117,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,57,51,57,44,34,98,101,100,115,34,58,50,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,52,51,55,51,49,44,52,55,46,48,52,51,57,53,56,93,44,91,45,56,56,46,48,52,52,55,48,57,44,52,54,46,55,54,53,51,53,51,93,44,91,45,56,56,46,49,49,53,56,52,51,44,52,54,46,54,55,56,51,56,49,93,44,91,45,56,56,46,49,49,54,53,55,49,44,52,54,46,52,49,57,57,53,49,93,44,91,45,56,56,46,49,49,55,52,48,55,44,52,54,46,50,52,54,54,49,56,93,44,91,45,56,55,46,54,49,53,53,57,55,44,52,54,46,50,52,54,54,53,51,93,44,91,45,56,55,46,54,49,55,48,57,49,44,52,53,46,57,56,54,48,49,52,93,44,91,45,56,55,46,51,54,55,56,52,57,44,52,53,46,57,56,53,51,50,49,93,44,91,45,56,55,46,50,52,50,56,56,53,44,52,53,46,57,56,53,49,49,55,93,44,91,45,56,55,46,50,52,49,53,48,54,44,52,54,46,49,53,57,49,48,51,93,44,91,45,56,55,46,49,49,54,49,51,56,44,52,54,46,49,53,57,48,53,93,44,91,45,56,55,46,49,49,50,49,49,52,44,52,55,46,50,50,51,50,54,57,93,44,91,45,56,56,46,48,52,54,54,49,52,44,52,55,46,50,49,56,54,57,54,93,44,91,45,56,56,46,48,52,54,48,54,51,44,52,55,46,49,57,57,55,50,50,93,44,91,45,56,56,46,48,52,51,55,51,49,44,52,55,46,48,52,51,57,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,77,105,100,100,108,101,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,51,54,56,44,34,98,101,100,115,34,58,55,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,55,53,50,49,56,49,44,52,49,46,53,55,56,56,57,52,93,44,91,45,55,50,46,55,51,57,49,50,44,52,49,46,52,51,56,50,57,52,93,44,91,45,55,50,46,54,53,52,49,57,51,44,52,49,46,52,51,56,50,53,54,93,44,91,45,55,50,46,53,50,55,57,48,50,44,52,49,46,50,53,48,49,49,53,93,44,91,45,55,50,46,53,50,55,57,48,49,44,52,49,46,49,55,55,55,55,52,93,44,91,45,55,50,46,51,51,49,52,53,51,44,52,49,46,50,49,53,48,48,52,93,44,91,45,55,50,46,51,56,52,56,51,51,44,52,49,46,51,56,53,49,57,93,44,91,45,55,50,46,51,48,53,53,51,49,44,52,49,46,52,51,54,50,56,50,93,44,91,45,55,50,46,51,50,51,51,57,52,44,52,49,46,53,51,52,50,53,93,44,91,45,55,50,46,52,54,54,55,51,44,52,49,46,53,56,51,56,57,57,93,44,91,45,55,50,46,53,48,53,52,51,49,44,52,49,46,54,52,54,57,57,57,93,44,91,45,55,50,46,55,49,51,56,57,55,44,52,49,46,54,50,55,55,48,53,93,44,91,45,55,50,46,55,53,50,49,56,49,44,52,49,46,53,55,56,56,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,68,97,118,105,100,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,54,54,52,44,34,98,101,100,115,34,58,50,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,52,51,50,51,56,44,51,54,46,48,49,48,55,53,56,93,44,91,45,56,48,46,50,49,51,55,51,44,51,54,46,48,50,54,56,48,56,93,44,91,45,56,48,46,51,57,52,51,48,55,44,51,53,46,57,55,50,55,54,50,93,44,91,45,56,48,46,51,56,53,55,56,52,44,51,53,46,56,53,52,53,56,55,93,44,91,45,56,48,46,52,53,56,56,56,52,44,51,53,46,55,52,51,48,51,49,93,44,91,45,56,48,46,50,48,57,53,48,57,44,51,53,46,53,56,49,57,53,49,93,44,91,45,56,48,46,49,56,50,53,53,57,44,51,53,46,53,48,52,49,53,49,93,44,91,45,56,48,46,48,54,54,56,52,50,44,51,53,46,53,48,53,54,54,49,93,44,91,45,56,48,46,48,52,54,56,54,57,44,51,53,46,57,50,48,54,57,51,93,44,91,45,56,48,46,48,52,51,50,51,56,44,51,54,46,48,49,48,55,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,51,56,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,57,53,49,54,53,44,51,56,46,56,50,54,50,57,57,93,44,91,45,56,56,46,54,57,56,52,53,57,44,51,56,46,54,48,54,48,54,50,93,44,91,45,56,56,46,50,53,51,57,55,56,44,51,56,46,53,57,57,53,48,50,93,44,91,45,56,56,46,50,53,56,53,56,51,44,51,56,46,56,52,55,53,50,57,93,44,91,45,56,56,46,51,54,49,55,52,53,44,51,56,46,57,49,48,56,52,55,93,44,91,45,56,56,46,54,57,51,53,51,49,44,51,56,46,57,49,52,54,49,55,93,44,91,45,56,56,46,54,57,53,49,54,53,44,51,56,46,56,50,54,50,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,52,55,56,48,49,44,52,48,46,51,48,50,55,53,54,93,44,91,45,57,50,46,51,52,53,48,54,52,44,52,48,46,48,51,55,50,49,93,44,91,45,57,50,46,50,56,55,56,56,50,44,51,57,46,57,53,50,52,57,93,44,91,45,57,49,46,57,53,50,55,50,54,44,51,57,46,57,52,57,52,50,54,93,44,91,45,57,49,46,57,53,48,56,49,50,44,52,48,46,50,53,55,50,49,93,44,91,45,57,49,46,57,52,57,55,52,55,44,52,48,46,51,48,48,56,51,50,93,44,91,45,57,50,46,51,52,55,56,48,49,44,52,48,46,51,48,50,55,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,54,49,57,55,51,44,51,57,46,57,53,57,53,53,50,93,44,91,45,57,51,46,55,53,56,57,57,50,44,51,57,46,55,56,52,54,55,52,93,44,91,45,57,51,46,55,53,56,51,53,55,44,51,57,46,54,49,49,52,48,55,93,44,91,45,57,51,46,50,55,56,48,57,56,44,51,57,46,54,49,53,54,51,50,93,44,91,45,57,51,46,50,54,54,57,54,56,44,51,57,46,55,48,51,53,54,50,93,44,91,45,57,51,46,51,54,52,56,48,56,44,51,57,46,55,48,51,56,48,51,93,44,91,45,57,51,46,51,54,49,57,53,55,44,51,57,46,57,54,55,54,48,54,93,44,91,45,57,51,46,55,54,49,57,55,51,44,51,57,46,57,53,57,53,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,84,105,111,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,50,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,54,53,55,50,56,44,52,50,46,48,48,49,50,55,54,93,44,91,45,55,55,46,54,49,48,48,50,55,44,52,49,46,57,57,57,51,54,56,93,44,91,45,55,55,46,53,57,57,50,55,56,44,52,49,46,53,52,50,50,55,49,93,44,91,45,55,54,46,57,54,48,52,55,57,44,52,49,46,53,53,49,51,55,49,93,44,91,45,55,54,46,56,55,52,55,49,52,44,52,49,46,53,57,54,57,49,57,93,44,91,45,55,54,46,57,50,55,48,56,52,44,52,50,46,48,48,49,54,55,52,93,44,91,45,55,54,46,57,54,53,55,50,56,44,52,50,46,48,48,49,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,51,49,52,57,50,44,52,50,46,53,50,52,51,49,56,93,44,91,45,57,54,46,55,50,50,50,51,49,44,52,50,46,53,50,52,54,53,50,93,44,91,45,57,54,46,55,50,54,54,54,49,44,52,50,46,50,55,56,48,48,53,93,44,91,45,57,54,46,51,53,54,51,57,53,44,52,50,46,50,55,54,52,57,52,93,44,91,45,57,54,46,52,48,55,57,57,56,44,52,50,46,51,51,55,52,48,56,93,44,91,45,57,54,46,51,56,48,55,48,53,44,52,50,46,52,52,54,51,57,51,93,44,91,45,57,54,46,52,52,53,52,56,51,44,52,50,46,52,57,48,54,51,93,44,91,45,57,54,46,54,51,49,52,57,50,44,52,50,46,53,50,52,51,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,76,101,101,108,97,110,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,54,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,49,53,49,49,57,44,52,52,46,55,55,52,53,51,52,93,44,91,45,56,53,46,54,49,56,48,51,51,44,52,52,46,55,55,52,53,53,55,93,44,91,45,56,53,46,53,53,48,52,53,53,44,52,53,46,48,53,49,48,55,51,93,44,91,45,56,53,46,52,56,48,54,55,52,44,52,53,46,49,50,48,51,50,54,93,44,91,45,56,53,46,52,53,56,56,57,54,44,52,53,46,50,48,54,53,55,52,93,44,91,45,56,53,46,54,50,53,48,55,54,44,52,53,46,52,53,52,54,48,50,93,44,91,45,56,53,46,56,53,53,55,54,56,44,52,53,46,53,55,56,51,56,54,93,44,91,45,56,54,46,52,54,48,55,57,55,44,52,53,46,53,56,52,52,51,51,93,44,91,45,56,54,46,52,54,52,49,50,44,52,53,46,51,50,52,56,49,93,44,91,45,56,54,46,50,53,48,49,44,52,53,46,50,51,53,55,51,53,93,44,91,45,56,54,46,52,57,57,57,51,44,52,53,46,48,56,48,56,93,44,91,45,56,54,46,54,56,54,50,56,56,44,52,52,46,56,56,49,48,48,50,93,44,91,45,56,54,46,55,51,52,53,50,57,44,52,52,46,55,55,51,48,55,52,93,44,91,45,56,53,46,56,49,53,49,49,57,44,52,52,46,55,55,52,53,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,83,117,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,55,50,52,51,57,44,51,55,46,50,52,56,53,48,49,93,44,91,45,55,55,46,49,53,53,52,49,53,44,51,55,46,49,49,50,48,51,52,93,44,91,45,55,54,46,57,56,54,54,49,44,51,55,46,48,52,57,54,57,55,93,44,91,45,55,54,46,57,53,51,53,52,54,44,51,54,46,57,52,52,52,53,93,44,91,45,55,54,46,56,52,57,54,56,52,44,51,54,46,57,57,54,50,49,49,93,44,91,45,55,54,46,55,49,49,55,55,53,44,51,55,46,48,53,53,51,56,93,44,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,44,91,45,55,54,46,56,56,51,49,53,54,44,51,55,46,50,50,51,48,53,55,93,44,91,45,55,54,46,57,55,50,52,51,57,44,51,55,46,50,52,56,53,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,57,49,34,44,34,78,65,77,69,34,58,34,82,101,102,117,103,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,51,54,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,55,53,53,55,57,44,50,56,46,51,56,56,54,56,52,93,44,91,45,57,55,46,53,52,49,48,55,49,44,50,56,46,49,54,52,54,54,57,93,44,91,45,57,55,46,51,49,57,49,57,57,44,50,56,46,49,50,53,57,53,56,93,44,91,45,57,55,46,50,54,48,56,49,56,44,50,56,46,48,55,53,55,53,57,93,44,91,45,57,55,46,49,52,52,57,49,54,44,50,56,46,49,48,50,54,50,50,93,44,91,45,57,55,46,48,50,51,53,56,54,44,50,56,46,49,56,55,54,53,55,93,44,91,45,57,55,46,49,50,51,48,55,50,44,50,56,46,50,55,50,56,49,55,93,44,91,45,57,54,46,55,57,48,53,49,50,44,50,56,46,51,49,57,50,51,56,93,44,91,45,57,54,46,55,55,56,54,51,52,44,50,56,46,52,48,52,50,53,57,93,44,91,45,57,54,46,56,57,48,57,53,49,44,50,56,46,53,48,55,49,55,56,93,44,91,45,57,55,46,49,54,48,55,53,49,44,50,56,46,53,53,51,52,55,53,93,44,91,45,57,55,46,51,55,53,53,55,57,44,50,56,46,51,56,56,54,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,50,57,52,44,34,98,101,100,115,34,58,55,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,55,57,50,49,51,44,51,57,46,53,57,49,48,50,52,93,44,91,45,56,52,46,56,49,52,57,51,52,44,51,57,46,53,54,55,55,49,52,93,44,91,45,56,52,46,56,49,53,51,53,51,44,51,57,46,53,50,49,57,53,93,44,91,45,56,52,46,56,49,57,52,53,44,51,57,46,51,48,53,49,53,51,93,44,91,45,56,52,46,51,53,51,50,48,57,44,51,57,46,50,57,50,50,56,55,93,44,91,45,56,52,46,51,51,50,48,56,57,44,51,57,46,53,52,56,56,48,51,93,44,91,45,56,52,46,51,54,53,50,51,50,44,51,57,46,53,56,57,52,57,51,93,44,91,45,56,52,46,52,55,57,50,49,51,44,51,57,46,53,57,49,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,51,34,44,34,78,65,77,69,34,58,34,84,101,114,114,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,57,57,55,55,54,44,51,49,46,57,50,48,49,55,49,93,44,91,45,56,52,46,54,48,51,48,56,54,44,51,49,46,55,55,50,48,48,49,93,44,91,45,56,52,46,53,52,54,56,53,52,44,51,49,46,54,50,49,49,57,57,93,44,91,45,56,52,46,52,53,48,51,57,56,44,51,49,46,54,50,49,56,54,56,93,44,91,45,56,52,46,50,57,55,56,48,49,44,51,49,46,54,50,49,57,53,49,93,44,91,45,56,52,46,51,48,53,50,48,52,44,51,49,46,54,57,49,48,53,56,93,44,91,45,56,52,46,50,54,50,51,52,57,44,51,49,46,56,50,56,52,56,56,93,44,91,45,56,52,46,51,51,56,50,52,53,44,51,49,46,56,55,51,53,57,49,93,44,91,45,56,52,46,52,52,51,56,48,55,44,51,49,46,57,54,55,52,53,54,93,44,91,45,56,52,46,53,57,57,55,55,54,44,51,49,46,57,50,48,49,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,67,108,97,121,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,54,54,54,44,34,98,101,100,115,34,58,53,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,53,48,50,50,52,44,51,51,46,54,52,55,57,48,56,93,44,91,45,56,52,46,52,53,55,55,50,54,44,51,51,46,54,52,56,56,54,54,93,44,91,45,56,52,46,52,53,56,54,54,53,44,51,51,46,53,53,48,57,51,51,93,44,91,45,56,52,46,51,56,55,55,48,56,44,51,51,46,52,55,55,49,51,57,93,44,91,45,56,52,46,51,56,56,49,49,56,44,51,51,46,51,53,50,52,54,53,93,44,91,45,56,52,46,51,53,52,52,44,51,51,46,51,53,50,53,49,52,93,44,91,45,56,52,46,50,57,52,54,56,44,51,51,46,52,51,53,55,49,53,93,44,91,45,56,52,46,50,56,49,50,55,51,44,51,51,46,54,52,55,52,49,49,93,44,91,45,56,52,46,51,53,48,50,50,52,44,51,51,46,54,52,55,57,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,70,114,101,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,55,54,44,34,98,101,100,115,34,58,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,48,53,49,53,55,44,52,51,46,52,54,52,55,56,51,93,44,91,45,49,48,57,46,55,53,52,55,49,55,44,52,51,46,52,54,51,50,93,44,91,45,49,48,57,46,54,57,50,55,49,54,44,52,51,46,50,54,53,48,51,93,44,91,45,49,48,57,46,53,53,50,53,55,57,44,52,51,46,48,49,50,53,51,56,93,44,91,45,49,48,57,46,51,55,48,54,53,56,44,52,50,46,57,52,53,55,50,56,93,44,91,45,49,48,57,46,50,49,52,54,48,50,44,52,50,46,55,54,49,55,57,53,93,44,91,45,49,48,57,46,48,55,50,56,53,49,44,52,50,46,54,57,51,53,49,52,93,44,91,45,49,48,57,46,48,52,51,56,54,52,44,52,50,46,50,54,51,54,56,52,93,44,91,45,49,48,55,46,53,50,50,55,50,50,44,52,50,46,50,54,49,55,53,54,93,44,91,45,49,48,55,46,53,50,50,57,50,51,44,52,50,46,52,51,52,51,53,54,93,44,91,45,49,48,55,46,53,52,51,53,50,54,44,52,50,46,55,56,49,53,53,56,93,44,91,45,49,48,55,46,53,48,49,52,50,53,44,52,50,46,55,56,49,52,53,56,93,44,91,45,49,48,55,46,53,49,55,48,51,49,44,52,51,46,52,55,50,54,53,57,93,44,91,45,49,48,55,46,53,51,52,56,57,55,44,52,51,46,53,48,49,51,54,50,93,44,91,45,49,48,55,46,53,57,53,49,48,53,44,52,51,46,53,48,49,51,57,55,93,44,91,45,49,48,55,46,53,57,53,49,51,55,44,52,51,46,52,55,50,50,55,57,93,44,91,45,49,48,56,46,51,51,55,56,54,49,44,52,51,46,52,53,57,55,54,53,93,44,91,45,49,48,56,46,54,57,53,48,55,50,44,52,51,46,53,51,50,50,53,53,93,44,91,45,49,48,56,46,54,57,52,54,55,50,44,52,51,46,53,55,53,55,53,53,93,44,91,45,49,48,56,46,57,51,52,49,52,49,44,52,51,46,54,49,57,49,54,51,93,44,91,45,49,48,57,46,49,55,49,54,51,56,44,52,51,46,54,49,57,55,54,52,93,44,91,45,49,48,57,46,49,55,49,52,52,56,44,52,51,46,54,57,57,49,57,56,93,44,91,45,49,48,57,46,51,49,50,57,52,57,44,52,51,46,56,49,51,50,57,51,93,44,91,45,49,48,57,46,52,52,50,51,54,49,44,52,51,46,57,51,48,52,51,52,93,44,91,45,49,48,57,46,53,52,50,51,51,50,44,52,51,46,57,54,49,51,53,50,93,44,91,45,49,48,57,46,55,56,57,57,44,52,51,46,56,48,51,50,53,50,93,44,91,45,49,48,57,46,56,56,49,57,44,52,51,46,57,52,57,48,55,54,93,44,91,45,49,49,48,46,48,53,51,49,55,57,44,52,52,46,48,48,56,48,50,50,93,44,91,45,49,49,48,46,48,53,49,53,55,44,52,51,46,52,54,52,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,51,53,56,51,50,44,51,56,46,57,50,57,53,55,56,93,44,91,45,56,52,46,56,55,48,55,52,57,44,51,56,46,57,48,48,57,48,53,93,44,91,45,56,52,46,56,55,55,54,50,52,44,51,57,46,48,51,49,50,49,51,93,44,91,45,56,53,46,49,51,50,53,48,56,44,51,56,46,57,52,56,48,53,53,93,44,91,45,56,53,46,49,51,53,56,51,50,44,51,56,46,57,50,57,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,50,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,50,53,51,50,56,44,51,51,46,54,53,48,54,50,57,93,44,91,45,56,50,46,52,51,54,56,49,52,44,51,51,46,53,52,57,54,53,56,93,44,91,45,56,50,46,50,57,52,49,55,57,44,51,51,46,51,53,52,54,51,53,93,44,91,45,56,50,46,48,50,56,50,51,56,44,51,51,46,53,52,52,57,51,52,93,44,91,45,56,50,46,49,49,53,51,50,57,44,51,51,46,53,57,54,54,49,51,93,44,91,45,56,50,46,50,49,56,54,52,57,44,51,51,46,54,56,54,50,57,57,93,44,91,45,56,50,46,51,50,57,48,52,57,44,51,51,46,54,57,55,54,55,54,93,44,91,45,56,50,46,52,50,53,51,50,56,44,51,51,46,54,53,48,54,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,101,100,103,119,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,48,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,53,51,52,54,51,44,52,49,46,48,48,50,51,51,50,93,44,91,45,49,48,50,46,54,53,49,51,49,44,52,48,46,55,52,57,52,48,50,93,44,91,45,49,48,50,46,48,53,49,52,49,54,44,52,48,46,55,52,57,53,56,54,93,44,91,45,49,48,50,46,48,53,49,55,49,55,44,52,49,46,48,48,50,51,53,57,93,44,91,45,49,48,50,46,54,50,49,48,51,51,44,52,49,46,48,48,50,53,57,55,93,44,91,45,49,48,50,46,54,53,51,52,54,51,44,52,49,46,48,48,50,51,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,77,117,115,115,101,108,115,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,48,57,53,55,44,52,54,46,55,53,48,55,48,50,93,44,91,45,49,48,57,46,48,48,57,57,56,50,44,52,54,46,54,50,49,49,55,50,93,44,91,45,49,48,56,46,57,48,52,57,48,52,44,52,54,46,53,55,54,57,48,56,93,44,91,45,49,48,56,46,56,54,50,50,55,55,44,52,54,46,51,54,52,53,56,54,93,44,91,45,49,48,56,46,55,55,57,50,55,50,44,52,54,46,50,55,55,51,57,56,93,44,91,45,49,48,56,46,55,55,57,55,51,51,44,52,54,46,49,51,50,52,53,55,93,44,91,45,49,48,56,46,52,48,52,55,57,53,44,52,54,46,49,51,50,57,53,50,93,44,91,45,49,48,56,46,52,48,52,56,53,54,44,52,54,46,50,51,53,57,54,93,44,91,45,49,48,56,46,51,50,48,56,49,50,44,52,54,46,50,54,51,57,57,55,93,44,91,45,49,48,56,46,48,50,57,51,54,51,44,52,54,46,50,54,52,48,53,53,93,44,91,45,49,48,55,46,57,50,56,53,52,55,44,52,54,46,51,57,53,50,56,52,93,44,91,45,49,48,55,46,55,56,50,48,56,55,44,52,54,46,51,57,53,49,56,50,93,44,91,45,49,48,55,46,55,56,49,50,49,52,44,52,54,46,52,57,54,48,49,52,93,44,91,45,49,48,55,46,56,50,55,54,56,55,44,52,54,46,55,53,53,56,55,53,93,44,91,45,49,48,56,46,54,51,49,52,54,50,44,52,54,46,55,52,57,51,57,50,93,44,91,45,49,48,57,46,48,48,57,53,55,44,52,54,46,55,53,48,55,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,97,117,112,104,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,53,49,53,44,34,98,101,100,115,34,58,54,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,44,91,45,55,54,46,57,52,57,51,57,55,44,52,48,46,52,54,57,48,51,55,93,44,91,45,55,55,46,48,50,56,54,52,53,44,52,48,46,51,57,49,49,57,55,93,44,91,45,55,54,46,57,49,52,57,55,44,52,48,46,51,50,56,52,56,52,93,44,91,45,55,54,46,56,53,57,48,50,51,44,52,48,46,50,50,54,51,50,56,93,44,91,45,55,54,46,55,50,49,54,50,44,52,48,46,49,50,48,48,55,93,44,91,45,55,54,46,53,54,54,51,51,57,44,52,48,46,49,57,54,54,52,52,93,44,91,45,55,54,46,54,55,56,48,52,44,52,48,46,52,55,52,55,49,55,93,44,91,45,55,54,46,53,51,53,52,49,52,44,52,48,46,53,53,53,49,53,55,93,44,91,45,55,54,46,55,48,49,54,50,52,44,52,48,46,54,53,56,48,56,50,93,44,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,111,111,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,48,54,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,56,57,50,49,54,44,52,52,46,49,57,53,55,48,53,93,44,91,45,57,54,46,56,56,56,54,54,52,44,52,51,46,56,52,56,51,56,53,93,44,91,45,57,54,46,52,53,50,57,56,56,44,52,51,46,56,52,57,53,48,55,93,44,91,45,57,54,46,52,53,50,55,55,51,44,52,52,46,49,57,54,55,56,93,44,91,45,57,54,46,56,56,57,50,49,54,44,52,52,46,49,57,53,55,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,54,53,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,53,49,50,55,44,51,56,46,52,55,52,53,52,55,93,44,91,45,56,50,46,48,52,55,49,50,56,44,51,56,46,51,55,52,52,51,50,93,44,91,45,56,49,46,57,49,53,49,57,55,44,51,56,46,51,50,53,53,57,55,93,44,91,45,56,49,46,57,48,48,50,50,50,44,51,56,46,51,57,56,53,55,50,93,44,91,45,56,49,46,55,50,53,56,48,49,44,51,56,46,52,54,54,54,50,93,44,91,45,56,49,46,55,53,48,53,52,55,44,51,56,46,53,57,49,48,49,52,93,44,91,45,56,49,46,54,57,54,51,52,56,44,51,56,46,54,50,54,52,50,55,93,44,91,45,56,49,46,55,55,50,56,52,51,44,51,56,46,54,56,48,56,52,51,93,44,91,45,56,49,46,57,53,53,55,57,49,44,51,56,46,54,53,55,51,53,53,93,44,91,45,56,50,46,48,54,52,53,54,50,44,51,56,46,54,48,55,57,56,53,93,44,91,45,56,50,46,48,53,53,49,50,55,44,51,56,46,52,55,52,53,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,83,117,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,50,57,56,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,57,54,54,57,48,54,44,52,49,46,48,57,52,52,49,93,44,91,45,55,52,46,55,54,57,52,50,53,44,52,48,46,57,49,48,57,51,52,93,44,91,45,55,52,46,54,52,48,54,52,51,44,52,48,46,57,54,53,51,51,56,93,44,91,45,55,52,46,53,48,51,50,49,50,44,52,49,46,48,56,53,56,55,51,93,44,91,45,55,52,46,51,54,55,53,49,44,52,49,46,50,48,51,50,52,49,93,44,91,45,55,52,46,54,57,52,57,49,52,44,52,49,46,51,53,55,52,50,51,93,44,91,45,55,52,46,56,51,48,48,53,55,44,52,49,46,50,56,55,50,93,44,91,45,55,52,46,56,56,50,49,51,57,44,52,49,46,49,56,48,56,51,54,93,44,91,45,55,52,46,57,57,49,55,49,56,44,52,49,46,48,57,50,50,56,52,93,44,91,45,55,52,46,57,54,54,57,48,54,44,52,49,46,48,57,52,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,101,99,97,116,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,56,49,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,51,56,56,50,53,44,52,48,46,48,48,50,49,49,54,93,44,91,45,49,48,48,46,55,52,48,56,55,51,44,51,57,46,53,54,56,48,52,51,93,44,91,45,49,48,48,46,55,50,48,50,49,51,44,51,57,46,53,54,56,48,51,52,93,44,91,45,49,48,48,46,49,56,48,51,53,49,44,51,57,46,53,54,54,56,57,93,44,91,45,49,48,48,46,49,55,55,55,57,52,44,52,48,46,48,48,49,54,48,50,93,44,91,45,49,48,48,46,49,57,51,53,57,57,44,52,48,46,48,48,49,54,54,51,93,44,91,45,49,48,48,46,55,51,56,56,50,53,44,52,48,46,48,48,50,49,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,52,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,55,57,49,52,57,55,44,51,56,46,50,48,53,49,51,93,44,91,45,56,54,46,55,54,55,51,53,50,44,51,56,46,48,53,54,57,50,52,93,44,91,45,56,54,46,56,49,52,55,52,52,44,51,55,46,57,57,56,55,48,52,93,44,91,45,56,54,46,54,53,53,50,55,50,44,51,55,46,56,52,50,53,50,49,93,44,91,45,56,54,46,53,48,55,48,56,57,44,51,55,46,57,50,57,57,49,55,93,44,91,45,56,54,46,52,57,48,56,53,52,44,51,56,46,48,52,53,55,51,53,93,44,91,45,56,54,46,52,54,49,48,50,50,44,51,56,46,49,50,49,48,56,55,93,44,91,45,56,54,46,54,55,57,53,49,49,44,51,56,46,50,54,51,48,56,54,93,44,91,45,56,54,46,55,57,49,52,57,55,44,51,56,46,50,48,53,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,53,54,44,34,98,101,100,115,34,58,49,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,52,53,54,52,53,44,51,52,46,53,56,51,50,51,52,93,44,91,45,56,57,46,50,52,54,49,51,51,44,51,52,46,52,57,53,54,51,51,93,44,91,45,56,57,46,50,52,54,51,51,57,44,51,52,46,51,55,57,51,52,52,93,44,91,45,56,56,46,56,50,52,57,54,54,44,51,52,46,51,54,52,55,53,57,93,44,91,45,56,56,46,55,51,54,52,54,53,44,51,52,46,53,48,56,57,49,93,44,91,45,56,56,46,55,51,53,52,52,44,51,52,46,53,57,54,52,56,51,93,44,91,45,56,57,46,48,56,56,52,56,56,44,51,52,46,53,57,56,50,52,55,93,44,91,45,56,57,46,50,52,53,54,52,53,44,51,52,46,53,56,51,50,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,50,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,57,56,53,53,44,52,50,46,57,57,56,53,53,57,93,44,91,45,57,57,46,50,53,52,52,53,53,44,52,50,46,57,57,56,48,55,52,93,44,91,45,57,57,46,50,53,55,48,51,57,44,52,50,46,56,48,52,50,57,54,93,44,91,45,57,56,46,57,53,52,54,51,52,44,52,50,46,56,57,52,48,55,55,93,44,91,45,57,56,46,55,49,48,48,52,56,44,52,50,46,56,48,51,52,56,93,44,91,45,57,56,46,51,48,53,49,52,57,44,52,50,46,55,54,49,50,48,55,93,44,91,45,57,56,46,51,48,57,55,55,49,44,52,50,46,56,56,50,54,48,53,93,44,91,45,57,56,46,52,57,56,53,53,44,52,50,46,57,57,56,53,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,105,108,108,101,32,76,97,99,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,50,56,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,49,48,51,54,50,44,52,54,46,49,53,54,53,56,53,93,44,91,45,57,51,46,56,49,48,51,50,49,44,52,53,46,57,56,51,48,56,93,44,91,45,57,51,46,55,54,51,57,52,56,44,52,53,46,56,50,50,49,52,51,93,44,91,45,57,51,46,55,53,57,52,51,53,44,52,53,46,53,53,57,54,52,54,93,44,91,45,57,51,46,53,49,48,55,48,52,44,52,53,46,53,53,56,55,55,50,93,44,91,45,57,51,46,53,49,51,54,56,51,44,52,53,46,55,51,52,51,49,56,93,44,91,45,57,51,46,53,49,56,48,56,44,52,53,46,57,56,49,55,56,57,93,44,91,45,57,51,46,52,51,50,52,57,50,44,52,53,46,57,56,49,51,57,56,93,44,91,45,57,51,46,52,51,49,56,51,49,44,52,54,46,49,53,51,57,57,49,93,44,91,45,57,51,46,52,51,48,54,52,56,44,52,54,46,50,52,54,52,49,50,93,44,91,45,57,51,46,55,57,54,50,56,49,44,52,54,46,50,52,51,49,57,57,93,44,91,45,57,51,46,56,49,48,51,54,50,44,52,54,46,49,53,54,53,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,87,97,108,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,50,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,49,56,48,51,54,44,52,56,46,53,52,51,55,55,51,93,44,91,45,57,56,46,50,57,50,49,56,52,44,52,56,46,49,57,53,49,55,55,93,44,91,45,57,55,46,57,48,51,51,49,51,44,52,56,46,49,57,52,56,52,53,93,44,91,45,57,55,46,49,52,49,50,50,49,44,52,56,46,49,57,51,55,49,50,93,44,91,45,57,55,46,49,49,54,53,55,44,52,56,46,50,55,57,54,54,49,93,44,91,45,57,55,46,49,54,49,51,57,51,44,52,56,46,53,52,50,51,52,56,93,44,91,45,57,55,46,57,50,55,48,54,57,44,52,56,46,53,52,51,49,50,52,93,44,91,45,57,56,46,51,49,56,48,51,54,44,52,56,46,53,52,51,55,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,55,54,54,51,57,44,51,57,46,55,55,48,57,54,93,44,91,45,56,50,46,48,50,52,50,49,57,44,51,57,46,55,50,52,54,56,54,93,44,91,45,56,50,46,48,52,55,53,50,56,44,51,57,46,53,53,48,56,50,53,93,44,91,45,56,50,46,48,53,53,55,55,57,44,51,57,46,52,54,48,48,53,51,93,44,91,45,56,49,46,56,52,52,56,54,51,44,51,57,46,52,53,48,50,49,54,93,44,91,45,56,49,46,55,48,56,53,50,55,44,51,57,46,52,56,48,55,55,53,93,44,91,45,56,49,46,54,56,56,56,56,52,44,51,57,46,53,57,48,53,49,49,93,44,91,45,56,49,46,53,56,56,49,56,53,44,51,57,46,53,56,54,57,55,51,93,44,91,45,56,49,46,54,57,55,52,52,50,44,51,57,46,55,53,53,53,55,50,93,44,91,45,56,50,46,48,55,54,54,51,57,44,51,57,46,55,55,48,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,80,111,114,116,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,54,52,52,44,34,98,101,100,115,34,58,51,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,57,49,54,57,52,44,52,49,46,51,52,56,50,55,50,93,44,91,45,56,49,46,51,57,51,50,52,57,44,52,48,46,57,56,56,53,51,49,93,44,91,45,56,49,46,48,56,54,51,49,50,44,52,48,46,57,56,56,48,51,49,93,44,91,45,56,49,46,48,48,49,54,57,53,44,52,48,46,57,56,55,55,56,51,93,44,91,45,56,49,46,48,48,50,50,57,44,52,49,46,49,51,52,49,56,57,93,44,91,45,56,49,46,48,48,51,51,49,57,44,52,49,46,51,52,55,56,54,93,44,91,45,56,49,46,51,57,49,54,57,52,44,52,49,46,51,52,56,50,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,85,105,110,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,48,57,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,48,52,54,55,54,54,44,52,49,46,50,53,49,54,50,55,93,44,91,45,49,49,49,46,48,52,54,56,49,53,44,52,48,46,57,57,55,56,55,53,93,44,91,45,49,49,48,46,48,52,56,52,56,51,44,52,48,46,57,57,55,50,57,53,93,44,91,45,49,49,48,46,48,52,56,44,52,49,46,53,55,56,48,49,53,93,44,91,45,49,49,49,46,48,52,53,56,51,55,44,52,49,46,53,55,57,56,52,53,93,44,91,45,49,49,49,46,48,52,54,55,54,54,44,52,49,46,50,53,49,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,72,117,109,98,111,108,100,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,48,52,44,34,98,101,100,115,34,58,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,51,48,57,53,57,56,44,52,48,46,57,54,48,51,55,56,93,44,91,45,49,49,56,46,55,56,54,55,48,53,44,52,48,46,57,54,48,56,53,93,44,91,45,49,49,56,46,55,56,54,55,51,56,44,52,48,46,56,53,53,57,50,57,93,44,91,45,49,49,55,46,54,52,52,50,50,44,52,48,46,56,53,55,56,50,52,93,44,91,45,49,49,55,46,54,52,52,51,57,57,44,52,48,46,54,56,52,51,52,51,93,44,91,45,49,49,55,46,51,48,57,52,52,49,44,52,48,46,54,56,51,53,51,55,93,44,91,45,49,49,55,46,51,48,48,53,57,55,44,52,48,46,53,50,54,49,51,54,93,44,91,45,49,49,55,46,50,52,54,55,56,56,44,52,48,46,54,52,50,52,52,53,93,44,91,45,49,49,55,46,48,49,56,54,54,52,44,52,48,46,54,52,51,48,51,53,93,44,91,45,49,49,55,46,48,49,56,52,49,57,44,52,49,46,48,48,48,50,53,52,93,44,91,45,49,49,55,46,48,49,56,50,48,52,44,52,49,46,57,57,57,55,49,53,93,44,91,45,49,49,55,46,48,50,54,50,44,52,50,46,48,48,48,49,57,53,93,44,91,45,49,49,56,46,49,57,55,51,55,49,44,52,49,46,57,57,55,51,52,52,93,44,91,45,49,49,57,46,51,50,52,49,56,52,44,52,49,46,57,57,51,57,50,51,93,44,91,45,49,49,57,46,51,50,57,55,57,49,44,52,48,46,57,54,48,51,57,52,93,44,91,45,49,49,57,46,51,48,57,53,57,56,44,52,48,46,57,54,48,51,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,55,34,44,34,78,65,77,69,34,58,34,74,105,109,32,72,111,103,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,53,52,54,54,57,44,50,55,46,50,54,57,51,57,55,93,44,91,45,57,56,46,57,53,52,50,51,44,50,54,46,55,56,53,54,57,52,93,44,91,45,57,56,46,52,50,50,54,49,54,44,50,54,46,55,56,51,53,51,53,93,44,91,45,57,56,46,52,49,55,56,56,51,44,50,55,46,48,53,53,50,56,53,93,44,91,45,57,56,46,52,54,54,53,52,50,44,50,55,46,48,53,52,55,49,49,93,44,91,45,57,56,46,53,50,51,50,56,52,44,50,55,46,50,54,53,49,53,93,44,91,45,57,56,46,53,53,50,54,49,55,44,50,55,46,51,53,57,49,48,49,93,44,91,45,57,56,46,55,57,56,51,50,51,44,50,55,46,51,53,52,48,50,57,93,44,91,45,57,56,46,55,57,56,48,56,55,44,50,55,46,50,54,56,48,49,50,93,44,91,45,57,56,46,57,53,52,54,54,57,44,50,55,46,50,54,57,51,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,101,121,101,110,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,54,53,55,49,44,51,57,46,48,52,55,48,51,56,93,44,91,45,49,48,51,46,49,54,51,48,50,53,44,51,57,46,48,51,55,54,49,93,44,91,45,49,48,51,46,49,55,50,57,52,51,44,51,56,46,54,49,50,52,53,93,44,91,45,49,48,50,46,48,52,53,48,56,50,44,51,56,46,54,49,53,49,55,50,93,44,91,45,49,48,50,46,48,52,53,50,49,50,44,51,56,46,54,57,55,53,54,55,93,44,91,45,49,48,50,46,48,52,54,53,55,49,44,51,57,46,48,52,55,48,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,108,97,99,107,97,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,55,56,56,44,34,98,101,100,115,34,58,54,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,55,52,51,55,50,49,44,52,53,46,52,51,51,50,57,52,93,44,91,45,49,50,50,46,55,52,51,55,52,49,44,52,53,46,51,51,50,48,54,55,93,44,91,45,49,50,50,46,56,54,55,56,57,49,44,52,53,46,51,49,55,51,52,53,93,44,91,45,49,50,50,46,56,52,57,57,50,53,44,52,53,46,50,53,57,54,57,55,93,44,91,45,49,50,50,46,55,52,57,55,57,51,44,52,53,46,49,57,53,50,52,50,93,44,91,45,49,50,50,46,55,56,56,53,53,52,44,52,53,46,49,51,48,49,55,54,93,44,91,45,49,50,50,46,53,57,53,53,50,51,44,52,53,46,48,49,57,54,55,57,93,44,91,45,49,50,50,46,53,48,56,49,48,54,44,52,52,46,57,49,57,53,57,57,93,44,91,45,49,50,50,46,52,48,49,48,50,49,44,52,52,46,56,56,53,55,50,93,44,91,45,49,50,49,46,55,51,52,50,50,51,44,52,52,46,56,56,53,55,50,93,44,91,45,49,50,49,46,56,48,53,54,54,55,44,52,53,46,48,48,54,49,50,52,93,44,91,45,49,50,49,46,54,53,50,48,49,56,44,52,53,46,48,56,54,55,48,54,93,44,91,45,49,50,49,46,55,52,56,52,56,53,44,52,53,46,50,48,52,52,52,93,44,91,45,49,50,49,46,54,57,54,52,55,57,44,52,53,46,50,53,55,57,50,93,44,91,45,49,50,49,46,55,48,48,52,55,51,44,52,53,46,51,55,56,53,51,49,93,44,91,45,49,50,49,46,56,49,57,53,56,55,44,52,53,46,52,54,49,54,55,53,93,44,91,45,49,50,50,46,54,52,49,53,56,44,52,53,46,52,54,49,52,56,50,93,44,91,45,49,50,50,46,55,52,51,55,50,49,44,52,53,46,52,51,51,50,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,54,51,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,53,52,53,54,52,44,51,52,46,55,50,56,57,54,50,93,44,91,45,57,52,46,52,54,49,49,52,57,44,51,52,46,53,48,55,52,53,55,93,44,91,45,57,52,46,52,55,48,51,51,49,44,51,52,46,49,57,48,49,56,51,93,44,91,45,57,52,46,50,52,51,55,51,57,44,51,52,46,49,57,50,53,48,49,93,44,91,45,57,52,46,50,53,52,54,54,56,44,51,52,46,51,53,53,52,56,49,93,44,91,45,57,51,46,57,51,53,51,55,49,44,51,52,46,51,53,48,48,57,55,93,44,91,45,57,51,46,57,51,48,53,48,57,44,51,52,46,54,54,53,54,48,56,93,44,91,45,57,52,46,48,49,56,49,54,56,44,51,52,46,54,57,50,52,54,57,93,44,91,45,57,52,46,51,49,55,54,53,57,44,51,52,46,54,57,55,52,48,56,93,44,91,45,57,52,46,52,53,52,53,54,52,44,51,52,46,55,50,56,57,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,56,48,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,44,91,45,56,52,46,49,50,50,51,52,55,44,51,50,46,53,48,53,57,50,49,93,44,91,45,56,52,46,50,53,52,54,49,51,44,51,50,46,51,55,50,48,53,51,93,44,91,45,56,52,46,49,56,49,54,53,55,44,51,50,46,50,50,57,55,48,51,93,44,91,45,56,52,46,48,50,55,54,44,51,50,46,49,55,49,49,54,53,93,44,91,45,56,51,46,57,53,56,56,49,55,44,51,50,46,50,53,50,49,48,53,93,44,91,45,56,51,46,56,52,56,51,55,57,44,51,50,46,50,57,48,57,55,93,44,91,45,56,51,46,56,52,54,54,55,54,44,51,50,46,52,54,56,53,49,52,93,44,91,45,56,52,46,48,49,56,49,52,55,44,51,50,46,53,48,54,52,48,54,93,44,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,93,93,44,91,91,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,44,91,45,56,52,46,48,48,56,52,57,44,51,50,46,53,50,49,55,54,57,93,44,91,45,56,52,46,48,48,51,51,54,51,44,51,50,46,53,50,57,57,50,55,93,44,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,50,54,48,51,49,44,52,48,46,55,51,54,56,56,53,93,44,91,45,56,55,46,53,50,54,51,54,54,44,52,48,46,52,57,49,50,51,55,93,44,91,45,56,55,46,53,50,54,53,56,57,44,52,48,46,52,55,54,56,55,54,93,44,91,45,56,55,46,48,57,51,54,55,54,44,52,48,46,52,55,53,55,52,53,93,44,91,45,56,55,46,48,57,53,51,53,55,44,52,48,46,53,54,50,56,57,53,93,44,91,45,56,55,46,48,57,56,51,57,44,52,48,46,55,51,54,53,52,49,93,44,91,45,56,55,46,50,54,55,50,57,56,44,52,48,46,55,51,54,53,56,50,93,44,91,45,56,55,46,53,50,54,48,51,49,44,52,48,46,55,51,54,56,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,48,55,55,53,51,44,51,54,46,49,53,54,50,57,51,93,44,91,45,56,52,46,55,50,48,55,50,55,44,51,53,46,57,57,52,57,49,52,93,44,91,45,56,52,46,54,56,48,54,51,51,44,51,53,46,57,48,56,52,53,52,93,44,91,45,56,52,46,52,52,54,48,53,52,44,51,53,46,57,56,53,57,56,52,93,44,91,45,56,52,46,51,52,49,56,49,50,44,51,54,46,48,52,56,57,55,55,93,44,91,45,56,52,46,52,52,49,48,51,52,44,51,54,46,49,54,51,52,55,56,93,44,91,45,56,52,46,53,54,56,55,52,49,44,51,54,46,50,51,55,48,55,55,93,44,91,45,56,52,46,55,48,48,55,56,53,44,51,54,46,51,55,48,56,50,52,93,44,91,45,56,52,46,56,54,54,49,48,52,44,51,54,46,50,57,50,57,50,56,93,44,91,45,56,52,46,57,48,55,55,53,51,44,51,54,46,49,53,54,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,48,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,48,53,55,56,50,44,52,51,46,52,57,57,51,49,57,93,44,91,45,57,56,46,54,56,48,54,56,56,44,52,51,46,51,55,51,49,53,55,93,44,91,45,57,56,46,49,48,57,52,57,50,44,52,51,46,49,57,54,56,51,56,93,44,91,45,57,56,46,49,49,52,55,53,56,44,52,51,46,52,57,56,50,57,55,93,44,91,45,57,56,46,51,50,48,53,57,53,44,52,51,46,52,57,56,54,53,49,93,44,91,45,57,56,46,55,48,53,55,56,50,44,52,51,46,52,57,57,51,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,87,111,114,99,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,53,54,52,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,54,49,50,55,54,52,44,51,56,46,50,55,56,54,50,54,93,44,91,45,55,53,46,53,52,53,56,57,56,44,51,56,46,49,55,56,55,52,93,44,91,45,55,53,46,53,52,53,56,48,54,44,51,56,46,48,56,54,55,52,57,93,44,91,45,55,53,46,54,50,52,51,52,51,44,51,55,46,57,57,52,50,48,56,93,44,91,45,55,53,46,49,54,54,52,51,53,44,51,56,46,48,50,55,56,51,52,93,44,91,45,55,52,46,57,57,57,54,50,53,44,51,56,46,51,55,49,54,54,56,93,44,91,45,55,52,46,57,56,54,50,56,50,44,51,56,46,52,53,49,54,51,50,93,44,91,45,55,53,46,51,52,49,50,57,49,44,51,56,46,52,53,50,48,51,52,93,44,91,45,55,53,46,51,48,55,48,49,49,44,51,56,46,51,53,52,55,54,93,44,91,45,55,53,46,51,54,52,54,52,49,44,51,56,46,50,57,48,51,53,57,93,44,91,45,55,53,46,54,49,50,55,54,52,44,51,56,46,50,55,56,54,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,87,97,98,97,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,53,52,54,55,53,44,51,56,46,53,55,48,50,51,93,44,91,45,56,55,46,57,52,51,48,51,52,44,51,56,46,52,52,57,50,49,54,93,44,91,45,56,55,46,57,57,48,54,50,56,44,51,56,46,50,53,57,54,50,57,93,44,91,45,56,55,46,57,56,55,57,49,49,44,51,56,46,50,53,54,57,53,55,93,44,91,45,56,55,46,56,53,49,49,51,44,51,56,46,50,55,53,49,50,93,44,91,45,56,55,46,55,52,51,54,57,49,44,51,56,46,52,49,52,51,56,55,93,44,91,45,56,55,46,54,53,49,53,50,57,44,51,56,46,53,54,56,49,54,54,93,44,91,45,56,55,46,57,49,50,50,56,54,44,51,56,46,53,55,48,49,48,52,93,44,91,45,56,55,46,57,53,52,54,55,53,44,51,56,46,53,55,48,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,117,110,116,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,55,56,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,52,51,56,52,49,44,52,49,46,48,48,50,51,48,53,93,44,91,45,56,53,46,54,51,56,53,56,55,44,52,48,46,54,53,51,49,50,57,93,44,91,45,56,53,46,52,52,56,56,50,53,44,52,48,46,54,53,51,54,48,55,93,44,91,45,56,53,46,51,51,52,54,54,55,44,52,48,46,54,53,52,52,49,51,93,44,91,45,56,53,46,51,51,54,48,51,44,52,48,46,57,49,55,48,56,50,93,44,91,45,56,53,46,51,51,53,54,52,51,44,52,49,46,48,48,53,50,53,93,44,91,45,56,53,46,54,52,51,56,52,49,44,52,49,46,48,48,50,51,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,57,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,53,49,55,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,56,48,53,51,57,44,51,56,46,52,55,51,48,51,57,93,44,91,45,56,52,46,55,52,48,53,57,52,44,51,56,46,51,53,50,52,49,53,93,44,91,45,56,52,46,55,50,53,49,54,56,44,51,56,46,49,57,53,52,50,54,93,44,91,45,56,52,46,54,50,53,48,55,57,44,51,56,46,49,49,54,51,57,55,93,44,91,45,56,52,46,52,48,49,56,52,55,44,51,56,46,50,48,55,56,56,57,93,44,91,45,56,52,46,52,52,50,54,54,49,44,51,56,46,50,56,51,50,51,54,93,44,91,45,56,52,46,52,53,57,57,48,54,44,51,56,46,51,55,56,57,57,53,93,44,91,45,56,52,46,53,53,55,51,55,53,44,51,56,46,52,57,50,57,49,55,93,44,91,45,56,52,46,53,56,48,53,51,57,44,51,56,46,52,55,51,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,68,101,99,97,116,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,44,91,45,57,52,46,48,49,52,56,48,51,44,52,48,46,56,57,55,48,51,49,93,44,91,45,57,52,46,48,49,53,52,57,50,44,52,48,46,53,55,51,57,49,52,93,44,91,45,57,51,46,55,55,52,51,52,52,44,52,48,46,53,55,55,53,52,56,93,44,91,45,57,51,46,53,53,54,56,57,57,44,52,48,46,53,56,48,50,51,53,93,44,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,87,97,98,97,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,51,49,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,52,54,52,51,54,44,52,48,46,57,57,57,49,57,53,93,44,91,45,56,53,46,57,51,57,53,50,53,44,52,48,46,54,53,48,57,57,49,93,44,91,45,56,53,46,56,54,52,55,57,49,44,52,48,46,54,53,49,54,57,51,93,44,91,45,56,53,46,54,51,56,53,56,55,44,52,48,46,54,53,51,49,50,57,93,44,91,45,56,53,46,54,52,51,56,52,49,44,52,49,46,48,48,50,51,48,53,93,44,91,45,56,53,46,54,56,52,49,56,49,44,52,49,46,48,52,54,55,49,54,93,44,91,45,56,53,46,57,52,53,53,54,49,44,52,49,46,48,52,50,56,55,54,93,44,91,45,56,53,46,57,52,54,52,51,54,44,52,48,46,57,57,57,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,48,48,49,54,44,34,98,101,100,115,34,58,49,54,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,57,50,48,57,52,44,52,49,46,50,54,52,50,48,57,93,44,91,45,56,53,46,51,48,55,55,56,49,44,52,49,46,50,54,52,49,53,56,93,44,91,45,56,53,46,51,51,53,54,52,51,44,52,49,46,48,48,53,50,53,93,44,91,45,56,53,46,51,51,54,48,51,44,52,48,46,57,49,55,48,56,50,93,44,91,45,56,53,46,48,55,51,56,54,49,44,52,48,46,57,49,55,56,50,51,93,44,91,45,56,52,46,56,48,50,57,50,50,44,52,48,46,57,50,50,53,54,56,93,44,91,45,56,52,46,56,48,51,50,53,49,44,52,48,46,57,56,57,51,57,52,93,44,91,45,56,52,46,56,48,51,53,52,52,44,52,49,46,50,53,50,53,54,50,93,44,91,45,56,52,46,56,48,51,53,56,57,44,52,49,46,50,55,49,50,55,51,93,44,91,45,56,53,46,49,57,50,48,57,52,44,52,49,46,50,54,52,50,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,53,57,53,44,34,98,101,100,115,34,58,49,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,53,57,52,53,49,44,52,49,46,52,55,57,49,53,52,93,44,91,45,56,54,46,52,54,55,49,48,56,44,52,49,46,52,55,54,52,53,57,93,44,91,45,56,54,46,52,54,54,54,48,51,44,52,49,46,52,51,50,57,54,56,93,44,91,45,56,54,46,52,54,55,48,52,54,44,52,49,46,49,55,49,52,52,50,93,44,91,45,56,54,46,48,55,55,53,53,49,44,52,49,46,49,55,50,56,54,56,93,44,91,45,56,54,46,48,53,57,50,51,44,52,49,46,52,51,53,56,49,50,93,44,91,45,56,54,46,48,53,57,52,53,49,44,52,49,46,52,55,57,49,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,84,104,111,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,56,52,54,49,50,57,44,52,50,46,48,56,56,49,54,54,93,44,91,45,49,48,48,46,56,52,50,52,53,57,44,52,49,46,55,52,48,52,48,52,93,44,91,45,49,48,48,46,55,49,49,55,49,49,44,52,49,46,55,51,57,55,54,49,93,44,91,45,49,48,48,46,50,54,53,52,55,52,44,52,49,46,55,51,57,56,53,54,93,44,91,45,49,48,48,46,50,54,55,54,50,50,44,52,50,46,48,56,54,49,52,55,93,44,91,45,49,48,48,46,56,52,54,49,50,57,44,52,50,46,48,56,56,49,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,83,105,111,117,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,49,51,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,50,53,54,57,49,44,52,54,46,50,56,52,52,49,52,93,44,91,45,49,48,49,46,51,48,51,53,49,52,44,52,54,46,49,48,53,53,48,51,93,44,91,45,49,48,49,46,52,57,54,52,50,51,44,52,54,46,48,50,51,55,50,56,93,44,91,45,49,48,49,46,54,55,55,54,49,50,44,52,54,46,48,49,50,56,55,49,93,44,91,45,49,48,49,46,56,54,49,56,50,44,52,54,46,48,54,52,55,57,52,93,44,91,45,49,48,49,46,57,57,56,51,50,55,44,52,54,46,48,53,51,50,55,52,93,44,91,45,49,48,49,46,57,57,56,55,51,51,44,52,53,46,57,52,52,54,53,51,93,44,91,45,49,48,48,46,53,49,49,57,52,57,44,52,53,46,57,52,51,55,49,50,93,44,91,45,49,48,48,46,54,50,57,49,52,53,44,52,54,46,49,52,53,54,48,56,93,44,91,45,49,48,48,46,53,53,56,53,52,57,44,52,54,46,50,52,57,57,57,51,93,44,91,45,49,48,48,46,53,57,48,49,57,57,44,52,54,46,52,50,55,56,57,52,93,44,91,45,49,48,48,46,56,49,52,56,55,51,44,52,54,46,51,56,52,55,48,49,93,44,91,45,49,48,48,46,57,49,56,57,53,44,52,54,46,51,57,52,57,56,51,93,44,91,45,49,48,49,46,48,50,53,54,57,49,44,52,54,46,50,56,52,52,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,68,105,109,109,105,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,48,57,48,50,49,44,50,56,46,54,52,48,53,54,54,93,44,91,45,49,48,48,46,49,49,52,51,51,54,44,50,56,46,54,52,56,49,50,50,93,44,91,45,49,48,48,46,49,49,51,55,49,57,44,50,56,46,49,57,55,56,49,57,93,44,91,45,57,57,46,51,57,52,49,55,55,44,50,56,46,50,48,52,54,50,55,93,44,91,45,57,57,46,51,57,53,55,51,54,44,50,56,46,54,52,48,55,56,52,93,44,91,45,57,57,46,52,48,57,48,50,49,44,50,56,46,54,52,48,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,70,105,108,108,109,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,56,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,51,48,52,50,52,44,52,51,46,56,52,54,57,51,53,93,44,91,45,57,50,46,48,55,57,50,57,50,44,52,51,46,56,52,55,48,56,93,44,91,45,57,50,46,52,52,56,57,54,53,44,52,51,46,56,51,52,49,48,53,93,44,91,45,57,50,46,52,52,56,57,52,56,44,52,51,46,53,48,48,52,53,57,93,44,91,45,57,50,46,48,55,57,56,48,50,44,52,51,46,53,48,48,54,50,49,93,44,91,45,57,49,46,55,51,48,50,49,55,44,52,51,46,53,48,48,56,48,54,93,44,91,45,57,49,46,55,51,48,52,50,52,44,52,51,46,56,52,54,57,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,51,50,54,44,34,98,101,100,115,34,58,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,57,56,50,49,53,44,51,52,46,56,50,48,55,52,54,93,44,91,45,56,49,46,52,55,56,52,53,52,44,51,52,46,56,50,49,53,48,57,93,44,91,45,56,49,46,52,50,50,55,48,54,44,51,52,46,53,55,50,48,50,57,93,44,91,45,56,48,46,56,55,55,52,57,49,44,51,52,46,53,52,51,49,52,54,93,44,91,45,56,48,46,56,54,48,50,55,52,44,51,52,46,54,57,53,56,52,55,93,44,91,45,56,48,46,56,57,56,50,49,53,44,51,52,46,56,50,48,55,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,97,99,32,113,117,105,32,80,97,114,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,55,51,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,53,50,57,52,55,44,52,53,46,50,54,56,57,50,53,93,44,91,45,57,54,46,52,53,50,48,51,53,44,52,52,46,57,55,55,54,53,93,44,91,45,57,54,46,52,53,49,52,54,50,44,52,52,46,56,48,53,53,55,93,44,91,45,57,53,46,56,52,57,48,48,57,44,52,52,46,56,48,53,51,52,55,93,44,91,45,57,53,46,56,52,55,52,53,50,44,52,52,46,56,57,49,55,57,57,93,44,91,45,57,53,46,55,51,54,54,57,54,44,52,52,46,57,51,54,48,52,93,44,91,45,57,54,46,48,51,54,54,57,56,44,52,53,46,49,53,50,50,48,54,93,44,91,45,57,54,46,49,48,51,54,49,52,44,52,53,46,49,55,54,54,55,53,93,44,91,45,57,54,46,50,56,51,49,57,53,44,52,53,46,50,52,54,51,57,49,93,44,91,45,57,54,46,52,53,50,57,52,55,44,52,53,46,50,54,56,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,97,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,51,51,54,44,34,98,101,100,115,34,58,49,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,49,53,57,49,56,52,44,52,49,46,57,57,56,51,56,50,93,44,91,45,49,49,50,46,48,51,48,52,56,51,44,52,49,46,56,49,48,48,52,55,93,44,91,45,49,49,50,46,48,53,49,55,51,55,44,52,49,46,54,57,57,53,53,50,93,44,91,45,49,49,49,46,57,57,54,54,48,54,44,52,49,46,53,53,55,53,55,50,93,44,91,45,49,49,49,46,57,49,54,53,51,52,44,52,49,46,53,51,56,53,53,52,93,44,91,45,49,49,49,46,56,56,53,52,52,51,44,52,49,46,52,50,54,51,55,52,93,44,91,45,49,49,49,46,55,50,54,49,56,49,44,52,49,46,51,55,53,57,56,54,93,44,91,45,49,49,49,46,54,54,54,53,55,54,44,52,49,46,52,50,56,56,51,93,44,91,45,49,49,49,46,53,49,48,56,51,57,44,52,49,46,52,50,51,49,93,44,91,45,49,49,49,46,52,52,50,57,52,57,44,52,49,46,53,51,49,51,54,53,93,44,91,45,49,49,49,46,52,50,54,56,53,53,44,52,49,46,54,55,55,56,54,52,93,44,91,45,49,49,49,46,53,48,55,56,48,54,44,52,49,46,57,57,57,53,53,50,93,44,91,45,49,49,50,46,49,48,57,52,52,52,44,52,49,46,57,57,55,55,57,52,93,44,91,45,49,49,50,46,49,53,57,49,56,52,44,52,49,46,57,57,56,51,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,80,105,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,51,50,48,52,51,44,52,52,46,55,49,52,51,52,53,93,44,91,45,57,50,46,54,50,50,53,51,55,44,52,52,46,54,49,54,48,53,52,93,44,91,45,57,50,46,51,49,54,49,54,57,44,52,52,46,53,52,49,48,48,57,93,44,91,45,57,50,46,49,51,53,51,44,52,52,46,53,51,57,53,56,93,44,91,45,57,50,46,49,51,53,50,48,50,44,52,52,46,54,56,52,51,55,52,93,44,91,45,57,50,46,49,51,54,51,52,56,44,52,52,46,56,53,55,56,52,56,93,44,91,45,57,50,46,55,54,57,53,48,49,44,52,52,46,56,54,50,48,48,49,93,44,91,45,57,50,46,56,48,50,48,49,55,44,52,52,46,55,52,53,54,55,51,93,44,91,45,57,50,46,55,51,50,48,52,51,44,52,52,46,55,49,52,51,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,56,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,51,49,54,57,56,44,51,49,46,48,49,48,55,49,52,93,44,91,45,56,50,46,52,49,53,54,48,51,44,51,49,46,48,49,51,53,57,93,44,91,45,56,50,46,52,50,48,52,52,50,44,51,48,46,55,57,53,50,50,57,93,44,91,45,56,50,46,49,52,57,56,55,50,44,51,48,46,55,56,52,51,51,54,93,44,91,45,56,50,46,50,49,52,54,55,55,44,51,48,46,53,54,56,53,53,54,93,44,91,45,56,50,46,50,49,48,55,51,51,44,51,48,46,52,50,53,54,52,93,44,91,45,56,50,46,49,55,48,49,57,55,44,51,48,46,51,53,56,57,55,50,93,44,91,45,56,50,46,48,52,57,57,53,56,44,51,48,46,51,54,50,52,55,50,93,44,91,45,56,50,46,48,48,53,56,49,44,51,48,46,53,54,53,51,53,56,93,44,91,45,56,50,46,48,51,57,55,57,53,44,51,48,46,55,52,55,50,57,55,93,44,91,45,56,49,46,57,48,52,56,53,53,44,51,48,46,56,50,56,51,52,93,44,91,45,56,49,46,57,51,54,48,48,54,44,51,49,46,48,52,55,57,57,51,93,44,91,45,56,50,46,48,54,48,56,55,44,51,49,46,48,55,53,56,48,57,93,44,91,45,56,50,46,49,51,49,54,57,56,44,51,49,46,48,49,48,55,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,50,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,52,54,56,55,49,44,51,52,46,48,57,54,52,49,50,93,44,91,45,56,53,46,52,50,49,56,53,50,44,51,52,46,48,56,48,56,50,50,93,44,91,45,56,53,46,51,57,56,56,51,55,44,51,51,46,57,54,52,49,50,57,93,44,91,45,56,53,46,51,56,54,53,56,49,44,51,51,46,57,48,49,55,49,57,93,44,91,45,56,53,46,48,53,48,51,49,44,51,51,46,57,48,52,52,56,56,93,44,91,45,56,52,46,57,55,56,54,56,51,44,51,51,46,57,53,49,51,57,51,93,44,91,45,56,52,46,57,50,50,55,52,50,44,51,52,46,48,56,50,52,57,55,93,44,91,45,56,53,46,48,52,54,56,55,49,44,51,52,46,48,57,54,52,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,99,76,101,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,50,49,57,44,34,98,101,100,115,34,58,51,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,54,57,51,57,55,44,52,48,46,53,57,52,51,49,56,93,44,91,45,56,57,46,50,54,51,55,52,44,52,48,46,51,50,53,51,52,52,93,44,91,45,56,57,46,49,52,56,55,54,52,44,52,48,46,50,56,50,48,51,56,93,44,91,45,56,56,46,53,55,52,56,56,53,44,52,48,46,50,56,49,53,48,49,93,44,91,45,56,56,46,52,54,48,52,49,56,44,52,48,46,50,56,49,57,51,53,93,44,91,45,56,56,46,52,53,57,57,53,55,44,52,48,46,51,57,56,56,53,93,44,91,45,56,56,46,52,53,57,52,55,53,44,52,48,46,54,49,55,51,52,53,93,44,91,45,56,56,46,53,55,52,53,48,50,44,52,48,46,54,49,54,53,53,93,44,91,45,56,56,46,53,56,52,50,55,50,44,52,48,46,55,53,55,54,48,56,93,44,91,45,56,56,46,57,50,57,51,51,49,44,52,48,46,55,53,51,51,51,55,93,44,91,45,56,56,46,57,56,52,55,50,50,44,52,48,46,54,54,52,57,53,51,93,44,91,45,56,57,46,49,51,51,55,53,50,44,52,48,46,53,57,54,55,51,52,93,44,91,45,56,57,46,50,54,57,51,57,55,44,52,48,46,53,57,52,51,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,110,100,114,111,115,99,111,103,103,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,52,52,52,44,34,98,101,100,115,34,58,52,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,50,51,56,57,48,52,44,52,52,46,52,53,56,57,52,50,93,44,91,45,55,48,46,51,51,52,48,57,52,44,52,52,46,50,49,48,55,53,51,93,44,91,45,55,48,46,52,56,48,48,55,56,44,52,52,46,48,51,50,48,55,56,93,44,91,45,55,48,46,51,49,53,51,55,52,44,52,52,46,48,51,55,56,48,55,93,44,91,45,55,48,46,49,49,53,56,54,44,52,51,46,57,48,54,55,49,93,44,91,45,55,48,46,48,51,52,50,51,56,44,52,51,46,57,55,53,54,54,49,93,44,91,45,55,48,46,48,48,53,52,55,49,44,52,52,46,49,50,52,53,49,57,93,44,91,45,55,48,46,48,55,53,55,52,55,44,52,52,46,50,48,54,49,54,56,93,44,91,45,55,48,46,49,50,57,51,57,44,52,52,46,52,56,55,50,49,55,93,44,91,45,55,48,46,50,51,56,57,48,52,44,52,52,46,52,53,56,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,75,111,111,116,101,110,97,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,54,48,53,44,34,98,101,100,115,34,58,52,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,52,50,48,56,57,44,52,55,46,57,55,55,52,53,93,44,91,45,49,49,55,46,48,51,57,56,48,56,44,52,55,46,51,54,54,48,51,49,93,44,91,45,49,49,54,46,54,50,57,48,53,57,44,52,55,46,51,55,49,52,51,56,93,44,91,45,49,49,54,46,53,56,54,53,52,57,44,52,55,46,52,49,52,54,57,53,93,44,91,45,49,49,54,46,51,50,57,52,48,54,44,52,55,46,52,49,52,48,49,49,93,44,91,45,49,49,54,46,51,50,57,53,51,56,44,52,55,46,56,57,48,51,57,51,93,44,91,45,49,49,54,46,53,48,53,49,48,52,44,52,55,46,56,57,48,49,52,50,93,44,91,45,49,49,54,46,53,48,52,51,50,57,44,52,55,46,57,57,49,51,56,54,93,44,91,45,49,49,55,46,48,52,50,48,56,57,44,52,55,46,57,55,55,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,49,53,55,52,44,34,98,101,100,115,34,58,54,55,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,56,57,54,57,50,53,44,51,54,46,56,52,50,48,56,53,93,44,91,45,49,49,53,46,56,57,53,55,53,51,44,51,54,46,49,55,50,50,50,55,93,44,91,45,49,49,53,46,56,52,53,55,54,50,44,51,54,46,49,55,48,55,54,52,93,44,91,45,49,49,53,46,56,52,53,57,57,52,44,51,53,46,57,54,51,55,48,55,93,44,91,45,49,49,53,46,54,52,56,51,53,55,44,51,53,46,56,48,57,50,49,49,93,44,91,45,49,49,52,46,54,51,51,52,56,55,44,51,53,46,48,48,49,56,53,55,93,44,91,45,49,49,52,46,53,54,57,53,50,57,44,51,53,46,49,54,50,51,49,55,93,44,91,45,49,49,52,46,53,57,53,49,54,51,44,51,53,46,51,50,49,56,56,51,93,44,91,45,49,49,52,46,54,55,56,56,57,50,44,51,53,46,53,48,49,50,55,54,93,44,91,45,49,49,52,46,55,48,56,49,49,50,44,51,53,46,57,48,57,57,51,51,93,44,91,45,49,49,52,46,55,53,52,53,48,56,44,51,54,46,48,56,54,49,55,49,93,44,91,45,49,49,52,46,54,50,55,48,55,57,44,51,54,46,49,52,48,55,54,49,93,44,91,45,49,49,52,46,51,55,48,49,56,49,44,51,54,46,49,52,50,54,50,52,93,44,91,45,49,49,52,46,50,52,51,56,54,53,44,51,54,46,48,49,53,50,54,54,93,44,91,45,49,49,52,46,49,53,51,52,44,51,54,46,48,50,51,49,55,93,44,91,45,49,49,52,46,48,52,51,57,52,52,44,51,54,46,49,57,51,51,53,93,44,91,45,49,49,52,46,48,53,48,51,53,52,44,51,54,46,56,52,51,49,52,49,93,44,91,45,49,49,52,46,55,54,50,53,48,55,44,51,54,46,56,53,51,52,55,51,93,44,91,45,49,49,53,46,55,52,48,56,52,54,44,51,54,46,56,53,51,48,56,52,93,44,91,45,49,49,53,46,56,57,54,57,50,53,44,51,54,46,56,52,50,48,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,80,104,105,108,108,105,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,48,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,50,53,51,50,52,44,52,48,46,48,48,49,56,53,57,93,44,91,45,57,57,46,54,50,55,57,53,51,44,51,57,46,53,54,55,52,51,55,93,44,91,45,57,57,46,54,48,50,49,55,54,44,51,57,46,53,54,55,51,50,56,93,44,91,45,57,57,46,48,54,54,50,50,44,51,57,46,53,54,56,49,50,53,93,44,91,45,57,57,46,48,54,55,48,52,54,44,52,48,46,48,48,50,51,52,56,93,44,91,45,57,57,46,49,55,57,49,51,52,44,52,48,46,48,48,50,48,49,51,93,44,91,45,57,57,46,54,50,53,51,50,52,44,52,48,46,48,48,49,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,72,111,108,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,52,53,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,53,55,48,51,57,44,52,50,46,56,48,52,50,57,54,93,44,91,45,57,57,46,50,52,53,56,48,51,44,52,50,46,55,56,50,52,57,57,93,44,91,45,57,57,46,50,51,52,54,50,57,44,52,50,46,48,56,55,57,57,53,93,44,91,45,57,57,46,50,50,50,55,51,51,44,52,50,46,48,56,55,57,49,54,93,44,91,45,57,56,46,55,54,49,49,53,53,44,52,50,46,48,56,56,53,49,56,93,44,91,45,57,56,46,51,48,48,53,57,50,44,52,50,46,48,56,56,56,53,51,93,44,91,45,57,56,46,51,48,48,50,51,53,44,52,50,46,52,51,54,57,49,51,93,44,91,45,57,56,46,51,48,53,49,52,57,44,52,50,46,55,54,49,50,48,55,93,44,91,45,57,56,46,55,49,48,48,52,56,44,52,50,46,56,48,51,52,56,93,44,91,45,57,56,46,57,53,52,54,51,52,44,52,50,46,56,57,52,48,55,55,93,44,91,45,57,57,46,50,53,55,48,51,57,44,52,50,46,56,48,52,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,54,56,57,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,49,49,57,48,57,54,44,51,56,46,56,51,51,49,54,55,93,44,91,45,57,52,46,49,49,57,54,54,52,44,51,56,46,53,54,56,55,49,50,93,44,91,45,57,52,46,48,54,52,51,49,55,44,51,56,46,53,54,55,51,56,93,44,91,45,57,51,46,53,49,49,48,51,44,51,56,46,53,53,54,50,49,93,44,91,45,57,51,46,52,57,55,50,55,56,44,51,56,46,57,50,56,52,51,93,44,91,45,57,51,46,56,51,52,55,49,57,44,51,56,46,57,51,55,57,48,57,93,44,91,45,57,52,46,49,49,52,49,55,53,44,51,56,46,57,49,55,51,48,52,93,44,91,45,57,52,46,49,49,57,48,57,54,44,51,56,46,56,51,51,49,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,76,97,32,67,114,111,115,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,56,53,48,44,34,98,101,100,115,34,58,54,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,50,53,49,56,56,44,52,51,46,57,56,52,51,50,50,93,44,91,45,57,49,46,50,56,52,49,51,56,44,52,51,46,56,52,55,48,54,53,93,44,91,45,57,49,46,50,53,55,56,51,57,44,52,51,46,55,50,53,54,54,49,93,44,91,45,57,48,46,57,49,48,54,53,51,44,52,51,46,55,50,53,51,51,52,93,44,91,45,57,48,46,57,49,50,57,49,56,44,52,52,46,48,55,49,53,50,50,93,44,91,45,57,48,46,57,55,51,49,48,55,44,52,52,46,48,55,48,56,56,50,93,44,91,45,57,49,46,49,53,49,57,51,50,44,52,52,46,48,55,57,54,54,53,93,44,91,45,57,49,46,51,48,55,52,55,56,44,52,52,46,48,54,52,56,55,54,93,44,91,45,57,49,46,52,50,53,49,56,56,44,52,51,46,57,56,52,51,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,97,108,100,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,57,54,44,34,98,101,100,115,34,58,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,49,50,50,49,56,44,51,50,46,49,52,54,49,50,51,93,44,91,45,57,50,46,51,49,50,54,50,51,44,51,49,46,57,50,55,51,56,50,93,44,91,45,57,50,46,48,48,53,52,51,52,44,51,49,46,57,50,55,50,57,54,93,44,91,45,57,49,46,56,56,57,54,56,55,44,51,49,46,57,55,49,52,55,52,93,44,91,45,57,49,46,56,57,52,55,50,57,44,51,50,46,49,53,49,53,53,93,44,91,45,57,49,46,57,55,50,56,56,44,51,50,46,49,54,54,55,52,50,93,44,91,45,57,50,46,48,51,52,51,57,55,44,51,50,46,50,55,55,48,54,56,93,44,91,45,57,50,46,51,49,49,56,53,49,44,51,50,46,50,55,55,52,52,49,93,44,91,45,57,50,46,51,49,50,50,49,56,44,51,50,46,49,52,54,49,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,69,100,109,111,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,57,57,49,54,53,44,51,55,46,49,54,57,56,57,54,93,44,91,45,56,54,46,50,56,49,55,53,44,51,55,46,48,56,48,53,57,55,93,44,91,45,56,54,46,49,49,51,53,49,50,44,51,55,46,48,54,49,48,55,50,93,44,91,45,56,54,46,48,53,54,52,52,51,44,51,55,46,49,54,55,50,48,56,93,44,91,45,56,54,46,49,53,55,53,56,57,44,51,55,46,51,51,53,54,52,57,93,44,91,45,56,54,46,52,54,57,49,50,54,44,51,55,46,51,50,49,48,57,57,93,44,91,45,56,54,46,51,57,57,49,54,53,44,51,55,46,49,54,57,56,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,111,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,49,50,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,53,48,51,48,57,44,51,57,46,48,50,56,49,56,53,93,44,91,45,56,57,46,53,56,54,51,52,52,44,51,57,46,48,50,56,51,50,57,93,44,91,45,56,57,46,54,51,57,50,54,53,44,51,56,46,57,57,57,49,50,57,93,44,91,45,56,57,46,53,57,55,51,50,49,44,51,56,46,55,52,51,50,51,54,93,44,91,45,56,57,46,50,53,52,49,56,53,44,51,56,46,55,52,50,48,49,56,93,44,91,45,56,57,46,50,53,48,51,48,57,44,51,57,46,48,50,56,49,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,51,52,54,57,44,52,48,46,49,48,52,52,53,53,93,44,91,45,57,48,46,57,49,54,54,54,57,44,51,57,46,56,52,52,57,50,55,93,44,91,45,57,48,46,53,55,49,52,50,52,44,51,57,46,56,51,56,57,54,49,93,44,91,45,57,48,46,53,56,51,53,51,52,44,51,57,46,56,55,54,55,53,93,44,91,45,57,48,46,53,49,51,55,52,55,44,51,57,46,57,56,55,56,57,49,93,44,91,45,57,48,46,54,48,55,49,51,52,44,51,57,46,57,56,49,54,53,56,93,44,91,45,57,48,46,54,57,54,51,53,55,44,52,48,46,49,48,51,57,53,93,44,91,45,57,48,46,57,49,51,52,54,57,44,52,48,46,49,48,52,52,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,77,99,76,101,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,56,50,53,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,53,48,50,51,57,53,44,52,52,46,56,57,50,50,57,53,93,44,91,45,57,52,46,52,57,56,48,55,52,44,52,52,46,55,49,55,49,55,49,93,44,91,45,57,52,46,52,57,55,56,51,53,44,52,52,46,54,50,57,57,50,49,93,44,91,45,57,52,46,50,53,52,55,49,57,44,52,52,46,54,51,48,51,49,49,93,44,91,45,57,52,46,50,53,52,48,55,54,44,52,52,46,55,49,55,56,53,53,93,44,91,45,57,52,46,48,49,48,52,57,52,44,52,52,46,55,49,55,52,54,52,93,44,91,45,57,52,46,48,49,50,50,51,54,44,52,52,46,57,55,56,55,49,50,93,44,91,45,57,52,46,50,53,54,48,55,52,44,52,52,46,57,55,57,52,54,53,93,44,91,45,57,52,46,53,48,49,56,56,53,44,52,52,46,57,55,57,54,57,53,93,44,91,45,57,52,46,53,48,50,51,57,53,44,52,52,46,56,57,50,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,68,117,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,52,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,53,54,52,54,53,44,52,53,46,50,48,57,53,53,52,93,44,91,45,57,50,46,49,51,54,51,52,56,44,52,52,46,56,53,55,56,52,56,93,44,91,45,57,50,46,49,51,53,50,48,50,44,52,52,46,54,56,52,51,55,52,93,44,91,45,57,49,46,54,53,48,51,54,49,44,52,52,46,54,56,51,54,51,51,93,44,91,45,57,49,46,54,53,48,52,53,53,44,52,52,46,56,53,53,57,53,49,93,44,91,45,57,49,46,54,54,53,54,52,55,44,52,53,46,50,48,55,57,57,49,93,44,91,45,57,50,46,49,53,54,52,54,53,44,52,53,46,50,48,57,53,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,52,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,55,57,54,56,57,55,44,51,56,46,50,54,53,48,52,55,93,44,91,45,49,48,53,46,54,56,54,56,51,56,44,51,56,46,49,54,54,56,52,53,93,44,91,45,49,48,53,46,53,54,48,51,49,49,44,51,55,46,57,53,49,56,56,54,93,44,91,45,49,48,53,46,52,55,51,50,48,52,44,51,55,46,56,57,53,57,55,93,44,91,45,49,48,53,46,52,49,51,54,51,53,44,51,55,46,56,57,48,53,50,55,93,44,91,45,49,48,53,46,49,54,56,54,53,50,44,51,56,46,48,49,56,57,52,54,93,44,91,45,49,48,53,46,48,52,57,57,49,55,44,51,55,46,57,49,53,52,55,57,93,44,91,45,49,48,53,46,48,52,57,50,49,53,44,51,56,46,50,53,55,57,55,51,93,44,91,45,49,48,53,46,55,57,54,56,57,55,44,51,56,46,50,54,53,48,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,48,53,44,34,98,101,100,115,34,58,49,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,51,53,48,49,54,44,51,55,46,54,52,51,54,52,49,93,44,91,45,57,48,46,53,52,57,55,50,57,44,51,55,46,51,49,55,53,57,52,93,44,91,45,57,48,46,50,49,55,54,53,55,44,51,55,46,51,49,52,57,54,55,93,44,91,45,57,48,46,49,52,53,54,57,57,44,51,55,46,51,49,50,48,57,49,93,44,91,45,57,48,46,49,52,54,55,54,51,44,51,55,46,53,57,55,52,51,52,93,44,91,45,57,48,46,49,52,54,55,55,56,44,51,55,46,54,52,49,54,49,56,93,44,91,45,57,48,46,53,51,53,48,49,54,44,51,55,46,54,52,51,54,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,53,51,34,44,34,78,65,77,69,34,58,34,78,111,108,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,54,54,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,52,54,53,52,51,44,51,50,46,53,50,50,55,57,51,93,44,91,45,49,48,48,46,54,54,48,54,50,54,44,51,50,46,53,50,53,51,49,50,93,44,91,45,49,48,48,46,54,54,53,51,53,51,44,51,50,46,48,56,53,52,48,55,93,44,91,45,49,48,48,46,50,51,53,49,51,55,44,51,50,46,48,56,50,51,55,50,93,44,91,45,49,48,48,46,49,53,49,57,49,49,44,51,50,46,48,56,50,54,51,56,93,44,91,45,49,48,48,46,49,52,54,53,52,51,44,51,50,46,53,50,50,55,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,53,51,54,44,34,98,101,100,115,34,58,49,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,52,54,50,52,49,49,44,52,49,46,54,52,49,53,56,55,93,44,91,45,55,53,46,52,52,49,52,50,49,44,52,49,46,50,54,48,48,53,51,93,44,91,45,55,53,46,53,48,53,54,48,55,44,52,49,46,50,51,50,53,51,57,93,44,91,45,55,53,46,51,53,57,49,56,52,44,52,49,46,50,51,57,50,48,54,93,44,91,45,55,53,46,48,54,57,53,53,57,44,52,49,46,54,48,49,56,55,52,93,44,91,45,55,53,46,48,53,51,50,50,55,44,52,49,46,55,53,49,54,54,50,93,44,91,45,55,53,46,49,52,54,52,52,54,44,52,49,46,56,53,48,56,57,57,93,44,91,45,55,53,46,50,55,49,50,57,51,44,52,49,46,56,56,55,51,53,56,93,44,91,45,55,53,46,51,53,57,53,55,57,44,52,49,46,57,57,57,52,52,53,93,44,91,45,55,53,46,52,56,51,49,52,57,44,52,49,46,57,57,57,50,49,52,93,44,91,45,55,53,46,52,54,50,52,49,49,44,52,49,46,54,52,49,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,83,97,114,97,116,111,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,51,55,55,44,34,98,101,100,115,34,58,50,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,49,52,48,49,52,55,44,52,51,46,50,53,51,57,55,57,93,44,91,45,55,52,46,48,57,55,52,54,55,44,52,50,46,57,56,50,57,51,52,93,44,91,45,55,52,46,48,57,50,57,56,44,52,50,46,57,53,53,56,54,56,93,44,91,45,55,52,46,48,48,53,54,53,54,44,52,50,46,57,51,51,52,56,52,93,44,91,45,55,51,46,56,48,57,51,54,57,44,52,50,46,55,55,56,56,54,57,93,44,91,45,55,51,46,54,55,54,55,54,50,44,52,50,46,55,56,51,50,55,55,93,44,91,45,55,51,46,54,51,53,52,54,51,44,52,50,46,57,52,49,50,57,93,44,91,45,55,51,46,53,55,51,51,52,50,44,52,51,46,49,48,48,53,52,53,93,44,91,45,55,51,46,53,57,52,57,54,44,52,51,46,51,48,54,49,49,56,93,44,91,45,55,51,46,55,56,57,55,51,49,44,52,51,46,50,52,52,52,50,49,93,44,91,45,55,51,46,56,56,52,49,51,57,44,52,51,46,51,57,56,48,52,49,93,44,91,45,55,52,46,49,54,48,49,44,52,51,46,51,55,49,53,51,50,93,44,91,45,55,52,46,49,52,48,49,52,55,44,52,51,46,50,53,51,57,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,66,114,97,122,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,49,57,51,44,34,98,101,100,115,34,58,54,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,54,54,57,56,51,44,51,48,46,54,57,53,54,55,93,44,91,45,57,54,46,50,56,50,53,54,52,44,51,48,46,52,50,54,54,49,52,93,44,91,45,57,54,46,50,57,57,49,55,51,44,51,48,46,51,55,57,49,53,50,93,44,91,45,57,54,46,49,53,52,54,51,44,51,48,46,51,51,48,50,56,56,93,44,91,45,57,54,46,49,48,55,51,54,44,51,48,46,52,49,55,53,56,50,93,44,91,45,57,54,46,49,56,54,52,51,57,44,51,48,46,54,48,54,49,55,53,93,44,91,45,57,54,46,49,54,56,51,55,44,51,48,46,56,50,50,57,57,55,93,44,91,45,57,54,46,50,52,49,48,50,44,51,48,46,57,55,51,55,51,55,93,44,91,45,57,54,46,51,51,56,48,48,49,44,51,48,46,57,50,48,53,51,49,93,44,91,45,57,54,46,52,53,55,54,51,44,51,48,46,55,52,52,52,55,52,93,44,91,45,57,54,46,53,54,54,57,56,51,44,51,48,46,54,57,53,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,51,52,56,52,44,51,51,46,57,53,52,52,53,51,93,44,91,45,57,54,46,56,54,54,52,51,56,44,51,51,46,56,53,51,49,52,57,93,44,91,45,57,54,46,54,57,48,55,48,56,44,51,51,46,56,52,57,57,53,57,93,44,91,45,57,54,46,53,56,56,53,48,50,44,51,51,46,56,57,52,57,56,51,93,44,91,45,57,54,46,54,49,57,57,51,57,44,51,51,46,57,57,57,52,52,57,93,44,91,45,57,54,46,53,56,53,51,53,53,44,51,52,46,49,49,52,52,53,57,93,44,91,45,57,54,46,54,54,57,57,54,51,44,51,52,46,49,55,50,53,50,49,93,44,91,45,57,54,46,57,51,51,53,48,51,44,51,52,46,49,55,50,55,52,56,93,44,91,45,57,54,46,57,54,57,54,50,55,44,51,52,46,48,55,49,48,50,93,44,91,45,57,54,46,57,51,52,56,52,44,51,51,46,57,53,52,52,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,57,55,55,44,34,98,101,100,115,34,58,51,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,50,56,52,49,54,44,51,57,46,55,50,50,55,56,51,93,44,91,45,55,57,46,48,54,55,53,53,57,44,51,57,46,52,55,57,52,52,51,93,44,91,45,55,56,46,57,53,55,51,48,49,44,51,57,46,52,52,48,48,57,53,93,44,91,45,55,56,46,55,57,53,50,54,56,44,51,57,46,54,49,48,55,93,44,91,45,55,56,46,54,53,55,48,55,51,44,51,57,46,53,51,53,49,52,49,93,44,91,45,55,56,46,52,54,56,53,56,49,44,51,57,46,53,49,54,54,49,57,93,44,91,45,55,56,46,51,51,51,56,49,57,44,51,57,46,54,51,54,55,54,50,93,44,91,45,55,56,46,51,52,50,56,51,52,44,51,57,46,55,50,50,50,54,51,93,44,91,45,55,56,46,51,56,48,53,57,57,44,51,57,46,55,50,50,53,57,57,93,44,91,45,55,56,46,56,48,56,51,56,55,44,51,57,46,55,50,50,57,49,49,93,44,91,45,55,56,46,57,50,56,52,49,54,44,51,57,46,55,50,50,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,87,101,116,122,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,51,51,53,49,51,44,51,57,46,55,50,48,56,49,50,93,44,91,45,56,48,46,57,52,51,55,56,50,44,51,57,46,54,48,54,57,50,54,93,44,91,45,56,48,46,56,52,51,55,51,49,44,51,57,46,53,56,51,56,56,53,93,44,91,45,56,48,46,55,49,54,49,50,50,44,51,57,46,52,55,53,53,51,49,93,44,91,45,56,48,46,54,49,56,54,50,57,44,51,57,46,52,53,48,51,55,53,93,44,91,45,56,48,46,53,52,52,53,50,49,44,51,57,46,52,50,57,49,50,93,44,91,45,56,48,46,52,57,52,48,56,53,44,51,57,46,52,54,57,53,57,57,93,44,91,45,56,48,46,52,57,56,49,53,56,44,51,57,46,53,54,50,56,57,57,93,44,91,45,56,48,46,51,57,53,56,49,44,51,57,46,54,51,55,51,52,55,93,44,91,45,56,48,46,52,50,49,51,56,56,44,51,57,46,55,50,49,49,56,57,93,44,91,45,56,48,46,53,49,57,51,52,50,44,51,57,46,55,50,49,52,48,51,93,44,91,45,56,48,46,56,51,51,53,49,51,44,51,57,46,55,50,48,56,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,48,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,54,53,54,49,57,44,52,52,46,53,57,54,57,56,55,93,44,91,45,57,49,46,49,53,49,57,51,50,44,52,52,46,48,55,57,54,54,53,93,44,91,45,57,48,46,57,55,51,49,48,55,44,52,52,46,48,55,48,56,56,50,93,44,91,45,57,48,46,57,48,52,53,55,57,44,52,52,46,49,53,56,50,57,56,93,44,91,45,57,48,46,51,49,50,53,50,50,44,52,52,46,49,53,53,49,57,56,93,44,91,45,57,48,46,51,49,50,54,56,44,52,52,46,50,52,56,55,53,93,44,91,45,57,48,46,51,49,54,48,53,53,44,52,52,46,52,50,52,53,48,50,93,44,91,45,57,48,46,56,48,49,57,49,56,44,52,52,46,52,50,50,52,52,50,93,44,91,45,57,48,46,56,48,49,53,50,53,44,52,52,46,53,48,57,54,56,49,93,44,91,45,57,48,46,57,50,50,51,53,44,52,52,46,53,57,54,50,57,51,93,44,91,45,57,49,46,49,54,53,54,49,57,44,52,52,46,53,57,54,57,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,108,97,116,115,111,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,53,54,50,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,49,53,57,53,52,54,44,52,54,46,50,54,49,49,51,50,93,44,91,45,49,50,52,46,48,54,55,51,49,51,44,52,54,46,49,56,51,56,52,57,93,44,91,45,49,50,52,46,48,48,56,49,50,53,44,52,54,46,48,48,57,57,52,93,44,91,45,49,50,52,46,48,54,53,52,52,56,44,52,53,46,55,56,51,48,53,52,93,44,91,45,49,50,51,46,51,54,49,54,50,50,44,52,53,46,55,55,57,53,55,57,93,44,91,45,49,50,51,46,51,54,51,55,52,51,44,52,54,46,49,52,54,51,51,51,93,44,91,45,49,50,51,46,52,55,57,54,52,52,44,52,54,46,50,54,57,49,51,49,93,44,91,45,49,50,51,46,55,50,56,51,49,54,44,52,54,46,50,54,52,53,52,49,93,44,91,45,49,50,51,46,56,55,49,56,54,57,44,52,54,46,50,51,52,57,52,57,93,44,91,45,49,50,51,46,57,55,54,50,55,53,44,52,54,46,50,54,57,57,48,55,93,44,91,45,49,50,52,46,49,53,57,53,52,54,44,52,54,46,50,54,49,49,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,57,52,55,44,34,98,101,100,115,34,58,49,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,51,55,48,57,53,44,52,54,46,55,57,50,49,50,57,93,44,91,45,49,50,51,46,51,53,56,51,51,52,44,52,54,46,51,56,52,48,50,53,93,44,91,45,49,50,51,46,50,49,55,57,53,44,52,54,46,51,56,53,54,49,55,93,44,91,45,49,50,50,46,50,52,48,57,54,54,44,52,54,46,51,56,53,51,54,49,93,44,91,45,49,50,49,46,53,50,50,51,50,52,44,52,54,46,51,56,56,50,50,52,93,44,91,45,49,50,49,46,51,57,55,48,49,54,44,52,54,46,51,56,56,48,56,51,93,44,91,45,49,50,49,46,52,53,49,50,53,54,44,52,54,46,53,51,51,56,57,52,93,44,91,45,49,50,49,46,51,55,54,55,53,55,44,52,54,46,55,48,52,54,53,56,93,44,91,45,49,50,49,46,52,53,53,50,49,56,44,52,54,46,55,56,51,55,57,55,93,44,91,45,49,50,49,46,55,53,56,53,57,51,44,52,54,46,55,56,51,55,57,49,93,44,91,45,49,50,49,46,56,52,49,56,57,44,52,54,46,55,50,56,52,53,53,93,44,91,45,49,50,50,46,50,48,51,49,49,53,44,52,54,46,55,54,51,48,54,49,93,44,91,45,49,50,51,46,49,54,48,57,48,57,44,52,54,46,55,54,52,51,51,93,44,91,45,49,50,51,46,49,54,48,53,56,56,44,52,54,46,55,57,51,51,56,51,93,44,91,45,49,50,51,46,51,55,48,57,53,44,52,54,46,55,57,50,49,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,48,50,53,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,48,56,56,51,57,44,52,50,46,53,50,49,50,49,55,93,44,91,45,55,56,46,51,48,56,49,50,56,44,52,49,46,57,57,57,52,49,53,93,44,91,45,55,56,46,50,48,54,54,48,52,44,52,49,46,57,57,57,53,57,53,93,44,91,45,55,55,46,55,52,57,57,51,49,44,52,49,46,57,57,56,55,56,50,93,44,91,45,55,55,46,55,50,50,57,54,52,44,52,50,46,52,55,49,50,49,54,93,44,91,45,55,55,46,56,52,48,57,48,49,44,52,50,46,53,49,55,55,54,55,93,44,91,45,55,56,46,48,51,56,50,54,49,44,52,50,46,53,50,49,53,50,50,93,44,91,45,55,56,46,51,48,56,56,51,57,44,52,50,46,53,50,49,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,101,100,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,54,54,50,50,49,44,52,49,46,56,54,48,48,54,57,93,44,91,45,57,49,46,51,54,54,52,52,56,44,52,49,46,53,57,56,51,55,51,93,44,91,45,57,48,46,56,57,57,56,53,51,44,52,49,46,53,57,55,49,51,51,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,49,46,55,55,49,51,57,50,93,44,91,45,57,48,46,56,57,56,52,56,52,44,52,49,46,57,52,54,50,52,53,93,44,91,45,57,49,46,51,54,53,56,55,55,44,52,49,46,57,52,55,52,49,93,44,91,45,57,49,46,51,54,54,50,50,49,44,52,49,46,56,54,48,48,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,52,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,48,56,55,48,49,44,51,56,46,54,56,56,49,48,49,93,44,91,45,56,54,46,54,56,51,49,48,50,44,51,56,46,54,56,54,53,54,49,93,44,91,45,56,54,46,54,56,50,51,53,57,44,51,56,46,53,50,54,51,55,56,93,44,91,45,56,54,46,54,56,49,52,50,52,44,51,56,46,51,57,52,55,54,55,93,44,91,45,56,54,46,51,48,56,56,54,56,44,51,56,46,51,57,52,48,54,57,93,44,91,45,56,54,46,51,48,56,54,55,52,44,51,56,46,52,50,50,56,55,53,93,44,91,45,56,54,46,51,48,56,55,48,49,44,51,56,46,54,56,56,49,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,51,49,56,55,44,34,98,101,100,115,34,58,50,51,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,55,55,48,57,51,44,51,51,46,57,53,55,54,49,52,93,44,91,45,56,52,46,51,52,55,56,49,57,44,51,51,46,57,54,51,50,56,56,93,44,91,45,56,52,46,51,53,48,50,50,52,44,51,51,46,54,52,55,57,48,56,93,44,91,45,56,52,46,50,56,49,50,55,51,44,51,51,46,54,52,55,52,49,49,93,44,91,45,56,52,46,49,56,52,49,52,51,44,51,51,46,54,52,54,49,53,55,93,44,91,45,56,52,46,49,49,48,49,50,52,44,51,51,46,54,50,53,49,49,93,44,91,45,56,52,46,48,50,51,55,49,51,44,51,51,46,55,53,50,56,48,56,93,44,91,45,56,52,46,50,53,57,56,50,50,44,51,51,46,57,49,56,57,48,49,93,44,91,45,56,52,46,50,55,55,48,57,51,44,51,51,46,57,53,55,54,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,55,34,44,34,78,65,77,69,34,58,34,80,105,99,107,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,51,50,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,53,53,53,51,44,51,52,46,53,54,50,55,51,53,93,44,91,45,56,52,46,54,53,52,51,54,54,44,51,52,46,53,52,56,57,52,54,93,44,91,45,56,52,46,54,53,51,50,51,50,44,51,52,46,52,49,50,53,57,93,44,91,45,56,52,46,53,56,50,54,51,44,51,52,46,51,56,49,52,57,50,93,44,91,45,56,52,46,50,53,55,53,56,54,44,51,52,46,51,56,48,57,57,50,93,44,91,45,56,52,46,51,52,53,53,53,51,44,51,52,46,53,54,50,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,104,111,117,116,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,56,57,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,53,51,52,50,57,53,44,52,56,46,49,51,52,53,54,52,93,44,91,45,49,48,57,46,55,50,54,57,49,52,44,52,56,46,49,51,50,56,53,57,93,44,91,45,49,48,57,46,55,50,54,57,52,51,44,52,56,46,50,50,49,53,50,53,93,44,91,45,49,48,57,46,56,52,53,57,51,50,44,52,56,46,51,48,53,57,55,49,93,44,91,45,49,49,48,46,54,50,53,52,48,57,44,52,56,46,51,48,54,52,55,57,93,44,91,45,49,49,48,46,55,53,53,56,55,51,44,52,56,46,50,49,57,54,48,49,93,44,91,45,49,49,48,46,56,50,55,49,54,56,44,52,56,46,49,51,51,50,48,53,93,44,91,45,49,49,49,46,52,48,57,48,57,55,44,52,56,46,49,51,50,50,49,56,93,44,91,45,49,49,49,46,52,48,56,53,49,52,44,52,55,46,57,56,55,49,55,56,93,44,91,45,49,49,49,46,52,48,56,56,53,44,52,55,46,54,57,56,49,50,51,93,44,91,45,49,49,48,46,57,55,54,54,54,56,44,52,55,46,54,57,56,55,51,93,44,91,45,49,49,49,46,48,52,51,56,56,49,44,52,55,46,53,57,49,53,56,51,93,44,91,45,49,49,48,46,56,54,52,54,51,44,52,55,46,53,50,52,55,49,52,93,44,91,45,49,49,48,46,55,54,57,49,50,57,44,52,55,46,52,52,54,48,57,54,93,44,91,45,49,49,48,46,54,51,57,53,53,57,44,52,55,46,52,49,54,52,56,54,93,44,91,45,49,49,48,46,50,49,51,53,57,54,44,52,55,46,52,49,54,54,53,55,93,44,91,45,49,48,57,46,56,52,53,50,50,49,44,52,55,46,53,52,54,55,57,53,93,44,91,45,49,48,57,46,56,50,51,52,48,49,44,52,55,46,55,49,53,53,55,57,93,44,91,45,49,48,57,46,53,51,56,54,55,55,44,52,55,46,55,51,56,56,54,52,93,44,91,45,49,48,57,46,53,51,52,50,57,53,44,52,56,46,49,51,52,53,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,56,56,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,55,55,54,56,52,44,52,50,46,55,51,48,57,48,51,93,44,91,45,49,48,48,46,49,51,51,57,55,56,44,52,50,46,56,48,55,56,49,57,93,44,91,45,49,48,48,46,49,57,56,52,55,56,44,52,50,46,56,52,54,49,48,50,93,44,91,45,49,48,48,46,49,54,55,54,48,53,44,52,50,46,48,56,53,56,52,56,93,44,91,45,57,57,46,54,56,54,57,53,57,44,52,50,46,48,56,54,48,55,53,93,44,91,45,57,57,46,54,54,50,51,55,57,44,52,50,46,48,56,54,48,48,57,93,44,91,45,57,57,46,54,55,55,54,56,52,44,52,50,46,55,51,48,57,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,109,112,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,56,55,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,54,49,51,51,55,44,51,54,46,53,57,49,55,56,52,93,44,91,45,56,52,46,50,53,57,53,57,51,44,51,54,46,53,49,51,57,56,53,93,44,91,45,56,52,46,51,52,57,57,51,57,44,51,54,46,52,54,54,50,57,50,93,44,91,45,56,52,46,51,50,57,57,50,55,44,51,54,46,50,56,53,48,56,54,93,44,91,45,56,52,46,51,55,50,55,51,49,44,51,54,46,50,49,54,55,55,56,93,44,91,45,56,52,46,50,50,55,53,50,55,44,51,54,46,50,52,52,56,55,57,93,44,91,45,56,52,46,48,54,57,54,49,56,44,51,54,46,50,51,48,57,55,56,93,44,91,45,56,52,46,48,48,52,51,49,55,44,51,54,46,50,55,48,51,55,56,93,44,91,45,56,51,46,57,48,53,54,51,56,44,51,54,46,52,49,57,57,55,57,93,44,91,45,56,51,46,57,56,55,54,49,53,44,51,54,46,53,56,57,52,55,49,93,44,91,45,56,52,46,50,50,55,50,57,50,44,51,54,46,53,57,50,48,52,53,93,44,91,45,56,52,46,50,54,49,51,51,55,44,51,54,46,53,57,49,55,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,57,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,48,54,57,54,53,44,51,54,46,50,54,54,49,57,49,93,44,91,45,55,56,46,52,49,50,48,57,53,44,51,54,46,49,54,57,53,57,55,93,44,91,45,55,56,46,52,57,54,54,49,52,44,51,54,46,49,55,53,49,57,57,93,44,91,45,55,56,46,53,52,54,52,49,52,44,51,54,46,48,50,49,56,50,54,93,44,91,45,55,56,46,52,50,54,56,54,52,44,51,53,46,57,55,53,48,49,50,93,44,91,45,55,56,46,50,53,53,57,55,51,44,51,53,46,56,49,56,49,50,93,44,91,45,55,56,46,48,48,54,53,53,49,44,51,54,46,50,48,50,54,51,51,93,44,91,45,55,56,46,51,48,54,57,54,53,44,51,54,46,50,54,54,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,53,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,49,48,34,44,34,78,65,77,69,34,58,34,66,97,108,116,105,109,111,114,101,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,52,55,48,48,44,34,98,101,100,115,34,58,52,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,50,57,52,56,54,44,51,57,46,50,49,56,52,48,56,93,44,91,45,55,54,46,53,50,57,55,57,51,44,51,57,46,51,55,50,48,53,56,93,44,91,45,55,54,46,55,49,49,51,49,51,44,51,57,46,51,55,49,57,51,51,93,44,91,45,55,54,46,55,49,49,48,53,52,44,51,57,46,50,55,55,56,56,57,93,44,91,45,55,54,46,54,49,56,54,49,50,44,51,57,46,50,51,55,51,57,56,93,44,91,45,55,54,46,53,50,57,52,56,54,44,51,57,46,50,49,56,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,76,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,50,57,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,53,51,55,56,44,51,56,46,53,50,49,54,53,55,93,44,91,45,57,54,46,51,53,55,50,55,55,44,51,56,46,49,55,50,54,54,93,44,91,45,57,53,46,57,53,56,56,54,50,44,51,56,46,49,55,48,57,51,57,93,44,91,45,57,53,46,57,53,48,50,56,50,44,51,56,46,52,51,52,49,48,53,93,44,91,45,57,53,46,57,52,53,57,50,52,44,51,56,46,55,51,57,49,49,50,93,44,91,45,57,54,46,51,53,50,54,49,51,44,51,56,46,55,51,57,48,50,49,93,44,91,45,57,54,46,51,53,51,55,56,44,51,56,46,53,50,49,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,52,52,44,34,98,101,100,115,34,58,49,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,57,48,56,53,49,44,52,50,46,50,49,48,52,48,53,93,44,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,44,91,45,57,52,46,55,52,52,56,55,54,44,52,49,46,56,54,50,51,57,52,93,44,91,45,57,52,46,54,50,56,55,50,52,44,52,49,46,56,54,50,55,54,51,93,44,91,45,57,52,46,54,50,56,56,48,54,44,52,50,46,50,48,57,51,57,54,93,44,91,45,57,52,46,56,53,56,52,49,50,44,52,50,46,50,48,57,54,57,50,93,44,91,45,57,53,46,48,57,48,56,53,49,44,52,50,46,50,49,48,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,84,101,110,115,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,57,50,55,49,56,44,51,50,46,50,48,51,51,52,57,93,44,91,45,57,49,46,53,49,49,51,55,52,44,51,49,46,57,51,48,48,50,53,93,44,91,45,57,49,46,53,55,53,55,50,49,44,51,49,46,56,56,50,53,54,93,44,91,45,57,49,46,53,52,52,55,57,49,44,51,49,46,55,53,49,55,51,49,93,44,91,45,57,49,46,51,56,48,50,53,52,44,51,49,46,55,51,51,50,53,53,93,44,91,45,57,49,46,51,49,55,56,54,52,44,51,49,46,55,52,57,55,54,54,93,44,91,45,57,49,46,51,52,53,50,49,52,44,51,49,46,56,52,51,56,54,49,93,44,91,45,57,49,46,50,52,56,49,52,52,44,51,49,46,56,54,57,56,52,56,93,44,91,45,57,49,46,48,51,48,50,48,55,44,51,50,46,49,49,52,51,53,51,93,44,91,45,57,49,46,48,51,48,56,49,44,51,50,46,49,50,48,54,53,93,44,91,45,57,49,46,48,53,51,53,53,53,44,51,50,46,49,50,52,52,49,50,93,44,91,45,57,49,46,49,50,52,48,52,51,44,51,50,46,50,49,49,49,48,52,93,44,91,45,57,49,46,52,57,50,55,49,56,44,51,50,46,50,48,51,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,56,55,54,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,50,50,55,49,44,51,53,46,54,48,55,55,56,51,93,44,91,45,56,52,46,52,48,57,50,50,54,44,51,53,46,51,57,56,51,55,56,93,44,91,45,56,52,46,52,57,53,53,50,57,44,51,53,46,50,56,53,52,55,50,93,44,91,45,56,52,46,50,57,50,51,54,53,44,51,53,46,50,48,54,54,57,52,93,44,91,45,56,52,46,50,49,49,51,57,53,44,51,53,46,50,54,53,54,50,49,93,44,91,45,56,52,46,48,50,57,48,54,55,44,51,53,46,50,57,50,50,52,56,93,44,91,45,56,52,46,48,50,49,52,53,50,44,51,53,46,52,48,52,50,50,51,93,44,91,45,56,51,46,57,54,49,49,48,50,44,51,53,46,52,54,51,55,53,52,93,44,91,45,56,52,46,49,56,56,51,49,57,44,51,53,46,54,49,48,53,52,57,93,44,91,45,56,52,46,50,57,57,53,52,57,44,51,53,46,54,53,55,54,55,51,93,44,91,45,56,52,46,52,56,54,55,53,52,44,51,53,46,54,53,56,51,55,54,93,44,91,45,56,52,46,53,50,53,56,53,44,51,53,46,54,50,52,49,56,54,93,44,91,45,56,52,46,53,50,50,51,55,51,44,51,53,46,54,49,56,54,50,53,93,44,91,45,56,52,46,53,50,50,55,49,44,51,53,46,54,48,55,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,52,52,54,52,44,51,56,46,50,54,50,52,49,50,93,44,91,45,49,48,50,46,48,52,50,49,53,53,44,51,55,46,55,51,56,53,52,49,93,44,91,45,49,48,49,46,53,50,55,48,54,51,44,51,55,46,55,51,54,51,49,52,93,44,91,45,49,48,49,46,53,52,50,55,53,55,44,51,55,46,56,50,55,53,57,52,93,44,91,45,49,48,49,46,53,52,50,51,49,50,44,51,56,46,50,54,51,50,48,55,93,44,91,45,49,48,49,46,53,54,55,52,56,50,44,51,56,46,50,54,51,49,52,53,93,44,91,45,49,48,50,46,48,52,52,52,54,52,44,51,56,46,50,54,50,52,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,80,111,99,97,104,111,110,116,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,44,91,45,57,52,46,57,49,51,56,57,44,52,50,46,57,48,57,55,93,44,91,45,57,52,46,57,49,52,52,56,53,44,52,50,46,53,54,48,51,48,57,93,44,91,45,57,52,46,52,52,51,48,50,52,44,52,50,46,53,53,56,56,52,51,93,44,91,45,57,52,46,52,52,51,48,56,51,44,52,50,46,54,52,53,49,54,52,93,44,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,71,101,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,53,50,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,52,53,50,48,54,56,44,52,52,46,49,53,49,52,54,53,93,44,91,45,49,49,54,46,53,55,50,50,50,52,44,52,51,46,57,56,48,52,56,53,93,44,91,45,49,49,54,46,55,49,50,53,48,49,44,52,51,46,57,56,49,51,50,54,93,44,91,45,49,49,54,46,55,49,50,54,55,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,53,49,50,53,48,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,50,56,50,48,49,57,44,52,51,46,56,48,55,51,54,53,93,44,91,45,49,49,54,46,50,55,51,48,54,57,44,52,52,46,49,53,49,50,50,55,93,44,91,45,49,49,54,46,50,49,51,56,55,49,44,52,52,46,49,53,49,51,56,55,93,44,91,45,49,49,54,46,50,49,50,57,49,44,52,52,46,51,50,52,51,55,51,93,44,91,45,49,49,54,46,49,53,55,48,50,50,44,52,52,46,52,57,56,57,50,56,93,44,91,45,49,49,54,46,50,57,57,56,55,54,44,52,52,46,52,52,52,53,55,54,93,44,91,45,49,49,54,46,51,53,56,52,57,50,44,52,52,46,49,53,49,49,53,56,93,44,91,45,49,49,54,46,52,53,50,48,54,56,44,52,52,46,49,53,49,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,73,110,100,101,112,101,110,100,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,54,52,44,34,98,101,100,115,34,58,50,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,52,57,52,52,56,44,51,53,46,56,54,55,52,49,49,93,44,91,45,57,49,46,56,51,55,49,55,57,44,51,53,46,55,48,52,57,51,50,93,44,91,45,57,49,46,55,57,51,57,53,56,44,51,53,46,53,51,52,49,49,52,93,44,91,45,57,49,46,53,56,49,56,56,44,51,53,46,53,51,48,52,52,55,93,44,91,45,57,49,46,51,54,57,53,55,44,51,53,46,53,50,54,51,54,50,93,44,91,45,57,49,46,51,53,54,50,52,54,44,51,53,46,55,48,49,49,48,55,93,44,91,45,57,49,46,49,57,56,53,53,54,44,51,53,46,56,57,48,48,50,52,93,44,91,45,57,49,46,51,53,55,50,51,44,51,53,46,56,57,48,54,50,49,93,44,91,45,57,49,46,52,54,51,49,57,56,44,51,53,46,57,51,54,56,49,93,44,91,45,57,49,46,55,49,48,52,56,51,44,51,53,46,57,52,49,55,53,56,93,44,91,45,57,49,46,56,52,57,52,52,56,44,51,53,46,56,54,55,52,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,111,110,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,50,49,51,51,54,44,51,53,46,48,49,50,50,49,93,44,91,45,57,50,46,48,55,48,56,48,53,44,51,53,46,48,49,49,56,48,50,93,44,91,45,57,50,46,48,55,56,55,49,49,44,51,52,46,55,50,57,57,56,51,93,44,91,45,57,50,46,48,50,57,53,51,57,44,51,52,46,54,50,49,50,52,56,93,44,91,45,57,50,46,48,50,57,57,57,54,44,51,52,46,52,56,57,51,53,50,93,44,91,45,57,49,46,55,48,53,49,56,53,44,51,52,46,52,56,50,54,55,93,44,91,45,57,49,46,54,55,56,48,51,55,44,51,52,46,52,56,49,57,50,93,44,91,45,57,49,46,54,52,51,48,56,44,51,52,46,54,51,54,56,54,50,93,44,91,45,57,49,46,55,48,48,56,50,56,44,51,52,46,54,55,50,48,50,57,93,44,91,45,57,49,46,54,57,51,55,48,53,44,51,52,46,57,49,57,54,48,53,93,44,91,45,57,49,46,56,48,51,55,48,51,44,51,52,46,57,50,49,53,50,52,93,44,91,45,57,49,46,56,48,50,53,48,53,44,51,53,46,48,51,48,52,50,53,93,44,91,45,57,50,46,49,49,57,55,49,57,44,51,53,46,48,54,54,52,57,51,93,44,91,45,57,50,46,49,50,49,51,51,54,44,51,53,46,48,49,50,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,50,54,53,56,55,44,52,49,46,49,54,54,48,57,93,44,91,45,56,55,46,53,50,54,50,48,56,44,52,49,46,48,49,48,51,52,49,93,44,91,45,56,55,46,53,50,54,48,51,49,44,52,48,46,55,51,54,56,56,53,93,44,91,45,56,55,46,50,54,55,50,57,56,44,52,48,46,55,51,54,53,56,50,93,44,91,45,56,55,46,50,55,53,56,56,50,44,52,49,46,50,49,56,53,57,53,93,44,91,45,56,55,46,52,49,52,52,50,49,44,52,49,46,49,54,50,50,52,56,93,44,91,45,56,55,46,53,50,54,53,56,55,44,52,49,46,49,54,54,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,49,52,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,57,56,51,57,54,44,51,52,46,52,54,48,56,56,51,93,44,91,45,56,51,46,51,53,53,50,53,49,44,51,52,46,50,50,51,55,57,52,93,44,91,45,56,51,46,50,57,55,51,49,55,44,51,52,46,50,54,52,53,56,55,93,44,91,45,56,51,46,49,49,51,51,54,44,51,52,46,50,55,51,53,51,93,44,91,45,56,51,46,48,53,49,54,51,56,44,51,52,46,52,57,51,55,48,50,93,44,91,45,56,51,46,49,48,51,54,55,51,44,51,52,46,53,51,54,54,49,55,93,44,91,45,56,51,46,49,55,55,56,51,56,44,51,52,46,52,55,55,48,49,55,93,44,91,45,56,51,46,51,57,56,51,57,54,44,51,52,46,52,54,48,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,72,101,110,100,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,49,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,54,51,55,54,51,44,50,54,46,53,49,51,51,50,52,93,44,91,45,56,49,46,50,55,49,55,54,56,44,50,54,46,53,49,55,48,54,57,93,44,91,45,56,49,46,50,54,56,53,53,44,50,54,46,50,53,51,48,52,53,93,44,91,45,56,48,46,56,55,57,56,48,57,44,50,54,46,50,53,57,52,53,53,93,44,91,45,56,48,46,56,56,49,50,51,51,44,50,54,46,51,51,51,56,48,54,93,44,91,45,56,48,46,56,56,53,54,51,57,44,50,54,46,57,53,56,57,49,57,93,44,91,45,56,48,46,57,52,53,51,53,52,44,50,54,46,55,54,57,48,52,57,93,44,91,45,56,49,46,53,54,53,57,51,49,44,50,54,46,55,54,57,53,53,50,93,44,91,45,56,49,46,53,54,51,55,54,51,44,50,54,46,53,49,51,51,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,53,34,44,34,78,65,77,69,34,58,34,84,97,108,105,97,102,101,114,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,55,57,57,55,53,44,51,51,46,53,57,57,55,57,50,93,44,91,45,56,50,46,56,49,50,57,53,56,44,51,51,46,54,53,53,56,51,54,93,44,91,45,56,50,46,56,57,48,53,57,57,44,51,51,46,54,51,50,56,55,55,93,44,91,45,56,50,46,57,52,57,48,52,54,44,51,51,46,55,51,51,51,51,51,93,44,91,45,56,50,46,57,57,53,54,48,50,44,51,51,46,54,57,51,53,56,51,93,44,91,45,56,51,46,48,49,50,56,53,51,44,51,51,46,52,54,57,49,55,56,93,44,91,45,56,50,46,56,53,49,57,53,52,44,51,51,46,52,52,51,53,52,51,93,44,91,45,56,50,46,54,55,57,57,55,53,44,51,51,46,53,57,57,55,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,50,49,48,44,34,98,101,100,115,34,58,49,52,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,49,49,53,57,49,55,44,51,48,46,49,54,48,51,52,55,93,44,91,45,57,52,46,50,48,51,55,48,57,44,51,48,46,49,56,56,56,49,57,93,44,91,45,57,52,46,50,57,50,54,50,57,44,51,48,46,49,49,55,54,55,49,93,44,91,45,57,52,46,52,52,52,57,49,44,51,48,46,49,49,51,48,49,53,93,44,91,45,57,52,46,52,52,50,50,51,53,44,50,57,46,56,56,57,53,51,56,93,44,91,45,57,52,46,51,53,55,57,55,54,44,50,57,46,56,56,55,52,54,52,93,44,91,45,57,52,46,51,53,52,56,56,44,50,57,46,53,48,54,51,50,56,93,44,91,45,57,52,46,48,51,51,53,54,53,44,50,57,46,54,50,53,48,48,50,93,44,91,45,57,51,46,56,49,52,51,53,49,44,50,57,46,53,57,54,53,55,54,93,44,91,45,57,51,46,57,50,50,55,52,52,44,50,57,46,56,49,56,56,48,56,93,44,91,45,57,51,46,56,53,52,52,49,50,44,50,57,46,56,54,53,48,53,51,93,44,91,45,57,51,46,56,54,48,49,54,57,44,50,57,46,57,55,55,51,57,55,93,44,91,45,57,52,46,48,51,49,57,55,54,44,51,48,46,48,50,56,48,49,51,93,44,91,45,57,52,46,49,49,53,57,49,55,44,51,48,46,49,54,48,51,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,77,101,97,103,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,52,57,56,48,57,53,44,52,54,46,55,54,50,53,48,50,93,44,91,45,49,49,49,46,51,50,48,49,56,49,44,52,54,46,53,54,57,52,48,49,93,44,91,45,49,49,49,46,50,52,54,53,49,57,44,52,54,46,52,51,56,49,48,57,93,44,91,45,49,49,49,46,48,53,54,57,57,54,44,52,54,46,51,57,56,49,50,50,93,44,91,45,49,49,49,46,49,49,56,49,50,51,44,52,54,46,51,49,54,57,55,93,44,91,45,49,49,49,46,48,54,49,57,53,54,44,52,54,46,49,57,50,56,51,52,93,44,91,45,49,49,48,46,55,56,51,56,51,51,44,52,54,46,49,57,50,54,57,57,93,44,91,45,49,49,48,46,50,56,49,57,49,54,44,52,54,46,49,56,52,51,57,55,93,44,91,45,49,49,48,46,50,56,49,57,55,49,44,52,54,46,50,50,48,54,48,53,93,44,91,45,49,49,48,46,50,55,51,51,51,55,44,52,54,46,55,49,48,53,48,57,93,44,91,45,49,49,48,46,52,53,52,53,54,54,44,52,54,46,54,55,57,53,52,53,93,44,91,45,49,49,48,46,54,53,50,56,55,55,44,52,54,46,56,50,51,54,50,54,93,44,91,45,49,49,48,46,57,49,51,48,51,53,44,52,54,46,57,56,48,53,53,57,93,44,91,45,49,49,49,46,48,56,52,50,56,53,44,52,55,46,48,49,48,54,49,51,93,44,91,45,49,49,49,46,53,51,57,51,55,51,44,52,55,46,48,48,48,53,53,57,93,44,91,45,49,49,49,46,54,53,56,49,51,50,44,52,54,46,57,49,51,52,50,51,93,44,91,45,49,49,49,46,54,48,51,49,53,51,44,52,54,46,56,48,57,57,52,57,93,44,91,45,49,49,49,46,52,57,56,48,57,53,44,52,54,46,55,54,50,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,76,97,32,80,108,97,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,49,48,49,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,44,91,45,49,48,56,46,48,51,51,49,52,54,44,51,55,46,52,54,52,57,52,93,44,91,45,49,48,56,46,50,48,52,56,51,54,44,51,55,46,51,52,52,48,56,93,44,91,45,49,48,56,46,50,57,49,54,55,54,44,51,55,46,50,50,50,48,48,51,93,44,91,45,49,48,56,46,50,57,48,52,53,57,44,51,55,46,49,52,53,57,55,53,93,44,91,45,49,48,56,46,51,55,57,51,48,51,44,51,54,46,57,57,57,54,48,56,93,44,91,45,49,48,55,46,52,56,49,55,51,55,44,51,55,46,48,48,48,49,50,55,93,44,91,45,49,48,55,46,52,56,50,49,51,49,44,51,55,46,52,50,50,54,55,51,93,44,91,45,49,48,55,46,52,56,50,49,55,57,44,51,55,46,54,51,57,53,48,49,93,44,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,66,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,50,50,51,54,44,34,98,101,100,115,34,58,49,49,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,49,56,54,48,54,44,51,49,46,51,50,48,50,48,50,93,44,91,45,57,55,46,57,48,55,49,44,51,49,46,48,54,57,51,55,52,93,44,91,45,57,55,46,57,49,49,54,56,52,44,51,49,46,48,51,52,57,49,57,93,44,91,45,57,55,46,56,50,56,53,49,50,44,51,48,46,57,48,54,49,56,56,93,44,91,45,57,55,46,54,50,53,50,56,56,44,51,48,46,56,55,48,52,51,93,44,91,45,57,55,46,51,49,53,53,48,55,44,51,48,46,55,53,50,51,55,49,93,44,91,45,57,55,46,50,53,57,48,56,50,44,51,48,46,56,56,57,53,57,54,93,44,91,45,57,55,46,48,55,48,49,56,56,44,51,48,46,57,56,54,50,50,93,44,91,45,57,55,46,50,55,56,49,49,51,44,51,49,46,50,55,57,55,57,57,93,44,91,45,57,55,46,52,49,56,54,48,54,44,51,49,46,51,50,48,50,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,75,101,109,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,49,52,52,49,51,44,51,50,46,57,50,54,54,93,44,91,45,56,56,46,57,49,52,53,49,54,44,51,50,46,53,55,54,57,53,53,93,44,91,45,56,56,46,51,56,56,55,57,55,44,51,50,46,53,55,56,49,50,51,93,44,91,45,56,56,46,51,52,55,56,56,55,44,51,50,46,57,50,57,48,56,50,93,44,91,45,56,56,46,56,49,50,55,56,50,44,51,50,46,57,50,53,57,55,51,93,44,91,45,56,56,46,57,49,52,52,49,51,44,51,50,46,57,50,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,56,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,55,56,54,52,54,44,51,52,46,51,52,48,56,53,49,93,44,91,45,57,51,46,52,51,52,56,56,55,44,51,52,46,48,53,50,50,57,56,93,44,91,45,57,51,46,51,55,51,52,48,54,44,51,51,46,57,53,55,48,55,93,44,91,45,57,51,46,50,57,48,53,55,49,44,51,51,46,56,52,53,49,51,51,93,44,91,45,57,51,46,49,48,52,50,57,44,51,51,46,55,55,55,48,49,49,93,44,91,45,57,50,46,56,57,51,53,51,52,44,51,51,46,56,48,57,57,52,51,93,44,91,45,57,50,46,56,56,54,50,56,53,44,51,52,46,49,53,53,56,55,55,93,44,91,45,57,51,46,48,52,50,48,50,53,44,51,52,46,49,53,57,56,53,50,93,44,91,45,57,51,46,48,51,53,48,51,57,44,51,52,46,50,51,54,54,54,52,93,44,91,45,57,51,46,51,53,54,56,52,44,51,52,46,50,56,48,51,48,54,93,44,91,45,57,51,46,52,48,56,49,50,52,44,51,52,46,51,51,57,53,50,55,93,44,91,45,57,51,46,52,55,56,54,52,54,44,51,52,46,51,52,48,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,75,108,97,109,97,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,51,49,48,44,34,98,101,100,115,34,58,49,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,52,52,55,53,51,56,44,52,49,46,57,57,55,52,54,53,93,44,91,45,49,50,48,46,56,55,57,57,50,54,44,52,49,46,57,57,51,55,54,52,93,44,91,45,49,50,48,46,56,56,51,51,50,55,44,52,50,46,55,52,52,50,49,52,93,44,91,45,49,50,49,46,51,52,57,54,55,57,44,52,50,46,55,52,54,54,52,52,93,44,91,45,49,50,49,46,51,52,56,52,55,49,44,52,51,46,51,53,54,55,53,51,93,44,91,45,49,50,49,46,51,51,50,57,54,57,44,52,51,46,54,49,54,54,52,53,93,44,91,45,49,50,50,46,48,48,50,51,54,50,44,52,51,46,54,49,53,52,57,56,93,44,91,45,49,50,50,46,49,51,48,54,56,57,44,52,51,46,53,53,55,49,52,51,93,44,91,45,49,50,50,46,49,51,50,48,51,52,44,52,51,46,52,52,48,50,50,49,93,44,91,45,49,50,50,46,48,50,50,54,54,50,44,52,51,46,51,54,50,51,48,52,93,44,91,45,49,50,49,46,57,56,48,53,53,52,44,52,51,46,50,54,53,49,56,93,44,91,45,49,50,50,46,48,57,51,55,55,54,44,52,51,46,48,55,54,50,53,55,93,44,91,45,49,50,50,46,50,56,50,53,56,53,44,52,51,46,48,54,55,55,49,57,93,44,91,45,49,50,50,46,50,56,50,55,51,44,52,50,46,57,57,54,52,57,57,93,44,91,45,49,50,50,46,50,56,57,55,52,56,44,52,50,46,48,48,56,48,57,56,93,44,91,45,49,50,49,46,52,52,55,53,51,56,44,52,49,46,57,57,55,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,79,115,119,101,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,49,48,52,44,34,98,101,100,115,34,58,49,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,52,52,55,49,50,44,52,51,46,55,48,51,52,54,54,93,44,91,45,55,54,46,54,48,53,48,49,50,44,52,51,46,50,53,51,53,55,93,44,91,45,55,54,46,52,55,57,50,50,52,44,52,51,46,50,50,55,53,49,57,93,44,91,45,55,54,46,49,54,57,48,52,55,44,52,51,46,50,52,54,54,54,56,93,44,91,45,55,53,46,57,57,51,51,57,52,44,52,51,46,49,56,51,51,55,54,93,44,91,45,55,53,46,56,56,52,50,55,53,44,52,51,46,49,53,53,53,54,50,93,44,91,45,55,53,46,56,49,52,54,50,55,44,52,51,46,52,56,51,53,55,56,93,44,91,45,55,53,46,55,53,54,50,49,51,44,52,51,46,52,55,48,51,56,56,93,44,91,45,55,53,46,55,55,52,53,53,51,44,52,51,46,54,56,56,56,56,52,93,44,91,45,55,54,46,48,50,50,48,48,51,44,52,51,46,54,54,56,49,52,51,93,44,91,45,55,54,46,54,52,52,55,49,50,44,52,51,46,55,48,51,52,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,78,97,114,97,110,106,105,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,53,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,50,55,56,48,55,54,44,49,56,46,51,50,57,57,55,53,93,44,91,45,54,54,46,51,49,51,50,57,57,44,49,56,46,50,52,57,51,50,52,93,44,91,45,54,54,46,50,54,54,52,54,54,44,49,56,46,50,52,53,50,55,93,44,91,45,54,54,46,50,48,54,49,51,53,44,49,56,46,50,55,54,54,54,93,44,91,45,54,54,46,50,48,52,55,51,52,44,49,56,46,51,49,54,48,51,53,93,44,91,45,54,54,46,50,55,56,48,55,54,44,49,56,46,51,50,57,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,53,51,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,52,51,54,49,55,44,51,52,46,50,48,48,48,48,54,93,44,91,45,56,53,46,55,51,56,57,55,53,44,51,51,46,57,54,56,52,54,93,44,91,45,56,53,46,53,51,48,48,57,52,44,51,51,46,57,52,49,52,50,51,93,44,91,45,56,53,46,51,57,56,56,51,55,44,51,51,46,57,54,52,49,50,57,93,44,91,45,56,53,46,52,50,49,56,53,50,44,51,52,46,48,56,48,56,50,50,93,44,91,45,56,53,46,52,54,50,50,48,55,44,51,52,46,50,56,54,51,56,54,93,44,91,45,56,53,46,53,49,51,54,49,50,44,51,52,46,53,50,51,56,50,53,93,44,91,45,56,53,46,54,51,54,54,52,53,44,51,52,46,51,54,54,54,50,50,93,44,91,45,56,53,46,56,52,51,54,49,55,44,51,52,46,50,48,48,48,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,97,110,100,101,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,49,49,56,49,55,44,50,57,46,54,50,55,53,49,52,93,44,91,45,57,56,46,57,56,51,55,56,55,44,50,57,46,54,50,51,52,53,93,44,91,45,57,56,46,57,50,55,49,54,49,44,50,57,46,53,54,50,50,53,93,44,91,45,57,56,46,56,48,54,53,53,50,44,50,57,46,54,57,48,55,48,57,93,44,91,45,57,56,46,55,55,56,55,56,50,44,50,57,46,55,50,48,49,54,55,93,44,91,45,57,56,46,57,49,55,55,50,53,44,50,57,46,55,56,49,51,57,56,93,44,91,45,57,57,46,49,55,54,57,56,56,44,50,57,46,56,57,53,48,54,51,93,44,91,45,57,57,46,54,48,50,55,55,54,44,50,57,46,57,48,55,54,55,57,93,44,91,45,57,57,46,54,48,51,49,51,44,50,57,46,54,50,55,49,56,49,93,44,91,45,57,57,46,52,49,49,56,49,55,44,50,57,46,54,50,55,53,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,82,111,115,101,98,117,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,53,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,55,51,56,53,52,56,44,52,54,46,52,56,49,56,48,54,93,44,91,45,49,48,55,46,49,55,52,53,51,49,44,52,54,46,52,56,50,55,49,51,93,44,91,45,49,48,55,46,49,53,51,52,52,52,44,52,54,46,51,57,53,54,49,51,93,44,91,45,49,48,55,46,48,50,56,52,50,50,44,52,54,46,51,57,53,52,54,93,44,91,45,49,48,55,46,48,48,53,53,51,52,44,52,54,46,49,51,54,54,54,57,93,44,91,45,49,48,54,46,57,51,57,48,54,55,44,52,54,46,49,51,54,54,54,55,93,44,91,45,49,48,54,46,57,51,57,48,57,53,44,52,53,46,56,55,48,48,52,49,93,44,91,45,49,48,54,46,57,49,50,57,53,57,44,52,53,46,54,56,51,57,49,53,93,44,91,45,49,48,54,46,55,50,57,53,55,49,44,52,53,46,54,55,50,56,53,93,44,91,45,49,48,54,46,55,50,57,53,52,51,44,52,53,46,51,53,49,52,56,93,44,91,45,49,48,54,46,55,54,56,48,49,52,44,52,53,46,49,55,57,55,50,56,93,44,91,45,49,48,54,46,50,55,57,55,48,57,44,52,53,46,49,55,57,55,50,56,93,44,91,45,49,48,54,46,50,51,53,55,49,54,44,52,53,46,51,53,49,55,57,54,93,44,91,45,49,48,54,46,50,51,52,53,48,50,44,52,53,46,55,56,56,53,55,56,93,44,91,45,49,48,54,46,49,57,49,55,51,52,44,52,53,46,55,56,56,54,93,44,91,45,49,48,54,46,49,57,49,54,50,57,44,52,54,46,49,51,55,49,56,51,93,44,91,45,49,48,54,46,49,53,51,52,51,51,44,52,54,46,49,51,55,50,54,93,44,91,45,49,48,54,46,49,53,53,49,52,51,44,52,54,46,52,56,51,54,51,52,93,44,91,45,49,48,54,46,49,50,48,51,54,54,44,52,54,46,52,56,51,54,52,56,93,44,91,45,49,48,54,46,49,50,48,54,51,44,52,54,46,56,51,49,52,51,56,93,44,91,45,49,48,54,46,48,56,54,52,54,51,44,52,54,46,56,52,53,56,56,49,93,44,91,45,49,48,54,46,55,50,48,49,53,55,44,52,54,46,56,53,57,54,48,51,93,44,91,45,49,48,55,46,56,57,50,50,51,51,44,52,54,46,56,53,49,50,49,53,93,44,91,45,49,48,55,46,56,50,55,54,56,55,44,52,54,46,55,53,53,56,55,53,93,44,91,45,49,48,55,46,55,56,49,50,49,52,44,52,54,46,52,57,54,48,49,52,93,44,91,45,49,48,55,46,55,51,56,53,52,56,44,52,54,46,52,56,49,56,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,48,55,56,53,49,44,51,54,46,57,57,54,49,51,52,93,44,91,45,49,48,52,46,48,48,56,56,50,51,44,51,54,46,50,49,56,49,49,53,93,44,91,45,49,48,51,46,55,57,51,57,57,49,44,51,54,46,49,55,51,57,55,50,93,44,91,45,49,48,51,46,55,57,52,53,50,53,44,51,54,46,48,56,53,55,51,56,93,44,91,45,49,48,51,46,51,54,52,57,55,55,44,51,54,46,48,56,54,48,53,93,44,91,45,49,48,51,46,51,55,53,49,49,55,44,51,53,46,55,51,57,53,49,54,93,44,91,45,49,48,51,46,48,52,49,51,52,57,44,51,53,46,55,51,57,52,51,51,93,44,91,45,49,48,51,46,48,52,49,48,54,50,44,51,54,46,48,53,53,50,50,54,93,44,91,45,49,48,51,46,48,52,49,55,49,51,44,51,54,46,53,48,48,52,51,57,93,44,91,45,49,48,51,46,48,48,50,51,53,57,44,51,54,46,53,48,48,53,53,49,93,44,91,45,49,48,51,46,48,48,50,51,50,57,44,51,55,46,48,48,48,49,53,93,44,91,45,49,48,51,46,48,56,54,49,48,50,44,51,55,46,48,48,48,49,56,56,93,44,91,45,49,48,52,46,48,48,55,56,53,49,44,51,54,46,57,57,54,49,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,83,99,104,111,111,108,99,114,97,102,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,54,57,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,52,57,51,50,44,52,54,46,53,48,52,55,53,56,93,44,91,45,56,54,46,51,54,52,57,53,51,44,52,54,46,53,48,53,56,53,50,93,44,91,45,56,54,46,51,54,52,57,56,57,44,52,54,46,51,51,49,57,50,55,93,44,91,45,56,54,46,54,49,53,51,57,55,44,52,54,46,51,51,51,50,54,51,93,44,91,45,56,54,46,54,49,53,54,48,49,44,52,54,46,49,53,56,54,57,49,93,44,91,45,56,54,46,52,57,48,49,52,50,44,52,54,46,49,53,56,49,55,56,93,44,91,45,56,54,46,52,53,57,49,49,52,44,52,53,46,56,57,54,51,54,51,93,44,91,45,56,54,46,52,54,48,55,57,55,44,52,53,46,53,56,52,52,51,51,93,44,91,45,56,53,46,56,53,53,55,54,56,44,52,53,46,53,55,56,51,56,54,93,44,91,45,56,53,46,56,54,56,50,52,49,44,52,53,46,56,49,57,55,57,53,93,44,91,45,56,53,46,56,54,53,48,50,53,44,52,54,46,50,52,52,54,51,49,93,44,91,45,56,53,46,56,54,52,57,51,50,44,52,54,46,53,48,52,55,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,85,108,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,51,48,51,44,34,98,101,100,115,34,58,51,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,56,48,54,57,51,44,52,50,46,48,49,54,51,55,53,93,44,91,45,55,52,46,52,53,51,54,56,53,44,52,49,46,56,55,53,53,57,53,93,44,91,45,55,52,46,53,55,53,48,56,54,44,52,49,46,55,52,53,50,53,56,93,44,91,45,55,52,46,51,57,53,48,55,49,44,52,49,46,54,52,52,56,55,54,93,44,91,45,55,52,46,51,54,55,48,53,53,44,52,49,46,53,57,48,57,55,55,93,44,91,45,55,51,46,57,53,51,51,48,55,44,52,49,46,53,56,57,57,55,55,93,44,91,45,55,51,46,57,54,50,50,50,49,44,52,49,46,57,48,49,48,50,93,44,91,45,55,51,46,57,50,57,54,50,54,44,52,50,46,48,55,56,55,55,56,93,44,91,45,55,51,46,57,49,48,54,55,53,44,52,50,46,49,50,55,50,57,51,93,44,91,45,55,52,46,48,48,50,52,53,44,52,50,46,49,55,54,57,57,50,93,44,91,45,55,52,46,48,55,52,55,57,55,44,52,50,46,48,57,54,53,56,57,93,44,91,45,55,52,46,51,48,55,53,55,49,44,52,50,46,49,49,52,51,52,54,93,44,91,45,55,52,46,52,53,49,55,49,51,44,52,50,46,49,54,57,50,50,53,93,44,91,45,55,52,46,55,56,48,54,57,51,44,52,50,46,48,49,54,51,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,97,109,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,55,51,54,55,44,34,98,101,100,115,34,58,49,57,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,48,53,57,57,49,51,44,51,57,46,57,57,49,53,50,57,93,44,91,45,55,53,46,49,51,57,56,51,50,44,51,57,46,56,56,56,51,49,55,93,44,91,45,55,52,46,56,55,55,50,54,44,51,57,46,54,48,56,51,53,50,93,44,91,45,55,52,46,55,51,54,50,49,54,44,51,57,46,55,50,57,55,55,53,93,44,91,45,55,52,46,57,48,50,57,54,51,44,51,57,46,55,57,49,49,48,56,93,44,91,45,55,52,46,57,51,48,55,52,53,44,51,57,46,56,56,53,57,48,56,93,44,91,45,55,53,46,48,53,57,57,49,51,44,51,57,46,57,57,49,53,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,54,57,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,48,51,53,54,57,44,51,57,46,49,49,55,53,57,50,93,44,91,45,57,48,46,53,55,48,49,54,57,44,51,56,46,57,57,51,50,57,93,44,91,45,57,48,46,52,53,48,56,49,51,44,51,56,46,57,54,55,55,54,57,93,44,91,45,57,48,46,50,55,53,55,48,50,44,51,56,46,57,50,51,53,50,57,93,44,91,45,57,48,46,49,52,53,57,56,52,44,51,56,46,57,57,57,51,48,51,93,44,91,45,57,48,46,49,52,56,49,50,49,44,51,57,46,50,54,49,57,52,55,93,44,91,45,57,48,46,51,49,51,50,56,57,44,51,57,46,49,55,52,50,56,57,93,44,91,45,57,48,46,53,54,48,48,55,49,44,51,57,46,49,56,55,52,51,93,44,91,45,57,48,46,54,48,51,53,54,57,44,51,57,46,49,49,55,53,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,97,110,111,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,52,52,57,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,51,48,54,55,44,51,55,46,55,48,53,54,55,51,93,44,91,45,55,55,46,52,57,51,57,57,44,51,55,46,55,48,49,48,48,56,93,44,91,45,55,55,46,51,56,49,55,53,53,44,51,55,46,53,57,52,53,49,51,93,44,91,45,55,55,46,50,52,48,57,56,56,44,51,55,46,53,51,56,48,56,56,93,44,91,45,55,55,46,49,50,51,54,55,53,44,51,55,46,54,50,54,56,56,49,93,44,91,45,55,55,46,51,52,53,50,49,53,44,51,55,46,55,56,57,49,55,53,93,44,91,45,55,55,46,54,52,50,53,49,56,44,51,55,46,57,57,48,54,56,56,93,44,91,45,55,55,46,54,56,55,52,54,57,44,51,56,46,48,48,55,56,48,54,93,44,91,45,55,55,46,55,57,55,51,48,54,44,51,55,46,55,50,57,51,53,56,93,44,91,45,55,55,46,54,51,48,54,55,44,51,55,46,55,48,53,54,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,87,97,108,108,97,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,55,56,49,57,53,44,51,57,46,49,51,52,55,54,49,93,44,91,45,49,48,50,46,48,52,55,49,54,49,44,51,57,46,49,51,51,49,52,55,93,44,91,45,49,48,50,46,48,52,54,53,55,49,44,51,57,46,48,52,55,48,51,56,93,44,91,45,49,48,50,46,48,52,53,50,49,50,44,51,56,46,54,57,55,53,54,55,93,44,91,45,49,48,49,46,53,54,55,48,57,52,44,51,56,46,54,57,57,54,54,57,93,44,91,45,49,48,49,46,52,56,52,51,56,51,44,51,56,46,55,48,48,49,54,54,93,44,91,45,49,48,49,46,52,55,56,49,57,53,44,51,57,46,49,51,52,55,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,103,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,57,52,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,49,50,49,49,52,44,52,55,46,50,50,51,50,54,57,93,44,91,45,56,55,46,49,49,54,49,51,56,44,52,54,46,49,53,57,48,53,93,44,91,45,56,54,46,54,49,53,54,48,49,44,52,54,46,49,53,56,54,57,49,93,44,91,45,56,54,46,54,49,53,51,57,55,44,52,54,46,51,51,51,50,54,51,93,44,91,45,56,54,46,51,54,52,57,56,57,44,52,54,46,51,51,49,57,50,55,93,44,91,45,56,54,46,51,54,52,57,53,51,44,52,54,46,53,48,53,56,53,50,93,44,91,45,56,53,46,56,54,52,57,51,50,44,52,54,46,53,48,52,55,53,56,93,44,91,45,56,53,46,56,53,52,56,54,50,44,52,55,46,51,48,53,52,56,50,93,44,91,45,56,55,46,49,49,50,54,57,53,44,52,55,46,56,49,55,57,57,56,93,44,91,45,56,55,46,49,49,50,49,49,52,44,52,55,46,50,50,51,50,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,53,48,50,57,53,44,51,54,46,52,57,56,54,49,93,44,91,45,57,50,46,49,53,54,57,57,44,51,54,46,50,54,49,50,52,56,93,44,91,45,57,49,46,54,57,49,52,51,53,44,51,54,46,50,53,51,51,48,49,93,44,91,45,57,49,46,53,54,54,48,55,56,44,51,54,46,50,52,57,57,52,53,93,44,91,45,57,49,46,53,54,53,56,54,54,44,51,54,46,51,51,55,52,93,44,91,45,57,49,46,52,53,52,52,51,55,44,51,54,46,51,51,53,52,54,53,93,44,91,45,57,49,46,52,53,48,48,48,50,44,51,54,46,52,57,55,54,53,93,44,91,45,57,49,46,54,55,50,51,52,51,44,51,54,46,52,57,57,52,54,51,93,44,91,45,57,50,46,49,50,48,52,51,44,51,54,46,52,57,56,55,93,44,91,45,57,50,46,49,53,48,50,57,53,44,51,54,46,52,57,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,53,34,44,34,78,65,77,69,34,58,34,72,105,100,97,108,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,57,51,56,57,44,34,98,101,100,115,34,58,49,52,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,56,54,55,49,53,44,50,54,46,50,53,55,53,52,50,93,44,91,45,57,56,46,52,54,50,55,49,52,44,50,54,46,50,50,53,56,48,50,93,44,91,45,57,56,46,49,57,56,52,54,54,44,50,54,46,48,53,53,51,57,55,93,44,91,45,57,56,46,48,51,56,51,54,55,44,50,54,46,48,52,50,49,48,55,93,44,91,45,57,55,46,56,54,49,56,50,50,44,50,54,46,48,54,57,57,50,49,93,44,91,45,57,55,46,56,54,49,56,55,53,44,50,54,46,51,52,56,49,53,54,93,44,91,45,57,55,46,56,54,49,57,50,44,50,54,46,52,51,51,53,55,57,93,44,91,45,57,56,46,48,48,52,49,56,57,44,50,54,46,52,52,56,55,56,52,93,44,91,45,57,55,46,57,53,55,52,48,53,44,50,54,46,54,49,49,55,54,57,93,44,91,45,57,55,46,57,56,53,52,57,52,44,50,54,46,55,56,48,57,49,55,93,44,91,45,57,56,46,51,50,48,54,55,44,50,54,46,55,56,51,48,56,49,93,44,91,45,57,56,46,53,56,54,55,49,53,44,50,54,46,50,53,55,53,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,82,111,98,101,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,52,52,50,44,34,98,101,100,115,34,58,52,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,53,48,48,50,52,44,51,52,46,54,50,49,48,53,51,93,44,91,45,55,57,46,48,55,49,50,49,49,44,51,52,46,50,57,57,51,52,50,93,44,91,45,55,56,46,57,53,49,56,48,56,44,51,52,46,52,52,56,55,53,54,93,44,91,45,55,56,46,56,54,56,57,54,49,44,51,52,46,52,56,52,55,55,56,93,44,91,45,55,56,46,56,48,53,56,51,52,44,51,52,46,54,56,57,53,54,93,44,91,45,55,56,46,57,48,49,57,57,56,44,51,52,46,56,51,53,50,54,56,93,44,91,45,55,57,46,48,51,56,55,52,55,44,51,52,46,57,53,50,55,49,53,93,44,91,45,55,57,46,49,57,49,51,57,49,44,51,52,46,56,51,51,55,49,55,93,44,91,45,55,57,46,51,52,55,56,54,56,44,51,52,46,56,51,56,53,53,51,93,44,91,45,55,57,46,51,51,48,57,52,57,44,51,52,46,55,55,51,56,50,49,93,44,91,45,55,57,46,52,54,49,53,48,54,44,51,52,46,54,51,48,51,55,57,93,44,91,45,55,57,46,52,53,48,48,50,52,44,51,52,46,54,50,49,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,78,101,119,97,121,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,49,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,44,91,45,56,54,46,48,51,55,56,56,52,44,52,51,46,56,49,53,54,49,49,93,44,91,45,56,54,46,48,51,57,52,57,49,44,52,51,46,52,54,55,52,52,55,93,44,91,45,56,54,46,48,51,56,57,53,51,44,52,51,46,50,57,51,53,49,57,93,44,91,45,56,53,46,55,57,48,52,52,56,44,52,51,46,50,57,51,48,48,51,93,44,91,45,56,53,46,53,54,50,53,51,56,44,52,51,46,50,57,52,50,55,49,93,44,91,45,56,53,46,53,54,50,51,52,56,44,52,51,46,52,54,56,49,51,93,44,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,77,111,114,114,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,49,53,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,57,57,57,53,48,49,44,52,53,46,56,49,50,53,49,55,93,44,91,45,49,50,48,46,48,48,54,53,53,53,44,52,53,46,50,53,55,55,48,54,93,44,91,45,49,49,57,46,55,57,48,54,57,57,44,52,53,46,48,54,55,56,50,51,93,44,91,45,49,49,57,46,54,55,50,50,50,56,44,52,52,46,57,57,53,49,49,55,93,44,91,45,49,49,57,46,49,54,50,57,54,54,44,52,52,46,57,57,54,50,52,49,93,44,91,45,49,49,57,46,49,52,54,52,50,52,44,52,53,46,48,56,50,57,52,93,44,91,45,49,49,57,46,49,52,53,49,52,52,44,52,53,46,53,49,53,57,48,57,93,44,91,45,49,49,57,46,50,52,56,53,52,55,44,52,53,46,54,48,49,57,51,53,93,44,91,45,49,49,57,46,52,51,52,54,52,44,52,53,46,54,48,50,57,56,53,93,44,91,45,49,49,57,46,52,51,50,49,53,44,52,53,46,57,49,56,50,55,49,93,44,91,45,49,49,57,46,53,55,49,54,48,50,44,52,53,46,57,50,53,52,55,56,93,44,91,45,49,49,57,46,54,54,57,57,55,52,44,52,53,46,56,53,54,57,48,56,93,44,91,45,49,49,57,46,56,54,56,51,49,50,44,52,53,46,56,51,54,49,57,56,93,44,91,45,49,49,57,46,57,57,57,53,48,49,44,52,53,46,56,49,50,53,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,84,111,100,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,52,48,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,53,53,53,55,44,52,54,46,51,54,56,56,56,93,44,91,45,57,53,46,49,52,53,56,56,44,52,54,46,49,48,54,55,54,49,93,44,91,45,57,53,46,49,51,57,55,51,49,44,52,53,46,55,55,51,52,49,54,93,44,91,45,57,52,46,54,52,51,57,57,44,52,53,46,55,55,51,57,53,93,44,91,45,57,52,46,54,53,51,52,54,50,44,52,54,46,51,52,56,54,55,56,93,44,91,45,57,52,46,55,51,49,52,52,50,44,52,54,46,51,54,56,54,48,53,93,44,91,45,57,53,46,49,53,53,53,55,44,52,54,46,51,54,56,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,53,55,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,49,48,48,55,54,44,51,53,46,51,55,53,50,52,50,93,44,91,45,57,51,46,57,50,48,49,53,55,44,51,53,46,50,50,57,53,56,53,93,44,91,45,57,52,46,48,50,56,56,56,54,44,51,53,46,50,49,51,56,52,49,93,44,91,45,57,52,46,48,51,49,50,51,54,44,51,53,46,49,52,48,57,48,56,93,44,91,45,57,52,46,49,52,48,53,55,49,44,51,53,46,48,57,57,54,55,56,93,44,91,45,57,52,46,48,55,52,52,52,57,44,51,53,46,48,50,54,52,51,50,93,44,91,45,57,51,46,55,48,52,56,56,53,44,51,53,46,48,49,57,55,49,53,93,44,91,45,57,51,46,55,48,54,56,52,50,44,51,53,46,49,51,52,57,52,51,93,44,91,45,57,51,46,53,50,57,55,51,57,44,51,53,46,49,52,53,52,51,51,93,44,91,45,57,51,46,52,53,55,48,50,50,44,51,53,46,50,49,53,55,56,50,93,44,91,45,57,51,46,50,55,57,57,50,57,44,51,53,46,50,49,50,53,53,54,93,44,91,45,57,51,46,50,55,56,49,51,54,44,51,53,46,51,49,55,53,48,51,93,44,91,45,57,51,46,50,57,57,48,49,44,51,53,46,51,50,55,54,52,52,93,44,91,45,57,51,46,52,51,48,52,49,44,51,53,46,52,50,51,55,51,55,93,44,91,45,57,51,46,55,49,48,48,55,54,44,51,53,46,51,55,53,50,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,52,52,49,44,34,98,101,100,115,34,58,49,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,53,53,54,44,51,53,46,52,49,57,56,49,49,93,44,91,45,56,48,46,57,53,52,56,54,44,51,53,46,52,48,48,48,55,56,93,44,91,45,56,48,46,57,52,55,51,52,52,44,51,53,46,52,56,56,52,55,51,93,44,91,45,56,48,46,57,54,48,48,50,53,44,51,53,46,53,52,55,48,50,93,44,91,45,56,49,46,53,51,53,52,48,51,44,51,53,46,53,54,56,49,51,55,93,44,91,45,56,49,46,53,51,55,53,57,57,44,51,53,46,53,54,52,50,50,56,93,44,91,45,56,49,46,52,53,53,54,44,51,53,46,52,49,57,56,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,105,108,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,55,53,57,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,52,51,52,53,44,51,51,46,53,53,50,50,53,51,93,44,91,45,57,52,46,48,52,50,57,56,55,44,51,51,46,50,55,49,50,52,50,93,44,91,45,57,52,46,48,52,50,57,54,52,44,51,51,46,48,49,57,50,49,57,93,44,91,45,57,51,46,56,49,52,53,53,51,44,51,51,46,48,49,57,51,55,49,93,44,91,45,57,51,46,56,48,52,57,51,44,51,51,46,48,49,57,51,53,55,93,44,91,45,57,51,46,56,53,57,48,56,55,44,51,51,46,48,56,57,53,51,55,93,44,91,45,57,51,46,54,56,51,55,49,53,44,51,51,46,50,56,49,48,57,50,93,44,91,45,57,51,46,55,50,50,56,54,55,44,51,51,46,52,56,49,57,54,51,93,44,91,45,57,51,46,56,50,53,56,56,52,44,51,51,46,54,48,57,56,53,51,93,44,91,45,57,51,46,57,51,53,54,48,54,44,51,51,46,53,53,48,49,55,54,93,44,91,45,57,52,46,48,52,51,52,53,44,51,51,46,53,53,50,50,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,49,49,57,52,44,34,98,101,100,115,34,58,52,51,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,49,52,52,52,54,44,50,56,46,55,56,52,57,53,53,93,44,91,45,56,49,46,54,53,56,53,57,55,44,50,56,46,55,54,54,56,55,93,44,91,45,56,49,46,54,53,55,50,54,56,44,50,56,46,51,52,55,48,57,56,93,44,91,45,56,48,46,56,54,50,57,48,56,44,50,56,46,51,52,55,52,56,55,93,44,91,45,56,48,46,56,56,53,57,48,50,44,50,56,46,53,49,48,50,51,56,93,44,91,45,56,48,46,57,56,55,50,53,44,50,56,46,54,49,50,57,57,55,93,44,91,45,56,49,46,51,50,55,56,57,44,50,56,46,54,49,48,50,55,55,93,44,91,45,56,49,46,52,53,57,55,50,56,44,50,56,46,54,52,48,49,57,54,93,44,91,45,56,49,46,52,49,52,52,52,54,44,50,56,46,55,56,52,57,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,117,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,56,54,48,56,52,53,44,51,55,46,55,55,53,53,49,55,93,44,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,44,91,45,49,48,55,46,52,56,50,49,55,57,44,51,55,46,54,51,57,53,48,49,93,44,91,45,49,48,55,46,52,56,50,50,52,53,44,51,55,46,55,54,56,51,53,51,93,44,91,45,49,48,55,46,53,54,56,56,55,53,44,51,55,46,57,54,53,48,49,53,93,44,91,45,49,48,55,46,55,51,56,50,56,51,44,51,55,46,57,48,53,52,51,50,93,44,91,45,49,48,55,46,56,54,48,56,52,53,44,51,55,46,55,55,53,53,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,55,57,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,55,53,54,51,54,44,52,50,46,52,49,54,49,53,56,93,44,91,45,49,49,49,46,56,57,54,55,50,56,44,52,50,46,50,53,54,50,55,54,93,44,91,45,49,49,50,46,49,50,54,49,57,52,44,52,50,46,50,56,53,50,50,57,93,44,91,45,49,49,50,46,49,48,57,52,52,52,44,52,49,46,57,57,55,55,57,52,93,44,91,45,49,49,49,46,53,48,55,56,48,54,44,52,49,46,57,57,57,53,53,50,93,44,91,45,49,49,49,46,53,57,53,55,52,51,44,52,50,46,48,57,52,50,49,93,44,91,45,49,49,49,46,54,50,54,49,48,52,44,52,50,46,50,48,55,53,52,50,93,44,91,45,49,49,49,46,53,54,54,54,50,56,44,52,50,46,50,55,51,53,55,52,93,44,91,45,49,49,49,46,53,57,57,50,50,55,44,52,50,46,52,49,53,51,57,53,93,44,91,45,49,49,49,46,56,55,53,54,51,54,44,52,50,46,52,49,54,49,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,48,50,50,44,34,98,101,100,115,34,58,51,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,51,55,57,50,54,44,51,51,46,56,49,49,57,52,50,93,44,91,45,56,53,46,48,53,48,56,56,57,44,51,51,46,55,49,52,54,51,50,93,44,91,45,56,53,46,51,51,56,50,51,44,51,51,46,54,53,51,49,49,55,93,44,91,45,56,53,46,51,48,52,52,51,57,44,51,51,46,52,56,50,56,56,52,93,44,91,45,56,53,46,50,57,51,56,48,53,44,51,51,46,52,50,56,48,57,56,93,44,91,45,56,53,46,48,49,53,51,53,56,44,51,51,46,52,50,53,53,48,54,93,44,91,45,56,52,46,56,53,48,55,49,51,44,51,51,46,53,49,49,52,53,55,93,44,91,45,56,52,46,56,48,56,57,51,52,44,51,51,46,53,55,52,48,56,53,93,44,91,45,56,52,46,57,48,53,55,56,56,44,51,51,46,53,55,51,51,55,56,93,44,91,45,56,52,46,57,48,49,54,56,56,44,51,51,46,55,56,48,55,48,51,93,44,91,45,56,53,46,48,51,55,57,50,54,44,51,51,46,56,49,49,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,82,105,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,50,57,54,44,34,98,101,100,115,34,58,49,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,53,56,55,49,57,44,51,57,46,53,54,54,52,48,49,93,44,91,45,57,54,46,57,54,49,54,57,51,44,51,57,46,50,50,48,48,55,54,93,44,91,45,57,54,46,56,52,57,56,55,57,44,51,57,46,50,49,57,48,49,50,93,44,91,45,57,54,46,56,53,49,52,48,57,44,51,57,46,48,56,56,49,55,54,93,44,91,45,57,54,46,53,48,48,57,54,50,44,51,57,46,48,55,50,54,56,49,93,44,91,45,57,54,46,53,48,49,49,54,54,44,51,57,46,48,52,51,54,54,54,93,44,91,45,57,54,46,51,57,48,55,57,54,44,51,57,46,48,52,51,50,53,55,93,44,91,45,57,54,46,51,56,57,48,52,54,44,51,57,46,49,55,50,56,55,56,93,44,91,45,57,54,46,53,49,54,55,44,51,57,46,49,55,49,49,51,93,44,91,45,57,54,46,55,49,57,49,53,56,44,51,57,46,51,57,52,51,51,56,93,44,91,45,57,54,46,53,56,48,51,54,50,44,51,57,46,53,54,54,51,51,50,93,44,91,45,57,54,46,56,48,54,53,52,52,44,51,57,46,53,54,54,52,50,51,93,44,91,45,57,54,46,57,53,56,55,49,57,44,51,57,46,53,54,54,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,49,51,34,44,34,78,65,77,69,34,58,34,83,99,104,108,101,105,99,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,54,49,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,53,50,49,54,44,51,49,46,48,56,55,57,57,52,93,44,91,45,49,48,48,46,54,56,56,55,54,52,44,51,49,46,48,56,54,53,55,54,93,44,91,45,49,48,48,46,57,54,50,49,55,54,44,51,49,46,48,56,50,52,57,93,44,91,45,49,48,48,46,57,54,48,53,56,55,44,51,48,46,55,48,54,48,55,49,93,44,91,45,49,48,48,46,49,49,54,50,51,52,44,51,48,46,55,49,48,51,54,54,93,44,91,45,49,48,48,46,49,49,53,50,49,54,44,51,49,46,48,56,55,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,82,117,115,115,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,48,56,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,48,48,56,57,50,44,51,55,46,49,52,50,53,53,51,93,44,91,45,56,50,46,49,52,57,51,55,53,44,51,55,46,48,52,49,54,52,49,93,44,91,45,56,50,46,51,50,55,56,51,44,51,54,46,57,55,48,57,56,50,93,44,91,45,56,50,46,52,48,54,54,51,51,44,51,54,46,56,55,54,51,53,54,93,44,91,45,56,50,46,51,51,50,48,55,56,44,51,54,46,55,48,56,57,54,57,93,44,91,45,56,49,46,57,52,57,50,55,54,44,51,54,46,56,54,52,52,55,51,93,44,91,45,56,49,46,56,51,55,48,57,54,44,51,54,46,57,50,57,48,51,57,93,44,91,45,56,49,46,55,56,48,53,52,53,44,51,54,46,57,53,56,54,50,57,93,44,91,45,56,49,46,57,48,48,56,57,50,44,51,55,46,49,52,50,53,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,108,100,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,55,55,57,44,34,98,101,100,115,34,58,49,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,49,48,53,49,54,44,51,54,46,49,49,49,53,49,49,93,44,91,45,56,49,46,55,51,53,54,55,51,44,51,54,46,48,54,55,53,56,52,93,44,91,45,56,49,46,56,48,55,49,54,50,44,51,53,46,57,54,49,57,53,53,93,44,91,45,56,49,46,53,53,53,57,57,52,44,51,53,46,55,55,55,53,51,56,93,44,91,45,56,49,46,51,54,51,55,57,54,44,51,53,46,55,54,55,56,48,50,93,44,91,45,56,49,46,51,51,52,50,55,50,44,51,53,46,55,57,54,50,56,49,93,44,91,45,56,49,46,51,50,56,51,50,52,44,51,53,46,57,57,54,53,56,51,93,44,91,45,56,49,46,53,52,53,52,56,56,44,51,54,46,49,49,55,52,55,53,93,44,91,45,56,49,46,56,49,48,53,49,54,44,51,54,46,49,49,49,53,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,55,48,53,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,57,55,54,56,52,57,44,52,51,46,57,50,55,51,56,53,93,44,91,45,49,49,49,46,57,51,52,51,53,55,44,52,51,46,55,54,54,49,54,93,44,91,45,49,49,49,46,54,50,54,48,52,51,44,52,51,46,54,50,54,55,53,54,93,44,91,45,49,49,49,46,51,57,57,55,54,53,44,52,51,46,54,50,49,57,55,54,93,44,91,45,49,49,49,46,51,57,56,55,56,49,44,52,51,46,57,50,50,56,57,93,44,91,45,49,49,49,46,53,53,56,56,51,51,44,52,51,46,56,56,51,51,48,53,93,44,91,45,49,49,49,46,57,55,54,56,52,57,44,52,51,46,57,50,55,51,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,87,97,114,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,57,50,56,44,34,98,101,100,115,34,58,51,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,49,54,56,57,51,44,51,56,46,50,52,54,48,55,55,93,44,91,45,56,55,46,52,54,55,50,56,52,44,51,56,46,49,54,53,52,48,51,93,44,91,45,56,55,46,52,53,49,49,57,57,44,51,55,46,57,52,48,57,53,52,93,44,91,45,56,55,46,51,48,50,57,51,50,44,51,55,46,56,57,55,55,53,93,44,91,45,56,55,46,50,54,56,57,57,53,44,51,55,46,56,55,56,48,50,54,93,44,91,45,56,55,46,50,50,53,55,48,49,44,51,55,46,57,55,49,54,54,55,93,44,91,45,56,55,46,48,49,55,52,53,51,44,51,56,46,49,49,56,51,48,49,93,44,91,45,56,55,46,48,49,55,52,57,44,51,56,46,50,48,51,53,56,93,44,91,45,56,55,46,48,55,51,48,54,55,44,51,56,46,50,51,50,53,57,54,93,44,91,45,56,55,46,51,49,54,56,57,51,44,51,56,46,50,52,54,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,53,50,55,55,49,44,51,55,46,49,57,50,52,51,50,93,44,91,45,56,53,46,53,50,54,56,56,49,44,51,55,46,49,48,57,52,53,93,44,91,45,56,53,46,52,53,49,56,51,44,51,54,46,57,51,56,49,51,56,93,44,91,45,56,53,46,50,51,50,48,50,54,44,51,54,46,57,50,53,48,54,57,93,44,91,45,56,53,46,50,48,53,56,51,49,44,51,54,46,57,57,54,56,54,50,93,44,91,45,56,53,46,48,52,51,51,49,54,44,51,55,46,49,56,54,48,50,56,93,44,91,45,56,53,46,48,53,54,56,57,56,44,51,55,46,50,53,55,48,52,49,93,44,91,45,56,53,46,49,54,53,49,55,52,44,51,55,46,51,49,48,51,57,54,93,44,91,45,56,53,46,51,53,50,55,55,49,44,51,55,46,49,57,50,52,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,97,108,108,97,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,50,51,53,49,57,44,51,56,46,55,54,49,56,55,93,44,91,45,56,52,46,57,51,52,53,51,54,44,51,56,46,54,54,50,49,51,93,44,91,45,56,52,46,55,56,53,55,56,56,44,51,56,46,55,50,48,52,53,57,93,44,91,45,56,52,46,54,54,48,49,48,55,44,51,56,46,55,55,55,50,57,51,93,44,91,45,56,52,46,55,57,53,48,51,57,44,51,56,46,56,53,55,50,55,93,44,91,45,56,53,46,48,50,51,53,49,57,44,51,56,46,55,54,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,54,56,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,48,53,51,52,54,44,51,56,46,53,56,50,48,51,57,93,44,91,45,56,52,46,52,55,54,50,57,57,44,51,56,46,53,52,50,55,50,51,93,44,91,45,56,52,46,53,53,55,51,55,53,44,51,56,46,52,57,50,57,49,55,93,44,91,45,56,52,46,52,53,57,57,48,54,44,51,56,46,51,55,56,57,57,53,93,44,91,45,56,52,46,52,52,50,54,54,49,44,51,56,46,50,56,51,50,51,54,93,44,91,45,56,52,46,51,52,53,52,55,54,44,51,56,46,50,56,53,48,57,57,93,44,91,45,56,52,46,49,57,52,48,53,44,51,56,46,51,55,49,55,53,93,44,91,45,56,52,46,49,48,50,49,44,51,56,46,52,53,57,51,55,57,93,44,91,45,56,52,46,49,54,50,48,51,49,44,51,56,46,53,53,52,49,50,53,93,44,91,45,56,52,46,50,48,53,51,52,54,44,51,56,46,53,56,50,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,83,97,103,97,100,97,104,111,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,50,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,48,48,53,52,55,49,44,52,52,46,49,50,52,53,49,57,93,44,91,45,55,48,46,48,51,52,50,51,56,44,52,51,46,57,55,53,54,54,49,93,44,91,45,54,57,46,56,57,51,50,51,50,44,52,51,46,56,55,56,53,49,56,93,44,91,45,54,57,46,56,56,49,56,57,53,44,52,51,46,54,51,54,52,54,54,93,44,91,45,54,57,46,54,54,52,55,52,53,44,52,51,46,55,49,49,55,52,56,93,44,91,45,54,57,46,55,48,48,48,57,55,44,52,52,46,48,48,54,54,56,53,93,44,91,45,54,57,46,56,49,51,53,52,57,44,52,52,46,48,50,54,48,49,49,93,44,91,45,54,57,46,55,53,56,50,48,56,44,52,52,46,49,51,57,51,51,52,93,44,91,45,55,48,46,48,48,53,52,55,49,44,52,52,46,49,50,52,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,83,119,101,101,116,32,71,114,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,50,56,49,57,49,54,44,52,54,46,49,56,52,51,57,55,93,44,91,45,49,49,48,46,50,57,50,54,54,50,44,52,53,46,55,56,53,48,53,55,93,44,91,45,49,49,48,46,50,50,48,57,48,56,44,52,53,46,55,56,52,57,55,51,93,44,91,45,49,49,48,46,50,50,56,48,53,50,44,52,53,46,49,55,50,49,50,57,93,44,91,45,49,49,48,46,48,54,52,53,49,56,44,52,53,46,49,55,50,49,50,57,93,44,91,45,49,49,48,46,48,54,52,53,56,49,44,52,53,46,51,52,56,55,53,53,93,44,91,45,49,48,57,46,57,51,49,57,56,52,44,52,53,46,51,52,56,55,53,53,93,44,91,45,49,48,57,46,57,51,50,48,50,53,44,52,53,46,53,50,50,52,53,54,93,44,91,45,49,48,57,46,54,56,53,51,56,53,44,52,53,46,54,48,57,48,50,50,93,44,91,45,49,48,57,46,53,54,50,48,55,44,52,53,46,54,48,57,49,49,57,93,44,91,45,49,48,57,46,53,54,51,57,48,55,44,52,53,46,55,56,51,52,55,49,93,44,91,45,49,48,57,46,53,48,54,54,48,52,44,52,53,46,57,53,57,49,49,50,93,44,91,45,49,48,57,46,52,49,55,49,53,56,44,52,54,46,48,52,52,55,53,57,93,44,91,45,49,48,57,46,54,48,53,49,53,51,44,52,54,46,48,52,52,57,57,52,93,44,91,45,49,48,57,46,54,53,51,56,55,49,44,52,54,46,50,49,57,52,48,52,93,44,91,45,49,49,48,46,50,56,49,57,55,49,44,52,54,46,50,50,48,54,48,53,93,44,91,45,49,49,48,46,50,56,49,57,49,54,44,52,54,46,49,56,52,51,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,71,114,97,121,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,53,54,48,44,34,98,101,100,115,34,58,54,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,52,52,54,49,49,44,51,51,46,57,52,57,50,49,55,93,44,91,45,57,54,46,57,52,51,56,54,44,51,51,46,52,49,54,52,49,93,44,91,45,57,54,46,56,51,52,49,49,44,51,51,46,52,48,53,52,57,56,93,44,91,45,57,54,46,51,56,52,54,48,50,44,51,51,46,51,57,55,56,50,54,93,44,91,45,57,54,46,51,55,57,52,53,50,44,51,51,46,55,50,53,55,54,52,93,44,91,45,57,54,46,53,48,48,57,56,52,44,51,51,46,55,55,50,56,48,49,93,44,91,45,57,54,46,53,56,56,53,48,50,44,51,51,46,56,57,52,57,56,51,93,44,91,45,57,54,46,54,57,48,55,48,56,44,51,51,46,56,52,57,57,53,57,93,44,91,45,57,54,46,56,54,54,52,51,56,44,51,51,46,56,53,51,49,52,57,93,44,91,45,57,54,46,57,51,52,56,52,44,51,51,46,57,53,52,52,53,51,93,44,91,45,57,54,46,57,52,52,54,49,49,44,51,51,46,57,52,57,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,49,52,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,48,57,49,44,51,57,46,57,54,50,50,93,44,91,45,56,48,46,53,49,57,51,52,50,44,51,57,46,55,50,49,52,48,51,93,44,91,45,56,48,46,52,50,49,51,56,56,44,51,57,46,55,50,49,49,56,57,93,44,91,45,55,57,46,57,49,54,50,56,44,51,57,46,55,50,48,55,55,55,93,44,91,45,55,57,46,57,50,53,53,57,55,44,51,57,46,57,50,52,55,57,53,93,44,91,45,55,57,46,57,57,56,48,49,52,44,51,57,46,57,56,51,51,50,50,93,44,91,45,56,48,46,50,56,55,52,50,49,44,52,48,46,48,49,57,50,48,54,93,44,91,45,56,48,46,53,49,57,48,57,49,44,51,57,46,57,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,56,56,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,56,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,119,101,115,116,32,65,114,99,116,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,51,52,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,53,46,51,49,56,55,52,52,44,54,56,46,48,48,48,48,51,50,93,44,91,45,49,53,53,46,51,49,56,55,52,56,44,54,56,46,48,51,52,57,52,50,93,44,91,45,49,53,54,46,50,51,54,56,49,55,44,54,56,46,48,51,52,57,50,54,93,44,91,45,49,53,54,46,50,51,54,56,51,49,44,54,56,46,49,50,49,52,57,56,93,44,91,45,49,53,55,46,49,53,52,57,49,44,54,56,46,49,50,49,52,56,51,93,44,91,45,49,53,55,46,49,53,52,57,50,52,44,54,56,46,50,48,56,48,53,52,93,44,91,45,49,53,56,46,52,53,55,56,51,54,44,54,56,46,50,48,56,48,49,54,93,44,91,45,49,53,57,46,54,57,51,52,55,55,44,54,56,46,50,48,55,57,57,50,93,44,91,45,49,53,57,46,54,57,51,52,56,55,44,54,56,46,50,57,52,53,54,52,93,44,91,45,49,54,48,46,49,53,57,52,53,50,44,54,56,46,50,57,52,53,53,51,93,44,91,45,49,54,48,46,49,53,57,52,52,44,54,56,46,50,48,55,57,56,50,93,44,91,45,49,54,49,46,48,57,49,51,53,49,44,54,56,46,50,48,55,57,54,49,93,44,91,45,49,54,49,46,48,57,49,51,54,52,44,54,56,46,50,57,52,53,51,50,93,44,91,45,49,54,49,46,53,53,55,51,50,44,54,56,46,50,57,52,53,50,49,93,44,91,45,49,54,49,46,53,53,55,51,50,56,44,54,56,46,50,48,55,57,52,57,93,44,91,45,49,54,50,46,48,50,51,50,54,49,44,54,56,46,50,48,55,57,52,93,44,91,45,49,54,50,46,48,50,51,50,55,51,44,54,56,46,50,57,52,53,49,49,93,44,91,45,49,54,50,46,55,50,50,50,48,50,44,54,56,46,50,57,52,52,57,54,93,44,91,45,49,54,50,46,55,50,50,49,57,44,54,56,46,50,48,55,57,50,54,93,44,91,45,49,54,52,46,52,57,57,52,54,51,44,54,56,46,50,48,55,56,57,93,44,91,45,49,54,52,46,52,57,57,52,51,55,44,54,56,46,48,51,52,55,52,56,93,44,91,45,49,54,53,46,53,57,54,48,52,54,44,54,56,46,48,51,52,55,50,55,93,44,91,45,49,54,53,46,52,57,57,52,53,51,44,54,56,46,48,49,56,55,56,50,93,44,91,45,49,54,52,46,54,54,52,57,50,49,44,54,55,46,54,57,56,50,49,54,93,44,91,45,49,54,52,46,49,55,53,52,50,57,44,54,55,46,53,52,55,53,57,57,93,44,91,45,49,54,52,46,48,48,52,53,49,44,54,55,46,51,57,55,56,48,56,93,44,91,45,49,54,51,46,56,56,50,53,51,52,44,54,55,46,50,49,52,57,55,54,93,44,91,45,49,54,51,46,57,57,49,50,51,44,54,55,46,49,52,55,56,56,51,93,44,91,45,49,54,51,46,55,56,49,53,50,52,44,54,55,46,48,54,57,55,54,93,44,91,45,49,54,51,46,48,52,57,52,55,49,44,54,54,46,57,56,54,54,49,49,93,44,91,45,49,54,50,46,56,51,50,48,51,50,44,54,54,46,57,50,54,56,49,51,93,44,91,45,49,54,51,46,54,50,54,50,49,53,44,54,54,46,54,50,52,49,55,52,93,44,91,45,49,54,51,46,56,48,53,48,57,51,44,54,54,46,54,52,49,50,56,54,93,44,91,45,49,54,52,46,52,54,49,52,52,57,44,54,54,46,54,50,54,53,48,57,93,44,91,45,49,54,52,46,51,49,56,57,51,54,44,54,54,46,52,55,54,51,49,57,93,44,91,45,49,54,52,46,51,49,56,57,49,51,44,54,54,46,49,50,57,57,52,52,93,44,91,45,49,54,52,46,50,52,52,49,57,49,44,54,54,46,49,50,57,57,52,54,93,44,91,45,49,54,52,46,50,52,52,49,50,55,44,54,53,46,55,56,51,53,53,51,93,44,91,45,49,54,51,46,57,54,51,53,49,54,44,54,53,46,55,56,51,53,54,49,93,44,91,45,49,54,51,46,57,54,51,52,57,56,44,54,53,46,54,49,48,51,54,51,93,44,91,45,49,54,51,46,55,53,53,52,48,55,44,54,53,46,54,49,48,51,54,55,93,44,91,45,49,54,51,46,55,53,53,51,57,49,44,54,53,46,52,51,55,49,54,53,93,44,91,45,49,54,49,46,53,52,54,56,57,50,44,54,53,46,52,51,55,50,48,51,93,44,91,45,49,53,57,46,56,48,49,54,57,50,44,54,53,46,52,51,55,50,51,49,93,44,91,45,49,53,57,46,53,57,51,53,48,54,44,54,53,46,53,50,51,56,51,53,93,44,91,45,49,53,57,46,54,48,52,56,49,51,44,54,53,46,57,53,54,56,51,93,44,91,45,49,53,56,46,57,55,50,49,55,53,44,54,53,46,57,53,54,56,52,57,93,44,91,45,49,53,56,46,57,55,50,49,56,53,44,54,54,46,49,51,48,48,50,55,93,44,91,45,49,53,55,46,57,48,54,50,57,53,44,54,54,46,49,51,48,48,52,57,93,44,91,45,49,53,55,46,57,48,54,51,49,44,54,54,46,52,55,54,52,50,52,93,44,91,45,49,53,55,46,48,53,49,50,56,52,44,54,54,46,52,55,54,52,51,56,93,44,91,45,49,53,55,46,48,53,49,50,54,54,44,54,54,46,51,48,51,50,53,52,93,44,91,45,49,53,54,46,54,50,51,55,53,55,44,54,54,46,51,48,51,50,53,57,93,44,91,45,49,53,54,46,54,50,51,55,55,44,54,54,46,52,55,54,52,52,50,93,44,91,45,49,53,54,46,49,57,54,50,50,52,44,54,54,46,52,55,54,53,56,50,93,44,91,45,49,53,53,46,57,56,50,53,48,52,44,54,54,46,51,56,57,56,54,93,44,91,45,49,53,53,46,57,56,50,52,57,57,44,54,54,46,51,48,51,50,54,56,93,44,91,45,49,53,53,46,53,53,52,57,57,51,44,54,54,46,51,48,51,50,55,52,93,44,91,45,49,53,53,46,53,49,48,53,56,53,44,54,54,46,53,54,51,48,53,49,93,44,91,45,49,53,52,46,56,54,48,52,51,49,44,54,54,46,53,54,51,48,54,52,93,44,91,45,49,53,52,46,56,54,48,52,52,54,44,54,54,46,55,51,54,50,52,50,93,44,91,45,49,53,52,46,50,49,48,51,48,50,44,54,54,46,55,51,54,50,53,53,93,44,91,45,49,53,52,46,49,52,54,50,50,49,44,54,54,46,56,50,50,56,52,51,93,44,91,45,49,53,52,46,49,52,54,51,49,52,44,54,55,46,49,54,57,49,55,56,93,44,91,45,49,53,52,46,51,48,51,49,49,44,54,55,46,50,53,53,55,53,57,93,44,91,45,49,53,52,46,55,52,56,57,48,52,44,54,55,46,50,53,53,55,53,51,93,44,91,45,49,53,52,46,55,52,56,57,51,57,44,54,55,46,53,49,53,52,57,53,93,44,91,45,49,53,53,46,51,54,56,57,57,57,44,54,55,46,55,55,53,50,49,54,93,44,91,45,49,53,53,46,51,49,56,55,52,52,44,54,56,46,48,48,48,48,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,69,108,108,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,56,55,56,44,34,98,101,100,115,34,58,49,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,57,49,55,55,54,44,51,57,46,49,51,50,51,53,55,93,44,91,45,57,57,46,53,57,56,51,50,51,44,51,56,46,54,57,54,53,49,52,93,44,91,45,57,57,46,53,56,53,48,56,55,44,51,56,46,54,57,54,53,51,55,93,44,91,45,57,57,46,48,52,50,54,50,54,44,51,56,46,54,57,54,56,48,55,93,44,91,45,57,57,46,48,51,55,53,44,51,57,46,49,51,51,49,50,49,93,44,91,45,57,57,46,48,52,55,54,56,55,44,51,57,46,49,51,51,48,49,52,93,44,91,45,57,57,46,53,57,49,55,55,54,44,51,57,46,49,51,50,51,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,56,55,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,49,53,55,48,57,44,51,51,46,48,48,54,56,50,52,93,44,91,45,56,55,46,56,51,49,53,56,54,44,51,50,46,56,54,52,56,54,54,93,44,91,45,56,55,46,55,56,54,53,55,49,44,51,50,46,54,56,50,52,56,49,93,44,91,45,56,55,46,56,49,50,53,53,57,44,51,50,46,53,50,52,53,54,93,44,91,45,56,55,46,55,50,56,55,52,52,44,51,50,46,52,56,48,57,49,56,93,44,91,45,56,55,46,53,50,52,52,56,53,44,51,50,46,52,56,50,48,50,56,93,44,91,45,56,55,46,52,55,51,57,49,53,44,51,50,46,54,53,53,56,54,55,93,44,91,45,56,55,46,52,55,50,49,55,52,44,51,50,46,56,51,48,54,50,93,44,91,45,56,55,46,52,50,49,50,44,51,50,46,56,55,52,53,48,56,93,44,91,45,56,55,46,52,50,49,57,51,54,44,51,51,46,48,48,51,51,55,57,93,44,91,45,56,55,46,55,49,53,55,48,57,44,51,51,46,48,48,54,56,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,50,49,50,44,51,50,46,56,55,52,53,48,56,93,44,91,45,56,55,46,52,55,50,49,55,52,44,51,50,46,56,51,48,54,50,93,44,91,45,56,55,46,52,55,51,57,49,53,44,51,50,46,54,53,53,56,54,55,93,44,91,45,56,55,46,53,50,52,52,56,53,44,51,50,46,52,56,50,48,50,56,93,44,91,45,56,55,46,52,55,51,48,56,44,51,50,46,51,48,55,54,49,52,93,44,91,45,56,55,46,52,50,51,49,53,51,44,51,50,46,52,56,50,57,54,53,93,44,91,45,56,55,46,49,49,50,51,54,50,44,51,50,46,52,56,56,54,53,93,44,91,45,56,55,46,48,49,55,55,54,50,44,51,50,46,55,50,57,53,51,50,93,44,91,45,56,55,46,48,49,57,49,53,55,44,51,50,46,56,51,55,48,51,52,93,44,91,45,56,55,46,51,49,57,49,56,52,44,51,50,46,56,51,49,53,50,50,93,44,91,45,56,55,46,52,50,49,50,44,51,50,46,56,55,52,53,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,111,108,98,101,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,52,57,53,44,34,98,101,100,115,34,58,51,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,50,54,53,49,44,51,52,46,56,48,48,48,50,50,93,44,91,45,56,55,46,53,50,52,51,54,51,44,51,52,46,56,51,50,51,56,52,93,44,91,45,56,55,46,56,51,53,56,51,51,44,51,52,46,55,52,49,50,51,57,93,44,91,45,56,55,46,57,55,51,50,50,50,44,51,52,46,56,56,50,53,53,93,44,91,45,56,56,46,48,57,55,56,56,56,44,51,52,46,56,57,50,50,48,50,93,44,91,45,56,56,46,49,51,57,57,56,56,44,51,52,46,53,56,49,55,48,51,93,44,91,45,56,55,46,53,50,57,54,54,55,44,51,52,46,53,54,55,48,56,49,93,44,91,45,56,55,46,52,51,51,48,54,44,51,52,46,55,49,55,52,56,53,93,44,91,45,56,55,46,52,50,54,53,49,44,51,52,46,56,48,48,48,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,80,114,97,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,56,50,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,49,51,53,53,44,51,55,46,55,51,50,57,55,93,44,91,45,57,57,46,48,49,50,53,57,56,44,51,55,46,52,55,48,52,50,49,93,44,91,45,57,56,46,52,54,52,54,54,51,44,51,55,46,52,55,49,48,49,51,93,44,91,45,57,56,46,52,54,52,56,48,52,44,51,55,46,55,51,50,54,55,53,93,44,91,45,57,56,46,52,55,50,50,53,55,44,51,55,46,56,50,52,52,57,55,93,44,91,45,57,57,46,48,49,51,51,49,56,44,51,55,46,56,50,53,51,51,54,93,44,91,45,57,57,46,48,49,51,53,53,44,51,55,46,55,51,50,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,111,117,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,52,52,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,57,52,48,53,44,51,56,46,51,55,49,55,53,93,44,91,45,56,52,46,51,52,53,52,55,54,44,51,56,46,50,56,53,48,57,57,93,44,91,45,56,52,46,52,52,50,54,54,49,44,51,56,46,50,56,51,50,51,54,93,44,91,45,56,52,46,52,48,49,56,52,55,44,51,56,46,50,48,55,56,56,57,93,44,91,45,56,52,46,51,56,48,55,56,56,44,51,56,46,49,49,51,57,54,93,44,91,45,56,52,46,50,56,54,52,54,49,44,51,56,46,48,54,55,48,50,56,93,44,91,45,56,52,46,48,56,48,53,50,55,44,51,56,46,49,49,53,49,49,56,93,44,91,45,56,51,46,57,55,55,57,50,52,44,51,56,46,49,57,50,49,49,56,93,44,91,45,56,52,46,48,54,50,54,57,49,44,51,56,46,50,51,53,50,48,51,93,44,91,45,56,52,46,49,57,52,48,53,44,51,56,46,51,55,49,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,82,117,116,104,101,114,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,55,49,50,56,44,34,98,101,100,115,34,58,56,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,49,56,56,57,50,44,51,53,46,57,54,56,50,50,52,93,44,91,45,56,54,46,54,49,51,51,50,56,44,51,53,46,55,57,48,51,51,49,93,44,91,45,56,54,46,54,56,54,49,57,51,44,51,53,46,55,49,48,48,53,49,93,44,91,45,56,54,46,54,51,57,52,51,54,44,51,53,46,54,56,53,57,93,44,91,45,56,54,46,53,52,51,49,49,54,44,51,53,46,54,57,55,54,49,55,93,44,91,45,56,54,46,52,49,51,54,55,56,44,51,53,46,54,50,51,49,55,55,93,44,91,45,56,54,46,50,52,53,49,54,53,44,51,53,46,54,51,49,57,49,51,93,44,91,45,56,54,46,50,48,55,49,52,55,44,51,53,46,55,48,51,55,57,93,44,91,45,56,54,46,49,53,51,50,49,52,44,51,53,46,57,53,52,51,57,57,93,44,91,45,56,54,46,51,50,54,50,53,50,44,51,53,46,57,56,53,48,48,56,93,44,91,45,56,54,46,53,49,53,53,56,57,44,51,54,46,49,48,48,54,49,93,44,91,45,56,54,46,54,49,56,56,57,50,44,51,53,46,57,54,56,50,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,67,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,56,52,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,49,50,54,48,55,44,51,49,46,51,50,55,52,48,53,93,44,91,45,56,51,46,53,48,57,56,49,44,51,49,46,50,48,54,49,56,49,93,44,91,45,56,51,46,53,55,52,56,53,55,44,51,49,46,48,55,56,49,51,53,93,44,91,45,56,51,46,52,55,53,54,49,55,44,51,49,46,48,51,49,57,54,52,93,44,91,45,56,51,46,50,57,53,48,53,50,44,51,49,46,48,50,55,50,55,56,93,44,91,45,56,51,46,51,51,53,57,52,57,44,51,49,46,50,52,52,53,55,57,93,44,91,45,56,51,46,52,51,52,52,57,50,44,51,49,46,51,53,48,51,54,49,93,44,91,45,56,51,46,53,49,50,54,48,55,44,51,49,46,51,50,55,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,76,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,52,55,50,44,51,56,46,54,57,56,49,54,53,93,44,91,45,49,48,48,46,54,56,56,48,48,54,44,51,56,46,55,48,48,48,50,49,93,44,91,45,49,48,48,46,54,56,52,54,57,57,44,51,56,46,50,54,52,49,51,55,93,44,91,45,49,48,48,46,50,52,52,51,57,51,44,51,56,46,50,54,50,50,57,93,44,91,45,49,48,48,46,50,52,55,50,44,51,56,46,54,57,56,49,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,97,114,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,52,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,52,49,49,49,54,44,51,54,46,57,57,57,54,49,93,44,91,45,49,48,48,46,48,48,50,53,54,51,44,51,55,46,48,48,49,55,48,54,93,44,91,45,49,48,48,46,48,48,51,49,54,44,51,54,46,53,57,51,50,53,93,44,91,45,57,57,46,54,48,53,54,51,52,44,51,54,46,53,57,50,55,53,52,93,44,91,45,57,57,46,50,57,53,49,57,51,44,51,54,46,53,57,53,48,51,49,93,44,91,45,57,57,46,50,57,53,49,56,54,44,51,54,46,56,49,57,53,54,54,93,44,91,45,57,57,46,52,53,54,50,48,51,44,51,54,46,57,57,57,52,55,49,93,44,91,45,57,57,46,53,52,49,49,49,54,44,51,54,46,57,57,57,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,80,105,97,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,50,55,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,52,53,49,54,52,44,52,48,46,48,53,53,49,57,49,93,44,91,45,56,56,46,55,52,53,54,55,49,44,51,57,46,55,57,50,49,52,54,93,44,91,45,56,56,46,52,55,51,49,56,50,44,51,57,46,55,57,49,56,51,55,93,44,91,45,56,56,46,52,54,50,50,48,55,44,51,57,46,56,55,57,48,57,50,93,44,91,45,56,56,46,52,54,48,52,49,56,44,52,48,46,50,56,49,57,51,53,93,44,91,45,56,56,46,53,55,52,56,56,53,44,52,48,46,50,56,49,53,48,49,93,44,91,45,56,56,46,55,52,53,49,54,52,44,52,48,46,48,53,53,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,67,114,111,115,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,54,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,44,91,45,49,48,49,46,53,54,51,53,56,44,51,51,46,56,51,48,52,53,49,93,44,91,45,49,48,49,46,53,53,54,56,56,52,44,51,51,46,51,57,52,55,54,93,44,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,44,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,70,97,106,97,114,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,48,48,49,44,34,98,101,100,115,34,58,50,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,54,52,54,48,56,51,44,49,56,46,52,52,50,50,50,93,44,91,45,54,53,46,54,56,53,57,50,44,49,56,46,51,50,57,57,57,49,93,44,91,45,54,53,46,55,53,51,53,57,49,44,49,56,46,50,57,54,55,53,53,93,44,91,45,54,53,46,54,50,52,54,48,53,44,49,56,46,50,56,55,55,52,53,93,44,91,45,54,53,46,52,54,57,49,51,50,44,49,56,46,51,57,54,52,49,93,44,91,45,54,53,46,54,52,54,48,56,51,44,49,56,46,52,52,50,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,50,54,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,55,49,56,53,50,44,51,50,46,57,57,53,56,54,93,44,91,45,56,56,46,50,48,55,51,49,54,44,51,50,46,57,50,52,55,56,50,93,44,91,45,56,56,46,49,51,50,54,56,53,44,51,50,46,56,51,50,56,53,51,93,44,91,45,56,56,46,48,53,53,48,48,52,44,51,50,46,54,52,54,52,56,50,93,44,91,45,56,55,46,57,50,56,54,56,57,44,51,50,46,54,51,50,50,56,52,93,44,91,45,56,55,46,56,53,51,52,50,44,51,50,46,53,51,50,48,56,54,93,44,91,45,56,55,46,56,49,50,53,53,57,44,51,50,46,53,50,52,53,54,93,44,91,45,56,55,46,55,56,54,53,55,49,44,51,50,46,54,56,50,52,56,49,93,44,91,45,56,55,46,56,51,49,53,56,54,44,51,50,46,56,54,52,56,54,54,93,44,91,45,56,55,46,55,49,53,55,48,57,44,51,51,46,48,48,54,56,50,52,93,44,91,45,56,55,46,56,51,50,50,51,51,44,51,51,46,48,49,55,50,53,56,93,44,91,45,56,55,46,56,51,55,53,50,49,44,51,51,46,49,53,51,54,51,55,93,44,91,45,56,56,46,49,55,49,56,53,50,44,51,50,46,57,57,53,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,54,49,55,51,52,53,44,52,52,46,53,53,48,51,57,50,93,44,91,45,49,49,49,46,56,54,51,54,53,55,44,52,52,46,53,53,49,50,52,52,93,44,91,45,49,49,50,46,48,57,54,52,56,52,44,52,52,46,53,50,50,57,57,50,93,44,91,45,49,49,50,46,50,56,56,54,55,51,44,52,52,46,53,54,55,57,49,93,44,91,45,49,49,50,46,52,55,51,52,49,57,44,52,52,46,52,55,57,51,53,57,93,44,91,45,49,49,50,46,55,49,55,57,51,44,52,52,46,53,48,52,50,55,51,93,44,91,45,49,49,50,46,56,49,51,56,48,53,44,52,52,46,51,55,54,52,53,53,93,44,91,45,49,49,50,46,56,49,51,55,57,50,44,52,52,46,50,51,48,50,56,49,93,44,91,45,49,49,50,46,57,57,53,48,57,49,44,52,52,46,50,51,52,49,50,54,93,44,91,45,49,49,50,46,57,57,52,51,50,51,44,52,51,46,57,55,50,51,54,50,93,44,91,45,49,49,50,46,54,57,53,50,52,50,44,52,51,46,57,55,49,57,52,49,93,44,91,45,49,49,50,46,54,57,52,55,52,52,44,52,52,46,48,53,56,52,54,52,93,44,91,45,49,49,50,46,49,53,53,57,51,53,44,52,52,46,48,53,55,55,56,93,44,91,45,49,49,50,46,48,51,51,54,54,52,44,52,52,46,49,52,52,48,52,57,93,44,91,45,49,49,49,46,56,53,55,56,53,49,44,52,52,46,49,56,55,55,53,57,93,44,91,45,49,49,49,46,56,53,50,50,55,54,44,52,52,46,51,49,54,57,57,54,93,44,91,45,49,49,49,46,55,57,49,54,50,52,44,52,52,46,52,48,49,54,49,93,44,91,45,49,49,49,46,54,49,55,52,51,55,44,52,52,46,52,48,49,50,53,52,93,44,91,45,49,49,49,46,54,49,55,51,52,53,44,52,52,46,53,53,48,51,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,75,111,115,115,117,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,52,51,49,51,55,44,52,51,46,50,53,53,48,49,52,93,44,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,44,91,45,57,51,46,57,55,49,50,51,56,44,52,50,46,57,48,55,55,54,50,93,44,91,45,57,51,46,57,55,48,52,49,53,44,52,51,46,50,53,53,51,53,56,93,44,91,45,57,51,46,57,55,48,55,54,50,44,52,51,46,52,57,57,56,56,54,93,44,91,45,57,52,46,50,52,55,57,54,56,44,52,51,46,53,48,48,49,51,51,93,44,91,45,57,52,46,52,52,50,56,53,44,52,51,46,53,48,48,52,50,50,93,44,91,45,57,52,46,52,52,51,49,51,55,44,52,51,46,50,53,53,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,89,97,98,117,99,111,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,49,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,50,54,50,50,55,44,49,56,46,49,49,57,57,54,51,93,44,91,45,54,54,46,48,49,48,50,52,53,44,49,56,46,48,55,53,53,54,53,93,44,91,45,54,53,46,57,56,56,53,50,51,44,49,56,46,48,53,56,57,52,49,93,44,91,45,54,53,46,56,54,55,56,48,50,44,49,56,46,48,50,54,48,48,55,93,44,91,45,54,53,46,56,49,54,52,52,57,44,49,55,46,57,54,53,53,48,52,93,44,91,45,54,53,46,55,51,57,49,49,50,44,49,56,46,48,55,48,55,55,56,93,44,91,45,54,53,46,56,55,55,54,49,53,44,49,56,46,49,49,56,49,54,55,93,44,91,45,54,53,46,57,50,54,50,50,55,44,49,56,46,49,49,57,57,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,117,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,57,51,56,57,53,55,44,52,56,46,57,57,57,51,51,93,44,91,45,49,48,50,46,57,51,57,57,51,50,44,52,56,46,55,50,48,52,54,57,93,44,91,45,49,48,50,46,56,56,53,55,55,53,44,52,56,46,54,51,51,50,57,56,93,44,91,45,49,48,50,46,56,56,53,55,54,51,44,52,56,46,53,52,54,51,57,93,44,91,45,49,48,50,46,50,51,51,56,57,50,44,52,56,46,53,52,54,51,51,57,93,44,91,45,49,48,50,46,50,51,51,54,44,52,56,46,55,50,48,50,57,93,44,91,45,49,48,50,46,49,53,50,49,54,52,44,52,56,46,56,48,55,50,93,44,91,45,49,48,50,46,48,50,49,54,52,51,44,52,56,46,56,48,55,49,48,56,93,44,91,45,49,48,50,46,48,50,49,49,52,52,44,52,56,46,57,57,57,48,49,53,93,44,91,45,49,48,50,46,57,51,56,57,53,55,44,52,56,46,57,57,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,68,117,114,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,54,52,53,55,44,34,98,101,100,115,34,58,49,52,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,53,48,53,57,55,44,51,54,46,50,51,57,51,50,93,44,91,45,55,57,46,48,49,54,51,48,53,44,51,53,46,56,54,51,50,49,93,44,91,45,55,56,46,57,48,54,48,55,49,44,51,53,46,56,54,56,48,57,54,93,44,91,45,55,56,46,56,50,57,57,54,53,44,51,53,46,56,54,54,57,55,56,93,44,91,45,55,56,46,54,57,57,51,49,54,44,51,54,46,48,49,49,52,52,56,93,44,91,45,55,56,46,55,53,49,50,55,51,44,51,54,46,48,55,48,56,51,52,93,44,91,45,55,56,46,56,48,52,54,57,44,51,54,46,48,57,52,53,53,49,93,44,91,45,55,56,46,56,48,50,51,51,53,44,51,54,46,50,51,53,55,57,52,93,44,91,45,55,56,46,57,53,48,53,57,55,44,51,54,46,50,51,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,49,51,57,48,48,56,44,52,49,46,56,54,54,50,55,55,93,44,91,45,57,54,46,48,54,52,56,57,55,44,52,49,46,55,57,49,54,55,51,93,44,91,45,57,54,46,49,50,50,54,48,52,44,52,49,46,54,56,51,48,52,93,44,91,45,57,54,46,48,53,55,51,51,49,44,52,49,46,53,49,49,48,53,49,93,44,91,45,57,53,46,57,57,54,49,57,52,44,52,49,46,53,48,54,57,54,93,44,91,45,57,53,46,52,57,55,57,57,55,44,52,49,46,53,48,54,48,55,52,93,44,91,45,57,53,46,53,53,56,49,52,51,44,52,49,46,54,48,50,51,56,51,93,44,91,45,57,53,46,53,53,55,50,55,55,44,52,49,46,56,54,51,52,52,57,93,44,91,45,57,53,46,54,55,50,55,55,49,44,52,49,46,56,54,51,49,52,55,93,44,91,45,57,54,46,49,51,57,48,48,56,44,52,49,46,56,54,54,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,75,101,121,97,32,80,97,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,57,56,52,55,56,44,52,50,46,56,52,54,49,48,50,93,44,91,45,49,48,48,46,49,51,51,57,55,56,44,52,50,46,56,48,55,56,49,57,93,44,91,45,57,57,46,54,55,55,54,56,52,44,52,50,46,55,51,48,57,48,51,93,44,91,45,57,57,46,53,51,55,52,57,49,44,52,50,46,55,49,55,54,50,54,93,44,91,45,57,57,46,50,53,55,48,51,57,44,52,50,46,56,48,52,50,57,54,93,44,91,45,57,57,46,50,53,52,52,53,53,44,52,50,46,57,57,56,48,55,52,93,44,91,45,57,57,46,53,51,52,48,52,57,44,52,50,46,57,57,56,48,51,51,93,44,91,45,49,48,48,46,49,57,56,52,49,51,44,52,50,46,57,57,56,54,55,52,93,44,91,45,49,48,48,46,49,57,56,52,55,56,44,52,50,46,56,52,54,49,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,55,53,55,44,34,98,101,100,115,34,58,50,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,52,51,48,50,52,44,52,50,46,53,53,56,56,52,51,93,44,91,45,57,52,46,51,57,55,54,55,49,44,52,50,46,52,55,51,51,93,44,91,45,57,52,46,51,57,55,53,50,54,44,52,50,46,50,48,57,49,54,49,93,44,91,45,57,52,46,49,54,52,55,48,52,44,52,50,46,50,48,57,57,50,93,44,91,45,57,51,46,57,51,49,53,56,44,52,50,46,50,48,57,57,48,56,93,44,91,45,57,51,46,57,51,49,54,56,52,44,52,50,46,52,55,50,48,49,49,93,44,91,45,57,51,46,57,55,49,53,56,51,44,52,50,46,53,53,56,49,51,57,93,44,91,45,57,51,46,57,55,49,55,49,52,44,52,50,46,54,52,52,55,48,55,93,44,91,45,57,52,46,52,52,51,48,56,51,44,52,50,46,54,52,53,49,54,52,93,44,91,45,57,52,46,52,52,51,48,50,52,44,52,50,46,53,53,56,56,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,80,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,49,48,55,51,56,44,51,55,46,51,51,55,48,56,49,93,44,91,45,56,56,46,52,57,48,51,51,44,51,55,46,49,53,57,52,54,50,93,44,91,45,56,56,46,52,57,48,52,49,49,44,51,55,46,48,54,56,53,55,57,93,44,91,45,56,56,46,52,50,52,54,48,51,44,51,55,46,49,53,49,55,54,52,93,44,91,45,56,56,46,53,48,55,48,54,50,44,51,55,46,50,53,57,54,56,57,93,44,91,45,56,56,46,52,55,52,48,57,44,51,55,46,51,57,49,56,54,51,93,44,91,45,56,56,46,52,49,53,52,48,54,44,51,55,46,52,50,51,57,55,50,93,44,91,45,56,56,46,52,49,50,54,57,55,44,51,55,46,53,57,57,54,50,53,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,48,53,57,93,44,91,45,56,56,46,55,49,48,55,51,56,44,51,55,46,51,51,55,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,83,109,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,51,54,56,48,51,44,51,54,46,50,57,53,56,53,57,93,44,91,45,56,54,46,48,53,57,55,48,54,44,51,54,46,48,56,54,48,50,52,93,44,91,45,56,53,46,56,48,55,52,49,53,44,51,54,46,49,51,49,53,56,50,93,44,91,45,56,53,46,55,56,48,49,52,56,44,51,54,46,50,51,56,48,49,49,93,44,91,45,56,53,46,56,52,54,52,56,51,44,51,54,46,50,56,56,49,54,55,93,44,91,45,56,53,46,56,50,56,48,50,54,44,51,54,46,52,49,49,56,51,54,93,44,91,45,56,53,46,57,55,56,56,57,51,44,51,54,46,52,50,54,48,55,51,93,44,91,45,56,54,46,49,51,54,56,48,51,44,51,54,46,50,57,53,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,53,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,52,49,52,57,51,44,51,54,46,55,57,52,51,54,53,93,44,91,45,56,48,46,48,57,52,51,56,57,44,51,54,46,55,55,57,53,53,50,93,44,91,45,56,48,46,48,53,51,52,53,57,44,51,54,46,53,52,50,53,50,51,93,44,91,45,56,48,46,48,50,55,51,51,57,44,51,54,46,53,52,50,52,56,93,44,91,45,55,57,46,55,49,52,56,52,57,44,51,54,46,53,52,49,57,54,53,93,44,91,45,55,57,46,54,52,48,54,53,50,44,51,54,46,56,53,54,49,51,57,93,44,91,45,55,57,46,56,48,50,48,53,54,44,51,54,46,55,57,50,49,51,55,93,44,91,45,55,57,46,57,57,57,55,55,49,44,51,54,46,56,51,48,55,51,56,93,44,91,45,56,48,46,48,52,49,52,57,51,44,51,54,46,55,57,52,51,54,53,93,93,44,91,91,45,55,57,46,57,48,52,48,55,55,44,51,54,46,54,56,52,49,50,55,93,44,91,45,55,57,46,56,55,52,55,54,44,51,54,46,55,49,53,50,51,55,93,44,91,45,55,57,46,56,51,55,51,53,57,44,51,54,46,55,48,52,49,51,55,93,44,91,45,55,57,46,56,53,57,50,54,44,51,54,46,54,54,49,55,51,55,93,44,91,45,55,57,46,57,48,52,48,55,55,44,51,54,46,54,56,52,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,49,48,34,44,34,78,65,77,69,34,58,34,65,108,101,120,97,110,100,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,53,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,49,48,55,57,57,44,51,56,46,56,52,51,52,52,54,93,44,91,45,55,55,46,48,52,49,51,54,50,44,51,56,46,55,56,53,52,49,53,93,44,91,45,55,55,46,48,51,57,48,48,54,44,51,56,46,55,57,49,54,52,53,93,44,91,45,55,55,46,48,52,56,48,50,44,51,56,46,56,52,49,50,54,49,93,44,91,45,55,55,46,49,49,48,55,57,57,44,51,56,46,56,52,51,52,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,55,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,55,57,57,55,52,44,52,49,46,49,54,50,54,54,50,93,44,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,44,91,45,57,49,46,55,49,56,49,56,44,52,48,46,57,48,49,48,56,55,93,44,91,45,57,49,46,55,49,54,48,52,50,44,52,49,46,49,54,50,56,48,56,93,44,91,45,57,49,46,57,52,53,53,55,49,44,52,49,46,49,54,51,53,55,56,93,44,91,45,57,50,46,49,55,57,57,55,52,44,52,49,46,49,54,50,54,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,32,97,110,100,32,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,48,55,55,44,34,98,101,100,115,34,58,49,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,49,52,52,51,54,56,44,52,55,46,53,57,53,53,48,55,93,44,91,45,49,49,51,46,48,53,57,49,57,57,44,52,55,46,52,56,56,53,57,57,93,44,91,45,49,49,51,46,48,53,57,48,53,51,44,52,55,46,49,55,57,53,55,93,44,91,45,49,49,50,46,55,57,53,56,48,56,44,52,55,46,49,55,55,48,48,52,93,44,91,45,49,49,50,46,55,57,53,54,52,50,44,52,54,46,56,51,49,54,54,53,93,44,91,45,49,49,50,46,53,51,53,55,52,56,44,52,54,46,56,51,52,50,51,52,93,44,91,45,49,49,50,46,53,51,53,53,57,55,44,52,54,46,54,57,57,52,56,50,93,44,91,45,49,49,50,46,51,50,48,56,55,49,44,52,54,46,54,53,53,57,50,55,93,44,91,45,49,49,50,46,51,49,48,53,55,51,44,52,54,46,52,50,49,49,55,49,93,44,91,45,49,49,50,46,49,55,54,50,51,53,44,52,54,46,52,53,54,51,52,50,93,44,91,45,49,49,50,46,48,50,57,50,51,49,44,52,54,46,53,54,56,56,48,53,93,44,91,45,49,49,49,46,55,56,55,57,52,57,44,52,54,46,53,54,57,52,54,53,93,44,91,45,49,49,49,46,54,52,48,48,57,53,44,52,54,46,53,56,50,52,54,51,93,44,91,45,49,49,49,46,54,51,57,50,54,49,44,52,54,46,55,51,56,49,56,93,44,91,45,49,49,49,46,52,57,56,48,57,53,44,52,54,46,55,54,50,53,48,50,93,44,91,45,49,49,49,46,54,48,51,49,53,51,44,52,54,46,56,48,57,57,52,57,93,44,91,45,49,49,49,46,54,53,56,49,51,50,44,52,54,46,57,49,51,52,50,51,93,44,91,45,49,49,49,46,55,57,48,50,51,54,44,52,54,46,57,49,51,55,54,52,93,44,91,45,49,49,49,46,55,56,57,50,55,56,44,52,55,46,49,50,56,57,50,50,93,44,91,45,49,49,50,46,48,52,52,56,50,57,44,52,55,46,49,57,50,55,49,49,93,44,91,45,49,49,50,46,48,52,55,55,56,49,44,52,55,46,53,49,54,48,51,52,93,44,91,45,49,49,50,46,50,55,56,44,52,55,46,53,48,53,54,50,51,93,44,91,45,49,49,50,46,52,51,50,55,49,49,44,52,55,46,54,48,54,49,48,52,93,44,91,45,49,49,50,46,53,54,56,54,54,44,52,55,46,54,51,54,48,49,56,93,44,91,45,49,49,50,46,56,53,52,55,48,49,44,52,55,46,54,50,57,50,51,52,93,44,91,45,49,49,50,46,57,49,51,56,55,52,44,52,55,46,54,57,55,49,57,57,93,44,91,45,49,49,50,46,57,49,51,50,53,54,44,52,55,46,56,50,54,50,49,54,93,44,91,45,49,49,50,46,57,56,52,55,51,52,44,52,55,46,57,53,51,57,49,56,93,44,91,45,49,49,51,46,48,54,50,56,55,54,44,52,55,46,56,56,53,53,54,51,93,44,91,45,49,49,51,46,48,56,48,57,57,55,44,52,55,46,55,52,57,57,49,55,93,44,91,45,49,49,51,46,49,54,53,56,49,49,44,52,55,46,55,49,57,55,54,52,93,44,91,45,49,49,51,46,49,52,52,51,54,56,44,52,55,46,53,57,53,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,68,117,99,104,101,115,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,49,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,56,53,55,55,56,44,51,57,46,56,49,51,50,56,53,93,44,91,45,49,48,57,46,57,55,54,56,49,52,44,51,57,46,56,48,54,50,51,93,44,91,45,49,48,57,46,57,55,54,52,48,50,44,52,48,46,56,48,57,54,56,54,93,44,91,45,49,49,48,46,48,48,48,55,49,49,44,52,48,46,56,49,51,54,55,56,93,44,91,45,49,49,48,46,50,54,48,57,54,55,44,52,48,46,56,51,52,56,50,52,93,44,91,45,49,49,48,46,51,55,56,57,54,50,44,52,48,46,55,56,55,49,56,93,44,91,45,49,49,48,46,54,53,54,52,56,50,44,52,48,46,55,52,48,50,55,53,93,44,91,45,49,49,48,46,55,53,48,55,51,51,44,52,48,46,55,52,55,55,48,54,93,44,91,45,49,49,48,46,57,48,49,57,55,52,44,52,48,46,54,55,56,49,54,50,93,44,91,45,49,49,48,46,56,57,49,54,53,53,44,51,57,46,56,57,57,54,53,52,93,44,91,45,49,49,48,46,56,53,55,55,56,44,51,57,46,56,49,51,50,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,102,97,108,102,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,52,52,54,54,49,44,51,54,46,57,57,56,55,53,57,93,44,91,45,57,56,46,53,51,51,54,49,55,44,51,54,46,52,54,51,50,51,93,44,91,45,57,56,46,49,48,52,52,50,55,44,51,54,46,52,54,51,49,48,53,93,44,91,45,57,56,46,49,48,52,50,56,54,44,51,54,46,53,57,51,53,55,56,93,44,91,45,57,56,46,49,49,49,57,56,53,44,51,54,46,57,57,56,48,57,51,93,44,91,45,57,56,46,51,52,55,49,52,57,44,51,54,46,57,57,56,49,53,53,93,44,91,45,57,56,46,53,52,52,54,54,49,44,51,54,46,57,57,56,55,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,68,101,108,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,48,56,54,51,55,44,51,51,46,51,56,48,54,54,50,93,44,91,45,57,53,46,54,50,49,48,50,55,44,51,51,46,52,56,55,48,54,93,44,91,45,57,53,46,56,53,55,55,51,56,44,51,51,46,52,54,49,55,50,50,93,44,91,45,57,53,46,56,53,56,55,50,51,44,51,51,46,52,48,57,53,51,93,44,91,45,57,53,46,56,54,49,55,55,56,44,51,51,46,50,49,57,51,51,93,44,91,45,57,53,46,55,50,57,48,57,52,44,51,51,46,51,48,53,52,50,56,93,44,91,45,57,53,46,53,56,49,49,55,53,44,51,51,46,51,53,56,57,55,55,93,44,91,45,57,53,46,51,48,56,53,57,51,44,51,51,46,51,55,55,49,57,93,44,91,45,57,53,46,51,48,54,54,52,44,51,51,46,51,55,56,48,50,55,93,44,91,45,57,53,46,51,48,56,54,51,55,44,51,51,46,51,56,48,54,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,84,114,111,117,115,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,50,56,52,51,52,44,51,54,46,52,56,55,52,55,50,93,44,91,45,56,54,46,50,56,51,50,53,54,44,51,54,46,51,52,55,53,93,44,91,45,56,54,46,49,51,54,56,48,51,44,51,54,46,50,57,53,56,53,57,93,44,91,45,56,53,46,57,55,56,56,57,51,44,51,54,46,52,50,54,48,55,51,93,44,91,45,56,54,46,49,54,56,50,54,49,44,51,54,46,52,52,52,50,57,51,93,44,91,45,56,54,46,50,50,56,52,51,52,44,51,54,46,52,56,55,52,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,49,55,44,34,98,101,100,115,34,58,51,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,48,55,56,56,54,44,51,55,46,50,51,53,56,55,55,93,44,91,45,56,51,46,52,54,48,57,57,50,44,51,55,46,50,57,51,56,52,56,93,44,91,45,56,51,46,50,48,56,49,50,49,44,51,55,46,49,55,52,54,53,57,93,44,91,45,56,51,46,49,56,50,49,48,52,44,51,55,46,48,50,49,49,49,53,93,44,91,45,56,51,46,49,50,50,48,57,44,51,55,46,48,48,48,57,57,55,93,44,91,45,56,51,46,48,48,48,49,52,50,44,51,55,46,49,57,53,55,49,93,44,91,45,56,51,46,49,48,49,53,54,51,44,51,55,46,50,51,53,52,51,55,93,44,91,45,56,51,46,49,50,52,51,52,56,44,51,55,46,52,48,52,57,55,51,93,44,91,45,56,51,46,49,57,57,55,51,52,44,51,55,46,52,49,52,54,54,93,44,91,45,56,51,46,52,48,51,57,56,56,44,51,55,46,51,51,56,51,51,50,93,44,91,45,56,51,46,53,52,55,54,50,56,44,51,55,46,51,51,52,52,49,56,93,44,91,45,56,51,46,53,50,54,57,48,55,44,51,55,46,50,53,56,53,50,57,93,44,91,45,56,51,46,53,48,55,56,56,54,44,51,55,46,50,51,53,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,101,117,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,48,54,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,56,52,53,55,44,52,52,46,56,48,52,52,51,54,93,44,91,45,57,54,46,56,56,53,53,48,52,44,52,52,46,53,52,51,55,55,51,93,44,91,45,57,54,46,52,53,49,56,50,44,52,52,46,53,52,51,54,53,50,93,44,91,45,57,54,46,52,53,49,53,54,54,44,52,52,46,54,51,49,51,52,57,93,44,91,45,57,54,46,52,53,49,52,54,50,44,52,52,46,56,48,53,53,55,93,44,91,45,57,54,46,52,53,50,48,51,53,44,52,52,46,57,55,55,54,53,93,44,91,45,57,54,46,56,56,50,51,52,53,44,52,52,46,57,55,54,56,55,93,44,91,45,57,54,46,56,56,52,53,55,44,52,52,46,56,48,52,52,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,50,54,55,44,34,98,101,100,115,34,58,53,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,50,56,50,55,51,44,52,50,46,57,57,54,52,57,57,93,44,91,45,49,50,50,46,52,48,49,48,50,53,44,52,50,46,57,57,54,54,51,50,93,44,91,45,49,50,50,46,53,54,48,50,55,51,44,52,50,46,57,51,57,49,56,53,93,44,91,45,49,50,50,46,55,57,52,55,55,54,44,52,50,46,55,55,56,50,50,49,93,44,91,45,49,50,51,46,49,53,50,50,51,51,44,52,50,46,55,53,53,56,51,53,93,44,91,45,49,50,51,46,50,50,57,54,49,57,44,52,50,46,55,48,50,54,49,93,44,91,45,49,50,51,46,50,51,49,49,49,51,44,52,50,46,48,48,51,57,52,51,93,44,91,45,49,50,50,46,50,56,57,55,52,56,44,52,50,46,48,48,56,48,57,56,93,44,91,45,49,50,50,46,50,56,50,55,51,44,52,50,46,57,57,54,52,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,111,114,109,105,103,117,101,114,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,53,57,55,51,51,44,49,56,46,49,53,51,50,50,55,93,44,91,45,54,55,46,49,48,48,52,57,50,44,49,56,46,49,48,54,51,57,53,93,44,91,45,54,55,46,48,56,54,51,53,57,44,49,56,46,49,52,57,56,50,57,93,44,91,45,54,55,46,49,53,57,55,51,51,44,49,56,46,49,53,51,50,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,53,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,48,55,34,44,34,78,65,77,69,34,58,34,90,97,118,97,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,49,52,48,54,44,50,57,46,48,56,54,51,49,56,93,44,91,45,49,48,48,46,49,49,52,51,51,54,44,50,56,46,54,52,56,49,50,50,93,44,91,45,57,57,46,52,48,57,48,50,49,44,50,56,46,54,52,48,53,54,54,93,44,91,45,57,57,46,52,49,51,56,56,44,50,57,46,48,57,49,51,51,53,93,44,91,45,49,48,48,46,49,49,49,52,48,54,44,50,57,46,48,56,54,51,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,97,110,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,50,54,56,56,44,52,49,46,54,57,55,57,53,52,93,44,91,45,49,48,52,46,48,53,50,53,52,44,52,49,46,53,54,52,50,55,52,93,44,91,45,49,48,52,46,48,53,50,50,56,55,44,52,49,46,51,57,51,50,49,52,93,44,91,45,49,48,51,46,51,55,55,54,50,44,52,49,46,51,57,52,54,51,51,93,44,91,45,49,48,51,46,51,54,57,48,50,52,44,52,49,46,52,51,55,54,53,53,93,44,91,45,49,48,51,46,51,55,48,51,57,49,44,52,49,46,54,57,57,50,49,93,44,91,45,49,48,52,46,48,53,50,54,56,56,44,52,49,46,54,57,55,57,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,57,48,54,49,50,44,52,49,46,53,49,49,57,49,54,93,44,91,45,57,52,46,50,52,49,53,57,51,44,52,49,46,53,48,51,54,55,57,93,44,91,45,57,52,46,50,52,49,54,51,55,44,52,49,46,49,53,55,49,51,52,93,44,91,45,57,52,46,48,49,52,49,56,57,44,52,49,46,49,53,54,55,54,50,93,44,91,45,57,51,46,55,56,57,49,57,54,44,52,49,46,49,54,50,48,51,53,93,44,91,45,57,51,46,55,57,48,54,49,50,44,52,49,46,53,49,49,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,114,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,57,49,53,49,44,34,98,101,100,115,34,58,53,56,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,49,53,50,55,54,44,50,54,46,51,50,48,57,53,54,93,44,91,45,56,48,46,50,57,54,57,56,54,44,50,54,46,51,51,52,51,53,54,93,44,91,45,56,48,46,56,56,49,50,51,51,44,50,54,46,51,51,51,56,48,54,93,44,91,45,56,48,46,56,55,57,56,48,57,44,50,54,46,50,53,57,52,53,53,93,44,91,45,56,48,46,56,55,50,57,51,50,44,50,53,46,57,55,57,52,51,52,93,44,91,45,56,48,46,54,56,48,48,49,54,44,50,53,46,57,53,54,56,53,55,93,44,91,45,56,48,46,50,57,52,57,55,50,44,50,53,46,57,53,54,55,55,93,44,91,45,56,48,46,48,53,50,50,53,55,44,50,53,46,57,55,52,57,53,54,93,44,91,45,56,48,46,48,49,53,50,55,54,44,50,54,46,51,50,48,57,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,57,34,44,34,78,65,77,69,34,58,34,84,111,111,109,98,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,48,52,56,44,34,98,101,100,115,34,58,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,48,57,49,51,44,51,50,46,51,53,51,55,51,56,93,44,91,45,56,50,46,52,56,51,49,51,49,44,51,49,46,57,54,56,57,54,49,93,44,91,45,56,50,46,52,51,49,53,51,49,44,51,49,46,57,54,54,49,56,50,93,44,91,45,56,50,46,50,50,53,48,52,50,44,51,49,46,57,49,51,48,55,52,93,44,91,45,56,50,46,49,56,50,55,50,55,44,51,50,46,49,54,48,52,52,50,93,44,91,45,56,50,46,50,51,50,55,56,56,44,51,50,46,51,49,56,56,51,56,93,44,91,45,56,50,46,51,53,52,53,52,54,44,51,50,46,50,57,50,49,57,52,93,44,91,45,56,50,46,52,48,57,49,49,56,44,51,50,46,51,53,51,56,51,93,44,91,45,56,50,46,52,48,57,49,51,44,51,50,46,51,53,51,55,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,97,110,105,108,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,51,55,54,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,49,55,56,52,52,44,52,51,46,54,55,53,52,57,51,93,44,91,45,56,51,46,49,50,48,51,57,54,44,52,51,46,51,50,55,48,52,57,93,44,91,45,56,51,46,48,48,48,52,51,44,52,51,46,50,56,52,57,49,51,93,44,91,45,56,50,46,57,57,54,50,53,55,44,52,51,46,49,53,52,48,57,57,93,44,91,45,56,50,46,51,51,52,48,55,51,44,52,51,46,49,55,48,52,49,51,93,44,91,45,56,50,46,49,50,50,57,55,49,44,52,51,46,53,57,48,56,50,55,93,44,91,45,56,50,46,49,52,53,53,48,49,44,52,51,46,54,57,53,53,56,55,93,44,91,45,56,51,46,49,49,55,56,52,52,44,52,51,46,54,55,53,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,57,55,34,44,34,78,65,77,69,34,58,34,82,111,99,107,119,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,54,52,50,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,57,55,50,50,55,44,51,50,46,57,56,49,55,53,50,93,44,91,45,57,54,46,53,49,54,56,54,54,44,51,50,46,57,56,50,51,48,56,93,44,91,45,57,54,46,53,49,56,57,55,44,51,50,46,56,49,51,54,49,54,93,44,91,45,57,54,46,50,57,55,51,50,50,44,51,50,46,56,52,49,55,50,51,93,44,91,45,57,54,46,50,57,55,50,50,55,44,51,50,46,57,56,49,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,49,51,56,50,44,34,98,101,100,115,34,58,54,50,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,48,56,51,51,57,51,44,52,50,46,52,52,55,49,53,51,93,44,91,45,56,51,46,53,53,49,57,48,55,44,52,50,46,52,51,53,49,54,54,93,44,91,45,56,51,46,53,51,57,51,57,54,44,52,50,46,48,56,53,53,57,56,93,44,91,45,56,51,46,50,57,53,48,54,51,44,52,50,46,48,57,52,50,51,55,93,44,91,45,56,51,46,49,52,51,57,53,54,44,52,50,46,48,50,55,57,51,93,44,91,45,56,51,46,49,50,54,51,54,49,44,52,50,46,50,51,56,52,49,50,93,44,91,45,56,51,46,48,54,51,54,51,55,44,52,50,46,51,49,54,56,53,55,93,44,91,45,56,50,46,56,51,48,50,53,44,52,50,46,51,55,51,52,57,50,93,44,91,45,56,50,46,55,52,57,57,48,56,44,52,50,46,52,53,49,48,57,50,93,44,91,45,56,51,46,48,56,51,51,57,51,44,52,50,46,52,52,55,49,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,78,111,98,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,51,57,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,54,50,52,50,55,44,52,51,46,56,52,55,57,49,49,93,44,91,45,57,54,46,48,53,50,51,50,44,52,51,46,56,52,57,48,55,93,44,91,45,57,54,46,48,53,51,49,54,50,44,52,51,46,53,48,48,49,53,53,93,44,91,45,57,53,46,56,54,48,57,52,55,44,52,51,46,53,48,48,48,51,54,93,44,91,45,57,53,46,52,53,52,52,51,51,44,52,51,46,53,48,48,54,52,54,93,44,91,45,57,53,46,52,53,50,53,48,50,44,52,51,46,56,52,55,57,53,51,93,44,91,45,57,53,46,52,54,50,52,50,55,44,52,51,46,56,52,55,57,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,105,116,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,51,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,55,54,48,50,52,44,52,54,46,56,48,50,56,57,49,93,44,91,45,57,51,46,56,49,49,52,54,52,44,52,54,46,53,56,52,50,51,56,93,44,91,45,57,51,46,55,57,54,50,56,49,44,52,54,46,50,52,51,49,57,57,93,44,91,45,57,51,46,52,51,48,54,52,56,44,52,54,46,50,52,54,52,49,50,93,44,91,45,57,51,46,52,51,49,56,51,49,44,52,54,46,49,53,51,57,57,49,93,44,91,45,57,51,46,48,53,51,56,55,49,44,52,54,46,49,53,56,49,50,93,44,91,45,57,51,46,48,53,52,56,52,55,44,52,54,46,52,49,57,50,54,57,93,44,91,45,57,51,46,48,54,49,53,50,57,44,52,54,46,55,54,54,53,53,93,44,91,45,57,51,46,48,53,53,57,52,51,44,52,55,46,48,50,54,52,49,53,93,44,91,45,57,51,46,55,55,53,50,53,55,44,52,55,46,48,51,48,52,49,56,93,44,91,45,57,51,46,55,55,54,48,50,52,44,52,54,46,56,48,50,56,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,82,97,109,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,53,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,55,48,51,57,50,44,52,56,46,53,52,52,50,51,50,93,44,91,45,57,56,46,57,55,48,56,52,50,44,52,56,46,51,55,48,52,49,52,93,44,91,45,57,57,46,50,48,48,51,48,54,44,52,56,46,51,55,48,54,53,56,93,44,91,45,57,57,46,49,57,57,57,49,49,44,52,56,46,49,53,53,51,48,57,93,44,91,45,57,57,46,48,55,48,52,52,51,44,52,56,46,49,48,55,56,53,55,93,44,91,45,57,56,46,57,56,54,57,48,49,44,52,56,46,48,48,55,52,57,56,93,44,91,45,57,56,46,56,48,55,53,57,51,44,52,56,46,48,53,57,56,48,49,93,44,91,45,57,56,46,54,50,53,51,56,52,44,52,55,46,57,49,54,51,57,57,93,44,91,45,57,56,46,53,50,53,53,53,53,44,52,55,46,57,49,53,48,53,54,93,44,91,45,57,56,46,52,50,50,52,55,52,44,52,56,46,48,50,49,48,56,93,44,91,45,57,56,46,52,50,50,48,53,55,44,52,56,46,49,57,52,55,56,50,93,44,91,45,57,56,46,50,57,50,49,56,52,44,52,56,46,49,57,53,49,55,55,93,44,91,45,57,56,46,51,49,56,48,51,54,44,52,56,46,53,52,51,55,55,51,93,44,91,45,57,56,46,57,55,48,51,57,50,44,52,56,46,53,52,52,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,80,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,51,48,53,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,49,51,56,51,50,44,51,54,46,53,52,49,57,55,53,93,44,91,45,55,57,46,49,53,51,57,57,55,44,51,54,46,50,52,49,56,55,53,93,44,91,45,55,56,46,57,53,48,53,57,55,44,51,54,46,50,51,57,51,50,93,44,91,45,55,56,46,56,48,50,51,51,53,44,51,54,46,50,51,53,55,57,52,93,44,91,45,55,56,46,55,57,54,50,55,52,44,51,54,46,53,52,49,55,52,49,93,44,91,45,55,57,46,49,51,56,51,50,44,51,54,46,53,52,49,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,84,114,101,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,52,55,57,52,44,51,57,46,49,51,50,49,55,57,93,44,91,45,49,48,48,46,49,53,51,56,50,51,44,51,56,46,54,57,55,51,52,49,93,44,91,45,57,57,46,53,57,56,51,50,51,44,51,56,46,54,57,54,53,49,52,93,44,91,45,57,57,46,53,57,49,55,55,54,44,51,57,46,49,51,50,51,53,55,93,44,91,45,57,57,46,54,48,53,49,56,55,44,51,57,46,49,51,50,52,56,49,93,44,91,45,49,48,48,46,49,52,55,57,52,44,51,57,46,49,51,50,49,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,48,56,54,44,34,98,101,100,115,34,58,50,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,54,51,53,48,57,44,51,51,46,53,50,57,51,56,57,93,44,91,45,57,49,46,50,49,53,54,55,49,44,51,51,46,53,50,57,52,50,51,93,44,91,45,57,49,46,49,54,57,52,53,57,44,51,51,46,52,53,50,49,51,55,93,44,91,45,57,49,46,48,56,55,53,56,57,44,51,51,46,49,52,53,49,55,54,93,44,91,45,57,49,46,49,54,54,50,56,50,44,51,51,46,48,49,49,51,51,49,93,44,91,45,57,48,46,57,49,52,51,51,55,44,51,51,46,48,48,55,54,57,55,93,44,91,45,57,48,46,57,49,52,52,54,53,44,51,51,46,48,57,55,52,49,55,93,44,91,45,57,48,46,55,48,49,56,52,53,44,51,51,46,48,57,54,50,57,52,93,44,91,45,57,48,46,55,49,54,50,55,55,44,51,51,46,50,55,48,48,51,50,93,44,91,45,57,48,46,55,54,51,55,55,51,44,51,51,46,50,55,48,51,53,57,93,44,91,45,57,48,46,55,54,51,53,48,57,44,51,51,46,53,50,57,51,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,69,97,115,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,55,48,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,55,54,50,53,54,44,51,50,46,53,49,53,49,54,51,93,44,91,45,57,57,46,48,57,54,48,53,44,51,50,46,53,49,52,55,54,56,93,44,91,45,57,57,46,49,49,52,50,57,51,44,51,50,46,53,49,52,56,49,49,93,44,91,45,57,57,46,49,49,56,54,54,53,44,51,50,46,48,55,57,53,56,53,93,44,91,45,57,56,46,57,50,52,52,48,49,44,51,50,46,48,55,56,48,49,56,93,44,91,45,57,56,46,53,53,49,49,53,56,44,51,50,46,50,54,49,52,51,54,93,44,91,45,57,56,46,52,55,52,54,56,53,44,51,50,46,50,57,57,48,56,52,93,44,91,45,57,56,46,52,55,53,49,55,55,44,51,50,46,53,49,51,48,51,57,93,44,91,45,57,56,46,53,55,54,50,53,54,44,51,50,46,53,49,53,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,73,115,115,97,113,117,101,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,52,51,51,55,44,51,51,46,48,48,55,54,57,55,93,44,91,45,57,49,46,49,54,54,50,56,50,44,51,51,46,48,49,49,51,51,49,93,44,91,45,57,49,46,49,54,54,48,55,51,44,51,51,46,48,48,52,49,48,54,93,44,91,45,57,49,46,50,49,50,56,51,55,44,51,50,46,57,50,50,49,48,51,93,44,91,45,57,49,46,49,52,51,53,53,57,44,51,50,46,56,52,52,55,51,56,93,44,91,45,57,49,46,49,53,50,54,57,57,44,51,50,46,54,52,48,55,53,55,93,44,91,45,57,49,46,48,52,51,53,53,50,44,51,50,46,53,55,54,50,55,49,93,44,91,45,57,48,46,57,54,52,48,52,51,44,51,50,46,53,55,53,54,48,53,93,44,91,45,57,48,46,57,53,49,50,52,44,51,50,46,52,52,52,51,56,57,93,44,91,45,57,48,46,56,54,49,51,54,52,44,51,50,46,52,52,50,49,49,53,93,44,91,45,57,48,46,56,54,48,53,54,54,44,51,50,46,53,55,53,49,55,51,93,44,91,45,57,48,46,55,50,48,49,48,50,44,51,50,46,54,49,56,56,53,56,93,44,91,45,57,48,46,55,50,51,49,53,57,44,51,50,46,54,54,50,49,50,56,93,44,91,45,57,48,46,57,54,52,56,54,52,44,51,50,46,54,54,50,55,57,56,93,44,91,45,57,48,46,57,54,51,55,53,51,44,51,50,46,56,51,56,49,51,51,93,44,91,45,57,48,46,57,49,52,51,51,55,44,51,51,46,48,48,55,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,68,101,87,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,51,53,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,48,53,57,49,54,44,50,56,46,56,54,52,48,51,55,93,44,91,45,57,54,46,57,55,54,51,55,56,44,50,57,46,49,48,52,48,52,54,93,44,91,45,57,55,46,50,52,48,49,48,56,44,50,57,46,51,56,52,52,56,56,93,44,91,45,57,55,46,54,49,51,49,51,50,44,50,57,46,49,48,57,55,54,53,93,44,91,45,57,55,46,55,53,53,49,49,44,50,57,46,48,48,55,49,49,51,93,44,91,45,57,55,46,53,55,52,54,51,57,44,50,56,46,56,49,51,51,93,44,91,45,57,55,46,52,49,55,51,52,44,50,56,46,57,50,53,50,50,56,93,44,91,45,57,55,46,51,48,53,57,49,54,44,50,56,46,56,54,52,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,110,103,101,108,105,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,54,48,55,44,34,98,101,100,115,34,58,52,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,53,56,49,49,44,51,49,46,51,56,54,57,51,93,44,91,45,57,52,46,56,57,57,48,49,55,44,51,49,46,51,50,54,57,55,50,93,44,91,45,57,52,46,56,52,50,57,52,55,44,51,49,46,49,52,54,53,55,56,93,44,91,45,57,52,46,53,54,49,57,52,51,44,51,49,46,48,53,56,57,53,50,93,44,91,45,57,52,46,52,53,55,56,49,54,44,51,49,46,48,51,51,51,50,53,93,44,91,45,57,52,46,49,50,57,54,51,50,44,51,49,46,48,57,57,50,56,93,44,91,45,57,52,46,51,50,54,54,49,54,44,51,49,46,50,50,52,55,53,52,93,44,91,45,57,52,46,52,54,54,54,55,54,44,51,49,46,51,55,56,48,48,57,93,44,91,45,57,52,46,53,53,52,56,51,56,44,51,49,46,52,51,53,49,50,51,93,44,91,45,57,52,46,55,50,56,52,53,54,44,51,49,46,52,53,55,49,52,55,93,44,91,45,57,52,46,56,54,53,56,53,55,44,51,49,46,53,50,54,57,49,54,93,44,91,45,57,53,46,48,48,51,51,52,53,44,51,49,46,52,50,53,55,49,93,44,91,45,57,52,46,57,53,56,49,49,44,51,49,46,51,56,54,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,83,97,108,117,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,55,48,48,56,52,44,51,52,46,49,51,53,51,53,55,93,44,91,45,56,50,46,48,48,56,50,57,56,44,51,51,46,57,54,49,54,52,54,93,44,91,45,56,49,46,56,57,52,53,57,53,44,51,51,46,57,55,53,52,49,53,93,44,91,45,56,49,46,56,51,54,56,48,51,44,51,51,46,56,54,54,53,48,49,93,44,91,45,56,49,46,54,53,49,55,53,57,44,51,51,46,56,49,52,53,49,93,44,91,45,56,49,46,53,55,49,52,56,55,44,51,51,46,56,55,55,51,49,56,93,44,91,45,56,49,46,52,55,49,57,55,50,44,51,52,46,48,55,54,53,53,50,93,44,91,45,56,49,46,53,51,56,56,57,57,44,51,52,46,48,56,49,55,52,52,93,44,91,45,56,49,46,55,51,49,54,49,52,44,51,52,46,49,56,55,54,49,51,93,44,91,45,56,49,46,56,55,48,48,56,52,44,51,52,46,49,51,53,51,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,57,53,54,55,53,44,51,56,46,50,57,50,50,51,55,93,44,91,45,57,50,46,49,56,53,51,55,44,51,56,46,48,49,54,51,51,56,93,44,91,45,57,50,46,48,50,49,49,54,53,44,51,56,46,48,49,48,54,51,57,93,44,91,45,57,49,46,56,57,53,51,52,55,44,51,56,46,48,53,49,49,57,57,93,44,91,45,57,49,46,54,51,50,52,51,49,44,51,56,46,48,53,48,57,53,49,93,44,91,45,57,49,46,54,51,48,53,53,52,44,51,56,46,49,53,51,53,49,57,93,44,91,45,57,49,46,54,52,52,55,50,57,44,51,56,46,50,56,56,53,49,93,44,91,45,57,50,46,49,57,53,54,55,53,44,51,56,46,50,57,50,50,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,50,52,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,55,55,56,50,44,51,52,46,53,54,51,52,56,93,44,91,45,57,49,46,53,57,52,52,50,57,44,51,52,46,53,54,56,48,53,93,44,91,45,57,49,46,54,55,56,48,51,55,44,51,52,46,52,56,49,57,50,93,44,91,45,57,49,46,55,48,53,49,56,53,44,51,52,46,52,56,50,54,55,93,44,91,45,57,49,46,55,49,49,55,57,53,44,51,52,46,50,51,51,57,49,57,93,44,91,45,57,49,46,53,52,48,49,55,56,44,51,52,46,50,50,52,53,57,57,93,44,91,45,57,49,46,52,52,53,54,49,52,44,51,52,46,48,56,48,49,52,55,93,44,91,45,57,49,46,52,50,49,55,49,53,44,51,52,46,48,49,52,52,55,50,93,44,91,45,57,49,46,50,49,52,51,51,56,44,51,51,46,57,55,50,52,48,51,93,44,91,45,57,49,46,49,57,52,50,55,56,44,51,52,46,48,55,48,57,51,56,93,44,91,45,57,49,46,49,49,55,57,48,53,44,51,52,46,49,49,57,49,48,53,93,44,91,45,57,49,46,48,53,54,50,55,54,44,51,52,46,51,51,54,54,48,53,93,44,91,45,57,49,46,50,54,51,54,48,54,44,51,52,46,53,48,49,56,54,55,93,44,91,45,57,49,46,51,55,55,56,50,44,51,52,46,53,54,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,49,51,51,44,34,98,101,100,115,34,58,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,53,50,51,49,51,44,51,55,46,50,57,48,48,55,56,93,44,91,45,57,52,46,48,53,57,50,49,49,44,51,55,46,48,52,56,49,50,55,93,44,91,45,57,52,46,48,54,50,55,52,44,51,54,46,57,51,49,55,55,53,93,44,91,45,57,51,46,54,49,49,48,48,51,44,51,54,46,57,50,50,56,51,49,93,44,91,45,57,51,46,54,49,48,49,50,54,44,51,54,46,57,57,53,56,49,93,44,91,45,57,51,46,54,48,56,56,57,57,44,51,55,46,48,57,56,49,53,51,93,44,91,45,57,51,46,54,50,53,56,52,52,44,51,55,46,50,56,50,48,49,49,93,44,91,45,57,52,46,48,53,50,51,49,51,44,51,55,46,50,57,48,48,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,52,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,52,48,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,111,116,116,101,115,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,48,52,50,44,34,98,101,100,115,34,58,53,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,53,50,51,54,56,44,51,56,46,48,50,50,51,50,55,93,44,91,45,55,56,46,52,54,57,53,48,52,44,51,56,46,48,49,49,55,52,53,93,44,91,45,55,56,46,52,53,52,55,51,50,44,51,56,46,48,52,53,50,55,56,93,44,91,45,55,56,46,52,56,53,50,48,50,44,51,56,46,48,54,56,57,55,52,93,44,91,45,55,56,46,53,50,51,54,56,44,51,56,46,48,50,50,51,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,117,114,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,51,56,49,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,54,50,51,53,49,44,52,49,46,53,56,52,48,48,53,93,44,91,45,56,57,46,56,53,55,54,49,54,44,52,49,46,50,51,52,52,55,57,93,44,91,45,56,57,46,54,51,56,55,48,56,44,52,49,46,50,51,51,56,54,50,93,44,91,45,56,57,46,54,51,56,53,51,54,44,52,49,46,49,52,56,53,52,53,93,44,91,45,56,57,46,52,54,54,49,48,49,44,52,49,46,49,52,56,53,50,52,93,44,91,45,56,57,46,52,54,54,51,56,57,44,52,49,46,50,51,51,56,55,50,93,44,91,45,56,57,46,51,51,52,57,48,49,44,52,49,46,51,48,48,56,55,55,93,44,91,45,56,57,46,49,54,51,55,48,53,44,52,49,46,51,49,48,49,56,55,93,44,91,45,56,57,46,49,54,54,53,54,49,44,52,49,46,53,56,53,50,56,57,93,44,91,45,56,57,46,54,51,49,52,57,52,44,52,49,46,53,56,52,57,52,57,93,44,91,45,56,57,46,56,54,50,51,53,49,44,52,49,46,53,56,52,48,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,83,99,105,111,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,51,55,55,44,34,98,101,100,115,34,58,52,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,48,55,48,57,44,51,56,46,57,52,56,48,55,51,93,44,91,45,56,51,46,50,49,50,49,48,55,44,51,56,46,57,54,48,49,52,56,93,44,91,45,56,51,46,50,55,48,56,49,55,44,51,57,46,48,49,53,55,57,49,93,44,91,45,56,51,46,50,54,55,54,49,51,44,51,56,46,54,49,56,52,50,93,44,91,45,56,51,46,49,51,52,55,53,52,44,51,56,46,54,51,50,48,49,51,93,44,91,45,56,51,46,48,51,48,56,53,56,44,51,56,46,55,50,53,53,50,52,93,44,91,45,56,50,46,56,57,55,49,56,57,44,51,56,46,55,53,54,50,49,52,93,44,91,45,56,50,46,56,49,53,57,55,57,44,51,56,46,53,55,48,56,48,50,93,44,91,45,56,50,46,55,52,48,51,56,51,44,51,56,46,53,57,55,49,54,55,93,44,91,45,56,50,46,54,54,50,56,56,54,44,51,56,46,55,52,55,57,55,55,93,44,91,45,56,50,46,54,53,48,48,51,57,44,51,56,46,56,52,57,48,55,51,93,44,91,45,56,50,46,55,54,48,54,57,44,51,56,46,56,53,52,56,55,53,93,44,91,45,56,50,46,56,48,55,48,57,44,51,56,46,57,52,56,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,57,56,51,49,55,44,51,53,46,57,52,52,57,54,55,93,44,91,45,56,50,46,57,54,49,55,53,52,44,51,53,46,55,57,48,57,53,57,93,44,91,45,56,50,46,56,56,51,57,48,57,44,51,53,46,54,55,56,50,51,53,93,44,91,45,56,50,46,56,48,55,48,53,54,44,51,53,46,54,56,53,56,55,52,93,44,91,45,56,50,46,53,49,51,49,54,49,44,51,53,46,56,48,51,51,56,93,44,91,45,56,50,46,52,48,56,54,48,50,44,51,53,46,56,49,56,49,55,56,93,44,91,45,56,50,46,53,48,53,52,50,53,44,51,53,46,57,55,55,52,51,50,93,44,91,45,56,50,46,54,48,50,57,56,44,51,54,46,48,51,57,54,55,55,93,44,91,45,56,50,46,54,51,55,50,51,44,51,54,46,48,54,53,56,50,93,44,91,45,56,50,46,56,57,56,51,49,55,44,51,53,46,57,52,52,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,74,101,114,111,109,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,52,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,57,51,49,54,56,55,44,52,50,46,55,54,53,48,50,54,93,44,91,45,49,49,52,46,48,52,57,56,52,57,44,52,50,46,56,48,56,52,52,52,93,44,91,45,49,49,52,46,51,52,53,54,53,57,44,52,50,46,56,48,57,48,53,53,93,44,91,45,49,49,52,46,51,54,53,51,54,54,44,52,50,46,56,53,48,55,57,93,44,91,45,49,49,52,46,53,57,52,51,55,53,44,52,50,46,56,53,48,57,48,49,93,44,91,45,49,49,52,46,54,49,54,52,56,55,44,52,50,46,54,52,57,50,57,56,93,44,91,45,49,49,52,46,50,52,52,55,48,51,44,52,50,46,53,53,57,50,52,52,93,44,91,45,49,49,52,46,49,50,52,57,51,52,44,52,50,46,52,57,54,49,51,93,44,91,45,49,49,52,46,48,48,48,51,56,56,44,52,50,46,53,50,54,51,55,51,93,44,91,45,49,49,51,46,57,51,49,55,57,57,44,52,50,46,53,51,53,50,52,51,93,44,91,45,49,49,51,46,57,51,49,54,56,55,44,52,50,46,55,54,53,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,86,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,52,56,53,57,49,44,51,57,46,51,54,56,49,54,53,93,44,91,45,56,50,46,55,54,50,56,57,50,44,51,57,46,50,48,55,57,54,55,93,44,91,45,56,50,46,53,51,54,51,48,54,44,51,57,46,49,56,48,55,53,55,93,44,91,45,56,50,46,52,50,52,54,55,55,44,51,57,46,49,51,55,57,55,50,93,44,91,45,56,50,46,52,51,53,51,48,57,44,51,57,46,48,51,53,48,55,57,93,44,91,45,56,50,46,51,50,50,56,55,52,44,51,57,46,48,50,55,54,55,52,93,44,91,45,56,50,46,50,54,56,53,56,51,44,51,57,46,50,48,51,55,54,93,44,91,45,56,50,46,50,56,57,54,54,51,44,51,57,46,51,56,52,49,57,53,93,44,91,45,56,50,46,55,52,56,53,57,49,44,51,57,46,51,54,56,49,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,57,34,44,34,78,65,77,69,34,58,34,77,99,76,101,110,110,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,52,50,57,44,34,98,101,100,115,34,58,52,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,55,55,50,54,53,44,51,49,46,55,52,53,52,57,50,93,44,91,45,57,55,46,54,48,53,50,51,44,51,49,46,53,56,55,55,54,50,93,44,91,45,57,55,46,52,49,56,54,48,54,44,51,49,46,51,50,48,50,48,50,93,44,91,45,57,55,46,50,55,56,49,49,51,44,51,49,46,50,55,57,55,57,57,93,44,91,45,57,54,46,56,48,49,49,50,51,44,51,49,46,53,50,50,50,54,57,93,44,91,45,57,54,46,57,51,50,50,49,53,44,51,49,46,55,48,56,56,56,55,93,44,91,45,57,55,46,48,51,55,50,54,54,44,51,49,46,56,54,51,48,55,57,93,44,91,45,57,55,46,50,55,55,50,54,53,44,51,49,46,55,52,53,52,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,57,55,49,51,53,49,44,52,51,46,57,51,56,51,48,56,93,44,91,45,49,49,52,46,50,57,50,52,56,52,44,52,51,46,56,56,55,48,54,50,93,44,91,45,49,49,52,46,49,51,50,55,51,50,44,52,51,46,55,53,48,55,53,55,93,44,91,45,49,49,51,46,57,56,54,52,57,52,44,52,51,46,55,50,53,51,57,93,44,91,45,49,49,51,46,55,57,56,52,52,49,44,52,51,46,53,54,57,50,49,55,93,44,91,45,49,49,51,46,55,54,49,49,55,44,52,51,46,54,50,49,49,57,52,93,44,91,45,49,49,51,46,53,50,55,56,48,52,44,52,51,46,55,49,57,49,51,53,93,44,91,45,49,49,51,46,51,55,55,56,55,55,44,52,51,46,56,48,57,55,93,44,91,45,49,49,51,46,52,52,52,56,57,49,44,52,51,46,57,49,56,53,52,50,93,44,91,45,49,49,51,46,52,49,54,53,50,53,44,52,52,46,50,51,51,51,54,52,93,44,91,45,49,49,51,46,51,50,48,54,48,57,44,52,52,46,50,51,51,49,54,52,93,44,91,45,49,49,51,46,51,51,57,54,49,55,44,52,52,46,51,49,54,51,49,51,93,44,91,45,49,49,51,46,53,48,49,53,49,57,44,52,52,46,52,50,50,51,48,51,93,44,91,45,49,49,51,46,56,49,54,50,49,53,44,52,52,46,52,57,51,57,54,51,93,44,91,45,49,49,52,46,48,49,57,50,48,52,44,52,52,46,54,53,49,53,52,49,93,44,91,45,49,49,52,46,48,55,53,57,51,55,44,52,52,46,55,52,53,53,55,56,93,44,91,45,49,49,52,46,51,51,57,49,57,54,44,52,52,46,55,57,51,53,57,52,93,44,91,45,49,49,52,46,52,53,49,56,52,44,52,52,46,54,49,49,55,52,49,93,44,91,45,49,49,52,46,54,48,50,51,54,50,44,52,52,46,53,57,52,56,53,54,93,44,91,45,49,49,52,46,56,49,57,56,56,57,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,49,52,46,56,49,50,52,48,55,44,52,52,46,56,48,56,51,52,54,93,44,91,45,49,49,52,46,57,53,54,49,49,54,44,52,52,46,55,50,48,57,56,50,93,44,91,45,49,49,53,46,48,57,49,57,50,50,44,52,52,46,55,54,54,55,50,54,93,44,91,45,49,49,53,46,49,54,53,54,48,53,44,52,52,46,54,53,48,51,48,54,93,44,91,45,49,49,53,46,51,48,52,57,57,52,44,52,52,46,53,55,57,56,53,55,93,44,91,45,49,49,53,46,50,50,56,50,50,50,44,52,52,46,52,50,51,53,50,49,93,44,91,45,49,49,53,46,50,57,52,54,49,52,44,52,52,46,51,51,57,52,52,53,93,44,91,45,49,49,53,46,49,54,55,54,56,52,44,52,52,46,50,48,50,56,52,93,44,91,45,49,49,53,46,48,50,52,49,56,49,44,52,52,46,49,53,53,52,55,56,93,44,91,45,49,49,53,46,48,52,55,55,50,44,52,52,46,48,53,48,54,53,53,93,44,91,45,49,49,52,46,57,57,48,55,55,55,44,52,51,46,57,52,57,55,50,51,93,44,91,45,49,49,52,46,57,55,49,51,53,49,44,52,51,46,57,51,56,51,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,54,52,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,51,49,50,56,44,52,51,46,53,48,48,50,49,56,93,44,91,45,57,50,46,53,53,52,51,56,49,44,52,51,46,50,49,50,56,49,51,93,44,91,45,57,50,46,48,56,48,57,55,54,44,52,51,46,50,49,50,57,52,55,93,44,91,45,57,50,46,48,55,57,56,48,50,44,52,51,46,53,48,48,54,50,49,93,44,91,45,57,50,46,52,52,56,57,52,56,44,52,51,46,53,48,48,52,53,57,93,44,91,45,57,50,46,53,53,51,49,50,56,44,52,51,46,53,48,48,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,80,97,108,109,32,66,101,97,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,54,50,55,55,44,34,98,101,100,115,34,58,52,51,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,50,50,55,53,52,44,50,54,46,57,55,48,51,57,50,93,44,91,45,56,48,46,49,52,50,48,48,55,44,50,54,46,57,53,54,54,52,93,44,91,45,56,48,46,56,56,53,54,51,57,44,50,54,46,57,53,56,57,49,57,93,44,91,45,56,48,46,56,56,49,50,51,51,44,50,54,46,51,51,51,56,48,54,93,44,91,45,56,48,46,50,57,54,57,56,54,44,50,54,46,51,51,52,51,53,54,93,44,91,45,56,48,46,48,49,53,50,55,54,44,50,54,46,51,50,48,57,53,54,93,44,91,45,55,57,46,57,56,48,54,52,56,44,50,54,46,53,57,53,52,52,55,93,44,91,45,55,57,46,57,55,53,52,50,53,44,50,54,46,56,48,48,50,53,93,44,91,45,56,48,46,48,50,50,55,53,52,44,50,54,46,57,55,48,51,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,52,53,52,53,49,44,51,51,46,57,56,52,49,57,53,93,44,91,45,56,50,46,53,55,51,54,53,50,44,51,51,46,55,56,54,49,49,54,93,44,91,45,56,50,46,52,55,57,53,49,56,44,51,51,46,54,51,57,53,51,53,93,44,91,45,56,50,46,52,50,53,51,50,56,44,51,51,46,54,53,48,54,50,57,93,44,91,45,56,50,46,51,50,57,48,52,57,44,51,51,46,54,57,55,54,55,54,93,44,91,45,56,50,46,50,49,56,54,52,57,44,51,51,46,54,56,54,50,57,57,93,44,91,45,56,50,46,51,52,54,57,51,51,44,51,51,46,56,51,52,50,57,56,93,44,91,45,56,50,46,53,54,52,52,57,49,44,51,51,46,57,53,53,55,51,51,93,44,91,45,56,50,46,54,52,53,52,53,49,44,51,51,46,57,56,52,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,50,53,44,34,98,101,100,115,34,58,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,48,53,56,57,57,44,51,49,46,55,53,51,48,51,53,93,44,91,45,56,54,46,57,48,54,55,54,57,44,51,49,46,54,51,50,54,55,49,93,44,91,45,56,54,46,56,51,57,51,56,54,44,51,49,46,53,50,53,50,48,52,93,44,91,45,56,54,46,55,48,49,53,53,52,44,51,49,46,53,50,51,57,52,54,93,44,91,45,56,54,46,52,57,57,50,49,51,44,51,49,46,53,50,53,51,51,49,93,44,91,45,56,54,46,52,52,56,54,51,53,44,51,49,46,54,53,53,54,49,55,93,44,91,45,56,54,46,52,52,56,49,57,56,44,51,49,46,57,54,52,54,50,57,93,44,91,45,56,54,46,56,53,55,53,56,51,44,51,49,46,57,54,50,49,54,55,93,44,91,45,56,54,46,57,48,54,56,57,57,44,51,49,46,56,51,48,54,50,56,93,44,91,45,56,54,46,57,48,53,56,57,57,44,51,49,46,55,53,51,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,83,117,109,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,52,55,51,44,34,98,101,100,115,34,58,50,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,54,51,57,48,57,44,51,54,46,54,51,51,53,54,50,93,44,91,45,56,54,46,54,57,53,48,54,52,44,51,54,46,52,50,49,51,49,57,93,44,91,45,56,54,46,55,53,52,55,57,53,44,51,54,46,52,48,53,52,57,54,93,44,91,45,56,54,46,53,57,52,50,56,54,44,51,54,46,50,52,53,49,48,53,93,44,91,45,56,54,46,52,53,49,55,50,49,44,51,54,46,51,51,53,54,50,57,93,44,91,45,56,54,46,50,56,51,50,53,54,44,51,54,46,51,52,55,53,93,44,91,45,56,54,46,50,50,56,52,51,52,44,51,54,46,52,56,55,52,55,50,93,44,91,45,56,54,46,50,48,53,51,56,56,44,51,54,46,54,52,48,49,56,52,93,44,91,45,56,54,46,52,49,49,51,55,57,44,51,54,46,54,53,48,57,50,52,93,44,91,45,56,54,46,53,54,51,57,48,57,44,51,54,46,54,51,51,53,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,75,105,110,103,32,97,110,100,32,81,117,101,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,53,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,56,49,52,49,56,44,51,55,46,56,57,49,54,53,52,93,44,91,45,55,55,46,48,51,51,50,55,51,44,51,55,46,55,50,48,56,48,57,93,44,91,45,55,54,46,57,50,55,53,44,51,55,46,54,57,48,52,56,53,93,44,91,45,55,54,46,55,55,55,55,50,57,44,51,55,46,53,53,52,52,52,54,93,44,91,45,55,54,46,55,57,50,49,56,52,44,51,55,46,53,49,55,53,57,52,93,44,91,45,55,54,46,55,52,49,57,56,52,44,51,55,46,52,54,55,48,55,54,93,44,91,45,55,54,46,55,49,50,51,48,53,44,51,55,46,52,51,49,51,48,57,93,44,91,45,55,54,46,54,53,52,48,55,54,44,51,55,46,54,48,51,49,55,52,93,44,91,45,55,54,46,55,53,49,48,55,50,44,51,55,46,55,50,56,54,48,53,93,44,91,45,55,55,46,48,51,53,53,49,50,44,51,55,46,56,54,53,56,49,56,93,44,91,45,55,55,46,48,55,48,49,49,53,44,51,55,46,57,54,52,55,55,93,44,91,45,55,55,46,49,56,49,52,49,56,44,51,55,46,56,57,49,54,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,56,55,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,54,54,54,56,57,44,51,54,46,52,57,56,55,51,53,93,44,91,45,57,51,46,56,54,54,57,54,49,44,51,54,46,51,52,56,53,55,57,93,44,91,45,57,51,46,56,49,53,48,55,56,44,51,54,46,51,48,54,53,53,49,93,44,91,45,57,51,46,54,53,55,54,56,57,44,51,54,46,51,48,51,48,56,50,93,44,91,45,57,51,46,53,53,49,49,51,53,44,51,54,46,49,50,54,50,55,49,93,44,91,45,57,51,46,52,55,57,53,50,56,44,51,54,46,49,50,53,48,55,50,93,44,91,45,57,51,46,51,48,48,56,50,44,51,54,46,49,50,49,53,53,93,44,91,45,57,51,46,50,57,51,52,54,55,44,51,54,46,52,57,56,50,55,54,93,44,91,45,57,51,46,51,49,53,51,51,50,44,51,54,46,52,57,56,49,52,93,44,91,45,57,51,46,53,56,52,50,54,50,44,51,54,46,52,57,57,49,54,55,93,44,91,45,57,51,46,56,54,54,54,56,57,44,51,54,46,52,57,56,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,56,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,56,50,48,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,115,98,111,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,52,56,53,48,57,44,51,56,46,48,54,56,49,48,52,93,44,91,45,55,56,46,56,57,49,55,55,50,44,51,56,46,48,51,57,52,51,56,93,44,91,45,55,56,46,56,54,50,54,55,55,44,51,56,46,48,56,57,57,55,50,93,44,91,45,55,56,46,57,48,51,55,57,53,44,51,56,46,48,57,57,56,48,50,93,44,91,45,55,56,46,57,52,56,53,48,57,44,51,56,46,48,54,56,49,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,48,34,44,34,78,65,77,69,34,58,34,83,105,116,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,51,56,44,34,98,101,100,115,34,58,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,54,46,52,53,52,52,50,55,44,53,55,46,56,51,48,54,55,54,93,44,91,45,49,51,53,46,56,54,52,49,44,53,54,46,57,57,54,55,93,44,91,45,49,51,52,46,56,53,57,50,50,50,44,53,54,46,50,52,52,57,52,50,93,44,91,45,49,51,52,46,54,54,54,51,57,54,44,53,54,46,49,52,55,53,56,54,93,44,91,45,49,51,52,46,54,54,54,54,54,56,44,53,54,46,50,56,51,51,51,52,93,44,91,45,49,51,52,46,52,50,57,50,52,55,44,53,54,46,50,56,50,55,51,55,93,44,91,45,49,51,52,46,52,57,54,50,49,54,44,53,54,46,54,57,57,54,51,49,93,44,91,45,49,51,52,46,53,54,57,50,56,57,44,53,54,46,56,54,51,48,53,50,93,44,91,45,49,51,52,46,54,55,55,50,44,53,54,46,57,57,57,93,44,91,45,49,51,52,46,55,51,56,53,53,54,44,53,55,46,50,50,54,51,48,51,93,44,91,45,49,51,52,46,55,48,49,49,52,49,44,53,55,46,52,53,52,54,49,51,93,44,91,45,49,51,52,46,56,51,54,50,44,53,55,46,55,56,55,55,93,44,91,45,49,51,53,46,50,51,56,49,50,57,44,53,55,46,55,54,49,55,49,49,93,44,91,45,49,51,53,46,53,50,56,53,51,52,44,53,55,46,56,56,48,52,55,93,44,91,45,49,51,53,46,57,48,49,57,54,52,44,53,56,46,48,48,49,51,52,51,93,44,91,45,49,51,54,46,48,50,52,51,50,56,44,53,55,46,56,51,56,55,57,53,93,44,91,45,49,51,54,46,52,53,52,52,50,55,44,53,55,46,56,51,48,54,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,77,117,108,116,110,111,109,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,56,54,52,55,44,34,98,101,100,115,34,58,50,57,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,57,50,57,49,52,54,44,52,53,46,55,50,49,52,56,50,93,44,91,45,49,50,50,46,57,50,57,49,50,56,44,52,53,46,54,51,53,51,49,51,93,44,91,45,49,50,50,46,55,52,51,56,54,50,44,52,53,46,53,49,57,53,48,57,93,44,91,45,49,50,50,46,55,52,51,55,50,49,44,52,53,46,52,51,51,50,57,52,93,44,91,45,49,50,50,46,54,52,49,53,56,44,52,53,46,52,54,49,52,56,50,93,44,91,45,49,50,49,46,56,49,57,53,56,55,44,52,53,46,52,54,49,54,55,53,93,44,91,45,49,50,49,46,57,48,54,54,50,56,44,52,53,46,53,50,49,49,52,55,93,44,91,45,49,50,49,46,57,50,50,48,50,56,44,52,53,46,54,52,57,50,48,53,93,44,91,45,49,50,50,46,50,52,57,50,49,55,44,52,53,46,53,52,56,54,53,51,93,44,91,45,49,50,50,46,52,51,56,54,55,52,44,52,53,46,53,54,51,53,56,53,93,44,91,45,49,50,50,46,55,54,51,56,49,44,52,53,46,54,53,55,49,51,56,93,44,91,45,49,50,50,46,55,54,50,52,51,55,44,52,53,46,55,50,56,54,54,53,93,44,91,45,49,50,50,46,57,50,57,49,52,54,44,52,53,46,55,50,49,52,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,71,114,117,110,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,49,51,53,57,51,44,51,53,46,50,56,57,49,56,57,93,44,91,45,56,53,46,56,55,51,48,50,53,44,51,53,46,50,50,51,51,54,50,93,44,91,45,56,53,46,55,52,48,49,49,51,44,51,53,46,50,49,53,50,57,53,93,44,91,45,56,53,46,54,57,48,52,49,53,44,51,53,46,50,56,54,48,55,53,93,44,91,45,56,53,46,53,53,56,53,53,49,44,51,53,46,51,49,57,50,57,50,93,44,91,45,56,53,46,52,56,53,54,51,53,44,51,53,46,52,48,54,52,51,51,93,44,91,45,56,53,46,54,48,55,51,50,54,44,51,53,46,53,51,49,54,53,49,93,44,91,45,56,53,46,56,55,54,57,54,50,44,51,53,46,53,50,52,48,57,53,93,44,91,45,56,53,46,57,49,51,53,57,51,44,51,53,46,50,56,57,49,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,117,98,98,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,56,54,50,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,56,51,50,49,54,44,52,55,46,52,49,50,55,55,51,93,44,91,45,57,53,46,49,54,57,49,55,50,44,52,55,46,49,53,50,53,49,53,93,44,91,45,57,53,46,49,54,51,48,49,44,52,54,46,56,48,52,55,50,93,44,91,45,57,52,46,55,56,55,49,50,54,44,52,54,46,56,48,51,57,52,51,93,44,91,45,57,52,46,54,53,57,57,52,50,44,52,54,46,56,48,51,55,49,54,93,44,91,45,57,52,46,54,55,48,50,49,52,44,52,55,46,52,49,48,49,53,49,93,44,91,45,57,53,46,49,56,51,50,49,54,44,52,55,46,52,49,50,55,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,83,97,114,103,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,48,54,55,49,53,44,52,54,46,50,56,50,54,50,54,93,44,91,45,57,56,46,48,48,56,49,48,50,44,52,53,46,57,51,53,56,57,54,93,44,91,45,57,55,46,57,55,56,55,55,56,44,52,53,46,57,51,53,56,54,51,93,44,91,45,57,55,46,50,50,56,50,57,49,44,52,53,46,57,51,53,51,56,51,93,44,91,45,57,55,46,50,53,57,54,51,50,44,52,53,46,57,57,55,49,56,53,93,44,91,45,57,55,46,50,56,48,53,54,54,44,52,54,46,50,56,50,51,57,51,93,44,91,45,57,56,46,48,48,54,55,49,53,44,52,54,46,50,56,50,54,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,53,53,56,44,34,98,101,100,115,34,58,52,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,50,54,50,50,56,44,52,52,46,57,57,52,56,54,51,93,44,91,45,55,52,46,57,55,50,52,57,49,44,52,52,46,57,56,51,52,48,53,93,44,91,45,55,53,46,50,55,51,53,52,53,44,52,52,46,56,53,51,48,56,52,93,44,91,45,55,53,46,55,54,54,50,50,54,44,52,52,46,53,49,53,56,52,55,93,44,91,45,55,53,46,56,54,48,48,52,54,44,52,52,46,52,48,51,50,54,51,93,44,91,45,55,53,46,52,52,54,49,50,52,44,52,52,46,50,49,55,54,53,53,93,44,91,45,55,53,46,49,55,48,49,53,57,44,52,52,46,48,57,54,57,53,57,93,44,91,45,55,53,46,48,54,50,55,55,57,44,52,52,46,48,53,48,52,93,44,91,45,55,52,46,56,53,52,49,55,49,44,52,52,46,48,55,48,48,56,57,93,44,91,45,55,52,46,53,51,53,49,53,54,44,52,52,46,48,57,57,50,53,93,44,91,45,55,52,46,53,50,53,54,56,51,44,52,52,46,49,55,48,54,51,54,93,44,91,45,55,52,46,54,52,49,56,55,50,44,52,52,46,57,53,50,54,50,49,93,44,91,45,55,52,46,55,50,54,50,50,56,44,52,52,46,57,57,52,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,82,101,121,110,111,108,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,49,49,56,54,51,44,51,55,46,52,49,53,50,55,55,93,44,91,45,57,49,46,49,50,54,48,50,56,44,51,55,46,49,57,57,52,56,93,44,91,45,57,49,46,48,49,55,55,54,54,44,51,55,46,48,57,53,54,55,55,93,44,91,45,57,48,46,57,54,52,52,54,54,44,51,55,46,48,53,51,53,56,52,93,44,91,45,57,48,46,55,55,57,53,53,51,44,51,55,46,48,53,48,51,50,52,93,44,91,45,57,48,46,55,51,53,52,53,51,44,51,55,46,50,55,49,48,52,93,44,91,45,57,48,46,55,55,50,57,52,57,44,51,55,46,51,55,51,54,53,57,93,44,91,45,57,48,46,55,54,56,54,57,53,44,51,55,46,54,48,51,48,49,49,93,44,91,45,57,49,46,49,53,53,48,55,51,44,51,55,46,53,56,56,48,57,50,93,44,91,45,57,49,46,51,49,50,52,53,56,44,51,55,46,53,57,50,56,50,52,93,44,91,45,57,49,46,51,49,52,50,51,54,44,51,55,46,53,48,53,49,51,50,93,44,91,45,57,49,46,50,49,49,56,54,51,44,51,55,46,52,49,53,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,83,97,99,114,97,109,101,110,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,48,48,50,51,44,34,98,101,100,115,34,58,51,50,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,49,52,49,53,57,53,44,51,56,46,55,49,49,57,51,57,93,44,91,45,49,50,49,46,52,56,52,51,57,54,44,51,56,46,55,51,52,53,57,56,93,44,91,45,49,50,49,46,54,48,50,56,57,52,44,51,56,46,55,51,53,56,51,56,93,44,91,45,49,50,49,46,53,48,50,57,56,50,44,51,56,46,52,52,48,55,49,56,93,44,91,45,49,50,49,46,53,57,51,50,55,51,44,51,56,46,51,49,51,48,56,57,93,44,91,45,49,50,49,46,54,49,53,52,49,51,44,51,56,46,49,57,53,54,57,54,93,44,91,45,49,50,49,46,55,49,51,57,50,54,44,51,56,46,48,56,52,53,52,50,93,44,91,45,49,50,49,46,56,54,50,52,54,50,44,51,56,46,48,54,54,48,51,93,44,91,45,49,50,49,46,55,51,55,56,50,52,44,51,56,46,48,50,54,54,51,93,44,91,45,49,50,49,46,53,56,48,48,50,50,44,51,56,46,48,57,52,52,49,52,93,44,91,45,49,50,49,46,52,55,48,57,53,56,44,51,56,46,50,53,57,57,48,50,93,44,91,45,49,50,49,46,51,52,52,48,50,52,44,51,56,46,50,50,56,50,54,93,44,91,45,49,50,49,46,48,50,55,48,56,52,44,51,56,46,51,48,48,50,53,50,93,44,91,45,49,50,49,46,48,50,55,53,48,55,44,51,56,46,53,48,56,50,57,50,93,44,91,45,49,50,49,46,49,52,49,53,57,53,44,51,56,46,55,49,49,57,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,80,97,117,108,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,55,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,48,51,53,52,52,44,52,49,46,50,53,50,53,54,50,93,44,91,45,56,52,46,56,48,51,50,53,49,44,52,48,46,57,56,57,51,57,52,93,44,91,45,56,52,46,51,57,57,52,56,54,44,52,48,46,57,57,48,51,49,53,93,44,91,45,56,52,46,51,52,49,54,48,50,44,52,49,46,49,54,53,53,50,52,93,44,91,45,56,52,46,52,53,55,50,49,55,44,52,49,46,50,53,51,52,56,53,93,44,91,45,56,52,46,56,48,51,53,52,52,44,52,49,46,50,53,50,53,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,87,101,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,52,55,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,55,51,56,54,49,44,52,48,46,57,49,55,56,50,51,93,44,91,45,56,53,46,51,51,54,48,51,44,52,48,46,57,49,55,48,56,50,93,44,91,45,56,53,46,51,51,52,54,54,55,44,52,48,46,54,53,52,52,49,51,93,44,91,45,56,53,46,52,52,56,56,50,53,44,52,48,46,54,53,51,54,48,55,93,44,91,45,56,53,46,52,52,55,48,49,52,44,52,48,46,53,54,54,57,50,57,93,44,91,45,56,53,46,50,48,49,49,52,54,44,52,48,46,53,54,55,50,52,50,93,44,91,45,56,53,46,48,54,56,52,55,57,44,52,48,46,53,54,56,50,52,93,44,91,45,56,53,46,48,55,51,56,54,49,44,52,48,46,57,49,55,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,49,55,56,49,50,53,44,51,55,46,49,49,51,52,93,44,91,45,56,48,46,51,52,53,51,54,50,44,51,55,46,48,50,54,56,49,56,93,44,91,45,56,48,46,53,52,51,57,51,51,44,51,54,46,57,56,52,54,51,57,93,44,91,45,56,48,46,54,51,51,57,56,55,44,51,54,46,57,51,49,55,56,93,44,91,45,56,48,46,52,54,52,49,56,44,51,54,46,55,48,56,55,49,56,93,44,91,45,56,48,46,51,56,53,51,55,51,44,51,54,46,55,57,56,54,53,56,93,44,91,45,56,48,46,50,51,53,52,53,53,44,51,54,46,56,55,50,49,51,93,44,91,45,56,48,46,49,52,53,56,52,52,44,51,54,46,57,52,57,53,55,56,93,44,91,45,56,48,46,49,50,56,54,55,52,44,51,55,46,49,50,50,57,48,49,93,44,91,45,56,48,46,49,55,56,49,50,53,44,51,55,46,49,49,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,66,97,114,98,97,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,51,55,51,56,44,34,98,101,100,115,34,58,56,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,50,48,46,55,48,50,55,57,53,44,51,52,46,57,57,57,57,55,53,93,44,91,45,49,50,48,46,55,51,51,56,50,44,51,52,46,56,57,54,48,52,49,93,44,91,45,49,50,48,46,54,55,51,50,56,49,44,51,52,46,56,51,56,54,50,52,93,44,91,45,49,50,48,46,54,54,52,54,57,49,44,51,52,46,54,57,54,51,52,52,93,44,91,45,49,50,48,46,55,49,50,55,53,55,44,51,52,46,53,54,56,50,57,55,93,44,91,45,49,50,48,46,53,53,57,52,51,57,44,51,52,46,52,56,56,52,54,54,93,44,91,45,49,50,48,46,52,53,48,57,57,56,44,51,52,46,51,57,49,49,56,52,93,44,91,45,49,50,48,46,50,56,55,49,50,53,44,51,52,46,52,49,55,54,48,57,93,44,91,45,49,50,48,46,48,52,52,56,49,52,44,51,52,46,52,49,50,52,53,52,93,44,91,45,49,49,57,46,56,57,56,53,48,50,44,51,52,46,51,54,48,51,53,56,93,44,91,45,49,49,57,46,55,48,55,53,57,51,44,51,52,46,51,51,55,51,50,52,93,44,91,45,49,49,57,46,54,53,49,51,53,55,44,51,52,46,51,54,54,55,48,56,93,44,91,45,49,49,57,46,53,48,48,57,53,51,44,51,52,46,51,50,54,57,50,50,93,44,91,45,49,49,57,46,52,52,50,50,50,50,44,51,52,46,52,53,53,57,49,93,44,91,45,49,49,57,46,52,52,50,51,53,50,44,51,52,46,57,48,49,50,55,52,93,44,91,45,49,49,57,46,52,55,50,55,53,52,44,51,52,46,57,48,49,49,55,52,93,44,91,45,49,49,57,46,55,52,53,53,54,54,44,51,52,46,57,55,51,54,55,54,93,44,91,45,49,50,48,46,48,57,54,57,51,44,51,53,46,49,48,57,53,57,53,93,44,91,45,49,50,48,46,51,50,55,49,49,53,44,51,52,46,57,56,54,53,50,53,93,44,91,45,49,50,48,46,52,57,54,50,50,50,44,51,52,46,57,57,51,49,53,53,93,44,91,45,49,50,48,46,54,51,52,49,52,52,44,51,52,46,57,53,57,53,54,50,93,44,91,45,49,50,48,46,55,48,50,55,57,53,44,51,52,46,57,57,57,57,55,53,93,93,93,44,91,91,91,45,49,49,57,46,52,54,56,48,54,52,44,51,52,46,48,54,51,49,51,57,93,44,91,45,49,49,57,46,53,54,53,53,50,50,44,51,52,46,49,48,56,56,48,57,93,44,91,45,49,49,57,46,54,53,52,57,51,49,44,51,52,46,48,55,49,50,49,56,93,44,91,45,49,49,57,46,57,50,56,55,57,53,44,51,52,46,49,50,57,57,48,50,93,44,91,45,49,50,48,46,48,48,48,57,54,51,44,51,52,46,48,55,54,56,49,57,93,44,91,45,49,50,48,46,50,53,50,56,52,54,44,51,52,46,48,53,56,48,51,49,93,44,91,45,49,50,48,46,51,54,49,57,55,56,44,51,52,46,49,52,56,55,56,93,44,91,45,49,50,48,46,53,54,48,57,57,56,44,51,52,46,49,52,48,54,54,52,93,44,91,45,49,50,48,46,53,55,51,56,48,56,44,51,52,46,48,55,53,57,54,54,93,44,91,45,49,50,48,46,52,54,54,55,55,55,44,51,51,46,57,55,54,49,49,54,93,44,91,45,49,50,48,46,50,57,56,57,55,51,44,51,51,46,57,54,56,52,53,55,93,44,91,45,49,50,48,46,50,50,49,49,50,56,44,51,51,46,56,56,52,49,56,55,93,44,91,45,49,50,48,46,49,48,52,48,56,56,44,51,51,46,56,52,50,51,57,54,93,44,91,45,49,49,57,46,57,50,56,55,57,57,44,51,51,46,57,48,53,52,55,49,93,44,91,45,49,49,57,46,55,48,55,52,57,49,44,51,51,46,57,49,48,51,56,56,93,44,91,45,49,49,57,46,52,57,50,50,57,44,51,51,46,57,56,51,50,49,53,93,44,91,45,49,49,57,46,52,54,56,48,54,52,44,51,52,46,48,54,51,49,51,57,93,93,93,44,91,91,91,45,49,49,57,46,49,49,55,49,55,52,44,51,51,46,53,48,53,54,93,44,91,45,49,49,57,46,48,55,49,56,57,51,44,51,51,46,52,49,51,55,57,57,93,44,91,45,49,49,56,46,57,56,48,53,49,50,44,51,51,46,52,50,56,53,57,51,93,44,91,45,49,49,56,46,57,56,50,49,52,57,44,51,51,46,53,50,52,50,54,93,44,91,45,49,49,57,46,49,49,55,49,55,52,44,51,51,46,53,48,53,54,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,51,51,52,55,44,51,56,46,50,48,57,53,55,93,44,91,45,56,49,46,57,51,50,52,52,52,44,51,56,46,49,53,48,48,56,53,93,44,91,45,56,49,46,57,51,50,53,48,55,44,51,56,46,48,50,53,51,53,54,93,44,91,45,56,49,46,55,56,53,54,52,49,44,51,55,46,57,51,54,52,48,52,93,44,91,45,56,49,46,55,50,50,49,51,54,44,51,55,46,56,48,57,53,48,55,93,44,91,45,56,49,46,54,48,55,53,51,50,44,51,55,46,55,56,56,55,48,57,93,44,91,45,56,49,46,53,49,52,50,50,56,44,51,55,46,55,57,49,50,49,49,93,44,91,45,56,49,46,53,55,49,51,51,52,44,51,55,46,57,50,56,49,48,55,93,44,91,45,56,49,46,52,53,54,54,51,50,44,51,55,46,57,56,55,51,48,55,93,44,91,45,56,49,46,52,55,56,49,50,50,44,51,56,46,48,54,48,49,51,56,93,44,91,45,56,49,46,54,52,56,53,51,55,44,51,56,46,49,56,53,48,51,54,93,44,91,45,56,49,46,56,51,51,52,55,44,51,56,46,50,48,57,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,53,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,53,50,54,55,57,44,51,52,46,57,57,51,56,54,51,93,44,91,45,56,57,46,50,57,57,50,50,55,44,51,52,46,56,52,52,52,49,53,93,44,91,45,56,57,46,50,57,56,51,51,52,44,51,52,46,53,56,50,57,50,54,93,44,91,45,56,57,46,50,52,53,54,52,53,44,51,52,46,53,56,51,50,51,52,93,44,91,45,56,57,46,48,56,56,52,56,56,44,51,52,46,53,57,56,50,52,55,93,44,91,45,56,57,46,48,56,56,48,54,53,44,51,52,46,56,49,53,51,48,55,93,44,91,45,56,57,46,48,49,55,53,53,49,44,51,52,46,56,53,56,55,50,51,93,44,91,45,56,57,46,48,49,55,49,50,55,44,51,52,46,57,57,52,57,55,49,93,44,91,45,56,57,46,49,57,56,50,56,56,44,51,52,46,57,57,52,52,56,52,93,44,91,45,56,57,46,51,53,50,54,55,57,44,51,52,46,57,57,51,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,67,114,105,116,116,101,110,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,56,51,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,53,56,52,54,54,44,51,55,46,52,48,52,55,53,50,93,44,91,45,56,56,46,50,49,56,57,56,44,51,55,46,50,55,51,49,52,53,93,44,91,45,56,56,46,49,57,51,53,49,57,44,51,55,46,49,52,55,50,53,54,93,44,91,45,56,56,46,48,57,53,55,56,49,44,51,55,46,49,55,57,54,56,52,93,44,91,45,56,56,46,48,56,49,48,53,56,44,51,55,46,50,50,51,51,52,55,93,44,91,45,56,55,46,56,48,49,48,52,54,44,51,55,46,51,55,57,52,52,53,93,44,91,45,56,55,46,57,51,50,57,53,50,44,51,55,46,52,56,48,48,53,50,93,44,91,45,56,56,46,48,54,49,51,51,50,44,51,55,46,53,48,53,51,51,50,93,44,91,45,56,56,46,50,55,57,50,48,55,44,51,55,46,52,53,51,50,57,50,93,44,91,45,56,56,46,51,53,56,52,54,54,44,51,55,46,52,48,52,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,80,97,108,111,32,65,108,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,53,53,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,44,91,45,57,52,46,57,49,51,56,57,44,52,50,46,57,48,57,55,93,44,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,44,91,45,57,52,46,52,52,51,49,51,55,44,52,51,46,50,53,53,48,49,52,93,44,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,82,105,110,103,103,111,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,56,52,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,55,48,55,55,57,44,52,48,46,56,57,57,53,48,50,93,44,91,45,57,52,46,52,55,49,50,49,51,44,52,48,46,53,55,48,56,50,53,93,44,91,45,57,52,46,50,51,50,50,52,44,52,48,46,53,55,49,57,48,49,93,44,91,45,57,52,46,48,49,53,52,57,50,44,52,48,46,53,55,51,57,49,52,93,44,91,45,57,52,46,48,49,52,56,48,51,44,52,48,46,56,57,55,48,51,49,93,44,91,45,57,52,46,52,55,48,55,55,57,44,52,48,46,56,57,57,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,57,53,56,44,34,98,101,100,115,34,58,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,53,52,49,55,50,56,44,51,53,46,56,57,57,56,53,49,93,44,91,45,56,48,46,48,52,54,56,54,57,44,51,53,46,57,50,48,54,57,51,93,44,91,45,56,48,46,48,54,54,56,52,50,44,51,53,46,53,48,53,54,54,49,93,44,91,45,55,57,46,55,54,55,57,53,55,44,51,53,46,53,49,49,52,56,52,93,44,91,45,55,57,46,53,53,53,56,48,52,44,51,53,46,53,49,53,48,51,57,93,44,91,45,55,57,46,53,52,50,52,50,56,44,51,53,46,56,52,51,51,48,51,93,44,91,45,55,57,46,53,52,49,55,50,56,44,51,53,46,56,57,57,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,101,99,105,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,53,49,55,44,34,98,101,100,115,34,58,49,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,56,56,53,57,54,44,51,57,46,55,50,50,49,57,57,93,44,91,45,55,54,46,49,51,53,52,56,52,44,51,57,46,55,50,49,49,52,55,93,44,91,45,55,54,46,50,51,51,50,55,57,44,51,57,46,55,50,49,51,54,55,93,44,91,45,55,54,46,48,52,49,57,55,54,44,51,57,46,52,57,52,50,50,56,93,44,91,45,55,54,46,48,55,57,57,50,53,44,51,57,46,52,48,53,53,48,54,93,44,91,45,55,53,46,57,48,56,48,51,53,44,51,57,46,51,54,52,53,48,49,93,44,91,45,55,53,46,55,54,54,53,57,52,44,51,57,46,51,55,55,53,54,51,93,44,91,45,55,53,46,55,56,56,53,57,54,44,51,57,46,55,50,50,49,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,52,55,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,50,54,53,56,57,44,52,48,46,52,55,54,56,55,54,93,44,91,45,56,55,46,53,51,49,52,52,57,44,52,48,46,49,52,56,49,50,55,93,44,91,45,56,55,46,52,48,54,54,54,55,44,52,48,46,49,50,55,53,48,56,93,44,91,45,56,55,46,50,52,52,56,57,56,44,52,48,46,51,48,57,50,53,50,93,44,91,45,56,55,46,48,57,50,49,52,56,44,52,48,46,51,54,54,54,49,50,93,44,91,45,56,55,46,48,57,51,54,55,54,44,52,48,46,52,55,53,55,52,53,93,44,91,45,56,55,46,53,50,54,53,56,57,44,52,48,46,52,55,54,56,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,53,50,50,50,53,44,52,49,46,55,52,48,51,55,50,93,44,91,45,57,56,46,55,53,49,53,53,56,44,52,49,46,51,57,52,48,56,52,93,44,91,45,57,56,46,55,52,52,51,51,44,52,49,46,51,57,52,49,55,56,93,44,91,45,57,56,46,50,57,49,52,49,57,44,52,49,46,51,57,51,56,57,52,93,44,91,45,57,56,46,50,57,49,51,52,52,44,52,49,46,52,56,48,55,50,55,93,44,91,45,57,56,46,50,57,53,55,54,44,52,49,46,55,52,49,49,55,56,93,44,91,45,57,56,46,55,53,50,50,50,53,44,52,49,46,55,52,48,51,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,56,56,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,44,91,45,57,55,46,51,54,57,49,57,57,44,52,48,46,48,48,49,57,54,54,93,44,91,45,57,54,46,57,49,54,52,48,55,44,52,48,46,48,48,49,53,49,49,93,44,91,45,57,54,46,57,49,54,48,53,53,44,52,48,46,51,52,57,55,50,55,93,44,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,56,56,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,52,48,49,44,52,48,46,54,57,56,54,50,53,93,44,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,44,91,45,57,54,46,57,49,54,48,53,53,44,52,48,46,51,52,57,55,50,55,93,44,91,45,57,54,46,57,49,50,54,51,55,44,52,48,46,53,50,51,54,50,53,93,44,91,45,57,54,46,57,49,51,52,57,51,44,52,48,46,54,57,55,57,52,56,93,44,91,45,57,55,46,51,54,56,52,48,49,44,52,48,46,54,57,56,54,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,75,110,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,52,56,53,52,52,44,51,55,46,53,48,51,49,54,55,93,44,91,45,56,51,46,48,53,48,50,48,49,44,51,55,46,53,50,53,51,49,52,93,44,91,45,56,51,46,49,50,52,51,52,56,44,51,55,46,52,48,52,57,55,51,93,44,91,45,56,51,46,49,48,49,53,54,51,44,51,55,46,50,51,53,52,51,55,93,44,91,45,56,51,46,48,48,48,49,52,50,44,51,55,46,49,57,53,55,49,93,44,91,45,56,50,46,55,51,50,54,57,51,44,51,55,46,50,55,49,53,48,50,93,44,91,45,56,50,46,55,49,48,56,48,53,44,51,55,46,50,56,53,51,50,51,93,44,91,45,56,50,46,56,51,49,52,55,51,44,51,55,46,52,54,54,57,57,93,44,91,45,56,50,46,57,50,53,52,54,44,51,55,46,52,56,54,53,50,53,93,44,91,45,56,50,46,57,52,56,53,52,52,44,51,55,46,53,48,51,49,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,50,49,56,44,34,98,101,100,115,34,58,50,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,53,52,50,50,49,44,52,50,46,48,51,51,48,55,51,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,50,46,48,51,51,53,52,56,93,44,91,45,57,48,46,56,57,56,52,56,52,44,52,49,46,57,52,54,50,52,53,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,49,46,55,55,49,51,57,50,93,44,91,45,57,48,46,55,48,50,49,52,50,44,52,49,46,55,51,55,55,50,56,93,44,91,45,57,48,46,53,51,55,54,49,54,44,52,49,46,55,55,54,51,57,53,93,44,91,45,57,48,46,51,49,54,53,54,50,44,52,49,46,55,50,56,57,50,56,93,44,91,45,57,48,46,50,52,50,51,56,44,52,49,46,55,56,50,57,54,52,93,44,91,45,57,48,46,49,53,49,57,56,44,52,49,46,57,50,56,57,49,55,93,44,91,45,57,48,46,49,53,52,50,50,49,44,52,50,46,48,51,51,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,52,55,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,53,50,53,48,50,44,52,51,46,56,52,55,57,53,51,93,44,91,45,57,53,46,52,53,52,52,51,51,44,52,51,46,53,48,48,54,52,54,93,44,91,45,57,53,46,51,56,55,55,56,55,44,52,51,46,53,48,48,50,50,54,93,44,91,45,57,52,46,57,49,52,53,56,50,44,52,51,46,53,48,48,56,53,51,93,44,91,45,57,52,46,56,53,52,53,53,53,44,52,51,46,53,48,48,57,50,53,93,44,91,45,57,52,46,56,53,52,52,52,52,44,52,51,46,56,52,56,48,57,57,93,44,91,45,57,52,46,56,53,57,51,56,56,44,52,51,46,56,52,56,48,57,51,93,44,91,45,57,53,46,52,53,50,53,48,50,44,52,51,46,56,52,55,57,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,111,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,52,53,57,49,44,52,52,46,49,57,54,55,49,54,93,44,91,45,57,51,46,48,52,53,57,54,54,44,52,51,46,56,52,56,52,54,55,93,44,91,45,57,50,46,54,56,57,51,57,49,44,52,51,46,56,52,56,53,55,93,44,91,45,57,50,46,54,55,56,55,49,55,44,52,52,46,49,57,53,53,49,54,93,44,91,45,57,51,46,48,52,49,49,53,57,44,52,52,46,49,57,54,55,50,54,93,44,91,45,57,51,46,48,52,53,57,49,44,52,52,46,49,57,54,55,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,114,101,101,98,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,50,54,44,34,98,101,100,115,34,58,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,52,56,50,57,44,52,51,46,56,52,56,49,51,57,93,44,91,45,57,51,46,54,52,56,53,51,51,44,52,51,46,52,57,57,54,56,93,44,91,45,57,51,46,52,57,55,51,53,51,44,52,51,46,52,57,57,54,50,50,93,44,91,45,57,51,46,48,52,57,49,57,50,44,52,51,46,52,57,57,55,48,53,93,44,91,45,57,51,46,48,52,57,53,50,52,44,52,51,46,56,52,56,52,52,51,93,44,91,45,57,51,46,52,48,54,54,52,50,44,52,51,46,56,52,56,49,50,93,44,91,45,57,51,46,54,52,56,50,57,44,52,51,46,56,52,56,49,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,97,108,97,118,101,114,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,50,51,53,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,55,50,52,56,52,44,51,56,46,53,48,57,56,54,57,93,44,91,45,49,50,48,46,53,48,52,54,52,44,51,56,46,52,51,57,51,55,56,93,44,91,45,49,50,48,46,54,52,54,54,49,51,44,51,56,46,51,51,52,53,56,54,93,44,91,45,49,50,48,46,57,57,53,52,57,55,44,51,56,46,50,50,53,52,48,50,93,44,91,45,49,50,48,46,57,50,54,52,52,57,44,51,56,46,48,55,55,52,50,49,93,44,91,45,49,50,48,46,54,53,51,50,55,52,44,51,55,46,56,51,49,56,53,56,93,44,91,45,49,50,48,46,53,49,52,57,53,50,44,51,55,46,57,53,51,51,57,93,44,91,45,49,50,48,46,49,55,54,54,49,51,44,51,56,46,51,55,51,53,49,93,44,91,45,49,50,48,46,48,49,57,57,53,49,44,51,56,46,52,51,51,53,50,49,93,44,91,45,49,50,48,46,48,55,50,52,56,52,44,51,56,46,53,48,57,56,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,97,114,110,115,116,97,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,54,57,48,44,34,98,101,100,115,34,58,52,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,55,53,56,52,54,52,44,52,49,46,53,54,48,57,51,49,93,44,91,45,55,48,46,53,48,50,56,51,50,44,52,49,46,53,48,48,54,51,53,93,44,91,45,55,48,46,51,57,53,49,54,52,44,52,49,46,53,53,54,55,50,50,93,44,91,45,55,48,46,49,54,48,51,53,55,44,52,49,46,53,57,57,51,55,93,44,91,45,55,48,46,49,49,52,51,57,52,44,52,49,46,52,56,52,48,56,51,93,44,91,45,54,57,46,57,52,54,54,49,51,44,52,49,46,53,49,50,49,53,50,93,44,91,45,54,57,46,56,54,50,56,55,54,44,52,49,46,54,55,51,49,53,51,93,44,91,45,54,57,46,56,54,54,53,50,53,44,52,49,46,56,49,55,48,49,49,93,44,91,45,54,57,46,57,50,57,49,48,57,44,52,49,46,57,55,56,52,55,54,93,44,91,45,55,48,46,48,49,49,53,57,49,44,52,50,46,48,55,51,51,55,56,93,44,91,45,55,48,46,49,55,50,53,52,50,44,52,50,46,49,51,52,53,49,53,93,44,91,45,55,48,46,51,50,50,53,50,50,44,52,50,46,49,49,55,57,49,53,93,44,91,45,55,48,46,51,53,53,48,48,52,44,52,50,46,48,48,48,49,48,52,93,44,91,45,55,48,46,54,50,49,54,50,50,44,52,49,46,55,52,56,57,55,50,93,44,91,45,55,48,46,55,53,50,52,50,52,44,52,49,46,53,54,53,56,53,49,93,44,91,45,55,48,46,55,53,56,52,54,52,44,52,49,46,53,54,48,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,105,100,100,108,101,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,53,52,48,55,54,44,51,55,46,54,48,51,49,55,52,93,44,91,45,55,54,46,52,51,55,53,54,49,44,51,55,46,53,49,52,51,54,93,44,91,45,55,54,46,49,52,48,56,51,53,44,51,55,46,53,52,50,50,50,93,44,91,45,55,54,46,49,53,49,55,49,49,44,51,55,46,53,56,53,57,54,56,93,44,91,45,55,54,46,51,54,56,50,49,51,44,51,55,46,53,57,52,51,51,49,93,44,91,45,55,54,46,53,51,54,53,56,57,44,51,55,46,54,51,57,49,57,52,93,44,91,45,55,54,46,54,54,56,49,56,50,44,51,55,46,55,55,56,51,56,54,93,44,91,45,55,54,46,55,53,49,48,55,50,44,51,55,46,55,50,56,54,48,53,93,44,91,45,55,54,46,54,53,52,48,55,54,44,51,55,46,54,48,51,49,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,48,56,52,44,34,98,101,100,115,34,58,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,48,56,56,55,56,44,52,49,46,51,51,49,56,54,49,93,44,91,45,55,57,46,50,49,53,50,49,52,44,52,49,46,48,53,48,53,49,53,93,44,91,45,55,57,46,50,49,53,51,49,44,52,48,46,57,49,49,51,52,54,93,44,91,45,55,56,46,56,48,53,49,54,55,44,52,48,46,57,48,53,57,56,93,44,91,45,55,56,46,56,48,52,53,51,50,44,52,49,46,49,51,50,49,56,54,93,44,91,45,55,56,46,55,49,48,50,52,56,44,52,49,46,50,48,49,56,53,57,93,44,91,45,55,56,46,55,51,53,50,56,44,52,49,46,50,54,50,57,49,53,93,44,91,45,55,56,46,57,53,57,49,53,55,44,52,49,46,51,54,50,49,54,49,93,44,91,45,55,57,46,48,57,53,48,57,54,44,52,49,46,51,52,48,54,53,56,93,44,91,45,55,57,46,50,48,56,56,55,56,44,52,49,46,51,51,49,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,54,56,52,57,44,34,98,101,100,115,34,58,49,55,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,50,49,44,52,49,46,55,54,48,56,56,57,93,44,91,45,56,55,46,53,50,51,54,54,49,44,52,49,46,55,53,57,57,48,55,93,44,91,45,56,55,46,53,50,53,55,48,53,44,52,49,46,52,55,48,50,56,51,93,44,91,45,56,55,46,53,50,54,55,51,49,44,52,49,46,50,57,56,48,53,50,93,44,91,45,56,55,46,53,50,54,53,56,55,44,52,49,46,49,54,54,48,57,93,44,91,45,56,55,46,52,49,52,52,50,49,44,52,49,46,49,54,50,50,52,56,93,44,91,45,56,55,46,50,55,53,56,56,50,44,52,49,46,50,49,56,53,57,53,93,44,91,45,56,55,46,50,49,56,56,54,50,44,52,49,46,50,52,50,48,50,55,93,44,91,45,56,55,46,50,50,49,44,52,49,46,55,54,48,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,53,53,56,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,51,57,52,51,54,44,51,53,46,54,56,53,57,93,44,91,45,56,54,46,54,53,56,50,52,55,44,51,53,46,52,51,53,50,56,49,93,44,91,45,56,54,46,53,57,57,52,55,56,44,51,53,46,51,54,52,57,53,93,44,91,45,56,54,46,53,50,53,51,48,54,44,51,53,46,51,53,52,55,49,56,93,44,91,45,56,54,46,52,50,49,54,55,50,44,51,53,46,51,49,57,50,54,55,93,44,91,45,56,54,46,50,53,55,53,57,44,51,53,46,52,49,50,52,55,54,93,44,91,45,56,54,46,50,52,53,49,54,53,44,51,53,46,54,51,49,57,49,51,93,44,91,45,56,54,46,52,49,51,54,55,56,44,51,53,46,54,50,51,49,55,55,93,44,91,45,56,54,46,53,52,51,49,49,54,44,51,53,46,54,57,55,54,49,55,93,44,91,45,56,54,46,54,51,57,52,51,54,44,51,53,46,54,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,49,51,56,56,53,44,51,54,46,52,57,57,52,55,51,93,44,91,45,56,53,46,55,48,52,48,55,53,44,51,54,46,53,50,50,51,57,53,93,44,91,45,56,53,46,52,57,53,52,50,50,44,51,54,46,52,48,51,48,55,52,93,44,91,45,56,53,46,52,51,56,56,48,56,44,51,54,46,53,48,49,49,48,50,93,44,91,45,56,53,46,50,56,52,56,55,56,44,51,54,46,53,51,49,50,57,51,93,44,91,45,56,53,46,50,55,54,50,56,49,44,51,54,46,54,50,54,56,49,54,93,44,91,45,56,53,46,50,57,54,48,48,50,44,51,54,46,54,50,53,55,49,56,93,44,91,45,56,53,46,52,51,54,52,52,50,44,51,54,46,54,49,56,54,53,53,93,44,91,45,56,53,46,55,56,56,55,50,54,44,51,54,46,54,50,50,48,52,56,93,44,91,45,56,53,46,56,49,51,56,56,53,44,51,54,46,52,57,57,52,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,51,54,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,54,54,51,52,55,44,51,57,46,54,56,53,57,55,51,93,44,91,45,56,56,46,48,54,51,53,49,56,44,51,57,46,54,53,50,54,53,55,93,44,91,45,56,56,46,52,55,50,48,55,51,44,51,57,46,54,53,49,53,56,56,93,44,91,45,56,56,46,52,55,48,53,48,53,44,51,57,46,52,52,55,48,52,49,93,44,91,45,56,56,46,52,55,48,56,51,44,51,57,46,51,55,52,53,49,53,93,44,91,45,56,56,46,48,49,50,49,50,49,44,51,57,46,51,55,56,57,54,56,93,44,91,45,56,55,46,57,54,48,49,55,57,44,51,57,46,52,56,49,51,48,57,93,44,91,45,56,55,46,57,54,54,51,52,55,44,51,57,46,54,56,53,57,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,76,97,117,100,101,114,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,57,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,52,52,56,51,56,44,51,53,46,57,48,52,51,53,49,93,44,91,45,56,57,46,55,52,50,54,48,54,44,51,53,46,57,48,54,54,53,51,93,44,91,45,56,57,46,56,50,48,56,55,54,44,51,53,46,55,53,54,56,54,56,93,44,91,45,56,57,46,57,53,48,50,55,55,44,51,53,46,55,51,56,52,57,52,93,44,91,45,56,57,46,57,48,57,55,57,55,44,51,53,46,53,51,55,57,49,52,93,44,91,45,56,57,46,55,57,51,49,52,53,44,51,53,46,54,51,55,51,53,54,93,44,91,45,56,57,46,54,49,50,57,55,54,44,51,53,46,54,52,51,50,51,54,93,44,91,45,56,57,46,53,48,50,49,49,56,44,51,53,46,53,56,48,54,50,49,93,44,91,45,56,57,46,52,48,49,56,48,53,44,51,53,46,56,50,50,54,53,55,93,44,91,45,56,57,46,51,53,54,48,51,51,44,51,53,46,56,49,55,54,51,53,93,44,91,45,56,57,46,51,52,50,56,50,57,44,51,53,46,56,56,48,57,51,52,93,44,91,45,56,57,46,52,48,54,57,54,53,44,51,53,46,57,52,54,53,57,57,93,44,91,45,56,57,46,54,52,52,56,51,56,44,51,53,46,57,48,52,51,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,97,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,56,52,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,50,54,54,48,48,53,44,52,53,46,48,56,48,53,55,93,44,91,45,49,49,55,46,53,54,51,52,56,54,44,52,53,46,48,55,57,52,52,54,93,44,91,45,49,49,55,46,53,54,52,48,51,51,44,52,52,46,57,57,50,56,54,54,93,44,91,45,49,49,55,46,55,55,55,53,48,52,44,52,52,46,57,57,50,49,54,49,93,44,91,45,49,49,55,46,56,52,51,52,51,44,52,53,46,48,53,56,52,55,55,93,44,91,45,49,49,55,46,57,54,56,51,57,52,44,52,52,46,57,57,54,48,48,50,93,44,91,45,49,49,56,46,49,51,49,51,55,49,44,52,53,46,48,52,52,54,57,93,44,91,45,49,49,56,46,50,52,52,54,54,50,44,52,52,46,57,53,56,51,57,54,93,44,91,45,49,49,56,46,51,49,56,55,50,53,44,52,52,46,56,51,54,50,55,57,93,44,91,45,49,49,56,46,50,56,53,52,51,57,44,52,52,46,55,53,48,57,55,53,93,44,91,45,49,49,56,46,53,49,54,52,53,50,44,52,52,46,55,48,50,52,54,50,93,44,91,45,49,49,56,46,51,48,53,55,55,56,44,52,52,46,53,56,56,56,49,93,44,91,45,49,49,56,46,52,50,50,49,55,51,44,52,52,46,52,52,56,57,56,52,93,44,91,45,49,49,56,46,52,48,57,55,55,52,44,52,52,46,51,55,56,54,49,57,93,44,91,45,49,49,56,46,52,57,55,52,57,57,44,52,52,46,50,53,53,50,52,56,93,44,91,45,49,49,56,46,50,51,50,50,49,52,44,52,52,46,50,53,54,49,50,57,93,44,91,45,49,49,56,46,49,53,50,57,52,53,44,52,52,46,50,55,48,54,56,52,93,44,91,45,49,49,55,46,57,55,49,55,56,55,44,52,52,46,52,52,51,56,52,57,93,44,91,45,49,49,55,46,53,57,48,56,52,57,44,52,52,46,52,52,52,53,55,51,93,44,91,45,49,49,55,46,52,56,54,55,52,52,44,52,52,46,51,56,55,50,52,54,93,44,91,45,49,49,55,46,52,56,55,48,49,52,44,52,52,46,51,48,48,51,49,55,93,44,91,45,49,49,55,46,50,50,48,48,52,56,44,52,52,46,51,48,49,52,48,52,93,44,91,45,49,49,55,46,50,50,52,49,48,52,44,52,52,46,52,56,51,55,51,52,93,44,91,45,49,49,55,46,49,52,52,49,54,49,44,52,52,46,53,52,53,54,52,55,93,44,91,45,49,49,55,46,48,52,52,50,49,55,44,52,52,46,55,52,53,49,52,93,44,91,45,49,49,54,46,56,57,57,55,49,49,44,52,52,46,56,52,48,54,48,57,93,44,91,45,49,49,54,46,55,56,51,56,50,57,44,52,53,46,48,55,56,50,54,51,93,44,91,45,49,49,55,46,50,54,54,48,48,53,44,52,53,46,48,56,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,83,99,104,117,121,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,57,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,54,53,48,50,56,44,52,50,46,50,55,56,52,57,53,93,44,91,45,55,54,46,54,49,57,51,48,51,44,52,50,46,50,56,50,56,53,51,93,44,91,45,55,54,46,54,57,49,52,48,54,44,52,50,46,50,56,52,51,48,55,93,44,91,45,55,54,46,54,57,54,54,53,53,44,52,50,46,53,52,54,55,57,93,44,91,45,55,54,46,56,57,53,53,57,54,44,52,50,46,53,52,49,53,51,55,93,44,91,45,55,54,46,56,56,57,56,48,53,44,52,50,46,52,54,51,48,53,52,93,44,91,45,55,55,46,49,48,55,50,48,51,44,52,50,46,52,56,51,55,55,49,93,44,91,45,55,55,46,48,57,57,54,53,55,44,52,50,46,50,55,50,51,53,54,93,44,91,45,55,54,46,57,54,53,48,50,56,44,52,50,46,50,55,56,52,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,86,97,110,32,66,117,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,50,55,50,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,54,52,54,57,55,44,52,50,46,52,50,48,55,49,53,93,44,91,45,56,55,46,48,52,48,48,52,54,44,52,50,46,52,49,54,57,57,51,93,44,91,45,56,55,46,48,56,56,51,51,56,44,52,50,46,50,51,53,51,51,52,93,44,91,45,56,54,46,50,50,51,53,54,51,44,52,50,46,50,52,51,51,55,57,93,44,91,45,56,54,46,50,50,50,57,52,44,52,50,46,48,55,49,52,56,52,93,44,91,45,56,53,46,55,54,50,57,52,51,44,52,50,46,48,54,57,51,50,55,93,44,91,45,56,53,46,55,54,52,54,57,55,44,52,50,46,52,50,48,55,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,57,51,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,55,50,48,55,44,52,49,46,51,51,51,51,54,49,93,44,91,45,57,49,46,49,49,52,49,56,54,44,52,49,46,50,53,48,48,50,57,93,44,91,45,57,48,46,57,56,57,54,54,50,44,52,49,46,49,53,53,55,48,55,93,44,91,45,57,48,46,57,52,57,51,56,49,44,52,49,46,48,55,50,55,49,93,44,91,45,57,48,46,57,52,56,57,56,57,44,52,49,46,48,55,48,50,53,93,44,91,45,57,48,46,55,56,53,49,57,52,44,52,49,46,48,54,56,55,52,57,93,44,91,45,57,48,46,52,51,57,52,50,51,44,52,49,46,48,54,51,57,57,53,93,44,91,45,57,48,46,52,51,55,54,53,50,44,52,49,46,49,53,49,52,54,51,93,44,91,45,57,48,46,52,51,51,55,51,55,44,52,49,46,51,50,54,57,56,57,93,44,91,45,57,49,46,48,55,50,48,55,44,52,49,46,51,51,51,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,56,51,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,48,52,54,50,53,44,51,56,46,50,52,55,54,54,50,93,44,91,45,56,50,46,55,57,52,50,48,54,44,51,56,46,50,52,51,55,55,50,93,44,91,45,56,50,46,57,50,52,56,48,53,44,51,56,46,49,55,53,49,49,52,93,44,91,45,56,50,46,56,56,57,48,53,57,44,51,56,46,49,49,49,53,56,55,93,44,91,45,56,51,46,48,50,50,49,49,53,44,51,56,46,48,48,55,48,52,55,93,44,91,45,56,50,46,57,56,57,48,49,52,44,51,55,46,57,54,51,57,54,56,93,44,91,45,56,50,46,57,52,55,57,51,54,44,51,56,46,48,48,48,52,51,49,93,44,91,45,56,50,46,54,49,50,51,57,51,44,51,55,46,56,55,57,50,55,50,93,44,91,45,56,50,46,52,57,55,55,57,54,44,51,55,46,57,52,53,52,56,56,93,44,91,45,56,50,46,53,52,57,50,52,44,51,56,46,48,54,55,57,53,50,93,44,91,45,56,50,46,54,51,52,55,48,50,44,51,56,46,49,51,54,57,52,49,93,44,91,45,56,50,46,54,48,52,54,50,53,44,51,56,46,50,52,55,54,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,56,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,51,51,57,52,50,44,51,56,46,48,51,51,57,55,52,93,44,91,45,56,51,46,52,57,53,48,56,44,51,55,46,56,54,49,57,48,54,93,44,91,45,56,51,46,50,54,50,49,55,50,44,51,55,46,55,49,50,54,53,55,93,44,91,45,56,51,46,50,55,48,51,56,55,44,51,55,46,55,54,54,56,52,53,93,44,91,45,56,51,46,48,56,57,52,48,57,44,51,55,46,56,57,48,51,52,93,44,91,45,56,51,46,48,48,52,54,52,57,44,51,55,46,56,53,57,50,52,55,93,44,91,45,56,50,46,57,56,57,48,49,52,44,51,55,46,57,54,51,57,54,56,93,44,91,45,56,51,46,48,50,50,49,49,53,44,51,56,46,48,48,55,48,52,55,93,44,91,45,56,51,46,49,57,52,52,52,53,44,51,56,46,48,49,48,54,52,57,93,44,91,45,56,51,46,50,54,51,50,56,57,44,51,56,46,49,49,53,51,56,54,93,44,91,45,56,51,46,52,51,51,57,52,50,44,51,56,46,48,51,51,57,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,77,117,104,108,101,110,98,101,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,48,56,49,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,57,53,57,54,53,44,51,55,46,51,57,49,56,49,57,93,44,91,45,56,55,46,51,56,56,55,48,55,44,51,55,46,50,54,50,49,56,93,44,91,45,56,55,46,51,51,51,55,52,49,44,51,55,46,49,53,55,49,56,54,93,44,91,45,56,55,46,50,53,57,51,55,49,44,51,55,46,48,55,50,52,48,49,93,44,91,45,56,55,46,48,53,51,49,54,52,44,51,55,46,48,54,49,48,49,57,93,44,91,45,56,54,46,57,52,49,51,57,49,44,51,55,46,48,54,56,57,56,49,93,44,91,45,56,54,46,56,57,57,50,54,56,44,51,55,46,50,49,50,51,49,51,93,44,91,45,56,55,46,48,57,57,56,48,51,44,51,55,46,52,49,54,48,52,50,93,44,91,45,56,55,46,50,57,53,57,54,53,44,51,55,46,51,57,49,56,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,69,102,102,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,49,55,52,44,34,98,101,100,115,34,58,49,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,48,53,51,50,53,44,51,57,46,50,49,54,50,54,51,93,44,91,45,56,56,46,56,48,54,55,57,53,44,51,56,46,57,49,49,53,56,53,93,44,91,45,56,56,46,54,57,51,53,51,49,44,51,56,46,57,49,52,54,49,55,93,44,91,45,56,56,46,51,54,49,55,52,53,44,51,56,46,57,49,48,56,52,55,93,44,91,45,56,56,46,51,54,48,54,53,52,44,51,57,46,49,55,49,49,49,56,93,44,91,45,56,56,46,52,55,48,57,48,54,44,51,57,46,50,49,53,48,50,57,93,44,91,45,56,56,46,56,48,53,51,50,53,44,51,57,46,50,49,54,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,111,117,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,54,49,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,54,51,51,56,51,44,51,53,46,56,57,54,57,52,93,44,91,45,56,52,46,53,51,57,57,54,51,44,51,53,46,54,55,48,52,54,53,93,44,91,45,56,52,46,53,56,52,52,55,50,44,51,53,46,54,52,52,52,50,52,93,44,91,45,56,52,46,53,50,53,56,53,44,51,53,46,54,50,52,49,56,54,93,44,91,45,56,52,46,52,56,54,55,53,52,44,51,53,46,54,53,56,51,55,54,93,44,91,45,56,52,46,50,57,57,53,52,57,44,51,53,46,54,53,55,54,55,51,93,44,91,45,56,52,46,49,56,56,51,49,57,44,51,53,46,54,49,48,53,52,57,93,44,91,45,56,52,46,49,54,54,50,54,55,44,51,53,46,56,48,53,49,48,54,93,44,91,45,56,52,46,50,54,51,51,56,51,44,51,53,46,56,57,54,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,55,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,56,49,55,57,50,44,52,53,46,49,53,51,50,57,53,93,44,91,45,57,55,46,57,55,55,55,57,49,44,52,52,46,54,51,49,54,48,50,93,44,91,45,57,55,46,56,53,51,48,50,56,44,52,52,46,53,52,52,51,57,56,93,44,91,45,57,55,46,52,57,50,50,54,54,44,52,52,46,53,52,51,56,56,52,93,44,91,45,57,55,46,52,57,49,51,52,54,44,52,52,46,56,48,52,48,51,53,93,44,91,45,57,55,46,52,57,52,50,53,52,44,52,53,46,49,53,49,54,51,49,93,44,91,45,57,55,46,57,56,49,55,57,50,44,52,53,46,49,53,51,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,72,111,110,111,108,117,108,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,72,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,55,54,51,56,44,34,98,101,100,115,34,58,50,57,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,56,46,51,50,56,54,53,50,44,50,49,46,53,52,54,93,44,91,45,49,53,56,46,49,54,52,51,53,52,44,50,49,46,50,55,50,51,51,53,93,44,91,45,49,53,56,46,49,49,48,48,55,55,44,50,49,46,50,51,55,48,55,49,93,44,91,45,49,53,55,46,56,57,56,54,53,54,44,50,49,46,50,52,57,57,51,57,93,44,91,45,49,53,55,46,56,49,48,50,50,57,44,50,49,46,49,57,57,50,51,56,93,44,91,45,49,53,55,46,54,55,53,55,55,55,44,50,49,46,50,49,51,56,48,49,93,44,91,45,49,53,55,46,54,48,55,54,57,51,44,50,49,46,50,54,57,49,51,52,93,44,91,45,49,53,55,46,54,54,48,57,52,57,44,50,49,46,52,57,54,55,56,57,93,44,91,45,49,53,55,46,55,53,48,57,50,52,44,50,49,46,53,49,54,52,53,56,93,44,91,45,49,53,55,46,57,52,49,55,56,53,44,50,49,46,55,53,52,53,55,57,93,44,91,45,49,53,56,46,48,53,48,49,52,52,44,50,49,46,55,51,57,56,56,49,93,44,91,45,49,53,56,46,49,52,56,56,52,54,44,50,49,46,54,52,49,57,57,57,93,44,91,45,49,53,56,46,51,50,52,50,52,55,44,50,49,46,54,49,53,54,55,53,93,44,91,45,49,53,56,46,51,50,56,54,53,50,44,50,49,46,53,52,54,93,93,93,44,91,91,91,45,49,55,54,46,48,52,51,51,53,52,44,50,55,46,55,57,53,56,57,55,93,44,91,45,49,55,53,46,57,54,57,53,57,56,44,50,55,46,54,57,51,52,48,50,93,44,91,45,49,55,53,46,55,51,52,49,51,52,44,50,55,46,55,51,56,56,53,53,93,44,91,45,49,55,53,46,54,55,48,49,50,56,44,50,55,46,57,52,49,54,48,49,93,44,91,45,49,55,53,46,56,48,54,55,51,51,44,50,56,46,48,48,55,49,57,50,93,44,91,45,49,55,53,46,57,54,54,51,51,53,44,50,55,46,57,50,57,57,49,49,93,44,91,45,49,55,54,46,48,52,51,51,53,52,44,50,55,46,55,57,53,56,57,55,93,93,93,44,91,91,91,45,49,54,54,46,51,56,54,53,51,50,44,50,51,46,56,52,54,51,54,51,93,44,91,45,49,54,54,46,51,49,53,56,50,51,44,50,51,46,55,52,48,49,50,93,44,91,45,49,54,54,46,50,48,53,52,49,53,44,50,51,46,54,57,49,54,48,49,93,44,91,45,49,54,54,46,49,48,54,55,56,44,50,51,46,55,52,50,53,50,50,93,44,91,45,49,54,54,46,49,56,50,51,52,55,44,50,51,46,57,48,50,51,50,53,93,44,91,45,49,54,54,46,51,48,55,48,55,50,44,50,51,46,57,50,52,56,56,51,93,44,91,45,49,54,54,46,51,56,54,53,51,50,44,50,51,46,56,52,54,51,54,51,93,93,93,44,91,91,91,45,49,55,56,46,52,52,51,53,57,51,44,50,56,46,52,49,56,57,56,54,93,44,91,45,49,55,56,46,51,57,53,54,49,44,50,56,46,51,52,49,57,48,49,93,44,91,45,49,55,56,46,50,51,51,48,49,56,44,50,56,46,51,55,53,93,44,91,45,49,55,56,46,50,51,56,52,54,57,44,50,56,46,52,53,54,49,53,93,44,91,45,49,55,56,46,51,49,53,49,50,49,44,50,56,46,53,49,54,51,51,52,93,44,91,45,49,55,56,46,52,52,51,53,57,51,44,50,56,46,52,49,56,57,56,54,93,93,93,44,91,91,91,45,49,55,52,46,48,54,55,51,55,52,44,50,54,46,48,53,57,54,49,52,93,44,91,45,49,55,52,46,48,48,54,52,48,52,44,50,53,46,57,57,48,50,56,57,93,44,91,45,49,55,51,46,57,50,53,57,54,56,44,50,54,46,48,49,57,54,50,55,93,44,91,45,49,55,51,46,57,53,55,57,49,54,44,50,54,46,49,51,53,54,57,93,44,91,45,49,55,52,46,48,54,55,51,55,52,44,50,54,46,48,53,57,54,49,52,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,71,105,108,99,104,114,105,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,50,48,54,48,56,44,50,57,46,56,50,52,49,52,51,93,44,91,45,56,50,46,57,51,55,51,50,57,44,50,57,46,53,57,49,49,57,54,93,44,91,45,56,50,46,54,53,54,51,48,49,44,50,57,46,53,54,52,56,49,49,93,44,91,45,56,50,46,54,53,56,53,53,52,44,50,57,46,56,51,48,49,52,52,93,44,91,45,56,50,46,56,48,48,52,55,55,44,50,57,46,57,51,50,49,50,54,93,44,91,45,56,50,46,56,55,57,56,48,50,44,50,57,46,56,56,54,56,52,55,93,44,91,45,56,50,46,57,48,51,57,53,54,44,50,57,46,56,50,52,50,57,52,93,44,91,45,56,50,46,57,49,56,55,48,56,44,50,57,46,56,50,52,48,56,51,93,44,91,45,56,50,46,57,50,48,54,48,56,44,50,57,46,56,50,52,49,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,84,105,112,112,101,99,97,110,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,57,50,57,52,44,34,98,101,100,115,34,58,52,55,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,57,50,49,52,56,44,52,48,46,51,54,54,54,49,50,93,44,91,45,56,55,46,48,57,50,53,54,51,44,52,48,46,50,49,52,56,48,54,93,44,91,45,56,54,46,54,57,53,54,51,55,44,52,48,46,50,49,52,51,54,55,93,44,91,45,56,54,46,54,57,52,54,54,53,44,52,48,46,52,51,50,49,53,54,93,44,91,45,56,54,46,55,55,49,50,57,51,44,52,48,46,53,54,50,48,56,50,93,44,91,45,56,55,46,48,57,53,51,53,55,44,52,48,46,53,54,50,56,57,53,93,44,91,45,56,55,46,48,57,51,54,55,54,44,52,48,46,52,55,53,55,52,53,93,44,91,45,56,55,46,48,57,50,49,52,56,44,52,48,46,51,54,54,54,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,83,110,121,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,52,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,56,48,48,50,52,50,44,52,48,46,56,56,49,57,57,52,93,44,91,45,55,54,46,57,52,48,55,48,54,44,52,48,46,56,56,56,48,50,51,93,44,91,45,55,55,46,51,53,54,54,50,56,44,52,48,46,56,48,55,51,51,52,93,44,91,45,55,55,46,50,56,55,57,52,49,44,52,48,46,54,57,51,53,57,53,93,44,91,45,55,55,46,48,51,53,53,52,57,44,52,48,46,54,55,54,57,49,56,93,44,91,45,55,54,46,57,51,57,55,52,57,44,52,48,46,54,51,56,51,55,56,93,44,91,45,55,54,46,56,53,53,51,54,50,44,52,48,46,55,50,56,56,50,49,93,44,91,45,55,54,46,56,48,48,50,52,50,44,52,48,46,56,56,49,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,55,34,44,34,78,65,77,69,34,58,34,76,97,109,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,53,51,50,44,34,98,101,100,115,34,58,50,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,52,54,53,51,54,44,51,51,46,56,51,57,56,53,53,93,44,91,45,57,53,46,56,53,55,55,51,56,44,51,51,46,52,54,49,55,50,50,93,44,91,45,57,53,46,54,50,49,48,50,55,44,51,51,46,52,56,55,48,54,93,44,91,45,57,53,46,51,48,56,54,51,55,44,51,51,46,51,56,48,54,54,50,93,44,91,45,57,53,46,51,49,48,52,57,55,44,51,51,46,56,55,55,50,48,52,93,44,91,45,57,53,46,53,51,51,55,57,56,44,51,51,46,56,56,49,49,53,51,93,44,91,45,57,53,46,53,53,50,55,57,57,44,51,51,46,57,50,52,51,49,49,93,44,91,45,57,53,46,55,54,49,53,50,44,51,51,46,56,55,51,49,49,56,93,44,91,45,57,53,46,56,52,54,53,51,54,44,51,51,46,56,51,57,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,54,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,54,34,44,34,78,65,77,69,34,58,34,77,105,97,109,105,45,68,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,49,53,53,49,54,44,34,98,101,100,115,34,58,56,51,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,53,50,50,53,55,44,50,53,46,57,55,52,57,53,54,93,44,91,45,56,48,46,50,57,52,57,55,50,44,50,53,46,57,53,54,55,55,93,44,91,45,56,48,46,54,56,48,48,49,54,44,50,53,46,57,53,54,56,53,55,93,44,91,45,56,48,46,56,55,50,57,51,50,44,50,53,46,57,55,57,52,51,52,93,44,91,45,56,48,46,56,55,51,48,57,54,44,50,53,46,56,48,53,51,55,55,93,44,91,45,56,48,46,56,55,51,49,57,44,50,53,46,51,54,51,57,57,51,93,44,91,45,56,48,46,56,53,56,49,54,55,44,50,53,46,49,55,54,54,48,55,93,44,91,45,56,48,46,55,48,53,51,55,57,44,50,53,46,49,52,57,48,49,55,93,44,91,45,56,48,46,54,53,49,50,55,57,44,50,53,46,49,57,50,53,57,54,93,44,91,45,56,48,46,52,50,57,51,48,54,44,50,53,46,50,51,53,54,54,49,93,44,91,45,56,48,46,51,55,50,49,50,49,44,50,53,46,51,49,48,50,49,53,93,44,91,45,56,48,46,50,54,53,52,55,50,44,50,53,46,51,53,52,50,57,54,93,44,91,45,56,48,46,49,53,48,50,52,55,44,50,53,46,51,49,52,49,52,57,93,44,91,45,56,48,46,48,53,54,48,53,54,44,50,53,46,56,51,55,54,56,56,93,44,91,45,56,48,46,48,53,50,50,53,55,44,50,53,46,57,55,52,57,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,68,117,110,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,51,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,51,52,50,55,56,56,44,52,48,46,51,53,48,52,52,52,93,44,91,45,49,48,50,46,48,53,49,53,56,54,44,52,48,46,51,52,57,50,49,51,93,44,91,45,49,48,50,46,48,53,49,55,52,52,44,52,48,46,48,48,51,48,55,56,93,44,91,45,49,48,49,46,52,49,49,48,50,57,44,52,48,46,48,48,50,53,50,50,93,44,91,45,49,48,49,46,51,50,53,53,49,52,44,52,48,46,48,48,50,55,48,50,93,44,91,45,49,48,49,46,51,50,51,51,53,51,44,52,48,46,51,53,48,53,53,51,93,44,91,45,49,48,49,46,51,52,50,55,56,56,44,52,48,46,51,53,48,52,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,57,34,44,34,78,65,77,69,34,58,34,76,101,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,56,55,51,44,51,49,46,54,49,56,51,56,53,93,44,91,45,57,54,46,50,51,54,54,50,57,44,51,49,46,52,49,51,51,57,50,93,44,91,45,57,54,46,51,49,57,49,54,53,44,51,49,46,51,53,55,49,50,57,93,44,91,45,57,54,46,51,50,55,54,51,44,51,49,46,50,56,52,56,55,54,93,44,91,45,57,54,46,50,52,49,48,50,44,51,48,46,57,55,51,55,51,55,93,44,91,45,57,53,46,57,55,51,56,52,49,44,51,49,46,48,57,50,49,53,93,44,91,45,57,53,46,55,54,52,52,49,44,51,49,46,48,57,52,50,49,49,93,44,91,45,57,53,46,55,50,53,50,50,54,44,51,49,46,50,55,49,48,56,52,93,44,91,45,57,53,46,54,53,53,53,52,53,44,51,49,46,51,50,57,54,52,93,44,91,45,57,53,46,55,51,57,50,55,57,44,51,49,46,53,48,52,48,53,54,93,44,91,45,57,53,46,55,56,55,51,44,51,49,46,54,49,56,51,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,80,105,116,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,51,57,52,52,56,54,44,51,57,46,50,53,54,50,57,57,93,44,91,45,49,48,55,46,50,56,50,52,57,44,51,57,46,49,49,56,55,49,56,93,44,91,45,49,48,55,46,48,54,54,51,50,44,51,57,46,49,49,56,56,48,53,93,44,91,45,49,48,54,46,57,48,56,49,57,54,44,51,56,46,57,57,50,53,55,57,93,44,91,45,49,48,54,46,56,48,49,56,55,52,44,51,56,46,57,55,56,51,48,51,93,44,91,45,49,48,54,46,55,52,48,54,57,53,44,51,57,46,48,52,53,57,48,54,93,44,91,45,49,48,54,46,53,57,57,50,49,52,44,51,56,46,57,57,55,57,57,52,93,44,91,45,49,48,54,46,53,55,55,57,54,54,44,51,57,46,48,53,55,57,48,56,93,44,91,45,49,48,54,46,52,57,51,54,52,57,44,51,57,46,49,57,56,51,50,54,93,44,91,45,49,48,54,46,53,48,50,54,57,44,51,57,46,50,57,56,48,54,55,93,44,91,45,49,48,54,46,52,50,54,52,56,55,44,51,57,46,51,54,49,56,55,49,93,44,91,45,49,48,55,46,49,49,51,52,52,54,44,51,57,46,51,54,54,48,54,54,93,44,91,45,49,48,55,46,52,51,48,57,52,57,44,51,57,46,51,54,54,49,55,56,93,44,91,45,49,48,55,46,51,57,52,52,56,54,44,51,57,46,50,53,54,50,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,71,114,97,110,100,32,70,111,114,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,52,48,48,44,34,98,101,100,115,34,58,52,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,48,51,51,49,51,44,52,56,46,49,57,52,56,52,53,93,44,91,45,57,55,46,56,56,50,48,54,53,44,52,56,46,48,50,48,56,52,52,93,44,91,45,57,55,46,56,56,50,50,55,49,44,52,55,46,54,55,50,49,55,57,93,44,91,45,57,55,46,52,55,50,55,52,53,44,52,55,46,54,55,50,48,53,49,93,44,91,45,57,54,46,56,56,54,56,52,54,44,52,55,46,54,55,50,48,54,51,93,44,91,45,57,55,46,48,53,53,53,57,55,44,52,55,46,57,52,57,49,50,57,93,44,91,45,57,55,46,49,52,54,55,48,51,44,52,56,46,49,55,51,50,50,51,93,44,91,45,57,55,46,49,52,49,50,50,49,44,52,56,46,49,57,51,55,49,50,93,44,91,45,57,55,46,57,48,51,51,49,51,44,52,56,46,49,57,52,56,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,76,97,80,111,114,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,53,53,50,44,34,98,101,100,115,34,58,50,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,51,51,51,51,52,44,52,49,46,55,54,49,48,51,53,93,44,91,45,56,54,46,57,51,48,48,55,57,44,52,49,46,50,51,54,55,57,56,93,44,91,45,56,54,46,55,56,51,52,55,51,44,52,49,46,50,56,53,52,54,53,93,44,91,45,56,54,46,55,48,48,54,51,44,52,49,46,52,48,49,57,56,50,93,44,91,45,56,54,46,53,50,52,55,49,49,44,52,49,46,52,51,50,56,56,54,93,44,91,45,56,54,46,52,56,54,52,51,51,44,52,49,46,53,55,48,53,52,53,93,44,91,45,56,54,46,53,50,52,50,49,55,44,52,49,46,55,53,57,54,53,57,93,44,91,45,56,54,46,57,51,51,51,51,52,44,52,49,46,55,54,49,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,48,57,53,44,34,98,101,100,115,34,58,54,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,49,57,48,51,44,52,48,46,50,49,56,57,51,54,93,44,91,45,56,54,46,50,52,50,55,52,51,44,52,48,46,50,49,53,56,51,52,93,44,91,45,56,54,46,50,52,50,51,54,53,44,52,48,46,49,56,48,55,55,56,93,44,91,45,56,54,46,50,51,57,55,51,57,44,51,57,46,57,50,54,48,53,53,93,44,91,45,56,53,46,57,51,55,53,56,55,44,51,57,46,57,50,55,49,51,55,93,44,91,45,56,53,46,56,54,50,52,56,57,44,51,57,46,57,52,51,54,49,56,93,44,91,45,56,53,46,56,54,49,57,48,51,44,52,48,46,50,49,56,57,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,57,53,34,44,34,78,65,77,69,34,58,34,69,109,112,111,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,56,49,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,53,54,51,56,56,56,44,51,54,46,55,48,51,48,54,55,93,44,91,45,55,55,46,53,53,54,53,50,52,44,51,54,46,54,55,52,56,55,52,93,44,91,45,55,55,46,53,48,57,50,52,54,44,51,54,46,54,56,50,57,57,56,93,44,91,45,55,55,46,53,48,57,51,54,53,44,51,54,46,55,49,54,51,57,56,93,44,91,45,55,55,46,53,54,51,56,56,56,44,51,54,46,55,48,51,48,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,56,53,52,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,52,48,53,56,51,44,51,53,46,57,52,49,57,57,49,93,44,91,45,57,55,46,49,52,49,48,54,54,44,51,53,46,55,50,52,52,48,49,93,44,91,45,57,55,46,49,52,49,52,57,44,51,53,46,52,54,51,57,55,55,93,44,91,45,57,54,46,54,50,52,54,56,49,44,51,53,46,52,54,50,55,48,55,93,44,91,45,57,54,46,54,50,48,56,50,56,44,51,53,46,54,51,57,48,48,53,93,44,91,45,57,54,46,54,49,57,54,53,53,44,51,53,46,57,52,49,53,55,49,93,44,91,45,57,55,46,49,52,48,53,56,51,44,51,53,46,57,52,49,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,71,114,101,101,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,48,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,53,48,56,50,44,51,56,46,54,49,53,49,55,50,93,44,91,45,49,48,50,46,48,52,52,52,55,53,44,51,56,46,50,54,56,55,52,57,93,44,91,45,49,48,50,46,48,52,52,52,54,52,44,51,56,46,50,54,50,52,49,50,93,44,91,45,49,48,49,46,53,54,55,52,56,50,44,51,56,46,50,54,51,49,52,53,93,44,91,45,49,48,49,46,53,54,55,48,57,52,44,51,56,46,54,57,57,54,54,57,93,44,91,45,49,48,50,46,48,52,53,50,49,50,44,51,56,46,54,57,55,53,54,55,93,44,91,45,49,48,50,46,48,52,53,48,56,50,44,51,56,46,54,49,53,49,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,51,53,48,51,56,44,51,50,46,55,52,54,53,51,93,44,91,45,56,53,46,48,56,48,55,56,52,44,51,50,46,54,48,56,48,55,50,93,44,91,45,56,52,46,54,57,52,54,48,51,44,51,50,46,53,56,51,57,52,53,93,44,91,45,56,52,46,55,48,48,53,51,56,44,51,50,46,56,52,52,54,52,93,44,91,45,56,52,46,56,54,49,55,54,56,44,51,50,46,56,55,50,52,57,53,93,44,91,45,56,53,46,49,56,52,49,51,49,44,51,50,46,56,55,48,53,50,53,93,44,91,45,56,53,46,49,51,53,48,51,56,44,51,50,46,55,52,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,49,34,44,34,78,65,77,69,34,58,34,83,99,114,101,118,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,52,49,56,51,49,44,51,51,46,48,52,53,54,53,52,93,44,91,45,56,49,46,55,54,55,53,53,51,44,51,50,46,57,48,57,52,49,49,93,44,91,45,56,49,46,56,54,55,57,51,56,44,51,50,46,54,56,49,49,53,93,44,91,45,56,49,46,56,52,49,48,48,53,44,51,50,46,54,52,57,48,57,51,93,44,91,45,56,49,46,54,56,55,57,50,55,44,51,50,46,53,52,54,48,55,93,44,91,45,56,49,46,53,52,56,48,48,54,44,51,50,46,52,56,57,50,56,54,93,44,91,45,56,49,46,51,56,57,50,48,53,44,51,50,46,53,57,53,52,49,54,93,44,91,45,56,49,46,52,48,53,48,53,52,44,51,50,46,55,52,52,57,53,55,93,44,91,45,56,49,46,52,50,54,52,55,53,44,51,50,46,56,52,48,55,55,51,93,44,91,45,56,49,46,53,52,49,56,51,49,44,51,51,46,48,52,53,54,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,117,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,54,48,54,44,34,98,101,100,115,34,58,50,48,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,50,57,52,48,51,44,49,56,46,52,54,53,54,51,50,93,44,91,45,54,54,46,49,48,56,50,56,49,44,49,56,46,52,51,56,57,48,50,93,44,91,45,54,54,46,48,56,48,52,55,53,44,49,56,46,50,57,55,50,57,53,93,44,91,45,54,54,46,48,54,54,49,48,51,44,49,56,46,51,48,51,51,50,49,93,44,91,45,54,54,46,48,52,49,53,51,53,44,49,56,46,51,49,50,51,52,52,93,44,91,45,54,53,46,57,57,57,53,53,54,44,49,56,46,51,56,48,48,54,53,93,44,91,45,54,54,46,48,51,51,57,55,44,49,56,46,53,49,52,50,54,57,93,44,91,45,54,54,46,49,50,56,57,56,54,44,49,56,46,53,50,52,52,48,51,93,44,91,45,54,54,46,49,50,57,52,48,51,44,49,56,46,52,54,53,54,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,51,51,34,44,34,78,65,77,69,34,58,34,83,116,111,110,101,119,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,53,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,49,55,52,52,57,44,51,51,46,51,57,55,56,54,54,93,44,91,45,49,48,48,46,53,49,57,50,48,56,44,51,50,46,57,54,50,57,50,54,93,44,91,45,49,48,48,46,49,52,52,50,50,52,44,51,50,46,57,53,57,57,55,56,93,44,91,45,57,57,46,57,56,56,56,50,55,44,51,50,46,57,54,48,49,50,49,93,44,91,45,57,57,46,57,57,48,57,56,44,51,51,46,51,57,55,52,48,52,93,44,91,45,49,48,48,46,53,49,55,52,52,57,44,51,51,46,51,57,55,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,51,49,54,44,34,98,101,100,115,34,58,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,49,54,54,52,44,52,49,46,52,50,55,53,54,56,93,44,91,45,56,52,46,50,50,56,52,53,52,44,52,49,46,52,50,55,56,49,93,44,91,45,56,52,46,50,50,56,50,50,50,44,52,49,46,49,54,53,56,54,50,93,44,91,45,56,51,46,56,56,49,49,52,57,44,52,49,46,49,54,55,56,50,52,93,44,91,45,56,51,46,56,56,51,50,51,52,44,52,49,46,52,49,52,53,48,51,93,44,91,45,56,51,46,56,56,50,57,52,51,44,52,49,46,52,56,55,53,52,51,93,44,91,45,56,52,46,51,52,49,57,48,50,44,52,49,46,52,56,53,53,49,57,93,44,91,45,56,52,46,51,52,49,54,54,52,44,52,49,46,52,50,55,53,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,71,114,97,102,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,56,49,49,44,34,98,101,100,115,34,58,53,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,48,51,57,56,50,44,52,52,46,49,53,53,55,51,93,44,91,45,55,50,46,48,51,50,51,50,57,44,52,52,46,48,56,48,56,54,57,93,44,91,45,55,50,46,49,49,54,57,53,54,44,52,51,46,57,57,50,54,51,54,93,44,91,45,55,50,46,50,48,53,50,49,57,44,52,51,46,55,55,48,57,54,52,93,44,91,45,55,50,46,51,48,53,49,51,51,44,52,51,46,54,57,53,51,50,49,93,44,91,45,55,50,46,51,50,57,56,57,57,44,52,51,46,54,48,48,50,49,52,93,44,91,45,55,49,46,57,51,53,51,49,44,52,51,46,53,50,56,56,56,93,44,91,45,55,49,46,55,50,55,53,55,51,44,52,51,46,53,54,51,52,49,49,93,44,91,45,55,49,46,54,52,56,51,52,54,44,52,51,46,54,56,52,53,49,49,93,44,91,45,55,49,46,53,51,49,54,53,56,44,52,51,46,55,54,48,57,55,57,93,44,91,45,55,49,46,53,54,52,54,48,51,44,52,51,46,56,57,51,49,55,50,93,44,91,45,55,49,46,51,54,49,57,54,53,44,52,51,46,57,49,53,57,51,56,93,44,91,45,55,49,46,51,54,54,51,53,53,44,52,52,46,48,54,56,53,50,52,93,44,91,45,55,49,46,52,49,53,56,57,56,44,52,52,46,50,49,50,49,54,57,93,44,91,45,55,49,46,53,55,53,56,49,57,44,52,52,46,50,53,52,53,57,54,93,44,91,45,55,49,46,55,54,53,54,56,52,44,52,52,46,52,48,54,50,57,53,93,44,91,45,55,49,46,56,51,55,56,53,51,44,52,52,46,51,52,55,57,57,51,93,44,91,45,55,49,46,57,56,49,52,50,52,44,52,52,46,51,51,55,51,54,54,93,44,91,45,55,50,46,48,54,56,52,55,56,44,52,52,46,50,55,48,56,48,49,93,44,91,45,55,50,46,48,52,50,57,53,54,44,52,52,46,49,53,54,52,57,55,93,44,91,45,55,50,46,48,51,57,56,50,44,52,52,46,49,53,53,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,50,48,50,44,34,98,101,100,115,34,58,54,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,55,57,54,52,44,51,54,46,57,57,56,57,48,53,93,44,91,45,57,52,46,54,49,56,51,48,55,44,51,54,46,55,54,54,53,54,93,44,91,45,57,52,46,48,54,56,56,57,56,44,51,54,46,55,52,55,56,49,56,93,44,91,45,57,52,46,48,54,50,55,52,44,51,54,46,57,51,49,55,55,53,93,44,91,45,57,52,46,48,53,57,50,49,49,44,51,55,46,48,52,56,49,50,55,93,44,91,45,57,52,46,54,49,55,56,52,57,44,51,55,46,48,53,54,55,57,55,93,44,91,45,57,52,46,54,49,55,57,54,52,44,51,54,46,57,57,56,57,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,80,111,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,56,51,55,51,50,44,51,56,46,50,51,48,51,53,52,93,44,91,45,56,55,46,57,49,48,57,50,52,44,51,56,46,49,54,50,53,53,55,93,44,91,45,56,56,46,48,49,51,49,49,56,44,51,56,46,49,48,51,53,50,55,93,44,91,45,56,56,46,48,49,51,51,53,53,44,51,55,46,56,57,52,56,53,52,93,44,91,45,56,56,46,48,57,51,48,52,57,44,51,55,46,56,57,49,54,48,52,93,44,91,45,56,56,46,48,50,56,48,49,54,44,51,55,46,55,57,57,49,56,56,93,44,91,45,56,55,46,57,48,54,57,51,57,44,51,55,46,56,48,55,53,57,51,93,44,91,45,56,55,46,57,50,55,48,54,56,44,51,55,46,57,48,49,54,56,53,93,44,91,45,56,55,46,55,48,48,55,54,50,44,51,55,46,56,57,55,53,53,54,93,44,91,45,56,55,46,54,56,56,51,55,52,44,51,56,46,49,54,56,52,49,57,93,44,91,45,56,55,46,55,57,57,49,54,57,44,51,56,46,50,50,56,53,56,93,44,91,45,56,55,46,57,56,51,55,51,50,44,51,56,46,50,51,48,51,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,49,34,44,34,78,65,77,69,34,58,34,77,99,77,117,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,48,56,52,56,44,50,56,46,54,52,55,51,48,54,93,44,91,45,57,56,46,56,48,51,51,50,53,44,50,56,46,48,53,55,52,56,93,44,91,45,57,56,46,51,51,52,51,50,51,44,50,56,46,48,53,55,56,93,44,91,45,57,56,46,51,51,53,48,51,49,44,50,56,46,54,49,50,54,53,56,93,44,91,45,57,56,46,51,51,53,48,52,55,44,50,56,46,54,52,56,50,55,53,93,44,91,45,57,56,46,56,48,48,56,52,56,44,50,56,46,54,52,55,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,55,48,56,51,44,51,57,46,51,55,52,53,49,53,93,44,91,45,56,56,46,52,55,48,57,48,54,44,51,57,46,50,49,53,48,50,57,93,44,91,45,56,56,46,51,54,48,54,53,52,44,51,57,46,49,55,49,49,49,56,93,44,91,45,56,56,46,48,48,55,55,54,54,44,51,57,46,49,55,51,57,50,53,93,44,91,45,56,56,46,48,49,50,49,50,49,44,51,57,46,51,55,56,57,54,56,93,44,91,45,56,56,46,52,55,48,56,51,44,51,57,46,51,55,52,53,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,55,34,44,34,78,65,77,69,34,58,34,87,97,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,49,51,50,44,34,98,101,100,115,34,58,49,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,56,50,48,51,51,44,51,51,46,55,56,54,48,53,52,93,44,91,45,56,51,46,57,49,52,56,50,51,44,51,51,46,55,52,52,50,48,51,93,44,91,45,56,51,46,54,56,48,56,57,54,44,51,51,46,53,57,54,57,49,57,93,44,91,45,56,51,46,53,48,53,57,50,56,44,51,51,46,56,49,55,55,54,93,44,91,45,56,51,46,54,52,55,48,51,49,44,51,51,46,57,48,54,49,57,56,93,44,91,45,56,51,46,55,57,57,49,48,52,44,51,51,46,57,50,57,56,52,52,93,44,91,45,56,51,46,57,56,50,48,51,51,44,51,51,46,55,56,54,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,80,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,56,48,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,53,56,53,48,56,44,52,53,46,55,53,57,57,51,50,93,44,91,45,57,53,46,55,52,55,52,48,50,44,52,53,46,52,49,50,51,49,51,93,44,91,45,57,53,46,50,53,53,50,49,51,44,52,53,46,52,49,50,55,51,57,93,44,91,45,57,53,46,49,51,49,55,51,44,52,53,46,52,49,50,52,48,50,93,44,91,45,57,53,46,49,51,57,54,55,44,52,53,46,55,53,56,56,57,49,93,44,91,45,57,53,46,55,53,56,53,48,56,44,52,53,46,55,53,57,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,82,97,112,112,97,104,97,110,110,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,51,48,53,55,52,44,51,56,46,56,54,52,56,54,53,93,44,91,45,55,56,46,50,56,52,56,48,53,44,51,56,46,55,53,57,51,49,53,93,44,91,45,55,56,46,51,51,56,49,55,54,44,51,56,46,54,50,55,51,49,50,93,44,91,45,55,56,46,50,51,49,56,48,51,44,51,56,46,53,51,50,53,51,57,93,44,91,45,55,56,46,49,54,56,55,57,50,44,51,56,46,53,50,51,56,48,57,93,44,91,45,55,55,46,57,51,53,51,53,53,44,51,56,46,54,57,53,56,52,93,44,91,45,55,56,46,49,51,48,53,55,52,44,51,56,46,56,54,52,56,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,109,104,101,114,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,56,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,49,55,50,49,51,49,44,51,55,46,56,48,51,48,57,55,93,44,91,45,55,57,46,50,54,52,54,55,52,44,51,55,46,55,57,52,54,57,52,93,44,91,45,55,57,46,51,52,53,50,51,53,44,51,55,46,54,54,48,54,50,53,93,44,91,45,55,57,46,52,51,54,57,52,55,44,51,55,46,54,49,55,48,53,55,93,44,91,45,55,57,46,51,52,49,54,55,44,51,55,46,53,49,56,48,49,53,93,44,91,45,55,57,46,49,56,53,55,48,50,44,51,55,46,52,54,53,56,50,93,44,91,45,55,57,46,48,56,53,49,50,51,44,51,55,46,51,57,52,56,55,53,93,44,91,45,55,57,46,48,50,49,54,56,55,44,51,55,46,52,50,57,50,52,51,93,44,91,45,55,56,46,56,54,57,50,52,53,44,51,55,46,53,52,50,48,57,50,93,44,91,45,55,56,46,57,54,54,57,50,54,44,51,55,46,54,55,55,48,48,52,93,44,91,45,55,57,46,49,55,50,49,51,49,44,51,55,46,56,48,51,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,86,101,110,116,117,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,56,49,49,50,44,34,98,101,100,115,34,58,49,52,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,49,57,46,53,48,48,57,53,51,44,51,52,46,51,50,54,57,50,50,93,44,91,45,49,49,57,46,51,51,53,57,50,54,44,51,52,46,50,51,55,53,50,51,93,44,91,45,49,49,57,46,50,49,55,57,57,51,44,51,52,46,48,54,50,52,57,49,93,44,91,45,49,49,56,46,57,53,49,55,50,49,44,51,51,46,57,57,50,56,53,56,93,44,91,45,49,49,56,46,57,52,48,57,54,53,44,51,52,46,48,55,52,56,51,93,44,91,45,49,49,56,46,55,56,56,56,56,57,44,51,52,46,49,54,56,50,49,52,93,44,91,45,49,49,56,46,54,54,56,49,53,50,44,51,52,46,49,54,56,49,57,53,93,44,91,45,49,49,56,46,54,51,54,55,56,57,44,51,52,46,50,57,49,56,48,52,93,44,91,45,49,49,56,46,56,56,49,51,54,52,44,51,52,46,55,57,48,54,50,57,93,44,91,45,49,49,57,46,50,52,51,54,52,53,44,51,52,46,56,49,52,49,55,56,93,44,91,45,49,49,57,46,50,55,54,57,52,54,44,51,52,46,56,55,57,54,55,53,93,44,91,45,49,49,57,46,52,52,50,51,53,50,44,51,52,46,57,48,49,50,55,52,93,44,91,45,49,49,57,46,52,52,50,50,50,50,44,51,52,46,52,53,53,57,49,93,44,91,45,49,49,57,46,53,48,48,57,53,51,44,51,52,46,51,50,54,57,50,50,93,93,93,44,91,91,91,45,49,49,57,46,54,51,54,48,54,56,44,51,51,46,50,56,48,55,49,51,93,44,91,45,49,49,57,46,53,55,52,49,57,50,44,51,51,46,49,56,54,52,56,52,93,44,91,45,49,49,57,46,52,51,51,55,49,55,44,51,51,46,49,54,54,57,56,55,93,44,91,45,49,49,57,46,51,54,48,57,50,54,44,51,51,46,50,52,50,48,54,93,44,91,45,49,49,57,46,53,50,53,51,49,51,44,51,51,46,51,51,52,56,54,50,93,44,91,45,49,49,57,46,54,51,54,48,54,56,44,51,51,46,50,56,48,55,49,51,93,93,93,44,91,91,91,45,49,49,57,46,52,54,56,48,54,52,44,51,52,46,48,54,51,49,51,57,93,44,91,45,49,49,57,46,52,57,50,50,57,44,51,51,46,57,56,51,50,49,53,93,44,91,45,49,49,57,46,51,56,48,52,53,54,44,51,51,46,57,53,51,54,49,49,93,44,91,45,49,49,57,46,51,52,50,52,54,50,44,51,52,46,48,54,56,57,54,52,93,44,91,45,49,49,57,46,52,54,56,48,54,52,44,51,52,46,48,54,51,49,51,57,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,56,56,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,53,48,51,56,53,44,51,57,46,49,55,52,56,56,50,93,44,91,45,56,55,46,57,52,53,57,49,57,44,51,56,46,56,53,48,49,52,56,93,44,91,45,56,55,46,57,48,56,49,49,51,44,51,56,46,56,53,48,49,48,55,93,44,91,45,56,55,46,53,51,49,49,52,53,44,51,56,46,56,53,50,53,48,55,93,44,91,45,56,55,46,53,50,50,57,51,57,44,51,56,46,57,48,50,51,57,93,44,91,45,56,55,46,54,50,56,55,57,56,44,51,57,46,49,53,55,53,49,51,93,44,91,45,56,55,46,57,53,48,51,56,53,44,51,57,46,49,55,52,56,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,80,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,57,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,49,57,49,48,48,54,44,51,57,46,48,53,54,48,55,51,93,44,91,45,49,48,54,46,49,48,53,55,53,56,44,51,56,46,57,52,48,51,54,52,93,44,91,45,49,48,54,46,48,50,56,49,51,56,44,51,56,46,57,52,50,56,52,57,93,44,91,45,49,48,53,46,57,48,54,53,56,55,44,51,56,46,56,48,54,57,54,50,93,44,91,45,49,48,53,46,57,54,57,55,53,44,51,56,46,54,57,51,53,53,49,93,44,91,45,49,48,53,46,51,50,57,49,51,52,44,51,56,46,54,57,55,50,48,53,93,44,91,45,49,48,53,46,51,51,48,52,52,52,44,51,57,46,49,50,57,54,56,53,93,44,91,45,49,48,53,46,51,57,55,56,55,53,44,51,57,46,49,50,57,53,54,52,93,44,91,45,49,48,53,46,51,57,56,57,52,57,44,51,57,46,53,54,54,48,53,54,93,44,91,45,49,48,53,46,56,50,57,54,54,50,44,51,57,46,53,54,52,56,54,53,93,44,91,45,49,48,53,46,57,53,49,54,57,56,44,51,57,46,52,49,52,54,49,57,93,44,91,45,49,48,54,46,49,51,53,53,50,57,44,51,57,46,51,55,57,53,52,54,93,44,91,45,49,48,54,46,49,56,51,57,55,50,44,51,57,46,51,48,57,51,53,52,93,44,91,45,49,48,54,46,49,57,49,48,48,54,44,51,57,46,48,53,54,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,76,111,115,32,65,110,103,101,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,57,56,48,53,50,44,34,98,101,100,115,34,58,50,52,48,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,49,56,46,56,56,49,51,54,52,44,51,52,46,55,57,48,54,50,57,93,44,91,45,49,49,56,46,54,51,54,55,56,57,44,51,52,46,50,57,49,56,48,52,93,44,91,45,49,49,56,46,54,54,56,49,53,50,44,51,52,46,49,54,56,49,57,53,93,44,91,45,49,49,56,46,55,56,56,56,56,57,44,51,52,46,49,54,56,50,49,52,93,44,91,45,49,49,56,46,57,52,48,57,54,53,44,51,52,46,48,55,52,56,51,93,44,91,45,49,49,56,46,57,53,49,55,50,49,44,51,51,46,57,57,50,56,53,56,93,44,91,45,49,49,56,46,56,50,52,56,57,51,44,51,51,46,57,52,57,48,52,50,93,44,91,45,49,49,56,46,53,53,55,51,53,54,44,51,51,46,57,56,55,54,55,51,93,44,91,45,49,49,56,46,52,52,51,57,54,56,44,51,51,46,56,51,57,48,53,55,93,44,91,45,49,49,56,46,52,54,54,57,54,50,44,51,51,46,55,50,53,53,50,52,93,44,91,45,49,49,56,46,51,52,53,52,49,53,44,51,51,46,54,54,51,52,50,55,93,44,91,45,49,49,56,46,49,50,53,57,44,51,51,46,54,57,55,49,53,49,93,44,91,45,49,49,56,46,48,53,56,57,49,56,44,51,51,46,56,52,54,49,50,49,93,44,91,45,49,49,55,46,57,55,54,52,57,56,44,51,51,46,57,52,54,48,53,93,44,91,45,49,49,55,46,55,56,51,50,56,55,44,51,51,46,57,52,54,52,49,49,93,44,91,45,49,49,55,46,54,55,56,53,48,49,44,51,52,46,49,54,49,57,57,51,93,44,91,45,49,49,55,46,54,52,54,51,55,52,44,51,52,46,50,56,57,49,55,93,44,91,45,49,49,55,46,54,54,55,50,57,50,44,51,52,46,56,50,50,53,50,54,93,44,91,45,49,49,56,46,56,53,52,48,49,44,51,52,46,56,49,55,51,51,57,93,44,91,45,49,49,56,46,56,56,49,51,54,52,44,51,52,46,55,57,48,54,50,57,93,93,93,44,91,91,91,45,49,49,56,46,54,54,56,50,48,51,44,51,51,46,52,56,53,57,51,55,93,44,91,45,49,49,56,46,53,53,51,51,55,54,44,51,51,46,51,56,48,50,50,54,93,44,91,45,49,49,56,46,53,49,56,48,51,55,44,51,51,46,50,57,54,54,53,93,44,91,45,49,49,56,46,51,50,55,57,57,51,44,51,51,46,50,52,56,48,56,51,93,44,91,45,49,49,56,46,50,54,50,55,52,56,44,51,51,46,51,55,48,52,52,93,44,91,45,49,49,56,46,51,53,57,51,57,51,44,51,51,46,52,54,52,57,50,50,93,44,91,45,49,49,56,46,53,50,51,50,51,54,44,51,51,46,53,51,48,49,53,51,93,44,91,45,49,49,56,46,54,54,56,50,48,51,44,51,51,46,52,56,53,57,51,55,93,93,93,44,91,91,91,45,49,49,56,46,54,55,56,50,48,52,44,51,51,46,48,51,57,55,50,54,93,44,91,45,49,49,56,46,53,51,56,49,57,55,44,51,50,46,56,49,50,55,55,93,44,91,45,49,49,56,46,52,51,54,53,51,56,44,51,50,46,55,53,48,48,52,93,44,91,45,49,49,56,46,51,50,51,56,49,57,44,51,50,46,55,55,51,53,49,52,93,44,91,45,49,49,56,46,50,57,55,50,53,44,51,50,46,56,52,53,48,57,52,93,44,91,45,49,49,56,46,52,52,56,56,54,51,44,51,50,46,57,54,49,55,53,93,44,91,45,49,49,56,46,53,52,50,49,48,51,44,51,51,46,48,55,51,55,56,56,93,44,91,45,49,49,56,46,54,55,56,50,48,52,44,51,51,46,48,51,57,55,50,54,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,89,117,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,56,50,57,44,34,98,101,100,115,34,58,52,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,55,49,57,52,57,55,44,51,50,46,55,49,56,55,51,57,93,44,91,45,49,49,52,46,56,48,57,52,51,55,44,51,50,46,54,49,53,57,56,54,93,44,91,45,49,49,52,46,56,49,51,54,57,50,44,51,50,46,52,57,52,48,54,57,93,44,91,45,49,49,51,46,56,51,54,50,50,54,44,51,50,46,49,57,54,48,55,54,93,44,91,45,49,49,51,46,51,51,51,55,54,55,44,51,50,46,48,51,56,57,50,55,93,44,91,45,49,49,51,46,51,51,51,56,57,52,44,51,50,46,53,48,53,49,56,56,93,44,91,45,49,49,51,46,51,51,53,48,52,56,44,51,51,46,51,55,55,52,54,57,93,44,91,45,49,49,51,46,57,53,55,52,56,57,44,51,51,46,51,55,55,51,54,50,93,44,91,45,49,49,51,46,57,53,55,53,49,52,44,51,51,46,52,54,52,52,49,51,93,44,91,45,49,49,52,46,50,54,56,56,48,56,44,51,51,46,52,54,52,52,48,50,93,44,91,45,49,49,52,46,50,54,56,56,44,51,51,46,48,50,57,57,54,49,93,44,91,45,49,49,52,46,53,49,54,56,52,50,44,51,51,46,48,50,55,56,56,54,93,44,91,45,49,49,52,46,52,54,50,57,50,57,44,51,50,46,57,48,55,57,52,52,93,44,91,45,49,49,52,46,53,50,54,56,53,54,44,51,50,46,55,53,55,48,57,52,93,44,91,45,49,49,52,46,55,49,57,52,57,55,44,51,50,46,55,49,56,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,71,111,114,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,55,57,48,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,54,57,49,53,57,44,51,52,46,53,56,55,49,56,52,93,44,91,45,56,53,46,48,56,54,55,54,49,44,51,52,46,52,48,49,50,54,52,93,44,91,45,56,53,46,48,48,53,55,55,53,44,51,52,46,51,57,50,52,52,54,93,44,91,45,56,52,46,54,53,51,50,51,50,44,51,52,46,52,49,50,53,57,93,44,91,45,56,52,46,54,53,52,51,54,54,44,51,52,46,53,52,56,57,52,54,93,44,91,45,56,52,46,54,53,52,53,50,51,44,51,52,46,53,56,51,49,56,55,93,44,91,45,56,52,46,57,49,51,52,53,54,44,51,52,46,54,51,52,49,50,56,93,44,91,45,56,53,46,48,53,48,52,52,54,44,51,52,46,54,50,50,52,56,50,93,44,91,45,56,53,46,48,54,57,49,53,57,44,51,52,46,53,56,55,49,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,49,52,52,56,53,44,52,50,46,53,54,48,51,48,57,93,44,91,45,57,52,46,56,53,54,54,56,57,44,52,50,46,52,55,51,57,57,54,93,44,91,45,57,52,46,56,53,56,52,49,50,44,52,50,46,50,48,57,54,57,50,93,44,91,45,57,52,46,54,50,56,56,48,54,44,52,50,46,50,48,57,51,57,54,93,44,91,45,57,52,46,51,57,55,53,50,54,44,52,50,46,50,48,57,49,54,49,93,44,91,45,57,52,46,51,57,55,54,55,49,44,52,50,46,52,55,51,51,93,44,91,45,57,52,46,52,52,51,48,50,52,44,52,50,46,53,53,56,56,52,51,93,44,91,45,57,52,46,57,49,52,52,56,53,44,52,50,46,53,54,48,51,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,72,105,103,104,108,97,110,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,48,49,44,34,98,101,100,115,34,58,50,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,54,51,53,51,51,44,50,55,46,54,52,54,54,52,53,93,44,91,45,56,49,46,53,54,52,48,54,50,44,50,55,46,51,52,48,54,52,49,93,44,91,45,56,49,46,53,54,50,54,50,52,44,50,55,46,48,51,51,56,51,53,93,44,91,45,56,49,46,53,54,50,53,51,49,44,50,55,46,48,51,51,54,56,55,93,44,91,45,56,49,46,50,54,55,50,49,54,44,50,55,46,48,51,50,52,55,52,93,44,91,45,56,49,46,50,54,55,54,55,55,44,50,55,46,49,50,49,48,57,55,93,44,91,45,56,49,46,49,54,56,50,56,49,44,50,55,46,49,50,49,55,51,52,93,44,91,45,56,49,46,49,54,57,49,51,56,44,50,55,46,50,48,57,53,56,53,93,44,91,45,56,48,46,57,52,48,54,55,54,44,50,55,46,50,48,53,57,51,57,93,44,91,45,56,49,46,50,48,53,51,56,56,44,50,55,46,52,57,48,50,53,52,93,44,91,45,56,49,46,49,52,50,49,54,52,44,50,55,46,54,52,51,50,51,56,93,44,91,45,56,49,46,53,54,51,53,51,51,44,50,55,46,54,52,54,54,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,56,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,56,48,34,44,34,78,65,77,69,34,58,34,67,111,118,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,48,56,57,57,52,44,51,55,46,55,54,50,53,56,55,93,44,91,45,55,57,46,57,55,56,50,49,52,44,51,55,46,55,54,52,57,55,53,93,44,91,45,55,57,46,57,54,55,48,55,49,44,51,55,46,56,48,51,52,48,53,93,44,91,45,55,57,46,57,57,50,48,53,53,44,51,55,46,55,57,57,56,49,93,44,91,45,56,48,46,48,48,56,57,57,52,44,51,55,46,55,54,50,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,51,55,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,51,54,56,51,53,51,44,52,52,46,50,48,52,48,53,55,93,44,91,45,55,50,46,52,52,51,48,51,50,44,52,52,46,49,50,56,54,54,57,93,44,91,45,55,50,46,53,56,57,56,53,53,44,52,52,46,49,53,57,51,52,51,93,44,91,45,55,50,46,55,52,50,51,48,51,44,52,52,46,48,50,57,54,53,53,93,44,91,45,55,50,46,55,57,49,51,51,54,44,52,51,46,57,54,49,56,53,53,93,44,91,45,55,50,46,55,56,51,50,48,56,44,52,51,46,57,50,56,57,54,55,93,44,91,45,55,50,46,50,48,53,50,49,57,44,52,51,46,55,55,48,57,54,52,93,44,91,45,55,50,46,49,49,54,57,53,54,44,52,51,46,57,57,50,54,51,54,93,44,91,45,55,50,46,48,51,50,51,50,57,44,52,52,46,48,56,48,56,54,57,93,44,91,45,55,50,46,48,51,57,56,50,44,52,52,46,49,53,53,55,51,93,44,91,45,55,50,46,48,52,50,57,53,54,44,52,52,46,49,53,54,52,57,55,93,44,91,45,55,50,46,51,54,56,51,53,51,44,52,52,46,50,48,52,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,99,80,104,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,51,48,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,50,52,50,54,57,44,51,56,46,53,50,50,55,53,53,93,44,91,45,57,55,46,57,50,50,49,51,54,44,51,56,46,49,55,51,55,49,51,93,44,91,45,57,55,46,55,48,49,56,52,49,44,51,56,46,49,55,51,56,49,52,93,44,91,45,57,55,46,51,55,49,55,53,44,51,56,46,49,55,51,54,55,51,93,44,91,45,57,55,46,51,55,49,57,49,49,44,51,56,46,54,48,57,51,53,51,93,44,91,45,57,55,46,57,50,52,55,57,53,44,51,56,46,54,48,57,56,56,93,44,91,45,57,55,46,57,50,52,50,54,57,44,51,56,46,53,50,50,55,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,80,105,110,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,57,55,50,49,44,34,98,101,100,115,34,58,52,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,48,51,57,57,55,54,44,51,51,46,52,54,54,48,49,57,93,44,91,45,49,49,49,46,53,56,48,54,51,52,44,51,51,46,52,54,53,56,93,44,91,45,49,49,49,46,53,56,50,54,51,49,44,51,51,46,50,48,53,52,48,56,93,44,91,45,49,49,50,46,48,56,49,57,52,54,44,51,51,46,50,48,52,54,56,54,93,44,91,45,49,49,50,46,49,57,49,54,48,56,44,51,51,46,50,54,52,54,57,56,93,44,91,45,49,49,50,46,50,48,51,54,50,52,44,51,50,46,53,48,54,55,50,49,93,44,91,45,49,49,49,46,53,54,57,50,53,54,44,51,50,46,53,48,54,55,54,57,93,44,91,45,49,49,48,46,52,53,49,53,50,50,44,51,50,46,53,49,51,57,57,53,93,44,91,45,49,49,48,46,52,52,57,48,50,49,44,51,51,46,49,57,52,53,50,54,93,44,91,45,49,49,48,46,54,51,52,52,49,50,44,51,51,46,49,52,50,51,54,54,93,44,91,45,49,49,48,46,55,56,51,49,51,54,44,51,50,46,57,56,52,54,54,93,44,91,45,49,49,48,46,57,52,54,54,56,52,44,51,51,46,50,53,48,48,53,51,93,44,91,45,49,49,49,46,48,51,57,57,55,54,44,51,51,46,52,54,54,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,51,48,53,44,34,98,101,100,115,34,58,49,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,57,57,53,52,54,44,52,49,46,55,48,53,56,49,54,93,44,91,45,56,52,46,51,56,48,55,51,53,44,52,49,46,53,49,51,57,52,50,93,44,91,45,56,52,46,51,52,49,57,48,50,44,52,49,46,52,56,53,53,49,57,93,44,91,45,56,51,46,56,56,50,57,52,51,44,52,49,46,52,56,55,53,52,51,93,44,91,45,56,51,46,56,56,48,51,57,49,44,52,49,46,55,50,48,50,49,50,93,44,91,45,56,52,46,51,54,48,52,49,54,44,52,49,46,55,48,54,53,56,57,93,44,91,45,56,52,46,51,57,57,53,52,54,44,52,49,46,55,48,53,56,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,97,109,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,52,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,51,56,52,49,51,44,51,55,46,55,52,56,51,53,51,93,44,91,45,49,48,54,46,48,51,57,51,51,49,44,51,55,46,52,48,48,56,53,50,93,44,91,45,49,48,54,46,48,51,56,57,49,50,44,51,55,46,51,53,54,57,53,51,93,44,91,45,49,48,53,46,55,52,51,51,51,57,44,51,55,46,51,53,54,55,57,56,93,44,91,45,49,48,53,46,52,56,53,53,49,54,44,51,55,46,53,55,55,56,57,57,93,44,91,45,49,48,53,46,52,53,55,50,53,53,44,51,55,46,55,53,49,52,54,52,93,44,91,45,49,48,54,46,48,51,56,52,49,51,44,51,55,46,55,52,56,51,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,105,116,114,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,48,56,55,44,34,98,101,100,115,34,58,51,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,55,56,52,51,55,44,50,56,46,54,57,52,50,48,54,93,44,91,45,56,50,46,52,49,56,51,53,51,44,50,56,46,54,57,52,56,53,57,93,44,91,45,56,50,46,50,54,51,48,53,50,44,50,56,46,54,54,55,54,51,52,93,44,91,45,56,50,46,49,55,49,52,48,50,44,50,56,46,55,56,57,56,52,56,93,44,91,45,56,50,46,51,49,49,54,57,55,44,50,56,46,57,54,48,51,57,49,93,44,91,45,56,50,46,52,55,55,54,51,57,44,50,57,46,48,53,50,52,56,52,93,44,91,45,56,50,46,53,51,53,53,57,49,44,50,57,46,48,52,52,56,53,53,93,44,91,45,56,50,46,55,49,49,53,51,44,50,57,46,48,51,48,57,56,56,93,44,91,45,56,50,46,56,52,56,50,52,56,44,50,56,46,57,49,52,53,50,57,93,44,91,45,56,50,46,55,55,56,52,51,55,44,50,56,46,54,57,52,50,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,117,108,101,98,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,52,50,50,55,48,54,44,49,56,46,50,57,48,55,50,56,93,44,91,45,54,53,46,50,56,54,54,56,44,49,56,46,50,50,53,57,57,93,44,91,45,54,53,46,49,57,49,49,51,52,44,49,56,46,50,53,56,56,56,52,93,44,91,45,54,53,46,49,56,49,55,54,50,44,49,56,46,51,53,55,55,50,55,93,44,91,45,54,53,46,51,54,50,53,54,54,44,49,56,46,52,49,57,52,55,50,93,44,91,45,54,53,46,52,50,52,52,51,49,44,49,56,46,51,57,48,56,56,93,44,91,45,54,53,46,52,50,50,55,48,54,44,49,56,46,50,57,48,55,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,68,111,114,97,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,48,56,51,49,51,44,49,56,46,53,50,57,55,56,56,93,44,91,45,54,54,46,51,48,51,54,54,51,44,49,56,46,51,56,52,48,55,55,93,44,91,45,54,54,46,50,53,50,53,53,52,44,49,56,46,51,57,52,49,56,55,93,44,91,45,54,54,46,49,56,55,50,55,49,44,49,56,46,53,50,54,50,55,49,93,44,91,45,54,54,46,51,48,56,51,49,51,44,49,56,46,53,50,57,55,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,54,48,49,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,53,57,55,48,54,44,51,54,46,48,56,54,48,50,52,93,44,91,45,56,54,46,48,49,52,56,52,57,44,51,53,46,57,54,49,48,54,93,44,91,45,56,53,46,56,56,53,49,53,54,44,51,53,46,56,51,57,54,53,56,93,44,91,45,56,53,46,54,56,50,48,57,53,44,51,53,46,56,51,49,50,53,52,93,44,91,45,56,53,46,54,52,52,54,48,52,44,51,54,46,48,49,53,48,53,51,93,44,91,45,56,53,46,56,48,55,52,49,53,44,51,54,46,49,51,49,53,56,50,93,44,91,45,56,54,46,48,53,57,55,48,54,44,51,54,46,48,56,54,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,108,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,50,55,44,34,98,101,100,115,34,58,49,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,55,55,56,50,50,44,52,49,46,51,56,54,52,55,57,93,44,91,45,55,57,46,54,57,52,57,56,52,44,52,49,46,49,55,50,56,54,53,93,44,91,45,55,57,46,54,57,48,55,49,49,44,52,49,46,49,55,48,54,57,49,93,44,91,45,55,57,46,54,54,53,55,54,50,44,52,49,46,48,52,57,49,50,51,93,44,91,45,55,57,46,53,57,55,48,49,51,44,52,48,46,57,57,52,51,56,56,93,44,91,45,55,57,46,51,56,53,53,51,55,44,52,48,46,57,56,57,55,54,54,93,44,91,45,55,57,46,50,49,53,50,49,52,44,52,49,46,48,53,48,53,49,53,93,44,91,45,55,57,46,50,48,56,56,55,56,44,52,49,46,51,51,49,56,54,49,93,44,91,45,55,57,46,50,48,55,49,57,54,44,52,49,46,52,51,48,57,50,50,93,44,91,45,55,57,46,52,48,48,50,54,57,44,52,49,46,52,51,54,49,52,53,93,44,91,45,55,57,46,52,55,55,56,50,50,44,52,49,46,51,56,54,52,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,105,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,50,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,52,57,52,57,50,44,52,52,46,49,57,53,50,51,53,93,44,91,45,57,55,46,56,53,49,49,49,44,52,51,46,56,52,57,56,53,55,93,44,91,45,57,55,46,54,48,56,53,49,55,44,52,51,46,56,52,57,48,53,57,93,44,91,45,57,55,46,51,54,57,52,54,51,44,52,51,46,56,52,56,53,50,54,93,44,91,45,57,55,46,51,55,48,49,49,53,44,52,52,46,49,57,52,57,55,49,93,44,91,45,57,55,46,56,52,57,52,57,50,44,52,52,46,49,57,53,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,74,101,114,97,117,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,57,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,51,49,57,49,44,52,52,46,49,57,54,54,56,55,93,44,91,45,57,56,46,55,48,48,52,53,51,44,52,52,46,49,57,54,55,50,55,93,44,91,45,57,56,46,57,50,53,57,53,51,44,52,52,46,49,57,54,53,55,53,93,44,91,45,57,56,46,57,50,54,57,57,55,44,52,51,46,57,51,53,49,52,51,93,44,91,45,57,56,46,56,48,55,55,55,49,44,52,51,46,57,51,53,50,50,51,93,44,91,45,57,56,46,51,51,49,53,48,56,44,52,51,46,57,51,55,55,48,56,93,44,91,45,57,56,46,51,51,49,57,49,44,52,52,46,49,57,54,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,101,99,97,116,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,53,53,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,57,55,53,55,53,44,51,57,46,52,53,51,50,55,53,93,44,91,45,56,53,46,54,50,57,51,50,55,44,51,57,46,52,53,50,55,53,93,44,91,45,56,53,46,54,56,52,53,49,53,44,51,57,46,51,53,48,48,52,57,93,44,91,45,56,53,46,54,56,54,55,56,51,44,51,57,46,49,51,48,56,53,57,93,44,91,45,56,53,46,53,54,54,51,50,44,51,57,46,49,51,50,55,54,49,93,44,91,45,56,53,46,52,52,48,48,53,52,44,51,57,46,49,57,53,54,49,55,93,44,91,45,56,53,46,50,57,54,53,52,44,51,57,46,50,54,56,50,57,49,93,44,91,45,56,53,46,50,57,55,53,55,53,44,51,57,46,52,53,51,50,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,117,98,111,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,52,49,56,44,34,98,101,100,115,34,58,49,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,55,50,51,54,57,44,51,56,46,53,49,52,55,93,44,91,45,56,55,46,48,55,51,48,54,55,44,51,56,46,50,51,50,53,57,54,93,44,91,45,56,55,46,48,49,55,52,57,44,51,56,46,50,48,51,53,56,93,44,91,45,56,54,46,55,57,49,52,57,55,44,51,56,46,50,48,53,49,51,93,44,91,45,56,54,46,54,55,57,53,49,49,44,51,56,46,50,54,51,48,56,54,93,44,91,45,56,54,46,54,56,49,52,50,52,44,51,56,46,51,57,52,55,54,55,93,44,91,45,56,54,46,54,56,50,51,53,57,44,51,56,46,53,50,54,51,55,56,93,44,91,45,56,54,46,57,50,52,49,56,54,44,51,56,46,53,48,53,51,53,56,93,44,91,45,56,55,46,48,55,50,51,54,57,44,51,56,46,53,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,69,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,51,54,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,48,55,48,49,49,53,44,51,55,46,57,54,52,55,55,93,44,91,45,55,55,46,48,51,53,53,49,50,44,51,55,46,56,54,53,56,49,56,93,44,91,45,55,54,46,55,53,49,48,55,50,44,51,55,46,55,50,56,54,48,53,93,44,91,45,55,54,46,54,54,56,49,56,50,44,51,55,46,55,55,56,51,56,54,93,44,91,45,55,54,46,57,48,48,52,57,44,51,55,46,57,56,50,49,52,50,93,44,91,45,55,54,46,57,51,54,57,53,57,44,51,56,46,48,55,55,48,55,52,93,44,91,45,55,55,46,48,54,49,54,57,53,44,51,56,46,49,54,49,54,51,49,93,44,91,45,55,55,46,49,49,53,57,57,55,44,51,56,46,49,52,57,57,51,49,93,44,91,45,55,55,46,49,55,48,49,44,51,56,46,48,55,57,53,52,51,93,44,91,45,55,55,46,48,55,48,49,49,53,44,51,55,46,57,54,52,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,55,57,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,55,53,54,50,44,51,51,46,56,56,53,50,52,53,93,44,91,45,55,57,46,57,57,53,54,51,56,44,51,51,46,55,54,55,57,48,54,93,44,91,45,55,57,46,57,55,52,51,56,50,44,51,51,46,55,50,49,53,57,93,44,91,45,56,48,46,49,48,49,54,57,55,44,51,51,46,52,57,54,56,57,49,93,44,91,45,55,57,46,57,55,49,57,54,51,44,51,51,46,53,48,48,57,51,55,93,44,91,45,55,57,46,54,55,55,48,49,52,44,51,51,46,51,48,52,57,52,52,93,44,91,45,55,57,46,53,57,48,49,49,44,51,51,46,52,52,51,53,52,93,44,91,45,55,57,46,52,51,53,55,51,51,44,51,51,46,53,55,50,55,48,50,93,44,91,45,55,57,46,52,48,57,51,51,50,44,51,51,46,54,56,56,56,57,93,44,91,45,55,57,46,51,49,55,48,52,49,44,51,51,46,55,55,57,56,55,56,93,44,91,45,55,57,46,51,50,52,51,49,55,44,51,51,46,55,57,57,49,50,51,93,44,91,45,55,57,46,52,57,54,52,56,54,44,51,51,46,55,55,53,51,53,55,93,44,91,45,55,57,46,55,57,56,51,55,44,51,51,46,56,51,53,53,54,50,93,44,91,45,55,57,46,56,55,53,54,50,44,51,51,46,56,56,53,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,69,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,55,53,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,51,56,54,51,54,44,52,52,46,53,52,54,56,52,52,93,44,91,45,55,51,46,52,57,55,53,54,55,44,52,52,46,52,56,54,50,51,93,44,91,45,55,51,46,57,48,57,54,56,55,44,52,52,46,52,50,57,54,57,57,93,44,91,45,55,52,46,49,52,49,52,50,52,44,52,52,46,52,48,55,50,54,56,93,44,91,45,55,52,46,48,57,51,52,57,44,52,52,46,49,51,55,54,49,53,93,44,91,45,55,52,46,50,56,49,56,55,44,52,52,46,49,50,48,53,53,50,93,44,91,45,55,52,46,50,53,53,57,57,56,44,52,51,46,57,54,57,55,57,55,93,44,91,45,55,52,46,51,51,54,56,50,54,44,52,51,46,57,50,53,50,50,51,93,44,91,45,55,52,46,50,49,51,55,51,52,44,52,51,46,56,49,48,56,55,53,93,44,91,45,55,52,46,48,53,55,48,48,53,44,52,51,46,55,52,52,53,49,51,93,44,91,45,55,51,46,52,51,56,49,50,44,52,51,46,56,48,51,54,56,55,93,44,91,45,55,51,46,51,55,57,50,56,49,44,52,51,46,56,48,56,52,56,49,93,44,91,45,55,51,46,52,51,55,57,48,53,44,52,52,46,48,52,53,49,50,53,93,44,91,45,55,51,46,51,57,48,54,50,53,44,52,52,46,49,57,49,48,54,56,93,44,91,45,55,51,46,51,49,51,50,56,51,44,52,52,46,50,54,52,49,51,93,44,91,45,55,51,46,50,57,54,48,53,50,44,52,52,46,52,50,56,51,51,52,93,44,91,45,55,51,46,51,51,56,54,51,54,44,52,52,46,53,52,54,56,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,87,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,57,55,51,53,51,44,52,51,46,52,57,57,54,50,50,93,44,91,45,57,51,46,52,57,55,54,51,53,44,52,51,46,50,53,53,52,54,56,93,44,91,45,57,51,46,48,50,52,49,52,51,44,52,51,46,50,53,53,53,51,56,93,44,91,45,57,51,46,48,50,52,51,52,53,44,52,51,46,52,57,57,55,51,51,93,44,91,45,57,51,46,48,52,57,49,57,50,44,52,51,46,52,57,57,55,48,53,93,44,91,45,57,51,46,52,57,55,51,53,51,44,52,51,46,52,57,57,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,117,103,104,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,52,49,51,54,56,44,51,53,46,50,57,48,49,50,50,93,44,91,45,57,54,46,52,57,48,52,51,52,44,51,53,46,49,49,53,56,53,55,93,44,91,45,57,54,46,52,57,48,55,56,54,44,51,52,46,57,49,48,53,56,53,93,44,91,45,57,54,46,52,49,51,55,56,49,44,51,52,46,57,49,53,54,49,57,93,44,91,45,57,54,46,52,48,54,52,56,51,44,51,52,46,55,54,55,51,50,56,93,44,91,45,57,54,46,48,57,50,48,48,49,44,51,52,46,55,54,55,52,55,57,93,44,91,45,57,54,46,48,56,56,55,57,50,44,51,53,46,48,52,57,56,55,53,93,44,91,45,57,53,46,57,56,51,48,55,55,44,51,53,46,49,53,49,54,57,53,93,44,91,45,57,53,46,57,56,49,53,49,49,44,51,53,46,50,56,57,55,56,93,44,91,45,57,54,46,52,52,49,51,54,56,44,51,53,46,50,57,48,49,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,66,117,99,104,97,110,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,51,56,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,49,52,49,57,53,44,51,55,46,50,57,54,48,55,53,93,44,91,45,56,50,46,49,52,57,51,55,53,44,51,55,46,48,52,49,54,52,49,93,44,91,45,56,49,46,57,48,48,56,57,50,44,51,55,46,49,52,50,53,53,51,93,44,91,45,56,49,46,55,52,48,49,50,52,44,51,55,46,50,51,55,55,53,50,93,44,91,45,56,49,46,56,53,51,53,53,51,44,51,55,46,50,56,55,55,48,54,93,44,91,45,56,49,46,57,57,54,53,55,56,44,51,55,46,52,55,54,55,48,53,93,44,91,45,56,49,46,57,50,55,54,56,49,44,51,55,46,53,49,50,49,49,51,93,44,91,45,56,49,46,57,54,56,48,49,50,44,51,55,46,53,51,56,48,51,53,93,44,91,45,56,50,46,51,49,52,49,57,53,44,51,55,46,50,57,54,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,104,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,56,54,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,53,54,48,53,54,44,51,55,46,57,53,49,57,53,57,93,44,91,45,56,48,46,49,54,50,50,48,50,44,51,55,46,56,55,53,49,50,50,93,44,91,45,56,48,46,50,57,54,49,51,56,44,51,55,46,54,57,49,55,56,51,93,44,91,45,56,48,46,50,50,48,57,56,52,44,51,55,46,54,50,55,55,54,55,93,44,91,45,56,48,46,49,52,52,51,57,52,44,51,55,46,53,57,54,54,50,55,93,44,91,45,56,48,46,48,50,48,53,53,52,44,51,55,46,54,52,55,52,52,50,93,44,91,45,55,57,46,56,49,54,54,56,53,44,51,55,46,56,48,48,57,54,52,93,44,91,45,55,57,46,54,55,52,49,54,50,44,51,55,46,55,54,51,48,57,51,93,44,91,45,55,57,46,54,52,55,53,56,57,44,51,55,46,56,55,52,53,51,56,93,44,91,45,55,57,46,56,56,55,51,50,57,44,51,55,46,56,57,50,57,55,49,93,44,91,45,55,57,46,57,51,53,51,54,52,44,51,55,46,57,53,52,51,54,53,93,44,91,45,56,48,46,48,53,54,48,53,54,44,51,55,46,57,53,49,57,53,57,93,93,44,91,91,45,56,48,46,48,48,56,57,57,52,44,51,55,46,55,54,50,53,56,55,93,44,91,45,55,57,46,57,57,50,48,53,53,44,51,55,46,55,57,57,56,49,93,44,91,45,55,57,46,57,54,55,48,55,49,44,51,55,46,56,48,51,52,48,53,93,44,91,45,55,57,46,57,55,56,50,49,52,44,51,55,46,55,54,52,57,55,53,93,44,91,45,56,48,46,48,48,56,57,57,52,44,51,55,46,55,54,50,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,76,111,119,110,100,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,52,51,55,44,34,98,101,100,115,34,58,51,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,52,56,57,49,54,44,51,51,46,55,52,52,57,55,55,93,44,91,45,56,56,46,53,49,51,57,49,55,44,51,51,46,54,53,48,50,48,57,93,44,91,45,56,56,46,52,57,50,53,48,52,44,51,51,46,53,52,51,49,53,52,93,44,91,45,56,56,46,54,55,49,50,53,44,51,51,46,53,48,54,49,54,56,93,44,91,45,56,56,46,54,54,57,48,55,54,44,51,51,46,50,56,54,57,50,50,93,44,91,45,56,56,46,51,48,52,52,51,52,44,51,51,46,50,56,56,51,50,93,44,91,45,56,56,46,50,55,52,54,49,57,44,51,51,46,53,51,52,48,48,56,93,44,91,45,56,56,46,50,52,56,57,49,54,44,51,51,46,55,52,52,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,55,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,56,51,56,51,57,44,51,56,46,56,49,53,52,48,54,93,44,91,45,56,53,46,55,57,53,51,53,55,44,51,56,46,56,48,55,53,48,56,93,44,91,45,56,53,46,56,56,56,51,51,52,44,51,56,46,55,51,52,52,52,51,93,44,91,45,56,53,46,56,52,55,56,57,51,44,51,56,46,53,54,49,50,54,57,93,44,91,45,56,53,46,55,57,51,53,56,52,44,51,56,46,54,48,52,56,49,52,93,44,91,45,56,53,46,53,54,57,57,56,44,51,56,46,54,48,54,49,53,53,93,44,91,45,56,53,46,53,55,48,57,51,44,51,56,46,54,55,56,55,48,54,93,44,91,45,56,53,46,54,56,51,51,51,56,44,51,56,46,55,51,54,55,51,49,93,44,91,45,56,53,46,54,56,51,56,51,57,44,51,56,46,56,49,53,52,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,80,114,111,119,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,53,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,52,52,55,53,44,51,56,46,50,54,56,55,52,57,93,44,91,45,49,48,50,46,55,52,50,51,51,44,51,56,46,50,54,54,57,55,49,93,44,91,45,49,48,50,46,55,52,55,54,49,53,44,51,55,46,54,52,51,54,52,50,93,44,91,45,49,48,50,46,48,52,49,53,56,53,44,51,55,46,54,52,52,50,56,50,93,44,91,45,49,48,50,46,48,52,50,49,53,53,44,51,55,46,55,51,56,53,52,49,93,44,91,45,49,48,50,46,48,52,52,52,54,52,44,51,56,46,50,54,50,52,49,50,93,44,91,45,49,48,50,46,48,52,52,52,55,53,44,51,56,46,50,54,56,55,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,51,53,34,44,34,78,65,77,69,34,58,34,83,117,116,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,54,53,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,54,50,51,52,44,51,48,46,55,49,48,51,54,54,93,44,91,45,49,48,48,46,57,54,48,53,56,55,44,51,48,46,55,48,54,48,55,49,93,44,91,45,49,48,48,46,57,54,48,54,52,51,44,51,48,46,50,56,55,55,55,54,93,44,91,45,49,48,48,46,55,48,48,51,57,51,44,51,48,46,50,56,56,50,55,54,93,44,91,45,49,48,48,46,49,49,54,52,54,49,44,51,48,46,50,57,48,50,57,54,93,44,91,45,49,48,48,46,49,49,54,50,51,52,44,51,48,46,55,49,48,51,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,83,97,98,97,110,97,32,71,114,97,110,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,57,55,55,56,53,53,44,49,56,46,49,52,51,55,57,57,93,44,91,45,54,54,46,57,56,51,51,51,55,44,49,56,46,48,53,50,53,49,56,93,44,91,45,54,54,46,57,53,56,55,52,56,44,49,56,46,48,51,50,52,55,55,93,44,91,45,54,54,46,56,56,52,54,53,51,44,49,56,46,48,50,52,56,49,54,93,44,91,45,54,54,46,57,50,54,53,49,55,44,49,56,46,49,53,49,50,54,55,93,44,91,45,54,54,46,57,55,55,56,53,53,44,49,56,46,49,52,51,55,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,117,115,107,111,103,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,48,56,52,44,34,98,101,100,115,34,58,51,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,49,50,57,53,51,44,51,53,46,53,53,49,55,51,56,93,44,91,45,57,53,46,51,52,52,55,57,57,44,51,53,46,53,53,49,55,53,49,93,44,91,45,57,53,46,51,52,52,55,54,54,44,51,53,46,50,57,51,48,51,53,93,44,91,45,57,53,46,49,55,49,55,54,51,44,51,53,46,51,48,53,53,53,51,93,44,91,45,57,53,46,48,52,57,57,51,51,44,51,53,46,52,53,56,56,57,52,93,44,91,45,57,53,46,49,51,50,50,55,49,44,51,53,46,53,50,54,48,53,53,93,44,91,45,57,53,46,49,50,55,50,49,51,44,51,53,46,54,51,56,56,56,56,93,44,91,45,57,53,46,49,50,55,49,54,51,44,51,53,46,56,49,50,55,53,53,93,44,91,45,57,53,46,50,54,53,54,55,57,44,51,53,46,56,49,51,50,54,54,93,44,91,45,57,53,46,54,51,57,55,55,57,44,51,53,46,55,57,49,56,48,55,93,44,91,45,57,53,46,55,54,54,49,49,52,44,51,53,46,56,53,54,50,56,52,93,44,91,45,57,53,46,55,49,51,48,56,49,44,51,53,46,55,50,53,56,48,55,93,44,91,45,57,53,46,55,49,50,57,53,51,44,51,53,46,53,53,49,55,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,104,114,105,115,116,105,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,50,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,49,48,49,50,54,44,51,54,46,57,57,53,56,49,93,44,91,45,57,51,46,51,51,55,52,53,49,44,51,54,46,57,57,50,52,57,52,93,44,91,45,57,51,46,51,48,52,51,53,57,44,51,54,46,56,49,54,56,54,54,93,44,91,45,57,50,46,57,48,57,51,51,54,44,51,54,46,56,48,57,49,55,56,93,44,91,45,57,50,46,57,48,51,50,55,51,44,51,55,46,48,55,48,54,53,49,93,44,91,45,57,51,46,48,54,53,50,55,52,44,51,55,46,48,56,56,54,57,52,93,44,91,45,57,51,46,54,48,56,56,57,57,44,51,55,46,48,57,56,49,53,51,93,44,91,45,57,51,46,54,49,48,49,50,54,44,51,54,46,57,57,53,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,105,97,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,51,51,54,50,51,44,49,56,46,51,53,49,51,51,51,93,44,91,45,54,54,46,53,57,48,55,56,53,44,49,56,46,51,51,56,48,54,93,44,91,45,54,54,46,54,48,54,57,56,57,44,49,56,46,51,50,56,49,56,54,93,44,91,45,54,54,46,53,54,54,54,50,44,49,56,46,50,57,56,53,52,57,93,44,91,45,54,54,46,53,52,51,49,51,51,44,49,56,46,49,54,51,48,57,56,93,44,91,45,54,54,46,52,53,53,55,48,51,44,49,56,46,50,53,55,55,50,54,93,44,91,45,54,54,46,52,54,51,50,49,49,44,49,56,46,51,55,49,52,55,51,93,44,91,45,54,54,46,53,51,51,54,50,51,44,49,56,46,51,53,49,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,97,109,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,50,50,51,44,34,98,101,100,115,34,58,50,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,53,52,50,49,50,44,51,49,46,52,51,51,56,48,53,93,44,91,45,56,57,46,54,53,52,48,51,56,44,51,49,46,48,48,50,53,48,50,93,44,91,45,56,57,46,52,55,54,48,50,50,44,51,48,46,57,56,50,57,48,49,93,44,91,45,56,57,46,51,52,56,57,53,44,51,49,46,48,49,48,51,55,93,44,91,45,56,57,46,51,52,55,56,54,51,44,51,49,46,51,52,54,55,93,44,91,45,56,57,46,52,53,49,48,55,51,44,51,49,46,51,52,54,51,56,51,93,44,91,45,56,57,46,52,53,49,54,49,54,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,53,56,54,56,49,57,44,51,49,46,52,51,51,54,56,56,93,44,91,45,56,57,46,54,53,52,50,49,50,44,51,49,46,52,51,51,56,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,82,105,112,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,52,48,48,53,52,44,51,57,46,49,57,53,54,49,55,93,44,91,45,56,53,46,52,52,52,56,57,55,44,51,56,46,57,49,50,57,57,56,93,44,91,45,56,53,46,50,48,51,49,54,54,44,51,56,46,57,49,51,56,48,51,93,44,91,45,56,53,46,49,51,53,56,51,50,44,51,56,46,57,50,57,53,55,56,93,44,91,45,56,53,46,49,51,50,53,48,56,44,51,56,46,57,52,56,48,53,53,93,44,91,45,56,53,46,48,54,53,53,55,52,44,51,57,46,51,48,55,50,51,50,93,44,91,45,56,53,46,50,57,54,53,52,44,51,57,46,50,54,56,50,57,49,93,44,91,45,56,53,46,52,52,48,48,53,52,44,51,57,46,49,57,53,54,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,55,48,44,34,98,101,100,115,34,58,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,53,55,48,51,49,44,52,55,46,50,54,52,56,57,53,93,44,91,45,49,48,49,46,51,52,53,55,51,53,44,52,55,46,50,57,49,56,57,55,93,44,91,45,49,48,49,46,52,52,48,49,51,57,44,52,55,46,52,55,55,50,57,57,93,44,91,45,49,48,49,46,52,51,54,53,50,49,44,52,55,46,53,54,52,49,53,55,93,44,91,45,49,48,49,46,56,57,50,48,49,55,44,52,55,46,53,48,53,49,51,51,93,44,91,45,49,48,50,46,48,51,54,54,52,56,44,52,55,46,53,55,50,55,48,53,93,44,91,45,49,48,50,46,50,48,53,51,53,44,52,55,46,53,55,52,53,48,54,93,44,91,45,49,48,50,46,50,48,53,53,53,54,44,52,55,46,51,50,56,48,55,49,93,44,91,45,49,48,50,46,49,52,52,52,53,51,44,52,55,46,51,50,56,48,55,57,93,44,91,45,49,48,50,46,49,52,52,55,55,49,44,52,55,46,48,49,48,51,48,55,93,44,91,45,49,48,50,46,48,57,53,57,48,52,44,52,54,46,57,56,49,51,50,57,93,44,91,45,49,48,49,46,55,54,52,51,57,50,44,52,54,46,57,56,49,51,48,54,93,44,91,45,49,48,49,46,55,54,52,54,52,55,44,52,55,46,50,52,49,53,49,56,93,44,91,45,49,48,49,46,50,53,55,54,51,51,44,52,55,46,50,52,49,51,52,51,93,44,91,45,49,48,49,46,50,53,55,48,51,49,44,52,55,46,50,54,52,56,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,72,97,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,48,53,49,54,51,56,44,51,52,46,52,57,51,55,48,50,93,44,91,45,56,51,46,49,49,51,51,54,44,51,52,46,50,55,51,53,51,93,44,91,45,56,51,46,48,55,56,48,48,52,44,51,52,46,50,50,51,54,48,54,93,44,91,45,56,50,46,57,56,48,57,48,53,44,51,52,46,50,49,49,53,48,53,93,44,91,45,56,50,46,55,55,51,52,49,44,51,52,46,50,56,56,56,54,52,93,44,91,45,56,50,46,56,54,52,52,44,51,52,46,52,53,57,55,56,53,93,44,91,45,56,50,46,57,57,50,50,51,50,44,51,52,46,52,55,57,50,53,56,93,44,91,45,56,51,46,48,53,49,54,51,56,44,51,52,46,52,57,51,55,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,50,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,55,55,49,57,55,44,51,50,46,52,53,51,52,53,53,93,44,91,45,57,50,46,55,55,52,57,51,54,44,51,50,46,50,51,55,48,53,53,93,44,91,45,57,50,46,56,49,52,55,51,55,44,51,50,46,49,52,54,57,48,55,93,44,91,45,57,50,46,51,49,50,50,49,56,44,51,50,46,49,52,54,49,50,51,93,44,91,45,57,50,46,51,49,49,56,53,49,44,51,50,46,50,55,55,52,52,49,93,44,91,45,57,50,46,52,49,53,52,49,56,44,51,50,46,52,48,55,56,49,50,93,44,91,45,57,50,46,52,49,53,51,53,44,51,50,46,52,57,53,52,56,54,93,44,91,45,57,50,46,54,50,50,51,51,53,44,51,50,46,52,57,54,52,48,54,93,44,91,45,57,50,46,55,55,55,49,57,55,44,51,50,46,52,53,51,52,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,51,52,50,51,44,51,55,46,57,54,54,54,51,93,44,91,45,55,54,46,53,48,55,56,50,56,44,51,55,46,56,51,56,56,49,52,93,44,91,45,55,54,46,52,50,48,48,55,49,44,51,55,46,56,50,51,55,54,54,93,44,91,45,55,54,46,51,48,56,51,54,55,44,51,55,46,54,54,57,55,55,51,93,44,91,45,55,54,46,49,55,53,54,56,55,44,51,55,46,54,55,49,54,50,54,93,44,91,45,55,54,46,50,51,54,52,53,56,44,51,55,46,56,56,54,54,48,53,93,44,91,45,55,54,46,50,51,54,49,52,49,44,51,55,46,56,56,56,52,54,56,93,44,91,45,55,54,46,53,49,54,51,54,57,44,51,56,46,48,51,52,55,50,52,93,44,91,45,55,54,46,54,51,52,50,51,44,51,55,46,57,54,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,70,111,114,116,32,66,101,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,57,51,52,50,44,34,98,101,100,115,34,58,49,49,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,51,50,55,49,49,44,50,57,46,55,50,55,57,52,52,93,44,91,45,57,54,46,48,56,56,57,49,50,44,50,57,46,54,48,49,54,53,56,93,44,91,45,57,54,46,48,54,48,54,55,54,44,50,57,46,52,55,54,52,55,51,93,44,91,45,57,53,46,57,53,48,54,52,51,44,50,57,46,51,51,54,53,55,55,93,44,91,45,57,53,46,56,52,55,54,53,54,44,50,57,46,50,54,50,53,57,93,44,91,45,57,53,46,55,53,50,56,54,54,44,50,57,46,51,50,52,53,48,51,93,44,91,45,57,53,46,53,57,48,55,57,51,44,50,57,46,51,50,55,52,56,53,93,44,91,45,57,53,46,53,52,57,57,57,52,44,50,57,46,52,51,56,52,51,57,93,44,91,45,57,53,46,52,54,50,53,48,51,44,50,57,46,52,51,57,50,52,93,44,91,45,57,53,46,52,50,52,49,49,56,44,50,57,46,53,56,48,50,51,51,93,44,91,45,57,53,46,56,50,54,50,50,44,50,57,46,55,56,56,50,56,93,44,91,45,57,54,46,48,51,50,55,49,49,44,50,57,46,55,50,55,57,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,32,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,55,53,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,54,56,54,49,50,44,52,51,46,57,56,50,56,51,52,93,44,91,45,56,57,46,49,54,56,49,50,49,44,52,51,46,56,55,54,52,55,93,44,91,45,56,57,46,50,52,53,51,55,53,44,52,51,46,55,53,57,56,49,51,93,44,91,45,56,57,46,50,52,53,52,51,55,44,52,51,46,54,52,51,48,56,51,93,44,91,45,56,57,46,48,48,54,56,52,56,44,52,51,46,54,51,51,48,52,53,93,44,91,45,56,56,46,56,56,54,48,53,50,44,52,51,46,54,51,51,53,52,93,44,91,45,56,56,46,56,56,53,54,57,55,44,52,51,46,56,57,53,49,56,52,93,44,91,45,56,56,46,56,56,54,49,57,51,44,52,51,46,57,56,51,50,51,51,93,44,91,45,56,57,46,49,54,56,54,49,50,44,52,51,46,57,56,50,56,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,80,111,110,100,101,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,52,52,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,49,56,52,55,56,52,44,52,56,46,52,55,55,53,55,56,93,44,91,45,49,49,50,46,53,55,54,57,56,50,44,52,56,46,52,56,51,51,52,56,93,44,91,45,49,49,50,46,53,56,48,52,56,52,44,52,56,46,51,48,57,57,51,50,93,44,91,45,49,49,51,46,51,52,57,48,52,54,44,52,56,46,51,49,48,50,54,51,93,44,91,45,49,49,51,46,50,51,48,55,50,51,44,52,56,46,49,56,50,48,48,50,93,44,91,45,49,49,51,46,48,49,52,56,49,49,44,52,56,46,49,51,49,48,51,93,44,91,45,49,49,50,46,49,55,55,56,51,51,44,52,56,46,49,51,48,55,49,50,93,44,91,45,49,49,50,46,48,52,55,57,57,57,44,52,56,46,48,56,54,54,49,50,93,44,91,45,49,49,49,46,57,56,52,50,54,51,44,52,55,46,57,56,52,53,57,50,93,44,91,45,49,49,49,46,52,48,56,53,49,52,44,52,55,46,57,56,55,49,55,56,93,44,91,45,49,49,49,46,52,48,57,48,57,55,44,52,56,46,49,51,50,50,49,56,93,44,91,45,49,49,49,46,52,48,57,48,49,56,44,52,56,46,50,49,57,53,52,50,93,44,91,45,49,49,49,46,54,54,53,53,57,57,44,52,56,46,50,49,57,53,52,57,93,44,91,45,49,49,49,46,54,54,53,55,53,54,44,52,56,46,51,52,57,52,53,54,93,44,91,45,49,49,49,46,55,57,53,57,49,44,52,56,46,51,57,51,48,56,49,93,44,91,45,49,49,49,46,57,57,48,56,56,57,44,52,56,46,51,57,52,50,54,53,93,44,91,45,49,49,50,46,48,48,52,52,51,54,44,52,56,46,52,52,56,56,56,54,93,44,91,45,49,49,50,46,49,56,52,55,56,52,44,52,56,46,52,55,55,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,87,97,108,119,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,48,49,51,44,34,98,101,100,115,34,58,49,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,52,49,53,51,53,44,52,50,46,56,52,50,57,57,54,93,44,91,45,56,56,46,55,55,55,48,55,54,44,52,50,46,56,52,50,54,57,52,93,44,91,45,56,56,46,55,55,54,52,57,51,44,52,50,46,52,57,49,57,49,50,93,44,91,45,56,56,46,55,48,55,52,50,49,44,52,50,46,52,57,51,53,57,54,93,44,91,45,56,56,46,51,48,52,54,57,50,44,52,50,46,52,57,52,54,49,56,93,44,91,45,56,56,46,51,48,53,56,57,49,44,52,50,46,54,49,48,56,49,55,93,44,91,45,56,56,46,51,48,54,51,56,52,44,52,50,46,56,52,50,48,57,53,93,44,91,45,56,56,46,53,52,49,53,51,53,44,52,50,46,56,52,50,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,77,105,110,101,114,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,52,56,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,55,53,51,56,51,53,44,51,57,46,48,55,52,54,51,93,44,91,45,49,49,56,46,57,50,57,55,51,55,44,51,57,46,48,55,51,54,57,56,93,44,91,45,49,49,57,46,48,49,52,56,51,55,44,51,56,46,57,52,51,51,50,51,93,44,91,45,49,49,57,46,48,49,52,53,50,56,44,51,56,46,56,53,49,51,93,44,91,45,49,49,56,46,57,48,50,49,50,52,44,51,56,46,56,53,50,49,53,56,93,44,91,45,49,49,56,46,57,48,54,56,54,49,44,51,56,46,52,49,52,54,55,55,93,44,91,45,49,49,57,46,49,53,54,57,55,56,44,51,56,46,52,49,52,55,52,54,93,44,91,45,49,49,56,46,52,50,56,49,52,52,44,51,55,46,56,57,54,50,50,93,44,91,45,49,49,56,46,51,53,49,52,56,52,44,51,55,46,56,57,51,55,48,53,93,44,91,45,49,49,55,46,54,57,49,48,50,49,44,51,56,46,52,55,51,55,57,55,93,44,91,45,49,49,56,46,49,57,54,50,51,53,44,51,56,46,57,49,57,48,53,56,93,44,91,45,49,49,56,46,49,57,54,50,55,52,44,51,56,46,57,57,57,57,50,54,93,44,91,45,49,49,55,46,56,54,53,49,49,54,44,51,57,46,48,55,51,54,53,52,93,44,91,45,49,49,56,46,55,53,51,56,51,53,44,51,57,46,48,55,52,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,52,49,56,44,34,98,101,100,115,34,58,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,52,53,54,50,55,44,52,48,46,54,50,55,54,51,56,93,44,91,45,57,48,46,52,53,48,50,50,55,44,52,48,46,50,55,54,51,51,53,93,44,91,45,57,48,46,52,53,49,57,49,54,44,52,48,46,49,56,56,56,48,51,93,44,91,45,57,48,46,49,57,57,54,51,53,44,52,48,46,49,56,51,56,49,50,93,44,91,45,57,48,46,49,49,56,57,54,54,44,52,48,46,50,51,53,50,54,51,93,44,91,45,57,48,46,48,51,51,48,50,54,44,52,48,46,51,55,55,56,48,54,93,44,91,45,56,57,46,57,50,52,54,56,44,52,48,46,52,51,53,57,50,49,93,44,91,45,56,57,46,56,55,50,52,54,51,44,52,48,46,53,49,51,49,50,55,93,44,91,45,56,57,46,56,55,51,54,56,44,52,48,46,54,50,52,57,55,53,93,44,91,45,56,57,46,57,56,54,48,54,52,44,52,48,46,55,49,50,51,54,49,93,44,91,45,57,48,46,52,52,52,51,51,57,44,52,48,46,55,49,52,56,54,56,93,44,91,45,57,48,46,52,52,53,54,50,55,44,52,48,46,54,50,55,54,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,83,117,102,102,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,55,57,48,49,44,34,98,101,100,115,34,58,51,57,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,53,50,55,57,48,49,44,52,49,46,49,55,55,55,55,52,93,44,91,45,55,50,46,57,57,57,53,52,55,44,52,49,46,48,56,55,49,48,56,93,44,91,45,55,51,46,52,51,49,57,49,57,44,52,48,46,57,56,57,48,48,57,93,44,91,45,55,51,46,52,57,55,52,48,53,44,52,48,46,57,50,51,55,54,54,93,44,91,45,55,51,46,52,50,51,50,54,57,44,52,48,46,54,55,48,56,57,51,93,44,91,45,55,51,46,52,50,53,51,49,44,52,48,46,53,51,52,50,54,53,93,44,91,45,55,51,46,50,55,52,48,50,53,44,52,48,46,53,53,49,51,49,52,93,44,91,45,55,50,46,51,55,52,53,50,57,44,52,48,46,56,49,56,53,57,53,93,44,91,45,55,49,46,56,51,55,48,56,56,44,52,49,46,48,49,48,56,57,50,93,44,91,45,55,49,46,55,55,55,52,57,49,44,52,49,46,48,54,55,50,57,50,93,44,91,45,55,49,46,55,57,48,57,55,50,44,52,49,46,49,56,52,49,48,49,93,44,91,45,55,49,46,57,48,55,50,53,56,44,52,49,46,51,48,52,52,56,51,93,44,91,45,55,50,46,51,51,49,52,53,51,44,52,49,46,50,49,53,48,48,52,93,44,91,45,55,50,46,53,50,55,57,48,49,44,52,49,46,49,55,55,55,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,53,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,51,52,53,55,53,44,51,57,46,55,49,52,55,54,52,93,44,91,45,56,53,46,48,51,54,48,56,55,44,51,57,46,53,50,54,50,49,51,93,44,91,45,56,52,46,56,49,53,51,53,51,44,51,57,46,53,50,49,57,53,93,44,91,45,56,52,46,56,49,52,57,51,52,44,51,57,46,53,54,55,55,49,52,93,44,91,45,56,52,46,56,49,52,51,55,51,44,51,57,46,55,50,54,54,50,93,44,91,45,56,53,46,48,51,52,53,55,53,44,51,57,46,55,49,52,55,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,99,68,111,110,97,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,56,51,48,55,44,51,54,46,55,54,54,53,54,93,44,91,45,57,52,46,54,49,56,48,55,55,44,51,54,46,54,54,55,57,50,49,93,44,91,45,57,52,46,54,49,55,57,49,57,44,51,54,46,52,57,57,52,49,52,93,44,91,45,57,52,46,48,55,55,48,56,57,44,51,54,46,52,57,56,55,51,93,44,91,45,57,52,46,48,54,56,56,57,56,44,51,54,46,55,52,55,56,49,56,93,44,91,45,57,52,46,54,49,56,51,48,55,44,51,54,46,55,54,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,115,32,66,108,117,102,102,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,50,53,53,44,34,98,101,100,115,34,58,49,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,50,54,52,53,44,52,50,46,48,48,49,55,49,56,93,44,91,45,49,48,52,46,48,53,50,54,56,56,44,52,49,46,54,57,55,57,53,52,93,44,91,45,49,48,51,46,51,55,48,51,57,49,44,52,49,46,54,57,57,50,49,93,44,91,45,49,48,51,46,51,54,51,51,51,55,44,52,50,46,48,48,50,57,51,93,44,91,45,49,48,51,46,52,48,49,54,51,57,44,52,50,46,48,48,51,53,52,93,44,91,45,49,48,52,46,48,53,50,54,52,53,44,52,50,46,48,48,49,55,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,83,97,110,32,77,105,103,117,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,48,51,52,44,34,98,101,100,115,34,58,50,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,55,50,48,53,50,57,44,51,53,46,56,55,49,49,56,53,93,44,91,45,49,48,53,46,55,49,52,52,49,57,44,51,53,46,48,52,49,54,48,53,93,44,91,45,49,48,53,46,50,57,48,55,57,49,44,51,53,46,48,52,50,48,51,93,44,91,45,49,48,53,46,50,57,49,49,54,57,44,51,53,46,50,49,54,52,56,57,93,44,91,45,49,48,52,46,49,50,53,49,51,54,44,51,53,46,50,49,53,54,57,54,93,44,91,45,49,48,52,46,49,50,53,49,50,49,44,51,53,46,49,52,50,48,53,56,93,44,91,45,49,48,51,46,56,53,55,53,51,44,51,53,46,50,52,50,52,48,53,93,44,91,45,49,48,51,46,54,51,55,49,51,44,51,53,46,50,52,48,56,49,57,93,44,91,45,49,48,51,46,54,51,55,48,53,51,44,51,53,46,51,56,57,54,54,50,93,44,91,45,49,48,51,46,55,50,51,54,48,57,44,51,53,46,52,50,50,55,56,53,93,44,91,45,49,48,51,46,57,55,54,57,48,49,44,51,53,46,56,48,49,55,52,55,93,44,91,45,49,48,52,46,48,50,49,55,48,50,44,51,53,46,55,56,49,52,57,52,93,44,91,45,49,48,52,46,51,55,48,49,50,44,51,53,46,55,55,57,51,48,50,93,44,91,45,49,48,53,46,48,48,54,52,49,55,44,51,53,46,55,55,49,50,53,54,93,44,91,45,49,48,53,46,51,52,55,56,51,44,51,53,46,56,55,48,54,57,53,93,44,91,45,49,48,53,46,55,50,48,53,50,57,44,51,53,46,56,55,49,49,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,50,56,55,44,34,98,101,100,115,34,58,53,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,51,53,48,51,56,44,51,50,46,55,52,54,53,51,93,44,91,45,56,53,46,53,57,51,49,53,49,44,51,50,46,55,50,56,53,51,93,44,91,45,56,53,46,54,57,54,55,53,53,44,51,50,46,54,57,55,52,50,57,93,44,91,45,56,53,46,54,57,53,56,53,52,44,51,50,46,53,57,53,57,51,51,93,44,91,45,56,53,46,52,56,57,51,52,56,44,51,50,46,52,57,54,57,51,55,93,44,91,45,56,53,46,52,51,52,48,52,53,44,51,50,46,52,48,57,56,52,93,44,91,45,56,53,46,51,51,51,56,52,51,44,51,50,46,52,54,56,54,51,57,93,44,91,45,56,53,46,48,53,57,50,57,52,44,51,50,46,52,55,50,57,48,57,93,44,91,45,56,53,46,48,48,49,48,50,44,51,50,46,53,49,48,49,53,55,93,44,91,45,56,53,46,48,56,48,55,56,52,44,51,50,46,54,48,56,48,55,50,93,44,91,45,56,53,46,49,51,53,48,51,56,44,51,50,46,55,52,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,54,55,34,44,34,78,65,77,69,34,58,34,80,97,114,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,56,48,50,44,34,98,101,100,115,34,58,49,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,53,54,48,57,52,44,51,51,46,48,48,51,51,51,50,93,44,91,45,57,56,46,48,54,54,56,51,54,44,51,50,46,53,53,56,56,50,50,93,44,91,45,57,55,46,54,49,55,48,54,54,44,51,50,46,53,53,53,52,56,52,93,44,91,45,57,55,46,53,53,48,53,56,50,44,51,50,46,53,53,53,51,57,49,93,44,91,45,57,55,46,53,52,52,49,56,49,44,51,50,46,57,57,52,49,55,55,93,44,91,45,57,55,46,57,50,49,54,52,50,44,51,51,46,48,48,49,50,56,52,93,44,91,45,57,56,46,48,53,54,48,57,52,44,51,51,46,48,48,51,51,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,68,105,99,107,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,55,48,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,51,52,53,53,54,44,52,54,46,50,56,50,54,53,55,93,44,91,45,57,57,46,48,48,51,49,49,56,44,52,54,46,50,56,50,56,57,56,93,44,91,45,57,57,46,48,48,53,55,53,56,44,52,53,46,57,51,57,55,51,49,93,44,91,45,57,56,46,55,50,52,51,55,53,44,52,53,46,57,51,56,55,51,49,93,44,91,45,57,56,46,48,48,56,49,48,50,44,52,53,46,57,51,53,56,57,54,93,44,91,45,57,56,46,48,48,54,55,49,53,44,52,54,46,50,56,50,54,50,54,93,44,91,45,57,56,46,48,51,52,53,53,54,44,52,54,46,50,56,50,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,97,114,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,51,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,54,55,48,54,54,44,52,55,46,50,52,48,52,48,52,93,44,91,45,57,56,46,52,51,57,55,51,52,44,52,54,46,57,55,57,54,51,49,93,44,91,45,57,56,46,52,51,57,48,53,54,44,52,54,46,54,51,49,49,50,93,44,91,45,57,56,46,48,51,51,56,54,50,44,52,54,46,54,51,48,55,50,55,93,44,91,45,57,55,46,54,56,50,48,48,54,44,52,54,46,54,50,57,57,50,56,93,44,91,45,57,55,46,54,56,49,53,48,56,44,52,54,46,57,55,56,52,56,49,93,44,91,45,57,55,46,55,48,53,57,51,53,44,52,55,46,50,51,57,57,55,55,93,44,91,45,57,55,46,57,54,49,50,49,49,44,52,55,46,50,52,48,51,50,53,93,44,91,45,57,56,46,52,54,55,48,54,54,44,52,55,46,50,52,48,52,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,83,105,98,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,49,50,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,49,48,52,57,52,44,52,52,46,55,49,55,52,54,52,93,44,91,45,57,52,46,50,53,52,48,55,54,44,52,52,46,55,49,55,56,53,53,93,44,91,45,57,52,46,50,53,52,55,49,57,44,52,52,46,54,51,48,51,49,49,93,44,91,45,57,52,46,52,57,55,56,51,53,44,52,52,46,54,50,57,57,50,49,93,44,91,45,57,52,46,52,57,56,48,55,52,44,52,52,46,55,49,55,49,55,49,93,44,91,45,57,52,46,54,50,57,52,56,57,44,52,52,46,55,49,54,54,54,51,93,44,91,45,57,52,46,54,50,52,50,44,52,52,46,52,53,54,48,51,93,44,91,45,57,51,46,57,50,57,53,53,44,52,52,46,52,53,54,55,49,54,93,44,91,45,57,51,46,57,49,48,52,48,53,44,52,52,46,53,52,51,49,54,51,93,44,91,45,57,51,46,55,54,56,48,51,57,44,52,52,46,54,52,48,51,48,51,93,44,91,45,57,52,46,48,49,48,52,57,52,44,52,52,46,55,49,55,52,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,51,34,44,34,78,65,77,69,34,58,34,85,112,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,49,54,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,57,56,54,54,53,44,51,50,46,57,57,57,54,55,49,93,44,91,45,56,52,46,53,50,55,48,50,44,51,50,46,57,55,48,53,52,56,93,44,91,45,56,52,46,53,48,54,56,56,56,44,51,50,46,56,56,49,55,56,56,93,44,91,45,56,52,46,50,56,54,50,52,54,44,51,50,46,55,52,55,54,50,54,93,44,91,45,56,52,46,50,48,50,54,50,56,44,51,50,46,54,57,48,48,49,56,93,44,91,45,56,52,46,49,50,52,50,55,53,44,51,50,46,56,52,57,53,54,50,93,44,91,45,56,52,46,49,50,51,51,52,44,51,50,46,57,51,50,49,56,52,93,44,91,45,56,52,46,50,55,48,49,52,44,51,50,46,57,57,49,48,49,49,93,44,91,45,56,52,46,50,57,56,54,54,53,44,51,50,46,57,57,57,54,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,83,111,110,111,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,49,51,49,55,44,34,98,101,100,115,34,58,56,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,49,51,52,53,50,51,44,51,56,46,50,57,54,50,54,51,93,44,91,45,49,50,50,46,57,48,49,55,50,54,44,51,56,46,51,49,54,57,52,51,93,44,91,45,49,50,50,46,55,51,57,57,44,51,56,46,50,48,55,48,49,56,93,44,91,45,49,50,50,46,53,55,56,50,48,49,44,51,56,46,49,56,51,53,56,51,93,44,91,45,49,50,50,46,53,48,50,56,50,44,51,56,46,49,49,51,48,48,50,93,44,91,45,49,50,50,46,51,52,55,52,53,52,44,51,56,46,48,55,51,50,54,93,44,91,45,49,50,50,46,52,48,54,55,56,54,44,51,56,46,49,53,53,54,51,50,93,44,91,45,49,50,50,46,51,53,57,57,50,52,44,51,56,46,50,51,48,53,48,49,93,44,91,45,49,50,50,46,53,52,51,56,57,51,44,51,56,46,53,49,57,57,54,54,93,44,91,45,49,50,50,46,54,52,54,50,54,56,44,51,56,46,53,57,57,49,50,93,44,91,45,49,50,50,46,54,50,55,51,57,54,44,51,56,46,54,54,55,53,48,54,93,44,91,45,49,50,50,46,56,50,49,53,57,50,44,51,56,46,56,53,48,49,52,93,44,91,45,49,50,51,46,48,56,48,57,57,55,44,51,56,46,56,53,50,52,51,56,93,44,91,45,49,50,51,46,49,51,54,50,53,51,44,51,56,46,56,48,57,49,51,54,93,44,91,45,49,50,51,46,51,54,56,51,57,52,44,51,56,46,56,48,54,54,52,93,44,91,45,49,50,51,46,54,51,50,52,57,55,44,51,56,46,55,53,56,49,49,57,93,44,91,45,49,50,51,46,53,49,48,53,56,44,51,56,46,54,56,48,56,57,93,44,91,45,49,50,51,46,51,54,48,57,50,57,44,51,56,46,53,49,48,50,48,50,93,44,91,45,49,50,51,46,50,50,48,50,50,44,51,56,46,52,52,49,57,53,52,93,44,91,45,49,50,51,46,49,51,52,53,50,51,44,51,56,46,50,57,54,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,104,105,112,112,101,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,51,52,44,34,98,101,100,115,34,58,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,51,54,56,54,55,44,52,53,46,55,55,51,57,52,52,93,44,91,45,56,51,46,52,51,51,53,53,56,44,52,53,46,57,57,56,56,57,53,93,44,91,45,56,51,46,53,55,49,52,54,55,44,52,54,46,49,48,53,57,57,56,93,44,91,45,56,51,46,56,50,54,50,52,51,44,52,54,46,49,49,57,50,56,56,93,44,91,45,56,51,46,57,53,53,52,50,52,44,52,54,46,48,53,55,49,56,56,93,44,91,45,56,52,46,49,48,56,48,56,57,44,52,54,46,50,52,49,50,51,56,93,44,91,45,56,52,46,49,52,54,49,55,50,44,52,54,46,52,49,56,53,50,93,44,91,45,56,52,46,49,49,49,50,50,53,44,52,54,46,53,48,52,49,49,57,93,44,91,45,56,52,46,52,50,48,50,55,52,44,52,54,46,53,48,49,48,55,55,93,44,91,45,56,52,46,53,53,54,57,55,54,44,52,54,46,52,54,48,54,53,93,44,91,45,56,52,46,55,54,50,57,53,55,44,52,54,46,54,51,52,51,50,52,93,44,91,45,56,52,46,56,53,57,51,51,53,44,52,54,46,56,56,56,56,52,51,93,44,91,45,56,53,46,50,51,52,51,51,44,52,55,46,48,52,55,54,49,93,44,91,45,56,53,46,50,51,55,56,51,57,44,52,54,46,50,52,53,52,51,93,44,91,45,56,53,46,49,49,50,53,49,51,44,52,54,46,49,53,56,50,54,51,93,44,91,45,56,52,46,51,54,51,53,48,51,44,52,54,46,49,53,55,57,56,52,93,44,91,45,56,52,46,51,54,51,48,57,44,52,54,46,48,55,49,53,55,52,93,44,91,45,56,52,46,50,51,57,51,51,50,44,52,53,46,57,56,52,57,49,52,93,44,91,45,56,52,46,49,49,52,49,56,54,44,52,53,46,57,56,53,49,53,50,93,44,91,45,56,52,46,49,50,51,48,57,56,44,52,53,46,55,55,55,54,54,56,93,44,91,45,56,51,46,54,51,54,56,54,55,44,52,53,46,55,55,51,57,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,111,110,110,101,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,51,57,55,44,34,98,101,100,115,34,58,51,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,53,49,57,56,54,49,44,52,51,46,54,50,54,54,50,51,93,44,91,45,49,49,50,46,53,50,48,48,50,52,44,52,51,46,52,50,53,49,55,93,44,91,45,49,49,50,46,49,48,51,50,57,56,44,52,51,46,52,50,53,48,53,55,93,44,91,45,49,49,50,46,48,52,51,56,50,49,44,52,51,46,51,54,54,55,48,56,93,44,91,45,49,49,49,46,56,50,50,52,55,53,44,52,51,46,51,54,54,48,51,53,93,44,91,45,49,49,49,46,56,50,50,52,57,52,44,52,51,46,50,56,50,50,56,54,93,44,91,45,49,49,49,46,53,56,56,48,52,57,44,52,51,46,50,56,49,56,52,49,93,44,91,45,49,49,49,46,53,56,57,52,56,57,44,52,51,46,48,50,48,48,53,50,93,44,91,45,49,49,49,46,48,52,52,48,55,50,44,52,51,46,48,49,57,52,48,55,93,44,91,45,49,49,49,46,48,52,52,56,57,51,44,52,51,46,51,49,53,55,49,57,93,44,91,45,49,49,49,46,48,52,53,52,55,51,44,52,51,46,53,48,49,48,53,49,93,44,91,45,49,49,49,46,50,48,55,53,54,49,44,52,51,46,53,52,51,56,53,55,93,44,91,45,49,49,49,46,50,52,51,56,51,57,44,52,51,46,54,50,49,56,53,51,93,44,91,45,49,49,49,46,51,57,57,55,54,53,44,52,51,46,54,50,49,57,55,54,93,44,91,45,49,49,49,46,54,50,54,48,52,51,44,52,51,46,54,50,54,55,53,54,93,44,91,45,49,49,50,46,53,49,57,56,54,49,44,52,51,46,54,50,54,54,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,97,114,114,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,56,56,55,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,49,55,54,56,50,44,51,52,46,49,50,55,52,57,51,93,44,91,45,56,51,46,56,54,56,57,51,49,44,51,52,46,48,48,52,55,56,54,93,44,91,45,56,51,46,55,57,57,49,48,52,44,51,51,46,57,50,57,56,52,52,93,44,91,45,56,51,46,54,52,55,48,51,49,44,51,51,46,57,48,54,49,57,56,93,44,91,45,56,51,46,53,51,55,51,56,53,44,51,51,46,57,54,53,57,49,50,93,44,91,45,56,51,46,53,54,51,50,49,53,44,51,52,46,48,51,49,55,53,55,93,44,91,45,56,51,46,55,53,49,51,56,49,44,51,52,46,48,54,52,50,48,49,93,44,91,45,56,51,46,56,49,55,54,56,50,44,51,52,46,49,50,55,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,76,111,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,54,57,48,53,50,44,51,49,46,55,56,57,51,50,52,93,44,91,45,56,49,46,56,50,51,57,50,49,44,51,49,46,54,53,49,56,48,57,93,44,91,45,56,49,46,54,54,51,50,48,54,44,51,49,46,53,51,56,54,54,55,93,44,91,45,56,49,46,53,54,54,48,48,57,44,51,49,46,53,55,54,52,54,55,93,44,91,45,56,49,46,52,57,49,55,57,56,44,51,49,46,54,57,57,53,55,53,93,44,91,45,56,49,46,54,52,49,55,54,49,44,51,49,46,55,54,53,52,53,49,93,44,91,45,56,49,46,55,54,53,51,53,55,44,51,49,46,56,55,52,53,52,93,44,91,45,56,49,46,55,53,48,50,53,55,44,51,49,46,57,55,51,50,48,55,93,44,91,45,56,49,46,56,50,52,52,48,53,44,51,50,46,48,49,52,56,56,50,93,44,91,45,56,49,46,57,54,57,48,53,50,44,51,49,46,55,56,57,51,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,49,34,44,34,78,65,77,69,34,58,34,75,105,110,110,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,57,52,54,50,55,44,50,57,46,50,52,49,54,49,50,93,44,91,45,49,48,48,46,54,54,55,53,52,56,44,50,57,46,48,56,52,50,57,50,93,44,91,45,49,48,48,46,49,49,49,52,48,54,44,50,57,46,48,56,54,51,49,56,93,44,91,45,49,48,48,46,49,49,50,48,57,56,44,50,57,46,54,50,51,50,54,51,93,44,91,45,49,48,48,46,54,57,57,57,51,50,44,50,57,46,54,50,51,56,57,55,93,44,91,45,49,48,48,46,54,57,57,49,52,49,44,50,57,46,52,49,57,55,52,55,93,44,91,45,49,48,48,46,55,52,53,51,48,56,44,50,57,46,50,54,52,56,57,56,93,44,91,45,49,48,48,46,55,57,52,54,50,55,44,50,57,46,50,52,49,54,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,79,116,116,97,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,54,54,44,34,98,101,100,115,34,58,49,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,48,55,54,50,44,51,54,46,57,57,57,53,49,52,93,44,91,45,57,52,46,57,57,57,52,48,51,44,51,54,46,54,55,48,54,51,49,93,44,91,45,57,52,46,54,49,56,48,55,55,44,51,54,46,54,54,55,57,50,49,93,44,91,45,57,52,46,54,49,56,51,48,55,44,51,54,46,55,54,54,53,54,93,44,91,45,57,52,46,54,49,55,57,54,52,44,51,54,46,57,57,56,57,48,53,93,44,91,45,57,53,46,48,48,55,54,50,44,51,54,46,57,57,57,53,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,108,101,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,50,49,54,44,34,98,101,100,115,34,58,51,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,55,49,48,50,52,56,44,52,49,46,50,48,49,56,53,57,93,44,91,45,55,56,46,56,48,52,53,51,50,44,52,49,46,49,51,50,49,56,54,93,44,91,45,55,56,46,56,48,53,49,54,55,44,52,48,46,57,48,53,57,56,93,44,91,45,55,56,46,56,48,49,54,57,55,44,52,48,46,55,50,52,53,51,57,93,44,91,45,55,56,46,51,53,48,52,51,44,52,48,46,55,50,52,56,50,55,93,44,91,45,55,56,46,51,53,57,57,49,50,44,52,48,46,55,51,50,53,57,50,93,44,91,45,55,56,46,50,49,57,56,49,51,44,52,48,46,57,49,50,55,52,49,93,44,91,45,55,56,46,48,55,55,55,52,44,52,48,46,57,53,56,56,50,52,93,44,91,45,55,56,46,48,51,56,50,48,51,44,52,49,46,49,53,51,54,51,51,93,44,91,45,55,56,46,48,57,51,51,56,49,44,52,49,46,50,49,54,57,51,49,93,44,91,45,55,56,46,50,51,54,56,49,55,44,52,49,46,50,51,48,52,55,53,93,44,91,45,55,56,46,54,52,54,54,54,54,44,52,49,46,50,53,51,55,55,56,93,44,91,45,55,56,46,55,49,48,50,52,56,44,52,49,46,50,48,49,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,56,57,54,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,44,91,45,56,52,46,56,51,55,48,56,53,44,52,50,46,55,55,48,52,55,57,93,44,91,45,56,52,46,54,48,50,55,54,49,44,52,50,46,55,54,57,56,56,93,44,91,45,56,52,46,51,54,51,54,53,57,44,52,50,46,55,55,53,55,55,56,93,44,91,45,56,52,46,51,54,55,55,54,44,52,51,46,49,49,55,57,52,50,93,44,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,73,115,97,98,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,52,50,54,57,56,57,44,49,56,46,48,52,50,54,50,55,93,44,91,45,54,54,46,52,50,52,53,55,53,44,49,55,46,56,56,49,57,51,56,93,44,91,45,54,54,46,51,50,51,50,50,44,49,55,46,56,55,55,54,54,55,93,44,91,45,54,54,46,51,51,49,50,52,52,44,49,56,46,48,49,53,56,57,49,93,44,91,45,54,54,46,52,50,54,57,56,57,44,49,56,46,48,52,50,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,48,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,48,49,54,54,49,44,51,57,46,53,50,51,51,49,54,93,44,91,45,56,57,46,54,57,56,53,53,53,44,51,56,46,57,57,56,57,55,57,93,44,91,45,56,57,46,54,51,57,50,54,53,44,51,56,46,57,57,57,49,50,57,93,44,91,45,56,57,46,53,56,54,51,52,52,44,51,57,46,48,50,56,51,50,57,93,44,91,45,56,57,46,50,53,48,51,48,57,44,51,57,46,48,50,56,49,56,53,93,44,91,45,56,57,46,50,53,48,53,49,51,44,51,57,46,50,49,55,53,49,50,93,44,91,45,56,57,46,49,51,57,52,54,52,44,51,57,46,50,49,55,55,55,51,93,44,91,45,56,57,46,49,51,57,56,48,55,44,51,57,46,51,52,56,56,56,56,93,44,91,45,56,57,46,53,51,48,56,51,54,44,51,57,46,51,52,56,56,54,52,93,44,91,45,56,57,46,53,51,51,54,53,53,44,51,57,46,53,50,52,53,57,50,93,44,91,45,56,57,46,55,48,49,54,54,49,44,51,57,46,53,50,51,51,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,99,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,49,56,48,44,34,98,101,100,115,34,58,50,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,56,48,53,48,56,44,51,52,46,57,57,53,54,49,93,44,91,45,56,56,46,55,56,54,54,49,50,44,51,52,46,57,57,53,50,53,50,93,44,91,45,56,56,46,56,50,51,48,53,49,44,51,52,46,57,57,53,50,50,49,93,44,91,45,56,56,46,56,50,51,52,55,51,44,51,52,46,56,53,56,54,50,57,93,44,91,45,56,56,46,55,49,56,53,48,56,44,51,52,46,55,53,54,55,56,49,93,44,91,45,56,56,46,51,54,53,52,55,50,44,51,52,46,55,53,53,54,48,52,93,44,91,45,56,56,46,51,54,51,53,51,49,44,51,52,46,57,57,53,52,55,53,93,44,91,45,56,56,46,51,56,48,53,48,56,44,51,52,46,57,57,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,52,53,57,44,34,98,101,100,115,34,58,50,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,52,54,49,51,51,44,51,52,46,52,57,53,54,51,51,93,44,91,45,56,57,46,52,55,54,54,52,50,44,51,52,46,53,53,52,49,54,56,93,44,91,45,56,57,46,54,54,56,52,52,56,44,51,52,46,53,53,52,51,54,55,93,44,91,45,56,57,46,55,50,49,51,52,49,44,51,52,46,53,53,52,50,55,52,93,44,91,45,56,57,46,55,50,49,48,53,44,51,52,46,49,57,50,53,52,53,93,44,91,45,56,57,46,53,48,57,55,52,56,44,51,52,46,49,54,50,48,56,50,93,44,91,45,56,57,46,50,52,53,52,56,53,44,51,52,46,49,54,49,49,56,54,93,44,91,45,56,57,46,50,52,54,51,51,57,44,51,52,46,51,55,57,51,52,52,93,44,91,45,56,57,46,50,52,54,49,51,51,44,51,52,46,52,57,53,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,55,51,53,50,57,44,51,49,46,55,48,56,57,50,50,93,44,91,45,57,50,46,57,48,56,51,49,51,44,51,49,46,54,50,53,49,54,57,93,44,91,45,57,50,46,56,48,54,50,48,54,44,51,49,46,53,57,56,53,52,56,93,44,91,45,57,50,46,55,49,56,57,56,51,44,51,49,46,53,49,55,53,57,52,93,44,91,45,57,50,46,54,51,49,57,52,52,44,51,49,46,51,57,48,52,55,56,93,44,91,45,57,50,46,49,57,54,49,51,49,44,51,49,46,52,55,55,56,55,55,93,44,91,45,57,50,46,50,56,50,48,56,49,44,51,49,46,53,48,51,52,56,54,93,44,91,45,57,50,46,51,55,50,52,55,54,44,51,49,46,55,48,49,53,49,57,93,44,91,45,57,50,46,51,54,50,54,48,56,44,51,49,46,55,57,54,54,51,51,93,44,91,45,57,50,46,54,49,57,50,50,52,44,51,49,46,55,57,55,49,52,57,93,44,91,45,57,50,46,54,49,57,57,55,54,44,51,49,46,55,48,57,53,55,50,93,44,91,45,57,50,46,57,55,51,53,50,57,44,51,49,46,55,48,56,57,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,116,99,104,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,48,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,48,57,57,55,52,44,52,48,46,53,50,51,55,57,56,93,44,91,45,57,53,46,53,53,52,56,49,55,44,52,48,46,50,54,52,52,54,93,44,91,45,57,53,46,49,56,48,54,49,52,44,52,48,46,50,54,49,55,48,54,93,44,91,45,57,53,46,50,48,50,50,54,53,44,52,48,46,53,55,56,52,56,56,93,44,91,45,57,53,46,51,55,51,57,50,51,44,52,48,46,53,56,48,53,48,51,93,44,91,45,57,53,46,55,54,53,54,52,53,44,52,48,46,53,56,53,50,48,56,93,44,91,45,57,53,46,55,48,57,57,55,52,44,52,48,46,53,50,51,55,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,53,49,50,44,34,98,101,100,115,34,58,53,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,49,55,52,55,51,44,51,57,46,56,49,51,54,54,54,93,44,91,45,56,57,46,49,52,49,57,54,55,44,51,57,46,56,48,49,50,55,51,93,44,91,45,56,57,46,49,51,57,49,50,53,44,51,57,46,54,53,53,49,51,49,93,44,91,45,56,57,46,48,50,53,54,56,44,51,57,46,54,53,52,49,56,51,93,44,91,45,56,56,46,56,49,48,53,55,53,44,51,57,46,54,53,51,50,50,50,93,44,91,45,56,56,46,55,52,53,54,55,49,44,51,57,46,55,57,50,49,52,54,93,44,91,45,56,56,46,55,52,53,49,54,52,44,52,48,46,48,53,53,49,57,49,93,44,91,45,56,57,46,49,52,52,55,54,52,44,52,48,46,48,52,56,56,53,51,93,44,91,45,56,57,46,50,49,55,56,52,54,44,51,57,46,57,49,54,57,57,93,44,91,45,56,57,46,50,49,55,52,55,51,44,51,57,46,56,49,51,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,74,111,115,101,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,56,57,55,44,34,98,101,100,115,34,58,49,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,54,50,57,52,51,44,52,50,46,48,54,57,51,50,55,93,44,91,45,56,53,46,55,54,48,49,56,54,44,52,49,46,55,57,56,56,49,52,93,44,91,45,56,53,46,55,57,49,51,51,53,44,52,49,46,55,53,57,48,55,56,93,44,91,45,56,53,46,54,53,57,55,53,44,52,49,46,55,53,57,48,54,56,93,44,91,45,56,53,46,50,57,50,49,55,57,44,52,49,46,55,53,57,56,56,57,93,44,91,45,56,53,46,50,57,51,54,50,54,44,52,50,46,48,55,49,53,53,51,93,44,91,45,56,53,46,55,54,50,57,52,51,44,52,50,46,48,54,57,51,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,49,50,55,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,50,57,54,51,50,44,51,56,46,49,50,52,55,54,55,93,44,91,45,56,57,46,49,55,55,53,57,55,44,51,55,46,57,53,48,51,49,49,93,44,91,45,56,57,46,49,53,49,49,55,54,44,51,55,46,56,54,49,57,57,57,93,44,91,45,56,56,46,55,48,54,55,53,57,44,51,55,46,56,54,51,52,53,55,93,44,91,45,56,56,46,55,48,54,54,50,50,44,51,55,46,57,48,54,55,57,55,93,44,91,45,56,56,46,55,48,52,54,48,54,44,51,56,46,49,50,53,49,57,53,93,44,91,45,56,57,46,49,50,57,54,51,50,44,51,56,46,49,50,52,55,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,49,44,34,98,101,100,115,34,58,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,57,48,57,49,50,44,52,55,46,52,53,48,54,57,50,93,44,91,45,49,48,55,46,57,53,54,54,50,52,44,52,55,46,51,54,48,57,52,51,93,44,91,45,49,48,55,46,57,53,52,51,52,55,44,52,55,46,49,50,48,54,53,50,93,44,91,45,49,48,55,46,56,56,52,55,49,56,44,52,54,46,57,56,52,50,52,57,93,44,91,45,49,48,55,46,56,57,50,50,51,51,44,52,54,46,56,53,49,50,49,53,93,44,91,45,49,48,54,46,55,50,48,49,53,55,44,52,54,46,56,53,57,54,48,51,93,44,91,45,49,48,54,46,48,56,54,52,54,51,44,52,54,46,56,52,53,56,56,49,93,44,91,45,49,48,54,46,48,56,54,53,56,53,44,52,54,46,56,54,48,50,57,93,44,91,45,49,48,54,46,48,56,54,55,55,55,44,52,55,46,49,56,48,57,51,56,93,44,91,45,49,48,54,46,49,55,48,52,50,44,52,55,46,49,56,48,56,50,54,93,44,91,45,49,48,54,46,49,55,48,54,55,53,44,52,55,46,51,53,52,52,57,53,93,44,91,45,49,48,54,46,50,57,56,49,53,56,44,52,55,46,51,53,52,50,57,56,93,44,91,45,49,48,54,46,50,54,49,49,50,49,44,52,55,46,53,50,57,48,53,50,93,44,91,45,49,48,54,46,50,54,48,57,51,50,44,52,55,46,56,54,56,52,51,49,93,44,91,45,49,48,54,46,52,49,56,54,50,44,52,55,46,57,53,55,52,53,55,93,44,91,45,49,48,54,46,53,55,49,48,48,51,44,52,55,46,56,49,50,57,51,51,93,44,91,45,49,48,54,46,56,54,49,54,54,56,44,52,55,46,55,51,55,51,55,50,93,44,91,45,49,48,54,46,56,56,49,49,54,50,44,52,55,46,54,55,56,49,50,56,93,44,91,45,49,48,55,46,50,52,57,44,52,55,46,54,54,49,53,54,54,93,44,91,45,49,48,55,46,52,49,52,56,56,54,44,52,55,46,54,57,49,55,51,52,93,44,91,45,49,48,55,46,53,57,52,50,53,44,52,55,46,54,52,57,55,51,49,93,44,91,45,49,48,55,46,56,54,52,57,50,50,44,52,55,46,53,49,51,55,52,93,44,91,45,49,48,55,46,57,48,57,49,50,44,52,55,46,52,53,48,54,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,56,51,44,34,98,101,100,115,34,58,49,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,50,52,51,56,55,44,52,48,46,54,56,57,55,55,50,93,44,91,45,57,56,46,55,50,51,57,52,56,44,52,48,46,51,53,48,51,57,49,93,44,91,45,57,56,46,50,55,56,48,57,44,52,48,46,51,53,48,51,52,55,93,44,91,45,57,56,46,50,55,56,49,48,51,44,52,48,46,54,57,56,50,57,49,93,44,91,45,57,56,46,50,56,50,56,53,49,44,52,48,46,54,57,56,50,56,52,93,44,91,45,57,56,46,55,50,49,52,51,44,52,48,46,54,57,56,57,48,51,93,44,91,45,57,56,46,55,50,52,51,56,55,44,52,48,46,54,56,57,55,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,79,108,109,115,116,101,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,48,54,53,44,34,98,101,100,115,34,58,50,49,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,48,56,55,49,44,52,52,46,49,57,52,57,49,54,93,44,91,45,57,50,46,54,55,56,55,49,55,44,52,52,46,49,57,53,53,49,54,93,44,91,45,57,50,46,54,56,57,51,57,49,44,52,51,46,56,52,56,53,55,93,44,91,45,57,50,46,52,52,56,57,54,53,44,52,51,46,56,51,52,49,48,53,93,44,91,45,57,50,46,48,55,57,50,57,50,44,52,51,46,56,52,55,48,56,93,44,91,45,57,50,46,48,55,57,52,57,49,44,52,52,46,49,48,54,57,56,56,93,44,91,45,57,50,46,51,49,56,57,55,49,44,52,52,46,49,48,55,55,51,52,93,44,91,45,57,50,46,51,49,56,57,56,54,44,52,52,46,49,57,52,48,53,55,93,44,91,45,57,50,46,53,53,48,56,55,49,44,52,52,46,49,57,52,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,51,48,54,54,44,34,98,101,100,115,34,58,49,51,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,51,55,49,55,51,56,44,52,48,46,55,51,57,54,52,93,44,91,45,55,52,46,52,54,49,48,51,53,44,52,48,46,54,55,51,53,48,52,93,44,91,45,55,52,46,52,54,51,50,57,49,44,52,48,46,53,57,57,49,56,55,93,44,91,45,55,52,46,50,48,51,54,56,56,44,52,48,46,53,57,50,54,57,49,93,44,91,45,55,52,46,49,54,49,52,50,56,44,52,48,46,54,52,52,49,52,56,93,44,91,45,55,52,46,49,51,54,55,48,51,44,52,48,46,54,55,52,52,52,52,93,44,91,45,55,52,46,51,55,49,55,51,56,44,52,48,46,55,51,57,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,84,114,117,106,105,108,108,111,32,65,108,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,55,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,57,57,53,53,54,44,49,56,46,51,56,48,48,54,53,93,44,91,45,54,54,46,48,52,49,53,51,53,44,49,56,46,51,49,50,51,52,52,93,44,91,45,54,54,46,48,50,49,55,52,55,44,49,56,46,51,48,53,48,51,52,93,44,91,45,54,53,46,57,52,50,52,50,57,44,49,56,46,50,57,51,52,54,57,93,44,91,45,54,53,46,57,57,57,53,53,54,44,49,56,46,51,56,48,48,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,111,98,105,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,52,54,53,57,44,34,98,101,100,115,34,58,49,57,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,50,53,52,51,50,44,51,48,46,57,57,56,51,50,51,93,44,91,45,56,56,46,52,49,50,54,49,50,44,51,48,46,55,51,53,53,57,93,44,91,45,56,56,46,51,56,52,52,51,49,44,51,48,46,49,53,56,53,52,51,93,44,91,45,56,56,46,49,54,50,48,50,50,44,51,48,46,50,48,48,48,57,51,93,44,91,45,56,56,46,48,51,55,51,48,57,44,51,48,46,49,52,54,53,54,49,93,44,91,45,56,55,46,57,56,55,56,51,57,44,51,48,46,54,51,55,49,52,57,93,44,91,45,56,56,46,48,50,54,51,49,57,44,51,48,46,55,53,51,51,53,56,93,44,91,45,56,55,46,57,52,49,53,54,49,44,51,49,46,48,54,49,51,52,50,93,44,91,45,56,55,46,57,55,50,56,54,57,44,51,49,46,49,54,50,54,57,52,93,44,91,45,56,56,46,48,50,50,54,52,57,44,51,49,46,49,52,52,50,54,55,93,44,91,45,56,56,46,51,50,57,55,56,50,44,51,49,46,49,52,51,56,50,49,93,44,91,45,56,56,46,52,51,50,48,48,55,44,51,49,46,49,49,52,50,57,56,93,44,91,45,56,56,46,52,50,53,52,51,50,44,51,48,46,57,57,56,51,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,99,67,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,48,56,53,49,55,44,52,51,46,56,52,57,48,53,57,93,44,91,45,57,55,46,54,48,55,48,49,50,44,52,51,46,52,57,57,56,50,54,93,44,91,45,57,55,46,52,48,49,52,53,44,52,51,46,52,57,57,55,56,51,93,44,91,45,57,55,46,49,50,57,52,55,56,44,52,51,46,52,57,57,54,56,51,93,44,91,45,57,55,46,49,50,57,48,56,57,44,52,51,46,56,52,55,57,55,51,93,44,91,45,57,55,46,51,54,57,52,54,51,44,52,51,46,56,52,56,53,50,54,93,44,91,45,57,55,46,54,48,56,53,49,55,44,52,51,46,56,52,57,48,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,53,56,53,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,53,49,55,56,53,44,51,51,46,57,49,57,57,51,93,44,91,45,56,55,46,57,52,54,53,49,57,44,51,51,46,53,50,52,48,54,53,93,44,91,45,56,55,46,56,52,48,54,56,51,44,51,51,46,53,50,52,56,51,57,93,44,91,45,56,55,46,54,54,54,54,54,49,44,51,51,46,53,50,49,54,54,55,93,44,91,45,56,55,46,54,51,49,55,49,56,44,51,51,46,54,48,57,56,51,51,93,44,91,45,56,55,46,52,50,51,55,48,49,44,51,51,46,54,48,50,48,57,54,93,44,91,45,56,55,46,52,50,51,56,52,51,44,51,51,46,54,56,57,49,49,50,93,44,91,45,56,55,46,53,50,56,51,51,56,44,51,51,46,54,57,50,48,52,57,93,44,91,45,56,55,46,53,51,49,54,48,50,44,51,51,46,56,54,55,54,49,56,93,44,91,45,56,55,46,54,51,53,57,51,50,44,51,51,46,57,49,53,50,53,49,93,44,91,45,56,55,46,57,53,49,55,56,53,44,51,51,46,57,49,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,97,109,98,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,50,54,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,57,51,49,55,55,44,51,51,46,49,48,55,51,52,93,44,91,45,56,53,46,53,57,51,49,53,49,44,51,50,46,55,50,56,53,51,93,44,91,45,56,53,46,49,51,53,48,51,56,44,51,50,46,55,52,54,53,51,93,44,91,45,56,53,46,49,56,52,49,51,49,44,51,50,46,56,55,48,53,50,53,93,44,91,45,56,53,46,50,51,50,51,55,56,44,51,51,46,49,48,56,48,55,55,93,44,91,45,56,53,46,53,57,51,49,55,55,44,51,51,46,49,48,55,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,50,57,54,56,55,53,44,51,54,46,53,52,52,56,53,53,93,44,91,45,55,55,46,55,54,55,49,53,44,51,54,46,53,52,53,51,55,52,93,44,91,45,55,55,46,56,57,57,55,55,51,44,51,54,46,53,52,52,53,57,54,93,44,91,45,55,55,46,56,57,57,53,50,52,44,51,54,46,53,48,52,50,53,57,93,44,91,45,55,55,46,54,52,57,56,51,53,44,51,54,46,52,56,49,52,52,51,93,44,91,45,55,55,46,52,52,53,56,56,54,44,51,54,46,51,50,52,56,56,56,93,44,91,45,55,55,46,51,56,54,53,57,53,44,51,54,46,50,49,51,53,52,56,93,44,91,45,55,55,46,50,57,49,53,49,57,44,51,54,46,49,54,56,51,52,50,93,44,91,45,55,55,46,50,48,56,52,54,56,44,51,54,46,50,52,54,53,55,56,93,44,91,45,55,55,46,48,57,51,50,50,52,44,51,54,46,53,49,56,50,49,54,93,44,91,45,55,55,46,49,54,52,51,55,55,44,51,54,46,53,52,54,51,50,57,93,44,91,45,55,55,46,50,57,54,56,55,53,44,51,54,46,53,52,52,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,77,111,102,102,97,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,48,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,56,57,52,52,44,52,48,46,54,54,50,54,48,49,93,44,91,45,49,48,57,46,48,53,48,57,52,57,44,52,48,46,50,50,50,54,52,55,93,44,91,45,49,48,56,46,49,49,51,49,55,57,44,52,48,46,50,50,49,54,55,93,44,91,45,49,48,55,46,52,51,57,51,56,54,44,52,48,46,50,50,51,51,55,57,93,44,91,45,49,48,55,46,52,50,56,56,49,51,44,52,48,46,53,52,50,50,48,55,93,44,91,45,49,48,55,46,51,49,52,49,53,51,44,52,48,46,54,48,48,50,56,49,93,44,91,45,49,48,55,46,51,49,55,55,57,52,44,52,49,46,48,48,50,57,50,93,44,91,45,49,48,55,46,57,49,56,52,50,49,44,52,49,46,48,48,50,48,51,54,93,44,91,45,49,48,57,46,48,53,48,48,50,54,44,52,49,46,48,48,48,54,57,49,93,44,91,45,49,48,57,46,48,52,56,57,52,52,44,52,48,46,54,54,50,54,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,50,51,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,55,51,51,50,44,51,55,46,52,50,49,57,57,54,93,44,91,45,56,53,46,54,57,55,51,50,53,44,51,55,46,51,48,49,56,51,56,93,44,91,45,56,53,46,54,56,54,52,56,50,44,51,55,46,49,56,50,52,50,55,93,44,91,45,56,53,46,53,50,54,56,56,49,44,51,55,46,49,48,57,52,53,93,44,91,45,56,53,46,51,53,50,55,55,49,44,51,55,46,49,57,50,52,51,50,93,44,91,45,56,53,46,53,56,51,52,57,55,44,51,55,46,52,54,57,57,49,55,93,44,91,45,56,53,46,54,53,55,51,51,50,44,51,55,46,52,50,49,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,52,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,57,55,53,55,53,44,51,57,46,52,53,51,50,55,53,93,44,91,45,56,53,46,50,57,54,53,52,44,51,57,46,50,54,56,50,57,49,93,44,91,45,56,53,46,48,54,53,53,55,52,44,51,57,46,51,48,55,50,51,50,93,44,91,45,56,52,46,56,49,57,52,53,44,51,57,46,51,48,53,49,53,51,93,44,91,45,56,52,46,56,49,53,51,53,51,44,51,57,46,53,50,49,57,53,93,44,91,45,56,53,46,48,51,54,48,56,55,44,51,57,46,53,50,54,50,49,51,93,44,91,45,56,53,46,50,57,56,49,49,44,51,57,46,53,50,53,52,55,54,93,44,91,45,56,53,46,50,57,55,53,55,53,44,51,57,46,52,53,51,50,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,101,97,117,102,111,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,50,52,51,44,34,98,101,100,115,34,58,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,55,52,44,51,53,46,55,51,50,56,51,49,93,44,91,45,55,55,46,49,56,57,49,49,53,44,51,53,46,52,49,56,51,54,50,93,44,91,45,55,54,46,56,57,53,57,49,57,44,51,53,46,50,53,51,56,56,57,93,44,91,45,55,54,46,56,52,53,53,48,53,44,51,53,46,50,49,54,48,53,57,93,44,91,45,55,54,46,54,51,50,53,54,49,44,51,53,46,50,51,53,51,50,52,93,44,91,45,55,54,46,54,49,55,52,57,54,44,51,53,46,51,50,56,56,57,51,93,44,91,45,55,54,46,53,50,50,49,51,49,44,51,53,46,51,53,51,54,50,51,93,44,91,45,55,54,46,53,56,53,51,50,44,51,53,46,52,53,53,48,55,53,93,44,91,45,55,54,46,53,56,56,49,57,49,44,51,53,46,54,50,48,54,53,52,93,44,91,45,55,54,46,54,51,55,53,49,51,44,51,53,46,55,48,53,50,49,53,93,44,91,45,55,54,46,56,52,55,50,54,52,44,51,53,46,55,49,57,57,56,50,93,44,91,45,55,54,46,57,56,53,56,52,50,44,51,53,46,54,53,56,56,52,56,93,44,91,45,55,55,46,49,55,52,44,51,53,46,55,51,50,56,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,74,97,121,117,121,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,54,54,54,50,44,49,56,46,50,57,56,53,52,57,93,44,91,45,54,54,46,54,52,57,52,54,55,44,49,56,46,49,53,56,56,53,55,93,44,91,45,54,54,46,53,53,50,55,54,54,44,49,56,46,49,53,50,48,53,55,93,44,91,45,54,54,46,53,52,55,50,50,44,49,56,46,49,53,51,49,51,93,44,91,45,54,54,46,53,52,51,49,51,51,44,49,56,46,49,54,51,48,57,56,93,44,91,45,54,54,46,53,54,54,54,50,44,49,56,46,50,57,56,53,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,117,114,108,101,105,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,55,51,55,44,34,98,101,100,115,34,58,53,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,54,55,51,50,49,44,52,55,46,51,50,55,54,52,54,93,44,91,45,49,48,48,46,55,52,57,51,51,52,44,52,55,46,51,50,55,54,56,53,93,44,91,45,49,48,48,46,55,52,57,51,55,44,52,55,46,49,53,55,50,52,53,93,44,91,45,49,48,48,46,57,54,53,52,52,44,52,55,46,49,53,55,49,51,52,93,44,91,45,49,48,48,46,56,56,50,49,55,50,44,52,55,46,48,49,53,49,49,53,93,44,91,45,49,48,48,46,57,51,53,57,56,51,44,52,54,46,57,56,50,56,52,93,44,91,45,49,48,48,46,55,56,56,55,54,56,44,52,54,46,54,57,49,55,48,49,93,44,91,45,49,48,48,46,54,54,50,48,49,53,44,52,54,46,54,51,52,54,93,44,91,45,49,48,48,46,48,56,49,49,57,56,44,52,54,46,54,51,51,51,57,54,93,44,91,45,49,48,48,46,48,55,53,50,50,57,44,52,54,46,57,56,49,50,56,50,93,44,91,45,49,48,48,46,49,49,52,54,51,55,44,52,54,46,57,56,49,54,54,54,93,44,91,45,49,48,48,46,49,49,51,50,54,49,44,52,55,46,51,50,55,50,54,50,93,44,91,45,49,48,48,46,54,55,51,50,49,44,52,55,46,51,50,55,54,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,82,111,119,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,54,48,53,44,34,98,101,100,115,34,58,50,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,48,55,56,50,54,44,51,53,46,56,53,50,57,50,57,93,44,91,45,56,48,46,55,55,49,53,56,50,44,51,53,46,54,55,50,49,54,51,93,44,91,45,56,48,46,55,51,55,51,55,57,44,51,53,46,53,48,53,56,48,52,93,44,91,45,56,48,46,50,57,53,52,50,49,44,51,53,46,53,48,50,57,50,93,44,91,45,56,48,46,49,56,50,53,53,57,44,51,53,46,53,48,52,49,53,49,93,44,91,45,56,48,46,50,48,57,53,48,57,44,51,53,46,53,56,49,57,53,49,93,44,91,45,56,48,46,52,53,56,56,56,52,44,51,53,46,55,52,51,48,51,49,93,44,91,45,56,48,46,54,51,50,55,50,52,44,51,53,46,56,52,53,56,53,52,93,44,91,45,56,48,46,55,48,55,56,50,54,44,51,53,46,56,53,50,57,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,73,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,49,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,57,49,50,51,54,44,52,54,46,52,49,57,55,48,52,93,44,91,45,56,56,46,57,57,49,48,49,50,44,52,54,46,51,51,50,51,48,56,93,44,91,45,56,56,46,57,57,48,56,54,52,44,52,54,46,48,57,55,51,56,49,93,44,91,45,56,56,46,57,51,50,55,53,55,44,52,54,46,48,55,51,54,54,56,93,44,91,45,56,56,46,54,56,51,51,49,50,44,52,54,46,48,49,52,49,49,51,93,44,91,45,56,56,46,53,48,55,52,56,44,52,54,46,48,49,56,53,49,54,93,44,91,45,56,56,46,49,49,54,56,52,53,44,52,53,46,57,50,49,54,50,55,93,44,91,45,56,56,46,49,49,55,52,48,55,44,52,54,46,50,52,54,54,49,56,93,44,91,45,56,56,46,49,49,54,53,55,49,44,52,54,46,52,49,57,57,53,49,93,44,91,45,56,56,46,54,55,57,51,57,50,44,52,54,46,52,50,48,49,51,57,93,44,91,45,56,56,46,57,57,49,50,51,54,44,52,54,46,52,49,57,55,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,75,97,110,100,105,121,111,104,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,54,53,56,44,34,98,101,100,115,34,58,49,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,50,53,53,50,49,51,44,52,53,46,52,49,50,55,51,57,93,44,91,45,57,53,46,50,52,54,52,56,57,44,52,53,46,49,53,50,52,51,49,93,44,91,45,57,53,46,50,52,56,53,50,44,52,52,46,56,57,49,51,49,93,44,91,45,57,52,46,55,53,56,49,56,57,44,52,52,46,56,57,50,48,57,55,93,44,91,45,57,52,46,55,54,51,48,56,44,52,53,46,51,50,54,49,93,44,91,45,57,52,46,55,54,50,57,51,52,44,52,53,46,52,49,50,56,54,49,93,44,91,45,57,53,46,49,51,49,55,51,44,52,53,46,52,49,50,52,48,50,93,44,91,45,57,53,46,50,53,53,50,49,51,44,52,53,46,52,49,50,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,55,34,44,34,78,65,77,69,34,58,34,87,111,108,102,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,57,53,48,56,44,51,55,46,56,54,49,57,48,54,93,44,91,45,56,51,46,54,51,49,48,54,44,51,55,46,56,50,53,51,55,50,93,44,91,45,56,51,46,55,48,55,57,55,52,44,51,55,46,55,49,54,52,54,51,93,44,91,45,56,51,46,53,50,50,51,48,56,44,51,55,46,54,51,56,53,49,54,93,44,91,45,56,51,46,52,49,56,52,55,52,44,51,55,46,54,57,48,55,50,57,93,44,91,45,56,51,46,50,52,56,54,57,50,44,51,55,46,54,54,57,54,49,54,93,44,91,45,56,51,46,50,54,50,49,55,50,44,51,55,46,55,49,50,54,53,55,93,44,91,45,56,51,46,52,57,53,48,56,44,51,55,46,56,54,49,57,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,54,54,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,50,52,52,54,49,44,51,48,46,48,53,49,52,51,53,93,44,91,45,57,55,46,51,49,53,56,50,51,44,50,57,46,55,56,54,53,52,49,93,44,91,45,57,55,46,51,49,55,56,57,51,44,50,57,46,55,56,52,54,53,56,93,44,91,45,57,55,46,49,52,50,54,52,51,44,50,57,46,54,50,56,49,48,49,93,44,91,45,57,54,46,56,55,52,50,50,50,44,50,57,46,54,51,50,55,48,54,93,44,91,45,57,54,46,53,54,57,56,52,52,44,50,57,46,57,54,49,53,49,54,93,44,91,45,57,54,46,54,50,49,57,56,44,51,48,46,48,52,52,50,56,51,93,44,91,45,57,54,46,54,56,51,51,57,52,44,51,48,46,49,53,49,48,51,56,93,44,91,45,57,54,46,55,57,52,53,53,50,44,51,48,46,49,54,48,53,52,53,93,44,91,45,57,55,46,48,50,52,52,54,49,44,51,48,46,48,53,49,52,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,51,52,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,53,57,52,51,44,52,52,46,53,55,49,48,50,53,93,44,91,45,49,48,52,46,48,53,52,52,56,55,44,52,52,46,49,56,48,51,56,49,93,44,91,45,49,48,52,46,48,53,52,53,56,56,44,52,52,46,49,52,49,48,56,49,93,44,91,45,49,48,51,46,52,53,50,52,53,51,44,52,52,46,49,52,48,55,55,50,93,44,91,45,49,48,51,46,52,53,51,48,49,54,44,52,52,46,50,53,54,54,48,57,93,44,91,45,49,48,51,46,53,55,52,51,57,54,44,52,52,46,50,53,54,48,55,55,93,44,91,45,49,48,51,46,53,54,55,54,53,51,44,52,52,46,54,48,52,48,57,56,93,44,91,45,49,48,51,46,56,50,48,54,51,57,44,52,52,46,54,48,52,55,55,55,93,44,91,45,49,48,52,46,48,53,53,57,52,51,44,52,52,46,53,55,49,48,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,57,52,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,56,46,48,53,52,57,56,53,44,52,53,46,50,53,50,53,55,55,93,44,91,45,54,55,46,57,56,49,56,53,49,44,52,52,46,57,53,53,56,56,53,93,44,91,45,54,56,46,49,48,53,48,49,55,44,52,52,46,57,51,57,48,56,56,93,44,91,45,54,55,46,57,56,49,57,56,56,44,52,52,46,52,55,51,55,53,54,93,44,91,45,54,55,46,57,50,53,49,55,56,44,52,52,46,51,52,49,52,51,52,93,44,91,45,54,55,46,56,48,53,53,54,57,44,52,52,46,51,57,49,48,49,53,93,44,91,45,54,55,46,53,54,55,53,56,53,44,52,52,46,51,57,55,50,48,57,93,44,91,45,54,55,46,52,51,57,54,57,53,44,52,52,46,53,48,53,51,56,52,93,44,91,45,54,55,46,50,52,56,48,53,50,44,52,52,46,53,53,52,56,57,56,93,44,91,45,54,54,46,56,56,53,52,52,52,44,52,52,46,55,57,52,50,48,56,93,44,91,45,54,54,46,57,54,53,51,49,55,44,52,52,46,56,50,56,57,48,53,93,44,91,45,54,55,46,49,53,56,56,55,49,44,52,53,46,49,54,50,48,51,53,93,44,91,45,54,55,46,51,52,48,57,50,52,44,52,53,46,49,50,53,48,57,50,93,44,91,45,54,55,46,52,55,54,51,55,50,44,52,53,46,50,55,53,51,55,49,93,44,91,45,54,55,46,52,50,55,51,50,53,44,52,53,46,51,57,48,55,50,49,93,44,91,45,54,55,46,53,48,48,48,55,50,44,52,53,46,52,57,48,56,52,57,93,44,91,45,54,55,46,52,50,48,55,51,50,44,52,53,46,53,52,57,54,57,53,93,44,91,45,54,55,46,56,48,53,54,56,57,44,52,53,46,54,56,48,48,53,49,93,44,91,45,54,56,46,48,52,56,48,49,50,44,52,53,46,54,51,57,56,57,55,93,44,91,45,54,55,46,57,51,57,55,54,44,52,53,46,50,54,55,56,52,53,93,44,91,45,54,56,46,48,53,52,57,56,53,44,52,53,46,50,53,50,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,66,114,105,115,99,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,57,48,55,52,57,44,51,52,46,55,52,56,50,52,54,93,44,91,45,49,48,49,46,52,55,49,53,54,50,44,51,52,46,55,52,55,52,54,50,93,44,91,45,49,48,49,46,52,55,49,53,56,44,51,52,46,51,49,50,50,57,93,44,91,45,49,48,49,46,48,52,49,52,56,52,44,51,52,46,51,49,50,52,52,52,93,44,91,45,49,48,48,46,57,52,54,49,51,50,44,51,52,46,51,49,50,55,53,57,93,44,91,45,49,48,48,46,57,52,52,57,51,57,44,51,52,46,55,52,56,50,56,49,93,44,91,45,49,48,49,46,48,57,48,55,52,57,44,51,52,46,55,52,56,50,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,79,110,116,111,110,97,103,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,57,49,50,51,54,44,52,54,46,52,49,57,55,48,52,93,44,91,45,56,56,46,57,56,57,53,50,57,44,52,54,46,54,56,48,49,49,57,93,44,91,45,56,56,46,57,51,50,52,56,44,52,54,46,55,54,52,55,56,55,93,44,91,45,56,56,46,57,52,56,56,54,57,44,52,55,46,52,55,55,49,52,53,93,44,91,45,56,57,46,54,56,48,55,51,44,52,55,46,55,49,52,53,53,50,93,44,91,45,56,57,46,57,53,55,49,48,50,44,52,55,46,50,57,49,49,48,51,93,44,91,45,57,48,46,49,49,49,54,56,57,44,52,55,46,48,52,49,57,54,52,93,44,91,45,57,48,46,48,48,48,49,54,49,44,52,54,46,57,57,57,57,51,55,93,44,91,45,57,48,46,48,48,48,49,55,49,44,52,54,46,55,54,53,53,50,57,93,44,91,45,56,57,46,56,54,51,55,57,51,44,52,54,46,55,54,53,52,48,53,93,44,91,45,56,57,46,56,54,52,52,50,44,52,54,46,53,57,50,54,52,51,93,44,91,45,56,57,46,55,52,48,53,54,56,44,52,54,46,53,48,53,54,52,50,93,44,91,45,56,57,46,51,54,53,48,57,52,44,52,54,46,53,48,53,57,52,57,93,44,91,45,56,57,46,51,54,53,53,48,55,44,52,54,46,51,51,51,48,55,56,93,44,91,45,56,56,46,57,57,49,48,49,50,44,52,54,46,51,51,50,51,48,56,93,44,91,45,56,56,46,57,57,49,50,51,54,44,52,54,46,52,49,57,55,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,50,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,56,54,56,57,44,51,51,46,54,55,54,55,50,55,93,44,91,45,57,48,46,49,50,55,55,55,53,44,51,51,46,54,55,54,57,53,54,93,44,91,45,57,48,46,49,48,49,52,48,49,44,51,51,46,52,53,56,57,52,93,44,91,45,57,48,46,49,55,52,54,49,52,44,51,51,46,51,51,51,51,55,56,93,44,91,45,56,57,46,55,52,57,52,52,49,44,51,51,46,50,49,52,52,55,56,93,44,91,45,56,57,46,54,52,53,50,56,44,51,51,46,50,56,53,53,49,53,93,44,91,45,56,57,46,54,52,54,51,49,52,44,51,51,46,52,48,50,53,52,52,93,44,91,45,56,57,46,55,56,53,50,50,55,44,51,51,46,52,49,54,50,55,53,93,44,91,45,56,57,46,55,56,54,56,57,44,51,51,46,54,55,54,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,55,56,48,44,34,98,101,100,115,34,58,49,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,49,52,57,48,50,53,44,52,52,46,55,50,48,50,50,53,93,44,91,45,49,50,51,46,54,48,50,54,48,57,44,52,52,46,55,50,49,49,53,52,93,44,91,45,49,50,51,46,53,57,55,54,55,55,44,52,52,46,52,51,51,49,48,57,93,44,91,45,49,50,51,46,55,50,48,48,55,49,44,52,52,46,52,51,51,51,55,52,93,44,91,45,49,50,51,46,55,55,53,53,57,56,44,52,52,46,50,56,51,53,52,55,93,44,91,45,49,50,51,46,49,56,48,51,56,56,44,52,52,46,50,56,51,55,50,53,93,44,91,45,49,50,51,46,50,52,48,55,52,52,44,52,52,46,51,51,55,55,56,57,93,44,91,45,49,50,51,46,50,49,49,57,54,55,44,52,52,46,53,48,49,50,49,56,93,44,91,45,49,50,51,46,50,54,48,49,53,49,44,52,52,46,53,53,53,49,52,56,93,44,91,45,49,50,51,46,49,52,57,48,50,53,44,52,52,46,55,50,48,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,82,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,49,51,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,53,50,57,56,56,44,52,51,46,56,52,57,53,48,55,93,44,91,45,57,54,46,52,53,51,50,54,44,52,51,46,53,48,48,51,57,93,44,91,45,57,54,46,48,53,51,49,54,50,44,52,51,46,53,48,48,49,53,53,93,44,91,45,57,54,46,48,53,50,51,50,44,52,51,46,56,52,57,48,55,93,44,91,45,57,54,46,48,54,52,54,50,44,52,51,46,56,52,57,48,51,57,93,44,91,45,57,54,46,52,53,50,57,56,56,44,52,51,46,56,52,57,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,55,53,53,44,34,98,101,100,115,34,58,49,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,49,53,51,49,44,52,48,46,57,49,49,51,52,54,93,44,91,45,55,57,46,50,49,53,50,49,53,44,52,48,46,55,55,53,57,52,50,93,44,91,45,55,57,46,52,53,48,49,55,54,44,52,48,46,53,51,48,49,52,57,93,44,91,45,55,57,46,49,50,49,54,51,52,44,52,48,46,51,55,48,53,55,54,93,44,91,45,55,56,46,57,55,52,54,52,57,44,52,48,46,51,57,53,57,55,50,93,44,91,45,55,56,46,56,48,49,54,57,55,44,52,48,46,55,50,52,53,51,57,93,44,91,45,55,56,46,56,48,53,49,54,55,44,52,48,46,57,48,53,57,56,93,44,91,45,55,57,46,50,49,53,51,49,44,52,48,46,57,49,49,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,51,53,54,44,34,98,101,100,115,34,58,50,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,55,55,49,57,55,44,51,50,46,52,53,51,52,53,53,93,44,91,45,57,50,46,54,50,50,51,51,53,44,51,50,46,52,57,54,52,48,54,93,44,91,45,57,50,46,52,49,53,51,53,44,51,50,46,52,57,53,52,56,54,93,44,91,45,57,50,46,52,49,53,48,55,49,44,51,50,46,53,56,50,56,52,53,93,44,91,45,57,50,46,52,49,53,48,53,44,51,50,46,54,55,48,48,53,54,93,44,91,45,57,50,46,54,50,56,50,56,56,44,51,50,46,55,53,57,54,54,57,93,44,91,45,57,50,46,55,50,53,52,51,57,44,51,50,46,55,53,57,53,52,93,44,91,45,57,50,46,56,50,56,53,51,53,44,51,50,46,55,53,56,56,49,52,93,44,91,45,57,50,46,56,56,48,56,48,53,44,51,50,46,53,56,53,50,55,55,93,44,91,45,57,50,46,56,55,57,50,54,56,44,51,50,46,52,53,52,49,49,56,93,44,91,45,57,50,46,55,55,55,49,57,55,44,51,50,46,52,53,51,52,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,57,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,44,91,45,55,55,46,50,56,57,53,57,50,44,52,48,46,53,49,56,52,53,55,93,44,91,45,55,55,46,53,52,48,49,52,49,44,52,48,46,51,57,57,50,50,49,93,44,91,45,55,55,46,54,55,49,55,54,49,44,52,48,46,50,56,57,56,50,53,93,44,91,45,55,55,46,54,49,52,54,54,53,44,52,48,46,49,57,56,53,52,57,93,44,91,45,55,55,46,52,50,54,53,57,53,44,52,48,46,50,56,54,54,49,93,44,91,45,55,55,46,50,55,48,48,53,55,44,52,48,46,50,55,56,54,53,50,93,44,91,45,55,54,46,57,49,52,57,55,44,52,48,46,51,50,56,52,56,52,93,44,91,45,55,55,46,48,50,56,54,52,53,44,52,48,46,51,57,49,49,57,55,93,44,91,45,55,54,46,57,52,57,51,57,55,44,52,48,46,52,54,57,48,51,55,93,44,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,90,105,101,98,97,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,49,52,44,34,98,101,100,115,34,58,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,57,57,57,57,57,44,52,53,46,48,51,56,50,55,52,93,44,91,45,49,48,50,46,48,48,48,52,51,50,44,52,52,46,53,49,49,54,54,51,93,44,91,45,49,48,49,46,55,56,48,55,51,51,44,52,52,46,53,51,54,52,51,54,93,44,91,45,49,48,49,46,55,49,53,48,51,56,44,52,52,46,53,55,57,52,56,51,93,44,91,45,49,48,49,46,53,51,49,48,51,53,44,52,52,46,53,54,55,56,55,53,93,44,91,45,49,48,49,46,51,50,56,50,52,53,44,52,52,46,54,57,48,57,53,54,93,44,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,48,49,46,49,51,54,49,54,50,44,52,52,46,57,57,52,48,55,52,93,44,91,45,49,48,49,46,53,48,49,48,53,51,44,52,52,46,57,57,51,55,57,53,93,44,91,45,49,48,49,46,52,55,48,49,57,44,52,53,46,52,55,50,52,49,54,93,44,91,45,49,48,49,46,57,57,57,55,57,44,52,53,46,52,55,50,52,49,52,93,44,91,45,49,48,49,46,57,57,57,57,57,44,52,53,46,48,51,56,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,51,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,54,52,53,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,48,49,55,57,44,51,50,46,54,53,50,50,48,57,93,44,91,45,57,52,46,55,48,49,57,56,54,44,51,50,46,52,50,49,55,56,50,93,44,91,45,57,52,46,53,55,57,50,49,57,44,51,50,46,51,57,52,57,49,54,93,44,91,45,57,52,46,52,57,49,56,49,56,44,51,50,46,51,57,52,49,51,55,93,44,91,45,57,52,46,51,53,52,50,57,52,44,51,50,46,51,50,57,50,48,57,93,44,91,45,57,52,46,48,52,50,57,48,49,44,51,50,46,51,57,50,50,56,51,93,44,91,45,57,52,46,48,52,51,49,52,55,44,51,50,46,54,57,51,48,51,93,44,91,45,57,52,46,49,55,50,49,51,54,44,51,50,46,54,57,54,57,93,44,91,45,57,52,46,50,56,51,48,50,56,44,51,50,46,55,52,54,55,50,57,93,44,91,45,57,52,46,51,57,48,55,56,51,44,51,50,46,54,57,52,51,55,55,93,44,91,45,57,52,46,53,48,55,51,50,51,44,51,50,46,54,57,51,55,51,56,93,44,91,45,57,52,46,55,48,50,49,52,44,51,50,46,55,57,51,48,56,56,93,44,91,45,57,52,46,55,48,49,55,57,44,51,50,46,54,53,50,50,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,97,114,97,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,48,55,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,52,51,55,51,49,44,52,55,46,48,52,51,57,53,56,93,44,91,45,56,56,46,52,53,49,50,44,52,54,46,57,51,56,57,55,54,93,44,91,45,56,56,46,53,53,49,57,52,51,44,52,54,46,56,53,49,55,57,53,93,44,91,45,56,56,46,54,55,56,57,56,51,44,52,54,46,56,53,49,56,50,50,93,44,91,45,56,56,46,54,55,57,51,57,50,44,52,54,46,52,50,48,49,51,57,93,44,91,45,56,56,46,49,49,54,53,55,49,44,52,54,46,52,49,57,57,53,49,93,44,91,45,56,56,46,49,49,53,56,52,51,44,52,54,46,54,55,56,51,56,49,93,44,91,45,56,56,46,48,52,52,55,48,57,44,52,54,46,55,54,53,51,53,51,93,44,91,45,56,56,46,48,52,51,55,51,49,44,52,55,46,48,52,51,57,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,82,111,103,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,56,49,52,44,34,98,101,100,115,34,58,49,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,51,49,53,55,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,56,48,57,53,52,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,56,49,50,51,52,50,44,51,54,46,52,50,51,53,56,93,44,91,45,57,53,46,56,49,53,52,44,51,54,46,49,54,50,54,51,93,44,91,45,57,53,46,55,54,49,54,53,44,51,54,46,49,54,50,55,53,93,44,91,45,57,53,46,54,49,56,53,50,44,51,54,46,49,54,50,53,49,50,93,44,91,45,57,53,46,53,53,50,53,56,55,44,51,54,46,48,57,49,52,56,54,93,44,91,45,57,53,46,52,51,57,57,55,44,51,54,46,48,55,53,50,93,44,91,45,57,53,46,52,51,53,54,49,44,51,54,46,53,49,48,49,54,93,44,91,45,57,53,46,51,50,56,49,55,44,51,54,46,53,49,48,50,52,93,44,91,45,57,53,46,52,51,49,53,55,44,51,54,46,53,57,55,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,53,49,53,44,34,98,101,100,115,34,58,49,50,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,52,51,48,50,50,57,44,51,57,46,50,52,56,55,57,53,93,44,91,45,57,50,46,53,53,56,48,56,54,44,51,56,46,57,55,48,54,57,50,93,44,91,45,57,50,46,52,57,56,51,55,55,44,51,56,46,57,50,50,48,56,52,93,44,91,45,57,50,46,51,55,57,54,49,52,44,51,56,46,56,48,48,48,55,54,93,44,91,45,57,50,46,51,57,52,56,54,54,44,51,56,46,55,51,57,49,51,93,44,91,45,57,50,46,51,53,55,56,49,51,44,51,56,46,54,55,57,53,49,55,93,44,91,45,57,50,46,50,50,48,54,54,49,44,51,56,46,54,52,51,49,54,55,93,44,91,45,57,50,46,49,51,53,51,57,55,44,51,56,46,56,49,53,53,56,49,93,44,91,45,57,50,46,49,54,53,49,49,55,44,51,56,46,57,48,48,57,52,56,93,44,91,45,57,50,46,49,49,48,51,56,55,44,51,57,46,48,54,52,50,48,52,93,44,91,45,57,50,46,49,48,52,51,55,52,44,51,57,46,50,51,57,56,48,57,93,44,91,45,57,50,46,51,49,52,52,55,49,44,51,57,46,50,52,54,52,53,52,93,44,91,45,57,50,46,52,51,48,50,50,57,44,51,57,46,50,52,56,55,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,97,121,97,103,195,188,101,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,50,53,53,44,34,98,101,100,115,34,58,49,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,54,55,46,57,57,56,54,57,49,44,49,56,46,49,55,48,55,54,93,44,91,45,54,55,46,57,55,54,49,51,54,44,49,56,46,48,51,57,53,57,51,93,44,91,45,54,55,46,56,50,50,52,52,49,44,49,56,46,48,50,54,52,51,49,93,44,91,45,54,55,46,55,57,49,57,56,54,44,49,56,46,49,48,55,52,53,56,93,44,91,45,54,55,46,56,53,50,52,52,51,44,49,56,46,49,55,48,49,49,49,93,44,91,45,54,55,46,57,57,56,54,57,49,44,49,56,46,49,55,48,55,54,93,93,93,44,91,91,91,45,54,55,46,50,50,53,54,54,52,44,49,56,46,49,57,54,49,53,51,93,44,91,45,54,55,46,49,53,57,55,51,51,44,49,56,46,49,53,51,50,50,55,93,44,91,45,54,55,46,48,56,54,51,53,57,44,49,56,46,49,52,57,56,50,57,93,44,91,45,54,55,46,48,53,49,52,54,49,44,49,56,46,49,55,52,48,53,51,93,44,91,45,54,55,46,48,49,57,56,51,54,44,49,56,46,49,57,53,52,55,49,93,44,91,45,54,55,46,48,56,50,48,48,50,44,49,56,46,50,53,52,57,52,54,93,44,91,45,54,55,46,50,52,51,53,53,57,44,49,56,46,50,54,56,57,50,50,93,44,91,45,54,55,46,50,53,52,50,44,49,56,46,50,53,50,54,51,56,93,44,91,45,54,55,46,50,50,53,54,54,52,44,49,56,46,49,57,54,49,53,51,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,100,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,52,50,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,50,51,51,51,54,44,51,53,46,52,54,52,50,50,53,93,44,91,45,57,56,46,54,50,48,54,57,50,44,51,53,46,48,57,55,55,54,53,93,44,91,45,57,56,46,54,49,57,56,49,54,44,51,52,46,56,53,53,51,52,93,44,91,45,57,56,46,48,57,51,49,50,55,44,51,52,46,56,53,52,57,56,56,93,44,91,45,57,56,46,48,57,54,48,49,52,44,51,53,46,51,55,55,55,53,51,93,44,91,45,57,56,46,51,48,54,51,50,54,44,51,53,46,51,55,55,50,51,57,93,44,91,45,57,56,46,51,49,51,50,53,49,44,51,53,46,53,53,49,53,50,51,93,44,91,45,57,56,46,54,50,51,50,52,52,44,51,53,46,53,53,49,53,50,50,93,44,91,45,57,56,46,54,50,51,51,51,54,44,51,53,46,52,54,52,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,48,52,50,55,44,34,98,101,100,115,34,58,54,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,51,57,55,57,52,57,44,51,57,46,55,52,54,48,52,93,44,91,45,49,48,53,46,51,57,56,57,52,57,44,51,57,46,53,54,54,48,53,54,93,44,91,45,49,48,53,46,51,57,55,56,55,53,44,51,57,46,49,50,57,53,54,52,93,44,91,45,49,48,53,46,51,51,48,52,52,52,44,51,57,46,49,50,57,54,56,53,93,44,91,45,49,48,53,46,51,50,57,50,50,44,51,57,46,49,50,57,54,56,57,93,44,91,45,49,48,53,46,50,51,51,57,51,56,44,51,57,46,50,52,54,56,54,56,93,44,91,45,49,48,53,46,48,52,56,55,52,44,51,57,46,53,54,54,48,56,56,93,44,91,45,49,48,53,46,48,53,51,52,51,55,44,51,57,46,54,50,48,57,56,52,93,44,91,45,49,48,53,46,48,57,54,57,48,57,44,51,57,46,54,49,52,52,50,51,93,44,91,45,49,48,53,46,48,53,51,50,53,54,44,51,57,46,54,54,55,55,56,53,93,44,91,45,49,48,53,46,48,53,51,50,52,54,44,51,57,46,55,57,49,48,54,51,93,44,91,45,49,48,53,46,48,53,50,56,57,50,44,51,57,46,57,49,52,50,50,52,93,44,91,45,49,48,53,46,49,52,55,49,52,51,44,51,57,46,57,49,51,56,56,57,93,44,91,45,49,48,53,46,51,57,55,56,52,57,44,51,57,46,57,49,50,56,56,54,93,44,91,45,49,48,53,46,51,57,55,57,52,57,44,51,57,46,55,52,54,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,97,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,51,49,56,44,34,98,101,100,115,34,58,49,48,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,56,55,50,55,44,51,56,46,53,56,50,55,56,51,93,44,91,45,56,50,46,51,50,51,57,57,57,44,51,56,46,52,52,57,50,54,56,93,44,91,45,56,50,46,53,48,56,50,56,44,51,56,46,52,49,49,49,57,56,93,44,91,45,56,50,46,50,54,52,56,52,57,44,51,56,46,50,50,57,49,57,57,93,44,91,45,56,50,46,49,57,53,55,53,49,44,51,56,46,51,50,51,52,57,57,93,44,91,45,56,50,46,48,52,55,49,50,56,44,51,56,46,51,55,52,52,51,50,93,44,91,45,56,50,46,48,53,53,49,50,55,44,51,56,46,52,55,52,53,52,55,93,44,91,45,56,50,46,50,49,56,57,54,55,44,51,56,46,53,57,49,54,56,51,93,44,91,45,56,50,46,50,56,55,50,55,44,51,56,46,53,56,50,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,56,51,34,44,34,78,65,77,69,34,58,34,82,101,97,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,53,50,44,34,98,101,100,115,34,58,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,55,55,53,56,48,50,44,51,49,46,54,53,49,51,49,57,93,44,91,45,49,48,49,46,55,55,54,49,57,49,44,51,49,46,48,55,57,55,56,52,93,44,91,45,49,48,49,46,50,55,52,55,57,57,44,51,49,46,48,55,57,51,55,57,93,44,91,45,49,48,49,46,50,54,55,57,52,55,44,51,49,46,53,50,56,54,56,56,93,44,91,45,49,48,49,46,50,54,55,54,51,44,51,49,46,53,53,54,52,54,50,93,44,91,45,49,48,49,46,50,54,55,49,50,50,44,51,49,46,54,53,48,56,53,52,93,44,91,45,49,48,49,46,55,55,53,56,48,50,44,51,49,46,54,53,49,51,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,86,97,110,32,66,117,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,56,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,48,57,55,54,51,44,51,53,46,55,50,50,52,48,49,93,44,91,45,57,50,46,56,49,51,52,49,55,44,51,53,46,53,52,57,93,44,91,45,57,50,46,56,53,48,54,50,52,44,51,53,46,52,54,50,57,53,93,44,91,45,57,50,46,52,55,57,50,54,56,44,51,53,46,52,53,53,51,53,55,93,44,91,45,57,50,46,52,56,49,52,54,57,44,51,53,46,51,54,56,51,57,50,93,44,91,45,57,50,46,50,53,50,55,53,57,44,51,53,46,51,54,51,55,49,56,93,44,91,45,57,50,46,50,52,48,53,50,44,51,53,46,55,49,50,49,57,93,44,91,45,57,50,46,52,49,56,52,48,56,44,51,53,46,55,49,54,48,52,54,93,44,91,45,57,50,46,52,49,54,56,52,55,44,51,53,46,55,56,56,53,57,49,93,44,91,45,57,50,46,54,50,57,56,51,55,44,51,53,46,55,57,48,56,50,51,93,44,91,45,57,50,46,54,51,49,50,48,55,44,51,53,46,55,49,56,51,54,53,93,44,91,45,57,50,46,56,48,57,55,54,51,44,51,53,46,55,50,50,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,83,117,109,109,105,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,52,50,57,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,51,52,53,48,56,44,51,57,46,57,50,52,57,49,52,93,44,91,45,49,48,54,46,51,56,53,52,55,56,44,51,57,46,55,54,55,49,54,52,93,44,91,45,49,48,54,46,49,55,54,49,49,53,44,51,57,46,54,49,52,50,50,49,93,44,91,45,49,48,54,46,50,52,56,50,57,53,44,51,57,46,53,52,52,50,53,49,93,44,91,45,49,48,54,46,50,48,54,55,51,50,44,51,57,46,51,55,57,54,51,54,93,44,91,45,49,48,54,46,49,51,53,53,50,57,44,51,57,46,51,55,57,53,52,54,93,44,91,45,49,48,53,46,57,53,49,54,57,56,44,51,57,46,52,49,52,54,49,57,93,44,91,45,49,48,53,46,56,50,57,54,54,50,44,51,57,46,53,54,52,56,54,53,93,44,91,45,49,48,53,46,55,56,50,54,55,52,44,51,57,46,54,50,57,48,50,52,93,44,91,45,49,48,53,46,57,50,52,54,49,56,44,51,57,46,54,57,56,57,55,50,93,44,91,45,49,48,54,46,48,50,51,55,56,51,44,51,57,46,54,56,56,52,50,93,44,91,45,49,48,54,46,48,56,51,55,49,49,44,51,57,46,56,48,53,57,54,52,93,44,91,45,49,48,54,46,50,53,50,48,50,55,44,51,57,46,57,49,52,55,49,50,93,44,91,45,49,48,54,46,52,51,52,53,48,56,44,51,57,46,57,50,52,57,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,111,119,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,57,49,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,44,91,45,57,55,46,49,52,55,55,50,49,44,51,54,46,57,57,57,48,51,51,93,44,91,45,57,54,46,55,52,57,56,51,56,44,51,54,46,57,57,56,57,56,56,93,44,91,45,57,54,46,53,50,53,53,56,50,44,51,54,46,57,57,56,55,49,93,44,91,45,57,54,46,53,50,52,56,55,51,44,51,55,46,51,48,50,55,51,93,44,91,45,57,54,46,53,50,53,54,57,44,51,55,46,52,55,54,52,48,53,93,44,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,57,49,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,57,53,57,56,49,44,51,53,46,55,54,56,54,52,57,93,44,91,45,57,51,46,55,49,48,48,55,54,44,51,53,46,51,55,53,50,52,50,93,44,91,45,57,51,46,52,51,48,52,49,44,51,53,46,52,50,51,55,51,55,93,44,91,45,57,51,46,50,57,57,48,49,44,51,53,46,51,50,55,54,52,52,93,44,91,45,57,51,46,50,57,53,57,49,44,51,53,46,52,54,57,57,49,53,93,44,91,45,57,51,46,50,50,51,54,51,51,44,51,53,46,52,54,56,53,57,51,93,44,91,45,57,51,46,49,54,55,56,44,51,53,46,53,57,55,54,57,53,93,44,91,45,57,51,46,49,54,52,52,53,50,44,51,53,46,55,50,56,56,51,49,93,44,91,45,57,51,46,53,49,57,53,55,53,44,51,53,46,55,51,52,52,50,50,93,44,91,45,57,51,46,53,49,57,50,48,52,44,51,53,46,55,54,51,53,50,49,93,44,91,45,57,51,46,54,57,53,57,56,49,44,51,53,46,55,54,56,54,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,56,53,52,49,55,49,44,52,52,46,48,55,48,48,56,57,93,44,91,45,55,52,46,55,55,53,54,49,55,44,52,51,46,52,56,54,54,55,55,93,44,91,45,55,52,46,56,54,55,55,49,50,44,52,51,46,51,51,57,56,50,54,93,44,91,45,55,52,46,55,49,50,54,49,53,44,52,51,46,50,56,54,49,52,51,93,44,91,45,55,52,46,53,51,52,54,53,55,44,52,51,46,50,50,56,49,49,53,93,44,91,45,55,52,46,49,52,48,49,52,55,44,52,51,46,50,53,51,57,55,57,93,44,91,45,55,52,46,49,54,48,49,44,52,51,46,51,55,49,53,51,50,93,44,91,45,55,52,46,50,49,52,54,50,53,44,52,51,46,55,50,56,55,48,51,93,44,91,45,55,52,46,48,53,55,48,48,53,44,52,51,46,55,52,52,53,49,51,93,44,91,45,55,52,46,50,49,51,55,51,52,44,52,51,46,56,49,48,56,55,53,93,44,91,45,55,52,46,51,51,54,56,50,54,44,52,51,46,57,50,53,50,50,51,93,44,91,45,55,52,46,50,53,53,57,57,56,44,52,51,46,57,54,57,55,57,55,93,44,91,45,55,52,46,50,56,49,56,55,44,52,52,46,49,50,48,53,53,50,93,44,91,45,55,52,46,53,51,53,49,53,54,44,52,52,46,48,57,57,50,53,93,44,91,45,55,52,46,56,53,52,49,55,49,44,52,52,46,48,55,48,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,114,97,105,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,52,55,50,55,56,50,44,51,55,46,52,50,51,55,51,93,44,91,45,56,48,46,52,51,48,57,52,51,44,51,55,46,51,49,54,51,55,56,93,44,91,45,56,48,46,50,54,50,49,56,52,44,51,55,46,51,52,49,53,50,54,93,44,91,45,56,48,46,48,55,52,49,49,57,44,51,55,46,52,50,50,52,54,57,93,44,91,45,55,57,46,57,54,57,48,55,49,44,51,55,46,53,52,52,52,48,56,93,44,91,45,56,48,46,48,50,48,53,53,52,44,51,55,46,54,52,55,52,52,50,93,44,91,45,56,48,46,49,52,52,51,57,52,44,51,55,46,53,57,54,54,50,55,93,44,91,45,56,48,46,50,50,48,57,56,52,44,51,55,46,54,50,55,55,54,55,93,44,91,45,56,48,46,50,57,57,55,56,57,44,51,55,46,53,48,56,50,55,49,93,44,91,45,56,48,46,52,55,50,55,56,50,44,51,55,46,52,50,51,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,67,111,108,101,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,57,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,55,49,51,57,55,49,44,51,50,46,48,56,50,48,56,57,93,44,91,45,57,57,46,55,50,49,54,57,56,44,51,49,46,53,55,54,55,53,57,93,44,91,45,57,57,46,54,48,49,56,53,44,51,49,46,52,57,49,57,53,93,44,91,45,57,57,46,51,48,50,54,48,53,44,51,49,46,52,51,50,53,48,52,93,44,91,45,57,57,46,50,48,50,55,54,56,44,51,49,46,52,54,55,50,51,52,93,44,91,45,57,57,46,49,57,53,56,55,49,44,51,50,46,48,55,57,50,51,53,93,44,91,45,57,57,46,54,51,49,52,49,51,44,51,50,46,48,56,49,50,55,52,93,44,91,45,57,57,46,55,49,51,57,55,49,44,51,50,46,48,56,50,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,57,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,48,34,44,34,78,65,77,69,34,58,34,89,117,107,111,110,45,75,111,121,117,107,117,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,49,46,48,48,50,54,57,52,44,54,56,46,52,57,56,51,54,52,93,44,91,45,49,52,51,46,53,50,56,56,50,51,44,54,56,46,53,48,48,48,50,49,93,44,91,45,49,52,54,44,54,56,46,53,93,44,91,45,49,52,54,44,54,56,93,44,91,45,49,52,55,46,55,53,51,49,49,55,44,54,55,46,57,57,57,57,56,56,93,44,91,45,49,52,57,46,51,50,53,52,51,44,54,55,46,57,57,57,57,57,57,93,44,91,45,49,53,48,46,56,57,48,48,50,56,44,54,56,46,48,48,48,48,48,52,93,44,91,45,49,53,49,46,57,48,48,50,55,54,44,54,56,46,48,48,48,48,48,55,93,44,91,45,49,53,51,46,52,48,52,49,53,50,44,54,56,93,44,91,45,49,53,53,46,51,49,56,55,52,52,44,54,56,46,48,48,48,48,51,50,93,44,91,45,49,53,53,46,51,54,56,57,57,57,44,54,55,46,55,55,53,50,49,54,93,44,91,45,49,53,52,46,55,52,56,57,51,57,44,54,55,46,53,49,53,52,57,53,93,44,91,45,49,53,52,46,55,52,56,57,48,52,44,54,55,46,50,53,53,55,53,51,93,44,91,45,49,53,52,46,51,48,51,49,49,44,54,55,46,50,53,53,55,53,57,93,44,91,45,49,53,52,46,49,52,54,51,49,52,44,54,55,46,49,54,57,49,55,56,93,44,91,45,49,53,52,46,49,52,54,50,50,49,44,54,54,46,56,50,50,56,52,51,93,44,91,45,49,53,52,46,50,49,48,51,48,50,44,54,54,46,55,51,54,50,53,53,93,44,91,45,49,53,52,46,56,54,48,52,52,54,44,54,54,46,55,51,54,50,52,50,93,44,91,45,49,53,52,46,56,54,48,52,51,49,44,54,54,46,53,54,51,48,54,52,93,44,91,45,49,53,53,46,53,49,48,53,56,53,44,54,54,46,53,54,51,48,53,49,93,44,91,45,49,53,53,46,53,53,52,57,57,51,44,54,54,46,51,48,51,50,55,52,93,44,91,45,49,53,53,46,57,56,50,52,57,57,44,54,54,46,51,48,51,50,54,56,93,44,91,45,49,53,53,46,57,56,50,53,48,52,44,54,54,46,51,56,57,56,54,93,44,91,45,49,53,54,46,49,57,54,50,50,52,44,54,54,46,52,55,54,53,56,50,93,44,91,45,49,53,54,46,54,50,51,55,55,44,54,54,46,52,55,54,52,52,50,93,44,91,45,49,53,54,46,54,50,51,55,53,55,44,54,54,46,51,48,51,50,53,57,93,44,91,45,49,53,55,46,48,53,49,50,54,54,44,54,54,46,51,48,51,50,53,52,93,44,91,45,49,53,55,46,48,53,49,50,56,52,44,54,54,46,52,55,54,52,51,56,93,44,91,45,49,53,55,46,57,48,54,51,49,44,54,54,46,52,55,54,52,50,52,93,44,91,45,49,53,55,46,57,48,54,50,57,53,44,54,54,46,49,51,48,48,52,57,93,44,91,45,49,53,56,46,57,55,50,49,56,53,44,54,54,46,49,51,48,48,50,55,93,44,91,45,49,53,56,46,57,55,50,49,55,53,44,54,53,46,57,53,54,56,52,57,93,44,91,45,49,53,57,46,54,48,52,56,49,51,44,54,53,46,57,53,54,56,51,93,44,91,45,49,53,57,46,53,57,51,53,48,54,44,54,53,46,53,50,51,56,51,53,93,44,91,45,49,53,57,46,51,56,53,53,55,56,44,54,53,46,53,50,51,56,51,53,93,44,91,45,49,53,57,46,51,55,55,51,54,53,44,54,53,46,50,54,52,48,51,51,93,44,91,45,49,53,57,46,53,56,50,55,51,54,44,54,53,46,50,54,52,48,50,54,93,44,91,45,49,53,57,46,53,55,50,49,55,51,44,54,52,46,57,49,55,53,57,55,93,44,91,45,49,53,57,46,55,55,52,57,50,49,44,54,52,46,57,49,55,53,54,53,93,44,91,45,49,53,57,46,55,55,52,56,57,55,44,54,52,46,55,52,52,51,56,50,93,44,91,45,49,53,57,46,57,54,50,50,57,44,54,52,46,55,52,52,51,55,55,93,44,91,45,49,53,57,46,57,52,55,50,56,56,44,54,52,46,48,53,49,52,53,57,93,44,91,45,49,53,57,46,55,51,55,52,55,53,44,54,52,46,48,53,49,52,53,57,93,44,91,45,49,53,57,46,55,51,55,52,53,49,44,54,51,46,55,57,49,53,57,49,93,44,91,45,49,53,57,46,57,51,50,55,51,49,44,54,51,46,55,57,49,53,56,57,93,44,91,45,49,54,48,46,49,49,49,52,57,56,44,54,51,46,55,48,52,57,55,50,93,44,91,45,49,54,48,46,49,49,49,53,50,50,44,54,51,46,54,49,56,51,53,49,93,44,91,45,49,54,48,46,52,57,55,51,56,49,44,54,51,46,54,49,56,51,52,51,93,44,91,45,49,54,48,46,54,57,48,50,57,52,44,54,51,46,53,51,49,54,56,57,93,44,91,45,49,54,48,46,54,54,55,51,54,49,44,54,51,46,50,55,49,56,52,53,93,44,91,45,49,54,48,46,56,53,56,48,48,52,44,54,51,46,50,55,49,56,51,56,93,44,91,45,49,54,48,46,56,53,55,57,57,44,54,51,46,48,49,49,57,53,51,93,44,91,45,49,54,48,46,57,57,54,50,49,53,44,54,50,46,56,57,56,57,51,54,93,44,91,45,49,54,48,46,57,57,54,50,48,49,44,54,50,46,53,53,50,52,50,52,93,44,91,45,49,54,49,46,48,52,56,49,55,54,44,54,50,46,53,53,50,52,49,93,44,91,45,49,54,49,46,48,52,56,49,54,53,44,54,50,46,50,48,53,56,54,57,93,44,91,45,49,54,48,46,57,49,53,57,54,52,44,54,50,46,50,48,53,56,54,54,93,44,91,45,49,54,48,46,57,49,53,57,53,51,44,54,49,46,57,52,53,57,52,51,93,44,91,45,49,54,48,46,53,51,52,54,55,49,44,54,49,46,57,52,53,57,52,93,44,91,45,49,53,57,46,50,54,53,48,51,55,44,54,49,46,57,52,53,57,53,55,93,44,91,45,49,53,57,46,50,54,53,48,51,53,44,54,50,46,48,51,50,53,57,56,93,44,91,45,49,53,56,46,53,51,49,51,53,49,44,54,50,46,48,51,50,54,50,93,44,91,45,49,53,56,46,53,51,49,51,54,49,44,54,50,46,49,49,57,50,54,52,93,44,91,45,49,53,55,46,48,54,51,56,54,52,44,54,50,46,49,49,57,50,55,49,93,44,91,45,49,53,55,46,48,54,51,56,53,50,44,54,50,46,48,51,50,54,51,52,93,44,91,45,49,53,53,46,52,57,55,54,52,53,44,54,50,46,48,51,50,54,53,57,93,44,91,45,49,53,51,46,55,54,49,56,55,53,44,54,50,46,48,51,50,54,56,57,93,44,91,45,49,53,51,46,55,54,49,56,55,49,44,54,50,46,49,49,57,51,51,53,93,44,91,45,49,53,51,46,51,57,53,48,48,57,44,54,50,46,49,49,57,51,52,55,93,44,91,45,49,53,51,46,51,57,53,48,48,57,44,54,50,46,50,48,53,57,57,93,44,91,45,49,53,51,46,48,55,48,49,50,51,44,54,50,46,50,48,54,48,49,53,93,44,91,45,49,53,50,46,57,57,57,56,51,57,44,54,50,46,50,57,50,54,50,49,93,44,91,45,49,53,50,46,57,57,55,54,52,55,44,54,50,46,55,50,55,52,48,49,93,44,91,45,49,53,50,46,52,50,56,48,56,52,44,54,51,46,49,56,51,49,55,49,93,44,91,45,49,53,50,46,52,50,56,48,57,56,44,54,51,46,51,48,52,50,53,57,93,44,91,45,49,53,50,46,56,49,48,57,51,49,44,54,51,46,51,52,55,53,54,51,93,44,91,45,49,53,50,46,56,55,51,51,57,50,44,54,51,46,52,55,55,53,93,44,91,45,49,53,50,46,56,55,51,52,49,44,54,51,46,54,53,48,55,52,53,93,44,91,45,49,53,50,46,50,50,56,52,51,57,44,54,51,46,54,53,48,55,54,93,44,91,45,49,53,50,46,50,50,57,50,53,54,44,54,51,46,56,50,52,48,48,49,93,44,91,45,49,53,50,46,48,53,53,49,51,50,44,54,51,46,56,50,52,48,48,54,93,44,91,45,49,53,50,46,48,53,53,55,53,56,44,54,51,46,57,57,55,50,52,50,93,44,91,45,49,53,49,46,55,57,51,57,55,54,44,54,52,46,48,54,57,52,51,93,44,91,45,49,53,49,46,50,56,49,57,57,53,44,54,51,46,57,57,55,50,54,53,93,44,91,45,49,53,48,46,55,50,57,51,56,53,44,54,52,46,51,53,56,49,55,51,93,44,91,45,49,52,57,46,49,51,50,54,53,51,44,54,52,46,51,53,56,50,49,52,93,44,91,45,49,52,56,46,48,52,54,54,57,54,44,54,52,46,51,52,51,56,48,50,93,44,91,45,49,52,56,46,53,53,48,55,52,50,44,54,52,46,54,49,55,50,48,56,93,44,91,45,49,52,56,46,54,52,56,50,48,55,44,54,52,46,53,56,53,51,55,49,93,44,91,45,49,52,56,46,54,54,49,49,57,57,44,54,53,46,50,48,57,56,55,53,93,44,91,45,49,52,55,46,53,53,55,55,55,49,44,54,53,46,50,48,57,56,57,53,93,44,91,45,49,52,55,46,51,49,54,56,48,57,44,54,53,46,50,55,53,50,51,50,93,44,91,45,49,52,54,46,57,48,51,49,52,50,44,54,53,46,50,56,51,51,55,53,93,44,91,45,49,52,54,46,53,52,56,54,53,52,44,54,53,46,51,52,53,48,48,51,93,44,91,45,49,52,54,46,50,48,53,55,48,52,44,54,53,46,52,53,50,57,57,54,93,44,91,45,49,52,54,46,48,48,55,56,57,57,44,54,53,46,51,53,57,52,51,52,93,44,91,45,49,52,54,46,48,56,49,48,50,56,44,54,53,46,50,52,57,57,52,50,93,44,91,45,49,52,53,46,54,51,51,55,56,57,44,54,53,46,49,53,51,55,57,49,93,44,91,45,49,52,53,46,53,49,57,52,51,54,44,54,53,46,48,54,50,54,56,50,93,44,91,45,49,52,53,46,50,50,53,57,52,52,44,54,53,46,48,54,57,50,49,54,93,44,91,45,49,52,52,46,57,56,51,53,49,52,44,54,53,46,49,51,54,57,56,56,93,44,91,45,49,52,52,46,52,54,48,48,50,44,54,53,46,48,54,48,55,49,49,93,44,91,45,49,52,52,46,51,51,49,51,55,55,44,54,53,46,49,48,55,55,48,55,93,44,91,45,49,52,51,46,57,55,51,54,51,57,44,54,53,46,49,49,57,51,48,52,93,44,91,45,49,52,51,46,57,50,49,48,57,52,44,54,53,46,48,53,56,55,56,93,44,91,45,49,52,52,46,49,48,52,55,52,52,44,54,52,46,56,52,57,50,51,49,93,44,91,45,49,52,52,46,48,54,57,48,50,57,44,54,52,46,54,56,51,53,54,50,93,44,91,45,49,52,51,46,55,53,50,48,57,49,44,54,52,46,54,52,55,54,49,56,93,44,91,45,49,52,51,46,53,51,51,55,52,56,44,54,52,46,55,55,56,55,53,53,93,44,91,45,49,52,51,46,52,54,57,54,54,55,44,54,52,46,57,56,50,49,56,57,93,44,91,45,49,52,51,46,48,52,52,48,53,53,44,54,53,46,49,51,50,51,50,55,93,44,91,45,49,52,50,46,56,54,52,51,52,52,44,54,53,46,49,52,48,51,56,55,93,44,91,45,49,52,50,46,55,51,49,57,44,54,53,46,50,51,51,54,51,57,93,44,91,45,49,52,50,46,54,54,51,55,55,50,44,54,53,46,51,55,49,56,55,54,93,44,91,45,49,52,50,46,52,56,55,51,48,49,44,54,53,46,51,55,49,56,57,56,93,44,91,45,49,52,50,46,49,52,50,57,50,50,44,54,53,46,52,54,51,49,55,52,93,44,91,45,49,52,49,46,56,53,53,55,54,49,44,54,53,46,52,52,53,55,56,54,93,44,91,45,49,52,49,46,55,56,57,48,53,44,54,53,46,53,48,49,53,52,54,93,44,91,45,49,52,49,46,51,56,55,56,52,50,44,54,53,46,54,49,52,51,57,53,93,44,91,45,49,52,49,46,51,51,54,50,50,52,44,54,53,46,55,49,49,54,49,52,93,44,91,45,49,52,49,46,48,48,50,52,55,50,44,54,53,46,56,51,57,52,50,49,93,44,91,45,49,52,49,46,48,48,50,53,57,54,44,54,54,46,53,49,52,50,55,93,44,91,45,49,52,49,46,48,48,50,54,57,51,44,54,55,46,54,55,49,57,50,57,93,44,91,45,49,52,49,46,48,48,50,54,57,52,44,54,56,46,52,57,56,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,78,97,118,97,106,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,55,48,53,44,34,98,101,100,115,34,58,49,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,55,53,48,54,57,44,51,55,46,48,48,51,48,48,55,93,44,91,45,49,49,48,46,55,53,48,54,57,55,44,51,53,46,56,50,48,53,56,57,93,44,91,45,49,49,48,46,55,53,48,54,57,51,44,51,53,46,49,52,48,51,48,57,93,44,91,45,49,49,48,46,55,53,48,54,55,56,44,51,52,46,50,54,51,51,49,52,93,44,91,45,49,49,48,46,55,53,48,54,55,50,44,51,52,46,48,48,48,48,52,56,93,44,91,45,49,49,48,46,48,48,48,54,54,44,51,52,46,48,48,48,48,52,54,93,44,91,45,49,49,48,46,48,48,48,54,52,57,44,51,51,46,53,55,54,57,51,93,44,91,45,49,48,57,46,56,57,49,54,55,54,44,51,51,46,53,54,55,56,55,52,93,44,91,45,49,48,57,46,56,53,57,50,55,52,44,51,51,46,55,55,55,54,56,51,93,44,91,45,49,48,57,46,56,52,56,50,52,54,44,51,52,46,52,55,51,52,48,49,93,44,91,45,49,48,57,46,56,54,52,57,56,57,44,51,52,46,53,54,54,56,57,51,93,44,91,45,49,48,57,46,56,52,52,54,50,52,44,51,52,46,56,50,50,53,54,50,93,44,91,45,49,48,57,46,56,52,51,55,54,52,44,51,53,46,53,49,55,56,55,53,93,44,91,45,49,48,57,46,56,50,54,57,54,52,44,51,53,46,54,54,50,56,56,55,93,44,91,45,49,49,48,46,48,48,48,54,55,52,44,51,53,46,54,54,51,48,56,55,93,44,91,45,49,49,48,46,48,48,48,54,55,54,44,51,54,46,52,52,53,50,56,52,93,44,91,45,49,49,48,46,48,48,48,54,56,56,44,51,54,46,57,57,56,51,52,57,93,44,91,45,49,49,48,46,55,53,48,54,57,44,51,55,46,48,48,51,48,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,51,50,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,52,53,49,57,49,44,51,49,46,55,49,55,53,50,52,93,44,91,45,57,48,46,50,55,57,57,53,51,44,51,49,46,54,57,57,56,54,53,93,44,91,45,57,48,46,55,51,54,56,50,52,44,51,49,46,54,57,56,52,57,49,93,44,91,45,57,48,46,55,51,55,51,51,44,51,49,46,54,49,49,49,50,52,93,44,91,45,57,48,46,54,51,51,50,51,49,44,51,49,46,54,49,49,52,48,57,93,44,91,45,57,48,46,54,51,51,51,48,50,44,51,49,46,51,52,57,51,48,54,93,44,91,45,57,48,46,53,52,56,49,57,57,44,51,49,46,51,52,57,53,55,52,93,44,91,45,57,48,46,50,54,48,51,57,49,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,50,52,51,56,57,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,50,52,53,49,57,49,44,51,49,46,55,49,55,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,53,55,34,44,34,78,65,77,69,34,58,34,79,99,104,105,108,116,114,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,52,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,56,53,55,49,54,44,51,54,46,48,53,55,53,55,50,93,44,91,45,49,48,48,46,53,52,54,55,50,52,44,51,54,46,48,53,54,53,51,54,93,44,91,45,49,48,48,46,53,52,54,49,52,53,44,51,54,46,52,57,57,51,52,51,93,44,91,45,49,48,48,46,57,53,52,49,53,51,44,51,54,46,52,57,57,57,49,54,93,44,91,45,49,48,49,46,48,56,53,49,53,54,44,51,54,46,52,57,57,50,52,52,93,44,91,45,49,48,49,46,48,56,53,55,49,54,44,51,54,46,48,53,55,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,67,114,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,55,54,55,50,52,54,44,51,49,46,54,53,49,55,49,52,93,44,91,45,49,48,50,46,55,54,55,51,54,53,44,51,49,46,50,57,51,56,48,51,93,44,91,45,49,48,50,46,54,55,51,50,52,52,44,51,49,46,51,50,56,49,48,53,93,44,91,45,49,48,50,46,52,51,48,49,50,51,44,51,49,46,49,57,51,57,49,56,93,44,91,45,49,48,50,46,51,56,56,56,48,52,44,51,49,46,48,56,55,49,53,54,93,44,91,45,49,48,50,46,51,48,49,50,49,50,44,51,49,46,48,56,54,50,49,50,93,44,91,45,49,48,50,46,51,49,56,48,53,44,51,49,46,54,53,49,51,50,55,93,44,91,45,49,48,50,46,55,54,55,50,52,54,44,51,49,46,54,53,49,55,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,105,103,32,72,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,54,50,49,51,49,53,44,52,53,46,48,48,48,51,54,49,93,44,91,45,49,48,56,46,53,57,50,50,57,54,44,52,52,46,56,55,49,52,52,52,93,44,91,45,49,48,56,46,53,53,48,53,54,50,44,52,52,46,49,54,56,52,53,53,93,44,91,45,49,48,55,46,49,52,54,56,48,56,44,52,52,46,49,54,53,54,54,54,93,44,91,45,49,48,55,46,49,52,53,48,48,49,44,52,52,46,51,50,52,48,48,52,93,44,91,45,49,48,55,46,50,48,50,48,51,56,44,52,52,46,52,52,54,51,48,53,93,44,91,45,49,48,55,46,51,54,57,54,50,49,44,52,52,46,53,53,57,56,51,55,93,44,91,45,49,48,55,46,53,50,56,50,55,57,44,52,52,46,54,54,53,53,56,52,93,44,91,45,49,48,55,46,55,52,49,53,52,51,44,52,52,46,55,49,52,51,53,50,93,44,91,45,49,48,55,46,56,51,49,54,50,50,44,52,52,46,55,57,57,55,56,55,93,44,91,45,49,48,55,46,57,49,49,53,50,51,44,52,53,46,48,48,48,54,55,56,93,44,91,45,49,48,56,46,50,52,57,52,49,50,44,52,52,46,57,57,57,57,48,52,93,44,91,45,49,48,56,46,54,50,49,51,49,53,44,52,53,46,48,48,48,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,72,105,99,107,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,54,55,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,49,54,55,54,44,51,53,46,56,51,56,55,53,93,44,91,45,56,55,46,55,52,51,55,53,44,51,53,46,54,54,51,57,53,50,93,44,91,45,56,55,46,54,53,56,49,56,57,44,51,53,46,54,48,57,51,52,57,93,44,91,45,56,55,46,53,54,56,56,51,49,44,51,53,46,54,53,50,50,57,54,93,44,91,45,56,55,46,52,53,57,53,56,55,44,51,53,46,54,49,53,49,50,52,93,44,91,45,56,55,46,51,51,57,50,51,50,44,51,53,46,54,53,57,49,49,93,44,91,45,56,55,46,50,51,52,49,52,51,44,51,53,46,55,50,52,54,57,49,93,44,91,45,56,55,46,50,49,53,48,57,57,44,51,53,46,56,53,48,54,53,49,93,44,91,45,56,55,46,50,48,52,50,52,50,44,51,53,46,57,53,57,49,56,54,93,44,91,45,56,55,46,53,51,52,53,51,44,51,53,46,57,57,51,48,55,52,93,44,91,45,56,55,46,55,48,54,57,54,44,51,53,46,57,48,53,56,56,52,93,44,91,45,56,55,46,55,49,54,55,54,44,51,53,46,56,51,56,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,84,117,110,105,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,55,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,48,55,57,57,49,44,51,52,46,56,51,50,57,55,93,44,91,45,57,48,46,53,49,55,49,54,56,44,51,52,46,54,51,48,57,50,56,93,44,91,45,57,48,46,53,56,51,50,50,52,44,51,52,46,54,52,49,51,56,57,93,44,91,45,57,48,46,53,54,57,51,52,55,44,51,52,46,53,50,52,56,54,55,93,44,91,45,57,48,46,51,57,57,52,57,56,44,51,52,46,52,50,51,56,48,55,93,44,91,45,57,48,46,51,48,52,51,49,55,44,51,52,46,53,48,57,54,50,49,93,44,91,45,57,48,46,49,57,56,53,51,54,44,51,52,46,53,49,49,48,56,56,93,44,91,45,57,48,46,49,57,56,54,51,49,44,51,52,46,53,53,52,52,50,53,93,44,91,45,57,48,46,50,52,51,57,50,52,44,51,52,46,54,48,50,49,53,93,44,91,45,57,48,46,50,48,48,49,57,57,44,51,52,46,55,50,52,52,49,56,93,44,91,45,57,48,46,50,48,50,49,50,54,44,51,52,46,56,54,48,51,55,52,93,44,91,45,57,48,46,51,48,52,53,51,50,44,51,52,46,56,54,48,53,56,56,93,44,91,45,57,48,46,52,48,55,57,57,49,44,51,52,46,56,51,50,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,53,52,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,51,50,50,52,44,52,48,46,53,55,49,57,48,49,93,44,91,45,57,52,46,50,49,52,50,55,56,44,52,48,46,51,56,52,50,53,52,93,44,91,45,57,52,46,50,49,54,54,57,54,44,52,48,46,49,51,54,54,50,54,93,44,91,45,57,51,46,55,54,52,48,50,49,44,52,48,46,49,51,50,57,48,57,93,44,91,45,57,51,46,55,54,51,51,50,52,44,52,48,46,50,54,51,57,56,56,93,44,91,45,57,51,46,55,55,52,51,52,52,44,52,48,46,53,55,55,53,52,56,93,44,91,45,57,52,46,48,49,53,52,57,50,44,52,48,46,53,55,51,57,49,52,93,44,91,45,57,52,46,50,51,50,50,52,44,52,48,46,53,55,49,57,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,97,110,195,179,118,97,110,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,49,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,49,57,50,55,56,44,49,56,46,52,48,50,57,57,51,93,44,91,45,54,53,46,57,49,56,53,51,53,44,49,56,46,50,55,48,49,51,93,44,91,45,54,53,46,56,53,50,54,49,54,44,49,56,46,50,53,52,57,55,50,93,44,91,45,54,53,46,56,51,54,51,56,55,44,49,56,46,50,55,53,50,52,54,93,44,91,45,54,53,46,56,54,55,52,52,55,44,49,56,46,51,55,56,49,57,56,93,44,91,45,54,53,46,57,49,57,50,55,56,44,49,56,46,52,48,50,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,114,116,104,111,108,111,109,101,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,56,57,51,44,34,98,101,100,115,34,58,50,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,56,53,54,48,49,44,51,57,46,51,52,52,49,56,57,93,44,91,45,56,54,46,48,56,48,50,55,50,44,51,57,46,48,53,48,50,55,93,44,91,45,56,53,46,56,54,48,53,55,51,44,51,57,46,48,52,48,57,49,93,44,91,45,56,53,46,55,57,56,56,48,52,44,51,57,46,48,54,56,53,51,54,93,44,91,45,56,53,46,54,56,54,55,56,51,44,51,57,46,49,51,48,56,53,57,93,44,91,45,56,53,46,54,56,52,53,49,53,44,51,57,46,51,53,48,48,52,57,93,44,91,45,56,53,46,57,53,50,48,48,53,44,51,57,46,51,52,55,51,55,51,93,44,91,45,56,54,46,48,56,53,54,48,49,44,51,57,46,51,52,52,49,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,51,34,44,34,78,65,77,69,34,58,34,80,97,117,108,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,56,52,48,44,34,98,101,100,115,34,58,49,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,50,50,55,52,50,44,51,52,46,48,56,50,52,57,55,93,44,91,45,56,52,46,57,55,56,54,56,51,44,51,51,46,57,53,49,51,57,51,93,44,91,45,56,53,46,48,53,48,51,49,44,51,51,46,57,48,52,52,56,56,93,44,91,45,56,53,46,48,51,55,57,50,54,44,51,51,46,56,49,49,57,52,50,93,44,91,45,56,52,46,57,48,49,54,56,56,44,51,51,46,55,56,48,55,48,51,93,44,91,45,56,52,46,55,50,52,49,51,57,44,51,51,46,56,48,54,49,55,93,44,91,45,56,52,46,55,51,55,56,51,54,44,51,52,46,48,55,57,51,57,57,93,44,91,45,56,52,46,57,50,50,55,52,50,44,51,52,46,48,56,50,52,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,54,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,57,51,49,50,44,51,57,46,50,53,52,50,51,53,93,44,91,45,56,52,46,48,53,50,55,48,57,44,51,56,46,55,55,49,50,50,54,93,44,91,45,56,51,46,57,48,51,57,48,49,44,51,56,46,55,54,56,49,56,50,93,44,91,45,56,51,46,55,48,53,51,49,49,44,51,56,46,54,51,57,56,53,51,93,44,91,45,56,51,46,54,55,51,48,49,56,44,51,57,46,48,50,48,52,51,93,44,91,45,56,51,46,56,55,50,50,49,52,44,51,57,46,48,50,49,51,48,52,93,44,91,45,56,51,46,56,54,53,54,55,57,44,51,57,46,50,52,55,51,51,51,93,44,91,45,56,51,46,57,57,51,49,50,44,51,57,46,50,53,52,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,52,52,48,44,34,98,101,100,115,34,58,50,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,57,53,49,50,52,44,51,54,46,51,48,50,50,55,56,93,44,91,45,56,53,46,54,51,52,49,53,56,44,51,54,46,50,49,51,51,52,54,93,44,91,45,56,53,46,55,56,48,49,52,56,44,51,54,46,50,51,56,48,49,49,93,44,91,45,56,53,46,56,48,55,52,49,53,44,51,54,46,49,51,49,53,56,50,93,44,91,45,56,53,46,54,52,52,54,48,52,44,51,54,46,48,49,53,48,53,51,93,44,91,45,56,53,46,53,48,55,54,55,55,44,51,54,46,48,56,50,48,49,50,93,44,91,45,56,53,46,51,53,54,54,49,57,44,51,54,46,48,52,53,56,57,51,93,44,91,45,56,53,46,50,54,52,50,48,54,44,51,53,46,57,55,57,49,53,52,93,44,91,45,56,53,46,50,51,53,55,53,55,44,51,54,46,49,48,53,55,53,50,93,44,91,45,56,53,46,49,48,48,50,49,51,44,51,54,46,49,51,56,53,54,49,93,44,91,45,56,53,46,49,49,57,53,56,51,44,51,54,46,49,52,52,55,49,57,93,44,91,45,56,53,46,52,49,57,52,51,50,44,51,54,46,50,51,54,49,52,53,93,44,91,45,56,53,46,52,57,53,49,50,52,44,51,54,46,51,48,50,50,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,87,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,48,51,52,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,50,51,51,56,57,50,44,52,56,46,53,52,54,51,51,57,93,44,91,45,49,48,49,46,57,55,51,50,56,50,44,52,56,46,53,52,54,52,56,53,93,44,91,45,49,48,49,46,57,50,50,50,51,55,44,52,56,46,51,55,50,51,51,93,44,91,45,49,48,49,46,57,50,50,49,50,51,44,52,56,46,48,50,51,49,55,51,93,44,91,45,49,48,49,46,56,55,49,56,54,50,44,52,55,46,56,52,55,53,56,57,93,44,91,45,49,48,48,46,57,55,49,49,53,56,44,52,55,46,56,52,56,54,57,54,93,44,91,45,49,48,49,46,48,49,53,48,50,52,44,52,56,46,48,50,50,55,51,57,93,44,91,45,49,48,49,46,48,49,52,50,51,50,44,52,56,46,51,55,49,52,51,50,93,44,91,45,49,48,49,46,48,53,57,56,51,51,44,52,56,46,52,53,56,52,52,56,93,44,91,45,49,48,49,46,56,52,50,56,52,49,44,52,56,46,52,53,57,52,51,57,93,44,91,45,49,48,49,46,56,52,50,50,52,52,44,52,56,46,55,50,48,48,54,52,93,44,91,45,49,48,50,46,48,50,49,52,50,56,44,52,56,46,55,50,48,50,56,51,93,44,91,45,49,48,50,46,48,50,49,54,52,51,44,52,56,46,56,48,55,49,48,56,93,44,91,45,49,48,50,46,49,53,50,49,54,52,44,52,56,46,56,48,55,50,93,44,91,45,49,48,50,46,50,51,51,54,44,52,56,46,55,50,48,50,57,93,44,91,45,49,48,50,46,50,51,51,56,57,50,44,52,56,46,53,52,54,51,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,87,111,114,99,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,50,50,56,48,44,34,98,101,100,115,34,58,50,52,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,51,49,52,50,53,51,44,52,50,46,51,52,51,54,56,56,93,44,91,45,55,50,46,50,50,49,50,49,56,44,52,50,46,50,52,53,50,53,50,93,44,91,45,55,50,46,49,51,53,48,49,49,44,52,50,46,49,54,49,55,56,52,93,44,91,45,55,50,46,49,51,53,55,49,53,44,52,50,46,48,51,48,50,50,50,93,44,91,45,55,50,46,49,48,50,49,55,44,52,50,46,48,50,56,56,54,57,93,44,91,45,55,49,46,55,57,57,49,56,56,44,52,50,46,48,48,56,48,53,51,93,44,91,45,55,49,46,52,57,56,50,53,57,44,52,50,46,48,49,55,50,55,50,93,44,91,45,55,49,46,52,55,56,49,49,57,44,52,50,46,49,53,54,55,56,50,93,44,91,45,55,49,46,53,56,50,57,49,44,52,50,46,49,57,53,53,53,57,93,44,91,45,55,49,46,53,56,53,50,49,44,52,50,46,51,49,48,57,53,50,93,44,91,45,55,49,46,53,51,49,51,55,55,44,52,50,46,53,50,48,51,53,50,93,44,91,45,55,49,46,54,54,52,54,48,49,44,52,50,46,54,49,49,53,57,56,93,44,91,45,55,49,46,56,52,52,56,52,51,44,52,50,46,54,51,55,57,56,53,93,44,91,45,55,49,46,56,57,56,55,55,51,44,52,50,46,55,49,49,51,49,50,93,44,91,45,55,49,46,57,50,56,57,57,51,44,52,50,46,55,49,50,49,48,50,93,44,91,45,55,50,46,50,56,51,48,52,53,44,52,50,46,55,50,49,54,49,53,93,44,91,45,55,50,46,50,55,54,52,51,52,44,52,50,46,53,55,55,51,55,52,93,44,91,45,55,50,46,51,49,52,50,53,51,44,52,50,46,51,52,51,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,51,48,55,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,50,48,50,50,55,44,52,48,46,53,48,52,48,55,55,93,44,91,45,56,51,46,56,56,48,48,51,57,44,52,48,46,53,51,56,54,57,52,93,44,91,45,56,52,46,48,48,50,51,55,50,44,52,48,46,52,56,51,49,49,53,93,44,91,45,56,52,46,48,49,52,55,54,51,44,52,48,46,50,55,51,52,53,57,93,44,91,45,56,51,46,53,53,49,51,51,56,44,52,48,46,50,50,57,51,55,93,44,91,45,56,51,46,53,50,48,50,50,55,44,52,48,46,53,48,52,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,75,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,48,55,53,44,34,98,101,100,115,34,58,49,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,53,55,51,49,57,52,44,51,54,46,52,56,56,56,51,53,93,44,91,45,49,49,57,46,54,54,54,50,57,44,51,54,46,52,49,56,57,54,93,44,91,45,49,49,57,46,57,53,57,50,50,55,44,51,54,46,52,48,48,57,55,53,93,44,91,45,49,49,57,46,57,53,57,50,49,44,51,54,46,49,56,49,52,48,51,93,44,91,45,49,50,48,46,51,49,53,48,54,56,44,51,53,46,57,48,55,49,56,54,93,44,91,45,49,50,48,46,50,49,51,57,55,57,44,51,53,46,55,56,57,50,55,54,93,44,91,45,49,50,48,46,49,57,52,49,52,54,44,51,53,46,55,56,57,50,48,52,93,44,91,45,49,49,57,46,53,51,56,49,49,54,44,51,53,46,55,56,57,53,54,55,93,44,91,45,49,49,57,46,53,50,57,51,53,56,44,51,54,46,50,54,57,56,53,93,44,91,45,49,49,57,46,52,55,52,56,57,50,44,51,54,46,52,48,48,57,53,51,93,44,91,45,49,49,57,46,53,55,51,49,57,52,44,51,54,46,52,56,56,56,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,83,97,110,32,68,105,101,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,48,50,56,51,51,44,34,98,101,100,115,34,58,54,56,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,54,49,49,48,56,49,44,51,51,46,51,51,51,57,57,50,93,44,91,45,49,49,55,46,52,51,53,53,54,51,44,51,51,46,49,55,55,53,49,50,93,44,91,45,49,49,55,46,51,50,51,50,55,57,44,51,50,46,57,48,51,48,54,52,93,44,91,45,49,49,55,46,51,50,48,57,51,57,44,51,50,46,54,56,57,56,52,55,93,44,91,45,49,49,55,46,50,50,51,51,48,50,44,51,50,46,54,50,49,50,51,56,93,44,91,45,49,49,55,46,50,48,52,57,49,55,44,51,50,46,53,50,56,56,51,50,93,44,91,45,49,49,54,46,49,48,54,49,54,56,44,51,50,46,54,49,56,52,56,93,44,91,45,49,49,54,46,49,48,51,50,53,50,44,51,51,46,48,55,52,54,55,93,44,91,45,49,49,54,46,48,56,53,49,54,53,44,51,51,46,52,50,53,57,51,50,93,44,91,45,49,49,55,46,48,51,48,56,54,49,44,51,51,46,52,50,54,57,51,49,93,44,91,45,49,49,55,46,50,52,49,50,55,49,44,51,51,46,52,51,49,57,57,51,93,44,91,45,49,49,55,46,51,55,48,57,50,53,44,51,51,46,52,57,48,53,52,57,93,44,91,45,49,49,55,46,53,48,57,55,50,50,44,51,51,46,53,48,53,48,49,57,93,44,91,45,49,49,55,46,53,55,56,52,56,44,51,51,46,52,53,51,57,50,55,93,44,91,45,49,49,55,46,54,49,49,48,56,49,44,51,51,46,51,51,51,57,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,51,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,50,53,55,53,50,55,44,49,56,46,48,55,53,56,56,52,93,44,91,45,54,54,46,51,51,49,50,52,52,44,49,56,46,48,49,53,56,57,49,93,44,91,45,54,54,46,51,50,51,50,50,44,49,55,46,56,55,55,54,54,55,93,44,91,45,54,54,46,49,56,55,51,52,50,44,49,55,46,56,55,55,48,51,54,93,44,91,45,54,54,46,50,50,53,50,55,53,44,49,55,46,57,50,52,54,53,50,93,44,91,45,54,54,46,49,54,54,49,52,53,44,49,56,46,48,53,48,48,54,51,93,44,91,45,54,54,46,50,50,52,52,57,44,49,56,46,48,57,53,51,51,57,93,44,91,45,54,54,46,50,53,55,53,50,55,44,49,56,46,48,55,53,56,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,52,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,48,50,54,50,56,44,51,50,46,54,57,48,48,49,56,93,44,91,45,56,52,46,49,48,52,57,54,54,44,51,50,46,54,55,51,51,56,53,93,44,91,45,56,52,46,48,48,51,51,54,51,44,51,50,46,53,50,57,57,50,55,93,44,91,45,56,51,46,55,54,54,57,54,51,44,51,50,46,54,57,50,52,57,53,93,44,91,45,56,51,46,55,48,49,48,57,44,51,50,46,54,57,49,53,57,56,93,44,91,45,56,51,46,55,48,49,49,53,50,44,51,50,46,54,57,50,49,54,57,93,44,91,45,56,51,46,56,48,56,50,54,55,44,51,50,46,55,50,56,54,56,50,93,44,91,45,56,51,46,56,57,49,57,50,50,44,51,50,46,56,52,56,51,53,49,93,44,91,45,56,52,46,49,50,52,50,55,53,44,51,50,46,56,52,57,53,54,50,93,44,91,45,56,52,46,50,48,50,54,50,56,44,51,50,46,54,57,48,48,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,78,97,103,117,97,98,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,56,50,54,48,54,51,44,49,56,46,50,48,48,52,48,56,93,44,91,45,54,53,46,54,57,57,51,51,53,44,49,56,46,49,49,54,49,49,51,93,44,91,45,54,53,46,54,53,52,55,50,56,44,49,56,46,49,51,51,51,51,53,93,44,91,45,54,53,46,54,55,49,44,49,56,46,50,50,51,48,53,50,93,44,91,45,54,53,46,55,54,54,56,51,49,44,49,56,46,50,56,48,48,48,52,93,44,91,45,54,53,46,56,50,52,50,50,44,49,56,46,50,55,51,48,53,52,93,44,91,45,54,53,46,56,50,54,48,54,51,44,49,56,46,50,48,48,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,54,55,56,44,34,98,101,100,115,34,58,49,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,56,48,51,51,44,51,56,46,56,52,55,50,48,55,93,44,91,45,57,52,46,54,48,57,48,56,44,51,56,46,55,51,56,48,57,57,93,44,91,45,57,52,46,54,49,50,56,56,50,44,51,56,46,52,55,55,53,57,55,93,44,91,45,57,52,46,48,54,53,55,49,51,44,51,56,46,52,52,55,48,56,55,93,44,91,45,57,52,46,48,54,52,51,49,55,44,51,56,46,53,54,55,51,56,93,44,91,45,57,52,46,49,49,57,54,54,52,44,51,56,46,53,54,56,55,49,50,93,44,91,45,57,52,46,49,49,57,48,57,54,44,51,56,46,56,51,51,49,54,55,93,44,91,45,57,52,46,54,48,56,48,51,51,44,51,56,46,56,52,55,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,68,117,116,99,104,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,56,57,52,44,34,98,101,100,115,34,58,57,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,50,57,54,50,54,44,52,50,46,48,55,56,55,55,56,93,44,91,45,55,51,46,57,54,50,50,50,49,44,52,49,46,57,48,49,48,50,93,44,91,45,55,51,46,57,53,51,51,48,55,44,52,49,46,53,56,57,57,55,55,93,44,91,45,55,51,46,57,56,49,52,56,54,44,52,49,46,52,51,56,57,48,53,93,44,91,45,55,51,46,57,51,51,55,55,53,44,52,49,46,52,56,56,50,55,57,93,44,91,45,55,51,46,53,51,48,48,54,55,44,52,49,46,53,50,55,49,57,52,93,44,91,45,55,51,46,53,49,56,48,56,44,52,49,46,54,54,54,55,50,51,93,44,91,45,55,51,46,52,56,55,51,49,57,44,52,50,46,48,52,57,53,50,53,93,44,91,45,55,51,46,52,57,55,48,49,56,44,52,50,46,48,52,57,54,50,52,93,44,91,45,55,51,46,53,50,55,48,55,50,44,52,49,46,57,55,55,57,56,93,44,91,45,55,51,46,55,49,48,57,51,44,52,50,46,48,48,53,52,56,56,93,44,91,45,55,51,46,57,50,57,54,50,54,44,52,50,46,48,55,56,55,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,55,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,55,57,54,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,57,57,49,55,51,44,51,48,46,51,55,57,49,53,50,93,44,91,45,57,54,46,54,52,48,56,56,51,44,51,48,46,50,57,54,55,56,54,93,44,91,45,57,54,46,55,57,52,53,53,50,44,51,48,46,49,54,48,53,52,53,93,44,91,45,57,54,46,54,56,51,51,57,52,44,51,48,46,49,53,49,48,51,56,93,44,91,45,57,54,46,54,50,49,57,56,44,51,48,46,48,52,52,50,56,51,93,44,91,45,57,54,46,50,57,50,56,52,57,44,51,48,46,48,57,54,49,53,93,44,91,45,57,54,46,49,52,54,48,53,50,44,51,48,46,48,55,48,50,50,52,93,44,91,45,57,54,46,49,57,49,52,49,56,44,51,48,46,49,51,52,54,54,57,93,44,91,45,57,54,46,48,57,51,49,54,53,44,51,48,46,50,50,53,49,56,55,93,44,91,45,57,54,46,49,53,52,54,51,44,51,48,46,51,51,48,50,56,56,93,44,91,45,57,54,46,50,57,57,49,55,51,44,51,48,46,51,55,57,49,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,80,117,101,98,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,54,56,53,44,34,98,101,100,115,34,58,49,50,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,52,49,53,51,51,44,51,56,46,53,49,57,53,54,57,93,44,91,45,49,48,52,46,57,52,48,51,54,54,44,51,56,46,50,53,56,50,55,53,93,44,91,45,49,48,53,46,48,52,57,50,49,53,44,51,56,46,50,53,55,57,55,51,93,44,91,45,49,48,53,46,48,52,57,57,49,55,44,51,55,46,57,49,53,52,55,57,93,44,91,45,49,48,53,46,48,49,51,55,50,57,44,51,55,46,56,56,49,50,55,49,93,44,91,45,49,48,52,46,54,52,54,51,56,51,44,51,55,46,57,48,48,53,50,55,93,44,91,45,49,48,52,46,51,53,49,49,48,57,44,51,55,46,56,49,55,52,56,56,93,44,91,45,49,48,52,46,48,54,49,49,51,50,44,51,55,46,55,51,52,55,48,52,93,44,91,45,49,48,52,46,48,53,56,50,52,50,44,51,56,46,49,52,54,52,57,50,93,44,91,45,49,48,52,46,48,53,51,57,50,49,44,51,56,46,53,50,50,51,57,51,93,44,91,45,49,48,52,46,57,52,49,53,51,51,44,51,56,46,53,49,57,53,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,55,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,56,53,56,54,55,44,51,55,46,48,54,55,48,53,49,93,44,91,45,57,50,46,57,48,51,50,55,51,44,51,55,46,48,55,48,54,53,49,93,44,91,45,57,50,46,57,48,57,51,51,54,44,51,54,46,56,48,57,49,55,56,93,44,91,45,57,50,46,55,54,52,56,54,57,44,51,54,46,56,48,54,48,57,55,93,44,91,45,57,50,46,49,49,50,51,52,54,44,51,54,46,55,57,52,50,51,49,93,44,91,45,57,50,46,48,56,56,55,48,56,44,51,55,46,48,53,54,50,52,56,93,44,91,45,57,50,46,50,53,49,51,53,57,44,51,55,46,48,53,57,54,53,51,93,44,91,45,57,50,46,54,56,53,56,54,55,44,51,55,46,48,54,55,48,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,111,116,116,105,110,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,57,54,53,53,50,44,52,56,46,57,57,57,52,50,49,93,44,91,45,49,48,49,46,52,57,54,54,56,52,44,52,56,46,55,50,48,48,55,56,93,44,91,45,49,48,49,46,52,53,49,50,55,53,44,52,56,46,53,52,54,48,55,57,93,44,91,45,49,48,49,46,48,53,57,54,54,51,44,52,56,46,53,52,53,52,49,57,93,44,91,45,49,48,49,46,48,53,57,54,50,52,44,52,56,46,54,51,50,51,54,49,93,44,91,45,49,48,48,46,52,48,54,55,56,44,52,56,46,54,51,49,56,55,56,93,44,91,45,49,48,48,46,50,55,54,54,49,57,44,52,56,46,53,52,52,56,49,51,93,44,91,45,49,48,48,46,49,52,53,56,53,56,44,52,56,46,53,52,53,50,49,49,93,44,91,45,49,48,48,46,49,56,51,48,51,52,44,52,56,46,55,49,56,57,48,57,93,44,91,45,49,48,48,46,49,56,50,54,48,56,44,52,56,46,57,57,57,50,48,52,93,44,91,45,49,48,49,46,52,57,54,53,53,50,44,52,56,46,57,57,57,52,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,50,49,48,54,44,34,98,101,100,115,34,58,56,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,49,55,49,50,55,44,51,53,46,50,52,53,53,55,56,93,44,91,45,55,56,46,55,57,51,52,52,55,44,51,53,46,50,54,53,57,55,54,93,44,91,45,55,57,46,48,57,53,56,48,56,44,51,53,46,49,57,50,48,54,56,93,44,91,45,55,57,46,48,57,55,53,57,49,44,51,53,46,49,55,52,50,50,53,93,44,91,45,55,57,46,48,57,48,50,57,49,44,51,53,46,48,52,50,48,51,49,93,44,91,45,55,57,46,48,51,56,55,52,55,44,51,52,46,57,53,50,55,49,53,93,44,91,45,55,56,46,57,48,49,57,57,56,44,51,52,46,56,51,53,50,54,56,93,44,91,45,55,56,46,52,57,52,55,48,53,44,51,52,46,56,53,54,49,56,50,93,44,91,45,55,56,46,54,52,55,55,51,52,44,51,52,46,57,57,52,55,52,93,44,91,45,55,56,46,54,55,48,54,53,44,51,53,46,48,57,50,53,57,50,93,44,91,45,55,56,46,54,49,55,49,50,55,44,51,53,46,50,52,53,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,72,111,116,32,83,112,114,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,51,49,50,57,52,57,44,52,51,46,56,49,51,50,57,51,93,44,91,45,49,48,57,46,49,55,49,52,52,56,44,52,51,46,54,57,57,49,57,56,93,44,91,45,49,48,57,46,49,55,49,54,51,56,44,52,51,46,54,49,57,55,54,52,93,44,91,45,49,48,56,46,57,51,52,49,52,49,44,52,51,46,54,49,57,49,54,51,93,44,91,45,49,48,56,46,54,57,52,54,55,50,44,52,51,46,53,55,53,55,53,53,93,44,91,45,49,48,56,46,54,57,53,48,55,50,44,52,51,46,53,51,50,50,53,53,93,44,91,45,49,48,56,46,51,51,55,56,54,49,44,52,51,46,52,53,57,55,54,53,93,44,91,45,49,48,55,46,53,57,53,49,51,55,44,52,51,46,52,55,50,50,55,57,93,44,91,45,49,48,55,46,53,57,53,49,48,53,44,52,51,46,53,48,49,51,57,55,93,44,91,45,49,48,55,46,53,57,53,49,53,55,44,52,51,46,54,52,54,52,50,55,93,44,91,45,49,48,55,46,55,49,53,56,55,54,44,52,51,46,55,51,51,51,52,51,93,44,91,45,49,48,55,46,57,53,54,53,55,55,44,52,51,46,55,51,51,52,52,54,93,44,91,45,49,48,55,46,57,53,54,52,52,56,44,52,51,46,56,49,56,54,54,54,93,44,91,45,49,48,56,46,49,55,51,54,49,55,44,52,51,46,56,49,56,57,53,51,93,44,91,45,49,48,56,46,52,50,57,53,54,51,44,52,51,46,57,48,51,51,53,53,93,44,91,45,49,48,56,46,53,53,48,55,53,56,44,52,52,46,48,55,57,52,48,51,93,44,91,45,49,48,56,46,55,57,50,50,55,55,44,52,52,46,48,55,57,54,49,54,93,44,91,45,49,48,56,46,55,57,49,55,55,57,44,52,51,46,57,57,49,48,53,51,93,44,91,45,49,48,56,46,57,49,50,55,56,51,44,52,51,46,57,48,52,55,53,52,93,44,91,45,49,48,57,46,48,57,50,56,55,56,44,52,51,46,57,48,52,52,55,52,93,44,91,45,49,48,57,46,48,57,51,54,48,51,44,52,51,46,56,49,55,54,49,57,93,44,91,45,49,48,57,46,51,49,50,57,52,57,44,52,51,46,56,49,51,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,99,111,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,56,52,56,52,44,52,52,46,56,53,54,52,53,56,93,44,91,45,56,51,46,56,56,54,54,51,52,44,52,52,46,53,48,56,57,55,54,93,44,91,45,56,50,46,51,50,57,53,49,57,44,52,52,46,53,49,50,56,51,52,93,44,91,45,56,50,46,52,48,56,55,49,55,44,52,52,46,56,53,56,49,52,55,93,44,91,45,56,51,46,56,56,56,52,56,52,44,52,52,46,56,53,54,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,80,108,97,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,48,55,55,44,34,98,101,100,115,34,58,55,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,48,54,51,50,51,44,51,57,46,51,49,54,52,57,54,93,44,91,45,49,50,48,46,54,52,53,55,57,53,44,51,57,46,51,49,53,49,53,53,93,44,91,45,49,50,48,46,55,50,55,56,57,51,44,51,57,46,50,56,56,48,56,49,93,44,91,45,49,50,48,46,57,54,54,48,56,44,51,57,46,49,50,55,57,50,56,93,44,91,45,49,50,49,46,48,52,49,54,48,56,44,51,57,46,48,49,51,55,57,49,93,44,91,45,49,50,49,46,50,55,57,53,51,51,44,51,57,46,48,51,52,54,49,56,93,44,91,45,49,50,49,46,52,49,52,55,55,57,44,51,56,46,57,57,54,52,53,50,93,44,91,45,49,50,49,46,52,54,57,51,53,54,44,51,56,46,57,50,53,57,57,50,93,44,91,45,49,50,49,46,52,56,52,51,57,54,44,51,56,46,55,51,52,53,57,56,93,44,91,45,49,50,49,46,49,52,49,53,57,53,44,51,56,46,55,49,49,57,51,57,93,44,91,45,49,50,49,46,48,53,50,57,49,49,44,51,56,46,57,48,48,49,52,52,93,44,91,45,49,50,48,46,57,51,52,54,53,51,44,51,56,46,57,54,51,55,57,49,93,44,91,45,49,50,48,46,55,51,48,49,55,52,44,51,57,46,48,48,51,57,53,56,93,44,91,45,49,50,48,46,53,55,50,51,53,50,44,51,56,46,57,49,52,52,93,44,91,45,49,50,48,46,52,51,53,50,52,44,51,57,46,48,50,56,51,57,55,93,44,91,45,49,50,48,46,49,56,52,48,57,56,44,51,57,46,48,51,49,48,49,52,93,44,91,45,49,50,48,46,48,48,50,52,54,49,44,51,57,46,48,54,55,52,56,57,93,44,91,45,49,50,48,46,48,48,51,52,50,57,44,51,57,46,49,49,50,54,56,55,93,44,91,45,49,50,48,46,48,48,52,50,57,55,44,51,57,46,49,54,53,54,48,51,93,44,91,45,49,50,48,46,48,48,54,51,50,51,44,51,57,46,51,49,54,52,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,83,101,97,114,99,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,52,52,54,54,54,44,51,54,46,49,49,53,49,50,51,93,44,91,45,57,50,46,57,53,49,51,49,53,44,51,53,46,55,50,52,54,54,51,93,44,91,45,57,50,46,56,48,57,55,54,51,44,51,53,46,55,50,50,52,48,49,93,44,91,45,57,50,46,54,51,49,50,48,55,44,51,53,46,55,49,56,51,54,53,93,44,91,45,57,50,46,54,50,57,56,51,55,44,51,53,46,55,57,48,56,50,51,93,44,91,45,57,50,46,52,49,54,56,52,55,44,51,53,46,55,56,56,53,57,49,93,44,91,45,57,50,46,52,49,52,51,57,54,44,51,53,46,57,55,53,55,57,56,93,44,91,45,57,50,46,52,49,49,53,48,50,44,51,54,46,48,54,50,55,53,54,93,44,91,45,57,50,46,56,51,55,55,55,54,44,51,54,46,48,55,48,49,50,52,93,44,91,45,57,50,46,56,57,48,54,57,53,44,51,54,46,49,49,52,49,51,50,93,44,91,45,57,50,46,57,52,52,54,54,54,44,51,54,46,49,49,53,49,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,53,34,44,34,78,65,77,69,34,58,34,76,121,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,48,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,53,54,56,56,52,44,51,51,46,51,57,52,55,54,93,44,91,45,49,48,50,46,48,55,53,57,50,57,44,51,51,46,51,56,57,53,56,54,93,44,91,45,49,48,50,46,48,55,54,50,49,52,44,51,50,46,57,53,57,55,48,50,93,44,91,45,49,48,49,46,54,57,49,50,56,52,44,51,50,46,57,54,49,56,51,56,93,44,91,45,49,48,49,46,53,53,55,52,51,52,44,51,50,46,57,54,49,48,50,53,93,44,91,45,49,48,49,46,53,53,54,56,56,52,44,51,51,46,51,57,52,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,79,116,115,101,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,50,52,52,44,34,98,101,100,115,34,58,50,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,50,57,53,56,55,55,44,52,50,46,55,52,52,49,48,54,93,44,91,45,55,53,46,51,51,50,57,52,57,44,52,50,46,53,54,54,51,49,50,93,44,91,45,55,53,46,52,48,52,52,54,52,44,52,50,46,52,55,57,49,49,55,93,44,91,45,55,53,46,52,49,53,51,49,57,44,52,50,46,51,49,52,49,53,49,93,44,91,45,55,53,46,48,49,57,56,49,56,44,52,50,46,52,50,57,48,52,53,93,44,91,45,55,52,46,56,52,52,49,50,49,44,52,50,46,53,49,50,53,57,49,93,44,91,45,55,52,46,55,49,49,53,56,44,52,50,46,53,49,55,55,57,57,93,44,91,45,55,52,46,54,51,48,54,51,49,44,52,50,46,54,50,54,54,55,52,93,44,91,45,55,52,46,54,52,56,50,57,56,44,52,50,46,56,50,57,53,53,56,93,44,91,45,55,52,46,55,54,51,51,48,51,44,52,50,46,56,54,51,50,51,55,93,44,91,45,55,52,46,57,48,54,55,51,56,44,52,50,46,56,50,52,57,52,51,93,44,91,45,55,53,46,49,48,48,57,57,57,44,52,50,46,57,48,56,51,54,51,93,44,91,45,55,53,46,50,49,50,49,53,56,44,52,50,46,56,55,57,57,55,51,93,44,91,45,55,53,46,50,52,55,57,54,51,44,52,50,46,56,55,49,54,48,52,93,44,91,45,55,53,46,50,57,53,56,55,55,44,52,50,46,55,52,52,49,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,82,105,99,104,109,111,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,49,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,55,53,51,54,53,44,51,53,46,49,52,51,48,56,49,93,44,91,45,55,57,46,57,52,54,49,50,50,44,51,53,46,49,49,56,53,57,51,93,44,91,45,55,57,46,56,52,57,53,51,54,44,51,52,46,57,48,48,48,48,54,93,44,91,45,55,57,46,57,50,55,52,49,50,44,51,52,46,56,48,54,55,51,52,93,44,91,45,55,57,46,54,57,50,57,52,52,44,51,52,46,56,48,53,49,53,53,93,44,91,45,55,57,46,53,54,49,56,53,54,44,51,52,46,57,49,48,51,53,93,44,91,45,55,57,46,53,55,51,52,50,51,44,51,52,46,57,57,50,50,49,93,44,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,44,91,45,55,57,46,53,54,54,52,57,55,44,51,53,46,48,54,52,48,49,49,93,44,91,45,55,57,46,54,49,52,51,48,52,44,51,53,46,49,54,51,54,55,57,93,44,91,45,55,57,46,56,53,49,50,54,56,44,51,53,46,49,56,51,56,53,53,93,44,91,45,56,48,46,48,55,53,51,54,53,44,51,53,46,49,52,51,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,72,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,50,51,57,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,44,91,45,55,57,46,51,53,51,51,49,50,44,51,52,46,57,52,50,53,54,49,93,44,91,45,55,57,46,51,52,55,56,54,56,44,51,52,46,56,51,56,53,53,51,93,44,91,45,55,57,46,49,57,49,51,57,49,44,51,52,46,56,51,51,55,49,55,93,44,91,45,55,57,46,48,51,56,55,52,55,44,51,52,46,57,53,50,55,49,53,93,44,91,45,55,57,46,48,57,48,50,57,49,44,51,53,46,48,52,50,48,51,49,93,44,91,45,55,57,46,48,57,55,53,57,49,44,51,53,46,49,55,52,50,50,53,93,44,91,45,55,57,46,50,50,57,55,49,50,44,51,53,46,50,49,48,54,48,50,93,44,91,45,55,57,46,51,51,53,52,55,55,44,51,53,46,49,54,49,53,56,56,93,44,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,79,116,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,57,54,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,54,51,55,54,52,44,52,48,46,55,56,51,57,54,93,44,91,45,57,54,46,52,54,51,54,51,50,44,52,48,46,53,50,51,48,49,51,93,44,91,45,57,54,46,48,54,55,48,49,50,44,52,48,46,53,50,51,49,52,56,93,44,91,45,57,53,46,55,48,57,57,55,52,44,52,48,46,53,50,51,55,57,56,93,44,91,45,57,53,46,55,54,53,54,52,53,44,52,48,46,53,56,53,50,48,56,93,44,91,45,57,53,46,56,56,49,53,50,57,44,52,48,46,55,53,48,54,49,49,93,44,91,45,57,53,46,56,51,52,49,50,44,52,48,46,55,56,51,55,56,51,93,44,91,45,57,54,46,52,54,51,55,54,52,44,52,48,46,55,56,51,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,97,109,101,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,49,57,49,49,56,44,52,49,46,54,48,50,49,56,56,93,44,91,45,55,56,46,52,50,48,48,50,56,44,52,49,46,52,48,53,48,52,54,93,44,91,45,55,56,46,50,53,51,57,53,57,44,52,49,46,52,48,52,55,50,49,93,44,91,45,55,56,46,50,51,54,56,49,55,44,52,49,46,50,51,48,52,55,53,93,44,91,45,55,56,46,48,57,51,51,56,49,44,52,49,46,50,49,54,57,51,49,93,44,91,45,55,55,46,57,56,56,55,56,54,44,52,49,46,51,54,55,52,53,51,93,44,91,45,55,55,46,57,56,57,49,57,52,44,52,49,46,52,55,52,56,50,50,93,44,91,45,55,56,46,48,53,48,52,52,50,44,52,49,46,52,55,53,52,54,50,93,44,91,45,55,56,46,50,48,51,52,50,50,44,52,49,46,54,49,56,49,53,55,93,44,91,45,55,56,46,52,49,57,49,49,56,44,52,49,46,54,48,50,49,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,68,111,114,99,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,52,55,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,51,54,49,56,53,49,44,51,51,46,50,53,55,52,52,51,93,44,91,45,56,48,46,53,48,50,55,57,44,51,51,46,51,51,52,52,57,54,93,44,91,45,56,48,46,55,57,48,50,57,54,44,51,51,46,49,56,48,56,52,93,44,91,45,56,48,46,54,50,51,56,49,53,44,51,51,46,48,54,54,57,50,55,93,44,91,45,56,48,46,52,48,50,50,50,54,44,51,51,46,48,53,51,50,51,56,93,44,91,45,56,48,46,52,48,49,51,52,44,51,50,46,56,53,56,52,54,54,93,44,91,45,56,48,46,49,53,55,50,54,53,44,51,50,46,56,49,56,49,56,55,93,44,91,45,56,48,46,48,55,57,48,50,56,44,51,50,46,57,50,55,56,49,49,93,44,91,45,56,48,46,49,52,57,50,52,54,44,51,51,46,48,50,49,54,48,49,93,44,91,45,56,48,46,51,51,53,57,52,44,51,51,46,49,52,53,52,54,51,93,44,91,45,56,48,46,51,54,49,56,53,49,44,51,51,46,50,53,55,52,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,87,97,115,101,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,48,57,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,54,55,57,55,49,44,52,52,46,49,57,53,56,51,54,93,44,91,45,57,51,46,55,54,55,55,54,49,44,52,51,46,56,52,55,57,53,54,93,44,91,45,57,51,46,54,52,56,50,57,44,52,51,46,56,52,56,49,51,57,93,44,91,45,57,51,46,52,48,54,54,52,50,44,52,51,46,56,52,56,49,50,93,44,91,45,57,51,46,52,48,54,53,54,53,44,52,52,46,49,57,54,51,55,55,93,44,91,45,57,51,46,53,50,53,50,51,49,44,52,52,46,49,57,54,49,51,52,93,44,91,45,57,51,46,55,54,55,57,55,49,44,52,52,46,49,57,53,56,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,114,117,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,53,53,56,54,52,44,52,51,46,57,51,52,51,55,49,93,44,91,45,57,57,46,51,49,48,56,50,54,44,52,51,46,56,53,53,50,49,54,93,44,91,45,57,57,46,52,49,48,49,53,44,52,51,46,55,55,52,54,49,57,93,44,91,45,57,57,46,52,48,54,57,54,49,44,52,51,46,55,48,53,50,55,55,93,44,91,45,57,57,46,50,57,55,56,56,50,44,52,51,46,52,57,57,56,53,54,93,44,91,45,57,56,46,55,57,52,53,56,56,44,52,51,46,52,57,57,49,56,55,93,44,91,45,57,56,46,56,48,55,55,55,49,44,52,51,46,57,51,53,50,50,51,93,44,91,45,57,56,46,57,50,54,57,57,55,44,52,51,46,57,51,53,49,52,51,93,44,91,45,57,57,46,51,53,53,56,54,52,44,52,51,46,57,51,52,51,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,52,53,52,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,56,53,48,54,50,44,51,53,46,54,54,48,49,48,56,93,44,91,45,56,53,46,56,55,54,57,54,50,44,51,53,46,53,50,52,48,57,53,93,44,91,45,56,53,46,54,48,55,51,50,54,44,51,53,46,53,51,49,54,53,49,93,44,91,45,56,53,46,53,53,55,53,51,53,44,51,53,46,53,51,50,57,55,55,93,44,91,45,56,53,46,53,57,52,54,51,50,44,51,53,46,54,49,55,56,57,56,93,44,91,45,56,53,46,54,48,50,56,55,54,44,51,53,46,55,57,52,57,57,54,93,44,91,45,56,53,46,54,56,50,48,57,53,44,51,53,46,56,51,49,50,53,52,93,44,91,45,56,53,46,56,56,53,49,53,54,44,51,53,46,56,51,57,54,53,56,93,44,91,45,56,53,46,57,56,52,56,57,49,44,51,53,46,55,51,52,53,53,51,93,44,91,45,56,53,46,57,56,53,48,54,50,44,51,53,46,54,54,48,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,49,50,49,50,49,44,51,57,46,51,55,56,57,54,56,93,44,91,45,56,56,46,48,48,55,55,54,54,44,51,57,46,49,55,51,57,50,53,93,44,91,45,56,55,46,57,53,48,51,56,53,44,51,57,46,49,55,52,56,56,50,93,44,91,45,56,55,46,54,50,56,55,57,56,44,51,57,46,49,53,55,53,49,51,93,44,91,45,56,55,46,54,48,52,49,52,49,44,51,57,46,50,53,57,52,53,56,93,44,91,45,56,55,46,53,51,49,54,52,54,44,51,57,46,51,52,55,56,56,56,93,44,91,45,56,55,46,53,51,49,54,52,44,51,57,46,52,55,55,49,48,53,93,44,91,45,56,55,46,57,54,48,49,55,57,44,51,57,46,52,56,49,51,48,57,93,44,91,45,56,56,46,48,49,50,49,50,49,44,51,57,46,51,55,56,57,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,82,111,98,101,114,116,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,54,50,48,51,49,44,51,56,46,53,53,52,49,50,53,93,44,91,45,56,52,46,49,48,50,49,44,51,56,46,52,53,57,51,55,57,93,44,91,45,56,51,46,57,56,48,48,54,56,44,51,56,46,52,51,57,52,52,56,93,44,91,45,56,51,46,57,51,48,51,52,56,44,51,56,46,52,57,50,50,55,56,93,44,91,45,56,51,46,57,57,49,54,48,53,44,51,56,46,53,57,51,55,48,49,93,44,91,45,56,52,46,49,54,50,48,51,49,44,51,56,46,53,53,52,49,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,51,57,50,51,50,44,51,54,46,52,57,55,57,51,52,93,44,91,45,56,57,46,53,52,53,48,48,54,44,51,54,46,51,51,54,56,48,57,93,44,91,45,56,57,46,53,51,54,52,52,49,44,51,54,46,50,55,50,56,50,55,93,44,91,45,56,57,46,54,50,57,52,53,51,44,51,54,46,49,56,53,51,56,50,93,44,91,45,56,57,46,52,56,50,57,55,49,44,51,54,46,50,49,50,54,53,57,93,44,91,45,56,57,46,51,54,48,49,50,44,51,54,46,52,48,57,50,55,55,93,44,91,45,56,57,46,51,52,54,48,54,54,44,51,54,46,53,48,51,50,51,50,93,44,91,45,56,57,46,52,49,55,50,55,53,44,51,54,46,52,57,57,48,49,49,93,44,91,45,56,57,46,52,56,53,52,50,55,44,51,54,46,52,57,55,52,57,49,93,44,91,45,56,57,46,53,51,57,50,51,50,44,51,54,46,52,57,55,57,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,101,114,107,101,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,48,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,51,54,49,56,53,49,44,51,51,46,50,53,55,52,52,51,93,44,91,45,56,48,46,51,51,53,57,52,44,51,51,46,49,52,53,52,54,51,93,44,91,45,56,48,46,49,52,57,50,52,54,44,51,51,46,48,50,49,54,48,49,93,44,91,45,56,48,46,48,53,53,53,57,53,44,51,50,46,57,57,56,55,49,93,44,91,45,55,57,46,57,53,54,52,51,51,44,51,50,46,56,53,57,55,57,49,93,44,91,45,55,57,46,56,52,49,48,54,55,44,51,50,46,57,49,50,52,54,57,93,44,91,45,55,57,46,54,52,51,51,48,49,44,51,51,46,49,50,51,52,53,51,93,44,91,45,55,57,46,53,49,56,56,52,52,44,51,51,46,49,52,56,50,57,55,93,44,91,45,55,57,46,52,52,54,54,57,57,44,51,51,46,50,49,51,52,53,56,93,44,91,45,55,57,46,54,55,55,48,49,52,44,51,51,46,51,48,52,57,52,52,93,44,91,45,55,57,46,57,55,49,57,54,51,44,51,51,46,53,48,48,57,51,55,93,44,91,45,56,48,46,49,48,49,54,57,55,44,51,51,46,52,57,54,56,57,49,93,44,91,45,56,48,46,50,50,50,50,54,55,44,51,51,46,52,52,51,55,49,54,93,44,91,45,56,48,46,50,53,53,54,52,50,44,51,51,46,51,48,48,48,48,50,93,44,91,45,56,48,46,51,54,49,56,53,49,44,51,51,46,50,53,55,52,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,97,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,50,57,54,44,34,98,101,100,115,34,58,53,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,48,55,50,50,49,44,51,52,46,51,57,55,52,52,55,93,44,91,45,57,50,46,57,52,56,48,55,49,44,51,52,46,51,56,57,50,53,53,93,44,91,45,57,50,46,57,49,53,48,55,57,44,51,52,46,53,48,54,49,49,52,93,44,91,45,57,50,46,55,57,51,49,57,55,44,51,52,46,53,48,51,54,48,54,93,44,91,45,57,50,46,56,48,56,48,50,56,44,51,52,46,53,57,48,52,48,54,93,44,91,45,57,50,46,57,55,57,57,48,50,44,51,52,46,54,51,55,50,50,50,93,44,91,45,57,50,46,57,54,57,50,53,44,51,52,46,55,55,50,50,54,54,93,44,91,45,57,51,46,48,55,53,49,55,56,44,51,52,46,55,55,49,56,57,50,93,44,91,45,57,51,46,50,56,55,55,56,53,44,51,52,46,55,55,51,49,57,51,93,44,91,45,57,51,46,51,57,52,50,56,57,44,51,52,46,55,52,51,51,57,51,93,44,91,45,57,51,46,52,48,55,50,50,49,44,51,52,46,51,57,55,52,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,79,115,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,52,53,57,50,52,44,51,56,46,55,51,57,49,49,50,93,44,91,45,57,53,46,57,53,48,50,56,50,44,51,56,46,52,51,52,49,48,53,93,44,91,45,57,53,46,53,48,56,50,54,55,44,51,56,46,52,51,51,57,51,51,93,44,91,45,57,53,46,53,48,48,55,51,56,44,51,56,46,55,51,56,56,48,56,93,44,91,45,57,53,46,53,48,48,55,50,52,44,51,56,46,56,54,57,56,49,53,93,44,91,45,57,53,46,57,52,54,53,56,55,44,51,56,46,56,54,57,57,55,51,93,44,91,45,57,53,46,57,52,53,57,50,52,44,51,56,46,55,51,57,49,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,84,114,117,109,98,117,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,55,57,52,44,34,98,101,100,115,34,58,55,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,48,51,51,49,57,44,52,49,46,51,52,55,56,54,93,44,91,45,56,49,46,48,48,50,50,57,44,52,49,46,49,51,52,49,56,57,93,44,91,45,56,48,46,53,49,57,48,52,56,44,52,49,46,49,51,51,51,57,52,93,44,91,45,56,48,46,53,49,57,50,49,55,44,52,49,46,52,56,57,48,49,51,93,44,91,45,56,48,46,53,49,57,50,50,53,44,52,49,46,52,57,57,57,50,52,93,44,91,45,56,49,46,48,48,51,49,50,53,44,52,49,46,53,48,49,54,56,53,93,44,91,45,56,49,46,48,48,51,51,49,57,44,52,49,46,51,52,55,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,51,51,34,44,34,78,65,77,69,34,58,34,77,105,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,57,49,54,48,56,44,51,49,46,52,56,52,48,55,49,93,44,91,45,57,56,46,57,54,51,53,57,51,44,51,49,46,52,52,54,50,53,49,93,44,91,45,57,56,46,54,57,54,54,51,52,44,51,49,46,52,48,55,50,56,55,93,44,91,45,57,56,46,54,50,53,54,50,56,44,51,49,46,50,54,57,55,57,56,93,44,91,45,57,56,46,53,54,50,55,51,57,44,51,49,46,50,51,48,53,56,50,93,44,91,45,57,56,46,50,55,49,48,55,44,51,49,46,52,49,54,51,57,56,93,44,91,45,57,56,46,52,54,51,55,51,54,44,51,49,46,54,56,51,57,56,57,93,44,91,45,57,56,46,52,57,50,56,48,50,44,51,49,46,55,50,51,54,48,56,93,44,91,45,57,56,46,54,54,56,52,52,49,44,51,49,46,55,48,48,53,49,52,93,44,91,45,57,56,46,57,57,49,54,48,56,44,51,49,46,52,56,52,48,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,53,57,34,44,34,78,65,77,69,34,58,34,79,108,100,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,49,54,50,56,48,57,44,51,53,46,54,50,55,53,49,53,93,44,91,45,49,48,51,46,48,52,49,55,48,54,44,51,53,46,54,50,50,52,56,56,93,44,91,45,49,48,51,46,48,52,50,53,49,49,44,51,53,46,49,56,51,49,53,55,93,44,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,44,91,45,49,48,50,46,49,54,50,55,53,50,44,51,53,46,54,50,48,48,51,53,93,44,91,45,49,48,50,46,49,54,50,56,48,57,44,51,53,46,54,50,55,53,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,53,54,54,44,34,98,101,100,115,34,58,50,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,57,56,50,57,52,44,52,49,46,48,55,49,48,53,52,93,44,91,45,56,48,46,49,54,54,52,55,50,44,52,49,46,48,48,48,57,50,56,93,44,91,45,56,48,46,49,53,56,53,51,44,52,48,46,56,53,53,48,57,54,93,44,91,45,56,48,46,49,52,56,54,56,50,44,52,48,46,54,55,52,50,56,49,93,44,91,45,55,57,46,54,57,50,57,51,44,52,48,46,54,54,57,55,52,52,93,44,91,45,55,57,46,54,57,48,55,49,49,44,52,49,46,49,55,48,54,57,49,93,44,91,45,55,57,46,54,57,52,57,56,52,44,52,49,46,49,55,50,56,54,53,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,49,55,49,56,54,49,93,44,91,45,56,48,46,48,57,56,50,57,52,44,52,49,46,48,55,49,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,51,55,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,44,91,45,49,49,54,46,49,51,51,53,55,44,52,54,46,50,49,53,50,51,49,93,44,91,45,49,49,54,46,51,48,51,55,49,51,44,52,54,46,49,54,54,55,55,56,93,44,91,45,49,49,54,46,52,53,52,49,49,55,44,52,54,46,49,57,50,48,51,50,93,44,91,45,49,49,54,46,53,49,52,55,48,55,44,52,54,46,48,51,56,55,53,55,93,44,91,45,49,49,54,46,55,48,49,56,49,57,44,52,53,46,57,57,54,51,56,49,93,44,91,45,49,49,54,46,55,57,52,53,54,50,44,52,53,46,56,53,54,48,52,57,93,44,91,45,49,49,54,46,53,57,52,50,49,44,52,53,46,55,55,57,48,56,93,44,91,45,49,49,54,46,52,54,51,54,51,53,44,52,53,46,54,48,50,55,56,53,93,44,91,45,49,49,54,46,53,53,55,54,50,49,44,52,53,46,53,48,51,52,57,53,93,44,91,45,49,49,54,46,54,56,55,49,55,55,44,52,53,46,50,54,55,54,52,51,93,44,91,45,49,49,54,46,51,52,50,56,55,54,44,52,53,46,50,54,55,56,55,50,93,44,91,45,49,49,54,46,50,56,53,57,54,57,44,52,53,46,49,50,56,55,51,50,93,44,91,45,49,49,54,46,49,52,52,51,56,54,44,52,53,46,49,48,55,54,53,49,93,44,91,45,49,49,53,46,57,55,53,55,56,55,44,52,53,46,49,57,53,50,56,50,93,44,91,45,49,49,52,46,54,57,52,48,48,49,44,52,53,46,49,57,55,49,56,50,93,44,91,45,49,49,52,46,54,48,51,57,52,44,52,53,46,50,57,53,56,50,54,93,44,91,45,49,49,52,46,55,57,51,50,48,55,44,52,53,46,52,51,54,51,51,52,93,44,91,45,49,49,52,46,54,54,54,50,50,51,44,52,53,46,52,55,49,51,50,53,93,44,91,45,49,49,52,46,53,54,52,57,57,57,44,52,53,46,53,53,55,56,48,51,93,44,91,45,49,49,52,46,52,57,57,54,54,55,44,52,53,46,54,54,56,53,49,51,93,44,91,45,49,49,52,46,53,54,54,51,52,56,44,52,53,46,55,55,50,55,51,57,93,44,91,45,49,49,52,46,52,48,53,57,49,55,44,52,53,46,56,55,48,52,93,44,91,45,49,49,52,46,52,56,48,53,51,55,44,52,54,46,48,51,48,52,51,57,93,44,91,45,49,49,52,46,52,52,53,50,51,52,44,52,54,46,49,54,55,57,52,54,93,44,91,45,49,49,52,46,52,55,48,55,57,53,44,52,54,46,50,54,53,51,55,55,93,44,91,45,49,49,52,46,51,52,50,57,56,53,44,52,54,46,53,49,56,48,52,93,44,91,45,49,49,52,46,51,51,50,55,57,54,44,52,54,46,54,54,48,53,56,49,93,44,91,45,49,49,52,46,53,57,52,54,51,52,44,52,54,46,54,51,51,52,52,56,93,44,91,45,49,49,53,46,54,50,56,57,53,55,44,52,54,46,52,55,51,54,49,56,93,44,91,45,49,49,53,46,55,56,48,56,49,56,44,52,54,46,50,54,55,50,53,93,44,91,45,49,49,53,46,57,53,55,50,54,56,44,52,54,46,50,56,56,57,51,49,93,44,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,55,49,57,49,49,44,51,56,46,54,48,57,51,53,51,93,44,91,45,57,55,46,51,55,49,55,53,44,51,56,46,49,55,51,54,55,51,93,44,91,45,57,55,46,49,53,51,48,57,51,44,51,56,46,49,55,52,54,51,52,93,44,91,45,57,55,46,49,53,50,57,49,51,44,51,56,46,48,56,55,55,48,52,93,44,91,45,57,54,46,56,52,48,55,55,50,44,51,56,46,48,56,53,54,50,50,93,44,91,45,57,54,46,56,49,57,53,48,57,44,51,56,46,53,50,50,52,52,57,93,44,91,45,57,54,46,57,51,48,50,56,54,44,51,56,46,54,48,57,51,54,50,93,44,91,45,57,55,46,51,55,49,57,49,49,44,51,56,46,54,48,57,51,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,66,117,99,107,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,56,50,53,50,51,56,44,51,55,46,53,53,50,53,52,50,93,44,91,45,55,56,46,54,56,51,50,50,52,44,51,55,46,52,50,56,57,55,52,93,44,91,45,55,56,46,53,57,52,52,51,54,44,51,55,46,51,57,55,57,55,52,93,44,91,45,55,56,46,52,54,53,48,56,57,44,51,55,46,51,51,57,54,55,55,93,44,91,45,55,56,46,50,52,57,48,50,49,44,51,55,46,54,51,53,53,52,54,93,44,91,45,55,56,46,50,51,57,55,52,56,44,51,55,46,54,57,48,52,57,53,93,44,91,45,55,56,46,52,48,53,53,57,54,44,51,55,46,55,51,53,50,54,51,93,44,91,45,55,56,46,52,57,49,51,52,53,44,51,55,46,55,57,54,57,53,54,93,44,91,45,55,56,46,54,52,51,57,49,56,44,51,55,46,55,51,51,48,56,52,93,44,91,45,55,56,46,56,50,53,50,51,56,44,51,55,46,53,53,50,53,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,98,97,114,114,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,52,52,56,44,34,98,101,100,115,34,58,52,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,56,52,49,54,55,44,51,53,46,53,48,54,48,49,55,93,44,91,45,56,48,46,54,54,54,52,56,44,51,53,46,50,54,55,57,51,52,93,44,91,45,56,48,46,53,53,48,51,52,57,44,51,53,46,50,48,56,52,49,50,93,44,91,45,56,48,46,53,48,52,57,56,53,44,51,53,46,49,56,52,57,57,56,93,44,91,45,56,48,46,50,57,53,52,50,49,44,51,53,46,53,48,50,57,50,93,44,91,45,56,48,46,55,51,55,51,55,57,44,51,53,46,53,48,53,56,48,52,93,44,91,45,56,48,46,55,56,52,49,54,55,44,51,53,46,53,48,54,48,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,53,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,55,51,51,56,44,51,55,46,52,49,52,57,56,57,93,44,91,45,57,51,46,48,54,53,50,55,52,44,51,55,46,48,56,56,54,57,52,93,44,91,45,57,50,46,57,48,51,50,55,51,44,51,55,46,48,55,48,54,53,49,93,44,91,45,57,50,46,54,56,53,56,54,55,44,51,55,46,48,54,55,48,53,49,93,44,91,45,57,50,46,54,56,54,54,55,49,44,51,55,46,52,56,49,53,52,53,93,44,91,45,57,50,46,56,53,51,52,56,49,44,51,55,46,52,56,51,57,55,93,44,91,45,57,51,46,48,55,49,53,56,52,44,51,55,46,52,56,55,52,52,52,93,44,91,45,57,51,46,48,55,51,51,56,44,51,55,46,52,49,52,57,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,48,54,50,49,44,34,98,101,100,115,34,58,52,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,55,51,56,55,52,52,44,52,48,46,56,54,48,57,57,56,93,44,91,45,49,49,49,46,56,49,53,52,49,52,44,52,48,46,57,53,55,52,51,93,44,91,45,49,49,49,46,56,53,54,50,52,55,44,52,49,46,49,51,57,48,56,51,93,44,91,45,49,49,50,46,49,56,54,54,57,51,44,52,49,46,49,53,51,48,50,56,93,44,91,45,49,49,50,46,52,57,51,53,49,53,44,52,49,46,48,55,54,56,56,56,93,44,91,45,49,49,50,46,50,54,48,50,49,54,44,52,48,46,55,54,57,48,57,51,93,44,91,45,49,49,50,46,48,48,54,53,54,54,44,52,48,46,57,50,49,56,52,54,93,44,91,45,49,49,49,46,57,52,54,50,56,57,44,52,48,46,56,50,49,55,57,93,44,91,45,49,49,49,46,55,51,56,55,52,52,44,52,48,46,56,54,48,57,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,111,116,116,111,110,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,55,50,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,54,50,53,52,55,44,52,52,46,49,57,53,57,52,50,93,44,91,45,57,53,46,52,54,50,52,50,55,44,52,51,46,56,52,55,57,49,49,93,44,91,45,57,53,46,52,53,50,53,48,50,44,52,51,46,56,52,55,57,53,51,93,44,91,45,57,52,46,56,53,57,51,56,56,44,52,51,46,56,52,56,48,57,51,93,44,91,45,57,52,46,56,53,57,56,48,51,44,52,52,46,49,48,56,48,49,54,93,44,91,45,57,53,46,49,48,48,50,50,49,44,52,52,46,49,48,56,48,51,52,93,44,91,45,57,53,46,49,48,56,55,55,55,44,52,52,46,49,57,53,48,52,52,93,44,91,45,57,53,46,52,54,50,53,52,55,44,52,52,46,49,57,53,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,79,107,101,101,99,104,111,98,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,55,50,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,52,50,49,54,52,44,50,55,46,54,52,51,50,51,56,93,44,91,45,56,49,46,50,48,53,51,56,56,44,50,55,46,52,57,48,50,53,52,93,44,91,45,56,48,46,57,52,48,54,55,54,44,50,55,46,50,48,53,57,51,57,93,44,91,45,56,48,46,56,55,49,49,54,57,44,50,55,46,49,53,52,57,53,49,93,44,91,45,56,48,46,56,56,53,54,51,57,44,50,54,46,57,53,56,57,49,57,93,44,91,45,56,48,46,54,55,55,52,50,55,44,50,55,46,49,50,49,54,49,57,93,44,91,45,56,48,46,54,55,55,56,54,50,44,50,55,46,50,48,53,57,56,56,93,44,91,45,56,48,46,54,55,57,56,50,49,44,50,55,46,53,53,56,52,55,93,44,91,45,56,48,46,55,55,55,49,54,54,44,50,55,46,53,53,56,55,51,51,93,44,91,45,56,48,46,56,55,51,49,53,44,50,55,46,54,52,50,50,56,56,93,44,91,45,56,49,46,49,52,50,49,54,52,44,50,55,46,54,52,51,50,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,49,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,55,53,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,50,57,52,52,56,44,51,52,46,57,56,55,53,49,52,93,44,91,45,56,52,46,49,48,51,54,51,44,51,52,46,55,50,55,56,51,55,93,44,91,45,56,52,46,49,53,56,48,51,53,44,51,52,46,54,52,56,50,52,51,93,44,91,45,56,52,46,48,51,54,50,55,54,44,51,52,46,54,52,50,48,56,55,93,44,91,45,56,51,46,57,51,57,48,48,55,44,51,52,46,55,52,48,56,53,57,93,44,91,45,56,51,46,56,53,54,53,48,54,44,51,52,46,55,50,50,49,57,49,93,44,91,45,56,51,46,55,56,48,51,52,54,44,51,52,46,55,57,50,57,48,53,93,44,91,45,56,51,46,56,48,52,57,54,50,44,51,52,46,56,57,53,57,51,52,93,44,91,45,56,51,46,57,51,54,51,57,53,44,51,52,46,57,56,55,53,54,52,93,44,91,45,56,52,46,48,48,53,49,51,50,44,51,52,46,57,56,55,49,55,53,93,44,91,45,56,52,46,49,50,57,52,52,56,44,51,52,46,57,56,55,53,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,108,97,99,107,32,72,97,119,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,48,48,57,44,34,98,101,100,115,34,58,54,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,52,51,44,52,50,46,53,53,53,56,53,52,93,44,91,45,57,50,46,53,51,51,53,49,44,52,50,46,50,57,55,48,48,49,93,44,91,45,57,50,46,50,57,56,55,57,50,44,52,50,46,50,57,55,53,50,55,93,44,91,45,57,50,46,48,54,52,55,54,54,44,52,50,46,50,57,55,50,53,57,93,44,91,45,57,50,46,48,56,49,54,54,49,44,52,50,46,54,52,50,48,53,54,93,44,91,45,57,50,46,53,53,52,52,57,50,44,52,50,46,54,52,50,51,49,52,93,44,91,45,57,50,46,53,53,52,51,44,52,50,46,53,53,53,56,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,48,51,34,44,34,78,65,77,69,34,58,34,83,97,98,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,56,52,52,54,49,44,51,49,46,53,54,57,52,49,57,93,44,91,45,57,51,46,57,56,51,50,51,57,44,51,49,46,52,54,54,49,49,52,93,44,91,45,57,52,46,48,52,52,49,53,52,44,51,49,46,52,48,57,57,55,57,93,44,91,45,57,52,46,48,51,57,48,51,52,44,51,49,46,49,51,52,50,55,49,93,44,91,45,57,51,46,57,49,49,49,50,54,44,51,49,46,49,53,56,48,55,49,93,44,91,45,57,51,46,54,48,48,51,48,56,44,51,49,46,49,55,54,49,53,56,93,44,91,45,57,51,46,54,56,55,53,49,49,44,51,49,46,51,49,48,56,49,51,93,44,91,45,57,51,46,54,57,50,54,51,49,44,51,49,46,52,51,55,49,57,50,93,44,91,45,57,51,46,56,51,52,57,49,56,44,51,49,46,53,56,54,50,49,50,93,44,91,45,57,51,46,57,56,52,52,54,49,44,51,49,46,53,54,57,52,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,50,49,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,56,53,54,51,55,44,51,57,46,48,53,53,49,57,55,93,44,91,45,56,51,46,50,55,48,56,49,55,44,51,57,46,48,49,53,55,57,49,93,44,91,45,56,51,46,50,49,50,49,48,55,44,51,56,46,57,54,48,49,52,56,93,44,91,45,56,50,46,56,48,55,48,57,44,51,56,46,57,52,56,48,55,51,93,44,91,45,56,50,46,55,56,53,56,57,49,44,51,57,46,49,54,56,55,54,57,93,44,91,45,56,51,46,51,53,51,53,51,49,44,51,57,46,49,57,55,53,56,53,93,44,91,45,56,51,46,51,56,53,54,51,55,44,51,57,46,48,53,53,49,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,84,117,115,99,97,108,111,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,50,49,51,44,34,98,101,100,115,34,58,49,48,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,56,51,55,53,50,49,44,51,51,46,49,53,51,54,51,55,93,44,91,45,56,55,46,56,51,50,50,51,51,44,51,51,46,48,49,55,50,53,56,93,44,91,45,56,55,46,55,49,53,55,48,57,44,51,51,46,48,48,54,56,50,52,93,44,91,45,56,55,46,52,50,49,57,51,54,44,51,51,46,48,48,51,51,55,57,93,44,91,45,56,55,46,51,49,56,53,51,57,44,51,51,46,48,48,54,49,55,57,93,44,91,45,56,55,46,50,56,49,57,52,53,44,51,51,46,49,51,51,48,54,93,44,91,45,56,55,46,48,54,53,55,51,56,44,51,51,46,50,52,54,57,48,55,93,44,91,45,56,55,46,49,55,57,54,51,56,44,51,51,46,51,50,49,49,49,50,93,44,91,45,56,55,46,50,56,52,51,54,51,44,51,51,46,52,52,48,53,55,56,93,44,91,45,56,55,46,50,54,54,57,50,51,44,51,51,46,53,49,50,57,50,57,93,44,91,45,56,55,46,51,49,56,53,51,50,44,51,51,46,53,56,55,51,57,51,93,44,91,45,56,55,46,52,50,51,55,48,49,44,51,51,46,54,48,50,48,57,54,93,44,91,45,56,55,46,54,51,49,55,49,56,44,51,51,46,54,48,57,56,51,51,93,44,91,45,56,55,46,54,54,54,54,54,49,44,51,51,46,53,50,49,54,54,55,93,44,91,45,56,55,46,56,52,48,54,56,51,44,51,51,46,53,50,52,56,51,57,93,44,91,45,56,55,46,56,51,55,53,50,49,44,51,51,46,49,53,51,54,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,87,105,108,99,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,57,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,55,50,50,48,54,44,51,50,46,50,54,52,57,49,57,93,44,91,45,56,55,46,53,50,49,57,52,54,44,51,50,46,49,51,50,56,49,54,93,44,91,45,56,55,46,54,50,52,48,48,53,44,51,50,46,49,51,50,51,52,53,93,44,91,45,56,55,46,54,54,55,55,54,57,44,51,49,46,57,57,49,51,53,53,93,44,91,45,56,55,46,54,50,48,49,49,50,44,51,49,46,56,50,55,49,50,51,93,44,91,45,56,55,46,53,48,48,57,51,44,51,49,46,56,50,57,50,53,49,93,44,91,45,56,54,46,57,48,54,56,57,57,44,51,49,46,56,51,48,54,50,56,93,44,91,45,56,54,46,56,53,55,53,56,51,44,51,49,46,57,54,50,49,54,55,93,44,91,45,56,54,46,57,48,54,57,53,54,44,51,50,46,48,52,55,57,55,93,44,91,45,56,55,46,49,55,55,56,54,44,51,50,46,48,52,55,53,49,52,93,44,91,45,56,55,46,51,50,53,54,52,52,44,51,50,46,49,57,54,50,55,50,93,44,91,45,56,55,46,52,55,50,50,48,54,44,51,50,46,50,54,52,57,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,48,54,56,55,50,44,51,51,46,54,55,55,54,48,53,93,44,91,45,56,57,46,55,56,54,56,57,44,51,51,46,54,55,54,55,50,55,93,44,91,45,56,57,46,55,56,53,50,50,55,44,51,51,46,52,49,54,50,55,53,93,44,91,45,56,57,46,54,52,54,51,49,52,44,51,51,46,52,48,50,53,52,52,93,44,91,45,56,57,46,54,52,53,50,56,44,51,51,46,50,56,53,53,49,53,93,44,91,45,56,57,46,52,53,51,56,48,56,44,51,51,46,50,56,53,57,52,50,93,44,91,45,56,57,46,52,53,52,48,53,44,51,51,46,52,51,51,50,93,44,91,45,56,57,46,51,56,49,48,57,50,44,51,51,46,52,54,48,51,48,55,93,44,91,45,56,57,46,53,48,54,52,57,54,44,51,51,46,52,53,57,56,48,54,93,44,91,45,56,57,46,53,48,54,56,55,50,44,51,51,46,54,55,55,54,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,75,101,97,114,110,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,53,50,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,55,57,50,52,56,44,52,48,46,54,54,48,53,52,49,93,44,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,44,91,45,57,56,46,55,50,54,56,50,55,44,52,48,46,51,53,48,51,57,56,93,44,91,45,57,56,46,55,50,51,57,52,56,44,52,48,46,51,53,48,51,57,49,93,44,91,45,57,56,46,55,50,52,51,56,55,44,52,48,46,54,56,57,55,55,50,93,44,91,45,57,56,46,57,48,54,48,57,54,44,52,48,46,54,53,50,55,50,50,93,44,91,45,57,57,46,49,55,57,50,52,56,44,52,48,46,54,54,48,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,72,105,116,99,104,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,51,50,51,51,53,51,44,52,48,46,51,53,48,53,53,51,93,44,91,45,49,48,49,46,51,50,53,53,49,52,44,52,48,46,48,48,50,55,48,50,93,44,91,45,49,48,48,46,55,53,56,56,51,44,52,48,46,48,48,50,51,48,50,93,44,91,45,49,48,48,46,55,53,56,52,51,53,44,52,48,46,51,52,57,53,48,55,93,44,91,45,49,48,48,46,55,55,55,51,55,54,44,52,48,46,51,52,57,52,54,54,93,44,91,45,49,48,49,46,51,50,51,51,53,51,44,52,48,46,51,53,48,53,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,78,101,119,32,67,97,115,116,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,68,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,53,49,51,51,44,34,98,101,100,115,34,58,50,48,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,53,57,52,56,56,44,51,57,46,56,51,55,53,50,53,93,44,91,45,55,53,46,55,56,56,53,57,54,44,51,57,46,55,50,50,49,57,57,93,44,91,45,55,53,46,55,54,54,53,57,52,44,51,57,46,51,55,55,53,54,51,93,44,91,45,55,53,46,55,54,48,48,55,52,44,51,57,46,50,57,54,56,49,57,93,44,91,45,55,53,46,53,55,52,52,50,57,44,51,57,46,51,49,51,54,49,49,93,44,91,45,55,53,46,52,56,49,51,54,44,51,57,46,51,56,55,53,53,53,93,44,91,45,55,53,46,53,54,48,53,51,56,44,51,57,46,52,53,53,54,52,53,93,44,91,45,55,53,46,53,49,50,55,55,44,51,57,46,53,55,56,50,57,93,44,91,45,55,53,46,53,53,56,55,55,51,44,51,57,46,54,50,57,57,56,55,93,44,91,45,55,53,46,52,48,53,52,56,57,44,51,57,46,55,57,54,51,54,56,93,44,91,45,55,53,46,52,49,53,48,54,50,44,51,57,46,56,48,49,57,49,57,93,44,91,45,55,53,46,53,55,57,57,50,54,44,51,57,46,56,51,56,56,54,50,93,44,91,45,55,53,46,53,57,51,48,57,57,44,51,57,46,56,51,55,55,50,51,93,44,91,45,55,53,46,53,57,52,56,56,44,51,57,46,56,51,55,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,84,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,56,48,44,34,98,101,100,115,34,58,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,51,57,56,55,56,49,44,52,51,46,57,50,50,56,57,93,44,91,45,49,49,49,46,51,57,57,55,54,53,44,52,51,46,54,50,49,57,55,54,93,44,91,45,49,49,49,46,50,52,51,56,51,57,44,52,51,46,54,50,49,56,53,51,93,44,91,45,49,49,49,46,50,48,55,53,54,49,44,52,51,46,53,52,51,56,53,55,93,44,91,45,49,49,49,46,48,52,53,52,55,51,44,52,51,46,53,48,49,48,53,49,93,44,91,45,49,49,49,46,48,52,55,49,53,55,44,52,51,46,57,56,51,52,53,57,93,44,91,45,49,49,49,46,49,56,55,50,53,54,44,52,51,46,57,51,50,49,49,52,93,44,91,45,49,49,49,46,51,57,56,55,56,49,44,52,51,46,57,50,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,82,111,99,107,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,50,55,53,44,34,98,101,100,115,34,58,52,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,54,53,54,50,44,52,49,46,55,50,56,57,50,56,93,44,91,45,57,48,46,51,52,51,50,50,56,44,52,49,46,53,56,55,56,51,51,93,44,91,45,57,48,46,52,54,49,52,51,50,44,52,49,46,53,50,51,53,51,51,93,44,91,45,57,48,46,55,56,54,50,56,50,44,52,49,46,52,53,50,56,56,56,93,44,91,45,57,49,46,48,52,56,50,53,57,44,52,49,46,52,48,57,55,52,56,93,44,91,45,57,49,46,48,55,50,48,52,53,44,52,49,46,51,51,51,53,57,57,93,44,91,45,57,49,46,48,55,50,48,55,44,52,49,46,51,51,51,51,54,49,93,44,91,45,57,48,46,52,51,51,55,51,55,44,52,49,46,51,50,54,57,56,57,93,44,91,45,57,48,46,52,51,49,57,51,44,52,49,46,52,53,54,56,51,52,93,44,91,45,57,48,46,49,56,53,53,51,54,44,52,49,46,53,56,52,53,55,52,93,44,91,45,57,48,46,50,52,50,51,56,44,52,49,46,55,56,50,57,54,52,93,44,91,45,57,48,46,51,49,54,53,54,50,44,52,49,46,55,50,56,57,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,108,111,117,99,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,49,54,49,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,49,50,51,48,53,44,51,55,46,52,51,49,51,48,57,93,44,91,45,55,54,46,54,53,56,54,53,49,44,51,55,46,51,56,48,49,51,57,93,44,91,45,55,54,46,53,49,54,48,53,55,44,51,55,46,50,52,56,55,53,50,93,44,91,45,55,54,46,51,48,52,53,44,51,55,46,50,55,56,51,54,49,93,44,91,45,55,54,46,52,52,52,55,51,54,44,51,55,46,52,49,56,53,51,57,93,44,91,45,55,54,46,52,51,55,53,54,49,44,51,55,46,53,49,52,51,54,93,44,91,45,55,54,46,54,53,52,48,55,54,44,51,55,46,54,48,51,49,55,52,93,44,91,45,55,54,46,55,49,50,51,48,53,44,51,55,46,52,51,49,51,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,83,101,118,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,55,48,51,51,49,44,51,52,46,49,57,48,49,56,51,93,44,91,45,57,52,46,52,55,55,50,57,57,44,51,51,46,57,52,48,57,51,50,93,44,91,45,57,52,46,49,56,49,56,49,44,51,51,46,55,56,56,56,53,50,93,44,91,45,57,51,46,57,53,56,56,50,56,44,51,51,46,55,53,48,57,57,52,93,44,91,45,57,52,46,48,53,50,57,52,51,44,51,51,46,56,56,54,48,56,50,93,44,91,45,57,52,46,48,57,56,53,48,49,44,51,52,46,49,57,49,50,48,51,93,44,91,45,57,52,46,50,52,51,55,51,57,44,51,52,46,49,57,50,53,48,49,93,44,91,45,57,52,46,52,55,48,51,51,49,44,51,52,46,49,57,48,49,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,56,52,44,34,98,101,100,115,34,58,49,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,56,49,53,51,50,44,52,48,46,57,49,48,57,50,53,93,44,91,45,56,54,46,53,56,49,55,51,57,44,52,48,46,55,51,53,55,54,53,93,44,91,45,56,54,46,51,55,51,53,50,49,44,52,48,46,54,57,50,52,54,93,44,91,45,56,54,46,51,55,52,52,49,55,44,52,48,46,53,54,49,51,54,49,93,44,91,45,56,54,46,49,54,53,48,50,52,44,52,48,46,53,54,50,54,52,57,93,44,91,45,56,54,46,49,54,57,48,49,50,44,52,48,46,57,48,57,56,51,54,93,44,91,45,56,54,46,52,54,56,53,48,57,44,52,48,46,57,48,57,56,56,57,93,44,91,45,56,54,46,53,56,49,53,51,50,44,52,48,46,57,49,48,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,80,111,119,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,49,51,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,50,51,54,57,54,56,44,52,50,46,54,50,53,50,53,52,93,44,91,45,49,49,51,46,48,48,50,55,57,50,44,52,50,46,53,56,56,48,48,51,93,44,91,45,49,49,50,46,57,57,57,57,54,53,44,52,50,46,51,50,55,52,50,55,93,44,91,45,49,49,50,46,54,53,52,48,50,56,44,52,50,46,51,50,56,56,55,50,93,44,91,45,49,49,50,46,54,53,51,57,56,57,44,52,50,46,52,49,54,49,54,57,93,44,91,45,49,49,50,46,52,57,55,56,52,57,44,52,50,46,52,49,53,57,57,56,93,44,91,45,49,49,50,46,52,49,57,56,50,53,44,52,50,46,53,48,51,48,51,56,93,44,91,45,49,49,50,46,51,56,57,52,49,56,44,52,50,46,54,50,52,51,56,50,93,44,91,45,49,49,50,46,52,57,54,57,49,44,52,50,46,55,51,51,48,49,51,93,44,91,45,49,49,50,46,53,49,53,53,49,57,44,52,50,46,57,48,57,57,55,53,93,44,91,45,49,49,50,46,53,55,57,50,56,55,44,52,50,46,57,55,50,52,53,49,93,44,91,45,49,49,50,46,55,53,48,53,54,50,44,52,50,46,57,53,49,53,50,56,93,44,91,45,49,49,50,46,56,49,54,53,55,56,44,52,50,46,56,54,51,50,51,49,93,44,91,45,49,49,51,46,48,48,55,55,54,44,52,50,46,56,54,51,48,53,49,93,44,91,45,49,49,51,46,48,48,55,55,49,50,44,52,51,46,49,49,48,57,51,51,93,44,91,45,49,49,51,46,50,52,51,52,55,56,44,52,51,46,49,49,48,57,52,54,93,44,91,45,49,49,51,46,50,51,54,57,54,56,44,52,50,46,54,50,53,50,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,55,55,49,50,57,51,44,52,48,46,53,54,50,48,56,50,93,44,91,45,56,54,46,54,57,52,54,54,53,44,52,48,46,52,51,50,49,53,54,93,44,91,45,56,54,46,51,55,53,55,54,50,44,52,48,46,52,51,49,56,53,49,93,44,91,45,56,54,46,51,55,52,52,49,55,44,52,48,46,53,54,49,51,54,49,93,44,91,45,56,54,46,51,55,51,53,50,49,44,52,48,46,54,57,50,52,54,93,44,91,45,56,54,46,53,56,49,55,51,57,44,52,48,46,55,51,53,55,54,53,93,44,91,45,56,54,46,55,52,55,55,54,52,44,52,48,46,55,51,55,53,52,93,44,91,45,56,54,46,55,55,49,50,57,51,44,52,48,46,53,54,50,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,80,104,105,108,97,100,101,108,112,104,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,53,53,50,50,44,34,98,101,100,115,34,58,55,53,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,50,55,54,52,56,50,44,51,57,46,57,55,54,57,53,57,93,44,91,45,55,53,46,50,49,49,52,54,51,44,51,57,46,56,54,55,48,48,52,93,44,91,45,55,53,46,49,51,57,56,51,50,44,51,57,46,56,56,56,51,49,55,93,44,91,45,55,53,46,48,53,57,57,49,51,44,51,57,46,57,57,49,53,50,57,93,44,91,45,55,52,46,57,55,51,57,56,49,44,52,48,46,48,52,56,53,57,53,93,44,91,45,55,53,46,48,49,53,48,54,54,44,52,48,46,49,51,55,57,57,50,93,44,91,45,55,53,46,49,48,57,52,51,49,44,52,48,46,48,52,53,56,55,52,93,44,91,45,55,53,46,50,50,51,54,49,44,52,48,46,48,57,50,57,48,55,93,44,91,45,55,53,46,50,55,54,52,56,50,44,51,57,46,57,55,54,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,97,107,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,50,57,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,53,53,48,55,53,56,44,52,52,46,48,55,57,52,48,51,93,44,91,45,49,48,56,46,52,50,57,53,54,51,44,52,51,46,57,48,51,51,53,53,93,44,91,45,49,48,56,46,49,55,51,54,49,55,44,52,51,46,56,49,56,57,53,51,93,44,91,45,49,48,55,46,57,53,54,52,52,56,44,52,51,46,56,49,56,54,54,54,93,44,91,45,49,48,55,46,57,53,54,53,55,55,44,52,51,46,55,51,51,52,52,54,93,44,91,45,49,48,55,46,55,49,53,56,55,54,44,52,51,46,55,51,51,51,52,51,93,44,91,45,49,48,55,46,53,57,53,49,53,55,44,52,51,46,54,52,54,52,50,55,93,44,91,45,49,48,55,46,53,57,53,49,48,53,44,52,51,46,53,48,49,51,57,55,93,44,91,45,49,48,55,46,53,51,52,56,57,55,44,52,51,46,53,48,49,51,54,50,93,44,91,45,49,48,55,46,49,49,48,55,51,52,44,52,51,46,53,48,48,50,56,54,93,44,91,45,49,48,55,46,49,52,54,56,48,56,44,52,52,46,49,54,53,54,54,54,93,44,91,45,49,48,56,46,53,53,48,53,54,50,44,52,52,46,49,54,56,52,53,53,93,44,91,45,49,48,56,46,53,53,48,55,53,56,44,52,52,46,48,55,57,52,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,97,109,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,52,55,44,34,98,101,100,115,34,58,49,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,57,49,51,51,54,44,51,54,46,53,49,48,54,55,55,93,44,91,45,55,54,46,50,51,56,50,52,52,44,51,54,46,51,55,49,53,56,56,93,44,91,45,55,54,46,48,54,56,54,48,53,44,51,54,46,50,49,54,53,57,93,44,91,45,55,54,46,48,50,50,54,48,55,44,51,54,46,48,57,54,55,50,53,93,44,91,45,55,53,46,57,48,54,50,57,53,44,51,54,46,48,56,53,56,55,55,93,44,91,45,55,53,46,56,56,55,57,56,52,44,51,54,46,49,54,51,51,49,49,93,44,91,45,55,53,46,57,54,57,54,50,53,44,51,54,46,51,48,54,51,49,50,93,44,91,45,55,54,46,49,49,52,48,54,57,44,51,54,46,51,53,55,52,57,56,93,44,91,45,55,54,46,51,49,51,51,48,51,44,51,54,46,53,53,48,53,50,93,44,91,45,55,54,46,52,57,49,52,57,54,44,51,54,46,53,53,48,54,52,56,93,44,91,45,55,54,46,53,52,49,57,54,54,44,51,54,46,53,53,48,54,53,51,93,44,91,45,55,54,46,52,57,49,51,51,54,44,51,54,46,53,49,48,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,84,111,109,112,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,57,54,50,44,34,98,101,100,115,34,58,50,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,54,54,53,52,51,44,52,50,46,54,50,51,52,53,55,93,44,91,45,55,54,46,54,57,54,54,53,53,44,52,50,46,53,52,54,55,57,93,44,91,45,55,54,46,54,57,49,52,48,54,44,52,50,46,50,56,52,51,48,55,93,44,91,45,55,54,46,54,49,57,51,48,51,44,52,50,46,50,56,50,56,53,51,93,44,91,45,55,54,46,53,51,56,51,52,57,44,52,50,46,50,56,49,55,53,53,93,44,91,45,55,54,46,52,49,53,51,48,53,44,52,50,46,51,49,56,51,54,56,93,44,91,45,55,54,46,50,53,48,49,52,57,44,52,50,46,50,57,54,54,55,54,93,44,91,45,55,54,46,50,53,51,51,53,57,44,52,50,46,52,48,55,53,54,56,93,44,91,45,55,54,46,50,54,53,53,56,52,44,52,50,46,54,50,51,53,56,56,93,44,91,45,55,54,46,54,54,54,53,52,51,44,52,50,46,54,50,51,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,52,50,52,44,34,98,101,100,115,34,58,52,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,48,56,48,52,49,44,51,52,46,52,57,50,55,54,53,93,44,91,45,57,50,46,50,51,51,51,55,54,44,51,52,46,48,54,50,51,49,50,93,44,91,45,57,49,46,57,53,51,55,57,57,44,51,52,46,48,54,52,49,52,49,93,44,91,45,57,49,46,55,52,52,57,57,44,51,52,46,48,57,52,48,50,49,93,44,91,45,57,49,46,55,50,55,50,55,54,44,51,52,46,49,55,52,48,57,51,93,44,91,45,57,49,46,52,52,53,54,49,52,44,51,52,46,48,56,48,49,52,55,93,44,91,45,57,49,46,53,52,48,49,55,56,44,51,52,46,50,50,52,53,57,57,93,44,91,45,57,49,46,55,49,49,55,57,53,44,51,52,46,50,51,51,57,49,57,93,44,91,45,57,49,46,55,48,53,49,56,53,44,51,52,46,52,56,50,54,55,93,44,91,45,57,50,46,48,50,57,57,57,54,44,51,52,46,52,56,57,51,53,50,93,44,91,45,57,50,46,50,48,56,48,52,49,44,51,52,46,52,57,50,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,52,53,54,49,52,44,51,52,46,48,56,48,49,52,55,93,44,91,45,57,49,46,55,50,55,50,55,54,44,51,52,46,49,55,52,48,57,51,93,44,91,45,57,49,46,55,52,52,57,57,44,51,52,46,48,57,52,48,50,49,93,44,91,45,57,49,46,57,53,51,55,57,57,44,51,52,46,48,54,52,49,52,49,93,44,91,45,57,49,46,57,55,53,57,55,52,44,51,51,46,55,57,49,55,56,55,93,44,91,45,57,49,46,53,53,55,54,52,56,44,51,51,46,55,56,51,51,56,52,93,44,91,45,57,49,46,53,52,56,54,54,56,44,51,51,46,57,55,54,55,57,57,93,44,91,45,57,49,46,52,50,49,55,49,53,44,51,52,46,48,49,52,52,55,50,93,44,91,45,57,49,46,52,52,53,54,49,52,44,51,52,46,48,56,48,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,86,101,114,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,49,54,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,48,54,53,51,44,52,51,46,55,50,53,51,51,52,93,44,91,45,57,49,46,50,53,55,56,51,57,44,52,51,46,55,50,53,54,54,49,93,44,91,45,57,49,46,50,54,56,55,52,56,44,52,51,46,54,49,53,51,52,56,93,44,91,45,57,49,46,50,49,55,55,48,54,44,52,51,46,53,48,48,53,53,93,44,91,45,57,49,46,50,48,53,53,53,44,52,51,46,52,50,50,57,52,57,93,44,91,45,57,48,46,54,54,56,53,54,49,44,52,51,46,52,50,50,57,57,52,93,44,91,45,57,48,46,54,55,49,54,53,50,44,52,51,46,53,53,50,56,53,54,93,44,91,45,57,48,46,51,49,49,48,54,57,44,52,51,46,53,53,51,57,57,49,93,44,91,45,57,48,46,51,49,50,52,48,52,44,52,51,46,54,52,48,57,56,56,93,44,91,45,57,48,46,51,49,50,49,57,52,44,52,51,46,55,51,49,52,55,57,93,44,91,45,57,48,46,57,49,48,54,53,51,44,52,51,46,55,50,53,51,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,73,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,50,49,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,53,53,48,55,51,44,51,55,46,53,56,56,48,57,50,93,44,91,45,57,48,46,55,54,56,54,57,53,44,51,55,46,54,48,51,48,49,49,93,44,91,45,57,48,46,55,55,50,57,52,57,44,51,55,46,51,55,51,54,53,57,93,44,91,45,57,48,46,55,51,53,52,53,51,44,51,55,46,50,55,49,48,52,93,44,91,45,57,48,46,53,52,57,55,50,57,44,51,55,46,51,49,55,53,57,52,93,44,91,45,57,48,46,53,51,53,48,49,54,44,51,55,46,54,52,51,54,52,49,93,44,91,45,57,48,46,54,52,55,56,55,52,44,51,55,46,54,52,50,56,48,57,93,44,91,45,57,48,46,54,52,53,49,51,53,44,51,55,46,55,51,52,56,49,51,93,44,91,45,57,49,46,49,48,48,48,49,55,44,51,55,46,55,52,48,48,49,50,93,44,91,45,57,49,46,49,53,51,51,52,53,44,51,55,46,54,57,55,51,52,93,44,91,45,57,49,46,49,53,53,48,55,51,44,51,55,46,53,56,56,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,51,34,44,34,78,65,77,69,34,58,34,72,111,112,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,50,52,48,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,48,56,53,57,51,44,51,51,46,51,55,55,49,57,93,44,91,45,57,53,46,53,56,49,49,55,53,44,51,51,46,51,53,56,57,55,55,93,44,91,45,57,53,46,55,50,57,48,57,52,44,51,51,46,51,48,53,52,50,56,93,44,91,45,57,53,46,56,54,49,55,55,56,44,51,51,46,50,49,57,51,51,93,44,91,45,57,53,46,56,54,50,53,50,49,44,51,50,46,57,55,57,53,55,49,93,44,91,45,57,53,46,54,54,53,51,56,57,44,51,50,46,57,54,48,52,51,52,93,44,91,45,57,53,46,51,48,56,57,53,55,44,51,50,46,57,54,50,53,55,50,93,44,91,45,57,53,46,51,48,56,53,57,51,44,51,51,46,51,55,55,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,98,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,55,52,50,54,44,34,98,101,100,115,34,58,49,53,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,56,48,57,51,54,57,44,52,50,46,55,55,56,56,54,57,93,44,91,45,55,52,46,49,56,48,50,55,52,44,52,50,46,55,50,57,57,55,57,93,44,91,45,55,52,46,50,53,52,51,48,51,44,52,50,46,52,48,56,50,48,55,93,44,91,45,55,51,46,55,56,51,55,50,49,44,52,50,46,52,54,52,50,51,49,93,44,91,45,55,51,46,55,54,49,50,54,53,44,52,50,46,54,49,48,51,55,57,93,44,91,45,55,51,46,54,55,54,55,54,50,44,52,50,46,55,56,51,50,55,55,93,44,91,45,55,51,46,56,48,57,51,54,57,44,52,50,46,55,55,56,56,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,53,34,44,34,78,65,77,69,34,58,34,72,111,117,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,57,53,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,51,57,50,55,57,44,51,49,46,53,48,52,48,53,54,93,44,91,45,57,53,46,54,53,53,53,52,53,44,51,49,46,51,50,57,54,52,93,44,91,45,57,53,46,55,50,53,50,50,54,44,51,49,46,50,55,49,48,56,52,93,44,91,45,57,53,46,55,54,52,52,49,44,51,49,46,48,57,52,50,49,49,93,44,91,45,57,53,46,54,53,54,52,56,55,44,51,49,46,48,55,57,51,51,57,93,44,91,45,57,53,46,54,55,50,53,57,55,44,51,48,46,57,55,54,50,55,56,93,44,91,45,57,53,46,54,49,55,56,55,50,44,51,48,46,57,51,48,52,49,56,93,44,91,45,57,53,46,52,51,52,55,56,49,44,51,49,46,48,53,56,48,57,56,93,44,91,45,57,52,46,57,53,56,49,49,44,51,49,46,51,56,54,57,51,93,44,91,45,57,53,46,48,48,51,51,52,53,44,51,49,46,52,50,53,55,49,93,44,91,45,57,53,46,49,52,57,49,57,56,44,51,49,46,53,54,56,56,48,55,93,44,91,45,57,53,46,50,55,51,50,48,51,44,51,49,46,53,57,50,56,56,54,93,44,91,45,57,53,46,54,53,49,55,54,52,44,51,49,46,53,52,49,55,57,49,93,44,91,45,57,53,46,55,51,57,50,55,57,44,51,49,46,53,48,52,48,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,57,48,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,50,49,50,55,57,44,51,57,46,56,52,57,57,56,50,93,44,91,45,56,49,46,50,51,55,51,49,54,44,51,57,46,56,54,55,56,50,56,93,44,91,45,56,49,46,51,49,51,53,57,49,44,51,57,46,56,54,57,52,55,49,93,44,91,45,56,49,46,51,49,57,49,50,53,44,51,57,46,55,48,55,51,54,93,44,91,45,56,49,46,50,56,51,48,55,53,44,51,57,46,54,48,53,55,57,54,93,44,91,45,56,49,46,48,51,56,55,49,50,44,51,57,46,53,51,57,56,56,54,93,44,91,45,56,48,46,57,52,51,55,56,50,44,51,57,46,54,48,54,57,50,54,93,44,91,45,56,48,46,56,51,51,53,49,51,44,51,57,46,55,50,48,56,49,50,93,44,91,45,56,48,46,56,50,49,50,55,57,44,51,57,46,56,52,57,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,82,117,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,48,50,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,56,53,48,56,55,44,51,56,46,54,57,54,53,51,55,93,44,91,45,57,57,46,53,56,52,55,57,52,44,51,56,46,51,52,57,51,56,54,93,44,91,45,57,57,46,48,51,50,52,48,56,44,51,56,46,51,52,56,51,51,52,93,44,91,45,57,57,46,48,51,50,57,55,49,44,51,56,46,54,57,54,55,53,57,93,44,91,45,57,57,46,48,52,50,54,50,54,44,51,56,46,54,57,54,56,48,55,93,44,91,45,57,57,46,53,56,53,48,56,55,44,51,56,46,54,57,54,53,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,50,55,54,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,57,50,53,54,51,44,52,48,46,50,49,52,56,48,54,93,44,91,45,56,55,46,48,57,49,48,48,54,44,51,57,46,57,53,51,48,48,57,93,44,91,45,56,55,46,48,48,57,52,55,55,44,51,57,46,56,54,54,55,48,53,93,44,91,45,56,54,46,54,57,53,49,50,55,44,51,57,46,56,54,52,56,52,53,93,44,91,45,56,54,46,54,57,53,48,55,49,44,51,57,46,57,50,50,55,55,93,44,91,45,56,54,46,54,57,53,56,48,52,44,52,48,46,49,55,56,54,53,55,93,44,91,45,56,54,46,54,57,53,54,51,55,44,52,48,46,50,49,52,51,54,55,93,44,91,45,56,55,46,48,57,50,53,54,51,44,52,48,46,50,49,52,56,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,83,116,97,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,51,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,49,54,52,50,44,51,55,46,51,56,57,49,57,93,44,91,45,49,48,49,46,53,53,54,54,48,54,44,51,55,46,51,56,56,52,56,53,93,44,91,45,49,48,49,46,53,50,53,56,49,44,51,55,46,51,56,56,51,57,50,93,44,91,45,49,48,49,46,53,50,55,48,54,51,44,51,55,46,55,51,54,51,49,52,93,44,91,45,49,48,50,46,48,52,50,49,53,53,44,51,55,46,55,51,56,53,52,49,93,44,91,45,49,48,50,46,48,52,49,53,56,53,44,51,55,46,54,52,52,50,56,50,93,44,91,45,49,48,50,46,48,52,49,54,52,50,44,51,55,46,51,56,57,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,50,50,49,44,51,55,46,55,49,54,52,50,93,44,91,45,56,51,46,56,50,51,48,51,44,51,55,46,54,53,57,56,55,50,93,44,91,45,56,51,46,57,48,53,53,55,44,51,55,46,53,52,50,56,53,54,93,44,91,45,56,51,46,56,56,53,50,54,50,44,51,55,46,53,49,55,54,56,56,93,44,91,45,56,51,46,53,55,57,49,56,54,44,51,55,46,53,48,54,50,52,57,93,44,91,45,56,51,46,53,50,50,51,48,56,44,51,55,46,54,51,56,53,49,54,93,44,91,45,56,51,46,55,48,55,57,55,52,44,51,55,46,55,49,54,52,54,51,93,44,91,45,56,51,46,55,50,50,49,44,51,55,46,55,49,54,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,75,111,111,99,104,105,99,104,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,56,56,52,51,56,44,52,56,46,54,50,55,53,57,55,93,44,91,45,57,51,46,50,48,55,52,50,54,44,52,56,46,54,52,50,52,49,57,93,44,91,45,57,51,46,52,54,53,57,56,50,44,52,56,46,53,56,55,50,56,55,93,44,91,45,57,51,46,52,54,55,53,48,50,44,52,56,46,53,52,53,54,54,49,93,44,91,45,57,51,46,55,57,52,52,53,53,44,52,56,46,53,49,53,57,56,54,93,44,91,45,57,51,46,56,52,52,48,49,51,44,52,56,46,54,50,57,51,56,52,93,44,91,45,57,52,46,50,52,52,51,57,56,44,52,56,46,54,53,51,52,50,49,93,44,91,45,57,52,46,52,51,48,50,55,51,44,52,56,46,55,48,48,57,48,57,93,44,91,45,57,52,46,52,50,56,55,48,50,44,52,56,46,51,54,55,51,51,51,93,44,91,45,57,52,46,52,49,56,53,52,51,44,52,55,46,56,52,53,56,49,54,93,44,91,45,57,51,46,55,55,54,49,55,51,44,52,55,46,56,52,54,52,48,52,93,44,91,45,57,51,46,55,55,53,55,55,50,44,52,55,46,56,57,56,57,53,93,44,91,45,57,51,46,48,56,49,49,53,56,44,52,55,46,56,57,49,56,55,93,44,91,45,57,51,46,48,57,54,52,56,56,44,52,56,46,48,54,55,56,50,54,93,44,91,45,57,51,46,48,56,56,52,51,56,44,52,56,46,54,50,55,53,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,66,101,120,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,53,56,54,53,44,34,98,101,100,115,34,58,55,52,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,54,53,53,50,44,50,57,46,54,57,48,55,48,57,93,44,91,45,57,56,46,56,48,52,55,54,51,44,50,57,46,50,53,48,54,57,51,93,44,91,45,57,56,46,52,48,55,51,51,54,44,50,57,46,49,49,52,52,51,53,93,44,91,45,57,56,46,49,51,52,49,55,49,44,50,57,46,52,52,49,55,53,49,93,44,91,45,57,56,46,51,49,48,57,50,56,44,50,57,46,53,57,52,52,55,51,93,44,91,45,57,56,46,51,56,48,49,54,49,44,50,57,46,55,48,51,57,50,57,93,44,91,45,57,56,46,53,52,51,55,49,56,44,50,57,46,55,53,50,48,53,50,93,44,91,45,57,56,46,54,52,54,49,50,52,44,50,57,46,55,52,53,49,56,49,93,44,91,45,57,56,46,55,55,56,55,56,50,44,50,57,46,55,50,48,49,54,55,93,44,91,45,57,56,46,56,48,54,53,53,50,44,50,57,46,54,57,48,55,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,111,117,108,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,49,48,51,48,44,34,98,101,100,115,34,58,56,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,54,53,51,51,50,49,44,52,48,46,50,54,48,52,53,55,93,44,91,45,49,48,53,46,54,51,56,50,57,50,44,52,48,46,48,52,52,51,50,54,93,44,91,45,49,48,53,46,54,55,53,55,57,56,44,51,57,46,57,51,50,52,52,53,93,44,91,45,49,48,53,46,51,57,55,56,52,57,44,51,57,46,57,49,50,56,56,54,93,44,91,45,49,48,53,46,49,52,55,49,52,51,44,51,57,46,57,49,51,56,56,57,93,44,91,45,49,48,53,46,48,53,50,56,50,51,44,52,48,46,48,48,48,50,54,93,44,91,45,49,48,53,46,48,53,53,48,56,57,44,52,48,46,50,54,49,55,57,51,93,44,91,45,49,48,53,46,54,53,51,51,50,49,44,52,48,46,50,54,48,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,50,52,55,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,54,55,48,57,55,44,51,54,46,49,55,52,54,56,56,93,44,91,45,56,51,46,53,57,55,55,54,54,44,51,54,46,49,54,52,49,56,50,93,44,91,45,56,51,46,54,54,55,52,54,44,51,54,46,48,56,48,53,56,55,93,44,91,45,56,51,46,54,55,51,50,57,55,44,51,54,46,48,51,56,52,56,54,93,44,91,45,56,51,46,52,55,52,57,48,49,44,51,53,46,57,50,50,56,57,51,93,44,91,45,56,51,46,51,49,48,55,56,50,44,51,53,46,56,57,53,56,52,54,93,44,91,45,56,51,46,50,51,52,53,56,53,44,51,54,46,48,56,53,48,57,52,93,44,91,45,56,51,46,50,57,51,54,56,57,44,51,54,46,49,51,56,49,57,51,93,44,91,45,56,51,46,52,54,55,48,57,55,44,51,54,46,49,55,52,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,97,121,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,57,56,48,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,50,56,49,55,44,51,54,46,53,49,48,50,52,93,44,91,45,57,53,46,52,51,53,54,49,44,51,54,46,53,49,48,49,54,93,44,91,45,57,53,46,52,51,57,57,55,44,51,54,46,48,55,53,50,93,44,91,45,57,53,46,50,48,55,57,52,54,44,51,54,46,48,55,52,55,48,56,93,44,91,45,57,53,46,49,49,56,53,44,51,54,46,49,54,49,54,51,93,44,91,45,57,53,46,48,49,49,51,48,57,44,51,54,46,49,54,49,55,54,51,93,44,91,45,57,53,46,48,48,53,55,51,44,51,54,46,53,48,57,56,57,93,44,91,45,57,53,46,51,50,56,49,55,44,51,54,46,53,49,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,87,97,116,111,110,119,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,55,51,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,53,57,56,48,51,44,52,52,46,49,48,56,48,49,54,93,44,91,45,57,52,46,56,53,57,51,56,56,44,52,51,46,56,52,56,48,57,51,93,44,91,45,57,52,46,56,53,52,52,52,52,44,52,51,46,56,52,56,48,57,57,93,44,91,45,57,52,46,51,54,56,57,55,52,44,52,51,46,56,52,56,48,52,55,93,44,91,45,57,52,46,51,54,56,56,53,44,52,52,46,49,48,56,54,57,56,93,44,91,45,57,52,46,56,53,57,56,48,51,44,52,52,46,49,48,56,48,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,108,97,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,57,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,57,56,57,50,53,56,44,52,51,46,56,53,56,53,54,51,93,44,91,45,49,49,52,46,55,48,50,48,53,44,52,51,46,56,48,53,52,49,51,93,44,91,45,49,49,52,46,54,56,51,49,52,44,52,51,46,53,57,51,51,54,55,93,44,91,45,49,49,52,46,53,49,50,52,51,56,44,52,51,46,52,54,48,52,53,52,93,44,91,45,49,49,52,46,53,51,52,52,56,56,44,52,51,46,51,51,51,51,56,51,93,44,91,45,49,49,52,46,51,57,52,54,48,54,44,52,51,46,51,50,54,52,54,55,93,44,91,45,49,49,52,46,51,55,52,57,54,50,44,52,51,46,49,57,57,54,52,93,44,91,45,49,49,51,46,55,49,52,54,52,50,44,52,51,46,49,57,57,55,56,51,93,44,91,45,49,49,51,46,52,49,51,56,54,55,44,52,51,46,49,57,57,56,53,57,93,44,91,45,49,49,51,46,52,49,51,49,51,56,44,52,50,46,56,52,57,49,54,57,93,44,91,45,49,49,51,46,52,55,50,49,53,53,44,52,50,46,56,52,57,50,48,49,93,44,91,45,49,49,51,46,52,55,50,49,55,55,44,52,50,46,54,54,57,51,53,50,93,44,91,45,49,49,51,46,51,55,53,48,54,50,44,52,50,46,54,56,55,56,51,50,93,44,91,45,49,49,51,46,50,51,54,57,54,56,44,52,50,46,54,50,53,50,53,52,93,44,91,45,49,49,51,46,50,52,51,52,55,56,44,52,51,46,49,49,48,57,52,54,93,44,91,45,49,49,51,46,48,48,55,55,49,50,44,52,51,46,49,49,48,57,51,51,93,44,91,45,49,49,51,46,48,48,55,51,49,56,44,52,51,46,50,56,52,55,55,56,93,44,91,45,49,49,51,46,51,54,49,57,53,56,44,52,51,46,50,56,52,54,55,56,93,44,91,45,49,49,51,46,51,54,49,57,49,44,52,51,46,51,54,55,49,54,93,44,91,45,49,49,51,46,54,51,53,50,51,44,52,51,46,51,54,55,53,52,54,93,44,91,45,49,49,51,46,54,51,52,51,51,53,44,52,51,46,52,57,55,51,48,56,93,44,91,45,49,49,51,46,55,48,49,49,53,51,44,52,51,46,53,56,52,53,53,51,93,44,91,45,49,49,51,46,55,57,56,52,52,49,44,52,51,46,53,54,57,50,49,55,93,44,91,45,49,49,51,46,57,56,54,52,57,52,44,52,51,46,55,50,53,51,57,93,44,91,45,49,49,52,46,49,51,50,55,51,50,44,52,51,46,55,53,48,55,53,55,93,44,91,45,49,49,52,46,50,57,50,52,56,52,44,52,51,46,56,56,55,48,54,50,93,44,91,45,49,49,52,46,57,55,49,51,53,49,44,52,51,46,57,51,56,51,48,56,93,44,91,45,49,49,52,46,57,56,57,50,53,56,44,52,51,46,56,53,56,53,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,32,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,52,54,55,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,49,51,49,49,48,57,44,51,48,46,52,48,51,48,53,55,93,44,91,45,57,51,46,48,51,48,57,53,53,44,51,48,46,51,55,57,51,57,93,44,91,45,57,50,46,57,57,54,51,55,49,44,51,48,46,48,51,56,52,55,57,93,44,91,45,57,50,46,55,51,56,54,48,52,44,51,48,46,48,51,55,51,50,51,93,44,91,45,57,50,46,54,50,53,52,56,52,44,51,48,46,48,57,50,51,51,93,44,91,45,57,50,46,54,51,49,57,56,55,44,51,48,46,52,56,49,49,52,55,93,44,91,45,57,50,46,54,51,48,51,52,55,44,51,48,46,52,56,55,56,55,51,93,44,91,45,57,50,46,55,55,53,53,53,52,44,51,48,46,52,51,55,54,53,54,93,44,91,45,57,51,46,49,51,49,49,53,53,44,51,48,46,52,50,51,54,49,50,93,44,91,45,57,51,46,49,51,49,49,48,57,44,51,48,46,52,48,51,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,83,117,108,108,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,55,52,50,53,50,44,52,52,46,56,57,55,53,48,51,93,44,91,45,49,48,48,46,52,48,52,55,53,51,44,52,52,46,56,57,55,54,57,53,93,44,91,45,49,48,48,46,53,52,51,52,56,52,44,52,52,46,55,54,49,48,56,55,93,44,91,45,49,48,48,46,55,49,55,54,52,52,44,52,52,46,55,55,48,57,51,93,44,91,45,49,48,48,46,54,49,51,56,48,53,44,52,52,46,55,48,55,49,51,53,93,44,91,45,49,48,48,46,54,52,48,48,54,49,44,52,52,46,53,56,51,55,50,51,93,44,91,45,49,48,48,46,53,50,54,52,57,56,44,52,52,46,53,52,55,52,50,50,93,44,91,45,57,57,46,54,55,54,51,57,56,44,52,52,46,53,52,56,49,49,49,93,44,91,45,57,57,46,54,55,52,50,53,50,44,52,52,46,56,57,55,53,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,101,110,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,51,52,49,55,44,34,98,101,100,115,34,58,50,54,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,53,51,50,52,54,44,51,57,46,55,57,49,48,54,51,93,44,91,45,49,48,53,46,48,53,51,50,53,54,44,51,57,46,54,54,55,55,56,53,93,44,91,45,49,48,53,46,48,57,54,57,48,57,44,51,57,46,54,49,52,52,50,51,93,44,91,45,49,48,53,46,48,53,51,52,51,55,44,51,57,46,54,50,48,57,56,52,93,44,91,45,49,48,53,46,48,53,51,52,51,57,44,51,57,46,54,50,52,51,56,55,93,44,91,45,49,48,53,46,48,53,51,51,51,44,51,57,46,54,50,55,57,56,57,93,44,91,45,49,48,53,46,48,53,51,52,53,55,44,51,57,46,54,50,57,53,50,54,93,44,91,45,49,48,53,46,48,53,51,52,49,49,44,51,57,46,54,51,49,53,56,54,93,44,91,45,49,48,52,46,56,56,52,54,52,54,44,51,57,46,55,52,48,49,53,54,93,44,91,45,49,48,53,46,48,53,51,50,52,54,44,51,57,46,55,57,49,48,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,49,56,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,48,55,48,55,52,44,51,52,46,52,49,56,51,57,93,44,91,45,57,54,46,49,52,53,52,50,51,44,51,52,46,52,49,56,51,49,51,93,44,91,45,57,54,46,48,57,50,48,49,50,44,51,52,46,53,48,54,48,53,57,93,44,91,45,57,54,46,48,57,50,48,52,51,44,51,52,46,54,56,48,53,53,54,93,44,91,45,57,54,46,48,57,50,48,48,49,44,51,52,46,55,54,55,52,55,57,93,44,91,45,57,54,46,52,48,54,52,56,51,44,51,52,46,55,54,55,51,50,56,93,44,91,45,57,54,46,53,49,50,49,55,49,44,51,52,46,54,56,48,48,54,53,93,44,91,45,57,54,46,53,49,51,55,56,55,44,51,52,46,53,48,53,51,57,54,93,44,91,45,57,54,46,52,48,55,48,55,52,44,51,52,46,52,49,56,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,56,49,57,52,44,52,53,46,55,56,54,57,56,50,93,44,91,45,49,48,52,46,57,56,55,51,49,56,44,52,53,46,51,53,50,48,52,93,44,91,45,49,48,53,46,48,51,56,50,48,53,44,52,53,46,51,53,50,48,51,53,93,44,91,45,49,48,53,46,48,51,56,50,52,57,44,52,53,46,48,48,48,49,48,54,93,44,91,45,49,48,52,46,48,53,55,56,55,57,44,52,52,46,57,57,55,54,48,53,93,44,91,45,49,48,52,46,48,52,48,48,48,52,44,52,53,46,50,49,50,56,57,49,93,44,91,45,49,48,52,46,48,52,52,49,57,52,44,52,53,46,56,56,49,57,55,53,93,44,91,45,49,48,52,46,49,51,52,56,52,50,44,52,53,46,57,54,56,56,51,51,93,44,91,45,49,48,52,46,51,57,48,56,55,54,44,52,53,46,57,55,48,51,54,51,93,44,91,45,49,48,52,46,51,57,48,55,52,52,44,52,54,46,48,53,52,56,50,54,93,44,91,45,49,48,52,46,53,49,54,49,50,54,44,52,54,46,49,51,54,49,57,54,93,44,91,45,49,48,52,46,56,56,53,52,57,53,44,52,54,46,49,51,54,53,57,53,93,44,91,45,49,48,52,46,57,51,57,50,48,53,44,52,54,46,49,51,54,53,55,53,93,44,91,45,49,48,52,46,57,51,57,50,56,57,44,52,53,46,55,56,54,57,54,52,93,44,91,45,49,48,52,46,57,56,49,57,52,44,52,53,46,55,56,54,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,54,49,34,44,34,78,65,77,69,34,58,34,85,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,52,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,51,48,49,50,49,50,44,51,49,46,48,56,54,50,49,50,93,44,91,45,49,48,49,46,55,55,54,49,57,49,44,51,49,46,48,55,57,55,56,52,93,44,91,45,49,48,49,46,55,55,53,56,48,50,44,51,49,46,54,53,49,51,49,57,93,44,91,45,49,48,50,46,50,56,55,51,52,53,44,51,49,46,54,53,49,50,55,54,93,44,91,45,49,48,50,46,51,49,56,48,53,44,51,49,46,54,53,49,51,50,55,93,44,91,45,49,48,50,46,51,48,49,50,49,50,44,51,49,46,48,56,54,50,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,105,98,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,57,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,52,51,54,57,49,44,51,56,46,52,49,52,51,56,55,93,44,91,45,56,55,46,56,53,49,49,51,44,51,56,46,50,55,53,49,50,93,44,91,45,56,55,46,57,56,55,57,49,49,44,51,56,46,50,53,54,57,53,55,93,44,91,45,56,55,46,57,56,51,55,51,50,44,51,56,46,50,51,48,51,53,52,93,44,91,45,56,55,46,55,57,57,49,54,57,44,51,56,46,50,50,56,53,56,93,44,91,45,56,55,46,54,56,56,51,55,52,44,51,56,46,49,54,56,52,49,57,93,44,91,45,56,55,46,52,54,55,50,56,52,44,51,56,46,49,54,53,52,48,51,93,44,91,45,56,55,46,51,49,54,56,57,51,44,51,56,46,50,52,54,48,55,55,93,44,91,45,56,55,46,51,49,53,57,51,44,51,56,46,51,55,53,48,52,56,93,44,91,45,56,55,46,52,48,55,53,56,51,44,51,56,46,51,55,53,53,48,49,93,44,91,45,56,55,46,52,54,50,56,57,50,44,51,56,46,53,51,51,53,49,57,93,44,91,45,56,55,46,55,52,51,54,57,49,44,51,56,46,52,49,52,51,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,75,105,109,98,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,55,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,51,55,55,54,50,44,52,49,46,51,57,52,54,51,51,93,44,91,45,49,48,52,46,48,53,50,50,56,55,44,52,49,46,51,57,51,50,49,52,93,44,91,45,49,48,52,46,48,53,51,50,52,57,44,52,49,46,48,48,49,52,48,54,93,44,91,45,49,48,51,46,53,55,51,55,55,52,44,52,49,46,48,48,49,55,49,54,93,44,91,45,49,48,51,46,51,56,50,52,57,50,44,52,49,46,48,48,50,50,53,50,93,44,91,45,49,48,51,46,51,55,55,54,50,44,52,49,46,51,57,52,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,75,101,110,100,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,54,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,54,49,57,53,50,44,52,49,46,55,50,52,54,53,50,93,44,91,45,56,56,46,54,48,49,57,51,51,44,52,49,46,55,49,57,53,54,51,93,44,91,45,56,56,46,54,48,50,50,52,44,52,49,46,54,51,49,51,56,57,93,44,91,45,56,56,46,53,57,53,57,54,49,44,52,49,46,52,53,55,49,50,57,93,44,91,45,56,56,46,50,53,50,50,51,49,44,52,49,46,52,54,51,48,54,54,93,44,91,45,56,56,46,50,54,49,50,55,53,44,52,49,46,55,50,52,54,53,54,93,44,91,45,56,56,46,50,54,49,57,53,50,44,52,49,46,55,50,52,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,68,105,115,116,114,105,99,116,32,111,102,32,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,68,105,115,116,114,105,99,116,32,111,102,32,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,68,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,52,57,56,44,34,98,101,100,115,34,58,52,49,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,48,48,50,52,51,54,44,51,56,46,57,54,53,54,55,51,93,44,91,45,55,55,46,49,49,57,55,53,57,44,51,56,46,57,51,52,51,52,51,93,44,91,45,55,55,46,48,52,56,48,50,44,51,56,46,56,52,49,50,54,49,93,44,91,45,55,55,46,48,51,57,48,48,54,44,51,56,46,55,57,49,54,52,53,93,44,91,45,55,54,46,57,48,57,51,57,51,44,51,56,46,56,57,50,56,53,50,93,44,91,45,55,55,46,48,48,50,52,51,54,44,51,56,46,57,54,53,54,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,77,111,110,116,114,111,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,54,56,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,51,55,56,54,57,56,44,51,56,46,54,54,56,48,57,55,93,44,91,45,49,48,56,46,51,55,57,49,51,54,44,51,56,46,52,57,57,57,56,55,93,44,91,45,49,48,57,46,48,54,48,49,49,57,44,51,56,46,52,57,57,57,56,57,93,44,91,45,49,48,57,46,48,52,50,53,56,51,44,51,56,46,49,53,51,48,50,56,93,44,91,45,49,48,55,46,57,54,53,55,56,57,44,51,56,46,49,53,50,51,50,56,93,44,91,45,49,48,55,46,57,51,55,53,56,56,44,51,56,46,50,49,56,57,57,50,93,44,91,45,49,48,56,46,48,56,54,54,48,52,44,51,56,46,50,53,53,50,48,50,93,44,91,45,49,48,56,46,49,51,50,51,56,44,51,56,46,51,51,49,53,55,51,93,44,91,45,49,48,55,46,54,51,53,54,57,55,44,51,56,46,51,51,50,49,52,56,93,44,91,45,49,48,55,46,54,51,53,48,52,44,51,56,46,51,48,49,56,57,54,93,44,91,45,49,48,55,46,53,48,48,48,50,44,51,56,46,51,48,49,57,50,54,93,44,91,45,49,48,55,46,53,48,48,54,53,53,44,51,56,46,54,54,56,53,53,51,93,44,91,45,49,48,56,46,51,55,56,54,57,56,44,51,56,46,54,54,56,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,87,114,105,103,104,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,55,52,53,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,54,48,56,50,49,44,52,53,46,50,56,51,57,52,49,93,44,91,45,57,52,46,50,53,54,48,55,52,44,52,52,46,57,55,57,52,54,53,93,44,91,45,57,52,46,48,49,50,50,51,54,44,52,52,46,57,55,56,55,49,50,93,44,91,45,57,51,46,55,54,55,51,54,55,44,52,52,46,57,55,55,57,54,52,93,44,91,45,57,51,46,55,54,54,56,48,56,44,52,53,46,48,53,55,51,49,50,93,44,91,45,57,51,46,54,53,56,57,49,55,44,52,53,46,49,57,51,53,53,49,93,44,91,45,57,51,46,53,50,49,54,53,51,44,52,53,46,50,52,54,54,49,56,93,44,91,45,57,51,46,53,55,57,51,57,44,52,53,46,50,57,50,49,50,50,93,44,91,45,57,51,46,55,53,54,54,49,44,52,53,46,50,57,52,55,50,49,93,44,91,45,57,52,46,48,52,55,51,50,55,44,52,53,46,52,50,50,56,54,49,93,44,91,45,57,52,46,49,49,54,55,54,53,44,52,53,46,51,50,56,48,49,57,93,44,91,45,57,52,46,50,54,48,56,50,49,44,52,53,46,50,56,51,57,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,75,101,110,111,115,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,51,51,48,44,34,98,101,100,115,34,58,51,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,52,51,56,57,57,44,52,50,46,54,54,51,55,50,57,93,44,91,45,56,56,46,49,56,56,51,48,54,44,52,50,46,54,54,57,55,48,57,93,44,91,45,56,56,46,51,48,53,56,57,49,44,52,50,46,54,49,48,56,49,55,93,44,91,45,56,56,46,51,48,52,54,57,50,44,52,50,46,52,57,52,54,49,56,93,44,91,45,56,56,46,49,57,57,51,56,57,44,52,50,46,52,57,53,49,51,51,93,44,91,45,56,55,46,48,49,57,57,51,53,44,52,50,46,52,57,51,52,57,56,93,44,91,45,56,55,46,48,52,51,56,57,57,44,52,50,46,54,54,51,55,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,69,97,103,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,51,53,55,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,48,51,51,57,54,56,44,51,57,46,57,49,56,57,49,51,93,44,91,45,49,48,55,46,49,49,51,54,55,50,44,51,57,46,57,49,57,49,49,50,93,44,91,45,49,48,55,46,49,49,51,52,52,54,44,51,57,46,51,54,54,48,54,54,93,44,91,45,49,48,54,46,52,50,54,52,56,55,44,51,57,46,51,54,49,56,55,49,93,44,91,45,49,48,54,46,50,48,54,55,51,50,44,51,57,46,51,55,57,54,51,54,93,44,91,45,49,48,54,46,50,52,56,50,57,53,44,51,57,46,53,52,52,50,53,49,93,44,91,45,49,48,54,46,49,55,54,49,49,53,44,51,57,46,54,49,52,50,50,49,93,44,91,45,49,48,54,46,51,56,53,52,55,56,44,51,57,46,55,54,55,49,54,52,93,44,91,45,49,48,54,46,52,51,52,53,48,56,44,51,57,46,57,50,52,57,49,52,93,44,91,45,49,48,54,46,54,50,54,53,54,57,44,51,57,46,57,50,52,55,56,53,93,44,91,45,49,48,55,46,48,51,51,57,54,56,44,51,57,46,57,49,56,57,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,83,97,110,32,70,114,97,110,99,105,115,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,48,48,52,52,44,34,98,101,100,115,34,58,51,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,50,50,46,54,49,50,50,56,53,44,51,55,46,56,49,53,50,50,52,93,44,91,45,49,50,50,46,53,55,53,49,56,57,44,51,55,46,55,48,54,55,50,49,93,44,91,45,49,50,50,46,50,56,49,55,56,44,51,55,46,55,48,56,50,51,93,44,91,45,49,50,50,46,51,55,51,55,56,50,44,51,55,46,56,56,51,55,50,53,93,44,91,45,49,50,50,46,52,51,50,50,56,51,44,51,55,46,57,50,57,56,50,52,93,44,91,45,49,50,50,46,52,49,56,54,55,51,44,51,55,46,56,53,50,53,48,53,93,44,91,45,49,50,50,46,54,49,50,50,56,53,44,51,55,46,56,49,53,50,50,52,93,93,93,44,91,91,91,45,49,50,51,46,49,55,51,56,50,53,44,51,55,46,55,55,53,55,50,55,93,44,91,45,49,50,51,46,48,48,48,57,49,50,44,51,55,46,54,51,57,57,51,93,44,91,45,49,50,50,46,57,52,57,57,56,53,44,51,55,46,55,51,50,49,56,55,93,44,91,45,49,50,51,46,48,55,48,52,57,52,44,51,55,46,56,49,51,56,51,93,44,91,45,49,50,51,46,49,55,51,56,50,53,44,51,55,46,55,55,53,55,50,55,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,83,97,110,32,77,105,103,117,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,49,57,57,50,44,51,55,46,56,56,49,48,56,51,93,44,91,45,49,48,56,46,56,49,54,55,49,44,51,55,46,56,57,53,53,51,56,93,44,91,45,49,48,56,46,50,53,54,52,57,56,44,51,55,46,56,57,52,54,48,55,93,44,91,45,49,48,56,46,50,48,57,48,57,51,44,51,55,46,56,50,48,57,51,54,93,44,91,45,49,48,55,46,57,56,57,50,48,56,44,51,55,46,56,53,54,54,52,93,44,91,45,49,48,55,46,56,54,48,56,52,53,44,51,55,46,55,55,53,53,49,55,93,44,91,45,49,48,55,46,55,51,56,50,56,51,44,51,55,46,57,48,53,52,51,50,93,44,91,45,49,48,55,46,55,57,53,52,54,57,44,51,55,46,57,56,56,53,50,93,44,91,45,49,48,55,46,57,48,48,49,57,51,44,51,56,46,48,50,54,50,52,57,93,44,91,45,49,48,55,46,57,54,53,55,56,57,44,51,56,46,49,53,50,51,50,56,93,44,91,45,49,48,57,46,48,52,50,53,56,51,44,51,56,46,49,53,51,48,50,56,93,44,91,45,49,48,57,46,48,52,49,57,57,50,44,51,55,46,56,56,49,48,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,48,34,44,34,78,65,77,69,34,58,34,65,110,99,104,111,114,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,54,49,49,50,44,34,98,101,100,115,34,58,49,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,56,46,52,54,50,52,55,49,44,54,49,46,52,50,54,50,54,55,93,44,91,45,49,52,57,46,49,56,48,48,54,50,44,54,49,46,52,50,54,50,53,93,44,91,45,49,52,57,46,51,53,57,52,52,44,54,49,46,52,56,52,48,50,53,93,44,91,45,49,52,57,46,55,52,56,51,54,57,44,54,49,46,51,57,55,51,55,49,93,44,91,45,49,52,57,46,57,56,55,52,57,53,44,54,49,46,50,50,52,48,54,52,93,44,91,45,49,53,48,46,52,50,52,49,52,56,44,54,49,46,49,54,54,51,48,56,93,44,91,45,49,53,48,46,50,52,55,55,52,54,44,54,49,46,48,55,57,54,51,55,93,44,91,45,49,53,48,46,48,54,57,50,51,56,44,54,49,46,48,55,57,54,51,54,93,44,91,45,49,52,57,46,51,53,57,51,57,57,44,54,48,46,57,48,54,51,51,93,44,91,45,49,52,57,46,48,51,52,48,56,44,54,48,46,56,52,56,53,51,52,93,44,91,45,49,52,57,46,48,51,55,55,52,49,44,54,48,46,55,51,50,57,56,55,93,44,91,45,49,52,56,46,55,52,53,54,49,56,44,54,48,46,55,51,51,48,48,55,93,44,91,45,49,52,56,46,55,51,56,51,54,51,44,54,48,46,56,52,56,53,52,54,93,44,91,45,49,52,56,46,52,55,50,48,54,53,44,54,48,46,56,52,56,53,50,93,44,91,45,49,52,56,46,52,54,50,52,55,49,44,54,49,46,52,50,54,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,74,111,104,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,53,48,51,44,34,98,101,100,115,34,58,51,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,50,48,49,56,53,44,51,48,46,50,53,50,57,50,93,44,91,45,56,49,46,52,51,54,57,50,57,44,51,48,46,50,53,50,51,51,53,93,44,91,45,56,49,46,52,51,51,55,51,55,44,51,48,46,49,48,54,48,50,56,93,44,91,45,56,49,46,54,56,48,50,49,53,44,51,48,46,49,50,49,50,52,93,44,91,45,56,49,46,54,56,56,56,55,54,44,51,48,46,48,50,56,53,54,54,93,44,91,45,56,49,46,54,49,48,49,52,54,44,50,57,46,57,55,48,50,51,53,93,44,91,45,56,49,46,53,56,49,50,48,55,44,50,57,46,56,52,48,49,55,54,93,44,91,45,56,49,46,53,50,53,50,51,44,50,57,46,55,53,57,52,57,55,93,44,91,45,56,49,46,53,50,51,54,54,44,50,57,46,54,50,50,52,51,50,93,44,91,45,56,49,46,51,50,52,48,53,57,44,50,57,46,54,50,53,54,49,93,44,91,45,56,49,46,49,53,48,56,49,55,44,50,57,46,54,55,49,48,56,55,93,44,91,45,56,49,46,50,48,53,49,55,55,44,50,57,46,56,50,50,52,51,51,93,44,91,45,56,49,46,51,50,48,49,56,53,44,51,48,46,50,53,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,104,111,99,116,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,50,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,56,49,48,57,50,44,51,51,46,52,54,48,51,48,55,93,44,91,45,56,57,46,52,53,52,48,53,44,51,51,46,52,51,51,50,93,44,91,45,56,57,46,52,53,51,56,48,56,44,51,51,46,50,56,53,57,52,50,93,44,91,45,56,57,46,51,49,54,52,48,56,44,51,51,46,50,56,53,53,53,54,93,44,91,45,56,57,46,51,49,55,56,53,53,44,51,51,46,49,48,56,56,55,49,93,44,91,45,56,57,46,50,49,51,57,50,49,44,51,51,46,49,48,57,52,48,50,93,44,91,45,56,57,46,50,49,51,52,50,50,44,51,51,46,49,57,55,53,52,51,93,44,91,45,56,57,46,49,48,56,57,44,51,51,46,49,57,56,48,53,57,93,44,91,45,56,57,46,48,56,56,50,53,53,44,51,51,46,50,56,54,48,48,51,93,44,91,45,56,57,46,48,56,56,52,52,54,44,51,51,46,53,51,51,50,48,50,93,44,91,45,56,57,46,50,50,50,48,51,57,44,51,51,46,53,50,55,50,52,53,93,44,91,45,56,57,46,51,56,49,48,57,50,44,51,51,46,52,54,48,51,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,71,114,117,110,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,54,52,48,50,49,44,52,48,46,49,51,50,57,48,57,93,44,91,45,57,51,46,55,54,49,57,55,51,44,51,57,46,57,53,57,53,53,50,93,44,91,45,57,51,46,51,54,49,57,53,55,44,51,57,46,57,54,55,54,48,54,93,44,91,45,57,51,46,51,54,49,57,53,49,44,52,48,46,48,51,51,48,57,56,93,44,91,45,57,51,46,51,54,55,50,49,52,44,52,48,46,50,54,54,51,49,52,93,44,91,45,57,51,46,55,54,51,51,50,52,44,52,48,46,50,54,51,57,56,56,93,44,91,45,57,51,46,55,54,52,48,50,49,44,52,48,46,49,51,50,57,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,52,51,53,48,55,44,52,52,46,49,54,55,48,56,56,93,44,91,45,56,54,46,48,51,55,56,56,52,44,52,51,46,56,49,53,54,49,49,93,44,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,44,91,45,56,53,46,53,54,52,53,53,52,44,52,52,46,49,54,52,56,54,49,93,44,91,45,56,53,46,56,50,49,49,56,54,44,52,52,46,49,54,52,49,57,55,93,44,91,45,56,54,46,48,52,51,53,48,55,44,52,52,46,49,54,55,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,79,116,116,97,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,48,51,52,44,34,98,101,100,115,34,58,51,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,48,54,54,50,44,52,51,46,50,48,53,49,54,55,93,44,91,45,56,53,46,57,48,55,52,51,53,44,52,51,46,49,49,56,57,49,49,93,44,91,45,56,55,46,49,48,55,54,54,57,44,52,51,46,49,49,56,50,52,51,93,44,91,45,56,55,46,48,54,57,52,49,57,44,52,50,46,56,52,50,49,52,54,93,44,91,45,56,55,46,48,53,56,55,49,54,44,52,50,46,55,54,53,50,48,50,93,44,91,45,56,53,46,55,56,50,52,57,56,44,52,50,46,55,54,56,50,93,44,91,45,56,53,46,55,57,48,54,54,50,44,52,51,46,50,48,53,49,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,50,51,55,49,57,44,34,98,101,100,115,34,58,49,56,54,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,51,56,52,52,57,44,52,50,46,49,53,52,50,52,57,93,44,91,45,56,56,46,50,54,50,56,55,53,44,52,49,46,57,56,54,51,55,56,93,44,91,45,56,55,46,57,50,48,52,55,54,44,52,49,46,57,57,51,56,56,54,93,44,91,45,56,55,46,57,49,52,50,54,52,44,52,49,46,55,49,54,53,57,56,93,44,91,45,56,56,46,48,50,56,57,55,51,44,52,49,46,54,56,53,50,52,50,93,44,91,45,56,55,46,55,57,50,55,57,51,44,52,49,46,53,53,56,53,52,93,44,91,45,56,55,46,55,57,48,51,48,51,44,52,49,46,52,54,57,56,52,54,93,44,91,45,56,55,46,53,50,53,55,48,53,44,52,49,46,52,55,48,50,56,51,93,44,91,45,56,55,46,53,50,51,54,54,49,44,52,49,46,55,53,57,57,48,55,93,44,91,45,56,55,46,50,50,49,44,52,49,46,55,54,48,56,56,57,93,44,91,45,56,55,46,50,48,55,55,55,52,44,52,49,46,55,54,48,57,53,54,93,44,91,45,56,55,46,49,49,49,49,54,50,44,52,50,46,49,52,57,52,48,57,93,44,91,45,56,56,46,49,57,57,53,56,52,44,52,50,46,49,53,52,50,54,93,44,91,45,56,56,46,50,51,56,52,52,57,44,52,50,46,49,53,52,50,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,71,97,108,108,97,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,55,52,53,51,44,51,55,46,57,48,55,54,55,56,93,44,91,45,56,56,46,51,55,53,52,51,52,44,51,55,46,53,57,57,53,57,53,93,44,91,45,56,56,46,49,51,51,52,51,52,44,51,55,46,53,55,52,51,51,56,93,44,91,45,56,56,46,49,54,48,51,56,57,44,51,55,46,54,53,54,49,51,49,93,44,91,45,56,56,46,48,50,56,48,49,54,44,51,55,46,55,57,57,49,56,56,93,44,91,45,56,56,46,48,57,51,48,52,57,44,51,55,46,56,57,49,54,48,52,93,44,91,45,56,56,46,51,55,52,53,50,49,44,51,55,46,57,48,56,51,57,49,93,44,91,45,56,56,46,51,55,52,53,51,44,51,55,46,57,48,55,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,50,54,52,44,34,98,101,100,115,34,58,52,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,52,54,51,51,55,44,51,52,46,52,48,57,54,55,54,93,44,91,45,56,50,46,51,51,52,50,51,52,44,51,52,46,51,52,50,54,51,93,44,91,45,56,50,46,50,52,55,55,52,55,44,51,52,46,50,49,57,54,49,57,93,44,91,45,56,50,46,51,50,54,57,52,55,44,51,52,46,48,54,52,49,50,93,44,91,45,56,50,46,50,48,48,50,56,54,44,51,51,46,57,55,56,53,57,55,93,44,91,45,56,50,46,48,52,54,57,55,52,44,51,51,46,57,53,51,50,49,93,44,91,45,56,50,46,48,48,56,50,57,56,44,51,51,46,57,54,49,54,52,54,93,44,91,45,56,49,46,56,55,48,48,56,52,44,51,52,46,49,51,53,51,53,55,93,44,91,45,56,49,46,57,52,53,48,49,57,44,51,52,46,50,48,51,49,52,56,93,44,91,45,56,50,46,49,54,57,50,57,55,44,51,52,46,51,51,48,55,52,54,93,44,91,45,56,50,46,50,52,54,51,51,55,44,51,52,46,52,48,57,54,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,54,51,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,48,48,55,51,56,44,51,56,46,55,51,56,56,48,56,93,44,91,45,57,53,46,53,48,56,50,54,55,44,51,56,46,52,51,51,57,51,51,93,44,91,45,57,53,46,53,48,56,51,50,56,44,51,56,46,51,57,48,50,55,56,93,44,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,44,91,45,57,53,46,48,53,54,52,49,50,44,51,56,46,55,51,56,53,56,55,93,44,91,45,57,53,46,53,48,48,55,51,56,44,51,56,46,55,51,56,56,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,56,48,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,52,48,49,50,50,44,52,55,46,49,53,48,52,55,53,93,44,91,45,57,54,46,56,51,52,56,51,57,44,52,55,46,48,48,55,50,53,52,93,44,91,45,57,54,46,55,54,49,54,57,51,44,52,54,46,57,51,52,53,53,56,93,44,91,45,57,54,46,55,57,56,49,50,56,44,52,54,46,54,51,48,51,50,54,93,44,91,45,57,54,46,55,56,52,51,56,49,44,52,54,46,54,51,48,53,48,52,93,44,91,45,57,54,46,50,56,48,57,55,55,44,52,54,46,54,51,48,55,54,53,93,44,91,45,57,54,46,49,55,52,53,56,55,44,52,54,46,55,49,55,56,53,52,93,44,91,45,57,54,46,49,57,52,54,55,49,44,52,55,46,49,53,49,49,52,57,93,44,91,45,57,54,46,56,52,48,49,50,50,44,52,55,46,49,53,48,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,72,97,121,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,53,54,48,51,51,44,51,53,46,56,49,55,54,51,53,93,44,91,45,56,57,46,52,48,49,56,48,53,44,51,53,46,56,50,50,54,53,55,93,44,91,45,56,57,46,53,48,50,49,49,56,44,51,53,46,53,56,48,54,50,49,93,44,91,45,56,57,46,52,55,52,49,55,49,44,51,53,46,52,48,51,48,51,57,93,44,91,45,56,57,46,49,56,51,57,52,52,44,51,53,46,51,57,55,49,50,54,93,44,91,45,56,57,46,48,55,56,56,55,54,44,51,53,46,52,51,49,52,50,56,93,44,91,45,56,57,46,48,54,57,53,52,52,44,51,53,46,54,57,50,54,55,57,93,44,91,45,56,57,46,50,55,49,50,50,52,44,51,53,46,55,53,52,57,50,50,93,44,91,45,56,57,46,51,53,54,48,51,51,44,51,53,46,56,49,55,54,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,111,120,32,69,108,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,48,48,49,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,56,53,52,52,51,44,52,49,46,52,50,54,51,55,52,93,44,91,45,49,49,49,46,57,49,54,53,51,52,44,52,49,46,53,51,56,53,53,52,93,44,91,45,49,49,49,46,57,57,54,54,48,54,44,52,49,46,53,53,55,53,55,50,93,44,91,45,49,49,50,46,48,53,49,55,51,55,44,52,49,46,54,57,57,53,53,50,93,44,91,45,49,49,50,46,48,51,48,52,56,51,44,52,49,46,56,49,48,48,52,55,93,44,91,45,49,49,50,46,49,53,57,49,56,52,44,52,49,46,57,57,56,51,56,50,93,44,91,45,49,49,51,46,48,48,48,48,52,49,44,52,49,46,57,57,56,50,48,52,93,44,91,45,49,49,51,46,56,49,52,56,56,52,44,52,49,46,57,56,56,54,53,52,93,44,91,45,49,49,52,46,48,52,49,52,55,55,44,52,49,46,57,57,51,56,55,51,93,44,91,45,49,49,52,46,48,52,50,48,50,57,44,52,48,46,57,57,57,56,57,54,93,44,91,45,49,49,50,46,55,57,57,51,53,57,44,52,48,46,57,57,57,57,51,57,93,44,91,45,49,49,50,46,52,57,51,53,49,53,44,52,49,46,48,55,54,56,56,56,93,44,91,45,49,49,50,46,50,51,56,48,54,53,44,52,49,46,51,51,54,53,53,50,93,44,91,45,49,49,50,46,48,50,56,54,55,50,44,52,49,46,51,51,54,53,49,50,93,44,91,45,49,49,49,46,56,56,53,52,52,51,44,52,49,46,52,50,54,51,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,84,105,112,112,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,49,55,49,50,55,44,51,52,46,57,57,52,57,55,49,93,44,91,45,56,57,46,48,49,55,53,53,49,44,51,52,46,56,53,56,55,50,51,93,44,91,45,56,57,46,48,56,56,48,54,53,44,51,52,46,56,49,53,51,48,55,93,44,91,45,56,57,46,48,56,56,52,56,56,44,51,52,46,53,57,56,50,52,55,93,44,91,45,56,56,46,55,51,53,52,52,44,51,52,46,53,57,54,52,56,51,93,44,91,45,56,56,46,55,49,56,53,48,56,44,51,52,46,55,53,54,55,56,49,93,44,91,45,56,56,46,56,50,51,52,55,51,44,51,52,46,56,53,56,54,50,57,93,44,91,45,56,56,46,56,50,51,48,53,49,44,51,52,46,57,57,53,50,50,49,93,44,91,45,56,57,46,48,49,55,49,50,55,44,51,52,46,57,57,52,57,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,52,53,44,34,98,101,100,115,34,58,49,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,51,51,56,48,51,44,52,48,46,48,51,51,52,48,57,93,44,91,45,56,48,46,55,53,54,49,49,51,44,51,57,46,57,49,51,52,48,50,93,44,91,45,56,48,46,56,50,49,50,55,57,44,51,57,46,56,52,57,57,56,50,93,44,91,45,56,48,46,56,51,51,53,49,51,44,51,57,46,55,50,48,56,49,50,93,44,91,45,56,48,46,53,49,57,51,52,50,44,51,57,46,55,50,49,52,48,51,93,44,91,45,56,48,46,53,49,57,48,57,49,44,51,57,46,57,54,50,50,93,44,91,45,56,48,46,53,49,57,49,50,44,52,48,46,48,49,54,52,49,93,44,91,45,56,48,46,55,51,51,56,48,51,44,52,48,46,48,51,51,52,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,49,56,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,52,55,50,53,52,44,51,57,46,48,57,53,51,55,57,93,44,91,45,56,49,46,55,56,49,56,50,44,51,56,46,57,54,52,57,51,53,93,44,91,45,56,49,46,57,48,56,54,52,53,44,51,56,46,56,55,56,52,54,93,44,91,45,56,49,46,55,55,50,56,52,51,44,51,56,46,54,56,48,56,52,51,93,44,91,45,56,49,46,54,57,54,51,52,56,44,51,56,46,54,50,54,52,50,55,93,44,91,45,56,49,46,54,51,50,56,51,54,44,51,56,46,53,53,52,51,55,93,44,91,45,56,49,46,53,50,50,49,54,54,44,51,56,46,54,49,50,55,52,54,93,44,91,45,56,49,46,53,52,54,54,51,49,44,51,56,46,54,55,50,51,56,55,93,44,91,45,56,49,46,53,48,50,54,50,56,44,51,56,46,57,49,55,57,50,50,93,44,91,45,56,49,46,53,56,49,52,52,55,44,51,57,46,48,50,54,49,55,57,93,44,91,45,56,49,46,55,52,55,50,53,52,44,51,57,46,48,57,53,51,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,69,108,109,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,51,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,57,57,48,55,55,55,44,52,51,46,57,52,57,55,50,51,93,44,91,45,49,49,53,46,49,51,54,50,48,57,44,52,51,46,57,56,51,56,53,57,93,44,91,45,49,49,53,46,53,48,56,55,50,50,44,52,51,46,56,56,52,56,53,53,93,44,91,45,49,49,53,46,54,52,53,56,48,50,44,52,51,46,55,48,48,50,54,93,44,91,45,49,49,53,46,56,50,55,57,50,44,52,51,46,54,48,55,54,54,55,93,44,91,45,49,49,53,46,57,55,53,55,49,57,44,52,51,46,53,57,49,52,51,56,93,44,91,45,49,49,53,46,57,55,56,54,53,49,44,52,51,46,49,49,51,52,51,50,93,44,91,45,49,49,54,46,50,54,54,50,48,55,44,52,51,46,49,49,50,50,54,57,93,44,91,45,49,49,54,46,50,48,49,55,52,44,52,51,46,48,52,56,57,51,93,44,91,45,49,49,53,46,57,54,48,57,57,57,44,52,50,46,57,56,57,48,56,52,93,44,91,45,49,49,53,46,52,52,49,53,50,50,44,52,50,46,57,51,49,49,50,55,93,44,91,45,49,49,53,46,52,53,52,50,50,52,44,52,50,46,55,54,55,57,51,54,93,44,91,45,49,49,53,46,48,51,55,54,57,55,44,52,50,46,55,54,56,52,49,52,93,44,91,45,49,49,53,46,48,51,55,55,55,52,44,52,50,46,57,49,49,56,54,52,93,44,91,45,49,49,53,46,48,56,54,56,53,50,44,52,50,46,57,49,52,53,54,93,44,91,45,49,49,53,46,48,56,54,49,53,53,44,52,51,46,49,57,56,48,54,52,93,44,91,45,49,49,53,46,48,56,51,48,56,57,44,52,51,46,54,48,52,50,57,50,93,44,91,45,49,49,52,46,57,56,57,50,53,56,44,52,51,46,56,53,56,53,54,51,93,44,91,45,49,49,52,46,57,55,49,51,53,49,44,52,51,46,57,51,56,51,48,56,93,44,91,45,49,49,52,46,57,57,48,55,55,55,44,52,51,46,57,52,57,55,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,108,116,105,109,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,55,54,50,53,44,34,98,101,100,115,34,58,49,57,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,56,55,48,57,54,44,51,57,46,55,50,48,56,93,44,91,45,55,54,46,56,56,51,50,57,52,44,51,57,46,52,55,52,55,53,49,93,44,91,45,55,54,46,56,56,50,50,55,52,44,51,57,46,51,53,48,49,56,53,93,44,91,45,55,54,46,54,57,55,48,56,53,44,51,57,46,50,49,52,48,57,50,93,44,91,45,55,54,46,54,49,56,54,49,50,44,51,57,46,50,51,55,51,57,56,93,44,91,45,55,54,46,55,49,49,48,53,52,44,51,57,46,50,55,55,56,56,57,93,44,91,45,55,54,46,55,49,49,51,49,51,44,51,57,46,51,55,49,57,51,51,93,44,91,45,55,54,46,53,50,57,55,57,51,44,51,57,46,51,55,50,48,53,56,93,44,91,45,55,54,46,53,50,57,52,56,54,44,51,57,46,50,49,56,52,48,56,93,44,91,45,55,54,46,51,52,57,52,55,57,44,51,57,46,49,53,54,54,50,51,93,44,91,45,55,54,46,50,56,55,54,56,57,44,51,57,46,50,53,52,49,48,52,93,44,91,45,55,54,46,51,57,49,54,56,56,44,51,57,46,52,54,52,53,51,50,93,44,91,45,55,54,46,53,51,50,49,55,52,44,51,57,46,53,52,51,57,55,55,93,44,91,45,55,54,46,53,54,57,52,52,57,44,51,57,46,55,50,49,49,55,56,93,44,91,45,55,54,46,55,56,55,48,57,54,44,51,57,46,55,50,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,101,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,57,50,57,49,57,44,52,56,46,51,55,48,57,52,54,93,44,91,45,57,57,46,56,52,55,48,52,54,44,52,56,46,51,55,49,50,93,44,91,45,57,57,46,56,52,56,50,50,50,44,52,56,46,48,50,49,52,50,52,93,44,91,45,57,57,46,56,49,50,49,54,55,44,52,55,46,56,52,55,50,53,55,93,44,91,45,57,57,46,50,57,55,50,48,50,44,52,55,46,56,52,54,56,51,52,93,44,91,45,57,56,46,53,50,53,53,49,54,44,52,55,46,56,52,54,50,55,54,93,44,91,45,57,56,46,53,50,53,53,53,53,44,52,55,46,57,49,53,48,53,54,93,44,91,45,57,56,46,54,50,53,51,56,52,44,52,55,46,57,49,54,51,57,57,93,44,91,45,57,56,46,56,48,55,53,57,51,44,52,56,46,48,53,57,56,48,49,93,44,91,45,57,56,46,57,56,54,57,48,49,44,52,56,46,48,48,55,52,57,56,93,44,91,45,57,57,46,48,55,48,52,52,51,44,52,56,46,49,48,55,56,53,55,93,44,91,45,57,57,46,49,57,57,57,49,49,44,52,56,46,49,53,53,51,48,57,93,44,91,45,57,57,46,50,48,48,51,48,54,44,52,56,46,51,55,48,54,53,56,93,44,91,45,57,57,46,52,57,50,57,49,57,44,52,56,46,51,55,48,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,55,56,48,49,50,44,51,57,46,53,57,56,49,57,54,93,44,91,45,57,49,46,52,54,48,52,52,50,44,51,57,46,52,53,48,55,50,50,93,44,91,45,57,49,46,52,51,56,50,51,53,44,51,57,46,51,49,56,55,49,54,93,44,91,45,57,49,46,52,48,57,48,51,51,44,51,57,46,49,52,50,53,52,50,93,44,91,45,57,49,46,50,54,48,50,51,50,44,51,57,46,49,51,57,56,52,53,93,44,91,45,57,49,46,49,56,50,57,52,50,44,51,57,46,50,50,55,50,51,51,93,44,91,45,57,48,46,55,50,49,56,51,53,44,51,57,46,50,50,52,49,48,56,93,44,91,45,57,48,46,57,51,54,55,50,56,44,51,57,46,51,57,57,53,49,49,93,44,91,45,57,49,46,48,51,56,50,55,44,51,57,46,52,52,56,52,51,53,93,44,91,45,57,49,46,49,55,56,48,49,50,44,51,57,46,53,57,56,49,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,54,50,50,44,34,98,101,100,115,34,58,52,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,53,48,48,51,57,44,51,56,46,56,52,57,48,55,51,93,44,91,45,56,50,46,54,54,50,56,56,54,44,51,56,46,55,52,55,57,55,55,93,44,91,45,56,50,46,55,52,48,51,56,51,44,51,56,46,53,57,55,49,54,55,93,44,91,45,56,50,46,56,49,53,57,55,57,44,51,56,46,53,55,48,56,48,50,93,44,91,45,56,50,46,54,54,53,52,49,49,44,51,56,46,53,48,53,55,56,55,93,44,91,45,56,50,46,53,57,51,52,56,44,51,56,46,52,50,49,56,50,49,93,44,91,45,56,50,46,53,48,56,50,56,44,51,56,46,52,49,49,49,57,56,93,44,91,45,56,50,46,51,50,51,57,57,57,44,51,56,46,52,52,57,50,54,56,93,44,91,45,56,50,46,50,56,55,50,55,44,51,56,46,53,56,50,55,56,51,93,44,91,45,56,50,46,51,53,52,52,54,56,44,51,56,46,54,55,54,48,55,93,44,91,45,56,50,46,52,55,50,52,55,56,44,51,56,46,54,56,50,50,55,57,93,44,91,45,56,50,46,52,56,51,53,55,57,44,51,56,46,55,55,50,50,55,56,93,44,91,45,56,50,46,53,55,53,53,56,51,44,51,56,46,56,52,52,52,55,56,93,44,91,45,56,50,46,54,53,48,48,51,57,44,51,56,46,56,52,57,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,55,50,57,44,34,98,101,100,115,34,58,49,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,56,56,55,50,44,51,55,46,50,53,49,52,53,55,93,44,91,45,56,57,46,54,50,48,50,53,54,44,51,55,46,50,51,51,48,48,56,93,44,91,45,56,57,46,55,54,53,50,49,49,44,51,55,46,49,50,54,48,54,54,93,44,91,45,56,57,46,55,56,54,56,49,57,44,51,55,46,48,56,55,56,50,52,93,44,91,45,56,57,46,54,56,54,54,50,44,51,54,46,57,50,56,50,57,51,93,44,91,45,56,57,46,54,57,49,54,48,51,44,51,54,46,56,53,57,53,49,55,93,44,91,45,56,57,46,53,49,57,56,48,57,44,51,54,46,56,54,57,54,49,55,93,44,91,45,56,57,46,51,49,50,55,48,52,44,51,55,46,48,48,56,57,55,49,93,44,91,45,56,57,46,51,55,54,54,51,50,44,51,55,46,48,51,56,52,56,50,93,44,91,45,56,57,46,52,56,56,55,50,44,51,55,46,50,53,49,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,55,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,55,51,48,49,56,44,51,57,46,48,50,48,52,51,93,44,91,45,56,51,46,55,48,53,51,49,49,44,51,56,46,54,51,57,56,53,51,93,44,91,45,56,51,46,54,52,52,57,49,51,44,51,56,46,54,51,54,51,52,51,93,44,91,45,56,51,46,53,50,48,55,53,53,44,51,56,46,55,48,51,48,57,52,93,44,91,45,56,51,46,50,54,55,54,49,51,44,51,56,46,54,49,56,52,50,93,44,91,45,56,51,46,50,55,48,56,49,55,44,51,57,46,48,49,53,55,57,49,93,44,91,45,56,51,46,51,56,53,54,51,55,44,51,57,46,48,53,53,49,57,55,93,44,91,45,56,51,46,54,55,51,48,49,56,44,51,57,46,48,50,48,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,69,114,97,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,52,56,50,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,55,53,49,55,55,44,51,50,46,53,49,51,48,51,57,93,44,91,45,57,56,46,52,55,52,54,56,53,44,51,50,46,50,57,57,48,56,52,93,44,91,45,57,56,46,53,53,49,49,53,56,44,51,50,46,50,54,49,52,51,54,93,44,91,45,57,56,46,51,50,55,52,57,57,44,51,49,46,57,52,49,50,54,49,93,44,91,45,57,56,46,50,48,56,51,56,54,44,51,49,46,57,49,55,53,49,49,93,44,91,45,57,56,46,48,48,53,52,54,50,44,51,50,46,48,49,55,56,57,55,93,44,91,45,57,55,46,56,54,52,56,54,52,44,51,50,46,48,56,55,51,50,56,93,44,91,45,57,55,46,57,52,53,54,50,53,44,51,50,46,50,51,51,52,54,56,93,44,91,45,57,56,46,48,54,56,53,52,53,44,51,50,46,53,49,49,54,50,54,93,44,91,45,57,56,46,52,55,53,49,55,55,44,51,50,46,53,49,51,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,72,97,98,101,114,115,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,50,56,57,44,34,98,101,100,115,34,58,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,56,49,53,57,54,44,51,52,46,56,48,48,56,56,50,93,44,91,45,56,51,46,54,50,51,50,57,54,44,51,52,46,55,51,50,49,57,52,93,44,91,45,56,51,46,54,51,50,51,49,55,44,51,52,46,53,50,56,53,56,55,93,44,91,45,56,51,46,54,54,54,52,49,53,44,51,52,46,53,48,51,54,48,50,93,44,91,45,56,51,46,54,49,53,50,53,49,44,51,52,46,52,51,49,55,52,56,93,44,91,45,56,51,46,52,53,57,55,55,44,51,52,46,52,56,49,49,52,50,93,44,91,45,56,51,46,51,51,56,50,51,52,44,51,52,46,54,56,55,49,56,55,93,44,91,45,56,51,46,51,53,50,52,52,56,44,51,52,46,55,49,54,49,50,53,93,44,91,45,56,51,46,53,52,56,57,56,56,44,51,52,46,55,52,57,52,53,49,93,44,91,45,56,51,46,54,53,50,49,57,52,44,51,52,46,56,50,50,57,57,51,93,44,91,45,56,51,46,54,56,49,53,57,54,44,51,52,46,56,48,48,56,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,57,34,44,34,78,65,77,69,34,58,34,87,105,108,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,48,54,57,57,44,51,50,46,56,57,56,50,50,93,44,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,44,91,45,56,50,46,57,53,55,48,54,54,44,51,50,46,55,48,56,51,49,56,93,44,91,45,56,50,46,57,52,54,57,54,54,44,51,50,46,55,53,57,51,53,56,93,44,91,45,56,51,46,48,55,51,54,52,56,44,51,50,46,57,52,54,53,54,50,93,44,91,45,56,51,46,49,51,51,56,52,55,44,51,51,46,48,48,55,50,52,56,93,44,91,45,56,51,46,51,53,55,54,56,53,44,51,50,46,57,50,54,49,52,49,93,44,91,45,56,51,46,52,48,54,57,57,44,51,50,46,56,57,56,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,77,111,110,111,110,103,97,108,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,50,53,50,44,34,98,101,100,115,34,58,57,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,49,54,50,56,44,51,57,46,55,50,48,55,55,55,93,44,91,45,56,48,46,52,50,49,51,56,56,44,51,57,46,55,50,49,49,56,57,93,44,91,45,56,48,46,51,57,53,56,49,44,51,57,46,54,51,55,51,52,55,93,44,91,45,56,48,46,49,53,51,53,51,50,44,51,57,46,54,49,48,52,50,54,93,44,91,45,55,57,46,57,51,56,56,55,56,44,51,57,46,52,53,50,52,54,53,93,44,91,45,55,57,46,56,57,52,54,56,56,44,51,57,46,52,51,53,53,56,56,93,44,91,45,55,57,46,55,54,51,55,55,52,44,51,57,46,55,50,48,55,55,54,93,44,91,45,55,57,46,57,49,54,50,56,44,51,57,46,55,50,48,55,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,48,50,49,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,50,57,53,49,50,44,52,48,46,57,57,54,54,50,52,93,44,91,45,56,51,46,49,49,50,55,51,55,44,52,48,46,57,57,51,52,52,55,93,44,91,45,56,51,46,49,49,49,51,54,44,52,48,46,55,48,50,57,49,53,93,44,91,45,56,50,46,56,53,56,51,48,50,44,52,48,46,55,48,53,48,49,57,93,44,91,45,56,50,46,55,50,55,49,54,52,44,52,48,46,55,49,49,50,48,51,93,44,91,45,56,50,46,55,50,52,55,57,50,44,52,48,46,57,57,53,54,51,56,93,44,91,45,56,50,46,56,50,57,53,49,50,44,52,48,46,57,57,54,54,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,68,101,83,111,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,57,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,54,52,48,54,50,44,50,55,46,51,52,48,54,52,49,93,44,91,45,56,50,46,48,53,53,55,53,51,44,50,55,46,51,51,56,50,54,52,93,44,91,45,56,50,46,48,53,54,52,57,55,44,50,55,46,50,48,55,55,54,57,93,44,91,45,56,50,46,48,53,55,52,54,57,44,50,55,46,48,51,50,49,49,57,93,44,91,45,56,49,46,53,54,50,54,50,52,44,50,55,46,48,51,51,56,51,53,93,44,91,45,56,49,46,53,54,52,48,54,50,44,50,55,46,51,52,48,54,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,78,101,119,32,76,111,110,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,56,56,56,49,44,34,98,101,100,115,34,58,52,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,50,51,57,53,53,57,44,52,49,46,55,49,52,49,57,49,93,44,91,45,55,50,46,52,49,48,51,54,55,44,52,49,46,54,48,50,53,56,49,93,44,91,45,55,50,46,52,54,54,55,51,44,52,49,46,53,56,51,56,57,57,93,44,91,45,55,50,46,51,50,51,51,57,52,44,52,49,46,53,51,52,50,53,93,44,91,45,55,50,46,51,48,53,53,51,49,44,52,49,46,52,51,54,50,56,50,93,44,91,45,55,50,46,51,56,52,56,51,51,44,52,49,46,51,56,53,49,57,93,44,91,45,55,50,46,51,51,49,52,53,51,44,52,49,46,50,49,53,48,48,52,93,44,91,45,55,49,46,57,48,55,50,53,56,44,52,49,46,51,48,52,52,56,51,93,44,91,45,55,49,46,55,57,55,55,52,55,44,52,49,46,52,49,54,56,51,52,93,44,91,45,55,49,46,55,56,57,50,52,55,44,52,49,46,53,57,54,56,52,55,93,44,91,45,55,49,46,55,56,55,54,53,56,44,52,49,46,54,51,57,57,49,56,93,44,91,45,55,49,46,57,53,49,57,51,54,44,52,49,46,54,51,52,51,50,56,93,44,91,45,55,50,46,49,53,49,55,52,55,44,52,49,46,54,54,55,53,49,54,93,44,91,45,55,50,46,50,51,57,53,53,57,44,52,49,46,55,49,52,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,71,117,101,114,110,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,50,55,52,44,34,98,101,100,115,34,58,50,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,50,50,54,56,51,44,52,48,46,50,50,49,51,48,56,93,44,91,45,56,49,46,55,49,54,50,55,54,44,52,48,46,49,53,50,49,54,54,93,44,91,45,56,49,46,55,50,56,54,49,49,44,51,57,46,57,51,49,55,50,56,93,44,91,45,56,49,46,54,57,52,49,52,54,44,51,57,46,56,52,50,54,51,54,93,44,91,45,56,49,46,51,56,54,48,48,54,44,51,57,46,57,53,48,54,57,52,93,44,91,45,56,49,46,50,51,52,48,53,51,44,51,57,46,57,53,49,50,55,93,44,91,45,56,49,46,50,50,53,57,50,52,44,52,48,46,49,55,48,48,55,53,93,44,91,45,56,49,46,51,51,56,48,53,55,44,52,48,46,50,49,52,50,53,51,93,44,91,45,56,49,46,54,50,50,54,56,51,44,52,48,46,50,50,49,51,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,97,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,48,53,55,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,48,57,54,50,54,44,52,50,46,55,54,57,56,55,56,93,44,91,45,56,53,46,53,52,53,53,54,52,44,52,50,46,55,54,56,49,51,57,93,44,91,45,56,53,46,53,52,51,49,57,49,44,52,50,46,52,50,49,52,51,51,93,44,91,45,56,53,46,50,57,56,56,55,57,44,52,50,46,52,49,57,56,52,57,93,44,91,45,56,53,46,48,55,49,54,48,57,44,52,50,46,52,50,49,52,50,56,93,44,91,45,56,53,46,48,55,52,50,52,53,44,52,50,46,55,55,48,55,56,52,93,44,91,45,56,53,46,51,48,57,54,50,54,44,52,50,46,55,54,57,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,57,34,44,34,78,65,77,69,34,58,34,83,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,49,49,48,48,51,44,51,54,46,57,50,50,56,51,49,93,44,91,45,57,51,46,53,55,51,56,44,51,54,46,56,50,48,48,51,50,93,44,91,45,57,51,46,53,56,52,50,54,50,44,51,54,46,52,57,57,49,54,55,93,44,91,45,57,51,46,51,49,53,51,51,50,44,51,54,46,52,57,56,49,52,93,44,91,45,57,51,46,51,48,52,51,53,57,44,51,54,46,56,49,54,56,54,54,93,44,91,45,57,51,46,51,51,55,52,53,49,44,51,54,46,57,57,50,52,57,52,93,44,91,45,57,51,46,54,49,48,49,50,54,44,51,54,46,57,57,53,56,49,93,44,91,45,57,51,46,54,49,49,48,48,51,44,51,54,46,57,50,50,56,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,54,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,54,48,34,44,34,78,65,77,69,34,58,34,82,105,99,104,109,111,110,100,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,55,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,53,57,53,52,54,50,44,51,55,46,53,53,53,55,53,93,44,91,45,55,55,46,52,50,48,56,55,53,44,51,55,46,52,52,55,49,48,49,93,44,91,45,55,55,46,51,57,49,51,48,54,44,51,55,46,53,51,48,49,50,50,93,44,91,45,55,55,46,52,52,55,53,56,49,44,51,55,46,54,48,50,56,49,93,44,91,45,55,55,46,53,57,53,52,54,50,44,51,55,46,53,53,53,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,83,116,111,107,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,57,48,53,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,52,52,48,48,57,56,44,51,54,46,53,53,48,54,53,53,93,44,91,45,56,48,46,52,53,49,54,57,54,44,51,54,46,50,54,49,53,48,50,93,44,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,44,91,45,56,48,46,48,50,55,51,51,57,44,51,54,46,53,52,50,52,56,93,44,91,45,56,48,46,48,53,51,52,53,57,44,51,54,46,53,52,50,53,50,51,93,44,91,45,56,48,46,52,52,48,48,57,56,44,51,54,46,53,53,48,54,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,56,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,49,52,49,56,57,44,52,49,46,49,53,54,55,54,50,93,44,91,45,57,52,46,48,49,52,56,48,51,44,52,48,46,56,57,55,48,51,49,93,44,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,44,91,45,57,51,46,53,53,55,53,53,54,44,52,49,46,49,54,49,50,55,49,93,44,91,45,57,51,46,55,56,57,49,57,54,44,52,49,46,49,54,50,48,51,53,93,44,91,45,57,52,46,48,49,52,49,56,57,44,52,49,46,49,53,54,55,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,50,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,56,49,53,54,56,44,52,50,46,57,48,55,48,49,51,93,44,91,45,57,50,46,48,56,49,54,54,49,44,52,50,46,54,52,50,48,53,54,93,44,91,45,57,49,46,54,48,55,48,53,57,44,52,50,46,54,52,51,57,55,51,93,44,91,45,57,49,46,54,48,53,51,48,55,44,52,51,46,48,56,49,54,53,51,93,44,91,45,57,50,46,48,56,49,49,52,54,44,52,51,46,48,56,50,55,57,52,93,44,91,45,57,50,46,48,56,49,53,54,56,44,52,50,46,57,48,55,48,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,77,97,114,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,50,57,53,44,34,98,101,100,115,34,58,52,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,49,51,52,53,50,51,44,51,56,46,50,57,54,50,54,51,93,44,91,45,49,50,51,46,48,49,52,56,49,55,44,51,56,46,49,52,57,49,51,50,93,44,91,45,49,50,51,46,48,56,51,56,56,44,51,55,46,57,56,51,51,54,54,93,44,91,45,49,50,51,46,48,50,50,53,48,55,44,51,55,46,57,52,50,48,54,53,93,44,91,45,49,50,50,46,56,56,57,50,57,49,44,51,55,46,57,55,52,49,48,57,93,44,91,45,49,50,50,46,55,53,50,52,54,54,44,51,55,46,56,53,55,54,57,57,93,44,91,45,49,50,50,46,54,49,50,50,56,53,44,51,55,46,56,49,53,50,50,52,93,44,91,45,49,50,50,46,52,49,56,54,55,51,44,51,55,46,56,53,50,53,48,53,93,44,91,45,49,50,50,46,52,51,50,50,56,51,44,51,55,46,57,50,57,56,50,52,93,44,91,45,49,50,50,46,51,52,55,52,53,52,44,51,56,46,48,55,51,50,54,93,44,91,45,49,50,50,46,53,48,50,56,50,44,51,56,46,49,49,51,48,48,50,93,44,91,45,49,50,50,46,53,55,56,50,48,49,44,51,56,46,49,56,51,53,56,51,93,44,91,45,49,50,50,46,55,51,57,57,44,51,56,46,50,48,55,48,49,56,93,44,91,45,49,50,50,46,57,48,49,55,50,54,44,51,56,46,51,49,54,57,52,51,93,44,91,45,49,50,51,46,49,51,52,53,50,51,44,51,56,46,50,57,54,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,56,49,34,44,34,78,65,77,69,34,58,34,82,97,110,100,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,52,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,44,91,45,49,48,50,46,49,54,56,56,51,57,44,51,52,46,55,52,55,52,49,55,93,44,91,45,49,48,49,46,57,57,56,52,57,51,44,51,52,46,55,52,56,49,57,93,44,91,45,49,48,49,46,54,50,57,50,53,55,44,51,52,46,55,52,55,54,52,57,93,44,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,44,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,48,49,34,44,34,78,65,77,69,34,58,34,82,117,115,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,53,57,53,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,56,53,52,49,49,44,51,50,46,51,55,48,56,50,93,44,91,45,57,52,46,57,56,53,50,55,50,44,51,50,46,49,51,55,57,56,57,93,44,91,45,57,52,46,57,56,53,48,51,55,44,51,49,46,56,52,54,49,57,51,93,44,91,45,57,52,46,57,51,55,53,51,50,44,51,49,46,56,52,53,53,53,53,93,44,91,45,57,52,46,52,53,50,52,49,54,44,51,49,46,56,52,52,50,56,49,93,44,91,45,57,52,46,53,49,49,52,51,49,44,51,49,46,57,55,51,57,56,52,93,44,91,45,57,52,46,53,57,57,57,55,56,44,51,49,46,57,55,51,49,57,51,93,44,91,45,57,52,46,53,56,48,53,44,51,50,46,50,48,49,51,54,51,93,44,91,45,57,52,46,52,57,49,56,49,56,44,51,50,46,51,57,52,49,51,55,93,44,91,45,57,52,46,53,55,57,50,49,57,44,51,50,46,51,57,52,57,49,54,93,44,91,45,57,52,46,54,51,56,51,52,55,44,51,50,46,51,55,48,53,51,57,93,44,91,45,57,52,46,57,56,53,52,49,49,44,51,50,46,51,55,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,51,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,50,56,52,48,55,44,52,49,46,52,57,48,57,50,49,93,44,91,45,57,51,46,52,50,50,56,53,52,44,52,49,46,53,49,49,52,52,52,93,44,91,45,57,51,46,55,57,48,54,49,50,44,52,49,46,53,49,49,57,49,54,93,44,91,45,57,51,46,55,56,57,49,57,54,44,52,49,46,49,54,50,48,51,53,93,44,91,45,57,51,46,53,53,55,53,53,54,44,52,49,46,49,54,49,50,55,49,93,44,91,45,57,51,46,51,50,55,56,56,54,44,52,49,46,49,54,48,54,53,57,93,44,91,45,57,51,46,51,50,56,52,48,55,44,52,49,46,52,57,48,57,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,86,97,110,32,87,101,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,50,56,49,44,34,98,101,100,115,34,58,49,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,48,50,57,50,50,44,52,48,46,57,50,50,53,54,56,93,44,91,45,56,52,46,56,48,50,50,55,51,44,52,48,46,55,50,56,49,52,54,93,44,91,45,56,52,46,52,53,54,49,55,50,44,52,48,46,55,50,56,51,48,54,93,44,91,45,56,52,46,52,53,54,49,56,44,52,48,46,54,56,52,56,54,50,93,44,91,45,56,52,46,51,57,54,55,55,56,44,52,48,46,54,56,52,57,50,54,93,44,91,45,56,52,46,51,57,55,51,55,52,44,52,48,46,56,49,53,57,52,49,93,44,91,45,56,52,46,51,52,48,53,51,49,44,52,48,46,56,53,57,48,57,57,93,44,91,45,56,52,46,51,57,57,52,56,54,44,52,48,46,57,57,48,51,49,53,93,44,91,45,56,52,46,56,48,51,50,53,49,44,52,48,46,57,56,57,51,57,52,93,44,91,45,56,52,46,56,48,50,57,50,50,44,52,48,46,57,50,50,53,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,71,108,97,100,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,52,48,54,55,54,44,50,55,46,50,48,53,57,51,57,93,44,91,45,56,49,46,49,54,57,49,51,56,44,50,55,46,50,48,57,53,56,53,93,44,91,45,56,49,46,49,54,56,50,56,49,44,50,55,46,49,50,49,55,51,52,93,44,91,45,56,49,46,50,54,55,54,55,55,44,50,55,46,49,50,49,48,57,55,93,44,91,45,56,49,46,50,54,55,50,49,54,44,50,55,46,48,51,50,52,55,52,93,44,91,45,56,49,46,53,54,50,53,51,49,44,50,55,46,48,51,51,54,56,55,93,44,91,45,56,49,46,53,54,53,57,51,49,44,50,54,46,55,54,57,53,53,50,93,44,91,45,56,48,46,57,52,53,51,53,52,44,50,54,46,55,54,57,48,52,57,93,44,91,45,56,48,46,56,56,53,54,51,57,44,50,54,46,57,53,56,57,49,57,93,44,91,45,56,48,46,56,55,49,49,54,57,44,50,55,46,49,53,52,57,53,49,93,44,91,45,56,48,46,57,52,48,54,55,54,44,50,55,46,50,48,53,57,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,77,101,114,105,119,101,116,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,49,51,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,54,50,51,53,57,44,51,51,46,49,57,49,49,55,51,93,44,91,45,56,52,46,56,54,49,55,54,56,44,51,50,46,56,55,50,52,57,53,93,44,91,45,56,52,46,55,48,48,53,51,56,44,51,50,46,56,52,52,54,52,93,44,91,45,56,52,46,53,48,54,56,56,56,44,51,50,46,56,56,49,55,56,56,93,44,91,45,56,52,46,53,50,55,48,50,44,51,50,46,57,55,48,53,52,56,93,44,91,45,56,52,46,52,57,54,55,56,51,44,51,51,46,49,56,51,56,54,54,93,44,91,45,56,52,46,53,48,50,51,53,50,44,51,51,46,50,50,49,48,53,53,93,44,91,45,56,52,46,56,53,50,51,54,44,51,51,46,50,50,51,53,57,93,44,91,45,56,52,46,56,54,50,51,53,57,44,51,51,46,49,57,49,49,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,111,115,116,105,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,55,52,51,51,51,57,44,51,55,46,51,53,54,55,57,56,93,44,91,45,49,48,53,46,55,49,56,52,54,51,44,51,54,46,57,57,53,56,52,49,93,44,91,45,49,48,53,46,50,50,48,53,48,54,44,51,54,46,57,57,52,57,55,52,93,44,91,45,49,48,53,46,49,53,53,48,52,50,44,51,54,46,57,57,53,50,54,50,93,44,91,45,49,48,53,46,49,53,52,49,55,54,44,51,55,46,50,57,51,49,50,57,93,44,91,45,49,48,53,46,49,57,51,50,51,55,44,51,55,46,53,57,50,49,54,56,93,44,91,45,49,48,53,46,50,57,53,53,56,55,44,51,55,46,54,53,52,52,49,54,93,44,91,45,49,48,53,46,52,56,53,53,49,54,44,51,55,46,53,55,55,56,57,57,93,44,91,45,49,48,53,46,55,52,51,51,51,57,44,51,55,46,51,53,54,55,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,67,111,114,121,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,51,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,54,54,52,51,49,44,51,49,46,54,55,50,52,54,49,93,44,91,45,57,56,46,49,56,48,48,48,54,44,51,49,46,52,54,51,55,49,55,93,44,91,45,57,55,46,57,48,55,49,44,51,49,46,48,54,57,51,55,52,93,44,91,45,57,55,46,52,49,56,54,48,54,44,51,49,46,51,50,48,50,48,50,93,44,91,45,57,55,46,54,48,53,50,51,44,51,49,46,53,56,55,55,54,50,93,44,91,45,57,55,46,54,56,57,56,51,52,44,51,49,46,55,49,49,48,49,57,93,44,91,45,57,55,46,55,54,54,52,51,49,44,51,49,46,54,55,50,52,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,48,48,54,50,57,44,52,49,46,53,48,52,49,52,56,93,44,91,45,57,52,46,55,48,48,53,56,57,44,52,49,46,49,53,56,48,56,53,93,44,91,45,57,52,46,52,55,48,54,48,51,44,52,49,46,49,53,55,53,54,54,93,44,91,45,57,52,46,50,52,49,54,51,55,44,52,49,46,49,53,55,49,51,52,93,44,91,45,57,52,46,50,52,49,53,57,51,44,52,49,46,53,48,51,54,55,57,93,44,91,45,57,52,46,55,48,48,54,50,57,44,52,49,46,53,48,52,49,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,67,104,97,116,116,97,104,111,111,99,104,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,54,55,44,34,98,101,100,115,34,58,50,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,55,49,57,54,50,44,51,50,46,51,55,55,54,57,56,93,44,91,45,56,52,46,57,50,51,48,50,55,44,51,50,46,50,51,48,56,53,49,93,44,91,45,56,52,46,54,53,56,57,50,44,51,50,46,50,51,50,56,53,50,93,44,91,45,56,52,46,54,51,55,51,50,51,44,51,50,46,53,51,52,56,53,53,93,44,91,45,56,52,46,54,57,52,53,49,44,51,50,46,53,49,56,55,51,50,93,44,91,45,56,52,46,55,57,50,57,53,49,44,51,50,46,52,49,51,56,52,93,44,91,45,56,52,46,57,55,49,57,54,50,44,51,50,46,51,55,55,54,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,77,97,114,105,112,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,52,48,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,51,56,55,54,55,44,51,55,46,54,51,51,51,54,52,93,44,91,45,49,50,48,46,50,54,54,48,49,44,51,55,46,52,48,48,54,48,55,93,44,91,45,49,50,48,46,49,52,51,56,50,54,44,51,55,46,50,51,57,49,57,50,93,44,91,45,49,50,48,46,48,53,50,48,53,53,44,51,55,46,49,56,51,49,48,56,93,44,91,45,49,49,57,46,55,54,49,56,48,57,44,51,55,46,52,49,55,49,49,52,93,44,91,45,49,49,57,46,54,53,49,49,57,49,44,51,55,46,52,49,55,56,51,50,93,44,91,45,49,49,57,46,53,56,51,53,56,53,44,51,55,46,53,54,48,51,51,53,93,44,91,45,49,49,57,46,51,48,56,57,57,53,44,51,55,46,55,55,55,57,56,54,93,44,91,45,49,49,57,46,53,51,51,57,57,57,44,51,55,46,57,48,50,57,50,50,93,44,91,45,49,49,57,46,54,54,55,50,48,51,44,51,55,46,56,48,49,50,50,52,93,44,91,45,49,49,57,46,56,48,53,52,57,56,44,51,55,46,55,53,57,54,49,56,93,44,91,45,49,49,57,46,57,51,56,52,49,52,44,51,55,46,55,54,51,48,50,54,93,44,91,45,49,50,48,46,48,50,54,53,57,51,44,51,55,46,56,49,49,56,55,55,93,44,91,45,49,50,48,46,51,52,53,52,51,55,44,51,55,46,55,50,52,55,56,55,93,44,91,45,49,50,48,46,51,56,55,54,49,51,44,51,55,46,54,51,51,55,48,52,93,44,91,45,49,50,48,46,51,56,55,54,55,44,51,55,46,54,51,51,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,52,57,50,50,52,44,51,57,46,50,50,54,50,49,56,93,44,91,45,57,50,46,57,51,52,53,54,57,44,51,57,46,48,54,52,53,52,55,93,44,91,45,57,50,46,56,52,49,54,49,55,44,51,56,46,57,55,57,56,50,49,93,44,91,45,57,50,46,53,53,56,48,56,54,44,51,56,46,57,55,48,54,57,50,93,44,91,45,57,50,46,52,51,48,50,50,57,44,51,57,46,50,52,56,55,57,53,93,44,91,45,57,50,46,55,48,55,51,54,55,44,51,57,46,51,50,49,54,49,52,93,44,91,45,57,50,46,55,57,48,51,54,57,44,51,57,46,51,52,51,53,56,54,93,44,91,45,57,50,46,56,52,57,50,50,52,44,51,57,46,50,50,54,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,53,53,51,44,34,98,101,100,115,34,58,49,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,56,52,57,57,50,53,44,52,53,46,50,53,57,54,57,55,93,44,91,45,49,50,51,46,48,48,48,55,56,56,44,52,53,46,50,53,57,51,52,55,93,44,91,45,49,50,51,46,48,54,56,54,54,55,44,52,53,46,48,55,52,56,54,93,44,91,45,49,50,51,46,48,52,52,57,48,51,44,52,52,46,57,52,52,48,50,56,93,44,91,45,49,50,51,46,49,55,57,51,56,55,44,52,52,46,56,51,53,55,50,57,93,44,91,45,49,50,51,46,49,52,51,56,52,51,44,52,52,46,55,52,56,57,49,52,93,44,91,45,49,50,51,46,48,48,55,55,52,51,44,52,52,46,54,56,56,48,55,49,93,44,91,45,49,50,50,46,56,48,50,52,53,55,44,52,52,46,55,57,48,56,54,52,93,44,91,45,49,50,50,46,50,55,54,54,55,53,44,52,52,46,55,52,54,49,51,53,93,44,91,45,49,50,50,46,48,51,51,48,48,54,44,52,52,46,54,56,53,54,57,49,93,44,91,45,49,50,49,46,56,48,48,48,49,53,44,52,52,46,54,56,51,52,50,53,93,44,91,45,49,50,49,46,55,53,50,57,57,52,44,52,52,46,56,50,57,57,49,57,93,44,91,45,49,50,49,46,55,51,52,50,50,51,44,52,52,46,56,56,53,55,50,93,44,91,45,49,50,50,46,52,48,49,48,50,49,44,52,52,46,56,56,53,55,50,93,44,91,45,49,50,50,46,53,48,56,49,48,54,44,52,52,46,57,49,57,53,57,57,93,44,91,45,49,50,50,46,53,57,53,53,50,51,44,52,53,46,48,49,57,54,55,57,93,44,91,45,49,50,50,46,55,56,56,53,53,52,44,52,53,46,49,51,48,49,55,54,93,44,91,45,49,50,50,46,55,52,57,55,57,51,44,52,53,46,49,57,53,50,52,50,93,44,91,45,49,50,50,46,56,52,57,57,50,53,44,52,53,46,50,53,57,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,77,105,108,119,97,117,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,52,50,48,57,44,34,98,101,100,115,34,58,51,56,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,49,57,48,48,56,44,52,51,46,49,57,48,56,49,54,93,44,91,45,56,56,46,48,54,51,51,53,51,44,52,51,46,49,57,50,49,49,55,93,44,91,45,56,56,46,48,54,57,57,50,52,44,52,50,46,56,52,51,51,50,51,93,44,91,45,56,55,46,48,54,57,52,49,57,44,52,50,46,56,52,50,49,52,54,93,44,91,45,56,55,46,49,48,55,54,54,57,44,52,51,46,49,49,56,50,52,51,93,44,91,45,56,55,46,49,49,57,48,48,56,44,52,51,46,49,57,48,56,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,51,55,50,44,34,98,101,100,115,34,58,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,50,48,52,51,49,44,52,52,46,56,48,52,50,54,51,93,44,91,45,57,51,46,55,54,56,48,51,57,44,52,52,46,54,52,48,51,48,51,93,44,91,45,57,51,46,57,49,48,52,48,53,44,52,52,46,53,52,51,49,54,51,93,44,91,45,57,51,46,53,50,52,51,50,55,44,52,52,46,53,52,51,54,49,56,93,44,91,45,57,51,46,50,56,49,53,50,49,44,52,52,46,53,52,51,57,53,55,93,44,91,45,57,51,46,51,50,57,54,49,53,44,52,52,46,55,57,49,48,56,54,93,44,91,45,57,51,46,53,50,48,52,51,49,44,52,52,46,56,48,52,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,80,105,99,107,97,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,52,50,48,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,50,52,50,53,52,44,51,57,46,55,57,52,57,57,54,93,44,91,45,56,51,46,50,52,51,55,48,50,44,51,57,46,56,49,50,53,48,51,93,44,91,45,56,51,46,50,53,50,52,51,53,44,51,57,46,54,57,53,52,51,56,93,44,91,45,56,51,46,50,54,54,55,51,55,44,51,57,46,53,49,54,50,52,57,93,44,91,45,56,50,46,57,56,52,53,54,44,51,57,46,53,48,54,55,53,52,93,44,91,45,56,50,46,55,52,48,55,50,57,44,51,57,46,52,54,56,51,53,93,44,91,45,56,50,46,55,51,49,53,49,56,44,51,57,46,53,53,52,52,52,53,93,44,91,45,56,50,46,56,52,50,57,53,51,44,51,57,46,53,54,49,52,56,93,44,91,45,56,50,46,56,50,52,50,53,52,44,51,57,46,55,57,52,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,80,111,119,104,97,116,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,53,55,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,44,91,45,55,55,46,56,57,55,50,57,50,44,51,55,46,54,54,56,49,56,49,93,44,91,45,55,56,46,48,55,50,49,55,52,44,51,55,46,54,53,55,51,56,53,93,44,91,45,55,56,46,49,51,50,48,52,56,44,51,55,46,52,53,52,54,56,54,93,44,91,45,55,55,46,57,56,54,49,57,44,51,55,46,52,56,54,50,54,57,93,44,91,45,55,55,46,56,53,53,49,52,56,44,51,55,46,52,49,56,51,54,51,93,44,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,52,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,52,34,44,34,78,65,77,69,34,58,34,66,114,111,111,109,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,49,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,49,52,55,49,52,51,44,51,57,46,57,49,51,56,56,57,93,44,91,45,49,48,53,46,48,53,50,56,57,50,44,51,57,46,57,49,52,50,50,52,93,44,91,45,49,48,52,46,57,54,49,52,48,53,44,52,48,46,48,48,48,51,51,55,93,44,91,45,49,48,53,46,48,53,50,56,50,51,44,52,48,46,48,48,48,50,54,93,44,91,45,49,48,53,46,49,52,55,49,52,51,44,51,57,46,57,49,51,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,57,51,55,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,57,52,53,51,52,44,51,53,46,52,52,52,54,55,54,93,44,91,45,56,55,46,53,55,53,51,53,50,44,51,53,46,51,57,56,52,53,52,93,44,91,45,56,55,46,53,55,55,55,57,54,44,51,53,46,49,53,57,52,93,44,91,45,56,55,46,54,48,54,48,51,49,44,51,53,46,48,48,51,52,50,53,93,44,91,45,56,55,46,50,50,52,48,53,50,44,51,52,46,57,57,57,51,55,55,93,44,91,45,56,55,46,50,48,54,53,55,56,44,51,53,46,52,51,51,50,48,55,93,44,91,45,56,55,46,50,57,52,53,51,52,44,51,53,46,52,52,52,54,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,110,116,114,105,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,53,55,52,53,50,44,52,53,46,49,49,54,55,48,55,93,44,91,45,56,53,46,50,50,51,54,56,49,44,52,53,46,49,49,55,56,54,49,93,44,91,45,56,53,46,50,50,50,55,48,55,44,52,53,46,50,48,53,53,54,93,44,91,45,56,53,46,52,53,56,56,57,54,44,52,53,46,50,48,54,53,55,52,93,44,91,45,56,53,46,52,56,48,54,55,52,44,52,53,46,49,50,48,51,50,54,93,44,91,45,56,53,46,52,50,55,54,56,56,44,52,52,46,57,54,53,50,55,51,93,44,91,45,56,53,46,52,55,51,56,52,49,44,52,52,46,56,53,57,52,52,57,93,44,91,45,56,53,46,51,51,50,56,51,54,44,52,52,46,56,49,50,51,55,50,93,44,91,45,56,53,46,50,57,49,55,49,54,44,52,52,46,56,53,57,54,48,56,93,44,91,45,56,52,46,56,52,55,51,48,57,44,52,52,46,56,53,56,48,51,55,93,44,91,45,56,52,46,56,53,55,52,53,50,44,52,53,46,49,49,54,55,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,77,97,114,108,98,111,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,49,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,50,55,52,49,50,44,51,52,46,56,48,54,55,51,52,93,44,91,45,55,57,46,56,48,51,56,55,55,44,51,52,46,54,48,57,48,53,51,93,44,91,45,55,57,46,56,50,57,57,56,49,44,51,52,46,53,51,49,57,50,53,93,44,91,45,55,57,46,54,56,53,50,50,55,44,51,52,46,52,48,48,54,54,57,93,44,91,45,55,57,46,54,53,55,55,54,52,44,51,52,46,51,48,53,49,57,93,44,91,45,55,57,46,54,51,51,52,49,51,44,51,52,46,50,57,55,57,57,52,93,44,91,45,55,57,46,52,53,48,48,50,52,44,51,52,46,54,50,49,48,53,51,93,44,91,45,55,57,46,52,54,49,53,48,54,44,51,52,46,54,51,48,51,55,57,93,44,91,45,55,57,46,54,57,50,57,52,52,44,51,52,46,56,48,53,49,53,53,93,44,91,45,55,57,46,57,50,55,52,49,50,44,51,52,46,56,48,54,55,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,101,110,101,119,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,56,54,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,51,57,56,55,56,44,52,55,46,50,53,57,50,55,50,93,44,91,45,49,49,55,46,48,51,57,55,53,50,44,52,55,46,49,50,55,50,54,57,93,44,91,45,49,49,54,46,56,51,53,50,54,57,44,52,55,46,48,51,50,52,53,50,93,44,91,45,49,49,54,46,51,50,57,52,49,56,44,52,55,46,48,50,49,57,49,53,93,44,91,45,49,49,54,46,51,50,57,52,48,54,44,52,55,46,52,49,52,48,49,49,93,44,91,45,49,49,54,46,53,56,54,53,52,57,44,52,55,46,52,49,52,54,57,53,93,44,91,45,49,49,54,46,54,50,57,48,53,57,44,52,55,46,51,55,49,52,51,56,93,44,91,45,49,49,55,46,48,51,57,56,48,56,44,52,55,46,51,54,54,48,51,49,93,44,91,45,49,49,55,46,48,51,57,56,55,56,44,52,55,46,50,53,57,50,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,53,50,55,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,50,57,51,51,44,52,49,46,57,48,49,54,49,55,93,44,91,45,56,57,46,54,51,49,52,57,52,44,52,49,46,53,56,52,57,52,57,93,44,91,45,56,57,46,49,54,54,53,54,49,44,52,49,46,53,56,53,50,56,57,93,44,91,45,56,56,46,57,51,56,54,55,57,44,52,49,46,54,50,56,51,49,54,93,44,91,45,56,56,46,57,52,49,50,55,57,44,52,49,46,56,57,49,55,53,50,93,44,91,45,56,57,46,51,54,48,53,55,56,44,52,49,46,56,56,56,48,49,56,93,44,91,45,56,57,46,54,50,57,51,51,44,52,49,46,57,48,49,54,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,78,101,109,97,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,48,52,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,54,55,48,49,50,44,52,48,46,53,50,51,49,52,56,93,44,91,45,57,54,46,48,54,54,55,51,54,44,52,48,46,50,54,50,48,51,56,93,44,91,45,57,54,46,48,49,48,49,55,54,44,52,48,46,50,54,49,52,56,50,93,44,91,45,57,53,46,53,53,50,52,55,51,44,52,48,46,50,54,49,57,48,52,93,44,91,45,57,53,46,53,53,52,56,49,55,44,52,48,46,50,54,52,52,54,93,44,91,45,57,53,46,55,48,57,57,55,52,44,52,48,46,53,50,51,55,57,56,93,44,91,45,57,54,46,48,54,55,48,49,50,44,52,48,46,53,50,51,49,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,57,50,48,44,34,98,101,100,115,34,58,49,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,49,49,53,56,44,51,52,46,57,56,49,55,54,56,93,44,91,45,55,54,46,54,57,51,48,49,56,44,51,52,46,56,54,57,49,56,93,44,91,45,55,55,46,48,55,56,50,54,51,44,51,52,46,56,49,49,51,50,50,93,44,91,45,55,55,46,49,54,53,57,56,54,44,51,52,46,55,56,53,48,51,50,93,44,91,45,55,55,46,48,57,54,57,55,50,44,51,52,46,54,55,50,52,48,49,93,44,91,45,55,55,46,49,49,55,49,57,56,44,51,52,46,53,56,52,51,54,55,93,44,91,45,55,54,46,56,49,56,57,51,55,44,51,52,46,54,52,51,50,53,51,93,44,91,45,55,54,46,54,49,52,55,50,50,44,51,52,46,54,49,56,50,55,56,93,44,91,45,55,54,46,52,57,49,57,57,49,44,51,52,46,53,52,54,53,51,50,93,44,91,45,55,54,46,51,55,52,54,51,56,44,51,52,46,55,49,53,57,57,49,93,44,91,45,55,54,46,50,52,57,54,51,50,44,51,52,46,56,51,52,54,51,49,93,44,91,45,55,54,46,48,48,54,57,51,54,44,51,53,46,48,48,54,48,51,49,93,44,91,45,55,54,46,48,54,53,55,55,52,44,51,53,46,49,50,52,57,51,55,93,44,91,45,55,54,46,51,48,52,49,51,54,44,51,53,46,50,48,49,52,53,51,93,44,91,45,55,54,46,55,49,49,53,56,44,51,52,46,57,56,49,55,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,80,111,116,116,97,119,97,116,111,109,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,52,53,44,34,98,101,100,115,34,58,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,56,48,51,54,50,44,51,57,46,53,54,54,51,51,50,93,44,91,45,57,54,46,55,49,57,49,53,56,44,51,57,46,51,57,52,51,51,56,93,44,91,45,57,54,46,53,49,54,55,44,51,57,46,49,55,49,49,51,93,44,91,45,57,54,46,51,56,57,48,52,54,44,51,57,46,49,55,50,56,55,56,93,44,91,45,57,54,46,50,51,51,54,55,49,44,51,57,46,50,49,50,50,55,57,93,44,91,45,57,54,46,48,56,51,53,53,55,44,51,57,46,49,57,51,53,48,52,93,44,91,45,57,54,46,48,51,57,48,54,44,51,57,46,49,50,54,53,50,55,93,44,91,45,57,54,46,48,51,53,53,55,51,44,51,57,46,50,49,54,53,50,93,44,91,45,57,54,46,48,51,53,57,53,50,44,51,57,46,53,54,54,49,93,44,91,45,57,54,46,50,51,56,57,54,57,44,51,57,46,53,54,54,50,50,93,44,91,45,57,54,46,53,56,48,51,54,50,44,51,57,46,53,54,54,51,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,57,49,51,44,34,98,101,100,115,34,58,53,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,49,56,52,57,51,44,52,50,46,52,50,49,53,50,93,44,91,45,56,52,46,55,48,57,53,53,54,44,52,50,46,48,55,48,51,54,54,93,44,91,45,56,52,46,51,54,51,50,57,55,44,52,50,46,48,55,51,52,53,54,93,44,91,45,56,52,46,49,51,49,57,54,51,44,52,50,46,48,55,49,53,55,55,93,44,91,45,56,52,46,49,51,49,49,51,54,44,52,50,46,52,50,52,53,54,55,93,44,91,45,56,52,46,49,52,48,55,49,51,44,52,50,46,52,50,52,54,49,49,93,44,91,45,56,52,46,54,48,48,52,48,51,44,52,50,46,52,50,49,57,56,52,93,44,91,45,56,52,46,55,49,56,52,57,51,44,52,50,46,52,50,49,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,67,111,109,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,48,57,55,44,34,98,101,100,115,34,58,50,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,52,54,49,50,52,44,50,57,46,55,52,53,49,56,49,93,44,91,45,57,56,46,53,52,51,55,49,56,44,50,57,46,55,53,50,48,53,50,93,44,91,45,57,56,46,51,56,48,49,54,49,44,50,57,46,55,48,51,57,50,57,93,44,91,45,57,56,46,51,49,48,57,50,56,44,50,57,46,53,57,52,52,55,51,93,44,91,45,57,56,46,48,56,57,50,55,55,44,50,57,46,54,56,51,57,51,49,93,44,91,45,57,55,46,57,57,57,50,55,49,44,50,57,46,55,53,50,52,52,52,93,44,91,45,57,56,46,48,51,48,53,50,51,44,50,57,46,56,52,56,53,51,57,93,44,91,45,57,56,46,50,57,55,54,44,51,48,46,48,51,55,57,57,52,93,44,91,45,57,56,46,52,49,52,48,49,56,44,50,57,46,57,51,55,53,53,55,93,44,91,45,57,56,46,54,52,54,49,50,52,44,50,57,46,55,52,53,49,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,78,97,110,116,117,99,107,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,48,49,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,52,57,51,51,48,56,44,52,49,46,50,55,57,57,55,53,93,44,91,45,55,48,46,51,52,52,48,56,51,44,52,49,46,50,55,54,49,52,54,93,44,91,45,55,48,46,49,48,57,54,56,52,44,52,49,46,49,56,57,56,48,51,93,44,91,45,54,57,46,57,49,48,51,49,57,44,52,49,46,50,50,54,56,52,57,93,44,91,45,54,57,46,57,49,48,48,57,51,44,52,49,46,51,49,55,50,54,51,93,44,91,45,55,48,46,48,48,54,52,54,55,44,52,49,46,52,51,51,56,57,56,93,44,91,45,55,48,46,50,51,52,51,51,44,52,49,46,51,56,51,50,50,57,93,44,91,45,55,48,46,51,50,56,49,56,50,44,52,49,46,51,56,48,49,53,57,93,44,91,45,55,48,46,52,57,51,51,48,56,44,52,49,46,50,55,57,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,109,98,101,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,54,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,50,50,54,55,51,44,51,51,46,52,52,93,44,91,45,56,49,46,50,50,55,55,55,56,44,51,51,46,49,54,50,54,50,50,93,44,91,45,56,49,46,49,57,51,48,57,57,44,51,51,46,49,49,56,54,54,56,93,44,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,44,91,45,56,48,46,55,57,55,57,49,50,44,51,51,46,49,55,54,57,52,52,93,44,91,45,56,48,46,57,52,56,55,53,54,44,51,51,46,51,48,56,48,52,55,93,44,91,45,56,49,46,50,50,50,54,55,51,44,51,51,46,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,114,97,110,115,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,55,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,55,57,48,53,49,50,44,50,56,46,51,49,57,50,51,56,93,44,91,45,57,55,46,49,50,51,48,55,50,44,50,56,46,50,55,50,56,49,55,93,44,91,45,57,55,46,48,50,51,53,56,54,44,50,56,46,49,56,55,54,53,55,93,44,91,45,57,55,46,49,52,52,57,49,54,44,50,56,46,49,48,50,54,50,50,93,44,91,45,57,55,46,50,54,48,56,49,56,44,50,56,46,48,55,53,55,53,57,93,44,91,45,57,55,46,49,51,54,51,49,50,44,50,55,46,57,48,52,51,57,93,44,91,45,57,54,46,57,56,52,50,56,49,44,50,55,46,56,48,51,55,56,51,93,44,91,45,57,54,46,57,53,57,52,57,53,44,50,55,46,56,55,53,51,48,50,93,44,91,45,57,54,46,56,49,53,57,48,53,44,50,56,46,48,50,50,56,51,53,93,44,91,45,57,54,46,56,51,48,56,54,49,44,50,56,46,49,48,56,93,44,91,45,57,54,46,55,57,48,53,49,50,44,50,56,46,51,49,57,50,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,101,114,114,105,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,50,53,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,51,52,52,57,50,44,51,49,46,51,53,48,51,54,49,93,44,91,45,56,51,46,51,51,53,57,52,57,44,51,49,46,50,52,52,53,55,57,93,44,91,45,56,51,46,50,57,53,48,53,50,44,51,49,46,48,50,55,50,55,56,93,44,91,45,56,51,46,49,57,55,57,55,49,44,51,49,46,48,50,53,52,48,53,93,44,91,45,56,51,46,49,54,53,48,55,50,44,51,49,46,49,52,55,49,57,56,93,44,91,45,56,51,46,48,52,54,56,56,53,44,51,49,46,49,56,51,54,56,93,44,91,45,56,51,46,48,52,54,57,56,56,44,51,49,46,50,56,50,57,54,54,93,44,91,45,56,51,46,49,52,48,52,56,51,44,51,49,46,52,50,48,51,57,53,93,44,91,45,56,51,46,49,52,53,53,56,55,44,51,49,46,52,55,50,50,55,54,93,44,91,45,56,51,46,51,51,56,55,50,56,44,51,49,46,52,55,53,57,57,49,93,44,91,45,56,51,46,52,51,52,52,57,50,44,51,49,46,51,53,48,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,86,101,114,109,105,108,108,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,51,49,52,52,57,44,52,48,46,49,52,56,49,50,55,93,44,91,45,56,55,46,53,51,51,50,50,56,44,51,57,46,56,56,51,93,44,91,45,56,55,46,53,51,50,49,57,52,44,51,57,46,54,48,55,51,48,54,93,44,91,45,56,55,46,51,56,50,52,49,56,44,51,57,46,54,48,55,57,51,55,93,44,91,45,56,55,46,51,54,56,56,54,51,44,51,57,46,56,57,48,52,55,49,93,44,91,45,56,55,46,52,50,48,50,50,49,44,51,57,46,57,53,50,52,53,50,93,44,91,45,56,55,46,52,48,54,54,54,55,44,52,48,46,49,50,55,53,48,56,93,44,91,45,56,55,46,53,51,49,52,52,57,44,52,48,46,49,52,56,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,82,111,115,99,111,109,109,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,55,48,54,52,51,44,52,52,46,53,48,55,50,50,51,93,44,91,45,56,52,46,56,53,48,57,50,57,44,52,52,46,53,49,49,48,54,57,93,44,91,45,56,52,46,56,53,49,55,48,53,44,52,52,46,49,54,49,51,55,53,93,44,91,45,56,52,46,54,48,56,49,48,52,44,52,52,46,49,54,48,52,56,50,93,44,91,45,56,52,46,51,54,56,48,51,57,44,52,52,46,49,54,48,53,51,56,93,44,91,45,56,52,46,51,55,48,54,52,51,44,52,52,46,53,48,55,50,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,104,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,55,51,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,53,51,50,53,57,44,51,54,46,53,55,52,54,57,50,93,44,91,45,56,49,46,50,53,51,54,52,57,44,51,54,46,51,54,54,54,48,49,93,44,91,45,56,49,46,48,57,53,49,49,50,44,51,54,46,52,52,48,55,55,51,93,44,91,45,56,48,46,57,54,55,49,53,51,44,51,54,46,52,48,50,48,50,93,44,91,45,56,48,46,57,48,49,54,52,49,44,51,54,46,53,54,49,55,54,54,93,44,91,45,56,49,46,51,53,51,50,53,57,44,51,54,46,53,55,52,54,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,76,97,115,115,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,49,56,53,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,51,51,49,55,56,54,44,52,49,46,49,56,51,56,56,54,93,44,91,45,49,50,49,46,51,50,49,49,56,54,44,52,48,46,56,56,56,55,48,50,93,44,91,45,49,50,49,46,51,50,55,56,50,54,44,52,48,46,52,52,53,51,54,55,93,44,91,45,49,50,49,46,48,54,49,52,49,55,44,52,48,46,52,52,54,53,51,54,93,44,91,45,49,50,49,46,48,54,49,52,57,51,44,52,48,46,50,53,54,52,49,55,93,44,91,45,49,50,48,46,56,55,49,55,56,50,44,52,48,46,50,52,49,54,52,93,44,91,45,49,50,48,46,55,54,52,52,48,51,44,52,48,46,51,49,54,48,49,93,44,91,45,49,50,48,46,53,55,54,56,50,53,44,52,48,46,50,56,53,52,51,93,44,91,45,49,50,48,46,51,52,49,51,56,53,44,52,48,46,49,49,53,50,52,51,93,44,91,45,49,50,48,46,50,48,57,54,52,49,44,52,48,46,48,56,54,48,48,56,93,44,91,45,49,50,48,46,49,48,56,55,54,49,44,51,57,46,57,51,57,53,49,93,44,91,45,49,50,48,46,49,49,48,54,50,55,44,51,57,46,55,54,53,55,55,57,93,44,91,45,49,50,48,46,49,52,55,49,52,57,44,51,57,46,55,48,55,54,53,56,93,44,91,45,49,50,48,46,48,48,49,48,54,50,44,51,57,46,55,50,50,52,49,56,93,44,91,45,49,49,57,46,57,57,53,55,48,53,44,52,48,46,51,55,53,56,51,93,44,91,45,49,49,57,46,57,57,57,56,54,54,44,52,49,46,49,56,51,57,55,52,93,44,91,45,49,50,49,46,51,51,49,55,56,54,44,52,49,46,49,56,51,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,49,48,34,44,34,78,65,77,69,34,58,34,70,97,108,108,115,32,67,104,117,114,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,55,50,50,55,54,44,51,56,46,56,57,51,50,52,53,93,44,91,45,55,55,46,49,56,57,55,53,52,44,51,56,46,56,55,56,49,51,54,93,44,91,45,55,55,46,49,52,57,55,48,49,44,51,56,46,56,55,53,54,55,93,44,91,45,55,55,46,49,55,50,50,55,54,44,51,56,46,56,57,51,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,77,97,110,97,116,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,56,53,51,44,34,98,101,100,115,34,58,56,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,44,91,45,56,50,46,53,53,51,54,54,54,44,50,55,46,54,52,53,52,54,53,93,44,91,45,56,50,46,55,52,53,49,51,55,44,50,55,46,53,55,48,53,53,93,44,91,45,56,50,46,56,50,51,48,50,57,44,50,55,46,53,55,48,53,53,93,44,91,45,56,50,46,55,48,53,52,51,56,44,50,55,46,51,56,57,54,54,56,93,44,91,45,56,50,46,50,53,50,50,54,52,44,50,55,46,51,56,54,50,52,51,93,44,91,45,56,50,46,50,53,51,53,57,54,44,50,55,46,50,48,56,57,49,54,93,44,91,45,56,50,46,48,53,54,52,57,55,44,50,55,46,50,48,55,55,54,57,93,44,91,45,56,50,46,48,53,53,55,53,51,44,50,55,46,51,51,56,50,54,52,93,44,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,117,115,107,105,110,103,117,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,48,55,54,44,34,98,101,100,115,34,58,51,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,56,55,49,48,53,44,52,48,46,49,54,54,56,56,93,44,91,45,56,50,46,49,57,56,55,55,50,44,51,57,46,57,53,48,49,52,93,44,91,45,56,50,46,50,51,51,57,55,52,44,51,57,46,57,49,51,50,54,93,44,91,45,56,50,46,48,55,54,54,51,57,44,51,57,46,55,55,48,57,54,93,44,91,45,56,49,46,54,57,55,52,52,50,44,51,57,46,55,53,53,53,55,50,93,44,91,45,56,49,46,54,57,52,49,52,54,44,51,57,46,56,52,50,54,51,54,93,44,91,45,56,49,46,55,50,56,54,49,49,44,51,57,46,57,51,49,55,50,56,93,44,91,45,56,49,46,55,49,54,50,55,54,44,52,48,46,49,53,50,49,54,54,93,44,91,45,56,50,46,49,56,55,49,48,53,44,52,48,46,49,54,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,104,97,102,102,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,53,57,57,50,49,52,44,51,56,46,57,57,55,57,57,52,93,44,91,45,49,48,54,46,52,54,53,48,51,50,44,51,56,46,57,49,48,51,53,52,93,44,91,45,49,48,54,46,52,49,54,50,54,51,44,51,56,46,56,50,51,56,53,93,44,91,45,49,48,54,46,52,51,48,49,53,57,44,51,56,46,54,53,51,52,54,56,93,44,91,45,49,48,54,46,51,52,56,49,48,56,44,51,56,46,53,49,50,52,57,57,93,44,91,45,49,48,54,46,50,52,54,57,52,44,51,56,46,52,50,50,55,54,56,93,44,91,45,49,48,54,46,48,49,48,55,53,49,44,51,56,46,52,52,54,53,54,54,93,44,91,45,49,48,53,46,57,48,56,55,49,55,44,51,56,46,53,48,53,54,51,49,93,44,91,45,49,48,53,46,56,55,57,49,55,54,44,51,56,46,54,48,55,51,49,50,93,44,91,45,49,48,53,46,57,54,57,55,53,44,51,56,46,54,57,51,53,53,49,93,44,91,45,49,48,53,46,57,48,54,53,56,55,44,51,56,46,56,48,54,57,54,50,93,44,91,45,49,48,54,46,48,50,56,49,51,56,44,51,56,46,57,52,50,56,52,57,93,44,91,45,49,48,54,46,49,48,53,55,53,56,44,51,56,46,57,52,48,51,54,52,93,44,91,45,49,48,54,46,49,57,49,48,48,54,44,51,57,46,48,53,54,48,55,51,93,44,91,45,49,48,54,46,53,55,55,57,54,54,44,51,57,46,48,53,55,57,48,56,93,44,91,45,49,48,54,46,53,57,57,50,49,52,44,51,56,46,57,57,55,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,114,111,119,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,48,52,54,54,54,44,51,56,46,53,49,54,52,48,57,93,44,91,45,49,48,52,46,48,53,51,57,50,49,44,51,56,46,53,50,50,51,57,51,93,44,91,45,49,48,52,46,48,53,56,50,52,50,44,51,56,46,49,52,54,52,57,50,93,44,91,45,49,48,51,46,56,51,53,54,49,54,44,51,56,46,49,49,51,51,52,93,44,91,45,49,48,51,46,54,49,57,49,55,50,44,51,56,46,49,49,51,51,53,53,93,44,91,45,49,48,51,46,53,48,57,51,54,52,44,51,56,46,49,55,50,53,49,52,93,44,91,45,49,48,51,46,53,48,49,55,54,52,44,51,56,46,50,54,53,48,49,54,93,44,91,45,49,48,51,46,53,48,52,54,54,54,44,51,56,46,53,49,54,52,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,70,114,101,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,48,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,52,50,52,50,54,44,51,56,46,54,52,57,56,56,50,93,44,91,45,49,48,53,46,50,52,48,51,54,50,44,51,56,46,54,52,55,53,57,53,93,44,91,45,49,48,53,46,51,50,57,49,51,52,44,51,56,46,54,57,55,50,48,53,93,44,91,45,49,48,53,46,57,54,57,55,53,44,51,56,46,54,57,51,53,53,49,93,44,91,45,49,48,53,46,56,55,57,49,55,54,44,51,56,46,54,48,55,51,49,50,93,44,91,45,49,48,53,46,57,48,56,55,49,55,44,51,56,46,53,48,53,54,51,49,93,44,91,45,49,48,54,46,48,49,48,55,53,49,44,51,56,46,52,52,54,53,54,54,93,44,91,45,49,48,53,46,55,57,54,56,57,55,44,51,56,46,50,54,53,48,52,55,93,44,91,45,49,48,53,46,48,52,57,50,49,53,44,51,56,46,50,53,55,57,55,51,93,44,91,45,49,48,52,46,57,52,48,51,54,54,44,51,56,46,50,53,56,50,55,53,93,44,91,45,49,48,52,46,57,52,49,53,51,51,44,51,56,46,53,49,57,53,54,57,93,44,91,45,49,48,52,46,57,52,50,52,50,54,44,51,56,46,54,52,57,56,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,80,101,97,114,108,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,49,52,57,44,34,98,101,100,115,34,58,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,52,56,57,53,44,51,49,46,48,49,48,51,55,93,44,91,45,56,57,46,52,55,54,48,50,50,44,51,48,46,57,56,50,57,48,49,93,44,91,45,56,57,46,54,53,52,48,51,56,44,51,49,46,48,48,50,53,48,50,93,44,91,45,56,57,46,55,50,56,49,49,57,44,51,49,46,48,48,50,51,93,44,91,45,56,57,46,56,52,50,51,51,44,51,48,46,54,54,54,48,49,53,93,44,91,45,56,57,46,55,53,50,56,48,55,44,51,48,46,53,48,50,57,54,50,93,44,91,45,56,57,46,54,57,48,48,51,53,44,51,48,46,52,53,57,51,51,51,93,44,91,45,56,57,46,53,52,52,53,49,44,51,48,46,53,49,54,56,54,50,93,44,91,45,56,57,46,53,52,52,50,51,50,44,51,48,46,54,52,56,51,54,56,93,44,91,45,56,57,46,51,52,49,52,52,54,44,51,48,46,54,52,55,55,50,93,44,91,45,56,57,46,51,52,48,56,48,54,44,51,48,46,57,48,57,57,49,50,93,44,91,45,56,57,46,51,52,56,57,53,44,51,49,46,48,49,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,50,56,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,52,51,52,54,56,44,51,49,46,52,51,51,52,53,56,93,44,91,45,56,57,46,49,52,54,48,57,50,44,51,49,46,52,51,52,48,53,50,93,44,91,45,56,57,46,49,51,55,57,54,55,44,51,48,46,57,48,57,56,55,55,93,44,91,45,56,56,46,56,56,53,48,51,56,44,51,48,46,57,49,48,55,56,56,93,44,91,45,56,56,46,56,51,52,51,51,57,44,51,48,46,57,57,55,57,56,51,93,44,91,45,56,56,46,56,52,49,55,48,55,44,51,49,46,52,51,51,55,48,51,93,44,91,45,56,56,46,57,52,51,52,54,56,44,51,49,46,52,51,51,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,51,48,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,56,54,56,51,52,44,52,49,46,55,52,48,51,50,54,93,44,91,45,49,48,48,46,50,53,49,50,50,52,44,52,49,46,55,51,57,56,49,55,93,44,91,45,49,48,48,46,50,53,49,48,57,56,44,52,49,46,51,57,51,50,57,56,93,44,91,45,49,48,48,46,50,50,52,50,51,53,44,52,49,46,48,52,54,53,57,55,93,44,91,45,57,57,46,52,50,53,57,56,54,44,52,49,46,48,52,54,52,55,49,93,44,91,45,57,57,46,50,48,55,53,54,52,44,52,49,46,48,52,55,48,48,51,93,44,91,45,57,57,46,50,48,51,50,54,49,44,52,49,46,51,57,52,49,52,93,44,91,45,57,57,46,50,49,50,48,49,54,44,52,49,46,55,52,48,54,49,51,93,44,91,45,57,57,46,50,50,49,56,51,44,52,49,46,55,52,48,55,57,50,93,44,91,45,57,57,46,54,56,54,56,51,52,44,52,49,46,55,52,48,51,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,44,91,45,56,53,46,49,54,52,55,52,52,44,51,48,46,54,48,56,48,55,57,93,44,91,45,56,53,46,49,55,49,56,57,49,44,51,48,46,53,54,52,51,51,54,93,44,91,45,56,53,46,51,56,51,57,52,56,44,51,48,46,53,54,54,56,53,54,93,44,91,45,56,53,46,51,56,57,54,55,57,44,51,48,46,50,48,48,57,55,51,93,44,91,45,56,53,46,49,49,53,54,54,44,51,48,46,49,57,57,57,55,54,93,44,91,45,56,53,46,48,53,50,55,55,55,44,51,48,46,50,56,55,52,48,54,93,44,91,45,56,53,46,48,51,50,57,51,49,44,51,48,46,52,50,48,50,57,57,93,44,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,75,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,54,56,56,44,34,98,101,100,115,34,58,55,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,50,51,52,56,56,44,51,57,46,48,55,52,50,56,50,93,44,91,45,56,52,46,54,49,53,54,54,52,44,51,56,46,56,48,50,50,55,55,93,44,91,45,56,52,46,53,51,50,50,56,56,44,51,56,46,55,57,49,57,51,55,93,44,91,45,56,52,46,52,49,56,49,48,55,44,51,56,46,56,48,54,53,57,54,93,44,91,45,56,52,46,52,50,55,50,56,53,44,51,56,46,57,56,48,56,54,51,93,44,91,45,56,52,46,53,48,54,49,54,49,44,51,57,46,48,57,53,49,55,55,93,44,91,45,56,52,46,54,50,51,52,56,56,44,51,57,46,48,55,52,50,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,104,105,99,107,97,115,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,57,57,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,52,51,56,49,44,52,51,46,50,49,50,56,49,51,93,44,91,45,57,50,46,53,53,52,50,49,49,44,52,50,46,57,48,55,49,49,50,93,44,91,45,57,50,46,48,56,49,53,54,56,44,52,50,46,57,48,55,48,49,51,93,44,91,45,57,50,46,48,56,49,49,52,54,44,52,51,46,48,56,50,55,57,52,93,44,91,45,57,50,46,48,56,48,57,55,54,44,52,51,46,50,49,50,57,52,55,93,44,91,45,57,50,46,53,53,52,51,56,49,44,52,51,46,50,49,50,56,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,50,48,48,44,34,98,101,100,115,34,58,49,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,51,57,55,51,50,44,52,50,46,49,53,50,51,50,93,44,91,45,56,56,46,57,52,49,50,55,57,44,52,49,46,56,57,49,55,53,50,93,44,91,45,56,56,46,57,51,56,54,55,57,44,52,49,46,54,50,56,51,49,54,93,44,91,45,56,56,46,54,48,50,50,52,44,52,49,46,54,51,49,51,56,57,93,44,91,45,56,56,46,54,48,49,57,51,51,44,52,49,46,55,49,57,53,54,51,93,44,91,45,56,56,46,53,56,56,54,53,55,44,52,50,46,49,53,51,53,57,93,44,91,45,56,56,46,55,48,53,53,56,53,44,52,50,46,49,53,51,53,51,55,93,44,91,45,56,56,46,57,51,57,55,51,50,44,52,50,46,49,53,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,56,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,55,48,52,49,53,44,52,51,46,50,53,53,51,53,56,93,44,91,45,57,51,46,57,55,49,50,51,56,44,52,50,46,57,48,55,55,54,50,93,44,91,45,57,51,46,52,57,56,54,49,55,44,52,50,46,57,48,56,53,49,50,93,44,91,45,57,51,46,52,57,55,54,51,53,44,52,51,46,50,53,53,52,54,56,93,44,91,45,57,51,46,57,55,48,52,49,53,44,52,51,46,50,53,53,51,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,116,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,49,52,52,55,55,49,44,52,55,46,48,49,48,51,48,55,93,44,91,45,49,48,50,46,53,50,53,51,54,52,44,52,54,46,57,56,49,50,56,56,93,44,91,45,49,48,51,46,48,51,50,54,56,49,44,52,54,46,57,56,48,53,56,93,44,91,45,49,48,51,46,50,51,49,48,53,54,44,52,54,46,57,56,48,50,57,54,93,44,91,45,49,48,51,46,50,51,49,54,53,54,44,52,54,46,54,50,57,55,54,52,93,44,91,45,49,48,50,46,57,50,55,52,53,49,44,52,54,46,54,51,48,48,50,93,44,91,45,49,48,50,46,48,57,54,55,52,52,44,52,54,46,54,51,49,48,50,54,93,44,91,45,49,48,50,46,48,57,54,50,52,44,52,54,46,55,49,55,55,55,50,93,44,91,45,49,48,50,46,48,57,53,57,48,52,44,52,54,46,57,56,49,51,50,57,93,44,91,45,49,48,50,46,49,52,52,55,55,49,44,52,55,46,48,49,48,51,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,76,117,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,53,52,56,54,50,44,52,55,46,51,48,53,52,56,50,93,44,91,45,56,53,46,56,54,52,57,51,50,44,52,54,46,53,48,52,55,53,56,93,44,91,45,56,53,46,56,54,53,48,50,53,44,52,54,46,50,52,52,54,51,49,93,44,91,45,56,53,46,50,51,55,56,51,57,44,52,54,46,50,52,53,52,51,93,44,91,45,56,53,46,50,51,52,51,51,44,52,55,46,48,52,55,54,49,93,44,91,45,56,53,46,56,53,52,56,54,50,44,52,55,46,51,48,53,52,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,48,54,44,34,98,101,100,115,34,58,50,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,53,54,50,53,49,50,44,51,52,46,50,56,57,49,56,51,93,44,91,45,57,55,46,53,54,48,55,54,49,44,51,52,46,48,55,49,49,53,93,44,91,45,57,54,46,57,54,57,54,50,55,44,51,52,46,48,55,49,48,50,93,44,91,45,57,54,46,57,51,51,53,48,51,44,51,52,46,49,55,50,55,52,56,93,44,91,45,57,54,46,57,51,51,51,48,53,44,51,52,46,51,51,50,53,54,49,93,44,91,45,57,55,46,48,51,56,50,51,57,44,51,52,46,51,55,53,55,48,55,93,44,91,45,57,55,46,51,53,50,49,49,53,44,51,52,46,51,55,54,49,56,56,93,44,91,45,57,55,46,51,53,50,49,56,51,44,51,52,46,53,48,54,55,57,54,93,44,91,45,57,55,46,53,54,50,51,50,51,44,51,52,46,53,48,55,48,51,54,93,44,91,45,57,55,46,53,54,50,53,49,50,44,51,52,46,50,56,57,49,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,80,97,115,113,117,111,116,97,110,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,53,51,55,49,49,44,51,54,46,51,55,56,48,57,50,93,44,91,45,55,54,46,49,53,55,57,53,51,44,51,54,46,48,53,57,53,49,55,93,44,91,45,55,54,46,48,50,50,54,48,55,44,51,54,46,48,57,54,55,50,53,93,44,91,45,55,54,46,48,54,56,54,48,53,44,51,54,46,50,49,54,53,57,93,44,91,45,55,54,46,50,51,56,50,52,52,44,51,54,46,51,55,49,53,56,56,93,44,91,45,55,54,46,52,57,49,51,51,54,44,51,54,46,53,49,48,54,55,55,93,44,91,45,55,54,46,52,53,51,55,49,49,44,51,54,46,51,55,56,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,84,97,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,56,56,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,48,54,51,49,54,44,51,54,46,57,57,53,50,54,55,93,44,91,45,49,48,53,46,57,55,49,56,56,57,44,51,54,46,56,56,54,50,52,55,93,44,91,45,49,48,53,46,57,55,49,56,51,54,44,51,54,46,54,51,50,52,52,52,93,44,91,45,49,48,53,46,57,51,56,55,53,52,44,51,54,46,52,54,50,52,48,50,93,44,91,45,49,48,53,46,57,54,49,52,49,52,44,51,54,46,51,53,51,48,54,54,93,44,91,45,49,48,54,46,48,53,56,51,54,52,44,51,54,46,50,57,54,57,55,56,93,44,91,45,49,48,53,46,56,53,54,57,52,55,44,51,54,46,50,51,48,52,51,52,93,44,91,45,49,48,53,46,55,51,53,56,56,51,44,51,54,46,49,48,48,49,51,51,93,44,91,45,49,48,53,46,53,51,48,51,56,44,51,54,46,48,49,51,48,49,52,93,44,91,45,49,48,53,46,51,52,49,50,54,52,44,51,54,46,50,54,49,56,54,51,93,44,91,45,49,48,53,46,51,50,54,54,55,52,44,51,54,46,53,48,48,48,51,49,93,44,91,45,49,48,53,46,51,55,48,54,51,56,44,51,54,46,54,56,49,48,51,50,93,44,91,45,49,48,53,46,50,51,48,54,51,50,44,51,54,46,55,50,51,55,56,52,93,44,91,45,49,48,53,46,50,48,48,49,49,55,44,51,54,46,57,49,53,54,50,56,93,44,91,45,49,48,53,46,50,50,48,53,48,54,44,51,54,46,57,57,52,57,55,52,93,44,91,45,49,48,53,46,55,49,56,52,54,51,44,51,54,46,57,57,53,56,52,49,93,44,91,45,49,48,54,46,48,48,54,51,49,54,44,51,54,46,57,57,53,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,111,108,105,118,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,57,50,44,34,98,101,100,115,34,58,49,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,53,55,48,48,50,44,51,51,46,57,56,55,53,56,54,93,44,91,45,57,48,46,54,53,57,52,53,55,44,51,52,46,49,49,56,56,54,55,93,44,91,45,57,48,46,57,53,53,57,55,52,44,51,52,46,49,50,48,49,50,53,93,44,91,45,57,48,46,57,53,53,49,55,44,51,52,46,49,49,56,56,51,51,93,44,91,45,57,49,46,48,49,49,53,49,44,51,51,46,57,50,52,55,51,51,93,44,91,45,57,49,46,48,55,51,48,49,49,44,51,51,46,56,53,55,52,52,57,93,44,91,45,57,49,46,48,54,56,50,57,44,51,51,46,55,49,54,52,55,55,93,44,91,45,57,49,46,49,51,48,52,52,53,44,51,51,46,54,48,54,48,51,52,93,44,91,45,57,49,46,50,51,48,56,57,55,44,51,51,46,53,54,49,52,93,44,91,45,57,49,46,50,49,53,54,55,49,44,51,51,46,53,50,57,52,50,51,93,44,91,45,57,48,46,55,54,51,53,48,57,44,51,51,46,53,50,57,51,56,57,93,44,91,45,57,48,46,54,53,56,54,44,51,51,46,54,49,54,50,55,50,93,44,91,45,57,48,46,54,53,55,48,48,50,44,51,51,46,57,56,55,53,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,78,121,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,55,48,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,54,48,48,57,52,54,44,51,57,46,49,54,49,52,54,51,93,44,91,45,49,49,55,46,51,51,49,56,53,55,44,51,57,46,49,54,51,52,51,93,44,91,45,49,49,55,46,55,55,53,52,54,56,44,51,57,46,48,57,51,52,50,53,93,44,91,45,49,49,55,46,56,54,53,49,49,54,44,51,57,46,48,55,51,54,53,52,93,44,91,45,49,49,56,46,49,57,54,50,55,52,44,51,56,46,57,57,57,57,50,54,93,44,91,45,49,49,56,46,49,57,54,50,51,53,44,51,56,46,57,49,57,48,53,56,93,44,91,45,49,49,55,46,54,57,49,48,50,49,44,51,56,46,52,55,51,55,57,55,93,44,91,45,49,49,55,46,49,54,53,54,49,50,44,51,56,46,48,48,49,54,57,50,93,44,91,45,49,49,55,46,49,54,54,48,48,49,44,51,54,46,57,55,49,49,49,49,93,44,91,45,49,49,54,46,51,56,48,51,52,55,44,51,54,46,51,55,52,57,54,49,93,44,91,45,49,49,53,46,56,52,53,57,57,52,44,51,53,46,57,54,51,55,48,55,93,44,91,45,49,49,53,46,56,52,53,55,54,50,44,51,54,46,49,55,48,55,54,52,93,44,91,45,49,49,53,46,56,57,53,55,53,51,44,51,54,46,49,55,50,50,50,55,93,44,91,45,49,49,53,46,56,57,54,57,50,53,44,51,54,46,56,52,50,48,56,53,93,44,91,45,49,49,53,46,56,57,51,56,53,55,44,51,56,46,48,53,48,53,51,49,93,44,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,48,53,48,55,53,55,93,44,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,54,55,55,51,50,50,93,44,91,45,49,49,53,46,57,48,55,48,55,49,44,51,57,46,49,54,49,56,52,56,93,44,91,45,49,49,54,46,54,48,48,57,52,54,44,51,57,46,49,54,49,52,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,72,97,119,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,52,48,50,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,51,48,52,51,51,44,51,54,46,53,57,51,55,54,49,93,44,91,45,56,51,46,49,49,57,51,57,51,44,51,54,46,53,49,52,50,57,93,44,91,45,56,51,46,50,56,48,53,57,53,44,51,54,46,51,57,52,54,56,57,93,44,91,45,56,51,46,50,53,53,50,57,50,44,51,54,46,50,56,57,48,57,50,93,44,91,45,56,51,46,49,53,49,54,56,57,44,51,54,46,51,49,56,49,57,50,93,44,91,45,56,51,46,48,56,50,51,49,50,44,51,54,46,50,52,50,50,57,54,93,44,91,45,56,50,46,56,52,48,52,56,49,44,51,54,46,51,55,48,54,57,56,93,44,91,45,56,50,46,55,48,50,53,54,54,44,51,54,46,52,49,48,52,49,50,93,44,91,45,56,50,46,54,56,48,54,55,55,44,51,54,46,52,51,49,56,93,44,91,45,56,50,46,54,48,57,49,55,54,44,51,54,46,53,57,52,48,57,57,93,44,91,45,56,50,46,56,51,48,52,51,51,44,51,54,46,53,57,51,55,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,111,119,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,57,53,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,53,53,53,57,44,52,54,46,50,56,48,48,56,49,93,44,91,45,49,48,52,46,48,52,53,53,52,55,44,52,53,46,57,52,53,51,48,56,93,44,91,45,49,48,50,46,57,57,53,50,52,56,44,52,53,46,57,52,53,49,54,55,93,44,91,45,49,48,50,46,57,57,53,50,52,53,44,52,54,46,50,56,48,54,53,49,93,44,91,45,49,48,52,46,48,52,53,53,53,57,44,52,54,46,50,56,48,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,48,54,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,51,52,56,54,51,44,52,48,46,49,54,53,49,51,49,93,44,91,45,55,56,46,50,57,57,48,48,51,44,51,57,46,56,50,53,53,93,44,91,45,55,56,46,51,56,48,53,57,57,44,51,57,46,55,50,50,53,57,57,93,44,91,45,55,56,46,51,52,50,56,51,52,44,51,57,46,55,50,50,50,54,51,93,44,91,45,55,56,46,48,57,57,52,48,51,44,51,57,46,55,50,50,48,57,57,93,44,91,45,55,56,46,48,48,50,55,44,51,57,46,56,50,54,53,57,57,93,44,91,45,55,55,46,56,54,52,52,56,57,44,52,48,46,48,54,49,53,54,56,93,44,91,45,55,56,46,49,51,52,56,54,51,44,52,48,46,49,54,53,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,48,57,49,44,34,98,101,100,115,34,58,49,52,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,56,52,54,55,53,44,51,48,46,49,52,55,52,52,51,93,44,91,45,57,50,46,50,48,50,55,50,50,44,51,48,46,49,52,50,56,54,93,44,91,45,57,49,46,57,54,52,52,53,56,44,51,48,46,48,51,54,57,49,56,93,44,91,45,57,49,46,57,53,48,57,57,56,44,51,48,46,48,55,51,50,49,51,93,44,91,45,57,49,46,57,55,57,57,51,50,44,51,48,46,49,56,50,53,56,53,93,44,91,45,57,49,46,57,52,57,48,52,55,44,51,48,46,50,55,54,55,55,49,93,44,91,45,57,49,46,57,56,56,55,49,56,44,51,48,46,51,54,56,53,57,56,93,44,91,45,57,50,46,49,52,50,49,56,52,44,51,48,46,50,57,56,56,49,55,93,44,91,45,57,50,46,50,56,52,54,55,53,44,51,48,46,49,52,55,52,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,52,50,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,50,48,54,54,54,44,51,51,46,51,57,54,49,57,53,93,44,91,45,57,56,46,52,50,54,53,53,51,44,51,51,46,48,48,55,57,49,51,93,44,91,45,57,56,46,48,53,54,48,57,52,44,51,51,46,48,48,51,51,51,50,93,44,91,45,57,55,46,57,50,49,54,52,50,44,51,51,46,48,48,49,50,56,52,93,44,91,45,57,55,46,57,49,56,49,56,57,44,51,51,46,52,51,51,56,55,51,93,44,91,45,57,55,46,57,55,56,57,49,57,44,51,51,46,52,54,55,49,50,57,93,44,91,45,57,56,46,52,50,49,52,49,57,44,51,51,46,52,54,54,55,57,55,93,44,91,45,57,56,46,52,50,48,54,54,54,44,51,51,46,51,57,54,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,83,116,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,56,52,53,53,57,44,52,49,46,49,52,57,51,57,52,93,44,91,45,56,57,46,57,56,53,52,55,57,44,52,48,46,57,55,52,52,57,53,93,44,91,45,56,57,46,54,51,56,55,50,55,44,52,48,46,57,55,51,55,48,55,93,44,91,45,56,57,46,54,51,56,53,51,54,44,52,49,46,49,52,56,53,52,53,93,44,91,45,56,57,46,54,51,56,55,48,56,44,52,49,46,50,51,51,56,54,50,93,44,91,45,56,57,46,56,53,55,54,49,54,44,52,49,46,50,51,52,52,55,57,93,44,91,45,56,57,46,56,54,56,49,53,50,44,52,49,46,49,52,57,52,57,51,93,44,91,45,56,57,46,57,56,52,53,53,57,44,52,49,46,49,52,57,51,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,52,51,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,56,56,56,52,52,52,44,51,53,46,48,50,57,56,56,57,93,44,91,45,57,57,46,56,56,56,50,50,50,44,51,52,46,57,52,51,56,57,55,93,44,91,45,57,57,46,55,51,49,48,57,50,44,51,52,46,57,52,52,48,53,56,93,44,91,45,57,57,46,55,49,57,55,57,55,44,51,52,46,55,54,56,52,53,49,93,44,91,45,57,57,46,54,54,54,56,52,57,44,51,52,46,55,50,52,53,53,53,93,44,91,45,57,57,46,52,50,51,50,48,49,44,51,52,46,55,50,53,48,50,93,44,91,45,57,57,46,52,48,53,56,50,49,44,51,52,46,56,49,51,48,51,56,93,44,91,45,57,57,46,50,52,54,52,54,50,44,51,52,46,56,50,50,49,49,52,93,44,91,45,57,57,46,51,48,54,50,50,44,51,52,46,56,53,55,54,51,50,93,44,91,45,57,57,46,51,50,54,55,53,55,44,51,53,46,48,49,56,57,49,50,93,44,91,45,57,57,46,52,48,57,50,57,49,44,51,53,46,49,49,52,53,48,57,93,44,91,45,57,57,46,55,56,50,55,50,55,44,51,53,46,49,49,54,57,52,93,44,91,45,57,57,46,56,56,56,52,52,52,44,51,53,46,48,50,57,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,49,34,44,34,78,65,77,69,34,58,34,72,101,109,112,104,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,54,49,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,52,48,50,50,49,44,51,54,46,48,53,54,52,57,49,93,44,91,45,49,48,48,46,53,52,48,49,53,56,44,51,53,46,54,49,57,50,57,54,93,44,91,45,49,48,48,46,48,48,48,51,57,50,44,51,53,46,54,49,57,49,49,53,93,44,91,45,49,48,48,46,48,48,48,51,57,54,44,51,53,46,56,56,49,50,51,51,93,44,91,45,49,48,48,46,48,48,48,51,57,57,44,51,54,46,48,53,53,54,55,55,93,44,91,45,49,48,48,46,53,52,48,50,50,49,44,51,54,46,48,53,54,52,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,78,101,122,32,80,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,49,53,53,44,34,98,101,100,115,34,58,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,52,53,54,48,57,56,44,52,54,46,54,50,57,48,57,55,93,44,91,45,49,49,54,46,54,49,49,55,52,44,52,54,46,54,51,49,50,52,53,93,44,91,45,49,49,54,46,55,49,57,48,56,53,44,52,54,46,53,52,50,56,55,52,93,44,91,45,49,49,55,46,48,51,57,54,57,52,44,52,54,46,53,52,49,55,48,57,93,44,91,45,49,49,55,46,48,51,57,55,54,54,44,52,54,46,52,50,53,56,56,55,93,44,91,45,49,49,54,46,57,50,49,51,53,44,52,54,46,49,54,52,53,49,52,93,44,91,45,49,49,54,46,57,49,54,48,55,49,44,52,53,46,57,57,53,51,53,55,93,44,91,45,49,49,54,46,55,57,52,53,54,50,44,52,53,46,56,53,54,48,52,57,93,44,91,45,49,49,54,46,55,48,49,56,49,57,44,52,53,46,57,57,54,51,56,49,93,44,91,45,49,49,54,46,55,49,51,52,57,54,44,52,54,46,51,50,53,53,50,55,93,44,91,45,49,49,54,46,51,54,56,56,48,49,44,52,54,46,51,52,51,50,49,55,93,44,91,45,49,49,54,46,51,54,57,49,50,50,44,52,54,46,52,54,54,57,50,51,93,44,91,45,49,49,54,46,52,53,49,55,57,50,44,52,54,46,53,48,48,54,57,56,93,44,91,45,49,49,54,46,52,53,54,48,57,56,44,52,54,46,54,50,57,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,87,97,108,119,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,54,48,50,50,51,44,52,53,46,50,52,54,56,49,93,44,91,45,57,57,46,55,48,56,57,56,55,44,52,53,46,50,52,53,56,54,54,93,44,91,45,57,57,46,55,48,55,55,48,53,44,52,53,46,53,57,51,51,57,49,93,44,91,45,57,57,46,55,49,55,52,54,54,44,52,53,46,53,57,51,52,50,56,93,44,91,45,49,48,48,46,52,51,48,48,55,57,44,52,53,46,53,57,52,56,50,51,93,44,91,45,49,48,48,46,52,56,54,53,54,49,44,52,53,46,53,51,54,53,50,49,93,44,91,45,49,48,48,46,51,52,49,57,50,52,44,52,53,46,52,55,50,57,48,52,93,44,91,45,49,48,48,46,50,55,52,49,55,54,44,52,53,46,51,56,49,56,52,53,93,44,91,45,49,48,48,46,50,54,48,50,50,51,44,52,53,46,50,52,54,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,78,97,112,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,53,51,48,44,34,98,101,100,115,34,58,52,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,51,57,53,48,53,54,44,51,56,46,56,54,52,50,52,53,93,44,91,45,49,50,50,46,52,54,51,56,57,44,51,56,46,55,48,53,50,48,51,93,44,91,45,49,50,50,46,54,50,55,51,57,54,44,51,56,46,54,54,55,53,48,54,93,44,91,45,49,50,50,46,54,52,54,50,54,56,44,51,56,46,53,57,57,49,50,93,44,91,45,49,50,50,46,53,52,51,56,57,51,44,51,56,46,53,49,57,57,54,54,93,44,91,45,49,50,50,46,51,53,57,57,50,52,44,51,56,46,50,51,48,53,48,49,93,44,91,45,49,50,50,46,52,48,54,55,56,54,44,51,56,46,49,53,53,54,51,50,93,44,91,45,49,50,50,46,49,57,53,51,56,44,51,56,46,49,53,53,48,49,55,93,44,91,45,49,50,50,46,50,48,53,57,56,50,44,51,56,46,51,49,53,55,49,51,93,44,91,45,49,50,50,46,48,54,52,55,55,57,44,51,56,46,51,49,53,57,49,50,93,44,91,45,49,50,50,46,49,50,54,51,56,57,44,51,56,46,52,50,56,57,49,56,93,44,91,45,49,50,50,46,49,48,51,50,56,49,44,51,56,46,53,49,51,51,52,56,93,44,91,45,49,50,50,46,50,56,55,57,57,56,44,51,56,46,56,51,57,57,51,49,93,44,91,45,49,50,50,46,51,57,53,48,53,54,44,51,56,46,56,54,52,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,111,116,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,50,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,54,49,57,53,54,44,51,52,46,52,48,53,57,52,56,93,44,91,45,57,56,46,54,48,57,54,54,44,51,52,46,51,51,51,55,50,93,44,91,45,57,56,46,54,48,57,57,56,55,44,51,52,46,49,53,55,49,53,52,93,44,91,45,57,56,46,52,56,54,51,50,56,44,51,52,46,48,54,50,53,57,56,93,44,91,45,57,56,46,52,50,51,53,51,51,44,51,52,46,48,56,50,56,52,51,93,44,91,45,57,56,46,51,54,52,48,50,51,44,51,52,46,49,53,55,49,48,57,93,44,91,45,57,56,46,49,51,57,48,55,50,44,51,52,46,49,52,49,56,55,93,44,91,45,57,56,46,49,51,57,50,50,55,44,51,52,46,50,56,57,56,50,52,93,44,91,45,57,56,46,49,52,50,49,52,56,44,51,52,46,53,48,54,57,57,52,93,44,91,45,57,56,46,50,57,53,57,50,56,44,51,52,46,52,52,57,48,52,51,93,44,91,45,57,56,46,53,48,52,57,53,56,44,51,52,46,52,52,57,52,49,52,93,44,91,45,57,56,46,54,54,49,57,53,54,44,51,52,46,52,48,53,57,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,57,53,55,54,53,44,51,56,46,50,48,52,48,56,51,93,44,91,45,57,49,46,49,48,48,48,49,55,44,51,55,46,55,52,48,48,49,50,93,44,91,45,57,48,46,54,52,53,49,51,53,44,51,55,46,55,51,52,56,49,51,93,44,91,45,57,48,46,54,51,57,57,56,44,51,56,46,48,55,54,53,52,56,93,44,91,45,57,48,46,55,56,48,49,56,53,44,51,56,46,50,48,52,49,49,50,93,44,91,45,57,49,46,48,57,53,55,54,53,44,51,56,46,50,48,52,48,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,97,121,117,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,56,54,56,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,49,51,56,48,54,44,52,51,46,48,50,52,48,51,53,93,44,91,45,55,54,46,55,51,51,52,53,52,44,52,50,46,55,50,55,56,57,53,93,44,91,45,55,54,46,54,54,54,53,52,51,44,52,50,46,54,50,51,52,53,55,93,44,91,45,55,54,46,50,54,53,53,56,52,44,52,50,46,54,50,51,53,56,56,93,44,91,45,55,54,46,50,55,52,54,55,51,44,52,50,46,55,55,49,50,53,55,93,44,91,45,55,54,46,51,53,54,57,55,52,44,52,50,46,56,52,57,52,53,93,44,91,45,55,54,46,52,53,48,55,51,56,44,52,50,46,56,52,53,55,54,93,44,91,45,55,54,46,52,55,57,50,50,52,44,52,51,46,50,50,55,53,49,57,93,44,91,45,55,54,46,54,48,53,48,49,50,44,52,51,46,50,53,51,53,55,93,44,91,45,55,54,46,54,52,52,55,49,50,44,52,51,46,55,48,51,52,54,54,93,44,91,45,55,54,46,55,51,52,55,50,53,44,52,51,46,55,48,56,49,50,49,93,44,91,45,55,54,46,55,53,51,53,51,56,44,52,51,46,54,56,52,50,55,53,93,44,91,45,55,54,46,55,48,50,51,50,53,44,52,51,46,48,56,48,51,57,51,93,44,91,45,55,54,46,55,49,51,56,48,54,44,52,51,46,48,50,52,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,49,55,34,44,34,78,65,77,69,34,58,34,83,104,97,99,107,101,108,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,57,54,48,53,44,51,50,46,53,49,52,55,54,56,93,44,91,45,57,57,46,48,57,54,48,49,54,44,51,50,46,57,53,55,48,51,55,93,44,91,45,57,57,46,52,55,49,50,53,56,44,51,50,46,57,53,55,48,50,53,93,44,91,45,57,57,46,54,49,50,48,48,49,44,51,50,46,57,53,54,57,54,50,93,44,91,45,57,57,46,54,49,50,48,50,54,44,51,50,46,53,49,52,54,53,52,93,44,91,45,57,57,46,49,49,52,50,57,51,44,51,50,46,53,49,52,56,49,49,93,44,91,45,57,57,46,48,57,54,48,53,44,51,50,46,53,49,52,55,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,48,55,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,97,99,105,110,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,50,55,52,56,44,51,48,46,56,53,57,53,52,55,93,44,91,45,57,53,46,51,53,57,49,53,54,44,51,48,46,53,48,52,51,54,57,93,44,91,45,57,53,46,51,48,56,51,57,53,44,51,48,46,52,48,53,55,53,93,44,91,45,57,53,46,49,54,53,56,57,55,44,51,48,46,51,52,52,57,55,54,93,44,91,45,57,52,46,56,52,57,52,49,52,44,51,48,46,52,57,51,53,53,51,93,44,91,45,57,53,46,48,50,52,52,52,51,44,51,48,46,54,54,48,53,48,51,93,44,91,45,57,53,46,49,52,53,52,50,54,44,51,48,46,55,49,51,55,57,57,93,44,91,45,57,53,46,50,48,48,49,56,44,51,48,46,56,50,52,53,54,54,93,44,91,45,57,53,46,51,50,55,52,56,44,51,48,46,56,53,57,53,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,68,117,98,117,113,117,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,56,48,50,44,34,98,101,100,115,34,58,52,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,51,50,55,54,54,44,52,50,46,54,52,53,56,52,52,93,44,91,45,57,49,46,49,51,48,48,55,57,44,52,50,46,50,57,53,55,54,49,93,44,91,45,57,48,46,56,57,56,48,50,44,52,50,46,50,57,53,50,51,54,93,44,91,45,57,48,46,54,54,53,53,53,49,44,52,50,46,50,57,52,54,57,57,93,44,91,45,57,48,46,54,54,53,48,50,57,44,52,50,46,51,56,50,49,53,53,93,44,91,45,57,48,46,52,55,51,55,57,56,44,52,50,46,51,56,49,52,53,56,93,44,91,45,57,48,46,54,52,50,56,52,51,44,52,50,46,53,48,56,52,56,49,93,44,91,45,57,48,46,55,50,48,50,48,57,44,52,50,46,54,52,48,55,53,56,93,44,91,45,57,48,46,56,57,54,57,53,49,44,52,50,46,54,55,53,48,56,50,93,44,91,45,57,49,46,49,51,50,55,54,54,44,52,50,46,54,52,53,56,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,71,111,111,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,53,57,51,50,54,44,51,55,46,55,52,56,53,50,56,93,44,91,45,55,56,46,48,55,50,49,55,52,44,51,55,46,54,53,55,51,56,53,93,44,91,45,55,55,46,56,57,55,50,57,50,44,51,55,46,54,54,56,49,56,49,93,44,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,44,91,45,55,55,46,54,51,48,54,55,44,51,55,46,55,48,53,54,55,51,93,44,91,45,55,55,46,55,57,55,51,48,54,44,51,55,46,55,50,57,51,53,56,93,44,91,45,55,56,46,48,54,50,52,56,49,44,51,55,46,57,48,52,54,56,53,93,44,91,45,55,56,46,49,53,57,51,50,54,44,51,55,46,55,52,56,53,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,83,104,101,114,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,54,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,57,55,54,52,44,51,57,46,53,54,56,49,56,93,44,91,45,49,48,50,46,48,52,55,49,54,49,44,51,57,46,49,51,51,49,52,55,93,44,91,45,49,48,49,46,52,55,56,49,57,53,44,51,57,46,49,51,52,55,54,49,93,44,91,45,49,48,49,46,51,57,49,55,49,55,44,51,57,46,49,51,53,49,49,55,93,44,91,45,49,48,49,46,51,56,57,48,54,56,44,51,57,46,53,54,56,51,54,57,93,44,91,45,49,48,49,46,52,49,51,57,49,51,44,51,57,46,53,54,56,51,54,49,93,44,91,45,49,48,50,46,48,52,57,55,54,52,44,51,57,46,53,54,56,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,51,50,52,44,34,98,101,100,115,34,58,52,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,50,52,55,57,50,44,52,48,46,57,57,53,54,51,56,93,44,91,45,56,50,46,55,50,55,49,54,52,44,52,48,46,55,49,49,50,48,51,93,44,91,45,56,50,46,54,50,55,55,54,55,44,52,48,46,55,48,57,51,53,50,93,44,91,45,56,50,46,54,50,51,54,48,57,44,52,48,46,53,52,57,56,55,57,93,44,91,45,56,50,46,51,51,54,57,54,50,44,52,48,46,53,53,53,48,48,49,93,44,91,45,56,50,46,51,51,57,50,49,49,44,52,48,46,55,50,54,54,56,51,93,44,91,45,56,50,46,52,49,54,56,52,55,44,52,48,46,56,49,52,53,54,55,93,44,91,45,56,50,46,52,51,50,56,53,50,44,52,48,46,57,57,50,57,52,52,93,44,91,45,56,50,46,55,50,52,55,57,50,44,52,48,46,57,57,53,54,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,52,50,55,44,34,98,101,100,115,34,58,51,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,51,53,53,49,55,44,51,57,46,57,52,53,50,50,50,93,44,91,45,57,49,46,52,51,51,55,57,56,44,51,57,46,56,52,49,56,54,53,93,44,91,45,57,49,46,51,54,53,49,50,53,44,51,57,46,55,53,56,55,50,51,93,44,91,45,57,48,46,57,49,53,57,54,49,44,51,57,46,55,53,55,50,93,44,91,45,57,48,46,57,49,54,54,54,57,44,51,57,46,56,52,52,57,50,55,93,44,91,45,57,48,46,57,49,51,52,54,57,44,52,48,46,49,48,52,52,53,53,93,44,91,45,57,48,46,57,49,49,57,54,57,44,52,48,46,49,57,51,48,56,56,93,44,91,45,57,49,46,53,48,53,48,54,49,44,52,48,46,49,57,57,57,50,53,93,44,91,45,57,49,46,52,57,52,56,55,56,44,52,48,46,48,51,54,52,53,51,93,44,91,45,57,49,46,52,51,53,53,49,55,44,51,57,46,57,52,53,50,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,97,109,112,97,105,103,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,49,52,55,54,51,44,52,48,46,50,55,51,52,53,57,93,44,91,45,56,52,46,48,50,50,57,49,57,44,52,48,46,49,56,51,57,52,53,93,44,91,45,56,52,46,48,51,54,48,54,57,44,52,48,46,48,52,48,49,56,50,93,44,91,45,56,51,46,53,49,54,49,53,53,44,52,48,46,48,49,48,49,56,56,93,44,91,45,56,51,46,53,48,51,55,49,52,44,52,48,46,49,49,49,52,54,56,93,44,91,45,56,51,46,53,53,49,51,51,56,44,52,48,46,50,50,57,51,55,93,44,91,45,56,52,46,48,49,52,55,54,51,44,52,48,46,50,55,51,52,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,49,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,51,50,57,56,57,57,44,52,51,46,54,48,48,50,49,52,93,44,91,45,55,50,46,51,55,51,56,44,52,51,46,53,55,57,49,49,57,93,44,91,45,55,50,46,52,51,52,54,52,53,44,52,51,46,50,51,51,51,49,49,93,44,91,45,55,50,46,52,53,50,50,53,49,44,52,51,46,49,54,49,51,53,52,93,44,91,45,55,50,46,49,53,54,54,54,49,44,52,51,46,49,56,49,57,54,56,93,44,91,45,55,50,46,48,51,56,49,52,57,44,52,51,46,49,50,56,56,48,55,93,44,91,45,55,50,46,48,48,57,48,55,52,44,52,51,46,49,56,55,56,56,50,93,44,91,45,55,50,46,48,57,48,49,52,54,44,52,51,46,51,50,50,53,53,51,93,44,91,45,55,49,46,57,51,53,51,49,44,52,51,46,53,50,56,56,56,93,44,91,45,55,50,46,51,50,57,56,57,57,44,52,51,46,54,48,48,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,73,114,111,113,117,111,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,49,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,51,49,57,51,53,44,52,48,46,57,57,55,55,55,55,93,44,91,45,56,56,46,49,49,55,55,56,57,44,52,48,46,52,56,55,56,54,93,44,91,45,56,55,46,57,51,53,51,48,57,44,52,48,46,52,56,53,57,50,51,93,44,91,45,56,55,46,53,50,54,51,54,54,44,52,48,46,52,57,49,50,51,55,93,44,91,45,56,55,46,53,50,54,48,51,49,44,52,48,46,55,51,54,56,56,53,93,44,91,45,56,55,46,53,50,54,50,48,56,44,52,49,46,48,49,48,51,52,49,93,44,91,45,56,56,46,49,51,49,57,51,53,44,52,48,46,57,57,55,55,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,80,111,119,101,115,104,105,101,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,48,53,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,54,53,57,57,57,44,52,49,46,56,54,50,51,55,51,93,44,91,45,57,50,46,55,53,54,53,48,56,44,52,49,46,53,48,56,55,57,52,93,44,91,45,57,50,46,52,49,49,57,57,53,44,52,49,46,53,48,57,53,52,56,93,44,91,45,57,50,46,50,57,55,52,57,52,44,52,49,46,53,48,57,55,57,93,44,91,45,57,50,46,50,57,56,49,54,52,44,52,49,46,56,54,50,55,55,57,93,44,91,45,57,50,46,55,54,53,57,57,57,44,52,49,46,56,54,50,51,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,50,48,56,44,34,98,101,100,115,34,58,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,52,55,55,51,53,44,52,48,46,57,49,52,48,49,54,93,44,91,45,56,49,46,54,56,56,52,57,49,44,52,48,46,57,56,56,53,57,93,44,91,45,56,50,46,49,50,57,51,51,52,44,52,48,46,57,57,49,56,48,55,93,44,91,45,56,50,46,49,50,54,49,57,57,44,52,48,46,54,54,56,50,50,57,93,44,91,45,56,49,46,54,53,48,48,52,53,44,52,48,46,54,54,56,49,49,55,93,44,91,45,56,49,46,54,52,55,55,51,53,44,52,48,46,57,49,52,48,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,51,54,57,44,34,98,101,100,115,34,58,50,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,53,56,54,54,53,44,51,51,46,53,53,48,57,51,51,93,44,91,45,56,52,46,54,48,57,53,52,44,51,51,46,53,48,50,53,49,49,93,44,91,45,56,52,46,53,56,54,48,52,55,44,51,51,46,51,53,55,56,56,53,93,44,91,45,56,52,46,52,57,55,53,50,55,44,51,51,46,50,53,55,52,50,50,93,44,91,45,56,52,46,51,56,56,49,49,56,44,51,51,46,51,53,50,52,54,53,93,44,91,45,56,52,46,51,56,55,55,48,56,44,51,51,46,52,55,55,49,51,57,93,44,91,45,56,52,46,52,53,56,54,54,53,44,51,51,46,53,53,48,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,54,52,50,48,55,44,51,51,46,51,53,53,48,51,93,44,91,45,56,51,46,50,55,52,49,48,56,44,51,51,46,49,56,55,50,51,56,93,44,91,45,56,51,46,48,57,55,54,52,57,44,51,51,46,49,53,49,53,51,54,93,44,91,45,56,51,46,48,53,50,49,57,55,44,51,51,46,48,56,48,54,56,50,93,44,91,45,56,50,46,56,56,56,56,54,54,44,51,51,46,49,51,56,54,48,51,93,44,91,45,56,50,46,55,52,56,51,49,49,44,51,51,46,50,51,56,51,52,56,93,44,91,45,56,50,46,55,53,53,56,52,54,44,51,51,46,50,53,51,52,52,93,44,91,45,56,50,46,56,53,49,57,53,52,44,51,51,46,52,52,51,53,52,51,93,44,91,45,56,51,46,48,49,50,56,53,51,44,51,51,46,52,54,57,49,55,56,93,44,91,45,56,51,46,49,54,52,50,48,55,44,51,51,46,51,53,53,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,57,34,44,34,78,65,77,69,34,58,34,75,101,110,100,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,57,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,50,48,49,52,55,44,51,48,46,49,51,56,50,57,93,44,91,45,57,56,46,57,49,55,55,50,53,44,50,57,46,55,56,49,51,57,56,93,44,91,45,57,56,46,55,55,56,55,56,50,44,50,57,46,55,50,48,49,54,55,93,44,91,45,57,56,46,54,52,54,49,50,52,44,50,57,46,55,52,53,49,56,49,93,44,91,45,57,56,46,52,49,52,48,49,56,44,50,57,46,57,51,55,53,53,55,93,44,91,45,57,56,46,53,56,55,56,57,55,44,51,48,46,49,51,56,57,53,52,93,44,91,45,57,56,46,57,50,48,49,52,55,44,51,48,46,49,51,56,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,54,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,52,52,51,53,48,54,44,52,50,46,51,53,53,48,49,55,93,44,91,45,55,52,46,53,51,55,51,49,44,52,50,46,50,48,49,52,50,52,93,44,91,45,55,52,46,52,53,49,55,49,51,44,52,50,46,49,54,57,50,50,53,93,44,91,45,55,52,46,51,48,55,53,55,49,44,52,50,46,49,49,52,51,52,54,93,44,91,45,55,52,46,48,55,52,55,57,55,44,52,50,46,48,57,54,53,56,57,93,44,91,45,55,52,46,48,48,50,52,53,44,52,50,46,49,55,54,57,57,50,93,44,91,45,55,51,46,57,49,48,54,55,53,44,52,50,46,49,50,55,50,57,51,93,44,91,45,55,51,46,55,56,57,53,48,50,44,52,50,46,50,54,55,55,51,56,93,44,91,45,55,51,46,55,56,51,55,50,49,44,52,50,46,52,54,52,50,51,49,93,44,91,45,55,52,46,50,53,52,51,48,51,44,52,50,46,52,48,56,50,48,55,93,44,91,45,55,52,46,52,52,51,53,48,54,44,52,50,46,51,53,53,48,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,54,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,57,52,52,57,56,44,51,56,46,51,49,49,50,52,50,93,44,91,45,55,56,46,50,50,49,49,48,52,44,51,56,46,50,51,48,48,56,57,93,44,91,45,55,56,46,50,56,56,56,51,55,44,51,56,46,50,55,50,54,53,54,93,44,91,45,55,56,46,51,54,56,55,52,51,44,51,56,46,49,56,52,48,55,52,93,44,91,45,55,56,46,50,48,57,51,56,52,44,51,56,46,49,51,49,49,50,56,93,44,91,45,55,56,46,49,48,49,55,52,56,44,51,56,46,49,53,50,53,54,55,93,44,91,45,55,55,46,57,53,51,54,51,57,44,51,56,46,49,49,56,53,48,49,93,44,91,45,55,55,46,55,48,50,56,52,51,44,51,56,46,51,54,48,56,52,93,44,91,45,55,55,46,57,48,56,57,55,57,44,51,56,46,51,56,49,53,48,51,93,44,91,45,55,56,46,48,57,52,52,57,56,44,51,56,46,51,49,49,50,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,99,67,117,114,116,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,54,54,44,34,98,101,100,115,34,58,55,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,51,55,54,48,52,44,51,52,46,53,48,55,50,57,54,93,44,91,45,57,53,46,48,52,54,55,52,54,44,51,52,46,53,48,55,50,55,54,93,44,91,45,57,53,46,48,52,54,53,56,53,44,51,52,46,50,52,51,55,55,54,93,44,91,45,57,53,46,49,53,49,51,50,51,44,51,52,46,50,52,51,55,51,55,93,44,91,45,57,53,46,49,53,54,53,50,49,44,51,52,46,49,53,54,57,54,53,93,44,91,45,57,53,46,49,53,53,56,56,50,44,51,51,46,57,51,54,53,55,50,93,44,91,45,57,52,46,57,57,56,48,49,57,44,51,51,46,56,54,48,53,48,52,93,44,91,45,57,52,46,56,54,48,54,56,55,44,51,51,46,55,52,49,57,52,53,93,44,91,45,57,52,46,55,52,54,48,57,54,44,51,51,46,55,48,51,48,49,54,93,44,91,45,57,52,46,53,54,52,48,55,54,44,51,51,46,54,50,54,50,54,53,93,44,91,45,57,52,46,52,56,53,56,55,56,44,51,51,46,54,51,55,56,54,53,93,44,91,45,57,52,46,52,55,55,50,57,57,44,51,51,46,57,52,48,57,51,50,93,44,91,45,57,52,46,52,55,48,51,51,49,44,51,52,46,49,57,48,49,56,51,93,44,91,45,57,52,46,52,54,49,49,52,57,44,51,52,46,53,48,55,52,53,55,93,44,91,45,57,52,46,57,51,55,54,48,52,44,51,52,46,53,48,55,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,55,34,44,34,78,65,77,69,34,58,34,84,105,102,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,49,48,44,34,98,101,100,115,34,58,49,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,52,57,51,56,52,44,51,49,46,53,54,55,57,55,55,93,44,91,45,56,51,46,54,53,52,48,57,44,51,49,46,51,51,48,54,54,49,93,44,91,45,56,51,46,53,49,50,54,48,55,44,51,49,46,51,50,55,52,48,53,93,44,91,45,56,51,46,52,51,52,52,57,50,44,51,49,46,51,53,48,51,54,49,93,44,91,45,56,51,46,51,51,56,55,50,56,44,51,49,46,52,55,53,57,57,49,93,44,91,45,56,51,46,53,48,48,55,48,50,44,51,49,46,53,57,51,57,57,93,44,91,45,56,51,46,54,52,57,51,56,52,44,51,49,46,53,54,55,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,55,57,52,56,55,44,52,49,46,48,53,51,50,57,57,93,44,91,45,57,54,46,48,53,54,50,53,54,44,52,49,46,48,54,53,51,53,54,93,44,91,45,57,54,46,50,48,55,54,52,56,44,52,48,46,57,57,53,54,50,56,93,44,91,45,57,54,46,51,49,57,49,57,49,44,52,49,46,48,52,52,57,57,56,93,44,91,45,57,54,46,52,54,51,56,54,49,44,52,49,46,48,49,54,48,54,57,93,44,91,45,57,54,46,52,54,51,55,54,52,44,52,48,46,55,56,51,57,54,93,44,91,45,57,53,46,56,51,52,49,50,44,52,48,46,55,56,51,55,56,51,93,44,91,45,57,53,46,56,49,51,52,54,53,44,52,48,46,57,48,49,54,57,51,93,44,91,45,57,53,46,56,55,57,52,56,55,44,52,49,46,48,53,51,50,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,75,105,110,103,115,98,117,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,54,55,44,34,98,101,100,115,34,58,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,53,51,48,50,56,44,52,52,46,53,52,52,51,57,56,93,44,91,45,57,55,46,56,53,51,54,54,44,52,52,46,49,57,53,50,51,51,93,44,91,45,57,55,46,56,52,57,52,57,50,44,52,52,46,49,57,53,50,51,53,93,44,91,45,57,55,46,51,55,48,49,49,53,44,52,52,46,49,57,52,57,55,49,93,44,91,45,57,55,46,49,50,57,54,55,49,44,52,52,46,49,57,53,57,51,51,93,44,91,45,57,55,46,49,50,56,48,50,52,44,52,52,46,53,52,51,49,50,54,93,44,91,45,57,55,46,52,57,50,50,54,54,44,52,52,46,53,52,51,56,56,52,93,44,91,45,57,55,46,56,53,51,48,50,56,44,52,52,46,53,52,52,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,111,110,118,101,114,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,57,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,55,51,52,48,51,44,52,50,46,52,51,51,50,51,54,93,44,91,45,49,48,53,46,53,53,54,48,52,50,44,52,50,46,52,51,48,53,56,51,93,44,91,45,49,48,53,46,54,49,51,56,54,53,44,52,50,46,51,48,52,52,53,53,93,44,91,45,49,48,53,46,51,55,53,53,52,49,44,52,50,46,50,57,48,49,51,57,93,44,91,45,49,48,53,46,50,56,51,57,49,44,52,50,46,52,51,49,52,48,50,93,44,91,45,49,48,53,46,50,56,54,53,49,49,44,52,50,46,54,48,53,56,50,54,93,44,91,45,49,48,52,46,56,57,50,52,51,55,44,52,50,46,54,48,56,57,51,57,93,44,91,45,49,48,52,46,56,57,57,57,52,49,44,52,51,46,52,57,57,54,52,93,44,91,45,49,48,53,46,48,55,57,55,57,55,44,52,51,46,52,57,56,52,52,53,93,44,91,45,49,48,54,46,48,49,55,51,54,54,44,52,51,46,52,57,52,57,54,57,93,44,91,45,49,48,54,46,48,55,56,48,54,56,44,52,51,46,52,57,52,52,55,49,93,44,91,45,49,48,54,46,48,55,53,56,53,50,44,52,50,46,52,51,51,50,49,56,93,44,91,45,49,48,54,46,48,55,51,52,48,51,44,52,50,46,52,51,51,50,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,72,101,114,107,105,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,53,48,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,49,49,48,49,54,44,52,51,46,54,49,53,50,50,57,93,44,91,45,55,53,46,48,54,57,49,54,53,44,52,51,46,50,50,55,51,51,51,93,44,91,45,55,53,46,50,49,57,49,48,54,44,52,51,46,48,53,50,52,54,57,93,44,91,45,55,53,46,50,49,50,49,53,56,44,52,50,46,56,55,57,57,55,51,93,44,91,45,55,53,46,49,48,48,57,57,57,44,52,50,46,57,48,56,51,54,51,93,44,91,45,55,52,46,57,48,54,55,51,56,44,52,50,46,56,50,52,57,52,51,93,44,91,45,55,52,46,55,54,51,51,48,51,44,52,50,46,56,54,51,50,51,55,93,44,91,45,55,52,46,55,53,57,56,57,53,44,52,51,46,48,52,55,52,50,51,93,44,91,45,55,52,46,54,57,54,55,56,55,44,52,51,46,49,56,51,49,49,54,93,44,91,45,55,52,46,55,49,50,54,49,53,44,52,51,46,50,56,54,49,52,51,93,44,91,45,55,52,46,56,54,55,55,49,50,44,52,51,46,51,51,57,56,50,54,93,44,91,45,55,52,46,55,55,53,54,49,55,44,52,51,46,52,56,54,54,55,55,93,44,91,45,55,52,46,56,53,52,49,55,49,44,52,52,46,48,55,48,48,56,57,93,44,91,45,55,53,46,48,54,50,55,55,57,44,52,52,46,48,53,48,52,93,44,91,45,55,53,46,49,55,48,49,53,57,44,52,52,46,48,57,54,57,53,57,93,44,91,45,55,53,46,49,49,48,49,54,44,52,51,46,54,49,53,50,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,52,57,55,50,44,52,54,46,54,51,49,54,51,93,44,91,45,57,57,46,57,49,53,53,56,54,44,52,54,46,54,51,50,57,50,54,93,44,91,45,57,57,46,57,49,54,55,53,56,44,52,54,46,50,56,51,49,55,49,93,44,91,45,57,57,46,56,55,56,51,53,52,44,52,54,46,50,56,50,56,50,57,93,44,91,45,57,57,46,48,51,55,50,56,57,44,52,54,46,50,56,50,56,55,49,93,44,91,45,57,57,46,48,51,54,54,50,53,44,52,54,46,54,51,48,50,49,49,93,44,91,45,57,57,46,52,52,57,55,50,44,52,54,46,54,51,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,111,103,101,98,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,49,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,54,57,54,50,50,44,52,54,46,55,57,56,49,56,50,93,44,91,45,57,48,46,52,49,56,51,57,50,44,52,54,46,53,54,54,48,57,57,93,44,91,45,57,48,46,50,49,54,49,55,50,44,52,54,46,53,48,49,50,55,50,93,44,91,45,57,48,46,49,50,48,53,55,50,44,52,54,46,51,51,55,48,51,57,93,44,91,45,56,57,46,57,50,57,49,53,56,44,52,54,46,50,57,57,55,52,56,93,44,91,45,56,57,46,48,57,49,54,51,56,44,52,54,46,49,51,56,52,52,55,93,44,91,45,56,56,46,57,57,48,56,54,52,44,52,54,46,48,57,55,51,56,49,93,44,91,45,56,56,46,57,57,49,48,49,50,44,52,54,46,51,51,50,51,48,56,93,44,91,45,56,57,46,51,54,53,53,48,55,44,52,54,46,51,51,51,48,55,56,93,44,91,45,56,57,46,51,54,53,48,57,52,44,52,54,46,53,48,53,57,52,57,93,44,91,45,56,57,46,55,52,48,53,54,56,44,52,54,46,53,48,53,54,52,50,93,44,91,45,56,57,46,56,54,52,52,50,44,52,54,46,53,57,50,54,52,51,93,44,91,45,56,57,46,56,54,51,55,57,51,44,52,54,46,55,54,53,52,48,53,93,44,91,45,57,48,46,48,48,48,49,55,49,44,52,54,46,55,54,53,53,50,57,93,44,91,45,57,48,46,48,48,48,49,54,49,44,52,54,46,57,57,57,57,51,55,93,44,91,45,57,48,46,49,49,49,54,56,57,44,52,55,46,48,52,49,57,54,52,93,44,91,45,57,48,46,50,54,57,54,50,50,44,52,54,46,55,57,56,49,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,101,99,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,55,55,51,44,34,98,101,100,115,34,58,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,49,57,52,54,55,49,44,52,55,46,49,53,49,49,52,57,93,44,91,45,57,54,46,49,55,52,53,56,55,44,52,54,46,55,49,55,56,53,52,93,44,91,45,57,53,46,49,54,51,55,49,44,52,54,46,55,49,55,54,52,93,44,91,45,57,53,46,49,54,51,48,49,44,52,54,46,56,48,52,55,50,93,44,91,45,57,53,46,49,54,57,49,55,50,44,52,55,46,49,53,50,53,49,53,93,44,91,45,57,53,46,53,53,49,49,56,54,44,52,55,46,49,53,49,52,53,51,93,44,91,45,57,54,46,48,54,55,48,54,57,44,52,55,46,49,53,49,56,49,51,93,44,91,45,57,54,46,49,57,52,54,55,49,44,52,55,46,49,53,49,49,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,49,52,53,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,53,48,49,54,54,44,51,52,46,53,52,53,57,54,51,93,44,91,45,56,54,46,53,56,49,57,51,54,44,51,52,46,51,48,52,54,57,52,93,44,91,45,56,54,46,52,53,51,48,50,44,51,52,46,50,53,57,51,49,55,93,44,91,45,56,54,46,51,48,51,53,49,54,44,51,52,46,48,57,57,48,55,51,93,44,91,45,56,54,46,49,48,54,48,56,54,44,51,52,46,50,48,48,55,53,54,93,44,91,45,56,54,46,49,49,48,51,54,50,44,51,52,46,52,50,55,55,57,55,93,44,91,45,56,54,46,48,53,55,55,49,50,44,51,52,46,52,55,53,57,57,52,93,44,91,45,56,54,46,49,52,57,56,48,54,44,51,52,46,53,51,51,54,51,51,93,44,91,45,56,54,46,49,52,56,52,54,52,44,51,52,46,53,57,57,48,54,57,93,44,91,45,56,54,46,51,50,54,56,53,51,44,51,52,46,53,57,57,52,48,51,93,44,91,45,56,54,46,51,49,49,49,56,55,44,51,52,46,53,51,57,50,55,55,93,44,91,45,56,54,46,52,50,53,52,56,50,44,51,52,46,52,55,57,50,55,55,93,44,91,45,56,54,46,53,53,48,49,54,54,44,51,52,46,53,52,53,57,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,48,52,51,49,55,44,51,54,46,50,55,48,51,55,56,93,44,91,45,56,51,46,57,52,49,55,49,49,44,51,54,46,49,56,54,51,55,56,93,44,91,45,56,51,46,55,51,50,55,48,52,44,51,54,46,49,54,52,53,56,51,93,44,91,45,56,51,46,54,54,55,52,48,56,44,51,54,46,51,52,52,51,56,49,93,44,91,45,56,51,46,57,48,53,54,51,56,44,51,54,46,52,49,57,57,55,57,93,44,91,45,56,52,46,48,48,52,51,49,55,44,51,54,46,50,55,48,51,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,77,105,110,101,114,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,55,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,53,55,48,55,51,44,51,57,46,53,51,53,49,52,49,93,44,91,45,55,56,46,55,57,53,50,54,56,44,51,57,46,54,49,48,55,93,44,91,45,55,56,46,57,53,55,51,48,49,44,51,57,46,52,52,48,48,57,53,93,44,91,45,55,57,46,48,54,55,53,53,57,44,51,57,46,52,55,57,52,52,51,93,44,91,45,55,57,46,50,55,49,54,57,53,44,51,57,46,51,50,55,57,57,57,93,44,91,45,55,57,46,49,51,52,52,53,54,44,51,57,46,51,49,50,53,48,49,93,44,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,44,91,45,55,56,46,56,53,48,55,50,51,44,51,57,46,51,51,49,48,57,51,93,44,91,45,55,56,46,54,53,55,48,55,51,44,51,57,46,53,51,53,49,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,115,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,49,50,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,56,54,55,51,49,56,44,52,55,46,50,49,48,57,54,50,93,44,91,45,57,48,46,55,51,51,55,53,54,44,52,54,46,56,56,54,56,57,53,93,44,91,45,57,48,46,56,51,56,50,55,54,44,52,54,46,55,51,57,57,57,50,93,44,91,45,57,48,46,56,51,48,50,49,54,44,52,54,46,54,54,51,52,55,50,93,44,91,45,57,48,46,57,50,55,48,53,55,44,52,54,46,53,56,53,52,49,53,93,44,91,45,57,48,46,57,50,52,53,56,51,44,52,54,46,49,53,52,54,49,54,93,44,91,45,57,48,46,57,50,53,49,55,52,44,52,53,46,57,56,49,48,53,53,93,44,91,45,57,48,46,54,55,54,57,54,56,44,52,53,46,57,56,49,53,53,52,93,44,91,45,57,48,46,51,48,50,48,54,51,44,52,53,46,57,56,49,51,52,57,93,44,91,45,57,48,46,51,48,51,48,55,50,44,52,54,46,49,53,52,56,52,57,93,44,91,45,57,48,46,52,50,53,57,55,56,44,52,54,46,50,52,48,52,53,93,44,91,45,57,48,46,53,53,50,50,50,55,44,52,54,46,50,52,48,56,53,49,93,44,91,45,57,48,46,53,52,57,56,56,44,52,54,46,53,56,51,53,53,50,93,44,91,45,57,48,46,52,52,56,57,53,54,44,52,54,46,55,57,55,52,48,49,93,44,91,45,57,48,46,50,54,57,54,50,50,44,52,54,46,55,57,56,49,56,50,93,44,91,45,57,48,46,49,49,49,54,56,57,44,52,55,46,48,52,49,57,54,52,93,44,91,45,56,57,46,57,53,55,49,48,50,44,52,55,46,50,57,49,49,48,51,93,44,91,45,57,48,46,54,53,52,54,54,44,52,55,46,51,48,57,56,50,50,93,44,91,45,57,48,46,55,57,53,49,56,57,44,52,55,46,50,52,52,50,57,57,93,44,91,45,57,48,46,56,54,55,51,49,56,44,52,55,46,50,49,48,57,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,70,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,57,56,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,52,55,51,44,52,48,46,57,57,52,53,54,93,44,91,45,56,56,46,50,51,52,57,53,44,52,48,46,54,49,56,50,48,56,93,44,91,45,56,56,46,52,53,57,52,55,53,44,52,48,46,54,49,55,51,52,53,93,44,91,45,56,56,46,52,53,57,57,53,55,44,52,48,46,51,57,56,56,53,93,44,91,45,56,55,46,57,51,50,51,56,55,44,52,48,46,51,57,57,52,93,44,91,45,56,55,46,57,51,53,51,48,57,44,52,48,46,52,56,53,57,50,51,93,44,91,45,56,56,46,49,49,55,55,56,57,44,52,48,46,52,56,55,56,54,93,44,91,45,56,56,46,49,51,49,57,51,53,44,52,48,46,57,57,55,55,55,55,93,44,91,45,56,56,46,50,52,55,51,44,52,48,46,57,57,52,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,69,109,109,111,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,50,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,57,48,49,57,57,44,52,54,46,52,50,55,56,57,52,93,44,91,45,49,48,48,46,53,53,56,53,52,57,44,52,54,46,50,52,57,57,57,51,93,44,91,45,49,48,48,46,54,50,57,49,52,53,44,52,54,46,49,52,53,54,48,56,93,44,91,45,49,48,48,46,53,49,49,57,52,57,44,52,53,46,57,52,51,55,49,50,93,44,91,45,49,48,48,46,52,57,57,51,55,49,44,52,53,46,57,52,51,54,53,51,93,44,91,45,57,57,46,56,56,48,48,54,44,52,53,46,57,52,49,52,50,51,93,44,91,45,57,57,46,56,55,56,51,53,52,44,52,54,46,50,56,50,56,50,57,93,44,91,45,57,57,46,57,49,54,55,53,56,44,52,54,46,50,56,51,49,55,49,93,44,91,45,57,57,46,57,49,53,53,56,54,44,52,54,46,54,51,50,57,50,54,93,44,91,45,49,48,48,46,48,56,49,49,57,56,44,52,54,46,54,51,51,51,57,54,93,44,91,45,49,48,48,46,54,54,50,48,49,53,44,52,54,46,54,51,52,54,93,44,91,45,49,48,48,46,53,52,52,53,53,53,44,52,54,46,53,51,51,55,54,54,93,44,91,45,49,48,48,46,53,57,48,49,57,57,44,52,54,46,52,50,55,56,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,104,97,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,48,56,53,44,34,98,101,100,115,34,58,53,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,52,57,56,51,55,54,44,52,49,46,49,56,50,54,55,53,93,44,91,45,49,50,50,46,53,50,55,55,53,51,44,52,49,46,48,49,52,51,57,53,93,44,91,45,49,50,50,46,53,57,56,53,50,56,44,52,48,46,57,55,53,56,52,55,93,44,91,45,49,50,50,46,54,54,57,56,51,57,44,52,48,46,55,55,51,53,54,55,93,44,91,45,49,50,50,46,55,53,50,48,50,51,44,52,48,46,54,56,57,56,56,50,93,44,91,45,49,50,50,46,54,57,51,48,57,57,44,52,48,46,53,56,48,55,52,55,93,44,91,45,49,50,50,46,57,51,49,50,54,55,44,52,48,46,52,52,53,53,53,55,93,44,91,45,49,50,51,46,48,54,53,52,50,54,44,52,48,46,50,56,54,57,55,49,93,44,91,45,49,50,50,46,55,52,56,54,48,56,44,52,48,46,51,54,53,54,57,52,93,44,91,45,49,50,50,46,54,53,48,50,54,51,44,52,48,46,51,50,56,54,51,93,44,91,45,49,50,50,46,53,49,57,57,56,56,44,52,48,46,51,57,51,54,55,53,93,44,91,45,49,50,50,46,51,49,48,52,49,50,44,52,48,46,51,55,49,48,54,52,93,44,91,45,49,50,50,46,48,49,48,51,49,54,44,52,48,46,52,50,54,53,53,56,93,44,91,45,49,50,49,46,54,56,53,54,55,57,44,52,48,46,52,53,51,49,50,49,93,44,91,45,49,50,49,46,52,57,55,54,51,53,44,52,48,46,52,52,53,53,57,49,93,44,91,45,49,50,49,46,51,50,55,56,50,54,44,52,48,46,52,52,53,51,54,55,93,44,91,45,49,50,49,46,51,50,49,49,56,54,44,52,48,46,56,56,56,55,48,50,93,44,91,45,49,50,49,46,51,51,49,55,56,54,44,52,49,46,49,56,51,56,56,54,93,44,91,45,49,50,49,46,52,52,54,52,57,53,44,52,49,46,49,56,51,52,56,52,93,44,91,45,49,50,50,46,52,57,56,51,55,54,44,52,49,46,49,56,50,54,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,86,101,114,109,105,108,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,56,54,55,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,56,52,54,55,53,44,51,48,46,49,52,55,52,52,51,93,44,91,45,57,50,46,52,50,54,48,51,57,44,51,48,46,48,52,57,51,54,57,93,44,91,45,57,50,46,53,51,52,54,51,56,44,51,48,46,49,48,55,56,53,50,93,44,91,45,57,50,46,54,50,53,52,56,52,44,51,48,46,48,57,50,51,51,93,44,91,45,57,50,46,55,51,56,54,48,52,44,51,48,46,48,51,55,51,50,51,93,44,91,45,57,50,46,54,49,53,54,49,44,51,48,46,48,51,56,49,54,56,93,44,91,45,57,50,46,54,49,55,51,48,54,44,50,57,46,53,50,55,49,50,57,93,44,91,45,57,50,46,50,57,51,54,55,44,50,57,46,52,56,49,52,57,54,93,44,91,45,57,50,46,49,52,54,54,54,54,44,50,57,46,53,51,50,48,51,55,93,44,91,45,57,50,46,48,52,53,54,49,54,44,50,57,46,53,48,53,56,48,54,93,44,91,45,57,49,46,57,55,57,57,48,56,44,50,57,46,54,53,48,49,50,56,93,44,91,45,57,49,46,57,57,48,51,57,54,44,50,57,46,57,55,48,51,50,54,93,44,91,45,57,49,46,57,54,52,52,53,56,44,51,48,46,48,51,54,57,49,56,93,44,91,45,57,50,46,50,48,50,55,50,50,44,51,48,46,49,52,50,56,54,93,44,91,45,57,50,46,50,56,52,54,55,53,44,51,48,46,49,52,55,52,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,48,51,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,48,55,49,51,56,44,51,54,46,52,57,55,48,56,49,93,44,91,45,57,49,46,50,55,52,57,52,44,51,54,46,51,55,52,49,50,93,44,91,45,57,49,46,50,53,56,57,50,44,51,54,46,50,53,55,56,56,93,44,91,45,57,49,46,49,49,57,54,50,53,44,51,54,46,49,53,51,54,55,49,93,44,91,45,57,48,46,56,48,57,56,49,54,44,51,54,46,49,52,57,53,54,55,93,44,91,45,57,48,46,56,48,54,54,49,53,44,51,54,46,50,54,54,56,54,53,93,44,91,45,57,48,46,55,53,49,56,49,44,51,54,46,50,56,51,56,51,54,93,44,91,45,57,48,46,55,56,52,52,50,52,44,51,54,46,52,57,56,53,51,52,93,44,91,45,57,49,46,49,50,54,53,50,57,44,51,54,46,52,57,55,55,49,50,93,44,91,45,57,49,46,52,48,55,49,51,56,44,51,54,46,52,57,55,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,79,110,101,105,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,52,53,44,34,98,101,100,115,34,58,49,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,52,51,52,49,52,44,52,53,46,53,53,53,48,56,50,93,44,91,45,56,57,46,52,50,56,50,53,56,44,52,53,46,53,53,53,51,53,51,93,44,91,45,56,57,46,52,50,52,56,50,52,44,52,53,46,52,54,55,49,54,54,93,44,91,45,56,57,46,48,52,54,52,57,44,52,53,46,52,54,52,52,51,57,93,44,91,45,56,57,46,48,52,55,54,48,49,44,52,53,46,56,57,53,51,53,53,93,44,91,45,57,48,46,48,52,50,56,53,55,44,52,53,46,56,57,55,50,54,51,93,44,91,45,57,48,46,48,52,51,52,49,52,44,52,53,46,53,53,53,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,69,97,115,116,32,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,53,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,54,53,48,49,56,44,51,51,46,48,48,53,48,56,51,93,44,91,45,57,49,46,51,51,53,52,54,51,44,51,50,46,56,54,54,49,48,52,93,44,91,45,57,49,46,51,52,52,56,52,53,44,51,50,46,55,53,54,54,53,57,93,44,91,45,57,49,46,52,52,53,50,57,57,44,51,50,46,53,56,49,57,53,54,93,44,91,45,57,49,46,52,53,55,54,52,51,44,51,50,46,53,51,55,56,48,55,93,44,91,45,57,49,46,49,51,51,55,49,51,44,51,50,46,53,51,55,57,49,50,93,44,91,45,57,49,46,48,54,57,55,57,50,44,51,50,46,53,54,50,56,48,51,93,44,91,45,57,49,46,48,52,51,53,53,50,44,51,50,46,53,55,54,50,55,49,93,44,91,45,57,49,46,49,53,50,54,57,57,44,51,50,46,54,52,48,55,53,55,93,44,91,45,57,49,46,49,52,51,53,53,57,44,51,50,46,56,52,52,55,51,56,93,44,91,45,57,49,46,50,49,50,56,51,55,44,51,50,46,57,50,50,49,48,51,93,44,91,45,57,49,46,49,54,54,48,55,51,44,51,51,46,48,48,52,49,48,54,93,44,91,45,57,49,46,50,54,53,48,49,56,44,51,51,46,48,48,53,48,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,69,97,115,116,32,70,101,108,105,99,105,97,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,57,57,44,34,98,101,100,115,34,58,54,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,55,54,49,52,44,51,48,46,57,57,57,48,56,93,44,91,45,57,49,46,50,52,48,52,57,52,44,51,48,46,55,56,55,49,54,51,93,44,91,45,57,49,46,51,49,48,48,54,49,44,51,48,46,54,53,51,57,54,49,93,44,91,45,57,49,46,50,57,55,54,53,56,44,51,48,46,54,52,57,53,52,56,93,44,91,45,57,49,46,50,53,52,52,49,57,44,51,48,46,55,48,53,50,57,52,93,44,91,45,57,48,46,56,52,57,48,52,49,44,51,48,46,55,49,57,51,49,49,93,44,91,45,57,48,46,56,54,49,48,49,57,44,51,48,46,57,51,53,51,55,51,93,44,91,45,57,48,46,56,50,53,56,50,57,44,51,48,46,57,57,57,51,54,49,93,44,91,45,57,49,46,48,54,48,50,49,57,44,51,48,46,57,57,56,57,50,55,93,44,91,45,57,49,46,49,55,54,49,52,44,51,48,46,57,57,57,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,66,101,114,110,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,57,52,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,50,53,48,53,52,44,51,48,46,49,53,51,52,57,51,93,44,91,45,56,57,46,54,56,51,50,51,44,51,48,46,48,55,54,52,48,54,93,44,91,45,56,57,46,56,56,49,53,57,57,44,50,57,46,57,56,54,50,93,44,91,45,56,57,46,57,49,48,55,48,56,44,50,57,46,56,54,55,56,54,53,93,44,91,45,56,57,46,56,54,57,55,50,44,50,57,46,55,57,53,52,53,49,93,44,91,45,56,57,46,55,50,49,48,52,53,44,50,57,46,55,53,55,54,53,50,93,44,91,45,56,57,46,52,56,52,53,57,49,44,50,57,46,54,49,55,53,53,49,93,44,91,45,56,56,46,56,55,57,50,51,53,44,50,57,46,54,52,55,52,48,57,93,44,91,45,56,56,46,56,48,49,56,49,55,44,50,57,46,55,53,48,49,57,55,93,44,91,45,56,56,46,55,53,56,51,56,56,44,50,57,46,57,49,56,50,55,49,93,44,91,45,56,56,46,55,56,51,54,54,54,44,51,48,46,48,50,54,54,56,53,93,44,91,45,56,56,46,56,56,57,48,51,44,51,48,46,49,51,57,56,52,53,93,44,91,45,56,57,46,48,57,54,52,55,54,44,51,48,46,49,54,53,56,50,57,93,44,91,45,56,57,46,49,56,51,54,54,57,44,51,48,46,50,49,50,49,53,53,93,44,91,45,56,57,46,51,48,54,49,51,53,44,51,48,46,49,55,55,57,52,49,93,44,91,45,56,57,46,52,57,52,57,55,51,44,51,48,46,49,54,48,55,53,93,44,91,45,56,57,46,54,50,53,48,53,52,44,51,48,46,49,53,51,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,56,49,34,44,34,78,65,77,69,34,58,34,87,104,97,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,53,53,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,49,55,53,52,50,50,44,50,57,46,54,51,51,56,48,54,93,44,91,45,57,54,46,51,48,55,54,55,50,44,50,57,46,53,49,52,53,50,51,93,44,91,45,57,54,46,51,52,57,50,49,55,44,50,57,46,52,48,54,48,53,50,93,44,91,45,57,54,46,54,52,48,51,49,53,44,50,57,46,50,52,55,56,48,52,93,44,91,45,57,54,46,51,48,57,49,55,56,44,50,56,46,57,54,51,50,57,49,93,44,91,45,57,53,46,57,54,53,49,57,54,44,50,57,46,49,52,54,56,54,53,93,44,91,45,57,53,46,56,55,52,48,50,56,44,50,57,46,50,50,57,55,48,50,93,44,91,45,57,53,46,56,52,55,54,53,54,44,50,57,46,50,54,50,53,57,93,44,91,45,57,53,46,57,53,48,54,52,51,44,50,57,46,51,51,54,53,55,55,93,44,91,45,57,54,46,48,54,48,54,55,54,44,50,57,46,52,55,54,52,55,51,93,44,91,45,57,54,46,48,56,56,57,49,50,44,50,57,46,54,48,49,54,53,56,93,44,91,45,57,54,46,49,55,53,52,50,50,44,50,57,46,54,51,51,56,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,57,56,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,56,34,44,34,78,65,77,69,34,58,34,80,114,105,110,99,101,32,111,102,32,87,97,108,101,115,45,72,121,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,55,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,51,49,46,55,54,50,51,51,57,44,53,52,46,54,56,54,56,52,93,44,91,45,49,51,49,46,55,57,52,50,56,55,44,53,52,46,57,52,52,48,49,55,93,44,91,45,49,51,49,46,53,49,48,54,54,44,53,53,46,48,49,54,51,54,54,93,44,91,45,49,51,49,46,51,51,54,57,56,51,44,53,52,46,57,57,53,53,51,52,93,44,91,45,49,51,49,46,50,51,57,53,53,52,44,53,53,46,49,54,57,54,56,51,93,44,91,45,49,51,49,46,52,56,54,55,53,54,44,53,53,46,50,55,54,49,56,51,93,44,91,45,49,51,49,46,54,48,57,50,53,51,44,53,53,46,50,56,50,48,49,51,93,44,91,45,49,51,49,46,54,56,53,51,55,55,44,53,53,46,49,49,52,52,53,56,93,44,91,45,49,51,49,46,56,53,53,48,48,51,44,53,53,46,48,56,56,54,49,53,93,44,91,45,49,51,49,46,57,52,49,51,54,52,44,53,53,46,51,49,50,56,50,54,93,44,91,45,49,51,50,46,48,51,55,48,48,54,44,53,53,46,52,54,53,50,52,54,93,44,91,45,49,51,50,46,50,50,53,57,55,57,44,53,53,46,53,54,53,56,49,50,93,44,91,45,49,51,50,46,49,57,57,55,52,57,44,53,53,46,54,51,51,56,51,52,93,44,91,45,49,51,50,46,51,53,53,56,54,52,44,53,53,46,55,57,53,55,56,49,93,44,91,45,49,51,51,46,48,48,55,55,50,55,44,53,54,46,49,51,52,56,55,51,93,44,91,45,49,51,51,46,48,52,50,54,57,44,53,54,46,50,52,57,54,54,93,44,91,45,49,51,51,46,49,54,57,48,55,57,44,53,54,46,51,53,53,48,57,51,93,44,91,45,49,51,51,46,52,49,55,52,54,49,44,53,54,46,51,57,52,54,48,54,93,44,91,45,49,51,51,46,52,50,54,56,57,44,53,54,46,54,49,56,53,51,56,93,44,91,45,49,51,51,46,52,56,51,56,54,54,44,53,54,46,54,53,49,54,48,50,93,44,91,45,49,51,51,46,52,56,54,54,49,53,44,53,54,46,56,54,54,51,57,56,93,44,91,45,49,51,51,46,50,55,52,48,49,50,44,53,54,46,57,50,49,56,49,53,93,44,91,45,49,51,51,46,51,50,52,57,57,57,44,53,55,46,48,54,51,54,49,49,93,44,91,45,49,51,51,46,54,53,56,50,50,50,44,53,55,46,49,54,50,52,57,51,93,44,91,45,49,51,52,46,48,54,51,49,52,53,44,53,55,46,49,53,54,50,56,54,93,44,91,45,49,51,52,46,51,51,53,51,49,57,44,53,54,46,57,54,55,53,51,57,93,44,91,45,49,51,52,46,53,54,57,50,56,57,44,53,54,46,56,54,51,48,53,50,93,44,91,45,49,51,52,46,52,57,54,50,49,54,44,53,54,46,54,57,57,54,51,49,93,44,91,45,49,51,52,46,52,50,57,50,52,55,44,53,54,46,50,56,50,55,51,55,93,44,91,45,49,51,52,46,54,54,54,54,54,56,44,53,54,46,50,56,51,51,51,52,93,44,91,45,49,51,52,46,54,54,54,51,57,54,44,53,54,46,49,52,55,53,56,54,93,44,91,45,49,51,52,46,52,57,52,49,55,51,44,53,53,46,57,57,57,54,51,56,93,44,91,45,49,51,52,46,54,52,53,54,56,53,44,53,53,46,56,55,49,52,55,50,93,44,91,45,49,51,52,46,53,54,57,51,55,44,53,53,46,56,48,52,48,49,93,44,91,45,49,51,52,46,49,57,50,48,50,55,44,53,53,46,54,57,51,48,53,51,93,44,91,45,49,51,52,46,48,52,54,54,48,57,44,53,53,46,56,53,48,52,55,55,93,44,91,45,49,51,51,46,56,56,53,57,44,53,53,46,55,56,48,50,51,53,93,44,91,45,49,51,51,46,55,57,56,50,52,54,44,53,53,46,54,51,51,50,51,49,93,44,91,45,49,51,51,46,56,55,51,57,49,55,44,53,53,46,51,57,56,56,52,93,44,91,45,49,51,51,46,54,49,51,54,54,44,53,53,46,49,55,48,50,54,53,93,44,91,45,49,51,51,46,55,57,48,53,50,56,44,53,53,46,48,48,48,53,56,49,93,44,91,45,49,51,51,46,54,52,56,57,48,51,44,53,52,46,54,51,50,48,52,53,93,44,91,45,49,51,49,46,55,54,50,51,51,57,44,53,52,46,54,56,54,56,52,93,93,93,44,91,91,91,45,49,51,48,46,50,52,54,55,54,55,44,53,54,46,48,57,54,53,56,49,93,44,91,45,49,51,48,46,51,56,56,54,48,54,44,53,53,46,57,52,51,49,55,57,93,44,91,45,49,51,48,46,49,53,49,53,55,55,44,53,53,46,55,54,55,52,50,56,93,44,91,45,49,51,48,46,48,49,55,54,55,57,44,53,53,46,57,49,49,57,52,53,93,44,91,45,49,51,48,46,48,48,51,52,56,53,44,53,54,46,48,48,56,48,55,53,93,44,91,45,49,51,48,46,49,48,51,55,57,56,44,53,54,46,49,50,50,55,57,56,93,44,91,45,49,51,48,46,50,52,54,55,54,55,44,53,54,46,48,57,54,53,56,49,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,80,101,116,101,114,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,53,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,44,91,45,49,51,51,46,55,51,56,54,49,49,44,53,55,46,49,56,54,51,52,56,93,44,91,45,49,51,51,46,54,53,56,50,50,50,44,53,55,46,49,54,50,52,57,51,93,44,91,45,49,51,51,46,51,50,52,57,57,57,44,53,55,46,48,54,51,54,49,49,93,44,91,45,49,51,51,46,50,55,52,48,49,50,44,53,54,46,57,50,49,56,49,53,93,44,91,45,49,51,51,46,52,56,54,54,49,53,44,53,54,46,56,54,54,51,57,56,93,44,91,45,49,51,51,46,52,56,51,56,54,54,44,53,54,46,54,53,49,54,48,50,93,44,91,45,49,51,51,46,52,50,54,56,57,44,53,54,46,54,49,56,53,51,56,93,44,91,45,49,51,51,46,52,49,55,52,54,49,44,53,54,46,51,57,52,54,48,54,93,44,91,45,49,51,51,46,49,54,57,48,55,57,44,53,54,46,51,53,53,48,57,51,93,44,91,45,49,51,50,46,57,56,48,57,51,44,53,54,46,52,54,55,54,54,55,93,44,91,45,49,51,50,46,55,53,54,54,53,57,44,53,54,46,52,56,52,51,56,56,93,44,91,45,49,51,50,46,53,49,56,50,55,52,44,53,54,46,53,56,54,50,49,51,93,44,91,45,49,51,50,46,53,57,49,55,52,56,44,53,54,46,54,54,54,50,53,51,93,44,91,45,49,51,50,46,52,51,57,53,57,57,44,53,54,46,55,55,48,52,48,57,93,44,91,45,49,51,50,46,49,49,53,57,51,53,44,53,54,46,56,57,48,51,52,93,44,91,45,49,51,50,46,48,52,53,49,57,49,44,53,55,46,48,52,53,48,53,57,93,44,91,45,49,51,50,46,51,54,56,57,56,51,44,53,55,46,48,57,49,53,49,51,93,44,91,45,49,51,50,46,50,52,55,57,50,49,44,53,55,46,50,49,49,50,53,51,93,44,91,45,49,51,50,46,54,53,50,52,53,54,44,53,55,46,54,48,55,51,53,55,93,44,91,45,49,51,50,46,56,56,55,56,53,44,53,55,46,54,49,51,55,51,57,93,44,91,45,49,51,50,46,56,55,49,56,57,56,44,53,55,46,55,49,50,55,57,54,93,44,91,45,49,51,51,46,52,53,50,50,52,50,44,53,55,46,56,49,52,48,54,50,93,44,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,55,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,54,52,56,53,54,44,51,52,46,51,49,50,52,57,51,93,44,91,45,49,48,49,46,53,54,51,53,56,44,51,51,46,56,51,48,52,53,49,93,44,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,44,91,45,49,48,49,46,48,52,49,52,56,52,44,51,52,46,51,49,50,52,52,52,93,44,91,45,49,48,49,46,52,55,49,53,56,44,51,52,46,51,49,50,50,57,93,44,91,45,49,48,49,46,53,54,52,56,53,54,44,51,52,46,51,49,50,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,53,34,44,34,78,65,77,69,34,58,34,87,114,97,110,103,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,52,44,34,98,101,100,115,34,58,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,50,46,49,49,53,57,51,53,44,53,54,46,56,57,48,51,52,93,44,91,45,49,51,50,46,52,51,57,53,57,57,44,53,54,46,55,55,48,52,48,57,93,44,91,45,49,51,50,46,53,57,49,55,52,56,44,53,54,46,54,54,54,50,53,51,93,44,91,45,49,51,50,46,53,49,56,50,55,52,44,53,54,46,53,56,54,50,49,51,93,44,91,45,49,51,50,46,55,53,54,54,53,57,44,53,54,46,52,56,52,51,56,56,93,44,91,45,49,51,50,46,57,56,48,57,51,44,53,54,46,52,54,55,54,54,55,93,44,91,45,49,51,51,46,49,54,57,48,55,57,44,53,54,46,51,53,53,48,57,51,93,44,91,45,49,51,51,46,48,52,50,54,57,44,53,54,46,50,52,57,54,54,93,44,91,45,49,51,51,46,48,48,55,55,50,55,44,53,54,46,49,51,52,56,55,51,93,44,91,45,49,51,50,46,51,53,53,56,54,52,44,53,53,46,55,57,53,55,56,49,93,44,91,45,49,51,50,46,49,57,57,55,52,57,44,53,53,46,54,51,51,56,51,52,93,44,91,45,49,51,50,46,48,57,49,49,55,56,44,53,53,46,54,54,48,55,48,51,93,44,91,45,49,51,49,46,57,51,53,54,51,53,44,53,53,46,55,57,56,52,51,49,93,44,91,45,49,51,49,46,56,51,51,49,56,50,44,53,54,46,48,53,51,53,49,50,93,44,91,45,49,51,49,46,51,55,57,57,56,55,44,53,54,46,48,49,51,52,49,57,93,44,91,45,49,51,49,46,52,51,57,57,53,55,44,53,54,46,49,51,49,48,56,51,93,44,91,45,49,51,49,46,50,53,51,51,53,56,44,53,54,46,50,48,54,56,53,93,44,91,45,49,51,49,46,48,49,53,57,55,49,44,53,54,46,50,52,57,56,54,49,93,44,91,45,49,51,49,46,48,56,55,51,52,57,44,53,54,46,52,48,54,48,48,53,93,44,91,45,49,51,49,46,53,56,49,48,54,55,44,53,54,46,54,49,50,50,51,50,93,44,91,45,49,51,49,46,56,51,53,51,50,55,44,53,54,46,53,57,57,50,48,51,93,44,91,45,49,51,49,46,56,55,50,56,55,54,44,53,54,46,56,48,53,57,57,53,93,44,91,45,49,51,50,46,49,49,53,57,51,53,44,53,54,46,56,57,48,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,55,48,48,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,50,53,54,52,51,44,51,55,46,55,54,57,52,57,55,93,44,91,45,56,52,46,51,52,55,56,48,53,44,51,55,46,53,51,57,48,54,52,93,44,91,45,56,52,46,49,57,57,52,56,57,44,51,55,46,53,50,50,56,53,56,93,44,91,45,56,52,46,48,57,48,51,54,52,44,51,55,46,53,54,54,50,50,55,93,44,91,45,56,52,46,49,50,54,57,52,56,44,51,55,46,54,52,50,52,50,49,93,44,91,45,56,52,46,48,56,48,51,51,55,44,51,55,46,56,53,51,48,54,54,93,44,91,45,56,52,46,51,51,55,51,57,51,44,51,55,46,56,57,50,48,48,55,93,44,91,45,56,52,46,52,51,53,55,50,44,51,55,46,56,52,55,50,48,50,93,44,91,45,56,52,46,53,50,53,54,52,51,44,51,55,46,55,54,57,52,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,108,111,117,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,52,52,51,44,34,98,101,100,115,34,58,51,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,57,52,50,55,53,44,51,53,46,56,56,55,49,50,53,93,44,91,45,56,51,46,57,53,48,52,56,49,44,51,53,46,56,55,53,51,54,50,93,44,91,45,56,52,46,49,54,54,50,54,55,44,51,53,46,56,48,53,49,48,54,93,44,91,45,56,52,46,49,56,56,51,49,57,44,51,53,46,54,49,48,53,52,57,93,44,91,45,56,51,46,57,54,49,49,48,50,44,51,53,46,52,54,51,55,53,52,93,44,91,45,56,51,46,57,53,50,57,55,50,44,51,53,46,52,54,48,53,53,50,93,44,91,45,56,51,46,55,55,48,53,56,55,44,51,53,46,53,54,49,55,52,51,93,44,91,45,56,51,46,54,54,50,57,57,57,44,51,53,46,53,54,57,52,54,56,93,44,91,45,56,51,46,55,57,52,50,55,53,44,51,53,46,56,56,55,49,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,71,97,108,108,97,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,55,50,57,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,48,53,50,53,57,44,52,53,46,55,57,56,51,48,54,93,44,91,45,49,49,49,46,54,53,57,55,51,56,44,52,53,46,55,52,51,51,52,52,93,44,91,45,49,49,49,46,53,51,54,50,52,49,44,52,53,46,54,52,50,50,53,55,93,44,91,45,49,49,49,46,51,53,49,51,56,44,52,53,46,54,52,49,57,51,56,93,44,91,45,49,49,49,46,51,55,51,48,51,44,52,53,46,51,53,48,53,50,49,93,44,91,45,49,49,49,46,51,55,55,48,49,53,44,52,52,46,55,53,49,52,52,51,93,44,91,45,49,49,49,46,50,49,57,51,49,57,44,52,52,46,54,50,50,53,50,49,93,44,91,45,49,49,49,46,49,51,48,54,53,57,44,52,52,46,53,48,48,49,51,49,93,44,91,45,49,49,49,46,48,53,50,52,51,52,44,52,52,46,52,55,56,52,49,49,93,44,91,45,49,49,49,46,48,53,51,52,52,55,44,52,52,46,54,54,54,50,54,56,93,44,91,45,49,49,49,46,48,52,53,48,54,54,44,52,53,46,48,48,48,57,53,93,44,91,45,49,49,49,46,48,51,56,49,54,57,44,52,53,46,51,53,49,51,57,49,93,44,91,45,49,49,48,46,57,49,55,56,57,57,44,52,53,46,51,53,49,50,55,51,93,44,91,45,49,49,48,46,57,49,57,50,50,50,44,52,53,46,53,50,52,56,54,49,93,44,91,45,49,49,48,46,55,57,52,55,55,52,44,52,53,46,53,57,48,54,56,50,93,44,91,45,49,49,48,46,55,56,51,56,51,51,44,52,54,46,49,57,50,54,57,57,93,44,91,45,49,49,49,46,48,54,49,57,53,54,44,52,54,46,49,57,50,56,51,52,93,44,91,45,49,49,49,46,51,52,54,54,53,50,44,52,54,46,49,56,55,55,56,53,93,44,91,45,49,49,49,46,52,49,57,54,49,56,44,52,53,46,57,57,54,51,50,50,93,44,91,45,49,49,49,46,54,54,48,48,53,55,44,52,53,46,56,51,51,53,93,44,91,45,49,49,49,46,56,48,53,50,53,57,44,52,53,46,55,57,56,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,97,114,108,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,50,53,51,44,34,98,101,100,115,34,58,49,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,50,57,57,56,49,44,51,52,46,53,51,49,57,50,53,93,44,91,45,55,57,46,56,56,52,53,52,50,44,51,52,46,52,57,49,50,49,56,93,44,91,45,56,48,46,48,52,53,52,51,57,44,51,52,46,52,57,50,54,51,49,93,44,91,45,56,48,46,50,56,56,53,57,54,44,51,52,46,51,54,54,50,48,55,93,44,91,45,56,48,46,50,56,56,54,57,50,44,51,52,46,51,54,52,49,51,57,93,44,91,45,56,48,46,49,51,53,52,49,51,44,51,52,46,50,56,52,53,53,50,93,44,91,45,56,48,46,48,54,57,56,55,56,44,51,52,46,48,56,54,49,57,49,93,44,91,45,55,57,46,55,50,57,53,54,54,44,51,52,46,50,57,53,49,57,93,44,91,45,55,57,46,54,53,55,55,54,52,44,51,52,46,51,48,53,49,57,93,44,91,45,55,57,46,54,56,53,50,50,55,44,51,52,46,52,48,48,54,54,57,93,44,91,45,55,57,46,56,50,57,57,56,49,44,51,52,46,53,51,49,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,69,115,99,97,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,50,56,44,34,98,101,100,115,34,58,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,49,53,56,57,44,51,49,46,50,52,52,52,53,56,93,44,91,45,56,55,46,53,57,56,56,50,57,44,51,48,46,57,57,55,52,53,53,93,44,91,45,56,55,46,49,54,51,54,53,51,44,51,48,46,57,57,57,48,50,57,93,44,91,45,56,54,46,55,56,53,54,57,50,44,51,48,46,57,57,54,57,56,93,44,91,45,56,54,46,54,56,56,51,49,55,44,51,48,46,57,57,52,53,48,55,93,44,91,45,56,54,46,55,48,48,50,56,50,44,51,49,46,49,57,50,50,49,55,93,44,91,45,56,54,46,55,54,51,57,54,49,44,51,49,46,50,54,49,50,57,51,93,44,91,45,56,55,46,52,50,55,52,53,53,44,51,49,46,50,54,48,51,56,54,93,44,91,45,56,55,46,54,49,53,56,57,44,51,49,46,50,52,52,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,72,97,114,97,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,53,48,51,49,44,51,51,46,57,48,52,52,56,56,93,44,91,45,56,53,46,51,56,54,53,56,49,44,51,51,46,57,48,49,55,49,57,93,44,91,45,56,53,46,51,51,56,50,51,44,51,51,46,54,53,51,49,49,55,93,44,91,45,56,53,46,48,53,48,56,56,57,44,51,51,46,55,49,52,54,51,50,93,44,91,45,56,53,46,48,51,55,57,50,54,44,51,51,46,56,49,49,57,52,50,93,44,91,45,56,53,46,48,53,48,51,49,44,51,51,46,57,48,52,52,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,49,56,57,55,44,51,56,46,48,51,56,50,51,93,44,91,45,57,53,46,53,50,53,52,57,57,44,51,55,46,55,51,50,55,53,57,93,44,91,45,57,53,46,48,56,56,48,56,50,44,51,55,46,55,51,50,52,55,54,93,44,91,45,57,53,46,48,55,55,56,55,54,44,51,56,46,48,51,55,55,48,54,93,44,91,45,57,53,46,53,49,56,57,55,44,51,56,46,48,51,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,44,91,45,56,56,46,52,54,50,50,48,55,44,51,57,46,56,55,57,48,57,50,93,44,91,45,56,56,46,52,55,51,49,56,50,44,51,57,46,55,57,49,56,51,55,93,44,91,45,56,56,46,52,55,50,48,55,51,44,51,57,46,54,53,49,53,56,56,93,44,91,45,56,56,46,48,54,51,53,49,56,44,51,57,46,54,53,50,54,53,55,93,44,91,45,56,55,46,57,54,54,51,52,55,44,51,57,46,54,56,53,57,55,51,93,44,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,54,51,49,52,53,44,51,56,46,50,55,55,57,51,51,93,44,91,45,55,56,46,51,54,56,55,52,51,44,51,56,46,49,56,52,48,55,52,93,44,91,45,55,56,46,50,56,56,56,51,55,44,51,56,46,50,55,50,54,53,54,93,44,91,45,55,56,46,52,50,57,54,50,54,44,51,56,46,51,54,54,55,48,52,93,44,91,45,55,56,46,52,53,50,56,48,49,44,51,56,46,52,55,53,53,50,55,93,44,91,45,55,56,46,52,56,53,55,52,44,51,56,46,52,50,49,53,55,57,93,44,91,45,55,56,46,54,54,51,49,52,53,44,51,56,46,50,55,55,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,87,97,117,115,104,97,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,57,55,57,56,44,52,52,46,50,52,53,55,50,53,93,44,91,45,56,57,46,53,57,55,57,53,44,52,51,46,57,56,50,49,93,44,91,45,56,57,46,49,54,56,54,49,50,44,52,51,46,57,56,50,56,51,52,93,44,91,45,56,56,46,56,56,54,49,57,51,44,52,51,46,57,56,51,50,51,51,93,44,91,45,56,56,46,56,56,54,54,55,51,44,52,52,46,50,52,50,54,50,50,93,44,91,45,56,57,46,50,50,52,56,49,51,44,52,52,46,50,52,51,51,57,51,93,44,91,45,56,57,46,53,57,55,57,56,44,52,52,46,50,52,53,55,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,73,122,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,53,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,57,53,52,51,44,51,54,46,49,51,50,55,57,56,93,44,91,45,57,50,46,49,51,57,49,48,52,44,51,54,46,49,49,50,50,50,49,93,44,91,45,57,50,46,48,56,53,52,56,53,44,51,53,46,57,54,53,57,52,51,93,44,91,45,57,49,46,56,52,57,52,52,56,44,51,53,46,56,54,55,52,49,49,93,44,91,45,57,49,46,55,49,48,52,56,51,44,51,53,46,57,52,49,55,53,56,93,44,91,45,57,49,46,54,56,50,50,55,55,44,51,54,46,48,48,48,53,51,53,93,44,91,45,57,49,46,54,57,49,52,51,53,44,51,54,46,50,53,51,51,48,49,93,44,91,45,57,50,46,49,53,54,57,57,44,51,54,46,50,54,49,50,52,56,93,44,91,45,57,50,46,49,57,53,52,51,44,51,54,46,49,51,50,55,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,101,114,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,51,50,49,50,44,34,98,101,100,115,34,58,55,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,48,53,49,56,55,56,44,51,54,46,56,49,57,54,93,44,91,45,49,50,50,46,48,48,49,49,50,52,44,51,54,46,54,52,55,55,48,52,93,44,91,45,49,50,50,46,48,52,50,55,52,56,44,51,54,46,53,57,54,54,50,55,93,44,91,45,49,50,49,46,57,53,57,48,53,51,44,51,54,46,50,56,55,49,48,56,93,44,91,45,49,50,49,46,55,55,48,54,57,51,44,51,54,46,49,54,50,48,49,52,93,44,91,45,49,50,49,46,54,52,56,49,56,44,51,53,46,57,57,56,54,49,55,93,44,91,45,49,50,49,46,53,54,49,52,54,49,44,51,53,46,57,52,51,56,49,56,93,44,91,45,49,50,49,46,52,51,56,49,55,54,44,51,53,46,55,57,54,54,53,53,93,44,91,45,49,50,48,46,50,49,51,57,55,57,44,51,53,46,55,56,57,50,55,54,93,44,91,45,49,50,48,46,51,49,53,48,54,56,44,51,53,46,57,48,55,49,56,54,93,44,91,45,49,50,48,46,54,52,56,55,56,52,44,51,54,46,49,48,55,57,57,93,44,91,45,49,50,48,46,54,55,56,53,56,50,44,51,54,46,50,54,55,51,49,57,93,44,91,45,49,50,48,46,55,54,49,52,56,51,44,51,54,46,50,48,51,53,56,93,44,91,45,49,50,48,46,56,54,51,57,56,55,44,51,54,46,50,57,49,57,51,49,93,44,91,45,49,50,49,46,48,52,48,55,57,55,44,51,54,46,51,50,51,57,54,57,93,44,91,45,49,50,49,46,51,50,56,54,57,55,44,51,54,46,53,53,52,55,52,93,44,91,45,49,50,49,46,51,49,56,54,56,57,44,51,54,46,54,49,48,51,50,56,93,44,91,45,49,50,49,46,54,52,52,48,48,49,44,51,54,46,56,57,51,57,57,54,93,44,91,45,49,50,50,46,48,53,49,56,55,56,44,51,54,46,56,49,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,48,54,49,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,55,54,52,51,44,51,50,46,55,55,55,56,48,50,93,44,91,45,49,48,56,46,56,53,52,53,56,49,44,51,50,46,55,55,55,50,55,54,93,44,91,45,49,48,56,46,56,53,50,57,49,57,44,51,50,46,54,48,51,51,55,52,93,44,91,45,49,48,56,46,54,52,54,53,50,51,44,51,50,46,54,48,51,55,51,93,44,91,45,49,48,56,46,54,52,54,55,55,44,51,50,46,53,49,54,53,50,49,93,44,91,45,49,48,56,46,53,51,55,48,49,49,44,51,50,46,53,49,54,54,49,56,93,44,91,45,49,48,56,46,53,51,55,54,55,54,44,51,50,46,48,55,57,56,51,50,93,44,91,45,49,48,56,46,53,50,52,53,51,56,44,51,49,46,56,54,51,54,49,52,93,44,91,45,49,48,56,46,50,49,55,49,52,51,44,51,49,46,56,54,52,49,51,57,93,44,91,45,49,48,56,46,50,50,57,57,53,49,44,51,50,46,48,55,57,56,55,93,44,91,45,49,48,56,46,50,50,57,51,52,51,44,51,50,46,53,49,54,56,51,55,93,44,91,45,49,48,55,46,57,50,51,55,54,54,44,51,50,46,53,49,55,52,49,54,93,44,91,45,49,48,55,46,57,50,51,57,57,55,44,51,50,46,54,48,52,51,55,57,93,44,91,45,49,48,55,46,54,48,56,52,56,53,44,51,50,46,54,48,53,52,52,57,93,44,91,45,49,48,55,46,55,51,50,50,56,50,44,51,50,46,54,50,55,51,53,51,93,44,91,45,49,48,55,46,55,50,49,51,56,55,44,51,50,46,55,55,56,48,55,55,93,44,91,45,49,48,55,46,55,56,48,53,52,56,44,51,50,46,57,53,50,55,55,54,93,44,91,45,49,48,55,46,56,53,54,54,55,50,44,51,51,46,48,48,50,53,51,57,93,44,91,45,49,48,55,46,56,54,53,48,48,57,44,51,51,46,49,57,57,57,55,52,93,44,91,45,49,48,56,46,48,48,48,53,57,56,44,51,51,46,50,48,49,50,53,51,93,44,91,45,49,48,57,46,48,52,55,53,55,56,44,51,51,46,50,48,56,56,57,56,93,44,91,45,49,48,57,46,48,52,55,54,52,51,44,51,50,46,55,55,55,56,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,77,105,108,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,50,53,49,56,57,44,51,56,46,52,51,48,55,55,56,93,44,91,45,57,50,46,54,56,57,56,51,52,44,51,56,46,51,52,56,52,55,50,93,44,91,45,57,50,46,54,57,53,56,56,54,44,51,56,46,50,50,50,48,51,49,93,44,91,45,57,50,46,54,52,48,48,56,53,44,51,56,46,50,49,51,48,51,50,93,44,91,45,57,50,46,53,55,48,50,56,49,44,51,56,46,48,54,54,54,51,53,93,44,91,45,57,50,46,52,48,54,50,55,53,44,51,56,46,48,50,49,49,55,57,93,44,91,45,57,50,46,49,56,53,51,55,44,51,56,46,48,49,54,51,51,56,93,44,91,45,57,50,46,49,57,53,54,55,53,44,51,56,46,50,57,50,50,51,55,93,44,91,45,57,50,46,49,57,52,52,55,54,44,51,56,46,51,51,53,53,51,54,93,44,91,45,57,50,46,52,48,56,52,48,55,44,51,56,46,51,52,49,51,52,52,93,44,91,45,57,50,46,52,57,53,49,56,53,44,51,56,46,52,50,55,56,50,57,93,44,91,45,57,50,46,54,50,53,49,56,57,44,51,56,46,52,51,48,55,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,87,105,108,107,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,54,48,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,53,51,54,52,57,44,51,54,46,51,54,54,54,48,49,93,44,91,45,56,49,46,52,55,55,53,49,54,44,51,54,46,50,52,48,50,53,93,44,91,45,56,49,46,53,52,53,52,56,56,44,51,54,46,49,49,55,52,55,53,93,44,91,45,56,49,46,51,50,56,51,50,52,44,51,53,46,57,57,54,53,56,51,93,44,91,45,56,49,46,48,50,56,56,51,51,44,51,54,46,48,52,53,54,53,50,93,44,91,45,56,48,46,56,56,49,53,57,49,44,51,54,46,48,53,53,55,49,56,93,44,91,45,56,48,46,56,55,51,50,48,53,44,51,54,46,50,51,54,51,48,53,93,44,91,45,56,48,46,56,54,56,55,52,54,44,51,54,46,51,50,54,52,52,55,93,44,91,45,56,48,46,57,54,55,49,53,51,44,51,54,46,52,48,50,48,50,93,44,91,45,56,49,46,48,57,53,49,49,50,44,51,54,46,52,52,48,55,55,51,93,44,91,45,56,49,46,50,53,51,54,52,57,44,51,54,46,51,54,54,54,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,48,34,44,34,78,65,77,69,34,58,34,74,117,110,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,51,51,48,44,34,98,101,100,115,34,58,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,52,46,51,50,49,52,52,54,44,53,56,46,57,54,51,54,50,57,93,44,91,45,49,51,53,46,50,49,57,49,50,56,44,53,56,46,57,55,52,57,55,50,93,44,91,45,49,51,53,46,48,55,48,52,53,44,53,56,46,52,57,57,56,57,55,93,44,91,45,49,51,52,46,54,57,52,56,51,54,44,53,56,46,50,55,54,53,50,50,93,44,91,45,49,51,52,46,55,55,54,56,54,50,44,53,56,46,48,57,57,48,52,53,93,44,91,45,49,51,52,46,54,57,55,55,54,54,44,53,56,46,48,51,50,48,51,54,93,44,91,45,49,51,52,46,53,51,56,52,49,51,44,53,56,46,48,57,56,49,55,50,93,44,91,45,49,51,52,46,49,55,54,57,57,44,53,56,46,49,53,56,51,50,93,44,91,45,49,51,51,46,56,49,51,48,53,49,44,53,55,46,56,51,55,54,50,52,93,44,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,44,91,45,49,51,51,46,49,55,54,57,51,55,44,53,56,46,49,53,48,53,54,55,93,44,91,45,49,51,51,46,52,54,49,53,48,52,44,53,56,46,51,56,55,55,50,51,93,44,91,45,49,51,51,46,51,55,55,51,48,51,44,53,56,46,52,51,48,53,52,56,93,44,91,45,49,51,51,46,55,48,55,49,49,56,44,53,56,46,54,49,50,50,55,52,93,44,91,45,49,51,51,46,56,52,48,53,48,55,44,53,56,46,55,50,57,52,52,52,93,44,91,45,49,51,52,46,50,53,56,48,55,52,44,53,56,46,56,54,49,48,51,54,93,44,91,45,49,51,52,46,51,50,49,52,52,54,44,53,56,46,57,54,51,54,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,80,108,97,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,56,50,52,44,34,98,101,100,115,34,58,49,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,54,56,57,55,51,44,51,57,46,52,49,56,56,55,57,93,44,91,45,57,52,46,56,57,56,53,49,54,44,51,57,46,50,57,56,52,53,93,44,91,45,57,52,46,55,55,53,53,51,50,44,51,57,46,50,48,48,54,48,54,93,44,91,45,57,52,46,54,48,49,55,51,51,44,51,57,46,49,53,57,54,48,51,93,44,91,45,57,52,46,54,48,48,56,49,57,44,51,57,46,52,53,54,49,53,53,93,44,91,45,57,52,46,54,48,49,50,49,53,44,51,57,46,53,51,48,49,55,93,44,91,45,57,53,46,49,48,50,56,56,56,44,51,57,46,53,51,51,51,52,55,93,44,91,45,57,52,46,57,54,56,57,55,51,44,51,57,46,52,49,56,56,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,117,99,104,97,110,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,48,55,54,44,34,98,101,100,115,34,58,53,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,55,54,53,53,56,44,51,57,46,56,50,48,56,56,51,93,44,91,45,57,53,46,48,53,51,53,56,54,44,51,57,46,54,49,53,50,54,57,93,44,91,45,57,53,46,49,48,50,56,56,56,44,51,57,46,53,51,51,51,52,55,93,44,91,45,57,52,46,54,48,49,50,49,53,44,51,57,46,53,51,48,49,55,93,44,91,45,57,52,46,54,48,50,50,53,55,44,51,57,46,55,52,55,49,57,53,93,44,91,45,57,52,46,54,48,50,56,51,44,51,57,46,56,49,57,57,48,54,93,44,91,45,57,52,46,56,55,54,53,53,56,44,51,57,46,56,50,48,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,105,109,101,115,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,48,53,50,44,34,98,101,100,115,34,58,49,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,49,48,55,53,57,44,51,52,46,57,57,57,48,50,52,93,44,91,45,56,55,46,50,49,52,57,49,52,44,51,52,46,56,49,54,48,49,49,93,44,91,45,56,55,46,50,54,48,54,55,54,44,51,52,46,55,53,56,54,50,54,93,44,91,45,56,55,46,49,48,53,48,55,51,44,51,52,46,54,56,54,48,51,55,93,44,91,45,56,54,46,57,48,55,50,48,53,44,51,52,46,53,55,57,55,57,50,93,44,91,45,56,54,46,55,57,48,48,53,54,44,51,52,46,53,53,48,55,57,93,44,91,45,56,54,46,55,56,51,54,50,56,44,51,52,46,57,57,49,57,52,56,93,44,91,45,56,54,46,56,51,54,51,48,54,44,51,52,46,57,57,49,56,57,57,93,44,91,45,56,55,46,50,49,48,55,53,57,44,51,52,46,57,57,57,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,56,51,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,55,54,49,57,55,44,52,48,46,48,55,55,49,52,51,93,44,91,45,56,53,46,53,55,54,49,57,50,44,51,57,46,57,52,53,55,53,54,93,44,91,45,56,53,46,53,57,54,57,49,54,44,51,57,46,55,56,54,53,49,57,93,44,91,45,56,53,46,51,48,49,53,56,52,44,51,57,46,55,56,55,53,55,57,93,44,91,45,56,53,46,50,50,49,49,49,56,44,51,57,46,55,56,56,52,52,57,93,44,91,45,56,53,46,50,48,49,52,55,51,44,52,48,46,48,48,52,53,50,49,93,44,91,45,56,53,46,50,49,52,51,56,54,44,52,48,46,48,55,54,56,56,57,93,44,91,45,56,53,46,53,55,54,49,57,55,44,52,48,46,48,55,55,49,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,53,53,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,53,57,56,50,53,51,44,52,49,46,51,51,51,49,49,57,93,44,91,45,57,55,46,56,50,56,50,53,54,44,52,49,46,49,55,51,52,51,57,93,44,91,45,57,55,46,56,50,54,50,56,55,44,52,49,46,48,52,54,53,56,49,93,44,91,45,57,55,46,51,54,56,49,49,56,44,52,49,46,48,52,54,57,52,55,93,44,91,45,57,55,46,51,54,56,49,56,54,44,52,49,46,51,57,54,52,49,54,93,44,91,45,57,55,46,53,57,56,50,53,51,44,52,49,46,51,51,51,49,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,79,116,116,97,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,55,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,49,53,57,52,49,44,52,49,46,54,49,57,49,49,93,44,91,45,56,51,46,52,49,52,54,50,54,44,52,49,46,53,48,48,50,50,56,93,44,91,45,56,51,46,51,51,56,49,57,54,44,52,49,46,52,53,55,53,48,56,93,44,91,45,56,50,46,57,53,50,50,50,52,44,52,49,46,52,53,56,50,51,57,93,44,91,45,56,50,46,55,49,57,50,51,54,44,52,49,46,52,56,50,52,50,51,93,44,91,45,56,50,46,55,56,55,52,48,50,44,52,49,46,53,56,55,55,51,56,93,44,91,45,56,50,46,55,50,54,52,50,55,44,52,49,46,54,57,56,51,48,56,93,44,91,45,56,50,46,57,57,53,53,55,50,44,52,49,46,56,50,56,57,54,57,93,44,91,45,56,51,46,49,54,52,53,49,49,44,52,49,46,54,50,51,50,52,55,93,44,91,45,56,51,46,52,49,53,57,52,49,44,52,49,46,54,49,57,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,78,111,114,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,53,57,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,52,56,57,50,51,44,52,55,46,52,57,56,57,57,49,93,44,91,45,57,54,46,56,51,51,51,57,51,44,52,55,46,50,51,56,48,52,49,93,44,91,45,57,54,46,56,52,48,49,50,50,44,52,55,46,49,53,48,52,55,53,93,44,91,45,57,54,46,49,57,52,54,55,49,44,52,55,46,49,53,49,49,52,57,93,44,91,45,57,54,46,48,54,55,48,54,57,44,52,55,46,49,53,49,56,49,51,93,44,91,45,57,54,46,48,54,55,54,50,49,44,52,55,46,52,57,57,49,51,54,93,44,91,45,57,54,46,56,52,56,57,50,51,44,52,55,46,52,57,56,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,57,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,44,91,45,57,53,46,53,53,55,50,55,55,44,52,49,46,56,54,51,52,52,57,93,44,91,45,57,53,46,53,53,56,49,52,51,44,52,49,46,54,48,50,51,56,51,93,44,91,45,57,53,46,52,57,55,57,57,55,44,52,49,46,53,48,54,48,55,52,93,44,91,45,57,53,46,49,53,52,55,50,50,44,52,49,46,53,48,53,50,49,49,93,44,91,45,57,53,46,48,52,48,55,55,44,52,49,46,53,48,52,54,57,93,44,91,45,57,53,46,48,57,50,53,50,44,52,49,46,54,48,50,48,53,53,93,44,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,53,50,50,44,34,98,101,100,115,34,58,54,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,50,49,55,48,50,52,44,51,57,46,55,49,57,56,54,49,93,44,91,45,55,55,46,50,57,57,55,55,44,51,57,46,54,49,50,50,56,52,93,44,91,45,55,55,46,49,48,54,56,51,57,44,51,57,46,52,57,49,54,54,49,93,44,91,45,55,55,46,49,54,56,48,56,44,51,57,46,51,53,51,57,53,55,93,44,91,45,55,54,46,56,56,50,50,55,52,44,51,57,46,51,53,48,49,56,53,93,44,91,45,55,54,46,56,56,51,50,57,52,44,51,57,46,52,55,52,55,53,49,93,44,91,45,55,54,46,55,56,55,48,57,54,44,51,57,46,55,50,48,56,93,44,91,45,55,54,46,57,57,57,51,49,56,44,51,57,46,55,50,48,49,48,54,93,44,91,45,55,55,46,50,49,55,48,50,52,44,51,57,46,55,49,57,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,50,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,57,56,55,57,50,44,52,50,46,50,57,55,53,50,55,93,44,91,45,57,50,46,50,57,56,49,54,52,44,52,49,46,56,54,50,55,55,57,93,44,91,45,57,49,46,56,51,49,51,55,57,44,52,49,46,56,54,49,56,53,49,93,44,91,45,57,49,46,56,51,49,48,56,57,44,52,50,46,50,57,57,48,54,51,93,44,91,45,57,50,46,48,54,52,55,54,54,44,52,50,46,50,57,55,50,53,57,93,44,91,45,57,50,46,50,57,56,55,57,50,44,52,50,46,50,57,55,53,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,49,52,55,53,55,44,51,55,46,56,53,53,53,48,57,93,44,91,45,56,50,46,52,57,55,55,57,54,44,51,55,46,57,52,53,52,56,56,93,44,91,45,56,50,46,54,49,50,51,57,51,44,51,55,46,56,55,57,50,55,50,93,44,91,45,56,50,46,54,52,48,55,53,44,51,55,46,55,50,48,49,56,50,93,44,91,45,56,50,46,53,54,51,53,54,49,44,51,55,46,54,56,52,56,52,52,93,44,91,45,56,50,46,52,53,54,49,51,52,44,51,55,46,54,54,56,55,57,53,93,44,91,45,56,50,46,51,51,51,49,51,54,44,51,55,46,55,52,48,56,52,56,93,44,91,45,56,50,46,52,49,52,55,53,55,44,51,55,46,56,53,53,53,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,104,105,115,97,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,55,50,55,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,49,52,49,55,57,51,44,52,53,46,55,51,48,54,53,55,93,44,91,45,57,51,46,49,52,49,57,55,52,44,52,53,46,53,53,56,49,48,57,93,44,91,45,57,51,46,48,50,50,50,55,52,44,52,53,46,53,53,55,49,53,52,93,44,91,45,57,51,46,48,49,57,53,54,51,44,52,53,46,52,49,49,55,55,93,44,91,45,57,51,46,48,49,57,52,52,44,52,53,46,50,57,54,57,50,57,93,44,91,45,57,50,46,55,52,53,54,56,51,44,52,53,46,50,57,54,48,52,50,93,44,91,45,57,50,46,54,52,54,54,48,50,44,52,53,46,52,52,49,54,51,53,93,44,91,45,57,50,46,56,56,55,48,54,55,44,52,53,46,54,52,52,49,52,56,93,44,91,45,57,50,46,56,52,49,48,53,49,44,52,53,46,55,51,48,48,50,52,93,44,91,45,57,51,46,49,52,49,55,57,51,44,52,53,46,55,51,48,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,79,119,115,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,55,57,49,56,54,44,51,55,46,53,48,54,50,52,57,93,44,91,45,56,51,46,56,56,53,50,54,50,44,51,55,46,53,49,55,54,56,56,93,44,91,45,56,51,46,55,56,52,57,55,53,44,51,55,46,51,52,56,55,49,55,93,44,91,45,56,51,46,54,51,56,53,55,50,44,51,55,46,51,52,52,49,54,54,93,44,91,45,56,51,46,53,50,54,57,48,55,44,51,55,46,50,53,56,53,50,57,93,44,91,45,56,51,46,53,52,55,54,50,56,44,51,55,46,51,51,52,52,49,56,93,44,91,45,56,51,46,53,55,57,49,56,54,44,51,55,46,53,48,54,50,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,114,97,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,51,48,52,44,34,98,101,100,115,34,58,51,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,50,55,48,56,52,44,52,50,46,48,48,49,54,55,52,93,44,91,45,55,54,46,56,55,52,55,49,52,44,52,49,46,53,57,54,57,49,57,93,44,91,45,55,54,46,56,49,51,55,51,49,44,52,49,46,53,57,48,48,51,52,93,44,91,45,55,54,46,50,50,48,49,51,57,44,52,49,46,53,52,49,50,56,53,93,44,91,45,55,54,46,49,49,53,49,55,50,44,52,49,46,54,53,49,56,50,53,93,44,91,45,55,54,46,49,52,53,53,49,57,44,52,49,46,57,57,56,56,52,50,93,44,91,45,55,54,46,53,53,55,54,50,52,44,52,50,46,48,48,48,49,54,93,44,91,45,55,54,46,57,50,55,48,56,52,44,52,50,46,48,48,49,54,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,54,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,54,55,57,53,55,44,52,48,46,53,56,50,52,57,54,93,44,91,45,56,48,46,53,57,52,54,54,52,44,52,48,46,52,55,49,51,56,57,93,44,91,45,56,48,46,54,50,57,54,56,52,44,52,48,46,51,57,52,57,55,56,93,44,91,45,56,48,46,53,49,55,57,57,49,44,52,48,46,51,57,57,54,52,52,93,44,91,45,56,48,46,53,49,57,48,51,56,44,52,48,46,52,55,55,51,54,51,93,44,91,45,56,48,46,53,49,56,57,57,49,44,52,48,46,54,51,56,56,48,49,93,44,91,45,56,48,46,54,54,55,57,53,55,44,52,48,46,53,56,50,52,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,67,111,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,55,52,48,44,34,98,101,100,115,34,58,50,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,57,52,56,54,54,44,51,56,46,55,51,57,49,51,93,44,91,45,57,50,46,52,57,53,49,56,53,44,51,56,46,52,50,55,56,50,57,93,44,91,45,57,50,46,52,48,56,52,48,55,44,51,56,46,51,52,49,51,52,52,93,44,91,45,57,50,46,49,57,52,52,55,54,44,51,56,46,51,51,53,53,51,54,93,44,91,45,57,50,46,49,52,57,50,57,49,44,51,56,46,52,51,49,49,53,50,93,44,91,45,57,50,46,48,48,56,55,44,51,56,46,53,48,48,48,51,56,93,44,91,45,57,50,46,48,48,56,57,56,51,44,51,56,46,53,55,48,57,93,44,91,45,57,50,46,49,48,57,50,56,50,44,51,56,46,53,54,49,52,51,93,44,91,45,57,50,46,50,50,48,54,54,49,44,51,56,46,54,52,51,49,54,55,93,44,91,45,57,50,46,51,53,55,56,49,51,44,51,56,46,54,55,57,53,49,55,93,44,91,45,57,50,46,51,57,52,56,54,54,44,51,56,46,55,51,57,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,101,114,114,105,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,56,48,55,44,34,98,101,100,115,34,58,50,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,50,50,57,52,44,52,50,46,48,55,49,52,56,52,93,44,91,45,56,54,46,50,50,51,53,54,51,44,52,50,46,50,52,51,51,55,57,93,44,91,45,56,55,46,48,56,56,51,51,56,44,52,50,46,50,51,53,51,51,52,93,44,91,45,56,55,46,49,49,49,49,54,50,44,52,50,46,49,52,57,52,48,57,93,44,91,45,56,55,46,50,48,55,55,55,52,44,52,49,46,55,54,48,57,53,54,93,44,91,45,56,54,46,57,51,51,51,51,52,44,52,49,46,55,54,49,48,51,53,93,44,91,45,56,54,46,53,50,52,50,49,55,44,52,49,46,55,53,57,54,53,57,93,44,91,45,56,54,46,50,50,54,48,57,53,44,52,49,46,55,54,48,52,48,54,93,44,91,45,56,54,46,50,50,50,57,52,44,52,50,46,48,55,49,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,117,110,116,105,110,103,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,52,50,49,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,49,54,53,50,49,44,52,48,46,55,51,57,49,50,55,93,44,91,45,55,56,46,50,50,49,57,55,44,52,48,46,54,55,52,53,51,57,93,44,91,45,55,56,46,49,51,48,48,56,49,44,52,48,46,52,56,49,57,57,93,44,91,45,55,56,46,50,53,55,51,48,53,44,52,48,46,50,57,55,56,56,51,93,44,91,45,55,56,46,49,51,52,56,54,51,44,52,48,46,49,54,53,49,51,49,93,44,91,45,55,55,46,56,54,52,52,56,57,44,52,48,46,48,54,49,53,54,56,93,44,91,45,55,55,46,55,48,51,48,51,44,52,48,46,50,54,51,53,55,54,93,44,91,45,55,55,46,55,53,50,49,50,44,52,48,46,51,55,56,53,52,53,93,44,91,45,55,55,46,57,49,51,56,52,52,44,52,48,46,51,57,56,54,55,57,93,44,91,45,55,55,46,56,49,54,53,49,51,44,52,48,46,53,48,48,48,55,52,93,44,91,45,55,55,46,56,52,49,56,50,55,44,52,48,46,53,53,48,48,51,53,93,44,91,45,55,55,46,54,56,55,48,56,44,52,48,46,54,55,54,55,53,93,44,91,45,55,55,46,54,56,49,51,51,52,44,52,48,46,55,50,57,55,53,56,93,44,91,45,55,55,46,56,50,52,53,48,54,44,52,48,46,55,52,51,54,56,49,93,44,91,45,55,55,46,57,52,52,50,53,44,52,48,46,54,57,49,53,53,55,93,44,91,45,55,56,46,49,49,54,53,50,49,44,52,48,46,55,51,57,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,68,97,119,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,57,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,48,53,49,44,52,51,46,48,48,48,55,55,93,44,91,45,49,48,51,46,52,56,48,52,48,51,44,52,50,46,55,56,52,57,54,54,93,44,91,45,49,48,51,46,52,56,48,48,56,50,44,52,50,46,52,51,55,50,54,55,93,44,91,45,49,48,51,46,52,52,52,53,51,50,44,52,50,46,52,51,55,51,53,52,93,44,91,45,49,48,50,46,55,55,51,51,54,54,44,52,50,46,52,51,57,57,50,50,93,44,91,45,49,48,50,46,55,55,51,51,54,57,44,52,50,46,55,56,53,50,54,53,93,44,91,45,49,48,50,46,55,57,50,49,49,49,44,52,50,46,57,57,57,57,56,93,44,91,45,49,48,51,46,48,48,48,54,48,57,44,52,51,46,48,48,48,55,53,49,93,44,91,45,49,48,51,46,53,48,53,49,44,52,51,46,48,48,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,80,97,116,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,50,51,53,52,53,53,44,51,54,46,56,55,50,49,51,93,44,91,45,56,48,46,51,56,53,51,55,51,44,51,54,46,55,57,56,54,53,56,93,44,91,45,56,48,46,52,54,52,49,56,44,51,54,46,55,48,56,55,49,56,93,44,91,45,56,48,46,54,49,50,48,53,55,44,51,54,46,53,53,55,56,57,56,93,44,91,45,56,48,46,52,52,48,48,57,56,44,51,54,46,53,53,48,54,53,53,93,44,91,45,56,48,46,48,53,51,52,53,57,44,51,54,46,53,52,50,53,50,51,93,44,91,45,56,48,46,48,57,52,51,56,57,44,51,54,46,55,55,57,53,53,50,93,44,91,45,56,48,46,48,52,49,52,57,51,44,51,54,46,55,57,52,51,54,53,93,44,91,45,56,48,46,48,54,54,52,52,57,44,51,54,46,56,52,49,48,53,55,93,44,91,45,56,48,46,50,51,53,52,53,53,44,51,54,46,56,55,50,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,111,110,116,109,111,114,101,110,99,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,54,54,49,52,44,52,53,46,49,57,56,55,51,55,93,44,91,45,56,52,46,51,55,49,55,51,55,44,52,52,46,56,53,53,48,51,57,93,44,91,45,56,51,46,56,56,56,52,56,50,44,52,52,46,56,53,54,54,51,53,93,44,91,45,56,51,46,56,56,49,50,50,51,44,52,53,46,50,48,50,48,55,49,93,44,91,45,56,52,46,50,52,54,54,51,52,44,52,53,46,49,57,56,55,50,55,93,44,91,45,56,52,46,51,54,54,54,49,52,44,52,53,46,49,57,56,55,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,79,115,99,111,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,56,52,56,50,44,52,52,46,56,53,54,54,51,53,93,44,91,45,56,52,46,51,55,49,55,51,55,44,52,52,46,56,53,53,48,51,57,93,44,91,45,56,52,46,51,55,48,54,52,51,44,52,52,46,53,48,55,50,50,51,93,44,91,45,56,51,46,56,56,54,54,51,52,44,52,52,46,53,48,56,57,55,54,93,44,91,45,56,51,46,56,56,56,52,56,52,44,52,52,46,56,53,54,52,53,56,93,44,91,45,56,51,46,56,56,56,52,56,50,44,52,52,46,56,53,54,54,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,111,108,102,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,48,55,56,53,49,44,51,54,46,57,57,54,49,51,52,93,44,91,45,49,48,53,46,49,53,53,48,52,50,44,51,54,46,57,57,53,50,54,50,93,44,91,45,49,48,53,46,50,50,48,53,48,54,44,51,54,46,57,57,52,57,55,52,93,44,91,45,49,48,53,46,50,48,48,49,49,55,44,51,54,46,57,49,53,54,50,56,93,44,91,45,49,48,53,46,50,51,48,54,51,50,44,51,54,46,55,50,51,55,56,52,93,44,91,45,49,48,53,46,51,55,48,54,51,56,44,51,54,46,54,56,49,48,51,50,93,44,91,45,49,48,53,46,51,50,54,54,55,52,44,51,54,46,53,48,48,48,51,49,93,44,91,45,49,48,53,46,51,52,49,50,54,52,44,51,54,46,50,54,49,56,54,51,93,44,91,45,49,48,52,46,56,54,53,50,52,52,44,51,54,46,50,54,49,52,49,57,93,44,91,45,49,48,52,46,56,54,53,52,48,50,44,51,54,46,50,49,55,56,54,57,93,44,91,45,49,48,52,46,52,51,54,48,53,54,44,51,54,46,50,49,56,53,51,52,93,44,91,45,49,48,52,46,48,48,56,56,50,51,44,51,54,46,50,49,56,49,49,53,93,44,91,45,49,48,52,46,48,48,55,56,53,49,44,51,54,46,57,57,54,49,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,108,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,51,52,54,51,44,34,98,101,100,115,34,58,55,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,56,49,53,52,51,44,51,56,46,54,54,48,48,54,50,93,44,91,45,57,48,46,50,53,55,52,49,51,44,51,56,46,53,51,49,56,53,50,93,44,91,45,57,48,46,50,54,52,49,50,51,44,51,56,46,53,50,48,55,50,56,93,44,91,45,57,48,46,48,51,54,49,49,51,44,51,56,46,51,50,51,51,55,55,93,44,91,45,56,57,46,57,49,51,50,50,55,44,51,56,46,51,48,56,50,54,57,93,44,91,45,56,57,46,56,57,57,48,52,51,44,51,56,46,50,50,48,55,53,53,93,44,91,45,56,57,46,55,48,51,50,53,54,44,51,56,46,50,49,57,52,48,52,93,44,91,45,56,57,46,55,48,52,50,52,53,44,51,56,46,52,49,53,55,55,57,93,44,91,45,56,57,46,55,48,54,57,52,57,44,51,56,46,54,53,53,48,49,57,93,44,91,45,57,48,46,49,56,49,53,52,51,44,51,56,46,54,54,48,48,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,53,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,48,52,50,52,53,44,51,56,46,52,49,53,55,55,57,93,44,91,45,56,57,46,55,48,51,50,53,54,44,51,56,46,50,49,57,52,48,52,93,44,91,45,56,57,46,53,57,50,55,57,55,44,51,56,46,50,49,57,50,55,49,93,44,91,45,56,57,46,49,52,55,53,57,55,44,51,56,46,50,49,50,56,57,53,93,44,91,45,56,57,46,49,52,52,51,56,56,44,51,56,46,52,55,51,56,55,56,93,44,91,45,56,57,46,49,52,51,56,54,54,44,51,56,46,53,48,51,48,56,57,93,44,91,45,56,57,46,51,50,57,52,54,57,44,51,56,46,53,49,48,50,49,51,93,44,91,45,56,57,46,53,55,57,51,50,53,44,51,56,46,52,56,48,49,56,52,93,44,91,45,56,57,46,55,48,52,50,52,53,44,51,56,46,52,49,53,55,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,101,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,54,49,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,53,56,52,48,57,44,52,48,46,50,52,50,57,51,51,93,44,91,45,55,56,46,55,54,51,50,48,54,44,52,48,46,48,53,55,48,48,53,93,44,91,45,55,56,46,55,53,55,50,52,49,44,51,57,46,56,50,51,52,56,52,93,44,91,45,55,56,46,56,48,56,51,56,55,44,51,57,46,55,50,50,57,49,49,93,44,91,45,55,56,46,51,56,48,53,57,57,44,51,57,46,55,50,50,53,57,57,93,44,91,45,55,56,46,50,57,57,48,48,51,44,51,57,46,56,50,53,53,93,44,91,45,55,56,46,49,51,52,56,54,51,44,52,48,46,49,54,53,49,51,49,93,44,91,45,55,56,46,50,53,55,51,48,53,44,52,48,46,50,57,55,56,56,51,93,44,91,45,55,56,46,54,50,48,51,56,51,44,52,48,46,51,50,55,48,50,53,93,44,91,45,55,56,46,54,53,56,52,48,57,44,52,48,46,50,52,50,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,52,50,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,49,52,48,53,55,49,44,51,53,46,48,57,57,54,55,56,93,44,91,45,57,52,46,50,50,56,50,50,54,44,51,53,46,48,55,49,57,53,53,93,44,91,45,57,52,46,50,51,48,53,50,52,44,51,52,46,57,54,56,53,50,55,93,44,91,45,57,52,46,52,52,55,55,55,52,44,51,52,46,57,51,51,57,51,55,93,44,91,45,57,52,46,52,53,52,53,54,52,44,51,52,46,55,50,56,57,54,50,93,44,91,45,57,52,46,51,49,55,54,53,57,44,51,52,46,54,57,55,52,48,56,93,44,91,45,57,52,46,48,49,56,49,54,56,44,51,52,46,54,57,50,52,54,57,93,44,91,45,57,51,46,57,51,48,53,48,57,44,51,52,46,54,54,53,54,48,56,93,44,91,45,57,51,46,55,49,48,50,57,55,44,51,52,46,55,52,53,50,57,54,93,44,91,45,57,51,46,55,48,52,56,56,53,44,51,53,46,48,49,57,55,49,53,93,44,91,45,57,52,46,48,55,52,52,52,57,44,51,53,46,48,50,54,52,51,50,93,44,91,45,57,52,46,49,52,48,53,55,49,44,51,53,46,48,57,57,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,76,97,98,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,54,55,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,50,49,49,51,44,51,55,46,51,56,51,57,57,93,44,91,45,57,53,46,53,50,50,52,49,53,44,51,54,46,57,57,57,50,56,93,44,91,45,57,53,46,52,48,55,55,51,51,44,51,54,46,57,57,57,51,49,49,93,44,91,45,57,53,46,48,55,51,53,48,52,44,51,54,46,57,57,57,53,53,50,93,44,91,45,57,53,46,48,55,53,49,54,54,44,51,55,46,51,51,57,57,51,55,93,44,91,45,57,53,46,48,56,56,49,56,57,44,51,55,46,51,56,51,56,51,55,93,44,91,45,57,53,46,53,50,49,49,51,44,51,55,46,51,56,51,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,51,56,50,44,34,98,101,100,115,34,58,50,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,48,51,55,44,52,49,46,49,50,53,48,57,51,93,44,91,45,56,48,46,53,49,57,49,53,44,52,48,46,57,48,48,51,50,54,93,44,91,45,56,48,46,53,49,57,48,52,52,44,52,48,46,56,53,49,51,51,57,93,44,91,45,56,48,46,49,53,56,53,51,44,52,48,46,56,53,53,48,57,54,93,44,91,45,56,48,46,49,54,54,52,55,50,44,52,49,46,48,48,48,57,50,56,93,44,91,45,56,48,46,48,57,56,50,57,52,44,52,49,46,48,55,49,48,53,52,93,44,91,45,56,48,46,50,53,55,57,51,51,44,52,49,46,49,50,56,49,54,53,93,44,91,45,56,48,46,53,49,57,48,51,55,44,52,49,46,49,50,53,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,54,57,57,53,49,44,52,48,46,52,51,51,52,56,54,93,44,91,45,56,49,46,50,55,53,51,49,57,44,52,48,46,51,48,51,52,51,52,93,44,91,45,56,49,46,51,51,56,48,53,55,44,52,48,46,50,49,52,50,53,51,93,44,91,45,56,49,46,50,50,53,57,50,52,44,52,48,46,49,55,48,48,55,53,93,44,91,45,56,48,46,56,56,50,56,57,50,44,52,48,46,49,53,57,52,57,53,93,44,91,45,56,48,46,56,54,53,53,48,52,44,52,48,46,52,50,50,57,50,57,93,44,91,45,56,48,46,57,52,49,57,49,49,44,52,48,46,52,50,52,55,93,44,91,45,56,49,46,50,54,57,57,53,49,44,52,48,46,52,51,51,52,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,101,120,97,110,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,49,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,50,56,51,50,52,44,51,53,46,57,57,54,53,56,51,93,44,91,45,56,49,46,51,51,52,50,55,50,44,51,53,46,55,57,54,50,56,49,93,44,91,45,56,49,46,49,52,50,51,51,56,44,51,53,46,56,50,55,52,51,52,93,44,91,45,56,49,46,49,48,57,53,48,55,44,51,53,46,55,55,54,53,57,52,93,44,91,45,56,49,46,48,48,53,53,52,49,44,51,53,46,57,53,56,50,56,55,93,44,91,45,56,49,46,48,50,56,56,51,51,44,51,54,46,48,52,53,54,53,50,93,44,91,45,56,49,46,51,50,56,51,50,52,44,51,53,46,57,57,54,53,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,97,112,101,32,77,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,55,48,53,44,34,98,101,100,115,34,58,50,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,52,54,52,57,51,44,51,57,46,50,57,56,50,51,93,44,91,45,55,52,46,55,53,50,49,54,53,44,51,57,46,50,57,53,48,48,53,93,44,91,45,55,52,46,56,54,49,50,57,52,44,51,57,46,51,50,51,56,49,53,93,44,91,45,55,52,46,57,49,53,54,56,57,44,51,57,46,49,55,53,55,53,53,93,44,91,45,55,53,46,49,54,56,52,54,50,44,51,57,46,48,53,54,49,55,57,93,44,91,45,55,53,46,49,51,56,52,54,49,44,51,57,46,48,48,50,54,57,55,93,44,91,45,55,53,46,48,49,53,49,50,51,44,51,56,46,55,56,56,54,53,55,93,44,91,45,55,52,46,55,50,56,52,48,50,44,51,56,46,57,55,52,50,52,57,93,44,91,45,55,52,46,54,52,52,50,55,57,44,51,57,46,49,49,52,56,50,52,93,44,91,45,55,52,46,52,54,52,57,51,44,51,57,46,50,57,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,104,101,115,104,105,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,50,54,51,44,34,98,101,100,115,34,58,49,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,52,53,50,50,53,49,44,52,51,46,49,54,49,51,53,52,93,44,91,45,55,50,46,52,55,51,48,55,54,44,52,50,46,57,55,50,53,50,56,93,44,91,45,55,50,46,53,51,50,48,50,50,44,52,50,46,57,53,52,57,52,51,93,44,91,45,55,50,46,53,52,49,53,49,51,44,52,50,46,56,48,55,48,57,52,93,44,91,45,55,50,46,52,53,56,52,49,50,44,52,50,46,55,50,54,57,51,51,93,44,91,45,55,50,46,50,56,51,48,52,53,44,52,50,46,55,50,49,54,49,53,93,44,91,45,55,49,46,57,50,56,57,57,51,44,52,50,46,55,49,50,49,48,50,93,44,91,45,55,50,46,48,48,54,49,57,44,52,50,46,57,52,51,55,56,57,93,44,91,45,55,50,46,48,51,56,49,52,57,44,52,51,46,49,50,56,56,48,55,93,44,91,45,55,50,46,49,53,54,54,54,49,44,52,51,46,49,56,49,57,54,56,93,44,91,45,55,50,46,52,53,50,50,53,49,44,52,51,46,49,54,49,51,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,57,50,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,54,49,51,57,51,44,52,56,46,53,52,50,51,52,56,93,44,91,45,57,55,46,49,49,54,53,55,44,52,56,46,50,55,57,54,54,49,93,44,91,45,57,55,46,49,52,49,50,50,49,44,52,56,46,49,57,51,55,49,50,93,44,91,45,57,55,46,49,52,54,55,48,51,44,52,56,46,49,55,51,50,50,51,93,44,91,45,57,54,46,53,48,48,56,52,51,44,52,56,46,49,55,52,49,48,56,93,44,91,45,57,53,46,53,57,51,55,56,56,44,52,56,46,49,55,50,57,49,54,93,44,91,45,57,53,46,54,48,50,51,49,53,44,52,56,46,53,51,56,56,56,55,93,44,91,45,57,54,46,51,56,55,56,51,53,44,52,56,46,53,52,52,51,48,56,93,44,91,45,57,55,46,49,54,51,51,53,53,44,52,56,46,53,52,51,57,54,55,93,44,91,45,57,55,46,49,54,49,51,57,51,44,52,56,46,53,52,50,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,75,105,110,103,32,87,105,108,108,105,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,52,53,50,49,53,44,51,55,46,55,56,57,49,55,53,93,44,91,45,55,55,46,49,50,51,54,55,53,44,51,55,46,54,50,54,56,56,49,93,44,91,45,55,54,46,55,57,50,49,56,52,44,51,55,46,53,49,55,53,57,52,93,44,91,45,55,54,46,55,55,55,55,50,57,44,51,55,46,53,53,52,52,52,54,93,44,91,45,55,54,46,57,50,55,53,44,51,55,46,54,57,48,52,56,53,93,44,91,45,55,55,46,48,51,51,50,55,51,44,51,55,46,55,50,48,56,48,57,93,44,91,45,55,55,46,49,56,49,52,49,56,44,51,55,46,56,57,49,54,53,52,93,44,91,45,55,55,46,51,52,53,50,49,53,44,51,55,46,55,56,57,49,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,72,117,101,114,102,97,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,56,51,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,52,56,53,53,49,54,44,51,55,46,53,55,55,56,57,57,93,44,91,45,49,48,53,46,50,57,53,53,56,55,44,51,55,46,54,53,52,52,49,54,93,44,91,45,49,48,53,46,49,57,51,50,51,55,44,51,55,46,53,57,50,49,54,56,93,44,91,45,49,48,53,46,49,53,52,49,55,54,44,51,55,46,50,57,51,49,50,57,93,44,91,45,49,48,52,46,57,57,53,53,48,53,44,51,55,46,51,55,53,53,53,49,93,44,91,45,49,48,52,46,55,52,56,52,52,55,44,51,55,46,52,48,55,52,51,55,93,44,91,45,49,48,52,46,53,52,56,54,53,50,44,51,55,46,53,55,52,55,93,44,91,45,49,48,52,46,52,53,52,57,51,44,51,55,46,55,52,48,56,51,57,93,44,91,45,49,48,52,46,51,53,49,49,48,57,44,51,55,46,56,49,55,52,56,56,93,44,91,45,49,48,52,46,54,52,54,51,56,51,44,51,55,46,57,48,48,53,50,55,93,44,91,45,49,48,53,46,48,49,51,55,50,57,44,51,55,46,56,56,49,50,55,49,93,44,91,45,49,48,53,46,48,52,57,57,49,55,44,51,55,46,57,49,53,52,55,57,93,44,91,45,49,48,53,46,49,54,56,54,53,50,44,51,56,46,48,49,56,57,52,54,93,44,91,45,49,48,53,46,52,49,51,54,51,53,44,51,55,46,56,57,48,53,50,55,93,44,91,45,49,48,53,46,52,55,51,50,48,52,44,51,55,46,56,57,53,57,55,93,44,91,45,49,48,53,46,52,53,55,50,53,53,44,51,55,46,55,53,49,52,54,52,93,44,91,45,49,48,53,46,52,56,53,53,49,54,44,51,55,46,53,55,55,56,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,53,34,44,34,78,65,77,69,34,58,34,75,97,114,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,56,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,50,56,52,52,51,44,50,57,46,50,50,49,55,52,56,93,44,91,45,57,56,46,49,57,48,57,57,49,44,50,56,46,56,56,50,51,51,51,93,44,91,45,57,56,46,48,57,56,51,49,53,44,50,56,46,55,56,54,57,52,57,93,44,91,45,57,56,46,48,48,53,50,53,50,44,50,56,46,54,57,48,50,51,57,93,44,91,45,57,55,46,57,49,53,49,48,54,44,50,56,46,55,49,57,54,52,56,93,44,91,45,57,55,46,55,55,56,53,51,44,50,56,46,54,54,56,48,50,55,93,44,91,45,57,55,46,53,55,52,54,51,57,44,50,56,46,56,49,51,51,93,44,91,45,57,55,46,55,53,53,49,49,44,50,57,46,48,48,55,49,49,51,93,44,91,45,57,55,46,54,49,51,49,51,50,44,50,57,46,49,48,57,55,54,53,93,44,91,45,57,55,46,55,50,56,52,52,51,44,50,57,46,50,50,49,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,53,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,49,51,54,49,49,44,51,53,46,53,56,56,48,56,57,93,44,91,45,56,56,46,54,55,53,56,54,55,44,51,53,46,52,56,57,49,54,51,93,44,91,45,56,56,46,56,52,49,54,48,55,44,51,53,46,52,50,55,56,50,54,93,44,91,45,56,56,46,55,56,49,55,54,56,44,51,53,46,50,52,55,53,56,55,93,44,91,45,56,56,46,55,49,57,55,54,49,44,51,53,46,50,52,55,53,53,93,44,91,45,56,56,46,54,52,48,57,51,52,44,51,53,46,51,54,49,48,49,55,93,44,91,45,56,56,46,51,54,50,53,55,50,44,51,53,46,51,56,48,57,57,52,93,44,91,45,56,56,46,51,54,48,56,50,57,44,51,53,46,52,49,56,57,55,50,93,44,91,45,56,56,46,52,49,52,53,56,50,44,51,53,46,52,56,50,51,51,57,93,44,91,45,56,56,46,54,49,51,54,49,49,44,51,53,46,53,56,56,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,52,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,57,57,49,48,53,44,51,57,46,55,57,48,48,54,93,44,91,45,57,48,46,54,52,53,57,57,44,51,57,46,55,48,51,51,54,56,93,44,91,45,57,48,46,53,56,49,48,53,53,44,51,57,46,53,50,49,55,50,56,93,44,91,45,57,48,46,51,48,49,56,51,49,44,51,57,46,53,50,48,51,52,52,93,44,91,45,57,48,46,51,48,48,54,54,54,44,51,57,46,54,51,54,53,52,49,93,44,91,45,57,48,46,51,55,49,50,53,54,44,51,57,46,55,53,51,49,50,50,93,44,91,45,57,48,46,53,57,57,49,48,53,44,51,57,46,55,57,48,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,77,105,108,108,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,51,51,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,48,49,54,48,48,51,44,51,57,46,51,49,52,53,54,49,93,44,91,45,49,49,50,46,49,56,56,57,50,50,44,51,57,46,51,50,57,51,57,50,93,44,91,45,49,49,50,46,50,49,50,48,52,53,44,51,57,46,53,53,51,57,56,55,93,44,91,45,49,49,51,46,49,48,55,52,55,53,44,51,57,46,53,53,50,53,49,51,93,44,91,45,49,49,51,46,56,49,53,55,52,51,44,51,57,46,53,53,50,54,52,52,93,44,91,45,49,49,52,46,48,52,55,54,52,57,44,51,57,46,53,52,50,55,52,50,93,44,91,45,49,49,52,46,48,52,57,56,48,55,44,51,56,46,54,55,55,51,54,53,93,44,91,45,49,49,52,46,48,52,57,57,55,55,44,51,56,46,53,55,50,57,55,52,93,44,91,45,49,49,50,46,53,49,53,51,57,52,44,51,56,46,53,55,50,56,52,53,93,44,91,45,49,49,50,46,52,52,55,53,49,55,44,51,56,46,54,56,49,50,55,93,44,91,45,49,49,50,46,51,48,57,57,53,51,44,51,56,46,54,55,54,50,57,93,44,91,45,49,49,50,46,50,49,56,51,53,54,44,51,56,46,55,50,55,51,54,49,93,44,91,45,49,49,50,46,50,50,52,52,54,49,44,51,56,46,56,54,52,56,48,51,93,44,91,45,49,49,50,46,48,49,52,48,56,51,44,51,57,46,48,52,53,53,49,56,93,44,91,45,49,49,50,46,48,49,54,48,48,51,44,51,57,46,51,49,52,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,57,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,53,54,50,52,55,44,52,49,46,49,51,57,48,56,51,93,44,91,45,49,49,49,46,56,49,53,52,49,52,44,52,48,46,57,53,55,52,51,93,44,91,45,49,49,49,46,55,51,56,55,52,52,44,52,48,46,56,54,48,57,57,56,93,44,91,45,49,49,49,46,54,52,49,48,53,50,44,52,48,46,55,57,56,57,50,53,93,44,91,45,49,49,49,46,53,50,55,52,54,53,44,52,48,46,55,56,53,55,53,50,93,44,91,45,49,49,49,46,52,56,54,49,53,57,44,52,48,46,56,55,51,49,50,52,93,44,91,45,49,49,49,46,53,48,55,53,49,44,52,49,46,48,54,51,50,51,52,93,44,91,45,49,49,49,46,50,54,52,57,55,52,44,52,49,46,49,52,52,48,52,52,93,44,91,45,49,49,49,46,50,50,53,56,50,51,44,52,49,46,49,57,49,48,49,55,93,44,91,45,49,49,49,46,50,57,52,56,56,54,44,52,49,46,51,50,57,57,54,57,93,44,91,45,49,49,49,46,52,50,48,55,50,56,44,52,49,46,51,54,49,51,48,56,93,44,91,45,49,49,49,46,52,57,54,56,49,53,44,52,49,46,50,51,48,54,49,93,44,91,45,49,49,49,46,54,53,56,54,51,54,44,52,49,46,49,56,53,55,49,56,93,44,91,45,49,49,49,46,56,53,55,55,57,57,44,52,49,46,49,57,55,55,53,51,93,44,91,45,49,49,49,46,56,53,54,50,52,55,44,52,49,46,49,51,57,48,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,55,34,44,34,78,65,77,69,34,58,34,75,97,117,102,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,57,49,48,44,34,98,101,100,115,34,58,51,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,49,56,57,55,44,51,50,46,56,49,51,54,49,54,93,44,91,45,57,54,46,53,50,57,57,56,55,44,51,50,46,53,52,53,50,56,50,93,44,91,45,57,54,46,52,51,53,50,51,51,44,51,50,46,52,48,56,57,56,54,93,44,91,45,57,54,46,52,53,50,49,51,56,44,51,50,46,51,53,56,54,51,49,93,44,91,45,57,54,46,48,55,53,56,57,57,44,51,50,46,51,53,55,53,48,53,93,44,91,45,57,54,46,48,55,54,56,48,49,44,51,50,46,56,51,56,52,56,57,93,44,91,45,57,54,46,50,57,55,51,50,50,44,51,50,46,56,52,49,55,50,51,93,44,91,45,57,54,46,53,49,56,57,55,44,51,50,46,56,49,51,54,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,108,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,52,57,53,52,52,44,51,51,46,54,53,50,54,57,55,93,44,91,45,49,48,57,46,52,57,53,55,52,44,51,51,46,48,55,56,52,48,57,93,44,91,45,49,48,57,46,50,52,53,48,48,53,44,51,50,46,55,52,49,57,56,53,93,44,91,45,49,48,57,46,50,48,54,50,52,57,44,51,50,46,54,51,53,56,48,51,93,44,91,45,49,48,57,46,50,50,54,48,55,44,51,50,46,53,50,57,48,57,54,93,44,91,45,49,48,57,46,49,49,52,49,56,44,51,50,46,52,50,54,51,53,51,93,44,91,45,49,48,57,46,48,52,55,57,49,56,44,51,50,46,52,50,54,51,55,54,93,44,91,45,49,48,57,46,48,52,55,54,52,51,44,51,50,46,55,55,55,56,48,50,93,44,91,45,49,48,57,46,48,52,55,53,55,56,44,51,51,46,50,48,56,56,57,56,93,44,91,45,49,48,57,46,48,52,54,55,49,55,44,51,51,46,55,55,55,52,48,55,93,44,91,45,49,48,57,46,51,52,56,53,56,49,44,51,51,46,55,55,56,49,50,51,93,44,91,45,49,48,57,46,52,57,53,52,52,44,51,51,46,54,53,50,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,77,97,114,105,99,111,112,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,53,51,57,49,51,44,34,98,101,100,115,34,58,49,48,57,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,52,57,52,55,55,56,44,51,51,46,57,57,57,56,49,55,93,44,91,45,49,49,49,46,55,50,53,51,49,44,51,51,46,57,57,57,56,52,57,93,44,91,45,49,49,50,46,49,54,51,50,53,51,44,51,52,46,48,52,55,52,55,49,93,44,91,45,49,49,50,46,50,55,54,48,52,44,51,51,46,56,56,50,51,49,50,93,44,91,45,49,49,50,46,55,52,51,57,53,49,44,51,51,46,57,57,57,56,57,56,93,44,91,45,49,49,51,46,51,51,51,55,53,51,44,51,51,46,57,57,57,50,50,55,93,44,91,45,49,49,51,46,51,51,53,48,52,56,44,51,51,46,51,55,55,52,54,57,93,44,91,45,49,49,51,46,51,51,51,56,57,52,44,51,50,46,53,48,53,49,56,56,93,44,91,45,49,49,50,46,50,48,51,54,50,52,44,51,50,46,53,48,54,55,50,49,93,44,91,45,49,49,50,46,49,57,49,54,48,56,44,51,51,46,50,54,52,54,57,56,93,44,91,45,49,49,50,46,48,56,49,57,52,54,44,51,51,46,50,48,52,54,56,54,93,44,91,45,49,49,49,46,53,56,50,54,51,49,44,51,51,46,50,48,53,52,48,56,93,44,91,45,49,49,49,46,53,56,48,54,51,52,44,51,51,46,52,54,53,56,93,44,91,45,49,49,49,46,48,51,57,57,55,54,44,51,51,46,52,54,54,48,49,57,93,44,91,45,49,49,49,46,49,53,51,51,53,52,44,51,51,46,54,55,55,54,48,54,93,44,91,45,49,49,49,46,50,54,49,55,51,44,51,51,46,54,50,50,53,55,49,93,44,91,45,49,49,49,46,51,56,54,56,49,50,44,51,51,46,55,53,48,48,52,52,93,44,91,45,49,49,49,46,51,55,50,51,49,55,44,51,51,46,56,50,51,57,50,52,93,44,91,45,49,49,49,46,52,57,52,55,55,56,44,51,51,46,57,57,57,56,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,79,103,101,109,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,50,56,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,54,54,51,52,44,52,52,46,53,48,56,57,55,54,93,44,91,45,56,52,46,51,55,48,54,52,51,44,52,52,46,53,48,55,50,50,51,93,44,91,45,56,52,46,51,54,56,48,51,57,44,52,52,46,49,54,48,53,51,56,93,44,91,45,56,52,46,49,54,54,49,48,55,44,52,52,46,49,54,49,55,56,56,93,44,91,45,56,51,46,56,56,51,57,55,55,44,52,52,46,49,54,49,55,56,54,93,44,91,45,56,51,46,56,56,54,54,51,52,44,52,52,46,53,48,56,57,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,50,56,48,50,54,44,51,54,46,52,49,49,56,51,54,93,44,91,45,56,53,46,56,52,54,52,56,51,44,51,54,46,50,56,56,49,54,55,93,44,91,45,56,53,46,55,56,48,49,52,56,44,51,54,46,50,51,56,48,49,49,93,44,91,45,56,53,46,54,51,52,49,53,56,44,51,54,46,50,49,51,51,52,54,93,44,91,45,56,53,46,52,57,53,49,50,52,44,51,54,46,51,48,50,50,55,56,93,44,91,45,56,53,46,52,57,53,52,50,50,44,51,54,46,52,48,51,48,55,52,93,44,91,45,56,53,46,55,48,52,48,55,53,44,51,54,46,53,50,50,51,57,53,93,44,91,45,56,53,46,56,49,51,56,56,53,44,51,54,46,52,57,57,52,55,51,93,44,91,45,56,53,46,56,50,56,48,50,54,44,51,54,46,52,49,49,56,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,56,49,44,34,98,101,100,115,34,58,49,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,52,53,57,49,57,44,51,56,46,56,53,48,49,52,56,93,44,91,45,56,56,46,50,53,56,53,56,51,44,51,56,46,56,52,55,53,50,57,93,44,91,45,56,56,46,50,53,51,57,55,56,44,51,56,46,53,57,57,53,48,50,93,44,91,45,56,56,46,49,52,55,56,48,51,44,51,56,46,53,54,57,48,51,55,93,44,91,45,56,55,46,57,53,52,54,55,53,44,51,56,46,53,55,48,50,51,93,44,91,45,56,55,46,57,49,50,50,56,54,44,51,56,46,53,55,48,49,48,52,93,44,91,45,56,55,46,57,48,56,49,49,51,44,51,56,46,56,53,48,49,48,55,93,44,91,45,56,55,46,57,52,53,57,49,57,44,51,56,46,56,53,48,49,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,108,111,117,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,54,52,53,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,53,51,48,50,44,51,52,46,50,53,57,51,49,55,93,44,91,45,56,54,46,53,49,57,54,48,51,44,51,52,46,50,53,49,55,54,54,93,44,91,45,56,54,46,53,57,57,55,56,53,44,51,52,46,49,50,49,55,50,93,44,91,45,56,54,46,54,56,55,54,57,55,44,51,52,46,48,56,48,55,51,53,93,44,91,45,56,54,46,55,54,51,57,57,57,44,51,51,46,57,55,52,49,56,55,93,44,91,45,56,54,46,57,54,51,51,53,56,44,51,51,46,56,53,56,50,50,49,93,44,91,45,56,54,46,57,53,51,54,54,52,44,51,51,46,56,49,53,50,57,55,93,44,91,45,56,54,46,55,53,57,49,52,52,44,51,51,46,56,52,48,54,49,55,93,44,91,45,56,54,46,53,55,55,55,57,57,44,51,51,46,55,54,53,51,49,54,93,44,91,45,56,54,46,52,48,53,57,56,49,44,51,51,46,56,51,53,56,57,54,93,44,91,45,56,54,46,51,50,53,54,50,50,44,51,51,46,57,52,48,49,52,55,93,44,91,45,56,54,46,51,48,51,53,49,54,44,51,52,46,48,57,57,48,55,51,93,44,91,45,56,54,46,52,53,51,48,50,44,51,52,46,50,53,57,51,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,76,105,98,101,114,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,55,52,51,48,54,52,44,52,56,46,57,57,56,54,48,54,93,44,91,45,49,49,49,46,50,54,57,56,54,50,44,52,56,46,57,57,55,50,51,93,44,91,45,49,49,49,46,50,55,53,51,48,54,44,52,56,46,50,49,57,53,51,49,93,44,91,45,49,49,49,46,52,48,57,48,49,56,44,52,56,46,50,49,57,53,52,50,93,44,91,45,49,49,49,46,52,48,57,48,57,55,44,52,56,46,49,51,50,50,49,56,93,44,91,45,49,49,48,46,56,50,55,49,54,56,44,52,56,46,49,51,51,50,48,53,93,44,91,45,49,49,48,46,55,53,53,56,55,51,44,52,56,46,50,49,57,54,48,49,93,44,91,45,49,49,48,46,55,52,51,48,54,52,44,52,56,46,57,57,56,54,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,68,117,118,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,51,51,50,53,44,50,56,46,48,53,55,52,56,93,44,91,45,57,56,46,55,57,56,51,50,51,44,50,55,46,51,53,52,48,50,57,93,44,91,45,57,56,46,53,53,50,54,49,55,44,50,55,46,51,53,57,49,48,49,93,44,91,45,57,56,46,53,50,51,50,56,52,44,50,55,46,50,54,53,49,53,93,44,91,45,57,56,46,50,51,50,52,54,52,44,50,55,46,50,54,50,52,56,55,93,44,91,45,57,56,46,50,51,53,52,57,55,44,50,56,46,48,53,55,57,54,54,93,44,91,45,57,56,46,51,51,52,51,50,51,44,50,56,46,48,53,55,56,93,44,91,45,57,56,46,56,48,51,51,50,53,44,50,56,46,48,53,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,82,97,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,49,53,50,52,55,44,51,57,46,54,53,55,54,52,52,93,44,91,45,57,49,46,55,49,55,57,54,56,44,51,57,46,51,51,57,49,50,50,93,44,91,45,57,49,46,52,51,56,50,51,53,44,51,57,46,51,49,56,55,49,54,93,44,91,45,57,49,46,52,54,48,52,52,50,44,51,57,46,52,53,48,55,50,50,93,44,91,45,57,49,46,49,55,56,48,49,50,44,51,57,46,53,57,56,49,57,54,93,44,91,45,57,49,46,51,48,54,54,57,51,44,51,57,46,54,56,52,56,54,53,93,44,91,45,57,49,46,55,49,53,52,57,55,44,51,57,46,54,56,54,52,57,50,93,44,91,45,57,49,46,55,49,53,50,52,55,44,51,57,46,54,53,55,54,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,52,55,53,44,34,98,101,100,115,34,58,49,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,56,54,56,51,52,44,51,50,46,53,52,57,52,50,56,93,44,91,45,57,55,46,53,53,48,53,56,50,44,51,50,46,53,53,53,51,57,49,93,44,91,45,57,55,46,54,49,55,48,54,54,44,51,50,46,53,53,53,52,56,52,93,44,91,45,57,55,46,54,49,53,50,56,54,44,51,50,46,51,49,56,54,49,56,93,44,91,45,57,55,46,54,49,53,48,53,53,44,51,50,46,50,48,51,53,56,49,93,44,91,45,57,55,46,52,55,54,48,56,54,44,51,50,46,49,55,51,52,54,93,44,91,45,57,55,46,48,56,54,49,57,49,44,51,50,46,50,54,53,52,53,49,93,44,91,45,57,55,46,48,56,54,56,51,52,44,51,50,46,53,52,57,52,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,50,55,51,50,57,44,51,49,46,55,54,50,53,54,51,93,44,91,45,56,53,46,48,52,53,52,57,53,44,51,49,46,53,49,55,49,50,57,93,44,91,45,56,52,46,56,49,57,56,48,55,44,51,49,46,53,48,49,49,57,50,93,44,91,45,56,52,46,56,49,55,56,52,51,44,51,49,46,54,49,57,55,55,49,93,44,91,45,56,52,46,57,52,50,51,53,51,44,51,49,46,54,49,56,54,54,57,93,44,91,45,56,52,46,57,53,56,54,52,44,51,49,46,55,55,55,56,53,52,93,44,91,45,56,53,46,49,52,49,49,51,44,51,49,46,55,56,48,52,54,51,93,44,91,45,56,53,46,49,50,55,51,50,57,44,51,49,46,55,54,50,53,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,56,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,54,55,50,50,50,56,44,52,52,46,57,57,53,49,49,55,93,44,91,45,49,49,57,46,54,53,50,52,51,49,44,52,52,46,56,50,51,50,57,57,93,44,91,45,49,49,57,46,54,53,53,53,49,55,44,52,52,46,51,48,55,48,52,53,93,44,91,45,49,49,57,46,54,53,55,49,56,51,44,52,51,46,57,53,56,57,50,93,44,91,45,49,49,56,46,56,49,54,57,51,49,44,52,51,46,57,54,48,55,51,51,93,44,91,45,49,49,56,46,56,49,54,56,57,44,52,52,46,48,52,55,56,50,56,93,44,91,45,49,49,56,46,50,50,55,54,52,53,44,52,52,46,48,51,57,56,54,50,93,44,91,45,49,49,56,46,50,51,50,50,49,52,44,52,52,46,50,53,54,49,50,57,93,44,91,45,49,49,56,46,52,57,55,52,57,57,44,52,52,46,50,53,53,50,52,56,93,44,91,45,49,49,56,46,52,48,57,55,55,52,44,52,52,46,51,55,56,54,49,57,93,44,91,45,49,49,56,46,52,50,50,49,55,51,44,52,52,46,52,52,56,57,56,52,93,44,91,45,49,49,56,46,51,48,53,55,55,56,44,52,52,46,53,56,56,56,49,93,44,91,45,49,49,56,46,53,49,54,52,53,50,44,52,52,46,55,48,50,52,54,50,93,44,91,45,49,49,56,46,50,56,53,52,51,57,44,52,52,46,55,53,48,57,55,53,93,44,91,45,49,49,56,46,51,49,56,55,50,53,44,52,52,46,56,51,54,50,55,57,93,44,91,45,49,49,56,46,50,52,52,54,54,50,44,52,52,46,57,53,56,51,57,54,93,44,91,45,49,49,56,46,53,49,56,54,56,57,44,52,52,46,57,57,53,56,55,55,93,44,91,45,49,49,57,46,49,54,50,57,54,54,44,52,52,46,57,57,54,50,52,49,93,44,91,45,49,49,57,46,54,55,50,50,50,56,44,52,52,46,57,57,53,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,111,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,51,48,56,44,34,98,101,100,115,34,58,50,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,50,57,48,50,51,54,44,52,51,46,54,49,48,57,53,57,93,44,91,45,49,50,52,46,51,56,48,50,55,52,44,52,51,46,52,48,50,56,52,54,93,44,91,45,49,50,52,46,52,55,54,57,52,56,44,52,51,46,51,50,57,51,55,49,93,44,91,45,49,50,52,46,52,54,53,50,51,53,44,52,51,46,50,48,48,51,48,56,93,44,91,45,49,50,52,46,53,53,50,51,55,51,44,52,50,46,57,53,52,51,49,49,93,44,91,45,49,50,52,46,50,53,56,51,56,56,44,52,50,46,57,53,52,57,52,54,93,44,91,45,49,50,52,46,49,54,49,51,48,56,44,52,50,46,56,56,51,52,57,57,93,44,91,45,49,50,52,46,49,51,56,55,52,56,44,52,50,46,54,55,49,49,49,53,93,44,91,45,49,50,51,46,57,57,54,50,57,49,44,52,50,46,54,56,53,54,53,49,93,44,91,45,49,50,51,46,57,50,53,55,49,55,44,52,50,46,55,55,52,53,49,52,93,44,91,45,49,50,51,46,56,49,49,53,53,51,44,52,50,46,55,56,56,56,51,55,93,44,91,45,49,50,51,46,56,50,49,49,49,56,44,52,50,46,57,57,54,50,57,49,93,44,91,45,49,50,51,46,55,48,50,49,52,52,44,52,51,46,48,56,55,48,56,51,93,44,91,45,49,50,51,46,55,48,52,55,53,50,44,52,51,46,50,53,55,55,52,49,93,44,91,45,49,50,51,46,55,54,49,53,50,56,44,52,51,46,52,50,50,50,57,52,93,44,91,45,49,50,51,46,56,55,53,54,50,56,44,52,51,46,53,49,53,57,52,55,93,44,91,45,49,50,51,46,56,55,53,54,57,56,44,52,51,46,54,48,56,52,48,55,93,44,91,45,49,50,52,46,50,57,48,50,51,54,44,52,51,46,54,49,48,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,48,56,53,57,51,44,51,51,46,51,55,55,49,57,93,44,91,45,57,53,46,51,48,56,57,53,55,44,51,50,46,57,54,50,53,55,50,93,44,91,45,57,53,46,49,53,50,50,48,54,44,51,51,46,48,49,51,52,53,93,44,91,45,57,53,46,49,50,54,49,51,44,51,51,46,48,51,52,53,56,49,93,44,91,45,57,53,46,49,50,53,52,53,49,44,51,51,46,51,56,57,52,53,52,93,44,91,45,57,53,46,51,48,54,54,52,44,51,51,46,51,55,56,48,50,55,93,44,91,45,57,53,46,51,48,56,53,57,51,44,51,51,46,51,55,55,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,52,56,48,44,34,98,101,100,115,34,58,52,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,48,53,55,48,48,53,44,52,51,46,55,52,52,53,49,51,93,44,91,45,55,52,46,50,49,52,54,50,53,44,52,51,46,55,50,56,55,48,51,93,44,91,45,55,52,46,49,54,48,49,44,52,51,46,51,55,49,53,51,50,93,44,91,45,55,51,46,56,56,52,49,51,57,44,52,51,46,51,57,56,48,52,49,93,44,91,45,55,51,46,55,56,57,55,51,49,44,52,51,46,50,52,52,52,50,49,93,44,91,45,55,51,46,53,57,52,57,54,44,52,51,46,51,48,54,49,49,56,93,44,91,45,55,51,46,54,50,56,57,52,44,52,51,46,52,56,54,51,57,49,93,44,91,45,55,51,46,52,57,52,51,49,52,44,52,51,46,54,53,51,57,54,54,93,44,91,45,55,51,46,52,51,56,49,50,44,52,51,46,56,48,51,54,56,55,93,44,91,45,55,52,46,48,53,55,48,48,53,44,52,51,46,55,52,52,53,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,51,56,49,55,54,44,51,56,46,54,50,55,51,49,50,93,44,91,45,55,56,46,52,53,50,56,48,49,44,51,56,46,52,55,53,53,50,55,93,44,91,45,55,56,46,52,50,57,54,50,54,44,51,56,46,51,54,54,55,48,52,93,44,91,45,55,56,46,50,56,56,56,51,55,44,51,56,46,50,55,50,54,53,54,93,44,91,45,55,56,46,50,50,49,49,48,52,44,51,56,46,50,51,48,48,56,57,93,44,91,45,55,56,46,48,57,52,52,57,56,44,51,56,46,51,49,49,50,52,50,93,44,91,45,55,56,46,48,57,54,48,56,51,44,51,56,46,52,48,52,51,52,51,93,44,91,45,55,56,46,50,51,49,56,48,51,44,51,56,46,53,51,50,53,51,57,93,44,91,45,55,56,46,51,51,56,49,55,54,44,51,56,46,54,50,55,51,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,116,111,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,57,50,48,52,51,44,51,52,46,54,56,48,53,53,54,93,44,91,45,57,54,46,48,57,50,48,49,50,44,51,52,46,53,48,54,48,53,57,93,44,91,45,57,54,46,49,52,53,52,50,51,44,51,52,46,52,49,56,51,49,51,93,44,91,45,57,54,46,52,48,55,48,55,52,44,51,52,46,52,49,56,51,57,93,44,91,45,57,54,46,52,48,55,53,49,55,44,51,52,46,49,53,55,51,49,55,93,44,91,45,57,53,46,57,57,49,53,55,56,44,51,52,46,49,53,54,56,48,53,93,44,91,45,57,53,46,55,55,57,51,55,54,44,51,52,46,49,53,54,54,57,57,93,44,91,45,57,53,46,55,55,57,49,51,52,44,51,52,46,53,48,54,54,52,52,93,44,91,45,57,53,46,54,55,49,55,53,44,51,52,46,53,48,54,55,57,52,93,44,91,45,57,53,46,54,55,49,56,49,44,51,52,46,53,57,51,55,51,50,93,44,91,45,57,53,46,56,56,49,57,56,55,44,51,52,46,53,57,51,53,50,56,93,44,91,45,57,53,46,56,56,50,49,57,54,44,51,52,46,54,56,48,53,51,52,93,44,91,45,57,54,46,48,57,50,48,52,51,44,51,52,46,54,56,48,53,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,77,101,110,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,57,53,48,57,44,52,48,46,49,48,56,57,48,56,93,44,91,45,56,57,46,57,57,52,53,48,54,44,51,57,46,57,48,49,57,50,53,93,44,91,45,56,57,46,55,54,57,49,54,56,44,51,57,46,57,48,50,51,53,93,44,91,45,56,57,46,54,57,56,50,53,57,44,51,57,46,57,55,53,51,48,57,93,44,91,45,56,57,46,53,55,56,50,56,57,44,51,57,46,57,55,54,49,50,55,93,44,91,45,56,57,46,54,48,49,54,56,56,44,52,48,46,49,50,50,51,55,56,93,44,91,45,56,57,46,57,55,52,54,48,52,44,52,48,46,49,51,53,55,48,53,93,44,91,45,56,57,46,57,57,53,48,57,44,52,48,46,49,48,56,57,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,97,114,116,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,54,50,48,44,34,98,101,100,115,34,58,49,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,48,53,55,55,53,44,51,52,46,51,57,50,52,52,54,93,44,91,45,56,53,46,48,52,54,56,55,49,44,51,52,46,48,57,54,52,49,50,93,44,91,45,56,52,46,57,50,50,55,52,50,44,51,52,46,48,56,50,52,57,55,93,44,91,45,56,52,46,55,51,55,56,51,54,44,51,52,46,48,55,57,51,57,57,93,44,91,45,56,52,46,54,53,57,50,52,49,44,51,52,46,48,55,56,50,52,93,44,91,45,56,52,46,54,53,51,50,51,50,44,51,52,46,52,49,50,53,57,93,44,91,45,56,53,46,48,48,53,55,55,53,44,51,52,46,51,57,50,52,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,51,54,50,44,34,98,101,100,115,34,58,56,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,53,52,49,57,44,50,56,46,57,54,48,48,53,51,93,44,91,45,56,49,46,57,53,55,54,52,49,44,50,56,46,51,52,53,49,56,93,44,91,45,56,49,46,54,53,55,50,54,56,44,50,56,46,51,52,55,48,57,56,93,44,91,45,56,49,46,54,53,56,53,57,55,44,50,56,46,55,54,54,56,55,93,44,91,45,56,49,46,52,49,52,52,52,54,44,50,56,46,55,56,52,57,53,53,93,44,91,45,56,49,46,51,54,54,57,52,44,50,56,46,56,55,57,50,50,55,93,44,91,45,56,49,46,51,53,52,53,53,52,44,50,56,46,57,56,52,51,55,53,93,44,91,45,56,49,46,53,48,50,48,53,53,44,50,57,46,48,57,55,56,48,50,93,44,91,45,56,49,46,53,51,50,53,55,54,44,50,57,46,49,55,55,54,49,53,93,44,91,45,56,49,46,54,52,49,57,49,54,44,50,57,46,50,55,54,55,54,54,93,44,91,45,56,49,46,54,53,56,54,57,56,44,50,56,46,57,54,48,51,52,53,93,44,91,45,56,49,46,57,53,52,49,57,44,50,56,46,57,54,48,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,79,107,109,117,108,103,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,56,57,44,34,98,101,100,115,34,58,49,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,51,51,49,49,56,44,51,53,46,56,53,54,56,50,52,93,44,91,45,57,54,46,49,57,50,52,48,51,44,51,53,46,56,53,54,57,57,51,93,44,91,45,57,54,46,49,57,50,53,54,51,44,51,53,46,54,51,57,48,56,55,93,44,91,45,57,54,46,48,56,55,55,55,55,44,51,53,46,53,53,50,48,48,51,93,44,91,45,57,54,46,48,56,55,53,51,44,51,53,46,51,55,54,56,55,55,93,44,91,45,57,53,46,57,56,49,52,54,53,44,51,53,46,51,55,54,55,56,56,93,44,91,45,57,53,46,56,55,53,52,48,53,44,51,53,46,51,55,54,54,57,93,44,91,45,57,53,46,56,50,50,51,54,49,44,51,53,46,53,53,49,54,57,51,93,44,91,45,57,53,46,55,49,50,57,53,51,44,51,53,46,53,53,49,55,51,56,93,44,91,45,57,53,46,55,49,51,48,56,49,44,51,53,46,55,50,53,56,48,55,93,44,91,45,57,53,46,55,54,54,49,49,52,44,51,53,46,56,53,54,50,56,52,93,44,91,45,57,53,46,56,49,57,52,53,57,44,51,53,46,56,53,54,50,53,53,93,44,91,45,57,54,46,48,51,51,49,49,56,44,51,53,46,56,53,54,56,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,83,104,101,114,105,100,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,56,53,49,55,57,44,52,55,46,56,52,55,55,54,49,93,44,91,45,49,48,48,46,53,56,53,48,54,50,44,52,55,46,54,55,52,48,56,56,93,44,91,45,49,48,48,46,54,55,50,50,54,50,44,52,55,46,54,55,52,49,50,56,93,44,91,45,49,48,48,46,54,55,51,50,49,44,52,55,46,51,50,55,54,52,54,93,44,91,45,49,48,48,46,49,49,51,50,54,49,44,52,55,46,51,50,55,50,54,50,93,44,91,45,49,48,48,46,48,51,51,50,57,50,44,52,55,46,51,50,55,49,54,53,93,44,91,45,49,48,48,46,48,51,50,56,48,55,44,52,55,46,54,55,51,54,54,57,93,44,91,45,49,48,48,46,48,54,57,51,49,49,44,52,55,46,56,52,55,52,51,49,93,44,91,45,49,48,48,46,49,57,55,57,57,54,44,52,55,46,56,52,55,54,53,50,93,44,91,45,49,48,48,46,53,56,53,49,55,57,44,52,55,46,56,52,55,55,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,49,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,52,53,53,54,49,44,52,49,46,48,52,50,56,55,54,93,44,91,45,56,54,46,48,55,53,57,51,57,44,52,49,46,48,56,52,56,55,56,93,44,91,45,56,54,46,48,55,55,53,53,49,44,52,49,46,49,55,50,56,54,56,93,44,91,45,56,54,46,52,54,55,48,52,54,44,52,49,46,49,55,49,52,52,50,93,44,91,45,56,54,46,52,54,56,53,48,57,44,52,48,46,57,48,57,56,56,57,93,44,91,45,56,54,46,49,54,57,48,49,50,44,52,48,46,57,48,57,56,51,54,93,44,91,45,56,54,46,49,54,56,52,53,57,44,52,48,46,57,57,54,48,57,55,93,44,91,45,56,53,46,57,52,54,52,51,54,44,52,48,46,57,57,57,49,57,53,93,44,91,45,56,53,46,57,52,53,53,54,49,44,52,49,46,48,52,50,56,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,53,53,48,50,44,34,98,101,100,115,34,58,49,56,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,55,51,56,50,44,51,57,46,48,52,52,48,56,54,93,44,91,45,57,52,46,56,55,50,52,52,50,44,51,57,46,48,53,57,48,56,56,93,44,91,45,57,52,46,57,48,56,55,54,53,44,51,56,46,57,57,49,52,48,49,93,44,91,45,57,53,46,48,53,54,50,53,56,44,51,56,46,57,56,50,49,50,93,44,91,45,57,53,46,48,53,54,52,49,50,44,51,56,46,55,51,56,53,56,55,93,44,91,45,57,52,46,54,48,57,48,56,44,51,56,46,55,51,56,48,57,57,93,44,91,45,57,52,46,54,48,56,48,51,51,44,51,56,46,56,52,55,50,48,55,93,44,91,45,57,52,46,54,48,55,51,56,50,44,51,57,46,48,52,52,48,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,97,108,118,101,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,48,56,50,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,56,54,51,53,56,44,51,56,46,55,52,56,52,55,53,93,44,91,45,55,54,46,54,55,53,52,53,55,44,51,56,46,53,51,53,56,55,54,93,44,91,45,55,54,46,54,55,52,49,49,56,44,51,56,46,52,57,57,54,50,50,93,44,91,45,55,54,46,52,52,53,51,51,52,44,51,56,46,51,48,53,50,49,93,44,91,45,55,54,46,51,50,49,57,48,56,44,51,56,46,51,50,55,50,56,52,93,44,91,45,55,54,46,52,51,56,56,49,52,44,51,56,46,53,55,53,51,51,54,93,44,91,45,55,54,46,52,54,51,54,51,54,44,51,56,46,55,49,49,48,57,57,93,44,91,45,55,54,46,54,56,54,51,53,56,44,51,56,46,55,52,56,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,98,117,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,56,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,52,57,54,51,54,44,52,54,46,49,53,55,53,57,55,93,44,91,45,57,50,46,48,51,49,52,49,55,44,52,53,46,54,51,57,57,50,56,93,44,91,45,57,49,46,53,52,48,50,57,52,44,52,53,46,54,51,55,54,48,53,93,44,91,45,57,49,46,53,53,49,50,56,50,44,52,54,46,49,53,55,48,52,53,93,44,91,45,57,50,46,48,52,57,54,51,54,44,52,54,46,49,53,55,53,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,57,53,50,51,56,54,44,52,56,46,51,52,57,55,48,54,93,44,91,45,49,50,50,46,57,52,57,49,54,55,44,52,55,46,56,54,54,56,50,50,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,56,56,49,48,56,93,44,91,45,49,50,52,46,55,49,53,48,49,54,44,52,55,46,56,55,57,56,53,57,93,44,91,45,49,50,52,46,52,54,49,52,48,50,44,52,55,46,54,50,52,57,54,93,44,91,45,49,50,52,46,52,50,57,53,53,51,44,52,55,46,53,51,50,57,52,57,93,44,91,45,49,50,52,46,48,52,54,55,52,44,52,55,46,53,49,56,53,50,53,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,53,49,55,55,49,54,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,54,48,52,54,49,53,93,44,91,45,49,50,50,46,57,53,48,54,50,49,44,52,55,46,54,48,54,51,48,56,93,44,91,45,49,50,50,46,55,56,51,50,51,55,44,52,55,46,54,55,50,55,53,52,93,44,91,45,49,50,50,46,55,50,49,57,55,49,44,52,55,46,55,56,55,54,54,53,93,44,91,45,49,50,50,46,53,57,57,51,54,52,44,52,55,46,56,55,52,56,49,53,93,44,91,45,49,50,50,46,54,48,54,55,54,44,52,55,46,57,55,50,57,53,51,93,44,91,45,49,50,50,46,54,52,50,50,53,54,44,52,56,46,48,57,51,55,55,93,44,91,45,49,50,50,46,56,54,50,54,56,52,44,52,56,46,50,52,51,54,53,56,93,44,91,45,49,50,50,46,56,54,51,48,55,56,44,52,56,46,51,55,48,51,54,49,93,44,91,45,49,50,50,46,57,53,50,51,56,54,44,52,56,46,51,52,57,55,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,103,117,97,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,54,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,50,52,57,51,56,52,44,49,56,46,52,49,56,57,50,52,93,44,91,45,54,55,46,49,56,50,56,53,50,44,49,56,46,51,49,51,48,50,54,93,44,91,45,54,55,46,49,51,48,49,54,55,44,49,56,46,51,49,55,57,50,55,93,44,91,45,54,55,46,49,51,50,50,49,44,49,56,46,51,56,57,51,57,49,93,44,91,45,54,55,46,50,48,55,57,51,55,44,49,56,46,52,52,50,50,56,93,44,91,45,54,55,46,50,52,57,51,56,52,44,49,56,46,52,49,56,57,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,87,105,110,111,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,56,52,55,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,55,57,52,57,49,44,52,52,46,49,48,54,57,56,56,93,44,91,45,57,50,46,48,55,57,50,57,50,44,52,51,46,56,52,55,48,56,93,44,91,45,57,49,46,55,51,48,52,50,52,44,52,51,46,56,52,54,57,51,53,93,44,91,45,57,49,46,50,56,52,49,51,56,44,52,51,46,56,52,55,48,54,53,93,44,91,45,57,49,46,52,50,53,49,56,56,44,52,51,46,57,56,52,51,50,50,93,44,91,45,57,49,46,53,53,57,48,48,52,44,52,52,46,48,50,53,51,49,53,93,44,91,45,57,49,46,56,53,56,50,52,53,44,52,52,46,49,57,51,48,48,52,93,44,91,45,57,50,46,48,55,56,53,51,50,44,52,52,46,49,57,50,57,55,57,93,44,91,45,57,50,46,48,55,57,52,57,49,44,52,52,46,49,48,54,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,48,55,53,44,34,98,101,100,115,34,58,51,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,54,57,55,57,50,44,51,50,46,53,54,50,56,48,51,93,44,91,45,57,49,46,49,49,54,55,48,56,44,51,50,46,53,48,48,49,51,56,93,44,91,45,57,48,46,57,56,54,54,55,50,44,51,50,46,51,53,49,55,54,93,44,91,45,57,48,46,57,56,51,51,56,49,44,51,50,46,50,49,49,55,54,55,93,44,91,45,57,49,46,49,50,52,48,52,51,44,51,50,46,50,49,49,49,48,52,93,44,91,45,57,49,46,48,53,51,53,53,53,44,51,50,46,49,50,52,52,49,50,93,44,91,45,57,49,46,48,51,48,56,49,44,51,50,46,49,50,48,54,53,93,44,91,45,57,49,46,48,51,48,50,48,55,44,51,50,46,49,49,52,51,53,51,93,44,91,45,57,48,46,57,53,54,55,56,55,44,51,50,46,48,56,51,53,57,55,93,44,91,45,57,48,46,55,55,52,56,50,44,51,50,46,49,53,51,57,57,51,93,44,91,45,57,48,46,55,50,56,54,50,50,44,51,50,46,50,50,53,49,49,57,93,44,91,45,57,48,46,54,56,51,53,55,49,44,51,50,46,51,53,50,55,56,52,93,44,91,45,57,48,46,53,53,51,56,50,49,44,51,50,46,53,48,55,53,55,52,93,44,91,45,57,48,46,55,50,48,49,48,50,44,51,50,46,54,49,56,56,53,56,93,44,91,45,57,48,46,56,54,48,53,54,54,44,51,50,46,53,55,53,49,55,51,93,44,91,45,57,48,46,56,54,49,51,54,52,44,51,50,46,52,52,50,49,49,53,93,44,91,45,57,48,46,57,53,49,50,52,44,51,50,46,52,52,52,51,56,57,93,44,91,45,57,48,46,57,54,52,48,52,51,44,51,50,46,53,55,53,54,48,53,93,44,91,45,57,49,46,48,52,51,53,53,50,44,51,50,46,53,55,54,50,55,49,93,44,91,45,57,49,46,48,54,57,55,57,50,44,51,50,46,53,54,50,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,100,114,101,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,52,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,53,57,52,50,44,52,48,46,49,50,54,49,50,55,93,44,91,45,57,53,46,48,52,51,48,56,44,52,48,46,49,51,48,48,57,54,93,44,91,45,57,52,46,57,57,51,51,56,50,44,51,57,46,56,57,55,57,48,54,93,44,91,45,57,52,46,56,55,54,53,53,56,44,51,57,46,56,50,48,56,56,51,93,44,91,45,57,52,46,54,48,50,56,51,44,51,57,46,56,49,57,57,48,54,93,44,91,45,57,52,46,54,48,53,51,55,55,44,52,48,46,48,51,57,50,49,55,93,44,91,45,57,52,46,54,48,53,57,52,50,44,52,48,46,49,50,54,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,51,51,57,57,56,44,51,57,46,48,53,57,48,53,55,93,44,91,45,57,49,46,54,52,55,49,55,49,44,51,56,46,55,48,51,51,57,54,93,44,91,45,57,49,46,54,52,48,51,55,50,44,51,56,46,55,48,51,55,57,50,93,44,91,45,57,49,46,53,52,53,51,49,51,44,51,56,46,54,55,54,56,56,50,93,44,91,45,57,49,46,52,49,56,54,51,55,44,51,56,46,55,48,57,55,55,56,93,44,91,45,57,49,46,52,49,53,56,51,50,44,51,56,46,56,52,53,51,93,44,91,45,57,49,46,50,54,52,57,50,55,44,51,56,46,56,52,51,56,51,51,93,44,91,45,57,49,46,50,54,52,50,56,55,44,51,56,46,57,57,50,55,54,50,93,44,91,45,57,49,46,50,54,48,50,51,50,44,51,57,46,49,51,57,56,52,53,93,44,91,45,57,49,46,52,48,57,48,51,51,44,51,57,46,49,52,50,53,52,50,93,44,91,45,57,49,46,54,50,57,53,57,56,44,51,57,46,49,52,55,56,53,51,93,44,91,45,57,49,46,54,51,51,57,57,56,44,51,57,46,48,53,57,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,51,49,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,55,53,49,54,54,44,51,55,46,51,51,57,57,51,55,93,44,91,45,57,53,46,48,55,51,53,48,52,44,51,54,46,57,57,57,53,53,50,93,44,91,45,57,53,46,48,48,55,54,50,44,51,54,46,57,57,57,53,49,52,93,44,91,45,57,52,46,54,49,55,57,54,52,44,51,54,46,57,57,56,57,48,53,93,44,91,45,57,52,46,54,49,55,56,52,57,44,51,55,46,48,53,54,55,57,55,93,44,91,45,57,52,46,54,49,55,55,50,50,44,51,55,46,51,51,56,52,49,56,93,44,91,45,57,53,46,48,55,53,49,54,54,44,51,55,46,51,51,57,57,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,97,108,105,102,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,51,55,44,34,98,101,100,115,34,58,50,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,57,57,53,50,52,44,51,54,46,53,48,52,50,53,57,93,44,91,45,55,55,46,57,49,49,57,54,51,44,51,54,46,51,56,50,52,52,54,93,44,91,45,55,56,46,48,48,54,53,53,49,44,51,54,46,50,48,50,54,51,51,93,44,91,45,55,55,46,56,56,55,50,52,44,51,54,46,49,52,51,56,52,93,44,91,45,55,55,46,54,57,55,57,53,54,44,51,54,46,49,53,51,49,53,93,44,91,45,55,55,46,53,51,51,49,54,49,44,51,54,46,48,57,48,54,53,57,93,44,91,45,55,55,46,52,48,50,54,49,52,44,51,54,46,48,48,52,57,54,54,93,44,91,45,55,55,46,51,50,55,53,54,57,44,51,54,46,48,55,49,51,54,49,93,44,91,45,55,55,46,50,57,49,53,49,57,44,51,54,46,49,54,56,51,52,50,93,44,91,45,55,55,46,51,56,54,53,57,53,44,51,54,46,50,49,51,53,52,56,93,44,91,45,55,55,46,52,52,53,56,56,54,44,51,54,46,51,50,52,56,56,56,93,44,91,45,55,55,46,54,52,57,56,51,53,44,51,54,46,52,56,49,52,52,51,93,44,91,45,55,55,46,56,57,57,53,50,52,44,51,54,46,53,48,52,50,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,83,97,110,100,111,118,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,55,54,57,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,49,57,55,50,52,52,44,51,53,46,50,49,57,52,53,57,93,44,91,45,49,48,54,46,50,52,52,50,49,54,44,51,53,46,50,49,53,54,53,55,93,44,91,45,49,48,54,46,50,53,48,52,57,57,44,51,53,46,55,53,53,56,49,56,93,44,91,45,49,48,54,46,52,48,48,55,44,51,53,46,56,48,55,53,54,55,93,44,91,45,49,48,54,46,51,57,57,55,49,51,44,51,53,46,57,54,48,48,57,53,93,44,91,45,49,48,54,46,50,52,56,49,54,49,44,51,53,46,57,54,54,51,50,55,93,44,91,45,49,48,54,46,50,52,55,49,54,52,44,51,54,46,48,48,49,52,51,52,93,44,91,45,49,48,54,46,56,56,53,51,49,55,44,51,53,46,57,57,56,57,54,57,93,44,91,45,49,48,54,46,56,56,53,48,53,51,44,51,54,46,50,49,54,53,55,93,44,91,45,49,48,55,46,54,50,52,50,56,51,44,51,54,46,50,49,57,56,48,57,93,44,91,45,49,48,55,46,54,50,54,53,49,49,44,51,54,46,48,48,48,50,56,56,93,44,91,45,49,48,55,46,51,48,56,54,54,55,44,51,53,46,57,57,56,53,53,54,93,44,91,45,49,48,55,46,51,48,57,51,56,54,44,51,53,46,51,48,53,54,56,55,93,44,91,45,49,48,55,46,49,57,55,50,52,52,44,51,53,46,50,49,57,52,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,50,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,52,51,55,49,56,44,51,55,46,50,53,48,53,53,49,93,44,91,45,56,51,46,57,54,56,57,57,44,51,55,46,49,55,52,55,57,52,93,44,91,45,56,51,46,56,55,49,51,49,53,44,51,55,46,48,53,52,57,49,57,93,44,91,45,56,51,46,53,56,57,53,50,49,44,51,54,46,57,53,53,55,56,54,93,44,91,45,56,51,46,53,48,57,48,56,51,44,51,54,46,57,51,56,53,48,57,93,44,91,45,56,51,46,53,53,49,51,48,51,44,51,55,46,49,54,55,53,49,93,44,91,45,56,51,46,53,48,55,56,56,54,44,51,55,46,50,51,53,56,55,55,93,44,91,45,56,51,46,53,50,54,57,48,55,44,51,55,46,50,53,56,53,50,57,93,44,91,45,56,51,46,54,51,56,53,55,50,44,51,55,46,51,52,52,49,54,54,93,44,91,45,56,51,46,55,56,52,57,55,53,44,51,55,46,51,52,56,55,49,55,93,44,91,45,56,51,46,57,52,51,55,49,56,44,51,55,46,50,53,48,53,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,48,55,52,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,51,56,50,48,51,44,52,49,46,49,53,51,54,51,51,93,44,91,45,55,55,46,55,57,56,53,54,44,52,49,46,49,56,49,57,53,93,44,91,45,55,55,46,55,52,49,57,49,49,44,52,49,46,49,48,55,54,49,52,93,44,91,45,55,55,46,54,50,49,55,53,57,44,52,49,46,48,57,49,49,56,53,93,44,91,45,55,55,46,53,48,56,53,57,54,44,52,48,46,57,54,50,57,51,56,93,44,91,45,55,55,46,49,52,52,49,54,44,52,49,46,48,52,52,51,51,56,93,44,91,45,55,55,46,49,52,52,49,49,49,44,52,49,46,48,54,56,56,52,93,44,91,45,55,55,46,53,50,54,53,51,55,44,52,49,46,51,53,56,53,50,56,93,44,91,45,55,55,46,53,57,56,49,50,57,44,52,49,46,52,55,56,53,55,54,93,44,91,45,55,55,46,57,56,57,49,57,52,44,52,49,46,52,55,52,56,50,50,93,44,91,45,55,55,46,57,56,56,55,56,54,44,52,49,46,51,54,55,52,53,51,93,44,91,45,55,56,46,48,57,51,51,56,49,44,52,49,46,50,49,54,57,51,49,93,44,91,45,55,56,46,48,51,56,50,48,51,44,52,49,46,49,53,51,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,76,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,56,55,48,44,34,98,101,100,115,34,58,49,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,49,52,57,48,50,53,44,52,52,46,55,50,48,50,50,53,93,44,91,45,49,50,51,46,50,54,48,49,53,49,44,52,52,46,53,53,53,49,52,56,93,44,91,45,49,50,51,46,50,49,49,57,54,55,44,52,52,46,53,48,49,50,49,56,93,44,91,45,49,50,51,46,50,52,48,55,52,52,44,52,52,46,51,51,55,55,56,57,93,44,91,45,49,50,51,46,49,56,48,51,56,56,44,52,52,46,50,56,51,55,50,53,93,44,91,45,49,50,51,46,49,54,53,52,50,56,44,52,52,46,50,48,48,48,55,49,93,44,91,45,49,50,50,46,57,48,53,55,53,53,44,52,52,46,50,48,48,55,51,54,93,44,91,45,49,50,50,46,56,54,53,52,55,56,44,52,52,46,50,56,55,49,51,52,93,44,91,45,49,50,50,46,55,54,50,55,51,53,44,52,52,46,50,57,48,53,51,55,93,44,91,45,49,50,50,46,53,48,55,50,48,51,44,52,52,46,50,50,51,52,52,56,93,44,91,45,49,50,50,46,51,50,55,49,53,44,52,52,46,50,53,50,56,52,49,93,44,91,45,49,50,49,46,56,49,57,52,50,57,44,52,52,46,50,54,50,51,57,52,93,44,91,45,49,50,49,46,56,52,51,49,51,56,44,52,52,46,51,57,50,54,51,93,44,91,45,49,50,49,46,56,48,48,48,49,53,44,52,52,46,54,56,51,52,50,53,93,44,91,45,49,50,50,46,48,51,51,48,48,54,44,52,52,46,54,56,53,54,57,49,93,44,91,45,49,50,50,46,50,55,54,54,55,53,44,52,52,46,55,52,54,49,51,53,93,44,91,45,49,50,50,46,56,48,50,52,53,55,44,52,52,46,55,57,48,56,54,52,93,44,91,45,49,50,51,46,48,48,55,55,52,51,44,52,52,46,54,56,56,48,55,49,93,44,91,45,49,50,51,46,49,52,51,56,52,51,44,52,52,46,55,52,56,57,49,52,93,44,91,45,49,50,51,46,49,52,57,48,50,53,44,52,52,46,55,50,48,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,51,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,50,54,57,48,50,44,52,50,46,56,49,50,56,54,50,93,44,91,45,57,48,46,52,50,54,51,55,55,44,52,50,46,53,48,55,49,55,51,93,44,91,45,56,57,46,57,50,54,52,54,54,44,52,50,46,53,48,53,55,55,50,93,44,91,45,56,57,46,56,51,55,53,56,55,44,52,50,46,53,48,53,55,49,93,44,91,45,56,57,46,56,51,56,52,49,44,52,50,46,56,49,51,55,57,57,93,44,91,45,57,48,46,52,50,54,57,48,50,44,52,50,46,56,49,50,56,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,48,48,49,44,34,98,101,100,115,34,58,49,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,48,48,56,49,44,51,54,46,57,57,56,56,54,93,44,91,45,57,54,46,48,48,49,49,55,49,44,51,54,46,52,50,51,54,56,54,93,44,91,45,57,53,46,56,49,50,51,52,50,44,51,54,46,52,50,51,53,56,93,44,91,45,57,53,46,56,48,57,53,52,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,56,48,57,56,50,44,51,54,46,57,52,49,57,51,93,44,91,45,57,53,46,55,56,54,55,54,50,44,51,54,46,57,57,57,51,49,93,44,91,45,57,53,46,57,54,52,50,55,44,51,54,46,57,57,57,49,48,52,93,44,91,45,57,54,46,48,48,48,56,49,44,51,54,46,57,57,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,80,114,101,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,51,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,55,54,51,55,55,52,44,51,57,46,55,50,48,55,55,54,93,44,91,45,55,57,46,56,57,52,54,56,56,44,51,57,46,52,51,53,53,56,56,93,44,91,45,55,57,46,56,57,53,53,51,54,44,51,57,46,50,57,57,53,56,52,93,44,91,45,55,57,46,56,48,57,55,50,57,44,51,57,46,50,51,48,53,50,54,93,44,91,45,55,57,46,54,56,55,50,56,51,44,51,57,46,50,55,49,51,57,56,93,44,91,45,55,57,46,52,56,55,49,55,53,44,51,57,46,49,57,52,57,48,54,93,44,91,45,55,57,46,52,56,54,56,55,53,44,51,57,46,50,48,53,56,57,54,93,44,91,45,55,57,46,52,55,54,54,54,50,44,51,57,46,55,50,49,48,55,56,93,44,91,45,55,57,46,55,54,51,55,55,52,44,51,57,46,55,50,48,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,87,97,117,112,97,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,52,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,50,51,55,52,53,44,52,52,46,54,56,49,51,54,53,93,44,91,45,56,57,46,50,50,52,56,49,51,44,52,52,46,50,52,51,51,57,51,93,44,91,45,56,56,46,56,56,54,54,55,51,44,52,52,46,50,52,50,54,50,50,93,44,91,45,56,56,46,55,51,57,55,55,44,52,52,46,50,52,51,51,48,51,93,44,91,45,56,56,46,55,51,54,56,48,50,44,52,52,46,53,57,48,54,48,53,93,44,91,45,56,56,46,54,48,54,48,56,51,44,52,52,46,53,57,48,53,49,53,93,44,91,45,56,56,46,54,48,53,49,53,57,44,52,52,46,54,55,56,51,51,49,93,44,91,45,56,57,46,50,50,51,55,52,53,44,52,52,46,54,56,49,51,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,69,100,119,97,114,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,54,52,54,49,44,51,48,46,50,57,48,50,57,54,93,44,91,45,49,48,48,46,55,48,48,51,57,51,44,51,48,46,50,56,56,50,55,54,93,44,91,45,49,48,48,46,54,57,57,57,51,50,44,50,57,46,54,50,51,56,57,55,93,44,91,45,49,48,48,46,49,49,50,48,57,56,44,50,57,46,54,50,51,50,54,51,93,44,91,45,49,48,48,46,48,49,52,49,56,56,44,50,57,46,54,50,51,52,57,53,93,44,91,45,49,48,48,46,48,52,53,55,57,49,44,50,57,46,54,57,52,57,50,52,93,44,91,45,57,57,46,57,54,55,54,50,54,44,51,48,46,48,56,50,51,53,54,93,44,91,45,57,57,46,55,53,55,54,50,49,44,51,48,46,48,55,52,49,51,50,93,44,91,45,57,57,46,55,53,52,49,52,50,44,51,48,46,50,57,48,54,57,56,93,44,91,45,49,48,48,46,49,49,54,52,54,49,44,51,48,46,50,57,48,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,52,51,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,51,51,50,57,54,57,44,52,51,46,54,49,54,54,52,53,93,44,91,45,49,50,49,46,51,52,56,52,55,49,44,52,51,46,51,53,54,55,53,51,93,44,91,45,49,50,49,46,51,52,57,54,55,57,44,52,50,46,55,52,54,54,52,52,93,44,91,45,49,50,48,46,56,56,51,51,50,55,44,52,50,46,55,52,52,50,49,52,93,44,91,45,49,50,48,46,56,55,57,57,50,54,44,52,49,46,57,57,51,55,54,52,93,44,91,45,49,49,57,46,57,57,57,50,51,52,44,52,49,46,57,57,52,57,52,52,93,44,91,45,49,49,57,46,51,54,48,49,50,50,44,52,49,46,57,57,52,50,55,56,93,44,91,45,49,49,57,46,51,54,53,51,51,55,44,52,50,46,55,52,56,57,53,56,93,44,91,45,49,49,57,46,57,52,51,55,55,57,44,52,50,46,55,52,54,51,55,49,93,44,91,45,49,49,57,46,57,51,50,54,49,49,44,52,51,46,49,55,56,57,54,51,93,44,91,45,49,49,57,46,56,57,54,57,54,57,44,52,51,46,49,55,57,48,49,55,93,44,91,45,49,49,57,46,56,57,54,53,56,49,44,52,51,46,54,49,49,49,54,52,93,44,91,45,49,50,49,46,51,51,50,57,54,57,44,52,51,46,54,49,54,54,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,79,122,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,49,50,51,52,54,44,51,54,46,55,57,52,50,51,49,93,44,91,45,57,50,46,55,54,52,56,54,57,44,51,54,46,56,48,54,48,57,55,93,44,91,45,57,50,46,55,55,50,51,52,51,44,51,54,46,52,57,55,54,54,50,93,44,91,45,57,50,46,53,50,57,49,50,56,44,51,54,46,52,57,56,53,57,57,93,44,91,45,57,50,46,49,53,48,50,57,53,44,51,54,46,52,57,56,54,49,93,44,91,45,57,50,46,49,50,48,52,51,44,51,54,46,52,57,56,55,93,44,91,45,57,50,46,49,49,50,51,52,54,44,51,54,46,55,57,52,50,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,55,51,34,44,34,78,65,77,69,34,58,34,87,97,108,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,57,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,48,52,51,48,54,44,51,48,46,50,52,53,53,55,93,44,91,45,57,54,46,48,57,51,49,54,53,44,51,48,46,50,50,53,49,56,55,93,44,91,45,57,54,46,49,57,49,52,49,56,44,51,48,46,49,51,52,54,54,57,93,44,91,45,57,54,46,49,52,54,48,53,50,44,51,48,46,48,55,48,50,50,52,93,44,91,45,57,54,46,48,56,52,53,52,49,44,51,48,46,48,48,53,49,51,55,93,44,91,45,57,54,46,49,51,49,54,53,44,50,57,46,57,51,55,53,48,52,93,44,91,45,57,54,46,49,48,50,52,57,54,44,50,57,46,56,48,57,54,54,53,93,44,91,45,57,54,46,48,51,50,55,49,49,44,50,57,46,55,50,55,57,52,52,93,44,91,45,57,53,46,56,50,54,50,50,44,50,57,46,55,56,56,50,56,93,44,91,45,57,53,46,57,54,48,55,51,51,44,51,48,46,49,54,51,52,49,53,93,44,91,45,57,53,46,56,48,51,51,51,44,51,48,46,48,57,48,48,57,54,93,44,91,45,57,53,46,56,48,52,51,48,54,44,51,48,46,50,52,53,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,49,50,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,48,48,57,51,44,51,49,46,56,50,57,50,53,49,93,44,91,45,56,55,46,53,54,54,56,52,49,44,51,49,46,54,57,55,49,49,53,93,44,91,45,56,55,46,53,54,53,55,48,56,44,51,49,46,52,56,49,54,56,51,93,44,91,45,56,55,46,54,48,51,49,51,55,44,51,49,46,52,48,57,53,53,54,93,44,91,45,56,55,46,55,48,54,48,52,53,44,51,49,46,52,48,48,57,53,55,93,44,91,45,56,55,46,55,54,53,49,53,50,44,51,49,46,50,57,55,51,52,54,93,44,91,45,56,55,46,54,49,53,56,57,44,51,49,46,50,52,52,52,53,56,93,44,91,45,56,55,46,52,50,55,52,53,53,44,51,49,46,50,54,48,51,56,54,93,44,91,45,56,55,46,49,54,54,53,56,49,44,51,49,46,53,49,57,53,54,49,93,44,91,45,56,55,46,49,51,53,48,53,49,44,51,49,46,54,52,50,52,49,55,93,44,91,45,56,54,46,57,48,53,56,57,57,44,51,49,46,55,53,51,48,51,53,93,44,91,45,56,54,46,57,48,54,56,57,57,44,51,49,46,56,51,48,54,50,56,93,44,91,45,56,55,46,53,48,48,57,51,44,51,49,46,56,50,57,50,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,69,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,56,57,55,54,48,56,44,52,53,46,48,48,56,51,53,93,44,91,45,55,49,46,56,55,52,52,51,51,44,52,52,46,56,55,54,51,56,50,93,44,91,45,55,49,46,57,51,57,57,51,54,44,52,52,46,55,54,57,48,51,50,93,44,91,45,55,49,46,57,49,48,48,56,53,44,52,52,46,54,52,55,49,56,93,44,91,45,55,49,46,57,51,51,50,56,56,44,52,52,46,52,52,49,49,55,52,93,44,91,45,55,49,46,56,51,55,56,53,51,44,52,52,46,51,52,55,57,57,51,93,44,91,45,55,49,46,55,54,53,54,56,52,44,52,52,46,52,48,54,50,57,53,93,44,91,45,55,49,46,54,48,48,49,53,55,44,52,52,46,52,56,53,56,51,51,93,44,91,45,55,49,46,53,53,51,55,53,54,44,52,52,46,54,51,48,52,50,54,93,44,91,45,55,49,46,54,50,57,57,49,57,44,52,52,46,55,53,51,53,55,56,93,44,91,45,55,49,46,52,57,54,48,57,51,44,52,52,46,57,48,55,56,52,57,93,44,91,45,55,49,46,53,48,49,48,56,50,44,52,53,46,48,49,51,51,53,53,93,44,91,45,55,49,46,56,57,55,54,48,56,44,52,53,46,48,48,56,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,76,117,110,101,110,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,51,57,51,53,52,44,51,55,46,49,50,48,48,56,57,93,44,91,45,55,56,46,52,52,51,54,52,52,44,51,55,46,48,55,57,51,55,49,93,44,91,45,55,56,46,52,57,51,48,50,56,44,51,54,46,56,57,49,50,50,93,44,91,45,55,56,46,50,52,49,53,48,57,44,51,54,46,56,48,55,57,53,56,93,44,91,45,55,56,46,48,50,55,52,49,49,44,51,54,46,55,55,55,56,53,56,93,44,91,45,55,56,46,48,48,51,54,51,57,44,51,55,46,48,50,50,55,53,54,93,44,91,45,55,56,46,49,55,48,56,57,53,44,51,55,46,48,53,51,57,52,57,93,44,91,45,55,56,46,50,51,57,51,53,52,44,51,55,46,49,50,48,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,84,114,97,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,49,57,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,55,50,55,52,53,44,52,55,46,54,55,50,48,53,49,93,44,91,45,57,55,46,52,55,52,50,50,56,44,52,55,46,51,50,52,54,50,49,93,44,91,45,57,55,46,52,53,49,53,49,50,44,52,55,46,50,51,57,48,54,49,93,44,91,45,57,54,46,56,51,51,51,57,51,44,52,55,46,50,51,56,48,52,49,93,44,91,45,57,54,46,56,52,56,57,50,51,44,52,55,46,52,57,56,57,57,49,93,44,91,45,57,54,46,56,56,54,56,52,54,44,52,55,46,54,55,50,48,54,51,93,44,91,45,57,55,46,52,55,50,55,52,53,44,52,55,46,54,55,50,48,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,72,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,57,54,49,44,34,98,101,100,115,34,58,54,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,52,51,52,48,53,44,51,52,46,53,48,53,52,57,52,93,44,91,45,56,51,46,57,56,48,54,52,57,44,51,52,46,52,49,56,51,56,57,93,44,91,45,56,51,46,57,53,55,48,55,55,44,51,52,46,51,51,52,48,49,49,93,44,91,45,56,51,46,57,50,55,50,56,52,44,51,52,46,50,55,57,51,57,57,93,44,91,45,56,52,46,48,54,50,56,52,49,44,51,52,46,49,54,55,56,55,51,93,44,91,45,56,51,46,56,54,56,48,51,44,51,52,46,48,57,56,50,56,49,93,44,91,45,56,51,46,56,49,55,54,56,50,44,51,52,46,49,50,55,52,57,51,93,44,91,45,56,51,46,54,50,48,49,49,53,44,51,52,46,50,57,53,50,55,54,93,44,91,45,56,51,46,54,49,53,50,53,49,44,51,52,46,52,51,49,55,52,56,93,44,91,45,56,51,46,54,54,54,52,49,53,44,51,52,46,53,48,51,54,48,50,93,44,91,45,56,51,46,56,52,51,52,48,53,44,51,52,46,53,48,53,52,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,51,34,44,34,78,65,77,69,34,58,34,84,114,101,117,116,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,52,55,55,51,51,44,51,50,46,53,49,50,53,48,55,93,44,91,45,56,50,46,55,50,49,57,54,52,44,51,50,46,51,48,57,50,56,51,93,44,91,45,56,50,46,54,53,53,52,56,54,44,51,50,46,50,57,55,53,54,49,93,44,91,45,56,50,46,52,48,57,49,51,44,51,50,46,51,53,51,55,51,56,93,44,91,45,56,50,46,52,48,57,49,49,56,44,51,50,46,51,53,51,56,51,93,44,91,45,56,50,46,51,56,54,49,48,54,44,51,50,46,52,52,48,51,55,93,44,91,45,56,50,46,52,57,57,57,55,49,44,51,50,46,52,57,56,51,55,56,93,44,91,45,56,50,46,54,52,55,55,51,51,44,51,50,46,53,49,50,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,49,55,56,52,51,44,51,49,46,54,49,57,55,55,49,93,44,91,45,56,52,46,56,49,57,56,48,55,44,51,49,46,53,48,49,49,57,50,93,44,91,45,56,52,46,55,56,57,48,51,50,44,51,49,46,52,51,54,51,53,54,93,44,91,45,56,52,46,54,51,55,53,55,57,44,51,49,46,52,51,51,57,50,54,93,44,91,45,56,52,46,52,50,57,56,55,54,44,51,49,46,52,51,54,54,54,49,93,44,91,45,56,52,46,52,53,48,51,57,56,44,51,49,46,54,50,49,56,54,56,93,44,91,45,56,52,46,53,52,54,56,53,52,44,51,49,46,54,50,49,49,57,57,93,44,91,45,56,52,46,56,49,55,56,52,51,44,51,49,46,54,49,57,55,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,86,105,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,57,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,50,57,49,53,56,44,52,54,46,50,57,57,55,52,56,93,44,91,45,56,57,46,57,50,56,56,51,55,44,52,53,46,57,56,49,57,54,55,93,44,91,45,57,48,46,48,52,51,57,53,56,44,52,53,46,57,56,49,57,52,56,93,44,91,45,57,48,46,48,52,50,56,53,55,44,52,53,46,56,57,55,50,54,51,93,44,91,45,56,57,46,48,52,55,54,48,49,44,52,53,46,56,57,53,51,53,53,93,44,91,45,56,56,46,57,51,51,50,50,50,44,52,53,46,57,56,50,50,55,54,93,44,91,45,56,56,46,57,51,50,55,53,55,44,52,54,46,48,55,51,54,54,56,93,44,91,45,56,56,46,57,57,48,56,54,52,44,52,54,46,48,57,55,51,56,49,93,44,91,45,56,57,46,48,57,49,54,51,56,44,52,54,46,49,51,56,52,52,55,93,44,91,45,56,57,46,57,50,57,49,53,56,44,52,54,46,50,57,57,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,108,116,114,97,109,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,49,49,55,44,34,98,101,100,115,34,58,49,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,54,48,50,51,49,53,44,52,56,46,53,51,56,56,56,55,93,44,91,45,57,53,46,53,57,51,55,56,56,44,52,56,46,49,55,50,57,49,54,93,44,91,45,57,53,46,53,56,50,56,56,55,44,52,56,46,48,50,48,53,53,55,93,44,91,45,57,53,46,50,50,57,49,51,51,44,52,56,46,48,49,57,57,53,56,93,44,91,45,57,53,46,50,55,55,56,51,52,44,52,55,46,57,50,53,51,52,54,93,44,91,45,57,53,46,49,57,51,55,48,53,44,52,55,46,56,55,50,53,52,52,93,44,91,45,57,53,46,49,56,51,50,49,54,44,52,55,46,52,49,50,55,55,51,93,44,91,45,57,52,46,54,55,48,50,49,52,44,52,55,46,52,49,48,49,53,49,93,44,91,45,57,52,46,52,49,54,50,55,57,44,52,55,46,52,52,52,56,50,56,93,44,91,45,57,52,46,52,49,56,53,52,51,44,52,55,46,56,52,53,56,49,54,93,44,91,45,57,52,46,52,50,56,55,48,50,44,52,56,46,51,54,55,51,51,51,93,44,91,45,57,53,46,50,49,48,57,53,51,44,52,56,46,51,54,53,57,55,49,93,44,91,45,57,53,46,50,49,49,57,54,54,44,52,56,46,53,51,57,57,54,49,93,44,91,45,57,53,46,51,52,50,53,52,44,52,56,46,53,52,48,50,49,49,93,44,91,45,57,53,46,54,48,50,51,49,53,44,52,56,46,53,51,56,56,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,111,97,109,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,50,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,52,52,52,53,54,44,49,56,46,49,55,54,54,55,52,93,44,91,45,54,54,46,52,51,48,51,49,52,44,49,56,46,48,56,50,48,53,51,93,44,91,45,54,54,46,52,50,54,57,56,57,44,49,56,46,48,52,50,54,50,55,93,44,91,45,54,54,46,51,51,49,50,52,52,44,49,56,46,48,49,53,56,57,49,93,44,91,45,54,54,46,50,53,55,53,50,55,44,49,56,46,48,55,53,56,56,52,93,44,91,45,54,54,46,51,49,52,56,52,56,44,49,56,46,49,53,50,48,56,56,93,44,91,45,54,54,46,51,55,51,55,54,56,44,49,56,46,49,55,51,54,57,52,93,44,91,45,54,54,46,52,52,52,53,54,44,49,56,46,49,55,54,54,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,117,195,161,110,105,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,56,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,57,53,56,55,52,56,44,49,56,46,48,51,50,52,55,55,93,44,91,45,54,54,46,57,57,57,54,49,57,44,49,55,46,56,56,51,57,93,44,91,45,54,54,46,56,51,57,57,50,57,44,49,55,46,56,57,56,57,57,51,93,44,91,45,54,54,46,56,53,56,50,51,51,44,49,55,46,57,53,48,56,50,53,93,44,91,45,54,54,46,56,56,52,54,53,51,44,49,56,46,48,50,52,56,49,54,93,44,91,45,54,54,46,57,53,56,55,52,56,44,49,56,46,48,51,50,52,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,68,111,114,99,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,54,49,44,34,98,101,100,115,34,58,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,57,52,53,50,52,56,44,51,56,46,54,55,52,49,48,57,93,44,91,45,55,54,46,48,50,51,52,52,53,44,51,56,46,53,55,51,56,55,53,93,44,91,45,55,54,46,50,52,48,49,53,44,51,56,46,54,54,51,50,48,52,93,44,91,45,55,54,46,52,51,56,56,49,52,44,51,56,46,53,55,53,51,51,54,93,44,91,45,55,54,46,51,50,49,57,48,56,44,51,56,46,51,50,55,50,56,52,93,44,91,45,55,54,46,50,48,52,55,49,57,44,51,56,46,48,53,56,52,49,93,44,91,45,55,54,46,48,55,56,53,55,53,44,51,56,46,48,54,48,57,50,93,44,91,45,55,53,46,57,52,56,52,53,52,44,51,56,46,50,49,53,57,54,93,44,91,45,55,53,46,56,50,51,55,48,54,44,51,56,46,52,56,49,48,50,50,93,44,91,45,55,53,46,55,48,49,53,54,57,44,51,56,46,53,54,48,55,51,54,93,44,91,45,55,53,46,55,48,55,52,52,55,44,51,56,46,54,51,53,51,57,54,93,44,91,45,55,53,46,56,51,55,57,55,52,44,51,56,46,55,48,51,57,57,93,44,91,45,55,53,46,57,52,53,50,52,56,44,51,56,46,54,55,52,49,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,50,50,48,44,34,98,101,100,115,34,58,49,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,52,55,53,57,55,44,52,49,46,50,55,53,54,50,57,93,44,91,45,55,54,46,54,52,48,55,54,55,44,52,49,46,49,53,53,55,49,56,93,44,91,45,55,54,46,54,49,56,57,55,49,44,52,49,46,48,54,51,55,53,57,93,44,91,45,55,54,46,53,49,50,52,50,49,44,52,48,46,57,52,54,49,48,50,93,44,91,45,55,54,46,53,50,56,48,51,52,44,52,48,46,56,56,50,53,49,53,93,44,91,45,55,54,46,51,56,48,49,53,50,44,52,48,46,55,55,53,53,49,49,93,44,91,45,55,54,46,50,48,55,56,50,55,44,52,48,46,57,52,57,55,52,93,44,91,45,55,54,46,51,49,57,50,51,54,44,52,49,46,50,48,56,48,57,50,93,44,91,45,55,54,46,51,49,48,49,51,51,44,52,49,46,51,49,48,49,57,57,93,44,91,45,55,54,46,52,52,55,53,57,55,44,52,49,46,50,55,53,54,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,49,57,56,44,34,98,101,100,115,34,58,50,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,51,54,48,54,57,44,52,48,46,48,52,48,49,56,50,93,44,91,45,56,52,46,48,53,49,48,49,50,44,51,57,46,56,55,57,56,49,93,44,91,45,56,52,46,48,53,51,55,51,54,44,51,57,46,56,53,48,52,53,56,93,44,91,45,56,51,46,56,50,55,52,50,53,44,51,57,46,56,50,50,54,53,49,93,44,91,45,56,51,46,54,52,55,49,54,57,44,51,57,46,55,55,51,48,50,57,93,44,91,45,56,51,46,53,56,56,48,52,49,44,51,57,46,55,54,56,55,55,56,93,44,91,45,56,51,46,53,49,54,49,53,53,44,52,48,46,48,49,48,49,56,56,93,44,91,45,56,52,46,48,51,54,48,54,57,44,52,48,46,48,52,48,49,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,51,34,44,34,78,65,77,69,34,58,34,77,97,118,101,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,57,55,48,44,34,98,101,100,115,34,58,49,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,54,54,55,53,52,56,44,50,57,46,48,56,52,50,57,50,93,44,91,45,49,48,48,46,54,51,49,54,49,49,44,50,56,46,57,48,50,56,51,57,93,44,91,45,49,48,48,46,53,52,54,53,55,54,44,50,56,46,56,50,52,57,50,51,93,44,91,45,49,48,48,46,53,48,48,51,53,52,44,50,56,46,54,54,49,57,54,93,44,91,45,49,48,48,46,51,51,54,49,56,55,44,50,56,46,52,51,48,49,56,49,93,44,91,45,49,48,48,46,50,57,52,50,57,54,44,50,56,46,50,56,52,51,56,93,44,91,45,49,48,48,46,50,49,50,49,56,57,44,50,56,46,49,57,54,56,51,55,93,44,91,45,49,48,48,46,49,49,51,55,49,57,44,50,56,46,49,57,55,56,49,57,93,44,91,45,49,48,48,46,49,49,52,51,51,54,44,50,56,46,54,52,56,49,50,50,93,44,91,45,49,48,48,46,49,49,49,52,48,54,44,50,57,46,48,56,54,51,49,56,93,44,91,45,49,48,48,46,54,54,55,53,52,56,44,50,57,46,48,56,52,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,80,105,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,57,55,50,50,44,34,98,101,100,115,34,58,51,50,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,52,53,49,53,50,50,44,51,50,46,53,49,51,57,57,53,93,44,91,45,49,49,49,46,53,54,57,50,53,54,44,51,50,46,53,48,54,55,54,57,93,44,91,45,49,49,50,46,50,48,51,54,50,52,44,51,50,46,53,48,54,55,50,49,93,44,91,45,49,49,51,46,51,51,51,56,57,52,44,51,50,46,53,48,53,49,56,56,93,44,91,45,49,49,51,46,51,51,51,55,54,55,44,51,50,46,48,51,56,57,50,55,93,44,91,45,49,49,50,46,49,52,57,55,49,50,44,51,49,46,54,55,51,56,55,49,93,44,91,45,49,49,49,46,51,54,54,51,55,50,44,51,49,46,52,50,54,48,54,49,93,44,91,45,49,49,49,46,51,54,54,57,50,50,44,51,49,46,53,50,49,51,54,49,93,44,91,45,49,49,49,46,49,54,51,55,49,55,44,51,49,46,53,50,49,55,50,52,93,44,91,45,49,49,49,46,49,54,52,49,56,51,44,51,49,46,55,50,53,56,57,93,44,91,45,49,49,48,46,52,53,50,51,44,51,49,46,55,51,49,50,49,57,93,44,91,45,49,49,48,46,52,53,49,48,48,50,44,51,50,46,52,50,55,53,52,54,93,44,91,45,49,49,48,46,52,53,49,53,50,50,44,51,50,46,53,49,51,57,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,54,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,54,34,44,34,78,65,77,69,34,58,34,67,105,98,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,55,56,44,34,98,101,100,115,34,58,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,51,48,57,51,56,54,44,51,53,46,51,48,53,54,56,55,93,44,91,45,49,48,56,46,52,54,56,55,49,53,44,51,53,46,51,48,54,54,53,56,93,44,91,45,49,48,56,46,52,54,57,52,48,50,44,51,52,46,57,53,57,48,56,49,93,44,91,45,49,48,57,46,48,52,53,57,57,54,44,51,52,46,57,53,57,56,49,57,93,44,91,45,49,48,57,46,48,52,54,49,50,50,44,51,52,46,53,55,57,50,57,49,93,44,91,45,49,48,55,46,55,50,52,55,57,52,44,51,52,46,53,55,56,49,51,50,93,44,91,45,49,48,55,46,50,48,49,55,52,51,44,51,52,46,53,55,56,55,53,55,93,44,91,45,49,48,55,46,50,48,50,56,56,50,44,51,52,46,57,53,55,53,55,50,93,44,91,45,49,48,55,46,48,54,54,53,54,50,44,51,52,46,57,53,55,49,57,93,44,91,45,49,48,55,46,49,57,55,50,52,52,44,51,53,46,50,49,57,52,53,57,93,44,91,45,49,48,55,46,51,48,57,51,56,54,44,51,53,46,51,48,53,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,117,114,108,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,54,51,54,55,44,34,98,101,100,115,34,58,57,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,50,50,48,52,56,44,52,48,46,49,53,48,51,49,49,93,44,91,45,55,52,46,57,55,51,57,56,49,44,52,48,46,48,52,56,53,57,53,93,44,91,45,55,53,46,48,53,57,57,49,51,44,51,57,46,57,57,49,53,50,57,93,44,91,45,55,52,46,57,51,48,55,52,53,44,51,57,46,56,56,53,57,48,56,93,44,91,45,55,52,46,57,48,50,57,54,51,44,51,57,46,55,57,49,49,48,56,93,44,91,45,55,52,46,55,51,54,50,49,54,44,51,57,46,55,50,57,55,55,53,93,44,91,45,55,52,46,54,53,57,50,57,53,44,51,57,46,54,51,49,50,51,51,93,44,91,45,55,52,46,52,49,55,51,57,51,44,51,57,46,53,53,55,50,53,53,93,44,91,45,55,52,46,51,56,57,55,48,56,44,51,57,46,55,55,51,50,56,51,93,44,91,45,55,52,46,53,53,51,49,48,53,44,52,48,46,48,55,57,49,51,93,44,91,45,55,52,46,53,56,55,56,51,53,44,52,48,46,49,51,56,50,53,52,93,44,91,45,55,52,46,55,50,50,48,52,56,44,52,48,46,49,53,48,51,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,82,117,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,50,55,51,44,34,98,101,100,115,34,58,49,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,54,50,56,50,51,44,52,51,46,55,53,51,48,56,52,93,44,91,45,55,51,46,52,50,55,57,49,44,52,51,46,54,51,52,52,50,56,93,44,91,45,55,51,46,51,48,50,53,53,51,44,52,51,46,54,50,53,55,48,57,93,44,91,45,55,51,46,50,52,54,56,52,52,44,52,51,46,53,49,55,50,53,50,93,44,91,45,55,51,46,50,53,52,54,51,51,44,52,51,46,51,49,52,54,55,53,93,44,91,45,55,50,46,56,54,55,57,48,50,44,52,51,46,51,48,48,55,52,50,93,44,91,45,55,50,46,55,53,57,55,57,57,44,52,51,46,51,53,52,49,52,52,93,44,91,45,55,50,46,55,56,56,57,56,55,44,52,51,46,53,48,48,48,55,93,44,91,45,55,50,46,55,48,48,57,52,53,44,52,51,46,54,56,50,56,51,49,93,44,91,45,55,50,46,56,50,48,48,52,51,44,52,51,46,55,49,54,56,51,52,93,44,91,45,55,50,46,55,56,50,56,49,50,44,52,51,46,56,48,52,51,51,56,93,44,91,45,55,50,46,57,53,56,56,53,51,44,52,51,46,56,50,54,53,52,50,93,44,91,45,55,51,46,50,49,56,57,53,54,44,52,51,46,56,51,55,50,57,49,93,44,91,45,55,51,46,50,48,54,51,50,50,44,52,51,46,55,54,54,55,55,53,93,44,91,45,55,51,46,51,54,50,56,50,51,44,52,51,46,55,53,51,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,69,97,114,108,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,52,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,51,55,53,55,57,44,51,49,46,52,51,51,57,50,54,93,44,91,45,56,52,46,55,56,57,48,51,50,44,51,49,46,52,51,54,51,53,54,93,44,91,45,56,52,46,56,49,57,56,48,55,44,51,49,46,53,48,49,49,57,50,93,44,91,45,56,53,46,48,52,53,52,57,53,44,51,49,46,53,49,55,49,50,57,93,44,91,45,56,53,46,48,56,55,54,53,49,44,51,49,46,51,48,56,54,55,55,93,44,91,45,56,53,46,48,57,57,54,52,55,44,51,49,46,49,54,52,57,52,50,93,44,91,45,56,53,46,48,50,56,53,54,52,44,51,49,46,48,55,53,53,50,51,93,44,91,45,56,52,46,57,50,50,52,50,51,44,51,49,46,48,55,50,53,57,93,44,91,45,56,52,46,57,49,55,52,50,49,44,51,49,46,50,53,53,57,57,93,44,91,45,56,52,46,54,52,49,54,55,51,44,51,49,46,50,53,56,57,54,55,93,44,91,45,56,52,46,54,51,55,53,55,57,44,51,49,46,52,51,51,57,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,68,117,107,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,48,53,49,56,53,52,44,52,49,46,52,49,54,55,50,57,93,44,91,45,55,48,46,57,48,49,56,54,54,44,52,49,46,51,54,49,55,55,93,44,91,45,55,48,46,56,55,55,51,50,55,44,52,49,46,50,50,52,49,52,52,93,44,91,45,55,48,46,56,48,53,57,53,44,52,49,46,49,57,56,55,52,50,93,44,91,45,55,48,46,54,56,53,48,50,44,52,49,46,50,57,51,49,55,54,93,44,91,45,55,48,46,52,57,51,51,48,56,44,52,49,46,50,55,57,57,55,53,93,44,91,45,55,48,46,51,50,56,49,56,50,44,52,49,46,51,56,48,49,53,57,93,44,91,45,55,48,46,50,51,52,51,51,44,52,49,46,51,56,51,50,50,57,93,44,91,45,55,48,46,51,50,51,53,57,51,44,52,49,46,51,57,49,54,48,55,93,44,91,45,55,48,46,53,48,50,56,51,50,44,52,49,46,53,48,48,54,51,53,93,44,91,45,55,48,46,55,53,56,52,54,52,44,52,49,46,53,54,48,57,51,49,93,44,91,45,55,49,46,48,53,49,56,53,52,44,52,49,46,52,49,54,55,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,77,99,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,53,57,56,51,51,44,52,56,46,52,53,56,52,52,56,93,44,91,45,49,48,49,46,48,49,52,50,51,50,44,52,56,46,51,55,49,52,51,50,93,44,91,45,49,48,49,46,48,49,53,48,50,52,44,52,56,46,48,50,50,55,51,57,93,44,91,45,49,48,48,46,57,55,49,49,53,56,44,52,55,46,56,52,56,54,57,54,93,44,91,45,49,48,48,46,53,56,53,49,55,57,44,52,55,46,56,52,55,55,54,49,93,44,91,45,49,48,48,46,49,57,55,57,57,54,44,52,55,46,56,52,55,54,53,50,93,44,91,45,49,48,48,46,50,51,55,48,50,50,44,52,56,46,48,50,49,56,54,54,93,44,91,45,49,48,48,46,50,51,55,48,57,57,44,52,56,46,51,55,49,50,52,52,93,44,91,45,49,48,48,46,50,55,54,54,49,57,44,52,56,46,53,52,52,56,49,51,93,44,91,45,49,48,48,46,52,48,54,55,56,44,52,56,46,54,51,49,56,55,56,93,44,91,45,49,48,49,46,48,53,57,54,50,52,44,52,56,46,54,51,50,51,54,49,93,44,91,45,49,48,49,46,48,53,57,54,54,51,44,52,56,46,53,52,53,52,49,57,93,44,91,45,49,48,49,46,48,53,57,56,51,51,44,52,56,46,52,53,56,52,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,54,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,55,55,50,52,44,52,50,46,51,53,49,56,54,49,93,44,91,45,57,55,46,51,54,56,52,48,52,44,52,50,46,48,57,48,57,50,50,93,44,91,45,57,55,46,48,49,57,51,53,57,44,52,50,46,48,57,48,53,55,55,93,44,91,45,57,54,46,56,50,51,54,55,44,52,50,46,48,57,48,52,49,49,93,44,91,45,57,54,46,56,50,50,52,57,55,44,52,50,46,50,54,52,50,57,50,93,44,91,45,57,55,46,48,49,55,55,51,44,52,50,46,50,54,52,52,53,51,93,44,91,45,57,55,46,48,49,55,55,56,57,44,52,50,46,51,53,49,51,52,55,93,44,91,45,57,55,46,51,54,55,55,50,52,44,52,50,46,51,53,49,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,76,97,77,111,117,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,51,54,54,50,53,44,52,54,46,54,51,48,50,49,49,93,44,91,45,57,57,46,48,51,55,50,56,57,44,52,54,46,50,56,50,56,55,49,93,44,91,45,57,57,46,48,48,51,49,49,56,44,52,54,46,50,56,50,56,57,56,93,44,91,45,57,56,46,48,51,52,53,53,54,44,52,54,46,50,56,50,54,53,55,93,44,91,45,57,56,46,48,51,51,56,54,50,44,52,54,46,54,51,48,55,50,55,93,44,91,45,57,56,46,52,51,57,48,53,54,44,52,54,46,54,51,49,49,50,93,44,91,45,57,57,46,48,51,54,54,50,53,44,52,54,46,54,51,48,50,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,117,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,50,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,51,50,48,54,48,57,44,52,52,46,50,51,51,49,54,52,93,44,91,45,49,49,51,46,52,49,54,53,50,53,44,52,52,46,50,51,51,51,54,52,93,44,91,45,49,49,51,46,52,52,52,56,57,49,44,52,51,46,57,49,56,53,52,50,93,44,91,45,49,49,51,46,51,55,55,56,55,55,44,52,51,46,56,48,57,55,93,44,91,45,49,49,51,46,53,50,55,56,48,52,44,52,51,46,55,49,57,49,51,53,93,44,91,45,49,49,51,46,55,54,49,49,55,44,52,51,46,54,50,49,49,57,52,93,44,91,45,49,49,51,46,55,57,56,52,52,49,44,52,51,46,53,54,57,50,49,55,93,44,91,45,49,49,51,46,55,48,49,49,53,51,44,52,51,46,53,56,52,53,53,51,93,44,91,45,49,49,51,46,54,51,52,51,51,53,44,52,51,46,52,57,55,51,48,56,93,44,91,45,49,49,51,46,54,51,53,50,51,44,52,51,46,51,54,55,53,52,54,93,44,91,45,49,49,51,46,51,54,49,57,49,44,52,51,46,51,54,55,49,54,93,44,91,45,49,49,51,46,51,54,49,57,53,56,44,52,51,46,50,56,52,54,55,56,93,44,91,45,49,49,51,46,48,48,55,51,49,56,44,52,51,46,50,56,52,55,55,56,93,44,91,45,49,49,50,46,57,51,54,56,51,53,44,52,51,46,52,52,57,51,56,54,93,44,91,45,49,49,50,46,54,57,55,49,50,50,44,52,51,46,54,50,51,49,52,93,44,91,45,49,49,50,46,54,57,53,50,52,50,44,52,51,46,57,55,49,57,52,49,93,44,91,45,49,49,50,46,57,57,52,51,50,51,44,52,51,46,57,55,50,51,54,50,93,44,91,45,49,49,50,46,57,57,53,48,57,49,44,52,52,46,50,51,52,49,50,54,93,44,91,45,49,49,51,46,51,50,48,54,48,57,44,52,52,46,50,51,51,49,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,111,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,48,51,56,44,34,98,101,100,115,34,58,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,53,48,49,48,56,50,44,52,53,46,48,49,51,51,53,53,93,44,91,45,55,49,46,52,57,54,48,57,51,44,52,52,46,57,48,55,56,52,57,93,44,91,45,55,49,46,54,50,57,57,49,57,44,52,52,46,55,53,51,53,55,56,93,44,91,45,55,49,46,53,53,51,55,53,54,44,52,52,46,54,51,48,52,50,54,93,44,91,45,55,49,46,54,48,48,49,53,55,44,52,52,46,52,56,53,56,51,51,93,44,91,45,55,49,46,55,54,53,54,56,52,44,52,52,46,52,48,54,50,57,53,93,44,91,45,55,49,46,53,55,53,56,49,57,44,52,52,46,50,53,52,53,57,54,93,44,91,45,55,49,46,52,49,53,56,57,56,44,52,52,46,50,49,50,49,54,57,93,44,91,45,55,49,46,51,48,54,48,51,54,44,52,52,46,49,51,55,50,55,50,93,44,91,45,55,49,46,50,53,49,57,53,55,44,52,52,46,50,52,52,50,54,54,93,44,91,45,55,49,46,48,52,50,50,56,44,52,52,46,50,51,55,53,49,52,93,44,91,45,55,49,46,48,48,57,57,55,54,44,52,52,46,50,56,52,56,57,57,93,44,91,45,55,49,46,48,51,51,53,50,52,44,52,52,46,54,57,55,54,51,55,93,44,91,45,55,49,46,48,56,51,57,50,56,44,52,53,46,51,48,53,52,56,52,93,44,91,45,55,49,46,49,51,50,57,49,44,52,53,46,50,52,52,53,49,50,93,44,91,45,55,49,46,50,56,55,57,49,51,44,52,53,46,51,48,48,57,48,56,93,44,91,45,55,49,46,51,57,55,54,54,44,52,53,46,50,48,53,51,50,55,93,44,91,45,55,49,46,53,48,49,48,56,50,44,52,53,46,48,49,51,51,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,75,105,100,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,51,50,54,49,44,52,55,46,51,50,55,50,54,50,93,44,91,45,49,48,48,46,49,49,52,54,51,55,44,52,54,46,57,56,49,54,54,54,93,44,91,45,49,48,48,46,48,55,53,50,50,57,44,52,54,46,57,56,49,50,56,50,93,44,91,45,49,48,48,46,48,56,49,49,57,56,44,52,54,46,54,51,51,51,57,54,93,44,91,45,57,57,46,57,49,53,53,56,54,44,52,54,46,54,51,50,57,50,54,93,44,91,45,57,57,46,52,52,57,55,50,44,52,54,46,54,51,49,54,51,93,44,91,45,57,57,46,52,52,53,56,57,49,44,52,54,46,57,56,48,49,56,57,93,44,91,45,57,57,46,52,56,49,48,50,44,52,54,46,57,56,48,51,54,57,93,44,91,45,57,57,46,52,56,49,48,57,53,44,52,55,46,51,50,55,48,50,55,93,44,91,45,49,48,48,46,48,51,51,50,57,50,44,52,55,46,51,50,55,49,54,53,93,44,91,45,49,48,48,46,49,49,51,50,54,49,44,52,55,46,51,50,55,50,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,51,34,44,34,78,65,77,69,34,58,34,75,108,101,98,101,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,52,50,53,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,52,50,49,52,54,44,50,55,46,54,51,53,57,51,50,93,44,91,45,57,56,46,48,53,57,56,44,50,55,46,54,51,53,56,54,57,93,44,91,45,57,56,46,48,53,56,48,55,56,44,50,55,46,50,54,48,57,56,49,93,44,91,45,57,55,46,57,56,53,56,56,55,44,50,55,46,50,48,57,51,48,56,93,44,91,45,57,55,46,56,49,52,57,51,52,44,50,55,46,50,55,49,56,57,51,93,44,91,45,57,55,46,50,56,56,51,51,55,44,50,55,46,50,55,55,53,56,52,93,44,91,45,57,55,46,49,54,53,48,57,55,44,50,55,46,53,54,56,51,93,44,91,45,57,55,46,56,52,48,54,55,56,44,50,55,46,53,53,56,51,53,56,93,44,91,45,57,55,46,57,52,50,49,52,54,44,50,55,46,54,51,53,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,80,111,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,48,52,49,44,34,98,101,100,115,34,58,50,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,50,49,44,52,49,46,55,54,48,56,56,57,93,44,91,45,56,55,46,50,49,56,56,54,50,44,52,49,46,50,52,50,48,50,55,93,44,91,45,56,55,46,49,51,49,54,53,51,44,52,49,46,50,56,54,49,53,53,93,44,91,45,56,54,46,57,51,48,48,55,57,44,52,49,46,50,51,54,55,57,56,93,44,91,45,56,54,46,57,51,51,51,51,52,44,52,49,46,55,54,49,48,51,53,93,44,91,45,56,55,46,50,48,55,55,55,52,44,52,49,46,55,54,48,57,53,54,93,44,91,45,56,55,46,50,50,49,44,52,49,46,55,54,48,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,50,50,53,57,56,44,51,50,46,53,55,54,52,51,51,93,44,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,44,91,45,56,56,46,57,49,51,56,52,55,44,51,50,46,50,50,52,49,56,54,93,44,91,45,56,56,46,57,49,52,53,49,54,44,51,50,46,53,55,54,57,53,53,93,44,91,45,56,57,46,51,49,55,53,56,56,44,51,50,46,53,55,54,52,53,56,93,44,91,45,56,57,46,51,50,50,53,57,56,44,51,50,46,53,55,54,52,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,83,97,109,112,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,53,54,49,44,34,98,101,100,115,34,58,49,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,49,55,49,50,55,44,51,53,46,50,52,53,53,55,56,93,44,91,45,55,56,46,54,55,48,54,53,44,51,53,46,48,57,50,53,57,50,93,44,91,45,55,56,46,54,52,55,55,51,52,44,51,52,46,57,57,52,55,52,93,44,91,45,55,56,46,52,57,52,55,48,53,44,51,52,46,56,53,54,49,56,50,93,44,91,45,55,56,46,51,50,52,53,50,44,51,52,46,54,54,54,48,57,53,93,44,91,45,55,56,46,50,53,52,52,52,49,44,51,52,46,53,53,51,53,57,53,93,44,91,45,55,56,46,49,49,52,48,48,55,44,51,52,46,55,50,49,55,57,53,93,44,91,45,55,56,46,49,57,56,54,52,50,44,51,52,46,55,52,49,54,51,55,93,44,91,45,55,56,46,49,52,55,49,50,57,44,51,52,46,57,48,50,53,48,54,93,44,91,45,55,56,46,49,54,51,52,50,44,51,53,46,49,56,57,55,49,54,93,44,91,45,55,56,46,51,48,54,53,56,44,51,53,46,50,56,55,54,48,52,93,44,91,45,55,56,46,52,49,49,55,51,52,44,51,53,46,50,53,52,54,54,51,93,44,91,45,55,56,46,53,51,56,51,52,57,44,51,53,46,51,49,54,52,49,93,44,91,45,55,56,46,54,49,55,49,50,55,44,51,53,46,50,52,53,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,77,111,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,53,55,53,57,44,51,53,46,52,49,50,52,55,54,93,44,91,45,56,54,46,52,50,49,54,55,50,44,51,53,46,51,49,57,50,54,55,93,44,91,45,56,54,46,53,50,53,51,48,54,44,51,53,46,51,53,52,55,49,56,93,44,91,45,56,54,46,51,49,56,49,54,56,44,51,53,46,49,50,54,57,56,54,93,44,91,45,56,54,46,50,54,49,52,56,57,44,51,53,46,51,51,51,53,55,57,93,44,91,45,56,54,46,50,53,55,53,57,44,51,53,46,52,49,50,52,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,80,105,110,101,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,55,56,55,53,44,34,98,101,100,115,34,58,51,56,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,48,52,54,49,53,44,50,56,46,49,55,49,56,55,50,93,44,91,45,56,50,46,56,55,56,49,48,53,44,50,56,46,48,52,50,56,50,93,44,91,45,56,50,46,57,48,49,51,51,55,44,50,55,46,56,51,57,49,48,55,93,44,91,45,56,50,46,56,48,53,55,44,50,55,46,55,48,57,51,56,52,93,44,91,45,56,50,46,56,49,51,51,54,50,44,50,55,46,54,52,53,55,52,56,93,44,91,45,56,50,46,54,48,54,49,51,57,44,50,55,46,54,52,51,54,51,56,93,44,91,45,56,50,46,53,52,49,53,49,56,44,50,55,46,55,56,50,50,48,52,93,44,91,45,56,50,46,53,57,55,50,49,57,44,50,55,46,57,51,53,49,57,57,93,44,91,45,56,50,46,54,52,56,51,50,44,50,55,46,57,52,55,51,57,56,93,44,91,45,56,50,46,54,53,49,49,54,53,44,50,56,46,49,55,51,50,54,54,93,44,91,45,56,50,46,57,48,52,54,49,53,44,50,56,46,49,55,49,56,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,97,114,114,97,110,113,117,105,116,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,55,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,53,48,55,57,51,44,49,56,46,50,52,49,50,51,53,93,44,91,45,54,54,46,51,55,51,55,54,56,44,49,56,46,49,55,51,54,57,52,93,44,91,45,54,54,46,51,49,52,56,52,56,44,49,56,46,49,53,50,48,56,56,93,44,91,45,54,54,46,50,52,50,55,51,53,44,49,56,46,49,56,48,50,52,56,93,44,91,45,54,54,46,50,52,48,52,54,44,49,56,46,49,56,52,55,57,52,93,44,91,45,54,54,46,50,54,54,52,54,54,44,49,56,46,50,52,53,50,55,93,44,91,45,54,54,46,51,49,51,50,57,57,44,49,56,46,50,52,57,51,50,52,93,44,91,45,54,54,46,51,53,48,55,57,51,44,49,56,46,50,52,49,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,50,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,48,52,54,48,54,44,51,56,46,49,50,53,49,57,53,93,44,91,45,56,56,46,55,48,54,54,50,50,44,51,55,46,57,48,54,55,57,55,93,44,91,45,56,56,46,51,55,52,53,51,44,51,55,46,57,48,55,54,55,56,93,44,91,45,56,56,46,51,55,52,53,50,49,44,51,55,46,57,48,56,51,57,49,93,44,91,45,56,56,46,51,55,48,51,55,53,44,51,56,46,50,53,53,51,49,57,93,44,91,45,56,56,46,55,48,50,51,57,49,44,51,56,46,50,53,54,54,54,49,93,44,91,45,56,56,46,55,48,52,54,48,54,44,51,56,46,49,50,53,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,52,54,56,53,44,51,53,46,49,49,51,50,55,55,93,44,91,45,57,50,46,55,49,54,51,51,49,44,51,53,46,48,55,49,55,52,50,93,44,91,45,57,51,46,48,52,48,53,50,53,44,51,53,46,48,55,54,57,50,51,93,44,91,45,57,51,46,50,56,56,50,56,52,44,51,52,46,56,54,48,57,57,50,93,44,91,45,57,51,46,50,56,55,55,56,53,44,51,52,46,55,55,51,49,57,51,93,44,91,45,57,51,46,48,55,53,49,55,56,44,51,52,46,55,55,49,56,57,50,93,44,91,45,57,51,46,48,55,51,56,55,55,44,51,52,46,56,53,56,48,57,49,93,44,91,45,57,50,46,55,51,57,55,55,57,44,51,52,46,56,53,51,52,53,57,93,44,91,45,57,50,46,55,53,51,54,50,54,44,51,52,46,57,49,49,50,52,56,93,44,91,45,57,50,46,53,52,52,51,52,49,44,51,52,46,57,53,51,51,49,57,93,44,91,45,57,50,46,53,57,51,53,56,53,44,51,53,46,48,49,49,55,54,49,93,44,91,45,57,50,46,53,53,52,54,56,53,44,51,53,46,49,49,51,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,101,121,101,110,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,55,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,53,49,55,52,52,44,52,48,46,48,48,51,48,55,56,93,44,91,45,49,48,50,46,48,52,57,56,48,54,44,51,57,46,53,55,52,48,53,56,93,44,91,45,49,48,50,46,48,52,57,55,54,52,44,51,57,46,53,54,56,49,56,93,44,91,45,49,48,49,46,52,49,51,57,49,51,44,51,57,46,53,54,56,51,54,49,93,44,91,45,49,48,49,46,52,49,49,48,50,57,44,52,48,46,48,48,50,53,50,50,93,44,91,45,49,48,50,46,48,53,49,55,52,52,44,52,48,46,48,48,51,48,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,68,101,108,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,51,52,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,53,48,48,54,48,54,44,51,57,46,50,49,55,57,49,54,93,44,91,45,49,48,55,46,55,54,53,48,53,57,44,51,57,46,48,52,52,54,56,51,93,44,91,45,49,48,55,46,57,56,50,49,55,51,44,51,57,46,48,53,57,56,55,56,93,44,91,45,49,48,56,46,49,53,50,52,55,56,44,51,56,46,57,48,49,50,54,56,93,44,91,45,49,48,56,46,51,55,56,57,53,51,44,51,56,46,56,50,57,49,48,56,93,44,91,45,49,48,56,46,51,55,56,54,57,56,44,51,56,46,54,54,56,48,57,55,93,44,91,45,49,48,55,46,53,48,48,54,53,53,44,51,56,46,54,54,56,53,53,51,93,44,91,45,49,48,55,46,53,48,48,54,48,54,44,51,57,46,50,49,55,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,44,91,45,57,51,46,53,53,54,56,57,57,44,52,48,46,53,56,48,50,51,53,93,44,91,45,57,51,46,51,55,52,51,56,54,44,52,48,46,53,56,48,51,51,51,93,44,91,45,57,51,46,48,57,55,50,57,54,44,52,48,46,53,56,52,48,49,52,93,44,91,45,57,51,46,48,57,55,53,57,53,44,52,48,46,56,57,56,52,53,49,93,44,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,71,97,105,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,50,49,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,53,57,53,48,50,51,44,51,50,46,57,53,56,56,51,49,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,57,53,57,48,57,57,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,53,50,50,49,57,51,93,44,91,45,49,48,50,46,50,49,49,48,51,55,44,51,50,46,53,50,51,50,52,52,93,44,91,45,49,48,50,46,50,48,50,55,48,51,44,51,50,46,53,50,51,50,55,49,93,44,91,45,49,48,50,46,50,48,56,53,50,44,51,50,46,57,53,56,57,53,54,93,44,91,45,49,48,50,46,53,57,53,48,50,51,44,51,50,46,57,53,56,56,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,57,54,53,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,48,51,56,54,52,44,51,52,46,48,56,54,53,54,52,93,44,91,45,56,56,46,50,48,55,50,50,57,44,51,52,46,48,53,56,51,51,51,93,44,91,45,56,55,46,57,56,54,57,51,44,51,52,46,48,53,50,49,48,50,93,44,91,45,56,55,46,57,53,49,55,56,53,44,51,51,46,57,49,57,57,51,93,44,91,45,56,55,46,54,51,53,57,51,50,44,51,51,46,57,49,53,50,53,49,93,44,91,45,56,55,46,54,51,54,49,49,56,44,51,52,46,48,48,50,50,48,51,93,44,91,45,56,55,46,54,51,52,55,50,53,44,51,52,46,51,48,54,57,57,55,93,44,91,45,56,56,46,49,55,51,54,51,50,44,51,52,46,51,50,49,48,53,52,93,44,91,45,56,56,46,50,48,51,56,54,52,44,51,52,46,48,56,54,53,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,87,97,116,97,117,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,49,55,44,34,98,101,100,115,34,58,49,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,49,56,49,49,57,44,51,54,46,50,56,55,49,50,57,93,44,91,45,56,49,46,56,49,48,53,49,54,44,51,54,46,49,49,49,53,49,49,93,44,91,45,56,49,46,53,52,53,52,56,56,44,51,54,46,49,49,55,52,55,53,93,44,91,45,56,49,46,52,55,55,53,49,54,44,51,54,46,50,52,48,50,53,93,44,91,45,56,49,46,55,50,56,55,56,49,44,51,54,46,51,57,49,51,48,57,93,44,91,45,56,49,46,57,49,56,49,49,57,44,51,54,46,50,56,55,49,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,55,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,55,48,34,44,34,78,65,77,69,34,58,34,82,111,97,110,111,107,101,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,54,50,49,44,34,98,101,100,115,34,58,54,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,51,51,52,54,52,44,51,55,46,50,54,50,56,57,93,44,91,45,55,57,46,57,52,54,56,49,55,44,51,55,46,50,49,51,48,51,55,93,44,91,45,55,57,46,57,48,53,52,54,44,51,55,46,51,50,49,56,51,53,93,44,91,45,56,48,46,48,50,50,50,50,54,44,51,55,46,51,48,56,51,51,56,93,44,91,45,56,48,46,48,51,51,52,54,52,44,51,55,46,50,54,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,55,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,49,52,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,57,53,48,49,49,44,51,50,46,48,56,55,53,51,50,93,44,91,45,49,48,49,46,54,56,56,55,52,44,51,50,46,53,50,53,50,50,50,93,44,91,45,49,48,50,46,50,48,50,55,48,51,44,51,50,46,53,50,51,50,55,49,93,44,91,45,49,48,50,46,50,49,49,48,51,55,44,51,50,46,53,50,51,50,52,52,93,44,91,45,49,48,50,46,50,49,49,50,52,57,44,51,50,46,48,56,54,56,93,44,91,45,49,48,49,46,55,55,54,48,56,53,44,51,50,46,48,56,54,57,50,53,93,44,91,45,49,48,49,46,54,57,53,48,49,49,44,51,50,46,48,56,55,53,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,66,111,119,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,56,53,56,44,34,98,101,100,115,34,58,56,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,52,54,48,57,54,44,51,51,46,55,48,51,48,49,54,93,44,91,45,57,52,46,55,52,54,57,50,53,44,51,51,46,51,50,56,57,51,56,93,44,91,45,57,52,46,54,53,50,50,54,44,51,51,46,50,54,56,56,54,49,93,44,91,45,57,52,46,52,54,56,52,52,50,44,51,51,46,50,57,52,51,49,51,93,44,91,45,57,52,46,50,51,49,51,51,51,44,51,51,46,50,52,49,48,55,51,93,44,91,45,57,52,46,50,49,56,55,55,55,44,51,51,46,50,57,54,52,48,50,93,44,91,45,57,52,46,48,52,50,57,56,55,44,51,51,46,50,55,49,50,52,50,93,44,91,45,57,52,46,48,52,51,52,53,44,51,51,46,53,53,50,50,53,51,93,44,91,45,57,52,46,50,57,49,50,49,50,44,51,51,46,53,56,49,52,55,56,93,44,91,45,57,52,46,51,56,57,53,51,44,51,51,46,53,52,54,55,51,57,93,44,91,45,57,52,46,52,56,53,56,55,56,44,51,51,46,54,51,55,56,54,53,93,44,91,45,57,52,46,53,54,52,48,55,54,44,51,51,46,54,50,54,50,54,53,93,44,91,45,57,52,46,55,52,54,48,57,54,44,51,51,46,55,48,51,48,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,87,101,98,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,55,55,51,49,44,34,98,101,100,115,34,58,53,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,56,53,52,52,51,44,52,49,46,52,50,54,51,55,52,93,44,91,45,49,49,50,46,48,50,56,54,55,50,44,52,49,46,51,51,54,53,49,50,93,44,91,45,49,49,50,46,50,51,56,48,54,53,44,52,49,46,51,51,54,53,53,50,93,44,91,45,49,49,50,46,52,57,51,53,49,53,44,52,49,46,48,55,54,56,56,56,93,44,91,45,49,49,50,46,49,56,54,54,57,51,44,52,49,46,49,53,51,48,50,56,93,44,91,45,49,49,49,46,56,53,54,50,52,55,44,52,49,46,49,51,57,48,56,51,93,44,91,45,49,49,49,46,56,53,55,55,57,57,44,52,49,46,49,57,55,55,53,51,93,44,91,45,49,49,49,46,54,53,56,54,51,54,44,52,49,46,49,56,53,55,49,56,93,44,91,45,49,49,49,46,52,57,54,56,49,53,44,52,49,46,50,51,48,54,49,93,44,91,45,49,49,49,46,52,50,48,55,50,56,44,52,49,46,51,54,49,51,48,56,93,44,91,45,49,49,49,46,53,49,48,56,51,57,44,52,49,46,52,50,51,49,93,44,91,45,49,49,49,46,54,54,54,53,55,54,44,52,49,46,52,50,56,56,51,93,44,91,45,49,49,49,46,55,50,54,49,56,49,44,52,49,46,51,55,53,57,56,54,93,44,91,45,49,49,49,46,56,56,53,52,52,51,44,52,49,46,52,50,54,51,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,55,50,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,52,48,51,53,51,44,51,57,46,57,52,56,50,51,53,93,44,91,45,57,49,46,56,52,54,55,52,51,44,51,57,46,54,53,56,53,49,51,93,44,91,45,57,49,46,55,49,53,50,52,55,44,51,57,46,54,53,55,54,52,52,93,44,91,45,57,49,46,55,49,53,52,57,55,44,51,57,46,54,56,54,52,57,50,93,44,91,45,57,49,46,51,48,54,54,57,51,44,51,57,46,54,56,52,56,54,53,93,44,91,45,57,49,46,51,54,53,49,50,53,44,51,57,46,55,53,56,55,50,51,93,44,91,45,57,49,46,52,51,51,55,57,56,44,51,57,46,56,52,49,56,54,53,93,44,91,45,57,49,46,52,51,53,53,49,55,44,51,57,46,57,52,53,50,50,50,93,44,91,45,57,49,46,56,52,48,51,53,51,44,51,57,46,57,52,56,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,52,52,56,44,34,98,101,100,115,34,58,51,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,54,48,48,52,54,44,52,52,46,52,48,51,50,54,51,93,44,91,45,55,54,46,49,54,49,56,50,53,44,52,52,46,50,56,48,55,55,54,93,44,91,45,55,54,46,52,51,56,50,56,55,44,52,52,46,48,57,52,49,55,50,93,44,91,45,55,54,46,55,51,52,55,50,53,44,52,51,46,55,48,56,49,50,49,93,44,91,45,55,54,46,54,52,52,55,49,50,44,52,51,46,55,48,51,52,54,54,93,44,91,45,55,54,46,48,50,50,48,48,51,44,52,51,46,54,54,56,49,52,51,93,44,91,45,55,53,46,55,55,52,53,53,51,44,52,51,46,54,56,56,56,56,52,93,44,91,45,55,53,46,55,53,56,49,53,55,44,52,51,46,56,55,56,55,56,53,93,44,91,45,55,53,46,52,56,52,53,50,56,44,52,52,46,48,55,52,49,55,50,93,44,91,45,55,53,46,52,52,54,49,50,52,44,52,52,46,50,49,55,54,53,53,93,44,91,45,55,53,46,56,54,48,48,52,54,44,52,52,46,52,48,51,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,51,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,55,51,55,57,56,44,52,50,46,51,56,49,52,53,56,93,44,91,45,57,48,46,54,54,53,48,50,57,44,52,50,46,51,56,50,49,53,53,93,44,91,45,57,48,46,54,54,53,53,53,49,44,52,50,46,50,57,52,54,57,57,93,44,91,45,57,48,46,56,57,56,48,50,44,52,50,46,50,57,53,50,51,54,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,50,46,48,51,51,53,52,56,93,44,91,45,57,48,46,49,53,52,50,50,49,44,52,50,46,48,51,51,48,55,51,93,44,91,45,57,48,46,49,54,50,56,57,53,44,52,50,46,49,49,54,55,49,56,93,44,91,45,57,48,46,51,49,55,51,57,53,44,52,50,46,49,57,51,54,52,53,93,44,91,45,57,48,46,51,57,49,49,48,56,44,52,50,46,50,50,53,52,55,51,93,44,91,45,57,48,46,52,55,51,55,57,56,44,52,50,46,51,56,49,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,78,101,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,50,48,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,57,50,49,56,52,44,52,56,46,49,57,53,49,55,55,93,44,91,45,57,56,46,52,50,50,48,53,55,44,52,56,46,49,57,52,55,56,50,93,44,91,45,57,56,46,52,50,50,52,55,52,44,52,56,46,48,50,49,48,56,93,44,91,45,57,56,46,53,50,53,53,53,53,44,52,55,46,57,49,53,48,53,54,93,44,91,45,57,56,46,53,50,53,53,49,54,44,52,55,46,56,52,54,50,55,54,93,44,91,45,57,56,46,53,48,48,49,56,49,44,52,55,46,54,55,50,52,49,51,93,44,91,45,57,55,46,57,56,52,50,52,56,44,52,55,46,54,55,50,51,48,51,93,44,91,45,57,55,46,56,56,50,50,55,49,44,52,55,46,54,55,50,49,55,57,93,44,91,45,57,55,46,56,56,50,48,54,53,44,52,56,46,48,50,48,56,52,52,93,44,91,45,57,55,46,57,48,51,51,49,51,44,52,56,46,49,57,52,56,52,53,93,44,91,45,57,56,46,50,57,50,49,56,52,44,52,56,46,49,57,53,49,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,55,57,52,44,34,98,101,100,115,34,58,51,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,48,50,55,51,56,57,44,52,52,46,57,57,53,54,56,53,93,44,91,45,55,51,46,57,56,54,51,56,50,44,52,52,46,55,48,55,55,55,51,93,44,91,45,55,51,46,57,48,57,54,56,55,44,52,52,46,52,50,57,54,57,57,93,44,91,45,55,51,46,52,57,55,53,54,55,44,52,52,46,52,56,54,50,51,93,44,91,45,55,51,46,51,51,56,54,51,54,44,52,52,46,53,52,54,56,52,52,93,44,91,45,55,51,46,51,54,49,52,53,53,44,52,52,46,53,54,51,53,54,51,93,44,91,45,55,51,46,51,56,57,56,50,44,52,52,46,54,49,55,50,49,49,93,44,91,45,55,51,46,51,51,53,48,52,52,44,52,52,46,56,48,52,49,48,57,93,44,91,45,55,51,46,51,52,51,49,50,52,44,52,53,46,48,49,48,56,52,93,44,91,45,55,52,46,48,50,55,51,56,57,44,52,52,46,57,57,53,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,53,51,56,44,34,98,101,100,115,34,58,49,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,48,51,55,51,54,51,44,52,48,46,48,57,49,53,51,56,93,44,91,45,49,48,55,46,51,49,54,57,57,51,44,52,48,46,48,57,48,55,54,53,93,44,91,45,49,48,55,46,51,49,56,55,53,49,44,51,57,46,57,49,52,57,54,56,93,44,91,45,49,48,55,46,52,51,49,55,55,44,51,57,46,56,50,56,51,55,55,93,44,91,45,49,48,55,46,57,51,56,53,48,50,44,51,57,46,56,50,52,57,57,54,93,44,91,45,49,48,55,46,57,51,56,53,52,54,44,51,57,46,54,57,52,52,54,52,93,44,91,45,49,48,56,46,53,53,52,55,50,50,44,51,57,46,54,57,51,54,52,93,44,91,45,49,48,56,46,53,53,52,54,50,55,44,51,57,46,54,53,48,49,54,52,93,44,91,45,49,48,57,46,48,53,49,50,50,55,44,51,57,46,54,54,48,52,54,54,93,44,91,45,49,48,57,46,48,53,49,50,50,54,44,51,57,46,52,57,55,55,51,57,93,44,91,45,49,48,57,46,48,53,48,55,54,53,44,51,57,46,51,54,54,54,55,55,93,44,91,45,49,48,56,46,52,48,57,54,48,55,44,51,57,46,51,54,53,57,56,51,93,44,91,45,49,48,55,46,52,51,48,57,52,57,44,51,57,46,51,54,54,49,55,56,93,44,91,45,49,48,55,46,49,49,51,52,52,54,44,51,57,46,51,54,54,48,54,54,93,44,91,45,49,48,55,46,49,49,51,54,55,50,44,51,57,46,57,49,57,49,49,50,93,44,91,45,49,48,55,46,48,51,51,57,54,56,44,51,57,46,57,49,56,57,49,51,93,44,91,45,49,48,55,46,48,51,55,51,54,51,44,52,48,46,48,57,49,53,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,82,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,50,53,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,49,48,54,52,50,44,51,57,46,52,53,52,54,56,50,93,44,91,45,57,52,46,50,49,50,53,49,53,44,51,57,46,50,48,55,48,56,54,93,44,91,45,57,52,46,49,48,52,56,50,51,44,51,57,46,49,52,51,53,48,55,93,44,91,45,57,52,46,48,50,56,56,50,50,44,51,57,46,49,57,49,53,57,53,93,44,91,45,57,51,46,55,53,56,52,54,51,44,51,57,46,50,48,55,48,50,49,93,44,91,45,57,51,46,55,53,57,49,56,51,44,51,57,46,53,50,52,53,53,56,93,44,91,45,57,52,46,50,48,56,52,50,51,44,51,57,46,53,50,55,50,93,44,91,45,57,52,46,50,49,48,54,52,50,44,51,57,46,52,53,52,54,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,72,111,99,107,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,55,52,53,51,49,44,51,57,46,54,53,52,57,53,57,93,44,91,45,56,50,46,52,57,54,49,50,51,44,51,57,46,54,48,50,56,52,57,93,44,91,45,56,50,46,55,51,49,53,49,56,44,51,57,46,53,53,52,52,52,53,93,44,91,45,56,50,46,55,52,48,55,50,57,44,51,57,46,52,54,56,51,53,93,44,91,45,56,50,46,55,52,56,53,57,49,44,51,57,46,51,54,56,49,54,53,93,44,91,45,56,50,46,50,56,57,54,54,51,44,51,57,46,51,56,52,49,57,53,93,44,91,45,56,50,46,50,56,48,52,49,44,51,57,46,52,55,50,57,48,54,93,44,91,45,56,50,46,49,54,55,51,55,57,44,51,57,46,52,54,54,51,48,55,93,44,91,45,56,50,46,49,53,57,49,54,49,44,51,57,46,53,53,54,53,55,52,93,44,91,45,56,50,46,51,55,57,56,57,44,51,57,46,53,57,54,55,51,56,93,44,91,45,56,50,46,51,55,52,53,51,49,44,51,57,46,54,53,52,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,111,119,110,100,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,57,54,55,55,52,44,51,50,46,51,52,52,52,51,55,93,44,91,45,56,54,46,54,53,51,52,49,57,44,51,50,46,51,57,55,50,52,55,93,44,91,45,56,54,46,56,49,52,57,49,50,44,51,50,46,51,52,48,56,48,51,93,44,91,45,56,54,46,57,48,56,51,48,50,44,51,50,46,50,50,53,48,50,56,93,44,91,45,56,54,46,57,48,54,57,53,54,44,51,50,46,48,52,55,57,55,93,44,91,45,56,54,46,56,53,55,53,56,51,44,51,49,46,57,54,50,49,54,55,93,44,91,45,56,54,46,52,52,56,49,57,56,44,51,49,46,57,54,52,54,50,57,93,44,91,45,56,54,46,52,48,54,50,55,54,44,51,50,46,48,53,48,55,51,49,93,44,91,45,56,54,46,52,48,56,55,55,49,44,51,50,46,50,52,52,51,48,57,93,44,91,45,56,54,46,52,57,54,55,55,52,44,51,50,46,51,52,52,52,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,97,110,100,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,51,48,50,51,51,44,51,50,46,53,51,56,55,55,93,44,91,45,56,50,46,49,52,56,51,51,56,44,51,50,46,53,50,48,52,50,57,93,44,91,45,56,50,46,50,53,50,55,53,55,44,51,50,46,51,53,51,51,49,93,44,91,45,56,50,46,50,51,50,55,56,56,44,51,50,46,51,49,56,56,51,56,93,44,91,45,56,50,46,48,50,53,51,51,57,44,51,50,46,50,55,56,56,56,51,93,44,91,45,56,49,46,57,54,57,48,54,57,44,51,50,46,50,54,56,55,56,51,93,44,91,45,56,49,46,57,49,56,54,53,50,44,51,50,46,52,49,53,48,55,51,93,44,91,45,56,50,46,48,51,48,50,51,51,44,51,50,46,53,51,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,76,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,50,49,50,49,44,34,98,101,100,115,34,58,57,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,51,49,48,56,57,44,52,50,46,50,57,57,48,54,51,93,44,91,45,57,49,46,56,51,49,51,55,57,44,52,49,46,56,54,49,56,53,49,93,44,91,45,57,49,46,51,54,54,50,50,49,44,52,49,46,56,54,48,48,54,57,93,44,91,45,57,49,46,51,54,53,56,55,55,44,52,49,46,57,52,55,52,49,93,44,91,45,57,49,46,51,54,51,50,54,51,44,52,50,46,50,57,54,52,52,53,93,44,91,45,57,49,46,53,57,54,57,56,49,44,52,50,46,50,57,54,52,48,56,93,44,91,45,57,49,46,56,51,49,48,56,57,44,52,50,46,50,57,57,48,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,84,114,105,110,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,54,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,52,48,56,50,57,49,44,52,49,46,49,55,57,57,52,52,93,44,91,45,49,50,51,46,52,52,55,57,53,54,44,52,48,46,57,52,51,55,53,56,93,44,91,45,49,50,51,46,54,49,53,56,50,55,44,52,48,46,57,49,52,48,54,56,93,44,91,45,49,50,51,46,53,52,51,55,52,57,44,52,48,46,55,51,57,48,49,53,93,44,91,45,49,50,51,46,53,52,52,52,53,56,44,52,48,46,48,48,49,57,50,51,93,44,91,45,49,50,51,46,53,52,52,53,54,51,44,51,57,46,57,55,55,48,49,53,93,44,91,45,49,50,50,46,57,51,52,48,49,51,44,51,57,46,57,55,56,49,51,49,93,44,91,45,49,50,50,46,57,56,57,48,49,53,44,52,48,46,50,53,48,49,52,53,93,44,91,45,49,50,51,46,48,54,53,52,50,54,44,52,48,46,50,56,54,57,55,49,93,44,91,45,49,50,50,46,57,51,49,50,54,55,44,52,48,46,52,52,53,53,53,55,93,44,91,45,49,50,50,46,54,57,51,48,57,57,44,52,48,46,53,56,48,55,52,55,93,44,91,45,49,50,50,46,55,53,50,48,50,51,44,52,48,46,54,56,57,56,56,50,93,44,91,45,49,50,50,46,54,54,57,56,51,57,44,52,48,46,55,55,51,53,54,55,93,44,91,45,49,50,50,46,53,57,56,53,50,56,44,52,48,46,57,55,53,56,52,55,93,44,91,45,49,50,50,46,53,50,55,55,53,51,44,52,49,46,48,49,52,51,57,53,93,44,91,45,49,50,50,46,52,57,56,51,55,54,44,52,49,46,49,56,50,54,55,53,93,44,91,45,49,50,50,46,53,48,52,50,53,52,44,52,49,46,51,51,52,55,49,93,44,91,45,49,50,50,46,53,57,48,56,48,56,44,52,49,46,51,50,53,57,49,93,44,91,45,49,50,50,46,56,49,49,51,52,50,44,52,49,46,50,48,50,52,53,49,93,44,91,45,49,50,50,46,56,57,55,48,54,54,44,52,49,46,50,48,49,48,48,54,93,44,91,45,49,50,51,46,48,51,54,56,48,56,44,52,49,46,48,48,52,48,53,56,93,44,91,45,49,50,51,46,49,48,57,48,55,55,44,52,49,46,48,55,53,52,50,57,93,44,91,45,49,50,51,46,50,52,53,50,50,50,44,52,49,46,48,55,55,57,56,55,93,44,91,45,49,50,51,46,52,48,56,50,57,49,44,52,49,46,49,55,57,57,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,53,34,44,34,78,65,77,69,34,58,34,77,117,115,99,111,103,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,54,54,55,48,44,34,98,101,100,115,34,58,49,49,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,56,48,55,56,52,44,51,50,46,54,48,56,48,55,50,93,44,91,45,56,53,46,48,48,49,48,50,44,51,50,46,53,49,48,49,53,55,93,44,91,45,56,52,46,57,55,49,57,54,50,44,51,50,46,51,55,55,54,57,56,93,44,91,45,56,52,46,55,57,50,57,53,49,44,51,50,46,52,49,51,56,52,93,44,91,45,56,52,46,54,57,52,53,49,44,51,50,46,53,49,56,55,51,50,93,44,91,45,56,52,46,54,57,52,54,48,51,44,51,50,46,53,56,51,57,52,53,93,44,91,45,56,53,46,48,56,48,55,56,52,44,51,50,46,54,48,56,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,84,97,108,108,97,104,97,116,99,104,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,54,49,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,51,53,52,53,54,44,51,52,46,49,54,48,48,55,52,93,44,91,45,57,48,46,49,51,53,54,57,53,44,51,52,46,48,55,50,57,93,44,91,45,57,48,46,52,53,48,57,56,49,44,51,52,46,48,55,50,57,51,50,93,44,91,45,57,48,46,52,53,49,48,49,50,44,51,51,46,57,56,53,54,56,57,93,44,91,45,57,48,46,52,53,49,54,52,51,44,51,51,46,56,49,49,51,57,93,44,91,45,57,48,46,49,56,50,53,56,52,44,51,51,46,56,48,57,51,50,50,93,44,91,45,57,48,46,49,51,54,55,56,55,44,51,51,46,55,50,49,54,52,56,93,44,91,45,57,48,46,49,51,54,52,57,49,44,51,51,46,56,48,57,51,49,57,93,44,91,45,56,57,46,57,50,54,50,57,52,44,51,51,46,56,50,51,56,53,52,93,44,91,45,56,57,46,57,50,54,48,57,57,44,51,51,46,56,57,55,57,53,55,93,44,91,45,56,57,46,57,51,49,52,56,53,44,51,52,46,49,54,52,51,48,51,93,44,91,45,57,48,46,49,51,53,52,53,54,44,51,52,46,49,54,48,48,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,116,99,104,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,54,52,49,50,54,44,51,57,46,54,53,50,56,55,50,93,44,91,45,57,53,46,53,55,48,51,53,49,44,51,57,46,52,49,57,48,53,93,44,91,45,57,53,46,49,56,48,56,57,49,44,51,57,46,52,49,57,50,49,56,93,44,91,45,57,52,46,57,54,56,57,55,51,44,51,57,46,52,49,56,56,55,57,93,44,91,45,57,53,46,49,48,50,56,56,56,44,51,57,46,53,51,51,51,52,55,93,44,91,45,57,53,46,48,53,51,53,56,54,44,51,57,46,54,49,53,50,54,57,93,44,91,45,57,53,46,49,49,53,49,56,57,44,51,57,46,54,53,50,53,52,57,93,44,91,45,57,53,46,51,51,57,55,52,44,51,57,46,54,53,50,57,56,93,44,91,45,57,53,46,53,54,52,49,50,54,44,51,57,46,54,53,50,56,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,97,114,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,56,57,51,51,51,57,44,49,56,46,51,54,55,48,56,57,93,44,91,45,54,54,46,57,48,55,50,51,54,44,49,56,46,50,53,51,48,57,93,44,91,45,54,54,46,56,57,55,57,54,52,44,49,56,46,49,56,55,55,52,52,93,44,91,45,54,54,46,56,51,54,55,54,44,49,56,46,49,55,48,53,53,51,93,44,91,45,54,54,46,56,50,55,51,50,55,44,49,56,46,49,55,49,50,52,50,93,44,91,45,54,54,46,56,49,55,50,55,49,44,49,56,46,50,51,48,51,51,54,93,44,91,45,54,54,46,56,50,54,49,50,56,44,49,56,46,51,50,51,51,56,50,93,44,91,45,54,54,46,56,50,52,50,50,51,44,49,56,46,51,52,50,57,57,56,93,44,91,45,54,54,46,56,57,51,51,51,57,44,49,56,46,51,54,55,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,100,114,101,119,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,49,56,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,54,52,53,49,54,44,51,50,46,48,56,55,48,53,49,93,44,91,45,49,48,50,46,55,57,57,48,56,54,44,51,50,46,48,56,53,55,57,53,93,44,91,45,49,48,50,46,50,56,55,48,52,56,44,51,50,46,48,56,54,57,57,49,93,44,91,45,49,48,50,46,50,49,49,50,52,57,44,51,50,46,48,56,54,56,93,44,91,45,49,48,50,46,50,49,49,48,51,55,44,51,50,46,53,50,51,50,52,52,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,53,50,50,49,57,51,93,44,91,45,49,48,51,46,48,54,52,53,49,54,44,51,50,46,48,56,55,48,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,77,105,97,109,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,56,48,48,44,34,98,101,100,115,34,58,49,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,51,50,53,55,53,44,52,48,46,49,57,55,48,51,55,93,44,91,45,56,52,46,52,50,53,57,48,50,44,51,57,46,57,49,57,54,50,50,93,44,91,45,56,52,46,49,53,55,54,55,49,44,51,57,46,57,50,50,57,55,93,44,91,45,56,52,46,48,53,49,48,49,50,44,51,57,46,56,55,57,56,49,93,44,91,45,56,52,46,48,51,54,48,54,57,44,52,48,46,48,52,48,49,56,50,93,44,91,45,56,52,46,48,50,50,57,49,57,44,52,48,46,49,56,51,57,52,53,93,44,91,45,56,52,46,52,51,50,53,55,53,44,52,48,46,49,57,55,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,55,53,34,44,34,78,65,77,69,34,58,34,80,111,116,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,56,57,57,44,34,98,101,100,115,34,58,57,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,44,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,44,91,45,49,48,49,46,54,50,50,56,44,51,53,46,54,50,48,49,57,54,93,44,91,45,49,48,50,46,49,54,50,55,53,50,44,51,53,46,54,50,48,48,51,53,93,44,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,83,101,109,105,110,111,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,55,49,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,50,51,54,57,57,44,51,53,46,52,48,48,55,50,50,93,44,91,45,57,54,46,55,55,54,54,57,52,44,51,53,46,52,48,53,52,49,55,93,44,91,45,57,54,46,55,55,53,54,56,49,44,51,52,46,56,57,57,57,53,56,93,44,91,45,57,54,46,54,54,55,54,57,50,44,51,52,46,57,50,57,53,56,51,93,44,91,45,57,54,46,52,57,48,55,56,54,44,51,52,46,57,49,48,53,56,53,93,44,91,45,57,54,46,52,57,48,52,51,52,44,51,53,46,49,49,53,56,53,55,93,44,91,45,57,54,46,52,52,49,51,54,56,44,51,53,46,50,57,48,49,50,50,93,44,91,45,57,54,46,52,52,53,53,56,52,44,51,53,46,52,53,56,55,55,49,93,44,91,45,57,54,46,54,50,51,54,57,57,44,51,53,46,52,48,48,55,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,105,107,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,57,50,54,44,34,98,101,100,115,34,58,50,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,53,49,55,53,57,44,51,51,46,56,49,52,53,49,93,44,91,45,56,50,46,48,49,50,52,55,44,51,51,46,53,51,50,49,49,54,93,44,91,45,56,49,46,57,51,52,49,51,54,44,51,51,46,52,54,56,51,51,55,93,44,91,45,56,49,46,57,49,56,51,51,55,44,51,51,46,51,51,50,56,52,50,93,44,91,45,56,49,46,56,53,50,48,55,54,44,51,51,46,50,52,55,50,56,56,93,44,91,45,56,49,46,55,53,55,48,51,53,44,51,51,46,49,57,56,49,52,56,93,44,91,45,56,49,46,51,55,50,57,51,49,44,51,51,46,52,57,48,52,49,55,93,44,91,45,56,49,46,49,56,55,50,55,49,44,51,51,46,54,53,50,57,51,55,93,44,91,45,56,49,46,52,49,53,51,48,56,44,51,51,46,55,51,50,49,54,49,93,44,91,45,56,49,46,53,55,49,52,56,55,44,51,51,46,56,55,55,51,49,56,93,44,91,45,56,49,46,54,53,49,55,53,57,44,51,51,46,56,49,52,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,77,101,110,100,111,99,105,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,52,50,50,44,34,98,101,100,115,34,58,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,49,51,52,56,56,57,44,52,48,46,48,48,50,52,55,93,44,91,45,49,50,51,46,57,51,56,53,57,49,44,51,57,46,56,49,52,57,52,52,93,44,91,45,49,50,51,46,56,53,55,49,56,51,44,51,57,46,54,55,52,54,57,51,93,44,91,45,49,50,51,46,56,51,52,54,52,57,44,51,57,46,53,52,57,49,57,52,93,44,91,45,49,50,51,46,56,57,51,48,56,53,44,51,57,46,51,51,55,52,57,52,93,44,91,45,49,50,51,46,55,54,49,57,54,53,44,51,57,46,48,52,49,48,57,49,93,44,91,45,49,50,51,46,55,56,52,54,55,54,44,51,56,46,56,57,51,55,50,56,93,44,91,45,49,50,51,46,54,51,50,52,57,55,44,51,56,46,55,53,56,49,49,57,93,44,91,45,49,50,51,46,51,54,56,51,57,52,44,51,56,46,56,48,54,54,52,93,44,91,45,49,50,51,46,49,51,54,50,53,51,44,51,56,46,56,48,57,49,51,54,93,44,91,45,49,50,51,46,48,56,48,57,57,55,44,51,56,46,56,53,50,52,51,56,93,44,91,45,49,50,50,46,56,50,49,53,57,50,44,51,56,46,56,53,48,49,52,93,44,91,45,49,50,50,46,57,52,56,56,54,53,44,51,56,46,57,48,48,50,50,93,44,91,45,49,50,50,46,57,56,54,54,52,44,51,56,46,57,57,55,50,56,51,93,44,91,45,49,50,51,46,48,57,51,48,49,51,44,51,57,46,48,55,49,57,57,52,93,44,91,45,49,50,51,46,48,49,50,55,49,44,51,57,46,50,51,54,49,56,56,93,44,91,45,49,50,51,46,48,55,53,49,49,52,44,51,57,46,52,48,55,54,56,51,93,44,91,45,49,50,51,46,48,54,51,49,56,49,44,51,57,46,53,48,51,53,51,57,93,44,91,45,49,50,50,46,56,57,48,51,49,44,51,57,46,53,50,57,48,49,52,93,44,91,45,49,50,50,46,56,56,53,51,53,50,44,51,57,46,53,56,48,49,48,56,93,44,91,45,49,50,50,46,57,51,55,54,53,52,44,51,57,46,55,57,56,49,53,54,93,44,91,45,49,50,50,46,57,51,52,48,49,51,44,51,57,46,57,55,56,49,51,49,93,44,91,45,49,50,51,46,53,52,52,53,54,51,44,51,57,46,57,55,55,48,49,53,93,44,91,45,49,50,51,46,53,52,52,52,53,56,44,52,48,46,48,48,49,57,50,51,93,44,91,45,49,50,52,46,49,51,52,56,56,57,44,52,48,46,48,48,50,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,53,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,53,48,34,44,34,78,65,77,69,34,58,34,67,104,101,115,97,112,101,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,55,56,50,48,44,34,98,101,100,115,34,58,51,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,50,48,51,54,56,44,51,54,46,56,54,54,51,52,56,93,44,91,45,55,54,46,52,53,55,52,54,57,44,51,54,46,56,49,52,56,52,49,93,44,91,45,55,54,46,52,57,49,52,57,54,44,51,54,46,53,53,48,54,52,56,93,44,91,45,55,54,46,51,49,51,51,48,51,44,51,54,46,53,53,48,53,50,93,44,91,45,55,54,46,49,50,50,51,52,57,44,51,54,46,53,53,48,53,50,51,93,44,91,45,55,54,46,49,50,49,57,53,53,44,51,54,46,54,54,53,55,53,93,44,91,45,55,54,46,50,50,54,48,54,44,51,54,46,56,51,57,57,52,55,93,44,91,45,55,54,46,50,56,57,57,54,50,44,51,54,46,56,50,50,48,52,56,93,44,91,45,55,54,46,52,50,48,51,54,56,44,51,54,46,56,54,54,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,89,97,117,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,52,51,57,44,34,98,101,100,115,34,58,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,57,50,54,53,49,55,44,49,56,46,49,53,49,50,54,55,93,44,91,45,54,54,46,56,56,52,54,53,51,44,49,56,46,48,50,52,56,49,54,93,44,91,45,54,54,46,56,53,56,50,51,51,44,49,55,46,57,53,48,56,50,53,93,44,91,45,54,54,46,55,57,55,53,53,55,44,49,56,46,49,51,51,52,52,53,93,44,91,45,54,54,46,56,50,55,51,50,55,44,49,56,46,49,55,49,50,52,50,93,44,91,45,54,54,46,56,51,54,55,54,44,49,56,46,49,55,48,53,53,51,93,44,91,45,54,54,46,57,50,54,53,49,55,44,49,56,46,49,53,49,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,83,119,101,101,116,119,97,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,49,49,55,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,51,56,54,52,44,52,50,46,50,54,51,54,56,52,93,44,91,45,49,49,48,46,48,53,51,55,48,56,44,52,50,46,50,55,48,55,52,52,93,44,91,45,49,49,48,46,48,52,56,44,52,49,46,53,55,56,48,49,53,93,44,91,45,49,49,48,46,48,52,56,52,56,51,44,52,48,46,57,57,55,50,57,53,93,44,91,45,49,49,48,46,48,48,48,55,49,55,44,52,48,46,57,57,55,52,53,93,44,91,45,49,48,57,46,48,53,48,48,50,54,44,52,49,46,48,48,48,54,57,49,93,44,91,45,49,48,55,46,57,49,56,52,50,49,44,52,49,46,48,48,50,48,51,54,93,44,91,45,49,48,55,46,57,50,57,55,51,54,44,52,49,46,54,53,57,53,57,54,93,44,91,45,49,48,55,46,53,48,57,55,50,44,52,49,46,54,53,55,52,53,50,93,44,91,45,49,48,55,46,53,48,51,56,50,49,44,52,50,46,48,56,55,57,53,55,93,44,91,45,49,48,55,46,53,50,50,55,50,50,44,52,50,46,50,54,49,55,53,54,93,44,91,45,49,48,57,46,48,52,51,56,54,52,44,52,50,46,50,54,51,54,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,71,97,114,122,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,44,91,45,49,48,49,46,53,53,54,56,56,52,44,51,51,46,51,57,52,55,54,93,44,91,45,49,48,49,46,53,53,55,52,51,52,44,51,50,46,57,54,49,48,50,53,93,44,91,45,49,48,49,46,49,55,51,51,55,56,44,51,50,46,57,54,51,53,57,55,93,44,91,45,49,48,49,46,48,51,56,54,54,44,51,50,46,57,55,48,50,50,53,93,44,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,72,97,114,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,52,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,44,91,45,55,57,46,48,56,57,54,53,53,44,51,57,46,48,51,56,50,48,56,93,44,91,45,55,57,46,48,52,53,57,53,51,44,51,56,46,57,50,56,55,49,93,44,91,45,55,57,46,49,51,52,50,57,54,44,51,56,46,56,49,51,51,52,93,44,91,45,55,57,46,48,53,55,50,53,51,44,51,56,46,55,54,49,52,49,51,93,44,91,45,55,56,46,57,57,51,55,54,49,44,51,56,46,56,53,48,48,50,49,93,44,91,45,55,56,46,56,54,57,50,54,49,44,51,56,46,55,54,50,57,56,93,44,91,45,55,56,46,55,56,56,48,51,49,44,51,56,46,56,56,53,49,50,51,93,44,91,45,55,56,46,54,56,48,52,53,54,44,51,56,46,57,50,53,51,49,51,93,44,91,45,55,56,46,53,52,52,49,56,50,44,51,57,46,48,53,54,53,53,57,93,44,91,45,55,56,46,53,48,56,49,51,50,44,51,57,46,48,56,56,54,51,93,44,91,45,55,56,46,56,57,57,54,57,53,44,51,57,46,49,57,57,49,51,55,93,44,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,106,117,110,116,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,56,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,56,49,55,50,55,49,44,49,56,46,50,51,48,51,51,54,93,44,91,45,54,54,46,56,50,55,51,50,55,44,49,56,46,49,55,49,50,52,50,93,44,91,45,54,54,46,55,57,55,53,53,55,44,49,56,46,49,51,51,52,52,53,93,44,91,45,54,54,46,55,54,57,48,52,57,44,49,56,46,49,51,52,57,56,51,93,44,91,45,54,54,46,54,57,52,48,55,44,49,56,46,49,51,48,53,51,52,93,44,91,45,54,54,46,54,55,48,52,57,52,44,49,56,46,49,53,50,56,51,49,93,44,91,45,54,54,46,54,57,50,53,55,50,44,49,56,46,50,49,53,56,56,51,93,44,91,45,54,54,46,56,49,55,50,55,49,44,49,56,46,50,51,48,51,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,79,122,97,117,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,50,56,52,44,34,98,101,100,115,34,58,51,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,52,48,53,50,56,44,52,51,46,53,52,50,51,54,49,93,44,91,45,56,56,46,48,54,51,51,53,51,44,52,51,46,49,57,50,49,49,55,93,44,91,45,56,55,46,49,49,57,48,48,56,44,52,51,46,49,57,48,56,49,54,93,44,91,45,56,55,46,49,52,48,51,51,49,44,52,51,46,52,55,49,52,51,54,93,44,91,45,56,55,46,49,51,52,55,55,56,44,52,51,46,53,52,49,52,51,51,93,44,91,45,56,56,46,48,52,48,53,50,56,44,52,51,46,53,52,50,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,55,51,52,44,34,98,101,100,115,34,58,49,50,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,57,52,49,51,52,44,51,54,46,53,57,53,54,57,55,93,44,91,45,56,50,46,54,48,57,49,55,54,44,51,54,46,53,57,52,48,57,57,93,44,91,45,56,50,46,54,56,48,54,55,55,44,51,54,46,52,51,49,56,93,44,91,45,56,50,46,52,51,56,51,53,53,44,51,54,46,52,52,53,54,51,57,93,44,91,45,56,50,46,50,57,57,56,53,57,44,51,54,46,51,57,54,53,48,53,93,44,91,45,56,50,46,49,56,56,48,53,51,44,51,54,46,52,48,48,54,48,56,93,44,91,45,56,49,46,57,56,51,56,52,51,44,51,54,46,53,48,56,51,49,52,93,44,91,45,56,49,46,56,50,54,55,52,50,44,51,54,46,54,49,52,50,49,53,93,44,91,45,56,50,46,49,52,53,53,55,51,44,51,54,46,53,57,52,55,50,53,93,44,91,45,56,50,46,50,52,51,51,56,50,44,51,54,46,53,57,53,54,53,49,93,44,91,45,56,50,46,50,57,52,49,51,52,44,51,54,46,53,57,53,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,76,97,117,114,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,55,49,48,44,34,98,101,100,115,34,58,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,52,54,55,57,50,44,51,52,46,55,56,53,53,53,52,93,44,91,45,56,50,46,50,51,56,48,53,52,44,51,52,46,53,56,54,57,53,54,93,44,91,45,56,50,46,51,49,51,57,57,54,44,51,52,46,52,56,52,48,48,50,93,44,91,45,56,50,46,50,52,54,51,51,55,44,51,52,46,52,48,57,54,55,54,93,44,91,45,56,50,46,49,54,57,50,57,55,44,51,52,46,51,51,48,55,52,54,93,44,91,45,56,49,46,57,52,53,48,49,57,44,51,52,46,50,48,51,49,52,56,93,44,91,45,56,49,46,56,56,51,48,55,54,44,51,52,46,51,49,49,57,54,52,93,44,91,45,56,49,46,55,56,50,54,50,55,44,51,52,46,51,54,53,48,56,57,93,44,91,45,56,49,46,54,52,51,53,53,50,44,51,52,46,53,51,51,54,53,50,93,44,91,45,56,49,46,56,53,52,48,48,50,44,51,52,46,53,57,52,53,52,57,93,44,91,45,56,50,46,48,55,49,51,49,53,44,51,52,46,55,48,51,55,93,44,91,45,56,50,46,49,52,54,55,57,50,44,51,52,46,55,56,53,53,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,114,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,49,48,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,55,54,54,48,49,44,52,52,46,57,57,57,57,50,54,93,44,91,45,49,48,53,46,48,56,53,52,53,49,44,52,52,46,55,56,54,56,48,49,93,44,91,45,49,48,53,46,48,55,57,50,56,49,44,52,52,46,49,55,54,49,56,50,93,44,91,45,49,48,52,46,48,53,52,52,56,55,44,52,52,46,49,56,48,51,56,49,93,44,91,45,49,48,52,46,48,53,53,57,52,51,44,52,52,46,53,55,49,48,50,53,93,44,91,45,49,48,52,46,48,53,55,56,55,57,44,52,52,46,57,57,55,54,48,53,93,44,91,45,49,48,53,46,48,51,56,50,52,57,44,52,53,46,48,48,48,49,48,54,93,44,91,45,49,48,53,46,48,55,54,54,48,49,44,52,52,46,57,57,57,57,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,83,104,101,98,111,121,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,50,48,53,44,34,98,101,100,115,34,58,51,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,54,50,50,55,52,44,52,51,46,56,57,49,53,49,49,93,44,91,45,56,56,46,49,54,48,56,55,51,44,52,51,46,53,52,50,57,52,51,93,44,91,45,56,56,46,48,52,48,53,50,56,44,52,51,46,53,52,50,51,54,49,93,44,91,45,56,55,46,49,51,52,55,55,56,44,52,51,46,53,52,49,52,51,51,93,44,91,45,56,55,46,48,57,51,49,48,57,44,52,51,46,56,50,48,49,49,51,93,44,91,45,56,55,46,48,55,53,51,51,53,44,52,51,46,56,57,52,55,55,52,93,44,91,45,56,56,46,48,52,49,55,57,52,44,52,51,46,56,57,49,54,57,50,93,44,91,45,56,56,46,49,54,50,50,55,52,44,52,51,46,56,57,49,53,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,72,97,109,112,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,57,49,49,54,44,34,98,101,100,115,34,58,49,53,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,48,48,48,49,55,51,44,52,50,46,51,49,50,54,55,56,93,44,91,45,55,51,46,48,53,51,50,56,56,44,52,50,46,48,51,57,56,54,53,93,44,91,45,55,51,46,48,48,56,55,54,54,44,52,50,46,48,51,56,55,56,53,93,44,91,45,55,50,46,53,48,57,50,51,51,44,52,50,46,48,51,52,51,55,54,93,44,91,45,55,50,46,49,51,53,55,49,53,44,52,50,46,48,51,48,50,50,50,93,44,91,45,55,50,46,49,51,53,48,49,49,44,52,50,46,49,54,49,55,56,52,93,44,91,45,55,50,46,50,50,49,50,49,56,44,52,50,46,50,52,53,50,53,50,93,44,91,45,55,50,46,55,56,49,48,51,57,44,52,50,46,49,57,57,55,52,57,93,44,91,45,55,51,46,48,48,48,49,55,51,44,52,50,46,51,49,50,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,67,97,108,100,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,52,48,49,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,49,48,50,49,53,44,51,48,46,48,50,52,52,57,57,93,44,91,45,57,55,46,56,55,53,50,53,57,44,50,57,46,56,53,56,50,48,56,93,44,91,45,57,55,46,55,51,53,55,50,44,50,57,46,54,57,49,49,57,56,93,44,91,45,57,55,46,54,51,51,49,55,54,44,50,57,46,54,52,57,56,54,51,93,44,91,45,57,55,46,53,57,55,55,52,51,44,50,57,46,54,51,48,55,49,56,93,44,91,45,57,55,46,51,49,55,56,57,51,44,50,57,46,55,56,52,54,53,56,93,44,91,45,57,55,46,51,49,53,56,50,51,44,50,57,46,55,56,54,53,52,49,93,44,91,45,57,55,46,54,52,57,51,55,44,51,48,46,48,54,55,57,52,52,93,44,91,45,57,55,46,55,49,48,50,49,53,44,51,48,46,48,50,52,52,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,108,111,117,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,51,49,56,52,52,44,51,57,46,53,54,54,57,50,49,93,44,91,45,57,55,46,57,50,57,48,57,55,44,51,57,46,51,48,54,51,57,55,93,44,91,45,57,55,46,51,54,57,56,51,57,44,51,57,46,51,48,54,48,49,49,93,44,91,45,57,55,46,51,54,56,53,55,52,44,51,57,46,53,54,55,48,49,56,93,44,91,45,57,55,46,51,54,56,54,55,44,51,57,46,54,53,52,48,52,51,93,44,91,45,57,55,46,57,51,49,52,56,50,44,51,57,46,54,53,51,55,54,55,93,44,91,45,57,55,46,57,51,49,56,52,52,44,51,57,46,53,54,54,57,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,73,110,121,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,56,53,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,51,54,48,53,56,54,44,51,54,46,55,52,52,55,55,51,93,44,91,45,49,49,56,46,50,52,56,57,50,44,51,54,46,52,56,54,53,51,53,93,44,91,45,49,49,56,46,49,48,48,49,49,54,44,51,54,46,51,50,56,56,50,51,93,44,91,45,49,49,56,46,49,50,55,54,48,49,44,51,54,46,50,56,48,51,52,56,93,44,91,45,49,49,55,46,57,56,50,52,55,51,44,51,53,46,56,57,53,55,57,54,93,44,91,45,49,49,56,46,48,48,56,48,52,51,44,51,53,46,55,56,57,49,54,49,93,44,91,45,49,49,55,46,54,51,50,57,57,54,44,51,53,46,55,57,55,50,53,49,93,44,91,45,49,49,54,46,56,55,48,54,51,50,44,51,53,46,55,57,53,51,55,54,93,44,91,45,49,49,53,46,55,51,53,56,57,49,44,51,53,46,55,57,51,54,50,93,44,91,45,49,49,53,46,54,52,56,51,53,55,44,51,53,46,56,48,57,50,49,49,93,44,91,45,49,49,53,46,56,52,53,57,57,52,44,51,53,46,57,54,51,55,48,55,93,44,91,45,49,49,54,46,51,56,48,51,52,55,44,51,54,46,51,55,52,57,54,49,93,44,91,45,49,49,55,46,49,54,54,48,48,49,44,51,54,46,57,55,49,49,49,49,93,44,91,45,49,49,55,46,56,51,50,55,50,54,44,51,55,46,52,54,52,57,50,57,93,44,91,45,49,49,56,46,55,55,53,48,49,52,44,51,55,46,52,54,51,48,53,50,93,44,91,45,49,49,56,46,55,56,54,55,51,54,44,51,55,46,51,52,51,51,56,93,44,91,45,49,49,56,46,55,49,54,48,49,54,44,51,55,46,51,50,56,50,48,56,93,44,91,45,49,49,56,46,54,53,52,53,57,51,44,51,55,46,49,52,49,56,50,54,93,44,91,45,49,49,56,46,53,48,51,49,48,51,44,51,55,46,48,57,53,50,50,49,93,44,91,45,49,49,56,46,52,50,50,53,57,53,44,51,55,46,48,50,52,51,54,93,44,91,45,49,49,56,46,51,54,48,56,51,49,44,51,54,46,56,56,55,55,51,52,93,44,91,45,49,49,56,46,51,54,48,53,56,54,44,51,54,46,55,52,52,55,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,111,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,48,57,49,55,44,51,51,46,48,57,48,50,54,93,44,91,45,56,54,46,49,55,52,51,55,44,51,51,46,49,48,52,51,57,52,93,44,91,45,56,54,46,52,57,49,48,50,57,44,51,51,46,49,48,50,57,52,52,93,44,91,45,56,54,46,53,49,55,51,52,52,44,51,51,46,48,50,48,53,54,54,93,44,91,45,56,54,46,52,53,55,48,49,53,44,51,50,46,56,49,51,56,57,57,93,44,91,45,56,54,46,51,55,52,57,55,52,44,51,50,46,55,53,51,53,56,93,44,91,45,56,54,46,48,48,55,49,56,55,44,51,50,46,55,53,52,57,56,52,93,44,91,45,56,54,46,48,48,57,49,55,44,51,51,46,48,57,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,68,105,99,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,53,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,56,55,55,56,55,44,52,51,46,53,48,48,50,50,54,93,44,91,45,57,53,46,51,56,56,48,55,56,44,52,51,46,50,53,53,50,50,49,93,44,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,44,91,45,57,52,46,57,49,52,53,56,50,44,52,51,46,53,48,48,56,53,51,93,44,91,45,57,53,46,51,56,55,55,56,55,44,52,51,46,53,48,48,50,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,72,97,114,108,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,49,51,52,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,56,57,56,49,51,44,51,54,46,56,57,53,52,49,51,93,44,91,45,56,51,46,53,48,48,56,57,49,44,51,54,46,55,51,51,50,53,52,93,44,91,45,56,51,46,52,54,49,48,49,54,44,51,54,46,54,54,52,56,54,93,44,91,45,56,51,46,49,57,52,50,53,50,44,51,54,46,55,51,57,53,49,57,93,44,91,45,56,51,46,48,55,50,56,51,54,44,51,54,46,56,53,52,52,53,55,93,44,91,45,56,50,46,56,55,56,52,44,51,54,46,56,57,50,57,53,51,93,44,91,45,56,50,46,56,54,57,49,57,50,44,51,54,46,57,55,52,49,56,54,93,44,91,45,56,50,46,57,51,57,52,54,54,44,51,55,46,48,49,53,53,50,93,44,91,45,56,51,46,49,50,50,48,57,44,51,55,46,48,48,48,57,57,55,93,44,91,45,56,51,46,49,56,50,49,48,52,44,51,55,46,48,50,49,49,49,53,93,44,91,45,56,51,46,50,54,48,48,50,44,51,54,46,57,54,56,57,53,49,93,44,91,45,56,51,46,52,56,57,56,49,51,44,51,54,46,56,57,53,52,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,71,101,97,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,56,57,53,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,54,51,49,55,55,44,51,57,46,49,51,50,51,93,44,91,45,57,54,46,57,54,51,52,55,44,51,56,46,57,54,52,57,48,49,93,44,91,45,57,54,46,56,57,48,50,52,53,44,51,56,46,56,55,48,48,54,55,93,44,91,45,57,54,46,53,48,49,53,53,54,44,51,56,46,56,54,57,55,48,52,93,44,91,45,57,54,46,53,48,49,49,54,54,44,51,57,46,48,52,51,54,54,54,93,44,91,45,57,54,46,53,48,48,57,54,50,44,51,57,46,48,55,50,54,56,49,93,44,91,45,57,54,46,56,53,49,52,48,57,44,51,57,46,48,56,56,49,55,54,93,44,91,45,57,54,46,56,52,57,56,55,57,44,51,57,46,50,49,57,48,49,50,93,44,91,45,57,54,46,57,54,49,54,57,51,44,51,57,46,50,50,48,48,55,54,93,44,91,45,57,54,46,57,54,51,49,55,55,44,51,57,46,49,51,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,101,114,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,54,52,50,44,34,98,101,100,115,34,58,49,51,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,57,49,52,55,51,44,52,48,46,54,55,55,50,55,93,44,91,45,55,54,46,49,55,49,54,50,52,44,52,48,46,53,51,52,57,52,55,93,44,91,45,55,54,46,52,52,48,49,56,49,44,52,48,46,52,57,53,57,53,50,93,44,91,45,55,54,46,49,53,49,50,49,53,44,52,48,46,51,49,53,57,55,49,93,44,91,45,55,53,46,56,55,51,51,55,53,44,52,48,46,49,51,55,49,48,55,93,44,91,45,55,53,46,54,57,54,55,56,50,44,52,48,46,50,52,49,56,54,51,93,44,91,45,55,53,46,53,50,57,54,57,52,44,52,48,46,52,52,54,57,57,53,93,44,91,45,55,53,46,56,57,49,52,55,51,44,52,48,46,54,55,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,57,49,44,34,98,101,100,115,34,58,49,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,57,57,56,53,57,44,51,54,46,51,57,54,53,48,53,93,44,91,45,56,50,46,51,52,48,52,54,44,51,54,46,50,53,50,56,48,55,93,44,91,45,56,50,46,50,50,50,48,54,52,44,51,54,46,49,53,54,57,54,93,44,91,45,56,50,46,48,56,49,48,55,57,44,51,54,46,49,48,51,49,55,93,44,91,45,56,49,46,57,51,51,48,54,53,44,51,54,46,50,54,52,56,55,51,93,44,91,45,56,50,46,48,52,52,49,52,53,44,51,54,46,51,54,51,55,49,54,93,44,91,45,56,49,46,57,56,51,56,52,51,44,51,54,46,53,48,56,51,49,52,93,44,91,45,56,50,46,49,56,56,48,53,51,44,51,54,46,52,48,48,54,48,56,93,44,91,45,56,50,46,50,57,57,56,53,57,44,51,54,46,51,57,54,53,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,51,57,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,57,52,56,49,55,44,52,52,46,53,52,50,51,48,53,93,44,91,45,57,53,46,54,48,52,48,48,49,44,52,52,46,54,50,57,57,52,53,93,44,91,45,57,54,46,48,57,50,57,53,44,52,52,46,54,51,48,52,56,54,93,44,91,45,57,54,46,48,55,56,53,56,44,52,52,46,49,57,54,54,50,93,44,91,45,57,54,46,48,54,51,55,55,56,44,52,52,46,49,57,54,52,50,53,93,44,91,45,57,53,46,53,57,51,53,55,44,52,52,46,49,57,53,53,51,93,44,91,45,57,53,46,53,57,52,56,49,55,44,52,52,46,53,52,50,51,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,111,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,56,50,52,50,48,57,44,51,55,46,50,48,53,51,54,49,93,44,91,45,55,56,46,57,48,52,53,56,55,44,51,55,46,48,50,50,50,56,56,93,44,91,45,55,56,46,55,55,52,55,49,53,44,51,54,46,57,56,48,57,55,54,93,44,91,45,55,56,46,54,55,49,52,54,51,44,51,54,46,56,53,55,57,53,49,93,44,91,45,55,56,46,54,52,56,53,52,49,44,51,54,46,54,57,55,57,48,57,93,44,91,45,55,56,46,52,57,51,48,50,56,44,51,54,46,56,57,49,50,50,93,44,91,45,55,56,46,52,52,51,54,52,52,44,51,55,46,48,55,57,51,55,49,93,44,91,45,55,56,46,54,57,50,52,55,50,44,51,55,46,50,48,52,55,56,54,93,44,91,45,55,56,46,54,56,49,53,55,51,44,51,55,46,50,52,56,55,53,57,93,44,91,45,55,56,46,56,50,52,50,48,57,44,51,55,46,50,48,53,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,48,53,53,44,34,98,101,100,115,34,58,54,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,57,57,56,53,57,44,51,54,46,51,57,54,53,48,53,93,44,91,45,56,50,46,52,51,56,51,53,53,44,51,54,46,52,52,53,54,51,57,93,44,91,45,56,50,46,54,56,48,54,55,55,44,51,54,46,52,51,49,56,93,44,91,45,56,50,46,55,48,50,53,54,54,44,51,54,46,52,49,48,52,49,50,93,44,91,45,56,50,46,54,50,57,54,52,49,44,51,54,46,52,49,49,53,52,93,44,91,45,56,50,46,54,52,55,55,54,57,44,51,54,46,49,52,54,52,48,52,93,44,91,45,56,50,46,53,57,53,48,54,53,44,51,54,46,48,57,54,50,48,53,93,44,91,45,56,50,46,52,51,55,50,53,49,44,51,54,46,49,53,52,55,48,57,93,44,91,45,56,50,46,51,52,48,52,54,44,51,54,46,50,53,50,56,48,55,93,44,91,45,56,50,46,50,57,57,56,53,57,44,51,54,46,51,57,54,53,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,78,101,119,98,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,54,56,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,52,51,53,53,50,44,51,52,46,53,51,51,54,53,50,93,44,91,45,56,49,46,55,56,50,54,50,55,44,51,52,46,51,54,53,48,56,57,93,44,91,45,56,49,46,56,56,51,48,55,54,44,51,52,46,51,49,49,57,54,52,93,44,91,45,56,49,46,57,52,53,48,49,57,44,51,52,46,50,48,51,49,52,56,93,44,91,45,56,49,46,56,55,48,48,56,52,44,51,52,46,49,51,53,51,53,55,93,44,91,45,56,49,46,55,51,49,54,49,52,44,51,52,46,49,56,55,54,49,51,93,44,91,45,56,49,46,53,51,56,56,57,57,44,51,52,46,48,56,49,55,52,52,93,44,91,45,56,49,46,52,55,49,57,55,50,44,51,52,46,48,55,54,53,53,50,93,44,91,45,56,49,46,51,51,56,57,54,49,44,51,52,46,49,57,55,53,56,55,93,44,91,45,56,49,46,51,49,54,57,49,49,44,51,52,46,50,51,57,52,53,56,93,44,91,45,56,49,46,52,50,51,50,52,49,44,51,52,46,52,57,52,51,55,57,93,44,91,45,56,49,46,53,53,51,50,48,52,44,51,52,46,52,55,55,49,49,52,93,44,91,45,56,49,46,54,52,51,53,53,50,44,51,52,46,53,51,51,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,73,115,108,101,32,111,102,32,87,105,103,104,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,55,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,44,91,45,55,54,46,55,49,49,55,55,53,44,51,55,46,48,53,53,51,56,93,44,91,45,55,54,46,56,52,57,54,56,52,44,51,54,46,57,57,54,50,49,49,93,44,91,45,55,54,46,56,49,52,57,52,49,44,51,54,46,57,48,48,52,54,53,93,44,91,45,55,54,46,57,50,52,54,50,57,44,51,54,46,55,48,55,55,50,57,93,44,91,45,55,54,46,57,48,57,54,55,50,44,51,54,46,54,52,56,49,55,53,93,44,91,45,55,54,46,56,57,55,53,57,50,44,51,54,46,54,52,52,48,53,93,44,91,45,55,54,46,53,51,51,53,50,44,51,54,46,57,49,53,53,54,51,93,44,91,45,55,54,46,52,52,53,51,48,49,44,51,54,46,57,52,49,56,57,49,93,44,91,45,55,54,46,54,50,56,50,48,53,44,51,55,46,48,57,50,55,53,53,93,44,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,87,104,101,101,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,51,55,49,52,52,49,44,52,52,46,56,50,49,55,54,57,93,44,91,45,49,50,48,46,51,56,54,53,54,49,44,52,52,46,53,54,52,48,48,57,93,44,91,45,49,50,48,46,51,56,54,48,55,52,44,52,52,46,52,51,54,48,56,51,93,44,91,45,49,50,48,46,48,50,49,54,50,49,44,52,52,46,52,51,56,55,57,51,93,44,91,45,49,49,57,46,56,57,57,50,56,51,44,52,52,46,51,56,57,53,55,53,93,44,91,45,49,49,57,46,56,57,57,48,48,50,44,52,52,46,51,48,54,54,50,93,44,91,45,49,49,57,46,54,53,53,53,49,55,44,52,52,46,51,48,55,48,52,53,93,44,91,45,49,49,57,46,54,53,50,52,51,49,44,52,52,46,56,50,51,50,57,57,93,44,91,45,49,49,57,46,54,55,50,50,50,56,44,52,52,46,57,57,53,49,49,55,93,44,91,45,49,49,57,46,55,57,48,54,57,57,44,52,53,46,48,54,55,56,50,51,93,44,91,45,49,50,48,46,52,57,53,49,54,44,52,53,46,48,54,56,50,55,57,93,44,91,45,49,50,48,46,52,53,53,51,56,57,44,52,52,46,56,54,54,48,52,54,93,44,91,45,49,50,48,46,51,55,49,52,52,49,44,52,52,46,56,50,49,55,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,55,51,51,44,34,98,101,100,115,34,58,52,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,55,56,53,54,50,44,51,54,46,57,50,54,52,57,93,44,91,45,57,48,46,54,54,50,54,49,55,44,51,54,46,56,49,49,52,53,51,93,44,91,45,57,48,46,53,57,50,49,54,54,44,51,54,46,54,55,57,51,54,56,93,44,91,45,57,48,46,53,55,54,49,55,57,44,51,54,46,52,57,56,53,52,55,93,44,91,45,57,48,46,50,50,48,55,51,50,44,51,54,46,52,57,55,56,53,57,93,44,91,45,57,48,46,49,52,56,51,57,56,44,51,54,46,54,51,48,54,53,54,93,44,91,45,57,48,46,49,53,56,48,53,44,51,54,46,55,50,50,57,55,54,93,44,91,45,57,48,46,50,53,56,53,54,51,44,51,54,46,57,50,50,48,52,51,93,44,91,45,57,48,46,54,55,56,53,54,50,44,51,54,46,57,50,54,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,73,98,101,114,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,53,54,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,48,48,57,51,51,44,51,48,46,52,57,55,52,51,51,93,44,91,45,57,49,46,54,52,48,48,57,57,44,51,48,46,52,52,50,55,50,56,93,44,91,45,57,49,46,54,50,49,48,53,53,44,51,48,46,51,48,57,57,51,56,93,44,91,45,57,49,46,53,48,56,50,54,56,44,51,48,46,50,52,48,50,57,55,93,44,91,45,57,49,46,52,54,51,56,51,51,44,51,48,46,49,48,50,52,57,51,93,44,91,45,57,49,46,51,54,56,56,51,53,44,51,48,46,48,53,56,56,50,52,93,44,91,45,57,49,46,50,50,52,51,53,54,44,51,48,46,48,50,53,51,51,54,93,44,91,45,57,49,46,49,48,53,57,53,49,44,51,48,46,48,54,50,52,55,56,93,44,91,45,57,49,46,48,50,49,48,49,52,44,51,48,46,51,50,49,52,56,57,93,44,91,45,57,49,46,49,52,50,49,48,53,44,51,48,46,51,50,51,50,57,51,93,44,91,45,57,49,46,51,49,49,54,54,44,51,48,46,51,50,50,52,55,49,93,44,91,45,57,49,46,52,56,53,48,56,57,44,51,48,46,52,57,55,49,51,56,93,44,91,45,57,49,46,55,48,48,57,51,51,44,51,48,46,52,57,55,52,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,83,104,97,114,107,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,49,49,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,52,51,51,55,44,51,51,46,48,48,55,54,57,55,93,44,91,45,57,48,46,57,54,51,55,53,51,44,51,50,46,56,51,56,49,51,51,93,44,91,45,57,48,46,57,54,52,56,54,52,44,51,50,46,54,54,50,55,57,56,93,44,91,45,57,48,46,55,50,51,49,53,57,44,51,50,46,54,54,50,49,50,56,93,44,91,45,57,48,46,54,57,51,48,54,49,44,51,50,46,55,53,52,50,57,55,93,44,91,45,57,48,46,55,53,57,55,53,51,44,51,50,46,56,51,53,55,54,51,93,44,91,45,57,48,46,54,53,54,54,51,50,44,51,50,46,57,50,50,53,49,93,44,91,45,57,48,46,55,48,49,56,52,53,44,51,51,46,48,57,54,50,57,52,93,44,91,45,57,48,46,57,49,52,52,54,53,44,51,51,46,48,57,55,52,49,55,93,44,91,45,57,48,46,57,49,52,51,51,55,44,51,51,46,48,48,55,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,70,97,117,113,117,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,49,53,44,34,98,101,100,115,34,58,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,53,53,49,54,57,44,51,56,46,57,52,50,54,53,54,93,44,91,45,55,55,46,57,54,50,50,48,51,44,51,57,46,48,49,51,55,51,51,93,44,91,45,55,56,46,48,48,52,51,49,51,44,51,56,46,57,55,57,52,51,56,93,44,91,45,55,56,46,49,51,48,53,55,52,44,51,56,46,56,54,52,56,54,53,93,44,91,45,55,55,46,57,51,53,51,53,53,44,51,56,46,54,57,53,56,52,93,44,91,45,55,55,46,55,51,53,57,48,49,44,51,56,46,52,49,51,52,53,56,93,44,91,45,55,55,46,54,51,52,57,52,44,51,56,46,52,49,48,50,49,56,93,44,91,45,55,55,46,53,51,49,51,50,56,44,51,56,46,53,53,54,53,53,93,44,91,45,55,55,46,55,49,53,55,49,53,44,51,56,46,56,51,50,49,51,54,93,44,91,45,55,55,46,54,53,53,49,54,57,44,51,56,46,57,52,50,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,53,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,53,48,34,44,34,78,65,77,69,34,58,34,82,97,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,50,57,55,54,50,44,51,55,46,49,51,51,56,52,50,93,44,91,45,56,48,46,53,57,54,52,48,57,44,51,55,46,49,49,56,56,56,57,93,44,91,45,56,48,46,53,56,48,52,54,57,44,51,55,46,48,56,57,54,54,50,93,44,91,45,56,48,46,53,50,57,55,54,50,44,51,55,46,49,51,51,56,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,56,50,56,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,57,48,52,51,49,53,44,51,56,46,57,51,51,51,50,52,93,44,91,45,49,49,57,46,53,56,53,52,51,55,44,51,56,46,55,49,51,50,49,50,93,44,91,45,49,49,57,46,51,50,56,51,57,56,44,51,56,46,53,51,52,55,57,50,93,44,91,45,49,49,57,46,51,52,57,56,56,52,44,51,56,46,55,50,57,49,57,51,93,44,91,45,49,49,57,46,52,48,54,50,55,57,44,51,56,46,55,51,51,51,54,50,93,44,91,45,49,49,57,46,52,50,48,56,51,55,44,51,56,46,57,53,52,55,49,53,93,44,91,45,49,49,57,46,51,49,48,55,48,50,44,51,56,46,57,57,48,55,49,57,93,44,91,45,49,49,57,46,51,49,49,55,49,52,44,51,57,46,48,56,51,54,49,53,93,44,91,45,49,49,57,46,53,53,49,48,50,44,51,57,46,48,56,53,55,57,49,93,44,91,45,49,49,57,46,55,54,49,50,49,51,44,51,57,46,49,49,52,48,48,57,93,44,91,45,49,50,48,46,48,48,51,52,50,57,44,51,57,46,49,49,50,54,56,55,93,44,91,45,49,50,48,46,48,48,50,52,54,49,44,51,57,46,48,54,55,52,56,57,93,44,91,45,49,49,57,46,57,48,52,51,49,53,44,51,56,46,57,51,51,51,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,51,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,52,52,52,53,44,51,48,46,48,49,49,48,51,93,44,91,45,56,53,46,48,48,55,54,50,54,44,51,48,46,48,49,51,56,56,51,93,44,91,45,56,53,46,48,50,53,52,51,57,44,50,57,46,57,55,49,51,57,57,93,44,91,45,56,53,46,48,50,48,53,51,52,44,50,57,46,56,48,55,51,55,51,93,44,91,45,56,53,46,50,48,54,50,50,54,44,50,57,46,55,49,49,49,56,56,93,44,91,45,56,53,46,50,52,54,51,49,54,44,50,57,46,54,50,53,48,48,50,93,44,91,45,56,53,46,48,51,49,49,54,56,44,50,57,46,53,51,57,48,56,56,93,44,91,45,56,52,46,55,51,53,55,53,44,50,57,46,54,53,54,51,55,53,93,44,91,45,56,52,46,53,52,50,50,56,54,44,50,57,46,55,54,57,55,57,55,93,44,91,45,56,52,46,52,52,54,56,54,44,50,57,46,56,53,56,55,51,50,93,44,91,45,56,52,46,50,57,56,55,57,54,44,50,57,46,56,54,55,49,50,54,93,44,91,45,56,52,46,50,54,52,55,51,53,44,50,57,46,57,55,56,48,54,49,93,44,91,45,56,52,46,51,50,53,49,57,56,44,50,57,46,57,53,56,48,53,93,44,91,45,56,52,46,53,52,52,52,53,44,51,48,46,48,49,49,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,52,48,55,51,55,44,51,57,46,49,55,49,55,55,51,93,44,91,45,56,55,46,50,52,49,48,50,55,44,51,56,46,57,48,55,56,55,52,93,44,91,45,56,55,46,48,57,56,55,55,49,44,51,56,46,57,48,51,57,55,52,93,44,91,45,56,54,46,57,48,52,50,53,50,44,51,56,46,57,48,52,50,48,52,93,44,91,45,56,54,46,54,56,50,56,53,51,44,51,56,46,57,48,52,54,57,55,93,44,91,45,56,54,46,54,56,50,50,55,55,44,51,56,46,57,57,50,52,48,52,93,44,91,45,56,54,46,54,56,51,48,48,50,44,51,57,46,49,54,53,55,52,54,93,44,91,45,56,55,46,48,53,52,53,55,56,44,51,57,46,49,54,56,48,56,54,93,44,91,45,56,55,46,50,52,48,55,51,55,44,51,57,46,49,55,49,55,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,82,117,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,48,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,51,51,50,50,56,44,51,57,46,54,57,56,52,54,50,93,44,91,45,56,53,46,54,50,57,51,50,55,44,51,57,46,52,53,50,55,53,93,44,91,45,56,53,46,50,57,55,53,55,53,44,51,57,46,52,53,51,50,55,53,93,44,91,45,56,53,46,50,57,56,49,49,44,51,57,46,53,50,53,52,55,54,93,44,91,45,56,53,46,51,48,49,53,56,52,44,51,57,46,55,56,55,53,55,57,93,44,91,45,56,53,46,53,57,54,57,49,54,44,51,57,46,55,56,54,53,49,57,93,44,91,45,56,53,46,54,51,51,50,50,56,44,51,57,46,54,57,56,52,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,53,51,53,44,34,98,101,100,115,34,58,49,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,54,51,51,53,51,44,52,51,46,49,57,50,49,49,55,93,44,91,45,56,56,46,48,52,48,53,50,56,44,52,51,46,53,52,50,51,54,49,93,44,91,45,56,56,46,49,54,48,56,55,51,44,52,51,46,53,52,50,57,52,51,93,44,91,45,56,56,46,52,48,48,52,50,54,44,52,51,46,53,52,51,53,51,50,93,44,91,45,56,56,46,52,49,55,57,56,55,44,52,51,46,49,57,52,54,57,55,93,44,91,45,56,56,46,48,54,51,51,53,51,44,52,51,46,49,57,50,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,97,99,108,101,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,48,55,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,53,53,51,56,52,44,51,55,46,56,57,53,55,51,54,93,44,91,45,57,50,46,56,53,51,52,56,49,44,51,55,46,52,56,51,57,55,93,44,91,45,57,50,46,54,56,54,54,55,49,44,51,55,46,52,56,49,53,52,53,93,44,91,45,57,50,46,50,53,50,50,54,49,44,51,55,46,52,55,50,57,52,52,93,44,91,45,57,50,46,50,52,57,52,54,51,44,51,55,46,54,48,52,53,52,51,93,44,91,45,57,50,46,52,49,51,54,54,57,44,51,55,46,55,49,51,57,52,49,93,44,91,45,57,50,46,52,48,57,50,51,49,44,51,55,46,56,53,57,49,56,93,44,91,45,57,50,46,53,52,56,57,51,52,44,51,55,46,56,48,48,52,55,93,44,91,45,57,50,46,54,50,48,49,56,49,44,51,55,46,56,57,50,53,50,49,93,44,91,45,57,50,46,56,53,53,51,56,52,44,51,55,46,56,57,53,55,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,54,51,48,44,34,98,101,100,115,34,58,52,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,50,49,55,44,52,49,46,52,56,57,48,49,51,93,44,91,45,56,48,46,53,49,57,48,52,56,44,52,49,46,49,51,51,51,57,52,93,44,91,45,56,48,46,53,49,57,48,51,55,44,52,49,46,49,50,53,48,57,51,93,44,91,45,56,48,46,50,53,55,57,51,51,44,52,49,46,49,50,56,49,54,53,93,44,91,45,56,48,46,48,57,56,50,57,52,44,52,49,46,48,55,49,48,53,52,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,49,55,49,56,54,49,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,52,57,48,48,52,57,93,44,91,45,56,48,46,53,49,57,50,49,55,44,52,49,46,52,56,57,48,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,114,97,105,103,104,101,97,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,55,48,49,44,34,98,101,100,115,34,58,55,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,55,55,56,57,44,51,53,46,57,57,53,54,56,51,93,44,91,45,57,48,46,51,56,55,51,55,56,44,51,53,46,57,54,52,55,48,56,93,44,91,45,57,48,46,56,53,50,48,54,52,44,51,53,46,57,54,56,48,57,50,93,44,91,45,57,48,46,56,55,50,55,56,53,44,51,53,46,56,56,48,56,55,93,44,91,45,57,49,46,48,51,50,52,57,57,44,51,53,46,56,56,53,48,55,93,44,91,45,57,49,46,48,51,54,57,54,55,44,51,53,46,55,48,56,52,49,56,93,44,91,45,57,48,46,50,56,54,55,51,54,44,51,53,46,54,57,57,57,49,52,93,44,91,45,57,48,46,50,56,56,57,52,55,44,51,53,46,57,57,54,52,49,93,44,91,45,57,48,46,51,55,55,56,57,44,51,53,46,57,57,53,54,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,48,50,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,55,55,50,51,51,44,51,57,46,50,57,50,55,57,54,93,44,91,45,57,51,46,52,57,54,51,55,55,44,51,56,46,57,52,50,56,51,55,93,44,91,45,57,51,46,48,53,48,52,53,51,44,51,56,46,57,50,56,50,52,52,93,44,91,45,57,50,46,57,51,52,53,54,57,44,51,57,46,48,54,52,53,52,55,93,44,91,45,57,50,46,56,52,57,50,50,52,44,51,57,46,50,50,54,50,49,56,93,44,91,45,57,51,46,48,55,50,57,49,53,44,51,57,46,51,51,53,53,50,93,44,91,45,57,51,46,49,48,52,52,56,53,44,51,57,46,51,56,51,54,53,54,93,44,91,45,57,51,46,50,50,49,50,48,52,44,51,57,46,51,51,49,54,53,54,93,44,91,45,57,51,46,52,55,55,50,51,51,44,51,57,46,50,57,50,55,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,50,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,53,48,56,57,49,44,51,56,46,50,53,54,49,53,54,93,44,91,45,56,56,46,51,55,48,51,55,53,44,51,56,46,50,53,53,51,49,57,93,44,91,45,56,56,46,51,55,52,53,50,49,44,51,55,46,57,48,56,51,57,49,93,44,91,45,56,56,46,48,57,51,48,52,57,44,51,55,46,56,57,49,54,48,52,93,44,91,45,56,56,46,48,49,51,51,53,53,44,51,55,46,56,57,52,56,53,52,93,44,91,45,56,56,46,48,49,51,49,49,56,44,51,56,46,49,48,51,53,50,55,93,44,91,45,56,55,46,57,49,48,57,50,52,44,51,56,46,49,54,50,53,53,55,93,44,91,45,56,55,46,57,56,51,55,51,50,44,51,56,46,50,51,48,51,53,52,93,44,91,45,56,55,46,57,56,55,57,49,49,44,51,56,46,50,53,54,57,53,55,93,44,91,45,56,55,46,57,57,48,54,50,56,44,51,56,46,50,53,57,54,50,57,93,44,91,45,56,56,46,49,53,48,56,57,49,44,51,56,46,50,53,54,49,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,101,32,87,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,52,56,55,54,52,44,52,48,46,50,56,50,48,51,56,93,44,91,45,56,57,46,49,52,52,55,54,52,44,52,48,46,48,52,56,56,53,51,93,44,91,45,56,56,46,55,52,53,49,54,52,44,52,48,46,48,53,53,49,57,49,93,44,91,45,56,56,46,53,55,52,56,56,53,44,52,48,46,50,56,49,53,48,49,93,44,91,45,56,57,46,49,52,56,55,54,52,44,52,48,46,50,56,50,48,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,32,80,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,51,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,56,51,52,57,54,57,44,52,48,46,49,50,55,56,52,50,93,44,91,45,49,49,53,46,55,57,52,56,54,52,44,51,57,46,56,53,51,49,48,52,93,44,91,45,49,49,53,46,56,51,51,49,48,49,44,51,57,46,55,50,57,52,49,50,93,44,91,45,49,49,53,46,56,49,51,52,55,54,44,51,57,46,53,57,51,53,50,49,93,44,91,45,49,49,53,46,57,48,55,54,53,57,44,51,57,46,52,54,52,52,51,50,93,44,91,45,49,49,53,46,57,48,55,48,55,49,44,51,57,46,49,54,49,56,52,56,93,44,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,54,55,55,51,50,50,93,44,91,45,49,49,52,46,48,52,57,56,48,55,44,51,56,46,54,55,55,51,54,53,93,44,91,45,49,49,52,46,48,52,55,54,52,57,44,51,57,46,53,52,50,55,52,50,93,44,91,45,49,49,52,46,48,52,55,48,50,54,44,51,57,46,57,48,54,48,57,55,93,44,91,45,49,49,52,46,48,52,54,54,49,52,44,52,48,46,49,49,54,57,51,54,93,44,91,45,49,49,52,46,57,48,49,56,50,53,44,52,48,46,49,50,50,48,56,50,93,44,91,45,49,49,53,46,56,51,52,57,54,57,44,52,48,46,49,50,55,56,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,71,111,111,100,104,117,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,50,49,55,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,51,50,48,52,51,44,52,52,46,55,49,52,51,52,53,93,44,91,45,57,50,46,55,57,50,55,49,53,44,52,52,46,53,52,51,50,52,93,44,91,45,57,50,46,57,49,56,57,55,55,44,52,52,46,53,52,51,50,53,93,44,91,45,57,51,46,48,51,57,52,56,53,44,52,52,46,52,55,49,56,55,49,93,44,91,45,57,51,46,48,52,49,49,53,57,44,52,52,46,49,57,54,55,50,54,93,44,91,45,57,50,46,54,55,56,55,49,55,44,52,52,46,49,57,53,53,49,54,93,44,91,45,57,50,46,53,53,48,56,55,49,44,52,52,46,49,57,52,57,49,54,93,44,91,45,57,50,46,53,53,48,55,51,51,44,52,52,46,51,54,56,53,50,49,93,44,91,45,57,50,46,52,51,48,50,55,55,44,52,52,46,52,53,53,51,50,49,93,44,91,45,57,50,46,50,52,50,48,49,44,52,52,46,52,53,52,50,53,52,93,44,91,45,57,50,46,51,49,54,49,54,57,44,52,52,46,53,52,49,48,48,57,93,44,91,45,57,50,46,54,50,50,53,51,55,44,52,52,46,54,49,54,48,53,52,93,44,91,45,57,50,46,55,51,50,48,52,51,44,52,52,46,55,49,52,51,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,83,119,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,53,52,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,53,52,50,53,55,44,51,53,46,54,57,53,53,57,51,93,44,91,45,56,51,46,52,56,53,56,51,52,44,51,53,46,53,54,56,49,57,93,44,91,45,56,51,46,54,54,50,57,57,57,44,51,53,46,53,54,57,52,54,56,93,44,91,45,56,51,46,55,55,48,53,56,55,44,51,53,46,53,54,49,55,52,51,93,44,91,45,56,51,46,57,53,50,57,55,50,44,51,53,46,52,54,48,53,53,50,93,44,91,45,56,51,46,53,56,50,53,53,56,44,51,53,46,52,49,48,52,56,57,93,44,91,45,56,51,46,54,56,48,49,49,52,44,51,53,46,50,55,57,53,93,44,91,45,56,51,46,51,51,57,54,48,57,44,51,53,46,51,51,48,57,57,51,93,44,91,45,56,51,46,51,54,51,55,54,54,44,51,53,46,52,50,54,57,50,51,93,44,91,45,56,51,46,49,56,54,51,50,50,44,51,53,46,53,49,52,51,54,56,93,44,91,45,56,51,46,49,56,50,57,57,57,44,51,53,46,54,55,48,54,50,53,93,44,91,45,56,51,46,50,53,52,50,53,55,44,51,53,46,54,57,53,53,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,80,97,115,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,48,53,57,51,44,34,98,101,100,115,34,58,49,51,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,52,54,57,52,44,50,56,46,52,55,56,51,57,55,93,44,91,45,56,50,46,50,53,51,52,51,57,44,50,56,46,52,51,52,56,50,52,93,44,91,45,56,50,46,55,53,51,57,55,55,44,50,56,46,52,51,51,50,57,93,44,91,45,56,50,46,55,57,53,50,55,54,44,50,56,46,50,57,57,55,54,52,93,44,91,45,56,50,46,56,55,56,57,50,53,44,50,56,46,50,53,53,53,50,56,93,44,91,45,56,50,46,57,48,52,54,49,53,44,50,56,46,49,55,49,56,55,50,93,44,91,45,56,50,46,54,53,49,49,54,53,44,50,56,46,49,55,51,50,54,54,93,44,91,45,56,50,46,49,48,53,56,53,51,44,50,56,46,49,55,49,54,53,93,44,91,45,56,50,46,48,53,53,56,49,57,44,50,56,46,51,49,50,55,57,52,93,44,91,45,56,50,46,48,53,52,54,57,52,44,50,56,46,52,55,56,51,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,83,117,109,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,57,57,57,44,34,98,101,100,115,34,58,51,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,49,49,54,57,55,44,50,56,46,57,54,48,51,57,49,93,44,91,45,56,50,46,49,55,49,52,48,50,44,50,56,46,55,56,57,56,52,56,93,44,91,45,56,50,46,50,54,51,48,53,50,44,50,56,46,54,54,55,54,51,52,93,44,91,45,56,50,46,48,53,52,54,57,52,44,50,56,46,52,55,56,51,57,55,93,44,91,45,56,50,46,48,53,53,56,49,57,44,50,56,46,51,49,50,55,57,52,93,44,91,45,56,49,46,57,53,55,54,52,49,44,50,56,46,51,52,53,49,56,93,44,91,45,56,49,46,57,53,52,49,57,44,50,56,46,57,54,48,48,53,51,93,44,91,45,56,50,46,51,49,49,54,57,55,44,50,56,46,57,54,48,51,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,78,97,115,115,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,54,53,54,52,44,34,98,101,100,115,34,58,52,55,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,54,49,50,56,56,53,44,52,48,46,57,53,48,57,52,51,93,44,91,45,55,51,46,55,52,56,48,54,44,52,48,46,56,55,49,55,50,49,93,44,91,45,55,51,46,55,55,56,57,53,56,44,52,48,46,56,49,49,55,49,51,93,44,91,45,55,51,46,55,48,49,54,51,51,44,52,48,46,55,53,50,52,57,51,93,44,91,45,55,51,46,55,54,56,55,56,49,44,52,48,46,53,51,51,55,52,55,93,44,91,45,55,51,46,52,50,53,51,49,44,52,48,46,53,51,52,50,54,53,93,44,91,45,55,51,46,52,50,51,50,54,57,44,52,48,46,54,55,48,56,57,51,93,44,91,45,55,51,46,52,57,55,52,48,53,44,52,48,46,57,50,51,55,54,54,93,44,91,45,55,51,46,52,51,49,57,49,57,44,52,48,46,57,56,57,48,48,57,93,44,91,45,55,51,46,54,49,50,56,56,53,44,52,48,46,57,53,48,57,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,83,116,101,101,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,56,52,50,52,56,44,52,55,46,54,55,50,51,48,51,93,44,91,45,57,55,46,57,56,54,52,50,56,44,52,55,46,51,50,54,50,48,49,93,44,91,45,57,55,46,57,54,49,50,49,49,44,52,55,46,50,52,48,51,50,53,93,44,91,45,57,55,46,55,48,53,57,51,53,44,52,55,46,50,51,57,57,55,55,93,44,91,45,57,55,46,52,53,49,53,49,50,44,52,55,46,50,51,57,48,54,49,93,44,91,45,57,55,46,52,55,52,50,50,56,44,52,55,46,51,50,52,54,50,49,93,44,91,45,57,55,46,52,55,50,55,52,53,44,52,55,46,54,55,50,48,53,49,93,44,91,45,57,55,46,56,56,50,50,55,49,44,52,55,46,54,55,50,49,55,57,93,44,91,45,57,55,46,57,56,52,50,52,56,44,52,55,46,54,55,50,51,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,86,97,110,100,101,114,98,117,114,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,51,49,51,44,34,98,101,100,115,34,58,57,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,56,56,51,55,52,44,51,56,46,49,54,56,52,49,57,93,44,91,45,56,55,46,55,48,48,55,54,50,44,51,55,46,56,57,55,53,53,54,93,44,91,45,56,55,46,52,53,49,49,57,57,44,51,55,46,57,52,48,57,53,52,93,44,91,45,56,55,46,52,54,55,50,56,52,44,51,56,46,49,54,53,52,48,51,93,44,91,45,56,55,46,54,56,56,51,55,52,44,51,56,46,49,54,56,52,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,55,56,49,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,54,57,49,57,50,44,51,56,46,54,57,57,51,50,52,93,44,91,45,57,49,46,51,54,55,52,56,50,44,51,56,46,50,48,57,55,52,49,93,44,91,45,57,49,46,48,57,53,55,54,53,44,51,56,46,50,48,52,48,56,51,93,44,91,45,57,48,46,55,56,48,49,56,53,44,51,56,46,50,48,52,49,49,50,93,44,91,45,57,48,46,55,51,54,51,49,49,44,51,56,46,52,54,54,54,52,51,93,44,91,45,57,48,46,55,51,50,51,50,56,44,51,56,46,54,51,57,51,48,50,93,44,91,45,57,48,46,57,49,54,53,53,52,44,51,56,46,53,51,52,55,50,53,93,44,91,45,57,48,46,57,54,52,52,54,49,44,51,56,46,53,52,55,53,52,53,93,44,91,45,57,49,46,49,51,50,53,51,53,44,51,56,46,53,57,56,50,55,57,93,44,91,45,57,49,46,51,49,51,48,57,51,44,51,56,46,55,48,54,55,49,53,93,44,91,45,57,49,46,51,54,57,49,57,50,44,51,56,46,54,57,57,51,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,118,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,48,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,51,51,48,54,53,44,51,54,46,50,54,52,56,55,51,93,44,91,45,56,50,46,48,56,49,48,55,57,44,51,54,46,49,48,51,49,55,93,44,91,45,56,50,46,48,51,52,49,48,52,44,51,53,46,57,52,50,48,53,55,93,44,91,45,56,49,46,57,56,49,57,53,52,44,51,53,46,57,49,49,51,54,49,93,44,91,45,56,49,46,57,52,51,49,56,56,44,51,53,46,57,54,48,48,53,93,44,91,45,56,49,46,56,48,55,49,54,50,44,51,53,46,57,54,49,57,53,53,93,44,91,45,56,49,46,55,51,53,54,55,51,44,51,54,46,48,54,55,53,56,52,93,44,91,45,56,49,46,56,49,48,53,49,54,44,51,54,46,49,49,49,53,49,49,93,44,91,45,56,49,46,57,49,56,49,49,57,44,51,54,46,50,56,55,49,50,57,93,44,91,45,56,49,46,57,51,51,48,54,53,44,51,54,46,50,54,52,56,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,87,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,53,53,54,44,34,98,101,100,115,34,58,51,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,55,49,50,54,44,51,57,46,51,52,49,57,50,52,93,44,91,45,56,49,46,52,53,54,49,52,51,44,51,57,46,52,48,57,50,55,52,93,44,91,45,56,49,46,54,55,55,53,57,53,44,51,57,46,50,55,52,49,55,49,93,44,91,45,56,49,46,55,50,53,54,50,50,44,51,57,46,50,49,53,57,48,53,93,44,91,45,56,49,46,55,53,54,48,56,44,51,57,46,49,56,48,53,54,93,44,91,45,56,49,46,55,52,55,50,53,52,44,51,57,46,48,57,53,51,55,57,93,44,91,45,56,49,46,53,56,49,52,52,55,44,51,57,46,48,50,54,49,55,57,93,44,91,45,56,49,46,52,50,52,57,48,54,44,51,57,46,49,51,53,54,55,57,93,44,91,45,56,49,46,50,57,56,48,49,55,44,51,57,46,49,56,53,53,55,50,93,44,91,45,56,49,46,50,51,57,52,55,55,44,51,57,46,50,54,56,51,50,56,93,44,91,45,56,49,46,51,55,49,50,54,44,51,57,46,51,52,49,57,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,97,121,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,57,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,50,52,53,56,51,44,52,54,46,49,53,52,54,49,54,93,44,91,45,57,48,46,57,50,55,48,53,55,44,52,54,46,53,56,53,52,49,53,93,44,91,45,57,48,46,56,51,48,50,49,54,44,52,54,46,54,54,51,52,55,50,93,44,91,45,57,48,46,56,51,56,50,55,54,44,52,54,46,55,51,57,57,57,50,93,44,91,45,57,48,46,55,51,51,55,53,54,44,52,54,46,56,56,54,56,57,53,93,44,91,45,57,48,46,56,54,55,51,49,56,44,52,55,46,50,49,48,57,54,50,93,44,91,45,57,49,46,53,52,57,51,56,53,44,52,54,46,56,57,51,50,49,51,93,44,91,45,57,49,46,53,53,49,50,56,50,44,52,54,46,49,53,55,48,52,53,93,44,91,45,57,48,46,57,50,52,53,56,51,44,52,54,46,49,53,52,54,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,83,116,101,119,97,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,48,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,53,51,50,57,51,44,51,54,46,52,57,55,48,53,56,93,44,91,45,56,55,46,57,57,48,57,50,44,51,54,46,51,54,48,49,51,51,93,44,91,45,56,55,46,57,56,48,55,52,44,51,54,46,51,53,51,51,48,55,93,44,91,45,56,55,46,56,50,49,56,49,54,44,51,54,46,51,50,56,55,50,52,93,44,91,45,56,55,46,53,57,50,51,53,56,44,51,54,46,51,54,55,54,54,51,93,44,91,45,56,55,46,54,52,49,49,53,55,44,51,54,46,54,51,56,49,48,57,93,44,91,45,56,55,46,54,57,52,49,57,50,44,51,54,46,54,51,55,49,48,56,93,44,91,45,56,56,46,48,55,48,53,52,49,44,51,54,46,54,55,56,50,53,53,93,44,91,45,56,56,46,48,53,51,50,57,51,44,51,54,46,52,57,55,48,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,80,111,114,116,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,53,57,57,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,52,52,57,51,49,44,52,52,46,54,56,52,57,52,53,93,44,91,45,56,57,46,56,52,52,53,52,54,44,52,52,46,53,49,49,53,48,51,93,44,91,45,56,57,46,55,50,54,55,50,53,44,52,52,46,53,49,49,49,57,50,93,44,91,45,56,57,46,55,50,52,55,52,54,44,52,52,46,50,52,55,54,55,56,93,44,91,45,56,57,46,53,57,55,57,56,44,52,52,46,50,52,53,55,50,53,93,44,91,45,56,57,46,50,50,52,56,49,51,44,52,52,46,50,52,51,51,57,51,93,44,91,45,56,57,46,50,50,51,55,52,53,44,52,52,46,54,56,49,51,54,53,93,44,91,45,56,57,46,56,52,52,57,51,49,44,52,52,46,54,56,52,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,76,101,120,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,51,49,54,44,34,98,101,100,115,34,58,53,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,51,56,57,54,49,44,51,52,46,49,57,55,53,56,55,93,44,91,45,56,49,46,52,55,49,57,55,50,44,51,52,46,48,55,54,53,53,50,93,44,91,45,56,49,46,53,55,49,52,56,55,44,51,51,46,56,55,55,51,49,56,93,44,91,45,56,49,46,52,49,53,51,48,56,44,51,51,46,55,51,50,49,54,49,93,44,91,45,56,49,46,49,56,55,50,55,49,44,51,51,46,54,53,50,57,51,55,93,44,91,45,56,49,46,48,52,50,56,53,52,44,51,51,46,55,48,55,49,51,49,93,44,91,45,56,49,46,48,49,50,51,51,44,51,51,46,56,56,48,48,56,93,44,91,45,56,49,46,48,54,55,54,49,53,44,51,52,46,48,48,56,57,53,51,93,44,91,45,56,49,46,50,48,49,56,51,57,44,51,52,46,48,57,55,49,54,56,93,44,91,45,56,49,46,50,55,53,56,52,53,44,51,52,46,48,57,55,51,56,49,93,44,91,45,56,49,46,51,51,56,57,54,49,44,51,52,46,49,57,55,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,110,101,32,65,114,117,110,100,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,55,54,57,54,44,34,98,101,100,115,34,58,54,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,57,55,48,56,53,44,51,57,46,50,49,52,48,57,50,93,44,91,45,55,54,46,56,52,48,51,54,50,44,51,57,46,49,48,51,49,52,50,93,44,91,45,55,54,46,54,57,56,50,54,56,44,51,56,46,57,56,51,54,52,55,93,44,91,45,55,54,46,54,56,54,51,53,56,44,51,56,46,55,52,56,52,55,53,93,44,91,45,55,54,46,52,54,51,54,51,54,44,51,56,46,55,49,49,48,57,57,93,44,91,45,55,54,46,52,51,54,52,57,50,44,51,56,46,56,48,55,51,57,55,93,44,91,45,55,54,46,51,53,49,55,51,44,51,57,46,48,53,54,50,51,50,93,44,91,45,55,54,46,51,52,57,52,55,57,44,51,57,46,49,53,54,54,50,51,93,44,91,45,55,54,46,53,50,57,52,56,54,44,51,57,46,50,49,56,52,48,56,93,44,91,45,55,54,46,54,49,56,54,49,50,44,51,57,46,50,51,55,51,57,56,93,44,91,45,55,54,46,54,57,55,48,56,53,44,51,57,46,50,49,52,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,70,111,110,100,32,100,117,32,76,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,51,49,53,44,34,98,101,100,115,34,58,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,56,53,54,57,55,44,52,51,46,56,57,53,49,56,52,93,44,91,45,56,56,46,56,56,54,48,53,50,44,52,51,46,54,51,51,53,52,93,44,91,45,56,56,46,52,48,49,48,52,49,44,52,51,46,54,51,48,57,51,51,93,44,91,45,56,56,46,52,48,48,52,50,54,44,52,51,46,53,52,51,53,51,50,93,44,91,45,56,56,46,49,54,48,56,55,51,44,52,51,46,53,52,50,57,52,51,93,44,91,45,56,56,46,49,54,50,50,55,52,44,52,51,46,56,57,49,53,49,49,93,44,91,45,56,56,46,49,54,49,54,53,52,44,52,51,46,57,51,55,54,56,51,93,44,91,45,56,56,46,52,48,52,49,56,55,44,52,51,46,57,51,56,50,93,44,91,45,56,56,46,52,48,51,49,57,53,44,52,51,46,56,57,50,57,55,55,93,44,91,45,56,56,46,56,56,53,54,57,55,44,52,51,46,56,57,53,49,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,52,53,55,51,51,50,44,51,56,46,55,51,57,49,54,57,93,44,91,45,56,48,46,53,48,56,54,53,53,44,51,56,46,54,52,53,53,53,51,93,44,91,45,56,48,46,54,53,48,55,56,54,44,51,56,46,53,50,54,53,57,93,44,91,45,56,48,46,54,48,57,51,55,56,44,51,56,46,51,53,56,54,48,54,93,44,91,45,56,48,46,52,51,54,53,49,52,44,51,56,46,50,54,55,51,51,52,93,44,91,45,56,48,46,51,54,48,48,52,56,44,51,56,46,50,50,53,56,52,53,93,44,91,45,56,48,46,51,51,48,50,54,55,44,51,56,46,51,51,53,55,53,56,93,44,91,45,56,48,46,50,52,53,53,49,56,44,51,56,46,51,56,56,52,53,55,93,44,91,45,56,48,46,49,56,51,57,51,49,44,51,56,46,53,50,53,51,56,54,93,44,91,45,56,48,46,50,56,48,48,53,57,44,51,56,46,54,57,52,56,54,55,93,44,91,45,56,48,46,51,57,51,48,54,51,44,51,56,46,55,50,55,53,55,49,93,44,91,45,56,48,46,52,53,55,51,51,50,44,51,56,46,55,51,57,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,75,101,119,97,117,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,53,56,48,52,56,44,52,52,46,54,55,55,48,53,52,93,44,91,45,56,55,46,55,54,54,48,50,54,44,52,52,46,51,50,55,49,56,52,93,44,91,45,56,54,46,57,50,51,52,48,51,44,52,52,46,51,50,56,56,50,53,93,44,91,45,56,54,46,56,52,54,57,50,56,44,52,52,46,53,49,57,52,50,57,93,44,91,45,56,54,46,55,55,56,51,57,56,44,52,52,46,54,55,53,50,49,57,93,44,91,45,56,55,46,55,53,56,48,52,56,44,52,52,46,54,55,55,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,54,57,34,44,34,78,65,77,69,34,58,34,80,97,114,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,53,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,52,50,57,56,50,44,51,52,46,55,52,55,51,54,49,93,44,91,45,49,48,51,46,48,52,51,55,54,50,44,51,52,46,51,49,50,55,53,93,44,91,45,49,48,50,46,54,49,53,49,53,44,51,52,46,51,49,50,56,57,49,93,44,91,45,49,48,50,46,53,50,53,54,51,49,44,51,52,46,51,49,51,48,51,52,93,44,91,45,49,48,50,46,53,50,53,49,56,52,44,51,52,46,55,52,54,57,51,49,93,44,91,45,49,48,51,46,48,52,50,57,56,50,44,51,52,46,55,52,55,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,87,111,111,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,48,48,51,48,49,44,51,54,46,57,57,57,52,54,55,93,44,91,45,57,57,46,52,53,54,50,48,51,44,51,54,46,57,57,57,52,55,49,93,44,91,45,57,57,46,50,57,53,49,56,54,44,51,54,46,56,49,57,53,54,54,93,44,91,45,57,57,46,49,51,57,56,53,53,44,51,54,46,55,56,51,48,52,93,44,91,45,57,56,46,57,53,57,57,55,51,44,51,54,46,53,57,56,57,57,49,93,44,91,45,57,56,46,57,54,48,51,51,52,44,51,54,46,53,48,54,57,49,52,93,44,91,45,57,56,46,54,50,53,51,54,49,44,51,54,46,51,57,50,53,57,53,93,44,91,45,57,56,46,53,51,51,54,49,55,44,51,54,46,52,54,51,50,51,93,44,91,45,57,56,46,53,52,52,54,54,49,44,51,54,46,57,57,56,55,53,57,93,44,91,45,57,57,46,48,48,48,51,48,49,44,51,54,46,57,57,57,52,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,69,108,108,105,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,50,52,56,48,53,44,51,56,46,49,55,53,49,49,52,93,44,91,45,56,51,46,49,51,53,48,48,56,44,51,56,46,50,52,50,48,51,55,93,44,91,45,56,51,46,50,52,52,51,48,54,44,51,56,46,49,57,50,51,56,93,44,91,45,56,51,46,50,54,51,50,56,57,44,51,56,46,49,49,53,51,56,54,93,44,91,45,56,51,46,49,57,52,52,52,53,44,51,56,46,48,49,48,54,52,57,93,44,91,45,56,51,46,48,50,50,49,49,53,44,51,56,46,48,48,55,48,52,55,93,44,91,45,56,50,46,56,56,57,48,53,57,44,51,56,46,49,49,49,53,56,55,93,44,91,45,56,50,46,57,50,52,56,48,53,44,51,56,46,49,55,53,49,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,114,107,115,104,105,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,51,50,56,44,34,98,101,100,115,34,58,51,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,53,50,52,50,57,44,52,50,46,53,49,48,48,49,55,93,44,91,45,55,51,46,53,48,56,50,49,44,52,50,46,48,56,54,49,51,52,93,44,91,45,55,51,46,52,57,55,48,49,56,44,52,50,46,48,52,57,54,50,52,93,44,91,45,55,51,46,52,56,55,51,49,57,44,52,50,46,48,52,57,53,50,53,93,44,91,45,55,51,46,48,53,51,50,56,56,44,52,50,46,48,51,57,56,54,53,93,44,91,45,55,51,46,48,48,48,49,55,51,44,52,50,46,51,49,50,54,55,56,93,44,91,45,55,50,46,57,55,53,52,48,57,44,52,50,46,53,53,54,48,51,55,93,44,91,45,55,50,46,57,53,49,48,51,57,44,52,50,46,54,52,49,48,48,54,93,44,91,45,55,51,46,48,50,51,48,49,53,44,52,50,46,55,52,49,49,51,53,93,44,91,45,55,51,46,50,54,52,56,50,55,44,52,50,46,55,52,53,56,53,49,93,44,91,45,55,51,46,51,53,50,52,50,57,44,52,50,46,53,49,48,48,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,104,97,114,105,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,55,56,48,57,56,44,51,57,46,54,49,53,54,51,50,93,44,91,45,57,51,46,50,55,53,57,51,50,44,51,57,46,52,56,52,51,55,49,93,44,91,45,57,51,46,49,48,52,52,56,53,44,51,57,46,51,56,51,54,53,54,93,44,91,45,57,51,46,48,55,50,57,49,53,44,51,57,46,51,51,53,53,50,93,44,91,45,57,50,46,56,52,57,50,50,52,44,51,57,46,50,50,54,50,49,56,93,44,91,45,57,50,46,55,57,48,51,54,57,44,51,57,46,51,52,51,53,56,54,93,44,91,45,57,50,46,55,48,55,51,54,55,44,51,57,46,51,50,49,54,49,52,93,44,91,45,57,50,46,54,57,50,49,52,57,44,51,57,46,54,49,48,50,54,53,93,44,91,45,57,50,46,54,56,57,51,51,49,44,51,57,46,54,57,56,48,57,52,93,44,91,45,57,50,46,56,53,55,57,50,44,51,57,46,54,57,57,57,56,53,93,44,91,45,57,51,46,50,54,54,57,54,56,44,51,57,46,55,48,51,53,54,50,93,44,91,45,57,51,46,50,55,56,48,57,56,44,51,57,46,54,49,53,54,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,82,105,111,32,66,108,97,110,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,54,53,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,52,51,57,51,56,54,44,52,48,46,50,50,51,51,55,57,93,44,91,45,49,48,56,46,49,49,51,49,55,57,44,52,48,46,50,50,49,54,55,93,44,91,45,49,48,57,46,48,53,48,57,52,57,44,52,48,46,50,50,50,54,52,55,93,44,91,45,49,48,57,46,48,53,49,50,50,55,44,51,57,46,54,54,48,52,54,54,93,44,91,45,49,48,56,46,53,53,52,54,50,55,44,51,57,46,54,53,48,49,54,52,93,44,91,45,49,48,56,46,53,53,52,55,50,50,44,51,57,46,54,57,51,54,52,93,44,91,45,49,48,55,46,57,51,56,53,52,54,44,51,57,46,54,57,52,52,54,52,93,44,91,45,49,48,55,46,57,51,56,53,48,50,44,51,57,46,56,50,52,57,57,54,93,44,91,45,49,48,55,46,52,51,49,55,55,44,51,57,46,56,50,56,51,55,55,93,44,91,45,49,48,55,46,51,49,56,55,53,49,44,51,57,46,57,49,52,57,54,56,93,44,91,45,49,48,55,46,51,49,54,57,57,51,44,52,48,46,48,57,48,55,54,53,93,44,91,45,49,48,55,46,48,51,55,51,54,51,44,52,48,46,48,57,49,53,51,56,93,44,91,45,49,48,55,46,48,51,55,57,50,56,44,52,48,46,50,50,53,51,55,50,93,44,91,45,49,48,55,46,52,51,57,51,56,54,44,52,48,46,50,50,51,51,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,50,53,55,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,56,49,56,52,52,44,52,48,46,53,50,51,51,56,51,93,44,91,45,49,48,52,46,49,52,55,55,49,52,44,52,48,46,53,50,52,51,56,57,93,44,91,45,49,48,52,46,49,53,48,51,51,50,44,52,48,46,48,48,48,56,53,54,93,44,91,45,49,48,51,46,55,48,53,55,48,49,44,52,48,46,48,48,49,51,54,54,93,44,91,45,49,48,51,46,52,55,49,57,57,44,52,48,46,48,48,49,53,48,50,93,44,91,45,49,48,51,46,52,54,53,51,55,55,44,52,48,46,52,51,54,51,52,54,93,44,91,45,49,48,51,46,53,56,49,56,52,52,44,52,48,46,53,50,51,51,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,77,97,108,104,101,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,52,51,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,50,50,55,54,52,53,44,52,52,46,48,51,57,56,54,50,93,44,91,45,49,49,56,46,50,50,56,55,57,51,44,52,50,46,57,49,52,54,50,53,93,44,91,45,49,49,56,46,50,49,52,54,57,56,44,52,50,46,50,55,53,56,57,49,93,44,91,45,49,49,56,46,49,57,55,51,55,49,44,52,49,46,57,57,55,51,52,52,93,44,91,45,49,49,55,46,48,50,54,50,44,52,50,46,48,48,48,49,57,53,93,44,91,45,49,49,55,46,48,50,54,56,55,52,44,52,51,46,49,50,55,48,48,53,93,44,91,45,49,49,55,46,48,50,54,53,51,56,44,52,51,46,54,56,48,56,48,50,93,44,91,45,49,49,55,46,48,51,50,50,56,57,44,52,51,46,56,50,56,55,54,55,93,44,91,45,49,49,54,46,57,56,51,56,50,55,44,52,51,46,56,56,48,48,52,54,93,44,91,45,49,49,54,46,56,57,55,55,57,44,52,52,46,49,53,50,53,57,93,44,91,45,49,49,55,46,49,49,57,56,54,49,44,52,52,46,50,55,56,50,55,50,93,44,91,45,49,49,55,46,50,50,48,48,52,56,44,52,52,46,51,48,49,52,48,52,93,44,91,45,49,49,55,46,52,56,55,48,49,52,44,52,52,46,51,48,48,51,49,55,93,44,91,45,49,49,55,46,52,56,54,55,52,52,44,52,52,46,51,56,55,50,52,54,93,44,91,45,49,49,55,46,53,57,48,56,52,57,44,52,52,46,52,52,52,53,55,51,93,44,91,45,49,49,55,46,57,55,49,55,56,55,44,52,52,46,52,52,51,56,52,57,93,44,91,45,49,49,56,46,49,53,50,57,52,53,44,52,52,46,50,55,48,54,56,52,93,44,91,45,49,49,56,46,50,51,50,50,49,52,44,52,52,46,50,53,54,49,50,57,93,44,91,45,49,49,56,46,50,50,55,54,52,53,44,52,52,46,48,51,57,56,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,77,105,100,100,108,101,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,54,54,57,56,44,34,98,101,100,115,34,58,50,49,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,52,54,51,50,57,49,44,52,48,46,53,57,57,49,56,55,93,44,91,45,55,52,46,52,53,57,56,54,51,44,52,48,46,52,57,49,48,52,54,93,44,91,45,55,52,46,54,50,48,50,52,44,52,48,46,51,55,51,55,52,57,93,44,91,45,55,52,46,52,56,52,57,54,50,44,52,48,46,50,53,51,51,50,53,93,44,91,45,55,52,46,51,57,51,52,51,56,44,52,48,46,50,55,57,53,52,56,93,44,91,45,55,52,46,50,52,55,56,57,52,44,52,48,46,52,48,54,54,48,53,93,44,91,45,55,52,46,50,50,56,49,53,51,44,52,48,46,52,55,55,51,57,57,93,44,91,45,55,52,46,50,48,51,54,56,56,44,52,48,46,53,57,50,54,57,49,93,44,91,45,55,52,46,52,54,51,50,57,49,44,52,48,46,53,57,57,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,82,117,115,115,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,55,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,51,55,53,44,51,57,46,49,51,51,49,50,49,93,44,91,45,57,57,46,48,52,50,54,50,54,44,51,56,46,54,57,54,56,48,55,93,44,91,45,57,57,46,48,51,50,57,55,49,44,51,56,46,54,57,54,55,53,57,93,44,91,45,57,56,46,52,56,54,49,48,56,44,51,56,46,54,57,54,56,55,56,93,44,91,45,57,56,46,52,56,52,56,54,49,44,51,56,46,56,55,48,55,57,49,93,44,91,45,57,56,46,52,56,57,57,57,55,44,51,57,46,49,51,50,54,57,55,93,44,91,45,57,57,46,48,51,55,53,44,51,57,46,49,51,51,49,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,54,54,49,48,49,44,52,49,46,49,52,56,53,50,52,93,44,91,45,56,57,46,51,53,56,52,51,55,44,52,49,46,49,48,51,56,52,57,93,44,91,45,56,57,46,49,54,50,50,51,55,44,52,49,46,49,48,52,48,48,56,93,44,91,45,56,57,46,49,54,51,55,48,53,44,52,49,46,51,49,48,49,56,55,93,44,91,45,56,57,46,51,51,52,57,48,49,44,52,49,46,51,48,48,56,55,55,93,44,91,45,56,57,46,52,54,54,51,56,57,44,52,49,46,50,51,51,56,55,50,93,44,91,45,56,57,46,52,54,54,49,48,49,44,52,49,46,49,52,56,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,72,97,97,107,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,56,50,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,48,49,46,51,50,56,50,52,53,44,52,52,46,54,57,48,57,53,54,93,44,91,45,49,48,49,46,53,51,49,48,51,53,44,52,52,46,53,54,55,56,55,53,93,44,91,45,49,48,49,46,55,49,53,48,51,56,44,52,52,46,53,55,57,52,56,51,93,44,91,45,49,48,49,46,55,56,48,55,51,51,44,52,52,46,53,51,54,52,51,54,93,44,91,45,49,48,50,46,48,48,48,52,51,50,44,52,52,46,53,49,49,54,54,51,93,44,91,45,49,48,50,46,48,48,49,48,54,56,44,52,52,46,53,49,48,57,50,54,93,44,91,45,49,48,50,46,48,48,55,51,51,54,44,52,51,46,57,57,52,53,51,93,44,91,45,49,48,49,46,48,54,52,48,54,56,44,52,51,46,57,57,52,57,50,57,93,44,91,45,49,48,49,46,48,52,54,57,49,54,44,52,52,46,49,54,56,52,56,52,93,44,91,45,49,48,49,46,49,54,54,55,53,51,44,52,52,46,49,54,56,48,56,53,93,44,91,45,49,48,49,46,49,53,52,53,49,54,44,52,52,46,54,56,57,57,52,55,93,44,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,52,56,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,48,53,51,56,56,44,51,54,46,54,52,48,49,56,52,93,44,91,45,56,54,46,50,50,56,52,51,52,44,51,54,46,52,56,55,52,55,50,93,44,91,45,56,54,46,49,54,56,50,54,49,44,51,54,46,52,52,52,50,57,51,93,44,91,45,56,53,46,57,55,56,56,57,51,44,51,54,46,52,50,54,48,55,51,93,44,91,45,56,53,46,56,50,56,48,50,54,44,51,54,46,52,49,49,56,51,54,93,44,91,45,56,53,46,56,49,51,56,56,53,44,51,54,46,52,57,57,52,55,51,93,44,91,45,56,53,46,55,56,56,55,50,54,44,51,54,46,54,50,50,48,52,56,93,44,91,45,56,53,46,57,55,54,52,49,56,44,51,54,46,54,50,56,52,57,51,93,44,91,45,56,54,46,50,48,53,51,56,56,44,51,54,46,54,52,48,49,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,108,101,98,117,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,52,48,53,50,44,51,53,46,55,49,50,49,57,93,44,91,45,57,50,46,50,53,50,55,53,57,44,51,53,46,51,54,51,55,49,56,93,44,91,45,57,50,46,49,49,49,52,54,51,44,51,53,46,51,54,50,55,50,53,93,44,91,45,57,49,46,56,53,49,57,53,56,44,51,53,46,51,53,56,50,56,55,93,44,91,45,57,49,46,55,57,51,57,53,56,44,51,53,46,53,51,52,49,49,52,93,44,91,45,57,49,46,56,51,55,49,55,57,44,51,53,46,55,48,52,57,51,50,93,44,91,45,57,50,46,50,52,48,53,50,44,51,53,46,55,49,50,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,52,48,51,44,34,98,101,100,115,34,58,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,57,54,56,53,51,44,51,50,46,48,53,49,48,52,57,93,44,91,45,56,53,46,57,57,53,53,54,51,44,51,49,46,57,54,55,53,53,52,93,44,91,45,56,54,46,49,57,49,51,55,57,44,51,49,46,57,54,54,52,53,51,93,44,91,45,56,54,46,49,52,56,51,51,57,44,51,49,46,55,57,48,57,53,49,93,44,91,45,56,54,46,49,52,53,56,57,53,44,51,49,46,54,49,55,55,52,49,93,44,91,45,56,53,46,55,56,57,49,52,50,44,51,49,46,54,49,55,57,54,52,93,44,91,45,56,53,46,55,52,56,50,53,49,44,51,49,46,54,49,56,48,52,56,93,44,91,45,56,53,46,54,54,50,54,57,50,44,51,49,46,55,56,51,51,49,57,93,44,91,45,56,53,46,54,53,55,54,54,56,44,51,49,46,56,56,48,50,55,53,93,44,91,45,56,53,46,55,57,49,48,52,55,44,51,49,46,56,56,48,51,53,55,93,44,91,45,56,53,46,55,57,48,48,52,56,44,51,49,46,57,54,55,50,53,52,93,44,91,45,56,53,46,56,57,51,54,53,50,44,51,50,46,48,52,55,51,53,49,93,44,91,45,56,53,46,57,57,54,56,53,51,44,51,50,46,48,53,49,48,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,52,52,51,56,54,44,52,53,46,49,48,55,54,53,49,93,44,91,45,49,49,54,46,50,56,53,57,54,57,44,52,53,46,49,50,56,55,51,50,93,44,91,45,49,49,54,46,51,52,50,56,55,54,44,52,53,46,50,54,55,56,55,50,93,44,91,45,49,49,54,46,54,56,55,49,55,55,44,52,53,46,50,54,55,54,52,51,93,44,91,45,49,49,54,46,55,56,51,56,50,57,44,52,53,46,48,55,56,50,54,51,93,44,91,45,49,49,54,46,56,57,57,55,49,49,44,52,52,46,56,52,48,54,48,57,93,44,91,45,49,49,54,46,54,50,53,48,51,52,44,52,52,46,56,51,56,57,53,50,93,44,91,45,49,49,54,46,54,50,52,49,53,51,44,52,52,46,54,54,51,50,54,57,93,44,91,45,49,49,54,46,53,50,57,49,54,55,44,52,52,46,54,49,53,49,53,52,93,44,91,45,49,49,54,46,53,50,56,56,57,56,44,52,52,46,52,57,49,53,52,53,93,44,91,45,49,49,54,46,50,57,57,56,55,54,44,52,52,46,52,52,52,53,55,54,93,44,91,45,49,49,54,46,49,53,55,48,50,50,44,52,52,46,52,57,56,57,50,56,93,44,91,45,49,49,54,46,49,53,55,54,48,50,44,52,52,46,55,48,51,55,52,51,93,44,91,45,49,49,54,46,49,57,55,48,49,49,44,52,52,46,56,54,52,50,49,54,93,44,91,45,49,49,54,46,48,57,48,49,52,51,44,52,53,46,48,54,52,48,49,51,93,44,91,45,49,49,54,46,49,52,52,51,56,54,44,52,53,46,49,48,55,54,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,114,105,115,116,111,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,56,57,48,53,44,34,98,101,100,115,34,58,49,49,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,51,56,49,50,57,57,44,52,49,46,57,56,53,48,56,52,93,44,91,45,55,49,46,51,49,55,56,55,51,44,52,49,46,55,55,54,49,57,57,93,44,91,45,55,49,46,50,48,56,51,55,49,44,52,49,46,54,57,48,53,57,56,93,44,91,45,55,49,46,49,51,50,53,53,55,44,52,49,46,54,54,48,51,54,51,93,44,91,45,55,49,46,48,56,56,53,55,49,44,52,49,46,52,51,49,51,49,53,93,44,91,45,55,49,46,48,53,49,56,53,52,44,52,49,46,52,49,54,55,50,57,93,44,91,45,55,48,46,55,53,56,52,54,52,44,52,49,46,53,54,48,57,51,49,93,44,91,45,55,48,46,55,53,50,52,50,52,44,52,49,46,53,54,53,56,53,49,93,44,91,45,55,48,46,56,51,57,49,55,53,44,52,49,46,54,49,52,55,54,49,93,44,91,45,55,48,46,56,56,54,52,51,57,44,52,49,46,55,54,48,50,51,50,93,44,91,45,55,49,46,48,52,57,52,56,53,44,52,49,46,57,54,51,48,57,52,93,44,91,45,55,49,46,48,56,48,52,56,51,44,52,50,46,48,57,53,53,51,57,93,44,91,45,55,49,46,51,56,49,50,57,57,44,52,49,46,57,56,53,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,83,99,104,117,121,108,107,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,53,53,53,44,34,98,101,100,115,34,58,51,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,50,48,55,56,50,55,44,52,48,46,57,52,57,55,52,93,44,91,45,55,54,46,51,56,48,49,53,50,44,52,48,46,55,55,53,53,49,49,93,44,91,45,55,54,46,55,48,49,54,50,52,44,52,48,46,54,53,56,48,56,50,93,44,91,45,55,54,46,53,51,53,52,49,52,44,52,48,46,53,53,53,49,53,55,93,44,91,45,55,54,46,52,52,48,49,56,49,44,52,48,46,52,57,53,57,53,50,93,44,91,45,55,54,46,49,55,49,54,50,52,44,52,48,46,53,51,52,57,52,55,93,44,91,45,55,53,46,56,57,49,52,55,51,44,52,48,46,54,55,55,50,55,93,44,91,45,55,53,46,55,53,55,56,48,55,44,52,48,46,55,51,53,52,49,52,93,44,91,45,55,53,46,57,57,55,51,52,56,44,52,48,46,57,49,50,57,56,53,93,44,91,45,55,54,46,50,48,55,56,50,55,44,52,48,46,57,52,57,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,87,101,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,48,54,57,51,49,49,44,52,55,46,56,52,55,52,51,49,93,44,91,45,49,48,48,46,48,51,50,56,48,55,44,52,55,46,54,55,51,54,54,57,93,44,91,45,49,48,48,46,48,51,51,50,57,50,44,52,55,46,51,50,55,49,54,53,93,44,91,45,57,57,46,52,56,49,48,57,53,44,52,55,46,51,50,55,48,50,55,93,44,91,45,57,57,46,50,54,54,50,49,53,44,52,55,46,51,50,54,57,57,57,93,44,91,45,57,57,46,50,54,53,55,57,56,44,52,55,46,53,56,55,54,93,44,91,45,57,57,46,50,57,55,50,48,50,44,52,55,46,56,52,54,56,51,52,93,44,91,45,57,57,46,56,49,50,49,54,55,44,52,55,46,56,52,55,50,53,55,93,44,91,45,49,48,48,46,48,54,57,51,49,49,44,52,55,46,56,52,55,52,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,108,101,118,101,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,49,53,57,44,34,98,101,100,115,34,58,51,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,54,56,49,48,50,44,51,53,46,49,56,48,54,49,49,93,44,91,45,56,49,46,51,54,54,54,44,51,53,46,49,54,52,56,56,51,93,44,91,45,56,49,46,51,50,56,48,51,55,44,51,53,46,49,54,51,52,54,55,93,44,91,45,56,49,46,51,53,54,54,56,50,44,51,53,46,51,51,48,54,48,52,93,44,91,45,56,49,46,52,53,53,54,44,51,53,46,52,49,57,56,49,49,93,44,91,45,56,49,46,53,51,55,53,57,57,44,51,53,46,53,54,52,50,50,56,93,44,91,45,56,49,46,54,57,49,57,56,57,44,51,53,46,53,56,48,48,52,49,93,44,91,45,56,49,46,55,48,50,56,53,51,44,51,53,46,51,53,55,51,48,52,93,44,91,45,56,49,46,55,54,56,49,48,50,44,51,53,46,49,56,48,54,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,111,116,32,83,112,114,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,50,48,44,34,98,101,100,115,34,58,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,57,51,49,57,55,44,51,52,46,53,48,51,54,48,54,93,44,91,45,57,50,46,57,49,53,48,55,57,44,51,52,46,53,48,54,49,49,52,93,44,91,45,57,50,46,57,52,56,48,55,49,44,51,52,46,51,56,57,50,53,53,93,44,91,45,57,51,46,52,48,55,50,50,49,44,51,52,46,51,57,55,52,52,55,93,44,91,45,57,51,46,52,48,56,49,50,52,44,51,52,46,51,51,57,53,50,55,93,44,91,45,57,51,46,51,53,54,56,52,44,51,52,46,50,56,48,51,48,54,93,44,91,45,57,51,46,48,51,53,48,51,57,44,51,52,46,50,51,54,54,54,52,93,44,91,45,57,51,46,48,52,50,48,50,53,44,51,52,46,49,53,57,56,53,50,93,44,91,45,57,50,46,56,56,54,50,56,53,44,51,52,46,49,53,53,56,55,55,93,44,91,45,57,50,46,54,55,56,51,56,51,44,51,52,46,49,52,57,54,50,50,93,44,91,45,57,50,46,54,54,56,55,49,49,44,51,52,46,52,49,52,50,51,55,93,44,91,45,57,50,46,55,57,51,49,57,55,44,51,52,46,53,48,51,54,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,70,114,101,100,101,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,52,55,50,44,34,98,101,100,115,34,58,50,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,54,57,49,52,53,44,51,57,46,55,50,48,48,49,56,93,44,91,45,55,55,46,53,55,48,49,56,50,44,51,57,46,54,49,57,57,57,56,93,44,91,45,55,55,46,54,55,55,49,54,52,44,51,57,46,51,50,52,53,51,52,93,44,91,45,55,55,46,53,54,56,55,53,51,44,51,57,46,51,48,54,52,52,55,93,44,91,45,55,55,46,52,53,56,56,48,56,44,51,57,46,50,50,48,50,55,93,44,91,45,55,55,46,49,54,56,56,48,49,44,51,57,46,51,53,51,53,48,50,93,44,91,45,55,55,46,49,54,56,48,56,44,51,57,46,51,53,51,57,53,55,93,44,91,45,55,55,46,49,48,54,56,51,57,44,51,57,46,52,57,49,54,54,49,93,44,91,45,55,55,46,50,57,57,55,55,44,51,57,46,54,49,50,50,56,52,93,44,91,45,55,55,46,50,49,55,48,50,52,44,51,57,46,55,49,57,56,54,49,93,44,91,45,55,55,46,52,53,57,49,51,52,44,51,57,46,55,49,57,57,56,52,93,44,91,45,55,55,46,52,54,57,49,52,53,44,51,57,46,55,50,48,48,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,83,99,104,117,121,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,54,52,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,57,57,54,51,53,44,52,48,46,49,56,51,56,49,50,93,44,91,45,57,48,46,52,53,49,57,49,54,44,52,48,46,49,56,56,56,48,51,93,44,91,45,57,48,46,52,53,48,50,50,55,44,52,48,46,50,55,54,51,51,53,93,44,91,45,57,48,46,57,48,57,55,53,54,44,52,48,46,50,56,52,51,57,52,93,44,91,45,57,48,46,57,49,49,57,54,57,44,52,48,46,49,57,51,48,56,56,93,44,91,45,57,48,46,57,49,51,52,54,57,44,52,48,46,49,48,52,52,53,53,93,44,91,45,57,48,46,54,57,54,51,53,55,44,52,48,46,49,48,51,57,53,93,44,91,45,57,48,46,54,48,55,49,51,52,44,51,57,46,57,56,49,54,53,56,93,44,91,45,57,48,46,53,49,51,55,52,55,44,51,57,46,57,56,55,56,57,49,93,44,91,45,57,48,46,51,53,52,53,50,52,44,52,48,46,49,50,52,50,49,55,93,44,91,45,57,48,46,49,57,57,54,51,53,44,52,48,46,49,56,51,56,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,77,111,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,55,52,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,54,51,57,50,48,53,44,51,56,46,51,50,54,56,56,93,44,91,45,49,49,57,46,53,55,54,52,57,54,44,51,56,46,49,53,55,54,54,49,93,44,91,45,49,49,57,46,51,52,57,56,52,53,44,51,56,46,48,56,53,53,54,54,93,44,91,45,49,49,57,46,51,48,56,51,56,57,44,51,55,46,57,52,54,56,50,52,93,44,91,45,49,49,57,46,50,48,48,48,56,51,44,51,55,46,56,56,52,53,50,55,93,44,91,45,49,49,57,46,50,54,56,57,55,57,44,51,55,46,55,51,57,50,51,93,44,91,45,49,49,57,46,49,50,52,51,49,50,44,51,55,46,55,51,51,57,52,52,93,44,91,45,49,49,57,46,48,50,50,51,54,51,44,51,55,46,53,56,53,55,51,55,93,44,91,45,49,49,56,46,55,55,53,48,49,52,44,51,55,46,52,54,51,48,53,50,93,44,91,45,49,49,55,46,56,51,50,55,50,54,44,51,55,46,52,54,52,57,50,57,93,44,91,45,49,49,56,46,52,50,56,49,52,52,44,51,55,46,56,57,54,50,50,93,44,91,45,49,49,57,46,49,53,54,57,55,56,44,51,56,46,52,49,52,55,52,54,93,44,91,45,49,49,57,46,51,50,56,51,57,56,44,51,56,46,53,51,52,55,57,50,93,44,91,45,49,49,57,46,53,56,53,52,51,55,44,51,56,46,55,49,51,50,49,50,93,44,91,45,49,49,57,46,54,49,57,48,54,54,44,51,56,46,54,48,51,53,50,57,93,44,91,45,49,49,57,46,53,52,54,48,57,50,44,51,56,46,52,57,57,51,53,93,44,91,45,49,49,57,46,54,51,57,50,48,53,44,51,56,46,51,50,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,84,117,111,108,117,109,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,57,51,50,44,34,98,101,100,115,34,58,49,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,49,57,57,53,49,44,51,56,46,52,51,51,53,50,49,93,44,91,45,49,50,48,46,49,55,54,54,49,51,44,51,56,46,51,55,51,53,49,93,44,91,45,49,50,48,46,53,49,52,57,53,50,44,51,55,46,57,53,51,51,57,93,44,91,45,49,50,48,46,54,53,51,50,55,52,44,51,55,46,56,51,49,56,53,56,93,44,91,45,49,50,48,46,51,56,55,54,49,51,44,51,55,46,54,51,51,55,48,52,93,44,91,45,49,50,48,46,51,52,53,52,51,55,44,51,55,46,55,50,52,55,56,55,93,44,91,45,49,50,48,46,48,50,54,53,57,51,44,51,55,46,56,49,49,56,55,55,93,44,91,45,49,49,57,46,57,51,56,52,49,52,44,51,55,46,55,54,51,48,50,54,93,44,91,45,49,49,57,46,56,48,53,52,57,56,44,51,55,46,55,53,57,54,49,56,93,44,91,45,49,49,57,46,54,54,55,50,48,51,44,51,55,46,56,48,49,50,50,52,93,44,91,45,49,49,57,46,53,51,51,57,57,57,44,51,55,46,57,48,50,57,50,50,93,44,91,45,49,49,57,46,51,48,56,57,57,53,44,51,55,46,55,55,55,57,56,54,93,44,91,45,49,49,57,46,50,54,56,57,55,57,44,51,55,46,55,51,57,50,51,93,44,91,45,49,49,57,46,50,48,48,48,56,51,44,51,55,46,56,56,52,53,50,55,93,44,91,45,49,49,57,46,51,48,56,51,56,57,44,51,55,46,57,52,54,56,50,52,93,44,91,45,49,49,57,46,51,52,57,56,52,53,44,51,56,46,48,56,53,53,54,54,93,44,91,45,49,49,57,46,53,55,54,52,57,54,44,51,56,46,49,53,55,54,54,49,93,44,91,45,49,49,57,46,54,51,57,50,48,53,44,51,56,46,51,50,54,56,56,93,44,91,45,49,49,57,46,55,53,51,52,56,49,44,51,56,46,52,49,54,55,53,57,93,44,91,45,49,49,57,46,56,56,52,55,52,57,44,51,56,46,51,53,54,49,56,53,93,44,91,45,49,50,48,46,48,49,57,57,53,49,44,51,56,46,52,51,51,53,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,68,111,195,177,97,32,65,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,51,51,56,44,34,98,101,100,115,34,58,54,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,50,57,57,54,51,49,44,51,50,46,54,48,53,51,55,93,44,91,45,49,48,55,46,50,57,54,55,57,51,44,51,49,46,55,56,51,54,52,49,93,44,91,45,49,48,54,46,53,50,56,48,52,55,44,51,49,46,55,56,51,56,57,49,93,44,91,45,49,48,54,46,54,51,53,57,50,44,51,49,46,56,54,54,50,51,51,93,44,91,45,49,48,54,46,54,49,56,52,56,54,44,51,50,46,48,48,48,52,57,53,93,44,91,45,49,48,54,46,51,55,55,49,55,52,44,51,50,46,48,48,49,53,48,51,93,44,91,45,49,48,54,46,51,55,54,53,56,53,44,51,50,46,57,53,56,48,53,93,44,91,45,49,48,54,46,51,52,48,53,49,53,44,51,51,46,48,53,50,55,55,55,93,44,91,45,49,48,54,46,56,56,55,56,57,49,44,51,50,46,56,50,50,55,56,49,93,44,91,45,49,48,54,46,56,56,55,55,51,51,44,51,50,46,55,55,57,50,55,51,93,44,91,45,49,48,55,46,50,57,57,52,55,53,44,51,50,46,55,56,48,49,54,54,93,44,91,45,49,48,55,46,50,57,57,54,51,49,44,51,50,46,54,48,53,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,67,114,105,115,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,52,54,44,34,98,101,100,115,34,58,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,48,50,55,50,51,44,51,49,46,56,48,51,53,55,57,93,44,91,45,56,51,46,54,49,50,54,52,50,44,51,49,46,56,48,52,49,50,56,93,44,91,45,56,51,46,54,49,50,50,53,54,44,51,49,46,56,53,52,48,56,57,93,44,91,45,56,51,46,54,48,57,54,54,51,44,51,50,46,48,50,55,57,51,56,93,44,91,45,56,51,46,57,54,49,50,55,56,44,51,50,46,48,51,48,53,57,53,93,44,91,45,56,51,46,57,50,50,52,57,52,44,51,49,46,57,48,57,54,53,51,93,44,91,45,56,51,46,57,51,57,52,51,55,44,51,49,46,56,52,55,57,50,57,93,44,91,45,56,51,46,56,48,50,55,50,51,44,51,49,46,56,48,51,53,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,57,50,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,54,53,53,56,53,44,51,51,46,52,52,52,52,53,57,93,44,91,45,57,51,46,52,56,49,55,54,44,51,51,46,50,53,57,57,57,49,93,44,91,45,57,51,46,52,57,48,53,50,44,51,51,46,48,49,56,52,52,50,93,44,91,45,57,51,46,50,51,56,54,48,55,44,51,51,46,48,49,55,57,57,50,93,44,91,45,57,50,46,57,56,56,55,48,55,44,51,51,46,48,49,55,52,51,51,93,44,91,45,57,50,46,57,55,56,52,54,57,44,51,51,46,51,55,55,50,56,93,44,91,45,57,51,46,49,49,57,48,49,52,44,51,51,46,51,56,48,50,57,51,93,44,91,45,57,51,46,49,49,54,51,54,49,44,51,51,46,52,53,50,57,48,57,93,44,91,45,57,51,46,51,54,53,53,56,53,44,51,51,46,52,52,52,52,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,71,114,105,103,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,54,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,48,48,48,56,53,44,52,55,46,53,56,55,50,50,56,93,44,91,45,57,56,46,52,57,57,50,52,54,44,52,55,46,51,50,54,53,51,56,93,44,91,45,57,56,46,52,54,55,48,54,54,44,52,55,46,50,52,48,52,48,52,93,44,91,45,57,55,46,57,54,49,50,49,49,44,52,55,46,50,52,48,51,50,53,93,44,91,45,57,55,46,57,56,54,52,50,56,44,52,55,46,51,50,54,50,48,49,93,44,91,45,57,55,46,57,56,52,50,52,56,44,52,55,46,54,55,50,51,48,51,93,44,91,45,57,56,46,53,48,48,49,56,49,44,52,55,46,54,55,50,52,49,51,93,44,91,45,57,56,46,53,48,48,48,56,53,44,52,55,46,53,56,55,50,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,83,111,108,97,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,56,53,51,48,44,34,98,101,100,115,34,58,49,48,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,49,48,51,50,56,49,44,51,56,46,53,49,51,51,52,56,93,44,91,45,49,50,50,46,49,50,54,51,56,57,44,51,56,46,52,50,56,57,49,56,93,44,91,45,49,50,50,46,48,54,52,55,55,57,44,51,56,46,51,49,53,57,49,50,93,44,91,45,49,50,50,46,50,48,53,57,56,50,44,51,56,46,51,49,53,55,49,51,93,44,91,45,49,50,50,46,49,57,53,51,56,44,51,56,46,49,53,53,48,49,55,93,44,91,45,49,50,50,46,52,48,54,55,56,54,44,51,56,46,49,53,53,54,51,50,93,44,91,45,49,50,50,46,51,52,55,52,53,52,44,51,56,46,48,55,51,50,54,93,44,91,45,49,50,50,46,49,50,51,57,55,51,44,51,56,46,48,51,53,55,49,55,93,44,91,45,49,50,49,46,56,54,50,52,54,50,44,51,56,46,48,54,54,48,51,93,44,91,45,49,50,49,46,55,49,51,57,50,54,44,51,56,46,48,56,52,53,52,50,93,44,91,45,49,50,49,46,54,49,53,52,49,51,44,51,56,46,49,57,53,54,57,54,93,44,91,45,49,50,49,46,53,57,51,50,55,51,44,51,56,46,51,49,51,48,56,57,93,44,91,45,49,50,49,46,54,57,52,48,49,52,44,51,56,46,51,49,52,56,53,54,93,44,91,45,49,50,49,46,54,57,53,49,52,55,44,51,56,46,53,50,51,49,53,54,93,44,91,45,49,50,49,46,57,52,48,50,56,53,44,51,56,46,53,51,51,51,56,52,93,44,91,45,49,50,50,46,49,48,51,50,56,49,44,51,56,46,53,49,51,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,108,97,121,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,55,50,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,48,53,51,48,55,44,52,51,46,48,56,49,54,53,51,93,44,91,45,57,49,46,54,48,55,48,53,57,44,52,50,46,54,52,51,57,55,51,93,44,91,45,57,49,46,49,51,50,55,54,54,44,52,50,46,54,52,53,56,52,52,93,44,91,45,57,48,46,56,57,54,57,53,49,44,52,50,46,54,55,53,48,56,50,93,44,91,45,57,49,46,48,53,49,50,55,53,44,52,50,46,55,51,55,48,48,49,93,44,91,45,57,49,46,49,53,54,56,49,50,44,52,50,46,57,56,56,49,55,93,44,91,45,57,49,46,49,55,55,50,50,50,44,52,51,46,48,56,48,50,52,55,93,44,91,45,57,49,46,54,48,53,51,48,55,44,52,51,46,48,56,49,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,52,57,34,44,34,78,65,77,69,34,58,34,84,105,116,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,55,51,48,44,34,98,101,100,115,34,58,49,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,50,54,49,51,44,51,51,46,48,51,52,53,56,49,93,44,91,45,57,52,46,57,50,55,55,50,55,44,51,51,46,48,55,48,51,48,52,93,44,91,45,57,52,46,56,49,57,56,50,56,44,51,50,46,57,56,50,56,56,54,93,44,91,45,57,52,46,56,48,56,55,56,51,44,51,51,46,51,54,51,54,51,54,93,44,91,45,57,53,46,49,50,53,52,53,49,44,51,51,46,51,56,57,52,53,52,93,44,91,45,57,53,46,49,50,54,49,51,44,51,51,46,48,51,52,53,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,51,54,51,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,53,55,48,55,51,44,51,57,46,53,51,53,49,52,49,93,44,91,45,55,56,46,56,53,48,55,50,51,44,51,57,46,51,51,49,48,57,51,93,44,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,44,91,45,55,56,46,56,57,57,54,57,53,44,51,57,46,49,57,57,49,51,55,93,44,91,45,55,56,46,53,48,56,49,51,50,44,51,57,46,48,56,56,54,51,93,44,91,45,55,56,46,52,48,51,57,48,55,44,51,57,46,49,54,55,55,51,56,93,44,91,45,55,56,46,52,49,57,52,50,50,44,51,57,46,50,53,55,52,55,54,93,44,91,45,55,56,46,51,52,48,52,49,53,44,51,57,46,51,53,51,54,50,56,93,44,91,45,55,56,46,51,52,55,48,56,55,44,51,57,46,52,54,54,48,49,50,93,44,91,45,55,56,46,52,54,56,53,56,49,44,51,57,46,53,49,54,54,49,57,93,44,91,45,55,56,46,54,53,55,48,55,51,44,51,57,46,53,51,53,49,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,111,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,54,50,57,44,34,98,101,100,115,34,58,52,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,53,53,53,56,48,52,44,51,53,46,53,49,53,48,51,57,93,44,91,45,55,57,46,55,54,55,57,53,55,44,51,53,46,53,49,49,52,56,52,93,44,91,45,55,57,46,54,57,55,55,55,51,44,51,53,46,50,53,49,51,55,57,93,44,91,45,55,57,46,54,49,52,51,48,52,44,51,53,46,49,54,51,54,55,57,93,44,91,45,55,57,46,53,54,54,52,57,55,44,51,53,46,48,54,52,48,49,49,93,44,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,44,91,45,55,57,46,51,51,53,52,55,55,44,51,53,46,49,54,49,53,56,56,93,44,91,45,55,57,46,50,50,57,55,49,50,44,51,53,46,50,49,48,54,48,50,93,44,91,45,55,57,46,48,57,55,53,57,49,44,51,53,46,49,55,52,50,50,53,93,44,91,45,55,57,46,48,57,53,56,48,56,44,51,53,46,49,57,50,48,54,56,93,44,91,45,55,57,46,49,56,51,53,53,54,44,51,53,46,51,48,55,49,54,49,93,44,91,45,55,57,46,50,54,53,55,49,51,44,51,53,46,51,52,53,50,55,57,93,44,91,45,55,57,46,51,53,48,48,55,51,44,51,53,46,53,49,56,48,48,50,93,44,91,45,55,57,46,53,53,53,56,48,52,44,51,53,46,53,49,53,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,57,49,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,51,50,57,55,49,44,51,56,46,54,57,54,55,53,57,93,44,91,45,57,57,46,48,51,50,52,48,56,44,51,56,46,51,52,56,51,51,52,93,44,91,45,57,57,46,48,51,50,51,48,57,44,51,56,46,50,54,49,50,50,55,93,44,91,45,57,56,46,57,49,50,53,56,51,44,51,56,46,50,54,49,48,56,56,93,44,91,45,57,56,46,52,55,57,56,52,49,44,51,56,46,50,54,48,55,57,93,44,91,45,57,56,46,52,56,48,51,55,55,44,51,56,46,53,50,49,56,52,49,93,44,91,45,57,56,46,52,56,54,49,48,56,44,51,56,46,54,57,54,56,55,56,93,44,91,45,57,57,46,48,51,50,57,55,49,44,51,56,46,54,57,54,55,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,83,108,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,53,50,49,49,44,52,54,46,53,52,48,56,54,49,93,44,91,45,49,48,52,46,48,52,53,53,53,57,44,52,54,46,50,56,48,48,56,49,93,44,91,45,49,48,50,46,57,57,53,50,52,53,44,52,54,46,50,56,48,54,53,49,93,44,91,45,49,48,50,46,57,50,52,53,52,55,44,52,54,46,50,56,49,53,49,56,93,44,91,45,49,48,50,46,57,50,55,52,53,49,44,52,54,46,54,51,48,48,50,93,44,91,45,49,48,51,46,50,51,49,54,53,54,44,52,54,46,54,50,57,55,54,52,93,44,91,45,49,48,51,46,54,48,57,50,55,51,44,52,54,46,54,50,57,56,50,50,93,44,91,45,49,48,51,46,56,48,48,56,55,51,44,52,54,46,54,50,57,55,51,49,93,44,91,45,49,48,51,46,56,48,48,56,56,44,52,54,46,53,52,48,54,55,49,93,44,91,45,49,48,52,46,48,52,53,50,49,49,44,52,54,46,53,52,48,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,55,52,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,51,55,53,56,55,44,51,50,46,54,54,55,51,52,49,93,44,91,45,57,49,46,55,51,57,54,53,49,44,51,50,46,53,54,49,50,57,57,93,44,91,45,57,49,46,57,49,51,48,53,55,44,51,50,46,53,48,53,57,48,50,93,44,91,45,57,50,46,48,48,52,51,52,44,51,50,46,51,56,48,52,57,57,93,44,91,45,57,50,46,48,51,52,51,57,55,44,51,50,46,50,55,55,48,54,56,93,44,91,45,57,49,46,57,55,50,56,56,44,51,50,46,49,54,54,55,52,50,93,44,91,45,57,49,46,56,57,52,55,50,57,44,51,50,46,49,53,49,53,53,93,44,91,45,57,49,46,55,55,54,53,56,55,44,51,50,46,50,51,57,49,48,54,93,44,91,45,57,49,46,55,53,57,48,57,56,44,51,50,46,51,49,55,55,49,52,93,44,91,45,57,49,46,54,50,53,49,50,49,44,51,50,46,52,48,53,51,52,52,93,44,91,45,57,49,46,52,55,54,55,51,57,44,51,50,46,52,48,53,56,48,56,93,44,91,45,57,49,46,52,53,55,54,52,51,44,51,50,46,53,51,55,56,48,55,93,44,91,45,57,49,46,52,52,53,50,57,57,44,51,50,46,53,56,49,57,53,54,93,44,91,45,57,49,46,53,57,54,48,50,55,44,51,50,46,53,56,50,49,57,50,93,44,91,45,57,49,46,54,51,55,53,56,55,44,51,50,46,54,54,55,51,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,50,50,55,51,51,44,52,50,46,48,56,55,57,49,54,93,44,91,45,57,57,46,50,50,49,56,51,44,52,49,46,55,52,48,55,57,50,93,44,91,45,57,57,46,50,49,50,48,49,54,44,52,49,46,55,52,48,54,49,51,93,44,91,45,57,56,46,55,53,57,49,51,51,44,52,49,46,55,52,48,51,56,50,93,44,91,45,57,56,46,55,54,49,49,53,53,44,52,50,46,48,56,56,53,49,56,93,44,91,45,57,57,46,50,50,50,55,51,51,44,52,50,46,48,56,55,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,55,53,50,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,57,49,46,57,56,56,55,49,56,44,51,48,46,51,54,56,53,57,56,93,44,91,45,57,49,46,57,52,57,48,52,55,44,51,48,46,50,55,54,55,55,49,93,44,91,45,57,49,46,57,55,57,57,51,50,44,51,48,46,49,56,50,53,56,53,93,44,91,45,57,49,46,57,53,48,57,57,56,44,51,48,46,48,55,51,50,49,51,93,44,91,45,57,49,46,56,49,57,50,49,54,44,51,48,46,48,52,52,48,49,51,93,44,91,45,57,49,46,55,54,53,49,54,56,44,51,48,46,49,48,56,52,57,53,93,44,91,45,57,49,46,54,53,56,56,56,54,44,51,48,46,49,48,56,50,50,54,93,44,91,45,57,49,46,54,48,48,51,53,52,44,51,48,46,48,51,51,49,54,57,93,44,91,45,57,49,46,51,54,56,56,51,53,44,51,48,46,48,53,56,56,50,52,93,44,91,45,57,49,46,52,54,51,56,51,51,44,51,48,46,49,48,50,52,57,51,93,44,91,45,57,49,46,53,48,56,50,54,56,44,51,48,46,50,52,48,50,57,55,93,44,91,45,57,49,46,54,50,49,48,53,53,44,51,48,46,51,48,57,57,51,56,93,44,91,45,57,49,46,54,52,48,48,57,57,44,51,48,46,52,52,50,55,50,56,93,44,91,45,57,49,46,55,48,48,57,51,51,44,51,48,46,52,57,55,52,51,51,93,44,91,45,57,49,46,55,53,54,49,57,51,44,51,48,46,52,57,55,55,51,56,93,44,91,45,57,49,46,54,57,52,51,44,51,48,46,52,48,49,55,52,56,93,44,91,45,57,49,46,56,54,57,50,55,51,44,51,48,46,52,49,55,50,51,53,93,44,91,45,57,49,46,57,56,56,55,49,56,44,51,48,46,51,54,56,53,57,56,93,93,93,44,91,91,91,45,57,49,46,52,55,49,57,53,49,44,50,57,46,57,53,53,57,56,57,93,44,91,45,57,49,46,51,55,51,54,52,50,44,50,57,46,56,51,52,52,48,49,93,44,91,45,57,49,46,51,56,54,52,57,49,44,50,57,46,55,56,51,54,56,49,93,44,91,45,57,49,46,49,48,48,48,49,44,50,57,46,54,57,57,52,48,50,93,44,91,45,57,49,46,48,57,50,55,52,56,44,50,57,46,56,48,49,53,55,52,93,44,91,45,57,49,46,49,56,50,56,49,55,44,50,57,46,56,52,54,49,55,50,93,44,91,45,57,49,46,50,53,53,50,50,57,44,50,57,46,57,55,49,52,53,55,93,44,91,45,57,49,46,52,55,49,57,53,49,44,50,57,46,57,53,53,57,56,57,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,83,117,109,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,56,53,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,52,55,56,56,55,44,51,50,46,57,50,57,48,56,50,93,44,91,45,56,56,46,51,56,56,55,57,55,44,51,50,46,53,55,56,49,50,51,93,44,91,45,56,56,46,52,50,49,52,53,51,44,51,50,46,51,48,56,54,56,93,44,91,45,56,55,46,57,51,48,54,54,49,44,51,50,46,51,49,48,53,55,52,93,44,91,45,56,56,46,48,52,54,51,51,53,44,51,50,46,51,55,55,48,56,55,93,44,91,45,56,56,46,48,51,49,54,50,51,44,51,50,46,52,51,51,54,49,93,44,91,45,56,55,46,56,53,51,52,50,44,51,50,46,53,51,50,48,56,54,93,44,91,45,56,55,46,57,50,56,54,56,57,44,51,50,46,54,51,50,50,56,52,93,44,91,45,56,56,46,48,53,53,48,48,52,44,51,50,46,54,52,54,52,56,50,93,44,91,45,56,56,46,49,51,50,54,56,53,44,51,50,46,56,51,50,56,53,51,93,44,91,45,56,56,46,50,48,55,51,49,54,44,51,50,46,57,50,52,55,56,50,93,44,91,45,56,56,46,49,55,49,56,53,50,44,51,50,46,57,57,53,56,54,93,44,91,45,56,56,46,51,52,48,52,51,50,44,51,50,46,57,57,49,49,57,57,93,44,91,45,56,56,46,51,52,55,56,56,55,44,51,50,46,57,50,57,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,87,105,110,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,55,53,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,51,52,55,50,53,44,51,52,46,51,48,54,57,57,55,93,44,91,45,56,55,46,54,51,54,49,49,56,44,51,52,46,48,48,50,50,48,51,93,44,91,45,56,55,46,49,53,49,48,51,54,44,51,51,46,57,57,51,50,50,53,93,44,91,45,56,55,46,49,49,49,57,57,50,44,51,51,46,57,57,50,51,56,53,93,44,91,45,56,55,46,49,48,57,57,49,49,44,51,52,46,50,57,57,50,57,57,93,44,91,45,56,55,46,53,50,57,55,50,50,44,51,52,46,51,48,52,53,57,56,93,44,91,45,56,55,46,54,51,52,55,50,53,44,51,52,46,51,48,54,57,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,83,101,109,105,110,111,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,53,48,56,54,44,34,98,101,100,115,34,58,51,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,49,52,52,52,54,44,50,56,46,55,56,52,57,53,53,93,44,91,45,56,49,46,52,53,57,55,50,56,44,50,56,46,54,52,48,49,57,54,93,44,91,45,56,49,46,51,50,55,56,57,44,50,56,46,54,49,48,50,55,55,93,44,91,45,56,48,46,57,56,55,50,53,44,50,56,46,54,49,50,57,57,55,93,44,91,45,56,49,46,49,48,53,55,53,44,50,56,46,56,50,56,53,52,49,93,44,91,45,56,49,46,51,50,48,52,55,51,44,50,56,46,56,51,52,53,51,93,44,91,45,56,49,46,51,54,54,57,52,44,50,56,46,56,55,57,50,50,55,93,44,91,45,56,49,46,52,49,52,52,52,54,44,50,56,46,55,56,52,57,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,70,111,114,114,101,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,53,49,55,44,34,98,101,100,115,34,58,53,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,53,49,54,49,54,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,52,53,49,48,55,51,44,51,49,46,51,52,54,51,56,51,93,44,91,45,56,57,46,51,52,55,56,54,51,44,51,49,46,51,52,54,55,93,44,91,45,56,57,46,51,52,56,57,53,44,51,49,46,48,49,48,51,55,93,44,91,45,56,57,46,51,52,48,56,48,54,44,51,48,46,57,48,57,57,49,50,93,44,91,45,56,57,46,49,51,55,57,54,55,44,51,48,46,57,48,57,56,55,55,93,44,91,45,56,57,46,49,52,54,48,57,50,44,51,49,46,52,51,52,48,53,50,93,44,91,45,56,57,46,51,57,57,49,55,56,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,52,53,49,54,49,54,44,51,49,46,52,51,52,48,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,73,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,53,54,52,44,34,98,101,100,115,34,58,57,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,48,50,55,54,49,44,52,50,46,55,54,57,56,56,93,44,91,45,56,52,46,54,48,48,52,48,51,44,52,50,46,52,50,49,57,56,52,93,44,91,45,56,52,46,49,52,48,55,49,51,44,52,50,46,52,50,52,54,49,49,93,44,91,45,56,52,46,49,53,56,49,56,57,44,52,50,46,55,55,54,54,51,57,93,44,91,45,56,52,46,51,54,51,54,53,57,44,52,50,46,55,55,53,55,55,56,93,44,91,45,56,52,46,54,48,50,55,54,49,44,52,50,46,55,54,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,83,104,97,119,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,50,56,52,44,34,98,101,100,115,34,58,49,48,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,51,57,48,54,44,51,57,46,49,50,54,53,50,55,93,44,91,45,57,53,46,57,52,54,55,53,52,44,51,57,46,48,57,56,54,56,53,93,44,91,45,57,53,46,57,52,54,53,56,55,44,51,56,46,56,54,57,57,55,51,93,44,91,45,57,53,46,53,48,48,55,50,52,44,51,56,46,56,54,57,56,49,53,93,44,91,45,57,53,46,53,48,48,50,53,52,44,51,57,46,48,53,54,54,53,54,93,44,91,45,57,53,46,53,57,54,55,53,57,44,51,57,46,48,54,52,54,55,50,93,44,91,45,57,53,46,53,56,57,52,55,50,44,51,57,46,50,49,54,48,56,49,93,44,91,45,57,54,46,48,51,53,53,55,51,44,51,57,46,50,49,54,53,50,93,44,91,45,57,54,46,48,51,57,48,54,44,51,57,46,49,50,54,53,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,97,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,54,55,50,55,57,44,52,51,46,56,53,48,54,56,54,93,44,91,45,57,55,46,57,54,52,53,56,54,44,52,51,46,52,57,57,48,52,49,93,44,91,45,57,55,46,54,48,55,48,49,50,44,52,51,46,52,57,57,56,50,54,93,44,91,45,57,55,46,54,48,56,53,49,55,44,52,51,46,56,52,57,48,53,57,93,44,91,45,57,55,46,56,53,49,49,49,44,52,51,46,56,52,57,56,53,55,93,44,91,45,57,55,46,57,54,55,50,55,57,44,52,51,46,56,53,48,54,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,73,116,97,115,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,50,48,51,44,34,98,101,100,115,34,58,49,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,49,54,50,55,57,44,52,55,46,52,52,52,56,50,56,93,44,91,45,57,52,46,51,50,55,53,51,49,44,52,55,46,52,49,53,56,52,52,93,44,91,45,57,52,46,49,49,55,57,57,57,44,52,55,46,52,56,48,55,52,52,93,44,91,45,57,52,46,48,50,53,57,56,49,44,52,55,46,51,53,49,51,56,56,93,44,91,45,57,51,46,55,55,54,48,55,52,44,52,55,46,50,55,55,57,56,54,93,44,91,45,57,51,46,55,55,53,50,53,55,44,52,55,46,48,51,48,52,49,56,93,44,91,45,57,51,46,48,53,53,57,52,51,44,52,55,46,48,50,54,52,49,53,93,44,91,45,57,51,46,48,54,57,53,44,52,55,46,51,57,51,57,49,53,93,44,91,45,57,51,46,48,54,49,50,53,51,44,52,55,46,55,50,48,49,56,55,93,44,91,45,57,51,46,48,56,49,49,53,56,44,52,55,46,56,57,49,56,55,93,44,91,45,57,51,46,55,55,53,55,55,50,44,52,55,46,56,57,56,57,53,93,44,91,45,57,51,46,55,55,54,49,55,51,44,52,55,46,56,52,54,52,48,52,93,44,91,45,57,52,46,52,49,56,53,52,51,44,52,55,46,56,52,53,56,49,54,93,44,91,45,57,52,46,52,49,54,50,55,57,44,52,55,46,52,52,52,56,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,56,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,55,49,52,51,53,53,44,51,57,46,53,54,54,51,51,49,93,44,91,45,49,48,51,46,55,49,57,54,54,52,44,51,56,46,56,54,54,56,50,55,93,44,91,45,49,48,52,46,48,53,53,53,50,56,44,51,56,46,56,54,56,56,54,56,93,44,91,45,49,48,52,46,48,53,51,57,50,49,44,51,56,46,53,50,50,51,57,51,93,44,91,45,49,48,51,46,53,48,52,54,54,54,44,51,56,46,53,49,54,52,48,57,93,44,91,45,49,48,51,46,49,55,50,56,55,56,44,51,56,46,53,50,53,51,49,53,93,44,91,45,49,48,51,46,49,55,50,57,52,51,44,51,56,46,54,49,50,52,53,93,44,91,45,49,48,51,46,49,54,51,48,50,53,44,51,57,46,48,51,55,54,49,93,44,91,45,49,48,51,46,49,53,52,51,55,54,44,51,57,46,53,54,53,54,53,52,93,44,91,45,49,48,51,46,55,48,55,48,55,50,44,51,57,46,53,54,54,50,57,53,93,44,91,45,49,48,51,46,55,49,52,51,53,53,44,51,57,46,53,54,54,51,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,51,53,57,44,34,98,101,100,115,34,58,49,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,57,57,51,51,57,52,44,52,51,46,49,56,51,51,55,54,93,44,91,45,55,53,46,57,49,55,49,56,57,44,52,51,46,48,56,53,55,55,57,93,44,91,45,55,53,46,56,57,54,48,55,57,44,52,50,46,55,57,48,57,54,52,93,44,91,45,55,53,46,56,56,57,56,51,50,44,52,50,46,55,50,51,56,52,52,93,44,91,45,55,53,46,50,57,53,56,55,55,44,52,50,46,55,52,52,49,48,54,93,44,91,45,55,53,46,50,52,55,57,54,51,44,52,50,46,56,55,49,54,48,52,93,44,91,45,55,53,46,52,51,55,49,54,55,44,52,50,46,56,54,51,51,49,57,93,44,91,45,55,53,46,53,52,50,56,48,51,44,52,50,46,57,51,49,55,55,52,93,44,91,45,55,53,46,53,53,50,55,55,52,44,52,51,46,48,51,55,53,53,52,93,44,91,45,55,53,46,55,51,56,51,57,54,44,52,51,46,49,54,52,55,54,54,93,44,91,45,55,53,46,56,56,52,50,55,53,44,52,51,46,49,53,53,53,54,50,93,44,91,45,55,53,46,57,57,51,51,57,52,44,52,51,46,49,56,51,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,56,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,52,51,56,49,50,44,52,51,46,56,48,51,54,56,55,93,44,91,45,55,51,46,52,57,52,51,49,52,44,52,51,46,54,53,51,57,54,54,93,44,91,45,55,51,46,54,50,56,57,52,44,52,51,46,52,56,54,51,57,49,93,44,91,45,55,51,46,53,57,52,57,54,44,52,51,46,51,48,54,49,49,56,93,44,91,45,55,51,46,53,55,51,51,52,50,44,52,51,46,49,48,48,53,52,53,93,44,91,45,55,51,46,54,51,53,52,54,51,44,52,50,46,57,52,49,50,57,93,44,91,45,55,51,46,50,55,52,50,57,52,44,52,50,46,57,52,51,54,53,50,93,44,91,45,55,51,46,50,53,52,54,51,51,44,52,51,46,51,49,52,54,55,53,93,44,91,45,55,51,46,50,52,54,56,52,52,44,52,51,46,53,49,55,50,53,50,93,44,91,45,55,51,46,51,48,50,53,53,51,44,52,51,46,54,50,53,55,48,57,93,44,91,45,55,51,46,52,50,55,57,49,44,52,51,46,54,51,52,52,50,56,93,44,91,45,55,51,46,51,54,50,56,50,51,44,52,51,46,55,53,51,48,56,52,93,44,91,45,55,51,46,51,55,57,50,56,49,44,52,51,46,56,48,56,52,56,49,93,44,91,45,55,51,46,52,51,56,49,50,44,52,51,46,56,48,51,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,53,54,52,44,34,98,101,100,115,34,58,49,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,53,50,48,56,44,51,57,46,54,51,56,51,52,53,93,44,91,45,56,54,46,50,52,57,56,56,53,44,51,57,46,54,51,51,54,52,53,93,44,91,45,56,54,46,50,53,49,54,56,52,44,51,57,46,51,52,49,54,55,50,93,44,91,45,56,54,46,48,56,53,54,48,49,44,51,57,46,51,52,52,49,56,57,93,44,91,45,56,53,46,57,53,50,48,48,53,44,51,57,46,51,52,55,51,55,51,93,44,91,45,56,53,46,57,53,50,48,56,44,51,57,46,54,51,56,51,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,52,53,34,44,34,78,65,77,69,34,58,34,84,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,49,53,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,53,57,52,56,51,54,44,51,51,46,51,56,56,52,56,57,93,44,91,45,49,48,50,46,53,57,53,48,50,51,44,51,50,46,57,53,56,56,51,49,93,44,91,45,49,48,50,46,50,48,56,53,50,44,51,50,46,57,53,56,57,53,54,93,44,91,45,49,48,50,46,48,55,54,50,49,52,44,51,50,46,57,53,57,55,48,50,93,44,91,45,49,48,50,46,48,55,53,57,50,57,44,51,51,46,51,56,57,53,56,54,93,44,91,45,49,48,50,46,53,57,52,56,51,54,44,51,51,46,51,56,56,52,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,51,55,48,49,50,44,51,53,46,55,55,57,51,48,50,93,44,91,45,49,48,52,46,48,50,49,55,48,50,44,51,53,46,55,56,49,52,57,52,93,44,91,45,49,48,51,46,57,55,54,57,48,49,44,51,53,46,56,48,49,55,52,55,93,44,91,45,49,48,51,46,55,50,51,54,48,57,44,51,53,46,52,50,50,55,56,53,93,44,91,45,49,48,51,46,54,51,55,48,53,51,44,51,53,46,51,56,57,54,54,50,93,44,91,45,49,48,51,46,51,55,57,55,51,44,51,53,46,51,57,54,55,57,54,93,44,91,45,49,48,51,46,51,55,53,49,49,55,44,51,53,46,55,51,57,53,49,54,93,44,91,45,49,48,51,46,51,54,52,57,55,55,44,51,54,46,48,56,54,48,53,93,44,91,45,49,48,51,46,55,57,52,53,50,53,44,51,54,46,48,56,53,55,51,56,93,44,91,45,49,48,51,46,55,57,51,57,57,49,44,51,54,46,49,55,51,57,55,50,93,44,91,45,49,48,52,46,48,48,56,56,50,51,44,51,54,46,50,49,56,49,49,53,93,44,91,45,49,48,52,46,52,51,54,48,53,54,44,51,54,46,50,49,56,53,51,52,93,44,91,45,49,48,52,46,51,54,53,55,50,52,44,51,54,46,48,52,52,50,57,93,44,91,45,49,48,52,46,51,55,48,49,50,44,51,53,46,55,55,57,51,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,84,97,108,108,97,100,101,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,53,54,53,44,34,98,101,100,115,34,58,50,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,52,53,53,54,50,44,51,51,46,54,55,57,48,57,56,93,44,91,45,56,54,46,49,56,57,56,49,50,44,51,51,46,53,52,55,50,51,56,93,44,91,45,56,54,46,51,55,56,54,54,53,44,51,51,46,51,57,48,57,56,51,93,44,91,45,56,54,46,51,53,55,51,52,44,51,51,46,50,57,54,57,49,55,93,44,91,45,56,54,46,53,48,51,49,50,55,44,51,51,46,49,55,57,49,52,52,93,44,91,45,56,54,46,52,57,49,48,50,57,44,51,51,46,49,48,50,57,52,52,93,44,91,45,56,54,46,49,55,52,51,55,44,51,51,46,49,48,52,51,57,52,93,44,91,45,56,54,46,49,49,56,49,57,56,44,51,51,46,50,57,54,51,50,93,44,91,45,56,53,46,57,56,48,50,57,51,44,51,51,46,50,57,52,49,57,93,44,91,45,56,53,46,56,53,49,56,57,44,51,51,46,52,57,56,55,52,50,93,44,91,45,56,53,46,55,57,54,48,53,52,44,51,51,46,53,53,54,50,50,93,44,91,45,56,53,46,57,57,52,57,51,53,44,51,51,46,53,56,54,52,55,53,93,44,91,45,56,54,46,48,53,48,54,54,57,44,51,51,46,54,55,52,53,57,93,44,91,45,56,54,46,49,52,53,53,54,50,44,51,51,46,54,55,57,48,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,76,97,110,103,108,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,50,52,56,50,52,44,52,53,46,52,54,55,49,54,54,93,44,91,45,56,57,46,52,50,53,57,55,49,44,52,53,46,49,49,57,48,57,56,93,44,91,45,56,57,46,50,50,52,50,49,52,44,52,53,46,49,49,56,53,54,55,93,44,91,45,56,57,46,50,50,51,56,49,52,44,52,53,46,48,50,57,50,52,54,93,44,91,45,56,56,46,57,56,49,54,56,44,52,53,46,48,50,56,57,49,55,93,44,91,45,56,56,46,57,56,50,49,53,57,44,52,53,46,49,49,56,48,50,54,93,44,91,45,56,56,46,54,52,49,49,53,57,44,52,53,46,49,49,55,51,52,54,93,44,91,45,56,56,46,54,56,48,48,54,54,44,52,53,46,50,48,52,57,57,52,93,44,91,45,56,56,46,54,55,55,57,57,54,44,52,53,46,51,55,56,54,56,51,93,44,91,45,56,56,46,57,50,54,48,50,53,44,52,53,46,51,55,56,54,51,55,93,44,91,45,56,57,46,48,52,54,52,57,44,52,53,46,52,54,52,52,51,57,93,44,91,45,56,57,46,52,50,52,56,50,52,44,52,53,46,52,54,55,49,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,70,111,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,57,54,52,51,52,44,51,51,46,56,51,53,57,54,55,93,44,91,45,57,57,46,54,57,52,55,56,49,44,51,51,46,56,50,55,49,53,56,93,44,91,45,57,57,46,53,52,50,48,48,56,44,51,51,46,55,57,51,50,52,52,93,44,91,45,57,57,46,52,55,52,52,57,56,44,51,51,46,55,51,51,56,52,57,93,44,91,45,57,57,46,52,55,53,54,53,44,51,51,46,56,51,52,48,48,53,93,44,91,45,57,57,46,52,55,53,50,57,52,44,51,52,46,48,56,53,54,49,56,93,44,91,45,57,57,46,53,55,51,49,54,49,44,51,52,46,48,54,51,54,48,56,93,44,91,45,57,57,46,55,55,50,48,52,51,44,51,52,46,48,57,51,50,56,54,93,44,91,45,57,57,46,57,57,55,54,50,49,44,51,52,46,50,50,52,51,53,53,93,44,91,45,49,48,48,46,48,52,55,48,50,56,44,51,52,46,50,50,57,55,56,93,44,91,45,49,48,48,46,48,52,56,52,56,44,51,51,46,56,51,53,57,55,52,93,44,91,45,57,57,46,57,57,54,52,51,52,44,51,51,46,56,51,53,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,117,101,110,97,32,86,105,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,54,48,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,56,56,49,56,50,44,52,50,46,57,48,57,56,57,55,93,44,91,45,57,53,46,51,56,56,48,49,44,52,50,46,53,54,49,55,52,50,93,44,91,45,57,52,46,57,49,52,52,56,53,44,52,50,46,53,54,48,51,48,57,93,44,91,45,57,52,46,57,49,51,56,57,44,52,50,46,57,48,57,55,93,44,91,45,57,53,46,51,56,56,49,56,50,44,52,50,46,57,48,57,56,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,77,105,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,55,57,52,56,55,44,52,49,46,48,53,51,50,57,57,93,44,91,45,57,53,46,56,49,51,52,54,53,44,52,48,46,57,48,49,54,57,51,93,44,91,45,57,53,46,51,56,52,57,54,52,44,52,48,46,57,48,49,53,53,93,44,91,45,57,53,46,51,56,52,51,52,57,44,52,49,46,49,54,48,48,49,49,93,44,91,45,57,53,46,56,56,48,53,50,49,44,52,49,46,49,53,57,56,55,52,93,44,91,45,57,53,46,56,55,57,52,56,55,44,52,49,46,48,53,51,50,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,56,53,34,44,34,78,65,77,69,34,58,34,82,101,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,55,53,55,54,50,49,44,51,48,46,48,55,52,49,51,50,93,44,91,45,57,57,46,57,54,55,54,50,54,44,51,48,46,48,56,50,51,53,54,93,44,91,45,49,48,48,46,48,52,53,55,57,49,44,50,57,46,54,57,52,57,50,52,93,44,91,45,49,48,48,46,48,49,52,49,56,56,44,50,57,46,54,50,51,52,57,53,93,44,91,45,57,57,46,54,48,51,49,51,44,50,57,46,54,50,55,49,56,49,93,44,91,45,57,57,46,54,48,50,55,55,54,44,50,57,46,57,48,55,54,55,57,93,44,91,45,57,57,46,54,57,49,50,49,53,44,50,57,46,57,48,56,53,56,50,93,44,91,45,57,57,46,54,56,57,56,55,57,44,51,48,46,48,55,51,57,52,56,93,44,91,45,57,57,46,55,53,55,54,50,49,44,51,48,46,48,55,52,49,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,48,48,56,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,52,56,53,57,53,44,52,48,46,52,52,51,57,56,57,93,44,91,45,56,51,46,50,52,56,52,50,56,44,52,48,46,50,52,52,52,54,54,93,44,91,45,56,51,46,49,54,57,57,56,49,44,52,48,46,49,52,51,48,56,55,93,44,91,45,56,50,46,55,54,49,56,50,55,44,52,48,46,49,50,53,56,53,53,93,44,91,45,56,50,46,55,53,48,55,52,55,44,52,48,46,50,55,54,57,57,54,93,44,91,45,56,50,46,55,52,52,57,51,49,44,52,48,46,51,52,57,54,48,51,93,44,91,45,56,50,46,57,50,57,53,56,56,44,52,48,46,51,53,56,49,50,51,93,44,91,45,56,51,46,48,50,48,55,57,56,44,52,48,46,52,51,51,55,57,53,93,44,91,45,56,51,46,50,52,56,53,57,53,44,52,48,46,52,52,51,57,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,70,111,114,115,121,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,49,53,55,51,44,34,98,101,100,115,34,58,50,49,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,44,91,45,56,48,46,52,53,49,54,57,54,44,51,54,46,50,54,49,53,48,50,93,44,91,45,56,48,46,52,53,50,51,50,50,44,51,54,46,50,52,49,52,49,57,93,44,91,45,56,48,46,52,51,57,49,48,52,44,51,54,46,49,51,57,57,52,57,93,44,91,45,56,48,46,52,57,54,50,56,51,44,51,54,46,48,52,54,53,52,53,93,44,91,45,56,48,46,51,57,52,51,48,55,44,51,53,46,57,55,50,55,54,50,93,44,91,45,56,48,46,50,49,51,55,51,44,51,54,46,48,50,54,56,48,56,93,44,91,45,56,48,46,48,52,51,50,51,56,44,51,54,46,48,49,48,55,53,56,93,44,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,53,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,49,48,34,44,34,78,65,77,69,34,58,34,67,97,114,115,111,110,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,52,54,55,44,34,98,101,100,115,34,58,50,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,48,52,50,57,55,44,51,57,46,49,54,53,54,48,51,93,44,91,45,49,50,48,46,48,48,51,52,50,57,44,51,57,46,49,49,50,54,56,55,93,44,91,45,49,49,57,46,55,54,49,50,49,51,44,51,57,46,49,49,52,48,48,57,93,44,91,45,49,49,57,46,53,53,49,48,50,44,51,57,46,48,56,53,55,57,49,93,44,91,45,49,49,57,46,53,54,51,54,56,44,51,57,46,49,57,53,52,49,53,93,44,91,45,49,49,57,46,55,49,50,54,52,53,44,51,57,46,50,53,48,56,55,49,93,44,91,45,49,49,57,46,56,56,48,55,56,55,44,51,57,46,49,54,53,53,48,57,93,44,91,45,49,50,48,46,48,48,52,50,57,55,44,51,57,46,49,54,53,54,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,48,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,56,48,51,52,44,52,49,46,56,54,50,57,57,57,93,44,91,45,57,52,46,50,56,48,48,53,55,44,52,49,46,54,48,49,51,49,50,93,44,91,45,57,52,46,50,52,49,53,57,51,44,52,49,46,53,48,51,54,55,57,93,44,91,45,57,51,46,55,57,48,54,49,50,44,52,49,46,53,49,49,57,49,54,93,44,91,45,57,51,46,56,49,52,50,56,50,44,52,49,46,54,48,48,52,53,54,93,44,91,45,57,51,46,56,49,53,55,50,49,44,52,49,46,56,54,51,52,49,57,93,44,91,45,57,52,46,49,54,52,49,51,56,44,52,49,46,56,54,51,50,52,52,93,44,91,45,57,52,46,50,56,48,51,52,44,52,49,46,56,54,50,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,67,97,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,44,91,45,49,48,49,46,48,56,54,50,56,49,44,51,53,46,49,56,50,49,52,93,44,91,45,49,48,49,46,48,56,53,57,51,53,44,51,53,46,54,49,57,49,48,50,93,44,91,45,49,48,49,46,48,56,54,48,54,56,44,51,53,46,54,50,53,50,54,55,93,44,91,45,49,48,49,46,54,50,50,56,51,49,44,51,53,46,54,50,52,48,53,55,93,44,91,45,49,48,49,46,54,50,50,56,44,51,53,46,54,50,48,49,57,54,93,44,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,49,34,44,34,78,65,77,69,34,58,34,83,117,109,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,51,53,50,44,34,98,101,100,115,34,58,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,56,49,54,53,55,44,51,50,46,50,50,57,55,48,51,93,44,91,45,56,52,46,49,56,51,53,54,57,44,51,50,46,49,53,56,52,57,51,93,44,91,45,56,52,46,52,51,48,50,49,56,44,51,50,46,49,54,54,50,53,55,93,44,91,45,56,52,46,52,51,49,50,49,52,44,51,50,46,49,51,52,48,53,56,93,44,91,45,56,52,46,52,52,51,56,48,55,44,51,49,46,57,54,55,52,53,54,93,44,91,45,56,52,46,51,51,56,50,52,53,44,51,49,46,56,55,51,53,57,49,93,44,91,45,56,52,46,51,51,56,49,52,51,44,51,49,46,57,49,54,49,57,93,44,91,45,56,51,46,57,50,50,52,57,52,44,51,49,46,57,48,57,54,53,51,93,44,91,45,56,51,46,57,54,49,50,55,56,44,51,50,46,48,51,48,53,57,53,93,44,91,45,56,52,46,48,50,55,54,44,51,50,46,49,55,49,49,54,53,93,44,91,45,56,52,46,49,56,49,54,53,55,44,51,50,46,50,50,57,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,51,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,52,57,55,50,57,44,51,55,46,51,49,55,53,57,52,93,44,91,45,57,48,46,55,51,53,52,53,51,44,51,55,46,50,55,49,48,52,93,44,91,45,57,48,46,55,55,57,53,53,51,44,51,55,46,48,53,48,51,50,52,93,44,91,45,57,48,46,54,55,56,53,54,50,44,51,54,46,57,50,54,52,57,93,44,91,45,57,48,46,50,53,56,53,54,51,44,51,54,46,57,50,50,48,52,51,93,44,91,45,57,48,46,49,49,49,50,52,55,44,51,55,46,48,52,49,50,48,53,93,44,91,45,57,48,46,50,50,51,50,51,44,51,55,46,48,56,54,53,51,52,93,44,91,45,57,48,46,50,49,55,54,53,55,44,51,55,46,51,49,52,57,54,55,93,44,91,45,57,48,46,53,52,57,55,50,57,44,51,55,46,51,49,55,53,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,57,57,53,44,34,98,101,100,115,34,58,55,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,56,55,50,48,51,44,51,52,46,56,49,56,56,49,49,93,44,91,45,56,50,46,55,56,55,55,53,49,44,51,52,46,54,55,50,53,57,52,93,44,91,45,56,50,46,56,52,48,49,53,53,44,51,52,46,54,50,51,49,50,93,44,91,45,56,50,46,56,52,52,56,49,55,44,51,52,46,54,49,56,55,49,57,93,44,91,45,56,50,46,56,53,53,49,48,51,44,51,52,46,54,48,57,48,48,55,93,44,91,45,56,50,46,57,57,50,50,51,50,44,51,52,46,52,55,57,50,53,56,93,44,91,45,56,50,46,56,54,52,52,44,51,52,46,52,53,57,55,56,53,93,44,91,45,56,50,46,55,55,51,52,49,44,51,52,46,50,56,56,56,54,52,93,44,91,45,56,50,46,55,52,50,49,48,51,44,51,52,46,50,49,49,57,48,51,93,44,91,45,56,50,46,51,49,51,57,57,54,44,51,52,46,52,56,52,48,48,50,93,44,91,45,56,50,46,52,54,54,53,48,51,44,51,52,46,54,54,53,49,56,52,93,44,91,45,56,50,46,52,56,55,50,48,51,44,51,52,46,56,49,56,56,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,97,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,55,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,55,53,56,53,50,44,52,50,46,52,51,51,50,49,56,93,44,91,45,49,48,54,46,54,53,52,55,56,49,44,52,50,46,52,51,49,48,57,52,93,44,91,45,49,48,55,46,53,50,50,57,50,51,44,52,50,46,52,51,52,51,53,54,93,44,91,45,49,48,55,46,53,50,50,55,50,50,44,52,50,46,50,54,49,55,53,54,93,44,91,45,49,48,55,46,53,48,51,56,50,49,44,52,50,46,48,56,55,57,53,55,93,44,91,45,49,48,55,46,53,48,57,55,50,44,52,49,46,54,53,55,52,53,50,93,44,91,45,49,48,55,46,57,50,57,55,51,54,44,52,49,46,54,53,57,53,57,54,93,44,91,45,49,48,55,46,57,49,56,52,50,49,44,52,49,46,48,48,50,48,51,54,93,44,91,45,49,48,55,46,51,49,55,55,57,52,44,52,49,46,48,48,50,57,50,93,44,91,45,49,48,54,46,56,53,55,55,55,51,44,52,49,46,48,48,50,54,54,51,93,44,91,45,49,48,54,46,51,50,49,49,54,53,44,52,48,46,57,57,57,49,50,51,93,44,91,45,49,48,54,46,51,50,50,56,56,53,44,52,49,46,51,57,53,49,52,49,93,44,91,45,49,48,54,46,48,54,56,52,48,54,44,52,49,46,51,57,53,48,50,56,93,44,91,45,49,48,54,46,48,55,51,52,48,51,44,52,50,46,52,51,51,50,51,54,93,44,91,45,49,48,54,46,48,55,53,56,53,50,44,52,50,46,52,51,51,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,83,105,108,118,101,114,32,66,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,56,49,52,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,53,55,55,49,48,54,44,52,54,46,49,55,56,57,56,49,93,44,91,45,49,49,50,46,55,55,55,49,50,44,52,54,46,49,51,53,56,50,54,93,44,91,45,49,49,50,46,57,50,52,53,53,50,44,52,53,46,57,51,54,52,52,51,93,44,91,45,49,49,51,46,48,56,53,53,49,55,44,52,53,46,56,54,48,54,52,56,93,44,91,45,49,49,51,46,48,48,48,49,53,53,44,52,53,46,56,48,55,55,52,55,93,44,91,45,49,49,50,46,55,53,57,51,51,57,44,52,53,46,55,52,56,50,48,57,93,44,91,45,49,49,50,46,54,56,55,48,53,52,44,52,53,46,54,50,52,56,53,52,93,44,91,45,49,49,50,46,53,49,53,52,53,51,44,52,53,46,55,52,54,55,48,50,93,44,91,45,49,49,50,46,49,57,48,50,54,57,44,52,53,46,55,52,56,53,48,51,93,44,91,45,49,49,50,46,52,48,49,52,52,49,44,52,53,46,56,51,49,56,53,49,93,44,91,45,49,49,50,46,52,54,54,51,50,57,44,52,54,46,48,57,50,57,55,57,93,44,91,45,49,49,50,46,53,55,55,49,48,54,44,52,54,46,49,55,56,57,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,83,116,101,112,104,101,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,52,51,51,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,50,54,52,54,54,44,52,50,46,53,48,53,55,55,50,93,44,91,45,56,57,46,57,49,57,55,55,50,44,52,50,46,49,57,54,56,56,49,93,44,91,45,56,57,46,54,56,56,52,56,54,44,52,50,46,49,57,57,49,49,50,93,44,91,45,56,57,46,51,57,54,49,57,50,44,52,50,46,50,48,49,57,49,54,93,44,91,45,56,57,46,52,48,49,52,50,51,44,52,50,46,53,48,48,53,53,52,93,44,91,45,56,57,46,56,51,55,53,56,55,44,52,50,46,53,48,53,55,49,93,44,91,45,56,57,46,57,50,54,52,54,54,44,52,50,46,53,48,53,55,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,76,97,112,101,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,50,48,50,44,34,98,101,100,115,34,58,49,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,54,48,55,51,51,44,52,51,46,50,50,51,49,51,49,93,44,91,45,56,51,46,52,53,51,51,54,52,44,52,50,46,56,56,48,52,51,50,93,44,91,45,56,51,46,49,48,50,56,57,49,44,52,50,46,56,56,56,54,52,55,93,44,91,45,56,50,46,57,56,51,54,52,55,44,52,50,46,56,57,51,55,52,49,93,44,91,45,56,50,46,57,57,54,50,53,55,44,52,51,46,49,53,52,48,57,57,93,44,91,45,56,51,46,48,48,48,52,51,44,52,51,46,50,56,52,57,49,51,93,44,91,45,56,51,46,49,50,48,51,57,54,44,52,51,46,51,50,55,48,52,57,93,44,91,45,56,51,46,51,53,52,52,49,56,44,52,51,46,51,50,50,50,53,55,93,44,91,45,56,51,46,52,54,48,55,51,51,44,52,51,46,50,50,51,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,105,98,111,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,53,51,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,56,56,55,48,55,44,51,51,46,48,49,55,52,51,51,93,44,91,45,57,51,46,50,51,56,54,48,55,44,51,51,46,48,49,55,57,57,50,93,44,91,45,57,51,46,50,51,55,51,56,49,44,51,50,46,55,49,54,50,53,93,44,91,45,57,51,46,49,55,56,55,54,55,44,51,50,46,53,56,52,57,49,54,93,44,91,45,57,50,46,56,56,48,56,48,53,44,51,50,46,53,56,53,50,55,55,93,44,91,45,57,50,46,56,50,56,53,51,53,44,51,50,46,55,53,56,56,49,52,93,44,91,45,57,50,46,55,50,53,52,51,57,44,51,50,46,55,53,57,53,52,93,44,91,45,57,50,46,55,50,52,55,52,44,51,51,46,48,49,52,51,57,93,44,91,45,57,50,46,57,56,56,55,48,55,44,51,51,46,48,49,55,52,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,89,97,108,111,98,117,115,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,50,49,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,50,49,48,53,44,51,52,46,49,57,50,53,52,53,93,44,91,45,56,57,46,57,51,49,52,56,53,44,51,52,46,49,54,52,51,48,51,93,44,91,45,56,57,46,57,50,54,48,57,57,44,51,51,46,56,57,55,57,53,55,93,44,91,45,56,57,46,55,54,57,48,53,44,51,51,46,56,54,55,51,51,52,93,44,91,45,56,57,46,53,48,55,51,53,51,44,51,51,46,56,54,55,52,54,57,93,44,91,45,56,57,46,53,48,57,55,52,56,44,51,52,46,49,54,50,48,56,50,93,44,91,45,56,57,46,55,50,49,48,53,44,51,52,46,49,57,50,53,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,97,114,105,99,97,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,48,53,49,52,54,49,44,49,56,46,49,55,52,48,53,51,93,44,91,45,54,54,46,57,55,55,56,53,53,44,49,56,46,49,52,51,55,57,57,93,44,91,45,54,54,46,57,50,54,53,49,55,44,49,56,46,49,53,49,50,54,55,93,44,91,45,54,54,46,56,51,54,55,54,44,49,56,46,49,55,48,53,53,51,93,44,91,45,54,54,46,56,57,55,57,54,52,44,49,56,46,49,56,55,55,52,52,93,44,91,45,54,55,46,48,49,57,56,51,54,44,49,56,46,49,57,53,52,55,49,93,44,91,45,54,55,46,48,53,49,52,54,49,44,49,56,46,49,55,52,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,75,97,108,107,97,115,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,52,54,51,44,34,98,101,100,115,34,58,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,51,50,56,51,54,44,52,52,46,56,49,50,51,55,50,93,44,91,45,56,53,46,51,51,52,44,52,52,46,53,49,50,51,48,51,93,44,91,45,56,52,46,56,53,48,57,50,57,44,52,52,46,53,49,49,48,54,57,93,44,91,45,56,52,46,56,52,55,51,48,57,44,52,52,46,56,53,56,48,51,55,93,44,91,45,56,53,46,50,57,49,55,49,54,44,52,52,46,56,53,57,54,48,56,93,44,91,45,56,53,46,51,51,50,56,51,54,44,52,52,46,56,49,50,51,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,103,117,97,100,105,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,54,54,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,50,48,55,57,51,55,44,49,56,46,52,52,50,50,56,93,44,91,45,54,55,46,49,51,50,50,49,44,49,56,46,51,56,57,51,57,49,93,44,91,45,54,55,46,48,53,54,53,48,55,44,49,56,46,52,54,48,57,53,52,93,44,91,45,54,55,46,49,48,52,57,54,53,44,49,56,46,53,54,54,53,54,93,44,91,45,54,55,46,50,48,53,55,52,52,44,49,56,46,53,49,55,49,50,56,93,44,91,45,54,55,46,50,48,55,57,51,55,44,49,56,46,52,52,50,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,69,118,97,110,103,101,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,54,51,54,44,34,98,101,100,115,34,58,50,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,57,55,55,52,49,44,51,48,46,56,57,54,49,48,49,93,44,91,45,57,50,46,53,57,55,51,53,51,44,51,48,46,53,56,49,54,50,51,93,44,91,45,57,50,46,54,51,48,51,52,55,44,51,48,46,52,56,55,56,55,51,93,44,91,45,57,50,46,54,51,49,57,56,55,44,51,48,46,52,56,49,49,52,55,93,44,91,45,57,50,46,52,57,51,50,53,57,44,51,48,46,52,56,48,52,57,57,93,44,91,45,57,50,46,52,50,48,55,56,44,51,48,46,53,51,56,56,50,93,44,91,45,57,50,46,50,49,49,50,52,51,44,51,48,46,53,54,56,49,50,53,93,44,91,45,57,50,46,49,55,50,52,49,53,44,51,48,46,55,54,55,57,51,53,93,44,91,45,57,50,46,50,49,50,55,49,49,44,51,48,46,56,52,56,54,48,55,93,44,91,45,57,50,46,50,56,48,55,51,56,44,51,48,46,57,54,53,48,55,49,93,44,91,45,57,50,46,51,56,48,56,52,51,44,51,49,46,48,48,48,57,50,57,93,44,91,45,57,50,46,53,50,52,54,52,54,44,51,48,46,56,57,51,51,50,56,93,44,91,45,57,50,46,53,57,55,55,52,49,44,51,48,46,56,57,54,49,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,97,114,100,101,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,54,50,44,34,98,101,100,115,34,58,50,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,56,51,57,52,52,44,51,53,46,51,57,55,49,50,54,93,44,91,45,56,57,46,49,57,56,50,56,56,44,51,52,46,57,57,52,52,56,52,93,44,91,45,56,57,46,48,49,55,49,50,55,44,51,52,46,57,57,52,57,55,49,93,44,91,45,56,56,46,56,50,51,48,53,49,44,51,52,46,57,57,53,50,50,49,93,44,91,45,56,56,46,55,56,54,54,49,50,44,51,52,46,57,57,53,50,53,50,93,44,91,45,56,56,46,55,56,49,55,54,56,44,51,53,46,50,52,55,53,56,55,93,44,91,45,56,56,46,56,52,49,54,48,55,44,51,53,46,52,50,55,56,50,54,93,44,91,45,56,57,46,48,55,56,56,55,54,44,51,53,46,52,51,49,52,50,56,93,44,91,45,56,57,46,49,56,51,57,52,52,44,51,53,46,51,57,55,49,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,67,111,99,104,105,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,50,55,57,44,34,98,101,100,115,34,58,49,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,52,53,49,48,48,50,44,51,50,46,52,50,55,53,52,54,93,44,91,45,49,49,48,46,52,53,50,51,44,51,49,46,55,51,49,50,49,57,93,44,91,45,49,49,48,46,52,53,57,55,53,49,44,51,49,46,51,51,50,57,49,52,93,44,91,45,49,48,57,46,48,53,48,48,51,51,44,51,49,46,51,51,50,51,52,56,93,44,91,45,49,48,57,46,48,52,55,57,49,56,44,51,50,46,52,50,54,51,55,54,93,44,91,45,49,48,57,46,49,49,52,49,56,44,51,50,46,52,50,54,51,53,51,93,44,91,45,49,49,48,46,52,53,49,48,48,50,44,51,50,46,52,50,55,53,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,72,105,100,97,108,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,55,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,55,57,49,56,44,51,50,46,52,50,54,51,55,54,93,44,91,45,49,48,57,46,48,53,48,48,51,51,44,51,49,46,51,51,50,51,52,56,93,44,91,45,49,48,56,46,50,48,56,52,55,44,51,49,46,51,51,51,51,55,51,93,44,91,45,49,48,56,46,50,48,56,52,56,52,44,51,49,46,55,56,51,54,57,56,93,44,91,45,49,48,56,46,50,49,55,49,52,51,44,51,49,46,56,54,52,49,51,57,93,44,91,45,49,48,56,46,53,50,52,53,51,56,44,51,49,46,56,54,51,54,49,52,93,44,91,45,49,48,56,46,53,51,55,54,55,54,44,51,50,46,48,55,57,56,51,50,93,44,91,45,49,48,56,46,53,51,55,48,49,49,44,51,50,46,53,49,54,54,49,56,93,44,91,45,49,48,56,46,54,52,54,55,55,44,51,50,46,53,49,54,53,50,49,93,44,91,45,49,48,56,46,54,52,54,53,50,51,44,51,50,46,54,48,51,55,51,93,44,91,45,49,48,56,46,56,53,50,57,49,57,44,51,50,46,54,48,51,51,55,52,93,44,91,45,49,48,56,46,56,53,52,53,56,49,44,51,50,46,55,55,55,50,55,54,93,44,91,45,49,48,57,46,48,52,55,54,52,51,44,51,50,46,55,55,55,56,48,50,93,44,91,45,49,48,57,46,48,52,55,57,49,56,44,51,50,46,52,50,54,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,68,105,118,105,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,54,57,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,56,54,56,57,44,52,56,46,57,57,57,53,57,51,93,44,91,45,49,48,52,46,48,52,55,57,50,52,44,52,56,46,54,51,51,57,49,49,93,44,91,45,49,48,50,46,56,56,53,55,55,53,44,52,56,46,54,51,51,50,57,56,93,44,91,45,49,48,50,46,57,51,57,57,51,50,44,52,56,46,55,50,48,52,54,57,93,44,91,45,49,48,50,46,57,51,56,57,53,55,44,52,56,46,57,57,57,51,51,93,44,91,45,49,48,52,46,48,52,56,54,56,57,44,52,56,46,57,57,57,53,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,83,97,110,32,66,101,114,110,97,114,100,105,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,53,52,49,51,44,34,98,101,100,115,34,58,54,50,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,54,54,55,50,57,50,44,51,52,46,56,50,50,53,50,54,93,44,91,45,49,49,55,46,54,52,54,51,55,52,44,51,52,46,50,56,57,49,55,93,44,91,45,49,49,55,46,54,55,56,53,48,49,44,51,52,46,49,54,49,57,57,51,93,44,91,45,49,49,55,46,55,56,51,50,56,55,44,51,51,46,57,52,54,52,49,49,93,44,91,45,49,49,55,46,54,55,51,49,51,52,44,51,51,46,56,55,49,48,48,53,93,44,91,45,49,49,55,46,53,53,56,51,49,50,44,51,52,46,48,51,51,52,53,49,93,44,91,45,49,49,55,46,50,50,53,51,55,50,44,51,52,46,48,48,52,51,49,52,93,44,91,45,49,49,54,46,57,50,57,53,53,56,44,51,52,46,48,51,52,49,49,51,93,44,91,45,49,49,54,46,51,48,48,54,51,49,44,51,52,46,48,51,50,53,52,52,93,44,91,45,49,49,53,46,51,49,54,50,49,50,44,51,52,46,48,51,52,49,49,93,44,91,45,49,49,53,46,51,49,54,48,54,53,44,51,52,46,48,55,55,56,52,51,93,44,91,45,49,49,52,46,52,51,53,52,50,57,44,51,52,46,48,55,57,55,50,55,93,44,91,45,49,49,52,46,50,53,52,49,52,49,44,51,52,46,49,55,51,56,51,93,44,91,45,49,49,52,46,49,51,56,50,56,50,44,51,52,46,51,48,51,50,51,93,44,91,45,49,49,52,46,51,51,57,54,50,55,44,51,52,46,52,53,49,52,51,53,93,44,91,45,49,49,52,46,52,51,53,54,55,49,44,51,52,46,53,57,51,56,52,49,93,44,91,45,49,49,52,46,52,55,49,54,50,44,51,52,46,55,49,50,57,54,54,93,44,91,45,49,49,52,46,54,50,56,50,55,54,44,51,52,46,56,54,51,53,57,54,93,44,91,45,49,49,52,46,54,51,51,52,56,55,44,51,53,46,48,48,49,56,53,55,93,44,91,45,49,49,53,46,54,52,56,51,53,55,44,51,53,46,56,48,57,50,49,49,93,44,91,45,49,49,53,46,55,51,53,56,57,49,44,51,53,46,55,57,51,54,50,93,44,91,45,49,49,54,46,56,55,48,54,51,50,44,51,53,46,55,57,53,51,55,54,93,44,91,45,49,49,55,46,54,51,50,57,57,54,44,51,53,46,55,57,55,50,53,49,93,44,91,45,49,49,55,46,54,51,50,48,49,49,44,51,52,46,56,50,50,50,55,93,44,91,45,49,49,55,46,54,54,55,50,57,50,44,51,52,46,56,50,50,53,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,101,122,117,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,57,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,44,91,45,49,48,56,46,57,49,55,48,56,49,44,51,55,46,54,51,49,57,48,50,93,44,91,45,49,48,57,46,48,52,51,51,54,54,44,51,55,46,52,56,52,56,49,56,93,44,91,45,49,48,57,46,48,52,53,49,55,50,44,51,54,46,57,57,56,57,55,55,93,44,91,45,49,48,56,46,51,55,57,51,48,51,44,51,54,46,57,57,57,54,48,56,93,44,91,45,49,48,56,46,50,57,48,52,53,57,44,51,55,46,49,52,53,57,55,53,93,44,91,45,49,48,56,46,50,57,49,54,55,54,44,51,55,46,50,50,50,48,48,51,93,44,91,45,49,48,56,46,50,48,52,56,51,54,44,51,55,46,51,52,52,48,56,93,44,91,45,49,48,56,46,48,51,51,49,52,54,44,51,55,46,52,54,52,57,52,93,44,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,51,49,51,55,57,44,51,50,46,50,50,55,54,54,54,93,44,91,45,56,56,46,57,49,51,56,52,55,44,51,50,46,50,50,52,49,56,54,93,44,91,45,56,56,46,57,49,48,52,53,57,44,51,49,46,56,50,54,54,52,57,93,44,91,45,56,56,46,54,50,50,51,57,52,44,51,49,46,56,53,55,49,57,51,93,44,91,45,56,56,46,52,55,51,50,50,55,44,51,49,46,56,57,51,56,53,54,93,44,91,45,56,56,46,52,51,49,51,55,57,44,51,50,46,50,50,55,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,50,48,55,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,50,56,52,48,55,44,52,49,46,52,57,48,57,50,49,93,44,91,45,57,51,46,51,50,55,56,56,54,44,52,49,46,49,54,48,54,53,57,93,44,91,45,57,51,46,48,57,57,50,49,55,44,52,49,46,49,54,48,56,54,55,93,44,91,45,57,50,46,56,54,57,55,55,49,44,52,49,46,49,54,49,48,54,54,93,44,91,45,57,50,46,56,55,49,52,50,49,44,52,49,46,53,48,56,53,50,50,93,44,91,45,57,51,46,51,50,56,54,49,52,44,52,49,46,53,48,55,56,50,52,93,44,91,45,57,51,46,51,50,56,52,48,55,44,52,49,46,52,57,48,57,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,57,57,50,44,34,98,101,100,115,34,58,50,54,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,55,48,55,50,44,52,49,46,51,57,51,50,51,57,93,44,91,45,57,54,46,51,50,55,51,57,57,44,52,49,46,49,56,57,57,57,57,93,44,91,45,57,53,46,57,50,51,53,52,56,44,52,49,46,49,57,48,56,53,93,44,91,45,57,53,46,57,51,55,55,57,49,44,52,49,46,51,57,48,55,53,50,93,44,91,45,57,54,46,51,50,57,48,49,50,44,52,49,46,51,57,51,49,51,54,93,44,91,45,57,54,46,52,55,48,55,50,44,52,49,46,51,57,51,50,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,48,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,48,48,34,44,34,78,65,77,69,34,58,34,70,97,105,114,102,97,120,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,51,52,56,53,50,44,51,56,46,56,53,51,55,51,55,93,44,91,45,55,55,46,51,49,54,50,50,52,44,51,56,46,56,51,54,52,48,56,93,44,91,45,55,55,46,50,55,48,53,50,44,51,56,46,56,52,48,57,48,50,93,44,91,45,55,55,46,50,55,48,53,57,55,44,51,56,46,56,54,54,48,55,53,93,44,91,45,55,55,46,51,48,51,49,51,57,44,51,56,46,56,54,57,50,48,56,93,44,91,45,55,55,46,51,51,52,56,53,50,44,51,56,46,56,53,51,55,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,97,114,109,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,57,55,53,48,49,44,51,52,46,53,54,48,53,55,52,93,44,91,45,57,57,46,56,52,52,53,56,53,44,51,52,46,53,48,54,57,49,53,93,44,91,45,57,57,46,54,54,54,53,49,50,44,51,52,46,53,48,55,49,50,49,93,44,91,45,57,57,46,54,54,54,56,52,57,44,51,52,46,55,50,52,53,53,53,93,44,91,45,57,57,46,55,49,57,55,57,55,44,51,52,46,55,54,56,52,53,49,93,44,91,45,57,57,46,55,51,49,48,57,50,44,51,52,46,57,52,52,48,53,56,93,44,91,45,57,57,46,56,56,56,50,50,50,44,51,52,46,57,52,51,56,57,55,93,44,91,45,57,57,46,56,56,56,52,52,52,44,51,53,46,48,50,57,56,56,57,93,44,91,45,49,48,48,46,48,48,48,51,56,52,44,51,53,46,48,50,57,57,51,93,44,91,45,49,48,48,46,48,48,48,51,56,49,44,51,52,46,55,52,54,51,53,56,93,44,91,45,57,57,46,57,57,55,53,48,49,44,51,52,46,53,54,48,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,101,100,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,51,56,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,54,53,54,55,53,44,51,55,46,57,48,48,57,56,55,93,44,91,45,57,52,46,48,55,51,53,50,52,44,51,55,46,54,51,57,55,50,50,93,44,91,45,57,52,46,48,55,53,51,56,53,44,51,55,46,53,56,49,53,55,93,44,91,45,57,51,46,54,49,54,48,51,51,44,51,55,46,53,55,50,54,56,57,93,44,91,45,57,51,46,54,50,56,52,48,52,44,51,55,46,56,50,57,52,51,53,93,44,91,45,57,51,46,56,49,49,52,48,50,44,51,55,46,56,51,52,53,55,49,93,44,91,45,57,51,46,56,48,56,54,52,56,44,51,55,46,56,57,50,55,55,53,93,44,91,45,57,52,46,48,54,53,54,55,53,44,51,55,46,57,48,48,57,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,54,48,50,44,34,98,101,100,115,34,58,53,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,54,48,48,50,56,44,51,52,46,48,52,48,53,55,50,93,44,91,45,56,51,46,53,51,55,51,56,53,44,51,51,46,57,54,53,57,49,50,93,44,91,45,56,51,46,50,55,53,57,51,51,44,51,51,46,56,52,55,57,55,55,93,44,91,45,56,51,46,50,53,56,52,49,51,44,51,51,46,57,57,57,48,57,56,93,44,91,45,56,51,46,51,54,48,48,50,56,44,51,52,46,48,52,48,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,86,97,108,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,52,52,51,56,54,44,52,53,46,49,48,55,54,53,49,93,44,91,45,49,49,54,46,48,57,48,49,52,51,44,52,53,46,48,54,52,48,49,51,93,44,91,45,49,49,54,46,49,57,55,48,49,49,44,52,52,46,56,54,52,50,49,54,93,44,91,45,49,49,54,46,49,53,55,54,48,50,44,52,52,46,55,48,51,55,52,51,93,44,91,45,49,49,54,46,49,53,55,48,50,50,44,52,52,46,52,57,56,57,50,56,93,44,91,45,49,49,54,46,50,49,50,57,49,44,52,52,46,51,50,52,51,55,51,93,44,91,45,49,49,54,46,50,49,51,56,55,49,44,52,52,46,49,53,49,51,56,55,93,44,91,45,49,49,54,46,49,48,51,48,55,50,44,52,52,46,50,51,54,52,48,57,93,44,91,45,49,49,53,46,52,53,55,51,48,53,44,52,52,46,50,52,50,57,53,51,93,44,91,45,49,49,53,46,50,57,52,54,49,52,44,52,52,46,51,51,57,52,52,53,93,44,91,45,49,49,53,46,50,50,56,50,50,50,44,52,52,46,52,50,51,53,50,49,93,44,91,45,49,49,53,46,51,48,52,57,57,52,44,52,52,46,53,55,57,56,53,55,93,44,91,45,49,49,53,46,49,54,53,54,48,53,44,52,52,46,54,53,48,51,48,54,93,44,91,45,49,49,53,46,48,57,49,57,50,50,44,52,52,46,55,54,54,55,50,54,93,44,91,45,49,49,52,46,57,53,54,49,49,54,44,52,52,46,55,50,48,57,56,50,93,44,91,45,49,49,52,46,56,49,50,52,48,55,44,52,52,46,56,48,56,51,52,54,93,44,91,45,49,49,52,46,55,51,49,57,54,44,52,52,46,56,56,48,57,52,54,93,44,91,45,49,49,52,46,55,51,50,50,55,44,52,53,46,49,53,49,49,53,53,93,44,91,45,49,49,52,46,54,57,52,48,48,49,44,52,53,46,49,57,55,49,56,50,93,44,91,45,49,49,53,46,57,55,53,55,56,55,44,52,53,46,49,57,53,50,56,50,93,44,91,45,49,49,54,46,49,52,52,51,56,54,44,52,53,46,49,48,55,54,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,53,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,51,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,57,54,52,51,52,44,51,51,46,56,51,53,57,54,55,93,44,91,45,57,57,46,57,57,48,57,56,44,51,51,46,51,57,55,52,48,52,93,44,91,45,57,57,46,52,55,50,52,52,52,44,51,51,46,51,57,57,48,50,51,93,44,91,45,57,57,46,52,55,52,52,57,56,44,51,51,46,55,51,51,56,52,57,93,44,91,45,57,57,46,53,52,50,48,48,56,44,51,51,46,55,57,51,50,52,52,93,44,91,45,57,57,46,54,57,52,55,56,49,44,51,51,46,56,50,55,49,53,56,93,44,91,45,57,57,46,57,57,54,52,51,52,44,51,51,46,56,51,53,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,79,117,97,99,104,105,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,48,54,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,56,51,48,53,52,44,51,51,46,56,48,50,49,57,56,93,44,91,45,57,50,46,56,57,51,53,51,52,44,51,51,46,56,48,57,57,52,51,93,44,91,45,57,51,46,49,48,52,50,57,44,51,51,46,55,55,55,48,49,49,93,44,91,45,57,51,46,49,49,54,51,54,49,44,51,51,46,52,53,50,57,48,57,93,44,91,45,57,51,46,49,49,57,48,49,52,44,51,51,46,51,56,48,50,57,51,93,44,91,45,57,50,46,57,55,56,52,54,57,44,51,51,46,51,55,55,50,56,93,44,91,45,57,50,46,53,54,55,49,53,54,44,51,51,46,51,54,55,50,93,44,91,45,57,50,46,55,48,53,48,57,51,44,51,51,46,52,51,49,50,49,53,93,44,91,45,57,50,46,55,53,57,48,51,53,44,51,51,46,53,51,48,57,53,52,93,44,91,45,57,50,46,53,56,54,56,56,54,44,51,51,46,55,51,49,50,51,52,93,44,91,45,57,50,46,53,56,51,48,53,52,44,51,51,46,56,48,50,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,51,52,44,34,98,101,100,115,34,58,49,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,48,51,54,55,50,44,52,48,46,51,49,48,48,57,51,93,44,91,45,56,52,46,56,49,48,56,50,53,44,52,48,46,48,48,53,48,55,55,93,44,91,45,56,52,46,56,49,50,52,49,44,51,57,46,57,49,54,57,49,53,93,44,91,45,56,52,46,52,56,53,51,54,55,44,51,57,46,57,49,56,52,57,49,93,44,91,45,56,52,46,52,50,53,57,48,50,44,51,57,46,57,49,57,54,50,50,93,44,91,45,56,52,46,52,51,50,53,55,53,44,52,48,46,49,57,55,48,51,55,93,44,91,45,56,52,46,52,51,52,54,51,49,44,52,48,46,51,53,52,50,53,57,93,44,91,45,56,52,46,56,48,51,56,57,52,44,52,48,46,51,53,50,55,53,56,93,44,91,45,56,52,46,56,48,51,54,55,50,44,52,48,46,51,49,48,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,75,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,56,56,48,44,34,98,101,100,115,34,58,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,54,50,51,52,54,44,51,54,46,57,57,56,55,48,49,93,44,91,45,57,55,46,52,54,50,52,53,57,44,51,54,46,53,57,51,54,50,55,93,44,91,45,57,55,46,52,54,49,54,48,51,44,51,54,46,53,57,51,54,51,55,93,44,91,45,57,55,46,48,53,55,53,53,54,44,51,54,46,53,57,51,56,55,50,93,44,91,45,57,55,46,48,54,52,49,48,55,44,51,54,46,54,56,52,50,48,55,93,44,91,45,57,54,46,57,51,49,57,52,51,44,51,54,46,54,56,54,48,57,55,93,44,91,45,57,54,46,56,56,57,52,55,53,44,51,54,46,55,53,49,50,51,93,44,91,45,57,54,46,55,53,50,51,55,53,44,51,54,46,55,56,50,48,57,50,93,44,91,45,57,54,46,55,52,57,56,51,56,44,51,54,46,57,57,56,57,56,56,93,44,91,45,57,55,46,49,52,55,55,50,49,44,51,54,46,57,57,57,48,51,51,93,44,91,45,57,55,46,52,54,50,51,52,54,44,51,54,46,57,57,56,55,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,119,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,55,48,49,57,44,52,53,46,52,55,50,52,49,54,93,44,91,45,49,48,49,46,53,48,49,48,53,51,44,52,52,46,57,57,51,55,57,53,93,44,91,45,49,48,49,46,49,51,54,49,54,50,44,52,52,46,57,57,52,48,55,52,93,44,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,48,49,46,48,50,50,54,49,49,44,52,52,46,55,50,52,49,53,51,93,44,91,45,49,48,48,46,56,50,57,55,57,53,44,52,52,46,55,56,51,50,52,56,93,44,91,45,49,48,48,46,55,49,55,54,52,52,44,52,52,46,55,55,48,57,51,93,44,91,45,49,48,48,46,53,52,51,52,56,52,44,52,52,46,55,54,49,48,56,55,93,44,91,45,49,48,48,46,52,48,52,55,53,51,44,52,52,46,56,57,55,54,57,53,93,44,91,45,49,48,48,46,52,50,51,57,49,56,44,52,52,46,57,57,48,48,48,54,93,44,91,45,49,48,48,46,51,50,53,52,53,49,44,52,53,46,48,57,57,51,51,55,93,44,91,45,49,48,48,46,50,54,48,50,50,51,44,52,53,46,50,52,54,56,49,93,44,91,45,49,48,48,46,50,55,52,49,55,54,44,52,53,46,51,56,49,56,52,53,93,44,91,45,49,48,48,46,51,52,49,57,50,52,44,52,53,46,52,55,50,57,48,52,93,44,91,45,49,48,49,46,52,55,48,49,57,44,52,53,46,52,55,50,52,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,84,105,108,108,97,109,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,55,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,48,54,53,52,52,56,44,52,53,46,55,56,51,48,53,52,93,44,91,45,49,50,52,46,48,49,48,56,48,53,44,52,53,46,55,48,56,50,56,53,93,44,91,45,49,50,52,46,48,55,54,57,55,55,44,52,53,46,51,52,49,56,52,54,93,44,91,45,49,50,52,46,48,52,48,50,53,55,44,52,53,46,50,54,56,56,50,56,93,44,91,45,49,50,52,46,48,57,53,56,51,51,44,52,53,46,48,52,51,57,56,54,93,44,91,45,49,50,51,46,55,50,52,54,54,51,44,52,53,46,48,52,52,52,51,50,93,44,91,45,49,50,51,46,55,50,52,51,54,56,44,52,53,46,48,55,54,50,50,54,93,44,91,45,49,50,51,46,55,56,52,53,52,44,52,53,46,50,49,54,50,57,52,93,44,91,45,49,50,51,46,52,54,51,53,49,56,44,52,53,46,50,49,54,51,49,50,93,44,91,45,49,50,51,46,52,54,52,56,56,44,52,53,46,52,51,51,51,51,50,93,44,91,45,49,50,51,46,51,54,49,49,51,49,44,52,53,46,53,55,56,55,55,57,93,44,91,45,49,50,51,46,52,56,52,55,50,54,44,52,53,46,55,48,56,55,54,52,93,44,91,45,49,50,51,46,51,54,49,54,50,50,44,52,53,46,55,55,57,53,55,57,93,44,91,45,49,50,52,46,48,54,53,52,52,56,44,52,53,46,55,56,51,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,67,111,119,101,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,53,49,54,44,34,98,101,100,115,34,58,50,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,49,53,51,53,56,44,51,51,46,52,50,53,53,48,54,93,44,91,45,56,52,46,57,51,57,48,49,53,44,51,51,46,50,50,52,54,57,51,93,44,91,45,56,52,46,56,54,50,51,53,57,44,51,51,46,49,57,49,49,55,51,93,44,91,45,56,52,46,56,53,50,51,54,44,51,51,46,50,50,51,53,57,93,44,91,45,56,52,46,53,48,50,51,53,50,44,51,51,46,50,50,49,48,53,53,93,44,91,45,56,52,46,52,57,55,53,50,55,44,51,51,46,50,53,55,52,50,50,93,44,91,45,56,52,46,53,56,54,48,52,55,44,51,51,46,51,53,55,56,56,53,93,44,91,45,56,52,46,54,48,57,53,52,44,51,51,46,53,48,50,53,49,49,93,44,91,45,56,52,46,56,53,48,55,49,51,44,51,51,46,53,49,49,52,53,55,93,44,91,45,56,53,46,48,49,53,51,53,56,44,51,51,46,52,50,53,53,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,83,105,109,112,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,48,55,51,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,51,48,48,54,54,44,51,50,46,48,52,55,48,55,50,93,44,91,45,57,48,46,50,51,48,51,51,49,44,51,50,46,48,52,57,55,50,56,93,44,91,45,57,48,46,49,51,50,53,53,50,44,51,49,46,56,53,54,57,50,51,93,44,91,45,57,48,46,49,50,50,53,54,53,44,51,49,46,55,53,50,54,56,93,44,91,45,56,57,46,57,55,52,53,56,54,44,51,49,46,55,54,49,54,53,53,93,44,91,45,56,57,46,55,53,53,49,48,51,44,51,49,46,55,55,52,54,53,52,93,44,91,45,56,57,46,54,53,51,48,50,53,44,51,49,46,55,56,48,54,53,51,93,44,91,45,56,57,46,54,53,52,52,50,54,44,51,50,46,48,49,51,54,55,56,93,44,91,45,56,57,46,55,51,48,48,54,54,44,51,50,46,48,52,55,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,83,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,51,55,57,54,55,44,51,48,46,57,48,57,56,55,55,93,44,91,45,56,57,46,51,52,48,56,48,54,44,51,48,46,57,48,57,57,49,50,93,44,91,45,56,57,46,51,52,49,52,52,54,44,51,48,46,54,52,55,55,50,93,44,91,45,56,57,46,50,52,48,48,55,51,44,51,48,46,54,55,55,49,54,93,44,91,45,56,56,46,56,56,52,53,51,51,44,51,48,46,54,55,55,50,57,50,93,44,91,45,56,56,46,56,56,52,53,51,52,44,51,48,46,55,51,53,53,57,49,93,44,91,45,56,56,46,56,56,53,48,51,56,44,51,48,46,57,49,48,55,56,56,93,44,91,45,56,57,46,49,51,55,57,54,55,44,51,48,46,57,48,57,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,111,110,116,114,97,32,67,111,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,51,50,52,55,44,34,98,101,100,115,34,58,49,54,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,51,55,51,55,56,50,44,51,55,46,56,56,51,55,50,53,93,44,91,45,49,50,50,46,50,54,52,48,50,55,44,51,55,46,57,48,51,55,55,53,93,44,91,45,49,50,50,46,49,52,48,53,53,49,44,51,55,46,56,48,52,53,57,52,93,44,91,45,49,50,50,46,48,52,53,52,55,51,44,51,55,46,55,57,56,49,50,54,93,44,91,45,49,50,49,46,57,54,48,55,55,44,51,55,46,55,49,56,54,50,57,93,44,91,45,49,50,49,46,53,53,54,57,57,55,44,51,55,46,56,49,54,52,56,56,93,44,91,45,49,50,49,46,53,56,48,48,50,50,44,51,56,46,48,57,52,52,49,52,93,44,91,45,49,50,49,46,55,51,55,56,50,52,44,51,56,46,48,50,54,54,51,93,44,91,45,49,50,49,46,56,54,50,52,54,50,44,51,56,46,48,54,54,48,51,93,44,91,45,49,50,50,46,49,50,51,57,55,51,44,51,56,46,48,51,53,55,49,55,93,44,91,45,49,50,50,46,51,52,55,52,53,52,44,51,56,46,48,55,51,50,54,93,44,91,45,49,50,50,46,52,51,50,50,56,51,44,51,55,46,57,50,57,56,50,52,93,44,91,45,49,50,50,46,51,55,51,55,56,50,44,51,55,46,56,56,51,55,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,48,49,56,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,51,48,51,50,50,44,51,54,46,49,53,50,48,50,51,93,44,91,45,56,56,46,54,57,50,55,48,57,44,51,54,46,48,54,50,55,52,54,93,44,91,45,56,56,46,55,48,54,56,49,49,44,51,53,46,55,57,49,48,55,53,93,44,91,45,56,56,46,54,48,54,56,54,50,44,51,53,46,55,56,57,51,53,52,93,44,91,45,56,56,46,53,54,57,48,52,55,44,51,53,46,56,50,52,56,50,57,93,44,91,45,56,56,46,49,55,57,49,55,55,44,51,53,46,56,49,54,55,56,53,93,44,91,45,56,56,46,49,55,55,56,53,57,44,51,53,46,56,52,53,56,52,49,93,44,91,45,56,56,46,50,49,55,52,51,54,44,51,53,46,56,52,54,53,56,50,93,44,91,45,56,56,46,50,49,50,53,53,57,44,51,54,46,49,50,48,50,57,93,44,91,45,56,56,46,53,51,48,51,50,50,44,51,54,46,49,53,50,48,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,72,101,110,114,105,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,54,52,50,44,34,98,101,100,115,34,58,49,49,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,51,48,54,55,44,51,55,46,55,48,53,54,55,51,93,44,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,44,91,45,55,55,46,53,57,53,52,54,50,44,51,55,46,53,53,53,55,53,93,44,91,45,55,55,46,52,52,55,53,56,49,44,51,55,46,54,48,50,56,49,93,44,91,45,55,55,46,51,57,49,51,48,54,44,51,55,46,53,51,48,49,50,50,93,44,91,45,55,55,46,52,50,48,56,55,53,44,51,55,46,52,52,55,49,48,49,93,44,91,45,55,55,46,51,52,57,50,51,53,44,51,55,46,51,55,56,52,54,54,93,44,91,45,55,55,46,50,52,57,54,54,53,44,51,55,46,51,56,50,93,44,91,45,55,55,46,49,55,55,51,50,52,44,51,55,46,52,57,48,54,93,44,91,45,55,55,46,50,52,48,57,56,56,44,51,55,46,53,51,56,48,56,56,93,44,91,45,55,55,46,51,56,49,55,53,53,44,51,55,46,53,57,52,53,49,51,93,44,91,45,55,55,46,52,57,51,57,57,44,51,55,46,55,48,49,48,48,56,93,44,91,45,55,55,46,54,51,48,54,55,44,51,55,46,55,48,53,54,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,79,119,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,56,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,51,57,57,56,49,44,51,57,46,52,55,51,51,52,53,93,44,91,45,56,54,46,57,52,50,52,55,51,44,51,57,46,51,52,50,48,52,51,93,44,91,45,56,55,46,48,53,51,54,52,54,44,51,57,46,51,52,50,54,50,49,93,44,91,45,56,55,46,48,53,52,53,55,56,44,51,57,46,49,54,56,48,56,54,93,44,91,45,56,54,46,54,56,51,48,48,50,44,51,57,46,49,54,53,55,52,54,93,44,91,45,56,54,46,54,56,53,54,49,44,51,57,46,51,51,54,48,52,51,93,44,91,45,56,54,46,54,51,48,56,49,56,44,51,57,46,51,52,54,57,52,56,93,44,91,45,56,54,46,54,56,53,55,49,44,51,57,46,52,55,48,48,54,51,93,44,91,45,56,54,46,57,51,57,57,56,49,44,51,57,46,52,55,51,51,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,87,101,115,116,99,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,56,56,49,53,44,34,98,101,100,115,34,58,51,49,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,56,50,53,56,52,44,52,49,46,51,50,49,54,57,51,93,44,91,45,55,51,46,56,56,57,52,56,44,52,49,46,49,52,53,48,57,53,93,44,91,45,55,51,46,56,57,51,57,55,57,44,52,48,46,57,57,55,50,48,53,93,44,91,45,55,51,46,57,49,55,57,48,53,44,52,48,46,57,49,55,53,55,55,93,44,91,45,55,51,46,55,52,56,48,54,44,52,48,46,56,55,49,55,50,49,93,44,91,45,55,51,46,54,49,50,56,56,53,44,52,48,46,57,53,48,57,52,51,93,44,91,45,55,51,46,55,50,55,55,55,53,44,52,49,46,49,48,48,54,57,54,93,44,91,45,55,51,46,52,56,50,54,57,53,44,52,49,46,50,49,50,55,55,50,93,44,91,45,55,51,46,53,52,52,55,50,56,44,52,49,46,51,54,54,51,55,53,93,44,91,45,55,51,46,57,56,50,53,56,52,44,52,49,46,51,50,49,54,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,111,108,108,105,110,103,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,56,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,52,54,55,54,51,44,51,55,46,53,57,55,52,51,52,93,44,91,45,57,48,46,49,52,53,54,57,57,44,51,55,46,51,49,50,48,57,49,93,44,91,45,57,48,46,50,49,55,54,53,55,44,51,55,46,51,49,52,57,54,55,93,44,91,45,57,48,46,50,50,51,50,51,44,51,55,46,48,56,54,53,51,52,93,44,91,45,57,48,46,49,49,49,50,52,55,44,51,55,46,48,52,49,50,48,53,93,44,91,45,56,57,46,57,53,57,49,57,54,44,51,55,46,48,53,52,51,56,93,44,91,45,56,57,46,56,54,54,54,50,55,44,51,55,46,49,50,54,50,50,55,93,44,91,45,56,57,46,56,54,49,49,50,51,44,51,55,46,53,57,57,50,56,54,93,44,91,45,57,48,46,49,52,54,55,54,51,44,51,55,46,53,57,55,52,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,77,99,68,111,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,49,55,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,49,49,50,48,49,44,51,55,46,52,50,52,53,48,57,93,44,91,45,56,49,46,54,53,52,52,51,49,44,51,55,46,53,50,51,51,49,50,93,44,91,45,56,49,46,55,50,57,52,51,51,44,51,55,46,52,57,52,53,56,53,93,44,91,45,56,49,46,56,53,53,57,51,57,44,51,55,46,53,52,56,57,49,93,44,91,45,56,49,46,57,50,55,54,56,49,44,51,55,46,53,49,50,49,49,51,93,44,91,45,56,49,46,57,57,54,53,55,56,44,51,55,46,52,55,54,55,48,53,93,44,91,45,56,49,46,56,53,51,53,53,51,44,51,55,46,50,56,55,55,48,54,93,44,91,45,56,49,46,55,52,48,49,50,52,44,51,55,46,50,51,55,55,53,50,93,44,91,45,56,49,46,53,54,48,54,51,49,44,51,55,46,50,48,54,54,54,51,93,44,91,45,56,49,46,51,54,50,49,53,54,44,51,55,46,51,51,55,54,56,55,93,44,91,45,56,49,46,51,49,49,50,48,49,44,51,55,46,52,50,52,53,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,50,48,57,44,34,98,101,100,115,34,58,52,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,52,52,53,50,49,44,51,57,46,52,50,57,49,50,93,44,91,45,56,48,46,54,48,52,51,48,49,44,51,57,46,50,56,54,48,52,55,93,44,91,45,56,48,46,53,57,54,49,50,54,44,51,57,46,49,54,55,48,54,57,93,44,91,45,56,48,46,51,48,48,50,48,57,44,51,57,46,49,48,51,56,53,55,93,44,91,45,56,48,46,50,50,55,49,55,51,44,51,57,46,49,49,50,55,57,50,93,44,91,45,56,48,46,49,54,54,51,56,55,44,51,57,46,50,52,50,50,56,51,93,44,91,45,56,48,46,49,57,55,50,56,54,44,51,57,46,51,57,51,49,56,54,93,44,91,45,56,48,46,52,57,52,48,56,53,44,51,57,46,52,54,57,53,57,57,93,44,91,45,56,48,46,53,52,52,53,50,49,44,51,57,46,52,50,57,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,114,97,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,56,55,52,44,34,98,101,100,115,34,58,49,52,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,55,57,54,50,55,52,44,51,54,46,53,52,49,55,52,49,93,44,91,45,55,56,46,56,48,50,51,51,53,44,51,54,46,50,51,53,55,57,52,93,44,91,45,55,56,46,56,48,52,54,57,44,51,54,46,48,57,52,53,53,49,93,44,91,45,55,56,46,55,53,49,50,55,51,44,51,54,46,48,55,48,56,51,52,93,44,91,45,55,56,46,53,52,54,52,49,52,44,51,54,46,48,50,49,56,50,54,93,44,91,45,55,56,46,52,57,54,54,49,52,44,51,54,46,49,55,53,49,57,57,93,44,91,45,55,56,46,53,49,49,50,50,52,44,51,54,46,52,53,52,56,48,56,93,44,91,45,55,56,46,52,53,54,57,49,51,44,51,54,46,53,52,50,53,52,49,93,44,91,45,55,56,46,55,51,52,49,50,50,44,51,54,46,53,52,49,57,51,57,93,44,91,45,55,56,46,55,57,54,50,55,52,44,51,54,46,53,52,49,55,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,78,101,119,32,72,97,118,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,57,51,51,57,44,34,98,101,100,115,34,58,49,54,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,49,48,52,55,51,44,52,49,46,52,54,56,56,49,53,93,44,91,45,55,51,46,48,54,55,56,53,49,44,52,49,46,51,48,48,57,57,54,93,44,91,45,55,51,46,49,48,55,52,53,50,44,52,49,46,49,54,56,51,57,55,93,44,91,45,55,50,46,57,57,57,53,52,55,44,52,49,46,48,56,55,49,48,56,93,44,91,45,55,50,46,53,50,55,57,48,49,44,52,49,46,49,55,55,55,55,52,93,44,91,45,55,50,46,53,50,55,57,48,50,44,52,49,46,50,53,48,49,49,53,93,44,91,45,55,50,46,54,53,52,49,57,51,44,52,49,46,52,51,56,50,53,54,93,44,91,45,55,50,46,55,51,57,49,50,44,52,49,46,52,51,56,50,57,52,93,44,91,45,55,50,46,55,53,50,49,56,49,44,52,49,46,53,55,56,56,57,52,93,44,91,45,55,50,46,57,52,54,51,53,44,52,49,46,53,53,54,55,57,55,93,44,91,45,55,50,46,57,56,51,50,53,44,52,49,46,54,51,57,53,57,56,93,44,91,45,55,51,46,49,53,53,52,57,50,44,52,49,46,53,49,52,51,48,52,93,44,91,45,55,51,46,51,49,48,52,55,51,44,52,49,46,52,54,56,56,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,80,105,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,53,55,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,55,55,50,52,44,52,50,46,51,53,49,56,54,49,93,44,91,45,57,55,46,52,56,53,50,57,56,44,52,50,46,52,51,56,53,55,56,93,44,91,45,57,55,46,56,51,52,52,51,49,44,52,50,46,52,51,55,54,56,52,93,44,91,45,57,55,46,56,51,52,53,51,54,44,52,50,46,48,56,57,55,53,93,44,91,45,57,55,46,51,54,56,52,48,52,44,52,50,46,48,57,48,57,50,50,93,44,91,45,57,55,46,51,54,55,55,50,52,44,52,50,46,51,53,49,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,108,101,99,107,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,44,91,45,56,51,46,52,57,55,57,50,51,44,51,50,46,52,53,50,49,57,56,93,44,91,45,56,51,46,52,57,56,48,51,57,44,51,50,46,52,48,49,55,49,53,93,44,91,45,56,51,46,51,52,54,53,50,56,44,51,50,46,50,55,50,52,56,57,93,44,91,45,56,51,46,49,55,51,50,53,50,44,51,50,46,52,53,50,53,51,51,93,44,91,45,56,51,46,49,51,56,57,57,49,44,51,50,46,52,50,51,48,54,57,93,44,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,66,117,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,53,48,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,54,55,53,56,44,51,51,46,50,54,55,51,57,55,93,44,91,45,56,50,46,50,51,51,48,54,50,44,51,51,46,50,50,55,55,52,93,44,91,45,56,50,46,50,57,49,49,56,44,51,51,46,48,54,50,56,50,55,93,44,91,45,56,50,46,50,55,50,51,53,51,44,51,50,46,57,51,55,55,57,54,93,44,91,45,56,50,46,51,49,54,53,49,50,44,51,50,46,56,51,53,55,55,50,93,44,91,45,56,50,46,49,52,52,57,55,55,44,51,50,46,56,49,50,55,52,49,93,44,91,45,56,50,46,48,56,49,51,51,55,44,51,50,46,57,49,54,55,55,54,93,44,91,45,56,49,46,56,53,55,57,56,53,44,51,50,46,57,53,51,56,56,50,93,44,91,45,56,49,46,55,54,55,53,53,51,44,51,50,46,57,48,57,52,49,49,93,44,91,45,56,49,46,53,52,49,56,51,49,44,51,51,46,48,52,53,54,53,52,93,44,91,45,56,49,46,54,49,52,48,51,51,44,51,51,46,48,57,53,50,53,49,93,44,91,45,56,49,46,55,48,52,54,51,52,44,51,51,46,49,49,54,52,53,93,44,91,45,56,49,46,55,53,55,48,51,53,44,51,51,46,49,57,56,49,52,56,93,44,91,45,56,49,46,56,53,50,48,55,54,44,51,51,46,50,52,55,50,56,56,93,44,91,45,56,50,46,48,57,50,53,57,50,44,51,51,46,50,51,48,48,56,52,93,44,91,45,56,50,46,49,55,52,50,52,44,51,51,46,50,57,54,55,55,49,93,44,91,45,56,50,46,50,54,55,53,56,44,51,51,46,50,54,55,51,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,50,55,44,34,98,101,100,115,34,58,49,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,53,51,54,49,55,44,51,55,46,54,48,48,50,51,55,93,44,91,45,56,57,46,52,52,56,53,57,56,44,51,55,46,53,57,56,56,50,49,93,44,91,45,56,57,46,53,50,49,53,54,52,44,51,55,46,53,55,50,49,53,54,93,44,91,45,56,57,46,53,50,49,56,53,53,44,51,55,46,53,54,54,50,49,52,93,44,91,45,56,57,46,52,50,48,57,51,57,44,51,55,46,51,57,51,57,53,50,93,44,91,45,56,57,46,52,56,54,54,56,57,44,51,55,46,51,51,52,53,53,52,93,44,91,45,56,57,46,50,52,56,53,54,54,44,51,55,46,51,51,53,50,57,56,93,44,91,45,56,57,46,48,52,52,55,57,57,44,51,55,46,51,50,57,55,49,55,93,44,91,45,56,57,46,48,52,49,52,48,49,44,51,55,46,53,57,54,53,55,54,93,44,91,45,56,57,46,49,53,51,54,49,55,44,51,55,46,54,48,48,50,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,75,97,110,107,97,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,48,54,49,44,34,98,101,100,115,34,58,53,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,50,54,55,51,49,44,52,49,46,50,57,56,48,53,50,93,44,91,45,56,56,46,48,49,51,57,49,57,44,52,49,46,50,57,50,52,52,55,93,44,91,45,56,56,46,48,49,49,56,49,44,52,49,46,50,48,53,53,48,56,93,44,91,45,56,56,46,50,52,52,49,52,52,44,52,49,46,50,48,49,53,54,54,93,44,91,45,56,56,46,50,53,49,53,48,49,44,52,49,46,49,49,52,50,49,56,93,44,91,45,56,56,46,50,52,55,51,44,52,48,46,57,57,52,53,54,93,44,91,45,56,56,46,49,51,49,57,51,53,44,52,48,46,57,57,55,55,55,55,93,44,91,45,56,55,46,53,50,54,50,48,56,44,52,49,46,48,49,48,51,52,49,93,44,91,45,56,55,46,53,50,54,53,56,55,44,52,49,46,49,54,54,48,57,93,44,91,45,56,55,46,53,50,54,55,51,49,44,52,49,46,50,57,56,48,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,77,99,73,110,116,111,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,53,52,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,51,55,50,56,57,44,52,54,46,50,56,50,56,55,49,93,44,91,45,57,57,46,56,55,56,51,53,52,44,52,54,46,50,56,50,56,50,57,93,44,91,45,57,57,46,56,56,48,48,54,44,52,53,46,57,52,49,52,50,51,93,44,91,45,57,57,46,55,49,56,48,55,49,44,52,53,46,57,52,48,56,56,51,93,44,91,45,57,57,46,48,48,53,55,53,56,44,52,53,46,57,51,57,55,51,49,93,44,91,45,57,57,46,48,48,51,49,49,56,44,52,54,46,50,56,50,56,57,56,93,44,91,45,57,57,46,48,51,55,50,56,57,44,52,54,46,50,56,50,56,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,80,108,97,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,48,54,51,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,48,55,44,52,49,46,55,52,51,50,48,55,93,44,91,45,57,55,46,56,51,48,52,57,51,44,52,49,46,55,52,50,50,51,56,93,44,91,45,57,55,46,56,50,57,56,52,54,44,52,49,46,53,50,54,49,55,52,93,44,91,45,57,55,46,55,48,51,54,50,55,44,52,49,46,53,50,54,55,57,54,93,44,91,45,57,55,46,55,48,51,55,54,53,44,52,49,46,51,57,52,56,55,54,93,44,91,45,57,55,46,53,57,56,50,53,51,44,52,49,46,51,51,51,49,49,57,93,44,91,45,57,55,46,51,54,56,49,56,54,44,52,49,46,51,57,54,52,49,54,93,44,91,45,57,55,46,50,53,51,53,49,57,44,52,49,46,51,56,52,50,49,50,93,44,91,45,57,55,46,50,53,50,52,50,53,44,52,49,46,55,52,51,48,56,53,93,44,91,45,57,55,46,51,54,56,48,55,44,52,49,46,55,52,51,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,51,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,52,54,50,55,49,44,51,54,46,53,52,51,53,53,49,93,44,91,45,55,56,46,51,50,51,57,57,49,44,51,54,46,53,52,51,56,50,50,93,44,91,45,55,56,46,50,55,55,49,54,53,44,51,54,46,51,48,54,49,51,50,93,44,91,45,55,56,46,51,48,54,57,54,53,44,51,54,46,50,54,54,49,57,49,93,44,91,45,55,56,46,48,48,54,53,53,49,44,51,54,46,50,48,50,54,51,51,93,44,91,45,55,55,46,57,49,49,57,54,51,44,51,54,46,51,56,50,52,52,54,93,44,91,45,55,55,46,56,57,57,53,50,52,44,51,54,46,53,48,52,50,53,57,93,44,91,45,55,55,46,56,57,57,55,55,51,44,51,54,46,53,52,52,53,57,54,93,44,91,45,55,56,46,48,52,54,50,55,49,44,51,54,46,53,52,51,53,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,105,98,111,110,105,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,52,53,55,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,50,52,50,55,51,53,44,49,56,46,49,56,48,50,52,56,93,44,91,45,54,54,46,51,49,52,56,52,56,44,49,56,46,49,53,50,48,56,56,93,44,91,45,54,54,46,50,53,55,53,50,55,44,49,56,46,48,55,53,56,56,52,93,44,91,45,54,54,46,50,50,52,52,57,44,49,56,46,48,57,53,51,51,57,93,44,91,45,54,54,46,50,49,54,56,57,57,44,49,56,46,49,52,51,50,50,93,44,91,45,54,54,46,50,52,50,55,51,53,44,49,56,46,49,56,48,50,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,51,55,51,50,51,44,51,50,46,53,51,52,56,53,53,93,44,91,45,56,52,46,54,53,56,57,50,44,51,50,46,50,51,50,56,53,50,93,44,91,45,56,52,46,54,52,57,51,49,57,44,51,50,46,50,51,50,57,53,51,93,44,91,45,56,52,46,53,50,55,49,49,55,44,51,50,46,49,51,52,53,53,54,93,44,91,45,56,52,46,52,51,49,50,49,52,44,51,50,46,49,51,52,48,53,56,93,44,91,45,56,52,46,52,51,48,50,49,56,44,51,50,46,49,54,54,50,53,55,93,44,91,45,56,52,46,51,57,50,51,49,54,44,51,50,46,52,49,52,48,52,54,93,44,91,45,56,52,46,52,52,52,51,53,51,44,51,50,46,53,54,50,48,56,51,93,44,91,45,56,52,46,54,51,55,51,50,51,44,51,50,46,53,51,52,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,54,48,53,52,51,44,52,51,46,48,56,51,49,52,53,93,44,91,45,57,55,46,49,54,48,51,53,51,44,52,50,46,55,57,57,55,48,49,93,44,91,45,57,55,46,48,49,53,56,52,57,44,52,50,46,55,54,49,51,51,56,93,44,91,45,57,54,46,56,48,54,50,49,51,44,52,50,46,55,48,52,49,53,52,93,44,91,45,57,54,46,56,48,53,54,56,50,44,52,51,46,48,56,51,54,55,93,44,91,45,57,54,46,57,50,52,49,52,50,44,52,51,46,48,56,51,55,51,51,93,44,91,45,57,55,46,49,54,48,53,52,51,44,52,51,46,48,56,51,49,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,83,117,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,68,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,53,52,48,44,34,98,101,100,115,34,58,53,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,49,51,56,52,54,49,44,51,57,46,48,48,50,54,57,55,93,44,91,45,55,53,46,51,55,50,49,51,49,44,51,56,46,57,54,49,52,51,54,93,44,91,45,55,53,46,53,53,53,48,49,51,44,51,56,46,56,51,53,54,52,57,93,44,91,45,55,53,46,55,50,50,55,57,55,44,51,56,46,56,50,57,56,53,49,93,44,91,45,55,53,46,55,48,55,52,52,55,44,51,56,46,54,51,53,51,57,54,93,44,91,45,55,53,46,55,48,49,53,54,57,44,51,56,46,53,54,48,55,51,54,93,44,91,45,55,53,46,54,57,51,54,55,44,51,56,46,52,54,48,48,56,93,44,91,45,55,53,46,51,52,49,50,57,49,44,51,56,46,52,53,50,48,51,52,93,44,91,45,55,52,46,57,56,54,50,56,50,44,51,56,46,52,53,49,54,51,50,93,44,91,45,55,53,46,48,49,53,49,50,51,44,51,56,46,55,56,56,54,53,55,93,44,91,45,55,53,46,49,51,56,52,54,49,44,51,57,46,48,48,50,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,56,52,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,56,50,49,57,54,44,51,51,46,53,50,54,50,50,93,44,91,45,56,51,46,56,54,51,48,53,56,44,51,51,46,51,54,56,50,55,56,93,44,91,45,56,51,46,56,50,50,50,54,49,44,51,51,46,49,56,48,50,51,56,93,44,91,45,56,51,46,56,49,54,48,52,56,44,51,51,46,49,51,49,56,49,54,93,44,91,45,56,51,46,53,52,53,56,55,54,44,51,51,46,49,55,49,57,52,52,93,44,91,45,56,51,46,53,51,51,55,51,54,44,51,51,46,52,51,52,52,55,50,93,44,91,45,56,51,46,54,56,50,49,57,54,44,51,51,46,53,50,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,52,53,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,57,50,49,52,57,44,51,57,46,54,49,48,50,54,53,93,44,91,45,57,50,46,55,48,55,51,54,55,44,51,57,46,51,50,49,54,49,52,93,44,91,45,57,50,46,52,51,48,50,50,57,44,51,57,46,50,52,56,55,57,53,93,44,91,45,57,50,46,51,49,52,52,55,49,44,51,57,46,50,52,54,52,53,52,93,44,91,45,57,50,46,51,49,48,48,50,56,44,51,57,46,51,52,55,55,57,53,93,44,91,45,57,50,46,51,48,48,56,55,49,44,51,57,46,54,48,53,51,52,56,93,44,91,45,57,50,46,54,57,50,49,52,57,44,51,57,46,54,49,48,50,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,52,54,56,44,34,98,101,100,115,34,58,49,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,53,50,52,55,54,44,51,55,46,57,49,50,55,51,51,93,44,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,44,91,45,57,54,46,53,50,53,54,57,44,51,55,46,52,55,54,52,48,53,93,44,91,45,57,54,46,53,50,53,51,44,51,55,46,54,48,55,48,49,53,93,44,91,45,57,54,46,53,50,50,55,56,50,44,51,56,46,48,56,54,51,55,93,44,91,45,57,54,46,56,52,48,55,55,50,44,51,56,46,48,56,53,54,50,50,93,44,91,45,57,55,46,49,53,50,57,49,51,44,51,56,46,48,56,55,55,48,52,93,44,91,45,57,55,46,49,53,50,52,55,54,44,51,55,46,57,49,50,55,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,57,34,44,34,78,65,77,69,34,58,34,72,97,121,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,49,53,48,44,34,98,101,100,115,34,58,52,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,57,55,54,44,51,48,46,48,51,55,57,57,52,93,44,91,45,57,56,46,48,51,48,53,50,51,44,50,57,46,56,52,56,53,51,57,93,44,91,45,57,55,46,57,57,57,50,55,49,44,50,57,46,55,53,50,52,52,52,93,44,91,45,57,55,46,56,55,53,50,53,57,44,50,57,46,56,53,56,50,48,56,93,44,91,45,57,55,46,55,49,48,50,49,53,44,51,48,46,48,50,52,52,57,57,93,44,91,45,57,56,46,49,55,50,57,55,55,44,51,48,46,51,53,54,51,49,50,93,44,91,45,57,56,46,50,57,55,54,44,51,48,46,48,51,55,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,53,34,44,34,78,65,77,69,34,58,34,77,101,100,105,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,51,51,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,49,51,56,56,44,50,57,46,48,57,49,51,51,53,93,44,91,45,57,56,46,56,48,52,57,44,50,57,46,48,57,48,52,51,52,93,44,91,45,57,56,46,56,48,52,55,54,51,44,50,57,46,50,53,48,54,57,51,93,44,91,45,57,56,46,56,48,54,53,53,50,44,50,57,46,54,57,48,55,48,57,93,44,91,45,57,56,46,57,50,55,49,54,49,44,50,57,46,53,54,50,50,53,93,44,91,45,57,56,46,57,56,51,55,56,55,44,50,57,46,54,50,51,52,53,93,44,91,45,57,57,46,52,49,49,56,49,55,44,50,57,46,54,50,55,53,49,52,93,44,91,45,57,57,46,52,49,51,56,56,44,50,57,46,48,57,49,51,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,56,56,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,52,51,53,48,55,44,52,52,46,49,54,55,48,56,56,93,44,91,45,56,54,46,57,56,55,57,57,56,44,52,52,46,49,56,50,54,52,57,93,44,91,45,56,55,46,48,55,53,51,51,53,44,52,51,46,56,57,52,55,55,52,93,44,91,45,56,55,46,48,57,51,49,48,57,44,52,51,46,56,50,48,49,49,51,93,44,91,45,56,54,46,48,51,55,56,56,52,44,52,51,46,56,49,53,54,49,49,93,44,91,45,56,54,46,48,52,51,53,48,55,44,52,52,46,49,54,55,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,101,97,117,102,111,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,54,53,56,44,34,98,101,100,115,34,58,51,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,54,57,55,48,53,44,51,50,46,54,54,48,57,51,53,93,44,91,45,56,48,46,56,50,48,50,50,56,44,51,50,46,52,57,48,55,56,56,93,44,91,45,56,48,46,56,52,49,52,53,56,44,51,50,46,51,56,53,48,54,52,93,44,91,45,56,48,46,57,50,49,56,56,51,44,51,50,46,51,53,49,56,51,52,93,44,91,45,56,49,46,48,48,56,53,52,44,51,50,46,50,49,50,49,50,56,93,44,91,45,56,48,46,57,48,48,53,55,51,44,51,50,46,49,49,49,54,49,55,93,44,91,45,56,48,46,55,52,53,53,51,54,44,51,50,46,48,55,56,54,54,55,93,44,91,45,56,48,46,53,56,52,57,56,53,44,51,50,46,49,54,50,53,56,57,93,44,91,45,56,48,46,53,50,51,56,50,52,44,51,50,46,50,51,52,53,57,50,93,44,91,45,56,48,46,51,57,50,51,50,55,44,51,50,46,50,56,48,51,49,55,93,44,91,45,56,48,46,51,48,53,55,49,49,44,51,50,46,51,57,55,53,56,57,93,44,91,45,56,48,46,53,48,50,57,52,52,44,51,50,46,52,57,53,54,53,50,93,44,91,45,56,48,46,54,56,52,56,53,51,44,51,50,46,54,53,54,48,57,55,93,44,91,45,56,48,46,56,50,54,51,48,57,44,51,50,46,55,48,52,51,50,49,93,44,91,45,56,48,46,56,54,57,55,48,53,44,51,50,46,54,54,48,57,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,89,97,110,107,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,49,55,44,34,98,101,100,115,34,58,50,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,57,57,49,57,49,44,52,51,46,49,54,57,52,49,57,93,44,91,45,57,55,46,54,51,55,52,57,54,44,52,51,46,49,54,56,55,55,93,44,91,45,57,55,46,54,51,53,52,52,44,52,50,46,56,53,49,53,51,50,93,44,91,45,57,55,46,52,56,52,57,50,49,44,52,50,46,56,53,48,51,54,56,93,44,91,45,57,55,46,50,49,56,48,52,54,44,52,50,46,56,52,53,49,49,51,93,44,91,45,57,55,46,49,54,48,51,53,51,44,52,50,46,55,57,57,55,48,49,93,44,91,45,57,55,46,49,54,48,53,52,51,44,52,51,46,48,56,51,49,52,53,93,44,91,45,57,55,46,49,54,48,53,52,52,44,52,51,46,49,54,57,57,55,56,93,44,91,45,57,55,46,51,57,57,49,57,49,44,52,51,46,49,54,57,52,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,82,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,55,54,57,44,34,98,101,100,115,34,58,53,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,54,57,49,50,56,44,52,50,46,56,52,53,48,51,54,93,44,91,45,56,57,46,51,54,53,55,57,56,44,52,50,46,53,48,48,48,55,56,93,44,91,45,56,56,46,57,52,48,51,56,56,44,52,50,46,52,57,53,48,52,53,93,44,91,45,56,56,46,55,55,54,52,57,51,44,52,50,46,52,57,49,57,49,50,93,44,91,45,56,56,46,55,55,55,48,55,54,44,52,50,46,56,52,50,54,57,52,93,44,91,45,56,57,46,48,49,51,53,56,50,44,52,50,46,56,52,55,54,51,93,44,91,45,56,57,46,51,54,57,49,50,56,44,52,50,46,56,52,53,48,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,80,105,99,107,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,55,52,54,44,34,98,101,100,115,34,58,49,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,57,55,51,55,51,44,51,53,46,48,53,54,50,49,52,93,44,91,45,56,50,46,56,57,54,48,50,53,44,51,52,46,55,51,54,53,52,55,93,44,91,45,56,50,46,56,52,48,49,53,53,44,51,52,46,54,50,51,49,50,93,44,91,45,56,50,46,55,56,55,55,53,49,44,51,52,46,54,55,50,53,57,52,93,44,91,45,56,50,46,52,56,55,50,48,51,44,51,52,46,56,49,56,56,49,49,93,44,91,45,56,50,46,52,57,52,48,48,55,44,51,52,46,56,57,54,50,49,53,93,44,91,45,56,50,46,54,50,53,53,57,57,44,51,53,46,48,54,52,54,56,54,93,44,91,45,56,50,46,55,54,52,53,55,53,44,51,53,46,48,54,56,51,56,93,44,91,45,56,50,46,56,57,55,51,55,51,44,51,53,46,48,53,54,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,50,50,56,54,51,53,44,52,54,46,53,57,51,51,54,50,93,44,91,45,49,49,56,46,50,52,49,56,55,50,44,52,54,46,50,57,53,48,54,52,93,44,91,45,49,49,56,46,49,49,54,54,50,52,44,52,54,46,50,48,56,48,53,93,44,91,45,49,49,55,46,57,57,49,52,56,49,44,52,54,46,50,48,55,55,48,50,93,44,91,45,49,49,55,46,57,57,54,57,55,44,52,54,46,48,48,48,53,54,93,44,91,45,49,49,55,46,57,55,55,54,54,52,44,52,54,46,48,48,48,53,50,50,93,44,91,45,49,49,55,46,54,48,51,52,50,52,44,52,53,46,57,57,56,57,53,93,44,91,45,49,49,55,46,54,49,49,57,48,51,44,52,54,46,51,51,56,52,55,56,93,44,91,45,49,49,55,46,55,51,55,51,48,51,44,52,54,46,52,55,49,52,53,52,93,44,91,45,49,49,55,46,56,54,51,51,52,55,44,52,54,46,52,55,48,54,54,55,93,44,91,45,49,49,55,46,56,53,49,56,53,44,52,54,46,54,50,52,54,55,93,44,91,45,49,49,56,46,49,55,50,53,53,50,44,52,54,46,53,53,54,57,52,55,93,44,91,45,49,49,56,46,50,49,53,54,54,44,52,54,46,53,56,56,57,50,52,93,44,91,45,49,49,56,46,50,50,56,54,51,53,44,52,54,46,53,57,51,51,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,51,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,57,52,54,54,53,44,52,48,46,52,51,50,49,53,54,93,44,91,45,56,54,46,54,57,53,54,51,55,44,52,48,46,50,49,52,51,54,55,93,44,91,45,56,54,46,54,57,53,56,48,52,44,52,48,46,49,55,56,54,53,55,93,44,91,45,56,54,46,50,52,50,51,54,53,44,52,48,46,49,56,48,55,55,56,93,44,91,45,56,54,46,50,52,50,55,52,51,44,52,48,46,50,49,53,56,51,52,93,44,91,45,56,54,46,50,52,50,57,57,50,44,52,48,46,51,55,51,54,54,49,93,44,91,45,56,54,46,51,55,53,55,54,50,44,52,48,46,52,51,49,56,53,49,93,44,91,45,56,54,46,54,57,52,54,54,53,44,52,48,46,52,51,50,49,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,54,50,56,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,48,54,57,52,57,44,51,56,46,54,53,53,48,49,57,93,44,91,45,56,57,46,55,48,52,50,52,53,44,51,56,46,52,49,53,55,55,57,93,44,91,45,56,57,46,53,55,57,51,50,53,44,51,56,46,52,56,48,49,56,52,93,44,91,45,56,57,46,51,50,57,52,54,57,44,51,56,46,53,49,48,50,49,51,93,44,91,45,56,57,46,49,52,51,56,54,54,44,51,56,46,53,48,51,48,56,57,93,44,91,45,56,57,46,49,51,56,51,57,51,44,51,56,46,55,51,54,51,51,49,93,44,91,45,56,57,46,50,53,52,49,56,53,44,51,56,46,55,52,50,48,49,56,93,44,91,45,56,57,46,53,57,55,51,50,49,44,51,56,46,55,52,51,50,51,54,93,44,91,45,56,57,46,55,48,54,57,52,57,44,51,56,46,54,53,53,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,77,105,110,105,100,111,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,57,51,49,54,56,55,44,52,50,46,55,54,53,48,50,54,93,44,91,45,49,49,51,46,57,51,49,55,57,57,44,52,50,46,53,51,53,50,52,51,93,44,91,45,49,49,51,46,54,53,52,49,52,57,44,52,50,46,53,51,54,49,53,53,93,44,91,45,49,49,51,46,53,53,55,49,57,51,44,52,50,46,54,53,54,55,57,57,93,44,91,45,49,49,51,46,52,55,50,49,55,55,44,52,50,46,54,54,57,51,53,50,93,44,91,45,49,49,51,46,52,55,50,49,53,53,44,52,50,46,56,52,57,50,48,49,93,44,91,45,49,49,51,46,52,49,51,49,51,56,44,52,50,46,56,52,57,49,54,57,93,44,91,45,49,49,51,46,52,49,51,56,54,55,44,52,51,46,49,57,57,56,53,57,93,44,91,45,49,49,51,46,55,49,52,54,52,50,44,52,51,46,49,57,57,55,56,51,93,44,91,45,49,49,51,46,55,49,52,48,52,52,44,52,50,46,56,52,57,55,51,52,93,44,91,45,49,49,51,46,55,54,51,56,54,50,44,52,50,46,55,54,52,53,48,56,93,44,91,45,49,49,51,46,57,51,49,54,56,55,44,52,50,46,55,54,53,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,56,49,51,55,51,49,44,52,49,46,53,57,48,48,51,52,93,44,91,45,55,54,46,55,52,57,52,57,55,44,52,49,46,52,48,53,53,55,50,93,44,91,45,55,54,46,53,57,50,53,51,50,44,52,49,46,51,48,52,51,51,50,93,44,91,45,55,54,46,52,52,55,53,57,55,44,52,49,46,50,55,53,54,50,57,93,44,91,45,55,54,46,51,49,48,49,51,51,44,52,49,46,51,49,48,49,57,57,93,44,91,45,55,54,46,50,56,51,49,44,52,49,46,51,55,54,53,49,55,93,44,91,45,55,54,46,50,50,48,49,51,57,44,52,49,46,53,52,49,50,56,53,93,44,91,45,55,54,46,56,49,51,55,51,49,44,52,49,46,53,57,48,48,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,82,97,110,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,50,52,48,44,34,98,101,100,115,34,58,50,48,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,54,53,54,57,55,44,51,50,46,51,57,57,53,50,57,93,44,91,45,57,48,46,50,52,53,51,56,44,51,50,46,49,55,49,51,57,54,93,44,91,45,57,48,46,50,51,48,51,51,49,44,51,50,46,48,52,57,55,50,56,93,44,91,45,56,57,46,55,51,48,48,54,54,44,51,50,46,48,52,55,48,55,50,93,44,91,45,56,57,46,55,51,48,52,50,52,44,51,50,46,50,50,50,48,51,57,93,44,91,45,56,57,46,55,51,48,48,54,51,44,51,50,46,51,53,50,55,51,51,93,44,91,45,56,57,46,55,56,52,49,50,51,44,51,50,46,53,56,54,56,57,49,93,44,91,45,56,57,46,56,54,49,49,53,57,44,51,50,46,53,56,51,49,54,50,93,44,91,45,57,48,46,48,54,53,54,57,55,44,51,50,46,51,57,57,53,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,52,53,34,44,34,78,65,77,69,34,58,34,77,111,116,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,52,49,52,56,52,44,51,52,46,51,49,50,52,52,52,93,44,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,44,91,45,49,48,48,46,53,49,56,54,57,49,44,51,51,46,56,51,53,54,53,93,44,91,45,49,48,48,46,53,49,55,51,52,44,51,52,46,51,49,52,49,48,50,93,44,91,45,49,48,48,46,57,52,54,49,51,50,44,51,52,46,51,49,50,55,53,57,93,44,91,45,49,48,49,46,48,52,49,52,56,52,44,51,52,46,51,49,50,52,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,76,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,56,56,50,44,34,98,101,100,115,34,58,55,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,50,51,48,49,55,56,44,52,51,46,56,54,51,55,50,51,93,44,91,45,49,50,51,46,57,52,54,50,57,49,44,52,51,46,56,54,50,54,56,50,93,44,91,45,49,50,51,46,56,50,55,48,48,52,44,52,51,46,57,52,52,56,51,55,93,44,91,45,49,50,51,46,54,49,57,48,49,50,44,52,51,46,57,50,49,49,49,55,93,44,91,45,49,50,51,46,53,50,57,49,53,51,44,52,51,46,56,51,48,48,54,49,93,44,91,45,49,50,51,46,51,52,56,50,52,54,44,52,51,46,55,56,48,49,55,93,44,91,45,49,50,51,46,49,51,55,51,49,57,44,52,51,46,55,55,57,54,55,93,44,91,45,49,50,51,46,49,48,55,54,56,54,44,52,51,46,53,52,48,48,49,93,44,91,45,49,50,50,46,55,52,49,56,52,53,44,52,51,46,53,52,52,54,53,52,93,44,91,45,49,50,50,46,55,52,49,55,49,54,44,52,51,46,52,51,55,51,57,53,93,44,91,45,49,50,50,46,49,51,50,48,51,52,44,52,51,46,52,52,48,50,50,49,93,44,91,45,49,50,50,46,49,51,48,54,56,57,44,52,51,46,53,53,55,49,52,51,93,44,91,45,49,50,50,46,48,48,50,51,54,50,44,52,51,46,54,49,53,52,57,56,93,44,91,45,49,50,49,46,57,55,50,57,51,49,44,52,51,46,56,54,49,49,53,54,93,44,91,45,49,50,49,46,56,53,55,48,54,51,44,52,51,46,57,54,53,50,52,56,93,44,91,45,49,50,49,46,55,54,56,48,55,44,52,52,46,49,49,53,50,52,53,93,44,91,45,49,50,49,46,56,49,57,52,50,57,44,52,52,46,50,54,50,51,57,52,93,44,91,45,49,50,50,46,51,50,55,49,53,44,52,52,46,50,53,50,56,52,49,93,44,91,45,49,50,50,46,53,48,55,50,48,51,44,52,52,46,50,50,51,52,52,56,93,44,91,45,49,50,50,46,55,54,50,55,51,53,44,52,52,46,50,57,48,53,51,55,93,44,91,45,49,50,50,46,56,54,53,52,55,56,44,52,52,46,50,56,55,49,51,52,93,44,91,45,49,50,50,46,57,48,53,55,53,53,44,52,52,46,50,48,48,55,51,54,93,44,91,45,49,50,51,46,49,54,53,52,50,56,44,52,52,46,50,48,48,48,55,49,93,44,91,45,49,50,51,46,49,56,48,51,56,56,44,52,52,46,50,56,51,55,50,53,93,44,91,45,49,50,51,46,55,55,53,53,57,56,44,52,52,46,50,56,51,53,52,55,93,44,91,45,49,50,52,46,49,56,55,52,48,57,44,52,52,46,50,55,54,56,55,49,93,44,91,45,49,50,52,46,50,51,48,49,55,56,44,52,51,46,56,54,51,55,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,56,53,34,44,34,78,65,77,69,34,58,34,87,105,99,104,105,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,56,49,56,44,34,98,101,100,115,34,58,56,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,50,51,53,55,55,44,51,51,46,56,51,54,48,52,55,93,44,91,45,57,56,46,52,50,51,53,51,51,44,51,52,46,48,56,50,56,52,51,93,44,91,45,57,56,46,52,56,54,51,50,56,44,51,52,46,48,54,50,53,57,56,93,44,91,45,57,56,46,54,48,57,57,56,55,44,51,52,46,49,53,55,49,53,52,93,44,91,45,57,56,46,54,57,48,48,55,50,44,51,52,46,49,51,51,49,53,53,93,44,91,45,57,56,46,56,56,55,49,49,50,44,51,52,46,49,54,56,50,54,93,44,91,45,57,56,46,57,53,50,51,57,53,44,51,52,46,50,49,50,52,57,55,93,44,91,45,57,56,46,57,53,51,50,48,50,44,51,51,46,56,51,52,48,50,53,93,44,91,45,57,56,46,52,50,51,53,55,55,44,51,51,46,56,51,54,48,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,83,104,105,97,119,97,115,115,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,57,51,44,34,98,101,100,115,34,58,49,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,55,55,54,44,52,51,46,49,49,55,57,52,50,93,44,91,45,56,52,46,51,54,51,54,53,57,44,52,50,46,55,55,53,55,55,56,93,44,91,45,56,52,46,49,53,56,49,56,57,44,52,50,46,55,55,54,54,51,57,93,44,91,45,56,51,46,57,50,50,53,49,54,44,52,50,46,55,56,48,56,50,49,93,44,91,45,56,51,46,57,50,57,48,55,57,44,52,51,46,49,51,50,55,56,50,93,44,91,45,56,52,46,51,54,55,56,57,49,44,52,51,46,49,50,56,52,53,50,93,44,91,45,56,52,46,51,54,55,55,54,44,52,51,46,49,49,55,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,74,101,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,48,52,52,53,53,44,52,48,46,48,48,50,50,57,49,93,44,91,45,57,56,46,53,48,53,50,54,54,44,51,57,46,53,54,55,54,48,51,93,44,91,45,57,56,46,52,56,55,51,56,52,44,51,57,46,53,54,55,52,57,50,93,44,91,45,57,55,46,57,51,49,56,52,52,44,51,57,46,53,54,54,57,50,49,93,44,91,45,57,55,46,57,51,49,52,56,50,44,51,57,46,54,53,51,55,54,55,93,44,91,45,57,55,46,57,51,49,56,50,53,44,52,48,46,48,48,50,48,55,50,93,44,91,45,57,56,46,50,55,52,48,49,55,44,52,48,46,48,48,50,54,54,50,93,44,91,45,57,56,46,53,48,52,52,53,53,44,52,48,46,48,48,50,50,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,105,116,99,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,50,50,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,56,55,51,56,52,44,51,57,46,53,54,55,52,57,50,93,44,91,45,57,56,46,52,57,48,49,52,57,44,51,57,46,50,49,57,55,56,93,44,91,45,57,55,46,57,50,57,55,52,54,44,51,57,46,50,49,57,50,55,51,93,44,91,45,57,55,46,57,50,57,48,57,55,44,51,57,46,51,48,54,51,57,55,93,44,91,45,57,55,46,57,51,49,56,52,52,44,51,57,46,53,54,54,57,50,49,93,44,91,45,57,56,46,52,56,55,51,56,52,44,51,57,46,53,54,55,52,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,114,97,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,55,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,52,50,53,55,56,44,51,48,46,49,52,51,49,49,55,93,44,91,45,56,50,46,51,49,51,51,56,53,44,50,57,46,57,53,52,55,48,52,93,44,91,45,56,50,46,52,49,56,55,50,56,44,50,57,46,57,50,51,48,57,51,93,44,91,45,56,50,46,50,56,49,56,51,55,44,50,57,46,56,52,52,52,52,56,93,44,91,45,56,50,46,49,51,51,49,50,54,44,50,57,46,56,51,53,57,52,57,93,44,91,45,56,50,46,48,53,53,54,50,53,44,50,57,46,55,49,56,50,51,50,93,44,91,45,56,50,46,48,52,57,50,52,52,44,50,57,46,55,49,56,54,55,93,44,91,45,56,50,46,48,52,57,52,50,53,44,51,48,46,49,52,51,49,51,54,93,44,91,45,56,50,46,49,52,50,53,55,56,44,51,48,46,49,52,51,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,48,50,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,52,48,52,54,54,44,51,49,46,51,51,54,48,49,52,93,44,91,45,57,48,46,48,51,49,56,57,54,44,51,49,46,49,55,53,55,50,55,93,44,91,45,56,57,46,56,51,53,56,55,51,44,51,49,46,48,55,52,57,50,54,93,44,91,45,56,57,46,56,51,53,57,48,56,44,51,49,46,48,48,50,48,52,55,93,44,91,45,56,57,46,55,50,56,49,49,57,44,51,49,46,48,48,50,51,93,44,91,45,56,57,46,54,53,52,48,51,56,44,51,49,46,48,48,50,53,48,50,93,44,91,45,56,57,46,54,53,52,50,49,50,44,51,49,46,52,51,51,56,48,53,93,44,91,45,56,57,46,56,50,52,50,51,54,44,51,49,46,52,51,52,48,57,51,93,44,91,45,56,57,46,57,53,56,57,52,44,51,49,46,51,57,48,52,56,57,93,44,91,45,57,48,46,48,52,48,52,54,54,44,51,49,46,51,51,54,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,71,101,111,114,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,55,49,48,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,51,52,51,51,57,44,51,48,46,57,57,55,57,56,51,93,44,91,45,56,56,46,56,56,53,48,51,56,44,51,48,46,57,49,48,55,56,56,93,44,91,45,56,56,46,56,56,52,53,51,52,44,51,48,46,55,51,53,53,57,49,93,44,91,45,56,56,46,52,49,50,54,49,50,44,51,48,46,55,51,53,53,57,93,44,91,45,56,56,46,52,50,53,52,51,50,44,51,48,46,57,57,56,51,50,51,93,44,91,45,56,56,46,56,51,52,51,51,57,44,51,48,46,57,57,55,57,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,74,111,32,68,97,118,105,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,51,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,52,50,56,52,51,44,52,50,46,53,48,56,52,56,49,93,44,91,45,57,48,46,52,55,51,55,57,56,44,52,50,46,51,56,49,52,53,56,93,44,91,45,57,48,46,51,57,49,49,48,56,44,52,50,46,50,50,53,52,55,51,93,44,91,45,57,48,46,51,49,55,51,57,53,44,52,50,46,49,57,51,54,52,53,93,44,91,45,56,57,46,57,49,57,55,55,50,44,52,50,46,49,57,54,56,56,49,93,44,91,45,56,57,46,57,50,54,52,54,54,44,52,50,46,53,48,53,55,55,50,93,44,91,45,57,48,46,52,50,54,51,55,55,44,52,50,46,53,48,55,49,55,51,93,44,91,45,57,48,46,54,52,50,56,52,51,44,52,50,46,53,48,56,52,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,56,51,48,44,34,98,101,100,115,34,58,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,55,54,49,57,50,44,51,57,46,57,52,53,55,53,54,93,44,91,45,56,53,46,56,54,50,52,56,57,44,51,57,46,57,52,51,54,49,56,93,44,91,45,56,53,46,57,51,55,53,56,55,44,51,57,46,57,50,55,49,51,55,93,44,91,45,56,53,46,57,53,49,55,50,49,44,51,57,46,54,57,55,49,51,54,93,44,91,45,56,53,46,54,51,51,50,50,56,44,51,57,46,54,57,56,52,54,50,93,44,91,45,56,53,46,53,57,54,57,49,54,44,51,57,46,55,56,54,53,49,57,93,44,91,45,56,53,46,53,55,54,49,57,50,44,51,57,46,57,52,53,55,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,50,48,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,49,49,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,50,52,54,50,57,44,51,54,46,55,48,55,55,50,57,93,44,91,45,55,54,46,57,53,53,52,50,52,44,51,54,46,54,54,52,53,56,55,93,44,91,45,55,54,46,57,48,57,54,55,50,44,51,54,46,54,52,56,49,55,53,93,44,91,45,55,54,46,57,50,52,54,50,57,44,51,54,46,55,48,55,55,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,57,34,44,34,78,65,77,69,34,58,34,77,105,100,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,49,57,52,44,34,98,101,100,115,34,58,54,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,50,56,55,48,52,56,44,51,50,46,48,56,54,57,57,49,93,44,91,45,49,48,50,46,50,56,55,51,52,53,44,51,49,46,54,53,49,50,55,54,93,44,91,45,49,48,49,46,55,55,53,56,48,50,44,51,49,46,54,53,49,51,49,57,93,44,91,45,49,48,49,46,55,55,54,48,56,53,44,51,50,46,48,56,54,57,50,53,93,44,91,45,49,48,50,46,50,49,49,50,52,57,44,51,50,46,48,56,54,56,93,44,91,45,49,48,50,46,50,56,55,48,52,56,44,51,50,46,48,56,54,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,49,50,56,51,55,57,44,51,56,46,55,48,48,54,48,51,93,44,91,45,49,48,49,46,49,50,53,52,51,56,44,51,56,46,50,54,52,53,48,57,93,44,91,45,49,48,49,46,49,48,51,50,54,56,44,51,56,46,50,54,52,53,53,55,93,44,91,45,49,48,48,46,54,56,52,54,57,57,44,51,56,46,50,54,52,49,51,55,93,44,91,45,49,48,48,46,54,56,56,48,48,54,44,51,56,46,55,48,48,48,50,49,93,44,91,45,49,48,48,46,56,49,56,54,57,56,44,51,56,46,54,57,57,56,54,49,93,44,91,45,49,48,49,46,49,50,56,51,55,57,44,51,56,46,55,48,48,54,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,115,99,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,55,52,54,44,34,98,101,100,115,34,58,53,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,48,52,55,55,56,49,44,52,55,46,53,49,54,48,51,52,93,44,91,45,49,49,50,46,48,52,52,56,50,57,44,52,55,46,49,57,50,55,49,49,93,44,91,45,49,49,49,46,55,56,57,50,55,56,44,52,55,46,49,50,56,57,50,50,93,44,91,45,49,49,49,46,55,57,48,50,51,54,44,52,54,46,57,49,51,55,54,52,93,44,91,45,49,49,49,46,54,53,56,49,51,50,44,52,54,46,57,49,51,52,50,51,93,44,91,45,49,49,49,46,53,51,57,51,55,51,44,52,55,46,48,48,48,53,53,57,93,44,91,45,49,49,49,46,48,56,52,50,56,53,44,52,55,46,48,49,48,54,49,51,93,44,91,45,49,49,48,46,57,49,51,48,51,53,44,52,54,46,57,56,48,53,53,57,93,44,91,45,49,49,48,46,54,53,50,56,55,55,44,52,54,46,56,50,51,54,50,54,93,44,91,45,49,49,48,46,54,52,53,50,49,50,44,52,55,46,48,57,53,56,55,93,44,91,45,49,49,48,46,55,55,48,54,57,56,44,52,55,46,48,57,54,53,52,54,93,44,91,45,49,49,48,46,55,54,55,49,50,53,44,52,55,46,51,53,57,49,50,56,93,44,91,45,49,49,48,46,54,51,57,53,53,57,44,52,55,46,52,49,54,52,56,54,93,44,91,45,49,49,48,46,55,54,57,49,50,57,44,52,55,46,52,52,54,48,57,54,93,44,91,45,49,49,48,46,56,54,52,54,51,44,52,55,46,53,50,52,55,49,52,93,44,91,45,49,49,49,46,48,52,51,56,56,49,44,52,55,46,53,57,49,53,56,51,93,44,91,45,49,49,48,46,57,55,54,54,54,56,44,52,55,46,54,57,56,55,51,93,44,91,45,49,49,49,46,52,48,56,56,53,44,52,55,46,54,57,56,49,50,51,93,44,91,45,49,49,49,46,54,54,54,52,56,50,44,52,55,46,54,57,55,55,54,49,93,44,91,45,49,49,49,46,54,54,54,50,54,44,52,55,46,54,49,49,50,53,51,93,44,91,45,49,49,49,46,57,50,50,57,51,54,44,52,55,46,54,49,49,50,51,49,93,44,91,45,49,49,49,46,57,50,50,55,57,53,44,52,55,46,53,48,53,48,54,52,93,44,91,45,49,49,50,46,48,52,55,55,56,49,44,52,55,46,53,49,54,48,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,54,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,54,48,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,51,57,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,49,55,56,55,49,44,51,56,46,51,57,52,49,53,51,93,44,91,45,55,56,46,56,50,52,51,50,44,51,56,46,52,51,53,48,55,57,93,44,91,45,55,56,46,57,48,48,53,56,57,44,51,56,46,52,53,57,50,49,55,93,44,91,45,55,56,46,57,49,55,56,55,49,44,51,56,46,51,57,52,49,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,50,57,57,44,34,98,101,100,115,34,58,51,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,53,49,49,55,54,44,51,55,46,56,54,49,57,57,57,93,44,91,45,56,57,46,49,53,51,54,49,55,44,51,55,46,54,48,48,50,51,55,93,44,91,45,56,57,46,48,52,49,52,48,49,44,51,55,46,53,57,54,53,55,54,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,50,55,55,93,44,91,45,56,56,46,55,48,54,55,53,57,44,51,55,46,56,54,51,52,53,55,93,44,91,45,56,57,46,49,53,49,49,55,54,44,51,55,46,56,54,49,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,70,108,97,116,104,101,97,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,48,56,50,44,34,98,101,100,115,34,58,50,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,55,50,55,48,52,53,44,52,57,46,48,48,48,53,48,56,93,44,91,45,49,49,52,46,54,52,56,49,51,52,44,52,56,46,55,55,57,51,51,50,93,44,91,45,49,49,52,46,54,57,50,52,53,44,52,56,46,54,56,48,49,51,54,93,44,91,45,49,49,52,46,56,56,56,53,57,44,52,56,46,54,53,56,55,54,53,93,44,91,45,49,49,52,46,56,52,57,56,48,51,44,52,56,46,53,55,51,53,48,50,93,44,91,45,49,49,52,46,56,52,56,48,57,56,44,52,56,46,50,50,54,49,50,53,93,44,91,45,49,49,53,46,48,50,48,48,55,57,44,52,56,46,50,50,53,57,53,52,93,44,91,45,49,49,53,46,48,49,48,54,55,50,44,52,56,46,48,49,55,54,50,49,93,44,91,45,49,49,52,46,57,56,57,51,52,52,44,52,55,46,56,55,50,56,48,55,93,44,91,45,49,49,52,46,54,48,52,53,56,52,44,52,55,46,56,55,53,54,48,53,93,44,91,45,49,49,52,46,54,48,52,52,54,50,44,52,55,46,55,56,57,56,55,49,93,44,91,45,49,49,52,46,52,55,55,50,57,44,52,55,46,55,56,57,57,52,49,93,44,91,45,49,49,52,46,52,57,50,49,57,44,52,55,46,57,54,49,57,56,57,93,44,91,45,49,49,52,46,48,51,56,53,52,53,44,52,55,46,57,54,50,53,53,93,44,91,45,49,49,52,46,48,50,57,48,52,50,44,52,56,46,48,53,49,54,53,51,93,44,91,45,49,49,51,46,56,56,52,53,52,49,44,52,56,46,48,53,49,57,93,44,91,45,49,49,51,46,56,51,50,53,53,54,44,52,55,46,57,55,54,52,51,52,93,44,91,45,49,49,51,46,54,55,50,51,51,53,44,52,55,46,56,57,54,52,57,49,93,44,91,45,49,49,51,46,54,51,52,48,55,57,44,52,55,46,54,48,48,48,50,55,93,44,91,45,49,49,51,46,52,54,54,52,56,53,44,52,55,46,54,48,48,48,53,55,93,44,91,45,49,49,51,46,49,52,52,51,54,56,44,52,55,46,53,57,53,53,48,55,93,44,91,45,49,49,51,46,49,54,53,56,49,49,44,52,55,46,55,49,57,55,54,52,93,44,91,45,49,49,51,46,48,56,48,57,57,55,44,52,55,46,55,52,57,57,49,55,93,44,91,45,49,49,51,46,48,54,50,56,55,54,44,52,55,46,56,56,53,53,54,51,93,44,91,45,49,49,50,46,57,56,52,55,51,52,44,52,55,46,57,53,51,57,49,56,93,44,91,45,49,49,50,46,56,56,52,56,56,51,44,52,55,46,57,56,53,52,49,52,93,44,91,45,49,49,51,46,48,49,52,56,49,49,44,52,56,46,49,51,49,48,51,93,44,91,45,49,49,51,46,50,51,48,55,50,51,44,52,56,46,49,56,50,48,48,50,93,44,91,45,49,49,51,46,51,52,57,48,52,54,44,52,56,46,51,49,48,50,54,51,93,44,91,45,49,49,51,46,51,53,53,57,55,54,44,52,56,46,52,50,51,57,49,50,93,44,91,45,49,49,51,46,52,56,48,56,51,57,44,52,56,46,52,53,57,54,54,50,93,44,91,45,49,49,51,46,52,54,55,51,55,50,44,52,56,46,53,52,55,53,53,53,93,44,91,45,49,49,51,46,55,53,48,52,53,52,44,52,56,46,54,49,52,51,51,53,93,44,91,45,49,49,51,46,55,48,50,57,51,56,44,52,56,46,55,49,57,56,54,53,93,44,91,45,49,49,51,46,56,49,56,51,55,51,44,52,56,46,56,52,56,50,49,56,93,44,91,45,49,49,51,46,57,53,54,56,54,52,44,52,56,46,56,49,55,52,55,52,93,44,91,45,49,49,52,46,48,54,56,49,56,44,52,56,46,57,57,56,56,53,55,93,44,91,45,49,49,52,46,55,50,55,48,52,53,44,52,57,46,48,48,48,53,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,80,101,195,177,117,101,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,55,54,57,48,52,57,44,49,56,46,49,51,52,57,56,51,93,44,91,45,54,54,46,55,55,52,49,50,51,44,49,55,46,57,49,52,55,57,54,93,44,91,45,54,54,46,55,49,53,50,52,52,44,49,55,46,57,49,50,54,56,50,93,44,91,45,54,54,46,54,57,52,48,55,44,49,56,46,49,51,48,53,51,52,93,44,91,45,54,54,46,55,54,57,48,52,57,44,49,56,46,49,51,52,57,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,83,116,101,118,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,56,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,53,54,54,48,54,44,51,55,46,51,56,56,52,56,53,93,44,91,45,49,48,49,46,53,53,53,50,53,57,44,51,54,46,57,57,53,51,50,52,93,44,91,45,49,48,49,46,48,54,54,52,53,49,44,51,54,46,57,57,55,57,50,50,93,44,91,45,49,48,49,46,48,54,56,49,48,54,44,51,55,46,51,56,55,55,55,57,93,44,91,45,49,48,49,46,48,56,57,54,53,51,44,51,55,46,51,56,55,55,50,49,93,44,91,45,49,48,49,46,53,50,53,56,49,44,51,55,46,51,56,56,51,57,50,93,44,91,45,49,48,49,46,53,53,54,54,48,54,44,51,55,46,51,56,56,52,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,56,55,51,52,44,34,98,101,100,115,34,58,50,49,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,48,49,56,52,55,44,51,56,46,50,48,55,56,56,57,93,44,91,45,56,52,46,54,50,53,48,55,57,44,51,56,46,49,49,54,51,57,55,93,44,91,45,56,52,46,54,54,48,51,52,44,51,56,46,48,48,51,56,51,54,93,44,91,45,56,52,46,52,55,57,54,50,57,44,51,55,46,57,52,48,50,49,57,93,44,91,45,56,52,46,52,51,53,55,50,44,51,55,46,56,52,55,50,48,50,93,44,91,45,56,52,46,51,51,55,51,57,51,44,51,55,46,56,57,50,48,48,55,93,44,91,45,56,52,46,50,56,54,52,54,49,44,51,56,46,48,54,55,48,50,56,93,44,91,45,56,52,46,51,56,48,55,56,56,44,51,56,46,49,49,51,57,54,93,44,91,45,56,52,46,52,48,49,56,52,55,44,51,56,46,50,48,55,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,55,56,56,51,55,44,51,55,46,57,51,48,50,52,52,93,44,91,45,56,54,46,56,49,55,49,44,51,55,46,55,57,49,53,56,57,93,44,91,45,56,54,46,56,50,51,52,50,57,44,51,55,46,55,51,55,55,53,52,93,44,91,45,56,54,46,54,51,56,57,51,53,44,51,55,46,54,54,49,56,55,55,93,44,91,45,56,54,46,54,53,53,50,55,50,44,51,55,46,56,52,50,53,50,49,93,44,91,45,56,54,46,56,49,52,55,52,52,44,51,55,46,57,57,56,55,48,52,93,44,91,45,56,54,46,57,55,56,56,51,55,44,51,55,46,57,51,48,50,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,52,48,44,34,98,101,100,115,34,58,49,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,50,53,48,48,50,44,52,53,46,53,57,49,50,53,50,93,44,91,45,57,56,46,55,50,50,52,56,49,44,52,53,46,50,52,51,55,54,52,93,44,91,45,57,56,46,55,49,55,55,53,57,44,52,53,46,50,52,51,55,51,50,93,44,91,45,57,55,46,57,56,49,52,53,55,44,52,53,46,50,52,48,52,49,53,93,44,91,45,57,55,46,57,55,57,53,57,50,44,52,53,46,53,56,56,52,56,51,93,44,91,45,57,55,46,57,55,56,55,55,56,44,52,53,46,57,51,53,56,54,51,93,44,91,45,57,56,46,48,48,56,49,48,50,44,52,53,46,57,51,53,56,57,54,93,44,91,45,57,56,46,55,50,52,51,55,53,44,52,53,46,57,51,56,55,51,49,93,44,91,45,57,56,46,55,50,53,48,48,50,44,52,53,46,53,57,49,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,97,114,98,111,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,51,48,44,34,98,101,100,115,34,58,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,57,53,53,51,54,44,51,57,46,50,57,57,53,56,52,93,44,91,45,56,48,46,48,50,51,52,49,49,44,51,57,46,50,52,55,56,57,50,93,44,91,45,56,48,46,49,54,54,51,56,55,44,51,57,46,50,52,50,50,56,51,93,44,91,45,56,48,46,50,50,55,49,55,51,44,51,57,46,49,49,50,55,57,50,93,44,91,45,56,48,46,48,52,52,54,57,53,44,51,57,46,48,49,48,49,56,54,93,44,91,45,56,48,46,48,56,53,48,54,50,44,51,56,46,57,52,55,50,51,54,93,44,91,45,55,57,46,56,57,54,48,57,52,44,51,56,46,57,55,51,52,48,52,93,44,91,45,55,57,46,56,50,53,48,57,50,44,51,57,46,49,49,53,56,48,51,93,44,91,45,55,57,46,56,48,57,55,50,57,44,51,57,46,50,51,48,53,50,54,93,44,91,45,55,57,46,56,57,53,53,51,54,44,51,57,46,50,57,57,53,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,52,57,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,50,52,55,52,49,44,51,53,46,51,57,50,51,48,55,93,44,91,45,56,55,46,57,56,49,53,56,53,44,51,53,46,50,57,53,54,55,56,93,44,91,45,56,55,46,57,56,52,57,49,54,44,51,53,46,48,48,53,57,51,51,93,44,91,45,56,55,46,54,48,54,48,51,49,44,51,53,46,48,48,51,52,50,53,93,44,91,45,56,55,46,53,55,55,55,57,54,44,51,53,46,49,53,57,52,93,44,91,45,56,55,46,53,55,53,51,53,50,44,51,53,46,51,57,56,52,53,52,93,44,91,45,56,55,46,55,49,55,53,53,57,44,51,53,46,52,56,51,51,52,55,93,44,91,45,56,55,46,57,55,51,49,56,44,51,53,46,52,53,57,57,54,56,93,44,91,45,56,56,46,48,48,55,55,48,57,44,51,53,46,52,50,51,51,56,49,93,44,91,45,56,56,46,48,50,52,55,52,49,44,51,53,46,51,57,50,51,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,111,120,32,66,117,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,52,52,52,53,51,50,44,52,50,46,52,51,55,51,53,52,93,44,91,45,49,48,51,46,52,52,52,49,48,56,44,52,50,46,48,57,48,55,48,56,93,44,91,45,49,48,51,46,52,48,49,54,51,57,44,52,50,46,48,48,51,53,52,93,44,91,45,49,48,51,46,51,54,51,51,51,55,44,52,50,46,48,48,50,57,51,93,44,91,45,49,48,50,46,54,57,55,56,51,53,44,52,50,46,48,48,52,56,52,51,93,44,91,45,49,48,50,46,55,52,50,50,54,57,44,52,50,46,48,57,50,51,56,56,93,44,91,45,49,48,50,46,55,55,51,51,54,54,44,52,50,46,52,51,57,57,50,50,93,44,91,45,49,48,51,46,52,52,52,53,51,50,44,52,50,46,52,51,55,51,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,51,50,53,44,34,98,101,100,115,34,58,49,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,56,57,54,49,49,52,44,52,49,46,49,51,57,48,55,93,44,91,45,55,54,46,56,56,50,50,56,44,52,48,46,57,55,49,51,51,52,93,44,91,45,55,54,46,56,48,48,50,52,50,44,52,48,46,56,56,49,57,57,52,93,44,91,45,55,54,46,56,53,53,51,54,50,44,52,48,46,55,50,56,56,50,49,93,44,91,45,55,54,46,57,51,57,55,52,57,44,52,48,46,54,51,56,51,55,56,93,44,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,44,91,45,55,54,46,55,48,49,54,50,52,44,52,48,46,54,53,56,48,56,50,93,44,91,45,55,54,46,51,56,48,49,53,50,44,52,48,46,55,55,53,53,49,49,93,44,91,45,55,54,46,53,50,56,48,51,52,44,52,48,46,56,56,50,53,49,53,93,44,91,45,55,54,46,54,54,49,51,52,56,44,52,48,46,57,54,55,57,57,54,93,44,91,45,55,54,46,55,57,50,54,49,44,52,48,46,57,52,54,54,52,55,93,44,91,45,55,54,46,55,51,50,54,55,50,44,52,49,46,49,55,50,48,52,93,44,91,45,55,54,46,56,57,54,49,49,52,44,52,49,46,49,51,57,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,54,57,34,44,34,78,65,77,69,34,58,34,86,105,99,116,111,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,57,55,48,44,34,98,101,100,115,34,58,54,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,55,54,51,55,56,44,50,57,46,49,48,52,48,52,54,93,44,91,45,57,55,46,51,48,53,57,49,54,44,50,56,46,56,54,52,48,51,55,93,44,91,45,57,55,46,50,48,52,57,57,56,44,50,56,46,56,53,53,48,52,93,44,91,45,57,55,46,49,53,56,57,51,51,44,50,56,46,55,55,54,49,53,54,93,44,91,45,57,55,46,49,54,48,55,53,49,44,50,56,46,53,53,51,52,55,53,93,44,91,45,57,54,46,56,57,48,57,53,49,44,50,56,46,53,48,55,49,55,56,93,44,91,45,57,54,46,56,53,51,55,53,55,44,50,56,46,54,51,53,49,57,57,93,44,91,45,57,54,46,54,52,51,52,52,50,44,50,56,46,55,49,50,49,48,53,93,44,91,45,57,54,46,55,57,50,49,51,51,44,50,56,46,57,49,56,56,48,51,93,44,91,45,57,54,46,56,51,56,55,57,53,44,50,57,46,48,50,53,51,50,55,93,44,91,45,57,54,46,57,51,56,53,56,55,44,50,57,46,48,54,51,50,52,52,93,44,91,45,57,54,46,57,55,54,51,55,56,44,50,57,46,49,48,52,48,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,51,48,34,44,34,78,65,77,69,34,58,34,66,117,101,110,97,32,86,105,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,51,56,49,53,48,57,44,51,55,46,55,52,50,49,52,57,93,44,91,45,55,57,46,51,54,48,55,54,50,44,51,55,46,55,48,50,54,54,54,93,44,91,45,55,57,46,51,51,49,50,53,50,44,51,55,46,55,52,52,51,51,54,93,44,91,45,55,57,46,51,56,49,53,48,57,44,51,55,46,55,52,50,49,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,108,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,53,54,54,44,34,98,101,100,115,34,58,50,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,51,52,48,55,51,44,52,51,46,49,55,48,52,49,51,93,44,91,45,56,50,46,57,57,54,50,53,55,44,52,51,46,49,53,52,48,57,57,93,44,91,45,56,50,46,57,56,51,54,52,55,44,52,50,46,56,57,51,55,52,49,93,44,91,45,56,50,46,55,51,57,48,49,44,52,50,46,56,57,55,53,52,49,93,44,91,45,56,50,46,55,50,51,49,55,44,52,50,46,52,55,55,55,55,56,93,44,91,45,56,50,46,53,50,52,56,51,51,44,52,50,46,54,48,53,57,55,54,93,44,91,45,56,50,46,52,54,55,54,54,55,44,52,50,46,55,54,49,57,48,54,93,44,91,45,56,50,46,52,53,54,50,52,57,44,52,50,46,57,50,53,49,55,55,93,44,91,45,56,50,46,51,51,52,48,55,51,44,52,51,46,49,55,48,52,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,84,104,117,114,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,52,48,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,50,50,52,57,55,44,52,50,46,50,54,52,50,57,50,93,44,91,45,57,54,46,56,50,51,54,55,44,52,50,46,48,57,48,52,49,49,93,44,91,45,57,54,46,53,53,53,53,49,49,44,52,50,46,48,56,57,57,53,55,93,44,91,45,57,54,46,53,53,52,56,54,54,44,52,50,46,48,49,53,56,55,53,93,44,91,45,57,54,46,51,48,57,54,52,53,44,52,50,46,48,49,53,49,56,55,93,44,91,45,57,54,46,50,55,51,49,50,44,52,50,46,48,52,55,49,53,56,93,44,91,45,57,54,46,51,53,54,53,54,44,52,50,46,50,49,53,48,48,50,93,44,91,45,57,54,46,51,53,54,51,57,53,44,52,50,46,50,55,54,52,57,52,93,44,91,45,57,54,46,55,50,54,54,54,49,44,52,50,46,50,55,56,48,48,53,93,44,91,45,57,54,46,56,50,50,52,57,55,44,52,50,46,50,54,52,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,76,97,109,111,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,54,56,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,53,55,56,49,54,49,44,52,52,46,55,56,49,53,55,56,93,44,91,45,55,50,46,55,52,55,51,54,44,52,52,46,55,56,54,49,55,93,44,91,45,55,50,46,57,50,52,49,49,50,44,52,52,46,54,51,51,48,53,49,93,44,91,45,55,50,46,56,50,57,48,55,51,44,52,52,46,53,53,50,50,55,51,93,44,91,45,55,50,46,56,48,52,57,57,53,44,52,52,46,52,53,49,54,55,54,93,44,91,45,55,50,46,54,53,52,51,57,56,44,52,52,46,51,57,56,50,50,52,93,44,91,45,55,50,46,52,57,50,57,49,52,44,52,52,46,52,50,51,48,51,93,44,91,45,55,50,46,52,51,52,51,49,53,44,52,52,46,53,48,54,48,57,56,93,44,91,45,55,50,46,51,55,52,55,56,54,44,52,52,46,53,56,52,49,50,53,93,44,91,45,55,50,46,52,56,50,51,48,50,44,52,52,46,54,51,51,57,50,56,93,44,91,45,55,50,46,52,49,55,51,49,53,44,52,52,46,55,50,50,56,57,51,93,44,91,45,55,50,46,53,55,56,49,54,49,44,52,52,46,55,56,49,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,50,51,51,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,49,50,56,54,55,52,44,51,55,46,49,50,50,57,48,49,93,44,91,45,56,48,46,49,52,53,56,52,52,44,51,54,46,57,52,57,53,55,56,93,44,91,45,56,48,46,50,51,53,52,53,53,44,51,54,46,56,55,50,49,51,93,44,91,45,56,48,46,48,54,54,52,52,57,44,51,54,46,56,52,49,48,53,55,93,44,91,45,56,48,46,48,52,49,52,57,51,44,51,54,46,55,57,52,51,54,53,93,44,91,45,55,57,46,57,57,57,55,55,49,44,51,54,46,56,51,48,55,51,56,93,44,91,45,55,57,46,56,48,50,48,53,54,44,51,54,46,55,57,50,49,51,55,93,44,91,45,55,57,46,54,52,48,54,53,50,44,51,54,46,56,53,54,49,51,57,93,44,91,45,55,57,46,53,57,52,48,54,57,44,51,55,46,48,52,50,50,48,54,93,44,91,45,55,57,46,54,55,56,48,50,56,44,51,55,46,49,53,53,49,54,53,93,44,91,45,55,57,46,56,52,55,50,49,55,44,51,55,46,50,50,53,52,48,54,93,44,91,45,55,57,46,57,54,49,56,57,44,51,55,46,49,51,55,51,52,57,93,44,91,45,56,48,46,49,50,56,54,55,52,44,51,55,46,49,50,50,57,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,108,97,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,51,52,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,51,54,56,57,57,44,51,54,46,49,54,52,56,57,52,93,44,91,45,57,56,46,54,51,49,57,56,53,44,51,53,46,56,49,50,52,48,50,93,44,91,45,57,56,46,54,50,51,50,52,52,44,51,53,46,53,53,49,53,50,50,93,44,91,45,57,56,46,51,49,51,50,53,49,44,51,53,46,53,53,49,53,50,51,93,44,91,45,57,56,46,51,49,51,49,53,51,44,51,53,46,55,50,53,49,54,49,93,44,91,45,57,56,46,50,48,55,49,48,52,44,51,53,46,55,50,53,49,56,55,93,44,91,45,57,56,46,50,49,48,52,48,53,44,51,54,46,49,54,52,56,56,57,93,44,91,45,57,56,46,54,51,54,56,57,57,44,51,54,46,49,54,52,56,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,75,105,116,116,105,116,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,56,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,49,49,51,53,54,57,44,52,55,46,53,57,55,50,56,56,93,44,91,45,49,50,49,46,49,55,50,49,57,50,44,52,55,46,53,57,48,50,51,51,93,44,91,45,49,50,49,46,52,54,51,57,53,49,44,52,55,46,51,55,48,53,55,56,93,44,91,45,49,50,49,46,51,52,49,50,48,51,44,52,55,46,50,56,49,50,54,49,93,44,91,45,49,50,49,46,51,49,53,53,51,52,44,52,55,46,49,51,51,56,52,52,93,44,91,45,49,50,49,46,51,55,57,54,56,50,44,52,55,46,48,56,55,52,57,53,93,44,91,45,49,50,49,46,50,53,54,52,52,44,52,55,46,48,56,49,55,55,50,93,44,91,45,49,50,49,46,48,57,48,48,53,52,44,52,54,46,57,57,49,48,48,55,93,44,91,45,49,50,49,46,48,50,54,54,50,44,52,54,46,57,49,49,51,48,56,93,44,91,45,49,50,48,46,54,51,52,53,54,50,44,52,54,46,57,49,50,49,51,93,44,91,45,49,50,48,46,54,51,51,57,56,49,44,52,54,46,56,50,53,55,55,54,93,44,91,45,49,50,48,46,53,49,44,52,54,46,55,51,55,57,52,54,93,44,91,45,49,49,57,46,57,55,51,48,51,54,44,52,54,46,55,51,55,49,50,54,93,44,91,45,49,49,57,46,57,50,55,53,51,55,44,52,54,46,56,49,55,48,57,50,93,44,91,45,49,50,48,46,48,52,50,56,54,54,44,52,55,46,48,55,51,52,53,51,93,44,91,45,49,50,48,46,48,48,55,48,55,52,44,52,55,46,50,50,48,49,51,51,93,44,91,45,49,50,48,46,48,57,52,52,54,44,52,55,46,50,54,50,49,53,57,93,44,91,45,49,50,48,46,51,56,57,49,57,55,44,52,55,46,50,54,48,57,51,53,93,44,91,45,49,50,48,46,57,50,52,50,48,55,44,52,55,46,52,51,51,53,56,50,93,44,91,45,49,50,49,46,49,49,51,53,54,57,44,52,55,46,53,57,55,50,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,48,51,54,55,50,44,52,48,46,51,49,48,48,57,51,93,44,91,45,56,53,46,50,49,56,55,53,56,44,52,48,46,51,48,54,55,48,54,93,44,91,45,56,53,46,50,49,52,51,56,54,44,52,48,46,48,55,54,56,56,57,93,44,91,45,56,53,46,50,48,49,52,55,51,44,52,48,46,48,48,52,53,50,49,93,44,91,45,56,52,46,56,49,48,56,50,53,44,52,48,46,48,48,53,48,55,55,93,44,91,45,56,52,46,56,48,51,54,55,50,44,52,48,46,51,49,48,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,75,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,53,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,57,48,48,57,57,51,44,51,55,46,53,48,48,48,50,49,93,44,91,45,49,49,50,46,56,57,57,49,57,49,44,51,55,46,48,48,48,51,56,53,93,44,91,45,49,49,50,46,53,51,56,53,55,49,44,51,55,46,48,48,48,55,53,56,93,44,91,45,49,49,49,46,52,49,50,55,56,52,44,51,55,46,48,48,49,53,48,51,93,44,91,45,49,49,49,46,49,55,56,51,52,57,44,51,55,46,49,48,50,54,49,51,93,44,91,45,49,49,48,46,57,57,50,52,48,52,44,51,55,46,49,49,49,48,57,51,93,44,91,45,49,49,48,46,56,57,57,53,49,55,44,51,55,46,49,55,54,49,53,51,93,44,91,45,49,49,48,46,56,49,50,53,48,49,44,51,55,46,51,50,52,57,57,50,93,44,91,45,49,49,48,46,55,52,50,49,57,56,44,51,55,46,51,52,52,51,57,50,93,44,91,45,49,49,48,46,54,52,54,51,57,52,44,51,55,46,53,52,49,48,54,51,93,44,91,45,49,49,49,46,56,52,48,56,48,57,44,51,55,46,53,51,53,55,56,57,93,44,91,45,49,49,50,46,54,56,51,55,53,44,51,55,46,53,52,51,54,57,50,93,44,91,45,49,49,50,46,57,48,48,57,57,51,44,51,55,46,53,48,48,48,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,84,117,99,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,50,53,48,57,50,44,51,57,46,49,49,53,56,48,51,93,44,91,45,55,57,46,55,56,53,54,56,53,44,51,57,46,48,51,55,52,48,52,93,44,91,45,55,57,46,53,48,56,55,54,53,44,51,56,46,57,55,53,49,55,51,93,44,91,45,55,57,46,51,53,55,54,54,54,44,51,56,46,57,54,52,53,48,57,93,44,91,45,55,57,46,50,57,54,54,54,51,44,51,57,46,49,57,56,52,48,54,93,44,91,45,55,57,46,52,56,55,49,55,53,44,51,57,46,49,57,52,57,48,54,93,44,91,45,55,57,46,54,56,55,50,56,51,44,51,57,46,50,55,49,51,57,56,93,44,91,45,55,57,46,56,48,57,55,50,57,44,51,57,46,50,51,48,53,50,54,93,44,91,45,55,57,46,56,50,53,48,57,50,44,51,57,46,49,49,53,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,80,111,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,57,50,54,44,34,98,101,100,115,34,58,55,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,53,50,55,54,54,44,49,56,46,49,53,50,48,53,55,93,44,91,45,54,54,46,54,52,57,52,54,55,44,49,56,46,49,53,56,56,53,55,93,44,91,45,54,54,46,54,55,48,52,57,52,44,49,56,46,49,53,50,56,51,49,93,44,91,45,54,54,46,54,57,52,48,55,44,49,56,46,49,51,48,53,51,52,93,44,91,45,54,54,46,55,49,53,50,52,52,44,49,55,46,57,49,50,54,56,50,93,44,91,45,54,54,46,53,56,48,54,56,44,49,55,46,57,49,48,52,54,53,93,44,91,45,54,54,46,52,57,57,54,49,51,44,49,55,46,56,52,49,53,53,56,93,44,91,45,54,54,46,53,52,57,55,48,55,44,49,55,46,57,52,49,57,51,56,93,44,91,45,54,54,46,53,53,50,55,54,54,44,49,56,46,49,53,50,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,56,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,48,53,53,53,44,52,51,46,52,50,50,57,52,57,93,44,91,45,57,49,46,50,48,49,56,52,55,44,52,51,46,51,52,57,49,48,51,93,44,91,45,57,49,46,48,53,55,57,49,44,52,51,46,50,53,51,57,54,56,93,44,91,45,57,49,46,49,55,55,50,50,50,44,52,51,46,48,56,48,50,52,55,93,44,91,45,57,49,46,49,53,54,56,49,50,44,52,50,46,57,56,56,49,55,93,44,91,45,57,49,46,48,54,53,50,55,44,52,50,46,57,57,50,48,55,52,93,44,91,45,57,48,46,54,54,54,55,56,54,44,52,51,46,49,55,49,55,55,55,93,44,91,45,57,48,46,54,54,56,53,54,49,44,52,51,46,52,50,50,57,57,52,93,44,91,45,57,49,46,50,48,53,53,53,44,52,51,46,52,50,50,57,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,48,57,52,44,34,98,101,100,115,34,58,49,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,48,53,49,54,53,44,51,52,46,57,56,52,54,55,56,93,44,91,45,56,53,46,56,54,51,57,51,53,44,51,52,46,57,56,56,50,53,51,93,44,91,45,56,54,46,51,49,49,50,55,52,44,51,52,46,57,57,49,48,57,56,93,44,91,45,56,54,46,51,53,49,49,50,51,44,51,52,46,56,55,51,50,54,53,93,44,91,45,56,54,46,51,53,57,48,51,52,44,51,52,46,54,51,50,54,49,93,44,91,45,56,54,46,51,50,54,56,53,51,44,51,52,46,53,57,57,52,48,51,93,44,91,45,56,54,46,49,52,56,52,54,52,44,51,52,46,53,57,57,48,54,57,93,44,91,45,56,54,46,49,52,57,56,48,54,44,51,52,46,53,51,51,54,51,51,93,44,91,45,56,54,46,48,53,55,55,49,50,44,51,52,46,52,55,53,57,57,52,93,44,91,45,56,54,46,48,48,51,56,52,44,51,52,46,52,56,48,48,51,49,93,44,91,45,56,53,46,55,56,53,52,55,49,44,51,52,46,54,50,52,53,56,52,93,44,91,45,56,53,46,53,56,51,49,52,53,44,51,52,46,56,54,48,51,55,49,93,44,91,45,56,53,46,54,48,53,49,54,53,44,51,52,46,57,56,52,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,97,104,97,115,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,50,48,56,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,55,49,52,50,49,44,52,49,46,53,48,56,53,50,50,93,44,91,45,57,50,46,56,54,57,55,55,49,44,52,49,46,49,54,49,48,54,54,93,44,91,45,57,50,46,54,52,48,51,54,49,44,52,49,46,49,54,49,50,57,56,93,44,91,45,57,50,46,52,49,48,50,51,51,44,52,49,46,49,54,49,57,52,50,93,44,91,45,57,50,46,52,49,49,57,57,53,44,52,49,46,53,48,57,53,52,56,93,44,91,45,57,50,46,55,53,54,53,48,56,44,52,49,46,53,48,56,55,57,52,93,44,91,45,57,50,46,56,55,49,52,50,49,44,52,49,46,53,48,56,53,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,51,49,57,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,48,48,50,53,52,44,51,57,46,48,53,54,54,53,54,93,44,91,45,57,53,46,53,48,48,55,50,52,44,51,56,46,56,54,57,56,49,53,93,44,91,45,57,53,46,53,48,48,55,51,56,44,51,56,46,55,51,56,56,48,56,93,44,91,45,57,53,46,48,53,54,52,49,50,44,51,56,46,55,51,56,53,56,55,93,44,91,45,57,53,46,48,53,54,50,53,56,44,51,56,46,57,56,50,49,50,93,44,91,45,57,53,46,49,56,55,49,48,51,44,51,57,46,48,52,52,49,48,57,93,44,91,45,57,53,46,53,48,48,50,53,52,44,51,57,46,48,53,54,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,68,97,118,105,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,57,51,55,44,34,98,101,100,115,34,58,53,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,55,56,56,51,55,44,51,55,46,57,51,48,50,52,52,93,44,91,45,56,55,46,48,54,57,54,55,53,44,51,55,46,56,48,49,53,49,51,93,44,91,45,56,55,46,50,54,56,57,57,53,44,51,55,46,56,55,56,48,50,54,93,44,91,45,56,55,46,51,48,50,57,51,50,44,51,55,46,56,57,55,55,53,93,44,91,45,56,55,46,50,56,57,55,56,52,44,51,55,46,55,54,49,48,55,56,93,44,91,45,56,55,46,52,48,56,53,52,55,44,51,55,46,54,56,51,53,54,51,93,44,91,45,56,55,46,48,51,56,50,54,44,51,55,46,53,54,48,56,48,51,93,44,91,45,56,54,46,56,49,55,53,49,52,44,51,55,46,54,55,51,56,49,52,93,44,91,45,56,54,46,56,50,51,52,50,57,44,51,55,46,55,51,55,55,53,52,93,44,91,45,56,54,46,56,49,55,49,44,51,55,46,55,57,49,53,56,57,93,44,91,45,56,54,46,57,55,56,56,51,55,44,51,55,46,57,51,48,50,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,80,111,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,50,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,48,49,57,54,55,44,51,55,46,56,51,55,53,57,50,93,44,91,45,56,51,46,57,48,54,50,53,49,44,51,55,46,55,53,57,51,54,51,93,44,91,45,56,51,46,55,50,50,49,44,51,55,46,55,49,54,52,50,93,44,91,45,56,51,46,55,48,55,57,55,52,44,51,55,46,55,49,54,52,54,51,93,44,91,45,56,51,46,54,51,49,48,54,44,51,55,46,56,50,53,51,55,50,93,44,91,45,56,51,46,55,54,56,55,56,51,44,51,55,46,57,49,56,51,55,49,93,44,91,45,56,51,46,57,54,54,51,49,44,51,55,46,57,51,48,55,54,56,93,44,91,45,56,52,46,48,48,49,57,54,55,44,51,55,46,56,51,55,53,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,50,51,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,55,55,50,50,44,51,55,46,51,51,56,52,49,56,93,44,91,45,57,52,46,54,49,55,56,52,57,44,51,55,46,48,53,54,55,57,55,93,44,91,45,57,52,46,48,53,57,50,49,49,44,51,55,46,48,52,56,49,50,55,93,44,91,45,57,52,46,48,53,50,51,49,51,44,51,55,46,50,57,48,48,55,56,93,44,91,45,57,52,46,48,56,50,48,56,51,44,51,55,46,51,52,57,50,57,49,93,44,91,45,57,52,46,54,49,55,53,55,44,51,55,46,51,54,52,49,55,93,44,91,45,57,52,46,54,49,55,55,50,50,44,51,55,46,51,51,56,52,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,57,55,50,57,56,44,52,53,46,56,54,48,53,57,53,93,44,91,45,49,49,56,46,49,49,55,49,57,52,44,52,53,46,54,56,56,54,48,55,93,44,91,45,49,49,56,46,49,49,54,52,54,49,44,52,53,46,52,55,48,55,51,50,93,44,91,45,49,49,56,46,49,57,55,56,55,54,44,52,53,46,52,50,55,50,48,52,93,44,91,45,49,49,56,46,52,50,56,53,51,57,44,52,53,46,52,50,57,48,55,54,93,44,91,45,49,49,56,46,52,50,56,51,50,57,44,52,53,46,51,53,53,49,57,93,44,91,45,49,49,56,46,54,57,55,55,54,54,44,52,53,46,51,52,53,54,52,55,93,44,91,45,49,49,56,46,54,53,53,57,57,50,44,52,53,46,49,57,54,57,50,56,93,44,91,45,49,49,56,46,53,52,54,54,51,50,44,52,53,46,49,57,54,56,57,56,93,44,91,45,49,49,56,46,53,49,56,54,56,57,44,52,52,46,57,57,53,56,55,55,93,44,91,45,49,49,56,46,50,52,52,54,54,50,44,52,52,46,57,53,56,51,57,54,93,44,91,45,49,49,56,46,49,51,49,51,55,49,44,52,53,46,48,52,52,54,57,93,44,91,45,49,49,55,46,57,54,56,51,57,52,44,52,52,46,57,57,54,48,48,50,93,44,91,45,49,49,55,46,56,52,51,52,51,44,52,53,46,48,53,56,52,55,55,93,44,91,45,49,49,55,46,55,55,55,53,48,52,44,52,52,46,57,57,50,49,54,49,93,44,91,45,49,49,55,46,53,54,52,48,51,51,44,52,52,46,57,57,50,56,54,54,93,44,91,45,49,49,55,46,53,54,51,52,56,54,44,52,53,46,48,55,57,52,52,54,93,44,91,45,49,49,55,46,50,54,54,48,48,53,44,52,53,46,48,56,48,53,55,93,44,91,45,49,49,55,46,50,54,54,48,48,54,44,52,53,46,49,54,54,53,51,57,93,44,91,45,49,49,55,46,52,55,54,54,56,52,44,52,53,46,49,54,54,53,51,57,93,44,91,45,49,49,55,46,53,50,50,50,52,57,44,52,53,46,50,54,55,55,51,49,93,44,91,45,49,49,55,46,54,52,51,52,57,52,44,52,53,46,51,51,54,56,55,93,44,91,45,49,49,55,46,55,56,55,54,50,51,44,52,53,46,54,56,57,53,54,55,93,44,91,45,49,49,55,46,55,52,55,51,50,55,44,52,53,46,56,54,49,48,55,50,93,44,91,45,49,49,55,46,57,55,50,57,56,44,52,53,46,56,54,48,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,51,48,55,44,34,98,101,100,115,34,58,50,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,56,49,50,55,51,44,51,51,46,54,52,55,52,49,49,93,44,91,45,56,52,46,50,57,52,54,56,44,51,51,46,52,51,53,55,49,53,93,44,91,45,56,52,46,51,53,52,52,44,51,51,46,51,53,50,53,49,52,93,44,91,45,56,52,46,49,53,48,53,56,49,44,51,51,46,51,51,53,54,51,57,93,44,91,45,56,52,46,49,48,50,53,56,50,44,51,51,46,50,57,56,49,57,49,93,44,91,45,56,51,46,57,50,51,57,49,51,44,51,51,46,52,52,52,49,57,52,93,44,91,45,56,52,46,48,52,52,52,57,51,44,51,51,46,53,50,53,55,55,54,93,44,91,45,56,52,46,49,56,52,49,52,51,44,51,51,46,54,52,54,49,53,55,93,44,91,45,56,52,46,50,56,49,50,55,51,44,51,51,46,54,52,55,52,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,57,57,53,50,52,53,44,52,54,46,50,56,48,54,53,49,93,44,91,45,49,48,50,46,57,57,53,50,52,56,44,52,53,46,57,52,53,49,54,55,93,44,91,45,49,48,50,46,57,52,50,48,55,44,52,53,46,57,52,53,93,44,91,45,49,48,50,46,48,48,48,54,56,49,44,52,53,46,57,52,52,53,54,51,93,44,91,45,49,48,49,46,57,57,56,55,51,51,44,52,53,46,57,52,52,54,53,51,93,44,91,45,49,48,49,46,57,57,56,51,50,55,44,52,54,46,48,53,51,50,55,52,93,44,91,45,49,48,49,46,57,57,55,57,51,44,52,54,46,50,48,53,51,50,52,93,44,91,45,49,48,50,46,52,57,55,49,51,55,44,52,54,46,50,48,53,57,48,52,93,44,91,45,49,48,50,46,52,57,55,54,52,50,44,52,54,46,50,56,51,49,57,53,93,44,91,45,49,48,50,46,57,50,52,53,52,55,44,52,54,46,50,56,49,53,49,56,93,44,91,45,49,48,50,46,57,57,53,50,52,53,44,52,54,46,50,56,48,54,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,80,97,109,108,105,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,52,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,50,50,49,51,49,44,51,53,46,51,53,51,54,50,51,93,44,91,45,55,54,46,54,49,55,52,57,54,44,51,53,46,51,50,56,56,57,51,93,44,91,45,55,54,46,54,51,50,53,54,49,44,51,53,46,50,51,53,51,50,52,93,44,91,45,55,54,46,56,52,53,53,48,53,44,51,53,46,50,49,54,48,53,57,93,44,91,45,55,54,46,56,57,53,57,49,57,44,51,53,46,50,53,51,56,56,57,93,44,91,45,55,54,46,57,56,55,50,54,54,44,51,53,46,49,53,52,57,53,93,44,91,45,55,54,46,57,54,55,50,57,55,44,51,53,46,48,52,48,54,53,53,93,44,91,45,55,54,46,55,56,48,53,56,54,44,51,52,46,57,53,48,52,51,52,93,44,91,45,55,54,46,55,49,49,53,56,44,51,52,46,57,56,49,55,54,56,93,44,91,45,55,54,46,51,48,52,49,51,54,44,51,53,46,50,48,49,52,53,51,93,44,91,45,55,54,46,52,52,53,52,49,56,44,51,53,46,51,50,57,50,54,52,93,44,91,45,55,54,46,53,50,50,49,51,49,44,51,53,46,51,53,51,54,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,71,114,97,118,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,57,52,44,34,98,101,100,115,34,58,49,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,49,51,50,50,57,44,51,54,46,55,55,51,49,49,53,93,44,91,45,56,56,46,56,49,54,55,54,51,44,51,54,46,53,48,50,54,54,53,93,44,91,45,56,56,46,53,49,54,52,48,51,44,51,54,46,53,48,49,53,56,51,93,44,91,45,56,56,46,52,56,57,48,55,53,44,51,54,46,53,48,49,49,53,55,93,44,91,45,56,56,46,52,56,53,54,57,55,44,51,54,46,55,53,48,51,50,56,93,44,91,45,56,56,46,52,56,52,49,48,51,44,51,54,46,57,52,50,48,57,54,93,44,91,45,56,56,46,56,49,50,56,57,55,44,51,54,46,57,52,54,56,54,52,93,44,91,45,56,56,46,56,49,51,50,50,57,44,51,54,46,55,55,51,49,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,97,109,98,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,53,53,48,44,34,98,101,100,115,34,58,53,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,53,48,52,51,44,52,48,46,55,50,52,56,50,55,93,44,91,45,55,56,46,56,48,49,54,57,55,44,52,48,46,55,50,52,53,51,57,93,44,91,45,55,56,46,57,55,52,54,52,57,44,52,48,46,51,57,53,57,55,50,93,44,91,45,55,57,46,48,53,53,57,56,51,44,52,48,46,50,56,53,48,56,57,93,44,91,45,55,56,46,56,57,48,56,51,54,44,52,48,46,50,52,57,53,51,57,93,44,91,45,55,56,46,54,53,56,52,48,57,44,52,48,46,50,52,50,57,51,51,93,44,91,45,55,56,46,54,50,48,51,56,51,44,52,48,46,51,50,55,48,50,53,93,44,91,45,55,56,46,53,54,52,48,56,53,44,52,48,46,51,55,48,54,48,57,93,44,91,45,55,56,46,53,51,57,56,52,44,52,48,46,53,48,54,49,53,52,93,44,91,45,55,56,46,51,53,48,52,51,44,52,48,46,55,50,52,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,77,99,77,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,55,51,44,34,98,101,100,115,34,58,49,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,49,57,56,54,53,44,51,53,46,54,52,52,54,53,49,93,44,91,45,56,52,46,56,48,53,53,52,52,44,51,53,46,52,52,56,53,55,49,93,44,91,45,56,52,46,56,54,48,49,54,52,44,51,53,46,51,53,48,48,55,52,93,44,91,45,56,52,46,55,48,51,54,48,55,44,51,53,46,50,52,49,48,52,51,93,44,91,45,56,52,46,52,57,53,53,50,57,44,51,53,46,50,56,53,52,55,50,93,44,91,45,56,52,46,52,48,57,50,50,54,44,51,53,46,51,57,56,51,55,56,93,44,91,45,56,52,46,53,50,50,55,49,44,51,53,46,54,48,55,55,56,51,93,44,91,45,56,52,46,53,50,50,51,55,51,44,51,53,46,54,49,56,54,50,53,93,44,91,45,56,52,46,53,50,53,56,53,44,51,53,46,54,50,52,49,56,54,93,44,91,45,56,52,46,53,56,52,52,55,50,44,51,53,46,54,52,52,52,50,52,93,44,91,45,56,52,46,54,49,57,56,54,53,44,51,53,46,54,52,52,54,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,52,56,50,44,34,98,101,100,115,34,58,50,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,53,56,49,56,57,44,52,50,46,55,55,54,54,51,57,93,44,91,45,56,52,46,49,52,48,55,49,51,44,52,50,46,52,50,52,54,49,49,93,44,91,45,56,52,46,49,51,49,49,51,54,44,52,50,46,52,50,52,53,54,55,93,44,91,45,56,51,46,54,54,52,56,48,56,44,52,50,46,52,51,49,49,55,57,93,44,91,45,56,51,46,54,56,54,52,57,51,44,52,50,46,55,56,51,50,54,51,93,44,91,45,56,51,46,57,50,50,53,49,54,44,52,50,46,55,56,48,56,50,49,93,44,91,45,56,52,46,49,53,56,49,56,57,44,52,50,46,55,55,54,54,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,55,49,49,53,44,34,98,101,100,115,34,58,49,53,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,53,51,50,52,54,44,51,57,46,55,57,49,48,54,51,93,44,91,45,49,48,52,46,56,56,52,54,52,54,44,51,57,46,55,52,48,49,53,54,93,44,91,45,49,48,51,46,55,48,54,53,52,55,44,51,57,46,55,51,57,56,57,52,93,44,91,45,49,48,51,46,55,48,53,55,48,49,44,52,48,46,48,48,49,51,54,54,93,44,91,45,49,48,52,46,49,53,48,51,51,50,44,52,48,46,48,48,48,56,53,54,93,44,91,45,49,48,52,46,57,54,49,52,48,53,44,52,48,46,48,48,48,51,51,55,93,44,91,45,49,48,53,46,48,53,50,56,57,50,44,51,57,46,57,49,52,50,50,52,93,44,91,45,49,48,53,46,48,53,51,50,52,54,44,51,57,46,55,57,49,48,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,76,97,99,107,97,119,97,110,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,52,53,52,44,34,98,101,100,115,34,58,57,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,49,57,56,56,55,44,52,49,46,54,52,50,50,54,51,93,44,91,45,55,53,46,56,51,52,54,57,53,44,52,49,46,52,50,55,50,52,54,93,44,91,45,55,53,46,54,56,55,50,52,52,44,52,49,46,51,51,57,50,49,54,93,44,91,45,55,53,46,54,48,48,55,51,54,44,52,49,46,49,54,49,52,57,55,93,44,91,45,55,53,46,53,48,53,54,48,55,44,52,49,46,50,51,50,53,51,57,93,44,91,45,55,53,46,52,52,49,52,50,49,44,52,49,46,50,54,48,48,53,51,93,44,91,45,55,53,46,52,54,50,52,49,49,44,52,49,46,54,52,49,53,56,55,93,44,91,45,55,53,46,55,49,57,56,56,55,44,52,49,46,54,52,50,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,80,111,110,116,111,116,111,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,51,53,56,44,34,98,101,100,115,34,58,50,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,51,50,52,51,54,44,51,52,46,56,53,52,52,57,54,93,44,91,45,57,54,46,57,51,50,52,53,50,44,51,52,46,54,51,54,56,49,50,93,44,91,45,57,54,46,56,50,55,49,52,52,44,51,52,46,53,57,51,50,50,93,44,91,45,57,54,46,56,50,55,51,52,51,44,51,52,46,53,48,54,48,54,50,93,44,91,45,57,54,46,53,49,51,55,56,55,44,51,52,46,53,48,53,51,57,54,93,44,91,45,57,54,46,53,49,50,49,55,49,44,51,52,46,54,56,48,48,54,53,93,44,91,45,57,54,46,52,48,54,52,56,51,44,51,52,46,55,54,55,51,50,56,93,44,91,45,57,54,46,52,49,51,55,56,49,44,51,52,46,57,49,53,54,49,57,93,44,91,45,57,54,46,52,57,48,55,56,54,44,51,52,46,57,49,48,53,56,53,93,44,91,45,57,54,46,54,54,55,54,57,50,44,51,52,46,57,50,57,53,56,51,93,44,91,45,57,54,46,55,55,53,54,56,49,44,51,52,46,56,57,57,57,53,56,93,44,91,45,57,54,46,57,51,48,53,56,54,44,51,52,46,57,54,52,51,54,52,93,44,91,45,57,54,46,57,51,50,52,51,54,44,51,52,46,56,53,52,52,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,114,101,101,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,49,54,48,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,50,50,49,50,44,51,54,46,49,53,57,57,48,51,93,44,91,45,57,54,46,54,49,57,54,53,53,44,51,53,46,57,52,49,53,55,49,93,44,91,45,57,54,46,54,50,48,56,50,56,44,51,53,46,54,51,57,48,48,53,93,44,91,45,57,54,46,49,57,50,53,54,51,44,51,53,46,54,51,57,48,56,55,93,44,91,45,57,54,46,49,57,50,52,48,51,44,51,53,46,56,53,54,57,57,51,93,44,91,45,57,54,46,48,51,51,49,49,56,44,51,53,46,56,53,54,56,50,52,93,44,91,45,57,54,46,48,50,57,53,56,51,44,51,54,46,48,55,53,51,54,54,93,44,91,45,57,54,46,50,57,55,57,48,53,44,51,54,46,48,55,53,55,54,54,93,44,91,45,57,54,46,50,57,55,56,56,56,44,51,54,46,49,54,50,50,55,57,93,44,91,45,57,54,46,54,50,50,49,50,44,51,54,46,49,53,57,57,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,53,55,34,44,34,78,65,77,69,34,58,34,84,121,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,57,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,53,54,49,57,52,51,44,51,49,46,48,53,56,57,53,50,93,44,91,45,57,52,46,54,53,55,57,57,50,44,51,49,46,48,49,50,48,48,55,93,44,91,45,57,52,46,53,52,53,55,49,55,44,51,48,46,53,50,54,57,55,55,93,44,91,45,57,52,46,48,55,49,54,56,57,44,51,48,46,53,50,54,48,51,51,93,44,91,45,57,52,46,48,53,48,57,54,44,51,48,46,54,51,56,53,54,56,93,44,91,45,57,52,46,49,50,53,56,50,52,44,51,48,46,54,56,52,48,53,50,93,44,91,45,57,52,46,50,53,50,50,57,56,44,51,49,46,48,49,56,57,51,49,93,44,91,45,57,52,46,52,53,55,56,49,54,44,51,49,46,48,51,51,51,50,53,93,44,91,45,57,52,46,53,54,49,57,52,51,44,51,49,46,48,53,56,57,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,86,97,110,32,66,117,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,48,50,56,55,54,44,51,53,46,55,57,52,57,57,54,93,44,91,45,56,53,46,53,57,52,54,51,50,44,51,53,46,54,49,55,56,57,56,93,44,91,45,56,53,46,53,53,55,53,51,53,44,51,53,46,53,51,50,57,55,55,93,44,91,45,56,53,46,52,50,51,56,48,52,44,51,53,46,53,54,55,52,50,50,93,44,91,45,56,53,46,50,53,52,48,54,50,44,51,53,46,55,54,53,54,49,49,93,44,91,45,56,53,46,50,53,51,53,49,56,44,51,53,46,55,54,54,57,50,55,93,44,91,45,56,53,46,50,55,50,54,54,52,44,51,53,46,55,56,55,55,49,56,93,44,91,45,56,53,46,50,54,57,51,53,57,44,51,53,46,55,57,51,51,56,56,93,44,91,45,56,53,46,52,52,57,51,54,44,51,53,46,56,50,49,53,53,57,93,44,91,45,56,53,46,54,48,50,56,55,54,44,51,53,46,55,57,52,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,80,111,116,116,97,119,97,116,111,109,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,48,48,48,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,52,50,49,49,52,44,51,53,46,51,55,54,56,54,93,44,91,45,57,55,46,49,52,50,51,52,57,44,51,52,46,57,50,56,49,55,54,93,44,91,45,57,55,46,48,49,53,57,51,44,51,52,46,57,48,55,51,52,56,93,44,91,45,57,54,46,57,51,48,53,56,54,44,51,52,46,57,54,52,51,54,52,93,44,91,45,57,54,46,55,55,53,54,56,49,44,51,52,46,56,57,57,57,53,56,93,44,91,45,57,54,46,55,55,54,54,57,52,44,51,53,46,52,48,53,52,49,55,93,44,91,45,57,54,46,54,50,51,54,57,57,44,51,53,46,52,48,48,55,50,50,93,44,91,45,57,54,46,54,50,52,54,56,49,44,51,53,46,52,54,50,55,48,55,93,44,91,45,57,55,46,49,52,49,52,57,44,51,53,46,52,54,51,57,55,55,93,44,91,45,57,55,46,49,52,50,49,49,52,44,51,53,46,51,55,54,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,84,111,108,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,50,54,57,44,34,98,101,100,115,34,58,50,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,53,48,57,50,51,51,44,52,50,46,48,51,52,51,55,54,93,44,91,45,55,50,46,53,49,56,51,51,44,52,49,46,56,53,54,56,57,57,93,44,91,45,55,50,46,52,49,48,51,54,55,44,52,49,46,54,48,50,53,56,49,93,44,91,45,55,50,46,50,51,57,53,53,57,44,52,49,46,55,49,52,49,57,49,93,44,91,45,55,50,46,50,49,54,57,56,44,52,49,46,57,53,56,49,54,49,93,44,91,45,55,50,46,49,48,50,49,55,44,52,50,46,48,50,56,56,54,57,93,44,91,45,55,50,46,49,51,53,55,49,53,44,52,50,46,48,51,48,50,50,50,93,44,91,45,55,50,46,53,48,57,50,51,51,44,52,50,46,48,51,52,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,83,111,99,111,114,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,48,48,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,55,49,50,55,53,52,44,51,51,46,52,55,54,56,51,50,93,44,91,45,49,48,54,46,52,55,52,50,57,53,44,51,51,46,52,55,53,55,56,54,93,44,91,45,49,48,54,46,51,55,50,55,57,55,44,51,51,46,52,55,57,56,55,53,93,44,91,45,49,48,54,46,51,55,51,54,54,44,51,51,46,54,54,48,53,48,52,93,44,91,45,49,48,54,46,48,53,50,55,49,56,44,51,51,46,54,53,48,50,57,55,93,44,91,45,49,48,54,46,48,53,50,54,54,50,44,51,51,46,56,50,53,54,48,54,93,44,91,45,49,48,53,46,57,50,52,54,56,53,44,51,51,46,56,50,53,54,50,52,93,44,91,45,49,48,53,46,57,50,53,57,54,56,44,51,52,46,50,53,57,57,57,93,44,91,45,49,48,54,46,52,49,53,57,55,50,44,51,52,46,50,53,57,56,50,50,93,44,91,45,49,48,54,46,52,49,54,57,50,52,44,51,52,46,52,51,57,54,56,55,93,44,91,45,49,48,54,46,55,54,56,50,56,49,44,51,52,46,53,51,49,50,54,50,93,44,91,45,49,48,54,46,56,56,50,56,49,51,44,51,52,46,53,55,57,54,50,56,93,44,91,45,49,48,55,46,50,48,49,55,52,51,44,51,52,46,53,55,56,55,53,55,93,44,91,45,49,48,55,46,55,50,52,55,57,52,44,51,52,46,53,55,56,49,51,50,93,44,91,45,49,48,55,46,55,49,54,51,48,49,44,51,52,46,50,53,57,56,53,54,93,44,91,45,49,48,55,46,55,49,50,55,53,52,44,51,51,46,52,55,54,56,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,116,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,55,49,50,52,55,44,51,49,46,49,56,51,57,56,56,93,44,91,45,56,50,46,54,55,49,54,54,57,44,51,49,46,49,56,51,55,51,57,93,44,91,45,56,50,46,54,50,56,57,55,53,44,51,49,46,51,54,51,57,51,93,44,91,45,56,50,46,56,49,55,53,52,52,44,51,49,46,51,54,52,52,56,54,93,44,91,45,56,50,46,56,52,52,48,57,51,44,51,49,46,52,48,51,51,50,56,93,44,91,45,56,51,46,49,52,48,52,56,51,44,51,49,46,52,50,48,51,57,53,93,44,91,45,56,51,46,48,52,54,57,56,56,44,51,49,46,50,56,50,57,54,54,93,44,91,45,56,51,46,48,52,54,56,56,53,44,51,49,46,49,56,51,54,56,93,44,91,45,56,50,46,57,55,49,50,52,55,44,51,49,46,49,56,51,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,117,118,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,52,50,50,57,44,34,98,101,100,115,34,58,51,52,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,53,56,55,57,51,44,51,48,46,53,48,49,53,48,52,93,44,91,45,56,49,46,53,52,51,48,49,56,44,51,48,46,53,50,51,56,56,57,93,44,91,45,56,49,46,54,50,52,53,49,51,44,51,48,46,53,56,54,50,51,50,93,44,91,45,56,49,46,56,51,49,50,50,55,44,51,48,46,52,54,55,52,51,55,93,44,91,45,56,50,46,48,52,57,50,51,54,44,51,48,46,50,55,51,52,51,50,93,44,91,45,56,50,46,48,52,57,52,49,49,44,51,48,46,49,56,54,57,51,51,93,44,91,45,56,49,46,54,55,57,54,50,54,44,51,48,46,49,57,48,52,57,53,93,44,91,45,56,49,46,54,56,48,50,49,53,44,51,48,46,49,50,49,50,52,93,44,91,45,56,49,46,52,51,51,55,51,55,44,51,48,46,49,48,54,48,50,56,93,44,91,45,56,49,46,52,51,54,57,50,57,44,51,48,46,50,53,50,51,51,53,93,44,91,45,56,49,46,51,50,48,49,56,53,44,51,48,46,50,53,50,57,50,93,44,91,45,56,49,46,51,50,52,56,55,55,44,51,48,46,52,50,52,55,51,53,93,44,91,45,56,49,46,51,53,56,55,57,51,44,51,48,46,53,48,49,53,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,70,97,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,57,57,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,48,49,49,50,51,44,51,49,46,53,50,50,50,54,57,93,44,91,45,57,55,46,50,55,56,49,49,51,44,51,49,46,50,55,57,55,57,57,93,44,91,45,57,55,46,48,55,48,49,56,56,44,51,48,46,57,56,54,50,50,93,44,91,45,57,54,46,56,50,57,49,50,49,44,51,49,46,49,48,53,56,55,49,93,44,91,45,57,54,46,53,57,54,56,54,50,44,51,49,46,50,50,48,57,93,44,91,45,57,54,46,56,48,49,49,50,51,44,51,49,46,53,50,50,50,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,89,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,55,51,44,34,98,101,100,115,34,58,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,55,56,49,51,54,44,51,53,46,51,49,55,53,48,51,93,44,91,45,57,51,46,50,55,57,57,50,57,44,51,53,46,50,49,50,53,53,54,93,44,91,45,57,51,46,52,53,55,48,50,50,44,51,53,46,50,49,53,55,56,50,93,44,91,45,57,51,46,53,50,57,55,51,57,44,51,53,46,49,52,53,52,51,51,93,44,91,45,57,51,46,55,48,54,56,52,50,44,51,53,46,49,51,52,57,52,51,93,44,91,45,57,51,46,55,48,52,56,56,53,44,51,53,46,48,49,57,55,49,53,93,44,91,45,57,51,46,55,49,48,50,57,55,44,51,52,46,55,52,53,50,57,54,93,44,91,45,57,51,46,51,57,52,50,56,57,44,51,52,46,55,52,51,51,57,51,93,44,91,45,57,51,46,50,56,55,55,56,53,44,51,52,46,55,55,51,49,57,51,93,44,91,45,57,51,46,50,56,56,50,56,52,44,51,52,46,56,54,48,57,57,50,93,44,91,45,57,51,46,48,52,48,53,50,53,44,51,53,46,48,55,54,57,50,51,93,44,91,45,57,50,46,56,57,54,49,48,57,44,51,53,46,49,55,48,54,55,56,93,44,91,45,57,51,46,48,56,52,54,55,56,44,51,53,46,49,50,55,51,57,93,44,91,45,57,51,46,49,53,54,48,55,56,44,51,53,46,50,51,53,51,48,55,93,44,91,45,57,51,46,50,55,56,49,51,54,44,51,53,46,51,49,55,53,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,111,109,97,110,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,48,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,53,54,50,48,51,44,51,54,46,57,57,57,52,55,49,93,44,91,45,57,57,46,48,48,48,51,48,49,44,51,54,46,57,57,57,52,54,55,93,44,91,45,57,57,46,48,49,49,52,57,57,44,51,55,46,51,56,52,50,54,51,93,44,91,45,57,57,46,53,52,51,49,56,57,44,51,55,46,51,56,49,49,50,52,93,44,91,45,57,57,46,53,52,49,49,49,54,44,51,54,46,57,57,57,54,49,93,44,91,45,57,57,46,52,53,54,50,48,51,44,51,54,46,57,57,57,52,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,74,101,115,115,97,109,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,52,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,54,48,51,52,44,51,56,46,48,48,51,56,51,54,93,44,91,45,56,52,46,55,48,57,57,49,56,44,51,55,46,56,54,49,57,53,50,93,44,91,45,56,52,46,55,49,54,57,50,53,44,51,55,46,56,49,53,51,56,57,93,44,91,45,56,52,46,53,50,53,54,52,51,44,51,55,46,55,54,57,52,57,55,93,44,91,45,56,52,46,52,51,53,55,50,44,51,55,46,56,52,55,50,48,50,93,44,91,45,56,52,46,52,55,57,54,50,57,44,51,55,46,57,52,48,50,49,57,93,44,91,45,56,52,46,54,54,48,51,52,44,51,56,46,48,48,51,56,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,51,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,51,57,50,53,53,44,51,54,46,56,52,49,52,55,54,93,44,91,45,56,53,46,57,55,54,57,49,44,51,54,46,55,50,50,55,50,50,93,44,91,45,56,53,46,57,55,54,52,49,56,44,51,54,46,54,50,56,52,57,51,93,44,91,45,56,53,46,55,56,56,55,50,54,44,51,54,46,54,50,50,48,52,56,93,44,91,45,56,53,46,52,51,54,52,52,50,44,51,54,46,54,49,56,54,53,53,93,44,91,45,56,53,46,53,57,54,50,49,52,44,51,54,46,56,49,56,48,51,57,93,44,91,45,56,53,46,55,51,57,50,53,53,44,51,54,46,56,52,49,52,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,75,105,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,48,49,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,50,48,54,57,50,44,51,53,46,48,57,55,55,54,53,93,44,91,45,57,56,46,55,52,57,49,53,56,44,51,53,46,49,49,54,51,52,54,93,44,91,45,57,57,46,51,54,48,50,50,54,44,51,53,46,49,49,54,55,51,56,93,44,91,45,57,57,46,52,48,57,50,57,49,44,51,53,46,49,49,52,53,48,57,93,44,91,45,57,57,46,51,50,54,55,53,55,44,51,53,46,48,49,56,57,49,50,93,44,91,45,57,57,46,51,48,54,50,50,44,51,52,46,56,53,55,54,51,50,93,44,91,45,57,57,46,50,52,54,52,54,50,44,51,52,46,56,50,50,49,49,52,93,44,91,45,57,57,46,49,48,51,49,53,44,51,52,46,54,51,55,57,53,93,44,91,45,57,57,46,48,48,49,49,48,55,44,51,52,46,53,57,52,51,54,54,93,44,91,45,57,56,46,56,50,54,48,48,56,44,51,52,46,53,57,52,52,49,51,93,44,91,45,57,56,46,56,50,54,48,57,49,44,51,52,46,56,53,53,52,50,56,93,44,91,45,57,56,46,54,49,57,56,49,54,44,51,52,46,56,53,53,51,52,93,44,91,45,57,56,46,54,50,48,54,57,50,44,51,53,46,48,57,55,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,55,52,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,55,48,49,49,53,44,52,52,46,49,57,52,57,55,49,93,44,91,45,57,55,46,51,54,57,52,54,51,44,52,51,46,56,52,56,53,50,54,93,44,91,45,57,55,46,49,50,57,48,56,57,44,52,51,46,56,52,55,57,55,51,93,44,91,45,57,54,46,56,56,56,54,54,52,44,52,51,46,56,52,56,51,56,53,93,44,91,45,57,54,46,56,56,57,50,49,54,44,52,52,46,49,57,53,55,48,53,93,44,91,45,57,55,46,49,50,57,54,55,49,44,52,52,46,49,57,53,57,51,51,93,44,91,45,57,55,46,51,55,48,49,49,53,44,52,52,46,49,57,52,57,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,97,115,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,49,56,52,53,54,44,51,54,46,53,52,49,54,53,51,93,44,91,45,55,57,46,51,52,51,49,49,55,44,51,54,46,53,52,49,53,57,93,44,91,45,55,57,46,52,55,48,48,53,55,44,51,54,46,53,52,48,57,55,49,93,44,91,45,55,57,46,53,49,51,54,51,56,44,51,54,46,53,52,48,57,48,50,93,44,91,45,55,57,46,53,51,49,56,54,53,44,51,54,46,50,52,57,54,55,51,93,44,91,45,55,57,46,50,53,55,57,53,50,44,51,54,46,50,52,51,52,52,53,93,44,91,45,55,57,46,49,53,51,57,57,55,44,51,54,46,50,52,49,56,55,53,93,44,91,45,55,57,46,49,51,56,51,50,44,51,54,46,53,52,49,57,55,53,93,44,91,45,55,57,46,50,49,56,52,53,54,44,51,54,46,53,52,49,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,55,55,34,44,34,78,65,77,69,34,58,34,80,114,101,115,105,100,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,55,57,56,48,49,44,51,48,46,54,50,57,50,53,56,93,44,91,45,49,48,52,46,56,57,57,48,53,50,44,51,48,46,53,55,48,55,54,57,93,44,91,45,49,48,52,46,56,53,57,51,57,55,44,51,48,46,51,57,49,49,50,53,93,44,91,45,49,48,52,46,54,56,55,48,55,54,44,51,48,46,49,55,57,51,52,50,93,44,91,45,49,48,52,46,55,48,55,50,52,57,44,51,48,46,48,53,48,49,51,52,93,44,91,45,49,48,52,46,54,55,53,56,54,49,44,50,57,46,57,49,53,53,51,55,93,44,91,45,49,48,52,46,53,52,57,55,57,54,44,50,57,46,55,52,48,54,52,49,93,44,91,45,49,48,52,46,53,49,52,48,51,49,44,50,57,46,54,51,56,54,51,93,44,91,45,49,48,52,46,51,51,56,50,48,49,44,50,57,46,53,50,48,49,56,50,93,44,91,45,49,48,52,46,50,48,57,49,53,51,44,50,57,46,52,56,49,52,54,56,93,44,91,45,49,48,52,46,49,54,56,51,56,44,50,57,46,51,57,54,49,51,54,93,44,91,45,49,48,51,46,57,55,50,48,53,57,44,50,57,46,50,57,54,48,53,53,93,44,91,45,49,48,51,46,55,57,50,55,48,51,44,50,57,46,50,54,50,52,57,57,93,44,91,45,49,48,51,46,56,48,48,54,56,44,51,48,46,52,49,50,53,50,55,93,44,91,45,49,48,51,46,57,48,49,48,49,44,51,48,46,52,49,50,49,57,93,44,91,45,49,48,52,46,57,55,57,56,48,49,44,51,48,46,54,50,57,50,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,53,56,49,49,44,34,98,101,100,115,34,58,50,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,53,51,55,51,54,44,51,57,46,56,53,48,52,53,56,93,44,91,45,56,52,46,48,57,50,57,51,56,44,51,57,46,56,51,56,51,52,53,93,44,91,45,56,52,46,49,49,52,49,57,53,44,51,57,46,53,55,55,57,56,51,93,44,91,45,56,51,46,57,55,55,48,48,53,44,51,57,46,53,54,57,49,54,57,93,44,91,45,56,51,46,54,55,48,49,57,54,44,51,57,46,53,53,48,50,53,52,93,44,91,45,56,51,46,54,53,51,51,51,44,51,57,46,55,49,54,56,55,54,93,44,91,45,56,51,46,54,52,55,49,54,57,44,51,57,46,55,55,51,48,50,57,93,44,91,45,56,51,46,56,50,55,52,50,53,44,51,57,46,56,50,50,54,53,49,93,44,91,45,56,52,46,48,53,51,55,51,54,44,51,57,46,56,53,48,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,56,57,34,44,34,78,65,77,69,34,58,34,87,105,108,108,97,99,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,53,55,52,48,53,44,50,54,46,54,49,49,55,54,57,93,44,91,45,57,56,46,48,48,52,49,56,57,44,50,54,46,52,52,56,55,56,52,93,44,91,45,57,55,46,56,54,49,57,50,44,50,54,46,52,51,51,53,55,57,93,44,91,45,57,55,46,56,54,49,56,55,53,44,50,54,46,51,52,56,49,53,54,93,44,91,45,57,55,46,53,50,55,53,56,50,44,50,54,46,50,57,57,51,48,52,93,44,91,45,57,55,46,51,56,54,53,48,53,44,50,54,46,52,49,48,52,51,55,93,44,91,45,57,55,46,49,54,55,50,53,53,44,50,54,46,52,49,50,55,49,53,93,44,91,45,57,55,46,50,50,53,51,55,52,44,50,54,46,54,48,48,50,50,55,93,44,91,45,57,55,46,56,54,49,54,56,56,44,50,54,46,53,57,55,57,57,53,93,44,91,45,57,55,46,57,53,55,52,48,53,44,50,54,46,54,49,49,55,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,97,121,97,109,195,179,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,57,53,53,44,34,98,101,100,115,34,58,53,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,57,54,57,56,44,49,56,46,51,56,57,50,56,57,93,44,91,45,54,54,46,50,48,52,55,51,52,44,49,56,46,51,49,54,48,51,53,93,44,91,45,54,54,46,50,48,54,49,51,53,44,49,56,46,50,55,54,54,54,93,44,91,45,54,54,46,49,57,48,54,55,54,44,49,56,46,50,53,56,56,52,93,44,91,45,54,54,46,49,52,51,56,54,49,44,49,56,46,50,55,57,53,57,93,44,91,45,54,54,46,49,51,49,53,56,44,49,56,46,52,50,52,54,53,54,93,44,91,45,54,54,46,49,54,57,53,49,54,44,49,56,46,52,51,48,57,57,56,93,44,91,45,54,54,46,49,57,54,57,56,44,49,56,46,51,56,57,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,56,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,56,34,44,34,78,65,77,69,34,58,34,76,111,115,32,65,108,97,109,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,53,54,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,50,52,56,49,54,49,44,51,53,46,57,54,54,51,50,55,93,44,91,45,49,48,54,46,51,57,57,55,49,51,44,51,53,46,57,54,48,48,57,53,93,44,91,45,49,48,54,46,52,48,48,55,44,51,53,46,56,48,55,53,54,55,93,44,91,45,49,48,54,46,50,53,48,52,57,57,44,51,53,46,55,53,53,56,49,56,93,44,91,45,49,48,54,46,50,52,56,50,53,55,44,51,53,46,56,51,57,49,55,56,93,44,91,45,49,48,54,46,50,52,56,51,52,53,44,51,53,46,56,53,53,54,53,50,93,44,91,45,49,48,54,46,50,52,53,54,52,57,44,51,53,46,57,51,48,55,52,50,93,44,91,45,49,48,54,46,50,52,56,49,54,49,44,51,53,46,57,54,54,51,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,50,34,44,34,78,65,77,69,34,58,34,75,101,110,97,105,32,80,101,110,105,110,115,117,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,50,50,48,44,34,98,101,100,115,34,58,55,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,56,46,55,52,53,54,49,56,44,54,48,46,55,51,51,48,48,55,93,44,91,45,49,52,57,46,48,51,55,55,52,49,44,54,48,46,55,51,50,57,56,55,93,44,91,45,49,52,57,46,48,51,52,48,56,44,54,48,46,56,52,56,53,51,52,93,44,91,45,49,52,57,46,51,53,57,51,57,57,44,54,48,46,57,48,54,51,51,93,44,91,45,49,53,48,46,48,54,57,50,51,56,44,54,49,46,48,55,57,54,51,54,93,44,91,45,49,53,48,46,50,52,55,55,52,54,44,54,49,46,48,55,57,54,51,55,93,44,91,45,49,53,48,46,52,50,52,49,52,56,44,54,49,46,49,54,54,51,48,56,93,44,91,45,49,53,48,46,55,55,53,56,54,51,44,54,49,46,48,55,57,52,54,54,93,44,91,45,49,53,48,46,57,55,52,48,49,55,44,54,49,46,49,54,54,50,56,55,93,44,91,45,49,53,48,46,57,55,52,48,49,52,44,54,49,46,50,53,50,57,52,93,44,91,45,49,53,49,46,51,51,50,56,48,50,44,54,49,46,50,53,50,57,51,54,93,44,91,45,49,53,49,46,51,51,50,55,56,52,44,54,49,46,52,50,54,50,51,57,93,44,91,45,49,53,50,46,57,57,57,56,56,50,44,54,49,46,52,50,54,49,55,50,93,44,91,45,49,53,51,46,52,56,53,53,55,53,44,54,49,46,52,50,54,49,53,51,93,44,91,45,49,53,51,46,52,52,48,56,55,55,44,54,49,46,49,54,54,49,57,54,93,44,91,45,49,53,51,46,52,52,48,56,56,52,44,54,48,46,57,48,54,50,51,54,93,44,91,45,49,53,51,46,51,57,55,50,56,52,44,54,48,46,56,49,57,53,56,49,93,44,91,45,49,53,51,46,51,57,55,50,55,54,44,54,48,46,52,55,50,57,52,56,93,44,91,45,49,53,51,46,53,50,56,52,52,49,44,54,48,46,52,55,50,57,51,57,93,44,91,45,49,53,51,46,53,50,56,51,57,50,44,54,48,46,49,50,54,50,56,49,93,44,91,45,49,53,51,46,54,53,54,57,56,44,54,48,46,49,50,54,50,55,55,93,44,91,45,49,53,51,46,54,53,54,57,55,55,44,53,57,46,55,55,57,54,48,55,93,44,91,45,49,53,51,46,55,56,51,48,54,56,44,53,57,46,54,57,50,57,50,54,93,44,91,45,49,53,51,46,57,53,51,49,57,56,44,53,57,46,54,57,50,57,49,56,93,44,91,45,49,53,51,46,57,53,51,49,56,49,44,53,57,46,53,49,57,53,54,57,93,44,91,45,49,53,52,46,49,50,51,51,50,49,44,53,57,46,52,51,50,56,56,55,93,44,91,45,49,53,52,46,52,49,50,48,50,56,44,53,57,46,52,51,50,56,56,50,93,44,91,45,49,53,52,46,52,49,50,48,49,51,44,53,57,46,50,53,57,53,50,52,93,44,91,45,49,53,52,46,55,52,56,56,54,49,44,53,57,46,50,53,57,53,49,56,93,44,91,45,49,53,52,46,54,57,53,49,48,53,44,53,57,46,48,56,54,49,53,57,93,44,91,45,49,53,52,46,54,57,53,48,51,54,44,53,56,46,55,51,57,52,51,49,93,44,91,45,49,53,52,46,54,52,50,53,52,53,44,53,56,46,54,53,50,55,52,55,93,44,91,45,49,53,52,46,51,48,53,54,57,49,44,53,56,46,54,53,50,55,53,49,93,44,91,45,49,53,51,46,56,49,55,48,55,54,44,53,56,46,54,53,50,55,54,93,44,91,45,49,53,51,46,56,49,55,48,55,54,44,53,56,46,55,51,57,52,52,54,93,44,91,45,49,53,51,46,54,51,57,48,50,55,44,53,56,46,55,51,57,52,53,93,44,91,45,49,53,51,46,54,51,57,52,48,51,44,53,56,46,56,53,53,48,50,57,93,44,91,45,49,53,51,46,50,53,51,54,49,51,44,53,56,46,56,53,53,48,51,54,93,44,91,45,49,53,51,46,49,56,52,48,56,54,44,53,56,46,57,48,53,55,50,57,93,44,91,45,49,53,51,46,48,50,49,49,56,44,53,57,46,48,48,50,52,53,50,93,44,91,45,49,53,49,46,52,52,52,49,55,51,44,53,57,46,48,57,57,54,56,55,93,44,91,45,49,53,48,46,57,57,50,49,57,52,44,53,57,46,49,56,48,56,51,55,93,44,91,45,49,53,48,46,52,53,54,52,53,54,44,53,57,46,51,48,56,54,56,56,93,44,91,45,49,52,57,46,54,50,49,51,44,53,57,46,53,50,55,53,49,54,93,44,91,45,49,52,57,46,52,54,55,53,48,52,44,53,57,46,55,51,51,55,54,55,93,44,91,45,49,52,57,46,50,54,57,54,50,53,44,53,57,46,56,52,53,52,50,93,44,91,45,49,52,56,46,57,52,56,55,54,50,44,53,57,46,56,57,50,55,49,56,93,44,91,45,49,52,56,46,53,56,54,49,56,44,53,57,46,57,51,56,53,56,53,93,44,91,45,49,52,56,46,53,54,51,55,49,53,44,54,48,46,52,49,53,49,55,50,93,44,91,45,49,52,56,46,54,54,52,52,55,44,54,48,46,52,49,53,49,56,51,93,44,91,45,49,52,56,46,54,53,55,49,49,57,44,54,48,46,55,51,50,57,55,54,93,44,91,45,49,52,56,46,55,52,53,54,49,56,44,54,48,46,55,51,51,48,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,97,108,100,119,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,56,49,48,55,44,34,98,101,100,115,34,58,52,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,55,50,56,54,57,44,51,49,46,49,54,50,54,57,52,93,44,91,45,56,55,46,57,52,49,53,54,49,44,51,49,46,48,54,49,51,52,50,93,44,91,45,56,56,46,48,50,54,51,49,57,44,51,48,46,55,53,51,51,53,56,93,44,91,45,56,55,46,57,56,55,56,51,57,44,51,48,46,54,51,55,49,52,57,93,44,91,45,56,56,46,48,51,55,51,48,57,44,51,48,46,49,52,54,53,54,49,93,44,91,45,56,55,46,53,49,56,51,52,54,44,51,48,46,50,50,57,53,48,54,93,44,91,45,56,55,46,52,57,57,57,56,44,51,48,46,51,50,56,57,53,55,93,44,91,45,56,55,46,51,54,57,51,56,51,44,51,48,46,52,51,49,57,52,56,93,44,91,45,56,55,46,52,52,53,49,48,51,44,51,48,46,53,50,56,57,48,57,93,44,91,45,56,55,46,51,57,51,50,57,52,44,51,48,46,54,50,55,50,49,56,93,44,91,45,56,55,46,54,50,54,50,50,52,44,51,48,46,56,52,54,54,54,52,93,44,91,45,56,55,46,53,57,56,56,50,57,44,51,48,46,57,57,55,52,53,53,93,44,91,45,56,55,46,54,49,53,56,57,44,51,49,46,50,52,52,52,53,56,93,44,91,45,56,55,46,55,54,53,49,53,50,44,51,49,46,50,57,55,51,52,54,93,44,91,45,56,55,46,56,55,51,56,56,55,44,51,49,46,50,48,49,52,57,54,93,44,91,45,56,55,46,57,52,54,53,56,56,44,51,49,46,49,57,50,57,51,93,44,91,45,56,55,46,57,55,50,56,54,57,44,51,49,46,49,54,50,54,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,112,112,97,110,111,111,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,49,48,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,51,57,48,57,49,44,52,48,46,56,57,56,56,56,54,93,44,91,45,57,51,46,48,57,55,53,57,53,44,52,48,46,56,57,56,52,53,49,93,44,91,45,57,51,46,48,57,55,50,57,54,44,52,48,46,53,56,52,48,49,52,93,44,91,45,57,50,46,55,49,52,53,57,54,44,52,48,46,53,56,57,52,50,55,93,44,91,45,57,50,46,54,51,55,56,57,56,44,52,48,46,53,57,48,56,53,51,93,44,91,45,57,50,46,54,51,57,48,57,49,44,52,48,46,56,57,56,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,78,101,119,32,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,48,51,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,50,51,54,55,53,44,51,55,46,54,50,54,56,56,49,93,44,91,45,55,55,46,50,52,48,57,56,56,44,51,55,46,53,51,56,48,56,56,93,44,91,45,55,55,46,49,55,55,51,50,52,44,51,55,46,52,57,48,54,93,44,91,45,55,54,46,57,48,52,52,55,49,44,51,55,46,51,55,55,54,54,53,93,44,91,45,55,54,46,55,52,49,57,56,52,44,51,55,46,52,54,55,48,55,54,93,44,91,45,55,54,46,55,57,50,49,56,52,44,51,55,46,53,49,55,53,57,52,93,44,91,45,55,55,46,49,50,51,54,55,53,44,51,55,46,54,50,54,56,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,51,34,44,34,78,65,77,69,34,58,34,84,97,108,98,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,48,48,53,51,56,44,51,50,46,56,52,52,54,52,93,44,91,45,56,52,46,54,57,52,54,48,51,44,51,50,46,53,56,51,57,52,53,93,44,91,45,56,52,46,54,57,52,53,49,44,51,50,46,53,49,56,55,51,50,93,44,91,45,56,52,46,54,51,55,51,50,51,44,51,50,46,53,51,52,56,53,53,93,44,91,45,56,52,46,52,52,52,51,53,51,44,51,50,46,53,54,50,48,56,51,93,44,91,45,56,52,46,50,56,54,50,52,54,44,51,50,46,55,52,55,54,50,54,93,44,91,45,56,52,46,53,48,54,56,56,56,44,51,50,46,56,56,49,55,56,56,93,44,91,45,56,52,46,55,48,48,53,51,56,44,51,50,46,56,52,52,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,49,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,52,52,54,49,50,52,44,52,52,46,50,49,55,54,53,53,93,44,91,45,55,53,46,52,56,52,53,50,56,44,52,52,46,48,55,52,49,55,50,93,44,91,45,55,53,46,55,53,56,49,53,55,44,52,51,46,56,55,56,55,56,53,93,44,91,45,55,53,46,55,55,52,53,53,51,44,52,51,46,54,56,56,56,56,52,93,44,91,45,55,53,46,55,53,54,50,49,51,44,52,51,46,52,55,48,51,56,56,93,44,91,45,55,53,46,53,51,51,53,44,52,51,46,52,49,57,55,53,54,93,44,91,45,55,53,46,49,49,48,49,54,44,52,51,46,54,49,53,50,50,57,93,44,91,45,55,53,46,49,55,48,49,53,57,44,52,52,46,48,57,54,57,53,57,93,44,91,45,55,53,46,52,52,54,49,50,52,44,52,52,46,50,49,55,54,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,56,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,56,51,55,49,44,51,56,46,54,49,49,57,56,50,93,44,91,45,56,49,46,49,57,52,49,49,51,44,51,56,46,53,50,55,54,51,52,93,44,91,45,56,49,46,50,56,51,56,55,50,44,51,56,46,52,55,50,48,50,57,93,44,91,45,56,49,46,50,51,49,52,51,52,44,51,56,46,50,54,51,55,49,54,93,44,91,45,56,48,46,57,49,49,51,54,49,44,51,56,46,52,49,52,55,56,53,93,44,91,45,56,48,46,56,56,49,50,51,50,44,51,56,46,53,48,55,48,52,53,93,44,91,45,56,49,46,48,51,49,54,55,55,44,51,56,46,54,54,55,56,51,57,93,44,91,45,56,49,46,48,56,51,55,49,44,51,56,46,54,49,49,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,51,55,44,34,98,101,100,115,34,58,50,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,52,52,56,57,55,44,51,56,46,57,49,50,57,57,56,93,44,91,45,56,53,46,54,56,51,56,51,57,44,51,56,46,56,49,53,52,48,54,93,44,91,45,56,53,46,54,56,51,51,51,56,44,51,56,46,55,51,54,55,51,49,93,44,91,45,56,53,46,53,55,48,57,51,44,51,56,46,54,55,56,55,48,54,93,44,91,45,56,53,46,53,54,57,57,56,44,51,56,46,54,48,54,49,53,53,93,44,91,45,56,53,46,52,50,56,50,56,51,44,51,56,46,53,56,54,51,50,53,93,44,91,45,56,53,46,52,53,50,48,56,55,44,51,56,46,55,48,57,55,56,53,93,44,91,45,56,53,46,51,51,51,48,57,57,44,51,56,46,55,51,54,50,50,56,93,44,91,45,56,53,46,50,48,49,52,55,52,44,51,56,46,54,57,49,51,49,56,93,44,91,45,56,53,46,50,48,51,49,54,54,44,51,56,46,57,49,51,56,48,51,93,44,91,45,56,53,46,52,52,52,56,57,55,44,51,56,46,57,49,50,57,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,101,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,57,48,56,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,57,56,54,57,57,44,51,55,46,53,51,50,55,57,55,93,44,91,45,55,57,46,53,57,51,55,48,55,44,51,55,46,52,52,56,56,54,52,93,44,91,45,55,57,46,54,57,48,48,54,44,51,55,46,52,55,54,51,55,52,93,44,91,45,55,57,46,56,52,55,52,55,54,44,51,55,46,51,48,57,51,53,50,93,44,91,45,55,57,46,56,52,55,50,49,55,44,51,55,46,50,50,53,52,48,54,93,44,91,45,55,57,46,54,55,56,48,50,56,44,51,55,46,49,53,53,49,54,53,93,44,91,45,55,57,46,53,57,52,48,54,57,44,51,55,46,48,52,50,50,48,54,93,44,91,45,55,57,46,52,52,50,56,53,57,44,51,55,46,48,53,53,56,54,55,93,44,91,45,55,57,46,50,53,55,57,53,53,44,51,55,46,51,53,53,56,49,54,93,44,91,45,55,57,46,49,56,53,55,48,50,44,51,55,46,52,54,53,56,50,93,44,91,45,55,57,46,51,52,49,54,55,44,51,55,46,53,49,56,48,49,53,93,44,91,45,55,57,46,52,51,54,57,52,55,44,51,55,46,54,49,55,48,53,55,93,44,91,45,55,57,46,52,57,56,54,57,57,44,51,55,46,53,51,50,55,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,77,111,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,55,50,48,53,50,57,44,51,53,46,56,55,49,49,56,53,93,44,91,45,49,48,53,46,51,52,55,56,51,44,51,53,46,56,55,48,54,57,53,93,44,91,45,49,48,53,46,48,48,54,52,49,55,44,51,53,46,55,55,49,50,53,54,93,44,91,45,49,48,52,46,51,55,48,49,50,44,51,53,46,55,55,57,51,48,50,93,44,91,45,49,48,52,46,51,54,53,55,50,52,44,51,54,46,48,52,52,50,57,93,44,91,45,49,48,52,46,52,51,54,48,53,54,44,51,54,46,50,49,56,53,51,52,93,44,91,45,49,48,52,46,56,54,53,52,48,50,44,51,54,46,50,49,55,56,54,57,93,44,91,45,49,48,52,46,56,54,53,50,52,52,44,51,54,46,50,54,49,52,49,57,93,44,91,45,49,48,53,46,51,52,49,50,54,52,44,51,54,46,50,54,49,56,54,51,93,44,91,45,49,48,53,46,53,51,48,51,56,44,51,54,46,48,49,51,48,49,52,93,44,91,45,49,48,53,46,55,49,55,52,55,55,44,51,53,46,57,55,56,55,52,49,93,44,91,45,49,48,53,46,55,50,48,53,50,57,44,51,53,46,56,55,49,49,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,51,51,50,56,56,44,52,49,46,57,49,54,50,56,54,93,44,91,45,57,56,46,50,57,53,54,48,50,44,52,49,46,57,49,52,57,53,52,93,44,91,45,57,56,46,50,57,53,55,54,44,52,49,46,55,52,49,49,55,56,93,44,91,45,57,56,46,50,57,49,51,52,52,44,52,49,46,52,56,48,55,50,55,93,44,91,45,57,56,46,48,57,57,53,50,51,44,52,49,46,52,56,48,55,55,55,93,44,91,45,57,55,46,56,50,57,56,52,54,44,52,49,46,53,50,54,49,55,52,93,44,91,45,57,55,46,56,51,48,52,57,51,44,52,49,46,55,52,50,50,51,56,93,44,91,45,57,55,46,56,51,51,50,56,56,44,52,49,46,57,49,54,50,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,50,50,56,51,44,51,54,46,56,56,51,56,53,55,93,44,91,45,57,49,46,54,53,56,49,49,49,44,51,54,46,56,56,56,55,50,52,93,44,91,45,57,49,46,54,55,50,51,52,51,44,51,54,46,52,57,57,52,54,51,93,44,91,45,57,49,46,52,53,48,48,48,50,44,51,54,46,52,57,55,54,53,93,44,91,45,57,49,46,52,48,55,49,51,56,44,51,54,46,52,57,55,48,56,49,93,44,91,45,57,49,46,49,50,54,53,50,57,44,51,54,46,52,57,55,55,49,50,93,44,91,45,57,49,46,49,49,53,57,50,54,44,51,54,46,56,50,51,54,55,50,93,44,91,45,57,49,46,50,50,50,56,51,44,51,54,46,56,56,51,56,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,111,117,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,57,50,51,53,56,44,51,54,46,51,54,55,54,54,51,93,44,91,45,56,55,46,56,50,49,56,49,54,44,51,54,46,51,50,56,55,50,52,93,44,91,45,56,55,46,57,56,48,55,52,44,51,54,46,51,53,51,51,48,55,93,44,91,45,56,55,46,57,52,57,54,48,51,44,51,54,46,50,52,51,49,54,93,44,91,45,56,55,46,55,57,56,53,48,56,44,51,54,46,50,52,52,55,53,52,93,44,91,45,56,55,46,53,54,54,55,57,56,44,51,54,46,49,55,55,56,53,55,93,44,91,45,56,55,46,53,49,51,53,51,51,44,51,54,46,51,51,52,55,49,51,93,44,91,45,56,55,46,53,57,50,51,53,56,44,51,54,46,51,54,55,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,53,56,56,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,49,49,53,49,55,50,44,52,49,46,54,53,49,56,50,53,93,44,91,45,55,54,46,50,50,48,49,51,57,44,52,49,46,53,52,49,50,56,53,93,44,91,45,55,54,46,50,56,51,49,44,52,49,46,51,55,54,53,49,55,93,44,91,45,55,54,46,48,48,53,48,55,44,52,49,46,51,56,52,53,53,49,93,44,91,45,55,53,46,56,51,52,54,57,53,44,52,49,46,52,50,55,50,52,54,93,44,91,45,55,53,46,55,49,57,56,56,55,44,52,49,46,54,52,50,50,54,51,93,44,91,45,55,54,46,49,49,53,49,55,50,44,52,49,46,54,53,49,56,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,76,101,110,111,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,50,50,55,44,34,98,101,100,115,34,58,49,48,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,48,54,50,52,56,44,51,53,46,51,54,56,55,53,52,93,44,91,45,55,55,46,56,51,52,50,52,57,44,51,53,46,49,55,55,56,52,54,93,44,91,45,55,55,46,55,54,57,49,55,55,44,51,53,46,49,52,53,53,55,54,93,44,91,45,55,55,46,55,51,49,48,50,54,44,51,53,46,48,48,56,49,51,56,93,44,91,45,55,55,46,54,48,49,50,56,50,44,51,53,46,48,55,49,51,54,56,93,44,91,45,55,55,46,52,55,51,54,57,50,44,51,53,46,50,50,56,57,56,53,93,44,91,45,55,55,46,51,57,49,48,50,54,44,51,53,46,51,51,57,53,51,51,93,44,91,45,55,55,46,52,55,53,53,49,53,44,51,53,46,52,50,54,54,53,53,93,44,91,45,55,55,46,54,51,57,49,48,49,44,51,53,46,51,53,52,48,56,54,93,44,91,45,55,55,46,56,48,54,50,52,56,44,51,53,46,51,54,56,55,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,86,105,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,54,57,51,44,34,98,101,100,115,34,58,52,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,51,50,49,57,52,44,51,57,46,54,48,55,51,48,54,93,44,91,45,56,55,46,53,51,49,54,52,44,51,57,46,52,55,55,49,48,53,93,44,91,45,56,55,46,53,51,49,54,52,54,44,51,57,46,51,52,55,56,56,56,93,44,91,45,56,55,46,54,48,52,49,52,49,44,51,57,46,50,53,57,52,53,56,93,44,91,45,56,55,46,50,52,48,51,55,57,44,51,57,46,50,53,57,48,54,52,93,44,91,45,56,55,46,50,51,56,57,54,52,44,51,57,46,53,50,48,54,50,93,44,91,45,56,55,46,49,57,57,48,49,50,44,51,57,46,54,48,55,49,51,55,93,44,91,45,56,55,46,51,56,50,52,49,56,44,51,57,46,54,48,55,57,51,55,93,44,91,45,56,55,46,53,51,50,49,57,52,44,51,57,46,54,48,55,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,69,108,107,104,97,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,54,48,52,44,34,98,101,100,115,34,58,51,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,54,50,53,55,53,44,52,49,46,55,54,48,53,49,51,93,44,91,45,56,54,46,48,53,57,52,53,49,44,52,49,46,52,55,57,49,53,52,93,44,91,45,56,54,46,48,53,57,50,51,44,52,49,46,52,51,53,56,49,50,93,44,91,45,56,53,46,54,53,51,53,48,55,44,52,49,46,52,51,54,56,53,54,93,44,91,45,56,53,46,54,53,52,55,52,55,44,52,49,46,53,50,51,51,52,55,93,44,91,45,56,53,46,54,53,57,55,53,44,52,49,46,55,53,57,48,54,56,93,44,91,45,56,53,46,55,57,49,51,51,53,44,52,49,46,55,53,57,48,55,56,93,44,91,45,56,54,46,48,54,50,53,55,53,44,52,49,46,55,54,48,53,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,114,97,121,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,53,51,50,53,57,44,51,54,46,53,55,52,54,57,50,93,44,91,45,56,48,46,57,48,49,54,52,49,44,51,54,46,53,54,49,55,54,54,93,44,91,45,56,48,46,56,51,55,57,53,52,44,51,54,46,53,53,57,49,52,51,93,44,91,45,56,48,46,57,49,52,49,55,51,44,51,54,46,54,53,48,50,52,54,93,44,91,45,56,48,46,57,51,50,50,55,49,44,51,54,46,54,55,49,53,57,51,93,44,91,45,56,49,46,48,52,50,52,50,56,44,51,54,46,56,48,54,52,52,56,93,44,91,45,56,49,46,48,56,56,53,49,44,51,54,46,55,54,55,52,50,50,93,44,91,45,56,49,46,50,54,49,57,56,55,44,51,54,46,55,54,51,48,51,51,93,44,91,45,56,49,46,53,50,52,56,48,56,44,51,54,46,55,48,55,53,52,93,44,91,45,56,49,46,54,48,53,56,54,53,44,51,54,46,54,51,56,48,55,57,93,44,91,45,56,49,46,54,52,54,57,44,51,54,46,54,49,49,57,49,56,93,44,91,45,56,49,46,54,55,55,52,57,44,51,54,46,53,56,56,49,51,55,93,44,91,45,56,49,46,51,53,51,50,53,57,44,51,54,46,53,55,52,54,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,51,34,44,34,78,65,77,69,34,58,34,76,117,98,98,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,49,52,53,52,44,34,98,101,100,115,34,58,50,49,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,54,51,53,56,44,51,51,46,56,51,48,52,53,49,93,44,91,45,49,48,50,46,48,56,53,55,51,51,44,51,51,46,56,50,52,54,55,53,93,44,91,45,49,48,50,46,48,55,53,57,50,57,44,51,51,46,51,56,57,53,56,54,93,44,91,45,49,48,49,46,53,53,54,56,56,52,44,51,51,46,51,57,52,55,54,93,44,91,45,49,48,49,46,53,54,51,53,56,44,51,51,46,56,51,48,52,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,101,101,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,55,57,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,54,51,48,56,44,52,53,46,51,50,54,49,93,44,91,45,57,52,46,55,53,56,49,56,57,44,52,52,46,56,57,50,48,57,55,93,44,91,45,57,52,46,53,48,50,51,57,53,44,52,52,46,56,57,50,50,57,53,93,44,91,45,57,52,46,53,48,49,56,56,53,44,52,52,46,57,55,57,54,57,53,93,44,91,45,57,52,46,50,53,54,48,55,52,44,52,52,46,57,55,57,52,54,53,93,44,91,45,57,52,46,50,54,48,56,50,49,44,52,53,46,50,56,51,57,52,49,93,44,91,45,57,52,46,51,56,51,53,53,54,44,52,53,46,51,50,54,55,48,53,93,44,91,45,57,52,46,55,54,51,48,56,44,52,53,46,51,50,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,115,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,52,55,55,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,50,56,53,50,44,52,48,46,57,57,50,57,52,52,93,44,91,45,56,50,46,52,49,54,56,52,55,44,52,48,46,56,49,52,53,54,55,93,44,91,45,56,50,46,51,51,57,50,49,49,44,52,48,46,55,50,54,54,56,51,93,44,91,45,56,50,46,51,51,54,57,54,50,44,52,48,46,53,53,53,48,48,49,93,44,91,45,56,50,46,50,50,48,49,49,44,52,48,46,53,54,56,50,48,54,93,44,91,45,56,50,46,49,50,54,49,57,57,44,52,48,46,54,54,56,50,50,57,93,44,91,45,56,50,46,49,50,57,51,51,52,44,52,48,46,57,57,49,56,48,55,93,44,91,45,56,50,46,49,55,49,52,57,50,44,52,49,46,48,54,51,53,51,55,93,44,91,45,56,50,46,51,51,54,52,57,54,44,52,49,46,48,54,53,55,54,49,93,44,91,45,56,50,46,52,51,50,56,53,50,44,52,48,46,57,57,50,57,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,49,54,52,44,34,98,101,100,115,34,58,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,51,52,53,51,54,44,52,50,46,48,56,57,55,53,93,44,91,45,57,55,46,56,51,51,50,56,56,44,52,49,46,57,49,54,50,56,54,93,44,91,45,57,55,46,56,51,48,52,57,51,44,52,49,46,55,52,50,50,51,56,93,44,91,45,57,55,46,51,54,56,48,55,44,52,49,46,55,52,51,50,48,55,93,44,91,45,57,55,46,51,54,56,52,48,52,44,52,50,46,48,57,48,57,50,50,93,44,91,45,57,55,46,56,51,52,53,51,54,44,52,50,46,48,56,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,53,56,49,44,34,98,101,100,115,34,58,51,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,49,51,56,48,52,57,44,50,55,46,50,54,50,56,55,57,93,44,91,45,56,48,46,50,56,53,53,49,44,50,55,46,50,48,54,48,50,53,93,44,91,45,56,48,46,54,55,55,56,54,50,44,50,55,46,50,48,53,57,56,56,93,44,91,45,56,48,46,54,55,55,52,50,55,44,50,55,46,49,50,49,54,49,57,93,44,91,45,56,48,46,56,56,53,54,51,57,44,50,54,46,57,53,56,57,49,57,93,44,91,45,56,48,46,49,52,50,48,48,55,44,50,54,46,57,53,54,54,52,93,44,91,45,56,48,46,48,50,50,55,53,52,44,50,54,46,57,55,48,51,57,50,93,44,91,45,56,48,46,49,51,56,48,52,57,44,50,55,46,50,54,50,56,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,77,105,110,101,114,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,48,48,48,54,48,50,44,51,55,46,57,53,54,48,52,49,93,44,91,45,49,48,55,46,49,51,56,49,57,49,44,51,55,46,57,51,56,56,52,56,93,44,91,45,49,48,55,46,49,52,53,49,51,56,44,51,55,46,54,55,53,52,57,55,93,44,91,45,49,48,55,46,49,50,56,54,56,44,51,55,46,52,50,50,57,52,50,93,44,91,45,49,48,55,46,49,50,56,55,51,55,44,51,55,46,51,57,50,52,48,57,93,44,91,45,49,48,54,46,55,49,48,55,55,53,44,51,55,46,52,48,52,50,50,56,93,44,91,45,49,48,54,46,54,57,51,56,52,53,44,51,55,46,56,51,53,50,52,52,93,44,91,45,49,48,54,46,56,57,55,56,51,52,44,51,55,46,57,54,55,56,57,49,93,44,91,45,49,48,55,46,48,48,48,54,48,50,44,51,55,46,57,53,54,48,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,68,97,119,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,53,53,53,51,44,51,52,46,53,54,50,55,51,53,93,44,91,45,56,52,46,50,53,55,53,56,54,44,51,52,46,51,56,48,57,57,50,93,44,91,45,56,52,46,50,53,56,48,55,53,44,51,52,46,51,51,53,49,53,54,93,44,91,45,56,51,46,57,53,55,48,55,55,44,51,52,46,51,51,52,48,49,49,93,44,91,45,56,51,46,57,56,48,54,52,57,44,51,52,46,52,49,56,51,56,57,93,44,91,45,56,52,46,49,57,49,48,52,44,51,52,46,53,51,57,49,56,49,93,44,91,45,56,52,46,49,56,56,53,53,55,44,51,52,46,54,48,50,54,57,50,93,44,91,45,56,52,46,49,57,54,55,53,52,44,51,52,46,54,49,55,57,50,52,93,44,91,45,56,52,46,51,52,53,53,53,51,44,51,52,46,53,54,50,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,53,50,49,48,53,50,44,51,50,46,56,50,50,51,53,54,93,44,91,45,56,50,46,55,54,56,51,54,53,44,51,50,46,55,54,57,49,48,56,93,44,91,45,56,50,46,57,52,54,57,54,54,44,51,50,46,55,53,57,51,53,56,93,44,91,45,56,50,46,57,53,55,48,54,54,44,51,50,46,55,48,56,51,49,56,93,44,91,45,56,50,46,56,54,50,55,54,51,44,51,50,46,55,49,53,55,54,93,44,91,45,56,50,46,54,54,56,53,53,55,44,51,50,46,54,49,50,49,54,52,93,44,91,45,56,50,46,54,52,55,55,51,51,44,51,50,46,53,49,50,53,48,55,93,44,91,45,56,50,46,52,54,57,56,50,51,44,51,50,46,54,53,48,56,56,50,93,44,91,45,56,50,46,52,51,52,49,52,57,44,51,50,46,55,54,50,50,53,56,93,44,91,45,56,50,46,53,50,49,48,53,50,44,51,50,46,56,50,50,51,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,54,56,53,54,44,51,52,46,57,49,50,55,51,53,93,44,91,45,57,49,46,51,55,55,56,50,44,51,52,46,53,54,51,52,56,93,44,91,45,57,49,46,50,54,51,54,48,54,44,51,52,46,53,48,49,56,54,55,93,44,91,45,57,49,46,48,53,54,50,55,54,44,51,52,46,51,51,54,54,48,53,93,44,91,45,57,49,46,48,53,49,57,49,56,44,51,52,46,54,52,53,55,50,49,93,44,91,45,57,49,46,49,48,50,53,52,50,44,51,52,46,55,51,52,56,54,52,93,44,91,45,57,49,46,48,57,57,57,54,49,44,51,52,46,56,54,55,49,50,93,44,91,45,57,49,46,49,52,57,56,52,50,44,51,53,46,48,48,50,52,55,93,44,91,45,57,49,46,50,57,51,49,49,49,44,51,52,46,57,56,53,48,57,49,93,44,91,45,57,49,46,51,54,56,53,54,44,51,52,46,57,49,50,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,55,50,52,52,55,44,51,55,46,57,48,50,54,50,55,93,44,91,45,57,51,46,49,56,50,55,48,54,44,51,55,46,57,48,52,49,52,52,93,44,91,45,57,51,46,49,56,55,57,49,53,44,51,55,46,56,48,50,55,51,55,93,44,91,45,57,51,46,49,56,50,52,56,57,44,51,55,46,52,49,55,50,48,52,93,44,91,45,57,51,46,48,55,51,51,56,44,51,55,46,52,49,52,57,56,57,93,44,91,45,57,51,46,48,55,49,53,56,52,44,51,55,46,52,56,55,52,52,52,93,44,91,45,57,50,46,56,53,51,52,56,49,44,51,55,46,52,56,51,57,55,93,44,91,45,57,50,46,56,53,53,51,56,52,44,51,55,46,56,57,53,55,51,54,93,44,91,45,57,51,46,48,55,50,52,52,55,44,51,55,46,57,48,50,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,80,105,116,116,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,54,55,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,55,48,48,53,55,44,51,54,46,53,52,48,57,55,49,93,44,91,45,55,57,46,51,57,56,48,57,52,44,51,54,46,54,52,52,48,51,55,93,44,91,45,55,57,46,51,52,51,49,49,55,44,51,54,46,53,52,49,53,57,93,44,91,45,55,57,46,50,49,56,52,53,54,44,51,54,46,53,52,49,54,53,51,93,44,91,45,55,57,46,48,57,50,50,54,52,44,51,55,46,48,54,49,52,57,56,93,44,91,45,55,57,46,51,51,50,49,54,49,44,51,55,46,49,50,53,53,54,56,93,44,91,45,55,57,46,52,52,50,56,53,57,44,51,55,46,48,53,53,56,54,55,93,44,91,45,55,57,46,53,57,52,48,54,57,44,51,55,46,48,52,50,50,48,54,93,44,91,45,55,57,46,54,52,48,54,53,50,44,51,54,46,56,53,54,49,51,57,93,44,91,45,55,57,46,55,49,52,56,52,57,44,51,54,46,53,52,49,57,54,53,93,44,91,45,55,57,46,53,49,51,54,51,56,44,51,54,46,53,52,48,57,48,50,93,44,91,45,55,57,46,52,55,48,48,53,55,44,51,54,46,53,52,48,57,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,54,56,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,56,34,44,34,78,65,77,69,34,58,34,68,101,110,97,108,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,50,46,57,57,55,54,52,55,44,54,50,46,55,50,55,52,48,49,93,44,91,45,49,53,49,46,56,57,51,55,56,52,44,54,50,46,55,50,53,56,54,52,93,44,91,45,49,53,49,46,56,57,52,48,49,53,44,54,50,46,55,57,56,48,53,56,93,44,91,45,49,53,48,46,55,50,48,57,49,54,44,54,51,46,48,54,51,49,56,52,93,44,91,45,49,52,57,46,53,50,54,49,52,56,44,54,51,46,51,51,51,50,49,55,93,44,91,45,49,52,56,46,48,50,53,54,49,56,44,54,51,46,51,51,51,50,51,51,93,44,91,45,49,52,56,46,48,50,53,54,50,55,44,54,51,46,52,55,55,54,48,57,93,44,91,45,49,52,54,46,57,57,57,57,54,54,44,54,51,46,52,55,57,54,52,53,93,44,91,45,49,52,54,46,57,57,57,57,48,57,44,54,52,46,50,53,55,49,57,54,93,44,91,45,49,52,55,46,55,53,57,50,44,54,52,46,50,53,55,50,93,44,91,45,49,52,56,46,48,52,54,54,57,54,44,54,52,46,51,52,51,56,48,50,93,44,91,45,49,52,57,46,49,51,50,54,53,51,44,54,52,46,51,53,56,50,49,52,93,44,91,45,49,53,48,46,55,50,57,51,56,53,44,54,52,46,51,53,56,49,55,51,93,44,91,45,49,53,49,46,50,56,49,57,57,53,44,54,51,46,57,57,55,50,54,53,93,44,91,45,49,53,49,46,55,57,51,57,55,54,44,54,52,46,48,54,57,52,51,93,44,91,45,49,53,50,46,48,53,53,55,53,56,44,54,51,46,57,57,55,50,52,50,93,44,91,45,49,53,50,46,48,53,53,49,51,50,44,54,51,46,56,50,52,48,48,54,93,44,91,45,49,53,50,46,50,50,57,50,53,54,44,54,51,46,56,50,52,48,48,49,93,44,91,45,49,53,50,46,50,50,56,52,51,57,44,54,51,46,54,53,48,55,54,93,44,91,45,49,53,50,46,56,55,51,52,49,44,54,51,46,54,53,48,55,52,53,93,44,91,45,49,53,50,46,56,55,51,51,57,50,44,54,51,46,52,55,55,53,93,44,91,45,49,53,50,46,56,49,48,57,51,49,44,54,51,46,51,52,55,53,54,51,93,44,91,45,49,53,50,46,52,50,56,48,57,56,44,54,51,46,51,48,52,50,53,57,93,44,91,45,49,53,50,46,52,50,56,48,56,52,44,54,51,46,49,56,51,49,55,49,93,44,91,45,49,53,50,46,57,57,55,54,52,55,44,54,50,46,55,50,55,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,80,97,119,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,48,57,44,34,98,101,100,115,34,58,54,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,56,52,50,48,55,44,51,56,46,50,54,50,49,55,57,93,44,91,45,57,57,46,53,54,57,53,51,51,44,51,56,46,48,56,55,51,55,50,93,44,91,45,57,57,46,51,53,48,51,53,57,44,51,56,46,48,56,55,53,57,52,93,44,91,45,57,57,46,51,53,48,50,56,57,44,51,56,46,48,48,48,55,52,53,93,44,91,45,57,57,46,48,50,50,49,51,54,44,51,56,46,48,48,48,50,51,54,93,44,91,45,57,56,46,57,49,51,49,51,54,44,51,56,46,48,48,48,52,53,49,93,44,91,45,57,56,46,57,49,50,53,56,51,44,51,56,46,50,54,49,48,56,56,93,44,91,45,57,57,46,48,51,50,51,48,57,44,51,56,46,50,54,49,50,50,55,93,44,91,45,57,57,46,48,51,50,52,48,56,44,51,56,46,51,52,56,51,51,52,93,44,91,45,57,57,46,53,56,52,55,57,52,44,51,56,46,51,52,57,51,56,54,93,44,91,45,57,57,46,53,56,52,50,48,55,44,51,56,46,50,54,50,49,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,57,34,44,34,78,65,77,69,34,58,34,87,121,97,110,100,111,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,51,52,53,44,34,98,101,100,115,34,58,49,51,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,48,56,55,54,53,44,51,56,46,57,57,49,52,48,49,93,44,91,45,57,52,46,56,55,50,52,52,50,44,51,57,46,48,53,57,48,56,56,93,44,91,45,57,52,46,54,48,55,51,56,50,44,51,57,46,48,52,52,48,56,54,93,44,91,45,57,52,46,54,48,55,51,53,52,44,51,57,46,49,49,51,52,52,52,93,44,91,45,57,52,46,54,48,49,55,51,51,44,51,57,46,49,53,57,54,48,51,93,44,91,45,57,52,46,55,55,53,53,51,50,44,51,57,46,50,48,48,54,48,54,93,44,91,45,57,52,46,57,48,48,49,57,49,44,51,57,46,50,48,50,57,49,49,93,44,91,45,57,52,46,57,48,56,55,54,53,44,51,56,46,57,57,49,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,68,105,120,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,49,56,56,53,57,44,50,57,46,56,50,50,54,50,51,93,44,91,45,56,51,46,51,54,54,51,57,56,44,50,57,46,54,54,53,55,48,49,93,44,91,45,56,51,46,52,56,49,50,54,52,44,50,57,46,54,51,48,51,50,57,93,44,91,45,56,51,46,52,52,57,52,53,54,44,50,57,46,52,56,51,51,53,49,93,44,91,45,56,51,46,50,51,56,54,55,57,44,50,57,46,51,48,56,54,49,93,44,91,45,56,51,46,50,51,57,56,53,57,44,50,57,46,50,53,48,57,57,93,44,91,45,56,51,46,48,54,56,53,50,50,44,50,57,46,51,52,51,57,53,51,93,44,91,45,56,50,46,57,51,55,51,50,57,44,50,57,46,53,57,49,49,57,54,93,44,91,45,56,50,46,57,50,48,54,48,56,44,50,57,46,56,50,52,49,52,51,93,44,91,45,56,51,46,51,49,56,56,53,57,44,50,57,46,56,50,50,54,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,84,117,115,99,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,50,53,48,44,34,98,101,100,115,34,58,49,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,57,56,56,49,54,44,52,51,46,52,55,56,57,53,55,93,44,91,45,56,51,46,54,57,53,54,50,49,44,52,51,46,50,50,49,52,50,50,93,44,91,45,56,51,46,52,54,48,55,51,51,44,52,51,46,50,50,51,49,51,49,93,44,91,45,56,51,46,51,53,52,52,49,56,44,52,51,46,51,50,50,50,53,55,93,44,91,45,56,51,46,49,50,48,51,57,54,44,52,51,46,51,50,55,48,52,57,93,44,91,45,56,51,46,49,49,55,56,52,52,44,52,51,46,54,55,53,52,57,51,93,44,91,45,56,51,46,52,54,54,53,57,50,44,52,51,46,54,54,55,54,50,49,93,44,91,45,56,51,46,52,54,55,52,48,51,44,52,51,46,55,50,56,57,48,57,93,44,91,45,56,51,46,55,48,56,51,49,55,44,52,51,46,56,50,56,55,50,49,93,44,91,45,56,51,46,54,57,56,56,49,54,44,52,51,46,52,55,56,57,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,52,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,48,34,44,34,78,65,77,69,34,58,34,83,111,117,116,104,101,97,115,116,32,70,97,105,114,98,97,110,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,55,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,54,46,57,57,57,57,48,57,44,54,52,46,50,53,55,49,57,54,93,44,91,45,49,52,54,46,57,57,57,57,54,54,44,54,51,46,52,55,57,54,52,53,93,44,91,45,49,52,54,46,52,56,57,53,52,49,44,54,51,46,52,56,50,57,49,51,93,44,91,45,49,52,54,46,52,57,52,51,49,49,44,54,51,46,49,54,56,57,55,53,93,44,91,45,49,52,54,46,49,49,49,52,56,54,44,54,51,46,50,49,55,55,54,50,93,44,91,45,49,52,53,46,49,53,52,51,57,53,44,54,51,46,50,49,55,55,56,49,93,44,91,45,49,52,53,46,49,53,52,51,56,53,44,54,51,46,49,51,49,49,52,57,93,44,91,45,49,52,52,46,53,56,48,49,53,57,44,54,51,46,49,49,54,57,51,49,93,44,91,45,49,52,51,46,49,51,50,51,51,55,44,54,51,46,49,49,54,57,55,56,93,44,91,45,49,52,51,46,48,51,50,50,51,56,44,54,50,46,57,51,49,55,57,49,93,44,91,45,49,52,51,46,49,54,52,51,53,44,54,50,46,56,51,52,53,54,57,93,44,91,45,49,52,51,46,48,53,55,56,51,52,44,54,50,46,55,55,48,53,52,93,44,91,45,49,52,51,46,49,48,52,57,57,54,44,54,50,46,54,49,52,57,48,53,93,44,91,45,49,52,50,46,56,52,56,53,55,57,44,54,50,46,54,48,48,53,52,55,93,44,91,45,49,52,50,46,55,51,49,50,51,51,44,54,50,46,55,48,56,50,56,50,93,44,91,45,49,52,50,46,51,49,51,53,54,52,44,54,50,46,54,56,51,56,50,56,93,44,91,45,49,52,49,46,57,55,55,51,53,51,44,54,50,46,53,49,48,53,53,57,93,44,91,45,49,52,49,46,57,55,55,51,51,54,44,54,50,46,49,54,51,57,56,51,93,44,91,45,49,52,49,46,56,51,49,56,49,50,44,54,50,46,49,49,55,49,55,56,93,44,91,45,49,52,49,46,56,51,49,56,48,52,44,54,49,46,57,48,52,48,53,51,93,44,91,45,49,52,49,46,48,48,50,50,54,55,44,54,49,46,57,48,52,48,52,55,93,44,91,45,49,52,49,46,48,48,49,52,55,44,54,50,46,53,53,53,53,53,57,93,44,91,45,49,52,49,46,48,48,49,52,48,54,44,54,51,46,50,54,56,55,48,52,93,44,91,45,49,52,49,46,48,48,49,51,50,54,44,54,52,46,52,50,51,53,50,57,93,44,91,45,49,52,49,46,48,48,49,55,51,51,44,54,53,46,50,57,55,49,49,51,93,44,91,45,49,52,49,46,48,48,50,52,55,50,44,54,53,46,56,51,57,52,50,49,93,44,91,45,49,52,49,46,51,51,54,50,50,52,44,54,53,46,55,49,49,54,49,52,93,44,91,45,49,52,49,46,51,56,55,56,52,50,44,54,53,46,54,49,52,51,57,53,93,44,91,45,49,52,49,46,55,56,57,48,53,44,54,53,46,53,48,49,53,52,54,93,44,91,45,49,52,49,46,56,53,53,55,54,49,44,54,53,46,52,52,53,55,56,54,93,44,91,45,49,52,50,46,49,52,50,57,50,50,44,54,53,46,52,54,51,49,55,52,93,44,91,45,49,52,50,46,52,56,55,51,48,49,44,54,53,46,51,55,49,56,57,56,93,44,91,45,49,52,50,46,54,54,51,55,55,50,44,54,53,46,51,55,49,56,55,54,93,44,91,45,49,52,50,46,55,51,49,57,44,54,53,46,50,51,51,54,51,57,93,44,91,45,49,52,50,46,56,54,52,51,52,52,44,54,53,46,49,52,48,51,56,55,93,44,91,45,49,52,51,46,48,52,52,48,53,53,44,54,53,46,49,51,50,51,50,55,93,44,91,45,49,52,51,46,52,54,57,54,54,55,44,54,52,46,57,56,50,49,56,57,93,44,91,45,49,52,51,46,53,51,51,55,52,56,44,54,52,46,55,55,56,55,53,53,93,44,91,45,49,52,51,46,55,53,50,48,57,49,44,54,52,46,54,52,55,54,49,56,93,44,91,45,49,52,52,46,48,54,57,48,50,57,44,54,52,46,54,56,51,53,54,50,93,44,91,45,49,52,52,46,53,53,50,53,50,54,44,54,52,46,54,48,48,54,52,53,93,44,91,45,49,52,52,46,57,56,53,51,51,49,44,54,52,46,53,54,56,54,48,57,93,44,91,45,49,52,53,46,48,56,50,55,56,55,44,54,52,46,53,48,55,51,52,57,93,44,91,45,49,52,53,46,51,55,51,57,50,57,44,54,52,46,52,56,51,56,51,54,93,44,91,45,49,52,53,46,52,57,56,48,56,57,44,54,52,46,52,50,51,49,53,53,93,44,91,45,49,52,53,46,55,52,48,48,48,50,44,54,52,46,52,54,48,49,51,50,93,44,91,45,49,52,54,46,48,48,51,55,55,50,44,54,52,46,51,56,49,48,57,49,93,44,91,45,49,52,54,46,49,53,55,53,57,50,44,54,52,46,51,56,50,55,51,93,44,91,45,49,52,54,46,51,52,52,54,55,51,44,54,52,46,50,55,54,51,54,52,93,44,91,45,49,52,54,46,57,57,57,57,48,57,44,54,52,46,50,53,55,49,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,71,114,97,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,52,53,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,54,49,54,54,55,44,51,57,46,53,54,55,50,55,55,93,44,91,45,49,48,48,46,49,54,52,50,44,51,57,46,49,51,50,48,55,49,93,44,91,45,49,48,48,46,49,52,55,57,52,44,51,57,46,49,51,50,49,55,57,93,44,91,45,57,57,46,54,48,53,49,56,55,44,51,57,46,49,51,50,52,56,49,93,44,91,45,57,57,46,54,48,50,49,55,54,44,51,57,46,53,54,55,51,50,56,93,44,91,45,57,57,46,54,50,55,57,53,51,44,51,57,46,53,54,55,52,51,55,93,44,91,45,49,48,48,46,49,54,49,54,54,55,44,51,57,46,53,54,55,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,97,110,100,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,52,52,57,44,34,98,101,100,115,34,58,50,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,49,50,55,49,49,44,51,48,46,56,52,56,54,48,55,93,44,91,45,57,50,46,49,55,50,52,49,53,44,51,48,46,55,54,55,57,51,53,93,44,91,45,57,50,46,50,49,49,50,52,51,44,51,48,46,53,54,56,49,50,53,93,44,91,45,57,50,46,52,50,48,55,56,44,51,48,46,53,51,56,56,50,93,44,91,45,57,50,46,52,57,51,50,53,57,44,51,48,46,52,56,48,52,57,57,93,44,91,45,57,50,46,50,52,52,55,57,53,44,51,48,46,52,56,48,49,57,51,93,44,91,45,57,50,46,49,55,54,52,52,52,44,51,48,46,52,51,54,56,53,50,93,44,91,45,57,50,46,49,52,50,49,56,52,44,51,48,46,50,57,56,56,49,55,93,44,91,45,57,49,46,57,56,56,55,49,56,44,51,48,46,51,54,56,53,57,56,93,44,91,45,57,49,46,56,54,57,50,55,51,44,51,48,46,52,49,55,50,51,53,93,44,91,45,57,49,46,54,57,52,51,44,51,48,46,52,48,49,55,52,56,93,44,91,45,57,49,46,55,53,54,49,57,51,44,51,48,46,52,57,55,55,51,56,93,44,91,45,57,49,46,55,51,51,54,55,51,44,51,48,46,55,48,49,55,51,93,44,91,45,57,49,46,56,49,53,50,53,56,44,51,48,46,56,52,56,49,48,55,93,44,91,45,57,50,46,50,49,50,55,49,49,44,51,48,46,56,52,56,54,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,105,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,49,54,55,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,48,54,53,55,56,44,51,53,46,52,51,51,50,48,55,93,44,91,45,56,55,46,50,50,52,48,53,50,44,51,52,46,57,57,57,51,55,55,93,44,91,45,56,55,46,50,49,48,55,53,57,44,51,52,46,57,57,57,48,50,52,93,44,91,45,56,54,46,56,51,54,51,48,54,44,51,52,46,57,57,49,56,57,57,93,44,91,45,56,54,46,56,50,56,51,48,49,44,51,53,46,50,54,51,54,55,55,93,44,91,45,56,54,46,57,54,48,56,48,52,44,51,53,46,52,49,55,48,50,49,93,44,91,45,56,55,46,49,50,48,56,56,51,44,51,53,46,52,53,53,54,54,93,44,91,45,56,55,46,50,48,54,53,55,56,44,51,53,46,52,51,51,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,76,117,99,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,50,51,55,57,44,34,98,101,100,115,34,58,51,52,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,49,50,52,54,44,52,49,46,57,53,57,52,49,93,44,91,45,56,51,46,52,49,53,56,53,49,44,52,49,46,55,51,51,55,57,52,93,44,91,45,56,51,46,55,54,51,49,53,44,52,49,46,55,50,51,53,53,50,93,44,91,45,56,51,46,56,56,48,51,57,49,44,52,49,46,55,50,48,50,49,50,93,44,91,45,56,51,46,56,56,50,57,52,51,44,52,49,46,52,56,55,53,52,51,93,44,91,45,56,51,46,56,56,51,50,51,52,44,52,49,46,52,49,52,53,48,51,93,44,91,45,56,51,46,55,52,55,50,49,55,44,52,49,46,52,54,54,50,49,54,93,44,91,45,56,51,46,53,54,57,57,51,52,44,52,49,46,54,49,55,49,53,93,44,91,45,56,51,46,52,49,53,57,52,49,44,52,49,46,54,49,57,49,49,93,44,91,45,56,51,46,49,54,52,53,49,49,44,52,49,46,54,50,51,50,52,55,93,44,91,45,56,50,46,57,57,53,53,55,50,44,52,49,46,56,50,56,57,54,57,93,44,91,45,56,51,46,49,49,50,52,54,44,52,49,46,57,53,57,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,56,51,49,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,53,57,51,55,54,44,51,53,46,57,57,57,49,51,49,93,44,91,45,57,48,46,50,56,56,57,52,55,44,51,53,46,57,57,54,52,49,93,44,91,45,57,48,46,50,56,54,55,51,54,44,51,53,46,54,57,57,57,49,52,93,44,91,45,57,48,46,50,56,54,56,57,57,44,51,53,46,52,51,56,53,55,51,93,44,91,45,57,48,46,49,52,48,50,53,55,44,51,53,46,52,51,54,54,51,54,93,44,91,45,57,48,46,48,53,52,51,50,50,44,51,53,46,51,56,57,50,55,55,93,44,91,45,57,48,46,48,52,49,53,54,51,44,51,53,46,51,57,54,54,50,93,44,91,45,57,48,46,48,53,48,52,51,55,44,51,53,46,53,49,53,56,57,52,93,44,91,45,56,57,46,57,48,57,55,57,55,44,51,53,46,53,51,55,57,49,52,93,44,91,45,56,57,46,57,53,48,50,55,55,44,51,53,46,55,51,56,52,57,52,93,44,91,45,56,57,46,56,50,48,56,55,54,44,51,53,46,55,53,54,56,54,56,93,44,91,45,56,57,46,55,52,50,54,48,54,44,51,53,46,57,48,54,54,53,51,93,44,91,45,56,57,46,54,52,52,56,51,56,44,51,53,46,57,48,52,51,53,49,93,44,91,45,56,57,46,55,51,51,48,57,53,44,51,54,46,48,48,48,54,48,56,93,44,91,45,56,57,46,57,53,57,51,55,54,44,51,53,46,57,57,57,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,82,105,110,99,195,179,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,56,50,56,53,50,44,49,56,46,51,49,51,48,50,54,93,44,91,45,54,55,46,50,52,57,51,56,52,44,49,56,46,52,49,56,57,50,52,93,44,91,45,54,55,46,51,49,57,57,49,49,44,49,56,46,51,52,51,49,56,55,93,44,91,45,54,55,46,50,53,52,50,44,49,56,46,50,53,50,54,51,56,93,44,91,45,54,55,46,50,52,51,53,53,57,44,49,56,46,50,54,56,57,50,50,93,44,91,45,54,55,46,49,56,50,56,53,50,44,49,56,46,51,49,51,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,56,48,57,44,34,98,101,100,115,34,58,50,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,51,50,56,49,55,44,51,56,46,52,49,55,56,57,56,93,44,91,45,56,54,46,48,51,50,53,53,57,44,51,56,46,51,51,48,54,54,93,44,91,45,56,53,46,56,57,57,55,54,44,51,56,46,49,56,48,52,52,52,93,44,91,45,56,53,46,55,57,50,51,49,54,44,51,56,46,50,56,55,52,51,51,93,44,91,45,56,53,46,56,48,55,55,48,52,44,51,56,46,52,48,52,52,52,51,93,44,91,45,56,53,46,57,57,52,54,50,44,51,56,46,52,49,56,51,52,53,93,44,91,45,56,54,46,48,51,50,56,49,55,44,51,56,46,52,49,55,56,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,77,111,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,56,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,49,54,52,50,44,51,55,46,51,56,57,49,57,93,44,91,45,49,48,50,46,48,52,50,48,56,57,44,51,54,46,57,57,51,48,49,54,93,44,91,45,49,48,50,46,48,50,56,50,48,52,44,51,54,46,57,57,51,49,48,50,93,44,91,45,49,48,49,46,53,53,53,50,53,57,44,51,54,46,57,57,53,51,50,52,93,44,91,45,49,48,49,46,53,53,54,54,48,54,44,51,55,46,51,56,56,52,56,53,93,44,91,45,49,48,50,46,48,52,49,54,52,50,44,51,55,46,51,56,57,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,54,48,49,48,55,44,51,56,46,55,55,55,50,57,51,93,44,91,45,56,52,46,55,56,53,55,56,56,44,51,56,46,55,50,48,52,53,57,93,44,91,45,56,52,46,55,55,52,51,50,50,44,51,56,46,54,49,56,53,57,52,93,44,91,45,56,52,46,53,56,48,53,51,57,44,51,56,46,52,55,51,48,51,57,93,44,91,45,56,52,46,53,53,55,51,55,53,44,51,56,46,52,57,50,57,49,55,93,44,91,45,56,52,46,52,55,54,50,57,57,44,51,56,46,53,52,50,55,50,51,93,44,91,45,56,52,46,53,51,50,50,56,56,44,51,56,46,55,57,49,57,51,55,93,44,91,45,56,52,46,54,49,53,54,54,52,44,51,56,46,56,48,50,50,55,55,93,44,91,45,56,52,46,54,54,48,49,48,55,44,51,56,46,55,55,55,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,55,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,48,48,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,56,51,52,57,55,44,51,55,46,52,54,57,57,49,55,93,44,91,45,56,53,46,51,53,50,55,55,49,44,51,55,46,49,57,50,52,51,50,93,44,91,45,56,53,46,49,54,53,49,55,52,44,51,55,46,51,49,48,51,57,54,93,44,91,45,56,53,46,48,55,51,55,55,50,44,51,55,46,52,49,51,54,54,57,93,44,91,45,56,53,46,49,54,57,53,54,53,44,51,55,46,52,54,52,48,48,52,93,44,91,45,56,53,46,50,52,54,55,53,57,44,51,55,46,52,50,48,50,48,53,93,44,91,45,56,53,46,51,52,49,50,50,44,51,55,46,52,54,57,52,53,56,93,44,91,45,56,53,46,52,54,54,50,53,44,51,55,46,52,54,53,53,57,53,93,44,91,45,56,53,46,53,56,51,52,57,55,44,51,55,46,52,54,57,57,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,71,114,97,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,54,49,49,48,50,44,51,53,46,52,54,51,55,53,52,93,44,91,45,56,52,46,48,50,49,52,53,50,44,51,53,46,52,48,52,50,50,51,93,44,91,45,56,52,46,48,50,57,48,54,55,44,51,53,46,50,57,50,50,52,56,93,44,91,45,56,51,46,57,53,56,54,53,50,44,51,53,46,50,49,55,48,52,93,44,91,45,56,51,46,56,51,49,52,50,57,44,51,53,46,50,53,54,49,49,55,93,44,91,45,56,51,46,55,48,50,55,55,50,44,51,53,46,50,52,56,53,50,93,44,91,45,56,51,46,54,56,48,49,49,52,44,51,53,46,50,55,57,53,93,44,91,45,56,51,46,53,56,50,53,53,56,44,51,53,46,52,49,48,52,56,57,93,44,91,45,56,51,46,57,53,50,57,55,50,44,51,53,46,52,54,48,53,53,50,93,44,91,45,56,51,46,57,54,49,49,48,50,44,51,53,46,52,54,51,55,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,48,49,44,34,98,101,100,115,34,58,49,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,51,50,53,48,55,44,51,56,46,48,50,53,51,53,54,93,44,91,45,56,50,46,49,57,48,54,53,56,44,51,55,46,57,55,52,55,55,56,93,44,91,45,56,50,46,48,55,57,57,52,49,44,51,55,46,55,48,48,49,50,50,93,44,91,45,56,49,46,56,48,50,57,51,55,44,51,55,46,54,54,48,53,48,56,93,44,91,45,56,49,46,55,54,52,55,51,55,44,51,55,46,55,53,50,49,48,56,93,44,91,45,56,49,46,54,48,55,53,51,50,44,51,55,46,55,56,56,55,48,57,93,44,91,45,56,49,46,55,50,50,49,51,54,44,51,55,46,56,48,57,53,48,55,93,44,91,45,56,49,46,55,56,53,54,52,49,44,51,55,46,57,51,54,52,48,52,93,44,91,45,56,49,46,57,51,50,53,48,55,44,51,56,46,48,50,53,51,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,80,108,101,97,115,97,110,116,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,50,49,53,51,51,44,51,57,46,52,53,55,55,55,53,93,44,91,45,56,49,46,51,55,49,50,54,44,51,57,46,51,52,49,57,50,52,93,44,91,45,56,49,46,50,51,57,52,55,55,44,51,57,46,50,54,56,51,50,56,93,44,91,45,56,49,46,50,50,49,51,51,53,44,51,57,46,51,48,55,52,55,53,93,44,91,45,56,49,46,48,48,55,56,51,54,44,51,57,46,51,53,48,57,50,51,93,44,91,45,56,49,46,48,50,53,55,48,52,44,51,57,46,52,54,50,51,49,55,93,44,91,45,56,49,46,49,50,49,53,51,51,44,51,57,46,52,53,55,55,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,71,105,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,49,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,52,55,50,55,56,50,44,51,55,46,52,50,51,55,51,93,44,91,45,56,48,46,53,49,49,51,57,49,44,51,55,46,52,56,49,54,55,50,93,44,91,45,56,48,46,55,55,48,48,56,50,44,51,55,46,51,55,50,51,54,51,93,44,91,45,56,48,46,56,53,56,52,54,54,44,51,55,46,52,50,56,51,48,55,93,44,91,45,56,48,46,56,53,57,52,53,55,44,51,55,46,52,50,57,52,57,49,93,44,91,45,56,48,46,56,52,57,52,53,49,44,51,55,46,51,52,54,57,48,57,93,44,91,45,56,48,46,57,56,48,49,52,54,44,51,55,46,50,57,50,55,52,51,93,44,91,45,56,48,46,56,53,52,54,50,55,44,51,55,46,49,52,55,52,56,50,93,44,91,45,56,48,46,54,48,54,57,54,50,44,51,55,46,50,52,52,56,55,49,93,44,91,45,56,48,46,52,51,48,57,52,51,44,51,55,46,51,49,54,51,55,56,93,44,91,45,56,48,46,52,55,50,55,56,50,44,51,55,46,52,50,51,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,49,50,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,56,48,56,50,57,44,51,55,46,57,54,57,49,48,57,93,44,91,45,56,49,46,50,57,53,49,50,55,44,51,55,46,56,56,57,51,49,49,93,44,91,45,56,49,46,48,55,51,50,52,57,44,51,55,46,56,55,53,56,54,53,93,44,91,45,56,48,46,57,52,53,48,57,44,51,55,46,56,49,57,49,50,49,93,44,91,45,56,48,46,56,48,54,51,49,54,44,51,55,46,56,54,56,57,49,53,93,44,91,45,56,48,46,55,54,57,56,54,54,44,51,55,46,57,56,53,50,55,93,44,91,45,56,48,46,56,56,50,49,56,55,44,51,56,46,49,48,51,52,53,55,93,44,91,45,56,48,46,57,56,51,52,55,50,44,51,56,46,50,50,50,53,52,93,44,91,45,56,49,46,48,55,53,48,51,57,44,51,56,46,49,57,54,49,51,54,93,44,91,45,56,49,46,50,51,49,54,51,54,44,51,56,46,50,54,51,53,49,52,93,44,91,45,56,49,46,51,51,49,53,48,51,44,51,56,46,49,54,55,53,55,56,93,44,91,45,56,49,46,51,56,48,56,50,57,44,51,55,46,57,54,57,49,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,83,110,111,104,111,109,105,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,54,54,50,48,44,34,98,101,100,115,34,58,56,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,52,53,56,53,57,54,44,52,56,46,50,57,55,55,48,51,93,44,91,45,49,50,50,46,51,53,48,50,56,57,44,52,56,46,48,56,48,51,49,50,93,44,91,45,49,50,50,46,51,50,56,52,54,51,44,52,55,46,57,54,51,55,54,51,93,44,91,45,49,50,50,46,52,50,57,54,50,53,44,52,55,46,56,50,56,48,57,56,93,44,91,45,49,50,50,46,52,51,56,48,57,51,44,52,55,46,55,55,55,56,49,52,93,44,91,45,49,50,49,46,57,57,49,55,55,53,44,52,55,46,55,55,53,51,52,57,93,44,91,45,49,50,49,46,49,49,57,49,55,57,44,52,55,46,55,55,57,57,51,51,93,44,91,45,49,50,49,46,49,56,48,55,55,54,44,52,55,46,56,57,56,55,54,57,93,44,91,45,49,50,49,46,49,49,56,49,56,51,44,52,55,46,57,57,55,49,48,51,93,44,91,45,49,50,48,46,57,48,55,52,50,53,44,52,56,46,49,54,51,49,56,52,93,44,91,45,49,50,49,46,48,48,49,54,53,56,44,52,56,46,50,57,54,48,48,57,93,44,91,45,49,50,50,46,52,53,56,53,57,54,44,52,56,46,50,57,55,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,69,100,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,52,51,55,44,34,98,101,100,115,34,58,49,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,56,49,52,53,48,55,44,51,50,46,57,54,53,49,49,52,93,44,91,45,49,48,52,46,56,52,49,53,55,54,44,51,50,46,57,54,51,50,49,51,93,44,91,45,49,48,52,46,56,53,49,53,50,52,44,51,50,46,53,50,48,53,52,49,93,44,91,45,49,48,52,46,56,52,55,55,52,44,51,50,46,48,48,48,52,49,53,93,44,91,45,49,48,52,46,48,50,52,53,49,50,44,51,50,46,48,48,48,49,48,50,93,44,91,45,49,48,51,46,57,56,48,49,55,57,44,51,50,46,48,48,48,49,50,53,93,44,91,45,49,48,51,46,55,50,50,56,56,50,44,51,50,46,48,48,48,50,48,54,93,44,91,45,49,48,51,46,55,50,50,57,51,56,44,51,50,46,53,50,50,51,52,52,93,44,91,45,49,48,51,46,56,49,52,50,49,54,44,51,50,46,53,50,50,51,54,56,93,44,91,45,49,48,51,46,56,49,52,53,48,55,44,51,50,46,57,54,53,49,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,99,80,104,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,48,54,52,54,54,44,52,49,46,55,52,51,50,93,44,91,45,49,48,49,46,52,48,55,50,54,44,52,49,46,51,57,53,52,49,54,93,44,91,45,49,48,49,46,50,54,57,54,57,53,44,52,49,46,51,57,52,57,51,52,93,44,91,45,49,48,48,46,55,49,51,50,52,51,44,52,49,46,51,57,51,53,49,49,93,44,91,45,49,48,48,46,55,49,49,55,49,49,44,52,49,46,55,51,57,55,54,49,93,44,91,45,49,48,48,46,56,52,50,52,53,57,44,52,49,46,55,52,48,52,48,52,93,44,91,45,49,48,49,46,52,48,54,52,54,54,44,52,49,46,55,52,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,82,101,100,32,87,105,108,108,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,53,56,52,51,53,44,52,48,46,51,52,57,53,48,55,93,44,91,45,49,48,48,46,55,53,56,56,51,44,52,48,46,48,48,50,51,48,50,93,44,91,45,49,48,48,46,55,51,56,56,50,53,44,52,48,46,48,48,50,49,49,54,93,44,91,45,49,48,48,46,49,57,51,53,57,57,44,52,48,46,48,48,49,54,54,51,93,44,91,45,49,48,48,46,49,57,55,56,48,55,44,52,48,46,51,53,48,48,50,55,93,44,91,45,49,48,48,46,55,53,56,52,51,53,44,52,48,46,51,52,57,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,82,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,48,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,55,55,54,56,52,44,52,50,46,55,51,48,57,48,51,93,44,91,45,57,57,46,54,54,50,51,55,57,44,52,50,46,48,56,54,48,48,57,93,44,91,45,57,57,46,50,51,52,54,50,57,44,52,50,46,48,56,55,57,57,53,93,44,91,45,57,57,46,50,52,53,56,48,51,44,52,50,46,55,56,50,52,57,57,93,44,91,45,57,57,46,50,53,55,48,51,57,44,52,50,46,56,48,52,50,57,54,93,44,91,45,57,57,46,53,51,55,52,57,49,44,52,50,46,55,49,55,54,50,54,93,44,91,45,57,57,46,54,55,55,54,56,52,44,52,50,46,55,51,48,57,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,117,109,112,104,114,101,121,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,52,57,54,48,51,44,51,54,46,50,52,51,49,54,93,44,91,45,56,55,46,57,49,57,48,52,51,44,51,54,46,49,51,48,48,52,57,93,44,91,45,56,56,46,48,48,48,56,48,57,44,51,54,46,48,50,56,48,56,57,93,44,91,45,56,55,46,57,50,53,56,51,53,44,51,53,46,57,51,48,52,51,50,93,44,91,45,56,55,46,57,54,50,55,52,44,51,53,46,56,52,48,57,50,49,93,44,91,45,56,55,46,56,55,52,49,56,50,44,51,53,46,56,49,51,48,50,49,93,44,91,45,56,55,46,55,49,54,55,54,44,51,53,46,56,51,56,55,53,93,44,91,45,56,55,46,55,48,54,57,54,44,51,53,46,57,48,53,56,56,52,93,44,91,45,56,55,46,53,51,52,53,51,44,51,53,46,57,57,51,48,55,52,93,44,91,45,56,55,46,53,54,54,55,57,56,44,51,54,46,49,55,55,56,53,55,93,44,91,45,56,55,46,55,57,56,53,48,56,44,51,54,46,50,52,52,55,53,52,93,44,91,45,56,55,46,57,52,57,54,48,51,44,51,54,46,50,52,51,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,55,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,50,52,54,56,44,52,48,46,52,51,53,57,50,49,93,44,91,45,57,48,46,48,51,51,48,50,54,44,52,48,46,51,55,55,56,48,54,93,44,91,45,57,48,46,49,49,56,57,54,54,44,52,48,46,50,51,53,50,54,51,93,44,91,45,57,48,46,49,57,57,54,51,53,44,52,48,46,49,56,51,56,49,50,93,44,91,45,57,48,46,51,53,52,53,50,52,44,52,48,46,49,50,52,50,49,55,93,44,91,45,57,48,46,50,56,55,56,51,55,44,52,48,46,48,54,51,55,56,52,93,44,91,45,57,48,46,49,51,52,50,56,49,44,52,48,46,48,54,50,53,50,52,93,44,91,45,56,57,46,57,57,53,48,57,44,52,48,46,49,48,56,57,48,56,93,44,91,45,56,57,46,57,55,52,54,48,52,44,52,48,46,49,51,53,55,48,53,93,44,91,45,56,57,46,54,48,49,54,56,56,44,52,48,46,49,50,50,51,55,56,93,44,91,45,56,57,46,54,48,50,57,55,57,44,52,48,46,51,50,48,49,50,57,93,44,91,45,56,57,46,55,49,52,57,50,55,44,52,48,46,51,49,57,50,49,56,93,44,91,45,56,57,46,55,49,55,49,48,52,44,52,48,46,52,51,53,54,53,53,93,44,91,45,56,57,46,57,50,52,54,56,44,52,48,46,52,51,53,57,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,87,121,116,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,52,48,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,49,50,54,55,52,44,51,55,46,48,55,51,51,52,57,93,44,91,45,56,49,46,49,49,52,51,49,57,44,51,55,46,48,50,50,54,49,50,93,44,91,45,56,49,46,50,50,52,54,50,52,44,51,55,46,48,52,55,56,51,53,93,44,91,45,56,49,46,51,55,57,52,48,50,44,51,54,46,57,53,50,52,52,50,93,44,91,45,56,49,46,50,54,49,57,56,55,44,51,54,46,55,54,51,48,51,51,93,44,91,45,56,49,46,48,56,56,53,49,44,51,54,46,55,54,55,52,50,50,93,44,91,45,56,49,46,48,52,50,52,50,56,44,51,54,46,56,48,54,52,52,56,93,44,91,45,56,48,46,55,52,48,52,56,51,44,51,54,46,56,55,57,48,48,49,93,44,91,45,56,48,46,57,49,50,54,55,52,44,51,55,46,48,55,51,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,54,49,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,52,56,51,49,49,44,51,51,46,50,51,56,51,52,56,93,44,91,45,56,50,46,56,56,56,56,54,54,44,51,51,46,49,51,56,54,48,51,93,44,91,45,56,51,46,48,53,50,49,57,55,44,51,51,46,48,56,48,54,56,50,93,44,91,45,56,51,46,48,55,51,54,52,56,44,51,50,46,57,52,54,53,54,50,93,44,91,45,56,50,46,57,52,54,57,54,54,44,51,50,46,55,53,57,51,53,56,93,44,91,45,56,50,46,55,54,56,51,54,53,44,51,50,46,55,54,57,49,48,56,93,44,91,45,56,50,46,53,50,49,48,53,50,44,51,50,46,56,50,50,51,53,54,93,44,91,45,56,50,46,53,52,55,57,49,51,44,51,51,46,48,48,56,53,51,51,93,44,91,45,56,50,46,54,54,49,57,49,55,44,51,51,46,49,50,54,51,51,49,93,44,91,45,56,50,46,55,52,56,51,49,49,44,51,51,46,50,51,56,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,89,97,107,105,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,51,50,53,44,34,98,101,100,115,34,58,50,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,52,53,53,50,49,56,44,52,54,46,55,56,51,55,57,55,93,44,91,45,49,50,49,46,51,55,54,55,53,55,44,52,54,46,55,48,52,54,53,56,93,44,91,45,49,50,49,46,52,53,49,50,53,54,44,52,54,46,53,51,51,56,57,52,93,44,91,45,49,50,49,46,51,57,55,48,49,54,44,52,54,46,51,56,56,48,56,51,93,44,91,45,49,50,49,46,53,50,50,51,50,52,44,52,54,46,51,56,56,50,50,52,93,44,91,45,49,50,49,46,53,50,50,51,50,49,44,52,54,46,48,52,52,48,48,54,93,44,91,45,49,50,48,46,56,48,49,50,57,53,44,52,54,46,48,52,49,48,49,52,93,44,91,45,49,49,57,46,56,54,53,56,50,57,44,52,54,46,48,52,48,56,53,56,93,44,91,45,49,49,57,46,56,55,52,48,52,50,44,52,54,46,54,50,56,50,56,51,93,44,91,45,49,49,57,46,57,55,51,48,51,54,44,52,54,46,55,51,55,49,50,54,93,44,91,45,49,50,48,46,53,49,44,52,54,46,55,51,55,57,52,54,93,44,91,45,49,50,48,46,54,51,51,57,56,49,44,52,54,46,56,50,53,55,55,54,93,44,91,45,49,50,48,46,54,51,52,53,54,50,44,52,54,46,57,49,50,49,51,93,44,91,45,49,50,49,46,48,50,54,54,50,44,52,54,46,57,49,49,51,48,56,93,44,91,45,49,50,49,46,48,57,48,48,53,52,44,52,54,46,57,57,49,48,48,55,93,44,91,45,49,50,49,46,50,53,54,52,52,44,52,55,46,48,56,49,55,55,50,93,44,91,45,49,50,49,46,51,55,57,54,56,50,44,52,55,46,48,56,55,52,57,53,93,44,91,45,49,50,49,46,51,55,57,57,54,49,44,52,55,46,48,56,55,50,52,56,93,44,91,45,49,50,49,46,52,57,55,51,52,53,44,52,54,46,56,54,50,56,54,54,93,44,91,45,49,50,49,46,52,53,53,50,49,56,44,52,54,46,55,56,51,55,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,53,50,57,44,34,98,101,100,115,34,58,49,48,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,53,53,50,49,55,50,44,51,54,46,49,48,50,49,50,56,93,44,91,45,57,52,46,52,57,51,49,51,44,51,53,46,55,53,57,49,54,55,93,44,91,45,57,51,46,57,54,50,56,57,50,44,51,53,46,55,54,48,57,51,93,44,91,45,57,51,46,57,52,52,49,55,55,44,51,54,46,48,57,49,49,48,51,93,44,91,45,57,51,46,56,56,55,55,55,53,44,51,54,46,50,51,53,48,52,54,93,44,91,45,57,52,46,48,49,55,53,48,57,44,51,54,46,50,48,56,49,52,57,93,44,91,45,57,52,46,51,51,51,53,54,53,44,51,54,46,50,49,52,55,50,55,93,44,91,45,57,52,46,51,57,49,49,50,53,44,51,54,46,48,57,57,51,57,54,93,44,91,45,57,52,46,53,53,50,49,55,50,44,51,54,46,49,48,50,49,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,51,34,44,34,78,65,77,69,34,58,34,72,101,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,52,54,48,44,34,98,101,100,115,34,58,49,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,52,57,49,54,53,44,51,50,46,51,53,53,50,51,51,93,44,91,45,57,54,46,48,55,53,56,57,57,44,51,50,46,51,53,55,53,48,53,93,44,91,45,57,54,46,52,53,50,49,51,56,44,51,50,46,51,53,56,54,51,49,93,44,91,45,57,54,46,51,56,51,48,56,50,44,51,50,46,51,50,56,56,53,49,93,44,91,45,57,54,46,50,51,52,50,53,49,44,51,50,46,50,53,48,51,57,57,93,44,91,45,57,54,46,48,53,52,55,56,44,51,50,46,48,49,50,53,50,54,93,44,91,45,57,54,46,48,53,50,55,56,54,44,51,50,46,48,48,53,56,57,53,93,44,91,45,57,53,46,52,50,56,53,49,50,44,51,50,46,48,56,52,52,55,53,93,44,91,45,57,53,46,52,53,57,57,48,56,44,51,50,46,49,51,53,53,53,57,93,44,91,45,57,53,46,52,56,56,44,51,50,46,50,51,53,52,56,52,93,44,91,45,57,53,46,52,52,57,49,54,53,44,51,50,46,51,53,53,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,69,97,117,32,67,108,97,105,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,57,57,49,44,34,98,101,100,115,34,58,55,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,53,48,52,53,53,44,52,52,46,56,53,53,57,53,49,93,44,91,45,57,49,46,54,53,48,51,54,49,44,52,52,46,54,56,51,54,51,51,93,44,91,45,57,49,46,54,53,48,50,52,56,44,52,52,46,53,57,54,54,52,57,93,44,91,45,57,49,46,53,50,57,49,48,49,44,52,52,46,53,57,54,49,57,55,93,44,91,45,57,49,46,49,54,53,54,49,57,44,52,52,46,53,57,54,57,56,55,93,44,91,45,57,48,46,57,50,50,51,53,44,52,52,46,53,57,54,50,57,51,93,44,91,45,57,48,46,57,50,50,50,52,55,44,52,52,46,56,53,55,51,48,57,93,44,91,45,57,49,46,54,53,48,52,53,53,44,52,52,46,56,53,53,57,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,83,101,113,117,97,116,99,104,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,50,51,56,48,52,44,51,53,46,53,54,55,52,50,50,93,44,91,45,56,53,46,53,53,55,53,51,53,44,51,53,46,53,51,50,57,55,55,93,44,91,45,56,53,46,54,48,55,51,50,54,44,51,53,46,53,51,49,54,53,49,93,44,91,45,56,53,46,52,56,53,54,51,53,44,51,53,46,52,48,54,52,51,51,93,44,91,45,56,53,46,53,53,56,53,53,49,44,51,53,46,51,49,57,50,57,50,93,44,91,45,56,53,46,52,52,52,49,52,52,44,51,53,46,50,54,50,54,52,54,93,44,91,45,56,53,46,51,56,55,48,56,57,44,51,53,46,49,52,55,49,54,57,93,44,91,45,56,53,46,50,50,53,56,55,55,44,51,53,46,51,53,52,50,55,54,93,44,91,45,56,53,46,52,48,51,50,57,56,44,51,53,46,52,57,50,50,56,93,44,91,45,56,53,46,52,50,51,56,48,52,44,51,53,46,53,54,55,52,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,55,49,34,44,34,78,65,77,69,34,58,34,87,97,108,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,53,51,57,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,54,49,55,56,55,50,44,51,48,46,57,51,48,52,49,56,93,44,91,45,57,53,46,56,54,51,48,53,57,44,51,48,46,56,54,52,49,50,53,93,44,91,45,57,53,46,56,51,48,50,52,44,51,48,46,54,51,48,50,56,52,93,44,91,45,57,53,46,53,57,56,57,55,49,44,51,48,46,53,48,57,48,48,50,93,44,91,45,57,53,46,51,53,57,49,53,54,44,51,48,46,53,48,52,51,54,57,93,44,91,45,57,53,46,51,50,55,52,56,44,51,48,46,56,53,57,53,52,55,93,44,91,45,57,53,46,52,51,52,51,51,53,44,51,48,46,57,51,55,52,48,53,93,44,91,45,57,53,46,52,51,52,55,56,49,44,51,49,46,48,53,56,48,57,56,93,44,91,45,57,53,46,54,49,55,56,55,50,44,51,48,46,57,51,48,52,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,111,99,111,110,105,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,50,49,55,44,34,98,101,100,115,34,58,52,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,55,53,48,54,55,56,44,51,52,46,50,54,51,51,49,52,93,44,91,45,49,49,48,46,55,53,48,54,57,51,44,51,53,46,49,52,48,51,48,57,93,44,91,45,49,49,48,46,55,53,48,54,57,55,44,51,53,46,56,50,48,53,56,57,93,44,91,45,49,49,48,46,55,53,48,54,57,44,51,55,46,48,48,51,48,48,55,93,44,91,45,49,49,49,46,52,49,50,55,56,52,44,51,55,46,48,48,49,53,48,51,93,44,91,45,49,49,50,46,53,51,56,53,55,49,44,51,55,46,48,48,48,55,53,56,93,44,91,45,49,49,50,46,54,49,57,55,50,56,44,51,54,46,55,56,50,55,52,52,93,44,91,45,49,49,50,46,54,53,54,51,54,53,44,51,54,46,53,53,51,57,49,53,93,44,91,45,49,49,50,46,54,50,57,52,57,44,51,54,46,51,57,49,54,49,49,93,44,91,45,49,49,50,46,54,56,49,53,55,49,44,51,54,46,51,52,49,54,54,50,93,44,91,45,49,49,50,46,57,48,50,57,52,57,44,51,54,46,50,53,51,55,54,49,93,44,91,45,49,49,51,46,48,48,54,51,52,51,44,51,54,46,50,51,56,55,53,52,93,44,91,45,49,49,51,46,51,49,51,52,50,56,44,51,54,46,49,48,48,48,48,49,93,44,91,45,49,49,51,46,51,51,52,49,54,49,44,51,53,46,53,50,56,48,51,55,93,44,91,45,49,49,51,46,49,55,52,52,53,56,44,51,53,46,53,48,54,52,52,53,93,44,91,45,49,49,50,46,57,52,52,55,56,57,44,51,53,46,51,53,50,54,48,51,93,44,91,45,49,49,50,46,54,57,52,56,52,54,44,51,53,46,51,49,49,53,56,54,93,44,91,45,49,49,50,46,53,55,55,51,57,57,44,51,53,46,50,52,51,51,57,52,93,44,91,45,49,49,50,46,52,55,50,55,44,51,53,46,50,51,56,51,49,50,93,44,91,45,49,49,50,46,52,52,50,51,44,51,53,46,49,52,57,52,48,56,93,44,91,45,49,49,50,46,51,51,53,55,49,54,44,51,53,46,49,52,56,50,55,57,93,44,91,45,49,49,50,46,51,51,52,53,51,54,44,51,52,46,57,55,51,48,50,52,93,44,91,45,49,49,49,46,55,55,56,50,57,55,44,51,52,46,57,56,49,48,48,55,93,44,91,45,49,49,49,46,55,55,56,50,48,52,44,51,52,46,56,48,51,54,56,53,93,44,91,45,49,49,49,46,53,53,49,57,53,57,44,51,52,46,56,48,50,53,50,93,44,91,45,49,49,49,46,53,53,52,54,56,49,44,51,52,46,52,55,49,55,51,51,93,44,91,45,49,49,49,46,52,57,49,56,54,54,44,51,52,46,52,50,50,55,52,51,93,44,91,45,49,49,49,46,50,52,54,54,54,49,44,51,52,46,52,53,48,56,48,56,93,44,91,45,49,49,49,46,48,56,55,53,48,52,44,51,52,46,51,57,52,57,57,54,93,44,91,45,49,49,48,46,56,52,56,48,53,57,44,51,52,46,50,54,55,50,48,53,93,44,91,45,49,49,48,46,55,53,48,54,55,56,44,51,52,46,50,54,51,51,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,83,117,109,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,48,56,44,34,98,101,100,115,34,58,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,48,55,48,53,55,44,51,55,46,51,56,54,50,57,51,93,44,91,45,57,55,46,56,48,50,51,49,51,44,51,54,46,57,57,56,55,49,56,93,44,91,45,57,55,46,52,54,50,51,52,54,44,51,54,46,57,57,56,55,48,49,93,44,91,45,57,55,46,49,52,55,55,50,49,44,51,54,46,57,57,57,48,51,51,93,44,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,44,91,45,57,55,46,56,48,55,54,44,51,55,46,52,55,52,49,56,52,93,44,91,45,57,55,46,56,48,55,48,53,55,44,51,55,46,51,56,54,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,79,99,101,97,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,49,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,51,55,56,56,52,44,52,51,46,56,49,53,54,49,49,93,44,91,45,56,55,46,48,57,51,49,48,57,44,52,51,46,56,50,48,49,49,51,93,44,91,45,56,55,46,49,51,52,55,55,56,44,52,51,46,53,52,49,52,51,51,93,44,91,45,56,55,46,49,52,48,51,51,49,44,52,51,46,52,55,49,52,51,54,93,44,91,45,56,54,46,48,51,57,52,57,49,44,52,51,46,52,54,55,52,52,55,93,44,91,45,56,54,46,48,51,55,56,56,52,44,52,51,46,56,49,53,54,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,75,97,110,97,98,101,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,48,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,51,49,56,51,49,44,52,54,46,49,53,51,57,57,49,93,44,91,45,57,51,46,52,51,50,52,57,50,44,52,53,46,57,56,49,51,57,56,93,44,91,45,57,51,46,53,49,56,48,56,44,52,53,46,57,56,49,55,56,57,93,44,91,45,57,51,46,53,49,51,54,56,51,44,52,53,46,55,51,52,51,49,56,93,44,91,45,57,51,46,49,52,49,55,57,51,44,52,53,46,55,51,48,54,53,55,93,44,91,45,57,51,46,49,52,50,56,54,57,44,52,53,46,57,56,49,48,48,53,93,44,91,45,57,51,46,48,53,53,48,56,49,44,52,53,46,57,56,49,50,51,51,93,44,91,45,57,51,46,48,53,51,56,55,49,44,52,54,46,49,53,56,49,50,93,44,91,45,57,51,46,52,51,49,56,51,49,44,52,54,46,49,53,51,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,115,104,116,97,98,117,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,49,51,54,44,34,98,101,100,115,34,58,52,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,48,51,54,51,49,44,52,49,46,55,49,53,49,51,55,93,44,91,45,56,49,46,48,48,51,49,50,53,44,52,49,46,53,48,49,54,56,53,93,44,91,45,56,48,46,53,49,57,50,50,53,44,52,49,46,52,57,57,57,50,52,93,44,91,45,56,48,46,53,49,57,51,53,52,44,52,49,46,56,52,57,53,54,51,93,44,91,45,56,48,46,53,49,57,56,53,49,44,52,50,46,51,50,55,49,51,50,93,44,91,45,56,49,46,48,48,57,56,50,55,44,52,50,46,50,53,49,54,48,50,93,44,91,45,56,49,46,48,48,51,54,51,49,44,52,49,46,55,49,53,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,112,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,55,50,51,57,50,44,51,56,46,55,48,50,55,54,55,93,44,91,45,49,50,48,46,48,55,50,52,56,52,44,51,56,46,53,48,57,56,54,57,93,44,91,45,49,50,48,46,48,49,57,57,53,49,44,51,56,46,52,51,51,53,50,49,93,44,91,45,49,49,57,46,56,56,52,55,52,57,44,51,56,46,51,53,54,49,56,53,93,44,91,45,49,49,57,46,55,53,51,52,56,49,44,51,56,46,52,49,54,55,53,57,93,44,91,45,49,49,57,46,54,51,57,50,48,53,44,51,56,46,51,50,54,56,56,93,44,91,45,49,49,57,46,53,52,54,48,57,50,44,51,56,46,52,57,57,51,53,93,44,91,45,49,49,57,46,54,49,57,48,54,54,44,51,56,46,54,48,51,53,50,57,93,44,91,45,49,49,57,46,53,56,53,52,51,55,44,51,56,46,55,49,51,50,49,50,93,44,91,45,49,49,57,46,57,48,52,51,49,53,44,51,56,46,57,51,51,51,50,52,93,44,91,45,49,49,57,46,56,55,55,55,53,44,51,56,46,56,54,56,51,49,49,93,44,91,45,49,50,48,46,48,55,50,51,57,50,44,51,56,46,55,48,50,55,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,71,97,108,118,101,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,55,48,56,57,44,34,98,101,100,115,34,58,55,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,50,49,54,52,50,50,44,50,57,46,53,53,54,48,56,93,44,91,45,57,53,46,50,51,51,48,56,49,44,50,57,46,52,54,53,53,54,54,93,44,91,45,57,53,46,48,53,54,53,55,53,44,50,57,46,49,57,57,56,53,54,93,44,91,45,57,53,46,48,57,49,54,50,50,44,50,57,46,48,54,50,55,51,57,93,44,91,45,57,52,46,54,54,54,50,50,44,50,57,46,50,56,49,48,52,55,93,44,91,45,57,52,46,54,53,48,51,49,49,44,50,57,46,51,56,50,56,50,93,44,91,45,57,52,46,51,54,57,51,54,49,44,50,57,46,53,48,48,54,50,93,44,91,45,57,52,46,51,55,49,54,50,44,50,57,46,53,57,55,50,48,57,93,44,91,45,57,52,46,57,49,52,51,57,55,44,50,57,46,52,57,54,53,48,53,93,44,91,45,57,53,46,48,49,56,50,48,53,44,50,57,46,53,53,52,53,57,55,93,44,91,45,57,53,46,49,53,49,53,48,53,44,50,57,46,53,48,48,51,56,56,93,44,91,45,57,53,46,50,49,54,52,50,50,44,50,57,46,53,53,54,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,117,108,108,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,53,50,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,57,54,56,53,51,44,51,50,46,48,53,49,48,52,57,93,44,91,45,56,53,46,56,57,51,54,53,50,44,51,50,46,48,52,55,51,53,49,93,44,91,45,56,53,46,55,57,48,48,52,56,44,51,49,46,57,54,55,50,53,52,93,44,91,45,56,53,46,55,57,49,48,52,55,44,51,49,46,56,56,48,51,53,55,93,44,91,45,56,53,46,54,53,55,54,54,56,44,51,49,46,56,56,48,50,55,53,93,44,91,45,56,53,46,53,56,55,51,52,52,44,51,49,46,57,57,55,51,53,53,93,44,91,45,56,53,46,52,50,56,52,55,54,44,51,50,46,48,49,52,57,53,49,93,44,91,45,56,53,46,52,49,48,50,52,49,44,51,50,46,49,52,54,54,53,49,93,44,91,45,56,53,46,52,51,51,53,52,51,44,51,50,46,50,51,52,54,52,56,93,44,91,45,56,53,46,56,53,54,50,49,56,44,51,50,46,50,51,49,57,55,53,93,44,91,45,56,53,46,57,49,57,50,57,51,44,51,50,46,50,55,52,51,56,50,93,44,91,45,56,53,46,57,57,57,49,53,55,44,51,50,46,50,53,48,53,52,51,93,44,91,45,56,53,46,57,57,54,56,53,51,44,51,50,46,48,53,49,48,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,50,52,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,51,49,51,57,44,52,48,46,57,50,55,55,52,93,44,91,45,56,56,46,57,50,57,51,51,49,44,52,48,46,55,53,51,51,51,55,93,44,91,45,56,56,46,53,56,52,50,55,50,44,52,48,46,55,53,55,54,48,56,93,44,91,45,56,56,46,53,55,52,53,48,50,44,52,48,46,54,49,54,53,53,93,44,91,45,56,56,46,52,53,57,52,55,53,44,52,48,46,54,49,55,51,52,53,93,44,91,45,56,56,46,50,51,52,57,53,44,52,48,46,54,49,56,50,48,56,93,44,91,45,56,56,46,50,52,55,51,44,52,48,46,57,57,52,53,54,93,44,91,45,56,56,46,50,53,49,53,48,49,44,52,49,46,49,49,52,50,49,56,93,44,91,45,56,56,46,53,56,54,50,52,44,52,49,46,49,48,56,50,57,51,93,44,91,45,56,56,46,57,51,48,56,56,49,44,52,49,46,49,48,53,57,93,44,91,45,56,56,46,57,51,49,51,57,44,52,48,46,57,50,55,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,80,114,101,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,49,50,52,49,44,51,57,46,57,49,54,57,49,53,93,44,91,45,56,52,46,56,49,52,51,55,51,44,51,57,46,55,50,54,54,50,93,44,91,45,56,52,46,56,49,52,57,51,52,44,51,57,46,53,54,55,55,49,52,93,44,91,45,56,52,46,52,55,57,50,49,51,44,51,57,46,53,57,49,48,50,52,93,44,91,45,56,52,46,52,56,53,51,54,55,44,51,57,46,57,49,56,52,57,49,93,44,91,45,56,52,46,56,49,50,52,49,44,51,57,46,57,49,54,57,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,56,53,56,57,49,44,51,57,46,49,54,56,55,54,57,93,44,91,45,56,50,46,56,48,55,48,57,44,51,56,46,57,52,56,48,55,51,93,44,91,45,56,50,46,55,54,48,54,57,44,51,56,46,56,53,52,56,55,53,93,44,91,45,56,50,46,54,53,48,48,51,57,44,51,56,46,56,52,57,48,55,51,93,44,91,45,56,50,46,53,55,53,53,56,51,44,51,56,46,56,52,52,52,55,56,93,44,91,45,56,50,46,52,53,53,49,55,57,44,51,56,46,56,52,52,53,55,55,93,44,91,45,56,50,46,52,51,53,51,48,57,44,51,57,46,48,51,53,48,55,57,93,44,91,45,56,50,46,52,50,52,54,55,55,44,51,57,46,49,51,55,57,55,50,93,44,91,45,56,50,46,53,51,54,51,48,54,44,51,57,46,49,56,48,55,53,55,93,44,91,45,56,50,46,55,54,50,56,57,50,44,51,57,46,50,48,55,57,54,55,93,44,91,45,56,50,46,55,56,53,56,57,49,44,51,57,46,49,54,56,55,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,48,50,53,50,51,44,34,98,101,100,115,34,58,49,52,56,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,48,51,51,51,44,51,48,46,48,57,48,48,57,54,93,44,91,45,57,53,46,57,54,48,55,51,51,44,51,48,46,49,54,51,52,49,53,93,44,91,45,57,53,46,56,50,54,50,50,44,50,57,46,55,56,56,50,56,93,44,91,45,57,53,46,52,50,52,49,49,56,44,50,57,46,53,56,48,50,51,51,93,44,91,45,57,53,46,50,54,49,52,54,53,44,50,57,46,53,57,51,48,52,52,93,44,91,45,57,53,46,50,49,54,52,50,50,44,50,57,46,53,53,54,48,56,93,44,91,45,57,53,46,49,53,49,53,48,53,44,50,57,46,53,48,48,51,56,56,93,44,91,45,57,53,46,48,49,56,50,48,53,44,50,57,46,53,53,52,53,57,55,93,44,91,45,57,53,46,48,48,49,54,52,50,44,50,57,46,54,54,52,51,56,56,93,44,91,45,57,52,46,57,49,57,54,55,49,44,50,57,46,54,56,56,52,53,52,93,44,91,45,57,52,46,57,48,56,54,53,52,44,50,57,46,56,50,53,49,56,49,93,44,91,45,57,52,46,57,56,49,52,54,44,50,57,46,56,56,52,50,55,54,93,44,91,45,57,53,46,48,57,54,55,48,56,44,51,48,46,49,54,55,50,49,52,93,44,91,45,57,53,46,50,54,52,49,51,56,44,51,48,46,48,51,50,48,54,57,93,44,91,45,57,53,46,52,50,52,50,49,54,44,51,48,46,49,49,53,52,57,49,93,44,91,45,57,53,46,54,48,49,49,51,50,44,51,48,46,49,51,50,55,56,93,44,91,45,57,53,46,56,48,51,51,51,44,51,48,46,48,57,48,48,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,77,105,100,100,108,101,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,53,49,57,50,44,34,98,101,100,115,34,58,52,48,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,56,57,56,55,55,51,44,52,50,46,55,49,49,51,49,50,93,44,91,45,55,49,46,56,52,52,56,52,51,44,52,50,46,54,51,55,57,56,53,93,44,91,45,55,49,46,54,54,52,54,48,49,44,52,50,46,54,49,49,53,57,56,93,44,91,45,55,49,46,53,51,49,51,55,55,44,52,50,46,53,50,48,51,53,50,93,44,91,45,55,49,46,53,56,53,50,49,44,52,50,46,51,49,48,57,53,50,93,44,91,45,55,49,46,53,56,50,57,49,44,52,50,46,49,57,53,53,53,57,93,44,91,45,55,49,46,52,55,56,49,49,57,44,52,50,46,49,53,54,55,56,50,93,44,91,45,55,49,46,49,57,49,49,53,53,44,52,50,46,50,56,51,48,53,57,93,44,91,45,55,49,46,49,54,52,55,48,50,44,52,50,46,51,48,51,56,51,93,44,91,45,55,49,46,49,53,55,48,51,54,44,52,50,46,51,51,48,51,57,93,44,91,45,55,49,46,48,50,53,56,51,54,44,52,50,46,52,52,52,55,48,57,93,44,91,45,55,49,46,49,51,53,52,48,53,44,52,50,46,53,57,57,48,56,93,44,91,45,55,49,46,50,53,54,49,56,56,44,52,50,46,54,53,55,49,52,53,93,44,91,45,55,49,46,50,53,53,49,52,55,44,52,50,46,55,51,54,53,53,52,93,44,91,45,55,49,46,50,57,52,54,51,55,44,52,50,46,54,57,55,48,52,50,93,44,91,45,55,49,46,56,57,56,55,55,51,44,52,50,46,55,49,49,51,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,86,101,103,97,32,66,97,106,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,51,55,49,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,52,51,54,55,53,50,44,49,56,46,53,52,48,56,48,53,93,44,91,45,54,54,46,52,52,51,56,44,49,56,46,51,55,49,48,50,55,93,44,91,45,54,54,46,51,55,55,48,53,56,44,49,56,46,51,52,52,50,52,54,93,44,91,45,54,54,46,51,53,48,48,57,51,44,49,56,46,53,52,49,48,49,52,93,44,91,45,54,54,46,52,51,54,55,53,50,44,49,56,46,53,52,48,56,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,68,97,119,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,54,52,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,57,49,50,56,52,44,51,50,46,57,54,49,56,51,56,93,44,91,45,49,48,50,46,48,55,54,50,49,52,44,51,50,46,57,53,57,55,48,50,93,44,91,45,49,48,50,46,50,48,56,53,50,44,51,50,46,57,53,56,57,53,54,93,44,91,45,49,48,50,46,50,48,50,55,48,51,44,51,50,46,53,50,51,50,55,49,93,44,91,45,49,48,49,46,54,56,56,55,52,44,51,50,46,53,50,53,50,50,50,93,44,91,45,49,48,49,46,54,57,49,50,56,52,44,51,50,46,57,54,49,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,79,110,116,97,114,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,52,55,50,44,34,98,101,100,115,34,58,51,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,55,49,52,55,56,44,52,51,46,48,51,52,54,57,54,93,44,91,45,55,55,46,52,56,53,52,49,56,44,52,51,46,48,51,52,53,54,52,93,44,91,45,55,55,46,53,56,48,51,55,55,44,52,50,46,57,52,51,57,54,51,93,44,91,45,55,55,46,53,57,56,56,49,53,44,52,50,46,54,55,49,57,54,53,93,44,91,45,55,55,46,52,57,48,56,56,57,44,52,50,46,53,55,55,50,56,56,93,44,91,45,55,55,46,51,54,54,53,48,53,44,52,50,46,53,55,54,51,54,56,93,44,91,45,55,55,46,51,49,51,48,48,52,44,52,50,46,55,54,49,50,54,53,93,44,91,45,55,54,46,57,55,49,51,57,50,44,52,50,46,55,54,52,50,50,51,93,44,91,45,55,54,46,57,54,51,57,50,54,44,52,51,46,48,49,51,49,53,55,93,44,91,45,55,55,46,49,51,52,51,51,53,44,52,51,46,48,51,57,57,50,54,93,44,91,45,55,55,46,51,55,49,52,55,56,44,52,51,46,48,51,52,54,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,49,34,44,34,78,65,77,69,34,58,34,86,97,108,100,101,122,45,67,111,114,100,111,118,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,48,49,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,52,54,46,52,57,52,51,49,49,44,54,51,46,49,54,56,57,55,53,93,44,91,45,49,52,54,46,52,57,52,50,57,54,44,54,50,46,57,53,55,56,54,52,93,44,91,45,49,52,54,46,52,51,54,56,57,57,44,54,50,46,56,53,54,57,57,49,93,44,91,45,49,52,54,46,52,50,51,57,56,52,44,54,50,46,50,53,48,53,49,49,93,44,91,45,49,52,54,46,57,55,57,56,48,55,44,54,50,46,50,53,48,52,57,55,93,44,91,45,49,52,54,46,57,52,50,54,48,49,44,54,49,46,56,49,55,50,55,50,93,44,91,45,49,52,54,46,57,52,50,53,53,57,44,54,49,46,52,55,48,54,55,53,93,44,91,45,49,52,55,46,50,48,54,53,57,55,44,54,49,46,52,50,54,50,54,53,93,44,91,45,49,52,56,46,52,54,50,52,55,49,44,54,49,46,52,50,54,50,54,55,93,44,91,45,49,52,56,46,52,55,50,48,54,53,44,54,48,46,56,52,56,53,50,93,44,91,45,49,52,56,46,55,51,56,51,54,51,44,54,48,46,56,52,56,53,52,54,93,44,91,45,49,52,56,46,55,52,53,54,49,56,44,54,48,46,55,51,51,48,48,55,93,44,91,45,49,52,56,46,54,53,55,49,49,57,44,54,48,46,55,51,50,57,55,54,93,44,91,45,49,52,56,46,54,54,52,52,55,44,54,48,46,52,49,53,49,56,51,93,44,91,45,49,52,56,46,53,54,51,55,49,53,44,54,48,46,52,49,53,49,55,50,93,44,91,45,49,52,56,46,53,56,54,49,56,44,53,57,46,57,51,56,53,56,53,93,44,91,45,49,52,56,46,57,52,56,55,54,50,44,53,57,46,56,57,50,55,49,56,93,44,91,45,49,52,56,46,50,49,56,53,48,54,44,53,57,46,56,55,53,54,52,93,44,91,45,49,52,55,46,57,53,54,52,51,57,44,53,57,46,55,52,52,49,51,49,93,44,91,45,49,52,55,46,54,56,55,50,52,44,53,57,46,55,52,49,54,56,93,44,91,45,49,52,55,46,51,51,52,56,50,55,44,53,57,46,56,51,51,56,55,52,93,44,91,45,49,52,55,46,50,52,49,55,52,44,53,57,46,57,57,56,51,49,55,93,44,91,45,49,52,55,46,49,48,49,57,52,44,54,48,46,48,56,49,51,51,55,93,44,91,45,49,52,54,46,57,51,57,50,55,57,44,54,48,46,49,48,51,56,52,56,93,44,91,45,49,52,54,46,49,55,57,51,48,57,44,54,48,46,50,56,48,48,53,54,93,44,91,45,49,52,53,46,56,50,52,51,50,51,44,54,48,46,51,49,53,49,49,55,93,44,91,45,49,52,53,46,51,49,55,54,56,55,44,54,48,46,49,55,57,54,57,49,93,44,91,45,49,52,52,46,55,55,54,48,49,53,44,54,48,46,49,50,57,53,57,50,93,44,91,45,49,52,52,46,53,51,57,54,56,52,44,54,48,46,48,49,48,49,52,57,93,44,91,45,49,52,52,46,55,55,55,55,57,56,44,53,57,46,56,50,57,57,51,53,93,44,91,45,49,52,52,46,54,55,54,55,55,44,53,57,46,55,50,55,51,57,53,93,44,91,45,49,52,52,46,52,49,48,53,48,57,44,53,57,46,55,52,54,50,55,52,93,44,91,45,49,52,52,46,49,52,52,48,55,56,44,53,57,46,57,49,57,52,53,50,93,44,91,45,49,52,51,46,56,57,53,50,49,44,53,57,46,57,52,50,54,52,55,93,44,91,45,49,52,51,46,56,57,51,51,50,53,44,54,48,46,48,50,52,49,54,54,93,44,91,45,49,52,51,46,49,57,51,53,49,57,44,54,48,46,53,50,49,56,50,56,93,44,91,45,49,52,49,46,55,57,48,54,49,57,44,54,48,46,53,50,49,56,57,57,93,44,91,45,49,52,49,46,55,57,48,54,48,49,44,54,48,46,52,51,53,50,51,56,93,44,91,45,49,52,49,46,50,49,51,52,53,49,44,54,48,46,52,51,53,50,54,56,93,44,91,45,49,52,49,46,48,48,49,57,53,53,44,54,48,46,51,57,49,54,56,56,93,44,91,45,49,52,49,46,48,48,49,57,57,53,44,54,49,46,51,48,51,53,54,56,93,44,91,45,49,52,49,46,48,48,50,50,54,55,44,54,49,46,57,48,52,48,52,55,93,44,91,45,49,52,49,46,56,51,49,56,48,52,44,54,49,46,57,48,52,48,53,51,93,44,91,45,49,52,49,46,56,51,49,56,49,50,44,54,50,46,49,49,55,49,55,56,93,44,91,45,49,52,49,46,57,55,55,51,51,54,44,54,50,46,49,54,51,57,56,51,93,44,91,45,49,52,49,46,57,55,55,51,53,51,44,54,50,46,53,49,48,53,53,57,93,44,91,45,49,52,50,46,51,49,51,53,54,52,44,54,50,46,54,56,51,56,50,56,93,44,91,45,49,52,50,46,55,51,49,50,51,51,44,54,50,46,55,48,56,50,56,50,93,44,91,45,49,52,50,46,56,52,56,53,55,57,44,54,50,46,54,48,48,53,52,55,93,44,91,45,49,52,51,46,49,48,52,57,57,54,44,54,50,46,54,49,52,57,48,53,93,44,91,45,49,52,51,46,48,53,55,56,51,52,44,54,50,46,55,55,48,53,52,93,44,91,45,49,52,51,46,49,54,52,51,53,44,54,50,46,56,51,52,53,54,57,93,44,91,45,49,52,51,46,48,51,50,50,51,56,44,54,50,46,57,51,49,55,57,49,93,44,91,45,49,52,51,46,49,51,50,51,51,55,44,54,51,46,49,49,54,57,55,56,93,44,91,45,49,52,52,46,53,56,48,49,53,57,44,54,51,46,49,49,54,57,51,49,93,44,91,45,49,52,53,46,49,53,52,51,56,53,44,54,51,46,49,51,49,49,52,57,93,44,91,45,49,52,53,46,49,53,52,51,57,53,44,54,51,46,50,49,55,55,56,49,93,44,91,45,49,52,54,46,49,49,49,52,56,54,44,54,51,46,50,49,55,55,54,50,93,44,91,45,49,52,54,46,52,57,52,51,49,49,44,54,51,46,49,54,56,57,55,53,93,93,93,44,91,91,91,45,49,52,54,46,53,48,56,50,56,44,53,57,46,51,57,48,55,50,55,93,44,91,45,49,52,54,46,52,48,50,52,55,57,44,53,57,46,51,51,52,55,54,50,93,44,91,45,49,52,54,46,49,52,57,53,51,53,44,53,57,46,52,49,55,49,55,53,93,44,91,45,49,52,54,46,50,57,55,56,54,51,44,53,57,46,53,56,51,57,48,51,93,44,91,45,49,52,54,46,52,50,51,55,53,57,44,53,57,46,53,53,56,55,49,52,93,44,91,45,49,52,54,46,53,48,56,50,56,44,53,57,46,51,57,48,55,50,55,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,117,116,97,117,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,50,48,48,44,34,98,101,100,115,34,58,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,49,55,53,57,53,44,51,50,46,54,54,52,49,54,57,93,44,91,45,56,54,46,57,48,54,55,52,50,44,51,50,46,53,51,54,57,55,55,93,44,91,45,56,54,46,56,49,52,57,49,50,44,51,50,46,51,52,48,56,48,51,93,44,91,45,56,54,46,54,53,51,52,49,57,44,51,50,46,51,57,55,50,52,55,93,44,91,45,56,54,46,52,57,54,55,55,52,44,51,50,46,51,52,52,52,51,55,93,44,91,45,56,54,46,52,49,49,49,55,50,44,51,50,46,52,48,57,57,51,55,93,44,91,45,56,54,46,52,49,51,49,49,54,44,51,50,46,55,48,55,51,56,54,93,44,91,45,56,54,46,55,49,52,50,49,57,44,51,50,46,55,48,53,54,57,52,93,44,91,45,56,54,46,57,49,55,53,57,53,44,51,50,46,54,54,52,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,105,97,109,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,49,50,55,44,34,98,101,100,115,34,58,50,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,53,54,52,49,50,44,51,56,46,55,51,56,53,56,55,93,44,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,44,91,45,57,52,46,54,49,51,50,51,50,44,51,56,46,51,56,56,55,49,56,93,44,91,45,57,52,46,54,49,50,56,56,50,44,51,56,46,52,55,55,53,57,55,93,44,91,45,57,52,46,54,48,57,48,56,44,51,56,46,55,51,56,48,57,57,93,44,91,45,57,53,46,48,53,54,52,49,50,44,51,56,46,55,51,56,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,68,111,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,49,57,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,52,54,53,50,56,44,51,50,46,50,55,50,52,56,57,93,44,91,45,56,51,46,50,57,49,49,48,54,44,51,50,46,49,55,56,56,50,53,93,44,91,45,56,51,46,51,51,55,51,49,51,44,51,50,46,49,48,53,56,56,53,93,44,91,45,56,51,46,50,48,53,55,51,57,44,51,49,46,57,48,48,51,50,53,93,44,91,45,56,50,46,57,50,55,56,54,53,44,51,50,46,49,51,53,50,55,52,93,44,91,45,56,50,46,56,56,52,56,48,51,44,51,50,46,49,57,54,48,55,50,93,44,91,45,56,50,46,57,57,48,57,54,55,44,51,50,46,49,52,55,50,55,52,93,44,91,45,56,51,46,49,51,56,57,57,49,44,51,50,46,52,50,51,48,54,57,93,44,91,45,56,51,46,49,55,51,50,53,50,44,51,50,46,52,53,50,53,51,51,93,44,91,45,56,51,46,51,52,54,53,50,56,44,51,50,46,50,55,50,52,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,111,114,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,49,50,51,44,34,98,101,100,115,34,58,49,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,50,55,52,54,55,51,44,52,50,46,55,55,49,50,53,55,93,44,91,45,55,54,46,50,54,53,53,56,52,44,52,50,46,54,50,51,53,56,56,93,44,91,45,55,54,46,50,53,51,51,53,57,44,52,50,46,52,48,55,53,54,56,93,44,91,45,55,54,46,49,51,48,49,56,49,44,52,50,46,52,49,48,51,51,55,93,44,91,45,55,53,46,56,54,52,48,50,44,52,50,46,52,49,53,55,48,50,93,44,91,45,55,53,46,56,56,57,56,51,50,44,52,50,46,55,50,51,56,52,52,93,44,91,45,55,53,46,56,57,54,48,55,57,44,52,50,46,55,57,48,57,54,52,93,44,91,45,55,54,46,50,55,52,54,55,51,44,52,50,46,55,55,49,50,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,97,109,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,49,52,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,51,54,48,48,54,44,51,49,46,48,52,55,57,57,51,93,44,91,45,56,49,46,57,48,52,56,53,53,44,51,48,46,56,50,56,51,52,93,44,91,45,56,49,46,55,49,56,49,48,57,44,51,48,46,55,52,52,56,48,54,93,44,91,45,56,49,46,51,52,55,48,49,53,44,51,48,46,55,49,50,52,52,52,93,44,91,45,56,49,46,52,48,48,52,56,50,44,51,48,46,55,54,54,52,50,54,93,44,91,45,56,49,46,51,48,54,52,51,53,44,51,48,46,57,57,48,54,52,52,93,44,91,45,56,49,46,52,50,51,55,55,53,44,51,48,46,57,57,48,56,57,50,93,44,91,45,56,49,46,53,54,53,49,49,54,44,51,49,46,48,57,49,57,52,93,44,91,45,56,49,46,55,54,54,51,50,50,44,51,49,46,49,54,57,53,57,53,93,44,91,45,56,49,46,57,51,54,48,48,54,44,51,49,46,48,52,55,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,116,101,110,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,53,57,54,49,44,34,98,101,100,115,34,58,49,57,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,51,49,49,51,54,44,52,50,46,52,50,52,53,54,55,93,44,91,45,56,52,46,49,51,49,57,54,51,44,52,50,46,48,55,49,53,55,55,93,44,91,45,56,51,46,55,55,51,57,50,50,44,52,50,46,48,56,50,52,51,93,44,91,45,56,51,46,53,51,57,51,57,54,44,52,50,46,48,56,53,53,57,56,93,44,91,45,56,51,46,53,53,49,57,48,55,44,52,50,46,52,51,53,49,54,54,93,44,91,45,56,51,46,54,54,52,56,48,56,44,52,50,46,52,51,49,49,55,57,93,44,91,45,56,52,46,49,51,49,49,51,54,44,52,50,46,52,50,52,53,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,76,97,71,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,57,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,57,55,53,44,52,49,46,55,53,57,48,54,56,93,44,91,45,56,53,46,54,53,52,55,52,55,44,52,49,46,53,50,51,51,52,55,93,44,91,45,56,53,46,49,57,52,48,56,52,44,52,49,46,53,50,54,52,51,55,93,44,91,45,56,53,46,49,57,54,55,55,52,44,52,49,46,55,53,57,54,52,52,93,44,91,45,56,53,46,50,57,50,49,55,57,44,52,49,46,55,53,57,56,56,57,93,44,91,45,56,53,46,54,53,57,55,53,44,52,49,46,55,53,57,48,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,55,49,34,44,34,78,65,77,69,34,58,34,80,101,99,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,57,55,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,49,49,48,52,44,51,49,46,51,55,49,51,48,54,93,44,91,45,49,48,51,46,53,56,53,48,56,52,44,51,48,46,55,54,54,52,55,93,44,91,45,49,48,51,46,52,51,57,57,55,54,44,51,48,46,54,54,53,57,51,57,93,44,91,45,49,48,50,46,53,54,55,48,52,57,44,51,48,46,48,53,50,56,48,56,93,44,91,45,49,48,50,46,53,54,54,57,51,55,44,51,48,46,50,56,51,50,54,57,93,44,91,45,49,48,50,46,51,52,51,48,56,53,44,51,48,46,50,56,52,49,49,54,93,44,91,45,49,48,50,46,51,52,50,57,56,54,44,51,48,46,53,57,56,55,53,57,93,44,91,45,49,48,50,46,49,51,56,52,48,54,44,51,48,46,53,57,55,53,50,49,93,44,91,45,49,48,50,46,49,51,55,55,55,56,44,51,48,46,54,53,53,57,56,50,93,44,91,45,49,48,49,46,55,54,56,52,50,44,51,48,46,54,53,51,48,55,55,93,44,91,45,49,48,49,46,56,51,52,53,50,56,44,51,48,46,55,53,55,57,52,57,93,44,91,45,49,48,49,46,56,55,52,50,55,54,44,51,48,46,57,49,50,50,51,54,93,44,91,45,49,48,49,46,57,56,52,53,50,55,44,51,48,46,57,56,55,52,52,53,93,44,91,45,49,48,50,46,50,57,50,54,56,49,44,51,49,46,48,51,54,54,55,55,93,44,91,45,49,48,50,46,51,56,56,56,48,52,44,51,49,46,48,56,55,49,53,54,93,44,91,45,49,48,50,46,52,51,48,49,50,51,44,51,49,46,49,57,51,57,49,56,93,44,91,45,49,48,50,46,54,55,51,50,52,52,44,51,49,46,51,50,56,49,48,53,93,44,91,45,49,48,50,46,55,54,55,51,54,53,44,51,49,46,50,57,51,56,48,51,93,44,91,45,49,48,50,46,56,50,53,49,49,54,44,51,49,46,50,54,54,57,49,52,93,44,91,45,49,48,51,46,48,49,49,48,52,44,51,49,46,51,55,49,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,53,34,44,34,78,65,77,69,34,58,34,80,101,97,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,54,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,48,49,48,57,44,51,50,46,54,57,49,53,57,56,93,44,91,45,56,51,46,55,54,54,57,54,51,44,51,50,46,54,57,50,52,57,53,93,44,91,45,56,52,46,48,48,51,51,54,51,44,51,50,46,53,50,57,57,50,55,93,44,91,45,56,52,46,48,48,56,52,57,44,51,50,46,53,50,49,55,54,57,93,44,91,45,56,52,46,48,49,56,49,52,55,44,51,50,46,53,48,54,52,48,54,93,44,91,45,56,51,46,56,52,54,54,55,54,44,51,50,46,52,54,56,53,49,52,93,44,91,45,56,51,46,55,49,57,56,53,57,44,51,50,46,53,51,49,55,54,93,44,91,45,56,51,46,55,48,49,48,57,44,51,50,46,54,57,49,53,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,49,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,56,48,51,52,54,44,51,52,46,55,57,50,57,48,53,93,44,91,45,56,51,46,56,53,54,53,48,54,44,51,52,46,55,50,50,49,57,49,93,44,91,45,56,51,46,56,52,51,52,48,53,44,51,52,46,53,48,53,52,57,52,93,44,91,45,56,51,46,54,54,54,52,49,53,44,51,52,46,53,48,51,54,48,50,93,44,91,45,56,51,46,54,51,50,51,49,55,44,51,52,46,53,50,56,53,56,55,93,44,91,45,56,51,46,54,50,51,50,57,54,44,51,52,46,55,51,50,49,57,52,93,44,91,45,56,51,46,54,56,49,53,57,54,44,51,52,46,56,48,48,56,56,50,93,44,91,45,56,51,46,55,56,48,51,52,54,44,51,52,46,55,57,50,57,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,55,50,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,49,57,53,55,44,51,51,46,50,55,52,56,51,93,44,91,45,56,50,46,54,54,49,57,49,55,44,51,51,46,49,50,54,51,51,49,93,44,91,45,56,50,46,53,52,55,57,49,51,44,51,51,46,48,48,56,53,51,51,93,44,91,45,56,50,46,53,50,49,48,53,50,44,51,50,46,56,50,50,51,53,54,93,44,91,45,56,50,46,52,51,52,49,52,57,44,51,50,46,55,54,50,50,53,56,93,44,91,45,56,50,46,51,49,54,53,49,50,44,51,50,46,56,51,53,55,55,50,93,44,91,45,56,50,46,50,55,50,51,53,51,44,51,50,46,57,51,55,55,57,54,93,44,91,45,56,50,46,50,57,49,49,56,44,51,51,46,48,54,50,56,50,55,93,44,91,45,56,50,46,50,51,51,48,54,50,44,51,51,46,50,50,55,55,52,93,44,91,45,56,50,46,50,54,55,53,56,44,51,51,46,50,54,55,51,57,55,93,44,91,45,56,50,46,51,53,51,52,57,56,44,51,51,46,51,49,50,51,49,56,93,44,91,45,56,50,46,51,56,51,56,50,57,44,51,51,46,51,49,50,49,48,54,93,44,91,45,56,50,46,52,51,49,57,53,55,44,51,51,46,50,55,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,79,99,111,110,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,53,53,54,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,55,55,57,57,54,44,52,53,46,51,55,56,54,56,51,93,44,91,45,56,56,46,54,56,48,48,54,54,44,52,53,46,50,48,52,57,57,52,93,44,91,45,56,56,46,54,52,49,49,53,57,44,52,53,46,49,49,55,51,52,54,93,44,91,45,56,56,46,52,56,51,55,51,50,44,52,53,46,49,49,54,56,56,55,93,44,91,45,56,56,46,52,56,57,49,52,57,44,52,52,46,56,53,53,52,52,53,93,44,91,45,56,56,46,50,52,56,50,49,51,44,52,52,46,56,53,50,55,51,57,93,44,91,45,56,56,46,50,52,50,54,56,55,44,52,52,46,54,55,57,54,51,49,93,44,91,45,56,55,46,55,54,50,51,51,57,44,52,52,46,54,55,55,48,49,53,93,44,91,45,56,55,46,55,54,50,52,54,52,44,52,52,46,55,54,52,51,54,55,93,44,91,45,56,55,46,55,54,48,48,55,49,44,52,52,46,57,57,48,53,51,93,44,91,45,56,56,46,49,50,49,49,53,50,44,52,53,46,48,50,51,53,56,49,93,44,91,45,56,56,46,49,56,54,51,53,53,44,52,53,46,49,57,55,57,55,52,93,44,91,45,56,56,46,51,48,57,48,54,51,44,52,53,46,50,48,49,53,56,93,44,91,45,56,56,46,51,48,53,56,49,49,44,52,53,46,51,55,52,54,49,93,44,91,45,56,56,46,52,50,56,49,48,50,44,52,53,46,51,55,55,48,49,93,44,91,45,56,56,46,54,55,55,57,57,54,44,52,53,46,51,55,56,54,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,52,55,34,44,34,78,65,77,69,34,58,34,78,97,99,111,103,100,111,99,104,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,53,53,56,44,34,98,101,100,115,34,58,51,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,51,55,53,51,50,44,51,49,46,56,52,53,53,53,53,93,44,91,45,57,52,46,57,54,53,50,50,51,44,51,49,46,54,57,51,56,56,53,93,44,91,45,57,52,46,56,54,53,56,53,55,44,51,49,46,53,50,54,57,49,54,93,44,91,45,57,52,46,55,50,56,52,53,54,44,51,49,46,52,53,55,49,52,55,93,44,91,45,57,52,46,53,53,52,56,51,56,44,51,49,46,52,51,53,49,50,51,93,44,91,45,57,52,46,52,54,54,54,55,54,44,51,49,46,51,55,56,48,48,57,93,44,91,45,57,52,46,51,50,54,54,49,54,44,51,49,46,50,50,52,55,53,52,93,44,91,45,57,52,46,51,49,49,49,44,51,49,46,53,56,56,52,56,50,93,44,91,45,57,52,46,51,57,57,48,57,49,44,51,49,46,54,53,51,53,57,54,93,44,91,45,57,52,46,52,53,50,52,49,54,44,51,49,46,56,52,52,50,56,49,93,44,91,45,57,52,46,57,51,55,53,51,50,44,51,49,46,56,52,53,53,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,52,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,82,104,111,100,101,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,82,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,50,52,50,44,34,98,101,100,115,34,58,50,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,55,49,46,51,56,48,53,52,50,44,52,49,46,54,53,48,51,50,54,93,44,91,45,55,49,46,52,56,52,52,50,55,44,52,49,46,54,48,50,53,57,49,93,44,91,45,55,49,46,55,56,57,50,52,55,44,52,49,46,53,57,54,56,52,55,93,44,91,45,55,49,46,55,57,55,55,52,55,44,52,49,46,52,49,54,56,51,52,93,44,91,45,55,49,46,57,48,55,50,53,56,44,52,49,46,51,48,52,52,56,51,93,44,91,45,55,49,46,55,57,48,57,55,50,44,52,49,46,49,56,52,49,48,49,93,44,91,45,55,49,46,55,57,49,52,56,44,52,49,46,50,55,50,49,54,53,93,44,91,45,55,49,46,53,48,57,52,52,50,44,52,49,46,51,48,55,55,51,50,93,44,91,45,55,49,46,52,48,57,48,57,57,44,52,49,46,52,54,56,50,48,50,93,44,91,45,55,49,46,51,56,48,53,52,50,44,52,49,46,54,53,48,51,50,54,93,93,93,44,91,91,91,45,55,49,46,54,55,56,56,48,55,44,52,49,46,49,53,56,57,49,50,93,44,91,45,55,49,46,54,49,49,54,55,51,44,52,49,46,48,57,55,52,49,51,93,44,91,45,55,49,46,52,55,54,57,50,53,44,52,49,46,49,54,56,49,53,55,93,44,91,45,55,49,46,52,57,50,49,57,54,44,52,49,46,50,52,48,56,55,54,93,44,91,45,55,49,46,54,50,52,53,48,52,44,52,49,46,50,55,52,49,50,57,93,44,91,45,55,49,46,54,55,56,56,48,55,44,52,49,46,49,53,56,57,49,50,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,79,107,97,110,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,51,56,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,55,48,50,48,54,57,44,52,56,46,53,51,49,53,56,57,93,44,91,45,49,50,48,46,54,52,57,57,51,51,44,52,56,46,51,57,56,49,51,57,93,44,91,45,49,50,48,46,51,52,54,50,56,52,44,52,56,46,49,57,57,57,56,54,93,44,91,45,49,50,48,46,51,54,49,50,56,56,44,52,56,46,49,53,55,53,54,57,93,44,91,45,49,50,48,46,49,52,51,57,51,49,44,52,56,46,48,54,53,52,52,52,93,44,91,45,49,50,48,46,48,52,56,54,52,54,44,52,55,46,57,54,48,54,50,56,93,44,91,45,49,49,57,46,56,55,48,53,57,53,44,52,55,46,57,54,48,52,53,53,93,44,91,45,49,49,57,46,56,57,53,51,53,44,52,56,46,48,53,48,48,52,52,93,44,91,45,49,49,57,46,54,56,50,57,56,49,44,52,56,46,48,57,50,53,49,51,93,44,91,45,49,49,57,46,54,53,50,52,54,56,44,52,56,46,48,48,48,50,50,49,93,44,91,45,49,49,57,46,52,51,54,50,53,55,44,52,56,46,48,55,54,54,56,56,93,44,91,45,49,49,57,46,51,52,51,53,50,51,44,52,56,46,48,52,57,52,51,50,93,44,91,45,49,49,57,46,49,53,48,57,56,51,44,52,56,46,49,52,54,48,54,55,93,44,91,45,49,49,57,46,48,53,54,57,55,44,52,56,46,49,51,54,57,55,52,93,44,91,45,49,49,56,46,57,56,50,50,51,52,44,52,55,46,57,54,50,48,50,53,93,44,91,45,49,49,56,46,57,55,51,53,48,52,44,52,55,46,57,52,51,52,49,52,93,44,91,45,49,49,56,46,56,53,49,57,54,44,52,55,46,57,53,55,57,48,54,93,44,91,45,49,49,56,46,56,51,54,54,49,52,44,52,57,46,48,48,48,48,56,51,93,44,91,45,49,50,48,46,48,51,55,53,53,52,44,52,56,46,57,57,57,52,52,52,93,44,91,45,49,50,48,46,56,53,49,53,50,56,44,52,57,46,48,48,48,51,48,49,93,44,91,45,49,50,48,46,55,54,56,53,49,53,44,52,56,46,57,53,52,52,57,93,44,91,45,49,50,48,46,55,51,53,52,50,55,44,52,56,46,55,56,54,52,56,55,93,44,91,45,49,50,48,46,55,53,49,57,48,52,44,52,56,46,54,53,55,48,48,50,93,44,91,45,49,50,48,46,55,48,50,48,54,57,44,52,56,46,53,51,49,53,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,83,112,111,107,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,55,56,55,53,44,34,98,101,100,115,34,58,49,56,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,52,51,54,57,57,51,44,52,56,46,48,52,55,50,48,55,93,44,91,45,49,49,55,46,53,51,53,50,54,50,44,52,56,46,48,52,55,55,55,57,93,44,91,45,49,49,55,46,53,51,53,50,54,50,44,52,55,46,55,57,52,52,53,56,93,44,91,45,49,49,55,46,54,57,55,55,55,52,44,52,55,46,56,53,54,50,55,56,93,44,91,45,49,49,55,46,56,50,48,57,52,55,44,52,55,46,56,50,53,55,55,53,93,44,91,45,49,49,55,46,56,50,51,54,50,57,44,52,55,46,50,54,48,50,50,93,44,91,45,49,49,55,46,48,51,57,56,55,56,44,52,55,46,50,53,57,50,55,50,93,44,91,45,49,49,55,46,48,51,57,56,48,56,44,52,55,46,51,54,54,48,51,49,93,44,91,45,49,49,55,46,48,52,50,48,56,57,44,52,55,46,57,55,55,52,53,93,44,91,45,49,49,55,46,48,52,49,56,55,55,44,52,56,46,48,52,53,52,54,54,93,44,91,45,49,49,55,46,52,51,54,57,57,51,44,52,56,46,48,52,55,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,70,111,114,101,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,52,55,54,48,49,44,52,53,46,56,57,53,51,53,53,93,44,91,45,56,57,46,48,52,54,52,57,44,52,53,46,52,54,52,52,51,57,93,44,91,45,56,56,46,57,50,54,48,50,53,44,52,53,46,51,55,56,54,51,55,93,44,91,45,56,56,46,54,55,55,57,57,54,44,52,53,46,51,55,56,54,56,51,93,44,91,45,56,56,46,52,50,56,49,48,50,44,52,53,46,51,55,55,48,49,93,44,91,45,56,56,46,52,50,53,51,48,50,44,52,53,46,55,50,50,52,50,54,93,44,91,45,56,56,46,54,55,53,56,50,49,44,52,53,46,55,50,50,57,93,44,91,45,56,56,46,54,56,51,51,49,50,44,52,54,46,48,49,52,49,49,51,93,44,91,45,56,56,46,57,51,50,55,53,55,44,52,54,46,48,55,51,54,54,56,93,44,91,45,56,56,46,57,51,51,50,50,50,44,52,53,46,57,56,50,50,55,54,93,44,91,45,56,57,46,48,52,55,54,48,49,44,52,53,46,56,57,53,51,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,83,97,119,121,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,55,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,53,49,50,56,50,44,52,54,46,49,53,55,48,52,53,93,44,91,45,57,49,46,53,52,48,50,57,52,44,52,53,46,54,51,55,54,48,53,93,44,91,45,57,48,46,54,55,56,55,52,57,44,52,53,46,54,51,56,50,54,52,93,44,91,45,57,48,46,54,55,54,57,54,56,44,52,53,46,57,56,49,53,53,52,93,44,91,45,57,48,46,57,50,53,49,55,52,44,52,53,46,57,56,49,48,53,53,93,44,91,45,57,48,46,57,50,52,53,56,51,44,52,54,46,49,53,52,54,49,54,93,44,91,45,57,49,46,53,53,49,50,56,50,44,52,54,46,49,53,55,48,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,72,117,100,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,56,54,51,49,44,34,98,101,100,115,34,58,49,56,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,56,52,55,57,52,44,52,48,46,55,57,55,54,56,55,93,44,91,45,55,52,46,49,52,55,53,50,57,44,52,48,46,55,56,54,52,57,49,93,44,91,45,55,52,46,49,51,54,55,48,51,44,52,48,46,54,55,52,52,52,52,93,44,91,45,55,52,46,49,54,49,52,50,56,44,52,48,46,54,52,52,49,52,56,93,44,91,45,55,52,46,48,53,53,55,51,57,44,52,48,46,54,53,49,55,54,93,44,91,45,55,52,46,48,51,52,53,55,51,44,52,48,46,54,56,52,56,54,54,93,44,91,45,55,51,46,57,56,52,55,57,52,44,52,48,46,55,57,55,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,116,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,52,55,53,44,34,98,101,100,115,34,58,49,54,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,57,51,50,52,57,44,52,48,46,57,56,56,53,51,49,93,44,91,45,56,49,46,52,50,48,51,54,51,44,52,48,46,57,48,54,53,48,50,93,44,91,45,56,49,46,54,52,55,55,51,53,44,52,48,46,57,49,52,48,49,54,93,44,91,45,56,49,46,54,53,48,48,52,53,44,52,48,46,54,54,56,49,49,55,93,44,91,45,56,49,46,54,52,57,49,57,57,44,52,48,46,54,51,53,49,48,54,93,44,91,45,56,49,46,51,49,55,55,51,57,44,52,48,46,54,53,49,53,55,57,93,44,91,45,56,49,46,50,51,55,50,50,55,44,52,48,46,55,50,51,53,52,50,93,44,91,45,56,49,46,48,56,55,50,56,57,44,52,48,46,55,50,55,56,49,54,93,44,91,45,56,49,46,48,56,54,54,55,57,44,52,48,46,57,48,49,54,48,57,93,44,91,45,56,49,46,48,56,54,51,49,50,44,52,48,46,57,56,56,48,51,49,93,44,91,45,56,49,46,51,57,51,50,52,57,44,52,48,46,57,56,56,53,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,71,117,97,100,97,108,117,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,49,51,55,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,55,53,50,53,57,44,50,57,46,56,53,56,50,48,56,93,44,91,45,57,55,46,57,57,57,50,55,49,44,50,57,46,55,53,50,52,52,52,93,44,91,45,57,56,46,48,56,57,50,55,55,44,50,57,46,54,56,51,57,51,49,93,44,91,45,57,56,46,51,49,48,57,50,56,44,50,57,46,53,57,52,52,55,51,93,44,91,45,57,56,46,49,51,52,49,55,49,44,50,57,46,52,52,49,55,53,49,93,44,91,45,57,56,46,49,50,50,53,55,52,44,50,57,46,51,55,56,53,52,57,93,44,91,45,57,55,46,56,52,48,51,56,51,44,50,57,46,51,55,54,55,57,49,93,44,91,45,57,55,46,54,51,51,49,55,54,44,50,57,46,54,52,57,56,54,51,93,44,91,45,57,55,46,55,51,53,55,50,44,50,57,46,54,57,49,49,57,56,93,44,91,45,57,55,46,56,55,53,50,53,57,44,50,57,46,56,53,56,50,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,54,51,54,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,56,54,51,48,55,56,44,52,56,46,51,55,48,51,54,49,93,44,91,45,49,50,50,46,56,54,50,54,56,52,44,52,56,46,50,52,51,54,53,56,93,44,91,45,49,50,50,46,54,52,50,50,53,54,44,52,56,46,48,57,51,55,55,93,44,91,45,49,50,50,46,54,48,54,55,54,44,52,55,46,57,55,50,57,53,51,93,44,91,45,49,50,50,46,52,50,57,54,50,53,44,52,55,46,56,50,56,48,57,56,93,44,91,45,49,50,50,46,51,50,56,52,54,51,44,52,55,46,57,54,51,55,54,51,93,44,91,45,49,50,50,46,51,53,48,50,56,57,44,52,56,46,48,56,48,51,49,50,93,44,91,45,49,50,50,46,52,53,56,53,57,54,44,52,56,46,50,57,55,55,48,51,93,44,91,45,49,50,50,46,53,57,49,57,52,52,44,52,56,46,52,49,55,55,53,56,93,44,91,45,49,50,50,46,55,51,53,50,51,49,44,52,56,46,52,48,53,57,51,50,93,44,91,45,49,50,50,46,56,54,51,48,55,56,44,52,56,46,51,55,48,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,49,55,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,50,53,53,55,50,44,51,57,46,52,57,51,50,56,57,93,44,91,45,55,56,46,48,51,51,49,57,49,44,51,57,46,50,54,52,54,49,50,93,44,91,45,55,55,46,56,50,56,50,57,57,44,51,57,46,49,51,50,52,50,54,93,44,91,45,55,55,46,55,49,57,53,49,57,44,51,57,46,51,50,49,51,49,52,93,44,91,45,55,55,46,56,50,53,53,55,50,44,51,57,46,52,57,51,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,80,114,105,110,99,101,32,87,105,108,108,105,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,55,52,57,44,34,98,101,100,115,34,58,50,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,53,53,49,54,57,44,51,56,46,57,52,50,54,53,54,93,44,91,45,55,55,46,55,49,53,55,49,53,44,51,56,46,56,51,50,49,51,54,93,44,91,45,55,55,46,53,51,49,51,50,56,44,51,56,46,53,53,54,53,53,93,44,91,45,55,55,46,52,55,54,56,52,55,44,51,56,46,53,57,50,50,56,54,93,44,91,45,55,55,46,50,57,53,52,48,54,44,51,56,46,53,48,57,50,51,57,93,44,91,45,55,55,46,50,50,55,51,51,54,44,51,56,46,54,48,52,53,55,93,44,91,45,55,55,46,50,50,51,54,56,51,44,51,56,46,54,53,50,48,54,52,93,44,91,45,55,55,46,53,51,53,57,57,49,44,51,56,46,56,52,55,51,54,56,93,44,91,45,55,55,46,54,53,53,49,54,57,44,51,56,46,57,52,50,54,53,54,93,93,44,91,91,45,55,55,46,52,53,56,54,57,53,44,51,56,46,55,55,50,51,49,57,93,44,91,45,55,55,46,52,53,49,54,52,50,44,51,56,46,55,51,56,51,51,55,93,44,91,45,55,55,46,52,57,57,52,51,44,51,56,46,55,51,55,49,51,55,93,44,91,45,55,55,46,52,55,53,55,54,44,51,56,46,55,56,49,49,55,49,93,44,91,45,55,55,46,52,50,48,53,56,49,44,51,56,46,55,54,50,50,56,55,93,44,91,45,55,55,46,52,50,55,51,51,50,44,51,56,46,55,53,51,53,57,56,93,44,91,45,55,55,46,52,53,56,54,57,53,44,51,56,46,55,55,50,51,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,49,53,54,44,34,98,101,100,115,34,58,49,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,54,57,54,55,56,50,44,52,48,46,50,52,49,56,54,51,93,44,91,45,55,53,46,56,55,51,51,55,53,44,52,48,46,49,51,55,49,48,55,93,44,91,45,55,53,46,57,57,52,54,50,57,44,51,57,46,57,53,50,52,50,57,93,44,91,45,55,53,46,57,56,54,56,50,51,44,51,57,46,56,57,50,49,57,50,93,44,91,45,55,54,46,49,51,53,52,56,52,44,51,57,46,55,50,49,49,52,55,93,44,91,45,55,53,46,55,56,56,53,57,54,44,51,57,46,55,50,50,49,57,57,93,44,91,45,55,53,46,53,57,52,56,56,44,51,57,46,56,51,55,53,50,53,93,44,91,45,55,53,46,53,50,51,56,49,54,44,51,57,46,57,52,52,49,50,52,93,44,91,45,55,53,46,51,54,49,48,54,54,44,52,48,46,48,54,53,53,52,51,93,44,91,45,55,53,46,53,55,51,51,51,56,44,52,48,46,49,57,53,51,48,51,93,44,91,45,55,53,46,54,57,54,55,56,50,44,52,48,46,50,52,49,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,52,56,54,44,34,98,101,100,115,34,58,52,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,49,49,50,48,49,44,51,55,46,52,50,52,53,48,57,93,44,91,45,56,49,46,51,54,50,49,53,54,44,51,55,46,51,51,55,54,56,55,93,44,91,45,56,49,46,50,50,53,49,48,52,44,51,55,46,50,51,52,56,55,52,93,44,91,45,56,48,46,57,56,48,49,52,54,44,51,55,46,50,57,50,55,52,51,93,44,91,45,56,48,46,56,52,57,52,53,49,44,51,55,46,51,52,54,57,48,57,93,44,91,45,56,48,46,56,53,57,52,53,55,44,51,55,46,52,50,57,52,57,49,93,44,91,45,56,49,46,48,57,52,54,51,44,51,55,46,53,56,56,54,53,56,93,44,91,45,56,49,46,50,50,50,49,50,49,44,51,55,46,53,49,48,52,49,54,93,44,91,45,56,49,46,51,49,49,50,48,49,44,51,55,46,52,50,52,53,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,82,111,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,56,57,55,44,34,98,101,100,115,34,58,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,49,56,49,50,44,51,54,46,48,52,56,57,55,55,93,44,91,45,56,52,46,52,52,54,48,53,52,44,51,53,46,57,56,53,57,56,52,93,44,91,45,56,52,46,54,56,48,54,51,51,44,51,53,46,57,48,56,52,53,52,93,44,91,45,56,52,46,55,56,49,57,48,49,44,51,53,46,56,50,53,93,44,91,45,56,52,46,55,50,51,56,53,51,44,51,53,46,55,53,50,56,57,54,93,44,91,45,56,52,46,54,49,57,56,54,53,44,51,53,46,54,52,52,54,53,49,93,44,91,45,56,52,46,53,56,52,52,55,50,44,51,53,46,54,52,52,52,50,52,93,44,91,45,56,52,46,53,51,57,57,54,51,44,51,53,46,54,55,48,52,54,53,93,44,91,45,56,52,46,50,54,51,51,56,51,44,51,53,46,56,57,54,57,52,93,44,91,45,56,52,46,50,55,49,53,56,55,44,51,53,46,57,49,48,49,54,53,93,44,91,45,56,52,46,51,52,49,56,49,50,44,51,54,46,48,52,56,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,108,97,108,108,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,52,56,55,44,34,98,101,100,115,34,58,49,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,55,49,53,48,49,54,44,52,55,46,56,55,57,56,53,57,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,56,56,49,48,56,93,44,91,45,49,50,50,46,57,52,57,49,54,55,44,52,55,46,56,54,54,56,50,50,93,44,91,45,49,50,50,46,57,53,50,51,56,54,44,52,56,46,51,52,57,55,48,54,93,44,91,45,49,50,51,46,50,52,55,57,49,57,44,52,56,46,50,56,52,53,53,56,93,44,91,45,49,50,51,46,53,52,49,50,49,54,44,52,56,46,50,50,52,53,53,51,93,44,91,45,49,50,52,46,48,49,50,48,53,54,44,52,56,46,50,57,54,54,55,49,93,44,91,45,49,50,52,46,55,52,57,55,52,44,52,56,46,52,57,57,55,56,51,93,44,91,45,49,50,52,46,56,49,54,57,57,51,44,52,56,46,51,56,53,52,55,53,93,44,91,45,49,50,52,46,55,54,49,51,56,55,44,52,56,46,50,57,53,54,56,56,93,44,91,45,49,50,52,46,56,52,56,53,51,55,44,52,56,46,49,55,52,48,48,53,93,44,91,45,49,50,52,46,55,56,53,49,56,55,44,52,56,46,48,56,55,49,49,53,93,44,91,45,49,50,52,46,55,57,49,49,54,50,44,52,55,46,57,54,49,55,48,53,93,44,91,45,49,50,52,46,55,49,53,48,49,54,44,52,55,46,56,55,57,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,83,116,101,118,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,50,49,52,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,49,57,55,51,55,53,44,52,57,46,48,48,48,48,54,56,93,44,91,45,49,49,56,46,50,49,52,52,56,51,44,52,56,46,56,56,56,49,54,49,93,44,91,45,49,49,56,46,49,48,52,57,54,44,52,56,46,54,53,51,53,48,51,93,44,91,45,49,49,56,46,50,48,54,53,48,55,44,52,56,46,52,55,48,50,57,54,93,44,91,45,49,49,56,46,49,51,57,55,57,49,44,52,56,46,50,54,55,51,48,56,93,44,91,45,49,49,56,46,50,52,56,54,48,54,44,52,56,46,49,51,52,50,53,53,93,44,91,45,49,49,56,46,50,51,51,52,57,56,44,52,56,46,48,54,51,52,56,53,93,44,91,45,49,49,56,46,52,48,48,56,48,55,44,52,56,46,48,50,56,54,56,50,93,44,91,45,49,49,56,46,51,52,48,57,51,56,44,52,55,46,56,57,52,51,49,54,93,44,91,45,49,49,56,46,50,49,50,51,50,51,44,52,55,46,57,52,53,52,57,51,93,44,91,45,49,49,56,46,48,55,56,49,56,50,44,52,55,46,56,48,48,48,54,50,93,44,91,45,49,49,55,46,56,50,48,57,52,55,44,52,55,46,56,50,53,55,55,53,93,44,91,45,49,49,55,46,54,57,55,55,55,52,44,52,55,46,56,53,54,50,55,56,93,44,91,45,49,49,55,46,53,51,53,50,54,50,44,52,55,46,55,57,52,52,53,56,93,44,91,45,49,49,55,46,53,51,53,50,54,50,44,52,56,46,48,52,55,55,55,57,93,44,91,45,49,49,55,46,52,51,54,57,57,51,44,52,56,46,48,52,55,50,48,55,93,44,91,45,49,49,55,46,53,48,50,51,55,49,44,52,56,46,49,51,52,55,48,56,93,44,91,45,49,49,55,46,52,57,57,57,55,53,44,52,56,46,54,53,54,49,56,55,93,44,91,45,49,49,55,46,53,54,51,56,53,56,44,52,56,46,56,51,54,54,55,49,93,44,91,45,49,49,55,46,52,50,57,57,54,56,44,52,57,46,48,48,48,52,54,54,93,44,91,45,49,49,56,46,49,57,55,51,55,53,44,52,57,46,48,48,48,48,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,86,97,110,32,66,117,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,44,91,45,57,50,46,49,55,57,55,56,44,52,48,46,54,48,48,53,50,57,93,44,91,45,57,49,46,57,52,51,49,49,50,44,52,48,46,54,48,53,56,50,55,93,44,91,45,57,49,46,55,49,54,55,54,57,44,52,48,46,53,57,56,53,51,93,44,91,45,57,49,46,55,49,56,55,56,55,44,52,48,46,56,49,51,53,52,52,93,44,91,45,57,49,46,55,49,56,49,56,44,52,48,46,57,48,49,48,56,55,93,44,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,111,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,56,49,55,52,51,44,52,48,46,55,48,48,48,48,51,93,44,91,45,57,57,46,57,56,49,49,57,51,44,52,48,46,52,51,56,50,57,49,93,44,91,45,49,48,48,46,48,57,52,55,57,56,44,52,48,46,51,53,49,50,52,53,93,44,91,45,57,57,46,54,52,50,50,48,57,44,52,48,46,51,53,49,50,93,44,91,45,57,57,46,54,52,51,52,54,50,44,52,48,46,54,56,52,57,49,49,93,44,91,45,57,57,46,57,56,49,55,52,51,44,52,48,46,55,48,48,48,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,56,52,48,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,52,51,51,53,50,44,51,52,46,48,56,57,48,52,52,93,44,91,45,56,56,46,55,49,56,57,54,52,44,51,52,46,48,55,52,53,50,49,93,44,91,45,56,56,46,55,49,57,57,55,57,44,51,51,46,56,49,49,51,51,93,44,91,45,56,56,46,55,49,57,54,50,54,44,51,51,46,54,56,48,50,53,51,93,44,91,45,56,56,46,53,49,51,57,49,55,44,51,51,46,54,53,48,50,48,57,93,44,91,45,56,56,46,50,52,56,57,49,54,44,51,51,46,55,52,52,57,55,55,93,44,91,45,56,56,46,50,48,55,50,50,57,44,51,52,46,48,53,56,51,51,51,93,44,91,45,56,56,46,50,48,51,56,54,52,44,51,52,46,48,56,54,53,54,52,93,44,91,45,56,56,46,53,52,51,51,53,50,44,51,52,46,48,56,57,48,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,69,115,99,97,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,49,53,50,50,44,34,98,101,100,115,34,58,49,54,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,57,56,56,50,57,44,51,48,46,57,57,55,52,53,53,93,44,91,45,56,55,46,54,50,54,50,50,52,44,51,48,46,56,52,54,54,54,52,93,44,91,45,56,55,46,51,57,51,50,57,52,44,51,48,46,54,50,55,50,49,56,93,44,91,45,56,55,46,52,52,53,49,48,51,44,51,48,46,53,50,56,57,48,57,93,44,91,45,56,55,46,51,54,57,51,56,51,44,51,48,46,52,51,49,57,52,56,93,44,91,45,56,55,46,52,57,57,57,56,44,51,48,46,51,50,56,57,53,55,93,44,91,45,56,55,46,53,49,56,51,52,54,44,51,48,46,50,50,57,53,48,54,93,44,91,45,56,55,46,50,57,54,52,53,55,44,51,48,46,50,55,50,54,57,93,44,91,45,56,54,46,57,49,54,54,48,55,44,51,48,46,51,49,56,55,50,52,93,44,91,45,56,54,46,57,50,48,49,49,51,44,51,48,46,51,56,54,53,54,55,93,44,91,45,56,55,46,49,55,56,57,54,56,44,51,48,46,51,51,52,53,57,57,93,44,91,45,56,55,46,49,50,52,57,54,56,44,51,48,46,53,48,48,49,57,54,93,44,91,45,56,55,46,50,54,48,54,55,55,44,51,48,46,54,50,49,51,54,51,93,44,91,45,56,55,46,51,49,50,52,48,57,44,51,48,46,55,51,52,55,55,93,44,91,45,56,55,46,50,56,50,50,57,44,51,48,46,57,50,52,56,50,57,93,44,91,45,56,55,46,49,54,51,54,53,51,44,51,48,46,57,57,57,48,50,57,93,44,91,45,56,55,46,53,57,56,56,50,57,44,51,48,46,57,57,55,52,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,51,57,34,44,34,78,65,77,69,34,58,34,84,97,114,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,57,57,55,55,44,34,98,101,100,115,34,58,54,57,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,51,50,50,56,55,44,51,50,46,57,56,57,51,50,52,93,44,91,45,57,55,46,51,57,56,52,56,44,51,50,46,57,57,48,56,51,57,93,44,91,45,57,55,46,53,52,52,49,56,49,44,51,50,46,57,57,52,49,55,55,93,44,91,45,57,55,46,53,53,48,53,56,50,44,51,50,46,53,53,53,51,57,49,93,44,91,45,57,55,46,48,56,54,56,51,52,44,51,50,46,53,52,57,52,50,56,93,44,91,45,57,55,46,48,51,56,51,56,53,44,51,50,46,53,52,56,54,54,50,93,44,91,45,57,55,46,48,51,50,50,56,55,44,51,50,46,57,56,57,51,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,80,114,105,110,99,101,32,71,101,111,114,103,101,39,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,54,50,48,50,44,34,98,101,100,115,34,58,54,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,48,48,50,52,51,54,44,51,56,46,57,54,53,54,55,51,93,44,91,45,55,54,46,57,48,57,51,57,51,44,51,56,46,56,57,50,56,53,50,93,44,91,45,55,55,46,48,51,57,48,48,54,44,51,56,46,55,57,49,54,52,53,93,44,91,45,55,55,46,48,52,49,51,54,50,44,51,56,46,55,56,53,52,49,53,93,44,91,45,55,55,46,48,56,54,51,57,49,44,51,56,46,55,48,54,50,50,55,93,44,91,45,55,54,46,55,52,55,53,55,44,51,56,46,54,49,55,51,51,53,93,44,91,45,55,54,46,54,55,53,52,53,55,44,51,56,46,53,51,53,56,55,54,93,44,91,45,55,54,46,54,56,54,51,53,56,44,51,56,46,55,52,56,52,55,53,93,44,91,45,55,54,46,54,57,56,50,54,56,44,51,56,46,57,56,51,54,52,55,93,44,91,45,55,54,46,56,52,48,51,54,50,44,51,57,46,49,48,51,49,52,50,93,44,91,45,55,54,46,56,56,56,53,48,53,44,51,57,46,49,51,48,57,54,55,93,44,91,45,55,55,46,48,48,50,52,51,54,44,51,56,46,57,54,53,54,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,55,49,53,57,53,44,51,54,46,56,48,48,48,51,49,93,44,91,45,56,50,46,57,52,55,54,52,55,44,51,54,46,54,55,53,55,53,49,93,44,91,45,56,50,46,57,56,53,49,50,52,44,51,54,46,53,57,51,55,50,57,93,44,91,45,56,50,46,56,51,48,52,51,51,44,51,54,46,53,57,51,55,54,49,93,44,91,45,56,50,46,54,48,57,49,55,54,44,51,54,46,53,57,52,48,57,57,93,44,91,45,56,50,46,50,57,52,49,51,52,44,51,54,46,53,57,53,54,57,55,93,44,91,45,56,50,46,51,51,50,48,55,56,44,51,54,46,55,48,56,57,54,57,93,44,91,45,56,50,46,52,48,54,54,51,51,44,51,54,46,56,55,54,51,53,54,93,44,91,45,56,50,46,54,49,55,55,52,44,51,54,46,56,56,48,55,55,51,93,44,91,45,56,50,46,55,55,49,53,57,53,44,51,54,46,56,48,48,48,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,50,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,53,56,52,54,54,44,50,57,46,50,54,51,56,55,54,93,44,91,45,57,54,46,57,51,56,53,56,55,44,50,57,46,48,54,51,50,52,52,93,44,91,45,57,54,46,56,51,56,55,57,53,44,50,57,46,48,50,53,51,50,55,93,44,91,45,57,54,46,55,57,50,49,51,51,44,50,56,46,57,49,56,56,48,51,93,44,91,45,57,54,46,54,52,51,52,52,50,44,50,56,46,55,49,50,49,48,53,93,44,91,45,57,54,46,51,50,51,53,50,50,44,50,56,46,54,55,53,53,57,55,93,44,91,45,57,54,46,51,48,57,49,55,56,44,50,56,46,57,54,51,50,57,49,93,44,91,45,57,54,46,54,52,48,51,49,53,44,50,57,46,50,52,55,56,48,52,93,44,91,45,57,54,46,54,53,56,52,54,54,44,50,57,46,50,54,51,56,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,111,118,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,51,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,56,52,49,54,51,44,51,51,46,57,49,53,53,49,93,44,91,45,57,55,46,51,55,52,54,57,44,51,51,46,56,49,56,53,53,50,93,44,91,45,57,55,46,50,53,53,54,51,57,44,51,51,46,56,54,51,55,48,50,93,44,91,45,57,55,46,49,53,52,51,54,55,44,51,51,46,55,50,52,48,57,52,93,44,91,45,57,55,46,48,57,53,54,52,52,44,51,51,46,55,50,57,50,50,50,93,44,91,45,57,54,46,57,52,52,54,49,49,44,51,51,46,57,52,57,50,49,55,93,44,91,45,57,54,46,57,51,52,56,52,44,51,51,46,57,53,52,52,53,51,93,44,91,45,57,54,46,57,54,57,54,50,55,44,51,52,46,48,55,49,48,50,93,44,91,45,57,55,46,53,54,48,55,54,49,44,51,52,46,48,55,49,49,53,93,44,91,45,57,55,46,53,54,48,56,53,56,44,51,51,46,56,57,57,54,52,53,93,44,91,45,57,55,46,52,56,52,49,54,51,44,51,51,46,57,49,53,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,57,34,44,34,78,65,77,69,34,58,34,84,119,105,103,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,49,51,53,49,49,44,51,50,46,56,52,52,56,54,56,93,44,91,45,56,51,46,53,57,55,54,53,54,44,51,50,46,54,54,52,51,51,56,93,44,91,45,56,51,46,52,57,55,57,50,51,44,51,50,46,52,53,50,49,57,56,93,44,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,44,91,45,56,51,46,52,48,54,57,57,44,51,50,46,56,57,56,50,50,93,44,91,45,56,51,46,53,49,51,53,49,49,44,51,50,46,56,52,52,56,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,97,104,111,110,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,48,54,52,44,34,98,101,100,115,34,58,49,48,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,48,50,50,57,44,52,49,46,49,51,52,49,56,57,93,44,91,45,56,49,46,48,48,49,54,57,53,44,52,48,46,57,56,55,55,56,51,93,44,91,45,56,49,46,48,56,54,51,49,50,44,52,48,46,57,56,56,48,51,49,93,44,91,45,56,49,46,48,56,54,54,55,57,44,52,48,46,57,48,49,54,48,57,93,44,91,45,56,48,46,53,49,57,49,53,44,52,48,46,57,48,48,51,50,54,93,44,91,45,56,48,46,53,49,57,48,51,55,44,52,49,46,49,50,53,48,57,51,93,44,91,45,56,48,46,53,49,57,48,52,56,44,52,49,46,49,51,51,51,57,52,93,44,91,45,56,49,46,48,48,50,50,57,44,52,49,46,49,51,52,49,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,53,52,44,34,98,101,100,115,34,58,49,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,56,54,49,52,56,44,51,50,46,52,57,51,48,53,51,93,44,91,45,56,54,46,48,50,51,48,49,50,44,51,50,46,52,49,57,57,55,56,93,44,91,45,56,53,46,57,49,57,50,57,51,44,51,50,46,50,55,52,51,56,50,93,44,91,45,56,53,46,56,53,54,50,49,56,44,51,50,46,50,51,49,57,55,53,93,44,91,45,56,53,46,52,51,51,53,52,51,44,51,50,46,50,51,52,54,52,56,93,44,91,45,56,53,46,52,51,52,48,52,53,44,51,50,46,52,48,57,56,52,93,44,91,45,56,53,46,52,56,57,51,52,56,44,51,50,46,52,57,54,57,51,55,93,44,91,45,56,53,46,54,57,53,56,53,52,44,51,50,46,53,57,53,57,51,51,93,44,91,45,56,53,46,55,57,56,53,56,53,44,51,50,46,53,56,49,48,56,57,93,44,91,45,56,53,46,56,56,54,49,52,56,44,51,50,46,52,57,51,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,56,55,44,34,98,101,100,115,34,58,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,57,56,52,53,57,44,51,56,46,54,48,54,48,54,50,93,44,91,45,56,56,46,54,57,56,57,54,49,44,51,56,46,52,55,52,57,49,52,93,44,91,45,56,56,46,55,48,50,51,57,49,44,51,56,46,50,53,54,54,54,49,93,44,91,45,56,56,46,51,55,48,51,55,53,44,51,56,46,50,53,53,51,49,57,93,44,91,45,56,56,46,49,53,48,56,57,49,44,51,56,46,50,53,54,49,53,54,93,44,91,45,56,56,46,49,52,55,56,48,51,44,51,56,46,53,54,57,48,51,55,93,44,91,45,56,56,46,50,53,51,57,55,56,44,51,56,46,53,57,57,53,48,50,93,44,91,45,56,56,46,54,57,56,52,53,57,44,51,56,46,54,48,54,48,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,51,55,34,44,34,78,65,77,69,34,58,34,83,119,105,115,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,56,52,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,57,57,56,52,57,51,44,51,52,46,55,52,56,49,57,93,44,91,45,49,48,49,46,57,57,56,48,50,44,51,52,46,51,49,51,48,51,57,93,44,91,45,49,48,49,46,53,54,52,56,53,54,44,51,52,46,51,49,50,52,57,51,93,44,91,45,49,48,49,46,52,55,49,53,56,44,51,52,46,51,49,50,50,57,93,44,91,45,49,48,49,46,52,55,49,53,54,50,44,51,52,46,55,52,55,52,54,50,93,44,91,45,49,48,49,46,54,50,57,50,53,55,44,51,52,46,55,52,55,54,52,57,93,44,91,45,49,48,49,46,57,57,56,52,57,51,44,51,52,46,55,52,56,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,79,115,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,48,56,57,56,51,44,51,56,46,53,55,48,57,93,44,91,45,57,50,46,48,48,56,55,44,51,56,46,53,48,48,48,51,56,93,44,91,45,57,50,46,49,52,57,50,57,49,44,51,56,46,52,51,49,49,53,50,93,44,91,45,57,50,46,49,57,52,52,55,54,44,51,56,46,51,51,53,53,51,54,93,44,91,45,57,50,46,49,57,53,54,55,53,44,51,56,46,50,57,50,50,51,55,93,44,91,45,57,49,46,54,52,52,55,50,57,44,51,56,46,50,56,56,53,49,93,44,91,45,57,49,46,54,52,48,51,55,50,44,51,56,46,55,48,51,55,57,50,93,44,91,45,57,49,46,54,52,55,49,55,49,44,51,56,46,55,48,51,51,57,54,93,44,91,45,57,49,46,56,54,57,52,56,57,44,51,56,46,54,54,51,57,52,93,44,91,45,57,50,46,48,48,56,57,56,51,44,51,56,46,53,55,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,75,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,48,56,51,57,44,34,98,101,100,115,34,58,49,52,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,56,56,54,53,55,44,52,50,46,49,53,51,53,57,93,44,91,45,56,56,46,54,48,49,57,51,51,44,52,49,46,55,49,57,53,54,51,93,44,91,45,56,56,46,50,54,49,57,53,50,44,52,49,46,55,50,52,54,53,50,93,44,91,45,56,56,46,50,54,50,56,55,53,44,52,49,46,57,56,54,51,55,56,93,44,91,45,56,56,46,50,51,56,52,52,57,44,52,50,46,49,53,52,50,52,57,93,44,91,45,56,56,46,53,56,56,54,53,55,44,52,50,46,49,53,51,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,69,108,32,68,111,114,97,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,54,54,49,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,49,52,49,53,57,53,44,51,56,46,55,49,49,57,51,57,93,44,91,45,49,50,49,46,48,50,55,53,48,55,44,51,56,46,53,48,56,50,57,50,93,44,91,45,49,50,48,46,56,50,51,50,56,51,44,51,56,46,53,53,57,54,56,55,93,44,91,45,49,50,48,46,54,50,56,52,50,56,44,51,56,46,53,48,51,50,48,52,93,44,91,45,49,50,48,46,50,55,52,53,50,50,44,51,56,46,53,53,57,52,53,50,93,44,91,45,49,50,48,46,48,55,50,51,57,50,44,51,56,46,55,48,50,55,54,55,93,44,91,45,49,49,57,46,56,55,55,55,53,44,51,56,46,56,54,56,51,49,49,93,44,91,45,49,49,57,46,57,48,52,51,49,53,44,51,56,46,57,51,51,51,50,52,93,44,91,45,49,50,48,46,48,48,50,52,54,49,44,51,57,46,48,54,55,52,56,57,93,44,91,45,49,50,48,46,49,56,52,48,57,56,44,51,57,46,48,51,49,48,49,52,93,44,91,45,49,50,48,46,52,51,53,50,52,44,51,57,46,48,50,56,51,57,55,93,44,91,45,49,50,48,46,53,55,50,51,53,50,44,51,56,46,57,49,52,52,93,44,91,45,49,50,48,46,55,51,48,49,55,52,44,51,57,46,48,48,51,57,53,56,93,44,91,45,49,50,48,46,57,51,52,54,53,51,44,51,56,46,57,54,51,55,57,49,93,44,91,45,49,50,49,46,48,53,50,57,49,49,44,51,56,46,57,48,48,49,52,52,93,44,91,45,49,50,49,46,49,52,49,53,57,53,44,51,56,46,55,49,49,57,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,75,101,114,115,104,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,51,54,49,44,34,98,101,100,115,34,58,49,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,55,57,50,50,55,44,51,52,46,52,53,55,55,55,54,93,44,91,45,56,48,46,55,54,57,57,50,54,44,51,52,46,51,55,55,49,49,49,93,44,91,45,56,48,46,56,50,53,57,50,49,44,51,52,46,50,54,56,55,54,93,44,91,45,56,48,46,56,54,57,53,50,52,44,51,52,46,49,56,50,50,55,49,93,44,91,45,56,48,46,55,49,57,51,49,56,44,51,52,46,48,54,56,57,55,50,93,44,91,45,56,48,46,54,49,54,49,56,54,44,51,52,46,48,57,57,54,48,53,93,44,91,45,56,48,46,52,55,57,56,53,55,44,51,52,46,49,54,56,54,57,54,93,44,91,45,56,48,46,52,50,48,52,56,52,44,51,52,46,50,57,51,48,55,52,93,44,91,45,56,48,46,50,56,56,54,57,50,44,51,52,46,51,54,52,49,51,57,93,44,91,45,56,48,46,50,56,56,53,57,54,44,51,52,46,51,54,54,50,48,55,93,44,91,45,56,48,46,51,50,55,53,57,44,51,52,46,52,57,55,55,54,93,44,91,45,56,48,46,52,48,56,51,55,51,44,51,52,46,54,49,52,55,54,53,93,44,91,45,56,48,46,53,53,48,53,53,50,44,51,52,46,53,54,48,49,49,54,93,44,91,45,56,48,46,54,53,56,52,49,55,44,51,52,46,52,55,56,54,49,50,93,44,91,45,56,48,46,55,52,51,51,52,53,44,51,52,46,53,51,57,57,49,54,93,44,91,45,56,48,46,56,55,57,50,50,55,44,51,52,46,52,53,55,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,97,116,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,49,53,57,55,55,44,51,54,46,53,52,51,56,56,52,93,44,91,45,55,54,46,57,51,51,52,55,44,51,54,46,52,48,49,56,55,93,44,91,45,55,54,46,55,55,57,52,54,55,44,51,54,46,51,54,50,52,54,57,93,44,91,45,55,54,46,54,57,54,53,55,49,44,51,54,46,50,57,54,49,51,56,93,44,91,45,55,54,46,53,53,57,54,52,54,44,51,54,46,51,53,49,48,53,54,93,44,91,45,55,54,46,52,53,51,55,49,49,44,51,54,46,51,55,56,48,57,50,93,44,91,45,55,54,46,52,57,49,51,51,54,44,51,54,46,53,49,48,54,55,55,93,44,91,45,55,54,46,53,52,49,57,54,54,44,51,54,46,53,53,48,54,53,51,93,44,91,45,55,54,46,57,49,53,56,57,57,44,51,54,46,53,53,50,49,52,57,93,44,91,45,55,54,46,57,49,53,57,55,55,44,51,54,46,53,52,51,56,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,79,116,101,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,48,49,55,54,52,44,51,56,46,50,54,53,48,49,54,93,44,91,45,49,48,51,46,53,48,57,51,54,52,44,51,56,46,49,55,50,53,49,52,93,44,91,45,49,48,51,46,54,49,57,49,55,50,44,51,56,46,49,49,51,51,53,53,93,44,91,45,49,48,51,46,56,51,53,54,49,54,44,51,56,46,49,49,51,51,52,93,44,91,45,49,48,52,46,48,53,56,50,52,50,44,51,56,46,49,52,54,52,57,50,93,44,91,45,49,48,52,46,48,54,49,49,51,50,44,51,55,46,55,51,52,55,48,52,93,44,91,45,49,48,52,46,48,53,56,49,57,54,44,51,55,46,54,52,52,48,52,57,93,44,91,45,49,48,51,46,52,48,52,51,51,57,44,51,55,46,54,52,51,53,55,54,93,44,91,45,49,48,51,46,51,57,57,57,51,56,44,51,56,46,50,54,53,52,51,53,93,44,91,45,49,48,51,46,53,48,49,55,54,52,44,51,56,46,50,54,53,48,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,51,50,51,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,50,57,48,50,51,54,44,52,51,46,54,49,48,57,53,57,93,44,91,45,49,50,51,46,56,55,53,54,57,56,44,52,51,46,54,48,56,52,48,55,93,44,91,45,49,50,51,46,56,55,53,54,50,56,44,52,51,46,53,49,53,57,52,55,93,44,91,45,49,50,51,46,55,54,49,53,50,56,44,52,51,46,52,50,50,50,57,52,93,44,91,45,49,50,51,46,55,48,52,55,53,50,44,52,51,46,50,53,55,55,52,49,93,44,91,45,49,50,51,46,55,48,50,49,52,52,44,52,51,46,48,56,55,48,56,51,93,44,91,45,49,50,51,46,56,50,49,49,49,56,44,52,50,46,57,57,54,50,57,49,93,44,91,45,49,50,51,46,56,49,49,53,53,51,44,52,50,46,55,56,56,56,51,55,93,44,91,45,49,50,51,46,55,49,54,52,57,50,44,52,50,46,55,56,52,48,54,49,93,44,91,45,49,50,51,46,52,52,53,52,53,54,44,52,50,46,55,48,51,48,50,53,93,44,91,45,49,50,51,46,50,50,57,54,49,57,44,52,50,46,55,48,50,54,49,93,44,91,45,49,50,51,46,49,53,50,50,51,51,44,52,50,46,55,53,53,56,51,53,93,44,91,45,49,50,50,46,55,57,52,55,55,54,44,52,50,46,55,55,56,50,50,49,93,44,91,45,49,50,50,46,53,54,48,50,55,51,44,52,50,46,57,51,57,49,56,53,93,44,91,45,49,50,50,46,52,48,49,48,50,53,44,52,50,46,57,57,54,54,51,50,93,44,91,45,49,50,50,46,50,56,50,55,51,44,52,50,46,57,57,54,52,57,57,93,44,91,45,49,50,50,46,50,56,50,53,56,53,44,52,51,46,48,54,55,55,49,57,93,44,91,45,49,50,50,46,48,57,51,55,55,54,44,52,51,46,48,55,54,50,53,55,93,44,91,45,49,50,49,46,57,56,48,53,53,52,44,52,51,46,50,54,53,49,56,93,44,91,45,49,50,50,46,48,50,50,54,54,50,44,52,51,46,51,54,50,51,48,52,93,44,91,45,49,50,50,46,49,51,50,48,51,52,44,52,51,46,52,52,48,50,50,49,93,44,91,45,49,50,50,46,55,52,49,55,49,54,44,52,51,46,52,51,55,51,57,53,93,44,91,45,49,50,50,46,55,52,49,56,52,53,44,52,51,46,53,52,52,54,53,52,93,44,91,45,49,50,51,46,49,48,55,54,56,54,44,52,51,46,53,52,48,48,49,93,44,91,45,49,50,51,46,49,51,55,51,49,57,44,52,51,46,55,55,57,54,55,93,44,91,45,49,50,51,46,51,52,56,50,52,54,44,52,51,46,55,56,48,49,55,93,44,91,45,49,50,51,46,53,50,57,49,53,51,44,52,51,46,56,51,48,48,54,49,93,44,91,45,49,50,51,46,54,49,57,48,49,50,44,52,51,46,57,50,49,49,49,55,93,44,91,45,49,50,51,46,56,50,55,48,48,52,44,52,51,46,57,52,52,56,51,55,93,44,91,45,49,50,51,46,57,52,54,50,57,49,44,52,51,46,56,54,50,54,56,50,93,44,91,45,49,50,52,46,50,51,48,49,55,56,44,52,51,46,56,54,51,55,50,51,93,44,91,45,49,50,52,46,50,57,48,50,51,54,44,52,51,46,54,49,48,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,53,56,54,44,34,98,101,100,115,34,58,51,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,53,48,53,54,48,55,44,52,49,46,50,51,50,53,51,57,93,44,91,45,55,53,46,54,48,48,55,51,54,44,52,49,46,49,54,49,52,57,55,93,44,91,45,55,53,46,54,52,57,54,51,55,44,52,49,46,49,50,50,51,52,52,93,44,91,45,55,53,46,52,57,53,57,57,44,52,48,46,57,56,55,49,56,49,93,44,91,45,55,53,46,53,55,52,53,57,44,52,48,46,57,53,49,51,50,51,93,44,91,45,55,53,46,52,55,52,49,57,51,44,52,48,46,56,49,52,55,52,54,93,44,91,45,55,53,46,51,48,48,53,57,52,44,52,48,46,56,53,57,53,54,51,93,44,91,45,55,53,46,49,50,48,50,51,50,44,52,48,46,57,54,56,55,48,50,93,44,91,45,55,52,46,57,54,54,57,48,54,44,52,49,46,48,57,52,52,49,93,44,91,45,55,52,46,57,57,49,55,49,56,44,52,49,46,48,57,50,50,56,52,93,44,91,45,55,53,46,49,53,54,53,48,55,44,52,49,46,49,53,48,51,52,49,93,44,91,45,55,53,46,49,50,57,55,50,49,44,52,49,46,50,53,50,49,48,49,93,44,91,45,55,53,46,51,53,57,49,56,52,44,52,49,46,50,51,57,50,48,54,93,44,91,45,55,53,46,53,48,53,54,48,55,44,52,49,46,50,51,50,53,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,55,57,53,50,56,44,51,54,46,49,50,53,48,55,50,93,44,91,45,57,51,46,52,53,48,55,49,53,44,51,53,46,57,54,55,52,57,51,93,44,91,45,57,51,46,53,50,51,54,51,57,44,51,53,46,56,56,49,53,57,50,93,44,91,45,57,51,46,53,49,57,50,48,52,44,51,53,46,55,54,51,53,50,49,93,44,91,45,57,51,46,53,49,57,53,55,53,44,51,53,46,55,51,52,52,50,50,93,44,91,45,57,51,46,49,54,52,52,53,50,44,51,53,46,55,50,56,56,51,49,93,44,91,45,57,50,46,57,53,49,51,49,53,44,51,53,46,55,50,52,54,54,51,93,44,91,45,57,50,46,57,52,52,54,54,54,44,51,54,46,49,49,53,49,50,51,93,44,91,45,57,51,46,51,48,48,56,50,44,51,54,46,49,50,49,53,53,93,44,91,45,57,51,46,52,55,57,53,50,56,44,51,54,46,49,50,53,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,118,97,108,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,50,52,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,57,57,56,48,50,44,52,57,46,48,48,48,48,48,54,93,44,91,45,57,56,46,57,57,57,56,57,44,52,56,46,55,49,56,49,50,57,93,44,91,45,57,56,46,57,55,48,51,57,50,44,52,56,46,53,52,52,50,51,50,93,44,91,45,57,56,46,51,49,56,48,51,54,44,52,56,46,53,52,51,55,55,51,93,44,91,45,57,55,46,57,50,55,48,54,57,44,52,56,46,53,52,51,49,50,52,93,44,91,45,57,55,46,57,53,48,48,49,50,44,52,57,46,48,48,48,52,57,50,93,44,91,45,57,56,46,57,57,57,56,48,50,44,52,57,46,48,48,48,48,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,78,111,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,49,49,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,54,49,54,48,51,44,51,54,46,53,57,51,54,51,55,93,44,91,45,57,55,46,52,54,48,55,57,50,44,51,54,46,49,54,52,52,54,50,93,44,91,45,57,55,46,51,53,52,49,51,50,44,51,54,46,49,53,57,48,55,50,93,44,91,45,57,55,46,49,52,48,54,54,56,44,51,54,46,49,53,57,50,51,49,93,44,91,45,57,55,46,49,52,48,57,54,56,44,51,54,46,50,52,54,52,51,53,93,44,91,45,57,54,46,57,50,53,48,54,57,44,51,54,46,50,52,54,52,55,52,93,44,91,45,57,55,46,48,51,50,49,48,54,44,51,54,46,51,51,51,51,53,52,93,44,91,45,57,55,46,48,48,57,55,56,53,44,51,54,46,53,48,54,57,51,53,93,44,91,45,57,55,46,48,53,55,53,53,54,44,51,54,46,53,57,51,56,55,50,93,44,91,45,57,55,46,52,54,49,54,48,51,44,51,54,46,53,57,51,54,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,71,111,118,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,49,57,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,56,49,49,56,53,56,44,51,57,46,49,51,51,51,54,93,44,91,45,49,48,48,46,56,49,56,54,57,56,44,51,56,46,54,57,57,56,54,49,93,44,91,45,49,48,48,46,54,56,56,48,48,54,44,51,56,46,55,48,48,48,50,49,93,44,91,45,49,48,48,46,50,52,55,50,44,51,56,46,54,57,56,49,54,53,93,44,91,45,49,48,48,46,49,53,51,56,50,51,44,51,56,46,54,57,55,51,52,49,93,44,91,45,49,48,48,46,49,52,55,57,52,44,51,57,46,49,51,50,49,55,57,93,44,91,45,49,48,48,46,49,54,52,50,44,51,57,46,49,51,50,48,55,49,93,44,91,45,49,48,48,46,55,50,49,50,57,54,44,51,57,46,49,51,51,51,56,49,93,44,91,45,49,48,48,46,56,49,49,56,53,56,44,51,57,46,49,51,51,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,80,111,105,110,116,101,32,67,111,117,112,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,53,56,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,51,48,56,55,44,51,48,46,54,53,56,54,55,55,93,44,91,45,57,49,46,51,56,48,54,50,44,51,48,46,55,53,56,56,48,52,93,44,91,45,57,49,46,53,53,51,48,49,57,44,51,48,46,55,51,48,55,57,56,93,44,91,45,57,49,46,53,49,53,54,50,54,44,51,48,46,56,54,49,51,55,56,93,44,91,45,57,49,46,54,54,49,51,55,50,44,51,48,46,56,53,55,48,57,57,93,44,91,45,57,49,46,54,54,50,53,48,54,44,51,48,46,57,55,48,51,54,50,93,44,91,45,57,49,46,54,53,56,51,50,49,44,51,48,46,57,57,52,51,54,53,93,44,91,45,57,49,46,55,53,48,49,49,57,44,51,49,46,48,49,56,56,49,52,93,44,91,45,57,49,46,56,48,53,57,54,51,44,51,48,46,57,55,50,53,53,56,93,44,91,45,57,49,46,56,49,53,50,53,56,44,51,48,46,56,52,56,49,48,55,93,44,91,45,57,49,46,55,51,51,54,55,51,44,51,48,46,55,48,49,55,51,93,44,91,45,57,49,46,55,53,54,49,57,51,44,51,48,46,52,57,55,55,51,56,93,44,91,45,57,49,46,55,48,48,57,51,51,44,51,48,46,52,57,55,52,51,51,93,44,91,45,57,49,46,52,56,53,48,56,57,44,51,48,46,52,57,55,49,51,56,93,44,91,45,57,49,46,52,49,52,55,54,44,51,48,46,53,49,49,53,49,54,93,44,91,45,57,49,46,51,51,48,56,55,44,51,48,46,54,53,56,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,71,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,49,54,48,53,53,44,52,48,46,51,52,57,55,50,55,93,44,91,45,57,54,46,57,49,54,52,48,55,44,52,48,46,48,48,49,53,49,49,93,44,91,45,57,54,46,56,48,53,55,54,56,44,52,48,46,48,48,49,52,57,53,93,44,91,45,57,54,46,52,54,51,55,49,50,44,52,48,46,48,48,49,48,50,51,93,44,91,45,57,54,46,52,54,51,54,54,55,44,52,48,46,50,54,50,49,55,51,93,44,91,45,57,54,46,52,54,51,54,51,50,44,52,48,46,53,50,51,48,49,51,93,44,91,45,57,54,46,57,49,50,54,51,55,44,52,48,46,53,50,51,54,50,53,93,44,91,45,57,54,46,57,49,54,48,53,53,44,52,48,46,51,52,57,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,108,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,51,48,54,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,50,53,54,50,50,44,51,51,46,57,52,48,49,52,55,93,44,91,45,56,54,46,52,48,53,57,56,49,44,51,51,46,56,51,53,56,57,54,93,44,91,45,56,54,46,53,55,55,55,57,57,44,51,51,46,55,54,53,51,49,54,93,44,91,45,56,54,46,53,50,53,48,55,51,44,51,51,46,55,50,49,50,51,54,93,44,91,45,56,54,46,53,49,54,55,56,51,44,51,51,46,53,52,53,56,57,54,93,44,91,45,56,54,46,51,55,56,50,50,50,44,51,51,46,53,48,50,52,49,49,93,44,91,45,56,54,46,51,55,56,54,54,53,44,51,51,46,51,57,48,57,56,51,93,44,91,45,56,54,46,49,56,57,56,49,50,44,51,51,46,53,52,55,50,51,56,93,44,91,45,56,54,46,49,52,53,53,54,50,44,51,51,46,54,55,57,48,57,56,93,44,91,45,56,54,46,48,52,51,57,57,51,44,51,51,46,55,54,51,53,57,53,93,44,91,45,56,54,46,48,54,53,50,55,50,44,51,51,46,56,52,50,49,57,56,93,44,91,45,56,54,46,50,49,53,53,50,53,44,51,51,46,57,56,55,52,50,49,93,44,91,45,56,54,46,51,50,53,54,50,50,44,51,51,46,57,52,48,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,49,53,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,56,52,49,50,51,44,51,50,46,53,56,54,56,57,49,93,44,91,45,56,57,46,55,51,48,48,54,51,44,51,50,46,51,53,50,55,51,51,93,44,91,45,56,57,46,55,51,48,52,50,52,44,51,50,46,50,50,50,48,51,57,93,44,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,44,91,45,56,57,46,51,50,50,53,57,56,44,51,50,46,53,55,54,52,51,51,93,44,91,45,56,57,46,55,51,48,49,53,50,44,51,50,46,53,55,55,50,52,56,93,44,91,45,56,57,46,55,51,48,51,48,52,44,51,50,46,54,51,52,50,50,56,93,44,91,45,56,57,46,55,56,52,49,50,51,44,51,50,46,53,56,54,56,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,68,111,117,103,104,101,114,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,48,52,57,44,34,98,101,100,115,34,58,54,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,49,56,52,48,52,44,51,49,46,54,53,48,50,55,52,93,44,91,45,56,52,46,48,52,51,50,49,51,44,51,49,46,54,50,51,53,55,51,93,44,91,45,56,52,46,50,57,55,56,48,49,44,51,49,46,54,50,49,57,53,49,93,44,91,45,56,52,46,52,53,48,51,57,56,44,51,49,46,54,50,49,56,54,56,93,44,91,45,56,52,46,52,50,57,56,55,54,44,51,49,46,52,51,54,54,54,49,93,44,91,45,56,52,46,49,52,49,49,50,52,44,51,49,46,52,52,48,49,55,57,93,44,91,45,56,51,46,57,57,55,55,57,54,44,51,49,46,52,52,51,55,53,51,93,44,91,45,56,52,46,48,49,56,52,48,52,44,51,49,46,54,53,48,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,55,49,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,53,53,48,52,53,44,51,56,46,52,50,50,54,56,53,93,44,91,45,56,54,46,50,55,54,57,53,54,44,51,56,46,50,50,55,49,50,54,93,44,91,45,56,54,46,51,50,57,54,44,51,56,46,49,56,49,56,48,53,93,44,91,45,56,54,46,50,54,55,55,54,57,44,51,56,46,48,53,55,49,55,49,93,44,91,45,56,54,46,49,55,56,57,51,44,51,56,46,48,49,48,56,49,93,44,91,45,56,53,46,57,57,56,57,53,50,44,51,55,46,57,57,57,54,53,52,93,44,91,45,56,53,46,57,52,55,49,49,52,44,51,56,46,48,48,53,48,56,53,93,44,91,45,56,53,46,56,57,57,55,54,44,51,56,46,49,56,48,52,52,52,93,44,91,45,56,54,46,48,51,50,53,53,57,44,51,56,46,51,51,48,54,54,93,44,91,45,56,54,46,48,51,50,56,49,55,44,51,56,46,52,49,55,56,57,56,93,44,91,45,56,54,46,50,53,53,48,52,53,44,51,56,46,52,50,50,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,111,110,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,55,49,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,51,50,52,52,49,44,52,56,46,56,52,54,54,54,54,93,44,91,45,49,49,55,46,48,52,49,56,55,55,44,52,56,46,48,52,53,52,54,54,93,44,91,45,49,49,55,46,48,52,50,48,56,57,44,52,55,46,57,55,55,52,53,93,44,91,45,49,49,54,46,53,48,52,51,50,57,44,52,55,46,57,57,49,51,56,54,93,44,91,45,49,49,54,46,53,48,53,49,48,52,44,52,55,46,56,57,48,49,52,50,93,44,91,45,49,49,54,46,51,50,57,53,51,56,44,52,55,46,56,57,48,51,57,51,93,44,91,45,49,49,54,46,51,50,57,54,48,49,44,52,56,46,48,49,55,55,50,50,93,44,91,45,49,49,54,46,50,51,51,49,49,51,44,52,56,46,48,54,56,56,57,93,44,91,45,49,49,54,46,48,52,57,49,48,56,44,52,55,46,57,55,55,51,51,52,93,44,91,45,49,49,54,46,48,52,56,54,54,57,44,52,56,46,50,49,54,49,50,56,93,44,91,45,49,49,54,46,48,52,57,48,53,56,44,52,56,46,53,48,50,48,54,50,93,44,91,45,49,49,54,46,55,56,52,56,55,56,44,52,56,46,53,48,48,52,55,50,93,44,91,45,49,49,54,46,55,56,53,49,55,52,44,52,56,46,56,52,55,52,48,50,93,44,91,45,49,49,55,46,48,51,50,52,52,49,44,52,56,46,56,52,54,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,97,116,111,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,50,57,57,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,54,53,48,53,53,44,51,52,46,57,56,53,48,55,53,93,44,91,45,56,53,46,50,54,52,55,54,50,44,51,52,46,56,53,52,50,55,55,93,44,91,45,56,53,46,49,52,52,55,56,57,44,51,52,46,55,54,55,54,51,57,93,44,91,45,56,53,46,48,54,49,54,52,56,44,51,52,46,56,49,57,52,55,56,93,44,91,45,56,52,46,57,55,57,56,54,44,51,52,46,57,56,55,54,52,55,93,44,91,45,56,53,46,50,54,53,48,53,53,44,51,52,46,57,56,53,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,76,97,83,97,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,49,50,54,50,51,44,51,49,46,57,50,55,51,56,50,93,44,91,45,57,50,46,51,54,50,54,48,56,44,51,49,46,55,57,54,54,51,51,93,44,91,45,57,50,46,51,55,50,52,55,54,44,51,49,46,55,48,49,53,49,57,93,44,91,45,57,50,46,50,56,50,48,56,49,44,51,49,46,53,48,51,52,56,54,93,44,91,45,57,50,46,49,57,54,49,51,49,44,51,49,46,52,55,55,56,55,55,93,44,91,45,57,50,46,48,56,54,55,49,56,44,51,49,46,51,51,53,51,55,52,93,44,91,45,57,50,46,48,48,56,49,50,49,44,51,49,46,51,50,53,55,57,55,93,44,91,45,57,50,46,48,48,53,52,51,52,44,51,49,46,57,50,55,50,57,54,93,44,91,45,57,50,46,51,49,50,54,50,51,44,51,49,46,57,50,55,51,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,87,97,108,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,57,46,52,55,49,55,49,50,44,52,52,46,54,57,50,56,57,57,93,44,91,45,54,57,46,51,57,51,49,50,51,44,52,52,46,54,52,48,51,55,53,93,44,91,45,54,57,46,53,48,54,51,56,50,44,52,52,46,51,52,50,56,55,93,44,91,45,54,57,46,52,48,57,54,51,53,44,52,52,46,51,50,55,57,57,56,93,44,91,45,54,57,46,50,54,56,56,56,50,44,52,52,46,51,54,52,54,53,51,93,44,91,45,54,56,46,57,57,57,52,53,53,44,52,52,46,50,48,50,55,50,49,93,44,91,45,54,56,46,56,57,54,51,56,52,44,52,52,46,50,48,57,57,51,53,93,44,91,45,54,56,46,56,48,52,54,49,53,44,52,52,46,52,53,56,52,49,49,93,44,91,45,54,56,46,56,49,53,55,57,51,44,52,52,46,54,56,51,55,53,52,93,44,91,45,54,57,46,49,56,51,55,51,50,44,52,52,46,54,52,52,48,50,51,93,44,91,45,54,57,46,50,54,54,55,56,53,44,52,52,46,55,50,49,57,50,56,93,44,91,45,54,57,46,52,55,49,55,49,50,44,52,52,46,54,57,50,56,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,51,50,55,44,34,98,101,100,115,34,58,50,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,54,56,56,48,49,44,51,57,46,51,53,51,53,48,50,93,44,91,45,55,54,46,57,52,56,53,55,57,44,51,57,46,49,50,57,53,57,55,93,44,91,45,55,54,46,56,56,56,53,48,53,44,51,57,46,49,51,48,57,54,55,93,44,91,45,55,54,46,56,52,48,51,54,50,44,51,57,46,49,48,51,49,52,50,93,44,91,45,55,54,46,54,57,55,48,56,53,44,51,57,46,50,49,52,48,57,50,93,44,91,45,55,54,46,56,56,50,50,55,52,44,51,57,46,51,53,48,49,56,53,93,44,91,45,55,55,46,49,54,56,48,56,44,51,57,46,51,53,51,57,53,55,93,44,91,45,55,55,46,49,54,56,56,48,49,44,51,57,46,51,53,51,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,83,97,108,116,32,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,48,56,48,53,44,34,98,101,100,115,34,58,51,51,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,50,54,48,50,49,54,44,52,48,46,55,54,57,48,57,51,93,44,91,45,49,49,50,46,49,55,53,51,51,55,44,52,48,46,54,48,51,57,56,49,93,44,91,45,49,49,50,46,49,55,50,56,54,50,44,52,48,46,52,54,55,48,54,53,93,44,91,45,49,49,49,46,57,52,54,52,53,52,44,52,48,46,52,50,52,53,57,52,93,44,91,45,49,49,49,46,53,57,51,57,52,50,44,52,48,46,53,55,55,48,54,54,93,44,91,45,49,49,49,46,53,53,51,50,54,54,44,52,48,46,54,48,57,51,49,51,93,44,91,45,49,49,49,46,54,52,49,48,53,50,44,52,48,46,55,57,56,57,50,53,93,44,91,45,49,49,49,46,55,51,56,55,52,52,44,52,48,46,56,54,48,57,57,56,93,44,91,45,49,49,49,46,57,52,54,50,56,57,44,52,48,46,56,50,49,55,57,93,44,91,45,49,49,50,46,48,48,54,53,54,54,44,52,48,46,57,50,49,56,52,54,93,44,91,45,49,49,50,46,50,54,48,50,49,54,44,52,48,46,55,54,57,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,72,97,114,116,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,52,55,51,48,44,34,98,101,100,115,34,58,51,48,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,48,48,56,55,54,54,44,52,50,46,48,51,56,55,56,53,93,44,91,45,55,50,46,56,56,55,48,54,44,52,49,46,57,55,51,49,50,49,93,44,91,45,55,51,46,48,49,54,54,55,53,44,52,49,46,55,57,56,49,56,51,93,44,91,45,55,50,46,57,56,51,50,53,44,52,49,46,54,51,57,53,57,56,93,44,91,45,55,50,46,57,52,54,51,53,44,52,49,46,53,53,54,55,57,55,93,44,91,45,55,50,46,55,53,50,49,56,49,44,52,49,46,53,55,56,56,57,52,93,44,91,45,55,50,46,55,49,51,56,57,55,44,52,49,46,54,50,55,55,48,53,93,44,91,45,55,50,46,53,48,53,52,51,49,44,52,49,46,54,52,54,57,57,57,93,44,91,45,55,50,46,52,54,54,55,51,44,52,49,46,53,56,51,56,57,57,93,44,91,45,55,50,46,52,49,48,51,54,55,44,52,49,46,54,48,50,53,56,49,93,44,91,45,55,50,46,53,49,56,51,51,44,52,49,46,56,53,54,56,57,57,93,44,91,45,55,50,46,53,48,57,50,51,51,44,52,50,46,48,51,52,51,55,54,93,44,91,45,55,51,46,48,48,56,55,54,54,44,52,50,46,48,51,56,55,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,87,105,110,100,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,53,51,56,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,49,48,50,49,55,44,52,50,46,48,50,56,56,54,57,93,44,91,45,55,50,46,50,49,54,57,56,44,52,49,46,57,53,56,49,54,49,93,44,91,45,55,50,46,50,51,57,53,53,57,44,52,49,46,55,49,52,49,57,49,93,44,91,45,55,50,46,49,53,49,55,52,55,44,52,49,46,54,54,55,53,49,54,93,44,91,45,55,49,46,57,53,49,57,51,54,44,52,49,46,54,51,52,51,50,56,93,44,91,45,55,49,46,55,56,55,54,53,56,44,52,49,46,54,51,57,57,49,56,93,44,91,45,55,49,46,55,56,57,55,48,52,44,52,49,46,55,50,53,49,57,56,93,44,91,45,55,49,46,55,57,57,49,56,56,44,52,50,46,48,48,56,48,53,51,93,44,91,45,55,50,46,49,48,50,49,55,44,52,50,46,48,50,56,56,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,51,50,53,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,56,49,46,53,55,48,57,54,55,44,50,53,46,56,48,50,48,51,57,93,44,91,45,56,49,46,52,52,53,49,52,51,44,50,53,46,55,51,55,53,55,54,93,44,91,45,56,49,46,51,52,55,50,51,49,44,50,53,46,54,51,54,55,50,55,93,44,91,45,56,49,46,50,48,53,55,48,57,44,50,53,46,52,49,48,55,53,49,93,44,91,45,56,49,46,50,51,52,48,52,52,44,50,53,46,50,51,52,53,50,50,93,44,91,45,56,49,46,49,56,52,52,48,57,44,50,53,46,49,50,53,48,48,49,93,44,91,45,56,49,46,48,57,56,52,56,57,44,50,53,46,48,54,54,52,55,49,93,44,91,45,56,48,46,57,54,52,50,56,56,44,50,52,46,56,49,57,57,48,55,93,44,91,45,56,49,46,48,54,52,52,55,44,50,52,46,55,57,49,49,49,54,93,44,91,45,56,49,46,50,48,50,51,50,50,44,50,52,46,56,54,56,51,53,50,93,44,91,45,56,49,46,52,48,50,52,55,51,44,50,52,46,56,56,49,56,50,55,93,44,91,45,56,49,46,55,50,51,53,50,56,44,50,52,46,55,50,53,53,50,52,93,44,91,45,56,50,46,48,50,54,54,52,51,44,50,52,46,54,48,55,54,54,54,93,44,91,45,56,50,46,49,54,52,54,57,50,44,50,52,46,54,50,57,52,55,51,93,44,91,45,56,50,46,49,55,53,48,57,56,44,50,52,46,52,57,57,54,49,55,93,44,91,45,56,50,46,48,54,55,49,55,49,44,50,52,46,53,50,51,55,49,53,93,44,91,45,56,49,46,57,52,54,52,52,49,44,50,52,46,51,57,57,51,52,56,93,44,91,45,56,49,46,55,49,49,56,51,49,44,50,52,46,52,50,57,55,51,51,93,44,91,45,56,49,46,53,51,57,57,50,52,44,50,52,46,52,56,54,48,51,52,93,44,91,45,56,49,46,52,55,52,55,51,51,44,50,52,46,53,53,51,52,53,53,93,44,91,45,56,49,46,50,55,49,54,57,44,50,52,46,53,57,55,48,57,54,93,44,91,45,56,49,46,49,52,55,54,56,54,44,50,52,46,54,52,57,48,54,52,93,44,91,45,56,49,46,48,52,55,54,52,56,44,50,52,46,54,52,48,50,52,93,44,91,45,56,48,46,55,56,51,51,55,53,44,50,52,46,55,54,49,50,54,93,44,91,45,56,48,46,52,53,51,51,54,53,44,50,52,46,57,54,51,54,57,56,93,44,91,45,56,48,46,51,57,48,52,51,53,44,50,53,46,48,53,55,49,56,57,93,44,91,45,56,48,46,50,52,57,55,55,51,44,50,53,46,49,55,57,52,55,57,93,44,91,45,56,48,46,50,49,55,56,54,50,44,50,53,46,50,57,53,50,52,55,93,44,91,45,56,48,46,49,53,48,50,52,55,44,50,53,46,51,49,52,49,52,57,93,44,91,45,56,48,46,50,54,53,52,55,50,44,50,53,46,51,53,52,50,57,54,93,44,91,45,56,48,46,51,55,50,49,50,49,44,50,53,46,51,49,48,50,49,53,93,44,91,45,56,48,46,52,50,57,51,48,54,44,50,53,46,50,51,53,54,54,49,93,44,91,45,56,48,46,54,53,49,50,55,57,44,50,53,46,49,57,50,53,57,54,93,44,91,45,56,48,46,55,48,53,51,55,57,44,50,53,46,49,52,57,48,49,55,93,44,91,45,56,48,46,56,53,56,49,54,55,44,50,53,46,49,55,54,54,48,55,93,44,91,45,56,48,46,56,55,51,49,57,44,50,53,46,51,54,51,57,57,51,93,44,91,45,56,48,46,56,55,51,48,57,54,44,50,53,46,56,48,53,51,55,55,93,44,91,45,56,49,46,53,55,48,57,54,55,44,50,53,46,56,48,50,48,51,57,93,93,93,44,91,91,91,45,56,50,46,57,56,55,52,55,55,44,50,52,46,54,50,53,51,55,57,93,44,91,45,56,50,46,56,52,57,48,53,51,44,50,52,46,53,55,54,55,52,56,93,44,91,45,56,50,46,55,54,54,54,56,49,44,50,52,46,54,54,55,57,52,93,44,91,45,56,50,46,56,57,57,57,50,56,44,50,52,46,55,49,55,55,55,56,93,44,91,45,56,50,46,57,56,55,52,55,55,44,50,52,46,54,50,53,51,55,57,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,84,117,115,99,97,114,97,119,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,53,50,54,44,34,98,101,100,115,34,58,49,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,52,57,49,57,57,44,52,48,46,54,51,53,49,48,54,93,44,91,45,56,49,46,55,48,57,49,51,50,44,52,48,46,52,52,52,55,55,53,93,44,91,45,56,49,46,54,49,54,48,51,44,52,48,46,51,54,56,49,49,56,93,44,91,45,56,49,46,54,50,50,54,56,51,44,52,48,46,50,50,49,51,48,56,93,44,91,45,56,49,46,51,51,56,48,53,55,44,52,48,46,50,49,52,50,53,51,93,44,91,45,56,49,46,50,55,53,51,49,57,44,52,48,46,51,48,51,52,51,52,93,44,91,45,56,49,46,50,54,57,57,53,49,44,52,48,46,52,51,51,52,56,54,93,44,91,45,56,49,46,50,54,52,55,52,52,44,52,48,46,53,54,53,48,52,50,93,44,91,45,56,49,46,51,49,55,55,51,57,44,52,48,46,54,53,49,53,55,57,93,44,91,45,56,49,46,54,52,57,49,57,57,44,52,48,46,54,51,53,49,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,82,105,99,104,109,111,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,52,49,48,49,44,34,98,101,100,115,34,58,49,50,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,50,48,51,54,56,56,44,52,48,46,53,57,50,54,57,49,93,44,91,45,55,52,46,50,50,56,49,53,51,44,52,48,46,52,55,55,51,57,57,93,44,91,45,55,52,46,48,52,50,49,49,50,44,52,48,46,53,48,57,50,57,57,93,44,91,45,55,52,46,48,51,54,50,57,51,44,52,48,46,53,53,49,48,52,50,93,44,91,45,55,52,46,48,53,53,55,51,57,44,52,48,46,54,53,49,55,54,93,44,91,45,55,52,46,49,54,49,52,50,56,44,52,48,46,54,52,52,49,52,56,93,44,91,45,55,52,46,50,48,51,54,56,56,44,52,48,46,53,57,50,54,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,72,105,103,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,48,48,55,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,57,48,56,55,56,44,51,57,46,51,55,56,55,51,54,93,44,91,45,56,51,46,55,56,52,55,57,51,44,51,57,46,50,54,50,56,56,56,93,44,91,45,56,51,46,56,54,53,54,55,57,44,51,57,46,50,52,55,51,51,51,93,44,91,45,56,51,46,56,55,50,50,49,52,44,51,57,46,48,50,49,51,48,52,93,44,91,45,56,51,46,54,55,51,48,49,56,44,51,57,46,48,50,48,52,51,93,44,91,45,56,51,46,51,56,53,54,51,55,44,51,57,46,48,53,53,49,57,55,93,44,91,45,56,51,46,51,53,51,53,51,49,44,51,57,46,49,57,55,53,56,53,93,44,91,45,56,51,46,51,55,50,55,49,52,44,51,57,46,51,55,55,52,49,54,93,44,91,45,56,51,46,53,57,48,56,55,56,44,51,57,46,51,55,56,55,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,97,107,101,32,111,102,32,116,104,101,32,87,111,111,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,57,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,49,57,56,57,53,44,52,56,46,57,57,56,55,55,93,44,91,45,57,53,46,50,51,53,54,48,54,44,52,56,46,56,56,49,52,53,93,44,91,45,57,53,46,48,57,49,50,56,50,44,52,56,46,57,49,57,49,55,51,93,44,91,45,57,53,46,48,56,57,56,54,51,44,52,56,46,55,49,51,48,54,50,93,44,91,45,57,53,46,51,52,50,55,51,44,52,56,46,55,49,51,48,50,56,93,44,91,45,57,53,46,51,52,50,53,52,44,52,56,46,53,52,48,50,49,49,93,44,91,45,57,53,46,50,49,49,57,54,54,44,52,56,46,53,51,57,57,54,49,93,44,91,45,57,53,46,50,49,48,57,53,51,44,52,56,46,51,54,53,57,55,49,93,44,91,45,57,52,46,52,50,56,55,48,50,44,52,56,46,51,54,55,51,51,51,93,44,91,45,57,52,46,52,51,48,50,55,51,44,52,56,46,55,48,48,57,48,57,93,44,91,45,57,52,46,53,57,50,48,57,57,44,52,56,46,55,49,57,49,50,93,44,91,45,57,52,46,54,57,48,57,48,50,44,52,56,46,55,55,55,57,57,57,93,44,91,45,57,52,46,54,56,52,51,52,55,44,52,56,46,56,56,51,57,53,56,93,44,91,45,57,52,46,56,50,53,53,51,53,44,52,57,46,50,57,52,51,53,52,93,44,91,45,57,52,46,57,53,50,48,54,57,44,52,57,46,51,54,56,55,51,51,93,44,91,45,57,53,46,49,53,51,51,57,53,44,52,57,46,51,56,52,52,55,57,93,44,91,45,57,53,46,49,53,51,49,57,49,44,52,56,46,57,57,56,56,55,93,44,91,45,57,53,46,51,49,57,56,57,53,44,52,56,46,57,57,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,53,53,49,44,34,98,101,100,115,34,58,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,48,48,55,55,49,50,44,52,51,46,49,49,48,57,51,51,93,44,91,45,49,49,51,46,48,48,55,55,54,44,52,50,46,56,54,51,48,53,49,93,44,91,45,49,49,50,46,56,49,54,53,55,56,44,52,50,46,56,54,51,50,51,49,93,44,91,45,49,49,50,46,55,53,48,53,54,50,44,52,50,46,57,53,49,53,50,56,93,44,91,45,49,49,50,46,54,53,54,53,53,50,44,52,51,46,48,50,49,57,52,52,93,44,91,45,49,49,50,46,48,54,51,48,50,51,44,52,51,46,48,50,50,51,54,52,93,44,91,45,49,49,49,46,53,56,57,52,56,57,44,52,51,46,48,50,48,48,53,50,93,44,91,45,49,49,49,46,53,56,56,48,52,57,44,52,51,46,50,56,49,56,52,49,93,44,91,45,49,49,49,46,56,50,50,52,57,52,44,52,51,46,50,56,50,50,56,54,93,44,91,45,49,49,49,46,56,50,50,52,55,53,44,52,51,46,51,54,54,48,51,53,93,44,91,45,49,49,50,46,48,52,51,56,50,49,44,52,51,46,51,54,54,55,48,56,93,44,91,45,49,49,50,46,49,48,51,50,57,56,44,52,51,46,52,50,53,48,53,55,93,44,91,45,49,49,50,46,53,50,48,48,50,52,44,52,51,46,52,50,53,49,55,93,44,91,45,49,49,50,46,53,49,57,56,54,49,44,52,51,46,54,50,54,54,50,51,93,44,91,45,49,49,50,46,54,57,55,49,50,50,44,52,51,46,54,50,51,49,52,93,44,91,45,49,49,50,46,57,51,54,56,51,53,44,52,51,46,52,52,57,51,56,54,93,44,91,45,49,49,51,46,48,48,55,51,49,56,44,52,51,46,50,56,52,55,55,56,93,44,91,45,49,49,51,46,48,48,55,55,49,50,44,52,51,46,49,49,48,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,97,98,111,32,82,111,106,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,48,53,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,53,57,55,51,51,44,49,56,46,49,53,51,50,50,55,93,44,91,45,54,55,46,50,50,53,54,54,52,44,49,56,46,49,57,54,49,53,51,93,44,91,45,54,55,46,50,54,48,54,56,44,49,55,46,57,50,56,53,52,93,44,91,45,54,55,46,49,48,56,54,51,53,44,49,55,46,56,57,53,52,48,55,93,44,91,45,54,55,46,49,48,57,48,52,52,44,49,56,46,48,53,54,48,56,53,93,44,91,45,54,55,46,49,48,48,52,57,50,44,49,56,46,49,48,54,51,57,53,93,44,91,45,54,55,46,49,53,57,55,51,51,44,49,56,46,49,53,51,50,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,117,109,97,99,97,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,52,54,54,44,34,98,101,100,115,34,58,50,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,56,50,54,48,54,51,44,49,56,46,50,48,48,52,48,56,93,44,91,45,54,53,46,56,55,55,54,49,53,44,49,56,46,49,49,56,49,54,55,93,44,91,45,54,53,46,55,51,57,49,49,50,44,49,56,46,48,55,48,55,55,56,93,44,91,45,54,53,46,54,57,57,51,51,53,44,49,56,46,49,49,54,49,49,51,93,44,91,45,54,53,46,56,50,54,48,54,51,44,49,56,46,50,48,48,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,74,117,110,99,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,49,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,49,56,53,51,53,44,49,56,46,50,55,48,49,51,93,44,91,45,54,53,46,57,53,49,48,49,57,44,49,56,46,50,50,57,50,57,50,93,44,91,45,54,53,46,57,50,56,51,52,49,44,49,56,46,49,52,50,56,52,53,93,44,91,45,54,53,46,56,53,50,54,49,54,44,49,56,46,50,53,52,57,55,50,93,44,91,45,54,53,46,57,49,56,53,51,53,44,49,56,46,50,55,48,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,56,52,48,50,44,34,98,101,100,115,34,58,49,54,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,54,52,53,55,53,44,51,53,46,48,54,56,51,56,93,44,91,45,56,50,46,54,50,53,53,57,57,44,51,53,46,48,54,52,54,56,54,93,44,91,45,56,50,46,52,57,52,48,48,55,44,51,52,46,56,57,54,50,49,53,93,44,91,45,56,50,46,52,56,55,50,48,51,44,51,52,46,56,49,56,56,49,49,93,44,91,45,56,50,46,52,54,54,53,48,51,44,51,52,46,54,54,53,49,56,52,93,44,91,45,56,50,46,51,49,51,57,57,54,44,51,52,46,52,56,52,48,48,50,93,44,91,45,56,50,46,50,51,56,48,53,52,44,51,52,46,53,56,54,57,53,54,93,44,91,45,56,50,46,49,52,54,55,57,50,44,51,52,46,55,56,53,53,53,52,93,44,91,45,56,50,46,50,50,54,51,50,53,44,51,52,46,56,53,50,52,56,56,93,44,91,45,56,50,46,50,49,53,57,52,55,44,51,53,46,49,57,54,50,50,50,93,44,91,45,56,50,46,51,53,51,55,53,52,44,51,53,46,49,57,48,57,54,55,93,44,91,45,56,50,46,53,55,52,56,51,57,44,51,53,46,49,52,53,52,52,57,93,44,91,45,56,50,46,55,54,52,53,55,53,44,51,53,46,48,54,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,121,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,51,48,56,52,53,44,52,51,46,55,49,51,56,53,54,93,44,91,45,57,57,46,56,51,55,56,50,53,44,52,51,46,54,56,57,48,55,49,93,44,91,45,57,57,46,54,50,51,53,56,55,44,52,51,46,55,52,50,52,49,52,93,44,91,45,57,57,46,54,50,51,53,55,56,44,52,51,46,52,57,57,56,53,57,93,44,91,45,57,57,46,53,51,52,52,56,49,44,52,51,46,52,57,57,56,48,49,93,44,91,45,57,57,46,50,57,55,57,57,56,44,52,51,46,52,57,57,54,54,57,93,44,91,45,57,57,46,50,57,55,56,56,50,44,52,51,46,52,57,57,56,53,54,93,44,91,45,57,57,46,52,48,54,57,54,49,44,52,51,46,55,48,53,50,55,55,93,44,91,45,57,57,46,52,49,48,49,53,44,52,51,46,55,55,52,54,49,57,93,44,91,45,57,57,46,51,49,48,56,50,54,44,52,51,46,56,53,53,50,49,54,93,44,91,45,57,57,46,51,53,53,56,54,52,44,52,51,46,57,51,52,51,55,49,93,44,91,45,57,57,46,51,53,51,55,50,44,52,51,46,57,57,53,51,50,57,93,44,91,45,57,57,46,53,54,50,53,51,54,44,52,52,46,49,48,49,53,49,57,93,44,91,45,57,57,46,53,55,54,53,55,49,44,52,52,46,49,57,50,52,50,49,93,44,91,45,57,57,46,54,54,51,53,48,56,44,52,52,46,50,49,55,53,49,55,93,44,91,45,57,57,46,54,53,52,53,51,54,44,52,52,46,49,48,49,54,56,57,93,44,91,45,57,57,46,56,56,52,52,56,53,44,52,52,46,49,50,57,53,56,50,93,44,91,45,57,57,46,57,51,56,50,49,55,44,52,52,46,49,57,53,49,57,53,93,44,91,45,49,48,48,46,51,54,55,50,52,55,44,52,52,46,49,57,52,54,50,49,93,44,91,45,49,48,48,46,51,54,55,50,48,55,44,52,52,46,49,54,56,54,57,52,93,44,91,45,49,48,48,46,51,54,54,49,55,52,44,52,51,46,56,52,54,57,55,56,93,44,91,45,49,48,48,46,51,51,56,57,55,44,52,51,46,55,49,54,57,52,50,93,44,91,45,49,48,48,46,50,51,48,56,52,53,44,52,51,46,55,49,51,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,84,114,101,109,112,101,97,108,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,52,51,56,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,50,57,49,48,49,44,52,52,46,53,57,54,49,57,55,93,44,91,45,57,49,46,53,50,57,55,52,49,44,52,52,46,50,52,54,55,55,55,93,44,91,45,57,49,46,54,49,50,51,51,49,44,52,52,46,49,54,56,56,48,57,93,44,91,45,57,49,46,53,53,57,48,48,52,44,52,52,46,48,50,53,51,49,53,93,44,91,45,57,49,46,52,50,53,49,56,56,44,52,51,46,57,56,52,51,50,50,93,44,91,45,57,49,46,51,48,55,52,55,56,44,52,52,46,48,54,52,56,55,54,93,44,91,45,57,49,46,49,53,49,57,51,50,44,52,52,46,48,55,57,54,54,53,93,44,91,45,57,49,46,49,54,53,54,49,57,44,52,52,46,53,57,54,57,56,55,93,44,91,45,57,49,46,53,50,57,49,48,49,44,52,52,46,53,57,54,49,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,89,111,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,57,55,55,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,51,57,53,48,53,54,44,51,56,46,56,54,52,50,52,53,93,44,91,45,49,50,50,46,50,56,55,57,57,56,44,51,56,46,56,51,57,57,51,49,93,44,91,45,49,50,50,46,49,48,51,50,56,49,44,51,56,46,53,49,51,51,52,56,93,44,91,45,49,50,49,46,57,52,48,50,56,53,44,51,56,46,53,51,51,51,56,52,93,44,91,45,49,50,49,46,54,57,53,49,52,55,44,51,56,46,53,50,51,49,53,54,93,44,91,45,49,50,49,46,54,57,52,48,49,52,44,51,56,46,51,49,52,56,53,54,93,44,91,45,49,50,49,46,53,57,51,50,55,51,44,51,56,46,51,49,51,48,56,57,93,44,91,45,49,50,49,46,53,48,50,57,56,50,44,51,56,46,52,52,48,55,49,56,93,44,91,45,49,50,49,46,54,48,50,56,57,52,44,51,56,46,55,51,53,56,51,56,93,44,91,45,49,50,49,46,55,50,51,51,52,54,44,51,56,46,56,48,51,55,53,57,93,44,91,45,49,50,49,46,56,51,53,52,56,56,44,51,56,46,57,50,52,52,56,49,93,44,91,45,49,50,50,46,51,52,48,49,55,50,44,51,56,46,57,50,52,50,52,54,93,44,91,45,49,50,50,46,51,57,53,48,53,54,44,51,56,46,56,54,52,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,51,49,34,44,34,78,65,77,69,34,58,34,83,116,101,114,108,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,54,55,49,50,50,44,51,49,46,54,53,48,56,53,52,93,44,91,45,49,48,49,46,50,54,55,54,51,44,51,49,46,53,53,54,52,54,50,93,44,91,45,49,48,48,46,56,54,53,50,53,54,44,51,49,46,53,54,50,50,57,52,93,44,91,45,49,48,48,46,56,50,53,51,55,44,51,49,46,54,57,54,49,53,53,93,44,91,45,49,48,48,46,56,50,49,53,57,52,44,51,50,46,48,56,54,54,49,93,44,91,45,49,48,49,46,49,56,51,57,57,55,44,51,50,46,48,56,55,50,48,56,93,44,91,45,49,48,49,46,50,54,52,50,49,54,44,51,50,46,48,56,55,49,51,54,93,44,91,45,49,48,49,46,50,54,55,49,50,50,44,51,49,46,54,53,48,56,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,57,53,34,44,34,78,65,77,69,34,58,34,87,105,110,107,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,48,50,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,51,50,55,53,51,56,44,51,49,46,54,53,49,52,50,93,44,91,45,49,48,50,46,55,57,56,57,51,57,44,51,49,46,54,53,49,55,56,51,93,44,91,45,49,48,50,46,55,57,57,48,56,54,44,51,50,46,48,56,53,55,57,53,93,44,91,45,49,48,51,46,48,54,52,53,49,54,44,51,50,46,48,56,55,48,53,49,93,44,91,45,49,48,51,46,48,54,52,53,49,44,51,50,46,48,48,48,52,50,52,93,44,91,45,49,48,51,46,51,50,54,53,48,49,44,51,50,46,48,48,48,51,54,57,93,44,91,45,49,48,51,46,51,50,55,53,51,56,44,51,49,46,54,53,49,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,48,55,51,51,54,44,52,51,46,57,57,52,53,51,93,44,91,45,49,48,50,46,48,49,56,56,56,55,44,52,51,46,55,48,56,54,49,56,93,44,91,45,49,48,50,46,49,51,57,49,53,56,44,52,51,46,55,48,48,57,52,56,93,44,91,45,49,48,50,46,49,51,57,48,53,49,44,52,51,46,52,55,54,54,55,54,93,44,91,45,49,48,50,46,49,49,48,56,49,57,44,52,51,46,51,56,57,57,48,50,93,44,91,45,49,48,49,46,50,50,56,50,51,52,44,52,51,46,51,56,57,49,56,53,93,44,91,45,49,48,49,46,50,50,56,51,51,49,44,52,51,46,55,57,53,48,52,57,93,44,91,45,49,48,49,46,48,54,52,51,50,54,44,52,51,46,56,52,49,48,57,93,44,91,45,49,48,49,46,48,54,52,48,54,56,44,52,51,46,57,57,52,57,50,57,93,44,91,45,49,48,50,46,48,48,55,51,51,54,44,52,51,46,57,57,52,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,83,101,118,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,49,56,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,48,49,52,48,56,51,44,51,57,46,48,52,53,53,49,56,93,44,91,45,49,49,50,46,50,50,52,52,54,49,44,51,56,46,56,54,52,56,48,51,93,44,91,45,49,49,50,46,50,49,56,51,53,54,44,51,56,46,55,50,55,51,54,49,93,44,91,45,49,49,50,46,51,48,57,57,53,51,44,51,56,46,54,55,54,50,57,93,44,91,45,49,49,50,46,52,52,55,53,49,55,44,51,56,46,54,56,49,50,55,93,44,91,45,49,49,50,46,53,49,53,51,57,52,44,51,56,46,53,55,50,56,52,53,93,44,91,45,49,49,50,46,53,49,56,52,57,53,44,51,56,46,53,49,48,52,49,51,93,44,91,45,49,49,49,46,55,54,54,51,57,51,44,51,56,46,53,48,50,50,52,51,93,44,91,45,49,49,49,46,51,48,53,54,54,53,44,51,56,46,53,49,48,49,54,57,93,44,91,45,49,49,49,46,50,57,57,51,54,44,51,57,46,48,51,50,50,54,52,93,44,91,45,49,49,49,46,56,53,51,50,57,55,44,51,57,46,48,51,50,57,56,52,93,44,91,45,49,49,50,46,48,49,52,48,56,51,44,51,57,46,48,52,53,53,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,54,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,54,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,101,115,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,50,55,48,54,55,53,44,51,55,46,51,50,48,55,53,54,93,44,91,45,55,54,46,57,55,50,52,51,57,44,51,55,46,50,52,56,53,48,49,93,44,91,45,55,54,46,56,56,51,49,53,54,44,51,55,46,50,50,51,48,53,55,93,44,91,45,55,54,46,57,48,52,52,55,49,44,51,55,46,51,55,55,54,54,53,93,44,91,45,55,55,46,49,55,55,51,50,52,44,51,55,46,52,57,48,54,93,44,91,45,55,55,46,50,52,57,54,54,53,44,51,55,46,51,56,50,93,44,91,45,55,55,46,50,55,48,54,55,53,44,51,55,46,51,50,48,55,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,111,99,116,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,48,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,51,49,51,55,57,44,51,50,46,50,50,55,54,54,54,93,44,91,45,56,56,46,52,55,51,50,50,55,44,51,49,46,56,57,51,56,53,54,93,44,91,45,56,56,46,52,54,52,52,51,44,51,49,46,54,57,55,57,53,50,93,44,91,45,56,56,46,48,56,56,50,56,56,44,51,49,46,54,57,57,51,48,51,93,44,91,45,56,56,46,49,56,48,51,56,52,44,51,49,46,56,49,52,53,52,54,93,44,91,45,56,56,46,48,55,51,52,57,44,51,49,46,57,57,48,49,56,50,93,44,91,45,56,56,46,48,48,55,48,55,55,44,51,50,46,49,56,53,51,49,51,93,44,91,45,56,56,46,48,49,57,49,52,53,44,51,50,46,50,56,53,50,52,93,44,91,45,56,55,46,57,51,48,54,54,49,44,51,50,46,51,49,48,53,55,52,93,44,91,45,56,56,46,52,50,49,52,53,51,44,51,50,46,51,48,56,54,56,93,44,91,45,56,56,46,52,51,49,51,55,57,44,51,50,46,50,50,55,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,52,48,57,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,51,49,49,52,53,44,51,56,46,56,53,50,53,48,55,93,44,91,45,56,55,46,53,49,57,54,49,44,51,56,46,54,57,55,49,57,56,93,44,91,45,56,55,46,54,53,49,53,50,57,44,51,56,46,53,54,56,49,54,54,93,44,91,45,56,55,46,55,52,51,54,57,49,44,51,56,46,52,49,52,51,56,55,93,44,91,45,56,55,46,52,54,50,56,57,50,44,51,56,46,53,51,51,53,49,57,93,44,91,45,56,55,46,50,52,50,48,57,55,44,51,56,46,53,52,52,57,51,93,44,91,45,56,55,46,50,55,56,53,53,51,44,51,56,46,54,57,49,51,52,51,93,44,91,45,56,55,46,50,52,54,54,44,51,56,46,56,48,55,55,48,49,93,44,91,45,56,55,46,48,57,56,55,55,49,44,51,56,46,57,48,51,57,55,52,93,44,91,45,56,55,46,50,52,49,48,50,55,44,51,56,46,57,48,55,56,55,52,93,44,91,45,56,55,46,53,50,50,57,51,57,44,51,56,46,57,48,50,51,57,93,44,91,45,56,55,46,53,51,49,49,52,53,44,51,56,46,56,53,50,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,68,97,119,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,48,52,44,34,98,101,100,115,34,58,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,50,52,50,51,53,44,52,49,46,48,52,54,53,57,55,93,44,91,45,49,48,48,46,50,50,51,51,49,49,44,52,48,46,55,48,48,50,53,52,93,44,91,45,57,57,46,57,56,49,55,52,51,44,52,48,46,55,48,48,48,48,51,93,44,91,45,57,57,46,54,52,51,52,54,50,44,52,48,46,54,56,52,57,49,49,93,44,91,45,57,57,46,52,49,55,51,49,54,44,52,48,46,54,55,48,56,50,53,93,44,91,45,57,57,46,52,50,53,57,56,54,44,52,49,46,48,52,54,52,55,49,93,44,91,45,49,48,48,46,50,50,52,50,51,53,44,52,49,46,48,52,54,53,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,70,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,56,52,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,50,55,48,57,44,51,55,46,57,49,52,48,49,56,93,44,91,45,49,48,48,46,50,49,54,50,50,57,44,51,55,46,52,55,53,49,57,93,44,91,45,49,48,48,46,49,48,55,50,52,56,44,51,55,46,52,55,52,56,51,54,93,44,91,45,57,57,46,53,53,54,49,49,57,44,51,55,46,52,54,55,55,50,50,93,44,91,45,57,57,46,53,53,57,53,56,44,51,55,46,55,51,52,56,56,56,93,44,91,45,57,57,46,53,54,57,56,55,57,44,51,55,46,57,49,51,48,49,54,93,44,91,45,49,48,48,46,50,50,55,48,57,44,51,55,46,57,49,52,48,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,48,54,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,54,55,54,54,44,52,56,46,51,56,57,50,57,56,93,44,91,45,49,48,52,46,48,52,52,48,52,52,44,52,55,46,57,57,54,48,56,50,93,44,91,45,49,48,51,46,57,49,57,55,56,57,44,52,55,46,57,53,53,57,53,93,44,91,45,49,48,51,46,55,56,52,51,57,52,44,52,56,46,48,53,57,52,57,49,93,44,91,45,49,48,51,46,54,48,56,49,55,52,44,52,56,46,49,49,52,49,50,52,93,44,91,45,49,48,51,46,52,56,53,48,55,50,44,52,56,46,48,48,54,55,50,53,93,44,91,45,49,48,51,46,50,55,55,50,54,54,44,52,56,46,48,53,56,48,50,51,93,44,91,45,49,48,51,46,50,48,49,56,57,44,52,56,46,49,51,53,50,48,56,93,44,91,45,49,48,50,46,56,50,56,52,55,55,44,52,56,46,49,50,51,54,54,52,93,44,91,45,49,48,50,46,56,50,56,49,54,51,44,52,56,46,51,55,50,54,52,49,93,44,91,45,49,48,50,46,56,56,53,55,54,51,44,52,56,46,53,52,54,51,57,93,44,91,45,49,48,50,46,56,56,53,55,55,53,44,52,56,46,54,51,51,50,57,56,93,44,91,45,49,48,52,46,48,52,55,57,50,52,44,52,56,46,54,51,51,57,49,49,93,44,91,45,49,48,52,46,48,52,54,55,54,54,44,52,56,46,51,56,57,50,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,52,50,48,50,44,34,98,101,100,115,34,58,49,51,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,48,53,57,51,53,44,52,55,46,50,51,57,57,55,55,93,44,91,45,57,55,46,54,56,49,53,48,56,44,52,54,46,57,55,56,52,56,49,93,44,91,45,57,55,46,54,56,50,48,48,54,44,52,54,46,54,50,57,57,50,56,93,44,91,45,57,55,46,50,55,57,57,52,56,44,52,54,46,54,50,57,51,52,56,93,44,91,45,57,54,46,55,57,56,49,50,56,44,52,54,46,54,51,48,51,50,54,93,44,91,45,57,54,46,55,54,49,54,57,51,44,52,54,46,57,51,52,53,53,56,93,44,91,45,57,54,46,56,51,52,56,51,57,44,52,55,46,48,48,55,50,53,52,93,44,91,45,57,54,46,56,52,48,49,50,50,44,52,55,46,49,53,48,52,55,53,93,44,91,45,57,54,46,56,51,51,51,57,51,44,52,55,46,50,51,56,48,52,49,93,44,91,45,57,55,46,52,53,49,53,49,50,44,52,55,46,50,51,57,48,54,49,93,44,91,45,57,55,46,55,48,53,57,51,53,44,52,55,46,50,51,57,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,49,50,54,57,55,44,51,55,46,53,57,57,54,50,53,93,44,91,45,56,56,46,52,49,53,52,48,54,44,51,55,46,52,50,51,57,55,50,93,44,91,45,56,56,46,51,53,56,52,54,54,44,51,55,46,52,48,52,55,53,50,93,44,91,45,56,56,46,50,55,57,50,48,55,44,51,55,46,52,53,51,50,57,50,93,44,91,45,56,56,46,48,54,49,51,51,50,44,51,55,46,53,48,53,51,51,50,93,44,91,45,56,56,46,49,51,51,52,51,52,44,51,55,46,53,55,52,51,51,56,93,44,91,45,56,56,46,51,55,53,52,51,52,44,51,55,46,53,57,57,53,57,53,93,44,91,45,56,56,46,52,49,50,54,57,55,44,51,55,46,53,57,57,54,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,114,116,104,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,57,56,53,53,50,51,44,52,49,46,55,52,50,50,57,93,44,91,45,49,48,49,46,57,56,52,54,51,44,52,49,46,51,57,52,55,49,50,93,44,91,45,49,48,49,46,52,48,55,50,54,44,52,49,46,51,57,53,52,49,54,93,44,91,45,49,48,49,46,52,48,54,52,54,54,44,52,49,46,55,52,51,50,93,44,91,45,49,48,49,46,52,50,53,57,50,44,52,49,46,55,52,51,48,53,57,93,44,91,45,49,48,49,46,57,56,53,53,50,51,44,52,49,46,55,52,50,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,70,114,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,51,57,52,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,52,57,44,50,57,46,48,57,48,52,51,52,93,44,91,45,57,57,46,52,49,51,56,56,44,50,57,46,48,57,49,51,51,53,93,44,91,45,57,57,46,52,48,57,48,50,49,44,50,56,46,54,52,48,53,54,54,93,44,91,45,57,57,46,51,57,53,55,51,54,44,50,56,46,54,52,48,55,56,52,93,44,91,45,57,56,46,56,48,48,56,52,49,44,50,56,46,54,52,55,52,56,55,93,44,91,45,57,56,46,56,48,52,57,44,50,57,46,48,57,48,52,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,48,48,49,44,34,98,101,100,115,34,58,49,51,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,51,49,51,55,57,44,52,49,46,56,54,49,56,53,49,93,44,91,45,57,49,46,56,50,57,50,51,49,44,52,49,46,53,49,49,52,53,55,93,44,91,45,57,49,46,53,50,50,52,56,44,52,49,46,53,49,49,48,51,53,93,44,91,45,57,49,46,52,56,51,57,57,53,44,52,49,46,52,50,51,56,52,56,93,44,91,45,57,49,46,51,54,56,53,50,49,44,52,49,46,52,50,51,49,55,56,93,44,91,45,57,49,46,51,54,54,52,52,56,44,52,49,46,53,57,56,51,55,51,93,44,91,45,57,49,46,51,54,54,50,50,49,44,52,49,46,56,54,48,48,54,57,93,44,91,45,57,49,46,56,51,49,51,55,57,44,52,49,46,56,54,49,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,78,101,111,115,104,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,56,56,48,56,50,44,51,55,46,55,51,50,52,55,54,93,44,91,45,57,53,46,53,50,53,52,57,57,44,51,55,46,55,51,50,55,53,57,93,44,91,45,57,53,46,53,50,53,53,54,44,51,55,46,51,56,51,57,55,57,93,44,91,45,57,53,46,53,50,49,49,51,44,51,55,46,51,56,51,57,57,93,44,91,45,57,53,46,48,56,56,49,56,57,44,51,55,46,51,56,51,56,51,55,93,44,91,45,57,53,46,48,56,56,48,49,50,44,51,55,46,54,55,52,53,49,57,93,44,91,45,57,53,46,48,56,56,48,56,50,44,51,55,46,55,51,50,52,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,117,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,54,53,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,48,51,48,56,53,56,44,51,56,46,55,50,53,53,50,52,93,44,91,45,56,51,46,48,55,51,54,51,51,44,51,56,46,53,57,48,52,51,56,93,44,91,45,56,51,46,49,54,54,52,49,57,44,51,56,46,53,48,51,57,54,53,93,44,91,45,56,50,46,57,54,55,54,51,53,44,51,56,46,51,57,52,49,51,56,93,44,91,45,56,50,46,56,49,55,52,53,52,44,51,56,46,51,55,51,57,51,53,93,44,91,45,56,50,46,54,54,53,52,49,49,44,51,56,46,53,48,53,55,56,55,93,44,91,45,56,50,46,56,49,53,57,55,57,44,51,56,46,53,55,48,56,48,50,93,44,91,45,56,50,46,56,57,55,49,56,57,44,51,56,46,55,53,54,50,49,52,93,44,91,45,56,51,46,48,51,48,56,53,56,44,51,56,46,55,50,53,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,76,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,44,91,45,57,53,46,48,55,55,56,55,54,44,51,56,46,48,51,55,55,48,54,93,44,91,45,57,52,46,54,49,52,48,56,57,44,51,56,46,48,51,55,48,53,55,93,44,91,45,57,52,46,54,49,52,48,54,49,44,51,56,46,48,54,48,48,53,54,93,44,91,45,57,52,46,54,49,51,50,51,50,44,51,56,46,51,56,56,55,49,56,93,44,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,49,55,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,52,51,50,49,53,44,51,56,46,49,53,49,50,56,93,44,91,45,49,49,50,46,52,52,52,50,49,52,44,51,56,46,49,53,48,48,48,49,93,44,91,45,49,49,50,46,52,55,56,54,56,44,51,56,46,49,52,55,52,49,57,93,44,91,45,49,49,50,46,52,54,56,49,55,55,44,51,55,46,56,57,48,52,54,52,93,44,91,45,49,49,50,46,53,55,56,51,57,55,44,51,55,46,56,56,50,49,52,55,93,44,91,45,49,49,50,46,54,56,57,50,50,49,44,51,55,46,56,48,53,53,57,93,44,91,45,49,49,50,46,54,56,51,55,53,44,51,55,46,53,52,51,54,57,50,93,44,91,45,49,49,49,46,56,52,48,56,48,57,44,51,55,46,53,51,53,55,56,57,93,44,91,45,49,49,48,46,54,52,54,51,57,52,44,51,55,46,53,52,49,48,54,51,93,44,91,45,49,49,48,46,53,48,49,53,57,52,44,51,55,46,54,53,93,44,91,45,49,49,48,46,52,51,55,53,51,56,44,51,55,46,56,48,54,57,50,93,44,91,45,49,49,48,46,51,54,52,49,52,54,44,51,55,46,56,57,50,49,56,53,93,44,91,45,49,49,48,46,50,49,52,57,52,57,44,51,55,46,56,57,50,53,53,53,93,44,91,45,49,49,48,46,48,48,57,52,57,52,44,51,56,46,49,48,57,54,53,54,93,44,91,45,49,48,57,46,57,50,55,57,57,53,44,51,56,46,49,53,49,56,56,52,93,44,91,45,49,49,48,46,54,56,55,52,48,54,44,51,56,46,49,53,49,51,56,53,93,44,91,45,49,49,49,46,56,52,51,50,49,53,44,51,56,46,49,53,49,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,69,117,114,101,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,53,56,54,55,56,54,44,52,49,46,48,48,48,51,57,56,93,44,91,45,49,49,54,46,53,57,54,56,49,53,44,52,48,46,57,52,54,52,54,93,44,91,45,49,49,54,46,53,57,48,51,57,54,44,52,48,46,48,55,50,50,55,55,93,44,91,45,49,49,54,46,54,48,48,57,52,54,44,51,57,46,49,54,49,52,54,51,93,44,91,45,49,49,53,46,57,48,55,48,55,49,44,51,57,46,49,54,49,56,52,56,93,44,91,45,49,49,53,46,57,48,55,54,53,57,44,51,57,46,52,54,52,52,51,50,93,44,91,45,49,49,53,46,56,49,51,52,55,54,44,51,57,46,53,57,51,53,50,49,93,44,91,45,49,49,53,46,56,51,51,49,48,49,44,51,57,46,55,50,57,52,49,50,93,44,91,45,49,49,53,46,55,57,52,56,54,52,44,51,57,46,56,53,51,49,48,52,93,44,91,45,49,49,53,46,56,51,52,57,54,57,44,52,48,46,49,50,55,56,52,50,93,44,91,45,49,49,54,46,48,48,48,56,57,55,44,52,48,46,49,50,55,51,55,54,93,44,91,45,49,49,54,46,49,53,55,56,51,52,44,52,48,46,54,54,54,51,56,57,93,44,91,45,49,49,54,46,49,53,56,49,53,53,44,52,48,46,57,57,57,57,49,50,93,44,91,45,49,49,54,46,53,56,54,55,56,54,44,52,49,46,48,48,48,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,97,121,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,51,52,53,51,54,53,44,52,48,46,54,57,56,48,57,51,93,44,91,45,49,48,49,46,51,52,50,55,56,56,44,52,48,46,51,53,48,52,52,52,93,44,91,45,49,48,49,46,51,50,51,51,53,51,44,52,48,46,51,53,48,53,53,51,93,44,91,45,49,48,48,46,55,55,55,51,55,54,44,52,48,46,51,52,57,52,54,54,93,44,91,45,49,48,48,46,55,55,55,56,51,51,44,52,48,46,55,48,48,49,51,53,93,44,91,45,49,48,49,46,50,52,55,57,54,51,44,52,48,46,54,57,55,56,48,50,93,44,91,45,49,48,49,46,51,52,53,51,54,53,44,52,48,46,54,57,56,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,80,104,105,108,108,105,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,49,56,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,53,49,52,49,54,44,52,48,46,55,52,57,53,56,54,93,44,91,45,49,48,50,46,54,53,49,51,49,44,52,48,46,55,52,57,52,48,50,93,44,91,45,49,48,50,46,54,54,52,56,48,52,44,52,48,46,52,51,56,52,55,51,93,44,91,45,49,48,50,46,48,53,49,52,54,53,44,52,48,46,52,52,48,48,48,56,93,44,91,45,49,48,50,46,48,53,49,52,53,55,44,52,48,46,54,57,55,53,51,57,93,44,91,45,49,48,50,46,48,53,49,52,49,54,44,52,48,46,55,52,57,53,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,56,51,48,53,52,44,51,51,46,56,48,50,49,57,56,93,44,91,45,57,50,46,53,56,54,56,56,54,44,51,51,46,55,51,49,50,51,52,93,44,91,45,57,50,46,55,53,57,48,51,53,44,51,51,46,53,51,48,57,53,52,93,44,91,45,57,50,46,55,48,53,48,57,51,44,51,51,46,52,51,49,50,49,53,93,44,91,45,57,50,46,53,54,55,49,53,54,44,51,51,46,51,54,55,50,93,44,91,45,57,50,46,52,52,49,54,55,55,44,51,51,46,50,55,51,54,52,55,93,44,91,45,57,50,46,51,53,48,52,51,50,44,51,51,46,50,57,56,57,52,49,93,44,91,45,57,50,46,51,56,50,48,54,44,51,51,46,51,52,53,57,55,49,93,44,91,45,57,50,46,51,49,49,48,55,57,44,51,51,46,52,57,57,55,56,50,93,44,91,45,57,50,46,51,51,48,56,51,57,44,51,51,46,55,48,55,56,48,54,93,44,91,45,57,50,46,51,51,52,50,52,57,44,51,51,46,55,57,53,48,54,53,93,44,91,45,57,50,46,53,56,51,48,53,52,44,51,51,46,56,48,50,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,57,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,48,34,44,34,78,65,77,69,34,58,34,70,97,105,114,98,97,110,107,115,32,78,111,114,116,104,32,83,116,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,54,53,51,44,34,98,101,100,115,34,58,49,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,52,46,48,54,57,48,50,57,44,54,52,46,54,56,51,53,54,50,93,44,91,45,49,52,52,46,49,48,52,55,52,52,44,54,52,46,56,52,57,50,51,49,93,44,91,45,49,52,51,46,57,50,49,48,57,52,44,54,53,46,48,53,56,55,56,93,44,91,45,49,52,51,46,57,55,51,54,51,57,44,54,53,46,49,49,57,51,48,52,93,44,91,45,49,52,52,46,51,51,49,51,55,55,44,54,53,46,49,48,55,55,48,55,93,44,91,45,49,52,52,46,52,54,48,48,50,44,54,53,46,48,54,48,55,49,49,93,44,91,45,49,52,52,46,57,56,51,53,49,52,44,54,53,46,49,51,54,57,56,56,93,44,91,45,49,52,53,46,50,50,53,57,52,52,44,54,53,46,48,54,57,50,49,54,93,44,91,45,49,52,53,46,53,49,57,52,51,54,44,54,53,46,48,54,50,54,56,50,93,44,91,45,49,52,53,46,54,51,51,55,56,57,44,54,53,46,49,53,51,55,57,49,93,44,91,45,49,52,54,46,48,56,49,48,50,56,44,54,53,46,50,52,57,57,52,50,93,44,91,45,49,52,54,46,48,48,55,56,57,57,44,54,53,46,51,53,57,52,51,52,93,44,91,45,49,52,54,46,50,48,53,55,48,52,44,54,53,46,52,53,50,57,57,54,93,44,91,45,49,52,54,46,53,52,56,54,53,52,44,54,53,46,51,52,53,48,48,51,93,44,91,45,49,52,54,46,57,48,51,49,52,50,44,54,53,46,50,56,51,51,55,53,93,44,91,45,49,52,55,46,51,49,54,56,48,57,44,54,53,46,50,55,53,50,51,50,93,44,91,45,49,52,55,46,53,53,55,55,55,49,44,54,53,46,50,48,57,56,57,53,93,44,91,45,49,52,56,46,54,54,49,49,57,57,44,54,53,46,50,48,57,56,55,53,93,44,91,45,49,52,56,46,54,52,56,50,48,55,44,54,52,46,53,56,53,51,55,49,93,44,91,45,49,52,56,46,53,53,48,55,52,50,44,54,52,46,54,49,55,50,48,56,93,44,91,45,49,52,56,46,48,52,54,54,57,54,44,54,52,46,51,52,51,56,48,50,93,44,91,45,49,52,55,46,55,53,57,50,44,54,52,46,50,53,55,50,93,44,91,45,49,52,54,46,57,57,57,57,48,57,44,54,52,46,50,53,55,49,57,54,93,44,91,45,49,52,54,46,51,52,52,54,55,51,44,54,52,46,50,55,54,51,54,52,93,44,91,45,49,52,54,46,49,53,55,53,57,50,44,54,52,46,51,56,50,55,51,93,44,91,45,49,52,54,46,48,48,51,55,55,50,44,54,52,46,51,56,49,48,57,49,93,44,91,45,49,52,53,46,55,52,48,48,48,50,44,54,52,46,52,54,48,49,51,50,93,44,91,45,49,52,53,46,52,57,56,48,56,57,44,54,52,46,52,50,51,49,53,53,93,44,91,45,49,52,53,46,51,55,51,57,50,57,44,54,52,46,52,56,51,56,51,54,93,44,91,45,49,52,53,46,48,56,50,55,56,55,44,54,52,46,53,48,55,51,52,57,93,44,91,45,49,52,52,46,57,56,53,51,51,49,44,54,52,46,53,54,56,54,48,57,93,44,91,45,49,52,52,46,53,53,50,53,50,54,44,54,52,46,54,48,48,54,52,53,93,44,91,45,49,52,52,46,48,54,57,48,50,57,44,54,52,46,54,56,51,53,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,72,101,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,49,51,55,44,34,98,101,100,115,34,58,49,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,53,49,49,57,57,44,51,55,46,57,52,48,57,53,52,93,44,91,45,56,55,46,55,48,48,55,54,50,44,51,55,46,56,57,55,53,53,54,93,44,91,45,56,55,46,57,50,55,48,54,56,44,51,55,46,57,48,49,54,56,53,93,44,91,45,56,55,46,55,51,52,53,52,53,44,51,55,46,54,51,56,51,55,54,93,44,91,45,56,55,46,52,57,53,51,51,49,44,51,55,46,54,52,55,53,52,55,93,44,91,45,56,55,46,52,48,56,53,52,55,44,51,55,46,54,56,51,53,54,51,93,44,91,45,56,55,46,50,56,57,55,56,52,44,51,55,46,55,54,49,48,55,56,93,44,91,45,56,55,46,51,48,50,57,51,50,44,51,55,46,56,57,55,55,53,93,44,91,45,56,55,46,52,53,49,49,57,57,44,51,55,46,57,52,48,57,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,72,111,108,109,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,51,49,53,56,57,44,51,51,46,51,48,50,56,50,53,93,44,91,45,57,48,46,51,51,48,51,49,50,44,51,51,46,49,51,55,56,49,56,93,44,91,45,57,48,46,52,50,56,55,55,52,44,51,51,46,49,48,55,57,51,50,93,44,91,45,57,48,46,51,54,52,48,51,49,44,51,51,46,48,49,48,53,57,54,93,44,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,44,91,45,56,57,46,57,48,50,53,48,49,44,51,50,46,57,50,55,57,52,93,44,91,45,56,57,46,55,52,57,52,52,49,44,51,51,46,50,49,52,52,55,56,93,44,91,45,57,48,46,49,55,52,54,49,52,44,51,51,46,51,51,51,51,55,56,93,44,91,45,57,48,46,50,57,53,48,50,57,44,51,51,46,51,54,49,55,56,52,93,44,91,45,57,48,46,51,51,49,53,56,57,44,51,51,46,51,48,50,56,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,79,107,116,105,98,98,101,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,52,56,49,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,56,56,52,52,54,44,51,51,46,53,51,51,50,48,50,93,44,91,45,56,57,46,48,56,56,50,53,53,44,51,51,46,50,56,54,48,48,51,93,44,91,45,56,56,46,56,49,51,48,53,51,44,51,51,46,50,56,54,52,50,52,93,44,91,45,56,56,46,54,54,57,48,55,54,44,51,51,46,50,56,54,57,50,50,93,44,91,45,56,56,46,54,55,49,50,53,44,51,51,46,53,48,54,49,54,56,93,44,91,45,56,56,46,54,55,49,53,50,54,44,51,51,46,53,54,53,49,51,53,93,44,91,45,56,57,46,48,49,56,54,49,51,44,51,51,46,53,54,50,49,49,52,93,44,91,45,56,57,46,48,56,56,52,52,54,44,51,51,46,53,51,51,50,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,101,105,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,53,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,55,54,54,56,51,49,44,49,56,46,50,56,48,48,48,52,93,44,91,45,54,53,46,54,55,49,44,49,56,46,50,50,51,48,53,50,93,44,91,45,54,53,46,54,53,52,55,50,56,44,49,56,46,49,51,51,51,51,53,93,44,91,45,54,53,46,54,49,56,48,53,44,49,56,46,49,53,52,49,56,93,44,91,45,54,53,46,53,53,52,54,52,51,44,49,56,46,49,56,52,55,54,55,93,44,91,45,54,53,46,52,50,50,55,48,54,44,49,56,46,50,57,48,55,50,56,93,44,91,45,54,53,46,52,50,52,52,51,49,44,49,56,46,51,57,48,56,56,93,44,91,45,54,53,46,52,54,57,49,51,50,44,49,56,46,51,57,54,52,49,93,44,91,45,54,53,46,54,50,52,54,48,53,44,49,56,46,50,56,55,55,52,53,93,44,91,45,54,53,46,55,53,51,53,57,49,44,49,56,46,50,57,54,55,53,53,93,44,91,45,54,53,46,55,53,56,56,54,49,44,49,56,46,50,57,48,54,48,52,93,44,91,45,54,53,46,55,54,54,56,51,49,44,49,56,46,50,56,48,48,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,111,114,111,122,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,49,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,54,53,50,55,50,44,49,56,46,51,51,51,50,50,57,93,44,91,45,54,54,46,51,55,55,55,49,50,44,49,56,46,50,57,51,57,55,54,93,44,91,45,54,54,46,51,53,48,55,57,51,44,49,56,46,50,52,49,50,51,53,93,44,91,45,54,54,46,51,49,51,50,57,57,44,49,56,46,50,52,57,51,50,52,93,44,91,45,54,54,46,50,55,56,48,55,54,44,49,56,46,51,50,57,57,55,53,93,44,91,45,54,54,46,51,49,56,55,54,52,44,49,56,46,51,54,55,52,49,49,93,44,91,45,54,54,46,51,54,53,50,55,50,44,49,56,46,51,51,51,50,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,70,101,114,103,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,55,51,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,50,49,51,53,57,54,44,52,55,46,52,49,54,54,53,55,93,44,91,45,49,49,48,46,49,50,55,54,57,57,44,52,55,46,50,55,49,57,49,93,44,91,45,49,48,57,46,55,53,54,53,54,56,44,52,55,46,49,56,53,54,57,52,93,44,91,45,49,48,57,46,55,53,53,52,50,51,44,52,54,46,56,57,54,48,50,51,93,44,91,45,49,48,57,46,55,57,55,52,54,57,44,52,54,46,56,54,55,48,51,56,93,44,91,45,49,48,57,46,55,52,53,55,52,53,44,52,54,46,54,57,52,48,57,55,93,44,91,45,49,48,57,46,51,56,57,49,54,51,44,52,54,46,54,57,51,54,50,53,93,44,91,45,49,48,57,46,51,56,57,50,48,56,44,52,54,46,55,53,49,51,53,49,93,44,91,45,49,48,57,46,48,48,57,53,55,44,52,54,46,55,53,48,55,48,50,93,44,91,45,49,48,56,46,54,51,49,52,54,50,44,52,54,46,55,52,57,51,57,50,93,44,91,45,49,48,56,46,54,48,56,57,53,52,44,52,55,46,48,57,56,49,50,54,93,44,91,45,49,48,56,46,55,51,54,56,51,56,44,52,55,46,48,57,56,50,49,56,93,44,91,45,49,48,56,46,55,49,57,49,56,57,44,52,55,46,50,55,48,51,52,50,93,44,91,45,49,48,56,46,53,57,48,56,51,53,44,52,55,46,51,48,54,53,49,54,93,44,91,45,49,48,56,46,51,49,53,52,56,49,44,52,55,46,51,49,53,49,53,50,93,44,91,45,49,48,56,46,51,49,51,48,52,56,44,52,55,46,53,56,51,54,53,93,44,91,45,49,48,56,46,54,55,49,52,44,52,55,46,54,49,57,53,53,54,93,44,91,45,49,48,56,46,56,57,49,49,49,53,44,52,55,46,55,51,52,52,53,54,93,44,91,45,49,48,56,46,57,52,50,55,52,53,44,52,55,46,55,57,49,56,50,52,93,44,91,45,49,48,57,46,50,55,55,51,56,50,44,52,55,46,55,57,50,52,51,53,93,44,91,45,49,48,57,46,52,49,49,53,48,54,44,52,55,46,55,50,52,54,49,55,93,44,91,45,49,48,57,46,53,51,56,54,55,55,44,52,55,46,55,51,56,56,54,52,93,44,91,45,49,48,57,46,56,50,51,52,48,49,44,52,55,46,55,49,53,53,55,57,93,44,91,45,49,48,57,46,56,52,53,50,50,49,44,52,55,46,53,52,54,55,57,53,93,44,91,45,49,49,48,46,50,49,51,53,57,54,44,52,55,46,52,49,54,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,71,97,114,114,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,55,54,44,34,98,101,100,115,34,58,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,55,54,54,54,50,44,51,57,46,55,50,49,48,55,56,93,44,91,45,55,57,46,52,56,54,56,55,53,44,51,57,46,50,48,53,56,57,54,93,44,91,45,55,57,46,50,55,49,54,57,53,44,51,57,46,51,50,55,57,57,57,93,44,91,45,55,57,46,48,54,55,53,53,57,44,51,57,46,52,55,57,52,52,51,93,44,91,45,55,56,46,57,50,56,52,49,54,44,51,57,46,55,50,50,55,56,51,93,44,91,45,55,57,46,51,57,50,52,53,57,44,51,57,46,55,50,49,53,55,56,93,44,91,45,55,57,46,52,55,54,54,54,50,44,51,57,46,55,50,49,48,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,51,49,44,34,98,101,100,115,34,58,50,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,50,48,57,57,52,44,51,51,46,48,49,56,54,49,54,93,44,91,45,57,51,46,52,53,51,49,50,49,44,51,50,46,56,53,57,57,51,53,93,44,91,45,57,51,46,52,52,49,50,49,50,44,51,50,46,52,49,48,52,51,49,93,44,91,45,57,51,46,51,55,50,55,56,49,44,51,50,46,52,49,48,49,53,51,93,44,91,45,57,51,46,50,51,54,54,53,54,44,51,50,46,52,49,48,48,55,49,93,44,91,45,57,51,46,49,52,55,49,57,51,44,51,50,46,52,53,53,49,55,51,93,44,91,45,57,51,46,49,55,56,55,54,55,44,51,50,46,53,56,52,57,49,54,93,44,91,45,57,51,46,50,51,55,51,56,49,44,51,50,46,55,49,54,50,53,93,44,91,45,57,51,46,50,51,56,54,48,55,44,51,51,46,48,49,55,57,57,50,93,44,91,45,57,51,46,52,57,48,53,50,44,51,51,46,48,49,56,52,52,50,93,44,91,45,57,51,46,53,50,48,57,57,52,44,51,51,46,48,49,56,54,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,105,108,108,115,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,56,51,48,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,50,54,52,57,49,44,52,50,46,48,55,50,52,54,56,93,44,91,45,56,52,46,56,50,53,49,51,44,52,49,46,55,53,57,57,57,57,93,44,91,45,56,52,46,56,48,53,57,55,50,44,52,49,46,54,57,54,49,49,56,93,44,91,45,56,52,46,51,57,57,53,52,54,44,52,49,46,55,48,53,56,49,54,93,44,91,45,56,52,46,51,54,48,52,49,54,44,52,49,46,55,48,54,53,56,57,93,44,91,45,56,52,46,51,54,51,50,57,55,44,52,50,46,48,55,51,52,53,54,93,44,91,45,56,52,46,55,48,57,53,53,54,44,52,50,46,48,55,48,51,54,54,93,44,91,45,56,52,46,56,50,54,52,57,49,44,52,50,46,48,55,50,52,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,56,52,57,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,53,51,49,54,52,44,51,55,46,48,54,49,48,49,57,93,44,91,45,56,55,46,48,54,48,56,52,57,44,51,54,46,54,52,50,57,54,51,93,44,91,45,56,54,46,55,54,51,50,57,54,44,51,54,46,54,52,56,57,53,52,93,44,91,45,56,54,46,54,57,48,55,49,57,44,51,54,46,56,52,52,51,93,44,91,45,56,54,46,54,49,49,53,56,54,44,51,54,46,56,56,51,48,53,55,93,44,91,45,56,54,46,54,55,52,52,54,50,44,51,54,46,57,57,57,55,54,54,93,44,91,45,56,54,46,57,52,49,51,57,49,44,51,55,46,48,54,56,57,56,49,93,44,91,45,56,55,46,48,53,51,49,54,52,44,51,55,46,48,54,49,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,55,51,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,52,56,48,51,44,52,51,46,52,55,55,56,49,53,93,44,91,45,49,48,51,46,48,48,48,57,49,51,44,52,51,46,52,55,54,56,52,56,93,44,91,45,49,48,51,46,48,48,49,48,49,55,44,52,51,46,54,48,53,56,49,54,93,44,91,45,49,48,50,46,56,48,57,51,57,56,44,52,51,46,54,56,55,53,54,93,44,91,45,49,48,50,46,54,56,55,49,57,49,44,52,51,46,56,53,53,53,57,57,93,44,91,45,49,48,52,46,48,53,53,52,56,55,44,52,51,46,56,53,51,52,55,54,93,44,91,45,49,48,52,46,48,53,52,55,56,54,44,52,51,46,53,48,51,51,50,56,93,44,91,45,49,48,52,46,48,53,52,56,48,51,44,52,51,46,52,55,55,56,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,77,101,114,114,105,109,97,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,52,53,50,44,34,98,101,100,115,34,58,53,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,57,51,53,51,49,44,52,51,46,53,50,56,56,56,93,44,91,45,55,50,46,48,57,48,49,52,54,44,52,51,46,51,50,50,53,53,51,93,44,91,45,55,50,46,48,48,57,48,55,52,44,52,51,46,49,56,55,56,56,50,93,44,91,45,55,49,46,57,49,51,50,49,53,44,52,51,46,50,48,55,48,57,57,93,44,91,45,55,49,46,56,53,54,49,44,52,51,46,49,49,53,49,51,53,93,44,91,45,55,49,46,54,54,55,55,55,49,44,52,51,46,49,53,50,53,51,52,93,44,91,45,55,49,46,54,52,49,50,57,49,44,52,51,46,48,53,52,49,54,56,93,44,91,45,55,49,46,53,49,55,52,54,55,44,52,51,46,48,54,56,57,48,57,93,44,91,45,55,49,46,51,57,50,51,56,56,44,52,51,46,48,48,57,51,48,57,93,44,91,45,55,49,46,50,52,55,51,51,54,44,52,51,46,50,55,53,50,51,50,93,44,91,45,55,49,46,50,51,54,48,49,49,44,52,51,46,50,56,52,57,57,52,93,44,91,45,55,49,46,53,53,48,48,51,44,52,51,46,52,53,50,55,48,49,93,44,91,45,55,49,46,54,49,50,52,50,54,44,52,51,46,52,51,55,56,57,51,93,44,91,45,55,49,46,55,50,55,53,55,51,44,52,51,46,53,54,51,52,49,49,93,44,91,45,55,49,46,57,51,53,51,49,44,52,51,46,53,50,56,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,52,48,49,52,44,34,98,101,100,115,34,58,57,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,51,55,52,50,53,44,52,48,46,48,54,57,57,52,53,93,44,91,45,55,55,46,48,49,56,54,52,56,44,52,48,46,48,49,51,57,52,55,93,44,91,45,55,54,46,57,53,52,57,51,50,44,51,57,46,56,53,54,56,53,93,44,91,45,55,54,46,57,57,57,51,49,56,44,51,57,46,55,50,48,49,48,54,93,44,91,45,55,54,46,55,56,55,48,57,54,44,51,57,46,55,50,48,56,93,44,91,45,55,54,46,53,54,57,52,52,57,44,51,57,46,55,50,49,49,55,56,93,44,91,45,55,54,46,50,51,57,56,48,53,44,51,57,46,55,50,49,51,51,53,93,44,91,45,55,54,46,52,55,51,53,56,44,51,57,46,57,52,55,51,53,50,93,44,91,45,55,54,46,53,51,52,53,50,52,44,52,48,46,48,53,49,51,52,56,93,44,91,45,55,54,46,55,50,49,54,50,44,52,48,46,49,50,48,48,55,93,44,91,45,55,54,46,56,53,57,48,50,51,44,52,48,46,50,50,54,51,50,56,93,44,91,45,55,55,46,49,51,55,52,50,53,44,52,48,46,48,54,57,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,82,117,116,104,101,114,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,53,51,50,44,34,98,101,100,115,34,58,49,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,54,49,51,48,53,44,51,53,46,51,57,51,49,57,56,93,44,91,45,56,50,46,49,53,49,53,51,53,44,51,53,46,52,48,55,53,56,49,93,44,91,45,56,49,46,57,54,56,55,56,56,44,51,53,46,50,53,55,55,54,52,93,44,91,45,56,49,46,57,54,57,51,52,56,44,51,53,46,49,56,55,50,49,55,93,44,91,45,56,49,46,56,55,52,54,56,57,44,51,53,46,49,56,52,48,51,54,93,44,91,45,56,49,46,55,54,56,49,48,50,44,51,53,46,49,56,48,54,49,49,93,44,91,45,56,49,46,55,48,50,56,53,51,44,51,53,46,51,53,55,51,48,52,93,44,91,45,56,49,46,54,57,49,57,56,57,44,51,53,46,53,56,48,48,52,49,93,44,91,45,56,49,46,56,50,52,49,50,50,44,51,53,46,53,55,52,57,56,51,93,44,91,45,56,49,46,57,54,55,54,49,57,44,51,53,46,53,50,54,48,48,55,93,44,91,45,56,50,46,49,54,57,48,52,57,44,51,53,46,53,50,55,56,49,49,93,44,91,45,56,50,46,50,54,53,55,57,53,44,51,53,46,52,54,55,56,49,56,93,44,91,45,56,50,46,50,54,49,51,48,53,44,51,53,46,51,57,51,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,101,97,100,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,48,53,55,54,50,44,52,52,46,54,51,52,49,53,57,93,44,91,45,57,56,46,55,48,48,52,53,51,44,52,52,46,49,57,54,55,50,55,93,44,91,45,57,56,46,51,51,49,57,49,44,52,52,46,49,57,54,54,56,55,93,44,91,45,57,55,46,56,53,51,54,54,44,52,52,46,49,57,53,50,51,51,93,44,91,45,57,55,46,56,53,51,48,50,56,44,52,52,46,53,52,52,51,57,56,93,44,91,45,57,55,46,57,55,55,55,57,49,44,52,52,46,54,51,49,54,48,50,93,44,91,45,57,56,46,55,48,53,55,54,50,44,52,52,46,54,51,52,49,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,117,108,108,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,51,49,51,44,34,98,101,100,115,34,58,49,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,56,49,57,51,54,44,51,52,46,51,48,52,54,57,52,93,44,91,45,56,55,46,49,49,48,49,49,49,44,51,52,46,51,49,51,55,57,57,93,44,91,45,56,55,46,49,48,57,57,49,49,44,51,52,46,50,57,57,50,57,57,93,44,91,45,56,55,46,49,49,49,57,57,50,44,51,51,46,57,57,50,51,56,53,93,44,91,45,56,55,46,49,53,49,48,51,54,44,51,51,46,57,57,51,50,50,53,93,44,91,45,56,54,46,57,54,51,51,53,56,44,51,51,46,56,53,56,50,50,49,93,44,91,45,56,54,46,55,54,51,57,57,57,44,51,51,46,57,55,52,49,56,55,93,44,91,45,56,54,46,54,56,55,54,57,55,44,51,52,46,48,56,48,55,51,53,93,44,91,45,56,54,46,53,57,57,55,56,53,44,51,52,46,49,50,49,55,50,93,44,91,45,56,54,46,53,49,57,54,48,51,44,51,52,46,50,53,49,55,54,54,93,44,91,45,56,54,46,52,53,51,48,50,44,51,52,46,50,53,57,51,49,55,93,44,91,45,56,54,46,53,56,49,57,51,54,44,51,52,46,51,48,52,54,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,56,52,48,44,34,98,101,100,115,34,58,49,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,48,49,54,56,56,44,51,51,46,55,56,48,55,48,51,93,44,91,45,56,52,46,57,48,53,55,56,56,44,51,51,46,53,55,51,51,55,56,93,44,91,45,56,52,46,56,48,56,57,51,52,44,51,51,46,53,55,52,48,56,53,93,44,91,45,56,52,46,54,53,54,52,51,51,44,51,51,46,54,53,57,52,48,57,93,44,91,45,56,52,46,53,55,56,49,51,50,44,51,51,46,55,52,51,53,48,55,93,44,91,45,56,52,46,55,50,52,49,51,57,44,51,51,46,56,48,54,49,55,93,44,91,45,56,52,46,57,48,49,54,56,56,44,51,51,46,55,56,48,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,57,55,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,54,51,54,51,50,44,52,48,46,53,50,51,48,49,51,93,44,91,45,57,54,46,52,54,51,54,54,55,44,52,48,46,50,54,50,49,55,51,93,44,91,45,57,54,46,48,54,54,55,51,54,44,52,48,46,50,54,50,48,51,56,93,44,91,45,57,54,46,48,54,55,48,49,50,44,52,48,46,53,50,51,49,52,56,93,44,91,45,57,54,46,52,54,51,54,51,50,44,52,48,46,53,50,51,48,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,56,52,55,50,54,52,44,51,53,46,55,49,57,57,56,50,93,44,91,45,55,54,46,54,51,55,53,49,51,44,51,53,46,55,48,53,50,49,53,93,44,91,45,55,54,46,52,48,53,57,55,49,44,51,53,46,54,57,55,53,55,57,93,44,91,45,55,54,46,51,53,51,54,54,57,44,51,53,46,56,54,49,51,54,53,93,44,91,45,55,54,46,51,53,56,51,57,51,44,51,54,46,48,50,48,48,49,57,93,44,91,45,55,54,46,51,57,54,55,57,52,44,51,54,46,48,50,54,52,52,51,93,44,91,45,55,54,46,54,48,54,50,49,52,44,51,53,46,57,55,56,48,53,49,93,44,91,45,55,54,46,55,54,48,53,57,56,44,51,53,46,56,54,52,56,56,55,93,44,91,45,55,54,46,56,52,55,50,54,52,44,51,53,46,55,49,57,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,52,54,57,49,54,44,52,52,46,49,54,56,52,56,52,93,44,91,45,49,48,49,46,48,54,52,48,54,56,44,52,51,46,57,57,52,57,50,57,93,44,91,45,49,48,49,46,48,54,52,51,50,54,44,52,51,46,56,52,49,48,57,93,44,91,45,49,48,48,46,57,56,55,48,50,55,44,52,51,46,56,52,57,49,51,50,93,44,91,45,49,48,48,46,54,55,57,51,50,50,44,52,51,46,55,49,49,54,51,54,93,44,91,45,49,48,48,46,53,53,52,54,56,55,44,52,51,46,55,51,55,50,52,55,93,44,91,45,49,48,48,46,51,51,56,57,55,44,52,51,46,55,49,54,57,52,50,93,44,91,45,49,48,48,46,51,54,54,49,55,52,44,52,51,46,56,52,54,57,55,56,93,44,91,45,49,48,48,46,51,54,55,50,48,55,44,52,52,46,49,54,56,54,57,52,93,44,91,45,49,48,49,46,48,52,54,57,49,54,44,52,52,46,49,54,56,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,48,54,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,50,55,54,56,50,57,44,51,53,46,49,57,53,55,50,50,93,44,91,45,56,48,46,51,50,48,56,50,56,44,51,52,46,56,49,51,57,48,54,93,44,91,45,55,57,46,57,50,55,52,49,50,44,51,52,46,56,48,54,55,51,52,93,44,91,45,55,57,46,56,52,57,53,51,54,44,51,52,46,57,48,48,48,48,54,93,44,91,45,55,57,46,57,52,54,49,50,50,44,51,53,46,49,49,56,53,57,51,93,44,91,45,56,48,46,48,55,53,51,54,53,44,51,53,46,49,52,51,48,56,49,93,44,91,45,56,48,46,50,55,54,56,50,57,44,51,53,46,49,57,53,55,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,48,34,44,34,78,65,77,69,34,58,34,72,97,105,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,53,46,55,49,55,51,48,55,44,53,57,46,55,51,48,48,52,51,93,44,91,45,49,51,53,46,57,53,50,54,52,53,44,53,57,46,54,54,50,49,54,54,93,44,91,45,49,51,54,46,49,57,50,57,48,52,44,53,57,46,54,52,48,48,50,55,93,44,91,45,49,51,54,46,51,48,53,48,50,50,44,53,57,46,52,54,52,53,49,56,93,44,91,45,49,51,54,46,52,55,55,49,53,54,44,53,57,46,52,54,53,56,50,52,93,44,91,45,49,51,54,46,52,56,56,52,48,50,44,53,57,46,50,53,57,50,57,93,44,91,45,49,51,53,46,57,54,57,56,52,55,44,53,57,46,49,55,57,55,52,93,44,91,45,49,51,53,46,55,49,48,51,56,51,44,53,57,46,49,48,49,52,57,49,93,44,91,45,49,51,53,46,53,54,54,56,54,53,44,53,56,46,57,54,51,56,50,93,44,91,45,49,51,53,46,55,53,53,51,50,51,44,53,56,46,55,52,53,57,53,52,93,44,91,45,49,51,53,46,52,50,50,54,56,55,44,53,56,46,54,51,49,52,49,54,93,44,91,45,49,51,53,46,52,55,54,49,51,57,44,53,56,46,52,55,53,51,52,55,93,44,91,45,49,51,53,46,52,52,57,54,56,55,44,53,56,46,51,49,55,48,55,51,93,44,91,45,49,51,53,46,50,53,48,48,50,44,53,56,46,49,54,54,55,93,44,91,45,49,51,53,46,48,48,48,52,51,50,44,53,56,46,49,49,56,48,54,52,93,44,91,45,49,51,53,46,48,55,48,52,53,44,53,56,46,52,57,57,56,57,55,93,44,91,45,49,51,53,46,50,49,57,49,50,56,44,53,56,46,57,55,52,57,55,50,93,44,91,45,49,51,52,46,51,50,49,52,52,54,44,53,56,46,57,54,51,54,50,57,93,44,91,45,49,51,52,46,52,56,51,51,57,53,44,53,57,46,49,51,49,54,48,51,93,44,91,45,49,51,52,46,55,48,48,55,49,54,44,53,57,46,50,52,57,48,49,49,93,44,91,45,49,51,52,46,57,53,57,57,48,53,44,53,57,46,50,56,48,57,50,54,93,44,91,45,49,51,53,46,48,51,48,53,50,53,44,53,57,46,51,52,54,51,52,56,93,44,91,45,49,51,53,46,51,55,53,48,50,44,53,57,46,51,53,48,48,51,51,93,44,91,45,49,51,53,46,55,49,55,51,48,55,44,53,57,46,55,51,48,48,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,105,108,108,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,54,54,54,54,55,53,44,52,55,46,51,50,57,50,53,54,93,44,91,45,49,48,51,46,54,54,55,48,55,51,44,52,54,46,57,55,57,55,55,53,93,44,91,45,49,48,51,46,54,48,57,53,57,50,44,52,54,46,57,55,57,56,53,52,93,44,91,45,49,48,51,46,54,48,57,50,55,51,44,52,54,46,54,50,57,56,50,50,93,44,91,45,49,48,51,46,50,51,49,54,53,54,44,52,54,46,54,50,57,55,54,52,93,44,91,45,49,48,51,46,50,51,49,48,53,54,44,52,54,46,57,56,48,50,57,54,93,44,91,45,49,48,51,46,48,51,50,54,56,49,44,52,54,46,57,56,48,53,56,93,44,91,45,49,48,51,46,48,51,50,51,54,54,44,52,55,46,51,50,56,54,56,54,93,44,91,45,49,48,51,46,48,57,57,49,57,55,44,52,55,46,51,50,56,55,49,52,93,44,91,45,49,48,51,46,54,54,54,54,55,53,44,52,55,46,51,50,57,50,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,116,101,108,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,55,50,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,48,48,50,51,53,44,52,50,46,52,51,54,57,49,51,93,44,91,45,57,56,46,51,48,48,53,57,50,44,52,50,46,48,56,56,56,53,51,93,44,91,45,57,56,46,50,57,53,54,48,50,44,52,49,46,57,49,52,57,53,52,93,44,91,45,57,55,46,56,51,51,50,56,56,44,52,49,46,57,49,54,50,56,54,93,44,91,45,57,55,46,56,51,52,53,51,54,44,52,50,46,48,56,57,55,53,93,44,91,45,57,55,46,56,51,52,52,51,49,44,52,50,46,52,51,55,54,56,52,93,44,91,45,57,56,46,51,48,48,50,51,53,44,52,50,46,52,51,54,57,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,97,115,99,111,110,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,52,54,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,49,56,54,51,55,44,51,56,46,55,48,57,55,55,56,93,44,91,45,57,49,46,53,52,53,51,49,51,44,51,56,46,54,55,54,56,56,50,93,44,91,45,57,49,46,54,52,48,51,55,50,44,51,56,46,55,48,51,55,57,50,93,44,91,45,57,49,46,54,52,52,55,50,57,44,51,56,46,50,56,56,53,49,93,44,91,45,57,49,46,54,51,48,53,53,52,44,51,56,46,49,53,51,53,49,57,93,44,91,45,57,49,46,53,51,52,51,56,52,44,51,56,46,49,53,50,53,57,51,93,44,91,45,57,49,46,51,54,55,52,56,50,44,51,56,46,50,48,57,55,52,49,93,44,91,45,57,49,46,51,54,57,49,57,50,44,51,56,46,54,57,57,51,50,52,93,44,91,45,57,49,46,52,49,56,54,51,55,44,51,56,46,55,48,57,55,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,49,50,48,57,53,44,51,55,46,51,57,53,49,50,51,93,44,91,45,56,54,46,56,50,57,51,55,49,44,51,55,46,50,56,49,51,54,53,93,44,91,45,56,54,46,56,57,57,50,54,56,44,51,55,46,50,49,50,51,49,51,93,44,91,45,56,54,46,57,52,49,51,57,49,44,51,55,46,48,54,56,57,56,49,93,44,91,45,56,54,46,54,55,52,52,54,50,44,51,54,46,57,57,57,55,54,54,93,44,91,45,56,54,46,54,49,56,49,53,56,44,51,55,46,49,56,51,57,48,54,93,44,91,45,56,54,46,51,57,57,49,54,53,44,51,55,46,49,54,57,56,57,54,93,44,91,45,56,54,46,52,54,57,49,50,54,44,51,55,46,51,50,49,48,57,57,93,44,91,45,56,54,46,54,49,50,48,57,53,44,51,55,46,51,57,53,49,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,97,109,112,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,55,48,56,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,48,57,54,55,54,44,52,52,46,53,54,51,57,56,49,93,44,91,45,49,48,54,46,48,49,55,51,54,54,44,52,51,46,52,57,52,57,54,57,93,44,91,45,49,48,53,46,48,55,57,55,57,55,44,52,51,46,52,57,56,52,52,53,93,44,91,45,49,48,53,46,48,55,57,50,56,49,44,52,52,46,49,55,54,49,56,50,93,44,91,45,49,48,53,46,48,56,53,52,53,49,44,52,52,46,55,56,54,56,48,49,93,44,91,45,49,48,53,46,48,55,54,54,48,49,44,52,52,46,57,57,57,57,50,54,93,44,91,45,49,48,54,46,48,50,52,56,49,53,44,52,52,46,57,57,51,52,57,53,93,44,91,45,49,48,54,46,48,48,57,54,55,54,44,52,52,46,53,54,51,57,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,49,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,51,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,48,53,57,50,56,44,51,51,46,56,49,55,55,54,93,44,91,45,56,51,46,54,56,48,56,57,54,44,51,51,46,53,57,54,57,49,57,93,44,91,45,56,51,46,54,56,50,49,57,54,44,51,51,46,53,50,54,50,50,93,44,91,45,56,51,46,53,51,51,55,51,54,44,51,51,46,52,51,52,52,55,50,93,44,91,45,56,51,46,50,55,57,57,51,49,44,51,51,46,52,56,51,52,51,56,93,44,91,45,56,51,46,50,55,55,54,49,49,44,51,51,46,53,50,55,54,51,93,44,91,45,56,51,46,52,48,54,49,56,57,44,51,51,46,54,57,56,51,48,55,93,44,91,45,56,51,46,53,48,53,57,50,56,44,51,51,46,56,49,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,114,111,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,48,50,52,50,57,44,51,53,46,52,52,49,55,50,54,93,44,91,45,57,49,46,48,51,57,50,51,44,51,53,46,52,52,52,55,49,55,93,44,91,45,57,49,46,48,51,57,55,56,51,44,51,53,46,51,53,52,50,53,54,93,44,91,45,57,49,46,48,52,50,54,55,44,51,53,46,49,52,56,49,56,57,93,44,91,45,57,48,46,53,48,50,57,57,51,44,51,53,46,49,52,52,50,49,52,93,44,91,45,57,48,46,53,48,50,52,50,57,44,51,53,46,52,52,49,55,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,80,104,105,108,108,105,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,51,52,44,34,98,101,100,115,34,58,49,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,53,49,57,49,56,44,51,52,46,54,52,53,55,50,49,93,44,91,45,57,49,46,48,53,54,50,55,54,44,51,52,46,51,51,54,54,48,53,93,44,91,45,57,49,46,49,49,55,57,48,53,44,51,52,46,49,49,57,49,48,53,93,44,91,45,57,48,46,57,53,53,49,55,44,51,52,46,49,49,56,56,51,51,93,44,91,45,57,48,46,57,53,53,57,55,52,44,51,52,46,49,50,48,49,50,53,93,44,91,45,57,48,46,56,51,51,51,51,53,44,51,52,46,50,54,52,50,54,52,93,44,91,45,57,48,46,53,56,48,54,56,49,44,51,52,46,52,49,48,53,53,49,93,44,91,45,57,48,46,53,54,57,51,52,55,44,51,52,46,53,50,52,56,54,55,93,44,91,45,57,48,46,53,56,51,50,50,52,44,51,52,46,54,52,49,51,56,57,93,44,91,45,57,49,46,48,53,49,57,49,56,44,51,52,46,54,52,53,55,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,83,116,46,32,74,97,109,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,53,55,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,52,49,57,57,56,44,51,48,46,49,54,54,52,51,93,44,91,45,57,48,46,57,49,53,53,54,53,44,51,48,46,49,49,51,50,56,53,93,44,91,45,57,48,46,57,54,51,54,57,51,44,51,48,46,48,54,54,52,53,93,44,91,45,57,48,46,57,53,57,56,54,57,44,50,57,46,57,55,55,57,50,52,93,44,91,45,57,48,46,56,56,53,53,56,57,44,50,57,46,57,48,53,51,53,51,93,44,91,45,57,48,46,54,53,54,51,49,50,44,50,57,46,56,56,57,50,52,54,93,44,91,45,57,48,46,54,52,49,57,57,56,44,51,48,46,49,54,54,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,89,117,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,52,57,51,44,34,98,101,100,115,34,58,50,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,54,50,51,55,54,44,51,57,46,50,57,53,54,50,49,93,44,91,45,49,50,49,46,54,50,57,48,56,57,44,51,57,46,50,48,52,54,55,56,93,44,91,45,49,50,49,46,53,52,51,51,48,54,44,51,56,46,57,55,50,52,48,52,93,44,91,45,49,50,49,46,52,49,52,55,55,57,44,51,56,46,57,57,54,52,53,50,93,44,91,45,49,50,49,46,50,55,57,53,51,51,44,51,57,46,48,51,52,54,49,56,93,44,91,45,49,50,49,46,50,54,54,57,49,49,44,51,57,46,50,55,49,54,48,57,93,44,91,45,49,50,49,46,49,50,50,51,49,53,44,51,57,46,51,55,56,56,50,54,93,44,91,45,49,50,49,46,48,50,50,48,56,53,44,51,57,46,51,57,49,53,53,56,93,44,91,45,49,50,49,46,48,48,57,52,55,55,44,51,57,46,54,51,57,52,53,57,93,44,91,45,49,50,49,46,48,55,54,54,57,53,44,51,57,46,53,57,55,50,54,52,93,44,91,45,49,50,49,46,49,52,57,57,48,55,44,51,57,46,53,50,54,52,52,54,93,44,91,45,49,50,49,46,51,48,53,49,50,50,44,51,57,46,53,49,57,53,56,53,93,44,91,45,49,50,49,46,52,48,55,53,50,55,44,51,57,46,51,51,57,55,53,52,93,44,91,45,49,50,49,46,54,50,51,55,54,44,51,57,46,50,57,53,54,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,50,54,49,44,34,98,101,100,115,34,58,50,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,50,54,56,52,54,44,51,51,46,50,52,54,52,53,57,93,44,91,45,56,55,46,48,50,53,53,57,54,44,51,51,46,49,54,53,55,57,53,93,44,91,45,56,54,46,56,56,49,49,56,50,44,51,51,46,48,52,57,57,48,49,93,44,91,45,56,54,46,54,49,48,48,48,51,44,51,51,46,48,55,48,48,48,51,93,44,91,45,56,54,46,53,49,55,51,52,52,44,51,51,46,48,50,48,53,54,54,93,44,91,45,56,54,46,52,57,49,48,50,57,44,51,51,46,49,48,50,57,52,52,93,44,91,45,56,54,46,53,48,51,49,50,55,44,51,51,46,49,55,57,49,52,52,93,44,91,45,56,54,46,51,53,55,51,52,44,51,51,46,50,57,54,57,49,55,93,44,91,45,56,54,46,51,55,56,54,54,53,44,51,51,46,51,57,48,57,56,51,93,44,91,45,56,54,46,51,55,56,50,50,50,44,51,51,46,53,48,50,52,49,49,93,44,91,45,56,54,46,53,49,54,55,56,51,44,51,51,46,53,52,53,56,57,54,93,44,91,45,56,54,46,54,55,52,52,49,56,44,51,51,46,52,54,54,53,50,49,93,44,91,45,56,55,46,48,50,54,56,52,54,44,51,51,46,50,52,54,52,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,79,117,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,54,51,53,48,52,44,51,56,46,51,48,49,56,57,54,93,44,91,45,49,48,55,46,54,51,53,54,57,55,44,51,56,46,51,51,50,49,52,56,93,44,91,45,49,48,56,46,49,51,50,51,56,44,51,56,46,51,51,49,53,55,51,93,44,91,45,49,48,56,46,48,56,54,54,48,52,44,51,56,46,50,53,53,50,48,50,93,44,91,45,49,48,55,46,57,51,55,53,56,56,44,51,56,46,50,49,56,57,57,50,93,44,91,45,49,48,55,46,57,54,53,55,56,57,44,51,56,46,49,53,50,51,50,56,93,44,91,45,49,48,55,46,57,48,48,49,57,51,44,51,56,46,48,50,54,50,52,57,93,44,91,45,49,48,55,46,55,57,53,52,54,57,44,51,55,46,57,56,56,53,50,93,44,91,45,49,48,55,46,55,51,56,50,56,51,44,51,55,46,57,48,53,52,51,50,93,44,91,45,49,48,55,46,53,54,56,56,55,53,44,51,55,46,57,54,53,48,49,53,93,44,91,45,49,48,55,46,53,49,54,56,51,44,51,56,46,48,54,57,55,52,49,93,44,91,45,49,48,55,46,53,54,56,54,50,44,51,56,46,49,52,55,50,54,55,93,44,91,45,49,48,55,46,54,51,53,48,52,44,51,56,46,51,48,49,56,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,117,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,49,57,57,44,34,98,101,100,115,34,58,49,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,52,50,55,48,49,44,51,52,46,57,53,52,49,52,50,93,44,91,45,49,48,51,46,50,56,52,49,52,57,44,51,52,46,57,53,52,49,55,50,93,44,91,45,49,48,51,46,50,56,52,51,49,55,44,51,52,46,56,54,52,57,57,93,44,91,45,49,48,51,46,52,57,53,54,53,51,44,51,52,46,54,57,49,51,57,51,93,44,91,45,49,48,51,46,55,48,53,55,56,56,44,51,52,46,54,57,50,52,52,54,93,44,91,45,49,48,51,46,55,51,56,49,54,54,44,51,52,46,54,48,52,54,55,93,44,91,45,49,48,51,46,55,52,48,48,54,54,44,51,52,46,51,48,51,48,53,54,93,44,91,45,49,48,51,46,48,52,51,55,54,55,44,51,52,46,51,48,50,54,52,56,93,44,91,45,49,48,51,46,48,52,51,55,54,50,44,51,52,46,51,49,50,55,53,93,44,91,45,49,48,51,46,48,52,50,57,56,50,44,51,52,46,55,52,55,51,54,49,93,44,91,45,49,48,51,46,48,52,50,55,48,49,44,51,52,46,57,53,52,49,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,51,50,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,54,52,50,49,55,44,51,53,46,52,54,53,51,50,56,93,44,91,45,57,57,46,51,54,48,50,50,54,44,51,53,46,49,49,54,55,51,56,93,44,91,45,57,56,46,55,52,57,49,53,56,44,51,53,46,49,49,54,51,52,54,93,44,91,45,57,56,46,54,50,48,54,57,50,44,51,53,46,48,57,55,55,54,53,93,44,91,45,57,56,46,54,50,51,51,51,54,44,51,53,46,52,54,52,50,50,53,93,44,91,45,57,57,46,51,54,52,50,49,55,44,51,53,46,52,54,53,51,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,57,51,56,44,34,98,101,100,115,34,58,57,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,53,55,57,53,50,44,51,54,46,50,52,51,52,52,53,93,44,91,45,55,57,46,50,52,57,53,51,56,44,51,53,46,56,55,54,56,49,93,44,91,45,55,57,46,48,49,54,51,48,53,44,51,53,46,56,54,51,50,49,93,44,91,45,55,56,46,57,53,48,53,57,55,44,51,54,46,50,51,57,51,50,93,44,91,45,55,57,46,49,53,51,57,57,55,44,51,54,46,50,52,49,56,55,53,93,44,91,45,55,57,46,50,53,55,57,53,50,44,51,54,46,50,52,51,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,51,48,49,55,44,52,49,46,49,55,50,51,49,56,93,44,91,45,56,54,46,57,51,48,55,53,57,44,52,48,46,57,49,50,52,49,56,93,44,91,45,56,54,46,53,56,49,53,51,50,44,52,48,46,57,49,48,57,50,53,93,44,91,45,56,54,46,52,54,56,53,48,57,44,52,48,46,57,48,57,56,56,57,93,44,91,45,56,54,46,52,54,55,48,52,54,44,52,49,46,49,55,49,52,52,50,93,44,91,45,56,54,46,57,51,48,49,55,44,52,49,46,49,55,50,51,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,101,110,122,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,53,50,44,34,98,101,100,115,34,58,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,56,52,54,57,50,56,44,52,52,46,53,49,57,52,50,57,93,44,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,44,91,45,56,53,46,56,49,53,49,49,57,44,52,52,46,55,55,52,53,51,52,93,44,91,45,56,54,46,55,51,52,53,50,57,44,52,52,46,55,55,51,48,55,52,93,44,91,45,56,54,46,55,55,56,51,57,56,44,52,52,46,54,55,53,50,49,57,93,44,91,45,56,54,46,56,52,54,57,50,56,44,52,52,46,53,49,57,52,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,69,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,57,56,54,54,44,34,98,101,100,115,34,58,50,54,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,49,57,50,50,56,44,52,51,46,48,54,55,57,53,56,93,44,91,45,55,57,46,48,49,49,53,54,51,44,52,50,46,57,56,53,50,53,54,93,44,91,45,55,56,46,57,48,53,54,53,57,44,52,50,46,57,50,51,51,53,55,93,44,91,45,55,56,46,57,57,57,55,54,44,52,50,46,56,48,52,51,54,56,93,44,91,45,55,57,46,51,49,50,49,51,54,44,52,50,46,54,56,54,56,48,53,93,44,91,45,55,57,46,48,54,48,55,55,55,44,52,50,46,53,51,55,56,53,51,93,44,91,45,55,56,46,56,57,53,57,57,57,44,52,50,46,52,52,48,56,48,55,93,44,91,45,55,56,46,52,54,51,57,52,44,52,50,46,53,51,54,51,51,50,93,44,91,45,55,56,46,52,54,52,51,56,49,44,52,50,46,56,54,55,52,54,49,93,44,91,45,55,56,46,52,54,52,52,52,57,44,52,51,46,48,56,56,55,48,51,93,44,91,45,55,56,46,56,48,50,48,53,49,44,52,51,46,48,54,53,55,56,49,93,44,91,45,55,56,46,56,51,57,51,53,44,52,51,46,48,49,57,52,53,51,93,44,91,45,55,57,46,48,49,57,50,50,56,44,52,51,46,48,54,55,57,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,48,49,51,51,44,34,98,101,100,115,34,58,50,48,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,54,56,56,48,49,44,51,57,46,51,53,51,53,48,50,93,44,91,45,55,55,46,52,53,56,56,48,56,44,51,57,46,50,50,48,50,55,93,44,91,45,55,55,46,53,50,55,51,50,50,44,51,57,46,49,52,54,57,54,49,93,44,91,45,55,55,46,52,54,48,54,48,50,44,51,57,46,48,55,52,56,52,51,93,44,91,45,55,55,46,51,50,56,51,49,56,44,51,57,46,48,53,55,54,55,56,93,44,91,45,55,55,46,49,49,57,55,57,50,44,51,56,46,57,51,52,51,55,52,93,44,91,45,55,55,46,49,49,57,55,53,57,44,51,56,46,57,51,52,51,52,51,93,44,91,45,55,55,46,48,48,50,52,51,54,44,51,56,46,57,54,53,54,55,51,93,44,91,45,55,54,46,56,56,56,53,48,53,44,51,57,46,49,51,48,57,54,55,93,44,91,45,55,54,46,57,52,56,53,55,57,44,51,57,46,49,50,57,53,57,55,93,44,91,45,55,55,46,49,54,56,56,48,49,44,51,57,46,51,53,51,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,56,53,34,44,34,78,65,77,69,34,58,34,77,97,110,97,115,115,97,115,32,80,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,53,56,54,57,53,44,51,56,46,55,55,50,51,49,57,93,44,91,45,55,55,46,52,50,55,51,51,50,44,51,56,46,55,53,51,53,57,56,93,44,91,45,55,55,46,52,50,48,53,56,49,44,51,56,46,55,54,50,50,56,55,93,44,91,45,55,55,46,52,55,53,55,54,44,51,56,46,55,56,49,49,55,49,93,44,91,45,55,55,46,52,53,56,54,57,53,44,51,56,46,55,55,50,51,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,65,114,108,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,56,48,51,44,34,98,101,100,115,34,58,51,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,55,50,50,55,54,44,51,56,46,56,57,51,50,52,53,93,44,91,45,55,55,46,49,52,57,55,48,49,44,51,56,46,56,55,53,54,55,93,44,91,45,55,55,46,49,49,48,55,57,57,44,51,56,46,56,52,51,52,52,54,93,44,91,45,55,55,46,48,52,56,48,50,44,51,56,46,56,52,49,50,54,49,93,44,91,45,55,55,46,49,49,57,55,53,57,44,51,56,46,57,51,52,51,52,51,93,44,91,45,55,55,46,49,49,57,55,57,50,44,51,56,46,57,51,52,51,55,52,93,44,91,45,55,55,46,49,55,50,50,55,54,44,51,56,46,56,57,51,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,55,51,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,52,48,52,56,51,44,51,54,46,56,55,57,48,48,49,93,44,91,45,56,49,46,48,52,50,52,50,56,44,51,54,46,56,48,54,52,52,56,93,44,91,45,56,48,46,57,51,50,50,55,49,44,51,54,46,54,55,49,53,57,51,93,44,91,45,56,48,46,57,49,54,49,54,54,44,51,54,46,54,57,52,54,52,93,44,91,45,56,48,46,56,55,55,50,55,52,44,51,54,46,54,57,50,50,49,53,93,44,91,45,56,48,46,57,49,52,49,55,51,44,51,54,46,54,53,48,50,52,54,93,44,91,45,56,48,46,56,51,55,57,53,52,44,51,54,46,53,53,57,49,52,51,93,44,91,45,56,48,46,54,49,50,48,53,55,44,51,54,46,53,53,55,56,57,56,93,44,91,45,56,48,46,52,54,52,49,56,44,51,54,46,55,48,56,55,49,56,93,44,91,45,56,48,46,54,51,51,57,56,55,44,51,54,46,57,51,49,55,56,93,44,91,45,56,48,46,55,52,48,52,56,51,44,51,54,46,56,55,57,48,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,104,97,114,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,57,57,56,53,44,34,98,101,100,115,34,58,57,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,53,56,53,51,54,44,51,56,46,56,55,48,56,54,53,93,44,91,45,57,48,46,57,54,52,52,54,49,44,51,56,46,53,52,55,53,52,53,93,44,91,45,57,48,46,57,49,54,53,53,52,44,51,56,46,53,51,52,55,50,53,93,44,91,45,57,48,46,55,51,50,51,50,56,44,51,56,46,54,51,57,51,48,50,93,44,91,45,57,48,46,53,52,49,54,49,50,44,51,56,46,54,56,53,50,54,55,93,44,91,45,57,48,46,52,52,48,54,49,55,44,51,56,46,56,50,55,54,53,93,44,91,45,57,48,46,50,57,56,55,52,51,44,51,56,46,56,56,55,55,53,57,93,44,91,45,57,48,46,49,49,55,55,48,55,44,51,56,46,56,48,53,55,52,56,93,44,91,45,57,48,46,50,55,53,55,48,50,44,51,56,46,57,50,51,53,50,57,93,44,91,45,57,48,46,52,53,48,56,49,51,44,51,56,46,57,54,55,55,54,57,93,44,91,45,57,48,46,53,52,54,56,51,49,44,51,56,46,56,55,52,48,48,57,93,44,91,45,57,48,46,54,54,51,49,56,49,44,51,56,46,57,51,52,50,50,52,93,44,91,45,57,48,46,56,50,50,55,50,52,44,51,56,46,56,55,54,51,57,50,93,44,91,45,57,48,46,57,53,56,53,51,54,44,51,56,46,56,55,48,56,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,83,97,110,32,66,101,110,105,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,52,49,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,54,52,52,48,48,49,44,51,54,46,56,57,51,57,57,54,93,44,91,45,49,50,49,46,51,49,56,54,56,57,44,51,54,46,54,49,48,51,50,56,93,44,91,45,49,50,49,46,51,50,56,54,57,55,44,51,54,46,53,53,52,55,52,93,44,91,45,49,50,49,46,48,52,48,55,57,55,44,51,54,46,51,50,51,57,54,57,93,44,91,45,49,50,48,46,56,54,51,57,56,55,44,51,54,46,50,57,49,57,51,49,93,44,91,45,49,50,48,46,55,54,49,52,56,51,44,51,54,46,50,48,51,53,56,93,44,91,45,49,50,48,46,54,55,56,53,56,50,44,51,54,46,50,54,55,51,49,57,93,44,91,45,49,50,48,46,53,57,54,53,54,50,44,51,54,46,51,50,56,52,56,56,93,44,91,45,49,50,48,46,54,48,51,55,48,54,44,51,54,46,52,56,56,50,52,50,93,44,91,45,49,50,48,46,57,49,56,55,51,49,44,51,54,46,55,52,48,51,56,49,93,44,91,45,49,50,49,46,49,52,49,53,50,51,44,51,54,46,56,51,54,54,53,54,93,44,91,45,49,50,49,46,50,49,53,52,48,54,44,51,54,46,57,54,49,50,52,56,93,44,91,45,49,50,49,46,52,56,56,57,52,57,44,51,54,46,57,56,51,49,52,56,93,44,91,45,49,50,49,46,53,56,49,51,53,52,44,51,54,46,56,57,57,49,53,50,93,44,91,45,49,50,49,46,54,52,52,48,48,49,44,51,54,46,56,57,51,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,81,117,101,101,110,32,65,110,110,101,39,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,51,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,53,54,48,48,52,44,51,57,46,50,52,54,48,54,54,93,44,91,45,55,54,46,48,49,48,50,57,50,44,51,57,46,50,51,57,53,49,55,93,44,91,45,55,54,46,49,49,55,48,53,56,44,51,57,46,49,48,55,48,57,56,93,44,91,45,55,54,46,50,53,55,57,57,53,44,51,57,46,48,49,49,56,49,56,93,44,91,45,55,54,46,51,53,49,55,51,44,51,57,46,48,53,54,50,51,50,93,44,91,45,55,54,46,52,51,54,52,57,50,44,51,56,46,56,48,55,51,57,55,93,44,91,45,55,53,46,57,52,57,51,51,53,44,51,56,46,57,49,56,51,51,51,93,44,91,45,55,53,46,56,51,52,57,52,56,44,51,57,46,49,48,56,52,51,55,93,44,91,45,55,53,46,55,52,55,55,54,49,44,51,57,46,49,52,51,51,51,56,93,44,91,45,55,53,46,55,53,54,48,48,52,44,51,57,46,50,52,54,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,56,56,49,49,49,44,52,48,46,48,48,48,52,54,50,93,44,91,45,57,53,46,55,56,56,57,52,49,44,51,57,46,54,53,51,48,48,49,93,44,91,45,57,53,46,53,54,52,49,50,54,44,51,57,46,54,53,50,56,55,50,93,44,91,45,57,53,46,51,51,57,55,52,44,51,57,46,54,53,50,57,56,93,44,91,45,57,53,46,51,51,57,56,57,54,44,51,57,46,57,57,57,57,57,57,93,44,91,45,57,53,46,55,56,56,49,49,49,44,52,48,46,48,48,48,52,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,66,117,108,108,111,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,55,56,50,44,34,98,101,100,115,34,58,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,51,48,50,51,51,44,51,50,46,53,51,56,55,55,93,44,91,45,56,49,46,57,49,56,54,53,50,44,51,50,46,52,49,53,48,55,51,93,44,91,45,56,49,46,57,54,57,48,54,57,44,51,50,46,50,54,56,55,56,51,93,44,91,45,56,49,46,56,49,54,50,56,44,51,50,46,50,51,55,52,55,93,44,91,45,56,49,46,55,56,48,56,53,56,44,51,50,46,49,53,50,56,57,93,44,91,45,56,49,46,52,51,53,56,51,44,51,50,46,50,52,49,50,56,57,93,44,91,45,56,49,46,53,51,48,57,50,49,44,51,50,46,51,57,48,51,56,53,93,44,91,45,56,49,46,53,52,56,48,48,54,44,51,50,46,52,56,57,50,56,54,93,44,91,45,56,49,46,54,56,55,57,50,55,44,51,50,46,53,52,54,48,55,93,44,91,45,56,49,46,56,52,49,48,48,53,44,51,50,46,54,52,57,48,57,51,93,44,91,45,56,50,46,48,48,49,50,51,54,44,51,50,46,54,48,54,57,49,93,44,91,45,56,50,46,48,51,48,50,51,51,44,51,50,46,53,51,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,57,50,54,44,34,98,101,100,115,34,58,49,55,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,52,48,55,54,51,44,51,55,46,55,49,54,51,51,56,93,44,91,45,56,50,46,56,57,49,54,48,53,44,51,55,46,53,49,57,48,56,51,93,44,91,45,56,50,46,57,50,53,52,54,44,51,55,46,52,56,54,53,50,53,93,44,91,45,56,50,46,56,51,49,52,55,51,44,51,55,46,52,54,54,57,57,93,44,91,45,56,50,46,55,49,48,56,48,53,44,51,55,46,50,56,53,51,50,51,93,44,91,45,56,50,46,53,56,56,54,50,55,44,51,55,46,52,52,54,50,53,57,93,44,91,45,56,50,46,54,50,52,48,57,49,44,51,55,46,53,48,54,50,55,53,93,44,91,45,56,50,46,53,54,51,53,54,49,44,51,55,46,54,56,52,56,52,52,93,44,91,45,56,50,46,54,52,48,55,53,44,51,55,46,55,50,48,49,56,50,93,44,91,45,56,50,46,55,54,50,49,57,44,51,55,46,55,53,53,56,53,54,93,44,91,45,56,50,46,57,52,48,55,54,51,44,51,55,46,55,49,54,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,114,111,97,100,119,97,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,51,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,52,57,56,48,57,53,44,52,54,46,55,54,50,53,48,50,93,44,91,45,49,49,49,46,54,51,57,50,54,49,44,52,54,46,55,51,56,49,56,93,44,91,45,49,49,49,46,54,52,48,48,57,53,44,52,54,46,53,56,50,52,54,51,93,44,91,45,49,49,49,46,55,56,55,57,52,57,44,52,54,46,53,54,57,52,54,53,93,44,91,45,49,49,49,46,55,56,52,53,54,53,44,52,54,46,48,52,57,56,49,51,93,44,91,45,49,49,49,46,54,54,48,52,50,50,44,52,54,46,48,52,57,49,57,50,93,44,91,45,49,49,49,46,54,54,48,48,53,55,44,52,53,46,56,51,51,53,93,44,91,45,49,49,49,46,52,49,57,54,49,56,44,52,53,46,57,57,54,51,50,50,93,44,91,45,49,49,49,46,51,52,54,54,53,50,44,52,54,46,49,56,55,55,56,53,93,44,91,45,49,49,49,46,48,54,49,57,53,54,44,52,54,46,49,57,50,56,51,52,93,44,91,45,49,49,49,46,49,49,56,49,50,51,44,52,54,46,51,49,54,57,55,93,44,91,45,49,49,49,46,48,53,54,57,57,54,44,52,54,46,51,57,56,49,50,50,93,44,91,45,49,49,49,46,50,52,54,53,49,57,44,52,54,46,52,51,56,49,48,57,93,44,91,45,49,49,49,46,51,50,48,49,56,49,44,52,54,46,53,54,57,52,48,49,93,44,91,45,49,49,49,46,52,57,56,48,57,53,44,52,54,46,55,54,50,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,57,34,44,34,78,65,77,69,34,58,34,87,104,101,101,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,50,55,56,54,53,44,51,50,46,49,51,53,50,55,52,93,44,91,45,56,50,46,56,56,55,54,53,55,44,51,50,46,48,55,57,56,57,49,93,44,91,45,56,50,46,55,50,56,56,48,54,44,51,50,46,48,48,54,55,48,52,93,44,91,45,56,50,46,54,52,53,54,53,57,44,51,49,46,57,49,56,56,56,51,93,44,91,45,56,50,46,53,52,51,54,53,53,44,51,49,46,57,53,56,57,49,52,93,44,91,45,56,50,46,53,57,55,54,55,49,44,51,50,46,48,49,51,57,55,57,93,44,91,45,56,50,46,54,53,53,52,56,54,44,51,50,46,50,57,55,53,54,49,93,44,91,45,56,50,46,55,50,49,57,54,52,44,51,50,46,51,48,57,50,56,51,93,44,91,45,56,50,46,56,56,52,56,48,51,44,51,50,46,49,57,54,48,55,50,93,44,91,45,56,50,46,57,50,55,56,54,53,44,51,50,46,49,51,53,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,114,97,118,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,48,56,50,44,34,98,101,100,115,34,58,51,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,55,51,54,57,50,44,51,53,46,50,50,56,57,56,53,93,44,91,45,55,55,46,49,56,55,54,55,57,44,51,53,46,48,56,49,48,56,54,93,44,91,45,55,55,46,49,48,57,49,56,57,44,51,53,46,48,54,55,50,48,54,93,44,91,45,55,55,46,49,48,56,56,53,49,44,51,52,46,56,51,48,55,56,93,44,91,45,55,55,46,48,55,56,50,54,51,44,51,52,46,56,49,49,51,50,50,93,44,91,45,55,54,46,54,57,51,48,49,56,44,51,52,46,56,54,57,49,56,93,44,91,45,55,54,46,55,49,49,53,56,44,51,52,46,57,56,49,55,54,56,93,44,91,45,55,54,46,55,56,48,53,56,54,44,51,52,46,57,53,48,52,51,52,93,44,91,45,55,54,46,57,54,55,50,57,55,44,51,53,46,48,52,48,54,53,53,93,44,91,45,55,54,46,57,56,55,50,54,54,44,51,53,46,49,53,52,57,53,93,44,91,45,55,54,46,56,57,53,57,49,57,44,51,53,46,50,53,51,56,56,57,93,44,91,45,55,55,46,49,56,57,49,49,53,44,51,53,46,52,49,56,51,54,50,93,44,91,45,55,55,46,51,57,49,48,50,54,44,51,53,46,51,51,57,53,51,51,93,44,91,45,55,55,46,52,55,51,54,57,50,44,51,53,46,50,50,56,57,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,72,111,108,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,53,50,52,55,51,44,52,48,46,50,54,49,57,48,52,93,44,91,45,57,53,46,51,57,54,53,52,57,44,52,48,46,49,50,52,55,48,49,93,44,91,45,57,53,46,52,49,57,57,57,57,44,52,48,46,48,53,48,52,52,93,44,91,45,57,53,46,51,48,56,50,57,44,51,57,46,57,57,57,57,57,56,93,44,91,45,57,53,46,48,56,53,48,48,51,44,51,57,46,56,54,49,56,56,51,93,44,91,45,57,52,46,57,57,51,51,56,50,44,51,57,46,56,57,55,57,48,54,93,44,91,45,57,53,46,48,52,51,48,56,44,52,48,46,49,51,48,48,57,54,93,44,91,45,57,53,46,48,55,49,55,48,51,44,52,48,46,50,54,48,56,53,57,93,44,91,45,57,53,46,49,56,48,54,49,52,44,52,48,46,50,54,49,55,48,54,93,44,91,45,57,53,46,53,53,52,56,49,55,44,52,48,46,50,54,52,52,54,93,44,91,45,57,53,46,53,53,50,52,55,51,44,52,48,46,50,54,49,57,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,53,34,44,34,78,65,77,69,34,58,34,76,105,112,115,99,111,109,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,48,48,51,55,54,50,44,51,54,46,52,57,57,56,52,57,93,44,91,45,49,48,48,46,53,52,54,49,52,53,44,51,54,46,52,57,57,51,52,51,93,44,91,45,49,48,48,46,53,52,54,55,50,52,44,51,54,46,48,53,54,53,51,54,93,44,91,45,49,48,48,46,53,52,48,50,50,49,44,51,54,46,48,53,54,52,57,49,93,44,91,45,49,48,48,46,48,48,48,51,57,57,44,51,54,46,48,53,53,54,55,55,93,44,91,45,49,48,48,46,48,48,51,55,54,50,44,51,54,46,52,57,57,56,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,56,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,51,54,51,55,52,51,44,52,54,46,49,52,54,51,51,51,93,44,91,45,49,50,51,46,51,54,49,54,50,50,44,52,53,46,55,55,57,53,55,57,93,44,91,45,49,50,51,46,48,51,48,56,55,51,44,52,53,46,55,55,57,49,53,57,93,44,91,45,49,50,50,46,57,50,57,49,52,54,44,52,53,46,55,50,49,52,56,50,93,44,91,45,49,50,50,46,55,54,50,52,51,55,44,52,53,46,55,50,56,54,54,53,93,44,91,45,49,50,50,46,55,56,53,53,49,53,44,52,53,46,56,53,48,53,51,54,93,44,91,45,49,50,50,46,57,48,52,49,49,57,44,52,54,46,48,56,51,55,51,52,93,44,91,45,49,50,51,46,49,49,53,57,48,52,44,52,54,46,49,56,53,50,54,56,93,44,91,45,49,50,51,46,50,49,51,48,53,52,44,52,54,46,49,55,50,53,52,49,93,44,91,45,49,50,51,46,51,54,51,55,52,51,44,52,54,46,49,52,54,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,70,108,111,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,53,54,49,44,34,98,101,100,115,34,58,49,48,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,54,53,55,55,54,52,44,51,52,46,51,48,53,49,57,93,44,91,45,55,57,46,55,50,57,53,54,54,44,51,52,46,50,57,53,49,57,93,44,91,45,56,48,46,48,54,57,56,55,56,44,51,52,46,48,56,54,49,57,49,93,44,91,45,56,48,46,48,48,48,53,57,52,44,51,52,46,48,52,55,56,55,55,93,44,91,45,55,57,46,57,55,52,54,48,49,44,51,51,46,57,52,54,53,50,55,93,44,91,45,55,57,46,56,55,53,54,50,44,51,51,46,56,56,53,50,52,53,93,44,91,45,55,57,46,55,57,56,51,55,44,51,51,46,56,51,53,53,54,50,93,44,91,45,55,57,46,52,57,54,52,56,54,44,51,51,46,55,55,53,51,53,55,93,44,91,45,55,57,46,51,50,52,51,49,55,44,51,51,46,55,57,57,49,50,51,93,44,91,45,55,57,46,52,57,49,55,49,52,44,51,51,46,57,52,54,53,50,50,93,44,91,45,55,57,46,53,52,55,57,51,44,51,52,46,50,51,48,57,49,51,93,44,91,45,55,57,46,54,51,51,52,49,51,44,51,52,46,50,57,55,57,57,52,93,44,91,45,55,57,46,54,53,55,55,54,52,44,51,52,46,51,48,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,77,111,117,110,116,114,97,105,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,53,50,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,56,56,53,55,54,51,44,52,56,46,53,52,54,51,57,93,44,91,45,49,48,50,46,56,50,56,49,54,51,44,52,56,46,51,55,50,54,52,49,93,44,91,45,49,48,50,46,56,50,56,52,55,55,44,52,56,46,49,50,51,54,54,52,93,44,91,45,49,48,50,46,54,48,56,51,54,44,52,56,46,48,52,54,51,53,49,93,44,91,45,49,48,50,46,53,54,53,57,48,50,44,52,55,46,57,54,57,48,50,56,93,44,91,45,49,48,50,46,54,52,50,50,54,54,44,52,55,46,56,50,51,55,49,51,93,44,91,45,49,48,50,46,51,56,53,55,53,56,44,52,55,46,55,53,56,48,48,56,93,44,91,45,49,48,50,46,51,56,53,54,52,55,44,52,55,46,56,52,55,55,55,50,93,44,91,45,49,48,49,46,56,55,49,56,54,50,44,52,55,46,56,52,55,53,56,57,93,44,91,45,49,48,49,46,57,50,50,49,50,51,44,52,56,46,48,50,51,49,55,51,93,44,91,45,49,48,49,46,57,50,50,50,51,55,44,52,56,46,51,55,50,51,51,93,44,91,45,49,48,49,46,57,55,51,50,56,50,44,52,56,46,53,52,54,52,56,53,93,44,91,45,49,48,50,46,50,51,51,56,57,50,44,52,56,46,53,52,54,51,51,57,93,44,91,45,49,48,50,46,56,56,53,55,54,51,44,52,56,46,53,52,54,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,53,51,55,44,34,98,101,100,115,34,58,50,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,48,53,50,51,53,44,51,55,46,54,48,52,55,55,54,93,44,91,45,49,49,52,46,48,53,48,48,53,50,44,51,55,46,48,48,48,49,57,49,93,44,91,45,49,49,50,46,56,57,57,49,57,49,44,51,55,46,48,48,48,51,56,53,93,44,91,45,49,49,50,46,57,48,48,57,57,51,44,51,55,46,53,48,48,48,50,49,93,44,91,45,49,49,51,46,48,51,55,48,52,56,44,51,55,46,52,55,52,52,55,52,93,44,91,45,49,49,51,46,50,53,51,52,57,44,51,55,46,52,56,50,49,54,55,93,44,91,45,49,49,51,46,50,53,51,51,52,44,51,55,46,53,50,56,57,56,51,93,44,91,45,49,49,51,46,52,55,52,48,50,57,44,51,55,46,53,50,57,48,56,53,93,44,91,45,49,49,51,46,53,56,55,55,57,55,44,51,55,46,54,48,52,54,49,49,93,44,91,45,49,49,52,46,48,53,50,51,53,44,51,55,46,54,48,52,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,105,103,32,72,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,55,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,53,49,49,53,51,52,44,52,54,46,48,52,51,52,48,51,93,44,91,45,49,48,55,46,54,55,52,52,53,52,44,52,54,46,48,52,51,54,49,93,44,91,45,49,48,55,46,56,56,49,56,52,54,44,52,53,46,56,57,57,50,51,51,93,44,91,45,49,48,56,46,48,52,55,51,53,50,44,52,53,46,56,57,57,52,55,57,93,44,91,45,49,48,56,46,48,54,57,55,53,50,44,52,53,46,53,49,56,53,51,53,93,44,91,45,49,48,56,46,49,57,51,50,48,53,44,52,53,46,53,49,56,53,51,56,93,44,91,45,49,48,56,46,51,49,54,51,55,52,44,52,53,46,52,54,48,53,48,57,93,44,91,45,49,48,56,46,54,52,53,51,50,53,44,52,53,46,52,54,52,48,55,51,93,44,91,45,49,48,56,46,54,56,50,50,50,51,44,52,53,46,52,51,51,49,51,50,93,44,91,45,49,48,56,46,54,57,57,54,49,54,44,52,53,46,50,49,55,55,48,57,93,44,91,45,49,48,56,46,49,50,50,49,56,52,44,52,53,46,50,49,54,51,49,55,93,44,91,45,49,48,56,46,50,52,57,52,49,50,44,52,52,46,57,57,57,57,48,52,93,44,91,45,49,48,55,46,57,49,49,53,50,51,44,52,53,46,48,48,48,54,55,56,93,44,91,45,49,48,55,46,48,56,52,56,56,54,44,52,52,46,57,57,54,54,93,44,91,45,49,48,54,46,50,54,51,55,49,53,44,52,52,46,57,57,51,56,49,54,93,44,91,45,49,48,54,46,50,55,57,55,48,57,44,52,53,46,49,55,57,55,50,56,93,44,91,45,49,48,54,46,55,54,56,48,49,52,44,52,53,46,49,55,57,55,50,56,93,44,91,45,49,48,54,46,55,50,57,53,52,51,44,52,53,46,51,53,49,52,56,93,44,91,45,49,48,54,46,55,50,57,53,55,49,44,52,53,46,54,55,50,56,53,93,44,91,45,49,48,54,46,57,49,50,57,53,57,44,52,53,46,54,56,51,57,49,53,93,44,91,45,49,48,54,46,57,51,57,48,57,53,44,52,53,46,56,55,48,48,52,49,93,44,91,45,49,48,55,46,49,55,54,51,53,56,44,52,53,46,57,53,54,55,54,49,93,44,91,45,49,48,55,46,52,50,53,49,50,56,44,52,53,46,57,53,54,54,55,52,93,44,91,45,49,48,55,46,53,49,49,53,51,52,44,52,54,46,48,52,51,52,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,69,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,54,48,56,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,53,54,48,52,50,44,52,49,46,54,50,51,52,48,50,93,44,91,45,55,56,46,57,55,54,54,53,56,44,52,49,46,52,53,49,55,54,49,93,44,91,45,55,57,46,48,57,51,53,56,56,44,52,49,46,52,50,51,50,56,54,93,44,91,45,55,57,46,48,57,53,48,57,54,44,52,49,46,51,52,48,54,53,56,93,44,91,45,55,56,46,57,53,57,49,53,55,44,52,49,46,51,54,50,49,54,49,93,44,91,45,55,56,46,55,51,53,50,56,44,52,49,46,50,54,50,57,49,53,93,44,91,45,55,56,46,55,49,48,50,52,56,44,52,49,46,50,48,49,56,53,57,93,44,91,45,55,56,46,54,52,54,54,54,54,44,52,49,46,50,53,51,55,55,56,93,44,91,45,55,56,46,50,51,54,56,49,55,44,52,49,46,50,51,48,52,55,53,93,44,91,45,55,56,46,50,53,51,57,53,57,44,52,49,46,52,48,52,55,50,49,93,44,91,45,55,56,46,52,50,48,48,50,56,44,52,49,46,52,48,53,48,52,54,93,44,91,45,55,56,46,52,49,57,49,49,56,44,52,49,46,54,48,50,49,56,56,93,44,91,45,55,56,46,52,56,51,52,48,57,44,52,49,46,54,50,57,56,57,56,93,44,91,45,55,56,46,57,53,54,48,53,54,44,52,49,46,54,50,51,56,54,51,93,44,91,45,55,56,46,57,53,54,48,52,50,44,52,49,46,54,50,51,52,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,83,105,111,117,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,50,56,51,56,44,52,50,46,54,49,49,55,54,55,93,44,91,45,49,48,52,46,48,53,50,54,52,53,44,52,50,46,48,48,49,55,49,56,93,44,91,45,49,48,51,46,52,48,49,54,51,57,44,52,50,46,48,48,51,53,52,93,44,91,45,49,48,51,46,52,52,52,49,48,56,44,52,50,46,48,57,48,55,48,56,93,44,91,45,49,48,51,46,52,52,52,53,51,50,44,52,50,46,52,51,55,51,53,52,93,44,91,45,49,48,51,46,52,56,48,48,56,50,44,52,50,46,52,51,55,50,54,55,93,44,91,45,49,48,51,46,52,56,48,52,48,51,44,52,50,46,55,56,52,57,54,54,93,44,91,45,49,48,51,46,53,48,53,49,44,52,51,46,48,48,48,55,55,93,44,91,45,49,48,52,46,48,53,51,48,50,56,44,52,51,46,48,48,48,53,56,53,93,44,91,45,49,48,52,46,48,53,50,56,51,56,44,52,50,46,54,49,49,55,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,118,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,57,49,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,48,49,50,50,55,44,51,49,46,55,57,54,56,54,51,93,44,91,45,56,57,46,54,53,51,48,50,53,44,51,49,46,55,56,48,54,53,51,93,44,91,45,56,57,46,55,53,53,49,48,51,44,51,49,46,55,55,52,54,53,52,93,44,91,45,56,57,46,55,53,53,54,49,52,44,51,49,46,54,48,57,55,53,49,93,44,91,45,56,57,46,54,48,50,56,56,57,44,51,49,46,53,51,56,56,51,54,93,44,91,45,56,57,46,53,56,54,56,49,57,44,51,49,46,52,51,51,54,56,56,93,44,91,45,56,57,46,52,53,49,54,49,54,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,51,57,57,49,55,56,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,52,48,49,50,50,55,44,51,49,46,55,57,54,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,111,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,55,50,44,34,98,101,100,115,34,58,49,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,48,53,54,53,48,55,44,49,56,46,52,54,48,57,53,52,93,44,91,45,54,55,46,49,51,50,50,49,44,49,56,46,51,56,57,51,57,49,93,44,91,45,54,55,46,49,51,48,49,54,55,44,49,56,46,51,49,55,57,50,55,93,44,91,45,54,55,46,48,53,50,53,56,51,44,49,56,46,51,48,54,54,53,53,93,44,91,45,54,55,46,48,50,55,49,55,51,44,49,56,46,51,57,51,51,55,54,93,44,91,45,54,55,46,48,53,54,53,48,55,44,49,56,46,52,54,48,57,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,51,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,56,49,51,57,53,44,51,57,46,51,51,57,55,53,50,93,44,91,45,56,54,46,51,55,48,48,54,54,44,51,57,46,48,52,56,51,55,53,93,44,91,45,56,54,46,51,49,56,49,51,51,44,51,57,46,48,52,56,56,49,93,44,91,45,56,54,46,48,56,48,50,55,50,44,51,57,46,48,53,48,50,55,93,44,91,45,56,54,46,48,56,53,54,48,49,44,51,57,46,51,52,52,49,56,57,93,44,91,45,56,54,46,50,53,49,54,56,52,44,51,57,46,51,52,49,54,55,50,93,44,91,45,56,54,46,51,56,49,51,57,53,44,51,57,46,51,51,57,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,55,48,50,44,34,98,101,100,115,34,58,50,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,52,55,56,57,51,44,51,56,46,53,54,49,50,54,57,93,44,91,45,56,53,46,57,57,51,51,49,55,44,51,56,46,52,56,56,53,52,93,44,91,45,56,53,46,57,57,52,54,50,44,51,56,46,52,49,56,51,52,53,93,44,91,45,56,53,46,56,48,55,55,48,52,44,51,56,46,52,48,52,52,52,51,93,44,91,45,56,53,46,55,57,50,51,49,54,44,51,56,46,50,56,55,52,51,51,93,44,91,45,56,53,46,54,51,55,56,54,49,44,51,56,46,51,56,48,50,54,51,93,44,91,45,56,53,46,53,56,54,48,51,51,44,51,56,46,52,53,48,48,57,50,93,44,91,45,56,53,46,52,51,51,49,56,57,44,51,56,46,53,50,52,51,55,53,93,44,91,45,56,53,46,52,50,56,50,56,51,44,51,56,46,53,56,54,51,50,53,93,44,91,45,56,53,46,53,54,57,57,56,44,51,56,46,54,48,54,49,53,53,93,44,91,45,56,53,46,55,57,51,53,56,52,44,51,56,46,54,48,52,56,49,52,93,44,91,45,56,53,46,56,52,55,56,57,51,44,51,56,46,53,54,49,50,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,111,121,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,57,49,51,44,34,98,101,100,115,34,58,49,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,52,52,56,56,56,44,51,55,46,55,49,51,48,55,53,93,44,91,45,56,53,46,48,50,53,48,50,49,44,51,55,46,54,55,56,56,53,52,93,44,91,45,56,53,46,48,51,48,49,55,50,44,51,55,46,54,51,49,50,55,93,44,91,45,56,53,46,48,51,57,54,55,52,44,51,55,46,53,52,53,50,51,50,93,44,91,45,56,52,46,56,52,55,52,51,52,44,51,55,46,53,52,56,51,52,51,93,44,91,45,56,52,46,54,53,56,50,57,54,44,51,55,46,54,51,52,53,48,49,93,44,91,45,56,52,46,55,52,52,56,56,56,44,51,55,46,55,49,51,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,69,115,116,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,56,48,51,51,55,44,51,55,46,56,53,51,48,54,54,93,44,91,45,56,52,46,49,50,54,57,52,56,44,51,55,46,54,52,50,52,50,49,93,44,91,45,56,52,46,48,57,48,51,54,52,44,51,55,46,53,54,54,50,50,55,93,44,91,45,56,51,46,57,48,53,53,55,44,51,55,46,53,52,50,56,53,54,93,44,91,45,56,51,46,56,50,51,48,51,44,51,55,46,54,53,57,56,55,50,93,44,91,45,56,51,46,55,50,50,49,44,51,55,46,55,49,54,52,50,93,44,91,45,56,51,46,57,48,54,50,53,49,44,51,55,46,55,53,57,51,54,51,93,44,91,45,56,52,46,48,48,49,57,54,55,44,51,55,46,56,51,55,53,57,50,93,44,91,45,56,52,46,48,56,48,51,51,55,44,51,55,46,56,53,51,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,67,111,108,108,105,110,103,115,119,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,57,54,44,34,98,101,100,115,34,58,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,51,56,57,55,56,44,51,53,46,49,56,51,49,52,52,93,44,91,45,49,48,48,46,53,52,48,55,48,51,44,51,52,46,55,52,55,55,50,51,93,44,91,45,49,48,48,46,52,49,53,56,57,53,44,51,52,46,55,52,55,53,50,53,93,44,91,45,49,48,48,46,48,48,48,51,56,49,44,51,52,46,55,52,54,51,53,56,93,44,91,45,49,48,48,46,48,48,48,51,56,52,44,51,53,46,48,50,57,57,51,93,44,91,45,49,48,48,46,48,48,48,51,56,53,44,51,53,46,49,56,50,55,48,50,93,44,91,45,49,48,48,46,53,51,56,57,55,56,44,51,53,46,49,56,51,49,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,48,50,50,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,55,52,50,50,50,44,50,57,46,54,51,50,55,48,54,93,44,91,45,57,54,46,55,57,51,49,51,50,44,50,57,46,53,55,55,51,55,56,93,44,91,45,57,54,46,53,54,48,53,53,53,44,50,57,46,51,51,53,52,51,57,93,44,91,45,57,54,46,54,53,56,52,54,54,44,50,57,46,50,54,51,56,55,54,93,44,91,45,57,54,46,54,52,48,51,49,53,44,50,57,46,50,52,55,56,48,52,93,44,91,45,57,54,46,51,52,57,50,49,55,44,50,57,46,52,48,54,48,53,50,93,44,91,45,57,54,46,51,48,55,54,55,50,44,50,57,46,53,49,52,53,50,51,93,44,91,45,57,54,46,49,55,53,52,50,50,44,50,57,46,54,51,51,56,48,54,93,44,91,45,57,54,46,50,53,54,54,57,54,44,50,57,46,54,54,55,48,54,49,93,44,91,45,57,54,46,51,51,48,56,54,57,44,50,57,46,56,49,52,52,52,57,93,44,91,45,57,54,46,52,49,51,50,56,51,44,50,57,46,56,50,52,57,56,53,93,44,91,45,57,54,46,53,54,57,56,52,52,44,50,57,46,57,54,49,53,49,54,93,44,91,45,57,54,46,56,55,52,50,50,50,44,50,57,46,54,51,50,55,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,71,114,117,110,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,53,48,57,44,34,98,101,100,115,34,58,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,53,50,50,51,49,44,52,49,46,52,54,51,48,54,54,93,44,91,45,56,56,46,53,57,53,57,54,49,44,52,49,46,52,53,55,49,50,57,93,44,91,45,56,56,46,53,56,54,50,52,44,52,49,46,49,48,56,50,57,51,93,44,91,45,56,56,46,50,53,49,53,48,49,44,52,49,46,49,49,52,50,49,56,93,44,91,45,56,56,46,50,52,52,49,52,52,44,52,49,46,50,48,49,53,54,54,93,44,91,45,56,56,46,50,53,50,50,51,49,44,52,49,46,52,54,51,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,48,55,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,53,49,56,50,44,52,52,46,53,52,51,54,53,50,93,44,91,45,57,54,46,52,53,50,55,55,51,44,52,52,46,49,57,54,55,56,93,44,91,45,57,54,46,48,55,56,53,56,44,52,52,46,49,57,54,54,50,93,44,91,45,57,54,46,48,57,50,57,53,44,52,52,46,54,51,48,52,56,54,93,44,91,45,57,54,46,52,53,49,53,54,54,44,52,52,46,54,51,49,51,52,57,93,44,91,45,57,54,46,52,53,49,56,50,44,52,52,46,53,52,51,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,69,118,97,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,50,55,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,50,53,51,51,57,44,51,50,46,50,55,56,56,56,51,93,44,91,45,56,49,46,57,56,48,48,52,49,44,51,50,46,48,56,49,53,48,50,93,44,91,45,56,49,46,55,54,49,55,51,53,44,51,50,46,48,52,55,57,93,44,91,45,56,49,46,55,49,56,54,53,56,44,51,50,46,48,56,57,51,53,49,93,44,91,45,56,49,46,55,56,48,56,53,56,44,51,50,46,49,53,50,56,57,93,44,91,45,56,49,46,56,49,54,50,56,44,51,50,46,50,51,55,52,55,93,44,91,45,56,49,46,57,54,57,48,54,57,44,51,50,46,50,54,56,55,56,51,93,44,91,45,56,50,46,48,50,53,51,51,57,44,51,50,46,50,55,56,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,57,55,34,44,34,78,65,77,69,34,58,34,87,105,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,54,51,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,56,55,48,54,53,44,51,51,46,52,51,51,54,56,49,93,44,91,45,57,55,46,57,49,56,49,56,57,44,51,51,46,52,51,51,56,55,51,93,44,91,45,57,55,46,57,50,49,54,52,50,44,51,51,46,48,48,49,50,56,52,93,44,91,45,57,55,46,53,52,52,49,56,49,44,51,50,46,57,57,52,49,55,55,93,44,91,45,57,55,46,51,57,56,52,56,44,51,50,46,57,57,48,56,51,57,93,44,91,45,57,55,46,51,56,51,48,57,53,44,51,51,46,52,51,48,52,53,93,44,91,45,57,55,46,52,56,55,48,54,53,44,51,51,46,52,51,51,54,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,53,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,48,34,44,34,78,65,77,69,34,58,34,66,101,116,104,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,52,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,54,48,46,53,51,52,54,55,49,44,54,49,46,57,52,53,57,52,93,44,91,45,49,54,48,46,51,53,48,49,52,44,54,49,46,56,49,57,48,55,49,93,44,91,45,49,54,48,46,55,55,53,50,52,52,44,54,49,46,55,51,56,53,50,55,93,44,91,45,49,54,49,46,49,50,54,56,49,50,44,54,49,46,53,57,57,53,52,93,44,91,45,49,54,49,46,52,52,57,54,49,49,44,54,49,46,53,54,56,56,51,56,93,44,91,45,49,54,50,46,48,49,51,52,51,56,44,54,49,46,52,55,55,48,53,55,93,44,91,45,49,54,50,46,53,48,53,55,54,49,44,54,49,46,53,53,54,52,50,54,93,44,91,45,49,54,51,46,49,55,49,51,53,52,44,54,49,46,52,52,57,48,55,49,93,44,91,45,49,54,51,46,52,50,56,56,54,54,44,54,49,46,52,54,50,50,56,93,44,91,45,49,54,51,46,54,53,53,51,57,44,54,49,46,51,51,53,56,50,55,93,44,91,45,49,54,51,46,57,56,53,49,51,56,44,54,49,46,51,55,50,48,48,51,93,44,91,45,49,54,51,46,57,50,48,56,55,52,44,54,49,46,50,49,48,54,57,50,93,44,91,45,49,54,52,46,50,49,49,55,56,49,44,54,49,46,48,56,50,50,54,50,93,44,91,45,49,54,52,46,50,51,57,55,50,55,44,54,48,46,57,56,55,49,49,57,93,44,91,45,49,54,52,46,53,50,57,57,49,49,44,54,48,46,57,52,48,55,57,54,93,44,91,45,49,54,52,46,54,49,54,53,56,53,44,54,48,46,57,55,57,48,52,57,93,44,91,45,49,54,53,46,48,48,48,53,49,52,44,54,48,46,57,54,51,54,51,53,93,44,91,45,49,54,53,46,50,53,52,49,54,50,44,54,48,46,57,49,55,49,48,56,93,44,91,45,49,54,53,46,49,50,51,51,54,57,44,54,48,46,55,51,54,54,50,55,93,44,91,45,49,54,53,46,53,49,56,50,54,51,44,54,48,46,53,54,54,48,49,54,93,44,91,45,49,54,53,46,52,50,54,53,51,44,54,48,46,52,55,52,51,56,51,93,44,91,45,49,54,53,46,50,51,53,52,49,49,44,54,48,46,52,50,53,49,53,93,44,91,45,49,54,52,46,57,55,49,57,49,54,44,54,48,46,50,55,55,48,49,57,93,44,91,45,49,54,52,46,55,52,56,56,49,44,54,48,46,50,52,48,51,49,51,93,44,91,45,49,54,52,46,51,54,52,51,51,50,44,53,57,46,57,57,57,50,50,51,93,44,91,45,49,54,52,46,52,49,53,54,57,54,44,53,57,46,56,56,52,56,54,55,93,44,91,45,49,54,52,46,48,49,51,51,44,53,57,46,54,51,55,55,53,57,93,44,91,45,49,54,51,46,55,54,48,57,54,49,44,53,57,46,54,51,57,55,49,54,93,44,91,45,49,54,51,46,55,56,52,51,55,51,44,53,57,46,55,52,48,53,54,57,93,44,91,45,49,54,51,46,49,52,53,56,54,51,44,53,57,46,55,57,53,54,52,50,93,44,91,45,49,54,50,46,56,54,56,54,54,49,44,53,57,46,55,56,48,51,56,49,93,44,91,45,49,54,50,46,55,48,55,53,53,57,44,53,57,46,56,56,48,49,55,53,93,44,91,45,49,54,50,46,52,52,57,56,52,56,44,53,57,46,56,56,52,54,49,54,93,44,91,45,49,54,50,46,51,54,52,51,52,49,44,53,57,46,56,49,48,56,54,57,93,44,91,45,49,54,50,46,49,55,56,51,50,57,44,53,57,46,56,49,52,56,52,50,93,44,91,45,49,54,49,46,56,55,49,50,54,54,44,53,57,46,53,50,52,55,57,49,93,44,91,45,49,54,50,46,48,53,51,54,49,50,44,53,57,46,52,48,56,57,57,93,44,91,45,49,54,50,46,49,54,54,54,48,52,44,53,57,46,50,55,53,48,55,53,93,44,91,45,49,54,50,46,49,48,50,49,57,56,44,53,57,46,49,50,56,55,53,50,93,44,91,45,49,54,49,46,56,56,49,55,54,53,44,53,56,46,57,52,52,49,52,54,93,44,91,45,49,54,49,46,56,53,49,50,48,49,44,53,56,46,56,48,55,57,56,51,93,44,91,45,49,54,49,46,57,54,51,48,50,56,44,53,56,46,55,50,54,50,51,51,93,44,91,45,49,54,50,46,49,54,56,53,50,50,44,53,56,46,55,49,48,50,55,54,93,44,91,45,49,54,50,46,50,55,48,52,49,49,44,53,56,46,54,50,50,49,50,54,93,44,91,45,49,54,50,46,49,51,50,50,49,55,44,53,56,46,53,55,49,51,55,54,93,44,91,45,49,54,49,46,56,54,53,48,53,50,44,53,56,46,53,54,54,48,56,55,93,44,91,45,49,54,49,46,54,52,48,50,52,57,44,53,56,46,53,48,50,51,50,54,93,44,91,45,49,54,49,46,51,52,49,56,52,44,53,56,46,54,48,55,48,57,49,93,44,91,45,49,54,49,46,49,57,56,49,56,51,44,53,56,46,55,51,57,51,51,55,93,44,91,45,49,54,49,46,51,54,52,57,51,49,44,53,56,46,56,50,54,48,50,49,93,44,91,45,49,54,49,46,48,51,49,52,52,49,44,53,56,46,56,51,57,55,53,50,93,44,91,45,49,54,49,46,48,51,49,52,52,56,44,53,56,46,57,57,57,51,57,51,93,44,91,45,49,54,48,46,56,54,52,55,48,51,44,53,56,46,57,57,57,51,57,52,93,44,91,45,49,54,48,46,56,49,50,49,51,51,44,53,57,46,48,56,54,48,55,55,93,44,91,45,49,54,48,46,56,49,50,49,52,44,53,57,46,50,53,57,52,51,56,93,44,91,45,49,54,48,46,54,52,51,55,49,54,44,53,57,46,50,53,57,52,52,93,44,91,45,49,54,48,46,52,55,53,50,57,54,44,53,57,46,51,52,54,49,50,50,93,44,91,45,49,54,48,46,52,49,56,54,52,44,53,57,46,52,51,50,56,93,44,91,45,49,54,48,46,52,49,56,54,52,55,44,53,57,46,54,48,54,49,53,50,93,44,91,45,49,54,48,46,50,52,56,53,48,51,44,53,57,46,54,48,54,49,53,52,93,44,91,45,49,54,48,46,50,52,56,53,49,44,53,57,46,55,55,57,53,48,49,93,44,91,45,49,54,48,46,48,49,55,52,50,51,44,53,57,46,55,55,57,53,48,52,93,44,91,45,49,54,48,46,48,49,55,52,51,44,53,57,46,57,53,50,56,52,54,93,44,91,45,49,53,57,46,56,52,53,53,50,52,44,53,57,46,57,53,50,56,52,56,93,44,91,45,49,53,57,46,56,52,53,53,51,51,44,54,48,46,49,50,54,49,56,54,93,44,91,45,49,53,57,46,55,56,49,57,48,54,44,54,48,46,50,49,50,56,53,52,93,44,91,45,49,53,57,46,54,48,56,49,57,54,44,54,48,46,50,49,50,56,53,54,93,44,91,45,49,53,57,46,54,48,56,50,48,52,44,54,48,46,51,56,54,49,56,56,93,44,91,45,49,53,57,46,52,51,52,52,57,55,44,54,48,46,51,56,54,49,57,93,44,91,45,49,53,57,46,51,54,54,50,48,54,44,54,48,46,52,55,50,56,53,54,93,44,91,45,49,53,57,46,51,54,54,50,49,53,44,54,48,46,54,52,54,49,55,57,93,44,91,45,49,53,57,46,49,57,48,54,53,55,44,54,48,46,54,52,54,49,56,49,93,44,91,45,49,53,57,46,48,49,53,49,48,52,44,54,48,46,55,51,50,56,52,51,93,44,91,45,49,53,56,46,57,52,49,57,50,54,44,54,48,46,57,48,54,49,54,50,93,44,91,45,49,53,55,46,56,55,55,50,50,52,44,54,48,46,57,48,54,49,55,50,93,44,91,45,49,53,55,46,53,50,50,51,51,50,44,54,48,46,57,57,50,56,51,52,93,44,91,45,49,53,55,46,49,54,55,52,50,56,44,54,48,46,57,57,50,56,51,57,93,44,91,45,49,53,55,46,49,54,55,52,50,44,54,48,46,57,48,54,49,56,51,93,44,91,45,49,53,54,46,48,48,48,48,56,54,44,54,48,46,57,48,54,49,57,93,44,91,45,49,53,52,46,54,49,52,50,49,53,44,54,48,46,57,48,54,50,48,52,93,44,91,45,49,53,51,46,52,52,48,56,56,52,44,54,48,46,57,48,54,50,51,54,93,44,91,45,49,53,51,46,52,52,48,56,55,55,44,54,49,46,49,54,54,49,57,54,93,44,91,45,49,53,51,46,52,56,53,53,55,53,44,54,49,46,52,50,54,49,53,51,93,44,91,45,49,53,50,46,57,57,57,56,56,50,44,54,49,46,52,50,54,49,55,50,93,44,91,45,49,53,50,46,57,57,57,56,51,57,44,54,50,46,50,57,50,54,50,49,93,44,91,45,49,53,51,46,48,55,48,49,50,51,44,54,50,46,50,48,54,48,49,53,93,44,91,45,49,53,51,46,51,57,53,48,48,57,44,54,50,46,50,48,53,57,57,93,44,91,45,49,53,51,46,51,57,53,48,48,57,44,54,50,46,49,49,57,51,52,55,93,44,91,45,49,53,51,46,55,54,49,56,55,49,44,54,50,46,49,49,57,51,51,53,93,44,91,45,49,53,51,46,55,54,49,56,55,53,44,54,50,46,48,51,50,54,56,57,93,44,91,45,49,53,53,46,52,57,55,54,52,53,44,54,50,46,48,51,50,54,53,57,93,44,91,45,49,53,55,46,48,54,51,56,53,50,44,54,50,46,48,51,50,54,51,52,93,44,91,45,49,53,55,46,48,54,51,56,54,52,44,54,50,46,49,49,57,50,55,49,93,44,91,45,49,53,56,46,53,51,49,51,54,49,44,54,50,46,49,49,57,50,54,52,93,44,91,45,49,53,56,46,53,51,49,51,53,49,44,54,50,46,48,51,50,54,50,93,44,91,45,49,53,57,46,50,54,53,48,51,53,44,54,50,46,48,51,50,53,57,56,93,44,91,45,49,53,57,46,50,54,53,48,51,55,44,54,49,46,57,52,53,57,53,55,93,44,91,45,49,54,48,46,53,51,52,54,55,49,44,54,49,46,57,52,53,57,52,93,93,93,44,91,91,91,45,49,54,55,46,53,53,56,50,50,56,44,54,48,46,50,50,52,51,53,55,93,44,91,45,49,54,55,46,51,56,53,53,56,44,54,48,46,48,50,49,50,48,55,93,44,91,45,49,54,54,46,57,52,48,54,50,50,44,53,57,46,57,49,49,57,48,56,93,44,91,45,49,54,54,46,54,50,54,49,50,54,44,53,57,46,55,57,55,48,54,49,93,44,91,45,49,54,54,46,52,50,57,54,55,49,44,53,57,46,56,48,49,54,51,54,93,44,91,45,49,54,54,46,49,57,54,54,49,51,44,53,57,46,55,48,51,51,56,52,93,44,91,45,49,54,54,46,48,53,55,56,57,51,44,53,57,46,54,57,53,53,51,53,93,44,91,45,49,54,53,46,56,50,52,56,53,57,44,53,57,46,56,48,54,55,52,54,93,44,91,45,49,54,53,46,52,57,53,52,55,44,53,57,46,56,55,48,49,56,52,93,44,91,45,49,54,53,46,52,48,50,52,53,56,44,53,57,46,57,55,48,52,52,56,93,44,91,45,49,54,53,46,53,55,51,49,55,51,44,54,48,46,48,55,53,48,54,51,93,44,91,45,49,54,53,46,53,54,49,53,49,57,44,54,48,46,51,48,49,55,50,54,93,44,91,45,49,54,53,46,55,51,56,52,54,53,44,54,48,46,52,48,53,54,48,57,93,44,91,45,49,54,54,46,48,48,53,55,57,56,44,54,48,46,52,49,57,53,55,51,93,44,91,45,49,54,54,46,49,53,50,52,51,50,44,54,48,46,53,49,48,55,52,55,93,44,91,45,49,54,54,46,51,52,57,56,50,51,44,54,48,46,52,49,55,55,52,53,93,44,91,45,49,54,54,46,53,50,56,56,51,57,44,54,48,46,52,52,52,50,55,93,44,91,45,49,54,54,46,55,51,57,51,51,55,44,54,48,46,51,56,55,56,54,49,93,44,91,45,49,54,54,46,57,52,51,55,55,56,44,54,48,46,50,55,56,49,48,51,93,44,91,45,49,54,55,46,51,48,57,56,51,44,54,48,46,50,57,48,55,49,56,93,44,91,45,49,54,55,46,53,53,56,50,50,56,44,54,48,46,50,50,52,51,53,55,93,93,93,44,91,91,91,45,49,55,51,46,50,51,50,50,51,49,44,54,48,46,54,53,52,51,52,93,44,91,45,49,55,51,46,49,52,48,50,50,51,44,54,48,46,53,55,53,53,51,51,93,44,91,45,49,55,51,46,49,54,55,56,49,56,44,54,48,46,52,56,49,48,56,93,44,91,45,49,55,50,46,57,49,48,50,50,56,44,54,48,46,51,51,57,54,50,51,93,44,91,45,49,55,50,46,53,57,54,49,50,53,44,54,48,46,50,53,56,54,50,50,93,44,91,45,49,55,50,46,52,48,55,53,50,54,44,54,48,46,50,55,56,55,54,52,93,44,91,45,49,55,50,46,49,56,57,52,56,56,44,54,48,46,50,53,48,56,49,54,93,44,91,45,49,55,50,46,49,48,57,48,57,44,54,48,46,51,49,52,48,49,50,93,44,91,45,49,55,50,46,51,57,51,53,55,44,54,48,46,52,51,54,53,48,54,93,44,91,45,49,55,50,46,54,56,55,56,52,44,54,48,46,52,56,48,49,50,93,44,91,45,49,55,50,46,57,52,51,56,52,57,44,54,48,46,54,53,48,55,93,44,91,45,49,55,50,46,57,56,57,55,54,50,44,54,48,46,55,51,49,56,49,49,93,44,91,45,49,55,51,46,49,53,56,54,51,50,44,54,48,46,55,50,56,55,55,93,44,91,45,49,55,51,46,50,51,50,50,51,49,44,54,48,46,54,53,52,51,52,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,55,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,52,57,51,49,57,44,51,50,46,50,51,50,57,53,51,93,44,91,45,56,52,46,54,53,53,56,50,44,51,49,46,57,50,48,51,48,56,93,44,91,45,56,52,46,53,57,57,55,55,54,44,51,49,46,57,50,48,49,55,49,93,44,91,45,56,52,46,52,52,51,56,48,55,44,51,49,46,57,54,55,52,53,54,93,44,91,45,56,52,46,52,51,49,50,49,52,44,51,50,46,49,51,52,48,53,56,93,44,91,45,56,52,46,53,50,55,49,49,55,44,51,50,46,49,51,52,53,53,54,93,44,91,45,56,52,46,54,52,57,51,49,57,44,51,50,46,50,51,50,57,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,53,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,49,54,48,52,56,44,51,51,46,49,51,49,56,49,54,93,44,91,45,56,51,46,55,49,48,54,56,53,44,51,50,46,57,53,50,55,57,50,93,44,91,45,56,51,46,54,53,56,50,49,49,44,51,50,46,56,56,55,57,49,51,93,44,91,45,56,51,46,53,49,51,53,49,49,44,51,50,46,56,52,52,56,54,56,93,44,91,45,56,51,46,52,48,54,57,57,44,51,50,46,56,57,56,50,50,93,44,91,45,56,51,46,51,53,55,54,56,53,44,51,50,46,57,50,54,49,52,49,93,44,91,45,56,51,46,52,50,57,48,57,44,51,51,46,49,56,53,51,53,50,93,44,91,45,56,51,46,53,52,53,56,55,54,44,51,51,46,49,55,49,57,52,52,93,44,91,45,56,51,46,56,49,54,48,52,56,44,51,51,46,49,51,49,56,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,71,119,105,110,110,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,50,50,57,56,44,34,98,101,100,115,34,58,49,48,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,57,55,54,57,51,44,51,52,46,48,53,48,55,48,56,93,44,91,45,56,52,46,50,55,55,48,57,51,44,51,51,46,57,53,55,54,49,52,93,44,91,45,56,52,46,50,53,57,56,50,50,44,51,51,46,57,49,56,57,48,49,93,44,91,45,56,52,46,48,50,51,55,49,51,44,51,51,46,55,53,50,56,48,56,93,44,91,45,56,51,46,57,56,50,48,51,51,44,51,51,46,55,56,54,48,53,52,93,44,91,45,56,51,46,55,57,57,49,48,52,44,51,51,46,57,50,57,56,52,52,93,44,91,45,56,51,46,56,54,56,57,51,49,44,51,52,46,48,48,52,55,56,54,93,44,91,45,56,51,46,56,49,55,54,56,50,44,51,52,46,49,50,55,52,57,51,93,44,91,45,56,51,46,56,54,56,48,51,44,51,52,46,48,57,56,50,56,49,93,44,91,45,56,52,46,48,54,50,56,52,49,44,51,52,46,49,54,55,56,55,51,93,44,91,45,56,52,46,48,57,55,54,57,51,44,51,52,46,48,53,48,55,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,51,52,57,44,34,98,101,100,115,34,58,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,56,55,48,54,55,44,52,53,46,54,52,52,49,52,56,93,44,91,45,57,50,46,54,52,54,54,48,50,44,52,53,46,52,52,49,54,51,53,93,44,91,45,57,50,46,55,52,53,54,56,51,44,52,53,46,50,57,54,48,52,50,93,44,91,45,57,50,46,55,53,56,48,48,56,44,52,53,46,50,48,57,53,54,54,93,44,91,45,57,50,46,49,53,54,52,54,53,44,52,53,46,50,48,57,53,53,52,93,44,91,45,57,50,46,49,53,52,56,56,56,44,52,53,46,54,51,57,55,52,50,93,44,91,45,57,50,46,49,53,52,52,52,51,44,52,53,46,55,50,53,54,49,54,93,44,91,45,57,50,46,53,50,56,49,57,56,44,52,53,46,55,50,56,54,56,93,44,91,45,57,50,46,53,50,57,49,48,55,44,52,53,46,54,52,50,48,55,54,93,44,91,45,57,50,46,56,56,55,48,54,55,44,52,53,46,54,52,52,49,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,54,52,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,51,56,52,49,44,52,50,46,56,49,51,55,57,57,93,44,91,45,56,57,46,56,51,55,53,56,55,44,52,50,46,53,48,53,55,49,93,44,91,45,56,57,46,52,48,49,52,50,51,44,52,50,46,53,48,48,53,53,52,93,44,91,45,56,57,46,51,54,53,55,57,56,44,52,50,46,53,48,48,48,55,56,93,44,91,45,56,57,46,51,54,57,49,50,56,44,52,50,46,56,52,53,48,51,54,93,44,91,45,56,57,46,56,51,56,49,54,55,44,52,50,46,56,53,55,51,57,55,93,44,91,45,56,57,46,56,51,56,52,49,44,52,50,46,56,49,51,55,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,79,114,111,99,111,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,55,55,55,49,50,44,49,56,46,50,57,51,57,55,54,93,44,91,45,54,54,46,52,53,53,55,48,51,44,49,56,46,50,53,55,55,50,54,93,44,91,45,54,54,46,53,52,51,49,51,51,44,49,56,46,49,54,51,48,57,56,93,44,91,45,54,54,46,53,52,55,50,50,44,49,56,46,49,53,51,49,51,93,44,91,45,54,54,46,53,50,49,56,57,57,44,49,56,46,49,53,49,57,53,52,93,44,91,45,54,54,46,52,52,52,53,54,44,49,56,46,49,55,54,54,55,52,93,44,91,45,54,54,46,51,55,51,55,54,56,44,49,56,46,49,55,51,54,57,52,93,44,91,45,54,54,46,51,53,48,55,57,51,44,49,56,46,50,52,49,50,51,53,93,44,91,45,54,54,46,51,55,55,55,49,50,44,49,56,46,50,57,51,57,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,48,55,48,44,34,98,101,100,115,34,58,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,53,51,48,48,54,55,44,52,49,46,53,50,55,49,57,52,93,44,91,45,55,51,46,57,51,51,55,55,53,44,52,49,46,52,56,56,50,55,57,93,44,91,45,55,51,46,57,56,49,52,56,54,44,52,49,46,52,51,56,57,48,53,93,44,91,45,55,51,46,57,56,49,51,56,52,44,52,49,46,51,50,52,54,57,51,93,44,91,45,55,51,46,57,56,50,53,56,52,44,52,49,46,51,50,49,54,57,51,93,44,91,45,55,51,46,53,52,52,55,50,56,44,52,49,46,51,54,54,51,55,53,93,44,91,45,55,51,46,53,51,48,48,54,55,44,52,49,46,53,50,55,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,48,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,48,48,34,44,34,78,65,77,69,34,58,34,78,101,119,112,111,114,116,32,78,101,119,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,49,52,53,44,34,98,101,100,115,34,58,54,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,44,91,45,55,54,46,54,50,56,50,48,53,44,51,55,46,48,57,50,55,53,53,93,44,91,45,55,54,46,52,52,53,51,48,49,44,51,54,46,57,52,49,56,57,49,93,44,91,45,55,54,46,51,57,57,53,54,55,44,51,54,46,57,51,48,57,52,55,93,44,91,45,55,54,46,51,56,52,52,49,57,44,51,54,46,57,53,49,48,53,57,93,44,91,45,55,54,46,52,51,56,48,50,54,44,51,55,46,48,57,52,51,52,56,93,44,91,45,55,54,46,53,57,49,51,48,50,44,51,55,46,50,49,51,50,48,53,93,44,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,55,52,50,51,51,44,51,56,46,50,54,54,57,55,49,93,44,91,45,49,48,51,46,51,57,57,57,51,56,44,51,56,46,50,54,53,52,51,53,93,44,91,45,49,48,51,46,52,48,52,51,51,57,44,51,55,46,54,52,51,53,55,54,93,44,91,45,49,48,51,46,48,55,53,57,51,56,44,51,55,46,54,52,51,52,50,93,44,91,45,49,48,50,46,55,52,55,54,49,53,44,51,55,46,54,52,51,54,52,50,93,44,91,45,49,48,50,46,55,52,50,51,51,44,51,56,46,50,54,54,57,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,56,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,52,54,52,54,50,44,51,52,46,56,50,50,49,49,52,93,44,91,45,57,57,46,52,48,53,56,50,49,44,51,52,46,56,49,51,48,51,56,93,44,91,45,57,57,46,52,50,51,50,48,49,44,51,52,46,55,50,53,48,50,93,44,91,45,57,57,46,54,54,54,56,52,57,44,51,52,46,55,50,52,53,53,53,93,44,91,45,57,57,46,54,54,54,53,49,50,44,51,52,46,53,48,55,49,50,49,93,44,91,45,57,57,46,56,52,52,53,56,53,44,51,52,46,53,48,54,57,49,53,93,44,91,45,57,57,46,54,57,52,53,50,56,44,51,52,46,51,55,56,50,49,56,93,44,91,45,57,57,46,53,54,57,54,57,54,44,51,52,46,52,49,56,52,49,56,93,44,91,45,57,57,46,52,55,53,49,49,53,44,51,52,46,51,57,53,57,51,93,44,91,45,57,57,46,50,54,49,50,55,53,44,51,52,46,52,48,51,53,48,56,93,44,91,45,57,57,46,50,48,54,57,48,53,44,51,52,46,51,51,56,50,55,55,93,44,91,45,57,57,46,50,51,56,48,54,44,51,52,46,52,50,53,48,48,57,93,44,91,45,57,57,46,49,57,54,56,48,49,44,51,52,46,53,52,50,51,56,54,93,44,91,45,57,57,46,49,48,51,49,53,44,51,52,46,54,51,55,57,53,93,44,91,45,57,57,46,50,52,54,52,54,50,44,51,52,46,56,50,50,49,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,97,110,100,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,50,49,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,54,50,57,52,56,56,44,52,55,46,52,55,57,54,49,93,44,91,45,49,49,53,46,50,56,51,56,53,54,44,52,55,46,52,56,54,54,51,56,93,44,91,45,49,49,52,46,57,56,50,50,54,53,44,52,55,46,51,57,54,56,48,52,93,44,91,45,49,49,52,46,57,54,56,57,55,56,44,52,55,46,51,49,50,54,50,53,93,44,91,45,49,49,52,46,55,57,55,50,48,52,44,52,55,46,50,54,56,57,49,54,93,44,91,45,49,49,52,46,54,56,55,50,57,53,44,52,55,46,50,55,52,51,49,93,44,91,45,49,49,52,46,52,50,51,56,53,56,44,52,55,46,50,49,48,48,57,49,93,44,91,45,49,49,52,46,50,53,51,53,56,52,44,52,55,46,49,50,49,48,48,55,93,44,91,45,49,49,52,46,49,56,55,49,55,44,52,55,46,49,51,56,49,57,49,93,44,91,45,49,49,52,46,50,48,51,48,50,54,44,52,55,46,51,53,53,55,52,54,93,44,91,45,49,49,52,46,51,53,51,48,56,44,52,55,46,51,56,57,56,53,93,44,91,45,49,49,52,46,51,53,48,51,54,52,44,52,55,46,54,48,50,49,52,50,93,44,91,45,49,49,52,46,53,56,51,55,54,44,52,55,46,54,48,49,55,49,56,93,44,91,45,49,49,52,46,54,48,52,52,54,50,44,52,55,46,55,56,57,56,55,49,93,44,91,45,49,49,52,46,54,48,52,53,56,52,44,52,55,46,56,55,53,54,48,53,93,44,91,45,49,49,52,46,57,56,57,51,52,52,44,52,55,46,56,55,50,56,48,55,93,44,91,45,49,49,53,46,48,49,48,54,55,50,44,52,56,46,48,49,55,54,50,49,93,44,91,45,49,49,53,46,49,53,52,53,50,55,44,52,56,46,48,49,55,54,57,50,93,44,91,45,49,49,53,46,49,56,53,49,57,54,44,52,55,46,57,49,57,48,48,52,93,44,91,45,49,49,53,46,53,50,52,54,57,53,44,52,55,46,57,48,56,53,57,52,93,44,91,45,49,49,53,46,54,51,55,48,51,54,44,52,56,46,48,55,52,54,52,54,93,44,91,45,49,49,53,46,54,57,56,55,54,52,44,52,56,46,50,51,56,52,57,56,93,44,91,45,49,49,54,46,48,48,57,50,51,55,44,52,56,46,49,53,57,54,54,57,93,44,91,45,49,49,54,46,48,52,56,54,54,57,44,52,56,46,50,49,54,49,50,56,93,44,91,45,49,49,54,46,48,52,57,49,48,56,44,52,55,46,57,55,55,51,51,52,93,44,91,45,49,49,53,46,56,50,51,55,55,52,44,52,55,46,55,53,50,54,49,49,93,44,91,45,49,49,53,46,55,50,50,55,49,52,44,52,55,46,54,57,52,56,53,53,93,44,91,45,49,49,53,46,54,50,57,52,56,56,44,52,55,46,52,55,57,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,71,108,97,115,115,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,55,55,54,48,56,53,44,51,50,46,48,56,54,57,50,53,93,44,91,45,49,48,49,46,55,55,53,56,48,50,44,51,49,46,54,53,49,51,49,57,93,44,91,45,49,48,49,46,50,54,55,49,50,50,44,51,49,46,54,53,48,56,53,52,93,44,91,45,49,48,49,46,50,54,52,50,49,54,44,51,50,46,48,56,55,49,51,54,93,44,91,45,49,48,49,46,54,57,53,48,49,49,44,51,50,46,48,56,55,53,51,50,93,44,91,45,49,48,49,46,55,55,54,48,56,53,44,51,50,46,48,56,54,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,49,48,56,51,54,44,51,53,46,55,53,57,55,53,50,93,44,91,45,57,51,46,57,56,52,50,48,52,44,51,53,46,54,54,48,55,56,51,93,44,91,45,57,52,46,48,55,51,57,53,56,44,51,53,46,54,54,50,52,54,51,93,44,91,45,57,52,46,48,50,56,57,57,55,44,51,53,46,53,48,56,48,51,53,93,44,91,45,57,52,46,48,55,52,56,57,53,44,51,53,46,52,52,53,52,48,51,93,44,91,45,57,52,46,48,56,50,55,57,56,44,51,53,46,50,49,53,57,49,51,93,44,91,45,57,52,46,48,50,56,56,56,54,44,51,53,46,50,49,51,56,52,49,93,44,91,45,57,51,46,57,50,48,49,53,55,44,51,53,46,50,50,57,53,56,53,93,44,91,45,57,51,46,55,49,48,48,55,54,44,51,53,46,51,55,53,50,52,50,93,44,91,45,57,51,46,54,57,53,57,56,49,44,51,53,46,55,54,56,54,52,57,93,44,91,45,57,51,46,57,49,48,56,51,54,44,51,53,46,55,53,57,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,97,106,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,51,51,54,49,55,44,51,54,46,52,54,51,50,51,93,44,91,45,57,56,46,54,50,53,51,54,49,44,51,54,46,51,57,50,53,57,53,93,44,91,45,57,56,46,57,54,48,51,51,52,44,51,54,46,53,48,54,57,49,52,93,44,91,45,57,56,46,57,53,53,56,52,57,44,51,54,46,49,54,49,53,55,55,93,44,91,45,57,56,46,54,51,54,56,57,57,44,51,54,46,49,54,52,56,57,52,93,44,91,45,57,56,46,50,49,48,52,48,53,44,51,54,46,49,54,52,56,56,57,93,44,91,45,57,56,46,49,48,51,57,48,52,44,51,54,46,49,54,52,56,55,55,93,44,91,45,57,56,46,49,48,52,52,50,55,44,51,54,46,52,54,51,49,48,53,93,44,91,45,57,56,46,53,51,51,54,49,55,44,51,54,46,52,54,51,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,54,51,56,55,44,34,98,101,100,115,34,58,51,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,51,53,57,56,44,51,54,46,54,52,49,54,53,57,93,44,91,45,56,55,46,54,52,49,49,53,55,44,51,54,46,54,51,56,49,48,57,93,44,91,45,56,55,46,53,57,50,51,53,56,44,51,54,46,51,54,55,54,54,51,93,44,91,45,56,55,46,53,49,51,53,51,51,44,51,54,46,51,51,52,55,49,51,93,44,91,45,56,55,46,50,56,54,53,48,49,44,51,54,46,51,50,49,57,51,51,93,44,91,45,56,55,46,49,50,48,52,52,51,44,51,54,46,52,53,53,52,54,93,44,91,45,56,55,46,49,49,52,57,56,51,44,51,54,46,54,52,50,51,55,49,93,44,91,45,56,55,46,51,51,53,57,56,44,51,54,46,54,52,49,54,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,80,101,110,100,32,79,114,101,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,49,57,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,52,50,57,57,54,56,44,52,57,46,48,48,48,52,54,54,93,44,91,45,49,49,55,46,53,54,51,56,53,56,44,52,56,46,56,51,54,54,55,49,93,44,91,45,49,49,55,46,52,57,57,57,55,53,44,52,56,46,54,53,54,49,56,55,93,44,91,45,49,49,55,46,53,48,50,51,55,49,44,52,56,46,49,51,52,55,48,56,93,44,91,45,49,49,55,46,52,51,54,57,57,51,44,52,56,46,48,52,55,50,48,55,93,44,91,45,49,49,55,46,48,52,49,56,55,55,44,52,56,46,48,52,53,52,54,54,93,44,91,45,49,49,55,46,48,51,50,52,52,49,44,52,56,46,56,52,54,54,54,54,93,44,91,45,49,49,55,46,48,51,50,51,52,53,44,52,56,46,57,57,57,50,48,49,93,44,91,45,49,49,55,46,52,50,57,57,54,56,44,52,57,46,48,48,48,52,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,77,99,76,101,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,48,56,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,57,55,49,49,53,56,44,52,55,46,56,52,56,54,57,54,93,44,91,45,49,48,49,46,56,55,49,56,54,50,44,52,55,46,56,52,55,53,56,57,93,44,91,45,49,48,50,46,51,56,53,54,52,55,44,52,55,46,56,52,55,55,55,50,93,44,91,45,49,48,50,46,51,56,53,55,53,56,44,52,55,46,55,53,56,48,48,56,93,44,91,45,49,48,50,46,50,54,48,57,53,49,44,52,55,46,55,56,49,52,48,57,93,44,91,45,49,48,50,46,50,54,53,52,53,50,44,52,55,46,54,50,52,51,48,55,93,44,91,45,49,48,50,46,50,48,53,51,53,44,52,55,46,53,55,52,53,48,54,93,44,91,45,49,48,50,46,48,51,54,54,52,56,44,52,55,46,53,55,50,55,48,53,93,44,91,45,49,48,49,46,56,57,50,48,49,55,44,52,55,46,53,48,53,49,51,51,93,44,91,45,49,48,49,46,52,51,54,53,50,49,44,52,55,46,53,54,52,49,53,55,93,44,91,45,49,48,49,46,52,52,48,49,51,57,44,52,55,46,52,55,55,50,57,57,93,44,91,45,49,48,49,46,51,52,53,55,51,53,44,52,55,46,50,57,49,56,57,55,93,44,91,45,49,48,49,46,50,53,55,48,51,49,44,52,55,46,50,54,52,56,57,53,93,44,91,45,49,48,49,46,48,54,48,52,50,52,44,52,55,46,50,57,51,50,57,51,93,44,91,45,49,48,48,46,57,54,53,52,52,44,52,55,46,49,53,55,49,51,52,93,44,91,45,49,48,48,46,55,52,57,51,55,44,52,55,46,49,53,55,50,52,53,93,44,91,45,49,48,48,46,55,52,57,51,51,52,44,52,55,46,51,50,55,54,56,53,93,44,91,45,49,48,48,46,54,55,51,50,49,44,52,55,46,51,50,55,54,52,54,93,44,91,45,49,48,48,46,54,55,50,50,54,50,44,52,55,46,54,55,52,49,50,56,93,44,91,45,49,48,48,46,53,56,53,48,54,50,44,52,55,46,54,55,52,48,56,56,93,44,91,45,49,48,48,46,53,56,53,49,55,57,44,52,55,46,56,52,55,55,54,49,93,44,91,45,49,48,48,46,57,55,49,49,53,56,44,52,55,46,56,52,56,54,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,72,111,111,100,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,53,50,51,54,56,49,44,52,53,46,55,50,52,57,51,93,44,91,45,49,50,49,46,56,54,55,48,50,49,44,52,53,46,54,57,51,51,57,49,93,44,91,45,49,50,49,46,57,50,50,48,50,56,44,52,53,46,54,52,57,50,48,53,93,44,91,45,49,50,49,46,57,48,54,54,50,56,44,52,53,46,53,50,49,49,52,55,93,44,91,45,49,50,49,46,56,49,57,53,56,55,44,52,53,46,52,54,49,54,55,53,93,44,91,45,49,50,49,46,55,48,48,52,55,51,44,52,53,46,51,55,56,53,51,49,93,44,91,45,49,50,49,46,54,57,54,52,55,57,44,52,53,46,50,53,55,57,50,93,44,91,45,49,50,49,46,52,56,49,56,56,56,44,52,53,46,50,53,56,49,50,56,93,44,91,45,49,50,49,46,52,56,50,49,54,56,44,52,53,46,53,49,57,54,48,52,93,44,91,45,49,50,49,46,52,52,49,50,50,57,44,52,53,46,54,57,55,50,56,93,44,91,45,49,50,49,46,53,50,51,54,56,49,44,52,53,46,55,50,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,87,114,105,103,104,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,48,52,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,55,49,50,51,56,44,52,50,46,57,48,55,55,54,50,93,44,91,45,57,51,46,57,55,49,55,49,52,44,52,50,46,54,52,52,55,48,55,93,44,91,45,57,51,46,57,55,49,53,56,51,44,52,50,46,53,53,56,49,51,57,93,44,91,45,57,51,46,52,57,57,52,56,53,44,52,50,46,53,53,55,55,93,44,91,45,57,51,46,52,57,56,54,49,55,44,52,50,46,57,48,56,53,49,50,93,44,91,45,57,51,46,57,55,49,50,51,56,44,52,50,46,57,48,55,55,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,49,57,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,52,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,49,53,54,51,44,51,49,46,57,55,57,56,53,54,93,44,91,45,57,52,46,53,49,49,52,51,49,44,51,49,46,57,55,51,57,56,52,93,44,91,45,57,52,46,52,53,50,52,49,54,44,51,49,46,56,52,52,50,56,49,93,44,91,45,57,52,46,51,57,57,48,57,49,44,51,49,46,54,53,51,53,57,54,93,44,91,45,57,52,46,48,57,48,55,49,55,44,51,49,46,54,50,48,54,48,57,93,44,91,45,57,51,46,57,56,52,52,54,49,44,51,49,46,53,54,57,52,49,57,93,44,91,45,57,51,46,56,51,52,57,49,56,44,51,49,46,53,56,54,50,49,50,93,44,91,45,57,51,46,55,57,52,53,52,56,44,51,49,46,55,48,50,48,55,54,93,44,91,45,57,51,46,56,55,57,48,54,49,44,51,49,46,56,52,52,50,56,55,93,44,91,45,57,52,46,48,49,53,54,51,44,51,49,46,57,55,57,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,50,56,48,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,51,52,51,56,52,44,51,56,46,49,53,50,53,57,51,93,44,91,45,57,49,46,53,50,56,55,57,55,44,51,55,46,55,56,56,57,56,57,93,44,91,45,57,49,46,51,48,56,51,49,49,44,51,55,46,55,56,55,49,56,54,93,44,91,45,57,49,46,51,49,48,54,53,53,44,51,55,46,55,48,48,48,52,56,93,44,91,45,57,49,46,49,53,51,51,52,53,44,51,55,46,54,57,55,51,52,93,44,91,45,57,49,46,49,48,48,48,49,55,44,51,55,46,55,52,48,48,49,50,93,44,91,45,57,49,46,48,57,53,55,54,53,44,51,56,46,50,48,52,48,56,51,93,44,91,45,57,49,46,51,54,55,52,56,50,44,51,56,46,50,48,57,55,52,49,93,44,91,45,57,49,46,53,51,52,51,56,52,44,51,56,46,49,53,50,53,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,97,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,51,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,53,54,48,53,54,44,51,55,46,57,53,49,57,53,57,93,44,91,45,55,57,46,57,51,53,51,54,52,44,51,55,46,57,53,52,51,54,53,93,44,91,45,55,57,46,56,56,55,51,50,57,44,51,55,46,56,57,50,57,55,49,93,44,91,45,55,57,46,54,52,55,53,56,57,44,51,55,46,56,55,52,53,51,56,93,44,91,45,55,57,46,52,56,50,54,54,56,44,51,56,46,48,56,54,48,53,52,93,44,91,45,55,57,46,53,49,50,49,53,56,44,51,56,46,49,56,48,52,49,57,93,44,91,45,55,57,46,55,57,53,57,50,49,44,51,56,46,50,54,53,53,53,50,93,44,91,45,55,57,46,56,57,55,51,51,53,44,51,56,46,49,57,51,51,56,49,93,44,91,45,55,57,46,57,53,57,56,52,52,44,51,56,46,48,54,51,54,57,55,93,44,91,45,56,48,46,48,53,54,48,53,54,44,51,55,46,57,53,49,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,79,116,116,101,114,32,84,97,105,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,57,57,50,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,56,48,57,55,55,44,52,54,46,54,51,48,55,54,53,93,44,91,45,57,54,46,50,54,53,51,54,54,44,52,54,46,49,48,56,54,49,93,44,91,45,57,53,46,55,54,57,55,53,44,52,54,46,49,48,55,52,53,93,44,91,45,57,53,46,49,52,53,56,56,44,52,54,46,49,48,54,55,54,49,93,44,91,45,57,53,46,49,53,53,53,55,44,52,54,46,51,54,56,56,56,93,44,91,45,57,53,46,49,54,51,55,49,44,52,54,46,55,49,55,54,52,93,44,91,45,57,54,46,49,55,52,53,56,55,44,52,54,46,55,49,55,56,53,52,93,44,91,45,57,54,46,50,56,48,57,55,55,44,52,54,46,54,51,48,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,80,108,97,113,117,101,109,105,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,51,55,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,48,56,48,53,54,44,50,57,46,56,57,53,53,50,56,93,44,91,45,57,48,46,48,54,55,50,52,50,44,50,57,46,55,51,56,54,54,52,93,44,91,45,56,57,46,57,56,48,56,49,50,44,50,57,46,53,56,48,49,53,53,93,44,91,45,56,57,46,57,55,55,52,55,44,50,57,46,52,52,57,51,55,49,93,44,91,45,56,57,46,57,48,50,50,54,55,44,50,57,46,50,57,50,50,56,52,93,44,91,45,56,57,46,56,57,57,54,54,52,44,50,57,46,49,53,53,48,48,57,93,44,91,45,56,57,46,54,49,48,52,50,55,44,50,57,46,49,57,56,54,51,53,93,44,91,45,56,57,46,53,48,50,51,49,57,44,50,57,46,49,53,56,51,55,54,93,44,91,45,56,57,46,52,54,51,52,50,52,44,50,57,46,48,56,50,56,50,93,44,91,45,56,57,46,52,56,55,54,52,44,50,56,46,56,56,55,51,55,49,93,44,91,45,56,57,46,51,56,52,55,50,55,44,50,56,46,56,55,49,53,48,51,93,44,91,45,56,57,46,50,55,57,54,48,52,44,50,56,46,57,55,55,55,56,51,93,44,91,45,56,57,46,49,51,51,50,56,52,44,50,56,46,57,49,57,55,50,56,93,44,91,45,56,56,46,57,50,55,56,48,57,44,50,57,46,49,49,55,50,55,53,93,44,91,45,56,56,46,57,52,50,48,53,52,44,50,57,46,50,53,51,55,52,50,93,44,91,45,56,57,46,48,54,57,52,50,54,44,50,57,46,50,57,52,50,57,55,93,44,91,45,56,57,46,49,51,55,54,49,50,44,50,57,46,51,56,49,52,50,57,93,44,91,45,56,56,46,56,55,57,50,51,53,44,50,57,46,54,52,55,52,48,57,93,44,91,45,56,57,46,52,56,52,53,57,49,44,50,57,46,54,49,55,53,53,49,93,44,91,45,56,57,46,55,50,49,48,52,53,44,50,57,46,55,53,55,54,53,50,93,44,91,45,56,57,46,56,54,57,55,50,44,50,57,46,55,57,53,52,53,49,93,44,91,45,56,57,46,57,49,48,55,48,56,44,50,57,46,56,54,55,56,54,53,93,44,91,45,57,48,46,48,48,56,48,53,54,44,50,57,46,56,57,53,53,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,80,111,110,116,111,116,111,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,51,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,50,52,57,54,54,44,51,52,46,51,54,52,55,53,57,93,44,91,45,56,57,46,50,52,54,51,51,57,44,51,52,46,51,55,57,51,52,52,93,44,91,45,56,57,46,50,52,53,52,56,53,44,51,52,46,49,54,49,49,56,54,93,44,91,45,56,57,46,49,51,57,49,53,56,44,51,52,46,48,55,52,49,49,54,93,44,91,45,56,56,46,56,50,52,53,50,51,44,51,52,46,48,55,52,57,52,56,93,44,91,45,56,56,46,56,50,52,57,54,54,44,51,52,46,51,54,52,55,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,77,111,114,101,104,111,117,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,57,57,50,44,34,98,101,100,115,34,58,49,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,54,57,49,48,53,44,51,51,46,48,48,56,49,54,51,93,44,91,45,57,50,46,48,54,53,49,55,57,44,51,50,46,55,50,51,48,48,51,93,44,91,45,57,49,46,57,55,53,48,50,54,44,51,50,46,55,49,49,52,50,56,93,44,91,45,57,49,46,57,49,51,48,53,55,44,51,50,46,53,48,53,57,48,50,93,44,91,45,57,49,46,55,51,57,54,53,49,44,51,50,46,53,54,49,50,57,57,93,44,91,45,57,49,46,54,51,55,53,56,55,44,51,50,46,54,54,55,51,52,49,93,44,91,45,57,49,46,53,54,54,51,54,51,44,51,50,46,56,53,53,53,54,49,93,44,91,45,57,49,46,52,51,53,55,56,50,44,51,51,46,48,48,54,48,57,57,93,44,91,45,57,49,46,52,54,48,52,44,51,51,46,48,48,53,57,49,53,93,44,91,45,57,50,46,48,54,57,49,48,53,44,51,51,46,48,48,56,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,66,117,108,108,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,52,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,50,56,56,51,44,51,56,46,49,49,56,51,56,51,93,44,91,45,56,53,46,53,53,55,50,55,44,51,56,46,48,55,51,56,52,49,93,44,91,45,56,53,46,55,49,50,53,55,56,44,51,56,46,48,56,55,51,49,49,93,44,91,45,56,53,46,57,51,56,51,50,49,44,51,55,46,57,57,56,55,53,54,93,44,91,45,56,53,46,55,51,55,55,55,55,44,51,55,46,56,49,49,55,57,93,44,91,45,56,53,46,54,52,51,50,53,52,44,51,55,46,56,51,52,48,51,51,93,44,91,45,56,53,46,52,56,57,50,48,50,44,51,55,46,57,57,48,54,53,52,93,44,91,45,56,53,46,52,50,56,56,51,44,51,56,46,49,49,56,51,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,50,57,44,34,98,101,100,115,34,58,49,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,49,55,55,54,50,44,51,50,46,55,50,57,53,51,50,93,44,91,45,56,55,46,49,49,50,51,54,50,44,51,50,46,52,56,56,54,53,93,44,91,45,56,55,46,52,50,51,49,53,51,44,51,50,46,52,56,50,57,54,53,93,44,91,45,56,55,46,52,55,51,48,56,44,51,50,46,51,48,55,54,49,52,93,44,91,45,56,55,46,52,55,50,50,48,54,44,51,50,46,50,54,52,57,49,57,93,44,91,45,56,55,46,51,50,53,54,52,52,44,51,50,46,49,57,54,50,55,50,93,44,91,45,56,55,46,49,55,55,56,54,44,51,50,46,48,52,55,53,49,52,93,44,91,45,56,54,46,57,48,54,57,53,54,44,51,50,46,48,52,55,57,55,93,44,91,45,56,54,46,57,48,56,51,48,50,44,51,50,46,50,50,53,48,50,56,93,44,91,45,56,54,46,56,49,52,57,49,50,44,51,50,46,51,52,48,56,48,51,93,44,91,45,56,54,46,57,48,54,55,52,50,44,51,50,46,53,51,54,57,55,55,93,44,91,45,56,54,46,57,49,55,53,57,53,44,51,50,46,54,54,52,49,54,57,93,44,91,45,56,55,46,48,49,55,55,54,50,44,51,50,46,55,50,57,53,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,67,111,109,97,110,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,53,49,49,53,56,44,51,50,46,50,54,49,52,51,54,93,44,91,45,57,56,46,57,50,52,52,48,49,44,51,50,46,48,55,56,48,49,56,93,44,91,45,57,56,46,54,54,56,52,52,49,44,51,49,46,55,48,48,53,49,52,93,44,91,45,57,56,46,52,57,50,56,48,50,44,51,49,46,55,50,51,54,48,56,93,44,91,45,57,56,46,52,54,51,55,51,54,44,51,49,46,54,56,51,57,56,57,93,44,91,45,57,56,46,49,53,54,53,54,56,44,51,49,46,56,52,49,55,49,51,93,44,91,45,57,56,46,50,48,56,51,56,54,44,51,49,46,57,49,55,53,49,49,93,44,91,45,57,56,46,51,50,55,52,57,57,44,51,49,46,57,52,49,50,54,49,93,44,91,45,57,56,46,53,53,49,49,53,56,44,51,50,46,50,54,49,52,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,51,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,55,50,55,48,52,53,44,52,57,46,48,48,48,53,48,56,93,44,91,45,49,49,54,46,48,52,57,48,56,54,44,52,57,46,48,48,48,56,52,54,93,44,91,45,49,49,54,46,48,52,57,48,53,56,44,52,56,46,53,48,50,48,54,50,93,44,91,45,49,49,54,46,48,52,56,54,54,57,44,52,56,46,50,49,54,49,50,56,93,44,91,45,49,49,54,46,48,48,57,50,51,55,44,52,56,46,49,53,57,54,54,57,93,44,91,45,49,49,53,46,54,57,56,55,54,52,44,52,56,46,50,51,56,52,57,56,93,44,91,45,49,49,53,46,54,51,55,48,51,54,44,52,56,46,48,55,52,54,52,54,93,44,91,45,49,49,53,46,53,50,52,54,57,53,44,52,55,46,57,48,56,53,57,52,93,44,91,45,49,49,53,46,49,56,53,49,57,54,44,52,55,46,57,49,57,48,48,52,93,44,91,45,49,49,53,46,49,53,52,53,50,55,44,52,56,46,48,49,55,54,57,50,93,44,91,45,49,49,53,46,48,49,48,54,55,50,44,52,56,46,48,49,55,54,50,49,93,44,91,45,49,49,53,46,48,50,48,48,55,57,44,52,56,46,50,50,53,57,53,52,93,44,91,45,49,49,52,46,56,52,56,48,57,56,44,52,56,46,50,50,54,49,50,53,93,44,91,45,49,49,52,46,56,52,57,56,48,51,44,52,56,46,53,55,51,53,48,50,93,44,91,45,49,49,52,46,56,56,56,53,57,44,52,56,46,54,53,56,55,54,53,93,44,91,45,49,49,52,46,54,57,50,52,53,44,52,56,46,54,56,48,49,51,54,93,44,91,45,49,49,52,46,54,52,56,49,51,52,44,52,56,46,55,55,57,51,51,50,93,44,91,45,49,49,52,46,55,50,55,48,52,53,44,52,57,46,48,48,48,53,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,83,97,110,32,76,111,114,101,110,122,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,55,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,57,55,54,53,44,49,56,46,50,48,54,57,57,50,93,44,91,45,54,54,46,48,53,50,53,53,53,44,49,56,46,49,49,51,48,54,57,93,44,91,45,54,54,46,48,53,49,55,56,56,44,49,56,46,49,48,57,56,55,56,93,44,91,45,54,54,46,48,49,48,50,52,53,44,49,56,46,48,55,53,53,54,53,93,44,91,45,54,53,46,57,50,54,50,50,55,44,49,56,46,49,49,57,57,54,51,93,44,91,45,54,53,46,57,50,56,51,52,49,44,49,56,46,49,52,50,56,52,53,93,44,91,45,54,53,46,57,53,49,48,49,57,44,49,56,46,50,50,57,50,57,50,93,44,91,45,54,53,46,57,57,55,54,53,44,49,56,46,50,48,54,57,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,84,111,97,32,65,108,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,52,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,49,56,55,54,52,44,49,56,46,51,54,55,52,49,49,93,44,91,45,54,54,46,50,55,56,48,55,54,44,49,56,46,51,50,57,57,55,53,93,44,91,45,54,54,46,50,48,52,55,51,52,44,49,56,46,51,49,54,48,51,53,93,44,91,45,54,54,46,49,57,54,57,56,44,49,56,46,51,56,57,50,56,57,93,44,91,45,54,54,46,50,53,50,53,53,52,44,49,56,46,51,57,52,49,56,55,93,44,91,45,54,54,46,51,48,51,54,54,51,44,49,56,46,51,56,52,48,55,55,93,44,91,45,54,54,46,51,49,56,55,54,52,44,49,56,46,51,54,55,52,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,50,50,44,34,98,101,100,115,34,58,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,55,48,50,49,52,44,52,55,46,52,49,48,49,53,49,93,44,91,45,57,52,46,54,53,57,57,52,50,44,52,54,46,56,48,51,55,49,54,93,44,91,45,57,52,46,55,56,55,49,50,54,44,52,54,46,56,48,51,57,52,51,93,44,91,45,57,52,46,55,55,57,49,50,49,44,52,54,46,51,57,52,50,49,53,93,44,91,45,57,52,46,55,51,49,52,52,50,44,52,54,46,51,54,56,54,48,53,93,44,91,45,57,52,46,54,53,51,52,54,50,44,52,54,46,51,52,56,54,55,56,93,44,91,45,57,52,46,51,52,49,54,55,57,44,52,54,46,50,55,55,55,48,53,93,44,91,45,57,52,46,51,50,55,50,56,54,44,52,54,46,50,56,57,56,49,55,93,44,91,45,57,52,46,51,52,50,57,49,44,52,54,46,56,48,53,53,50,57,93,44,91,45,57,51,46,55,55,54,48,50,52,44,52,54,46,56,48,50,56,57,49,93,44,91,45,57,51,46,55,55,53,50,53,55,44,52,55,46,48,51,48,52,49,56,93,44,91,45,57,51,46,55,55,54,48,55,52,44,52,55,46,50,55,55,57,56,54,93,44,91,45,57,52,46,48,50,53,57,56,49,44,52,55,46,51,53,49,51,56,56,93,44,91,45,57,52,46,49,49,55,57,57,57,44,52,55,46,52,56,48,55,52,52,93,44,91,45,57,52,46,51,50,55,53,51,49,44,52,55,46,52,49,53,56,52,52,93,44,91,45,57,52,46,52,49,54,50,55,57,44,52,55,46,52,52,52,56,50,56,93,44,91,45,57,52,46,54,55,48,50,49,52,44,52,55,46,52,49,48,49,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,114,99,104,117,108,101,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,48,56,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,52,50,49,50,50,51,44,51,55,46,48,48,48,50,50,51,93,44,91,45,49,48,54,46,52,55,54,48,57,44,51,54,46,57,57,51,53,52,56,93,44,91,45,49,48,54,46,54,55,56,51,53,52,44,51,55,46,50,50,56,53,54,54,93,44,91,45,49,48,54,46,54,55,56,51,55,51,44,51,55,46,52,48,51,53,57,54,93,44,91,45,49,48,54,46,55,49,48,55,55,53,44,51,55,46,52,48,52,50,50,56,93,44,91,45,49,48,55,46,49,50,56,55,51,55,44,51,55,46,51,57,50,52,48,57,93,44,91,45,49,48,55,46,49,50,56,54,56,44,51,55,46,52,50,50,57,52,50,93,44,91,45,49,48,55,46,52,56,50,49,51,49,44,51,55,46,52,50,50,54,55,51,93,44,91,45,49,48,55,46,52,56,49,55,51,55,44,51,55,46,48,48,48,49,50,55,93,44,91,45,49,48,55,46,52,50,49,50,50,51,44,51,55,46,48,48,48,50,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,89,97,122,111,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,44,91,45,57,48,46,51,54,52,48,51,49,44,51,51,46,48,49,48,53,57,54,93,44,91,45,57,48,46,52,52,57,56,57,51,44,51,50,46,57,50,51,50,57,93,44,91,45,57,48,46,54,53,54,54,51,50,44,51,50,46,57,50,50,53,49,93,44,91,45,57,48,46,55,53,57,55,53,51,44,51,50,46,56,51,53,55,54,51,93,44,91,45,57,48,46,54,57,51,48,54,49,44,51,50,46,55,53,52,50,57,55,93,44,91,45,57,48,46,55,50,51,49,53,57,44,51,50,46,54,54,50,49,50,56,93,44,91,45,57,48,46,55,50,48,49,48,50,44,51,50,46,54,49,56,56,53,56,93,44,91,45,57,48,46,53,53,51,56,50,49,44,51,50,46,53,48,55,53,55,52,93,44,91,45,57,48,46,52,53,48,48,51,55,44,51,50,46,53,55,51,55,56,51,93,44,91,45,57,48,46,48,52,57,49,50,57,44,51,50,46,55,51,53,54,55,52,93,44,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,79,117,116,97,103,97,109,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,55,53,52,44,34,98,101,100,115,34,58,53,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,48,54,48,56,51,44,52,52,46,53,57,48,53,49,53,93,44,91,45,56,56,46,55,51,54,56,48,50,44,52,52,46,53,57,48,54,48,53,93,44,91,45,56,56,46,55,51,57,55,55,44,52,52,46,50,52,51,51,48,51,93,44,91,45,56,56,46,52,48,52,48,55,44,52,52,46,50,52,52,49,48,50,93,44,91,45,56,56,46,49,57,50,54,49,49,44,52,52,46,50,52,49,57,52,55,93,44,91,45,56,56,46,49,57,48,52,54,53,44,52,52,46,53,56,54,55,57,57,93,44,91,45,56,56,46,50,52,53,50,48,52,44,52,52,46,53,56,52,55,52,54,93,44,91,45,56,56,46,54,48,54,48,56,51,44,52,52,46,53,57,48,53,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,56,57,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,49,48,52,56,50,51,44,51,57,46,49,52,51,53,48,55,93,44,91,45,57,52,46,49,49,52,49,55,53,44,51,56,46,57,49,55,51,48,52,93,44,91,45,57,51,46,56,51,52,55,49,57,44,51,56,46,57,51,55,57,48,57,93,44,91,45,57,51,46,52,57,55,50,55,56,44,51,56,46,57,50,56,52,51,93,44,91,45,57,51,46,52,57,54,51,55,55,44,51,56,46,57,52,50,56,51,55,93,44,91,45,57,51,46,52,55,55,50,51,51,44,51,57,46,50,57,50,55,57,54,93,44,91,45,57,51,46,52,56,55,56,56,53,44,51,57,46,50,50,56,56,55,53,93,44,91,45,57,51,46,54,53,48,53,50,54,44,51,57,46,50,52,56,50,49,52,93,44,91,45,57,51,46,55,53,56,52,54,51,44,51,57,46,50,48,55,48,50,49,93,44,91,45,57,52,46,48,50,56,56,50,50,44,51,57,46,49,57,49,53,57,53,93,44,91,45,57,52,46,49,48,52,56,50,51,44,51,57,46,49,52,51,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,87,105,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,51,51,54,44,34,98,101,100,115,34,58,50,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,50,56,52,52,52,44,51,53,46,56,54,55,50,48,56,93,44,91,45,55,56,46,49,57,50,49,49,55,44,51,53,46,55,51,48,53,52,53,93,44,91,45,55,56,46,49,50,53,53,51,57,44,51,53,46,54,48,51,49,48,55,93,44,91,45,55,56,46,48,54,52,55,56,52,44,51,53,46,53,56,53,50,54,51,93,44,91,45,55,55,46,56,50,50,53,49,49,44,51,53,46,53,56,53,51,56,51,93,44,91,45,55,55,46,55,48,48,54,57,50,44,51,53,46,54,53,50,50,57,53,93,44,91,45,55,55,46,54,54,53,49,51,49,44,51,53,46,54,55,52,57,51,53,93,44,91,45,55,55,46,55,53,49,51,51,57,44,51,53,46,56,50,55,55,57,52,93,44,91,45,55,55,46,56,50,56,52,52,52,44,51,53,46,56,54,55,50,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,111,114,114,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,57,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,50,55,49,54,52,44,52,48,46,55,49,49,50,48,51,93,44,91,45,56,50,46,56,53,56,51,48,50,44,52,48,46,55,48,53,48,49,57,93,44,91,45,56,50,46,57,53,55,56,49,55,44,52,48,46,54,52,53,49,52,56,93,44,91,45,56,50,46,57,53,56,52,48,49,44,52,48,46,52,57,48,54,54,52,93,44,91,45,56,51,46,48,50,48,55,57,56,44,52,48,46,52,51,51,55,57,53,93,44,91,45,56,50,46,57,50,57,53,56,56,44,52,48,46,51,53,56,49,50,51,93,44,91,45,56,50,46,55,52,52,57,51,49,44,52,48,46,51,52,57,54,48,51,93,44,91,45,56,50,46,54,52,54,53,48,51,44,52,48,46,51,52,53,48,55,54,93,44,91,45,56,50,46,54,50,51,54,48,57,44,52,48,46,53,52,57,56,55,57,93,44,91,45,56,50,46,54,50,55,55,54,55,44,52,48,46,55,48,57,51,53,50,93,44,91,45,56,50,46,55,50,55,49,54,52,44,52,48,46,55,49,49,50,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,71,114,97,110,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,56,50,55,55,52,51,44,52,54,46,54,54,48,56,57,54,93,44,91,45,49,49,51,46,56,55,52,54,53,49,44,52,54,46,53,48,56,51,50,57,93,44,91,45,49,49,51,46,55,56,50,48,51,50,44,52,54,46,51,53,57,53,49,56,93,44,91,45,49,49,51,46,55,53,51,50,52,54,44,52,54,46,49,49,50,56,93,44,91,45,49,49,51,46,54,52,56,51,53,56,44,52,53,46,57,54,53,48,51,56,93,44,91,45,49,49,51,46,53,49,55,52,48,57,44,52,53,46,57,52,48,48,56,57,93,44,91,45,49,49,51,46,50,55,56,48,49,50,44,52,54,46,48,52,53,50,54,56,93,44,91,45,49,49,51,46,50,56,52,53,51,50,44,52,54,46,50,50,50,55,56,51,93,44,91,45,49,49,51,46,48,51,54,56,50,53,44,52,54,46,50,54,54,56,50,54,93,44,91,45,49,49,51,46,48,51,56,55,48,50,44,52,54,46,55,51,53,53,52,93,44,91,45,49,49,51,46,49,49,53,54,49,52,44,52,54,46,55,49,51,51,56,55,93,44,91,45,49,49,51,46,51,48,50,57,48,51,44,52,54,46,56,51,50,49,53,57,93,44,91,45,49,49,51,46,52,49,54,53,57,57,44,52,54,46,56,51,50,49,49,51,93,44,91,45,49,49,51,46,52,55,57,56,53,54,44,52,54,46,55,52,52,55,49,52,93,44,91,45,49,49,51,46,56,50,55,55,52,51,44,52,54,46,54,54,48,56,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,70,111,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,48,48,48,56,53,44,52,55,46,53,56,55,50,50,56,93,44,91,45,57,57,46,50,54,53,55,57,56,44,52,55,46,53,56,55,54,93,44,91,45,57,57,46,50,54,54,50,49,53,44,52,55,46,51,50,54,57,57,57,93,44,91,45,57,56,46,52,57,57,50,52,54,44,52,55,46,51,50,54,53,51,56,93,44,91,45,57,56,46,53,48,48,48,56,53,44,52,55,46,53,56,55,50,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,52,55,50,44,34,98,101,100,115,34,58,49,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,55,50,54,52,55,44,51,53,46,54,51,56,53,53,54,93,44,91,45,57,52,46,52,51,49,48,52,53,44,51,53,46,51,57,51,55,51,53,93,44,91,45,57,52,46,50,56,57,51,51,50,44,51,53,46,51,52,53,50,49,49,93,44,91,45,57,52,46,48,55,52,56,57,53,44,51,53,46,52,52,53,52,48,51,93,44,91,45,57,52,46,48,50,56,57,57,55,44,51,53,46,53,48,56,48,51,53,93,44,91,45,57,52,46,48,55,51,57,53,56,44,51,53,46,54,54,50,52,54,51,93,44,91,45,57,51,46,57,56,52,50,48,52,44,51,53,46,54,54,48,55,56,51,93,44,91,45,57,51,46,57,49,48,56,51,54,44,51,53,46,55,53,57,55,53,50,93,44,91,45,57,51,46,57,54,50,56,57,50,44,51,53,46,55,54,48,57,51,93,44,91,45,57,52,46,52,57,51,49,51,44,51,53,46,55,53,57,49,54,55,93,44,91,45,57,52,46,52,55,50,54,52,55,44,51,53,46,54,51,56,53,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,66,117,114,110,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,53,48,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,52,53,55,56,50,44,51,48,46,57,50,49,52,51,57,93,44,91,45,57,56,46,51,57,51,54,52,54,44,51,48,46,56,52,50,57,54,93,44,91,45,57,56,46,52,49,56,53,57,52,44,51,48,46,54,52,53,57,50,54,93,44,91,45,57,56,46,51,53,49,48,52,49,44,51,48,46,52,56,54,48,57,54,93,44,91,45,57,56,46,49,50,53,53,53,54,44,51,48,46,52,50,54,49,56,54,93,44,91,45,57,56,46,48,52,57,56,56,54,44,51,48,46,54,50,52,49,53,53,93,44,91,45,57,55,46,57,54,50,56,54,44,51,48,46,55,56,53,54,52,49,93,44,91,45,57,55,46,56,50,56,53,49,50,44,51,48,46,57,48,54,49,56,56,93,44,91,45,57,55,46,57,49,49,54,56,52,44,51,49,46,48,51,52,57,49,57,93,44,91,45,57,56,46,52,51,57,54,56,55,44,51,49,46,48,50,57,53,51,55,93,44,91,45,57,56,46,52,52,53,55,56,50,44,51,48,46,57,50,49,52,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,54,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,54,34,44,34,78,65,77,69,34,58,34,83,116,101,46,32,71,101,110,101,118,105,101,118,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,55,49,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,49,54,48,50,50,44,51,56,46,48,52,50,51,49,53,93,44,91,45,57,48,46,51,50,50,56,55,44,51,55,46,57,56,49,55,51,49,93,44,91,45,57,48,46,52,53,57,49,51,51,44,51,55,46,56,55,56,57,50,52,93,44,91,45,57,48,46,50,48,48,50,48,56,44,51,55,46,54,54,57,54,50,56,93,44,91,45,57,48,46,49,49,48,53,51,55,44,51,55,46,54,55,49,51,52,93,44,91,45,56,57,46,57,51,56,54,48,56,44,51,55,46,56,55,52,51,48,52,93,44,91,45,56,57,46,57,56,56,49,48,56,44,51,55,46,57,54,49,55,52,57,93,44,91,45,57,48,46,50,48,53,50,48,53,44,51,56,46,48,56,54,57,48,55,93,44,91,45,57,48,46,50,53,50,54,54,54,44,51,56,46,49,50,55,56,49,50,93,44,91,45,57,48,46,52,49,54,48,50,50,44,51,56,46,48,52,50,51,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,71,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,56,53,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,56,54,50,56,49,44,51,53,46,49,56,50,49,52,93,44,91,45,49,48,48,46,53,51,56,57,55,56,44,51,53,46,49,56,51,49,52,52,93,44,91,45,49,48,48,46,53,52,48,49,53,56,44,51,53,46,54,49,57,50,57,54,93,44,91,45,49,48,49,46,48,56,53,57,51,53,44,51,53,46,54,49,57,49,48,50,93,44,91,45,49,48,49,46,48,56,54,50,56,49,44,51,53,46,49,56,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,77,99,68,111,110,111,117,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,55,53,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,48,52,50,49,54,44,52,48,46,54,51,57,50,48,49,93,44,91,45,57,48,46,57,48,57,55,53,54,44,52,48,46,50,56,52,51,57,52,93,44,91,45,57,48,46,52,53,48,50,50,55,44,52,48,46,50,55,54,51,51,53,93,44,91,45,57,48,46,52,52,53,54,50,55,44,52,48,46,54,50,55,54,51,56,93,44,91,45,57,48,46,55,56,57,54,53,50,44,52,48,46,54,51,53,55,53,93,44,91,45,57,48,46,57,48,52,50,49,54,44,52,48,46,54,51,57,50,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,53,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,56,52,51,52,57,44,52,49,46,49,54,48,48,49,49,93,44,91,45,57,53,46,51,56,52,57,54,52,44,52,48,46,57,48,49,53,53,93,44,91,45,57,52,46,57,50,56,52,53,57,44,52,48,46,57,48,48,54,53,51,93,44,91,45,57,52,46,57,50,55,53,56,55,44,52,49,46,49,53,56,53,48,56,93,44,91,45,57,53,46,49,53,53,56,53,49,44,52,49,46,49,53,57,50,51,54,93,44,91,45,57,53,46,51,56,52,51,52,57,44,52,49,46,49,54,48,48,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,50,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,57,56,53,53,54,44,51,53,46,56,57,48,48,50,52,93,44,91,45,57,49,46,51,53,54,50,52,54,44,51,53,46,55,48,49,49,48,55,93,44,91,45,57,49,46,51,54,57,53,55,44,51,53,46,53,50,54,51,54,50,93,44,91,45,57,49,46,53,56,49,56,56,44,51,53,46,53,51,48,52,52,55,93,44,91,45,57,49,46,53,56,52,54,56,55,44,51,53,46,52,52,50,51,49,49,93,44,91,45,57,49,46,51,52,55,50,53,55,44,51,53,46,52,51,57,49,48,54,93,44,91,45,57,49,46,50,53,49,53,53,53,44,51,53,46,51,53,55,53,54,49,93,44,91,45,57,49,46,48,51,57,55,56,51,44,51,53,46,51,53,52,50,53,54,93,44,91,45,57,49,46,48,51,57,50,51,44,51,53,46,52,52,52,55,49,55,93,44,91,45,57,49,46,48,51,54,57,54,55,44,51,53,46,55,48,56,52,49,56,93,44,91,45,57,49,46,48,51,50,52,57,57,44,51,53,46,56,56,53,48,55,93,44,91,45,57,49,46,49,57,56,53,53,54,44,51,53,46,56,57,48,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,57,34,44,34,78,65,77,69,34,58,34,72,117,100,115,112,101,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,57,57,56,48,49,50,44,51,50,46,48,48,50,51,55,55,93,44,91,45,49,48,53,46,57,57,55,49,53,50,44,51,49,46,51,56,55,50,51,93,44,91,45,49,48,53,46,56,54,57,50,57,52,44,51,49,46,50,56,56,57,53,53,93,44,91,45,49,48,53,46,55,55,52,48,50,56,44,51,49,46,49,54,56,52,55,52,93,44,91,45,49,48,53,46,54,52,56,56,51,57,44,51,49,46,49,49,53,56,55,55,93,44,91,45,49,48,53,46,53,53,55,50,50,54,44,51,48,46,57,56,57,54,55,51,93,44,91,45,49,48,53,46,51,56,54,55,50,52,44,51,48,46,56,53,51,51,48,54,93,44,91,45,49,48,53,46,50,49,55,55,56,51,44,51,48,46,56,48,53,57,52,54,93,44,91,45,49,48,52,46,57,55,57,56,48,49,44,51,48,46,54,50,57,50,53,56,93,44,91,45,49,48,52,46,57,49,55,49,54,51,44,51,48,46,54,54,51,54,50,54,93,44,91,45,49,48,52,46,57,48,57,49,50,52,44,51,49,46,50,52,54,54,48,57,93,44,91,45,49,48,52,46,57,49,56,51,53,55,44,51,50,46,48,48,48,52,49,56,93,44,91,45,49,48,53,46,57,57,56,48,49,50,44,51,50,46,48,48,50,51,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,82,97,112,105,100,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,53,52,54,44,34,98,101,100,115,34,58,49,49,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,57,54,49,51,49,44,51,49,46,52,55,55,56,55,55,93,44,91,45,57,50,46,54,51,49,57,52,52,44,51,49,46,51,57,48,52,55,56,93,44,91,45,57,50,46,55,49,56,57,56,51,44,51,49,46,53,49,55,53,57,52,93,44,91,45,57,50,46,57,49,51,48,49,57,44,51,49,46,51,54,56,50,51,54,93,44,91,45,57,50,46,57,56,49,52,54,52,44,51,49,46,51,52,54,54,52,52,93,44,91,45,57,50,46,56,50,57,54,53,49,44,51,49,46,50,53,50,50,56,49,93,44,91,45,57,50,46,56,50,51,57,51,50,44,51,48,46,56,57,93,44,91,45,57,50,46,53,57,55,55,52,49,44,51,48,46,56,57,54,49,48,49,93,44,91,45,57,50,46,53,50,52,54,52,54,44,51,48,46,56,57,51,51,50,56,93,44,91,45,57,50,46,51,56,48,56,52,51,44,51,49,46,48,48,48,57,50,57,93,44,91,45,57,50,46,50,56,48,55,51,56,44,51,48,46,57,54,53,48,55,49,93,44,91,45,57,50,46,50,48,56,55,56,53,44,51,48,46,57,54,52,55,51,52,93,44,91,45,57,50,46,50,51,51,50,51,44,51,49,46,51,50,49,53,52,53,93,44,91,45,57,50,46,48,56,54,55,49,56,44,51,49,46,51,51,53,51,55,52,93,44,91,45,57,50,46,49,57,54,49,51,49,44,51,49,46,52,55,55,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,52,51,51,44,34,98,101,100,115,34,58,49,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,52,57,57,55,53,44,52,49,46,48,48,51,57,53,93,44,91,45,49,48,49,46,50,52,55,57,54,51,44,52,48,46,54,57,55,56,48,50,93,44,91,45,49,48,48,46,55,55,55,56,51,51,44,52,48,46,55,48,48,49,51,53,93,44,91,45,49,48,48,46,50,50,51,51,49,49,44,52,48,46,55,48,48,50,53,52,93,44,91,45,49,48,48,46,50,50,52,50,51,53,44,52,49,46,48,52,54,53,57,55,93,44,91,45,49,48,48,46,50,53,49,48,57,56,44,52,49,46,51,57,51,50,57,56,93,44,91,45,49,48,48,46,55,49,51,50,52,51,44,52,49,46,51,57,51,53,49,49,93,44,91,45,49,48,49,46,50,54,57,54,57,53,44,52,49,46,51,57,52,57,51,52,93,44,91,45,49,48,49,46,50,55,48,51,56,49,44,52,49,46,48,52,55,51,57,50,93,44,91,45,49,48,49,46,50,52,57,57,55,53,44,52,49,46,48,48,51,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,53,50,50,54,44,51,51,46,50,54,56,56,54,49,93,44,91,45,57,52,46,54,53,51,57,57,52,44,51,50,46,56,55,57,53,48,54,93,44,91,45,57,52,46,48,52,51,48,55,56,44,51,50,46,56,56,49,48,56,57,93,44,91,45,57,52,46,48,52,50,57,54,52,44,51,51,46,48,49,57,50,49,57,93,44,91,45,57,52,46,48,52,50,57,56,55,44,51,51,46,50,55,49,50,52,50,93,44,91,45,57,52,46,50,49,56,55,55,55,44,51,51,46,50,57,54,52,48,50,93,44,91,45,57,52,46,50,51,49,51,51,51,44,51,51,46,50,52,49,48,55,51,93,44,91,45,57,52,46,52,54,56,52,52,50,44,51,51,46,50,57,52,51,49,51,93,44,91,45,57,52,46,54,53,50,50,54,44,51,51,46,50,54,56,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,55,57,44,34,98,101,100,115,34,58,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,49,54,52,48,51,44,51,54,46,53,48,49,53,56,51,93,44,91,45,56,56,46,53,51,48,51,50,50,44,51,54,46,49,53,50,48,50,51,93,44,91,45,56,56,46,50,49,50,53,53,57,44,51,54,46,49,50,48,50,57,93,44,91,45,56,55,46,57,57,48,57,50,44,51,54,46,51,54,48,49,51,51,93,44,91,45,56,56,46,48,53,51,50,57,51,44,51,54,46,52,57,55,48,53,56,93,44,91,45,56,56,46,52,56,57,48,55,53,44,51,54,46,53,48,49,49,53,55,93,44,91,45,56,56,46,53,49,54,52,48,51,44,51,54,46,53,48,49,53,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,56,52,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,56,52,48,34,44,34,78,65,77,69,34,58,34,87,105,110,99,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,55,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,48,48,52,57,55,44,51,57,46,49,56,48,49,54,51,93,44,91,45,55,56,46,49,55,49,54,50,44,51,57,46,49,52,51,49,55,52,93,44,91,45,55,56,46,49,52,56,56,57,53,44,51,57,46,49,55,53,51,53,50,93,44,91,45,55,56,46,50,48,48,52,57,55,44,51,57,46,49,56,48,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,68,117,112,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,48,54,50,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,54,51,52,50,44,51,53,46,49,56,57,55,49,54,93,44,91,45,55,56,46,49,52,55,49,50,57,44,51,52,46,57,48,50,53,48,54,93,44,91,45,55,56,46,49,57,56,54,52,50,44,51,52,46,55,52,49,54,51,55,93,44,91,45,55,56,46,49,49,52,48,48,55,44,51,52,46,55,50,49,55,57,53,93,44,91,45,55,55,46,54,56,48,49,50,55,44,51,52,46,55,50,48,53,57,53,93,44,91,45,55,55,46,54,53,49,48,52,53,44,51,52,46,57,50,51,51,52,49,93,44,91,45,55,55,46,54,55,52,56,48,53,44,51,52,46,57,55,51,57,93,44,91,45,55,55,46,55,51,49,48,50,54,44,51,53,46,48,48,56,49,51,56,93,44,91,45,55,55,46,55,54,57,49,55,55,44,51,53,46,49,52,53,53,55,54,93,44,91,45,55,55,46,56,51,52,50,52,57,44,51,53,46,49,55,55,56,52,54,93,44,91,45,55,56,46,49,54,51,52,50,44,51,53,46,49,56,57,55,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,72,97,121,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,52,51,51,44,34,98,101,100,115,34,58,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,53,52,50,53,55,44,51,53,46,54,57,53,53,57,51,93,44,91,45,56,51,46,49,56,50,57,57,57,44,51,53,46,54,55,48,54,50,53,93,44,91,45,56,51,46,49,56,54,51,50,50,44,51,53,46,53,49,52,51,54,56,93,44,91,45,56,50,46,57,50,48,56,56,49,44,51,53,46,50,57,50,48,51,55,93,44,91,45,56,50,46,56,51,50,50,52,52,44,51,53,46,51,49,56,51,50,52,93,44,91,45,56,50,46,55,52,53,49,51,57,44,51,53,46,52,50,50,57,54,55,93,44,91,45,56,50,46,55,54,53,56,57,51,44,51,53,46,53,54,55,52,57,53,93,44,91,45,56,50,46,56,56,51,57,48,57,44,51,53,46,54,55,56,50,51,53,93,44,91,45,56,50,46,57,54,49,55,53,52,44,51,53,46,55,57,48,57,53,57,93,44,91,45,56,51,46,48,55,51,57,49,56,44,51,53,46,55,57,48,48,53,53,93,44,91,45,56,51,46,50,53,53,51,52,51,44,51,53,46,55,49,53,48,56,52,93,44,91,45,56,51,46,50,53,52,50,53,55,44,51,53,46,54,57,53,53,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,56,50,48,49,44,34,98,101,100,115,34,58,50,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,50,57,54,49,53,44,52,52,46,55,57,49,48,56,54,93,44,91,45,57,51,46,50,56,49,53,50,49,44,52,52,46,53,52,51,57,53,55,93,44,91,45,57,51,46,50,56,49,54,56,54,44,52,52,46,52,55,49,57,57,56,93,44,91,45,57,51,46,48,51,57,52,56,53,44,52,52,46,52,55,49,56,55,49,93,44,91,45,57,50,46,57,49,56,57,55,55,44,52,52,46,53,52,51,50,53,93,44,91,45,57,50,46,55,57,50,55,49,53,44,52,52,46,53,52,51,50,52,93,44,91,45,57,50,46,55,51,50,48,52,51,44,52,52,46,55,49,52,51,52,53,93,44,91,45,57,50,46,56,48,50,48,49,55,44,52,52,46,55,52,53,54,55,51,93,44,91,45,57,51,46,48,48,53,57,55,56,44,52,52,46,55,55,49,54,56,53,93,44,91,45,57,51,46,48,50,48,48,52,52,44,52,52,46,56,57,48,55,53,93,44,91,45,57,51,46,49,55,56,53,51,57,44,52,52,46,56,56,56,51,51,56,93,44,91,45,57,51,46,51,50,57,54,49,53,44,52,52,46,55,57,49,48,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,72,97,114,110,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,56,57,54,53,56,49,44,52,51,46,54,49,49,49,54,52,93,44,91,45,49,49,57,46,56,57,54,57,54,57,44,52,51,46,49,55,57,48,49,55,93,44,91,45,49,49,57,46,57,51,50,54,49,49,44,52,51,46,49,55,56,57,54,51,93,44,91,45,49,49,57,46,57,52,51,55,55,57,44,52,50,46,55,52,54,51,55,49,93,44,91,45,49,49,57,46,51,54,53,51,51,55,44,52,50,46,55,52,56,57,53,56,93,44,91,45,49,49,57,46,51,54,48,49,50,50,44,52,49,46,57,57,52,50,55,56,93,44,91,45,49,49,57,46,51,50,52,49,56,52,44,52,49,46,57,57,51,57,50,51,93,44,91,45,49,49,56,46,49,57,55,51,55,49,44,52,49,46,57,57,55,51,52,52,93,44,91,45,49,49,56,46,50,49,52,54,57,56,44,52,50,46,50,55,53,56,57,49,93,44,91,45,49,49,56,46,50,50,56,55,57,51,44,52,50,46,57,49,52,54,50,53,93,44,91,45,49,49,56,46,50,50,55,54,52,53,44,52,52,46,48,51,57,56,54,50,93,44,91,45,49,49,56,46,56,49,54,56,57,44,52,52,46,48,52,55,56,50,56,93,44,91,45,49,49,56,46,56,49,54,57,51,49,44,52,51,46,57,54,48,55,51,51,93,44,91,45,49,49,57,46,54,53,55,49,56,51,44,52,51,46,57,53,56,57,50,93,44,91,45,49,49,57,46,55,55,53,52,48,50,44,52,51,46,57,53,57,48,56,54,93,44,91,45,49,49,57,46,55,55,55,53,50,56,44,52,51,46,54,57,55,57,53,55,93,44,91,45,49,49,57,46,56,57,55,52,51,52,44,52,51,46,54,57,56,50,93,44,91,45,49,49,57,46,56,57,54,53,56,49,44,52,51,46,54,49,49,49,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,97,117,110,97,98,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,56,56,53,50,51,44,49,56,46,48,53,56,57,52,49,93,44,91,45,54,53,46,56,55,51,50,57,57,44,49,55,46,57,51,55,57,53,53,93,44,91,45,54,53,46,56,49,54,52,52,57,44,49,55,46,57,54,53,53,48,52,93,44,91,45,54,53,46,56,54,55,56,48,50,44,49,56,46,48,50,54,48,48,55,93,44,91,45,54,53,46,57,56,56,53,50,51,44,49,56,46,48,53,56,57,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,48,50,55,56,51,44,52,52,46,50,52,57,52,55,51,93,44,91,45,57,48,46,48,50,53,57,53,51,44,52,52,46,48,57,49,55,52,56,93,44,91,45,56,57,46,57,54,50,54,48,49,44,52,51,46,57,55,57,50,51,54,93,44,91,45,56,57,46,57,54,49,50,50,49,44,52,51,46,56,54,52,48,50,55,93,44,91,45,56,57,46,56,54,53,49,51,50,44,52,51,46,55,56,51,52,49,52,93,44,91,45,56,57,46,55,56,52,57,48,49,44,52,51,46,54,52,49,48,53,49,93,44,91,45,56,57,46,53,57,57,53,52,55,44,52,51,46,54,52,50,54,51,54,93,44,91,45,56,57,46,53,57,55,57,53,44,52,51,46,57,56,50,49,93,44,91,45,56,57,46,53,57,55,57,56,44,52,52,46,50,52,53,55,50,53,93,44,91,45,56,57,46,55,50,52,55,52,54,44,52,52,46,50,52,55,54,55,56,93,44,91,45,56,57,46,57,48,50,55,56,51,44,52,52,46,50,52,57,52,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,52,51,49,49,50,44,52,48,46,54,48,53,56,50,55,93,44,91,45,57,49,46,57,52,57,55,52,55,44,52,48,46,51,48,48,56,51,50,93,44,91,45,57,49,46,57,53,48,56,49,50,44,52,48,46,50,53,55,50,49,93,44,91,45,57,49,46,52,57,55,50,54,54,44,52,48,46,50,52,56,55,54,51,93,44,91,45,57,49,46,52,49,57,52,50,50,44,52,48,46,51,55,56,50,54,52,93,44,91,45,57,49,46,52,56,51,49,53,51,44,52,48,46,51,56,50,52,57,50,93,44,91,45,57,49,46,55,49,54,55,54,57,44,52,48,46,53,57,56,53,51,93,44,91,45,57,49,46,57,52,51,49,49,50,44,52,48,46,54,48,53,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,48,57,53,44,34,98,101,100,115,34,58,50,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,50,48,49,53,55,44,51,57,46,49,48,53,52,56,57,93,44,91,45,56,52,46,56,55,55,54,50,52,44,51,57,46,48,51,49,50,49,51,93,44,91,45,56,52,46,56,55,48,55,52,57,44,51,56,46,57,48,48,57,48,53,93,44,91,45,56,52,46,55,57,53,48,51,57,44,51,56,46,56,53,55,50,55,93,44,91,45,56,52,46,54,54,48,49,48,55,44,51,56,46,55,55,55,50,57,51,93,44,91,45,56,52,46,54,49,53,54,54,52,44,51,56,46,56,48,50,50,55,55,93,44,91,45,56,52,46,54,50,51,52,56,56,44,51,57,46,48,55,52,50,56,50,93,44,91,45,56,52,46,55,53,48,51,52,53,44,51,57,46,49,52,55,54,50,50,93,44,91,45,56,52,46,56,50,48,49,53,55,44,51,57,46,49,48,53,52,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,53,50,55,57,55,44,51,55,46,56,57,55,54,54,49,93,44,91,45,56,53,46,50,57,48,50,56,52,44,51,55,46,56,51,49,49,56,50,93,44,91,45,56,53,46,52,48,49,55,56,52,44,51,55,46,55,51,48,54,53,56,93,44,91,45,56,53,46,50,53,55,50,57,56,44,51,55,46,54,51,48,57,48,51,93,44,91,45,56,53,46,48,51,48,49,55,50,44,51,55,46,54,51,49,50,55,93,44,91,45,56,53,46,48,50,53,48,50,49,44,51,55,46,54,55,56,56,53,52,93,44,91,45,56,53,46,48,51,48,53,50,56,44,51,55,46,56,57,49,53,51,56,93,44,91,45,56,53,46,49,53,50,55,57,55,44,51,55,46,56,57,55,54,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,118,111,121,101,108,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,56,56,50,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,56,54,55,49,56,44,51,49,46,51,51,53,51,55,52,93,44,91,45,57,50,46,50,51,51,50,51,44,51,49,46,51,50,49,53,52,53,93,44,91,45,57,50,46,50,48,56,55,56,53,44,51,48,46,57,54,52,55,51,52,93,44,91,45,57,50,46,50,56,48,55,51,56,44,51,48,46,57,54,53,48,55,49,93,44,91,45,57,50,46,50,49,50,55,49,49,44,51,48,46,56,52,56,54,48,55,93,44,91,45,57,49,46,56,49,53,50,53,56,44,51,48,46,56,52,56,49,48,55,93,44,91,45,57,49,46,56,48,53,57,54,51,44,51,48,46,57,55,50,53,53,56,93,44,91,45,57,49,46,55,53,48,49,49,57,44,51,49,46,48,49,56,56,49,52,93,44,91,45,57,49,46,55,50,51,56,48,52,44,51,49,46,48,52,52,50,53,52,93,44,91,45,57,49,46,54,55,55,51,48,50,44,51,49,46,49,56,56,48,52,55,93,44,91,45,57,49,46,56,51,52,50,56,44,51,49,46,50,54,54,51,52,52,93,44,91,45,57,50,46,48,48,56,49,50,49,44,51,49,46,51,50,53,55,57,55,93,44,91,45,57,50,46,48,56,54,55,49,56,44,51,49,46,51,51,53,51,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,84,97,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,50,51,52,52,50,44,51,52,46,55,55,50,51,49,49,93,44,91,45,56,57,46,57,48,56,53,56,55,44,51,52,46,55,55,50,54,52,49,93,44,91,45,57,48,46,48,50,57,49,52,52,44,51,52,46,55,48,56,49,55,54,93,44,91,45,57,48,46,50,48,48,49,57,57,44,51,52,46,55,50,52,52,49,56,93,44,91,45,57,48,46,50,52,51,57,50,52,44,51,52,46,54,48,50,49,53,93,44,91,45,57,48,46,49,57,56,54,51,49,44,51,52,46,53,53,52,52,50,53,93,44,91,45,56,57,46,55,50,49,51,52,49,44,51,52,46,53,53,52,50,55,52,93,44,91,45,56,57,46,54,54,56,52,52,56,44,51,52,46,53,53,52,51,54,55,93,44,91,45,56,57,46,54,54,57,49,54,44,51,52,46,54,56,53,55,56,54,93,44,91,45,56,57,46,55,50,51,52,52,50,44,51,52,46,55,55,50,51,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,55,34,44,34,78,65,77,69,34,58,34,87,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,51,50,50,52,44,52,48,46,53,55,49,57,48,49,93,44,91,45,57,52,46,52,55,49,50,49,51,44,52,48,46,53,55,48,56,50,53,93,44,91,45,57,52,46,54,51,50,48,51,44,52,48,46,53,55,49,51,54,55,93,44,91,45,57,52,46,53,57,56,52,56,55,44,52,48,46,51,56,54,55,49,52,93,44,91,45,57,52,46,50,49,52,50,55,56,44,52,48,46,51,56,52,50,53,52,93,44,91,45,57,52,46,50,51,50,50,52,44,52,48,46,53,55,49,57,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,83,104,101,114,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,52,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,53,49,53,53,56,44,52,49,46,51,57,52,48,56,52,93,44,91,45,57,57,46,50,48,51,50,54,49,44,52,49,46,51,57,52,49,52,93,44,91,45,57,57,46,50,48,55,53,54,52,44,52,49,46,48,52,55,48,48,51,93,44,91,45,57,56,46,55,52,56,53,50,54,44,52,49,46,48,52,54,54,52,93,44,91,45,57,56,46,55,52,52,51,51,44,52,49,46,51,57,52,49,55,56,93,44,91,45,57,56,46,55,53,49,53,53,56,44,52,49,46,51,57,52,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,97,109,112,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,52,57,57,51,55,49,44,52,53,46,57,52,51,54,53,51,93,44,91,45,49,48,48,46,51,56,55,48,51,54,44,52,53,46,56,54,57,49,52,50,93,44,91,45,49,48,48,46,51,48,57,48,49,51,44,52,53,46,55,48,55,56,52,50,93,44,91,45,49,48,48,46,52,51,48,48,55,57,44,52,53,46,53,57,52,56,50,51,93,44,91,45,57,57,46,55,49,55,52,54,54,44,52,53,46,53,57,51,52,50,56,93,44,91,45,57,57,46,55,49,56,48,55,49,44,52,53,46,57,52,48,56,56,51,93,44,91,45,57,57,46,56,56,48,48,54,44,52,53,46,57,52,49,52,50,51,93,44,91,45,49,48,48,46,52,57,57,51,55,49,44,52,53,46,57,52,51,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,52,49,57,52,44,52,53,46,56,56,49,57,55,53,93,44,91,45,49,48,52,46,48,52,48,48,48,52,44,52,53,46,50,49,50,56,57,49,93,44,91,45,49,48,50,46,57,53,55,50,56,49,44,52,53,46,50,49,50,56,53,49,93,44,91,45,49,48,50,46,57,52,50,48,55,44,52,53,46,57,52,53,93,44,91,45,49,48,50,46,57,57,53,50,52,56,44,52,53,46,57,52,53,49,54,55,93,44,91,45,49,48,52,46,48,52,53,53,52,55,44,52,53,46,57,52,53,51,48,56,93,44,91,45,49,48,52,46,48,52,52,49,57,52,44,52,53,46,56,56,49,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,71,114,97,116,105,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,48,54,55,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,52,53,57,54,50,44,52,51,46,52,54,54,49,53,56,93,44,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,44,91,45,56,52,46,51,54,55,55,54,44,52,51,46,49,49,55,57,52,50,93,44,91,45,56,52,46,51,54,55,56,57,49,44,52,51,46,49,50,56,52,53,50,93,44,91,45,56,52,46,51,54,57,56,55,54,44,52,51,46,52,54,54,48,52,52,93,44,91,45,56,52,46,54,48,55,53,52,44,52,51,46,52,54,54,48,48,54,93,44,91,45,56,52,46,56,52,53,57,54,50,44,52,51,46,52,54,54,49,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,55,48,54,48,51,44,52,49,46,49,53,55,53,54,54,93,44,91,45,57,52,46,52,55,48,55,55,57,44,52,48,46,56,57,57,53,48,50,93,44,91,45,57,52,46,48,49,52,56,48,51,44,52,48,46,56,57,55,48,51,49,93,44,91,45,57,52,46,48,49,52,49,56,57,44,52,49,46,49,53,54,55,54,50,93,44,91,45,57,52,46,50,52,49,54,51,55,44,52,49,46,49,53,55,49,51,52,93,44,91,45,57,52,46,52,55,48,54,48,51,44,52,49,46,49,53,55,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,77,97,115,115,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,49,48,55,51,56,44,51,55,46,51,51,55,48,56,49,93,44,91,45,56,56,46,57,50,56,55,53,55,44,51,55,46,51,48,50,56,52,56,93,44,91,45,56,56,46,57,50,55,56,57,44,51,55,46,50,50,54,51,52,50,93,44,91,45,56,56,46,53,54,54,48,54,49,44,51,55,46,48,55,53,50,48,52,93,44,91,45,56,56,46,52,57,48,52,49,49,44,51,55,46,48,54,56,53,55,57,93,44,91,45,56,56,46,52,57,48,51,51,44,51,55,46,49,53,57,52,54,50,93,44,91,45,56,56,46,55,49,48,55,51,56,44,51,55,46,51,51,55,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,49,51,50,52,51,44,52,49,46,51,57,51,53,49,49,93,44,91,45,49,48,48,46,50,53,49,48,57,56,44,52,49,46,51,57,51,50,57,56,93,44,91,45,49,48,48,46,50,53,49,50,50,52,44,52,49,46,55,51,57,56,49,55,93,44,91,45,49,48,48,46,50,54,53,52,55,52,44,52,49,46,55,51,57,56,53,54,93,44,91,45,49,48,48,46,55,49,49,55,49,49,44,52,49,46,55,51,57,55,54,49,93,44,91,45,49,48,48,46,55,49,51,50,52,51,44,52,49,46,51,57,51,53,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,101,114,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,48,51,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,56,54,53,56,52,44,52,49,46,51,57,51,56,57,56,93,44,91,45,57,56,46,50,56,55,49,54,56,44,52,49,46,48,52,54,51,54,51,93,44,91,45,57,56,46,50,56,50,53,55,56,44,52,48,46,56,54,56,54,55,55,93,44,91,45,57,56,46,48,49,48,53,52,56,44,52,49,46,48,55,50,55,54,49,93,44,91,45,57,55,46,56,50,56,50,53,54,44,52,49,46,49,55,51,52,51,57,93,44,91,45,57,55,46,53,57,56,50,53,51,44,52,49,46,51,51,51,49,49,57,93,44,91,45,57,55,46,55,48,51,55,54,53,44,52,49,46,51,57,52,56,55,54,93,44,91,45,57,55,46,55,48,53,52,57,55,44,52,49,46,51,48,57,49,51,52,93,44,91,45,57,56,46,48,53,51,49,51,55,44,52,49,46,50,57,51,49,50,51,93,44,91,45,57,56,46,50,55,53,52,48,56,44,52,49,46,50,54,52,51,52,49,93,44,91,45,57,56,46,50,56,54,53,56,52,44,52,49,46,51,57,51,56,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,83,104,101,114,105,100,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,51,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,56,50,53,52,54,44,52,50,46,57,57,57,51,53,54,93,44,91,45,49,48,50,46,55,57,50,49,49,49,44,52,50,46,57,57,57,57,56,93,44,91,45,49,48,50,46,55,55,51,51,54,57,44,52,50,46,55,56,53,50,54,53,93,44,91,45,49,48,50,46,55,55,51,51,54,54,44,52,50,46,52,51,57,57,50,50,93,44,91,45,49,48,50,46,55,52,50,50,54,57,44,52,50,46,48,57,50,51,56,56,93,44,91,45,49,48,50,46,54,57,55,56,51,53,44,52,50,46,48,48,52,56,52,51,93,44,91,45,49,48,50,46,54,55,55,53,56,50,44,52,50,46,48,48,53,50,56,50,93,44,91,45,49,48,50,46,48,54,54,54,53,44,52,50,46,48,48,57,49,57,53,93,44,91,45,49,48,50,46,48,48,54,50,48,52,44,52,50,46,48,57,54,51,51,56,93,44,91,45,49,48,50,46,48,52,48,50,56,44,52,50,46,48,57,54,55,52,52,93,44,91,45,49,48,50,46,48,54,54,54,56,57,44,52,50,46,52,52,51,52,54,51,93,44,91,45,49,48,50,46,48,56,50,53,52,54,44,52,50,46,57,57,57,51,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,97,114,108,105,115,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,49,53,57,53,50,44,51,54,46,57,53,52,49,93,44,91,45,56,56,46,57,56,57,55,57,55,44,51,54,46,57,49,57,51,51,93,44,91,45,56,57,46,49,48,48,56,54,52,44,51,54,46,57,52,52,48,49,54,93,44,91,45,56,57,46,49,50,51,53,51,49,44,51,54,46,55,56,53,50,49,55,93,44,91,45,56,56,46,56,49,51,50,50,57,44,51,54,46,55,55,51,49,49,53,93,44,91,45,56,56,46,56,49,50,56,57,55,44,51,54,46,57,52,54,56,54,52,93,44,91,45,56,56,46,56,49,53,57,53,50,44,51,54,46,57,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,78,97,116,114,111,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,54,49,48,44,34,98,101,100,115,34,58,51,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,53,50,50,57,50,51,44,52,50,46,52,51,52,51,53,54,93,44,91,45,49,48,54,46,54,53,52,55,56,49,44,52,50,46,52,51,49,48,57,52,93,44,91,45,49,48,54,46,48,55,53,56,53,50,44,52,50,46,52,51,51,50,49,56,93,44,91,45,49,48,54,46,48,55,56,48,54,56,44,52,51,46,52,57,52,52,55,49,93,44,91,45,49,48,54,46,53,57,52,56,57,55,44,52,51,46,52,57,49,52,55,93,44,91,45,49,48,55,46,49,49,48,55,51,52,44,52,51,46,53,48,48,50,56,54,93,44,91,45,49,48,55,46,53,51,52,56,57,55,44,52,51,46,53,48,49,51,54,50,93,44,91,45,49,48,55,46,53,49,55,48,51,49,44,52,51,46,52,55,50,54,53,57,93,44,91,45,49,48,55,46,53,48,49,52,50,53,44,52,50,46,55,56,49,52,53,56,93,44,91,45,49,48,55,46,53,52,51,53,50,54,44,52,50,46,55,56,49,53,53,56,93,44,91,45,49,48,55,46,53,50,50,57,50,51,44,52,50,46,52,51,52,51,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,49,34,44,34,78,65,77,69,34,58,34,87,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,49,56,52,48,52,44,51,49,46,54,53,48,50,55,52,93,44,91,45,56,51,46,57,57,55,55,57,54,44,51,49,46,52,52,51,55,53,51,93,44,91,45,56,51,46,57,57,57,52,51,44,51,49,46,51,51,52,57,54,54,93,44,91,45,56,51,46,54,53,52,48,57,44,51,49,46,51,51,48,54,54,49,93,44,91,45,56,51,46,54,52,57,51,56,52,44,51,49,46,53,54,55,57,55,55,93,44,91,45,56,51,46,55,57,54,56,52,54,44,51,49,46,54,50,50,57,50,57,93,44,91,45,56,51,46,56,48,50,55,50,51,44,51,49,46,56,48,51,53,55,57,93,44,91,45,56,51,46,57,51,57,52,51,55,44,51,49,46,56,52,55,57,50,57,93,44,91,45,56,52,46,48,50,53,54,50,51,44,51,49,46,55,49,48,48,50,50,93,44,91,45,56,52,46,48,49,56,52,48,52,44,51,49,46,54,53,48,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,55,50,55,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,53,54,54,53,44,51,57,46,54,48,49,51,57,53,93,44,91,45,56,54,46,54,56,53,55,49,44,51,57,46,52,55,48,48,54,51,93,44,91,45,56,54,46,54,51,48,56,49,56,44,51,57,46,51,52,54,57,52,56,93,44,91,45,56,54,46,51,56,49,51,57,53,44,51,57,46,51,51,57,55,53,50,93,44,91,45,56,54,46,50,53,49,54,56,52,44,51,57,46,51,52,49,54,55,50,93,44,91,45,56,54,46,50,52,57,56,56,53,44,51,57,46,54,51,51,54,52,53,93,44,91,45,56,54,46,51,50,54,51,52,49,44,51,57,46,54,51,50,49,55,55,93,44,91,45,56,54,46,52,54,53,54,48,53,44,51,57,46,54,48,48,55,54,57,93,44,91,45,56,54,46,54,53,54,54,53,44,51,57,46,54,48,49,51,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,69,108,108,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,56,51,56,44,34,98,101,100,115,34,58,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,50,57,57,56,55,44,51,50,46,53,52,53,50,56,50,93,44,91,45,57,55,46,48,51,56,51,56,53,44,51,50,46,53,52,56,54,54,50,93,44,91,45,57,55,46,48,56,54,56,51,52,44,51,50,46,53,52,57,52,50,56,93,44,91,45,57,55,46,48,56,54,49,57,49,44,51,50,46,50,54,53,52,53,49,93,44,91,45,57,54,46,57,52,48,54,53,54,44,51,50,46,48,53,50,48,56,55,93,44,91,45,57,54,46,56,57,54,50,48,57,44,51,50,46,48,55,51,57,55,55,93,44,91,45,57,54,46,51,56,51,48,56,50,44,51,50,46,51,50,56,56,53,49,93,44,91,45,57,54,46,52,53,50,49,51,56,44,51,50,46,51,53,56,54,51,49,93,44,91,45,57,54,46,52,51,53,50,51,51,44,51,50,46,52,48,56,57,56,54,93,44,91,45,57,54,46,53,50,57,57,56,55,44,51,50,46,53,52,53,50,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,57,34,44,34,78,65,77,69,34,58,34,80,105,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,50,54,53,56,53,44,51,49,46,53,51,48,54,57,57,93,44,91,45,56,50,46,51,52,52,56,52,51,44,51,49,46,52,51,48,49,51,93,44,91,45,56,50,46,52,49,55,50,52,54,44,51,49,46,52,49,55,49,49,57,93,44,91,45,56,50,46,51,56,51,55,48,53,44,51,49,46,50,57,49,49,52,51,93,44,91,45,56,50,46,50,56,52,53,54,49,44,51,49,46,50,50,52,52,52,57,93,44,91,45,56,50,46,49,57,52,56,50,52,44,51,49,46,50,48,55,53,57,93,44,91,45,56,50,46,48,57,50,55,50,44,51,49,46,50,55,54,49,49,57,93,44,91,45,56,50,46,48,52,49,49,50,57,44,51,49,46,51,55,51,55,50,49,93,44,91,45,56,50,46,49,51,50,55,57,52,44,51,49,46,52,55,49,50,54,50,93,44,91,45,56,50,46,50,50,54,53,56,53,44,51,49,46,53,51,48,54,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,57,52,52,44,34,98,101,100,115,34,58,51,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,51,54,52,49,44,52,48,46,53,54,53,53,50,53,93,44,91,45,56,53,46,56,54,50,49,49,55,44,52,48,46,52,48,54,56,56,57,93,44,91,45,56,53,46,56,54,50,50,57,54,44,52,48,46,51,55,56,51,54,55,93,44,91,45,56,53,46,53,55,56,53,56,57,44,52,48,46,51,55,57,53,50,52,93,44,91,45,56,53,46,52,52,52,51,51,44,52,48,46,51,55,57,49,52,93,44,91,45,56,53,46,52,52,55,48,49,52,44,52,48,46,53,54,54,57,50,57,93,44,91,45,56,53,46,52,52,56,56,50,53,44,52,48,46,54,53,51,54,48,55,93,44,91,45,56,53,46,54,51,56,53,56,55,44,52,48,46,54,53,51,49,50,57,93,44,91,45,56,53,46,56,54,52,55,57,49,44,52,48,46,54,53,49,54,57,51,93,44,91,45,56,53,46,56,54,51,54,52,49,44,52,48,46,53,54,53,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,70,108,97,103,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,49,51,57,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,53,48,56,49,55,44,50,57,46,54,55,49,48,56,55,93,44,91,45,56,49,46,51,50,52,48,53,57,44,50,57,46,54,50,53,54,49,93,44,91,45,56,49,46,53,50,51,54,54,44,50,57,46,54,50,50,52,51,50,93,44,91,45,56,49,46,53,50,48,53,57,54,44,50,57,46,53,48,48,50,52,57,93,44,91,45,56,49,46,52,51,51,57,57,50,44,50,57,46,51,57,56,53,53,50,93,44,91,45,56,49,46,52,49,55,50,57,44,50,57,46,50,54,49,49,53,54,93,44,91,45,56,49,46,49,53,48,48,56,49,44,50,57,46,50,54,53,57,53,55,93,44,91,45,56,49,46,49,53,53,56,56,49,44,50,57,46,52,49,48,57,53,52,93,44,91,45,56,49,46,48,52,53,55,48,54,44,50,57,46,52,51,50,52,54,50,93,44,91,45,56,49,46,49,53,48,56,49,55,44,50,57,46,54,55,49,48,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,52,53,49,57,49,44,51,49,46,55,49,55,53,50,52,93,44,91,45,57,48,46,50,52,51,56,57,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,48,52,48,52,54,54,44,51,49,46,51,51,54,48,49,52,93,44,91,45,56,57,46,57,53,56,57,52,44,51,49,46,51,57,48,52,56,57,93,44,91,45,56,57,46,57,55,52,53,56,54,44,51,49,46,55,54,49,54,53,53,93,44,91,45,57,48,46,49,50,50,53,54,53,44,51,49,46,55,53,50,54,56,93,44,91,45,57,48,46,50,52,53,49,57,49,44,51,49,46,55,49,55,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,87,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,57,52,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,51,57,48,56,44,51,50,46,49,52,55,57,52,50,93,44,91,45,57,50,46,56,56,50,57,57,56,44,51,49,46,57,51,57,57,55,93,44,91,45,57,50,46,57,52,50,50,52,53,44,51,49,46,56,53,52,50,54,56,93,44,91,45,57,50,46,57,55,51,53,50,57,44,51,49,46,55,48,56,57,50,50,93,44,91,45,57,50,46,54,49,57,57,55,54,44,51,49,46,55,48,57,53,55,50,93,44,91,45,57,50,46,54,49,57,50,50,52,44,51,49,46,55,57,55,49,52,57,93,44,91,45,57,50,46,51,54,50,54,48,56,44,51,49,46,55,57,54,54,51,51,93,44,91,45,57,50,46,51,49,50,54,50,51,44,51,49,46,57,50,55,51,56,50,93,44,91,45,57,50,46,51,49,50,50,49,56,44,51,50,46,49,52,54,49,50,51,93,44,91,45,57,50,46,56,49,52,55,51,55,44,51,50,46,49,52,54,57,48,55,93,44,91,45,57,50,46,57,51,57,48,56,44,51,50,46,49,52,55,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,52,54,52,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,56,53,53,51,54,44,52,49,46,53,56,52,53,55,52,93,44,91,45,57,48,46,52,51,49,57,51,44,52,49,46,52,53,54,56,51,52,93,44,91,45,57,48,46,52,51,51,55,51,55,44,52,49,46,51,50,54,57,56,57,93,44,91,45,57,48,46,52,51,55,54,53,50,44,52,49,46,49,53,49,52,54,51,93,44,91,45,56,57,46,57,56,52,53,53,57,44,52,49,46,49,52,57,51,57,52,93,44,91,45,56,57,46,56,54,56,49,53,50,44,52,49,46,49,52,57,52,57,51,93,44,91,45,56,57,46,56,53,55,54,49,54,44,52,49,46,50,51,52,52,55,57,93,44,91,45,56,57,46,56,54,50,51,53,49,44,52,49,46,53,56,52,48,48,53,93,44,91,45,57,48,46,49,56,53,53,51,54,44,52,49,46,53,56,52,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,56,56,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,48,57,53,56,51,51,44,52,53,46,48,52,51,57,56,54,93,44,91,45,49,50,52,46,49,52,55,54,51,56,44,52,52,46,55,54,57,49,49,51,93,44,91,45,49,50,52,46,49,53,51,52,50,56,44,52,52,46,52,54,53,48,51,54,93,44,91,45,49,50,52,46,49,56,55,52,48,57,44,52,52,46,50,55,54,56,55,49,93,44,91,45,49,50,51,46,55,55,53,53,57,56,44,52,52,46,50,56,51,53,52,55,93,44,91,45,49,50,51,46,55,50,48,48,55,49,44,52,52,46,52,51,51,51,55,52,93,44,91,45,49,50,51,46,53,57,55,54,55,55,44,52,52,46,52,51,51,49,48,57,93,44,91,45,49,50,51,46,54,48,50,54,48,57,44,52,52,46,55,50,49,49,53,52,93,44,91,45,49,50,51,46,55,50,53,48,48,49,44,52,52,46,55,51,57,48,52,54,93,44,91,45,49,50,51,46,55,50,52,54,54,51,44,52,53,46,48,52,52,52,51,50,93,44,91,45,49,50,52,46,48,57,53,56,51,51,44,52,53,46,48,52,51,57,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,49,48,50,44,34,98,101,100,115,34,58,50,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,57,54,50,49,53,52,44,52,51,46,53,52,49,48,56,55,93,44,91,45,55,48,46,57,55,56,49,49,53,44,52,51,46,51,53,56,57,49,52,93,44,91,45,55,48,46,56,49,56,49,57,53,44,52,51,46,50,51,56,51,51,93,44,91,45,55,48,46,56,50,48,48,49,57,44,52,51,46,49,50,50,53,52,53,93,44,91,45,55,48,46,53,55,53,48,57,52,44,52,50,46,57,49,55,49,50,54,93,44,91,45,55,48,46,53,50,56,56,56,50,44,52,51,46,48,48,53,55,54,57,93,44,91,45,55,48,46,52,48,54,50,52,51,44,52,51,46,49,48,50,48,57,50,93,44,91,45,55,48,46,53,49,57,54,54,54,44,52,51,46,49,57,49,48,49,53,93,44,91,45,55,48,46,52,57,51,50,51,44,52,51,46,50,56,54,56,50,57,93,44,91,45,55,48,46,51,54,57,50,49,57,44,52,51,46,51,50,50,50,50,93,44,91,45,55,48,46,50,50,50,48,57,44,52,51,46,52,54,54,56,55,56,93,44,91,45,55,48,46,52,57,50,48,48,57,44,52,51,46,54,48,54,55,54,57,93,44,91,45,55,48,46,53,52,57,57,54,53,44,52,51,46,55,49,53,55,57,54,93,44,91,45,55,48,46,54,53,57,51,54,57,44,52,51,46,55,57,48,51,56,54,93,44,91,45,55,48,46,55,56,50,57,56,52,44,52,51,46,56,49,52,49,52,55,93,44,91,45,55,48,46,57,56,57,49,50,50,44,52,51,46,55,57,50,49,49,51,93,44,91,45,55,48,46,57,54,50,49,53,52,44,52,51,46,53,52,49,48,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,100,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,57,51,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,57,52,50,53,52,44,52,53,46,49,53,49,54,51,49,93,44,91,45,57,55,46,52,57,49,51,52,54,44,52,52,46,56,48,52,48,51,53,93,44,91,45,57,54,46,56,56,52,53,55,44,52,52,46,56,48,52,52,51,54,93,44,91,45,57,54,46,56,56,50,51,52,53,44,52,52,46,57,55,54,56,55,93,44,91,45,57,54,46,56,56,51,57,52,56,44,52,53,46,49,53,48,50,50,52,93,44,91,45,57,55,46,50,50,54,50,56,49,44,52,53,46,49,53,49,56,50,54,93,44,91,45,57,55,46,52,57,52,50,53,52,44,52,53,46,49,53,49,54,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,49,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,57,54,55,56,51,44,51,51,46,49,56,51,56,54,54,93,44,91,45,56,52,46,53,50,55,48,50,44,51,50,46,57,55,48,53,52,56,93,44,91,45,56,52,46,50,57,56,54,54,53,44,51,50,46,57,57,57,54,55,49,93,44,91,45,56,52,46,50,55,48,49,52,44,51,50,46,57,57,49,48,49,49,93,44,91,45,56,52,46,50,52,56,49,56,53,44,51,51,46,49,56,57,48,49,57,93,44,91,45,56,52,46,52,57,54,55,56,51,44,51,51,46,49,56,51,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,57,34,44,34,78,65,77,69,34,58,34,83,116,101,119,97,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,52,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,50,51,48,50,55,44,51,50,46,50,51,48,56,53,49,93,44,91,45,56,53,46,48,54,50,48,54,44,51,50,46,49,51,50,52,56,54,93,44,91,45,56,53,46,48,53,54,48,50,57,44,51,50,46,48,54,51,48,53,53,93,44,91,45,56,53,46,48,54,56,50,51,44,51,49,46,57,57,49,56,53,55,93,44,91,45,56,52,46,57,48,55,48,48,54,44,51,49,46,57,50,52,52,54,53,93,44,91,45,56,52,46,54,53,53,56,50,44,51,49,46,57,50,48,51,48,56,93,44,91,45,56,52,46,54,52,57,51,49,57,44,51,50,46,50,51,50,57,53,51,93,44,91,45,56,52,46,54,53,56,57,50,44,51,50,46,50,51,50,56,53,50,93,44,91,45,56,52,46,57,50,51,48,50,55,44,51,50,46,50,51,48,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,77,111,110,109,111,117,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,51,51,56,55,44,34,98,101,100,115,34,58,50,49,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,50,50,56,49,53,51,44,52,48,46,52,55,55,51,57,57,93,44,91,45,55,52,46,50,52,55,56,57,52,44,52,48,46,52,48,54,54,48,53,93,44,91,45,55,52,46,51,57,51,52,51,56,44,52,48,46,50,55,57,53,52,56,93,44,91,45,55,52,46,52,56,52,57,54,50,44,52,48,46,50,53,51,51,50,53,93,44,91,45,55,52,46,53,56,55,56,51,53,44,52,48,46,49,51,56,50,53,52,93,44,91,45,55,52,46,53,53,51,49,48,53,44,52,48,46,48,55,57,49,51,93,44,91,45,55,52,46,52,48,54,55,49,44,52,48,46,49,55,50,52,48,50,93,44,91,45,55,52,46,50,54,49,52,53,53,44,52,48,46,49,54,55,48,51,51,93,44,91,45,55,52,46,50,51,48,54,51,52,44,52,48,46,49,48,57,53,54,49,93,44,91,45,55,51,46,57,54,53,52,49,52,44,52,48,46,48,57,55,54,52,50,93,44,91,45,55,51,46,56,57,56,50,48,56,44,52,48,46,50,55,52,51,53,51,93,44,91,45,55,51,46,56,56,54,54,53,50,44,52,48,46,52,56,57,55,57,52,93,44,91,45,55,52,46,48,52,50,49,49,50,44,52,48,46,53,48,57,50,57,57,93,44,91,45,55,52,46,50,50,56,49,53,51,44,52,48,46,52,55,55,51,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,54,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,50,48,55,51,50,44,51,54,46,52,57,55,56,53,57,93,44,91,45,57,48,46,53,55,54,49,55,57,44,51,54,46,52,57,56,53,52,55,93,44,91,45,57,48,46,55,56,52,52,50,52,44,51,54,46,52,57,56,53,51,52,93,44,91,45,57,48,46,55,53,49,56,49,44,51,54,46,50,56,51,56,51,54,93,44,91,45,57,48,46,56,48,54,54,49,53,44,51,54,46,50,54,54,56,54,53,93,44,91,45,57,48,46,51,49,57,56,50,44,51,54,46,50,53,57,49,52,52,93,44,91,45,57,48,46,49,57,48,50,48,55,44,51,54,46,50,48,49,51,54,49,93,44,91,45,57,48,46,49,50,53,52,56,55,44,51,54,46,50,51,49,50,51,50,93,44,91,45,57,48,46,48,54,51,53,57,52,44,51,54,46,51,56,52,50,51,53,93,44,91,45,57,48,46,50,50,48,55,51,50,44,51,54,46,52,57,55,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,70,97,117,108,107,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,52,49,54,44,34,98,101,100,115,34,58,51,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,52,56,49,52,54,57,44,51,53,46,51,54,56,51,57,50,93,44,91,45,57,50,46,52,57,57,57,56,53,44,51,53,46,49,54,57,53,55,53,93,44,91,45,57,50,46,53,53,52,54,56,53,44,51,53,46,49,49,51,50,55,55,93,44,91,45,57,50,46,53,57,51,53,56,53,44,51,53,46,48,49,49,55,54,49,93,44,91,45,57,50,46,53,52,52,51,52,49,44,51,52,46,57,53,51,51,49,57,93,44,91,45,57,50,46,50,50,57,56,57,51,44,51,52,46,57,50,55,53,53,56,93,44,91,45,57,50,46,49,50,49,51,51,54,44,51,53,46,48,49,50,50,49,93,44,91,45,57,50,46,49,49,57,55,49,57,44,51,53,46,48,54,54,52,57,51,93,44,91,45,57,50,46,49,49,49,52,54,51,44,51,53,46,51,54,50,55,50,53,93,44,91,45,57,50,46,50,53,50,55,53,57,44,51,53,46,51,54,51,55,49,56,93,44,91,45,57,50,46,52,56,49,52,54,57,44,51,53,46,51,54,56,51,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,49,49,50,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,48,53,55,51,44,51,54,46,53,48,57,56,57,93,44,91,45,57,53,46,48,49,49,51,48,57,44,51,54,46,49,54,49,55,54,51,93,44,91,45,57,52,46,55,57,55,52,48,57,44,51,54,46,49,54,49,54,53,50,93,44,91,45,57,52,46,53,54,50,55,50,55,44,51,54,46,49,54,49,56,57,51,93,44,91,45,57,52,46,54,49,55,57,49,57,44,51,54,46,52,57,57,52,49,52,93,44,91,45,57,52,46,54,49,56,48,55,55,44,51,54,46,54,54,55,57,50,49,93,44,91,45,57,52,46,57,57,57,52,48,51,44,51,54,46,54,55,48,54,51,49,93,44,91,45,57,53,46,48,48,53,55,51,44,51,54,46,53,48,57,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,75,101,111,107,117,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,48,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,52,54,48,52,51,44,52,49,46,53,49,48,55,52,57,93,44,91,45,57,50,46,50,57,55,52,57,52,44,52,49,46,53,48,57,55,57,93,44,91,45,57,50,46,52,49,49,57,57,53,44,52,49,46,53,48,57,53,52,56,93,44,91,45,57,50,46,52,49,48,50,51,51,44,52,49,46,49,54,49,57,52,50,93,44,91,45,57,50,46,49,55,57,57,55,52,44,52,49,46,49,54,50,54,54,50,93,44,91,45,57,49,46,57,52,53,53,55,49,44,52,49,46,49,54,51,53,55,56,93,44,91,45,57,49,46,57,52,54,48,52,51,44,52,49,46,53,49,48,55,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,49,51,55,55,53,44,51,57,46,51,57,53,52,49,54,93,44,91,45,57,48,46,54,48,51,53,54,57,44,51,57,46,49,49,55,53,57,50,93,44,91,45,57,48,46,53,54,48,48,55,49,44,51,57,46,49,56,55,52,51,93,44,91,45,57,48,46,51,49,51,50,56,57,44,51,57,46,49,55,52,50,56,57,93,44,91,45,57,48,46,49,52,56,49,50,49,44,51,57,46,50,54,49,57,52,55,93,44,91,45,57,48,46,49,53,51,55,56,50,44,51,57,46,53,50,48,51,49,53,93,44,91,45,57,48,46,51,48,49,56,51,49,44,51,57,46,53,50,48,51,52,52,93,44,91,45,57,48,46,53,56,49,48,53,53,44,51,57,46,53,50,49,55,50,56,93,44,91,45,57,48,46,54,49,51,55,55,53,44,51,57,46,51,57,53,52,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,57,56,50,53,50,44,52,56,46,50,48,50,56,53,56,93,44,91,45,57,49,46,55,56,55,57,50,56,44,52,55,46,53,52,54,56,49,55,93,44,91,45,57,49,46,55,57,54,51,51,44,52,54,46,55,57,52,56,51,56,93,44,91,45,57,49,46,53,52,57,51,56,53,44,52,54,46,56,57,51,50,49,51,93,44,91,45,57,48,46,56,54,55,51,49,56,44,52,55,46,50,49,48,57,54,50,93,44,91,45,57,48,46,55,57,53,49,56,57,44,52,55,46,50,52,52,50,57,57,93,44,91,45,57,49,46,48,50,51,49,50,54,44,52,55,46,52,54,52,57,56,50,93,44,91,45,57,49,46,48,51,49,55,54,49,44,52,56,46,49,56,56,52,56,54,93,44,91,45,57,49,46,50,53,48,49,49,50,44,52,56,46,48,56,52,48,56,55,93,44,91,45,57,49,46,52,50,57,54,52,50,44,52,56,46,48,52,56,54,48,56,93,44,91,45,57,49,46,55,49,49,56,52,52,44,52,56,46,49,49,52,54,48,53,93,44,91,45,57,49,46,55,57,56,50,53,50,44,52,56,46,50,48,50,56,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,53,34,44,34,78,65,77,69,34,58,34,84,114,111,117,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,55,55,52,44,34,98,101,100,115,34,58,50,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,51,57,48,49,53,44,51,51,46,50,50,52,54,57,51,93,44,91,45,56,53,46,50,51,54,53,49,56,44,51,51,46,49,50,57,53,53,57,93,44,91,45,56,53,46,50,51,50,51,55,56,44,51,51,46,49,48,56,48,55,55,93,44,91,45,56,53,46,49,56,52,49,51,49,44,51,50,46,56,55,48,53,50,53,93,44,91,45,56,52,46,56,54,49,55,54,56,44,51,50,46,56,55,50,52,57,53,93,44,91,45,56,52,46,56,54,50,51,53,57,44,51,51,46,49,57,49,49,55,51,93,44,91,45,56,52,46,57,51,57,48,49,53,44,51,51,46,50,50,52,54,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,72,117,109,98,111,108,100,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,55,54,56,44,34,98,101,100,115,34,58,50,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,49,51,54,53,54,49,44,52,49,46,52,54,52,52,53,50,93,44,91,45,49,50,52,46,49,54,48,55,48,52,44,52,49,46,50,56,57,50,57,51,93,44,91,45,49,50,52,46,50,52,55,52,51,44,52,49,46,48,57,50,50,50,52,93,44,91,45,49,50,52,46,49,56,50,54,57,52,44,52,49,46,48,48,49,51,49,51,93,44,91,45,49,50,52,46,50,51,50,54,50,50,44,52,48,46,56,54,57,50,56,54,93,44,91,45,49,50,52,46,52,52,55,54,55,55,44,52,48,46,53,50,57,55,48,57,93,44,91,45,49,50,52,46,52,55,56,54,50,53,44,52,48,46,52,50,50,49,48,50,93,44,91,45,49,50,52,46,51,57,50,55,55,55,44,52,48,46,50,48,57,55,57,57,93,44,91,45,49,50,52,46,49,51,52,56,56,57,44,52,48,46,48,48,50,52,55,93,44,91,45,49,50,51,46,53,52,52,52,53,56,44,52,48,46,48,48,49,57,50,51,93,44,91,45,49,50,51,46,53,52,51,55,52,57,44,52,48,46,55,51,57,48,49,53,93,44,91,45,49,50,51,46,54,49,53,56,50,55,44,52,48,46,57,49,52,48,54,56,93,44,91,45,49,50,51,46,52,52,55,57,53,54,44,52,48,46,57,52,51,55,53,56,93,44,91,45,49,50,51,46,52,48,56,50,57,49,44,52,49,46,49,55,57,57,52,52,93,44,91,45,49,50,51,46,52,55,52,48,56,53,44,52,49,46,51,54,54,49,57,51,93,44,91,45,49,50,51,46,54,54,49,51,54,51,44,52,49,46,51,56,50,48,57,93,44,91,45,49,50,51,46,55,55,48,53,53,49,44,52,49,46,52,54,52,49,57,51,93,44,91,45,49,50,52,46,49,51,54,53,54,49,44,52,49,46,52,54,52,52,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,105,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,57,56,56,44,34,98,101,100,115,34,58,49,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,54,54,55,57,56,44,51,54,46,49,55,55,56,53,55,93,44,91,45,56,55,46,53,51,52,53,51,44,51,53,46,57,57,51,48,55,52,93,44,91,45,56,55,46,50,48,52,50,52,50,44,51,53,46,57,53,57,49,56,54,93,44,91,45,56,55,46,49,56,50,53,55,51,44,51,54,46,48,52,57,55,50,54,93,44,91,45,56,55,46,49,53,54,53,56,57,44,51,54,46,51,48,55,55,48,54,93,44,91,45,56,55,46,50,56,54,53,48,49,44,51,54,46,51,50,49,57,51,51,93,44,91,45,56,55,46,53,49,51,53,51,51,44,51,54,46,51,51,52,55,49,51,93,44,91,45,56,55,46,53,54,54,55,57,56,44,51,54,46,49,55,55,56,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,111,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,55,52,51,49,44,34,98,101,100,115,34,58,55,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,49,48,48,55,44,52,53,46,52,49,52,55,57,56,93,44,91,45,57,51,46,53,49,50,49,57,44,52,53,46,50,52,53,54,56,51,93,44,91,45,57,51,46,51,49,49,53,52,52,44,52,53,46,49,52,51,55,55,56,93,44,91,45,57,51,46,50,50,54,57,50,57,44,52,53,46,48,51,53,54,55,49,93,44,91,45,57,51,46,50,50,55,54,57,54,44,52,53,46,49,50,52,53,51,51,93,44,91,45,57,51,46,48,50,48,53,49,56,44,52,53,46,49,50,51,56,54,54,93,44,91,45,57,51,46,48,49,57,52,52,44,52,53,46,50,57,54,57,50,57,93,44,91,45,57,51,46,48,49,57,53,54,51,44,52,53,46,52,49,49,55,55,93,44,91,45,57,51,46,53,49,48,48,55,44,52,53,46,52,49,52,55,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,111,110,32,72,111,109,109,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,54,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,51,55,52,57,54,44,52,51,46,49,54,56,55,55,93,44,91,45,57,56,46,48,55,55,49,48,56,44,52,51,46,49,54,56,51,51,93,44,91,45,57,56,46,48,57,50,55,56,50,44,52,50,46,57,55,51,57,50,49,93,44,91,45,57,56,46,49,53,51,49,48,55,44,52,50,46,56,51,56,57,56,54,93,44,91,45,57,56,46,48,49,51,48,55,50,44,52,50,46,55,54,50,50,49,57,93,44,91,45,57,55,46,56,55,53,53,51,49,44,52,50,46,56,53,56,54,53,54,93,44,91,45,57,55,46,54,51,53,52,52,44,52,50,46,56,53,49,53,51,50,93,44,91,45,57,55,46,54,51,55,52,57,54,44,52,51,46,49,54,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,54,54,57,44,34,98,101,100,115,34,58,50,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,54,54,48,56,53,44,51,54,46,49,56,48,56,57,52,93,44,91,45,56,50,46,56,57,56,51,49,55,44,51,53,46,57,52,52,57,54,55,93,44,91,45,56,50,46,54,51,55,50,51,44,51,54,46,48,54,53,56,50,93,44,91,45,56,50,46,54,48,50,57,56,44,51,54,46,48,51,57,54,55,55,93,44,91,45,56,50,46,53,57,53,48,54,53,44,51,54,46,48,57,54,50,48,53,93,44,91,45,56,50,46,54,52,55,55,54,57,44,51,54,46,49,52,54,52,48,52,93,44,91,45,56,50,46,54,50,57,54,52,49,44,51,54,46,52,49,49,53,52,93,44,91,45,56,50,46,55,48,50,53,54,54,44,51,54,46,52,49,48,52,49,50,93,44,91,45,56,50,46,56,52,48,52,56,49,44,51,54,46,51,55,48,54,57,56,93,44,91,45,56,51,46,48,56,50,51,49,50,44,51,54,46,50,52,50,50,57,54,93,44,91,45,56,51,46,49,54,54,48,56,53,44,51,54,46,49,56,48,56,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,83,117,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,53,51,53,52,54,44,51,54,46,57,52,52,52,53,93,44,91,45,55,54,46,57,56,54,54,49,44,51,55,46,48,52,57,54,57,55,93,44,91,45,55,55,46,49,53,53,52,49,53,44,51,55,46,49,49,50,48,51,52,93,44,91,45,55,55,46,51,57,56,52,57,56,44,51,54,46,57,57,50,57,56,53,93,44,91,45,55,55,46,54,49,57,48,50,57,44,51,54,46,56,55,55,56,52,52,93,44,91,45,55,55,46,53,49,48,51,54,44,51,54,46,56,52,53,48,56,50,93,44,91,45,55,55,46,52,51,48,49,50,55,44,51,54,46,55,48,55,54,53,56,93,44,91,45,55,54,46,57,53,51,53,52,54,44,51,54,46,57,52,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,83,116,46,32,74,111,115,101,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,50,52,48,44,34,98,101,100,115,34,58,56,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,50,54,48,57,53,44,52,49,46,55,54,48,52,48,54,93,44,91,45,56,54,46,53,50,52,50,49,55,44,52,49,46,55,53,57,54,53,57,93,44,91,45,56,54,46,52,56,54,52,51,51,44,52,49,46,53,55,48,53,52,53,93,44,91,45,56,54,46,53,50,52,55,49,49,44,52,49,46,52,51,50,56,56,54,93,44,91,45,56,54,46,52,54,54,54,48,51,44,52,49,46,52,51,50,57,54,56,93,44,91,45,56,54,46,52,54,55,49,48,56,44,52,49,46,52,55,54,52,53,57,93,44,91,45,56,54,46,48,53,57,52,53,49,44,52,49,46,52,55,57,49,53,52,93,44,91,45,56,54,46,48,54,50,53,55,53,44,52,49,46,55,54,48,53,49,51,93,44,91,45,56,54,46,50,50,54,48,57,53,44,52,49,46,55,54,48,52,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,80,101,109,98,105,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,49,54,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,53,48,48,49,50,44,52,57,46,48,48,48,52,57,50,93,44,91,45,57,55,46,57,50,55,48,54,57,44,52,56,46,53,52,51,49,50,52,93,44,91,45,57,55,46,49,54,49,51,57,51,44,52,56,46,53,52,50,51,52,56,93,44,91,45,57,55,46,49,54,51,51,53,53,44,52,56,46,53,52,51,57,54,55,93,44,91,45,57,55,46,49,48,53,52,52,50,44,52,56,46,54,56,57,54,52,56,93,44,91,45,57,55,46,50,51,52,49,50,56,44,52,56,46,57,52,55,56,57,56,93,44,91,45,57,55,46,50,50,56,55,50,50,44,52,57,46,48,48,48,53,54,50,93,44,91,45,57,55,46,57,53,48,48,49,50,44,52,57,46,48,48,48,52,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,110,110,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,51,55,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,56,50,52,56,54,44,52,50,46,57,57,57,51,53,53,93,44,91,45,49,48,49,46,50,50,56,48,49,51,44,52,50,46,57,57,56,49,51,54,93,44,91,45,49,48,49,46,50,50,56,50,51,52,44,52,51,46,51,56,57,49,56,53,93,44,91,45,49,48,50,46,49,49,48,56,49,57,44,52,51,46,51,56,57,57,48,50,93,44,91,45,49,48,50,46,49,48,56,56,57,50,44,52,51,46,49,50,57,50,53,56,93,44,91,45,49,48,50,46,48,56,50,52,56,54,44,52,50,46,57,57,57,51,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,86,101,114,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,48,48,55,44,34,98,101,100,115,34,58,49,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,51,54,49,48,52,44,51,49,46,51,54,52,53,48,55,93,44,91,45,57,51,46,51,57,48,52,57,53,44,51,49,46,51,54,52,49,52,55,93,44,91,45,57,51,46,52,52,50,53,53,52,44,51,49,46,50,55,54,55,49,54,93,44,91,45,57,51,46,53,51,52,57,49,57,44,51,49,46,50,55,54,53,55,57,93,44,91,45,57,51,46,53,53,50,53,50,52,44,51,49,46,49,56,53,52,48,53,93,44,91,45,57,51,46,53,50,52,55,51,57,44,51,49,46,48,51,57,48,48,55,93,44,91,45,57,51,46,53,53,56,53,57,54,44,51,48,46,56,54,56,56,50,50,93,44,91,45,57,51,46,52,50,49,49,48,50,44,51,48,46,56,56,51,49,51,56,93,44,91,45,57,50,46,57,55,56,52,53,51,44,51,48,46,56,55,56,49,55,53,93,44,91,45,57,50,46,56,50,51,57,51,50,44,51,48,46,56,57,93,44,91,45,57,50,46,56,50,57,54,53,49,44,51,49,46,50,53,50,50,56,49,93,44,91,45,57,50,46,57,56,49,52,54,52,44,51,49,46,51,52,54,54,52,52,93,44,91,45,57,51,46,50,51,54,49,48,52,44,51,49,46,51,54,52,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,80,101,110,111,98,115,99,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,55,52,56,44,34,98,101,100,115,34,58,55,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,56,46,56,49,57,52,48,49,44,52,54,46,51,57,53,55,56,50,93,44,91,45,54,56,46,56,50,55,48,51,57,44,52,53,46,54,56,52,56,50,54,93,44,91,45,54,56,46,57,53,56,57,49,44,52,53,46,54,54,50,49,57,53,93,44,91,45,54,56,46,57,54,52,54,53,51,44,52,53,46,53,49,50,51,54,55,93,44,91,45,54,56,46,56,53,55,50,57,55,44,52,53,46,53,50,55,51,48,49,93,44,91,45,54,56,46,55,55,54,48,54,49,44,52,53,46,50,52,48,51,49,55,93,44,91,45,54,56,46,56,53,54,53,56,55,44,52,53,46,49,52,50,55,56,51,93,44,91,45,54,57,46,51,53,53,54,54,55,44,52,53,46,48,55,51,52,54,57,93,44,91,45,54,57,46,50,54,54,55,56,53,44,52,52,46,55,50,49,57,50,56,93,44,91,45,54,57,46,49,56,51,55,51,50,44,52,52,46,54,52,52,48,50,51,93,44,91,45,54,56,46,56,49,53,55,57,51,44,52,52,46,54,56,51,55,53,52,93,44,91,45,54,56,46,52,52,53,50,49,57,44,52,52,46,55,54,51,48,49,52,93,44,91,45,54,56,46,53,48,49,48,57,53,44,52,52,46,57,56,48,55,49,56,93,44,91,45,54,56,46,51,55,53,56,57,50,44,52,52,46,57,57,55,51,55,51,93,44,91,45,54,56,46,51,57,54,57,48,51,44,52,53,46,48,56,51,50,57,54,93,44,91,45,54,56,46,50,55,48,52,57,55,44,52,53,46,49,48,48,49,50,49,93,44,91,45,54,56,46,51,48,51,55,49,52,44,52,53,46,50,50,49,53,51,49,93,44,91,45,54,56,46,48,53,52,57,56,53,44,52,53,46,50,53,50,53,55,55,93,44,91,45,54,55,46,57,51,57,55,54,44,52,53,46,50,54,55,56,52,53,93,44,91,45,54,56,46,48,52,56,48,49,50,44,52,53,46,54,51,57,56,57,55,93,44,91,45,54,56,46,52,51,51,48,50,56,44,52,53,46,53,55,56,52,56,50,93,44,91,45,54,56,46,52,50,54,49,54,57,44,52,53,46,56,55,48,56,50,57,93,44,91,45,54,56,46,52,51,54,52,52,51,44,52,54,46,51,56,50,49,50,49,93,44,91,45,54,56,46,56,49,57,52,48,49,44,52,54,46,51,57,53,55,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,84,97,108,98,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,49,49,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,57,52,57,51,51,53,44,51,56,46,57,49,56,51,51,51,93,44,91,45,55,54,46,52,51,54,52,57,50,44,51,56,46,56,48,55,51,57,55,93,44,91,45,55,54,46,52,54,51,54,51,54,44,51,56,46,55,49,49,48,57,57,93,44,91,45,55,54,46,52,51,56,56,49,52,44,51,56,46,53,55,53,51,51,54,93,44,91,45,55,54,46,50,52,48,49,53,44,51,56,46,54,54,51,50,48,52,93,44,91,45,55,54,46,48,50,51,52,52,53,44,51,56,46,53,55,51,56,55,53,93,44,91,45,55,53,46,57,52,53,50,52,56,44,51,56,46,54,55,52,49,48,57,93,44,91,45,55,54,46,48,49,53,48,52,53,44,51,56,46,55,50,56,54,56,55,93,44,91,45,55,53,46,56,57,54,55,55,52,44,51,56,46,56,49,53,49,48,57,93,44,91,45,55,53,46,57,52,57,51,51,53,44,51,56,46,57,49,56,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,55,34,44,34,78,65,77,69,34,58,34,83,116,101,112,104,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,55,54,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,51,56,50,51,52,44,51,52,46,54,56,55,49,56,55,93,44,91,45,56,51,46,52,53,57,55,55,44,51,52,46,52,56,49,49,52,50,93,44,91,45,56,51,46,51,57,56,51,57,54,44,51,52,46,52,54,48,56,56,51,93,44,91,45,56,51,46,49,55,55,56,51,56,44,51,52,46,52,55,55,48,49,55,93,44,91,45,56,51,46,49,48,51,54,55,51,44,51,52,46,53,51,54,54,49,55,93,44,91,45,56,51,46,51,51,56,50,51,52,44,51,52,46,54,56,55,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,82,105,118,101,114,115,105,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,51,50,56,54,44,34,98,101,100,115,34,58,51,54,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,54,55,51,49,51,52,44,51,51,46,56,55,49,48,48,53,93,44,91,45,49,49,55,46,53,51,51,57,57,57,44,51,51,46,55,49,48,51,53,53,93,44,91,45,49,49,55,46,52,49,50,57,56,55,44,51,51,46,54,53,57,48,52,53,93,44,91,45,49,49,55,46,53,48,57,55,50,50,44,51,51,46,53,48,53,48,49,57,93,44,91,45,49,49,55,46,51,55,48,57,50,53,44,51,51,46,52,57,48,53,52,57,93,44,91,45,49,49,55,46,50,52,49,50,55,49,44,51,51,46,52,51,49,57,57,51,93,44,91,45,49,49,55,46,48,51,48,56,54,49,44,51,51,46,52,50,54,57,51,49,93,44,91,45,49,49,54,46,48,56,53,49,54,53,44,51,51,46,52,50,53,57,51,50,93,44,91,45,49,49,53,46,54,48,57,54,53,53,44,51,51,46,52,50,54,56,55,51,93,44,91,45,49,49,52,46,54,50,55,49,50,53,44,51,51,46,52,51,51,53,53,52,93,44,91,45,49,49,52,46,53,50,52,50,49,53,44,51,51,46,53,53,51,48,54,56,93,44,91,45,49,49,52,46,52,57,54,52,56,57,44,51,51,46,54,57,54,57,48,49,93,44,91,45,49,49,52,46,53,51,52,49,52,54,44,51,51,46,57,50,53,49,56,55,93,44,91,45,49,49,52,46,52,51,53,52,50,57,44,51,52,46,48,55,57,55,50,55,93,44,91,45,49,49,53,46,51,49,54,48,54,53,44,51,52,46,48,55,55,56,52,51,93,44,91,45,49,49,53,46,51,49,54,50,49,50,44,51,52,46,48,51,52,49,49,93,44,91,45,49,49,54,46,51,48,48,54,51,49,44,51,52,46,48,51,50,53,52,52,93,44,91,45,49,49,54,46,57,50,57,53,53,56,44,51,52,46,48,51,52,49,49,51,93,44,91,45,49,49,55,46,50,50,53,51,55,50,44,51,52,46,48,48,52,51,49,52,93,44,91,45,49,49,55,46,53,53,56,51,49,50,44,51,52,46,48,51,51,52,53,49,93,44,91,45,49,49,55,46,54,55,51,49,51,52,44,51,51,46,56,55,49,48,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,120,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,49,57,44,34,98,101,100,115,34,58,50,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,50,57,49,50,56,44,51,54,46,52,57,56,53,57,57,93,44,91,45,57,50,46,53,50,48,53,56,49,44,51,54,46,50,54,56,56,50,52,93,44,91,45,57,50,46,52,48,57,49,55,53,44,51,54,46,49,51,52,54,56,52,93,44,91,45,57,50,46,52,49,49,53,48,50,44,51,54,46,48,54,50,55,53,54,93,44,91,45,57,50,46,52,49,52,51,57,54,44,51,53,46,57,55,53,55,57,56,93,44,91,45,57,50,46,49,57,53,52,51,44,51,54,46,49,51,50,55,57,56,93,44,91,45,57,50,46,49,53,54,57,57,44,51,54,46,50,54,49,50,52,56,93,44,91,45,57,50,46,49,53,48,50,57,53,44,51,54,46,52,57,56,54,49,93,44,91,45,57,50,46,53,50,57,49,50,56,44,51,54,46,52,57,56,53,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,116,116,97,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,56,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,53,51,56,48,56,44,51,51,46,50,56,53,57,52,50,93,44,91,45,56,57,46,54,52,53,50,56,44,51,51,46,50,56,53,53,49,53,93,44,91,45,56,57,46,55,52,57,52,52,49,44,51,51,46,50,49,52,52,55,56,93,44,91,45,56,57,46,57,48,50,53,48,49,44,51,50,46,57,50,55,57,52,93,44,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,44,91,45,56,57,46,55,51,48,48,49,54,44,51,50,46,56,56,53,48,55,50,93,44,91,45,56,57,46,55,51,48,49,53,52,44,51,50,46,57,50,57,57,50,52,93,44,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,44,91,45,56,57,46,51,49,55,56,53,53,44,51,51,46,49,48,56,56,55,49,93,44,91,45,56,57,46,51,49,54,52,48,56,44,51,51,46,50,56,53,53,53,54,93,44,91,45,56,57,46,52,53,51,56,48,56,44,51,51,46,50,56,53,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,83,116,111,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,57,50,50,44,34,98,101,100,115,34,58,50,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,57,56,51,57,44,52,50,46,50,48,57,51,51,57,93,44,91,45,57,51,46,54,57,56,48,51,50,44,52,49,46,56,54,51,51,55,93,44,91,45,57,51,46,51,52,55,57,51,51,44,52,49,46,56,54,51,49,48,52,93,44,91,45,57,51,46,50,51,49,56,53,56,44,52,49,46,56,54,50,55,49,49,93,44,91,45,57,51,46,50,51,49,55,50,50,44,52,50,46,50,48,56,56,56,54,93,44,91,45,57,51,46,52,54,51,48,52,51,44,52,50,46,50,48,57,51,48,50,93,44,91,45,57,51,46,54,57,56,51,57,44,52,50,46,50,48,57,51,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,111,117,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,55,55,56,55,54,44,51,56,46,48,51,55,55,48,54,93,44,91,45,57,53,46,48,56,56,48,56,50,44,51,55,46,55,51,50,52,55,54,93,44,91,45,57,53,46,48,56,56,48,49,50,44,51,55,46,54,55,52,53,49,57,93,44,91,45,57,52,46,54,49,55,55,55,57,44,51,55,46,54,55,51,49,48,53,93,44,91,45,57,52,46,54,49,52,48,56,57,44,51,56,46,48,51,55,48,53,55,93,44,91,45,57,53,46,48,55,55,56,55,54,44,51,56,46,48,51,55,55,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,51,57,55,52,56,44,51,55,46,54,57,48,52,57,53,93,44,91,45,55,56,46,50,52,57,48,50,49,44,51,55,46,54,51,53,53,52,54,93,44,91,45,55,56,46,52,54,53,48,56,57,44,51,55,46,51,51,57,54,55,55,93,44,91,45,55,56,46,51,50,49,56,52,44,51,55,46,51,48,57,50,57,50,93,44,91,45,55,56,46,50,51,53,48,51,57,44,51,55,46,51,54,56,49,48,50,93,44,91,45,55,56,46,49,51,50,48,52,56,44,51,55,46,52,53,52,54,56,54,93,44,91,45,55,56,46,48,55,50,49,55,52,44,51,55,46,54,53,55,51,56,53,93,44,91,45,55,56,46,49,53,57,51,50,54,44,51,55,46,55,52,56,53,50,56,93,44,91,45,55,56,46,50,51,57,55,52,56,44,51,55,46,54,57,48,52,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,83,117,109,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,57,57,53,44,34,98,101,100,115,34,58,50,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,49,54,49,56,54,44,51,52,46,48,57,57,54,48,53,93,44,91,45,56,48,46,54,52,48,57,56,54,44,51,51,46,57,57,57,52,51,51,93,44,91,45,56,48,46,53,57,55,55,49,53,44,51,51,46,55,55,55,53,49,50,93,44,91,45,56,48,46,54,50,48,49,48,55,44,51,51,46,55,52,51,50,51,55,93,44,91,45,56,48,46,53,51,52,48,56,53,44,51,51,46,54,52,51,57,49,49,93,44,91,45,56,48,46,51,57,55,49,51,49,44,51,51,46,55,54,55,56,50,49,93,44,91,45,56,48,46,50,53,53,57,48,52,44,51,51,46,56,48,51,55,48,56,93,44,91,45,55,57,46,57,55,52,54,48,49,44,51,51,46,57,52,54,53,50,55,93,44,91,45,56,48,46,48,48,48,53,57,52,44,51,52,46,48,52,55,56,55,55,93,44,91,45,56,48,46,49,56,48,51,55,49,44,51,51,46,57,53,50,48,48,50,93,44,91,45,56,48,46,51,50,49,55,50,49,44,51,52,46,48,56,48,51,53,54,93,44,91,45,56,48,46,52,56,49,51,49,56,44,51,52,46,49,49,50,54,50,50,93,44,91,45,56,48,46,52,55,57,56,53,55,44,51,52,46,49,54,56,54,57,54,93,44,91,45,56,48,46,54,49,54,49,56,54,44,51,52,46,48,57,57,54,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,54,52,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,52,34,44,34,78,65,77,69,34,58,34,76,97,107,101,32,97,110,100,32,80,101,110,105,110,115,117,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,56,46,56,57,51,53,56,53,44,53,54,46,57,52,53,48,53,57,93,44,91,45,49,53,56,46,56,57,51,54,48,55,44,53,54,46,55,53,52,52,48,52,93,44,91,45,49,53,57,46,48,53,49,48,56,57,44,53,54,46,54,54,55,54,56,55,93,44,91,45,49,53,57,46,50,55,53,57,51,50,44,53,54,46,54,54,55,54,56,50,93,44,91,45,49,53,57,46,50,55,53,57,50,56,44,53,54,46,53,56,48,57,54,55,93,44,91,45,49,53,57,46,53,56,56,48,52,49,44,53,54,46,53,56,48,57,54,49,93,44,91,45,49,53,57,46,53,56,56,48,51,54,44,53,54,46,52,57,52,50,52,53,93,44,91,45,49,53,57,46,57,48,48,49,52,57,44,53,54,46,52,57,52,50,51,57,93,44,91,45,49,53,57,46,57,48,48,49,51,51,44,53,54,46,51,50,48,56,48,51,93,44,91,45,49,53,57,46,56,48,54,51,56,57,44,53,54,46,51,50,48,56,48,53,93,44,91,45,49,53,57,46,56,48,54,52,48,54,44,53,53,46,57,55,51,57,49,57,93,44,91,45,49,53,57,46,56,54,55,57,55,49,44,53,53,46,56,56,55,49,57,51,93,44,91,45,49,53,57,46,53,54,49,51,54,44,53,53,46,56,56,55,49,57,55,93,44,91,45,49,53,57,46,53,54,49,52,53,49,44,53,53,46,54,51,56,52,52,51,93,44,91,45,49,53,57,46,52,52,54,56,54,56,44,53,53,46,54,51,56,53,51,49,93,44,91,45,49,53,56,44,53,53,46,54,51,57,52,52,52,93,44,91,45,49,53,55,46,48,49,49,51,56,57,44,53,54,46,50,57,54,51,50,56,93,44,91,45,49,53,54,46,51,50,56,54,49,49,44,53,54,46,55,53,93,44,91,45,49,53,54,46,51,50,56,48,50,51,44,53,55,46,48,53,51,50,56,56,93,44,91,45,49,53,54,46,51,53,53,51,57,50,44,53,55,46,49,53,57,57,51,49,93,44,91,45,49,53,54,46,55,53,48,56,49,53,44,53,55,46,49,54,50,56,55,56,93,44,91,45,49,53,54,46,55,53,48,55,56,44,53,55,46,50,51,53,55,57,53,93,44,91,45,49,53,54,46,51,55,48,50,51,53,44,53,55,46,53,50,50,51,54,56,93,44,91,45,49,53,54,46,50,48,56,48,50,49,44,53,55,46,53,50,50,57,54,51,93,44,91,45,49,53,53,46,55,54,56,48,50,50,44,53,55,46,54,54,56,50,54,49,93,44,91,45,49,53,53,46,54,57,51,55,55,51,44,53,55,46,55,57,55,57,56,55,93,44,91,45,49,53,53,46,53,51,56,56,51,44,53,55,46,55,57,57,56,48,54,93,44,91,45,49,53,53,46,51,51,48,50,52,53,44,53,55,46,56,55,54,51,52,51,93,44,91,45,49,53,53,46,51,51,49,57,52,53,44,53,56,46,49,57,51,50,56,51,93,44,91,45,49,53,53,46,48,53,55,55,52,49,44,53,56,46,50,51,54,50,48,57,93,44,91,45,49,53,53,46,48,48,56,49,51,50,44,53,56,46,50,57,48,57,48,53,93,44,91,45,49,53,52,46,55,51,48,51,54,57,44,53,56,46,51,48,52,54,54,57,93,44,91,45,49,53,52,46,52,54,53,55,52,49,44,53,56,46,51,54,49,51,53,54,93,44,91,45,49,53,52,46,51,48,51,52,52,55,44,53,56,46,52,54,48,51,56,53,93,44,91,45,49,53,52,46,51,48,53,54,57,49,44,53,56,46,54,53,50,55,53,49,93,44,91,45,49,53,52,46,54,52,50,53,52,53,44,53,56,46,54,53,50,55,52,55,93,44,91,45,49,53,52,46,54,57,53,48,51,54,44,53,56,46,55,51,57,52,51,49,93,44,91,45,49,53,52,46,54,57,53,49,48,53,44,53,57,46,48,56,54,49,53,57,93,44,91,45,49,53,52,46,55,52,56,56,54,49,44,53,57,46,50,53,57,53,49,56,93,44,91,45,49,53,52,46,52,49,50,48,49,51,44,53,57,46,50,53,57,53,50,52,93,44,91,45,49,53,52,46,52,49,50,48,50,56,44,53,57,46,52,51,50,56,56,50,93,44,91,45,49,53,52,46,49,50,51,51,50,49,44,53,57,46,52,51,50,56,56,55,93,44,91,45,49,53,51,46,57,53,51,49,56,49,44,53,57,46,53,49,57,53,54,57,93,44,91,45,49,53,51,46,57,53,51,49,57,56,44,53,57,46,54,57,50,57,49,56,93,44,91,45,49,53,51,46,55,56,51,48,54,56,44,53,57,46,54,57,50,57,50,54,93,44,91,45,49,53,51,46,54,53,54,57,55,55,44,53,57,46,55,55,57,54,48,55,93,44,91,45,49,53,51,46,54,53,54,57,56,44,54,48,46,49,50,54,50,55,55,93,44,91,45,49,53,51,46,53,50,56,51,57,50,44,54,48,46,49,50,54,50,56,49,93,44,91,45,49,53,51,46,53,50,56,52,52,49,44,54,48,46,52,55,50,57,51,57,93,44,91,45,49,53,51,46,51,57,55,50,55,54,44,54,48,46,52,55,50,57,52,56,93,44,91,45,49,53,51,46,51,57,55,50,56,52,44,54,48,46,56,49,57,53,56,49,93,44,91,45,49,53,51,46,52,52,48,56,56,52,44,54,48,46,57,48,54,50,51,54,93,44,91,45,49,53,52,46,54,49,52,50,49,53,44,54,48,46,57,48,54,50,48,52,93,44,91,45,49,53,54,46,48,48,48,48,56,54,44,54,48,46,57,48,54,49,57,93,44,91,45,49,53,54,46,48,48,48,49,52,53,44,53,57,46,54,57,50,56,55,57,93,44,91,45,49,53,54,46,49,54,53,48,54,54,44,53,57,46,54,48,54,50,48,50,93,44,91,45,49,53,54,46,53,48,53,51,52,57,44,53,57,46,54,48,54,49,57,57,93,44,91,45,49,53,54,46,54,55,53,52,56,57,44,53,57,46,53,49,57,53,50,49,93,44,91,45,49,53,54,46,55,54,57,57,54,53,44,53,57,46,51,52,54,49,54,54,93,44,91,45,49,53,55,46,49,48,54,56,49,52,44,53,57,46,51,52,54,49,54,50,93,44,91,45,49,53,55,46,50,55,53,50,51,51,44,53,57,46,50,53,57,52,56,50,93,44,91,45,49,53,55,46,49,57,54,51,48,54,44,53,57,46,48,56,54,49,50,50,93,44,91,45,49,53,55,46,49,57,54,50,57,50,44,53,56,46,56,52,54,50,52,57,93,44,91,45,49,53,55,46,48,52,53,52,57,54,44,53,56,46,56,56,53,56,51,51,93,44,91,45,49,53,54,46,51,49,51,56,56,57,44,53,56,46,56,56,53,56,51,51,93,44,91,45,49,53,54,46,51,49,51,56,56,57,44,53,56,46,54,49,54,54,54,54,93,44,91,45,49,53,56,44,53,56,46,54,49,54,54,54,55,93,44,91,45,49,53,56,46,48,54,57,56,50,50,44,53,56,46,52,57,48,51,49,55,93,44,91,45,49,53,56,46,51,54,49,52,44,53,55,46,57,54,50,54,56,54,93,44,91,45,49,53,56,46,56,57,51,52,56,50,44,53,54,46,57,57,57,56,52,49,93,44,91,45,49,53,56,46,56,57,51,53,56,53,44,53,54,46,57,52,53,48,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,48,50,57,51,55,44,51,55,46,54,54,48,53,48,56,93,44,91,45,56,49,46,56,53,53,57,51,57,44,51,55,46,53,52,56,57,49,93,44,91,45,56,49,46,55,50,57,52,51,51,44,51,55,46,52,57,52,53,56,53,93,44,91,45,56,49,46,54,53,52,52,51,49,44,51,55,46,53,50,51,51,49,50,93,44,91,45,56,49,46,51,49,49,50,48,49,44,51,55,46,52,50,52,53,48,57,93,44,91,45,56,49,46,50,50,50,49,50,49,44,51,55,46,53,49,48,52,49,54,93,44,91,45,56,49,46,51,48,52,49,51,44,51,55,46,53,52,54,53,54,52,93,44,91,45,56,49,46,52,50,55,55,56,49,44,51,55,46,55,52,57,51,53,50,93,44,91,45,56,49,46,53,49,52,50,50,56,44,51,55,46,55,57,49,50,49,49,93,44,91,45,56,49,46,54,48,55,53,51,50,44,51,55,46,55,56,56,55,48,57,93,44,91,45,56,49,46,55,54,52,55,51,55,44,51,55,46,55,53,50,49,48,56,93,44,91,45,56,49,46,56,48,50,57,51,55,44,51,55,46,54,54,48,53,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,75,101,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,51,48,53,51,44,34,98,101,100,115,34,58,49,53,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,49,57,52,49,52,54,44,51,53,46,55,56,57,50,48,52,93,44,91,45,49,50,48,46,49,57,51,57,49,56,44,51,53,46,54,49,52,51,53,57,93,44,91,45,49,50,48,46,48,56,54,54,55,52,44,51,53,46,53,50,54,53,53,52,93,44,91,45,49,49,57,46,56,56,48,48,52,53,44,51,53,46,52,51,57,49,51,51,93,44,91,45,49,49,57,46,56,56,48,49,55,50,44,51,53,46,51,53,49,50,49,49,93,44,91,45,49,49,57,46,56,48,57,52,52,57,44,51,53,46,50,54,51,53,56,52,93,44,91,45,49,49,57,46,54,54,54,54,54,51,44,51,53,46,50,54,50,53,50,55,93,44,91,45,49,49,57,46,54,54,55,48,53,54,44,51,53,46,49,55,52,56,48,57,93,44,91,45,49,49,57,46,53,53,51,54,52,49,44,51,53,46,49,55,57,57,55,53,93,44,91,45,49,49,57,46,52,55,50,55,49,57,44,51,53,46,48,55,54,56,56,53,93,44,91,45,49,49,57,46,52,55,50,55,53,52,44,51,52,46,57,48,49,49,55,52,93,44,91,45,49,49,57,46,52,52,50,51,53,50,44,51,52,46,57,48,49,50,55,52,93,44,91,45,49,49,57,46,50,55,54,57,52,54,44,51,52,46,56,55,57,54,55,53,93,44,91,45,49,49,57,46,50,52,51,54,52,53,44,51,52,46,56,49,52,49,55,56,93,44,91,45,49,49,56,46,56,56,49,51,54,52,44,51,52,46,55,57,48,54,50,57,93,44,91,45,49,49,56,46,56,53,52,48,49,44,51,52,46,56,49,55,51,51,57,93,44,91,45,49,49,55,46,54,54,55,50,57,50,44,51,52,46,56,50,50,53,50,54,93,44,91,45,49,49,55,46,54,51,50,48,49,49,44,51,52,46,56,50,50,50,55,93,44,91,45,49,49,55,46,54,51,50,57,57,54,44,51,53,46,55,57,55,50,53,49,93,44,91,45,49,49,56,46,48,48,56,48,52,51,44,51,53,46,55,56,57,49,54,49,93,44,91,45,49,49,56,46,54,50,57,57,55,53,44,51,53,46,55,56,57,53,56,93,44,91,45,49,49,57,46,53,51,56,49,49,54,44,51,53,46,55,56,57,53,54,55,93,44,91,45,49,50,48,46,49,57,52,49,52,54,44,51,53,46,55,56,57,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,67,111,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,53,55,49,44,34,98,101,100,115,34,58,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,52,52,54,49,49,44,51,51,46,57,52,57,50,49,55,93,44,91,45,57,55,46,48,57,53,54,52,52,44,51,51,46,55,50,57,50,50,50,93,44,91,45,57,55,46,49,53,52,51,54,55,44,51,51,46,55,50,52,48,57,52,93,44,91,45,57,55,46,50,53,53,54,51,57,44,51,51,46,56,54,51,55,48,50,93,44,91,45,57,55,46,51,55,52,54,57,44,51,51,46,56,49,56,53,53,50,93,44,91,45,57,55,46,52,56,52,49,54,51,44,51,51,46,57,49,53,53,49,93,44,91,45,57,55,46,52,56,55,48,54,53,44,51,51,46,52,51,51,54,56,49,93,44,91,45,57,55,46,51,56,51,48,57,53,44,51,51,46,52,51,48,52,53,93,44,91,45,57,54,46,57,52,51,56,54,44,51,51,46,52,49,54,52,49,93,44,91,45,57,54,46,57,52,52,54,49,49,44,51,51,46,57,52,57,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,52,53,52,44,34,98,101,100,115,34,58,51,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,50,50,54,55,51,44,51,51,46,52,52,93,44,91,45,56,48,46,57,52,56,55,53,54,44,51,51,46,51,48,56,48,52,55,93,44,91,45,56,48,46,55,57,55,57,49,50,44,51,51,46,49,55,54,57,52,52,93,44,91,45,56,48,46,55,57,48,50,57,54,44,51,51,46,49,56,48,56,52,93,44,91,45,56,48,46,53,48,50,55,57,44,51,51,46,51,51,52,52,57,54,93,44,91,45,56,48,46,51,54,49,56,53,49,44,51,51,46,50,53,55,52,52,51,93,44,91,45,56,48,46,50,53,53,54,52,50,44,51,51,46,51,48,48,48,48,50,93,44,91,45,56,48,46,50,50,50,50,54,55,44,51,51,46,52,52,51,55,49,54,93,44,91,45,56,48,46,51,53,52,53,51,57,44,51,51,46,52,51,48,52,48,56,93,44,91,45,56,48,46,52,57,54,50,55,51,44,51,51,46,53,53,56,52,56,49,93,44,91,45,56,48,46,54,53,57,48,50,44,51,51,46,52,55,48,57,56,50,93,44,91,45,56,48,46,56,48,55,54,51,49,44,51,51,46,54,48,52,48,56,49,93,44,91,45,56,48,46,57,54,53,52,56,57,44,51,51,46,54,50,53,50,56,50,93,44,91,45,56,49,46,48,52,50,56,53,52,44,51,51,46,55,48,55,49,51,49,93,44,91,45,56,49,46,49,56,55,50,55,49,44,51,51,46,54,53,50,57,51,55,93,44,91,45,56,49,46,51,55,50,57,51,49,44,51,51,46,52,57,48,52,49,55,93,44,91,45,56,49,46,50,50,50,54,55,51,44,51,51,46,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,50,53,50,50,50,44,52,53,46,50,57,50,48,54,49,93,44,91,45,57,48,46,57,50,51,51,54,50,44,52,53,46,48,51,49,49,52,51,93,44,91,45,57,48,46,51,49,53,48,51,56,44,52,53,46,48,51,51,56,50,57,93,44,91,45,57,48,46,49,57,55,55,54,53,44,52,53,46,49,50,48,54,48,52,93,44,91,45,57,48,46,48,52,51,54,56,53,44,52,53,46,49,50,48,50,49,52,93,44,91,45,57,48,46,48,52,50,50,55,51,44,52,53,46,51,56,49,56,54,54,93,44,91,45,57,48,46,54,55,56,55,55,51,44,52,53,46,51,55,55,57,48,55,93,44,91,45,57,48,46,57,50,53,51,52,51,44,52,53,46,51,55,57,51,53,93,44,91,45,57,48,46,57,50,53,50,50,50,44,52,53,46,50,57,50,48,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,111,119,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,52,57,53,50,52,44,52,51,46,56,52,56,52,52,51,93,44,91,45,57,51,46,48,52,57,49,57,50,44,52,51,46,52,57,57,55,48,53,93,44,91,45,57,51,46,48,50,52,51,52,53,44,52,51,46,52,57,57,55,51,51,93,44,91,45,57,50,46,53,53,51,49,50,56,44,52,51,46,53,48,48,50,49,56,93,44,91,45,57,50,46,52,52,56,57,52,56,44,52,51,46,53,48,48,52,53,57,93,44,91,45,57,50,46,52,52,56,57,54,53,44,52,51,46,56,51,52,49,48,53,93,44,91,45,57,50,46,54,56,57,51,57,49,44,52,51,46,56,52,56,53,55,93,44,91,45,57,51,46,48,52,53,57,54,54,44,52,51,46,56,52,56,52,54,55,93,44,91,45,57,51,46,48,52,57,53,50,52,44,52,51,46,56,52,56,52,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,117,114,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,54,51,55,55,56,44,52,52,46,49,57,54,52,50,53,93,44,91,45,57,54,46,48,54,52,54,50,44,52,51,46,56,52,57,48,51,57,93,44,91,45,57,54,46,48,53,50,51,50,44,52,51,46,56,52,57,48,55,93,44,91,45,57,53,46,52,54,50,52,50,55,44,52,51,46,56,52,55,57,49,49,93,44,91,45,57,53,46,52,54,50,53,52,55,44,52,52,46,49,57,53,57,52,50,93,44,91,45,57,53,46,53,57,51,53,55,44,52,52,46,49,57,53,53,51,93,44,91,45,57,54,46,48,54,51,55,55,56,44,52,52,46,49,57,54,52,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,52,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,80,114,111,118,105,100,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,82,104,111,100,101,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,82,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,52,53,51,51,44,34,98,101,100,115,34,58,50,56,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,55,57,57,49,56,56,44,52,50,46,48,48,56,48,53,51,93,44,91,45,55,49,46,55,56,57,55,48,52,44,52,49,46,55,50,53,49,57,56,93,44,91,45,55,49,46,51,54,53,50,48,55,44,52,49,46,55,51,53,54,52,57,93,44,91,45,55,49,46,51,49,55,56,55,51,44,52,49,46,55,55,54,49,57,57,93,44,91,45,55,49,46,51,56,49,50,57,57,44,52,49,46,57,56,53,48,56,52,93,44,91,45,55,49,46,52,57,56,50,53,57,44,52,50,46,48,49,55,50,55,50,93,44,91,45,55,49,46,55,57,57,49,56,56,44,52,50,46,48,48,56,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,80,104,101,108,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,55,56,57,44,34,98,101,100,115,34,58,50,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,51,48,53,53,52,44,51,56,46,49,53,51,53,49,57,93,44,91,45,57,49,46,54,51,50,52,51,49,44,51,56,46,48,53,48,57,53,49,93,44,91,45,57,49,46,56,57,53,51,52,55,44,51,56,46,48,53,49,49,57,57,93,44,91,45,57,50,46,48,50,49,49,54,53,44,51,56,46,48,49,48,54,51,57,93,44,91,45,57,50,46,48,50,57,50,53,56,44,51,55,46,54,48,50,53,52,50,93,44,91,45,57,49,46,56,48,57,49,48,53,44,51,55,46,53,57,56,56,54,51,93,44,91,45,57,49,46,56,48,54,50,49,57,44,51,55,46,55,57,49,50,56,54,93,44,91,45,57,49,46,53,50,56,55,57,55,44,51,55,46,55,56,56,57,56,57,93,44,91,45,57,49,46,53,51,52,51,56,52,44,51,56,46,49,53,50,53,57,51,93,44,91,45,57,49,46,54,51,48,53,53,52,44,51,56,46,49,53,51,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,80,114,101,110,116,105,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,54,48,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,49,56,53,48,56,44,51,52,46,55,53,54,55,56,49,93,44,91,45,56,56,46,55,51,53,52,52,44,51,52,46,53,57,54,52,56,51,93,44,91,45,56,56,46,55,51,54,52,54,53,44,51,52,46,53,48,56,57,49,93,44,91,45,56,56,46,53,52,50,48,55,57,44,51,52,46,52,54,53,50,55,54,93,44,91,45,56,56,46,51,50,57,49,57,51,44,51,52,46,52,54,51,53,55,49,93,44,91,45,56,56,46,51,51,48,54,57,57,44,51,52,46,55,52,48,55,50,49,93,44,91,45,56,56,46,51,54,53,52,55,50,44,51,52,46,55,53,53,54,48,52,93,44,91,45,56,56,46,55,49,56,53,48,56,44,51,52,46,55,53,54,55,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,53,34,44,34,78,65,77,69,34,58,34,87,104,105,116,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,48,56,57,44,34,98,101,100,115,34,58,51,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,57,55,52,49,54,44,51,54,46,57,52,53,57,51,49,93,44,91,45,56,52,46,51,53,48,48,48,54,44,51,54,46,55,56,48,54,56,49,93,44,91,45,56,52,46,50,50,55,50,57,50,44,51,54,46,53,57,50,48,52,53,93,44,91,45,56,51,46,57,56,55,54,49,53,44,51,54,46,53,56,57,52,55,49,93,44,91,45,56,51,46,57,51,48,55,54,50,44,51,54,46,53,56,55,54,57,49,93,44,91,45,56,51,46,56,55,55,53,48,51,44,51,54,46,54,56,55,50,53,57,93,44,91,45,56,51,46,57,53,56,53,51,52,44,51,54,46,55,50,55,50,52,53,93,44,91,45,56,52,46,48,54,53,55,53,53,44,51,54,46,56,53,51,57,54,49,93,44,91,45,56,52,46,48,57,49,56,53,51,44,51,54,46,57,53,53,57,57,50,93,44,91,45,56,52,46,50,57,55,52,49,54,44,51,54,46,57,52,53,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,83,116,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,57,52,49,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,50,52,55,49,49,44,52,49,46,52,51,50,56,56,54,93,44,91,45,56,54,46,55,48,48,54,51,44,52,49,46,52,48,49,57,56,50,93,44,91,45,56,54,46,55,56,51,52,55,51,44,52,49,46,50,56,53,52,54,53,93,44,91,45,56,54,46,57,51,48,48,55,57,44,52,49,46,50,51,54,55,57,56,93,44,91,45,56,54,46,57,51,48,49,55,44,52,49,46,49,55,50,51,49,56,93,44,91,45,56,54,46,52,54,55,48,52,54,44,52,49,46,49,55,49,52,52,50,93,44,91,45,56,54,46,52,54,54,54,48,51,44,52,49,46,52,51,50,57,54,56,93,44,91,45,56,54,46,53,50,52,55,49,49,44,52,49,46,52,51,50,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,57,49,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,48,53,55,44,34,98,101,100,115,34,58,57,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,50,56,53,49,50,44,51,48,46,57,48,54,49,56,56,93,44,91,45,57,55,46,57,54,50,56,54,44,51,48,46,55,56,53,54,52,49,93,44,91,45,57,56,46,48,52,57,56,56,54,44,51,48,46,54,50,52,49,53,53,93,44,91,45,57,55,46,57,53,54,55,51,52,44,51,48,46,54,50,56,50,52,57,93,44,91,45,57,55,46,56,49,49,56,54,51,44,51,48,46,52,52,55,48,49,56,93,44,91,45,57,55,46,53,57,54,50,51,54,44,51,48,46,53,48,49,53,49,51,93,44,91,45,57,55,46,51,54,57,53,51,57,44,51,48,46,52,49,57,53,54,51,93,44,91,45,57,55,46,51,51,52,52,54,51,44,51,48,46,52,48,50,56,52,51,93,44,91,45,57,55,46,49,53,53,50,49,57,44,51,48,46,52,53,55,51,52,52,93,44,91,45,57,55,46,50,55,49,52,49,56,44,51,48,46,55,51,53,54,57,50,93,44,91,45,57,55,46,51,49,53,53,48,55,44,51,48,46,55,53,50,51,55,49,93,44,91,45,57,55,46,54,50,53,50,56,56,44,51,48,46,56,55,48,52,51,93,44,91,45,57,55,46,56,50,56,53,49,50,44,51,48,46,57,48,54,49,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,80,97,116,105,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,51,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,56,50,50,54,51,44,49,56,46,48,51,50,57,53,56,93,44,91,45,54,53,46,57,56,55,53,53,49,44,49,55,46,57,48,56,57,50,51,93,44,91,45,54,53,46,56,55,51,50,57,57,44,49,55,46,57,51,55,57,53,53,93,44,91,45,54,53,46,57,56,56,53,50,51,44,49,56,46,48,53,56,57,52,49,93,44,91,45,54,54,46,48,49,48,50,52,53,44,49,56,46,48,55,53,53,54,53,93,44,91,45,54,54,46,48,53,49,55,56,56,44,49,56,46,49,48,57,56,55,56,93,44,91,45,54,54,46,48,53,51,49,52,54,44,49,56,46,49,48,55,50,57,51,93,44,91,45,54,54,46,48,56,50,50,54,51,44,49,56,46,48,51,50,57,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,77,105,116,99,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,51,49,50,56,44,52,51,46,53,48,48,50,49,56,93,44,91,45,57,51,46,48,50,52,51,52,53,44,52,51,46,52,57,57,55,51,51,93,44,91,45,57,51,46,48,50,52,49,52,51,44,52,51,46,50,53,53,53,51,56,93,44,91,45,57,51,46,48,50,52,48,57,50,44,52,51,46,50,49,50,56,49,50,93,44,91,45,57,50,46,53,53,52,51,56,49,44,52,51,46,50,49,50,56,49,51,93,44,91,45,57,50,46,53,53,51,49,50,56,44,52,51,46,53,48,48,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,69,109,97,110,117,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,57,57,44,34,98,101,100,115,34,58,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,52,49,52,57,44,51,50,46,55,54,50,50,53,56,93,44,91,45,56,50,46,52,54,57,56,50,51,44,51,50,46,54,53,48,56,56,50,93,44,91,45,56,50,46,54,52,55,55,51,51,44,51,50,46,53,49,50,53,48,55,93,44,91,45,56,50,46,52,57,57,57,55,49,44,51,50,46,52,57,56,51,55,56,93,44,91,45,56,50,46,51,56,54,49,48,54,44,51,50,46,52,52,48,51,55,93,44,91,45,56,50,46,52,48,57,49,49,56,44,51,50,46,51,53,51,56,51,93,44,91,45,56,50,46,51,53,52,53,52,54,44,51,50,46,50,57,50,49,57,52,93,44,91,45,56,50,46,50,51,50,55,56,56,44,51,50,46,51,49,56,56,51,56,93,44,91,45,56,50,46,50,53,50,55,53,55,44,51,50,46,51,53,51,51,49,93,44,91,45,56,50,46,49,52,56,51,51,56,44,51,50,46,53,50,48,52,50,57,93,44,91,45,56,50,46,48,51,48,50,51,51,44,51,50,46,53,51,56,55,55,93,44,91,45,56,50,46,48,48,49,50,51,54,44,51,50,46,54,48,54,57,49,93,44,91,45,56,50,46,48,56,50,52,52,44,51,50,46,54,54,51,48,54,49,93,44,91,45,56,50,46,49,52,52,57,55,55,44,51,50,46,56,49,50,55,52,49,93,44,91,45,56,50,46,51,49,54,53,49,50,44,51,50,46,56,51,53,55,55,50,93,44,91,45,56,50,46,52,51,52,49,52,57,44,51,50,46,55,54,50,50,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,116,97,104,111,117,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,55,53,55,50,49,44,51,49,46,56,56,50,53,54,93,44,91,45,57,49,46,54,52,54,48,52,44,51,49,46,57,54,49,49,52,49,93,44,91,45,57,49,46,55,55,57,57,50,56,44,51,49,46,56,56,49,52,56,49,93,44,91,45,57,49,46,56,56,57,54,56,55,44,51,49,46,57,55,49,52,55,52,93,44,91,45,57,50,46,48,48,53,52,51,52,44,51,49,46,57,50,55,50,57,54,93,44,91,45,57,50,46,48,48,56,49,50,49,44,51,49,46,51,50,53,55,57,55,93,44,91,45,57,49,46,56,51,52,50,56,44,51,49,46,50,54,54,51,52,52,93,44,91,45,57,49,46,56,53,53,57,48,56,44,51,49,46,52,57,54,48,49,93,44,91,45,57,49,46,56,50,54,57,50,54,44,51,49,46,53,57,49,54,55,49,93,44,91,45,57,49,46,55,48,53,57,52,56,44,51,49,46,54,52,50,56,54,51,93,44,91,45,57,49,46,54,57,52,52,54,57,44,51,49,46,55,51,53,50,56,54,93,44,91,45,57,49,46,53,52,52,55,57,49,44,51,49,46,55,53,49,55,51,49,93,44,91,45,57,49,46,53,55,53,55,50,49,44,51,49,46,56,56,50,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,57,51,49,44,34,98,101,100,115,34,58,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,54,52,57,54,51,55,44,52,49,46,49,50,50,51,52,52,93,44,91,45,55,53,46,55,55,49,51,48,54,44,52,49,46,48,55,55,56,49,54,93,44,91,45,55,53,46,55,51,49,57,51,44,52,49,46,48,48,56,50,50,93,44,91,45,55,53,46,57,57,55,51,52,56,44,52,48,46,57,49,50,57,56,53,93,44,91,45,55,53,46,55,53,55,56,48,55,44,52,48,46,55,51,53,52,49,52,93,44,91,45,55,53,46,54,48,56,57,56,53,44,52,48,46,55,56,55,51,56,55,93,44,91,45,55,53,46,52,55,52,49,57,51,44,52,48,46,56,49,52,55,52,54,93,44,91,45,55,53,46,53,55,52,53,57,44,52,48,46,57,53,49,51,50,51,93,44,91,45,55,53,46,52,57,53,57,57,44,52,48,46,57,56,55,49,56,49,93,44,91,45,55,53,46,54,52,57,54,51,55,44,52,49,46,49,50,50,51,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,80,97,119,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,54,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,54,51,54,54,55,44,52,48,46,50,54,50,49,55,51,93,44,91,45,57,54,46,52,54,51,55,49,50,44,52,48,46,48,48,49,48,50,51,93,44,91,45,57,54,46,50,51,57,50,44,52,48,46,48,48,48,56,56,49,93,44,91,45,57,54,46,48,49,48,54,56,44,52,48,46,48,48,48,54,53,49,93,44,91,45,57,54,46,48,49,48,49,55,54,44,52,48,46,50,54,49,52,56,50,93,44,91,45,57,54,46,48,54,54,55,51,54,44,52,48,46,50,54,50,48,51,56,93,44,91,45,57,54,46,52,54,51,54,54,55,44,52,48,46,50,54,50,49,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,85,110,105,99,111,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,56,48,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,52,48,52,54,44,51,54,46,50,53,50,56,48,55,93,44,91,45,56,50,46,52,51,55,50,53,49,44,51,54,46,49,53,52,55,48,57,93,44,91,45,56,50,46,53,57,53,48,54,53,44,51,54,46,48,57,54,50,48,53,93,44,91,45,56,50,46,54,48,50,57,56,44,51,54,46,48,51,57,54,55,55,93,44,91,45,56,50,46,53,48,53,52,50,53,44,51,53,46,57,55,55,52,51,50,93,44,91,45,56,50,46,52,49,54,55,51,56,44,51,54,46,48,55,50,56,50,55,93,44,91,45,56,50,46,50,50,50,48,54,52,44,51,54,46,49,53,54,57,54,93,44,91,45,56,50,46,51,52,48,52,54,44,51,54,46,50,53,50,56,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,83,112,97,114,116,97,110,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,50,49,57,53,44,34,98,101,100,115,34,58,57,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,54,57,51,52,56,44,51,53,46,49,56,55,50,49,55,93,44,91,45,56,50,46,50,49,53,57,52,55,44,51,53,46,49,57,54,50,50,50,93,44,91,45,56,50,46,50,50,54,51,50,53,44,51,52,46,56,53,50,52,56,56,93,44,91,45,56,50,46,49,52,54,55,57,50,44,51,52,46,55,56,53,53,53,52,93,44,91,45,56,50,46,48,55,49,51,49,53,44,51,52,46,55,48,51,55,93,44,91,45,56,49,46,56,53,52,48,48,50,44,51,52,46,53,57,52,53,52,57,93,44,91,45,56,49,46,55,56,51,51,57,44,51,52,46,56,51,55,49,50,53,93,44,91,45,56,49,46,55,49,49,54,57,52,44,51,52,46,57,49,50,53,55,55,93,44,91,45,56,49,46,55,53,53,48,56,51,44,51,52,46,57,51,48,50,56,93,44,91,45,56,49,46,56,55,52,54,56,57,44,51,53,46,49,56,52,48,51,54,93,44,91,45,56,49,46,57,54,57,51,52,56,44,51,53,46,49,56,55,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,77,97,114,97,116,104,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,50,54,52,44,34,98,101,100,115,34,58,52,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,53,48,51,56,44,52,53,46,48,51,51,56,50,57,93,44,91,45,57,48,46,51,49,54,50,53,51,44,52,52,46,54,56,53,49,53,52,93,44,91,45,56,57,46,56,52,52,57,51,49,44,52,52,46,54,56,52,57,52,53,93,44,91,45,56,57,46,50,50,51,55,52,53,44,52,52,46,54,56,49,51,54,53,93,44,91,45,56,57,46,50,50,51,56,49,52,44,52,53,46,48,50,57,50,52,54,93,44,91,45,56,57,46,50,50,52,50,49,52,44,52,53,46,49,49,56,53,54,55,93,44,91,45,56,57,46,52,50,53,57,55,49,44,52,53,46,49,49,57,48,57,56,93,44,91,45,57,48,46,48,52,51,54,56,53,44,52,53,46,49,50,48,50,49,52,93,44,91,45,57,48,46,49,57,55,55,54,53,44,52,53,46,49,50,48,54,48,52,93,44,91,45,57,48,46,51,49,53,48,51,56,44,52,53,46,48,51,51,56,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,69,108,107,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,50,53,50,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,53,56,54,55,56,54,44,52,49,46,48,48,48,51,57,56,93,44,91,45,49,49,54,46,49,53,56,49,53,53,44,52,48,46,57,57,57,57,49,50,93,44,91,45,49,49,54,46,49,53,55,56,51,52,44,52,48,46,54,54,54,51,56,57,93,44,91,45,49,49,54,46,48,48,48,56,57,55,44,52,48,46,49,50,55,51,55,54,93,44,91,45,49,49,53,46,56,51,52,57,54,57,44,52,48,46,49,50,55,56,52,50,93,44,91,45,49,49,52,46,57,48,49,56,50,53,44,52,48,46,49,50,50,48,56,50,93,44,91,45,49,49,52,46,48,52,54,54,49,52,44,52,48,46,49,49,54,57,51,54,93,44,91,45,49,49,52,46,48,52,50,48,50,57,44,52,48,46,57,57,57,56,57,54,93,44,91,45,49,49,52,46,48,52,49,52,55,55,44,52,49,46,57,57,51,56,55,51,93,44,91,45,49,49,52,46,50,56,49,55,57,57,44,52,49,46,57,57,52,52,52,49,93,44,91,45,49,49,53,46,48,51,56,49,53,55,44,52,49,46,57,57,54,50,55,57,93,44,91,45,49,49,54,46,48,52,53,51,55,51,44,52,49,46,57,57,54,51,51,49,93,44,91,45,49,49,55,46,48,49,56,50,48,52,44,52,49,46,57,57,57,55,49,53,93,44,91,45,49,49,55,46,48,49,56,52,49,57,44,52,49,46,48,48,48,50,53,52,93,44,91,45,49,49,54,46,53,56,54,55,56,54,44,52,49,46,48,48,48,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,114,97,120,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,56,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,48,53,55,57,57,44,51,56,46,57,48,52,49,54,55,93,44,91,45,56,48,46,55,48,49,53,50,50,44,51,56,46,56,55,57,48,52,53,93,44,91,45,56,48,46,57,56,52,57,53,44,51,56,46,55,49,55,56,57,56,93,44,91,45,56,49,46,48,51,49,54,55,55,44,51,56,46,54,54,55,56,51,57,93,44,91,45,56,48,46,56,56,49,50,51,50,44,51,56,46,53,48,55,48,52,53,93,44,91,45,56,48,46,55,56,53,49,55,55,44,51,56,46,53,53,55,54,52,57,93,44,91,45,56,48,46,54,53,48,55,56,54,44,51,56,46,53,50,54,53,57,93,44,91,45,56,48,46,53,48,56,54,53,53,44,51,56,46,54,52,53,53,53,51,93,44,91,45,56,48,46,52,53,55,51,51,50,44,51,56,46,55,51,57,49,54,57,93,44,91,45,56,48,46,52,55,51,55,54,56,44,51,56,46,56,50,57,48,57,56,93,44,91,45,56,48,46,54,48,53,55,57,57,44,51,56,46,57,48,52,49,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,87,101,120,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,49,49,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,44,91,45,56,53,46,56,50,49,49,56,54,44,52,52,46,49,54,52,49,57,55,93,44,91,45,56,53,46,53,54,52,53,53,52,44,52,52,46,49,54,52,56,54,49,93,44,91,45,56,53,46,51,51,52,55,55,55,44,52,52,46,49,54,53,49,49,56,93,44,91,45,56,53,46,51,51,52,44,52,52,46,53,49,50,51,48,51,93,44,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,67,111,99,104,114,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,52,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,53,54,52,56,53,44,51,51,46,51,56,56,52,49,52,93,44,91,45,49,48,50,46,53,57,52,56,51,54,44,51,51,46,51,56,56,52,56,57,93,44,91,45,49,48,50,46,54,49,53,52,52,55,44,51,51,46,56,50,53,49,50,49,93,44,91,45,49,48,51,46,48,52,55,52,48,57,44,51,51,46,56,50,52,54,55,52,93,44,91,45,49,48,51,46,48,53,50,54,50,49,44,51,51,46,53,55,48,53,55,53,93,44,91,45,49,48,51,46,48,53,54,52,56,53,44,51,51,46,51,56,56,52,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,108,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,56,52,50,44,34,98,101,100,115,34,58,53,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,53,48,52,51,44,52,48,46,55,50,52,56,50,55,93,44,91,45,55,56,46,53,51,57,56,52,44,52,48,46,53,48,54,49,53,52,93,44,91,45,55,56,46,53,54,52,48,56,53,44,52,48,46,51,55,48,54,48,57,93,44,91,45,55,56,46,54,50,48,51,56,51,44,52,48,46,51,50,55,48,50,53,93,44,91,45,55,56,46,50,53,55,51,48,53,44,52,48,46,50,57,55,56,56,51,93,44,91,45,55,56,46,49,51,48,48,56,49,44,52,48,46,52,56,49,57,57,93,44,91,45,55,56,46,50,50,49,57,55,44,52,48,46,54,55,52,53,51,57,93,44,91,45,55,56,46,49,49,54,53,50,49,44,52,48,46,55,51,57,49,50,55,93,44,91,45,55,56,46,51,53,57,57,49,50,44,52,48,46,55,51,50,53,57,50,93,44,91,45,55,56,46,51,53,48,52,51,44,52,48,46,55,50,52,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,105,99,107,111,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,54,53,49,57,57,44,51,56,46,48,54,50,52,55,57,93,44,91,45,57,51,46,53,48,51,57,52,54,44,51,56,46,48,55,51,49,50,51,93,44,91,45,57,51,46,53,49,50,49,48,51,44,51,55,46,57,49,51,53,51,53,93,44,91,45,57,51,46,53,55,51,50,48,50,44,51,55,46,56,50,56,48,51,53,93,44,91,45,57,51,46,49,56,55,57,49,53,44,51,55,46,56,48,50,55,51,55,93,44,91,45,57,51,46,49,56,50,55,48,54,44,51,55,46,57,48,52,49,52,52,93,44,91,45,57,51,46,48,55,50,52,52,55,44,51,55,46,57,48,50,54,50,55,93,44,91,45,57,51,46,48,54,53,49,57,57,44,51,56,46,48,54,50,52,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,52,57,51,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,54,50,55,52,44,51,54,46,57,51,49,55,55,53,93,44,91,45,57,52,46,48,54,56,56,57,56,44,51,54,46,55,52,55,56,49,56,93,44,91,45,57,52,46,48,55,55,48,56,57,44,51,54,46,52,57,56,55,51,93,44,91,45,57,51,46,56,54,54,54,56,57,44,51,54,46,52,57,56,55,51,53,93,44,91,45,57,51,46,53,56,52,50,54,50,44,51,54,46,52,57,57,49,54,55,93,44,91,45,57,51,46,53,55,51,56,44,51,54,46,56,50,48,48,51,50,93,44,91,45,57,51,46,54,49,49,48,48,51,44,51,54,46,57,50,50,56,51,49,93,44,91,45,57,52,46,48,54,50,55,52,44,51,54,46,57,51,49,55,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,82,97,109,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,52,57,51,44,34,98,101,100,115,34,58,49,57,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,48,53,49,56,44,52,53,46,49,50,51,56,54,54,93,44,91,45,57,51,46,50,50,55,54,57,54,44,52,53,46,49,50,52,53,51,51,93,44,91,45,57,51,46,50,50,54,57,50,57,44,52,53,46,48,51,53,54,55,49,93,44,91,45,57,51,46,49,55,56,53,51,57,44,52,52,46,56,56,56,51,51,56,93,44,91,45,57,51,46,48,50,48,48,52,52,44,52,52,46,56,57,48,55,53,93,44,91,45,57,51,46,48,50,48,53,49,56,44,52,53,46,49,50,51,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,105,116,116,108,101,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,55,55,50,57,57,44,51,51,46,57,52,48,57,51,50,93,44,91,45,57,52,46,52,56,53,56,55,56,44,51,51,46,54,51,55,56,54,53,93,44,91,45,57,52,46,51,56,57,53,51,44,51,51,46,53,52,54,55,51,57,93,44,91,45,57,52,46,50,57,49,50,49,50,44,51,51,46,53,56,49,52,55,56,93,44,91,45,57,52,46,48,52,51,52,53,44,51,51,46,53,53,50,50,53,51,93,44,91,45,57,51,46,57,51,53,54,48,54,44,51,51,46,53,53,48,49,55,54,93,44,91,45,57,51,46,56,50,53,56,56,52,44,51,51,46,54,48,57,56,53,51,93,44,91,45,57,51,46,57,54,53,54,51,55,44,51,51,46,54,54,57,55,51,54,93,44,91,45,57,51,46,57,53,55,51,49,53,44,51,51,46,55,53,48,57,52,93,44,91,45,57,51,46,57,53,56,56,50,56,44,51,51,46,55,53,48,57,57,52,93,44,91,45,57,52,46,49,56,49,56,49,44,51,51,46,55,56,56,56,53,50,93,44,91,45,57,52,46,52,55,55,50,57,57,44,51,51,46,57,52,48,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,76,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,49,53,53,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,50,56,51,54,51,55,44,51,57,46,54,50,49,53,54,49,93,44,91,45,49,49,57,46,52,55,56,56,48,54,44,51,57,46,51,51,55,52,49,54,93,44,91,45,49,49,57,46,55,49,50,54,52,53,44,51,57,46,50,53,48,56,55,49,93,44,91,45,49,49,57,46,53,54,51,54,56,44,51,57,46,49,57,53,52,49,53,93,44,91,45,49,49,57,46,53,53,49,48,50,44,51,57,46,48,56,53,55,57,49,93,44,91,45,49,49,57,46,51,49,49,55,49,52,44,51,57,46,48,56,51,54,49,53,93,44,91,45,49,49,57,46,51,49,48,55,48,50,44,51,56,46,57,57,48,55,49,57,93,44,91,45,49,49,57,46,52,50,48,56,51,55,44,51,56,46,57,53,52,55,49,53,93,44,91,45,49,49,57,46,52,48,54,50,55,57,44,51,56,46,55,51,51,51,54,50,93,44,91,45,49,49,57,46,51,52,57,56,56,52,44,51,56,46,55,50,57,49,57,51,93,44,91,45,49,49,57,46,51,50,56,51,57,56,44,51,56,46,53,51,52,55,57,50,93,44,91,45,49,49,57,46,49,53,54,57,55,56,44,51,56,46,52,49,52,55,52,54,93,44,91,45,49,49,56,46,57,48,54,56,54,49,44,51,56,46,52,49,52,54,55,55,93,44,91,45,49,49,56,46,57,48,50,49,50,52,44,51,56,46,56,53,50,49,53,56,93,44,91,45,49,49,57,46,48,49,52,53,50,56,44,51,56,46,56,53,49,51,93,44,91,45,49,49,57,46,48,49,52,56,51,55,44,51,56,46,57,52,51,51,50,51,93,44,91,45,49,49,56,46,57,50,57,55,51,55,44,51,57,46,48,55,51,54,57,56,93,44,91,45,49,49,56,46,55,53,51,56,51,53,44,51,57,46,48,55,52,54,51,93,44,91,45,49,49,56,46,55,53,52,48,49,52,44,51,57,46,49,49,50,48,50,51,93,44,91,45,49,49,57,46,49,49,56,49,57,51,44,51,57,46,51,56,56,53,49,54,93,44,91,45,49,49,57,46,48,55,55,57,56,56,44,51,57,46,55,50,50,52,52,49,93,44,91,45,49,49,57,46,49,56,57,51,52,50,44,51,57,46,54,53,48,56,55,93,44,91,45,49,49,57,46,50,56,51,54,51,55,44,51,57,46,54,50,49,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,56,54,55,57,44,34,98,101,100,115,34,58,49,51,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,54,53,57,51,49,44,50,54,46,55,54,57,53,53,50,93,44,91,45,56,50,46,49,57,56,54,50,54,44,50,54,46,55,55,48,56,57,50,93,44,91,45,56,50,46,51,51,53,48,52,44,50,54,46,55,56,55,57,52,54,93,44,91,45,56,50,46,51,50,49,57,49,44,50,54,46,54,54,53,48,55,57,93,44,91,45,56,50,46,50,51,54,52,53,51,44,50,54,46,52,55,55,51,93,44,91,45,56,50,46,49,49,50,50,50,49,44,50,54,46,51,55,55,55,53,53,93,44,91,45,56,49,46,57,55,56,49,50,54,44,50,54,46,51,57,57,54,57,50,93,44,91,45,56,49,46,57,48,53,53,48,49,44,50,54,46,51,51,48,48,56,56,93,44,91,45,56,49,46,54,53,55,57,44,50,54,46,51,49,55,53,54,51,93,44,91,45,56,49,46,54,53,57,53,48,54,44,50,54,46,52,50,49,48,55,55,93,44,91,45,56,49,46,53,54,50,49,56,44,50,54,46,52,50,50,54,50,53,93,44,91,45,56,49,46,53,54,51,55,54,51,44,50,54,46,53,49,51,51,50,52,93,44,91,45,56,49,46,53,54,53,57,51,49,44,50,54,46,55,54,57,53,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,74,111,115,101,112,104,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,52,56,49,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,55,49,54,52,57,50,44,52,50,46,55,56,52,48,54,49,93,44,91,45,49,50,51,46,56,57,48,54,53,55,44,52,50,46,53,48,48,53,51,56,93,44,91,45,49,50,51,46,57,57,56,55,56,44,52,50,46,52,57,57,57,54,50,93,44,91,45,49,50,52,46,48,50,53,57,56,52,44,52,50,46,51,53,57,52,48,57,93,44,91,45,49,50,51,46,56,57,50,54,53,49,44,52,50,46,51,53,51,50,57,51,93,44,91,45,49,50,51,46,55,57,50,56,51,52,44,52,50,46,50,50,52,51,49,52,93,44,91,45,49,50,51,46,56,53,56,53,52,57,44,52,50,46,49,51,53,49,49,54,93,44,91,45,49,50,51,46,56,50,50,48,52,49,44,52,49,46,57,57,53,53,56,93,44,91,45,49,50,51,46,53,49,55,57,49,49,44,52,50,46,48,48,48,55,53,54,93,44,91,45,49,50,51,46,50,51,49,49,49,51,44,52,50,46,48,48,51,57,52,51,93,44,91,45,49,50,51,46,50,50,57,54,49,57,44,52,50,46,55,48,50,54,49,93,44,91,45,49,50,51,46,52,52,53,52,53,54,44,52,50,46,55,48,51,48,50,53,93,44,91,45,49,50,51,46,55,49,54,52,57,50,44,52,50,46,55,56,52,48,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,97,110,97,116,195,173,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,57,50,44,34,98,101,100,115,34,58,53,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,51,50,53,50,49,44,49,56,46,53,51,53,52,55,56,93,44,91,45,54,54,46,53,52,51,48,55,57,44,49,56,46,52,48,53,52,50,50,93,44,91,45,54,54,46,53,51,51,54,50,51,44,49,56,46,51,53,49,51,51,51,93,44,91,45,54,54,46,52,54,51,50,49,49,44,49,56,46,51,55,49,52,55,51,93,44,91,45,54,54,46,52,52,51,56,44,49,56,46,51,55,49,48,50,55,93,44,91,45,54,54,46,52,51,54,55,53,50,44,49,56,46,53,52,48,56,48,53,93,44,91,45,54,54,46,53,51,50,53,50,49,44,49,56,46,53,51,53,52,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,55,51,55,44,34,98,101,100,115,34,58,49,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,52,56,49,57,57,44,51,49,46,51,52,57,53,55,52,93,44,91,45,57,48,46,53,52,55,54,49,54,44,51,48,46,57,57,57,55,50,93,44,91,45,57,48,46,51,52,55,50,53,53,44,51,49,46,48,48,48,53,51,93,44,91,45,57,48,46,50,53,57,53,53,53,44,51,49,46,48,48,48,54,55,57,93,44,91,45,57,48,46,50,54,48,51,57,49,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,53,52,56,49,57,57,44,51,49,46,51,52,57,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,102,102,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,53,51,49,44,34,98,101,100,115,34,58,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,52,53,49,54,53,44,51,53,46,54,51,49,57,49,51,93,44,91,45,56,54,46,50,53,55,53,57,44,51,53,46,52,49,50,52,55,54,93,44,91,45,56,54,46,50,54,49,52,56,57,44,51,53,46,51,51,51,53,55,57,93,44,91,45,56,54,46,49,53,56,48,49,56,44,51,53,46,51,54,50,54,48,55,93,44,91,45,56,53,46,57,49,51,53,57,51,44,51,53,46,50,56,57,49,56,57,93,44,91,45,56,53,46,56,55,54,57,54,50,44,51,53,46,53,50,52,48,57,53,93,44,91,45,56,53,46,57,56,53,48,54,50,44,51,53,46,54,54,48,49,48,56,93,44,91,45,56,54,46,49,52,51,54,53,50,44,51,53,46,54,54,49,55,52,55,93,44,91,45,56,54,46,50,48,55,49,52,55,44,51,53,46,55,48,51,55,57,93,44,91,45,56,54,46,50,52,53,49,54,53,44,51,53,46,54,51,49,57,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,76,101,109,104,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,57,56,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,56,49,50,52,48,55,44,52,52,46,56,48,56,51,52,54,93,44,91,45,49,49,52,46,56,49,57,56,56,57,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,49,52,46,54,48,50,51,54,50,44,52,52,46,53,57,52,56,53,54,93,44,91,45,49,49,52,46,52,53,49,56,52,44,52,52,46,54,49,49,55,52,49,93,44,91,45,49,49,52,46,51,51,57,49,57,54,44,52,52,46,55,57,51,53,57,52,93,44,91,45,49,49,52,46,48,55,53,57,51,55,44,52,52,46,55,52,53,53,55,56,93,44,91,45,49,49,52,46,48,49,57,50,48,52,44,52,52,46,54,53,49,53,52,49,93,44,91,45,49,49,51,46,56,49,54,50,49,53,44,52,52,46,52,57,51,57,54,51,93,44,91,45,49,49,51,46,53,48,49,53,49,57,44,52,52,46,52,50,50,51,48,51,93,44,91,45,49,49,51,46,51,51,57,54,49,55,44,52,52,46,51,49,54,51,49,51,93,44,91,45,49,49,51,46,51,50,48,54,48,57,44,52,52,46,50,51,51,49,54,52,93,44,91,45,49,49,50,46,57,57,53,48,57,49,44,52,52,46,50,51,52,49,50,54,93,44,91,45,49,49,50,46,56,49,51,55,57,50,44,52,52,46,50,51,48,50,56,49,93,44,91,45,49,49,50,46,56,49,51,56,48,53,44,52,52,46,51,55,54,52,53,53,93,44,91,45,49,49,51,46,48,48,49,57,55,56,44,52,52,46,52,52,57,56,53,55,93,44,91,45,49,49,51,46,49,48,49,54,49,56,44,52,52,46,55,50,57,52,54,53,93,44,91,45,49,49,51,46,50,52,55,49,57,50,44,52,52,46,56,50,50,57,53,52,93,44,91,45,49,49,51,46,52,53,53,48,55,49,44,52,52,46,56,54,53,52,50,52,93,44,91,45,49,49,51,46,52,53,50,48,52,52,44,52,53,46,48,53,57,49,55,52,93,44,91,45,49,49,51,46,53,55,54,55,50,53,44,52,53,46,49,51,49,50,51,55,93,44,91,45,49,49,51,46,55,55,51,55,53,51,44,52,53,46,52,48,54,51,53,57,93,44,91,45,49,49,51,46,56,48,54,52,51,49,44,52,53,46,54,48,49,54,51,93,44,91,45,49,49,51,46,57,51,56,48,57,53,44,52,53,46,54,57,53,55,52,93,44,91,45,49,49,52,46,50,54,57,56,57,50,44,52,53,46,52,56,52,53,53,50,93,44,91,45,49,49,52,46,53,54,52,57,57,57,44,52,53,46,53,53,55,56,48,51,93,44,91,45,49,49,52,46,54,54,54,50,50,51,44,52,53,46,52,55,49,51,50,53,93,44,91,45,49,49,52,46,55,57,51,50,48,55,44,52,53,46,52,51,54,51,51,52,93,44,91,45,49,49,52,46,54,48,51,57,52,44,52,53,46,50,57,53,56,50,54,93,44,91,45,49,49,52,46,54,57,52,48,48,49,44,52,53,46,49,57,55,49,56,50,93,44,91,45,49,49,52,46,55,51,50,50,55,44,52,53,46,49,53,49,49,53,53,93,44,91,45,49,49,52,46,55,51,49,57,54,44,52,52,46,56,56,48,57,52,54,93,44,91,45,49,49,52,46,56,49,50,52,48,55,44,52,52,46,56,48,56,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,55,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,51,56,50,54,44,51,55,46,53,54,48,56,48,51,93,44,91,45,56,55,46,48,57,57,56,48,51,44,51,55,46,52,49,54,48,52,50,93,44,91,45,56,54,46,56,57,57,50,54,56,44,51,55,46,50,49,50,51,49,51,93,44,91,45,56,54,46,56,50,57,51,55,49,44,51,55,46,50,56,49,51,54,53,93,44,91,45,56,54,46,54,49,50,48,57,53,44,51,55,46,51,57,53,49,50,51,93,44,91,45,56,54,46,54,54,49,56,56,44,51,55,46,53,52,49,57,51,52,93,44,91,45,56,54,46,53,57,50,56,49,44,51,55,46,53,54,52,51,54,93,44,91,45,56,54,46,54,51,56,57,51,53,44,51,55,46,54,54,49,56,55,55,93,44,91,45,56,54,46,56,50,51,52,50,57,44,51,55,46,55,51,55,55,53,52,93,44,91,45,56,54,46,56,49,55,53,49,52,44,51,55,46,54,55,51,56,49,52,93,44,91,45,56,55,46,48,51,56,50,54,44,51,55,46,53,54,48,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,83,97,114,112,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,51,53,49,44,34,98,101,100,115,34,58,50,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,50,51,53,52,56,44,52,49,46,49,57,48,56,53,93,44,91,45,57,54,46,51,50,55,51,57,57,44,52,49,46,49,56,57,57,57,57,93,44,91,45,57,54,46,51,49,57,49,57,49,44,52,49,46,48,52,52,57,57,56,93,44,91,45,57,54,46,50,48,55,54,52,56,44,52,48,46,57,57,53,54,50,56,93,44,91,45,57,54,46,48,53,54,50,53,54,44,52,49,46,48,54,53,51,53,54,93,44,91,45,57,53,46,56,55,57,52,56,55,44,52,49,46,48,53,51,50,57,57,93,44,91,45,57,53,46,56,56,48,53,50,49,44,52,49,46,49,53,57,56,55,52,93,44,91,45,57,53,46,57,50,51,53,52,56,44,52,49,46,49,57,48,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,67,111,108,113,117,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,48,54,44,34,98,101,100,115,34,58,49,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,57,57,52,51,44,51,49,46,51,51,52,57,54,54,93,44,91,45,56,52,46,48,48,51,54,50,55,44,51,49,46,48,55,55,50,57,93,44,91,45,56,52,46,48,48,51,56,55,54,44,51,49,46,48,52,49,53,56,50,93,44,91,45,56,51,46,55,51,54,49,53,56,44,51,49,46,48,51,55,54,55,57,93,44,91,45,56,51,46,53,55,52,56,53,55,44,51,49,46,48,55,56,49,51,53,93,44,91,45,56,51,46,53,48,57,56,49,44,51,49,46,50,48,54,49,56,49,93,44,91,45,56,51,46,53,49,50,54,48,55,44,51,49,46,51,50,55,52,48,53,93,44,91,45,56,51,46,54,53,52,48,57,44,51,49,46,51,51,48,54,54,49,93,44,91,45,56,51,46,57,57,57,52,51,44,51,49,46,51,51,52,57,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,87,105,108,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,56,48,57,55,55,44,52,54,46,54,51,48,55,54,53,93,44,91,45,57,54,46,55,56,52,51,56,49,44,52,54,46,54,51,48,53,48,52,93,44,91,45,57,54,46,54,54,55,52,50,50,44,52,54,46,51,55,54,49,49,55,93,44,91,45,57,54,46,53,57,57,54,54,44,52,54,46,51,51,48,52,56,49,93,44,91,45,57,54,46,53,53,52,52,51,54,44,52,54,46,48,56,52,49,56,54,93,44,91,45,57,54,46,53,55,54,53,54,52,44,52,54,46,48,50,49,56,52,56,93,44,91,45,57,54,46,50,54,54,49,52,44,52,54,46,48,50,49,54,49,93,44,91,45,57,54,46,50,54,53,51,54,54,44,52,54,46,49,48,56,54,49,93,44,91,45,57,54,46,50,56,48,57,55,55,44,52,54,46,54,51,48,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,52,54,44,34,98,101,100,115,34,58,49,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,57,57,48,52,51,44,51,56,46,50,50,48,55,53,53,93,44,91,45,57,48,46,48,51,54,51,49,54,44,51,56,46,50,50,51,50,52,54,93,44,91,45,57,48,46,48,51,53,56,54,55,44,51,56,46,49,51,53,55,51,54,93,44,91,45,57,48,46,50,48,53,50,48,53,44,51,56,46,48,56,54,57,48,55,93,44,91,45,56,57,46,57,56,56,49,48,56,44,51,55,46,57,54,49,55,52,57,93,44,91,45,56,57,46,57,51,56,54,48,56,44,51,55,46,56,55,52,51,48,52,93,44,91,45,56,57,46,56,52,52,55,56,54,44,51,55,46,57,48,53,53,55,50,93,44,91,45,56,57,46,54,55,52,51,50,49,44,51,55,46,56,48,51,49,53,50,93,44,91,45,56,57,46,53,57,53,48,55,51,44,51,55,46,57,53,53,51,52,51,93,44,91,45,56,57,46,53,57,50,55,57,55,44,51,56,46,50,49,57,50,55,49,93,44,91,45,56,57,46,55,48,51,50,53,54,44,51,56,46,50,49,57,52,48,52,93,44,91,45,56,57,46,56,57,57,48,52,51,44,51,56,46,50,50,48,55,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,75,101,110,110,101,98,101,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,53,52,53,44,34,98,101,100,115,34,58,52,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,49,50,57,51,57,44,52,52,46,52,56,55,50,49,55,93,44,91,45,55,48,46,48,55,53,55,52,55,44,52,52,46,50,48,54,49,54,56,93,44,91,45,55,48,46,48,48,53,52,55,49,44,52,52,46,49,50,52,53,49,57,93,44,91,45,54,57,46,55,53,56,50,48,56,44,52,52,46,49,51,57,51,51,52,93,44,91,45,54,57,46,54,53,54,55,52,50,44,52,52,46,49,50,50,51,57,50,93,44,91,45,54,57,46,54,53,48,49,55,49,44,52,52,46,50,55,57,54,50,53,93,44,91,45,54,57,46,53,48,54,51,56,50,44,52,52,46,51,52,50,56,55,93,44,91,45,54,57,46,51,57,51,49,50,51,44,52,52,46,54,52,48,51,55,53,93,44,91,45,54,57,46,52,55,49,55,49,50,44,52,52,46,54,57,50,56,57,57,93,44,91,45,54,57,46,54,51,51,49,49,56,44,52,52,46,55,48,48,51,55,51,93,44,91,45,54,57,46,54,48,53,55,52,54,44,52,52,46,53,55,55,50,54,52,93,44,91,45,54,57,46,57,51,48,52,53,49,44,52,52,46,54,49,48,56,53,50,93,44,91,45,55,48,46,48,52,48,50,49,53,44,52,52,46,53,56,56,55,50,50,93,44,91,45,55,48,46,49,50,57,51,57,44,52,52,46,52,56,55,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,83,109,121,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,48,53,57,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,51,55,48,57,54,44,51,54,46,57,50,57,48,51,57,93,44,91,45,56,49,46,54,57,57,53,54,49,44,51,54,46,55,56,57,51,49,54,93,44,91,45,56,49,46,54,48,53,56,54,53,44,51,54,46,54,51,56,48,55,57,93,44,91,45,56,49,46,53,50,52,56,48,56,44,51,54,46,55,48,55,53,52,93,44,91,45,56,49,46,50,54,49,57,56,55,44,51,54,46,55,54,51,48,51,51,93,44,91,45,56,49,46,51,55,57,52,48,50,44,51,54,46,57,53,50,52,52,50,93,44,91,45,56,49,46,52,51,54,55,51,44,51,55,46,48,49,48,49,51,53,93,44,91,45,56,49,46,54,56,50,55,56,54,44,51,54,46,57,51,50,57,51,52,93,44,91,45,56,49,46,55,56,48,53,52,53,44,51,54,46,57,53,56,54,50,57,93,44,91,45,56,49,46,56,51,55,48,57,54,44,51,54,46,57,50,57,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,82,111,111,115,101,118,101,108,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,49,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,52,51,55,54,55,44,51,52,46,51,48,50,54,52,56,93,44,91,45,49,48,51,46,55,52,48,48,54,54,44,51,52,46,51,48,51,48,53,54,93,44,91,45,49,48,51,46,55,51,56,49,54,54,44,51,52,46,54,48,52,54,55,93,44,91,45,49,48,51,46,57,52,56,55,55,56,44,51,52,46,54,48,53,48,53,56,93,44,91,45,49,48,51,46,57,52,54,48,49,57,44,51,52,46,48,56,50,52,54,51,93,44,91,45,49,48,51,46,56,52,49,54,57,49,44,51,52,46,48,56,49,57,48,57,93,44,91,45,49,48,51,46,56,52,49,57,51,51,44,51,51,46,56,49,57,50,93,44,91,45,49,48,51,46,55,49,54,56,56,53,44,51,51,46,56,49,57,53,53,56,93,44,91,45,49,48,51,46,55,49,56,51,51,51,44,51,51,46,54,53,54,50,49,93,44,91,45,49,48,51,46,53,48,57,55,53,57,44,51,51,46,54,53,55,50,54,50,93,44,91,45,49,48,51,46,53,49,48,49,50,57,44,51,51,46,53,55,48,49,49,55,93,44,91,45,49,48,51,46,48,53,50,54,50,49,44,51,51,46,53,55,48,53,55,53,93,44,91,45,49,48,51,46,48,52,55,52,48,57,44,51,51,46,56,50,52,54,55,52,93,44,91,45,49,48,51,46,48,52,51,55,54,55,44,51,52,46,51,48,50,54,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,83,111,109,101,114,115,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,57,52,57,44,34,98,101,100,115,34,58,49,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,57,51,54,56,50,44,52,48,46,48,52,48,52,49,51,93,44,91,45,55,57,46,52,49,55,53,53,56,44,51,57,46,56,53,51,55,55,54,93,44,91,45,55,57,46,51,57,50,52,53,57,44,51,57,46,55,50,49,53,55,56,93,44,91,45,55,56,46,57,50,56,52,49,54,44,51,57,46,55,50,50,55,56,51,93,44,91,45,55,56,46,56,48,56,51,56,55,44,51,57,46,55,50,50,57,49,49,93,44,91,45,55,56,46,55,53,55,50,52,49,44,51,57,46,56,50,51,52,56,52,93,44,91,45,55,56,46,55,54,51,50,48,54,44,52,48,46,48,53,55,48,48,53,93,44,91,45,55,56,46,54,53,56,52,48,57,44,52,48,46,50,52,50,57,51,51,93,44,91,45,55,56,46,56,57,48,56,51,54,44,52,48,46,50,52,57,53,51,57,93,44,91,45,55,57,46,48,53,53,57,56,51,44,52,48,46,50,56,53,48,56,57,93,44,91,45,55,57,46,50,57,51,54,56,50,44,52,48,46,48,52,48,52,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,52,48,54,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,50,49,57,54,52,44,51,54,46,54,52,54,57,51,54,93,44,91,45,56,50,46,49,52,53,53,55,51,44,51,54,46,53,57,52,55,50,53,93,44,91,45,56,49,46,56,50,54,55,52,50,44,51,54,46,54,49,52,50,49,53,93,44,91,45,56,49,46,54,52,54,57,44,51,54,46,54,49,49,57,49,56,93,44,91,45,56,49,46,54,48,53,56,54,53,44,51,54,46,54,51,56,48,55,57,93,44,91,45,56,49,46,54,57,57,53,54,49,44,51,54,46,55,56,57,51,49,54,93,44,91,45,56,49,46,56,51,55,48,57,54,44,51,54,46,57,50,57,48,51,57,93,44,91,45,56,49,46,57,52,57,50,55,54,44,51,54,46,56,54,52,52,55,51,93,44,91,45,56,50,46,51,51,50,48,55,56,44,51,54,46,55,48,56,57,54,57,93,44,91,45,56,50,46,50,57,52,49,51,52,44,51,54,46,53,57,53,54,57,55,93,44,91,45,56,50,46,50,52,51,51,56,50,44,51,54,46,53,57,53,54,53,49,93,44,91,45,56,50,46,49,50,49,57,54,52,44,51,54,46,54,52,54,57,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,71,117,105,108,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,51,53,56,50,44,34,98,101,100,115,34,58,49,52,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,44,91,45,56,48,46,48,52,51,50,51,56,44,51,54,46,48,49,48,55,53,56,93,44,91,45,56,48,46,48,52,54,56,54,57,44,51,53,46,57,50,48,54,57,51,93,44,91,45,55,57,46,53,52,49,55,50,56,44,51,53,46,56,57,57,56,53,49,93,44,91,45,55,57,46,53,51,50,52,49,44,51,54,46,50,52,49,52,54,51,93,44,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,54,48,53,50,44,34,98,101,100,115,34,58,49,50,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,53,49,50,53,48,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,52,55,51,52,57,50,44,52,51,46,54,51,52,49,48,51,93,44,91,45,49,49,54,46,52,55,51,53,57,55,44,52,51,46,52,53,57,50,49,56,93,44,91,45,49,49,54,46,53,49,49,56,57,55,44,52,51,46,50,57,48,53,50,93,44,91,45,49,49,54,46,50,54,54,50,48,55,44,52,51,46,49,49,50,50,54,57,93,44,91,45,49,49,53,46,57,55,56,54,53,49,44,52,51,46,49,49,51,52,51,50,93,44,91,45,49,49,53,46,57,55,53,55,49,57,44,52,51,46,53,57,49,52,51,56,93,44,91,45,49,49,54,46,50,56,50,48,49,57,44,52,51,46,56,48,55,51,54,53,93,44,91,45,49,49,54,46,53,49,50,53,48,50,44,52,51,46,56,48,55,49,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,50,48,57,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,51,49,57,56,53,44,51,53,46,56,49,50,52,48,50,93,44,91,45,57,57,46,51,55,53,56,49,55,44,51,53,46,56,49,50,49,56,56,93,44,91,45,57,57,46,51,54,52,49,52,49,44,51,53,46,53,48,56,55,57,51,93,44,91,45,57,57,46,51,54,52,50,49,55,44,51,53,46,52,54,53,51,50,56,93,44,91,45,57,56,46,54,50,51,51,51,54,44,51,53,46,52,54,52,50,50,53,93,44,91,45,57,56,46,54,50,51,50,52,52,44,51,53,46,53,53,49,53,50,50,93,44,91,45,57,56,46,54,51,49,57,56,53,44,51,53,46,56,49,50,52,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,51,52,52,44,34,98,101,100,115,34,58,49,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,49,57,56,51,54,44,52,48,46,54,56,54,56,50,51,93,44,91,45,56,51,46,52,49,56,54,55,44,52,48,46,53,48,53,50,50,57,93,44,91,45,56,51,46,50,52,56,49,56,51,44,52,48,46,53,48,55,48,51,52,93,44,91,45,56,51,46,50,52,56,53,57,53,44,52,48,46,52,52,51,57,56,57,93,44,91,45,56,51,46,48,50,48,55,57,56,44,52,48,46,52,51,51,55,57,53,93,44,91,45,56,50,46,57,53,56,52,48,49,44,52,48,46,52,57,48,54,54,52,93,44,91,45,56,50,46,57,53,55,56,49,55,44,52,48,46,54,52,53,49,52,56,93,44,91,45,56,50,46,56,53,56,51,48,50,44,52,48,46,55,48,53,48,49,57,93,44,91,45,56,51,46,49,49,49,51,54,44,52,48,46,55,48,50,57,49,53,93,44,91,45,56,51,46,52,49,57,56,51,54,44,52,48,46,54,56,54,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,53,52,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,54,54,54,57,44,51,57,46,56,52,52,57,50,55,93,44,91,45,57,48,46,57,49,53,57,54,49,44,51,57,46,55,53,55,50,93,44,91,45,57,49,46,51,54,53,49,50,53,44,51,57,46,55,53,56,55,50,51,93,44,91,45,57,49,46,51,48,54,54,57,51,44,51,57,46,54,56,52,56,54,53,93,44,91,45,57,49,46,49,55,56,48,49,50,44,51,57,46,53,57,56,49,57,54,93,44,91,45,57,49,46,48,51,56,50,55,44,51,57,46,52,52,56,52,51,53,93,44,91,45,57,48,46,57,51,54,55,50,56,44,51,57,46,51,57,57,53,49,49,93,44,91,45,57,48,46,54,49,51,55,55,53,44,51,57,46,51,57,53,52,49,54,93,44,91,45,57,48,46,53,56,49,48,53,53,44,51,57,46,53,50,49,55,50,56,93,44,91,45,57,48,46,54,52,53,57,57,44,51,57,46,55,48,51,51,54,56,93,44,91,45,57,48,46,53,57,57,49,48,53,44,51,57,46,55,57,48,48,54,93,44,91,45,57,48,46,53,55,49,52,50,52,44,51,57,46,56,51,56,57,54,49,93,44,91,45,57,48,46,57,49,54,54,54,57,44,51,57,46,56,52,52,57,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,50,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,51,34,44,34,78,65,77,69,34,58,34,87,111,111,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,52,55,55,49,56,44,52,48,46,57,50,53,55,52,57,93,44,91,45,56,57,46,52,55,50,51,51,44,52,48,46,57,50,49,50,48,54,93,44,91,45,56,57,46,53,53,52,57,57,52,44,52,48,46,55,52,55,54,51,55,93,44,91,45,56,57,46,51,51,48,48,57,50,44,52,48,46,55,52,56,50,53,55,93,44,91,45,56,57,46,50,54,57,51,57,55,44,52,48,46,53,57,52,51,49,56,93,44,91,45,56,57,46,49,51,51,55,53,50,44,52,48,46,53,57,54,55,51,52,93,44,91,45,56,56,46,57,56,52,55,50,50,44,52,48,46,54,54,52,57,53,51,93,44,91,45,56,56,46,57,50,57,51,51,49,44,52,48,46,55,53,51,51,51,55,93,44,91,45,56,56,46,57,51,49,51,57,44,52,48,46,57,50,55,55,52,93,44,91,45,56,57,46,48,52,55,55,49,56,44,52,48,46,57,50,53,55,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,53,34,44,34,78,65,77,69,34,58,34,82,105,99,104,109,111,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,52,54,51,44,34,98,101,100,115,34,58,51,49,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,50,56,50,51,56,44,51,51,46,53,52,52,57,51,52,93,44,91,45,56,50,46,50,57,52,49,55,57,44,51,51,46,51,53,52,54,51,53,93,44,91,45,56,50,46,51,53,51,52,57,56,44,51,51,46,51,49,50,51,49,56,93,44,91,45,56,50,46,50,54,55,53,56,44,51,51,46,50,54,55,51,57,55,93,44,91,45,56,50,46,49,55,52,50,52,44,51,51,46,50,57,54,55,55,49,93,44,91,45,56,50,46,48,57,50,53,57,50,44,51,51,46,50,51,48,48,56,52,93,44,91,45,56,49,46,56,53,50,48,55,54,44,51,51,46,50,52,55,50,56,56,93,44,91,45,56,49,46,57,49,56,51,51,55,44,51,51,46,51,51,50,56,52,50,93,44,91,45,56,49,46,57,51,52,49,51,54,44,51,51,46,52,54,56,51,51,55,93,44,91,45,56,50,46,48,49,50,52,55,44,51,51,46,53,51,50,49,49,54,93,44,91,45,56,50,46,48,50,56,50,51,56,44,51,51,46,53,52,52,57,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,80,105,99,107,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,55,52,54,49,57,44,51,51,46,53,51,52,48,48,56,93,44,91,45,56,56,46,51,48,52,52,51,52,44,51,51,46,50,56,56,51,50,93,44,91,45,56,56,46,51,52,48,52,51,50,44,51,50,46,57,57,49,49,57,57,93,44,91,45,56,56,46,49,55,49,56,53,50,44,51,50,46,57,57,53,56,54,93,44,91,45,56,55,46,56,51,55,53,50,49,44,51,51,46,49,53,51,54,51,55,93,44,91,45,56,55,46,56,52,48,54,56,51,44,51,51,46,53,50,52,56,51,57,93,44,91,45,56,55,46,57,52,54,53,49,57,44,51,51,46,53,50,52,48,54,53,93,44,91,45,56,56,46,50,55,52,54,49,57,44,51,51,46,53,51,52,48,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,69,108,108,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,55,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,48,53,54,51,52,44,51,54,46,53,57,50,55,53,52,93,44,91,45,49,48,48,46,48,48,51,49,54,44,51,54,46,53,57,51,50,53,93,44,91,45,49,48,48,46,48,48,51,55,54,50,44,51,54,46,52,57,57,56,52,57,93,44,91,45,49,48,48,46,48,48,48,51,57,57,44,51,54,46,48,53,53,54,55,55,93,44,91,45,49,48,48,46,48,48,48,51,57,54,44,51,53,46,56,56,49,50,51,51,93,44,91,45,57,57,46,56,57,51,51,55,50,44,51,53,46,57,56,53,50,57,53,93,44,91,45,57,57,46,55,49,55,49,48,49,44,51,53,46,56,53,57,55,54,57,93,44,91,45,57,57,46,53,53,56,52,56,54,44,51,53,46,56,54,53,57,56,56,93,44,91,45,57,57,46,52,57,53,56,49,50,44,51,53,46,57,55,56,55,51,50,93,44,91,45,57,57,46,51,56,49,48,50,50,44,51,54,46,48,49,50,57,50,53,93,44,91,45,57,57,46,51,56,50,48,55,52,44,51,54,46,49,54,52,51,48,49,93,44,91,45,57,57,46,53,57,54,48,55,57,44,51,54,46,49,54,52,48,54,49,93,44,91,45,57,57,46,54,48,53,54,51,52,44,51,54,46,53,57,50,55,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,56,52,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,57,50,55,57,55,44,51,56,46,50,49,57,50,55,49,93,44,91,45,56,57,46,53,57,53,48,55,51,44,51,55,46,57,53,53,51,52,51,93,44,91,45,56,57,46,49,55,55,53,57,55,44,51,55,46,57,53,48,51,49,49,93,44,91,45,56,57,46,49,50,57,54,51,50,44,51,56,46,49,50,52,55,54,55,93,44,91,45,56,57,46,49,52,55,53,57,55,44,51,56,46,50,49,50,56,57,53,93,44,91,45,56,57,46,53,57,50,55,57,55,44,51,56,46,50,49,57,50,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,71,114,117,110,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,52,49,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,55,44,52,50,46,53,53,54,56,49,93,44,91,45,57,51,46,48,48,50,57,48,50,44,52,50,46,52,55,48,54,51,56,93,44,91,45,57,51,46,48,48,49,54,55,52,44,52,50,46,50,48,57,50,54,55,93,44,91,45,57,50,46,55,54,55,52,54,51,44,52,50,46,50,49,48,49,52,93,44,91,45,57,50,46,55,54,56,48,57,44,52,50,46,50,57,54,54,56,93,44,91,45,57,50,46,53,51,51,53,49,44,52,50,46,50,57,55,48,48,49,93,44,91,45,57,50,46,53,53,52,51,44,52,50,46,53,53,53,56,53,52,93,44,91,45,57,51,46,48,50,55,44,52,50,46,53,53,54,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,82,111,117,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,55,52,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,52,51,57,51,56,54,44,52,48,46,50,50,51,51,55,57,93,44,91,45,49,48,55,46,48,51,55,57,50,56,44,52,48,46,50,50,53,51,55,50,93,44,91,45,49,48,55,46,48,51,55,51,54,51,44,52,48,46,48,57,49,53,51,56,93,44,91,45,49,48,55,46,48,51,51,57,54,56,44,51,57,46,57,49,56,57,49,51,93,44,91,45,49,48,54,46,54,50,54,53,54,57,44,51,57,46,57,50,52,55,56,53,93,44,91,45,49,48,54,46,54,51,50,50,53,55,44,52,48,46,51,52,49,53,53,57,93,44,91,45,49,48,54,46,54,53,50,49,49,50,44,52,48,46,52,52,53,50,51,49,93,44,91,45,49,48,54,46,55,48,54,49,52,57,44,52,48,46,54,49,54,53,57,55,93,44,91,45,49,48,54,46,54,51,54,57,50,50,44,52,48,46,55,56,57,52,56,57,93,44,91,45,49,48,54,46,56,54,57,56,57,49,44,52,48,46,57,53,54,55,50,93,44,91,45,49,48,54,46,56,53,55,55,55,51,44,52,49,46,48,48,50,54,54,51,93,44,91,45,49,48,55,46,51,49,55,55,57,52,44,52,49,46,48,48,50,57,50,93,44,91,45,49,48,55,46,51,49,52,49,53,51,44,52,48,46,54,48,48,50,56,49,93,44,91,45,49,48,55,46,52,50,56,56,49,51,44,52,48,46,53,52,50,50,48,55,93,44,91,45,49,48,55,46,52,51,57,51,56,54,44,52,48,46,50,50,51,51,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,83,111,109,101,114,115,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,48,49,55,54,44,34,98,101,100,115,34,58,57,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,50,53,54,54,54,44,52,48,46,55,49,57,53,51,50,93,44,91,45,55,52,46,55,49,51,49,53,44,52,48,46,53,56,51,57,48,51,93,44,91,45,55,52,46,55,55,53,57,55,57,44,52,48,46,53,48,51,54,48,54,93,44,91,45,55,52,46,55,52,56,49,52,55,44,52,48,46,52,50,52,49,53,54,93,44,91,45,55,52,46,54,50,48,50,52,44,52,48,46,51,55,51,55,52,57,93,44,91,45,55,52,46,52,53,57,56,54,51,44,52,48,46,52,57,49,48,52,54,93,44,91,45,55,52,46,52,54,51,50,57,49,44,52,48,46,53,57,57,49,56,55,93,44,91,45,55,52,46,52,54,49,48,51,53,44,52,48,46,54,55,51,53,48,52,93,44,91,45,55,52,46,53,53,54,48,49,56,44,52,48,46,55,53,56,50,56,56,93,44,91,45,55,52,46,55,50,53,54,54,54,44,52,48,46,55,49,57,53,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,111,108,117,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,56,57,48,48,49,51,44,51,57,46,51,56,51,56,54,52,93,44,91,45,49,50,50,46,48,48,56,56,53,55,44,51,57,46,52,49,51,53,54,55,93,44,91,45,49,50,50,46,49,51,54,48,48,54,44,51,57,46,51,56,53,52,57,52,93,44,91,45,49,50,50,46,55,51,57,48,54,50,44,51,57,46,51,56,51,50,54,54,93,44,91,45,49,50,50,46,55,55,53,48,52,51,44,51,57,46,51,49,49,55,55,56,93,44,91,45,49,50,50,46,54,57,49,51,54,49,44,51,57,46,50,52,55,52,51,49,93,44,91,45,49,50,50,46,53,49,53,51,51,49,44,51,57,46,50,48,57,50,49,53,93,44,91,45,49,50,50,46,52,56,51,56,55,57,44,51,57,46,48,54,54,57,53,53,93,44,91,45,49,50,50,46,51,52,48,49,55,50,44,51,56,46,57,50,52,50,52,54,93,44,91,45,49,50,49,46,56,51,53,52,56,56,44,51,56,46,57,50,52,52,56,49,93,44,91,45,49,50,49,46,56,49,57,49,52,50,44,51,56,46,57,56,56,53,53,49,93,44,91,45,49,50,49,46,57,52,53,53,49,52,44,51,57,46,49,55,57,56,52,51,93,44,91,45,49,50,49,46,57,48,56,50,54,57,44,51,57,46,51,48,51,56,55,56,93,44,91,45,49,50,49,46,56,57,48,48,49,51,44,51,57,46,51,56,51,56,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,50,55,55,93,44,91,45,56,57,46,48,52,49,52,48,49,44,51,55,46,53,57,54,53,55,54,93,44,91,45,56,57,46,48,52,52,55,57,57,44,51,55,46,51,50,57,55,49,55,93,44,91,45,56,56,46,57,50,56,55,53,55,44,51,55,46,51,48,50,56,52,56,93,44,91,45,56,56,46,55,49,48,55,51,56,44,51,55,46,51,51,55,48,56,49,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,48,53,57,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,72,105,110,115,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,53,54,56,54,50,44,51,56,46,49,52,55,50,54,55,93,44,91,45,49,48,55,46,53,49,54,56,51,44,51,56,46,48,54,57,55,52,49,93,44,91,45,49,48,55,46,53,54,56,56,55,53,44,51,55,46,57,54,53,48,49,53,93,44,91,45,49,48,55,46,52,56,50,50,52,53,44,51,55,46,55,54,56,51,53,51,93,44,91,45,49,48,55,46,52,56,50,49,55,57,44,51,55,46,54,51,57,53,48,49,93,44,91,45,49,48,55,46,52,56,50,49,51,49,44,51,55,46,52,50,50,54,55,51,93,44,91,45,49,48,55,46,49,50,56,54,56,44,51,55,46,52,50,50,57,52,50,93,44,91,45,49,48,55,46,49,52,53,49,51,56,44,51,55,46,54,55,53,52,57,55,93,44,91,45,49,48,55,46,49,51,56,49,57,49,44,51,55,46,57,51,56,56,52,56,93,44,91,45,49,48,55,46,48,48,48,54,48,50,44,51,55,46,57,53,54,48,52,49,93,44,91,45,49,48,55,46,48,48,49,49,49,57,44,51,56,46,49,52,55,48,55,50,93,44,91,45,49,48,55,46,53,54,56,54,50,44,51,56,46,49,52,55,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,97,115,115,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,54,49,53,44,34,98,101,100,115,34,58,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,52,55,50,49,55,55,44,52,50,46,54,54,57,51,53,50,93,44,91,45,49,49,51,46,53,53,55,49,57,51,44,52,50,46,54,53,54,55,57,57,93,44,91,45,49,49,51,46,54,53,52,49,52,57,44,52,50,46,53,51,54,49,53,53,93,44,91,45,49,49,51,46,57,51,49,55,57,57,44,52,50,46,53,51,53,50,52,51,93,44,91,45,49,49,52,46,48,48,48,51,56,56,44,52,50,46,53,50,54,51,55,51,93,44,91,45,49,49,52,46,48,54,57,49,54,50,44,52,50,46,52,49,55,49,50,52,93,44,91,45,49,49,52,46,50,56,53,52,52,56,44,52,50,46,52,49,55,51,51,51,93,44,91,45,49,49,52,46,50,56,49,55,57,57,44,52,49,46,57,57,52,52,52,49,93,44,91,45,49,49,52,46,48,52,49,52,55,55,44,52,49,46,57,57,51,56,55,51,93,44,91,45,49,49,51,46,56,49,52,56,56,52,44,52,49,46,57,56,56,54,53,52,93,44,91,45,49,49,51,46,48,48,48,48,52,49,44,52,49,46,57,57,56,50,48,52,93,44,91,45,49,49,50,46,57,57,57,57,54,53,44,52,50,46,51,50,55,52,50,55,93,44,91,45,49,49,51,46,48,48,50,55,57,50,44,52,50,46,53,56,56,48,48,51,93,44,91,45,49,49,51,46,50,51,54,57,54,56,44,52,50,46,54,50,53,50,53,52,93,44,91,45,49,49,51,46,51,55,53,48,54,50,44,52,50,46,54,56,55,56,51,50,93,44,91,45,49,49,51,46,52,55,50,49,55,55,44,52,50,46,54,54,57,51,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,73,115,97,110,116,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,57,55,52,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,49,51,54,56,51,44,52,53,46,55,51,52,51,49,56,93,44,91,45,57,51,46,53,49,48,55,48,52,44,52,53,46,53,53,56,55,55,50,93,44,91,45,57,51,46,53,49,48,48,55,44,52,53,46,52,49,52,55,57,56,93,44,91,45,57,51,46,48,49,57,53,54,51,44,52,53,46,52,49,49,55,55,93,44,91,45,57,51,46,48,50,50,50,55,52,44,52,53,46,53,53,55,49,53,52,93,44,91,45,57,51,46,49,52,49,57,55,52,44,52,53,46,53,53,56,49,48,57,93,44,91,45,57,51,46,49,52,49,55,57,51,44,52,53,46,55,51,48,54,53,55,93,44,91,45,57,51,46,53,49,51,54,56,51,44,52,53,46,55,51,52,51,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,69,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,53,57,55,50,44,34,98,101,100,115,34,58,49,49,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,56,53,49,44,52,50,46,51,50,55,49,51,50,93,44,91,45,56,48,46,53,49,57,51,53,52,44,52,49,46,56,52,57,53,54,51,93,44,91,45,55,57,46,54,49,50,48,55,50,44,52,49,46,56,53,48,48,53,54,93,44,91,45,55,57,46,54,49,48,56,51,57,44,52,49,46,57,57,57,48,48,54,93,44,91,45,55,57,46,55,54,49,51,49,51,44,52,49,46,57,57,56,56,48,56,93,44,91,45,55,57,46,55,54,50,52,49,56,44,52,50,46,53,49,54,48,55,50,93,44,91,45,56,48,46,48,56,48,50,50,50,44,52,50,46,51,57,52,49,54,50,93,44,91,45,56,48,46,53,49,57,56,53,49,44,52,50,46,51,50,55,49,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,112,105,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,55,50,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,51,48,51,51,49,44,51,50,46,48,52,57,55,50,56,93,44,91,45,57,48,46,55,49,56,50,57,55,44,51,50,46,48,52,56,51,53,50,93,44,91,45,57,48,46,55,51,54,50,56,50,44,51,49,46,55,56,54,49,51,52,93,44,91,45,57,48,46,55,51,54,56,50,52,44,51,49,46,54,57,56,52,57,49,93,44,91,45,57,48,46,50,55,57,57,53,51,44,51,49,46,54,57,57,56,54,53,93,44,91,45,57,48,46,50,52,53,49,57,49,44,51,49,46,55,49,55,53,50,52,93,44,91,45,57,48,46,49,50,50,53,54,53,44,51,49,46,55,53,50,54,56,93,44,91,45,57,48,46,49,51,50,53,53,50,44,51,49,46,56,53,54,57,50,51,93,44,91,45,57,48,46,50,51,48,51,51,49,44,51,50,46,48,52,57,55,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,54,55,34,44,34,78,65,77,69,34,58,34,86,97,110,32,90,97,110,100,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,51,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,55,54,56,48,49,44,51,50,46,56,51,56,52,56,57,93,44,91,45,57,54,46,48,55,53,56,57,57,44,51,50,46,51,53,55,53,48,53,93,44,91,45,57,53,46,52,52,57,49,54,53,44,51,50,46,51,53,53,50,51,51,93,44,91,45,57,53,46,53,57,52,51,44,51,50,46,52,55,57,56,53,56,93,44,91,45,57,53,46,53,57,52,53,52,49,44,51,50,46,54,56,55,48,50,54,93,44,91,45,57,53,46,54,51,53,48,49,55,44,51,50,46,55,50,48,51,56,93,44,91,45,57,53,46,57,51,52,52,51,51,44,51,50,46,56,51,55,50,49,55,93,44,91,45,57,54,46,48,55,54,56,48,49,44,51,50,46,56,51,56,52,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,82,111,97,110,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,53,56,51,44,34,98,101,100,115,34,58,50,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,52,55,52,55,54,44,51,55,46,51,48,57,51,53,50,93,44,91,45,56,48,46,48,55,52,49,49,57,44,51,55,46,52,50,50,52,54,57,93,44,91,45,56,48,46,50,54,50,49,56,52,44,51,55,46,51,52,49,53,50,54,93,44,91,45,56,48,46,49,57,48,55,51,56,44,51,55,46,50,50,55,55,56,51,93,44,91,45,56,48,46,49,55,56,49,50,53,44,51,55,46,49,49,51,52,93,44,91,45,56,48,46,49,50,56,54,55,52,44,51,55,46,49,50,50,57,48,49,93,44,91,45,55,57,46,57,54,49,56,57,44,51,55,46,49,51,55,51,52,57,93,44,91,45,55,57,46,56,52,55,50,49,55,44,51,55,46,50,50,53,52,48,54,93,44,91,45,55,57,46,56,52,55,52,55,54,44,51,55,46,51,48,57,51,53,50,93,93,44,91,91,45,56,48,46,48,50,50,50,50,54,44,51,55,46,51,48,56,51,51,56,93,44,91,45,55,57,46,57,48,53,52,54,44,51,55,46,51,50,49,56,51,53,93,44,91,45,55,57,46,57,52,54,56,49,55,44,51,55,46,50,49,51,48,51,55,93,44,91,45,56,48,46,48,51,51,52,54,52,44,51,55,46,50,54,50,56,57,93,44,91,45,56,48,46,48,57,51,54,55,53,44,51,55,46,50,56,50,53,48,50,93,44,91,45,56,48,46,48,50,50,50,50,54,44,51,55,46,51,48,56,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,65,117,103,117,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,55,48,49,44,34,98,101,100,115,34,58,51,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,56,50,54,54,56,44,51,56,46,48,56,54,48,53,52,93,44,91,45,55,57,46,49,53,55,51,57,44,51,55,46,56,57,49,48,48,51,93,44,91,45,55,57,46,48,48,53,49,50,57,44,51,55,46,56,56,49,54,57,93,44,91,45,55,56,46,56,51,56,56,55,52,44,51,56,46,48,52,55,51,55,93,44,91,45,55,56,46,55,52,57,51,57,54,44,51,56,46,50,48,54,54,52,56,93,44,91,45,55,57,46,50,50,52,53,56,51,44,51,56,46,52,55,55,53,56,56,93,44,91,45,55,57,46,51,49,50,50,55,54,44,51,56,46,52,49,49,56,55,54,93,44,91,45,55,57,46,52,51,51,54,55,44,51,56,46,50,50,57,52,57,51,93,44,91,45,55,57,46,53,49,50,49,53,56,44,51,56,46,49,56,48,52,49,57,93,44,91,45,55,57,46,52,56,50,54,54,56,44,51,56,46,48,56,54,48,53,52,93,93,44,91,91,45,55,56,46,57,52,56,53,48,57,44,51,56,46,48,54,56,49,48,52,93,44,91,45,55,56,46,57,48,51,55,57,53,44,51,56,46,48,57,57,56,48,50,93,44,91,45,55,56,46,56,54,50,54,55,55,44,51,56,46,48,56,57,57,55,50,93,44,91,45,55,56,46,56,57,49,55,55,50,44,51,56,46,48,51,57,52,51,56,93,44,91,45,55,56,46,57,52,56,53,48,57,44,51,56,46,48,54,56,49,48,52,93,93,44,91,91,45,55,57,46,48,55,55,53,54,49,44,51,56,46,49,50,54,52,54,93,44,91,45,55,57,46,48,57,51,55,57,49,44,51,56,46,49,56,54,50,56,55,93,44,91,45,55,57,46,48,51,51,55,56,57,44,51,56,46,49,57,57,48,49,56,93,44,91,45,55,57,46,48,50,48,51,48,56,44,51,56,46,49,52,51,55,50,53,93,44,91,45,55,57,46,48,55,55,53,54,49,44,51,56,46,49,50,54,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,54,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,48,34,44,34,78,65,77,69,34,58,34,66,114,105,115,116,111,108,32,66,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,55,46,49,57,54,50,57,50,44,53,56,46,56,52,54,50,52,57,93,44,91,45,49,53,55,46,57,57,57,57,53,57,44,53,56,46,54,52,50,49,54,56,93,44,91,45,49,53,56,44,53,56,46,54,49,54,54,54,55,93,44,91,45,49,53,54,46,51,49,51,56,56,57,44,53,56,46,54,49,54,54,54,54,93,44,91,45,49,53,54,46,51,49,51,56,56,57,44,53,56,46,56,56,53,56,51,51,93,44,91,45,49,53,55,46,48,52,53,52,57,54,44,53,56,46,56,56,53,56,51,51,93,44,91,45,49,53,55,46,49,57,54,50,57,50,44,53,56,46,56,52,54,50,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,80,105,117,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,53,49,56,52,57,53,44,51,56,46,53,49,48,52,49,51,93,44,91,45,49,49,50,46,52,52,52,48,56,49,44,51,56,46,52,48,53,54,52,54,93,44,91,45,49,49,50,46,51,51,53,53,49,44,51,56,46,51,51,50,51,52,52,93,44,91,45,49,49,50,46,52,52,52,50,49,52,44,51,56,46,49,53,48,48,48,49,93,44,91,45,49,49,49,46,56,52,51,50,49,53,44,51,56,46,49,53,49,50,56,93,44,91,45,49,49,49,46,56,52,56,55,54,49,44,51,56,46,52,50,52,57,51,51,93,44,91,45,49,49,49,46,55,54,54,51,57,51,44,51,56,46,53,48,50,50,52,51,93,44,91,45,49,49,50,46,53,49,56,52,57,53,44,51,56,46,53,49,48,52,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,53,51,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,57,49,54,48,53,44,51,56,46,53,57,51,55,48,49,93,44,91,45,56,51,46,57,51,48,51,52,56,44,51,56,46,52,57,50,50,55,56,93,44,91,45,56,51,46,56,53,57,50,56,44,51,56,46,52,53,54,51,52,56,93,44,91,45,56,51,46,54,52,49,56,53,50,44,51,56,46,53,50,53,51,56,49,93,44,91,45,56,51,46,54,52,52,57,49,51,44,51,56,46,54,51,54,51,52,51,93,44,91,45,56,51,46,55,48,53,51,49,49,44,51,56,46,54,51,57,56,53,51,93,44,91,45,56,51,46,57,48,51,57,48,49,44,51,56,46,55,54,56,49,56,50,93,44,91,45,56,51,46,57,57,49,54,48,53,44,51,56,46,53,57,51,55,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,55,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,55,49,55,55,54,44,52,53,46,55,55,53,50,48,56,93,44,91,45,57,52,46,49,52,57,52,54,55,44,52,53,46,53,53,57,48,54,54,93,44,91,45,57,51,46,55,53,57,52,51,53,44,52,53,46,53,53,57,54,52,54,93,44,91,45,57,51,46,55,54,51,57,52,56,44,52,53,46,56,50,50,49,52,51,93,44,91,45,57,52,46,51,53,51,49,49,50,44,52,53,46,56,50,49,57,54,55,93,44,91,45,57,52,46,50,55,49,55,55,54,44,52,53,46,55,55,53,50,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,68,111,110,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,57,52,52,57,51,57,44,51,52,46,55,52,56,50,56,49,93,44,91,45,49,48,48,46,53,52,48,55,48,51,44,51,52,46,55,52,55,55,50,51,93,44,91,45,49,48,48,46,53,51,56,57,55,56,44,51,53,46,49,56,51,49,52,52,93,44,91,45,49,48,49,46,48,56,54,50,56,49,44,51,53,46,49,56,50,49,52,93,44,91,45,49,48,49,46,48,57,48,55,52,57,44,51,52,46,55,52,56,50,52,54,93,44,91,45,49,48,48,46,57,52,52,57,51,57,44,51,52,46,55,52,56,50,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,52,56,50,44,34,98,101,100,115,34,58,55,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,57,50,55,51,54,44,51,48,46,51,56,57,51,50,93,44,91,45,56,53,46,57,57,57,56,57,51,44,51,48,46,50,49,51,48,57,93,44,91,45,56,53,46,52,52,54,50,56,57,44,50,57,46,57,48,49,48,51,51,93,44,91,45,56,53,46,51,56,56,54,54,57,44,50,57,46,57,50,52,51,53,57,93,44,91,45,56,53,46,51,56,57,54,55,57,44,51,48,46,50,48,48,57,55,51,93,44,91,45,56,53,46,51,56,51,57,52,56,44,51,48,46,53,54,54,56,53,54,93,44,91,45,56,53,46,52,51,52,55,56,50,44,51,48,46,53,54,55,53,54,93,44,91,45,56,53,46,52,56,55,57,54,56,44,51,48,46,52,51,54,54,53,53,93,44,91,45,56,53,46,56,53,51,53,44,51,48,46,52,52,48,54,50,51,93,44,91,45,56,53,46,57,57,50,55,51,54,44,51,48,46,51,56,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,97,117,100,101,114,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,53,56,53,44,34,98,101,100,115,34,58,51,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,57,55,56,56,56,44,51,52,46,56,57,50,50,48,50,93,44,91,45,56,55,46,57,55,51,50,50,50,44,51,52,46,56,56,50,53,53,93,44,91,45,56,55,46,56,51,53,56,51,51,44,51,52,46,55,52,49,50,51,57,93,44,91,45,56,55,46,53,50,52,51,54,51,44,51,52,46,56,51,50,51,56,52,93,44,91,45,56,55,46,52,50,54,53,49,44,51,52,46,56,48,48,48,50,50,93,44,91,45,56,55,46,50,54,48,54,55,54,44,51,52,46,55,53,56,54,50,54,93,44,91,45,56,55,46,50,49,52,57,49,52,44,51,52,46,56,49,54,48,49,49,93,44,91,45,56,55,46,50,49,48,55,53,57,44,51,52,46,57,57,57,48,50,52,93,44,91,45,56,55,46,50,50,52,48,53,50,44,51,52,46,57,57,57,51,55,55,93,44,91,45,56,55,46,54,48,54,48,51,49,44,51,53,46,48,48,51,52,50,53,93,44,91,45,56,55,46,57,56,52,57,49,54,44,51,53,46,48,48,53,57,51,51,93,44,91,45,56,56,46,50,48,48,48,54,52,44,51,52,46,57,57,53,54,51,52,93,44,91,45,56,56,46,48,57,55,56,56,56,44,51,52,46,56,57,50,50,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,70,111,117,110,116,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,57,50,49,52,56,44,52,48,46,51,54,54,54,49,50,93,44,91,45,56,55,46,50,52,52,56,57,56,44,52,48,46,51,48,57,50,53,50,93,44,91,45,56,55,46,52,48,54,54,54,55,44,52,48,46,49,50,55,53,48,56,93,44,91,45,56,55,46,52,50,48,50,50,49,44,51,57,46,57,53,50,52,53,50,93,44,91,45,56,55,46,48,57,49,48,48,54,44,51,57,46,57,53,51,48,48,57,93,44,91,45,56,55,46,48,57,50,53,54,51,44,52,48,46,50,49,52,56,48,54,93,44,91,45,56,55,46,48,57,50,49,52,56,44,52,48,46,51,54,54,54,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,51,50,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,50,53,54,56,44,51,57,46,54,53,52,49,56,51,93,44,91,45,56,57,46,48,50,53,52,53,51,44,51,57,46,51,52,54,49,49,53,93,44,91,45,56,57,46,49,51,57,56,48,55,44,51,57,46,51,52,56,56,56,56,93,44,91,45,56,57,46,49,51,57,52,54,52,44,51,57,46,50,49,55,55,55,51,93,44,91,45,56,56,46,56,48,53,51,50,53,44,51,57,46,50,49,54,50,54,51,93,44,91,45,56,56,46,52,55,48,57,48,54,44,51,57,46,50,49,53,48,50,57,93,44,91,45,56,56,46,52,55,48,56,51,44,51,57,46,51,55,52,53,49,53,93,44,91,45,56,56,46,52,55,48,53,48,53,44,51,57,46,52,52,55,48,52,49,93,44,91,45,56,56,46,53,56,52,50,55,51,44,51,57,46,52,52,55,53,56,50,93,44,91,45,56,56,46,56,49,48,53,55,53,44,51,57,46,54,53,51,50,50,50,93,44,91,45,56,57,46,48,50,53,54,56,44,51,57,46,54,53,52,49,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,50,52,44,34,98,101,100,115,34,58,49,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,51,57,52,54,52,44,51,57,46,50,49,55,55,55,51,93,44,91,45,56,57,46,50,53,48,53,49,51,44,51,57,46,50,49,55,53,49,50,93,44,91,45,56,57,46,50,53,48,51,48,57,44,51,57,46,48,50,56,49,56,53,93,44,91,45,56,57,46,50,53,52,49,56,53,44,51,56,46,55,52,50,48,49,56,93,44,91,45,56,57,46,49,51,56,51,57,51,44,51,56,46,55,51,54,51,51,49,93,44,91,45,56,57,46,49,51,56,49,51,56,44,51,56,46,56,50,52,50,48,57,93,44,91,45,56,56,46,54,57,53,49,54,53,44,51,56,46,56,50,54,50,57,57,93,44,91,45,56,56,46,54,57,51,53,51,49,44,51,56,46,57,49,52,54,49,55,93,44,91,45,56,56,46,56,48,54,55,57,53,44,51,56,46,57,49,49,53,56,53,93,44,91,45,56,56,46,56,48,53,51,50,53,44,51,57,46,50,49,54,50,54,51,93,44,91,45,56,57,46,49,51,57,52,54,52,44,51,57,46,50,49,55,55,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,57,56,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,54,50,56,49,51,44,51,57,46,57,51,48,51,56,93,44,91,45,56,50,46,51,57,54,53,57,52,44,51,57,46,56,51,51,48,53,55,93,44,91,45,56,50,46,51,55,52,53,51,49,44,51,57,46,54,53,52,57,53,57,93,44,91,45,56,50,46,51,55,57,56,57,44,51,57,46,53,57,54,55,51,56,93,44,91,45,56,50,46,49,53,57,49,54,49,44,51,57,46,53,53,54,53,55,52,93,44,91,45,56,50,46,48,52,55,53,50,56,44,51,57,46,53,53,48,56,50,53,93,44,91,45,56,50,46,48,50,52,50,49,57,44,51,57,46,55,50,52,54,56,54,93,44,91,45,56,50,46,48,55,54,54,51,57,44,51,57,46,55,55,48,57,54,93,44,91,45,56,50,46,50,51,51,57,55,52,44,51,57,46,57,49,51,50,54,93,44,91,45,56,50,46,52,54,50,56,49,51,44,51,57,46,57,51,48,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,57,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,57,48,34,44,34,78,65,77,69,34,58,34,68,97,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,53,49,50,44,34,98,101,100,115,34,58,51,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,51,52,51,49,49,55,44,51,54,46,53,52,49,53,57,93,44,91,45,55,57,46,51,57,56,48,57,52,44,51,54,46,54,52,52,48,51,55,93,44,91,45,55,57,46,52,55,48,48,53,55,44,51,54,46,53,52,48,57,55,49,93,44,91,45,55,57,46,51,52,51,49,49,55,44,51,54,46,53,52,49,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,97,110,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,49,53,50,53,49,44,51,52,46,52,51,49,55,52,56,93,44,91,45,56,51,46,54,50,48,49,49,53,44,51,52,46,50,57,53,50,55,54,93,44,91,45,56,51,46,52,56,48,51,54,49,44,51,52,46,50,54,50,48,51,56,93,44,91,45,56,51,46,52,48,50,52,50,56,44,51,52,46,49,57,55,52,57,57,93,44,91,45,56,51,46,51,53,53,50,53,49,44,51,52,46,50,50,51,55,57,52,93,44,91,45,56,51,46,51,57,56,51,57,54,44,51,52,46,52,54,48,56,56,51,93,44,91,45,56,51,46,52,53,57,55,55,44,51,52,46,52,56,49,49,52,50,93,44,91,45,56,51,46,54,49,53,50,53,49,44,51,52,46,52,51,49,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,53,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,55,54,55,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,52,56,53,56,50,44,51,49,46,56,50,55,48,55,53,93,44,91,45,56,50,46,49,51,51,48,49,51,44,51,49,46,55,55,51,52,48,52,93,44,91,45,56,50,46,49,51,50,55,57,52,44,51,49,46,52,55,49,50,54,50,93,44,91,45,56,50,46,48,52,49,49,50,57,44,51,49,46,51,55,51,55,50,49,93,44,91,45,56,49,46,55,51,49,54,57,52,44,51,49,46,51,51,48,48,52,56,93,44,91,45,56,49,46,54,50,52,50,57,44,51,49,46,52,53,50,57,56,50,93,44,91,45,56,49,46,54,54,51,50,48,54,44,51,49,46,53,51,56,54,54,55,93,44,91,45,56,49,46,56,50,51,57,50,49,44,51,49,46,54,53,49,56,48,57,93,44,91,45,56,49,46,57,54,57,48,53,50,44,51,49,46,55,56,57,51,50,52,93,44,91,45,56,50,46,48,52,56,53,56,50,44,51,49,46,56,50,55,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,50,48,53,49,44,34,98,101,100,115,34,58,52,52,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,55,52,48,50,54,44,51,53,46,55,50,53,57,55,93,44,91,45,57,55,46,54,55,49,51,54,57,44,51,53,46,51,55,55,49,53,49,93,44,91,45,57,55,46,49,52,50,49,49,52,44,51,53,46,51,55,54,56,54,93,44,91,45,57,55,46,49,52,49,52,57,44,51,53,46,52,54,51,57,55,55,93,44,91,45,57,55,46,49,52,49,48,54,54,44,51,53,46,55,50,52,52,48,49,93,44,91,45,57,55,46,54,55,52,48,50,54,44,51,53,46,55,50,53,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,52,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,51,51,53,48,51,44,51,52,46,49,55,50,55,52,56,93,44,91,45,57,54,46,54,54,57,57,54,51,44,51,52,46,49,55,50,53,50,49,93,44,91,45,57,54,46,53,56,53,51,53,53,44,51,52,46,49,49,52,52,53,57,93,44,91,45,57,54,46,52,48,55,53,49,55,44,51,52,46,49,53,55,51,49,55,93,44,91,45,57,54,46,52,48,55,48,55,52,44,51,52,46,52,49,56,51,57,93,44,91,45,57,54,46,53,49,51,55,56,55,44,51,52,46,53,48,53,51,57,54,93,44,91,45,57,54,46,56,50,55,51,52,51,44,51,52,46,53,48,54,48,54,50,93,44,91,45,57,54,46,56,56,48,55,57,44,51,52,46,53,48,54,48,53,51,93,44,91,45,57,54,46,57,51,51,51,48,53,44,51,52,46,51,51,50,53,54,49,93,44,91,45,57,54,46,57,51,51,53,48,51,44,51,52,46,49,55,50,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,50,53,54,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,51,57,54,48,57,44,51,53,46,51,51,48,57,57,51,93,44,91,45,56,51,46,49,48,56,53,54,56,44,51,53,46,48,48,49,51,53,52,93,44,91,45,56,51,46,48,48,56,53,51,49,44,51,53,46,48,50,55,51,57,52,93,44,91,45,56,50,46,57,50,48,56,56,49,44,51,53,46,50,57,50,48,51,55,93,44,91,45,56,51,46,49,56,54,51,50,50,44,51,53,46,53,49,52,51,54,56,93,44,91,45,56,51,46,51,54,51,55,54,54,44,51,53,46,52,50,54,57,50,51,93,44,91,45,56,51,46,51,51,57,54,48,57,44,51,53,46,51,51,48,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,83,117,109,109,105,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,49,49,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,53,53,51,50,54,54,44,52,48,46,54,48,57,51,49,51,93,44,91,45,49,49,49,46,51,55,53,52,56,49,44,52,48,46,54,51,51,49,49,54,93,44,91,45,49,49,49,46,49,52,55,50,49,54,44,52,48,46,53,52,57,54,48,50,93,44,91,45,49,49,48,46,57,55,54,48,56,54,44,52,48,46,53,57,50,57,53,52,93,44,91,45,49,49,48,46,57,48,49,57,55,52,44,52,48,46,54,55,56,49,54,50,93,44,91,45,49,49,48,46,55,53,48,55,51,51,44,52,48,46,55,52,55,55,48,54,93,44,91,45,49,49,48,46,54,53,54,52,56,50,44,52,48,46,55,52,48,50,55,53,93,44,91,45,49,49,48,46,51,55,56,57,54,50,44,52,48,46,55,56,55,49,56,93,44,91,45,49,49,48,46,50,54,48,57,54,55,44,52,48,46,56,51,52,56,50,52,93,44,91,45,49,49,48,46,48,48,48,55,49,49,44,52,48,46,56,49,51,54,55,56,93,44,91,45,49,49,48,46,48,48,48,55,49,55,44,52,48,46,57,57,55,52,53,93,44,91,45,49,49,48,46,48,52,56,52,56,51,44,52,48,46,57,57,55,50,57,53,93,44,91,45,49,49,49,46,48,52,54,56,49,53,44,52,48,46,57,57,55,56,55,53,93,44,91,45,49,49,49,46,48,52,54,55,54,54,44,52,49,46,50,53,49,54,50,55,93,44,91,45,49,49,49,46,50,54,52,57,55,52,44,52,49,46,49,52,52,48,52,52,93,44,91,45,49,49,49,46,53,48,55,53,49,44,52,49,46,48,54,51,50,51,52,93,44,91,45,49,49,49,46,52,56,54,49,53,57,44,52,48,46,56,55,51,49,50,52,93,44,91,45,49,49,49,46,53,50,55,52,54,53,44,52,48,46,55,56,53,55,53,50,93,44,91,45,49,49,49,46,54,52,49,48,53,50,44,52,48,46,55,57,56,57,50,53,93,44,91,45,49,49,49,46,53,53,51,50,54,54,44,52,48,46,54,48,57,51,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,52,57,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,50,56,52,48,52,44,51,55,46,56,50,57,52,51,53,93,44,91,45,57,51,46,54,49,54,48,51,51,44,51,55,46,53,55,50,54,56,57,93,44,91,45,57,51,46,54,50,49,49,53,51,44,51,55,46,52,50,55,52,50,51,93,44,91,45,57,51,46,49,56,50,52,56,57,44,51,55,46,52,49,55,50,48,52,93,44,91,45,57,51,46,49,56,55,57,49,53,44,51,55,46,56,48,50,55,51,55,93,44,91,45,57,51,46,53,55,51,50,48,50,44,51,55,46,56,50,56,48,51,53,93,44,91,45,57,51,46,54,50,56,52,48,52,44,51,55,46,56,50,57,52,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,76,97,110,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,52,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,51,48,48,53,57,55,44,52,48,46,53,50,54,49,51,54,93,44,91,45,49,49,55,46,53,52,49,55,52,57,44,52,48,46,48,48,49,48,51,52,93,44,91,45,49,49,55,46,52,54,49,51,52,44,51,57,46,56,54,55,56,49,56,93,44,91,45,49,49,55,46,52,57,53,51,52,52,44,51,57,46,55,52,56,51,54,52,93,44,91,45,49,49,55,46,52,56,53,51,51,54,44,51,57,46,53,52,53,51,50,50,93,44,91,45,49,49,55,46,53,56,55,49,52,44,51,57,46,53,49,56,53,50,49,93,44,91,45,49,49,55,46,54,52,54,48,49,49,44,51,57,46,52,50,54,54,48,50,93,44,91,45,49,49,55,46,55,54,51,48,52,54,44,51,57,46,51,53,50,56,51,93,44,91,45,49,49,55,46,55,49,57,57,53,44,51,57,46,50,51,54,56,50,49,93,44,91,45,49,49,55,46,55,55,53,52,54,56,44,51,57,46,48,57,51,52,50,53,93,44,91,45,49,49,55,46,51,51,49,56,53,55,44,51,57,46,49,54,51,52,51,93,44,91,45,49,49,54,46,54,48,48,57,52,54,44,51,57,46,49,54,49,52,54,51,93,44,91,45,49,49,54,46,53,57,48,51,57,54,44,52,48,46,48,55,50,50,55,55,93,44,91,45,49,49,54,46,53,57,54,56,49,53,44,52,48,46,57,52,54,52,54,93,44,91,45,49,49,54,46,53,56,54,55,56,54,44,52,49,46,48,48,48,51,57,56,93,44,91,45,49,49,55,46,48,49,56,52,49,57,44,52,49,46,48,48,48,50,53,52,93,44,91,45,49,49,55,46,48,49,56,54,54,52,44,52,48,46,54,52,51,48,51,53,93,44,91,45,49,49,55,46,50,52,54,55,56,56,44,52,48,46,54,52,50,52,52,53,93,44,91,45,49,49,55,46,51,48,48,53,57,55,44,52,48,46,53,50,54,49,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,87,105,110,110,101,115,104,105,101,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,55,57,56,48,50,44,52,51,46,53,48,48,54,50,49,93,44,91,45,57,50,46,48,56,48,57,55,54,44,52,51,46,50,49,50,57,52,55,93,44,91,45,57,50,46,48,56,49,49,52,54,44,52,51,46,48,56,50,55,57,52,93,44,91,45,57,49,46,54,48,53,51,48,55,44,52,51,46,48,56,49,54,53,51,93,44,91,45,57,49,46,54,49,48,56,51,53,44,52,51,46,53,48,48,54,53,55,93,44,91,45,57,49,46,55,51,48,50,49,55,44,52,51,46,53,48,48,56,48,54,93,44,91,45,57,50,46,48,55,57,56,48,50,44,52,51,46,53,48,48,54,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,114,97,99,107,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,51,48,52,49,49,44,51,56,46,56,50,55,52,51,55,93,44,91,45,56,52,46,50,48,53,51,52,54,44,51,56,46,53,56,50,48,51,57,93,44,91,45,56,52,46,49,54,50,48,51,49,44,51,56,46,53,53,52,49,50,53,93,44,91,45,56,51,46,57,57,49,54,48,53,44,51,56,46,53,57,51,55,48,49,93,44,91,45,56,51,46,57,48,51,57,48,49,44,51,56,46,55,54,56,49,56,50,93,44,91,45,56,52,46,48,53,50,55,48,57,44,51,56,46,55,55,49,50,50,54,93,44,91,45,56,52,46,50,51,48,52,49,49,44,51,56,46,56,50,55,52,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,70,108,111,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,56,51,51,49,50,44,52,54,46,48,49,52,49,49,51,93,44,91,45,56,56,46,54,55,53,56,50,49,44,52,53,46,55,50,50,57,93,44,91,45,56,56,46,52,50,53,51,48,50,44,52,53,46,55,50,50,52,50,54,93,44,91,45,56,56,46,48,53,57,50,52,54,44,52,53,46,55,49,51,48,54,51,93,44,91,45,56,56,46,48,53,56,50,53,51,44,52,53,46,55,56,48,54,50,57,93,44,91,45,56,56,46,49,49,54,56,52,53,44,52,53,46,57,50,49,54,50,55,93,44,91,45,56,56,46,53,48,55,52,56,44,52,54,46,48,49,56,53,49,54,93,44,91,45,56,56,46,54,56,51,51,49,50,44,52,54,46,48,49,52,49,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,82,111,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,48,53,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,55,56,52,49,50,44,51,56,46,57,49,52,56,54,55,93,44,91,45,56,49,46,53,48,50,54,50,56,44,51,56,46,57,49,55,57,50,50,93,44,91,45,56,49,46,53,52,54,54,51,49,44,51,56,46,54,55,50,51,56,55,93,44,91,45,56,49,46,53,50,50,49,54,54,44,51,56,46,54,49,50,55,52,54,93,44,91,45,56,49,46,52,54,53,51,55,50,44,51,56,46,53,52,57,56,57,56,93,44,91,45,56,49,46,49,57,52,49,49,51,44,51,56,46,53,50,55,54,51,52,93,44,91,45,56,49,46,48,56,51,55,49,44,51,56,46,54,49,49,57,56,50,93,44,91,45,56,49,46,50,55,56,52,49,50,44,51,56,46,57,49,52,56,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,87,97,100,101,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,52,54,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,54,51,55,49,44,52,54,46,55,49,55,54,52,93,44,91,45,57,53,46,49,53,53,53,55,44,52,54,46,51,54,56,56,56,93,44,91,45,57,52,46,55,51,49,52,52,50,44,52,54,46,51,54,56,54,48,53,93,44,91,45,57,52,46,55,55,57,49,50,49,44,52,54,46,51,57,52,50,49,53,93,44,91,45,57,52,46,55,56,55,49,50,54,44,52,54,46,56,48,51,57,52,51,93,44,91,45,57,53,46,49,54,51,48,49,44,52,54,46,56,48,52,55,50,93,44,91,45,57,53,46,49,54,51,55,49,44,52,54,46,55,49,55,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,55,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,55,48,34,44,34,78,65,77,69,34,58,34,72,111,112,101,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,48,56,44,34,98,101,100,115,34,58,49,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,51,53,54,54,54,44,51,55,46,51,49,51,48,51,57,93,44,91,45,55,55,46,51,50,53,51,50,44,51,55,46,50,54,48,57,51,50,93,44,91,45,55,55,46,50,55,51,54,49,52,44,51,55,46,50,55,56,51,48,56,93,44,91,45,55,55,46,50,56,52,48,49,57,44,51,55,46,51,49,51,48,49,50,93,44,91,45,55,55,46,51,51,53,54,54,54,44,51,55,46,51,49,51,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,87,105,110,110,101,98,97,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,49,55,52,44,34,98,101,100,115,34,58,57,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,48,49,52,50,51,44,52,50,46,53,48,48,53,53,52,93,44,91,45,56,57,46,51,57,54,49,57,50,44,52,50,46,50,48,49,57,49,54,93,44,91,45,56,57,46,49,55,51,44,52,50,46,50,48,52,50,52,49,93,44,91,45,56,57,46,49,55,50,56,48,51,44,52,50,46,49,53,48,52,49,55,93,44,91,45,56,56,46,57,51,57,55,51,50,44,52,50,46,49,53,50,51,50,93,44,91,45,56,56,46,57,52,48,51,56,56,44,52,50,46,52,57,53,48,52,53,93,44,91,45,56,57,46,51,54,53,55,57,56,44,52,50,46,53,48,48,48,55,56,93,44,91,45,56,57,46,52,48,49,52,50,51,44,52,50,46,53,48,48,53,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,71,105,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,52,48,48,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,52,57,52,55,55,56,44,51,51,46,57,57,57,56,49,55,93,44,91,45,49,49,49,46,51,55,50,51,49,55,44,51,51,46,56,50,51,57,50,52,93,44,91,45,49,49,49,46,51,56,54,56,49,50,44,51,51,46,55,53,48,48,52,52,93,44,91,45,49,49,49,46,50,54,49,55,51,44,51,51,46,54,50,50,53,55,49,93,44,91,45,49,49,49,46,49,53,51,51,53,52,44,51,51,46,54,55,55,54,48,54,93,44,91,45,49,49,49,46,48,51,57,57,55,54,44,51,51,46,52,54,54,48,49,57,93,44,91,45,49,49,48,46,57,52,54,54,56,52,44,51,51,46,50,53,48,48,53,51,93,44,91,45,49,49,48,46,55,56,51,49,51,54,44,51,50,46,57,56,52,54,54,93,44,91,45,49,49,48,46,54,51,52,52,49,50,44,51,51,46,49,52,50,51,54,54,93,44,91,45,49,49,48,46,52,52,57,48,50,49,44,51,51,46,49,57,52,53,50,54,93,44,91,45,49,49,48,46,52,53,49,55,51,49,44,51,51,46,51,54,49,53,54,52,93,44,91,45,49,49,48,46,51,52,48,57,52,57,44,51,51,46,52,50,55,48,54,54,93,44,91,45,49,49,48,46,49,54,57,52,55,55,44,51,51,46,52,54,53,55,49,50,93,44,91,45,49,49,48,46,48,48,48,54,52,54,44,51,51,46,52,54,53,57,49,54,93,44,91,45,49,49,48,46,48,48,48,54,52,57,44,51,51,46,53,55,54,57,51,93,44,91,45,49,49,48,46,48,48,48,54,54,44,51,52,46,48,48,48,48,52,54,93,44,91,45,49,49,48,46,55,53,48,54,55,50,44,51,52,46,48,48,48,48,52,56,93,44,91,45,49,49,48,46,55,53,48,54,55,56,44,51,52,46,50,54,51,51,49,52,93,44,91,45,49,49,48,46,56,52,56,48,53,57,44,51,52,46,50,54,55,50,48,53,93,44,91,45,49,49,49,46,48,56,55,53,48,52,44,51,52,46,51,57,52,57,57,54,93,44,91,45,49,49,49,46,50,52,54,54,54,49,44,51,52,46,52,53,48,56,48,56,93,44,91,45,49,49,49,46,52,57,49,56,54,54,44,51,52,46,52,50,50,55,52,51,93,44,91,45,49,49,49,46,53,53,52,54,56,49,44,51,52,46,52,55,49,55,51,51,93,44,91,45,49,49,49,46,54,53,57,54,50,50,44,51,52,46,51,56,54,51,52,50,93,44,91,45,49,49,49,46,55,49,50,49,49,56,44,51,52,46,49,53,49,50,55,49,93,44,91,45,49,49,49,46,52,55,55,56,53,51,44,51,52,46,49,53,49,49,48,56,93,44,91,45,49,49,49,46,52,57,52,55,55,56,44,51,51,46,57,57,57,56,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,87,105,99,111,109,105,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,55,50,44,34,98,101,100,115,34,58,52,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,48,49,53,54,57,44,51,56,46,53,54,48,55,51,54,93,44,91,45,55,53,46,56,50,51,55,48,54,44,51,56,46,52,56,49,48,50,50,93,44,91,45,55,53,46,57,52,56,52,53,52,44,51,56,46,50,49,53,57,54,93,44,91,45,55,53,46,55,54,57,54,55,49,44,51,56,46,50,56,52,53,56,55,93,44,91,45,55,53,46,54,49,50,55,54,52,44,51,56,46,50,55,56,54,50,54,93,44,91,45,55,53,46,51,54,52,54,52,49,44,51,56,46,50,57,48,51,53,57,93,44,91,45,55,53,46,51,48,55,48,49,49,44,51,56,46,51,53,52,55,54,93,44,91,45,55,53,46,51,52,49,50,57,49,44,51,56,46,52,53,50,48,51,52,93,44,91,45,55,53,46,54,57,51,54,55,44,51,56,46,52,54,48,48,56,93,44,91,45,55,53,46,55,48,49,53,54,57,44,51,56,46,53,54,48,55,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,54,54,52,49,57,44,51,56,46,53,48,51,57,54,53,93,44,91,45,56,51,46,50,51,50,56,57,53,44,51,56,46,51,51,56,55,56,54,93,44,91,45,56,51,46,51,52,49,51,52,55,44,51,56,46,51,49,57,53,50,49,93,44,91,45,56,51,46,50,52,52,51,48,54,44,51,56,46,49,57,50,51,56,93,44,91,45,56,51,46,49,51,53,48,48,56,44,51,56,46,50,52,50,48,51,55,93,44,91,45,56,50,46,57,50,52,56,48,53,44,51,56,46,49,55,53,49,49,52,93,44,91,45,56,50,46,55,57,52,50,48,54,44,51,56,46,50,52,51,55,55,50,93,44,91,45,56,50,46,56,49,55,52,53,52,44,51,56,46,51,55,51,57,51,53,93,44,91,45,56,50,46,57,54,55,54,51,53,44,51,56,46,51,57,52,49,51,56,93,44,91,45,56,51,46,49,54,54,52,49,57,44,51,56,46,53,48,51,57,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,73,114,101,100,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,53,50,53,44,34,98,101,100,115,34,58,53,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,50,56,56,51,51,44,51,54,46,48,52,53,54,53,50,93,44,91,45,56,49,46,48,48,53,53,52,49,44,51,53,46,57,53,56,50,56,55,93,44,91,45,56,49,46,49,48,57,53,48,55,44,51,53,46,55,55,54,53,57,52,93,44,91,45,56,48,46,57,57,52,52,52,53,44,51,53,46,55,48,50,49,49,93,44,91,45,56,48,46,57,54,48,48,50,53,44,51,53,46,53,52,55,48,50,93,44,91,45,56,48,46,57,52,55,51,52,52,44,51,53,46,52,56,56,52,55,51,93,44,91,45,56,48,46,55,56,52,49,54,55,44,51,53,46,53,48,54,48,49,55,93,44,91,45,56,48,46,55,51,55,51,55,57,44,51,53,46,53,48,53,56,48,52,93,44,91,45,56,48,46,55,55,49,53,56,50,44,51,53,46,54,55,50,49,54,51,93,44,91,45,56,48,46,55,48,55,56,50,54,44,51,53,46,56,53,50,57,50,57,93,44,91,45,56,48,46,54,57,51,49,57,55,44,51,54,46,48,53,49,50,54,93,44,91,45,56,48,46,56,56,49,53,57,49,44,51,54,46,48,53,53,55,49,56,93,44,91,45,56,49,46,48,50,56,56,51,51,44,51,54,46,48,52,53,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,97,108,105,102,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,55,55,57,44,34,98,101,100,115,34,58,49,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,57,50,50,54,52,44,51,55,46,48,54,49,52,57,56,93,44,91,45,55,57,46,50,49,56,52,53,54,44,51,54,46,53,52,49,54,53,51,93,44,91,45,55,57,46,49,51,56,51,50,44,51,54,46,53,52,49,57,55,53,93,44,91,45,55,56,46,55,57,54,50,55,52,44,51,54,46,53,52,49,55,52,49,93,44,91,45,55,56,46,55,51,52,49,50,50,44,51,54,46,53,52,49,57,51,57,93,44,91,45,55,56,46,54,52,56,53,52,49,44,51,54,46,54,57,55,57,48,57,93,44,91,45,55,56,46,54,55,49,52,54,51,44,51,54,46,56,53,55,57,53,49,93,44,91,45,55,56,46,55,55,52,55,49,53,44,51,54,46,57,56,48,57,55,54,93,44,91,45,55,56,46,57,48,52,53,56,55,44,51,55,46,48,50,50,50,56,56,93,44,91,45,55,57,46,48,57,50,50,54,52,44,51,55,46,48,54,49,52,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,101,114,116,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,53,51,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,54,52,51,55,55,44,51,54,46,53,52,54,51,50,57,93,44,91,45,55,55,46,48,57,51,50,50,52,44,51,54,46,53,49,56,50,49,54,93,44,91,45,55,55,46,50,48,56,52,54,56,44,51,54,46,50,52,54,53,55,56,93,44,91,45,55,54,46,55,48,54,53,56,52,44,51,54,46,50,52,51,55,57,54,93,44,91,45,55,54,46,54,57,54,53,55,49,44,51,54,46,50,57,54,49,51,56,93,44,91,45,55,54,46,55,55,57,52,54,55,44,51,54,46,51,54,50,52,54,57,93,44,91,45,55,54,46,57,51,51,52,55,44,51,54,46,52,48,49,56,55,93,44,91,45,55,54,46,57,49,53,57,55,55,44,51,54,46,53,52,51,56,56,52,93,44,91,45,55,55,46,49,54,52,51,55,55,44,51,54,46,53,52,54,51,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,52,50,54,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,53,57,56,57,53,44,52,51,46,48,52,55,52,50,51,93,44,91,45,55,52,46,55,54,51,51,48,51,44,52,50,46,56,54,51,50,51,55,93,44,91,45,55,52,46,54,52,56,50,57,56,44,52,50,46,56,50,57,53,53,56,93,44,91,45,55,52,46,52,53,52,57,49,49,44,52,50,46,55,55,50,57,55,57,93,44,91,45,55,52,46,50,54,51,51,49,52,44,52,50,46,55,57,54,53,51,52,93,44,91,45,55,52,46,48,56,51,56,56,51,44,52,50,46,56,57,55,51,53,52,93,44,91,45,55,52,46,48,57,50,57,56,44,52,50,46,57,53,53,56,54,56,93,44,91,45,55,52,46,48,57,55,52,54,55,44,52,50,46,57,56,50,57,51,52,93,44,91,45,55,52,46,53,52,50,51,54,55,44,52,50,46,57,56,53,53,51,93,44,91,45,55,52,46,55,53,57,56,57,53,44,52,51,46,48,52,55,52,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,80,101,110,110,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,56,52,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,48,48,56,52,51,44,52,56,46,49,55,52,49,48,56,93,44,91,45,57,54,46,52,56,50,53,53,44,52,55,46,57,54,51,53,57,53,93,44,91,45,57,53,46,55,48,57,56,52,44,52,55,46,57,54,52,51,51,93,44,91,45,57,53,46,55,48,57,54,49,57,44,52,55,46,57,51,53,56,48,53,93,44,91,45,57,53,46,53,56,50,49,53,53,44,52,55,46,57,51,51,57,54,54,93,44,91,45,57,53,46,53,56,50,56,56,55,44,52,56,46,48,50,48,53,53,55,93,44,91,45,57,53,46,53,57,51,55,56,56,44,52,56,46,49,55,50,57,49,54,93,44,91,45,57,54,46,53,48,48,56,52,51,44,52,56,46,49,55,52,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,87,104,97,116,99,111,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,54,56,49,50,44,34,98,101,100,115,34,58,50,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,56,53,49,53,50,56,44,52,57,46,48,48,48,51,48,49,93,44,91,45,49,50,49,46,55,53,57,53,55,50,44,52,56,46,57,57,55,50,57,57,93,44,91,45,49,50,51,46,51,50,50,50,52,44,52,57,46,48,48,50,48,55,50,93,44,91,45,49,50,51,46,48,48,56,52,56,53,44,52,56,46,56,51,49,50,49,56,93,44,91,45,49,50,50,46,56,49,50,51,52,44,52,56,46,55,55,49,56,53,93,44,91,45,49,50,50,46,55,49,51,55,48,52,44,52,56,46,54,52,53,49,51,93,44,91,45,49,50,49,46,50,54,49,54,51,56,44,52,56,46,54,52,48,57,49,50,93,44,91,45,49,50,48,46,55,53,49,57,48,52,44,52,56,46,54,53,55,48,48,50,93,44,91,45,49,50,48,46,55,51,53,52,50,55,44,52,56,46,55,56,54,52,56,55,93,44,91,45,49,50,48,46,55,54,56,53,49,53,44,52,56,46,57,53,52,52,57,93,44,91,45,49,50,48,46,56,53,49,53,50,56,44,52,57,46,48,48,48,51,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,71,105,108,108,105,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,54,53,51,53,48,51,44,52,53,46,55,51,55,49,56,49,93,44,91,45,49,50,48,46,52,49,49,54,57,57,44,52,53,46,53,57,54,48,54,55,93,44,91,45,49,50,48,46,51,54,52,57,53,53,44,52,53,46,52,57,55,50,53,93,44,91,45,49,50,48,46,52,57,48,51,53,57,44,52,53,46,52,54,56,57,52,57,93,44,91,45,49,50,48,46,53,51,50,48,53,57,44,52,53,46,51,55,49,50,52,57,93,44,91,45,49,50,48,46,53,48,51,55,51,51,44,52,53,46,48,56,51,52,55,55,93,44,91,45,49,50,48,46,52,57,53,49,54,44,52,53,46,48,54,56,50,55,57,93,44,91,45,49,49,57,46,55,57,48,54,57,57,44,52,53,46,48,54,55,56,50,51,93,44,91,45,49,50,48,46,48,48,54,53,53,53,44,52,53,46,50,53,55,55,48,54,93,44,91,45,49,49,57,46,57,57,57,53,48,49,44,52,53,46,56,49,50,53,49,55,93,44,91,45,49,50,48,46,50,49,48,55,55,52,44,52,53,46,55,50,53,57,49,53,93,44,91,45,49,50,48,46,53,48,53,55,52,51,44,52,53,46,54,57,57,57,52,57,93,44,91,45,49,50,48,46,54,53,51,53,48,51,44,52,53,46,55,51,55,49,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,79,99,101,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,49,57,51,57,44,34,98,101,100,115,34,58,49,53,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,54,53,52,49,52,44,52,48,46,48,57,55,54,52,50,93,44,91,45,55,52,46,50,51,48,54,51,52,44,52,48,46,49,48,57,53,54,49,93,44,91,45,55,52,46,50,54,49,52,53,53,44,52,48,46,49,54,55,48,51,51,93,44,91,45,55,52,46,52,48,54,55,49,44,52,48,46,49,55,50,52,48,50,93,44,91,45,55,52,46,53,53,51,49,48,53,44,52,48,46,48,55,57,49,51,93,44,91,45,55,52,46,51,56,57,55,48,56,44,51,57,46,55,55,51,50,56,51,93,44,91,45,55,52,46,52,49,55,51,57,51,44,51,57,46,53,53,55,50,53,53,93,44,91,45,55,52,46,51,56,48,55,57,54,44,51,57,46,52,57,56,53,51,55,93,44,91,45,55,52,46,50,51,50,48,54,50,44,51,57,46,52,55,53,49,57,56,93,44,91,45,55,52,46,48,51,56,49,53,56,44,51,57,46,55,53,48,49,50,93,44,91,45,55,51,46,57,54,53,52,49,52,44,52,48,46,48,57,55,54,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,56,56,44,34,98,101,100,115,34,58,49,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,57,51,52,54,55,44,51,54,46,52,57,56,50,55,54,93,44,91,45,57,51,46,51,48,48,56,50,44,51,54,46,49,50,49,53,53,93,44,91,45,57,50,46,57,52,52,54,54,54,44,51,54,46,49,49,53,49,50,51,93,44,91,45,57,50,46,56,57,48,54,57,53,44,51,54,46,49,49,52,49,51,50,93,44,91,45,57,50,46,56,56,52,57,53,52,44,51,54,46,52,57,48,56,57,49,93,44,91,45,57,50,46,56,53,52,48,52,57,44,51,54,46,52,57,55,56,52,50,93,44,91,45,57,51,46,50,57,51,52,54,55,44,51,54,46,52,57,56,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,109,97,110,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,53,54,49,44,34,98,101,100,115,34,58,53,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,49,57,56,49,54,44,51,52,46,56,53,53,51,52,93,44,91,45,57,56,46,56,50,54,48,57,49,44,51,52,46,56,53,53,52,50,56,93,44,91,45,57,56,46,56,50,54,48,48,56,44,51,52,46,53,57,52,52,49,51,93,44,91,45,57,56,46,56,50,54,49,52,52,44,51,52,46,53,48,55,51,55,93,44,91,45,57,56,46,54,54,49,57,56,50,44,51,52,46,53,48,55,52,54,93,44,91,45,57,56,46,54,54,49,57,53,54,44,51,52,46,52,48,53,57,52,56,93,44,91,45,57,56,46,53,48,52,57,53,56,44,51,52,46,52,52,57,52,49,52,93,44,91,45,57,56,46,50,57,53,57,50,56,44,51,52,46,52,52,57,48,52,51,93,44,91,45,57,56,46,49,52,50,49,52,56,44,51,52,46,53,48,54,57,57,52,93,44,91,45,57,56,46,48,56,57,48,57,55,44,51,52,46,54,56,49,49,54,51,93,44,91,45,57,56,46,48,57,51,49,50,55,44,51,52,46,56,53,52,57,56,56,93,44,91,45,57,56,46,54,49,57,56,49,54,44,51,52,46,56,53,53,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,51,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,56,57,49,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,49,50,48,48,49,44,51,50,46,57,53,54,57,54,50,93,44,91,45,57,57,46,57,56,56,56,50,55,44,51,50,46,57,54,48,49,50,49,93,44,91,45,49,48,48,46,49,52,52,50,50,52,44,51,50,46,57,53,57,57,55,56,93,44,91,45,49,48,48,46,49,52,54,53,52,51,44,51,50,46,53,50,50,55,57,51,93,44,91,45,57,57,46,54,50,57,53,55,57,44,51,50,46,53,49,52,54,53,55,93,44,91,45,57,57,46,54,49,50,48,50,54,44,51,50,46,53,49,52,54,53,52,93,44,91,45,57,57,46,54,49,50,48,48,49,44,51,50,46,57,53,54,57,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,71,114,105,109,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,54,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,49,54,56,51,55,44,51,48,46,56,50,50,57,57,55,93,44,91,45,57,54,46,49,56,54,52,51,57,44,51,48,46,54,48,54,49,55,53,93,44,91,45,57,54,46,49,48,55,51,54,44,51,48,46,52,49,55,53,56,50,93,44,91,45,57,54,46,49,53,52,54,51,44,51,48,46,51,51,48,50,56,56,93,44,91,45,57,54,46,48,57,51,49,54,53,44,51,48,46,50,50,53,49,56,55,93,44,91,45,57,53,46,56,48,52,51,48,54,44,51,48,46,50,52,53,53,55,93,44,91,45,57,53,46,56,51,48,50,52,44,51,48,46,54,51,48,50,56,52,93,44,91,45,57,53,46,56,54,51,48,53,57,44,51,48,46,56,54,52,49,50,53,93,44,91,45,57,54,46,49,54,56,51,55,44,51,48,46,56,50,50,57,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,71,101,110,101,115,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,57,51,54,49,44,34,98,101,100,115,34,58,49,49,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,54,48,55,51,51,44,52,51,46,50,50,51,49,51,49,93,44,91,45,56,51,46,54,57,53,54,50,49,44,52,51,46,50,50,49,52,50,50,93,44,91,45,56,51,46,57,51,50,48,55,49,44,52,51,46,50,50,48,51,55,55,93,44,91,45,56,51,46,57,50,57,48,55,57,44,52,51,46,49,51,50,55,56,50,93,44,91,45,56,51,46,57,50,50,53,49,54,44,52,50,46,55,56,48,56,50,49,93,44,91,45,56,51,46,54,56,54,52,57,51,44,52,50,46,55,56,51,50,54,51,93,44,91,45,56,51,46,54,56,57,51,56,52,44,52,50,46,56,55,49,50,54,51,93,44,91,45,56,51,46,52,53,51,51,54,52,44,52,50,46,56,56,48,52,51,50,93,44,91,45,56,51,46,52,54,48,55,51,51,44,52,51,46,50,50,51,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,115,115,117,109,112,116,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,49,52,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,48,53,57,53,49,44,51,48,46,48,54,50,52,55,56,93,44,91,45,57,49,46,50,50,52,51,53,54,44,51,48,46,48,50,53,51,51,54,93,44,91,45,57,49,46,50,53,53,50,50,57,44,50,57,46,57,55,49,52,53,55,93,44,91,45,57,49,46,49,56,50,56,49,55,44,50,57,46,56,52,54,49,55,50,93,44,91,45,57,49,46,48,57,50,55,52,56,44,50,57,46,56,48,49,53,55,52,93,44,91,45,57,49,46,49,48,48,48,49,44,50,57,46,54,57,57,52,48,50,93,44,91,45,57,49,46,48,56,50,54,48,50,44,50,57,46,54,50,54,51,54,56,93,44,91,45,57,49,46,48,48,54,55,52,51,44,50,57,46,55,49,52,55,55,49,93,44,91,45,57,48,46,56,56,53,53,56,57,44,50,57,46,57,48,53,51,53,51,93,44,91,45,57,48,46,57,53,57,56,54,57,44,50,57,46,57,55,55,57,50,52,93,44,91,45,57,48,46,57,54,51,54,57,51,44,51,48,46,48,54,54,52,53,93,44,91,45,57,49,46,49,48,53,57,53,49,44,51,48,46,48,54,50,52,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,55,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,48,57,55,52,56,44,51,52,46,49,54,50,48,56,50,93,44,91,45,56,57,46,53,48,55,51,53,51,44,51,51,46,56,54,55,52,54,57,93,44,91,45,56,57,46,53,48,55,49,51,53,44,51,51,46,55,50,49,56,49,57,93,44,91,45,56,57,46,49,57,49,55,56,49,44,51,51,46,55,51,56,54,48,50,93,44,91,45,56,57,46,49,51,55,56,55,54,44,51,51,46,56,49,50,49,52,52,93,44,91,45,56,57,46,49,51,57,49,53,56,44,51,52,46,48,55,52,49,49,54,93,44,91,45,56,57,46,50,52,53,52,56,53,44,51,52,46,49,54,49,49,56,54,93,44,91,45,56,57,46,53,48,57,55,52,56,44,51,52,46,49,54,50,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,49,52,44,34,98,101,100,115,34,58,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,52,49,55,48,55,44,51,49,46,52,51,51,55,48,51,93,44,91,45,56,56,46,56,51,52,51,51,57,44,51,48,46,57,57,55,57,56,51,93,44,91,45,56,56,46,52,50,53,52,51,50,44,51,48,46,57,57,56,51,50,51,93,44,91,45,56,56,46,52,51,50,48,48,55,44,51,49,46,49,49,52,50,57,56,93,44,91,45,56,56,46,52,52,57,52,51,56,44,51,49,46,52,51,53,56,51,55,93,44,91,45,56,56,46,56,52,49,55,48,55,44,51,49,46,52,51,51,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,52,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,56,54,52,54,51,44,52,54,46,56,52,53,56,56,49,93,44,91,45,49,48,54,46,49,50,48,54,51,44,52,54,46,56,51,49,52,51,56,93,44,91,45,49,48,54,46,49,50,48,51,54,54,44,52,54,46,52,56,51,54,52,56,93,44,91,45,49,48,54,46,49,53,53,49,52,51,44,52,54,46,52,56,51,54,51,52,93,44,91,45,49,48,54,46,49,53,51,52,51,51,44,52,54,46,49,51,55,50,54,93,44,91,45,49,48,54,46,49,57,49,54,50,57,44,52,54,46,49,51,55,49,56,51,93,44,91,45,49,48,54,46,49,57,49,55,51,52,44,52,53,46,55,56,56,54,93,44,91,45,49,48,52,46,57,56,49,57,52,44,52,53,46,55,56,54,57,56,50,93,44,91,45,49,48,52,46,57,51,57,50,56,57,44,52,53,46,55,56,54,57,54,52,93,44,91,45,49,48,52,46,57,51,57,50,48,53,44,52,54,46,49,51,54,53,55,53,93,44,91,45,49,48,52,46,56,56,53,52,57,53,44,52,54,46,49,51,54,53,57,53,93,44,91,45,49,48,52,46,57,48,53,57,56,56,44,52,54,46,52,56,50,50,53,49,93,44,91,45,49,48,52,46,55,51,50,54,55,50,44,52,54,46,52,56,50,50,48,50,93,44,91,45,49,48,52,46,55,51,51,48,53,57,44,52,54,46,54,49,50,54,57,53,93,44,91,45,49,48,52,46,57,56,52,55,49,52,44,52,54,46,53,52,48,51,56,57,93,44,91,45,49,48,53,46,50,51,57,50,51,56,44,52,54,46,53,52,49,49,56,56,93,44,91,45,49,48,53,46,52,52,57,49,57,54,44,52,54,46,53,55,48,57,54,55,93,44,91,45,49,48,53,46,53,55,54,48,54,51,44,52,54,46,54,53,56,48,48,51,93,44,91,45,49,48,53,46,54,49,56,49,53,56,44,52,54,46,56,51,50,49,52,56,93,44,91,45,49,48,53,46,56,51,50,54,55,52,44,52,54,46,56,54,48,56,50,93,44,91,45,49,48,54,46,48,56,54,53,56,53,44,52,54,46,56,54,48,50,57,93,44,91,45,49,48,54,46,48,56,54,52,54,51,44,52,54,46,56,52,53,56,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,82,111,98,101,114,116,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,56,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,50,56,50,57,49,44,52,53,46,57,51,53,51,56,51,93,44,91,45,57,55,46,50,50,55,48,56,57,44,52,53,46,53,53,56,49,53,56,93,44,91,45,57,55,46,50,50,54,50,52,52,44,52,53,46,50,57,55,54,52,55,93,44,91,45,57,54,46,57,57,50,57,52,54,44,52,53,46,51,50,54,56,56,93,44,91,45,57,54,46,52,55,48,52,55,53,44,52,53,46,51,50,54,53,52,53,93,44,91,45,57,54,46,54,56,48,52,53,52,44,52,53,46,52,49,48,52,57,57,93,44,91,45,57,54,46,56,51,53,52,53,49,44,52,53,46,53,56,54,49,50,57,93,44,91,45,57,54,46,56,51,56,54,52,56,44,52,53,46,54,52,55,53,48,57,93,44,91,45,57,54,46,54,55,50,54,54,53,44,52,53,46,55,51,50,51,51,54,93,44,91,45,57,54,46,53,56,51,48,56,53,44,52,53,46,56,50,48,48,50,52,93,44,91,45,57,54,46,53,54,51,54,55,50,44,52,53,46,57,51,53,50,52,53,93,44,91,45,57,55,46,50,50,56,50,57,49,44,52,53,46,57,51,53,51,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,79,103,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,51,50,56,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,56,56,52,56,54,44,52,50,46,49,57,57,49,49,50,93,44,91,45,56,57,46,54,56,53,51,54,54,44,52,49,46,57,51,48,51,52,93,44,91,45,56,57,46,54,50,57,51,51,44,52,49,46,57,48,49,54,49,55,93,44,91,45,56,57,46,51,54,48,53,55,56,44,52,49,46,56,56,56,48,49,56,93,44,91,45,56,56,46,57,52,49,50,55,57,44,52,49,46,56,57,49,55,53,50,93,44,91,45,56,56,46,57,51,57,55,51,50,44,52,50,46,49,53,50,51,50,93,44,91,45,56,57,46,49,55,50,56,48,51,44,52,50,46,49,53,48,52,49,55,93,44,91,45,56,57,46,49,55,51,44,52,50,46,50,48,52,50,52,49,93,44,91,45,56,57,46,51,57,54,49,57,50,44,52,50,46,50,48,49,57,49,54,93,44,91,45,56,57,46,54,56,56,52,56,54,44,52,50,46,49,57,57,49,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,56,48,53,54,54,44,52,54,46,50,56,50,51,57,51,93,44,91,45,57,55,46,50,53,57,54,51,50,44,52,53,46,57,57,55,49,56,53,93,44,91,45,57,55,46,50,50,56,50,57,49,44,52,53,46,57,51,53,51,56,51,93,44,91,45,57,54,46,53,54,51,54,55,50,44,52,53,46,57,51,53,50,52,53,93,44,91,45,57,54,46,53,55,54,53,54,52,44,52,54,46,48,50,49,56,52,56,93,44,91,45,57,54,46,53,53,52,52,51,54,44,52,54,46,48,56,52,49,56,54,93,44,91,45,57,54,46,53,57,57,54,54,44,52,54,46,51,51,48,52,56,49,93,44,91,45,57,54,46,54,54,55,52,50,50,44,52,54,46,51,55,54,49,49,55,93,44,91,45,57,54,46,55,56,52,51,56,49,44,52,54,46,54,51,48,53,48,52,93,44,91,45,57,54,46,55,57,56,49,50,56,44,52,54,46,54,51,48,51,50,54,93,44,91,45,57,55,46,50,55,57,57,52,56,44,52,54,46,54,50,57,51,52,56,93,44,91,45,57,55,46,50,56,48,53,54,54,44,52,54,46,50,56,50,51,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,114,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,50,53,50,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,53,52,56,56,56,44,52,53,46,54,51,57,55,52,50,93,44,91,45,57,50,46,49,53,54,52,54,53,44,52,53,46,50,48,57,53,53,52,93,44,91,45,57,49,46,54,54,53,54,52,55,44,52,53,46,50,48,55,57,57,49,93,44,91,45,57,49,46,53,52,49,51,50,50,44,52,53,46,50,57,50,50,50,93,44,91,45,57,49,46,53,52,48,50,57,52,44,52,53,46,54,51,55,54,48,53,93,44,91,45,57,50,46,48,51,49,52,49,55,44,52,53,46,54,51,57,57,50,56,93,44,91,45,57,50,46,49,53,52,56,56,56,44,52,53,46,54,51,57,55,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,73,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,54,57,54,50,50,44,52,54,46,55,57,56,49,56,50,93,44,91,45,57,48,46,52,52,56,57,53,54,44,52,54,46,55,57,55,52,48,49,93,44,91,45,57,48,46,53,52,57,56,56,44,52,54,46,53,56,51,53,53,50,93,44,91,45,57,48,46,53,53,50,50,50,55,44,52,54,46,50,52,48,56,53,49,93,44,91,45,57,48,46,52,50,53,57,55,56,44,52,54,46,50,52,48,52,53,93,44,91,45,57,48,46,51,48,51,48,55,50,44,52,54,46,49,53,52,56,52,57,93,44,91,45,57,48,46,51,48,50,48,54,51,44,52,53,46,57,56,49,51,52,57,93,44,91,45,57,48,46,48,52,51,57,53,56,44,52,53,46,57,56,49,57,52,56,93,44,91,45,56,57,46,57,50,56,56,51,55,44,52,53,46,57,56,49,57,54,55,93,44,91,45,56,57,46,57,50,57,49,53,56,44,52,54,46,50,57,57,55,52,56,93,44,91,45,57,48,46,49,50,48,53,55,50,44,52,54,46,51,51,55,48,51,57,93,44,91,45,57,48,46,50,49,54,49,55,50,44,52,54,46,53,48,49,50,55,50,93,44,91,45,57,48,46,52,49,56,51,57,50,44,52,54,46,53,54,54,48,57,57,93,44,91,45,57,48,46,50,54,57,54,50,50,44,52,54,46,55,57,56,49,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,87,97,98,97,115,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,48,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,52,50,48,49,44,52,52,46,52,53,52,50,53,52,93,44,91,45,57,50,46,52,51,48,50,55,55,44,52,52,46,52,53,53,51,50,49,93,44,91,45,57,50,46,53,53,48,55,51,51,44,52,52,46,51,54,56,53,50,49,93,44,91,45,57,50,46,53,53,48,56,55,49,44,52,52,46,49,57,52,57,49,54,93,44,91,45,57,50,46,51,49,56,57,56,54,44,52,52,46,49,57,52,48,53,55,93,44,91,45,57,50,46,51,49,56,57,55,49,44,52,52,46,49,48,55,55,51,52,93,44,91,45,57,50,46,48,55,57,52,57,49,44,52,52,46,49,48,54,57,56,56,93,44,91,45,57,50,46,48,55,56,53,51,50,44,52,52,46,49,57,50,57,55,57,93,44,91,45,57,49,46,56,53,56,50,52,53,44,52,52,46,49,57,51,48,48,52,93,44,91,45,57,49,46,57,50,56,50,50,52,44,52,52,46,51,51,53,52,55,51,93,44,91,45,57,50,46,48,56,51,53,55,50,44,52,52,46,52,48,55,51,51,54,93,44,91,45,57,50,46,50,52,50,48,49,44,52,52,46,52,53,52,50,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,68,101,108,32,78,111,114,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,50,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,51,50,56,56,51,53,44,52,49,46,57,57,56,51,51,52,93,44,91,45,49,50,52,46,50,56,53,48,51,49,44,52,49,46,56,53,57,52,56,55,93,44,91,45,49,50,52,46,52,51,56,57,48,57,44,52,49,46,56,50,52,53,48,52,93,44,91,45,49,50,52,46,50,49,49,55,48,54,44,52,49,46,54,56,49,49,57,51,93,44,91,45,49,50,52,46,49,51,54,53,54,49,44,52,49,46,52,54,52,52,53,50,93,44,91,45,49,50,51,46,55,55,48,53,53,49,44,52,49,46,52,54,52,49,57,51,93,44,91,45,49,50,51,46,54,54,49,51,54,51,44,52,49,46,51,56,50,48,57,93,44,91,45,49,50,51,46,54,49,50,51,57,53,44,52,49,46,52,52,56,57,53,52,93,44,91,45,49,50,51,46,55,49,57,49,55,52,44,52,49,46,53,57,53,54,49,51,93,44,91,45,49,50,51,46,54,54,55,49,49,52,44,52,49,46,54,57,49,54,56,57,93,44,91,45,49,50,51,46,55,48,51,54,56,49,44,52,49,46,56,50,57,52,56,55,93,44,91,45,49,50,51,46,53,54,53,52,52,50,44,52,49,46,57,48,51,49,52,49,93,44,91,45,49,50,51,46,53,49,55,57,49,49,44,52,50,46,48,48,48,55,53,54,93,44,91,45,49,50,51,46,56,50,50,48,52,49,44,52,49,46,57,57,53,53,56,93,44,91,45,49,50,52,46,51,50,56,56,51,53,44,52,49,46,57,57,56,51,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,80,117,115,104,109,97,116,97,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,49,57,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,54,55,49,56,49,44,51,52,46,53,57,51,55,51,50,93,44,91,45,57,53,46,54,55,49,55,53,44,51,52,46,53,48,54,55,57,52,93,44,91,45,57,53,46,55,55,57,49,51,52,44,51,52,46,53,48,54,54,52,52,93,44,91,45,57,53,46,55,55,57,51,55,54,44,51,52,46,49,53,54,54,57,57,93,44,91,45,57,53,46,49,53,54,53,50,49,44,51,52,46,49,53,54,57,54,53,93,44,91,45,57,53,46,49,53,49,51,50,51,44,51,52,46,50,52,51,55,51,55,93,44,91,45,57,53,46,48,52,54,53,56,53,44,51,52,46,50,52,51,55,55,54,93,44,91,45,57,53,46,48,52,54,55,52,54,44,51,52,46,53,48,55,50,55,54,93,44,91,45,57,52,46,57,51,55,54,48,52,44,51,52,46,53,48,55,50,57,54,93,44,91,45,57,52,46,57,51,55,53,53,53,44,51,52,46,54,56,48,55,57,50,93,44,91,45,57,53,46,48,53,57,54,49,54,44,51,52,46,54,56,48,55,51,54,93,44,91,45,57,53,46,53,49,52,52,55,53,44,51,52,46,54,56,48,55,49,56,93,44,91,45,57,53,46,53,49,52,53,49,49,44,51,52,46,53,57,52,49,53,51,93,44,91,45,57,53,46,54,55,49,56,49,44,51,52,46,53,57,51,55,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,104,101,108,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,55,53,55,44,34,98,101,100,115,34,58,50,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,48,48,49,54,53,56,44,52,56,46,50,57,54,48,48,57,93,44,91,45,49,50,48,46,57,48,55,52,50,53,44,52,56,46,49,54,51,49,56,52,93,44,91,45,49,50,49,46,49,49,56,49,56,51,44,52,55,46,57,57,55,49,48,51,93,44,91,45,49,50,49,46,49,56,48,55,55,54,44,52,55,46,56,57,56,55,54,57,93,44,91,45,49,50,49,46,49,49,57,49,55,57,44,52,55,46,55,55,57,57,51,51,93,44,91,45,49,50,49,46,49,49,51,53,54,57,44,52,55,46,53,57,55,50,56,56,93,44,91,45,49,50,48,46,57,50,52,50,48,55,44,52,55,46,52,51,51,53,56,50,93,44,91,45,49,50,48,46,51,56,57,49,57,55,44,52,55,46,50,54,48,57,51,53,93,44,91,45,49,50,48,46,48,57,52,52,54,44,52,55,46,50,54,50,49,53,57,93,44,91,45,49,50,48,46,49,50,57,53,55,51,44,52,55,46,51,54,54,50,53,49,93,44,91,45,49,50,48,46,50,56,54,53,51,44,52,55,46,51,57,51,49,49,49,93,44,91,45,49,50,48,46,51,49,55,57,56,52,44,52,55,46,52,53,54,57,52,56,93,44,91,45,49,50,48,46,49,57,57,48,52,56,44,52,55,46,54,56,50,50,55,54,93,44,91,45,49,50,48,46,50,48,54,57,48,56,44,52,55,46,55,53,48,54,51,56,93,44,91,45,49,49,57,46,57,57,50,54,55,57,44,52,55,46,55,56,51,49,53,93,44,91,45,49,49,57,46,56,55,48,53,57,53,44,52,55,46,57,54,48,52,53,53,93,44,91,45,49,50,48,46,48,52,56,54,52,54,44,52,55,46,57,54,48,54,50,56,93,44,91,45,49,50,48,46,49,52,51,57,51,49,44,52,56,46,48,54,53,52,52,52,93,44,91,45,49,50,48,46,51,54,49,50,56,56,44,52,56,46,49,53,55,53,54,57,93,44,91,45,49,50,48,46,51,52,54,50,56,52,44,52,56,46,49,57,57,57,56,54,93,44,91,45,49,50,48,46,54,52,57,57,51,51,44,52,56,46,51,57,56,49,51,57,93,44,91,45,49,50,48,46,55,48,50,48,54,57,44,52,56,46,53,51,49,53,56,57,93,44,91,45,49,50,48,46,56,53,55,52,50,55,44,52,56,46,53,52,55,54,55,54,93,44,91,45,49,50,49,46,48,54,50,52,53,44,52,56,46,52,54,48,51,54,55,93,44,91,45,49,50,49,46,48,48,49,54,53,56,44,52,56,46,50,57,54,48,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,80,114,101,115,113,117,101,32,73,115,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,48,49,48,54,50,44,52,53,46,55,53,50,50,55,53,93,44,91,45,56,52,46,50,53,50,48,50,44,52,53,46,54,50,53,57,57,56,93,44,91,45,56,52,46,50,52,54,54,51,52,44,52,53,46,49,57,56,55,50,55,93,44,91,45,56,51,46,56,56,49,50,50,51,44,52,53,46,50,48,50,48,55,49,93,44,91,45,56,50,46,52,57,48,53,57,54,44,52,53,46,50,48,56,52,56,52,93,44,91,45,56,50,46,53,50,48,54,52,44,52,53,46,51,51,53,57,48,50,93,44,91,45,56,51,46,52,56,51,57,55,52,44,52,53,46,55,55,49,57,51,55,93,44,91,45,56,51,46,54,51,54,56,54,55,44,52,53,46,55,55,51,57,52,52,93,44,91,45,56,52,46,49,50,51,48,57,56,44,52,53,46,55,55,55,54,54,56,93,44,91,45,56,52,46,50,48,49,48,54,50,44,52,53,46,55,53,50,50,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,101,118,101,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,54,55,51,51,44,34,98,101,100,115,34,58,54,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,55,49,52,49,53,44,51,53,46,51,51,55,52,54,53,93,44,91,45,57,55,46,53,53,54,57,56,55,44,51,53,46,50,56,56,52,52,93,44,91,45,57,55,46,53,53,52,55,57,44,51,53,46,50,50,52,51,50,57,93,44,91,45,57,55,46,51,53,52,49,57,50,44,51,53,46,48,55,54,54,53,54,93,44,91,45,57,55,46,51,52,49,53,48,57,44,51,52,46,57,54,52,48,48,49,93,44,91,45,57,55,46,49,52,50,51,52,57,44,51,52,46,57,50,56,49,55,54,93,44,91,45,57,55,46,49,52,50,49,49,52,44,51,53,46,51,55,54,56,54,93,44,91,45,57,55,46,54,55,49,51,54,57,44,51,53,46,51,55,55,49,53,49,93,44,91,45,57,55,46,54,55,49,52,49,53,44,51,53,46,51,51,55,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,50,49,49,44,34,98,101,100,115,34,58,49,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,49,52,54,52,52,54,44,52,49,46,56,53,48,56,57,57,93,44,91,45,55,53,46,48,53,51,50,50,55,44,52,49,46,55,53,49,54,54,50,93,44,91,45,55,53,46,48,54,57,53,53,57,44,52,49,46,54,48,49,56,55,52,93,44,91,45,55,52,46,57,56,49,54,53,50,44,52,49,46,52,55,57,57,52,53,93,44,91,45,55,52,46,55,53,52,54,57,44,52,49,46,52,50,52,57,55,51,93,44,91,45,55,52,46,55,53,50,51,57,57,44,52,49,46,52,57,51,55,52,51,93,44,91,45,55,52,46,52,56,52,51,54,55,44,52,49,46,53,48,52,50,51,53,93,44,91,45,55,52,46,51,54,55,48,53,53,44,52,49,46,53,57,48,57,55,55,93,44,91,45,55,52,46,51,57,53,48,55,49,44,52,49,46,54,52,52,56,55,54,93,44,91,45,55,52,46,53,55,53,48,56,54,44,52,49,46,55,52,53,50,53,56,93,44,91,45,55,52,46,52,53,51,54,56,53,44,52,49,46,56,55,53,53,57,53,93,44,91,45,55,52,46,55,56,48,54,57,51,44,52,50,46,48,49,54,51,55,53,93,44,91,45,55,53,46,49,52,54,52,52,54,44,52,49,46,56,53,48,56,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,53,56,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,54,49,51,48,53,44,51,53,46,51,57,51,49,57,56,93,44,91,45,56,50,46,51,52,54,49,52,49,44,51,53,46,50,56,53,57,57,50,93,44,91,45,56,50,46,51,53,51,55,53,52,44,51,53,46,49,57,48,57,54,55,93,44,91,45,56,50,46,50,49,53,57,52,55,44,51,53,46,49,57,54,50,50,50,93,44,91,45,56,49,46,57,54,57,51,52,56,44,51,53,46,49,56,55,50,49,55,93,44,91,45,56,49,46,57,54,56,55,56,56,44,51,53,46,50,53,55,55,54,52,93,44,91,45,56,50,46,49,53,49,53,51,53,44,51,53,46,52,48,55,53,56,49,93,44,91,45,56,50,46,50,54,49,51,48,53,44,51,53,46,51,57,51,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,83,99,111,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,50,54,50,44,34,98,101,100,115,34,58,49,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,44,91,45,55,57,46,53,55,51,52,50,51,44,51,52,46,57,57,50,50,49,93,44,91,45,55,57,46,53,54,49,56,53,54,44,51,52,46,57,49,48,51,53,93,44,91,45,55,57,46,54,57,50,57,52,52,44,51,52,46,56,48,53,49,53,53,93,44,91,45,55,57,46,52,54,49,53,48,54,44,51,52,46,54,51,48,51,55,57,93,44,91,45,55,57,46,51,51,48,57,52,57,44,51,52,46,55,55,51,56,50,49,93,44,91,45,55,57,46,51,52,55,56,54,56,44,51,52,46,56,51,56,53,53,51,93,44,91,45,55,57,46,51,53,51,51,49,50,44,51,52,46,57,52,50,53,54,49,93,44,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,97,114,110,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,48,51,54,49,44,34,98,101,100,115,34,58,50,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,54,57,54,52,44,51,53,46,53,50,49,54,54,57,93,44,91,45,55,57,46,49,56,51,53,53,54,44,51,53,46,51,48,55,49,54,49,93,44,91,45,55,57,46,48,57,53,56,48,56,44,51,53,46,49,57,50,48,54,56,93,44,91,45,55,56,46,55,57,51,52,52,55,44,51,53,46,50,54,53,57,55,54,93,44,91,45,55,56,46,54,49,55,49,50,55,44,51,53,46,50,52,53,53,55,56,93,44,91,45,55,56,46,53,51,56,51,52,57,44,51,53,46,51,49,54,52,49,93,44,91,45,55,56,46,55,48,56,57,48,50,44,51,53,46,53,49,57,52,53,56,93,44,91,45,55,56,46,57,49,52,55,51,52,44,51,53,46,53,56,51,54,55,50,93,44,91,45,55,56,46,57,54,57,54,52,44,51,53,46,53,50,49,54,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,49,50,53,44,34,98,101,100,115,34,58,49,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,54,57,54,52,44,51,53,46,53,50,49,54,54,57,93,44,91,45,55,57,46,49,49,55,48,57,54,44,51,53,46,54,50,56,49,54,52,93,44,91,45,55,57,46,49,57,57,49,51,54,44,51,53,46,53,53,57,56,52,52,93,44,91,45,55,57,46,51,53,48,48,55,51,44,51,53,46,53,49,56,48,48,50,93,44,91,45,55,57,46,50,54,53,55,49,51,44,51,53,46,51,52,53,50,55,57,93,44,91,45,55,57,46,49,56,51,53,53,54,44,51,53,46,51,48,55,49,54,49,93,44,91,45,55,56,46,57,54,57,54,52,44,51,53,46,53,50,49,54,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,84,105,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,50,49,49,55,44,52,48,46,52,48,54,56,56,57,93,44,91,45,56,54,46,50,52,50,56,49,50,44,52,48,46,52,48,50,57,49,52,93,44,91,45,56,54,46,50,52,50,57,57,50,44,52,48,46,51,55,51,54,54,49,93,44,91,45,56,54,46,50,52,50,55,52,51,44,52,48,46,50,49,53,56,51,52,93,44,91,45,56,53,46,56,54,49,57,48,51,44,52,48,46,50,49,56,57,51,54,93,44,91,45,56,53,46,56,54,50,50,57,54,44,52,48,46,51,55,56,51,54,55,93,44,91,45,56,53,46,56,54,50,49,49,55,44,52,48,46,52,48,54,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,53,55,52,44,51,57,46,53,54,55,48,49,56,93,44,91,45,57,55,46,51,54,57,56,51,57,44,51,57,46,51,48,54,48,49,49,93,44,91,45,57,55,46,51,55,49,49,53,52,44,51,57,46,49,51,49,57,54,49,93,44,91,45,57,54,46,57,54,51,49,55,55,44,51,57,46,49,51,50,51,93,44,91,45,57,54,46,57,54,49,54,57,51,44,51,57,46,50,50,48,48,55,54,93,44,91,45,57,54,46,57,53,56,55,49,57,44,51,57,46,53,54,54,52,48,49,93,44,91,45,57,55,46,51,54,56,53,55,52,44,51,57,46,53,54,55,48,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,87,97,103,111,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,56,53,48,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,54,54,49,49,52,44,51,53,46,56,53,54,50,56,52,93,44,91,45,57,53,46,54,51,57,55,55,57,44,51,53,46,55,57,49,56,48,55,93,44,91,45,57,53,46,50,54,53,54,55,57,44,51,53,46,56,49,51,50,54,54,93,44,91,45,57,53,46,50,56,50,57,57,50,44,51,53,46,57,48,55,55,48,52,93,44,91,45,57,53,46,50,48,55,57,52,54,44,51,54,46,48,55,52,55,48,56,93,44,91,45,57,53,46,52,51,57,57,55,44,51,54,46,48,55,53,50,93,44,91,45,57,53,46,53,53,50,53,56,55,44,51,54,46,48,57,49,52,56,54,93,44,91,45,57,53,46,54,49,56,53,50,44,51,54,46,49,54,50,53,49,50,93,44,91,45,57,53,46,55,54,49,54,53,44,51,54,46,49,54,50,55,53,93,44,91,45,57,53,46,55,54,49,55,48,50,44,51,53,46,57,48,49,49,52,55,93,44,91,45,57,53,46,56,49,57,52,53,57,44,51,53,46,56,53,54,50,53,53,93,44,91,45,57,53,46,55,54,54,49,49,52,44,51,53,46,56,53,54,50,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,50,51,52,55,55,49,44,52,55,46,55,57,48,53,48,50,93,44,91,45,49,48,53,46,50,51,53,48,49,54,44,52,55,46,55,48,51,53,56,49,93,44,91,45,49,48,52,46,57,55,56,48,57,44,52,55,46,55,48,51,50,57,51,93,44,91,45,49,48,52,46,57,55,56,53,53,51,44,52,55,46,54,49,54,50,55,50,93,44,91,45,49,48,52,46,53,57,51,54,54,52,44,52,55,46,54,49,54,50,57,52,93,44,91,45,49,48,52,46,53,49,51,48,52,57,44,52,55,46,53,50,57,52,52,50,93,44,91,45,49,48,52,46,53,49,51,50,57,50,44,52,55,46,51,53,52,55,49,57,93,44,91,45,49,48,52,46,52,50,48,51,52,55,44,52,55,46,51,53,52,52,51,53,93,44,91,45,49,48,52,46,49,51,49,56,54,51,44,52,55,46,51,53,51,57,48,49,93,44,91,45,49,48,52,46,48,52,52,56,55,49,44,52,55,46,51,57,55,48,54,51,93,44,91,45,49,48,52,46,48,52,52,48,52,52,44,52,55,46,57,57,54,48,56,50,93,44,91,45,49,48,52,46,53,49,49,54,57,54,44,52,56,46,49,48,57,56,57,52,93,44,91,45,49,48,52,46,56,50,50,53,56,49,44,52,56,46,49,49,56,57,52,53,93,44,91,45,49,48,53,46,48,51,55,48,57,52,44,52,56,46,48,54,51,52,49,54,93,44,91,45,49,48,53,46,49,57,52,55,56,51,44,52,56,46,48,54,54,54,49,55,93,44,91,45,49,48,53,46,49,57,53,49,50,50,44,52,55,46,56,54,56,48,56,49,93,44,91,45,49,48,53,46,50,51,52,55,55,49,44,52,55,46,55,57,48,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,115,104,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,51,55,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,53,55,51,55,44,51,51,46,51,56,56,57,55,52,93,44,91,45,57,49,46,57,57,48,49,54,55,44,51,51,46,51,57,56,50,49,52,93,44,91,45,57,49,46,57,55,55,50,56,52,44,51,51,46,51,48,50,48,50,54,93,44,91,45,57,50,46,49,51,55,53,50,55,44,51,51,46,49,54,50,57,53,54,93,44,91,45,57,50,46,48,54,57,49,48,53,44,51,51,46,48,48,56,49,54,51,93,44,91,45,57,49,46,52,54,48,52,44,51,51,46,48,48,53,57,49,53,93,44,91,45,57,49,46,52,53,55,51,55,44,51,51,46,51,56,56,57,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,115,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,56,55,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,49,55,57,48,53,44,51,52,46,49,49,57,49,48,53,93,44,91,45,57,49,46,49,57,52,50,55,56,44,51,52,46,48,55,48,57,51,56,93,44,91,45,57,49,46,50,49,52,51,51,56,44,51,51,46,57,55,50,52,48,51,93,44,91,45,57,49,46,52,50,49,55,49,53,44,51,52,46,48,49,52,52,55,50,93,44,91,45,57,49,46,53,52,56,54,54,56,44,51,51,46,57,55,54,55,57,57,93,44,91,45,57,49,46,53,53,55,54,52,56,44,51,51,46,55,56,51,51,56,52,93,44,91,45,57,49,46,52,53,48,51,50,53,44,51,51,46,55,56,48,52,49,53,93,44,91,45,57,49,46,52,53,51,52,51,56,44,51,51,46,53,54,51,55,48,51,93,44,91,45,57,49,46,50,51,48,56,57,55,44,51,51,46,53,54,49,52,93,44,91,45,57,49,46,49,51,48,52,52,53,44,51,51,46,54,48,54,48,51,52,93,44,91,45,57,49,46,48,54,56,50,57,44,51,51,46,55,49,54,52,55,55,93,44,91,45,57,49,46,48,55,51,48,49,49,44,51,51,46,56,53,55,52,52,57,93,44,91,45,57,49,46,48,49,49,53,49,44,51,51,46,57,50,52,55,51,51,93,44,91,45,57,48,46,57,53,53,49,55,44,51,52,46,49,49,56,56,51,51,93,44,91,45,57,49,46,49,49,55,57,48,53,44,51,52,46,49,49,57,49,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,86,105,101,113,117,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,55,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,54,49,56,48,53,44,49,56,46,49,53,52,49,56,93,44,91,45,54,53,46,54,50,55,52,57,49,44,49,56,46,48,56,51,52,49,51,93,44,91,45,54,53,46,53,52,57,54,57,57,44,49,56,46,48,50,56,52,52,57,93,44,91,45,54,53,46,50,52,57,54,44,49,56,46,48,56,52,51,48,53,93,44,91,45,54,53,46,50,55,56,51,49,54,44,49,56,46,49,57,55,57,49,56,93,44,91,45,54,53,46,52,54,52,52,50,53,44,49,56,46,50,50,50,50,49,52,93,44,91,45,54,53,46,53,53,52,54,52,51,44,49,56,46,49,56,52,55,54,55,93,44,91,45,54,53,46,54,49,56,48,53,44,49,56,46,49,53,52,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,49,50,44,34,98,101,100,115,34,58,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,55,48,55,51,56,44,51,53,46,56,49,53,55,48,53,93,44,91,45,56,56,46,48,51,52,55,56,56,44,51,53,46,55,49,55,50,54,49,93,44,91,45,56,56,46,48,51,53,56,51,55,44,51,53,46,54,50,49,56,51,57,93,44,91,45,56,55,46,57,55,52,54,51,44,51,53,46,53,50,49,48,50,53,93,44,91,45,56,56,46,48,48,55,55,48,57,44,51,53,46,52,50,51,51,56,49,93,44,91,45,56,55,46,57,55,51,49,56,44,51,53,46,52,53,57,57,54,56,93,44,91,45,56,55,46,55,49,55,53,53,57,44,51,53,46,52,56,51,51,52,55,93,44,91,45,56,55,46,54,53,56,49,56,57,44,51,53,46,54,48,57,51,52,57,93,44,91,45,56,55,46,55,52,51,55,53,44,51,53,46,54,54,51,57,53,50,93,44,91,45,56,55,46,55,49,54,55,54,44,51,53,46,56,51,56,55,53,93,44,91,45,56,55,46,56,55,52,49,56,50,44,51,53,46,56,49,51,48,50,49,93,44,91,45,56,55,46,57,54,50,55,52,44,51,53,46,56,52,48,57,50,49,93,44,91,45,56,55,46,57,55,48,55,51,56,44,51,53,46,56,49,53,55,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,51,49,55,44,34,98,101,100,115,34,58,49,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,48,53,49,56,44,52,53,46,49,50,51,56,54,54,93,44,91,45,57,51,46,48,50,48,48,52,52,44,52,52,46,56,57,48,55,53,93,44,91,45,57,51,46,48,48,53,57,55,56,44,52,52,46,55,55,49,54,56,53,93,44,91,45,57,50,46,56,48,50,48,49,55,44,52,52,46,55,52,53,54,55,51,93,44,91,45,57,50,46,55,54,57,53,48,49,44,52,52,46,56,54,50,48,48,49,93,44,91,45,57,50,46,55,53,56,48,48,56,44,52,53,46,50,48,57,53,54,54,93,44,91,45,57,50,46,55,52,53,54,56,51,44,52,53,46,50,57,54,48,52,50,93,44,91,45,57,51,46,48,49,57,52,52,44,52,53,46,50,57,54,57,50,57,93,44,91,45,57,51,46,48,50,48,53,49,56,44,52,53,46,49,50,51,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,52,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,52,48,34,44,34,78,65,77,69,34,58,34,80,111,114,116,115,109,111,117,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,51,49,49,44,34,98,101,100,115,34,58,52,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,51,57,57,53,54,55,44,51,54,46,57,51,48,57,52,55,93,44,91,45,55,54,46,52,50,48,51,54,56,44,51,54,46,56,54,54,51,52,56,93,44,91,45,55,54,46,50,56,57,57,54,50,44,51,54,46,56,50,50,48,52,56,93,44,91,45,55,54,46,51,52,49,56,50,53,44,51,54,46,57,50,52,55,55,50,93,44,91,45,55,54,46,51,56,52,52,49,57,44,51,54,46,57,53,49,48,53,57,93,44,91,45,55,54,46,51,57,57,53,54,55,44,51,54,46,57,51,48,57,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,50,56,57,44,34,98,101,100,115,34,58,50,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,55,55,51,56,53,44,52,48,46,49,50,54,55,57,50,93,44,91,45,55,57,46,57,57,56,48,49,52,44,51,57,46,57,56,51,51,50,50,93,44,91,45,55,57,46,57,50,53,53,57,55,44,51,57,46,57,50,52,55,57,53,93,44,91,45,55,57,46,57,49,54,50,56,44,51,57,46,55,50,48,55,55,55,93,44,91,45,55,57,46,55,54,51,55,55,52,44,51,57,46,55,50,48,55,55,54,93,44,91,45,55,57,46,52,55,54,54,54,50,44,51,57,46,55,50,49,48,55,56,93,44,91,45,55,57,46,51,57,50,52,53,57,44,51,57,46,55,50,49,53,55,56,93,44,91,45,55,57,46,52,49,55,53,53,56,44,51,57,46,56,53,51,55,55,54,93,44,91,45,55,57,46,50,57,51,54,56,50,44,52,48,46,48,52,48,52,49,51,93,44,91,45,55,57,46,53,48,53,49,56,56,44,52,48,46,49,52,48,53,54,56,93,44,91,45,55,57,46,54,51,56,57,57,52,44,52,48,46,48,56,50,56,53,57,93,44,91,45,55,57,46,56,55,55,51,56,53,44,52,48,46,49,50,54,55,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,52,49,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,44,91,45,55,57,46,49,51,52,52,53,54,44,51,57,46,51,49,50,53,48,49,93,44,91,45,55,57,46,50,55,49,54,57,53,44,51,57,46,51,50,55,57,57,57,93,44,91,45,55,57,46,52,56,54,56,55,53,44,51,57,46,50,48,53,56,57,54,93,44,91,45,55,57,46,52,56,55,49,55,53,44,51,57,46,49,57,52,57,48,54,93,44,91,45,55,57,46,50,57,54,54,54,51,44,51,57,46,49,57,56,52,48,54,93,44,91,45,55,57,46,51,53,55,54,54,54,44,51,56,46,57,54,52,53,48,57,93,44,91,45,55,57,46,51,52,57,56,54,55,44,51,56,46,57,53,55,53,48,57,93,44,91,45,55,57,46,49,51,52,50,57,54,44,51,56,46,56,49,51,51,52,93,44,91,45,55,57,46,48,52,53,57,53,51,44,51,56,46,57,50,56,55,49,93,44,91,45,55,57,46,48,56,57,54,53,53,44,51,57,46,48,51,56,50,48,56,93,44,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,83,104,101,110,97,110,100,111,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,48,52,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,53,52,52,49,56,50,44,51,57,46,48,53,54,53,53,57,93,44,91,45,55,56,46,54,56,48,52,53,54,44,51,56,46,57,50,53,51,49,51,93,44,91,45,55,56,46,55,56,56,48,51,49,44,51,56,46,56,56,53,49,50,51,93,44,91,45,55,56,46,56,54,57,50,54,49,44,51,56,46,55,54,50,57,56,93,44,91,45,55,56,46,54,52,49,55,54,57,44,51,56,46,54,48,52,55,49,57,93,44,91,45,55,56,46,53,52,56,56,50,56,44,51,56,46,55,51,56,54,53,53,93,44,91,45,55,56,46,51,57,52,55,48,52,44,51,56,46,56,50,50,55,57,93,44,91,45,55,56,46,51,48,48,52,49,52,44,51,56,46,57,52,51,53,57,50,93,44,91,45,55,56,46,51,49,52,48,56,44,51,57,46,48,48,55,57,57,52,93,44,91,45,55,56,46,53,52,52,49,56,50,44,51,57,46,48,53,54,53,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,53,34,44,34,78,65,77,69,34,58,34,73,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,54,55,57,52,55,44,51,49,46,53,50,56,54,56,56,93,44,91,45,49,48,49,46,50,55,52,55,57,57,44,51,49,46,48,55,57,51,55,57,93,44,91,45,49,48,48,46,57,54,50,49,55,54,44,51,49,46,48,56,50,52,57,93,44,91,45,49,48,48,46,54,56,56,55,54,52,44,51,49,46,48,56,54,53,55,54,93,44,91,45,49,48,48,46,54,57,51,48,54,53,44,51,49,46,53,50,51,57,53,52,93,44,91,45,49,48,49,46,50,54,55,57,52,55,44,51,49,46,53,50,56,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,108,100,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,48,53,57,54,49,44,51,57,46,55,52,53,56,52,49,93,44,91,45,57,52,46,50,48,56,52,50,51,44,51,57,46,53,50,55,50,93,44,91,45,57,51,46,55,53,57,49,56,51,44,51,57,46,53,50,52,53,53,56,93,44,91,45,57,51,46,55,53,56,51,53,55,44,51,57,46,54,49,49,52,48,55,93,44,91,45,57,51,46,55,53,56,57,57,50,44,51,57,46,55,56,52,54,55,52,93,44,91,45,57,52,46,50,48,53,56,52,52,44,51,57,46,55,56,56,57,53,52,93,44,91,45,57,52,46,50,48,53,57,54,49,44,51,57,46,55,52,53,56,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,55,54,54,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,53,56,57,57,44,50,57,46,52,55,49,50,51,50,93,44,91,45,56,49,46,56,52,51,48,48,57,44,50,57,46,53,50,49,48,48,52,93,44,91,45,56,49,46,55,55,54,50,48,53,44,50,57,46,52,56,55,52,52,56,93,44,91,45,56,49,46,54,56,48,57,48,51,44,50,57,46,51,50,52,52,51,93,44,91,45,56,49,46,52,51,51,57,57,50,44,50,57,46,51,57,56,53,53,50,93,44,91,45,56,49,46,53,50,48,53,57,54,44,50,57,46,53,48,48,50,52,57,93,44,91,45,56,49,46,53,50,51,54,54,44,50,57,46,54,50,50,52,51,50,93,44,91,45,56,49,46,53,50,53,50,51,44,50,57,46,55,53,57,52,57,55,93,44,91,45,56,49,46,53,56,49,50,48,55,44,50,57,46,56,52,48,49,55,54,93,44,91,45,56,49,46,56,49,50,52,51,44,50,57,46,56,51,54,52,57,93,44,91,45,56,49,46,57,51,57,52,50,55,44,50,57,46,55,52,55,52,57,55,93,44,91,45,56,50,46,48,52,57,50,52,52,44,50,57,46,55,49,56,54,55,93,44,91,45,56,50,46,48,53,53,54,50,53,44,50,57,46,55,49,56,50,51,50,93,44,91,45,56,50,46,48,53,53,56,57,57,44,50,57,46,52,55,49,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,56,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,56,49,52,50,52,44,51,56,46,51,57,52,55,54,55,93,44,91,45,56,54,46,54,55,57,53,49,49,44,51,56,46,50,54,51,48,56,54,93,44,91,45,56,54,46,52,54,49,48,50,50,44,51,56,46,49,50,49,48,56,55,93,44,91,45,56,54,46,51,50,57,54,44,51,56,46,49,56,49,56,48,53,93,44,91,45,56,54,46,50,55,54,57,53,54,44,51,56,46,50,50,55,49,50,54,93,44,91,45,56,54,46,50,53,53,48,52,53,44,51,56,46,52,50,50,54,56,53,93,44,91,45,56,54,46,51,48,56,54,55,52,44,51,56,46,52,50,50,56,55,53,93,44,91,45,56,54,46,51,48,56,56,54,56,44,51,56,46,51,57,52,48,54,57,93,44,91,45,56,54,46,54,56,49,52,50,52,44,51,56,46,51,57,52,55,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,53,48,56,49,50,44,52,48,46,50,53,55,50,49,93,44,91,45,57,49,46,57,53,50,55,50,54,44,51,57,46,57,52,57,52,50,54,93,44,91,45,57,49,46,56,52,48,51,53,51,44,51,57,46,57,52,56,50,51,53,93,44,91,45,57,49,46,52,51,53,53,49,55,44,51,57,46,57,52,53,50,50,50,93,44,91,45,57,49,46,52,57,52,56,55,56,44,52,48,46,48,51,54,52,53,51,93,44,91,45,57,49,46,53,48,53,48,54,49,44,52,48,46,49,57,57,57,50,53,93,44,91,45,57,49,46,52,57,55,50,54,54,44,52,48,46,50,52,56,55,54,51,93,44,91,45,57,49,46,57,53,48,56,49,50,44,52,48,46,50,53,55,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,50,54,53,53,55,44,52,50,46,48,57,50,49,57,52,93,44,91,45,49,48,50,46,48,48,54,50,48,52,44,52,50,46,48,57,54,51,51,56,93,44,91,45,49,48,50,46,48,54,54,54,53,44,52,50,46,48,48,57,49,57,53,93,44,91,45,49,48,50,46,48,54,55,57,49,56,44,52,49,46,55,52,50,48,57,57,93,44,91,45,49,48,49,46,57,56,53,53,50,51,44,52,49,46,55,52,50,50,57,93,44,91,45,49,48,49,46,52,50,53,57,50,44,52,49,46,55,52,51,48,53,57,93,44,91,45,49,48,49,46,52,50,54,53,53,55,44,52,50,46,48,57,50,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,76,111,195,173,122,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,57,51,52,48,49,44,49,56,46,53,49,54,53,57,56,93,44,91,45,54,53,46,57,49,57,50,55,56,44,49,56,46,52,48,50,57,57,51,93,44,91,45,54,53,46,56,54,55,52,52,55,44,49,56,46,51,55,56,49,57,56,93,44,91,45,54,53,46,56,48,53,51,49,51,44,49,56,46,52,55,56,50,53,51,93,44,91,45,54,53,46,57,57,51,52,48,49,44,49,56,46,53,49,54,53,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,79,110,101,105,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,50,54,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,48,48,48,48,52,49,44,52,49,46,57,57,56,50,48,52,93,44,91,45,49,49,50,46,49,53,57,49,56,52,44,52,49,46,57,57,56,51,56,50,93,44,91,45,49,49,50,46,49,48,57,52,52,52,44,52,49,46,57,57,55,55,57,52,93,44,91,45,49,49,50,46,49,50,54,49,57,52,44,52,50,46,50,56,53,50,50,57,93,44,91,45,49,49,50,46,52,49,57,56,50,53,44,52,50,46,53,48,51,48,51,56,93,44,91,45,49,49,50,46,52,57,55,56,52,57,44,52,50,46,52,49,53,57,57,56,93,44,91,45,49,49,50,46,54,53,51,57,56,57,44,52,50,46,52,49,54,49,54,57,93,44,91,45,49,49,50,46,54,53,52,48,50,56,44,52,50,46,51,50,56,56,55,50,93,44,91,45,49,49,50,46,57,57,57,57,54,53,44,52,50,46,51,50,55,52,50,55,93,44,91,45,49,49,51,46,48,48,48,48,52,49,44,52,49,46,57,57,56,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,77,111,117,108,116,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,52,53,54,55,49,44,51,57,46,55,57,50,49,52,54,93,44,91,45,56,56,46,56,49,48,53,55,53,44,51,57,46,54,53,51,50,50,50,93,44,91,45,56,56,46,53,56,52,50,55,51,44,51,57,46,52,52,55,53,56,50,93,44,91,45,56,56,46,52,55,48,53,48,53,44,51,57,46,52,52,55,48,52,49,93,44,91,45,56,56,46,52,55,50,48,55,51,44,51,57,46,54,53,49,53,56,56,93,44,91,45,56,56,46,52,55,51,49,56,50,44,51,57,46,55,57,49,56,51,55,93,44,91,45,56,56,46,55,52,53,54,55,49,44,51,57,46,55,57,50,49,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,72,111,112,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,54,52,44,34,98,101,100,115,34,58,52,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,55,53,49,52,53,44,51,55,46,53,54,57,57,56,56,93,44,91,45,56,55,46,56,49,51,52,49,51,44,51,55,46,51,53,48,54,52,53,93,44,91,45,56,55,46,55,55,52,54,57,52,44,51,55,46,49,57,56,49,50,55,93,44,91,45,56,55,46,54,56,48,54,49,55,44,51,55,46,49,52,57,50,51,57,93,44,91,45,56,55,46,53,50,49,54,48,57,44,51,55,46,49,48,53,51,52,52,93,44,91,45,56,55,46,51,51,51,55,52,49,44,51,55,46,49,53,55,49,56,54,93,44,91,45,56,55,46,51,56,56,55,48,55,44,51,55,46,50,54,50,49,56,93,44,91,45,56,55,46,50,57,53,57,54,53,44,51,55,46,51,57,49,56,49,57,93,44,91,45,56,55,46,51,53,49,56,57,51,44,51,55,46,52,50,53,54,53,53,93,44,91,45,56,55,46,51,55,53,49,52,53,44,51,55,46,53,54,57,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,108,101,97,114,119,97,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,52,48,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,44,91,45,49,49,53,46,57,53,55,50,54,56,44,52,54,46,50,56,56,57,51,49,93,44,91,45,49,49,53,46,55,56,48,56,49,56,44,52,54,46,50,54,55,50,53,93,44,91,45,49,49,53,46,54,50,56,57,53,55,44,52,54,46,52,55,51,54,49,56,93,44,91,45,49,49,52,46,53,57,52,54,51,52,44,52,54,46,54,51,51,52,52,56,93,44,91,45,49,49,52,46,54,55,52,57,52,50,44,52,54,46,55,51,54,56,50,54,93,44,91,45,49,49,52,46,57,50,50,51,49,50,44,52,54,46,56,50,56,54,48,50,93,44,91,45,49,49,52,46,57,53,57,51,49,55,44,52,54,46,57,51,50,56,57,56,93,44,91,45,49,49,54,46,51,50,57,52,51,54,44,52,54,46,57,51,52,54,54,57,93,44,91,45,49,49,54,46,51,50,57,53,52,44,52,54,46,54,50,55,57,53,55,93,44,91,45,49,49,54,46,52,53,54,48,57,56,44,52,54,46,54,50,57,48,57,55,93,44,91,45,49,49,54,46,52,53,49,55,57,50,44,52,54,46,53,48,48,54,57,56,93,44,91,45,49,49,54,46,51,54,57,49,50,50,44,52,54,46,52,54,54,57,50,51,93,44,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,49,56,56,44,34,98,101,100,115,34,58,50,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,55,55,53,48,51,44,51,54,46,54,56,55,50,53,57,93,44,91,45,56,51,46,57,51,48,55,54,50,44,51,54,46,53,56,55,54,57,49,93,44,91,45,56,51,46,54,55,53,51,57,53,44,51,54,46,54,48,48,55,56,52,93,44,91,45,56,51,46,52,54,49,48,49,54,44,51,54,46,54,54,52,56,54,93,44,91,45,56,51,46,53,48,48,56,57,49,44,51,54,46,55,51,51,50,53,52,93,44,91,45,56,51,46,52,56,57,56,49,51,44,51,54,46,56,57,53,52,49,51,93,44,91,45,56,51,46,53,48,57,48,56,51,44,51,54,46,57,51,56,53,48,57,93,44,91,45,56,51,46,53,56,57,53,50,49,44,51,54,46,57,53,53,55,56,54,93,44,91,45,56,51,46,53,56,49,48,57,52,44,51,54,46,57,48,52,54,54,55,93,44,91,45,56,51,46,55,56,49,50,49,50,44,51,54,46,56,48,50,54,57,51,93,44,91,45,56,51,46,56,55,55,53,48,51,44,51,54,46,54,56,55,50,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,114,111,119,32,87,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,56,53,53,44,34,98,101,100,115,34,58,50,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,55,54,48,50,52,44,52,54,46,56,48,50,56,57,49,93,44,91,45,57,52,46,51,52,50,57,49,44,52,54,46,56,48,53,53,50,57,93,44,91,45,57,52,46,51,50,55,50,56,54,44,52,54,46,50,56,57,56,49,55,93,44,91,45,57,52,46,51,52,49,54,55,57,44,52,54,46,50,55,55,55,48,53,93,44,91,45,57,52,46,51,55,52,53,57,50,44,52,54,46,49,53,55,48,57,51,93,44,91,45,57,51,46,56,49,48,51,54,50,44,52,54,46,49,53,54,53,56,53,93,44,91,45,57,51,46,55,57,54,50,56,49,44,52,54,46,50,52,51,49,57,57,93,44,91,45,57,51,46,56,49,49,52,54,52,44,52,54,46,53,56,52,50,51,56,93,44,91,45,57,51,46,55,55,54,48,50,52,44,52,54,46,56,48,50,56,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,195,177,97,115,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,51,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,56,50,56,53,50,44,49,56,46,51,49,51,48,50,54,93,44,91,45,54,55,46,50,52,51,53,53,57,44,49,56,46,50,54,56,57,50,50,93,44,91,45,54,55,46,48,56,50,48,48,50,44,49,56,46,50,53,52,57,52,54,93,44,91,45,54,55,46,48,51,55,57,51,53,44,49,56,46,50,56,57,55,48,53,93,44,91,45,54,55,46,48,53,50,53,56,51,44,49,56,46,51,48,54,54,53,53,93,44,91,45,54,55,46,49,51,48,49,54,55,44,49,56,46,51,49,55,57,50,55,93,44,91,45,54,55,46,49,56,50,56,53,50,44,49,56,46,51,49,51,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,71,114,97,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,55,57,44,34,98,101,100,115,34,58,49,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,52,52,57,48,50,49,44,51,51,46,49,57,52,53,50,54,93,44,91,45,49,49,48,46,52,53,49,53,50,50,44,51,50,46,53,49,51,57,57,53,93,44,91,45,49,49,48,46,52,53,49,48,48,50,44,51,50,46,52,50,55,53,52,54,93,44,91,45,49,48,57,46,49,49,52,49,56,44,51,50,46,52,50,54,51,53,51,93,44,91,45,49,48,57,46,50,50,54,48,55,44,51,50,46,53,50,57,48,57,54,93,44,91,45,49,48,57,46,50,48,54,50,52,57,44,51,50,46,54,51,53,56,48,51,93,44,91,45,49,48,57,46,50,52,53,48,48,53,44,51,50,46,55,52,49,57,56,53,93,44,91,45,49,48,57,46,52,57,53,55,52,44,51,51,46,48,55,56,52,48,57,93,44,91,45,49,48,57,46,52,57,53,52,52,44,51,51,46,54,53,50,54,57,55,93,44,91,45,49,48,57,46,55,57,57,55,56,50,44,51,51,46,52,56,56,51,49,52,93,44,91,45,49,48,57,46,56,57,49,54,55,54,44,51,51,46,53,54,55,56,55,52,93,44,91,45,49,49,48,46,48,48,48,54,52,57,44,51,51,46,53,55,54,57,51,93,44,91,45,49,49,48,46,48,48,48,54,52,54,44,51,51,46,52,54,53,57,49,54,93,44,91,45,49,49,48,46,49,54,57,52,55,55,44,51,51,46,52,54,53,55,49,50,93,44,91,45,49,49,48,46,51,52,48,57,52,57,44,51,51,46,52,50,55,48,54,54,93,44,91,45,49,49,48,46,52,53,49,55,51,49,44,51,51,46,51,54,49,53,54,52,93,44,91,45,49,49,48,46,52,52,57,48,50,49,44,51,51,46,49,57,52,53,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,83,116,46,32,70,114,97,110,99,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,57,52,44,34,98,101,100,115,34,58,49,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,48,50,57,57,51,44,51,53,46,49,52,52,50,49,52,93,44,91,45,57,49,46,48,52,50,54,55,44,51,53,46,49,52,56,49,56,57,93,44,91,45,57,49,46,48,52,53,52,51,44,51,53,46,48,48,49,48,52,93,44,91,45,57,49,46,49,52,57,56,52,50,44,51,53,46,48,48,50,52,55,93,44,91,45,57,49,46,48,57,57,57,54,49,44,51,52,46,56,54,55,49,50,93,44,91,45,57,49,46,48,57,57,50,48,49,44,51,52,46,57,49,49,55,57,54,93,44,91,45,57,48,46,52,48,56,53,52,44,51,52,46,57,48,52,49,50,49,93,44,91,45,57,48,46,52,48,48,52,51,56,44,51,53,46,49,52,56,50,51,49,93,44,91,45,57,48,46,53,48,50,57,57,51,44,51,53,46,49,52,52,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,69,99,104,111,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,51,54,54,49,52,44,51,48,46,54,50,51,57,54,55,93,44,91,45,56,50,46,54,56,57,53,51,57,44,51,48,46,53,57,55,55,51,52,93,44,91,45,56,50,46,53,56,52,48,48,55,44,51,48,46,53,57,49,53,52,56,93,44,91,45,56,50,46,54,48,52,51,48,55,44,51,48,46,55,49,51,55,49,53,93,44,91,45,56,50,46,55,54,54,49,53,57,44,51,48,46,55,51,50,52,48,52,93,44,91,45,56,50,46,56,52,54,52,48,53,44,51,48,46,56,51,52,57,52,57,93,44,91,45,56,50,46,57,55,49,51,51,54,44,51,48,46,56,54,57,51,57,50,93,44,91,45,56,51,46,48,49,57,52,49,57,44,51,48,46,56,52,57,52,53,51,93,44,91,45,56,51,46,49,50,52,56,54,53,44,51,48,46,56,48,51,54,53,53,93,44,91,45,56,51,46,49,51,54,54,49,52,44,51,48,46,54,50,51,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,55,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,48,34,44,34,78,65,77,69,34,58,34,68,105,108,108,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,55,53,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,54,46,48,48,48,48,56,54,44,54,48,46,57,48,54,49,57,93,44,91,45,49,53,55,46,49,54,55,52,50,44,54,48,46,57,48,54,49,56,51,93,44,91,45,49,53,55,46,49,54,55,52,50,56,44,54,48,46,57,57,50,56,51,57,93,44,91,45,49,53,55,46,53,50,50,51,51,50,44,54,48,46,57,57,50,56,51,52,93,44,91,45,49,53,55,46,56,55,55,50,50,52,44,54,48,46,57,48,54,49,55,50,93,44,91,45,49,53,56,46,57,52,49,57,50,54,44,54,48,46,57,48,54,49,54,50,93,44,91,45,49,53,57,46,48,49,53,49,48,52,44,54,48,46,55,51,50,56,52,51,93,44,91,45,49,53,57,46,49,57,48,54,53,55,44,54,48,46,54,52,54,49,56,49,93,44,91,45,49,53,57,46,51,54,54,50,49,53,44,54,48,46,54,52,54,49,55,57,93,44,91,45,49,53,57,46,51,54,54,50,48,54,44,54,48,46,52,55,50,56,53,54,93,44,91,45,49,53,57,46,52,51,52,52,57,55,44,54,48,46,51,56,54,49,57,93,44,91,45,49,53,57,46,54,48,56,50,48,52,44,54,48,46,51,56,54,49,56,56,93,44,91,45,49,53,57,46,54,48,56,49,57,54,44,54,48,46,50,49,50,56,53,54,93,44,91,45,49,53,57,46,55,56,49,57,48,54,44,54,48,46,50,49,50,56,53,52,93,44,91,45,49,53,57,46,56,52,53,53,51,51,44,54,48,46,49,50,54,49,56,54,93,44,91,45,49,53,57,46,56,52,53,53,50,52,44,53,57,46,57,53,50,56,52,56,93,44,91,45,49,54,48,46,48,49,55,52,51,44,53,57,46,57,53,50,56,52,54,93,44,91,45,49,54,48,46,48,49,55,52,50,51,44,53,57,46,55,55,57,53,48,52,93,44,91,45,49,54,48,46,50,52,56,53,49,44,53,57,46,55,55,57,53,48,49,93,44,91,45,49,54,48,46,50,52,56,53,48,51,44,53,57,46,54,48,54,49,53,52,93,44,91,45,49,54,48,46,52,49,56,54,52,55,44,53,57,46,54,48,54,49,53,50,93,44,91,45,49,54,48,46,52,49,56,54,52,44,53,57,46,52,51,50,56,93,44,91,45,49,54,48,46,52,55,53,50,57,54,44,53,57,46,51,52,54,49,50,50,93,44,91,45,49,54,48,46,54,52,51,55,49,54,44,53,57,46,50,53,57,52,52,93,44,91,45,49,54,48,46,56,49,50,49,52,44,53,57,46,50,53,57,52,51,56,93,44,91,45,49,54,48,46,56,49,50,49,51,51,44,53,57,46,48,56,54,48,55,55,93,44,91,45,49,54,48,46,56,54,52,55,48,51,44,53,56,46,57,57,57,51,57,52,93,44,91,45,49,54,49,46,48,51,49,52,52,56,44,53,56,46,57,57,57,51,57,51,93,44,91,45,49,54,49,46,48,51,49,52,52,49,44,53,56,46,56,51,57,55,53,50,93,44,91,45,49,54,49,46,51,54,52,57,51,49,44,53,56,46,56,50,54,48,50,49,93,44,91,45,49,54,49,46,49,57,56,49,56,51,44,53,56,46,55,51,57,51,51,55,93,44,91,45,49,54,49,46,51,52,49,56,52,44,53,56,46,54,48,55,48,57,49,93,44,91,45,49,54,49,46,49,55,55,48,51,55,44,53,56,46,54,48,55,48,54,56,93,44,91,45,49,54,49,46,49,53,56,57,49,56,44,53,56,46,53,49,50,51,56,51,93,44,91,45,49,54,48,46,57,51,51,52,51,54,44,53,56,46,52,57,54,49,48,57,93,44,91,45,49,54,48,46,56,48,49,55,55,51,44,53,56,46,53,53,49,52,50,56,93,44,91,45,49,54,48,46,54,48,49,54,50,56,44,53,56,46,55,57,51,51,50,51,93,44,91,45,49,54,48,46,54,48,56,55,49,53,44,53,56,46,56,52,51,54,50,49,93,44,91,45,49,54,48,46,51,52,51,48,56,55,44,53,56,46,56,56,48,53,52,50,93,44,91,45,49,54,48,46,50,57,55,54,48,49,44,53,56,46,55,57,57,49,53,93,44,91,45,49,53,57,46,56,57,51,56,54,49,44,53,56,46,55,49,53,48,51,54,93,44,91,45,49,53,57,46,55,48,49,54,57,52,44,53,56,46,55,57,54,51,57,55,93,44,91,45,49,53,57,46,53,52,52,54,56,53,44,53,56,46,55,55,56,52,49,57,93,44,91,45,49,53,57,46,49,53,49,51,56,56,44,53,56,46,52,49,53,55,55,51,93,44,91,45,49,53,57,46,48,49,56,55,50,50,44,53,56,46,51,51,52,49,52,93,44,91,45,49,53,56,46,56,49,48,51,50,57,44,53,56,46,51,52,55,49,53,49,93,44,91,45,49,53,56,46,54,48,53,50,51,53,44,53,56,46,52,53,53,53,57,50,93,44,91,45,49,53,56,46,50,49,51,48,51,50,44,53,56,46,53,52,50,54,48,52,93,44,91,45,49,53,56,46,48,54,57,56,50,50,44,53,56,46,52,57,48,51,49,55,93,44,91,45,49,53,56,44,53,56,46,54,49,54,54,54,55,93,44,91,45,49,53,55,46,57,57,57,57,53,57,44,53,56,46,54,52,50,49,54,56,93,44,91,45,49,53,55,46,49,57,54,50,57,50,44,53,56,46,56,52,54,50,52,57,93,44,91,45,49,53,55,46,49,57,54,51,48,54,44,53,57,46,48,56,54,49,50,50,93,44,91,45,49,53,55,46,50,55,53,50,51,51,44,53,57,46,50,53,57,52,56,50,93,44,91,45,49,53,55,46,49,48,54,56,49,52,44,53,57,46,51,52,54,49,54,50,93,44,91,45,49,53,54,46,55,54,57,57,54,53,44,53,57,46,51,52,54,49,54,54,93,44,91,45,49,53,54,46,54,55,53,52,56,57,44,53,57,46,53,49,57,53,50,49,93,44,91,45,49,53,54,46,53,48,53,51,52,57,44,53,57,46,54,48,54,49,57,57,93,44,91,45,49,53,54,46,49,54,53,48,54,54,44,53,57,46,54,48,54,50,48,50,93,44,91,45,49,53,54,46,48,48,48,49,52,53,44,53,57,46,54,57,50,56,55,57,93,44,91,45,49,53,54,46,48,48,48,48,56,54,44,54,48,46,57,48,54,49,57,93,93,93,44,91,91,91,45,49,54,48,46,53,52,52,48,53,56,44,53,56,46,54,56,55,56,51,56,93,44,91,45,49,54,48,46,51,57,54,56,54,49,44,53,56,46,53,53,51,57,49,57,93,44,91,45,49,54,48,46,51,48,49,48,50,57,44,53,56,46,53,51,53,55,53,56,93,44,91,45,49,54,48,46,48,57,54,57,55,51,44,53,56,46,54,57,55,50,56,51,93,44,91,45,49,54,48,46,49,51,55,54,49,56,44,53,56,46,55,52,56,56,57,56,93,44,91,45,49,54,48,46,52,49,54,48,51,57,44,53,56,46,55,57,56,52,52,53,93,44,91,45,49,54,48,46,53,52,52,48,53,56,44,53,56,46,54,56,55,56,51,56,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,57,55,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,56,57,57,57,55,44,51,57,46,49,51,50,54,57,55,93,44,91,45,57,56,46,52,56,52,56,54,49,44,51,56,46,56,55,48,55,57,49,93,44,91,45,57,55,46,57,50,56,53,57,50,44,51,56,46,56,55,49,48,57,57,93,44,91,45,57,55,46,57,50,56,53,54,44,51,56,46,57,53,56,51,57,53,93,44,91,45,57,55,46,57,50,57,55,52,54,44,51,57,46,50,49,57,50,55,51,93,44,91,45,57,56,46,52,57,48,49,52,57,44,51,57,46,50,49,57,55,56,93,44,91,45,57,56,46,52,56,57,57,57,55,44,51,57,46,49,51,50,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,83,109,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,54,55,48,52,54,44,52,48,46,48,48,50,51,52,56,93,44,91,45,57,57,46,48,54,54,50,50,44,51,57,46,53,54,56,49,50,53,93,44,91,45,57,57,46,48,52,52,51,57,56,44,51,57,46,53,54,56,48,51,53,93,44,91,45,57,56,46,53,48,53,50,54,54,44,51,57,46,53,54,55,54,48,51,93,44,91,45,57,56,46,53,48,52,52,53,53,44,52,48,46,48,48,50,50,57,49,93,44,91,45,57,56,46,55,50,54,51,55,51,44,52,48,46,48,48,50,52,93,44,91,45,57,57,46,48,54,55,48,52,54,44,52,48,46,48,48,50,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,48,55,52,53,52,44,51,48,46,54,55,50,49,50,55,93,44,91,45,56,51,46,57,55,56,54,48,55,44,51,48,46,53,50,50,54,56,55,93,44,91,45,56,52,46,48,55,52,54,57,49,44,51,48,46,52,51,52,51,48,50,93,44,91,45,56,52,46,48,55,53,53,51,57,44,51,48,46,50,55,51,54,49,55,93,44,91,45,56,52,46,48,55,53,52,53,53,44,51,48,46,48,51,52,54,50,54,93,44,91,45,56,51,46,57,57,57,56,56,51,44,51,48,46,48,49,50,50,50,53,93,44,91,45,56,51,46,57,49,53,51,54,57,44,51,48,46,50,52,52,55,55,57,93,44,91,45,56,51,46,56,50,48,50,51,53,44,51,48,46,51,48,51,53,52,93,44,91,45,56,51,46,55,50,49,55,50,44,51,48,46,52,51,52,51,53,52,93,44,91,45,56,51,46,55,51,54,57,53,52,44,51,48,46,53,48,55,53,54,57,93,44,91,45,56,51,46,54,48,52,49,56,54,44,51,48,46,53,56,49,57,49,54,93,44,91,45,56,51,46,54,49,49,55,50,44,51,48,46,54,53,49,50,53,56,93,44,91,45,56,51,46,55,52,51,55,50,57,44,51,48,46,54,53,56,51,57,54,93,44,91,45,56,52,46,48,48,55,52,53,52,44,51,48,46,54,55,50,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,105,100,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,51,52,51,44,34,98,101,100,115,34,58,50,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,54,57,49,50,54,44,49,56,46,50,50,52,50,57,93,44,91,45,54,54,46,50,52,48,52,54,44,49,56,46,49,56,52,55,57,52,93,44,91,45,54,54,46,50,52,50,55,51,53,44,49,56,46,49,56,48,50,52,56,93,44,91,45,54,54,46,50,49,54,56,57,57,44,49,56,46,49,52,51,50,50,93,44,91,45,54,54,46,48,57,53,48,57,57,44,49,56,46,49,54,57,48,55,55,93,44,91,45,54,54,46,49,49,55,55,55,52,44,49,56,46,50,48,57,57,52,57,93,44,91,45,54,54,46,49,54,57,49,50,54,44,49,56,46,50,50,52,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,109,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,57,53,51,57,56,44,51,49,46,51,50,48,57,55,53,93,44,91,45,57,49,46,48,53,57,52,51,49,44,51,49,46,50,56,49,56,53,56,93,44,91,45,57,49,46,48,54,48,50,49,57,44,51,48,46,57,57,56,57,50,55,93,44,91,45,57,48,46,56,50,53,56,50,57,44,51,48,46,57,57,57,51,54,49,93,44,91,45,57,48,46,53,54,55,49,57,53,44,51,48,46,57,57,57,55,51,51,93,44,91,45,57,48,46,53,52,55,54,49,54,44,51,48,46,57,57,57,55,50,93,44,91,45,57,48,46,53,52,56,49,57,57,44,51,49,46,51,52,57,53,55,52,93,44,91,45,57,48,46,54,51,51,51,48,50,44,51,49,46,51,52,57,51,48,54,93,44,91,45,57,48,46,57,56,51,48,48,50,44,51,49,46,51,52,56,54,55,49,93,44,91,45,57,49,46,48,57,53,51,57,56,44,51,49,46,51,50,48,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,51,48,53,48,57,44,51,52,46,54,54,53,54,48,56,93,44,91,45,57,51,46,57,51,53,51,55,49,44,51,52,46,51,53,48,48,57,55,93,44,91,45,57,51,46,52,55,56,54,52,54,44,51,52,46,51,52,48,56,53,49,93,44,91,45,57,51,46,52,48,56,49,50,52,44,51,52,46,51,51,57,53,50,55,93,44,91,45,57,51,46,52,48,55,50,50,49,44,51,52,46,51,57,55,52,52,55,93,44,91,45,57,51,46,51,57,52,50,56,57,44,51,52,46,55,52,51,51,57,51,93,44,91,45,57,51,46,55,49,48,50,57,55,44,51,52,46,55,52,53,50,57,54,93,44,91,45,57,51,46,57,51,48,53,48,57,44,51,52,46,54,54,53,54,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,52,55,51,44,34,98,101,100,115,34,58,50,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,57,56,56,55,57,44,52,50,46,52,49,57,56,52,57,93,44,91,45,56,53,46,50,57,51,54,50,54,44,52,50,46,48,55,49,53,53,51,93,44,91,45,56,52,46,56,50,54,52,57,49,44,52,50,46,48,55,50,52,54,56,93,44,91,45,56,52,46,55,48,57,53,53,54,44,52,50,46,48,55,48,51,54,54,93,44,91,45,56,52,46,55,49,56,52,57,51,44,52,50,46,52,50,49,53,50,93,44,91,45,56,53,46,48,55,49,54,48,57,44,52,50,46,52,50,49,52,50,56,93,44,91,45,56,53,46,50,57,56,56,55,57,44,52,50,46,52,49,57,56,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,108,101,98,117,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,51,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,51,48,48,57,52,44,51,51,46,57,52,49,52,50,51,93,44,91,45,56,53,46,54,48,49,56,53,56,44,51,51,46,56,56,57,55,53,93,44,91,45,56,53,46,54,51,56,53,55,57,44,51,51,46,54,52,56,52,49,51,93,44,91,45,56,53,46,55,57,54,48,53,52,44,51,51,46,53,53,54,50,50,93,44,91,45,56,53,46,56,53,49,56,57,44,51,51,46,52,57,56,55,52,50,93,44,91,45,56,53,46,54,52,51,52,56,50,44,51,51,46,52,57,53,56,56,53,93,44,91,45,56,53,46,51,48,52,52,51,57,44,51,51,46,52,56,50,56,56,52,93,44,91,45,56,53,46,51,51,56,50,51,44,51,51,46,54,53,51,49,49,55,93,44,91,45,56,53,46,51,56,54,53,56,49,44,51,51,46,57,48,49,55,49,57,93,44,91,45,56,53,46,51,57,56,56,51,55,44,51,51,46,57,54,52,49,50,57,93,44,91,45,56,53,46,53,51,48,48,57,52,44,51,51,46,57,52,49,52,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,87,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,53,49,50,51,44,34,98,101,100,115,34,58,51,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,52,51,51,55,49,44,52,48,46,57,57,56,50,49,51,93,44,91,45,49,48,52,46,57,52,53,53,53,49,44,52,48,46,51,52,57,48,57,57,93,44,91,45,49,48,53,46,48,53,53,48,56,57,44,52,48,46,50,54,49,55,57,51,93,44,91,45,49,48,53,46,48,53,50,56,50,51,44,52,48,46,48,48,48,50,54,93,44,91,45,49,48,52,46,57,54,49,52,48,53,44,52,48,46,48,48,48,51,51,55,93,44,91,45,49,48,52,46,49,53,48,51,51,50,44,52,48,46,48,48,48,56,53,54,93,44,91,45,49,48,52,46,49,52,55,55,49,52,44,52,48,46,53,50,52,51,56,57,93,44,91,45,49,48,51,46,53,56,49,56,52,52,44,52,48,46,53,50,51,51,56,51,93,44,91,45,49,48,51,46,53,55,51,55,55,52,44,52,49,46,48,48,49,55,49,54,93,44,91,45,49,48,52,46,48,53,51,50,52,57,44,52,49,46,48,48,49,52,48,54,93,44,91,45,49,48,52,46,57,52,51,51,55,49,44,52,48,46,57,57,56,50,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,101,99,107,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,50,49,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,54,52,49,52,49,44,51,53,46,53,48,56,55,57,51,93,44,91,45,57,57,46,53,55,53,55,50,51,44,51,53,46,53,48,56,56,54,52,93,44,91,45,57,57,46,53,55,53,56,50,44,51,53,46,52,50,49,54,53,53,93,44,91,45,57,57,46,57,57,57,54,54,44,51,53,46,52,50,50,51,54,52,93,44,91,45,49,48,48,46,48,48,48,51,56,53,44,51,53,46,49,56,50,55,48,50,93,44,91,45,49,48,48,46,48,48,48,51,56,52,44,51,53,46,48,50,57,57,51,93,44,91,45,57,57,46,56,56,56,52,52,52,44,51,53,46,48,50,57,56,56,57,93,44,91,45,57,57,46,55,56,50,55,50,55,44,51,53,46,49,49,54,57,52,93,44,91,45,57,57,46,52,48,57,50,57,49,44,51,53,46,49,49,52,53,48,57,93,44,91,45,57,57,46,51,54,48,50,50,54,44,51,53,46,49,49,54,55,51,56,93,44,91,45,57,57,46,51,54,52,50,49,55,44,51,53,46,52,54,53,51,50,56,93,44,91,45,57,57,46,51,54,52,49,52,49,44,51,53,46,53,48,56,55,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,77,111,100,111,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,51,56,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,52,52,55,53,51,56,44,52,49,46,57,57,55,52,54,53,93,44,91,45,49,50,49,46,52,52,54,52,57,53,44,52,49,46,49,56,51,52,56,52,93,44,91,45,49,50,49,46,51,51,49,55,56,54,44,52,49,46,49,56,51,56,56,54,93,44,91,45,49,49,57,46,57,57,57,56,54,54,44,52,49,46,49,56,51,57,55,52,93,44,91,45,49,49,57,46,57,57,57,50,51,52,44,52,49,46,57,57,52,57,52,52,93,44,91,45,49,50,48,46,56,55,57,57,50,54,44,52,49,46,57,57,51,55,54,52,93,44,91,45,49,50,49,46,52,52,55,53,51,56,44,52,49,46,57,57,55,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,52,50,55,52,44,34,98,101,100,115,34,58,49,54,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,49,53,55,50,49,44,52,49,46,56,54,51,52,49,57,93,44,91,45,57,51,46,56,49,52,50,56,50,44,52,49,46,54,48,48,52,53,54,93,44,91,45,57,51,46,55,57,48,54,49,50,44,52,49,46,53,49,49,57,49,54,93,44,91,45,57,51,46,52,50,50,56,53,52,44,52,49,46,53,49,49,52,52,52,93,44,91,45,57,51,46,51,50,56,52,48,55,44,52,49,46,52,57,48,57,50,49,93,44,91,45,57,51,46,51,50,56,54,49,52,44,52,49,46,53,48,55,56,50,52,93,44,91,45,57,51,46,51,52,55,57,51,51,44,52,49,46,56,54,51,49,48,52,93,44,91,45,57,51,46,54,57,56,48,51,50,44,52,49,46,56,54,51,51,55,93,44,91,45,57,51,46,56,49,53,55,50,49,44,52,49,46,56,54,51,52,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,76,105,98,101,114,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,49,48,56,44,34,98,101,100,115,34,58,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,50,52,52,48,53,44,51,50,46,48,49,52,56,56,50,93,44,91,45,56,49,46,55,53,48,50,53,55,44,51,49,46,57,55,51,50,48,55,93,44,91,45,56,49,46,55,54,53,51,53,55,44,51,49,46,56,55,52,53,52,93,44,91,45,56,49,46,54,52,49,55,54,49,44,51,49,46,55,54,53,52,53,49,93,44,91,45,56,49,46,52,57,49,55,57,56,44,51,49,46,54,57,57,53,55,53,93,44,91,45,56,49,46,52,51,53,55,54,44,51,49,46,54,52,50,48,53,53,93,44,91,45,56,49,46,50,54,49,56,54,56,44,51,49,46,54,53,48,49,52,50,93,44,91,45,56,49,46,49,55,53,49,52,56,44,51,49,46,53,51,57,54,54,93,44,91,45,56,49,46,48,57,53,51,56,51,44,51,49,46,53,50,48,57,56,49,93,44,91,45,56,49,46,48,53,49,53,50,49,44,51,49,46,55,48,53,49,57,56,93,44,91,45,56,49,46,49,53,52,55,51,49,44,51,49,46,55,49,51,48,55,93,44,91,45,56,49,46,51,55,54,57,53,52,44,51,49,46,56,52,56,50,53,55,93,44,91,45,56,49,46,52,48,52,51,56,56,44,51,49,46,57,49,57,55,48,49,93,44,91,45,56,49,46,53,57,50,51,57,49,44,51,49,46,57,55,50,52,54,57,93,44,91,45,56,49,46,55,49,56,54,53,56,44,51,50,46,48,56,57,51,53,49,93,44,91,45,56,49,46,55,54,49,55,51,53,44,51,50,46,48,52,55,57,93,44,91,45,56,49,46,56,50,52,52,48,53,44,51,50,46,48,49,52,56,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,52,57,34,44,34,78,65,77,69,34,58,34,78,97,118,97,114,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,53,56,51,44,34,98,101,100,115,34,58,49,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,56,51,48,56,50,44,51,50,46,51,50,56,56,53,49,93,44,91,45,57,54,46,56,57,54,50,48,57,44,51,50,46,48,55,51,57,55,55,93,44,91,45,57,54,46,55,49,57,49,49,52,44,51,49,46,56,49,52,56,56,55,93,44,91,45,57,54,46,52,57,54,55,49,51,44,51,49,46,55,57,54,49,57,49,93,44,91,45,57,54,46,48,53,52,55,56,44,51,50,46,48,49,50,53,50,54,93,44,91,45,57,54,46,50,51,52,50,53,49,44,51,50,46,50,53,48,51,57,57,93,44,91,45,57,54,46,51,56,51,48,56,50,44,51,50,46,51,50,56,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,66,114,111,111,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,50,51,50,56,52,44,50,55,46,50,54,53,49,53,93,44,91,45,57,56,46,52,54,54,53,52,50,44,50,55,46,48,53,52,55,49,49,93,44,91,45,57,56,46,52,49,55,56,56,51,44,50,55,46,48,53,53,50,56,53,93,44,91,45,57,56,46,52,50,50,54,49,54,44,50,54,46,55,56,51,53,51,53,93,44,91,45,57,56,46,51,50,48,54,55,44,50,54,46,55,56,51,48,56,49,93,44,91,45,57,55,46,57,56,53,52,57,52,44,50,54,46,55,56,48,57,49,55,93,44,91,45,57,55,46,57,56,53,56,56,55,44,50,55,46,50,48,57,51,48,56,93,44,91,45,57,56,46,48,53,56,48,55,56,44,50,55,46,50,54,48,57,56,49,93,44,91,45,57,56,46,50,51,50,52,54,52,44,50,55,46,50,54,50,52,56,55,93,44,91,45,57,56,46,53,50,51,50,56,52,44,50,55,46,50,54,53,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,54,52,56,44,34,98,101,100,115,34,58,51,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,49,56,56,57,50,44,51,53,46,57,54,56,50,50,52,93,44,91,45,56,54,46,55,57,48,56,55,53,44,51,54,46,48,51,54,55,49,53,93,44,91,45,56,55,46,48,53,51,55,50,50,44,51,54,46,48,52,53,53,56,50,93,44,91,45,56,55,46,49,56,50,53,55,51,44,51,54,46,48,52,57,55,50,54,93,44,91,45,56,55,46,50,48,52,50,52,50,44,51,53,46,57,53,57,49,56,54,93,44,91,45,56,55,46,50,49,53,48,57,57,44,51,53,46,56,53,48,54,53,49,93,44,91,45,56,54,46,55,56,50,48,49,54,44,51,53,46,55,48,54,53,57,53,93,44,91,45,56,54,46,54,56,54,49,57,51,44,51,53,46,55,49,48,48,53,49,93,44,91,45,56,54,46,54,49,51,51,50,56,44,51,53,46,55,57,48,51,51,49,93,44,91,45,56,54,46,54,49,56,56,57,50,44,51,53,46,57,54,56,50,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,76,97,114,97,109,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,54,57,50,44,34,98,101,100,115,34,58,50,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,50,53,52,44,52,49,46,53,54,52,50,55,52,93,44,91,45,49,48,52,46,54,53,50,57,57,50,44,52,49,46,53,54,53,48,49,52,93,44,91,45,49,48,52,46,54,53,51,51,51,56,44,52,49,46,54,53,51,48,48,55,93,44,91,45,49,48,53,46,50,55,56,50,51,54,44,52,49,46,54,53,54,54,53,53,93,44,91,45,49,48,53,46,50,55,54,56,54,44,52,48,46,57,57,56,49,55,50,93,44,91,45,49,48,52,46,57,52,51,51,55,49,44,52,48,46,57,57,56,50,49,51,93,44,91,45,49,48,52,46,48,53,51,50,52,57,44,52,49,46,48,48,49,52,48,54,93,44,91,45,49,48,52,46,48,53,50,50,56,55,44,52,49,46,51,57,51,50,49,52,93,44,91,45,49,48,52,46,48,53,50,53,52,44,52,49,46,53,54,52,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,115,111,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,51,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,50,50,56,49,50,44,52,54,46,52,54,50,50,52,53,93,44,91,45,49,49,55,46,50,50,56,55,57,54,44,52,54,46,52,49,49,51,48,54,93,44,91,45,49,49,55,46,52,49,57,51,51,52,44,52,54,46,51,56,51,49,51,57,93,44,91,45,49,49,55,46,52,49,57,52,56,50,44,52,54,46,49,50,49,57,53,54,93,44,91,45,49,49,55,46,52,55,57,57,51,53,44,52,53,46,57,57,55,56,48,49,93,44,91,45,49,49,54,46,57,49,54,48,55,49,44,52,53,46,57,57,53,51,53,55,93,44,91,45,49,49,54,46,57,50,49,51,53,44,52,54,46,49,54,52,53,49,52,93,44,91,45,49,49,55,46,48,51,57,55,54,54,44,52,54,46,52,50,53,56,56,55,93,44,91,45,49,49,55,46,50,50,56,49,50,44,52,54,46,52,54,50,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,84,114,97,118,101,114,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,51,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,54,51,54,55,50,44,52,53,46,57,51,53,50,52,53,93,44,91,45,57,54,46,53,56,51,48,56,53,44,52,53,46,56,50,48,48,50,52,93,44,91,45,57,54,46,54,55,50,54,54,53,44,52,53,46,55,51,50,51,51,54,93,44,91,45,57,54,46,56,51,56,54,52,56,44,52,53,46,54,52,55,53,48,57,93,44,91,45,57,54,46,56,51,53,52,53,49,44,52,53,46,53,56,54,49,50,57,93,44,91,45,57,54,46,50,53,51,48,50,54,44,52,53,46,53,56,53,53,50,54,93,44,91,45,57,54,46,50,53,52,48,50,50,44,52,53,46,55,53,57,56,50,93,44,91,45,57,54,46,50,54,54,49,52,44,52,54,46,48,50,49,54,49,93,44,91,45,57,54,46,53,55,54,53,54,52,44,52,54,46,48,50,49,56,52,56,93,44,91,45,57,54,46,53,54,51,54,55,50,44,52,53,46,57,51,53,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,57,53,48,57,44,52,48,46,49,48,56,57,48,56,93,44,91,45,57,48,46,49,51,52,50,56,49,44,52,48,46,48,54,50,53,50,52,93,44,91,45,57,48,46,50,56,55,56,51,55,44,52,48,46,48,54,51,55,56,52,93,44,91,45,57,48,46,51,53,52,53,50,52,44,52,48,46,49,50,52,50,49,55,93,44,91,45,57,48,46,53,49,51,55,52,55,44,51,57,46,57,56,55,56,57,49,93,44,91,45,57,48,46,53,56,51,53,51,52,44,51,57,46,56,55,54,55,53,93,44,91,45,56,57,46,57,57,52,52,48,53,44,51,57,46,56,55,50,56,54,93,44,91,45,56,57,46,57,57,52,53,48,54,44,51,57,46,57,48,49,57,50,53,93,44,91,45,56,57,46,57,57,53,48,57,44,52,48,46,49,48,56,57,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,55,34,44,34,78,65,77,69,34,58,34,82,111,99,107,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,48,49,49,44,34,98,101,100,115,34,58,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,50,51,55,49,51,44,51,51,46,55,53,50,56,48,56,93,44,91,45,56,52,46,49,49,48,49,50,52,44,51,51,46,54,50,53,49,49,93,44,91,45,56,52,46,49,56,52,49,52,51,44,51,51,46,54,52,54,49,53,55,93,44,91,45,56,52,46,48,52,52,52,57,51,44,51,51,46,53,50,53,55,55,54,93,44,91,45,56,51,46,57,51,48,56,54,51,44,51,51,46,54,53,49,56,50,51,93,44,91,45,56,51,46,57,49,52,56,50,51,44,51,51,46,55,52,52,50,48,51,93,44,91,45,56,51,46,57,56,50,48,51,51,44,51,51,46,55,56,54,48,53,52,93,44,91,45,56,52,46,48,50,51,55,49,51,44,51,51,46,55,53,50,56,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,74,117,110,105,97,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,53,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,51,57,55,52,57,44,52,48,46,54,51,56,51,55,56,93,44,91,45,55,55,46,48,51,53,53,52,57,44,52,48,46,54,55,54,57,49,56,93,44,91,45,55,55,46,50,56,55,57,52,49,44,52,48,46,54,57,51,53,57,53,93,44,91,45,55,55,46,52,57,55,53,48,54,44,52,48,46,53,56,49,55,52,93,44,91,45,55,55,46,55,53,50,49,50,44,52,48,46,51,55,56,53,52,53,93,44,91,45,55,55,46,55,48,51,48,51,44,52,48,46,50,54,51,53,55,54,93,44,91,45,55,55,46,54,55,49,55,54,49,44,52,48,46,50,56,57,56,50,53,93,44,91,45,55,55,46,53,52,48,49,52,49,44,52,48,46,51,57,57,50,50,49,93,44,91,45,55,55,46,50,56,57,53,57,50,44,52,48,46,53,49,56,52,53,55,93,44,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,44,91,45,55,54,46,57,51,57,55,52,57,44,52,48,46,54,51,56,51,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,77,99,75,101,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,56,48,54,44,34,98,101,100,115,34,58,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,48,56,49,50,56,44,52,49,46,57,57,57,52,49,53,93,44,91,45,55,56,46,57,49,56,56,53,53,44,52,49,46,57,57,56,49,49,57,93,44,91,45,55,56,46,57,53,54,48,53,54,44,52,49,46,54,50,51,56,54,51,93,44,91,45,55,56,46,52,56,51,52,48,57,44,52,49,46,54,50,57,56,57,56,93,44,91,45,55,56,46,52,49,57,49,49,56,44,52,49,46,54,48,50,49,56,56,93,44,91,45,55,56,46,50,48,51,52,50,50,44,52,49,46,54,49,56,49,53,55,93,44,91,45,55,56,46,50,48,54,54,48,52,44,52,49,46,57,57,57,53,57,53,93,44,91,45,55,56,46,51,48,56,49,50,56,44,52,49,46,57,57,57,52,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,71,97,114,118,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,50,51,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,51,50,52,51,54,44,51,52,46,56,53,52,52,57,54,93,44,91,45,57,55,46,54,54,56,48,57,57,44,51,52,46,56,53,53,49,54,52,93,44,91,45,57,55,46,54,54,56,53,49,50,44,51,52,46,54,56,49,51,52,93,44,91,45,57,55,46,53,54,51,48,48,52,44,51,52,46,54,56,49,49,56,53,93,44,91,45,57,55,46,53,54,50,51,50,51,44,51,52,46,53,48,55,48,51,54,93,44,91,45,57,55,46,51,53,50,49,56,51,44,51,52,46,53,48,54,55,57,54,93,44,91,45,57,55,46,49,52,51,57,55,51,44,51,52,46,53,48,54,54,48,54,93,44,91,45,57,55,46,49,52,50,54,55,49,44,51,52,46,54,51,55,49,50,54,93,44,91,45,57,54,46,57,51,50,52,53,50,44,51,52,46,54,51,54,56,49,50,93,44,91,45,57,54,46,57,51,50,52,51,54,44,51,52,46,56,53,52,52,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,117,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,50,56,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,53,52,56,54,54,44,52,50,46,48,49,53,56,55,53,93,44,91,45,57,54,46,53,53,53,49,55,50,44,52,49,46,55,52,50,48,49,56,93,44,91,45,57,54,46,52,52,52,55,56,53,44,52,49,46,54,56,51,54,51,51,93,44,91,45,57,54,46,49,50,50,54,48,52,44,52,49,46,54,56,51,48,52,93,44,91,45,57,54,46,48,54,52,56,57,55,44,52,49,46,55,57,49,54,55,51,93,44,91,45,57,54,46,49,51,57,48,48,56,44,52,49,46,56,54,54,50,55,55,93,44,91,45,57,54,46,49,50,57,49,56,54,44,52,49,46,57,54,53,49,51,54,93,44,91,45,57,54,46,50,55,51,49,50,44,52,50,46,48,52,55,49,53,56,93,44,91,45,57,54,46,51,48,57,54,52,53,44,52,50,46,48,49,53,49,56,55,93,44,91,45,57,54,46,53,53,52,56,54,54,44,52,50,46,48,49,53,56,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,117,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,52,53,53,44,34,98,101,100,115,34,58,50,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,52,56,49,55,51,55,44,51,55,46,48,48,48,49,50,55,93,44,91,45,49,48,56,46,51,55,57,51,48,51,44,51,54,46,57,57,57,54,48,56,93,44,91,45,49,48,57,46,48,52,53,49,55,50,44,51,54,46,57,57,56,57,55,55,93,44,91,45,49,48,57,46,48,52,54,48,54,55,44,51,54,46,48,48,50,55,48,49,93,44,91,45,49,48,55,46,54,50,54,53,49,49,44,51,54,46,48,48,48,50,56,56,93,44,91,45,49,48,55,46,54,50,52,50,56,51,44,51,54,46,50,49,57,56,48,57,93,44,91,45,49,48,55,46,54,49,56,49,56,49,44,51,54,46,56,48,52,50,54,55,93,44,91,45,49,48,55,46,52,53,49,52,52,53,44,51,54,46,57,48,52,48,51,54,93,44,91,45,49,48,55,46,52,50,49,50,50,51,44,51,55,46,48,48,48,50,50,51,93,44,91,45,49,48,55,46,52,56,49,55,51,55,44,51,55,46,48,48,48,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,79,114,108,101,97,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,49,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,54,56,55,49,49,44,52,51,46,54,51,51,52,50,56,93,44,91,45,55,56,46,52,54,53,53,48,53,44,52,51,46,49,50,56,54,49,57,93,44,91,45,55,55,46,57,57,55,50,57,44,52,51,46,49,51,50,57,56,49,93,44,91,45,55,55,46,57,57,51,57,56,50,44,52,51,46,54,51,49,50,51,52,93,44,91,45,55,56,46,52,54,56,55,49,49,44,52,51,46,54,51,51,52,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,101,32,83,111,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,49,54,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,49,52,54,57,44,51,50,46,50,51,55,53,50,54,93,44,91,45,57,51,46,54,54,54,52,55,50,44,51,50,46,51,49,55,52,52,52,93,44,91,45,57,51,46,55,54,52,55,54,51,44,51,50,46,51,52,53,54,52,54,93,44,91,45,57,51,46,57,53,49,48,56,53,44,51,50,46,49,57,53,53,52,53,93,44,91,45,57,52,46,48,52,50,53,57,56,44,51,50,46,49,57,54,48,48,53,93,44,91,45,57,52,46,48,49,53,54,51,44,51,49,46,57,55,57,56,53,54,93,44,91,45,57,51,46,56,55,57,48,54,49,44,51,49,46,56,52,52,50,56,55,93,44,91,45,57,51,46,52,52,49,49,55,49,44,51,49,46,56,52,53,50,51,51,93,44,91,45,57,51,46,51,53,53,52,53,50,44,51,49,46,57,51,50,50,50,50,93,44,91,45,57,51,46,53,52,49,51,53,51,44,51,50,46,49,48,53,56,56,93,44,91,45,57,51,46,53,50,51,52,49,54,44,51,50,46,49,55,54,57,57,49,93,44,91,45,57,51,46,54,49,52,54,57,44,51,50,46,50,51,55,53,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,70,114,101,115,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,56,49,51,48,44,34,98,101,100,115,34,58,51,48,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,48,50,50,51,54,51,44,51,55,46,53,56,53,55,51,55,93,44,91,45,49,49,57,46,51,49,50,49,56,54,44,51,55,46,51,53,50,55,50,53,93,44,91,45,49,49,57,46,51,51,48,53,55,51,44,51,55,46,50,48,53,55,57,49,93,44,91,45,49,49,57,46,51,56,54,53,50,49,44,51,55,46,49,52,57,53,51,93,44,91,45,49,49,57,46,53,53,57,52,49,50,44,51,55,46,49,52,51,54,49,57,93,44,91,45,49,49,57,46,53,54,50,57,55,57,44,51,55,46,48,54,52,48,57,53,93,44,91,45,49,49,57,46,54,57,48,55,55,57,44,51,55,46,48,49,49,57,56,55,93,44,91,45,49,49,57,46,56,49,51,55,51,52,44,51,54,46,56,53,48,52,49,50,93,44,91,45,49,50,48,46,48,55,57,52,53,56,44,51,54,46,56,50,53,51,52,53,93,44,91,45,49,50,48,46,49,56,56,56,51,44,51,54,46,55,55,54,52,48,56,93,44,91,45,49,50,48,46,51,55,48,50,53,54,44,51,54,46,55,56,52,57,52,93,44,91,45,49,50,48,46,53,52,49,54,57,54,44,51,55,46,48,52,52,53,48,53,93,44,91,45,49,50,48,46,57,49,56,55,51,49,44,51,54,46,55,52,48,51,56,49,93,44,91,45,49,50,48,46,54,48,51,55,48,54,44,51,54,46,52,56,56,50,52,50,93,44,91,45,49,50,48,46,53,57,54,53,54,50,44,51,54,46,51,50,56,52,56,56,93,44,91,45,49,50,48,46,54,55,56,53,56,50,44,51,54,46,50,54,55,51,49,57,93,44,91,45,49,50,48,46,54,52,56,55,56,52,44,51,54,46,49,48,55,57,57,93,44,91,45,49,50,48,46,51,49,53,48,54,56,44,51,53,46,57,48,55,49,56,54,93,44,91,45,49,49,57,46,57,53,57,50,49,44,51,54,46,49,56,49,52,48,51,93,44,91,45,49,49,57,46,57,53,57,50,50,55,44,51,54,46,52,48,48,57,55,53,93,44,91,45,49,49,57,46,54,54,54,50,57,44,51,54,46,52,49,56,57,54,93,44,91,45,49,49,57,46,53,55,51,49,57,52,44,51,54,46,52,56,56,56,51,53,93,44,91,45,49,49,57,46,52,54,54,51,50,50,44,51,54,46,53,55,53,50,51,56,93,44,91,45,49,49,57,46,51,48,53,49,48,50,44,51,54,46,53,55,51,55,50,53,93,44,91,45,49,49,57,46,51,48,52,54,50,53,44,51,54,46,54,54,48,54,48,54,93,44,91,45,49,49,56,46,57,56,52,55,55,57,44,51,54,46,54,53,55,49,52,55,93,44,91,45,49,49,56,46,57,56,50,52,52,49,44,51,54,46,55,52,49,54,52,54,93,44,91,45,49,49,56,46,51,54,48,53,56,54,44,51,54,46,55,52,52,55,55,51,93,44,91,45,49,49,56,46,51,54,48,56,51,49,44,51,54,46,56,56,55,55,51,52,93,44,91,45,49,49,56,46,52,50,50,53,57,53,44,51,55,46,48,50,52,51,54,93,44,91,45,49,49,56,46,53,48,51,49,48,51,44,51,55,46,48,57,53,50,50,49,93,44,91,45,49,49,56,46,54,53,52,53,57,51,44,51,55,46,49,52,49,56,50,54,93,44,91,45,49,49,56,46,55,49,54,48,49,54,44,51,55,46,51,50,56,50,48,56,93,44,91,45,49,49,56,46,55,56,54,55,51,54,44,51,55,46,51,52,51,51,56,93,44,91,45,49,49,56,46,55,55,53,48,49,52,44,51,55,46,52,54,51,48,53,50,93,44,91,45,49,49,57,46,48,50,50,51,54,51,44,51,55,46,53,56,53,55,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,69,108,98,101,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,49,50,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,55,51,52,49,44,51,52,46,50,56,56,56,54,52,93,44,91,45,56,50,46,57,56,48,57,48,53,44,51,52,46,50,49,49,53,48,53,93,44,91,45,56,51,46,48,55,56,48,48,52,44,51,52,46,50,50,51,54,48,54,93,44,91,45,56,50,46,57,55,54,50,57,52,44,51,52,46,48,52,51,50,49,57,93,44,91,45,56,50,46,55,55,57,53,48,54,44,51,51,46,57,55,49,49,50,52,93,44,91,45,56,50,46,54,52,53,52,53,49,44,51,51,46,57,56,52,49,57,53,93,44,91,45,56,50,46,53,54,52,52,57,49,44,51,51,46,57,53,53,55,51,51,93,44,91,45,56,50,46,53,57,52,54,51,49,44,51,52,46,48,49,51,55,57,54,93,44,91,45,56,50,46,55,52,50,49,48,51,44,51,52,46,50,49,49,57,48,51,93,44,91,45,56,50,46,55,55,51,52,49,44,51,52,46,50,56,56,56,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,114,98,111,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,56,50,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,49,48,50,52,49,44,51,50,46,49,52,54,54,53,49,93,44,91,45,56,53,46,52,50,56,52,55,54,44,51,50,46,48,49,52,57,53,49,93,44,91,45,56,53,46,53,56,55,51,52,52,44,51,49,46,57,57,55,51,53,53,93,44,91,45,56,53,46,54,53,55,54,54,56,44,51,49,46,56,56,48,50,55,53,93,44,91,45,56,53,46,54,54,50,54,57,50,44,51,49,46,55,56,51,51,49,57,93,44,91,45,56,53,46,55,52,56,50,53,49,44,51,49,46,54,49,56,48,52,56,93,44,91,45,56,53,46,52,49,54,52,51,55,44,51,49,46,54,49,57,52,54,54,93,44,91,45,56,53,46,52,49,54,48,51,56,44,51,49,46,55,48,54,54,54,52,93,44,91,45,56,53,46,50,49,54,48,55,54,44,51,49,46,55,48,50,52,48,57,93,44,91,45,56,53,46,49,50,55,51,50,57,44,51,49,46,55,54,50,53,54,51,93,44,91,45,56,53,46,49,52,49,49,51,44,51,49,46,55,56,48,52,54,51,93,44,91,45,56,53,46,48,54,56,50,51,44,51,49,46,57,57,49,56,53,55,93,44,91,45,56,53,46,48,53,54,48,50,57,44,51,50,46,48,54,51,48,53,53,93,44,91,45,56,53,46,49,56,53,48,54,55,44,51,50,46,48,54,49,55,48,56,93,44,91,45,56,53,46,50,53,55,55,52,55,44,51,50,46,49,52,56,50,53,49,93,44,91,45,56,53,46,52,49,48,50,52,49,44,51,50,46,49,52,54,54,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,108,97,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,55,55,56,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,48,49,57,57,56,44,51,52,46,56,51,53,50,54,56,93,44,91,45,55,56,46,56,48,53,56,51,52,44,51,52,46,54,56,57,53,54,93,44,91,45,55,56,46,56,54,56,57,54,49,44,51,52,46,52,56,52,55,55,56,93,44,91,45,55,56,46,54,54,55,53,56,56,44,51,52,46,52,54,57,54,52,53,93,44,91,45,55,56,46,52,52,53,51,50,44,51,52,46,51,55,55,52,93,44,91,45,55,56,46,50,53,54,48,56,53,44,51,52,46,51,57,57,52,54,57,93,44,91,45,55,56,46,49,55,54,53,48,49,44,51,52,46,52,54,53,51,53,54,93,44,91,45,55,56,46,50,53,52,52,52,49,44,51,52,46,53,53,51,53,57,53,93,44,91,45,55,56,46,51,50,52,53,50,44,51,52,46,54,54,54,48,57,53,93,44,91,45,55,56,46,52,57,52,55,48,53,44,51,52,46,56,53,54,49,56,50,93,44,91,45,55,56,46,57,48,49,57,57,56,44,51,52,46,56,51,53,50,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,48,50,51,53,57,44,51,54,46,53,48,48,53,53,49,93,44,91,45,49,48,51,46,48,52,49,55,49,51,44,51,54,46,53,48,48,52,51,57,93,44,91,45,49,48,51,46,48,52,49,48,54,50,44,51,54,46,48,53,53,50,50,54,93,44,91,45,49,48,50,46,49,54,51,48,49,53,44,51,54,46,48,53,53,50,52,57,93,44,91,45,49,48,50,46,49,54,50,52,54,51,44,51,54,46,53,48,48,51,50,54,93,44,91,45,49,48,51,46,48,48,50,51,53,57,44,51,54,46,53,48,48,53,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,83,97,110,103,97,109,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,54,54,49,44,34,98,101,100,115,34,58,49,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,57,52,52,48,53,44,51,57,46,56,55,50,56,54,93,44,91,45,56,57,46,57,56,52,55,52,53,44,51,57,46,55,49,56,48,55,57,93,44,91,45,56,57,46,57,50,54,48,51,55,44,51,57,46,53,50,50,49,48,52,93,44,91,45,56,57,46,55,48,49,54,54,49,44,51,57,46,53,50,51,51,49,54,93,44,91,45,56,57,46,53,51,51,54,53,53,44,51,57,46,53,50,52,53,57,50,93,44,91,45,56,57,46,53,51,53,48,50,56,44,51,57,46,54,52,49,49,51,56,93,44,91,45,56,57,46,52,48,57,52,55,53,44,51,57,46,55,52,51,53,51,93,44,91,45,56,57,46,50,49,55,52,55,51,44,51,57,46,56,49,51,54,54,54,93,44,91,45,56,57,46,50,49,55,56,52,54,44,51,57,46,57,49,54,57,57,93,44,91,45,56,57,46,52,48,52,57,56,52,44,51,57,46,57,49,56,49,56,55,93,44,91,45,56,57,46,53,55,56,50,56,57,44,51,57,46,57,55,54,49,50,55,93,44,91,45,56,57,46,54,57,56,50,53,57,44,51,57,46,57,55,53,51,48,57,93,44,91,45,56,57,46,55,54,57,49,54,56,44,51,57,46,57,48,50,51,53,93,44,91,45,56,57,46,57,57,52,53,48,54,44,51,57,46,57,48,49,57,50,53,93,44,91,45,56,57,46,57,57,52,52,48,53,44,51,57,46,56,55,50,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,114,97,105,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,57,51,44,34,98,101,100,115,34,58,50,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,48,55,55,51,51,44,51,54,46,57,57,57,51,49,49,93,44,91,45,57,53,46,52,51,49,55,53,56,44,51,54,46,57,52,50,53,57,51,93,44,91,45,57,53,46,52,51,49,53,55,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,51,50,56,49,55,44,51,54,46,53,49,48,50,52,93,44,91,45,57,53,46,48,48,53,55,51,44,51,54,46,53,48,57,56,57,93,44,91,45,57,52,46,57,57,57,52,48,51,44,51,54,46,54,55,48,54,51,49,93,44,91,45,57,53,46,48,48,55,54,50,44,51,54,46,57,57,57,53,49,52,93,44,91,45,57,53,46,48,55,51,53,48,52,44,51,54,46,57,57,57,53,53,50,93,44,91,45,57,53,46,52,48,55,55,51,51,44,51,54,46,57,57,57,51,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,54,51,52,44,34,98,101,100,115,34,58,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,48,48,50,49,51,44,51,54,46,49,51,56,53,54,49,93,44,91,45,56,53,46,50,51,53,55,53,55,44,51,54,46,49,48,53,55,53,50,93,44,91,45,56,53,46,50,54,52,50,48,54,44,51,53,46,57,55,57,49,53,52,93,44,91,45,56,53,46,50,50,50,53,50,52,44,51,53,46,56,55,55,51,54,52,93,44,91,45,56,53,46,50,54,57,51,53,57,44,51,53,46,55,57,51,51,56,56,93,44,91,45,56,53,46,50,55,50,54,54,52,44,51,53,46,55,56,55,55,49,56,93,44,91,45,56,53,46,50,53,51,53,49,56,44,51,53,46,55,54,54,57,50,55,93,44,91,45,56,53,46,50,53,52,48,54,50,44,51,53,46,55,54,53,54,49,49,93,44,91,45,56,52,46,57,49,54,48,54,50,44,51,53,46,55,54,49,57,51,57,93,44,91,45,56,52,46,55,56,49,57,48,49,44,51,53,46,56,50,53,93,44,91,45,56,52,46,54,56,48,54,51,51,44,51,53,46,57,48,56,52,53,52,93,44,91,45,56,52,46,55,50,48,55,50,55,44,51,53,46,57,57,52,57,49,52,93,44,91,45,56,52,46,57,48,55,55,53,51,44,51,54,46,49,53,54,50,57,51,93,44,91,45,56,53,46,49,48,48,50,49,51,44,51,54,46,49,51,56,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,79,116,115,101,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,51,57,55,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,53,55,52,53,50,44,52,53,46,49,49,54,55,48,55,93,44,91,45,56,52,46,56,52,55,51,48,57,44,52,52,46,56,53,56,48,51,55,93,44,91,45,56,52,46,51,55,49,55,51,55,44,52,52,46,56,53,53,48,51,57,93,44,91,45,56,52,46,51,54,54,54,49,52,44,52,53,46,49,57,56,55,51,55,93,44,91,45,56,52,46,55,51,52,51,48,51,44,52,53,46,50,48,49,57,51,54,93,44,91,45,56,52,46,56,53,55,52,53,50,44,52,53,46,49,49,54,55,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,83,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,56,56,48,49,44,52,50,46,53,54,49,55,52,50,93,44,91,45,57,53,46,51,50,50,51,53,55,44,52,50,46,52,55,52,55,51,55,93,44,91,45,57,53,46,51,50,51,52,57,55,44,52,50,46,50,49,48,57,51,50,93,44,91,45,57,53,46,48,57,48,56,53,49,44,52,50,46,50,49,48,52,48,53,93,44,91,45,57,52,46,56,53,56,52,49,50,44,52,50,46,50,48,57,54,57,50,93,44,91,45,57,52,46,56,53,54,54,56,57,44,52,50,46,52,55,51,57,57,54,93,44,91,45,57,52,46,57,49,52,52,56,53,44,52,50,46,53,54,48,51,48,57,93,44,91,45,57,53,46,51,56,56,48,49,44,52,50,46,53,54,49,55,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,69,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,50,52,55,51,57,49,44,51,57,46,55,48,52,51,53,93,44,91,45,49,49,49,46,50,52,55,55,52,56,44,51,57,46,52,54,55,49,57,57,93,44,91,45,49,49,49,46,51,48,48,57,48,53,44,51,57,46,52,54,55,50,51,55,93,44,91,45,49,49,49,46,50,57,57,51,54,44,51,57,46,48,51,50,50,54,52,93,44,91,45,49,49,49,46,51,48,53,54,54,53,44,51,56,46,53,49,48,49,54,57,93,44,91,45,49,49,49,46,51,48,53,55,48,49,44,51,56,46,52,57,57,57,57,56,93,44,91,45,49,49,48,46,48,50,53,52,48,50,44,51,56,46,52,57,57,57,56,49,93,44,91,45,49,48,57,46,57,57,52,50,56,51,44,51,56,46,53,50,55,49,49,56,93,44,91,45,49,49,48,46,48,56,49,57,51,57,44,51,56,46,55,53,54,54,54,54,93,44,91,45,49,49,48,46,49,54,50,53,50,57,44,51,56,46,56,54,51,57,50,50,93,44,91,45,49,49,48,46,49,53,54,50,50,50,44,51,57,46,48,51,50,54,53,52,93,44,91,45,49,49,48,46,48,55,55,50,55,44,51,57,46,50,55,53,56,54,57,93,44,91,45,49,49,48,46,48,50,50,49,54,54,44,51,57,46,51,53,50,48,49,56,93,44,91,45,49,49,48,46,48,50,52,49,49,56,44,51,57,46,52,54,57,50,54,57,93,44,91,45,49,49,49,46,48,55,55,53,52,53,44,51,57,46,52,54,57,55,52,51,93,44,91,45,49,49,49,46,48,56,53,51,53,53,44,51,57,46,53,50,49,49,55,93,44,91,45,49,49,49,46,50,52,55,51,57,49,44,51,57,46,55,48,52,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,70,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,56,51,54,54,49,52,44,52,57,46,48,48,48,48,56,51,93,44,91,45,49,49,56,46,56,53,49,57,54,44,52,55,46,57,53,55,57,48,54,93,44,91,45,49,49,56,46,55,51,48,51,50,53,44,52,55,46,57,48,48,49,54,57,93,44,91,45,49,49,56,46,53,51,49,50,57,55,44,52,55,46,56,55,52,56,55,56,93,44,91,45,49,49,56,46,51,52,48,57,51,56,44,52,55,46,56,57,52,51,49,54,93,44,91,45,49,49,56,46,52,48,48,56,48,55,44,52,56,46,48,50,56,54,56,50,93,44,91,45,49,49,56,46,50,51,51,52,57,56,44,52,56,46,48,54,51,52,56,53,93,44,91,45,49,49,56,46,50,52,56,54,48,54,44,52,56,46,49,51,52,50,53,53,93,44,91,45,49,49,56,46,49,51,57,55,57,49,44,52,56,46,50,54,55,51,48,56,93,44,91,45,49,49,56,46,50,48,54,53,48,55,44,52,56,46,52,55,48,50,57,54,93,44,91,45,49,49,56,46,49,48,52,57,54,44,52,56,46,54,53,51,53,48,51,93,44,91,45,49,49,56,46,50,49,52,52,56,51,44,52,56,46,56,56,56,49,54,49,93,44,91,45,49,49,56,46,49,57,55,51,55,53,44,52,57,46,48,48,48,48,54,56,93,44,91,45,49,49,56,46,56,51,54,54,49,52,44,52,57,46,48,48,48,48,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,87,105,98,97,117,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,52,50,48,51,52,55,44,52,55,46,51,53,52,52,51,53,93,44,91,45,49,48,52,46,51,52,49,54,56,44,52,55,46,50,52,53,51,57,50,93,44,91,45,49,48,52,46,51,48,54,48,54,50,44,52,55,46,48,52,50,48,52,54,93,44,91,45,49,48,52,46,52,49,50,49,50,52,44,52,54,46,57,48,52,48,48,51,93,44,91,45,49,48,52,46,54,48,51,55,54,54,44,52,54,46,56,54,48,56,53,51,93,44,91,45,49,48,52,46,54,48,54,57,48,51,44,52,54,46,54,56,52,57,50,52,93,44,91,45,49,48,52,46,52,49,55,57,57,56,44,52,54,46,54,56,52,56,57,50,93,44,91,45,49,48,52,46,51,53,52,56,51,53,44,52,54,46,54,52,49,52,48,57,93,44,91,45,49,48,52,46,48,52,53,50,51,52,44,52,54,46,54,52,49,53,48,52,93,44,91,45,49,48,52,46,48,52,52,57,54,56,44,52,55,46,51,51,48,49,52,49,93,44,91,45,49,48,52,46,48,52,52,56,55,49,44,52,55,46,51,57,55,48,54,51,93,44,91,45,49,48,52,46,49,51,49,56,54,51,44,52,55,46,51,53,51,57,48,49,93,44,91,45,49,48,52,46,52,50,48,51,52,55,44,52,55,46,51,53,52,52,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,56,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,57,50,53,57,54,56,44,51,52,46,50,53,57,57,57,93,44,91,45,49,48,53,46,57,50,52,54,56,53,44,51,51,46,56,50,53,54,50,52,93,44,91,45,49,48,54,46,48,53,50,54,54,50,44,51,51,46,56,50,53,54,48,54,93,44,91,45,49,48,54,46,48,53,50,55,49,56,44,51,51,46,54,53,48,50,57,55,93,44,91,45,49,48,54,46,51,55,51,54,54,44,51,51,46,54,54,48,53,48,52,93,44,91,45,49,48,54,46,51,55,50,55,57,55,44,51,51,46,52,55,57,56,55,53,93,44,91,45,49,48,54,46,51,52,53,55,49,44,51,51,46,51,57,48,53,57,53,93,44,91,45,49,48,53,46,55,50,55,49,55,49,44,51,51,46,51,57,48,54,51,51,93,44,91,45,49,48,53,46,55,50,53,57,53,55,44,51,51,46,51,48,52,56,51,52,93,44,91,45,49,48,53,46,51,49,55,51,55,54,44,51,51,46,51,48,53,57,55,55,93,44,91,45,49,48,53,46,51,49,54,57,54,56,44,51,51,46,49,51,50,51,48,51,93,44,91,45,49,48,52,46,57,48,53,52,50,52,44,51,51,46,49,51,56,57,48,52,93,44,91,45,49,48,52,46,56,57,50,52,51,51,44,51,51,46,51,57,56,49,57,57,93,44,91,45,49,48,52,46,56,57,51,51,55,55,44,51,52,46,48,56,56,52,48,55,93,44,91,45,49,48,52,46,56,57,49,55,52,53,44,51,52,46,51,52,55,48,52,51,93,44,91,45,49,48,53,46,51,49,51,48,55,50,44,51,52,46,51,52,55,50,48,53,93,44,91,45,49,48,53,46,51,49,51,50,49,56,44,51,52,46,50,54,48,48,51,49,93,44,91,45,49,48,53,46,57,50,53,57,54,56,44,51,52,46,50,53,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,53,57,57,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,49,49,51,48,57,44,51,54,46,49,54,49,55,54,51,93,44,91,45,57,53,46,49,49,56,53,44,51,54,46,49,54,49,54,51,93,44,91,45,57,53,46,50,48,55,57,52,54,44,51,54,46,48,55,52,55,48,56,93,44,91,45,57,53,46,50,56,50,57,57,50,44,51,53,46,57,48,55,55,48,52,93,44,91,45,57,53,46,50,54,53,54,55,57,44,51,53,46,56,49,51,50,54,54,93,44,91,45,57,53,46,49,50,55,49,54,51,44,51,53,46,56,49,50,55,53,53,93,44,91,45,57,53,46,49,50,55,50,49,51,44,51,53,46,54,51,56,56,56,56,93,44,91,45,57,52,46,56,48,55,55,53,55,44,51,53,46,54,51,56,53,52,54,93,44,91,45,57,52,46,55,57,55,52,48,57,44,51,54,46,49,54,49,54,53,50,93,44,91,45,57,53,46,48,49,49,51,48,57,44,51,54,46,49,54,49,55,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,89,101,108,108,111,119,32,77,101,100,105,99,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,54,56,44,34,98,101,100,115,34,58,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,53,49,52,54,50,44,52,52,46,56,48,53,53,55,93,44,91,45,57,54,46,52,53,49,53,54,54,44,52,52,46,54,51,49,51,52,57,93,44,91,45,57,54,46,48,57,50,57,53,44,52,52,46,54,51,48,52,56,54,93,44,91,45,57,53,46,54,48,52,48,48,49,44,52,52,46,54,50,57,57,52,53,93,44,91,45,57,53,46,53,57,52,56,49,55,44,52,52,46,53,52,50,51,48,53,93,44,91,45,57,53,46,51,54,48,52,44,52,52,46,53,52,49,55,54,50,93,44,91,45,57,53,46,51,54,48,49,55,55,44,52,52,46,54,57,56,53,52,93,44,91,45,57,53,46,52,56,50,56,52,51,44,52,52,46,55,53,50,53,48,53,93,44,91,45,57,53,46,55,51,54,54,57,54,44,52,52,46,57,51,54,48,52,93,44,91,45,57,53,46,56,52,55,52,53,50,44,52,52,46,56,57,49,55,57,57,93,44,91,45,57,53,46,56,52,57,48,48,57,44,52,52,46,56,48,53,51,52,55,93,44,91,45,57,54,46,52,53,49,52,54,50,44,52,52,46,56,48,53,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,49,34,44,34,78,65,77,69,34,58,34,72,117,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,49,53,50,44,34,98,101,100,115,34,58,50,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,57,53,52,49,51,44,51,51,46,51,53,49,57,51,54,93,44,91,45,57,54,46,50,57,55,50,50,55,44,51,50,46,57,56,49,55,53,50,93,44,91,45,57,54,46,50,57,55,51,50,50,44,51,50,46,56,52,49,55,50,51,93,44,91,45,57,54,46,48,55,54,56,48,49,44,51,50,46,56,51,56,52,56,57,93,44,91,45,57,53,46,57,51,52,52,51,51,44,51,50,46,56,51,55,50,49,55,93,44,91,45,57,53,46,57,52,53,51,44,51,50,46,57,55,57,56,55,55,93,44,91,45,57,53,46,56,54,50,53,50,49,44,51,50,46,57,55,57,53,55,49,93,44,91,45,57,53,46,56,54,49,55,55,56,44,51,51,46,50,49,57,51,51,93,44,91,45,57,53,46,56,53,56,55,50,51,44,51,51,46,52,48,57,53,51,93,44,91,45,57,54,46,50,57,53,52,49,51,44,51,51,46,51,53,49,57,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,51,53,34,44,34,78,65,77,69,34,58,34,77,105,116,99,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,54,54,48,54,50,54,44,51,50,46,53,50,53,51,49,50,93,44,91,45,49,48,49,46,49,55,52,53,54,50,44,51,50,46,53,50,55,55,48,51,93,44,91,45,49,48,49,46,49,55,52,53,55,49,44,51,50,46,53,50,52,49,49,50,93,44,91,45,49,48,49,46,49,56,51,57,57,55,44,51,50,46,48,56,55,50,48,56,93,44,91,45,49,48,48,46,56,50,49,53,57,52,44,51,50,46,48,56,54,54,49,93,44,91,45,49,48,48,46,54,54,53,51,53,51,44,51,50,46,48,56,53,52,48,55,93,44,91,45,49,48,48,46,54,54,48,54,50,54,44,51,50,46,53,50,53,51,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,57,57,34,44,34,78,65,77,69,34,58,34,87,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,56,49,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,48,56,57,53,55,44,51,50,46,57,54,50,53,55,50,93,44,91,45,57,53,46,54,54,53,51,56,57,44,51,50,46,57,54,48,52,51,52,93,44,91,45,57,53,46,54,51,53,48,49,55,44,51,50,46,55,50,48,51,56,93,44,91,45,57,53,46,53,57,52,53,52,49,44,51,50,46,54,56,55,48,50,54,93,44,91,45,57,53,46,53,49,48,57,52,53,44,51,50,46,54,50,48,51,50,56,93,44,91,45,57,53,46,49,53,51,52,49,44,51,50,46,53,55,48,49,49,53,93,44,91,45,57,53,46,49,53,50,49,49,44,51,50,46,57,48,50,54,52,49,93,44,91,45,57,53,46,49,53,50,50,48,54,44,51,51,46,48,49,51,52,53,93,44,91,45,57,53,46,51,48,56,57,53,55,44,51,50,46,57,54,50,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,79,115,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,51,49,49,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,53,55,53,53,54,44,51,54,46,53,57,51,56,55,50,93,44,91,45,57,55,46,48,48,57,55,56,53,44,51,54,46,53,48,54,57,51,53,93,44,91,45,57,54,46,57,52,48,50,51,53,44,51,54,46,52,53,53,53,50,53,93,44,91,45,57,54,46,55,51,55,50,51,57,44,51,54,46,53,53,48,48,56,56,93,44,91,45,57,54,46,55,49,48,55,54,57,44,51,54,46,52,51,55,54,53,54,93,44,91,45,57,54,46,54,51,53,55,50,55,44,51,54,46,52,50,53,57,48,56,93,44,91,45,57,54,46,53,49,53,50,50,57,44,51,54,46,50,57,56,51,51,50,93,44,91,45,57,54,46,52,51,51,56,49,50,44,51,54,46,50,56,53,56,56,57,93,44,91,45,57,54,46,50,54,56,50,56,55,44,51,54,46,49,54,49,57,56,93,44,91,45,57,54,46,48,48,49,50,50,54,44,51,54,46,49,54,49,50,57,54,93,44,91,45,57,54,46,48,48,49,49,55,49,44,51,54,46,52,50,51,54,56,54,93,44,91,45,57,54,46,48,48,48,56,49,44,51,54,46,57,57,56,56,54,93,44,91,45,57,54,46,53,50,53,53,56,50,44,51,54,46,57,57,56,55,49,93,44,91,45,57,54,46,55,52,57,56,51,56,44,51,54,46,57,57,56,57,56,56,93,44,91,45,57,54,46,55,53,50,51,55,53,44,51,54,46,55,56,50,48,57,50,93,44,91,45,57,54,46,56,56,57,52,55,53,44,51,54,46,55,53,49,50,51,93,44,91,45,57,54,46,57,51,49,57,52,51,44,51,54,46,54,56,54,48,57,55,93,44,91,45,57,55,46,48,54,52,49,48,55,44,51,54,46,54,56,52,50,48,55,93,44,91,45,57,55,46,48,53,55,53,53,54,44,51,54,46,53,57,51,56,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,54,54,56,44,34,98,101,100,115,34,58,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,57,50,51,54,53,44,51,53,46,50,48,54,54,57,52,93,44,91,45,56,52,46,51,50,49,56,50,49,44,51,52,46,57,56,56,52,48,56,93,44,91,45,56,52,46,49,50,57,52,52,56,44,51,52,46,57,56,55,53,49,52,93,44,91,45,56,52,46,48,48,53,49,51,50,44,51,52,46,57,56,55,49,55,53,93,44,91,45,56,51,46,56,52,48,55,51,51,44,51,53,46,49,52,51,56,52,49,93,44,91,45,56,51,46,55,51,56,49,50,57,44,51,53,46,49,53,53,57,53,93,44,91,45,56,51,46,55,48,50,55,55,50,44,51,53,46,50,52,56,53,50,93,44,91,45,56,51,46,56,51,49,52,50,57,44,51,53,46,50,53,54,49,49,55,93,44,91,45,56,51,46,57,53,56,54,53,50,44,51,53,46,50,49,55,48,52,93,44,91,45,56,52,46,48,50,57,48,54,55,44,51,53,46,50,57,50,50,52,56,93,44,91,45,56,52,46,50,49,49,51,57,53,44,51,53,46,50,54,53,54,50,49,93,44,91,45,56,52,46,50,57,50,51,54,53,44,51,53,46,50,48,54,54,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,77,101,99,111,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,50,54,52,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,44,91,45,56,53,46,53,54,50,51,52,56,44,52,51,46,52,54,56,49,51,93,44,91,45,56,53,46,48,56,52,57,57,54,44,52,51,46,52,54,54,49,57,93,44,91,45,56,53,46,48,56,56,56,49,49,44,52,51,46,56,49,51,54,55,54,93,44,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,52,56,51,44,34,98,101,100,115,34,58,52,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,53,54,51,53,54,49,44,51,55,46,54,56,52,56,52,52,93,44,91,45,56,50,46,54,50,52,48,57,49,44,51,55,46,53,48,54,50,55,53,93,44,91,45,56,50,46,53,56,56,54,50,55,44,51,55,46,52,52,54,50,53,57,93,44,91,45,56,50,46,55,49,48,56,48,53,44,51,55,46,50,56,53,51,50,51,93,44,91,45,56,50,46,55,51,50,54,57,51,44,51,55,46,50,55,49,53,48,50,93,44,91,45,56,50,46,53,54,53,51,55,57,44,51,55,46,49,57,54,48,57,57,93,44,91,45,56,50,46,53,53,51,56,55,52,44,51,55,46,50,48,50,56,51,51,93,44,91,45,56,50,46,51,49,52,49,57,53,44,51,55,46,50,57,54,48,55,53,93,44,91,45,56,49,46,57,54,56,48,49,50,44,51,55,46,53,51,56,48,51,53,93,44,91,45,56,50,46,49,49,55,51,48,52,44,51,55,46,53,53,57,50,50,54,93,44,91,45,56,50,46,51,51,51,49,51,54,44,51,55,46,55,52,48,56,52,56,93,44,91,45,56,50,46,52,53,54,49,51,52,44,51,55,46,54,54,56,55,57,53,93,44,91,45,56,50,46,53,54,51,53,54,49,44,51,55,46,54,56,52,56,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,52,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,54,55,50,54,44,51,48,46,50,54,48,52,52,93,44,91,45,56,51,46,51,55,48,56,57,44,50,57,46,56,56,55,57,51,52,93,44,91,45,56,51,46,51,49,56,56,53,57,44,50,57,46,56,50,50,54,50,51,93,44,91,45,56,50,46,57,50,48,54,48,56,44,50,57,46,56,50,52,49,52,51,93,44,91,45,56,50,46,57,49,56,55,48,56,44,50,57,46,56,50,52,48,56,51,93,44,91,45,56,50,46,57,48,51,57,53,54,44,50,57,46,56,50,52,50,57,52,93,44,91,45,56,50,46,56,55,57,56,48,50,44,50,57,46,56,56,54,56,52,55,93,44,91,45,56,50,46,57,54,51,49,49,50,44,50,57,46,57,57,51,48,53,93,44,91,45,56,51,46,49,54,50,52,53,55,44,51,48,46,49,49,48,48,50,50,93,44,91,45,56,51,46,50,50,54,51,54,44,51,48,46,49,49,52,54,50,49,93,44,91,45,56,51,46,50,52,55,50,53,51,44,51,48,46,50,54,48,54,55,93,44,91,45,56,51,46,51,54,55,50,54,44,51,48,46,50,54,48,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,97,116,97,119,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,55,50,57,44,34,98,101,100,115,34,58,54,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,51,53,52,48,51,44,51,53,46,53,54,56,49,51,55,93,44,91,45,56,48,46,57,54,48,48,50,53,44,51,53,46,53,52,55,48,50,93,44,91,45,56,48,46,57,57,52,52,52,53,44,51,53,46,55,48,50,49,49,93,44,91,45,56,49,46,49,48,57,53,48,55,44,51,53,46,55,55,54,53,57,52,93,44,91,45,56,49,46,49,52,50,51,51,56,44,51,53,46,56,50,55,52,51,52,93,44,91,45,56,49,46,51,51,52,50,55,50,44,51,53,46,55,57,54,50,56,49,93,44,91,45,56,49,46,51,54,51,55,57,54,44,51,53,46,55,54,55,56,48,50,93,44,91,45,56,49,46,53,51,53,52,48,51,44,51,53,46,53,54,56,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,66,114,101,97,116,104,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,49,54,44,34,98,101,100,115,34,58,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,52,56,54,57,50,44,51,55,46,54,54,57,54,49,54,93,44,91,45,56,51,46,52,49,56,52,55,52,44,51,55,46,54,57,48,55,50,57,93,44,91,45,56,51,46,53,50,50,51,48,56,44,51,55,46,54,51,56,53,49,54,93,44,91,45,56,51,46,53,55,57,49,56,54,44,51,55,46,53,48,54,50,52,57,93,44,91,45,56,51,46,53,52,55,54,50,56,44,51,55,46,51,51,52,52,49,56,93,44,91,45,56,51,46,52,48,51,57,56,56,44,51,55,46,51,51,56,51,51,50,93,44,91,45,56,51,46,49,57,57,55,51,52,44,51,55,46,52,49,52,54,54,93,44,91,45,56,51,46,49,50,52,51,52,56,44,51,55,46,52,48,52,57,55,51,93,44,91,45,56,51,46,48,53,48,50,48,49,44,51,55,46,53,50,53,51,49,52,93,44,91,45,56,50,46,57,52,56,53,52,52,44,51,55,46,53,48,51,49,54,55,93,44,91,45,56,51,46,48,56,57,55,57,54,44,51,55,46,54,51,50,49,54,55,93,44,91,45,56,51,46,50,52,56,54,57,50,44,51,55,46,54,54,57,54,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,67,104,105,108,100,114,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,54,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,52,49,53,56,57,53,44,51,52,46,55,52,55,53,50,53,93,44,91,45,49,48,48,46,52,49,55,55,56,51,44,51,52,46,51,49,51,53,50,52,93,44,91,45,57,57,46,57,57,55,55,50,44,51,52,46,51,49,49,56,50,57,93,44,91,45,57,57,46,57,57,55,53,48,49,44,51,52,46,53,54,48,53,55,52,93,44,91,45,49,48,48,46,48,48,48,51,56,49,44,51,52,46,55,52,54,51,53,56,93,44,91,45,49,48,48,46,52,49,53,56,57,53,44,51,52,46,55,52,55,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,82,105,112,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,49,53,57,50,54,44,51,54,46,56,50,51,54,55,50,93,44,91,45,57,49,46,49,50,54,53,50,57,44,51,54,46,52,57,55,55,49,50,93,44,91,45,57,48,46,55,56,52,52,50,52,44,51,54,46,52,57,56,53,51,52,93,44,91,45,57,48,46,53,55,54,49,55,57,44,51,54,46,52,57,56,53,52,55,93,44,91,45,57,48,46,53,57,50,49,54,54,44,51,54,46,54,55,57,51,54,56,93,44,91,45,57,48,46,54,54,50,54,49,55,44,51,54,46,56,49,49,52,53,51,93,44,91,45,57,49,46,49,49,53,57,50,54,44,51,54,46,56,50,51,54,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,84,97,122,101,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,56,53,50,44,34,98,101,100,115,34,58,49,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,53,52,57,57,52,44,52,48,46,55,52,55,54,51,55,93,44,91,45,56,57,46,54,53,56,48,48,51,44,52,48,46,53,54,55,52,51,56,93,44,91,45,56,57,46,56,55,50,52,54,51,44,52,48,46,53,49,51,49,50,55,93,44,91,45,56,57,46,57,50,52,54,56,44,52,48,46,52,51,53,57,50,49,93,44,91,45,56,57,46,55,49,55,49,48,52,44,52,48,46,52,51,53,54,53,53,93,44,91,45,56,57,46,55,49,52,57,50,55,44,52,48,46,51,49,57,50,49,56,93,44,91,45,56,57,46,54,48,50,57,55,57,44,52,48,46,51,50,48,49,50,57,93,44,91,45,56,57,46,50,54,51,55,52,44,52,48,46,51,50,53,51,52,52,93,44,91,45,56,57,46,50,54,57,51,57,55,44,52,48,46,53,57,52,51,49,56,93,44,91,45,56,57,46,51,51,48,48,57,50,44,52,48,46,55,52,56,50,53,55,93,44,91,45,56,57,46,53,53,52,57,57,52,44,52,48,46,55,52,55,54,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,32,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,55,57,56,48,49,44,51,48,46,54,50,57,50,53,56,93,44,91,45,49,48,51,46,57,48,49,48,49,44,51,48,46,52,49,50,49,57,93,44,91,45,49,48,51,46,56,48,48,54,56,44,51,48,46,52,49,50,53,50,55,93,44,91,45,49,48,51,46,52,51,57,57,55,54,44,51,48,46,54,54,53,57,51,57,93,44,91,45,49,48,51,46,53,56,53,48,56,52,44,51,48,46,55,54,54,52,55,93,44,91,45,49,48,52,46,49,48,50,51,53,49,44,51,49,46,49,48,53,50,48,51,93,44,91,45,49,48,52,46,57,49,55,49,54,51,44,51,48,46,54,54,51,54,50,54,93,44,91,45,49,48,52,46,57,55,57,56,48,49,44,51,48,46,54,50,57,50,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,55,56,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,55,56,34,44,34,78,65,77,69,34,58,34,76,101,120,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,54,49,53,56,50,44,51,55,46,55,56,54,51,53,54,93,44,91,45,55,57,46,52,53,53,54,54,55,44,51,55,46,55,54,53,50,49,57,93,44,91,45,55,57,46,52,50,48,56,50,52,44,51,55,46,55,56,56,57,57,56,93,44,91,45,55,57,46,52,51,55,51,51,55,44,51,55,46,55,57,52,55,56,52,93,44,91,45,55,57,46,52,54,49,53,56,50,44,51,55,46,55,56,54,51,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,83,104,97,114,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,53,48,48,48,50,44,51,54,46,52,57,55,54,53,93,44,91,45,57,49,46,52,53,52,52,51,55,44,51,54,46,51,51,53,52,54,53,93,44,91,45,57,49,46,53,54,53,56,54,54,44,51,54,46,51,51,55,52,93,44,91,45,57,49,46,53,54,54,48,55,56,44,51,54,46,50,52,57,57,52,53,93,44,91,45,57,49,46,54,57,49,52,51,53,44,51,54,46,50,53,51,51,48,49,93,44,91,45,57,49,46,54,56,50,50,55,55,44,51,54,46,48,48,48,53,51,53,93,44,91,45,57,49,46,55,49,48,52,56,51,44,51,53,46,57,52,49,55,53,56,93,44,91,45,57,49,46,52,54,51,49,57,56,44,51,53,46,57,51,54,56,49,93,44,91,45,57,49,46,51,53,55,50,51,44,51,53,46,56,57,48,54,50,49,93,44,91,45,57,49,46,51,52,57,56,51,52,44,51,54,46,50,51,48,57,54,55,93,44,91,45,57,49,46,50,53,56,57,50,44,51,54,46,50,53,55,56,56,93,44,91,45,57,49,46,50,55,52,57,52,44,51,54,46,51,55,52,49,50,93,44,91,45,57,49,46,52,48,55,49,51,56,44,51,54,46,52,57,55,48,56,49,93,44,91,45,57,49,46,52,53,48,48,48,50,44,51,54,46,52,57,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,76,97,114,105,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,49,54,49,44,34,98,101,100,115,34,58,55,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,56,53,52,57,50,54,44,52,48,46,52,56,54,50,53,50,93,44,91,45,49,48,53,46,54,53,51,51,50,49,44,52,48,46,50,54,48,52,53,55,93,44,91,45,49,48,53,46,48,53,53,48,56,57,44,52,48,46,50,54,49,55,57,51,93,44,91,45,49,48,52,46,57,52,53,53,53,49,44,52,48,46,51,52,57,48,57,57,93,44,91,45,49,48,52,46,57,52,51,51,55,49,44,52,48,46,57,57,56,50,49,51,93,44,91,45,49,48,53,46,50,55,54,56,54,44,52,48,46,57,57,56,49,55,50,93,44,91,45,49,48,54,46,49,57,48,53,53,52,44,52,48,46,57,57,55,53,55,56,93,44,91,45,49,48,54,46,49,56,53,51,48,55,44,52,48,46,57,51,51,57,55,51,93,44,91,45,49,48,54,46,48,53,51,55,55,57,44,52,48,46,56,49,50,54,54,50,93,44,91,45,49,48,53,46,56,53,52,57,50,54,44,52,48,46,52,56,54,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,84,121,114,114,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,48,50,50,54,48,55,44,51,54,46,48,57,54,55,50,53,93,44,91,45,55,54,46,49,53,55,57,53,51,44,51,54,46,48,53,57,53,49,55,93,44,91,45,55,54,46,51,53,56,51,57,51,44,51,54,46,48,50,48,48,49,57,93,44,91,45,55,54,46,51,53,51,54,54,57,44,51,53,46,56,54,49,51,54,53,93,44,91,45,55,54,46,52,48,53,57,55,49,44,51,53,46,54,57,55,53,55,57,93,44,91,45,55,54,46,48,50,55,52,55,57,44,51,53,46,54,54,56,56,52,57,93,44,91,45,55,54,46,48,48,56,51,52,56,44,51,53,46,56,57,53,56,48,50,93,44,91,45,55,53,46,57,53,52,51,55,52,44,51,53,46,57,57,48,48,54,52,93,44,91,45,55,53,46,56,52,48,48,52,54,44,51,54,46,48,50,56,56,51,52,93,44,91,45,55,53,46,57,48,54,50,57,53,44,51,54,46,48,56,53,56,55,55,93,44,91,45,55,54,46,48,50,50,54,48,55,44,51,54,46,48,57,54,55,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,82,105,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,55,54,53,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,50,52,51,50,55,44,52,52,46,53,52,51,54,49,56,93,44,91,45,57,51,46,53,50,53,50,51,49,44,52,52,46,49,57,54,49,51,52,93,44,91,45,57,51,46,52,48,54,53,54,53,44,52,52,46,49,57,54,51,55,55,93,44,91,45,57,51,46,48,52,53,57,49,44,52,52,46,49,57,54,55,49,54,93,44,91,45,57,51,46,48,52,49,49,53,57,44,52,52,46,49,57,54,55,50,54,93,44,91,45,57,51,46,48,51,57,52,56,53,44,52,52,46,52,55,49,56,55,49,93,44,91,45,57,51,46,50,56,49,54,56,54,44,52,52,46,52,55,49,57,57,56,93,44,91,45,57,51,46,50,56,49,53,50,49,44,52,52,46,53,52,51,57,53,55,93,44,91,45,57,51,46,53,50,52,51,50,55,44,52,52,46,53,52,51,54,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,57,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,57,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,54,52,50,56,55,44,51,56,46,57,57,50,55,54,50,93,44,91,45,57,49,46,50,54,52,57,50,55,44,51,56,46,56,52,51,56,51,51,93,44,91,45,57,49,46,52,49,53,56,51,50,44,51,56,46,56,52,53,51,93,44,91,45,57,49,46,52,49,56,54,51,55,44,51,56,46,55,48,57,55,55,56,93,44,91,45,57,49,46,51,54,57,49,57,50,44,51,56,46,54,57,57,51,50,52,93,44,91,45,57,49,46,51,49,51,48,57,51,44,51,56,46,55,48,54,55,49,53,93,44,91,45,57,49,46,49,51,50,53,51,53,44,51,56,46,53,57,56,50,55,57,93,44,91,45,57,48,46,57,54,52,52,54,49,44,51,56,46,53,52,55,53,52,53,93,44,91,45,57,48,46,57,53,56,53,51,54,44,51,56,46,56,55,48,56,54,53,93,44,91,45,57,49,46,49,49,49,50,53,49,44,51,56,46,56,55,50,55,48,57,93,44,91,45,57,49,46,50,54,52,50,56,55,44,51,56,46,57,57,50,55,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,55,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,52,50,55,44,34,98,101,100,115,34,58,55,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,55,52,52,54,50,44,51,54,46,57,57,57,55,54,54,93,44,91,45,56,54,46,54,49,49,53,56,54,44,51,54,46,56,56,51,48,53,55,93,44,91,45,56,54,46,53,56,51,50,56,57,44,51,54,46,56,51,48,50,56,50,93,44,91,45,56,54,46,52,48,53,55,54,57,44,51,54,46,55,55,54,49,56,55,93,44,91,45,56,54,46,49,54,54,55,52,44,51,54,46,57,51,52,48,49,53,93,44,91,45,56,54,46,49,49,51,53,49,50,44,51,55,46,48,54,49,48,55,50,93,44,91,45,56,54,46,50,56,49,55,53,44,51,55,46,48,56,48,53,57,55,93,44,91,45,56,54,46,51,57,57,49,54,53,44,51,55,46,49,54,57,56,57,54,93,44,91,45,56,54,46,54,49,56,49,53,56,44,51,55,46,49,56,51,57,48,54,93,44,91,45,56,54,46,54,55,52,52,54,50,44,51,54,46,57,57,57,55,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,100,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,51,54,49,44,34,98,101,100,115,34,58,50,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,52,51,49,52,55,44,51,50,46,54,57,51,48,51,93,44,91,45,57,52,46,48,52,50,57,48,49,44,51,50,46,51,57,50,50,56,51,93,44,91,45,57,52,46,48,52,50,53,57,56,44,51,50,46,49,57,54,48,48,53,93,44,91,45,57,51,46,57,53,49,48,56,53,44,51,50,46,49,57,53,53,52,53,93,44,91,45,57,51,46,55,54,52,55,54,51,44,51,50,46,51,52,53,54,52,54,93,44,91,45,57,51,46,54,54,54,52,55,50,44,51,50,46,51,49,55,52,52,52,93,44,91,45,57,51,46,54,49,52,54,57,44,51,50,46,50,51,55,53,50,54,93,44,91,45,57,51,46,52,55,49,50,52,57,44,51,50,46,50,51,55,49,56,54,93,44,91,45,57,51,46,54,49,53,49,51,44,51,50,46,51,52,56,51,51,50,93,44,91,45,57,51,46,55,53,54,50,48,54,44,51,50,46,53,51,55,48,51,55,93,44,91,45,57,51,46,55,51,54,54,49,44,51,50,46,53,55,57,56,52,53,93,44,91,45,57,51,46,56,49,57,49,54,57,44,51,50,46,55,51,54,48,48,50,93,44,91,45,57,51,46,55,56,51,50,51,51,44,51,50,46,55,56,52,51,54,93,44,91,45,57,51,46,56,49,52,53,53,51,44,51,51,46,48,49,57,51,55,49,93,44,91,45,57,52,46,48,52,50,57,54,52,44,51,51,46,48,49,57,50,49,57,93,44,91,45,57,52,46,48,52,51,48,55,56,44,51,50,46,56,56,49,48,56,57,93,44,91,45,57,52,46,48,52,51,49,52,55,44,51,50,46,54,57,51,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,84,111,100,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,52,54,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,49,52,50,50,49,44,52,51,46,51,57,48,51,50,49,93,44,91,45,49,48,49,46,50,50,56,50,51,52,44,52,51,46,51,56,57,49,56,53,93,44,91,45,49,48,49,46,50,50,56,48,49,51,44,52,50,46,57,57,56,49,51,54,93,44,91,45,49,48,48,46,49,57,56,52,49,51,44,52,50,46,57,57,56,54,55,52,93,44,91,45,49,48,48,46,50,49,52,50,50,49,44,52,51,46,51,57,48,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,50,55,49,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,51,49,55,50,50,44,52,50,46,50,48,56,56,56,54,93,44,91,45,57,51,46,50,51,49,56,53,56,44,52,49,46,56,54,50,55,49,49,93,44,91,45,57,50,46,55,54,53,57,57,57,44,52,49,46,56,54,50,51,55,51,93,44,91,45,57,50,46,55,54,55,52,54,51,44,52,50,46,50,49,48,49,52,93,44,91,45,57,51,46,48,48,49,54,55,52,44,52,50,46,50,48,57,50,54,55,93,44,91,45,57,51,46,50,51,49,55,50,50,44,52,50,46,50,48,56,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,84,105,108,108,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,48,51,49,53,44,51,52,46,54,51,55,57,53,93,44,91,45,57,57,46,49,57,54,56,48,49,44,51,52,46,53,52,50,51,56,54,93,44,91,45,57,57,46,50,51,56,48,54,44,51,52,46,52,50,53,48,48,57,93,44,91,45,57,57,46,50,48,54,57,48,53,44,51,52,46,51,51,56,50,55,55,93,44,91,45,57,57,46,49,56,57,55,55,54,44,51,52,46,50,49,52,51,53,55,93,44,91,45,57,56,46,57,53,50,51,57,53,44,51,52,46,50,49,50,52,57,55,93,44,91,45,57,56,46,56,56,55,49,49,50,44,51,52,46,49,54,56,50,54,93,44,91,45,57,56,46,54,57,48,48,55,50,44,51,52,46,49,51,51,49,53,53,93,44,91,45,57,56,46,54,48,57,57,56,55,44,51,52,46,49,53,55,49,53,52,93,44,91,45,57,56,46,54,48,57,54,54,44,51,52,46,51,51,51,55,50,93,44,91,45,57,56,46,54,54,49,57,53,54,44,51,52,46,52,48,53,57,52,56,93,44,91,45,57,56,46,54,54,49,57,56,50,44,51,52,46,53,48,55,52,54,93,44,91,45,57,56,46,56,50,54,49,52,52,44,51,52,46,53,48,55,51,55,93,44,91,45,57,56,46,56,50,54,48,48,56,44,51,52,46,53,57,52,52,49,51,93,44,91,45,57,57,46,48,48,49,49,48,55,44,51,52,46,53,57,52,51,54,54,93,44,91,45,57,57,46,49,48,51,49,53,44,51,52,46,54,51,55,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,49,48,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,51,57,54,48,57,44,51,53,46,51,51,48,57,57,51,93,44,91,45,56,51,46,54,56,48,49,49,52,44,51,53,46,50,55,57,53,93,44,91,45,56,51,46,55,48,50,55,55,50,44,51,53,46,50,52,56,53,50,93,44,91,45,56,51,46,55,51,56,49,50,57,44,51,53,46,49,53,53,57,53,93,44,91,45,56,51,46,54,52,56,52,53,53,44,51,53,46,49,53,50,56,57,54,93,44,91,45,56,51,46,52,56,50,57,52,57,44,51,52,46,57,57,51,51,48,49,93,44,91,45,56,51,46,49,48,56,54,49,51,44,51,53,46,48,48,48,54,53,57,93,44,91,45,56,51,46,49,48,56,53,54,56,44,51,53,46,48,48,49,51,53,52,93,44,91,45,56,51,46,51,51,57,54,48,57,44,51,53,46,51,51,48,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,54,51,51,52,56,44,51,55,46,55,51,49,54,57,54,93,44,91,45,56,48,46,56,53,56,52,54,54,44,51,55,46,52,50,56,51,48,55,93,44,91,45,56,48,46,55,55,48,48,56,50,44,51,55,46,51,55,50,51,54,51,93,44,91,45,56,48,46,53,49,49,51,57,49,44,51,55,46,52,56,49,54,55,50,93,44,91,45,56,48,46,52,55,50,55,56,50,44,51,55,46,52,50,51,55,51,93,44,91,45,56,48,46,50,57,57,55,56,57,44,51,55,46,53,48,56,50,55,49,93,44,91,45,56,48,46,50,50,48,57,56,52,44,51,55,46,54,50,55,55,54,55,93,44,91,45,56,48,46,50,57,54,49,51,56,44,51,55,46,54,57,49,55,56,51,93,44,91,45,56,48,46,53,48,54,54,57,53,44,51,55,46,54,57,49,49,53,56,93,44,91,45,56,48,46,54,54,51,51,52,56,44,51,55,46,55,51,49,54,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,83,119,105,116,122,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,48,51,49,54,54,44,51,56,46,57,49,51,56,48,51,93,44,91,45,56,53,46,50,48,49,52,55,52,44,51,56,46,54,57,49,51,49,56,93,44,91,45,56,53,46,48,50,51,53,49,57,44,51,56,46,55,54,49,56,55,93,44,91,45,56,52,46,55,57,53,48,51,57,44,51,56,46,56,53,55,50,55,93,44,91,45,56,52,46,56,55,48,55,52,57,44,51,56,46,57,48,48,57,48,53,93,44,91,45,56,53,46,49,51,53,56,51,50,44,51,56,46,57,50,57,53,55,56,93,44,91,45,56,53,46,50,48,51,49,54,54,44,51,56,46,57,49,51,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,72,105,99,107,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,55,52,55,50,55,44,51,54,46,54,53,48,52,55,53,93,44,91,45,56,56,46,57,48,51,52,56,44,51,54,46,53,55,54,56,54,52,93,44,91,45,56,56,46,56,51,52,53,56,56,44,51,54,46,53,48,50,54,49,49,93,44,91,45,56,56,46,56,50,55,51,48,51,44,51,54,46,53,48,50,54,51,51,93,44,91,45,56,56,46,56,49,54,55,54,51,44,51,54,46,53,48,50,54,54,53,93,44,91,45,56,56,46,56,49,51,50,50,57,44,51,54,46,55,55,51,49,49,53,93,44,91,45,56,57,46,49,50,51,53,51,49,44,51,54,46,55,56,53,50,49,55,93,44,91,45,56,57,46,49,55,52,55,50,55,44,51,54,46,54,53,48,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,71,101,110,101,118,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,57,49,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,49,52,48,50,44,51,49,46,49,57,54,51,52,57,93,44,91,45,56,54,46,49,57,51,52,55,54,44,51,49,46,49,57,50,50,49,51,93,44,91,45,56,54,46,49,56,55,50,52,54,44,51,48,46,57,57,52,48,50,49,93,44,91,45,56,54,46,48,51,53,48,51,57,44,51,48,46,57,57,51,51,50,93,44,91,45,56,53,46,52,57,55,57,57,50,44,51,48,46,57,57,54,57,51,49,93,44,91,45,56,53,46,52,56,56,50,57,56,44,51,48,46,57,57,55,48,54,52,93,44,91,45,56,53,46,52,56,53,55,54,44,51,49,46,49,57,57,56,56,54,93,44,91,45,56,53,46,55,49,48,51,51,51,44,51,49,46,49,57,53,49,55,51,93,44,91,45,56,53,46,55,57,49,52,48,50,44,51,49,46,49,57,54,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,76,97,83,97,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,52,48,49,44,34,98,101,100,115,34,58,49,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,54,54,53,54,49,44,52,49,46,53,56,53,50,56,57,93,44,91,45,56,57,46,49,54,51,55,48,53,44,52,49,46,51,49,48,49,56,55,93,44,91,45,56,57,46,49,54,50,50,51,55,44,52,49,46,49,48,52,48,48,56,93,44,91,45,56,57,46,48,52,55,51,57,52,44,52,49,46,49,48,52,55,56,54,93,44,91,45,56,57,46,48,52,55,55,49,56,44,52,48,46,57,50,53,55,52,57,93,44,91,45,56,56,46,57,51,49,51,57,44,52,48,46,57,50,55,55,52,93,44,91,45,56,56,46,57,51,48,56,56,49,44,52,49,46,49,48,53,57,93,44,91,45,56,56,46,53,56,54,50,52,44,52,49,46,49,48,56,50,57,51,93,44,91,45,56,56,46,53,57,53,57,54,49,44,52,49,46,52,53,55,49,50,57,93,44,91,45,56,56,46,54,48,50,50,52,44,52,49,46,54,51,49,51,56,57,93,44,91,45,56,56,46,57,51,56,54,55,57,44,52,49,46,54,50,56,51,49,54,93,44,91,45,56,57,46,49,54,54,53,54,49,44,52,49,46,53,56,53,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,48,55,48,53,57,44,52,50,46,54,52,51,57,55,51,93,44,91,45,57,49,46,53,57,54,57,56,49,44,52,50,46,50,57,54,52,48,56,93,44,91,45,57,49,46,51,54,51,50,54,51,44,52,50,46,50,57,54,52,52,53,93,44,91,45,57,49,46,49,51,48,48,55,57,44,52,50,46,50,57,53,55,54,49,93,44,91,45,57,49,46,49,51,50,55,54,54,44,52,50,46,54,52,53,56,52,52,93,44,91,45,57,49,46,54,48,55,48,53,57,44,52,50,46,54,52,51,57,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,77,111,114,114,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,54,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,48,49,53,53,54,44,51,56,46,56,54,57,55,48,52,93,44,91,45,57,54,46,56,57,48,50,52,53,44,51,56,46,56,55,48,48,54,55,93,44,91,45,57,54,46,57,50,55,50,51,52,44,51,56,46,56,49,50,49,54,93,44,91,45,57,54,46,57,51,48,50,56,54,44,51,56,46,54,48,57,51,54,50,93,44,91,45,57,54,46,56,49,57,53,48,57,44,51,56,46,53,50,50,52,52,57,93,44,91,45,57,54,46,51,53,51,55,56,44,51,56,46,53,50,49,54,53,55,93,44,91,45,57,54,46,51,53,50,54,49,51,44,51,56,46,55,51,57,48,50,49,93,44,91,45,57,54,46,51,57,48,51,57,56,44,51,56,46,56,50,53,56,53,56,93,44,91,45,57,54,46,53,48,49,53,53,54,44,51,56,46,56,54,57,55,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,56,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,44,91,45,57,50,46,54,51,57,48,57,49,44,52,48,46,56,57,56,56,56,54,93,44,91,45,57,50,46,54,51,55,56,57,56,44,52,48,46,53,57,48,56,53,51,93,44,91,45,57,50,46,51,53,48,56,48,55,44,52,48,46,53,57,55,50,55,53,93,44,91,45,57,50,46,49,55,57,55,56,44,52,48,46,54,48,48,53,50,57,93,44,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,111,105,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,50,57,52,54,49,52,44,52,52,46,51,51,57,52,52,53,93,44,91,45,49,49,53,46,52,53,55,51,48,53,44,52,52,46,50,52,50,57,53,51,93,44,91,45,49,49,54,46,49,48,51,48,55,50,44,52,52,46,50,51,54,52,48,57,93,44,91,45,49,49,54,46,50,49,51,56,55,49,44,52,52,46,49,53,49,51,56,55,93,44,91,45,49,49,54,46,50,55,51,48,54,57,44,52,52,46,49,53,49,50,50,55,93,44,91,45,49,49,54,46,50,56,50,48,49,57,44,52,51,46,56,48,55,51,54,53,93,44,91,45,49,49,53,46,57,55,53,55,49,57,44,52,51,46,53,57,49,52,51,56,93,44,91,45,49,49,53,46,56,50,55,57,50,44,52,51,46,54,48,55,54,54,55,93,44,91,45,49,49,53,46,54,52,53,56,48,50,44,52,51,46,55,48,48,50,54,93,44,91,45,49,49,53,46,53,48,56,55,50,50,44,52,51,46,56,56,52,56,53,53,93,44,91,45,49,49,53,46,49,51,54,50,48,57,44,52,51,46,57,56,51,56,53,57,93,44,91,45,49,49,52,46,57,57,48,55,55,55,44,52,51,46,57,52,57,55,50,51,93,44,91,45,49,49,53,46,48,52,55,55,50,44,52,52,46,48,53,48,54,53,53,93,44,91,45,49,49,53,46,48,50,52,49,56,49,44,52,52,46,49,53,53,52,55,56,93,44,91,45,49,49,53,46,49,54,55,54,56,52,44,52,52,46,50,48,50,56,52,93,44,91,45,49,49,53,46,50,57,52,54,49,52,44,52,52,46,51,51,57,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,53,48,50,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,55,51,49,48,55,44,52,52,46,48,55,48,56,56,50,93,44,91,45,57,48,46,57,49,50,57,49,56,44,52,52,46,48,55,49,53,50,50,93,44,91,45,57,48,46,57,49,48,54,53,51,44,52,51,46,55,50,53,51,51,52,93,44,91,45,57,48,46,51,49,50,49,57,52,44,52,51,46,55,51,49,52,55,57,93,44,91,45,57,48,46,51,49,50,53,50,50,44,52,52,46,49,53,53,49,57,56,93,44,91,45,57,48,46,57,48,52,53,55,57,44,52,52,46,49,53,56,50,57,56,93,44,91,45,57,48,46,57,55,51,49,48,55,44,52,52,46,48,55,48,56,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,80,101,114,113,117,105,109,97,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,53,57,54,52,54,44,51,54,46,51,53,49,48,53,54,93,44,91,45,55,54,46,53,57,48,49,48,55,44,51,54,46,50,51,56,56,54,50,93,44,91,45,55,54,46,53,55,51,48,55,51,44,51,54,46,49,49,49,55,53,55,93,44,91,45,55,54,46,52,48,50,57,53,55,44,51,54,46,48,55,50,56,54,55,93,44,91,45,55,54,46,51,57,54,55,57,52,44,51,54,46,48,50,54,52,52,51,93,44,91,45,55,54,46,51,53,56,51,57,51,44,51,54,46,48,50,48,48,49,57,93,44,91,45,55,54,46,49,53,55,57,53,51,44,51,54,46,48,53,57,53,49,55,93,44,91,45,55,54,46,52,53,51,55,49,49,44,51,54,46,51,55,56,48,57,50,93,44,91,45,55,54,46,53,53,57,54,52,54,44,51,54,46,51,53,49,48,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,55,48,57,54,57,44,51,48,46,51,56,53,50,50,53,93,44,91,45,56,51,46,48,55,56,55,48,54,44,51,48,46,52,51,56,49,49,54,93,44,91,45,56,50,46,57,53,53,57,44,51,48,46,52,49,51,52,56,54,93,44,91,45,56,50,46,55,57,52,53,57,52,44,51,48,46,51,51,55,48,50,52,93,44,91,45,56,50,46,55,49,55,55,55,51,44,51,48,46,51,50,49,51,57,49,93,44,91,45,56,50,46,54,52,53,53,53,53,44,51,48,46,52,48,54,52,49,55,93,44,91,45,56,50,46,55,50,54,53,56,51,44,51,48,46,53,53,57,52,56,54,93,44,91,45,56,50,46,54,56,57,53,51,57,44,51,48,46,53,57,55,55,51,52,93,44,91,45,56,51,46,49,51,54,54,49,52,44,51,48,46,54,50,51,57,54,55,93,44,91,45,56,51,46,51,48,57,50,52,57,44,51,48,46,54,51,52,52,48,54,93,44,91,45,56,51,46,50,55,50,54,49,50,44,51,48,46,54,50,55,54,56,55,93,44,91,45,56,51,46,50,50,48,48,56,55,44,51,48,46,52,50,50,52,56,52,93,44,91,45,56,51,46,49,55,48,57,54,57,44,51,48,46,51,56,53,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,55,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,48,34,44,34,78,65,77,69,34,58,34,77,97,116,97,110,117,115,107,97,45,83,117,115,105,116,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,52,54,52,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,50,46,57,57,55,54,52,55,44,54,50,46,55,50,55,52,48,49,93,44,91,45,49,53,50,46,57,57,57,56,51,57,44,54,50,46,50,57,50,54,50,49,93,44,91,45,49,53,50,46,57,57,57,56,56,50,44,54,49,46,52,50,54,49,55,50,93,44,91,45,49,53,49,46,51,51,50,55,56,52,44,54,49,46,52,50,54,50,51,57,93,44,91,45,49,53,49,46,51,51,50,56,48,50,44,54,49,46,50,53,50,57,51,54,93,44,91,45,49,53,48,46,57,55,52,48,49,52,44,54,49,46,50,53,50,57,52,93,44,91,45,49,53,48,46,57,55,52,48,49,55,44,54,49,46,49,54,54,50,56,55,93,44,91,45,49,53,48,46,55,55,53,56,54,51,44,54,49,46,48,55,57,52,54,54,93,44,91,45,49,53,48,46,52,50,52,49,52,56,44,54,49,46,49,54,54,51,48,56,93,44,91,45,49,52,57,46,57,56,55,52,57,53,44,54,49,46,50,50,52,48,54,52,93,44,91,45,49,52,57,46,55,52,56,51,54,57,44,54,49,46,51,57,55,51,55,49,93,44,91,45,49,52,57,46,51,53,57,52,52,44,54,49,46,52,56,52,48,50,53,93,44,91,45,49,52,57,46,49,56,48,48,54,50,44,54,49,46,52,50,54,50,53,93,44,91,45,49,52,56,46,52,54,50,52,55,49,44,54,49,46,52,50,54,50,54,55,93,44,91,45,49,52,55,46,50,48,54,53,57,55,44,54,49,46,52,50,54,50,54,53,93,44,91,45,49,52,54,46,57,52,50,53,53,57,44,54,49,46,52,55,48,54,55,53,93,44,91,45,49,52,54,46,57,52,50,54,48,49,44,54,49,46,56,49,55,50,55,50,93,44,91,45,49,52,54,46,57,55,57,56,48,55,44,54,50,46,50,53,48,52,57,55,93,44,91,45,49,52,54,46,52,50,51,57,56,52,44,54,50,46,50,53,48,53,49,49,93,44,91,45,49,52,54,46,52,51,54,56,57,57,44,54,50,46,56,53,54,57,57,49,93,44,91,45,49,52,54,46,52,57,52,50,57,54,44,54,50,46,57,53,55,56,54,52,93,44,91,45,49,52,54,46,52,57,52,51,49,49,44,54,51,46,49,54,56,57,55,53,93,44,91,45,49,52,54,46,52,56,57,53,52,49,44,54,51,46,52,56,50,57,49,51,93,44,91,45,49,52,54,46,57,57,57,57,54,54,44,54,51,46,52,55,57,54,52,53,93,44,91,45,49,52,56,46,48,50,53,54,50,55,44,54,51,46,52,55,55,54,48,57,93,44,91,45,49,52,56,46,48,50,53,54,49,56,44,54,51,46,51,51,51,50,51,51,93,44,91,45,49,52,57,46,53,50,54,49,52,56,44,54,51,46,51,51,51,50,49,55,93,44,91,45,49,53,48,46,55,50,48,57,49,54,44,54,51,46,48,54,51,49,56,52,93,44,91,45,49,53,49,46,56,57,52,48,49,53,44,54,50,46,55,57,56,48,53,56,93,44,91,45,49,53,49,46,56,57,51,55,56,52,44,54,50,46,55,50,53,56,54,52,93,44,91,45,49,53,50,46,57,57,55,54,52,55,44,54,50,46,55,50,55,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,54,49,54,44,34,98,101,100,115,34,58,51,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,55,56,53,56,57,44,52,48,46,51,55,57,53,50,52,93,44,91,45,56,53,46,53,55,54,49,57,55,44,52,48,46,48,55,55,49,52,51,93,44,91,45,56,53,46,50,49,52,51,56,54,44,52,48,46,48,55,54,56,56,57,93,44,91,45,56,53,46,50,49,56,55,53,56,44,52,48,46,51,48,54,55,48,54,93,44,91,45,56,53,46,50,49,57,57,48,49,44,52,48,46,51,55,57,48,51,52,93,44,91,45,56,53,46,52,52,52,51,51,44,52,48,46,51,55,57,49,52,93,44,91,45,56,53,46,53,55,56,53,56,57,44,52,48,46,51,55,57,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,101,118,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,57,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,51,55,51,50,57,44,50,57,46,53,57,49,49,57,54,93,44,91,45,56,51,46,48,54,56,53,50,50,44,50,57,46,51,52,51,57,53,51,93,44,91,45,56,51,46,50,51,57,56,53,57,44,50,57,46,50,53,48,57,57,93,44,91,45,56,51,46,49,55,49,56,48,54,44,50,57,46,49,56,53,57,50,49,93,44,91,45,56,51,46,49,52,52,48,56,44,50,57,46,48,55,50,56,52,93,44,91,45,56,51,46,48,55,54,44,50,57,46,48,52,49,56,49,57,93,44,91,45,56,50,46,57,53,48,48,55,56,44,50,57,46,48,55,54,48,53,57,93,44,91,45,56,50,46,56,53,49,50,55,56,44,50,57,46,48,49,55,51,56,57,93,44,91,45,56,50,46,56,52,56,50,52,56,44,50,56,46,57,49,52,53,50,57,93,44,91,45,56,50,46,55,49,49,53,51,44,50,57,46,48,51,48,57,56,56,93,44,91,45,56,50,46,53,51,53,53,57,49,44,50,57,46,48,52,52,56,53,53,93,44,91,45,56,50,46,53,51,52,56,54,44,50,57,46,50,49,52,54,56,93,44,91,45,56,50,46,52,48,51,50,51,55,44,50,57,46,50,49,53,54,50,51,93,44,91,45,56,50,46,52,48,54,54,50,44,50,57,46,52,56,53,48,52,56,93,44,91,45,56,50,46,53,53,54,55,54,54,44,50,57,46,52,56,48,48,53,53,93,44,91,45,56,50,46,54,53,54,51,48,49,44,50,57,46,53,54,52,56,49,49,93,44,91,45,56,50,46,57,51,55,51,50,57,44,50,57,46,53,57,49,49,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,71,117,114,97,98,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,56,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,52,50,52,50,57,44,49,56,46,50,57,51,52,54,57,93,44,91,45,54,54,46,48,50,49,55,52,55,44,49,56,46,51,48,53,48,51,52,93,44,91,45,54,53,46,57,57,55,54,53,44,49,56,46,50,48,54,57,57,50,93,44,91,45,54,53,46,57,53,49,48,49,57,44,49,56,46,50,50,57,50,57,50,93,44,91,45,54,53,46,57,49,56,53,51,53,44,49,56,46,50,55,48,49,51,93,44,91,45,54,53,46,57,52,50,52,50,57,44,49,56,46,50,57,51,52,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,97,116,105,108,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,51,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,56,51,54,54,57,51,44,49,56,46,53,52,48,50,48,54,93,44,91,45,54,54,46,56,50,52,50,50,51,44,49,56,46,51,52,50,57,57,56,93,44,91,45,54,54,46,56,50,54,49,50,56,44,49,56,46,51,50,51,51,56,50,93,44,91,45,54,54,46,55,55,48,48,55,50,44,49,56,46,51,50,53,48,49,51,93,44,91,45,54,54,46,55,54,52,54,57,50,44,49,56,46,53,51,56,51,51,93,44,91,45,54,54,46,56,51,54,54,57,51,44,49,56,46,53,52,48,50,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,54,53,51,44,34,98,101,100,115,34,58,49,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,48,54,49,51,53,44,51,48,46,49,55,55,57,52,49,93,44,91,45,56,57,46,51,52,48,56,52,55,44,51,48,46,51,53,55,57,57,53,93,44,91,45,56,57,46,51,52,49,52,52,54,44,51,48,46,54,52,55,55,50,93,44,91,45,56,57,46,53,52,52,50,51,50,44,51,48,46,54,52,56,51,54,56,93,44,91,45,56,57,46,53,52,52,53,49,44,51,48,46,53,49,54,56,54,50,93,44,91,45,56,57,46,54,57,48,48,51,53,44,51,48,46,52,53,57,51,51,51,93,44,91,45,56,57,46,54,51,49,54,49,52,44,51,48,46,50,53,55,48,49,51,93,44,91,45,56,57,46,52,57,52,57,55,51,44,51,48,46,49,54,48,55,53,93,44,91,45,56,57,46,51,48,54,49,51,53,44,51,48,46,49,55,55,57,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,53,34,44,34,78,65,77,69,34,58,34,87,105,108,99,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,56,48,49,55,54,44,51,49,46,56,52,55,51,49,50,93,44,91,45,56,51,46,49,55,55,52,54,57,44,51,49,46,56,52,55,56,53,55,93,44,91,45,56,51,46,50,48,53,55,51,57,44,51,49,46,57,48,48,51,50,53,93,44,91,45,56,51,46,51,51,55,51,49,51,44,51,50,46,49,48,53,56,56,53,93,44,91,45,56,51,46,54,48,56,53,52,55,44,51,50,46,49,49,56,52,48,53,93,44,91,45,56,51,46,54,48,57,54,54,51,44,51,50,46,48,50,55,57,51,56,93,44,91,45,56,51,46,54,49,50,50,53,54,44,51,49,46,56,53,52,48,56,57,93,44,91,45,56,51,46,52,56,48,49,55,54,44,51,49,46,56,52,55,51,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,82,101,100,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,49,56,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,49,52,54,57,44,51,50,46,50,51,55,53,50,54,93,44,91,45,57,51,46,53,50,51,52,49,54,44,51,50,46,49,55,54,57,57,49,93,44,91,45,57,51,46,53,52,49,51,53,51,44,51,50,46,49,48,53,56,56,93,44,91,45,57,51,46,51,53,53,52,53,50,44,51,49,46,57,51,50,50,50,50,93,44,91,45,57,51,46,50,51,56,52,55,44,51,49,46,57,55,50,55,56,49,93,44,91,45,57,51,46,49,51,54,49,50,55,44,51,50,46,48,53,54,50,50,52,93,44,91,45,57,51,46,49,56,55,49,54,50,44,51,50,46,49,52,56,52,49,50,93,44,91,45,57,51,46,50,49,51,57,56,56,44,51,50,46,50,51,54,48,54,53,93,44,91,45,57,51,46,52,50,56,49,57,44,51,50,46,50,51,53,56,57,55,93,44,91,45,57,51,46,52,55,49,50,52,57,44,51,50,46,50,51,55,49,56,54,93,44,91,45,57,51,46,54,49,52,54,57,44,51,50,46,50,51,55,53,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,49,56,53,44,34,98,101,100,115,34,58,50,48,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,52,49,55,49,49,44,51,54,46,49,56,54,51,55,56,93,44,91,45,56,52,46,49,57,50,50,56,55,44,51,53,46,57,57,53,52,56,56,93,44,91,45,56,52,46,50,55,49,53,56,55,44,51,53,46,57,49,48,49,54,53,93,44,91,45,56,52,46,50,54,51,51,56,51,44,51,53,46,56,57,54,57,52,93,44,91,45,56,52,46,49,54,54,50,54,55,44,51,53,46,56,48,53,49,48,54,93,44,91,45,56,51,46,57,53,48,52,56,49,44,51,53,46,56,55,53,51,54,50,93,44,91,45,56,51,46,55,57,52,50,55,53,44,51,53,46,56,56,55,49,50,53,93,44,91,45,56,51,46,54,53,52,54,48,53,44,51,53,46,57,55,49,57,51,55,93,44,91,45,56,51,46,54,55,51,50,57,55,44,51,54,46,48,51,56,52,56,54,93,44,91,45,56,51,46,54,54,55,52,54,44,51,54,46,48,56,48,53,56,55,93,44,91,45,56,51,46,55,51,50,55,48,52,44,51,54,46,49,54,52,53,56,51,93,44,91,45,56,51,46,57,52,49,55,49,49,44,51,54,46,49,56,54,51,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,79,120,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,51,50,53,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,48,56,51,57,50,56,44,52,53,46,51,48,53,52,56,52,93,44,91,45,55,49,46,48,51,51,53,50,52,44,52,52,46,54,57,55,54,51,55,93,44,91,45,55,49,46,48,48,57,57,55,54,44,52,52,46,50,56,52,56,57,57,93,44,91,45,55,48,46,57,56,57,49,50,50,44,52,51,46,55,57,50,49,49,51,93,44,91,45,55,48,46,55,56,50,57,56,52,44,52,51,46,56,49,52,49,52,55,93,44,91,45,55,48,46,55,49,53,52,49,56,44,52,51,46,57,54,49,56,49,53,93,44,91,45,55,48,46,56,50,49,56,48,51,44,52,52,46,48,55,55,48,56,57,93,44,91,45,55,48,46,54,50,52,51,50,57,44,52,52,46,49,55,49,48,51,54,93,44,91,45,55,48,46,54,48,51,55,56,52,44,52,52,46,48,52,49,53,51,54,93,44,91,45,55,48,46,52,56,48,48,55,56,44,52,52,46,48,51,50,48,55,56,93,44,91,45,55,48,46,51,51,52,48,57,52,44,52,52,46,50,49,48,55,53,51,93,44,91,45,55,48,46,50,51,56,57,48,52,44,52,52,46,52,53,56,57,52,50,93,44,91,45,55,48,46,50,56,48,55,52,56,44,52,52,46,53,54,57,54,49,57,93,44,91,45,55,48,46,53,49,48,53,57,56,44,52,52,46,54,50,55,50,49,54,93,44,91,45,55,48,46,54,49,53,48,51,44,52,52,46,55,57,53,54,51,52,93,44,91,45,55,48,46,55,54,57,50,50,56,44,52,52,46,55,51,50,50,50,56,93,44,91,45,55,48,46,55,55,57,56,52,50,44,52,53,46,48,49,56,51,55,57,93,44,91,45,55,48,46,56,51,53,49,52,50,44,52,53,46,50,55,55,48,52,55,93,44,91,45,55,48,46,57,56,57,49,50,44,52,53,46,51,51,52,49,51,55,93,44,91,45,55,49,46,48,56,51,57,50,56,44,52,53,46,51,48,53,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,50,48,48,51,44,34,98,101,100,115,34,58,51,48,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,56,48,51,51,44,51,56,46,56,52,55,50,48,55,93,44,91,45,57,52,46,49,49,57,48,57,54,44,51,56,46,56,51,51,49,54,55,93,44,91,45,57,52,46,49,49,52,49,55,53,44,51,56,46,57,49,55,51,48,52,93,44,91,45,57,52,46,49,48,52,56,50,51,44,51,57,46,49,52,51,53,48,55,93,44,91,45,57,52,46,50,49,50,53,49,53,44,51,57,46,50,48,55,48,56,54,93,44,91,45,57,52,46,50,56,57,56,55,51,44,51,57,46,50,51,55,49,48,55,93,44,91,45,57,52,46,52,54,49,53,57,44,51,57,46,49,50,48,51,55,50,93,44,91,45,57,52,46,54,48,55,51,53,52,44,51,57,46,49,49,51,52,52,52,93,44,91,45,57,52,46,54,48,55,51,56,50,44,51,57,46,48,52,52,48,56,54,93,44,91,45,57,52,46,54,48,56,48,51,51,44,51,56,46,56,52,55,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,49,34,44,34,78,65,77,69,34,58,34,84,111,119,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,51,54,51,57,53,44,51,52,46,57,56,55,53,54,52,93,44,91,45,56,51,46,56,48,52,57,54,50,44,51,52,46,56,57,53,57,51,52,93,44,91,45,56,51,46,55,56,48,51,52,54,44,51,52,46,55,57,50,57,48,53,93,44,91,45,56,51,46,54,56,49,53,57,54,44,51,52,46,56,48,48,56,56,50,93,44,91,45,56,51,46,54,53,50,49,57,52,44,51,52,46,56,50,50,57,57,51,93,44,91,45,56,51,46,54,53,54,50,57,55,44,51,52,46,56,55,56,56,50,51,93,44,91,45,56,51,46,53,52,57,51,55,54,44,51,52,46,57,57,50,51,57,51,93,44,91,45,56,51,46,57,51,54,51,57,53,44,51,52,46,57,56,55,53,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,83,109,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,54,51,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,44,91,45,56,57,46,55,51,48,52,50,52,44,51,50,46,50,50,50,48,51,57,93,44,91,45,56,57,46,55,51,48,48,54,54,44,51,50,46,48,52,55,48,55,50,93,44,91,45,56,57,46,54,53,52,52,50,54,44,51,50,46,48,49,51,54,55,56,93,44,91,45,56,57,46,54,53,51,48,50,53,44,51,49,46,55,56,48,54,53,51,93,44,91,45,56,57,46,52,48,49,50,50,55,44,51,49,46,55,57,54,56,54,51,93,44,91,45,56,57,46,51,49,54,53,54,44,51,49,46,56,48,50,48,57,93,44,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,80,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,56,57,55,55,57,44,52,52,46,49,53,50,53,57,93,44,91,45,49,49,54,46,57,56,51,56,50,55,44,52,51,46,56,56,48,48,52,54,93,44,91,45,49,49,54,46,56,53,51,49,53,52,44,52,51,46,55,57,50,55,49,93,44,91,45,49,49,54,46,55,49,50,54,55,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,55,49,50,53,48,49,44,52,51,46,57,56,49,51,50,54,93,44,91,45,49,49,54,46,53,55,50,50,50,52,44,52,51,46,57,56,48,52,56,53,93,44,91,45,49,49,54,46,52,53,50,48,54,56,44,52,52,46,49,53,49,52,54,53,93,44,91,45,49,49,54,46,56,57,55,55,57,44,52,52,46,49,53,50,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,83,104,111,115,104,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,50,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,51,50,57,53,51,56,44,52,55,46,56,57,48,51,57,51,93,44,91,45,49,49,54,46,51,50,57,52,48,54,44,52,55,46,52,49,52,48,49,49,93,44,91,45,49,49,54,46,51,50,57,52,49,56,44,52,55,46,48,50,49,57,49,53,93,44,91,45,49,49,54,46,51,50,57,52,51,54,44,52,54,46,57,51,52,54,54,57,93,44,91,45,49,49,52,46,57,53,57,51,49,55,44,52,54,46,57,51,50,56,57,56,93,44,91,45,49,49,53,46,48,52,55,56,53,55,44,52,54,46,57,54,57,53,51,50,93,44,91,45,49,49,53,46,51,52,48,56,52,57,44,52,55,46,50,54,50,56,53,93,44,91,45,49,49,53,46,55,52,54,54,49,57,44,52,55,46,52,52,50,51,49,49,93,44,91,45,49,49,53,46,54,50,57,52,56,56,44,52,55,46,52,55,57,54,49,93,44,91,45,49,49,53,46,55,50,50,55,49,52,44,52,55,46,54,57,52,56,53,53,93,44,91,45,49,49,53,46,56,50,51,55,55,52,44,52,55,46,55,53,50,54,49,49,93,44,91,45,49,49,54,46,48,52,57,49,48,56,44,52,55,46,57,55,55,51,51,52,93,44,91,45,49,49,54,46,50,51,51,49,49,51,44,52,56,46,48,54,56,56,57,93,44,91,45,49,49,54,46,51,50,57,54,48,49,44,52,56,46,48,49,55,55,50,50,93,44,91,45,49,49,54,46,51,50,57,53,51,56,44,52,55,46,56,57,48,51,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,72,121,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,50,50,49,51,49,44,51,53,46,51,53,51,54,50,51,93,44,91,45,55,54,46,52,52,53,52,49,56,44,51,53,46,51,50,57,50,54,52,93,44,91,45,55,54,46,51,48,52,49,51,54,44,51,53,46,50,48,49,52,53,51,93,44,91,45,55,54,46,48,54,53,55,55,52,44,51,53,46,49,50,52,57,51,55,93,44,91,45,55,54,46,48,48,54,57,51,54,44,51,53,46,48,48,54,48,51,49,93,44,91,45,55,53,46,55,51,54,54,50,44,51,53,46,49,52,48,53,54,53,93,44,91,45,55,53,46,56,49,52,48,50,49,44,51,53,46,53,48,48,49,56,50,93,44,91,45,55,53,46,57,48,49,51,52,50,44,51,53,46,54,54,56,57,53,50,93,44,91,45,55,54,46,48,50,55,52,55,57,44,51,53,46,54,54,56,56,52,57,93,44,91,45,55,54,46,52,48,53,57,55,49,44,51,53,46,54,57,55,53,55,57,93,44,91,45,55,54,46,54,51,55,53,49,51,44,51,53,46,55,48,53,50,49,53,93,44,91,45,55,54,46,53,56,56,49,57,49,44,51,53,46,54,50,48,54,53,52,93,44,91,45,55,54,46,53,56,53,51,50,44,51,53,46,52,53,53,48,55,53,93,44,91,45,55,54,46,53,50,50,49,51,49,44,51,53,46,51,53,51,54,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,52,48,57,50,44,52,51,46,50,49,50,56,49,50,93,44,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,44,91,45,57,50,46,53,53,52,50,49,49,44,52,50,46,57,48,55,49,49,50,93,44,91,45,57,50,46,53,53,52,51,56,49,44,52,51,46,50,49,50,56,49,51,93,44,91,45,57,51,46,48,50,52,48,57,50,44,52,51,46,50,49,50,56,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,77,99,67,114,97,99,107,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,50,56,52,44,34,98,101,100,115,34,58,49,48,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,51,51,52,48,49,44,51,55,46,50,50,52,57,57,49,93,44,91,45,56,56,46,56,49,53,57,53,50,44,51,54,46,57,53,52,49,93,44,91,45,56,56,46,56,49,50,56,57,55,44,51,54,46,57,52,54,56,54,52,93,44,91,45,56,56,46,52,56,52,49,48,51,44,51,54,46,57,52,50,48,57,54,93,44,91,45,56,56,46,52,56,50,57,53,55,44,51,55,46,48,50,50,53,54,54,93,44,91,45,56,56,46,53,54,54,48,54,49,44,51,55,46,48,55,53,50,48,52,93,44,91,45,56,56,46,57,50,55,56,57,44,51,55,46,50,50,54,51,52,50,93,44,91,45,56,56,46,57,51,51,52,48,49,44,51,55,46,50,50,52,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,53,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,50,56,48,49,54,44,51,55,46,55,57,57,49,56,56,93,44,91,45,56,56,46,49,54,48,51,56,57,44,51,55,46,54,53,54,49,51,49,93,44,91,45,56,56,46,49,51,51,52,51,52,44,51,55,46,53,55,52,51,51,56,93,44,91,45,56,56,46,48,54,49,51,51,50,44,51,55,46,53,48,53,51,51,50,93,44,91,45,56,55,46,57,51,50,57,53,50,44,51,55,46,52,56,48,48,53,50,93,44,91,45,56,55,46,55,51,52,53,52,53,44,51,55,46,54,51,56,51,55,54,93,44,91,45,56,55,46,57,50,55,48,54,56,44,51,55,46,57,48,49,54,56,53,93,44,91,45,56,55,46,57,48,54,57,51,57,44,51,55,46,56,48,55,53,57,51,93,44,91,45,56,56,46,48,50,56,48,49,54,44,51,55,46,55,57,57,49,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,84,117,114,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,54,52,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,48,49,52,53,44,52,51,46,52,57,57,55,56,51,93,44,91,45,57,55,46,51,57,57,49,57,49,44,52,51,46,49,54,57,52,49,57,93,44,91,45,57,55,46,49,54,48,53,52,52,44,52,51,46,49,54,57,57,55,56,93,44,91,45,57,55,46,49,54,48,53,52,51,44,52,51,46,48,56,51,49,52,53,93,44,91,45,57,54,46,57,50,52,49,52,50,44,52,51,46,48,56,51,55,51,51,93,44,91,45,57,54,46,57,50,52,56,52,49,44,52,51,46,53,48,48,48,48,55,93,44,91,45,57,55,46,49,50,57,52,55,56,44,52,51,46,52,57,57,54,56,51,93,44,91,45,57,55,46,52,48,49,52,53,44,52,51,46,52,57,57,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,99,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,51,54,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,51,52,53,56,53,44,51,54,46,48,56,53,48,57,52,93,44,91,45,56,51,46,51,49,48,55,56,50,44,51,53,46,56,57,53,56,52,54,93,44,91,45,56,51,46,50,53,53,51,52,51,44,51,53,46,55,49,53,48,56,52,93,44,91,45,56,51,46,48,55,51,57,49,56,44,51,53,46,55,57,48,48,53,53,93,44,91,45,56,50,46,57,54,49,55,53,52,44,51,53,46,55,57,48,57,53,57,93,44,91,45,56,50,46,56,57,56,51,49,55,44,51,53,46,57,52,52,57,54,55,93,44,91,45,56,51,46,49,54,54,48,56,53,44,51,54,46,49,56,48,56,57,52,93,44,91,45,56,51,46,50,51,52,53,56,53,44,51,54,46,48,56,53,48,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,56,53,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,55,50,49,48,56,44,51,54,46,53,57,55,50,56,52,93,44,91,45,56,51,46,51,57,56,51,48,51,44,51,54,46,53,51,52,56,56,53,93,44,91,45,56,51,46,51,56,54,56,44,51,54,46,52,49,51,49,56,54,93,44,91,45,56,51,46,50,56,48,53,57,53,44,51,54,46,51,57,52,54,56,57,93,44,91,45,56,51,46,49,49,57,51,57,51,44,51,54,46,53,49,52,50,57,93,44,91,45,56,50,46,56,51,48,52,51,51,44,51,54,46,53,57,51,55,54,49,93,44,91,45,56,50,46,57,56,53,49,50,52,44,51,54,46,53,57,51,55,50,57,93,44,91,45,56,51,46,52,55,50,49,48,56,44,51,54,46,53,57,55,50,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,55,49,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,54,50,53,55,50,44,51,53,46,51,56,48,57,57,52,93,44,91,45,56,56,46,51,56,48,53,48,56,44,51,52,46,57,57,53,54,49,93,44,91,45,56,56,46,51,54,51,53,51,49,44,51,52,46,57,57,53,52,55,53,93,44,91,45,56,56,46,50,48,48,48,54,52,44,51,52,46,57,57,53,54,51,52,93,44,91,45,56,55,46,57,56,52,57,49,54,44,51,53,46,48,48,53,57,51,51,93,44,91,45,56,55,46,57,56,49,53,56,53,44,51,53,46,50,57,53,54,55,56,93,44,91,45,56,56,46,48,50,52,55,52,49,44,51,53,46,51,57,50,51,48,55,93,44,91,45,56,56,46,49,56,57,54,54,49,44,51,53,46,51,56,52,51,48,51,93,44,91,45,56,56,46,50,52,49,54,55,55,44,51,53,46,52,50,51,50,54,51,93,44,91,45,56,56,46,51,54,48,56,50,57,44,51,53,46,52,49,56,57,55,50,93,44,91,45,56,56,46,51,54,50,53,55,50,44,51,53,46,51,56,48,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,54,50,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,53,52,55,57,51,44,51,52,46,50,51,48,57,49,51,93,44,91,45,55,57,46,52,57,49,55,49,52,44,51,51,46,57,52,54,53,50,50,93,44,91,45,55,57,46,51,50,52,51,49,55,44,51,51,46,55,57,57,49,50,51,93,44,91,45,55,57,46,51,49,55,48,52,49,44,51,51,46,55,55,57,56,55,56,93,44,91,45,55,57,46,49,57,48,50,54,52,44,51,51,46,55,48,53,55,56,55,93,44,91,45,55,57,46,51,51,50,52,53,56,44,51,51,46,57,57,52,57,57,55,93,44,91,45,55,57,46,49,50,56,49,54,53,44,51,52,46,50,53,51,54,53,50,93,44,91,45,55,57,46,52,56,48,55,49,50,44,51,52,46,50,56,56,48,56,49,93,44,91,45,55,57,46,53,52,55,57,51,44,51,52,46,50,51,48,57,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,71,117,97,121,97,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,55,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,53,51,49,52,54,44,49,56,46,49,48,55,50,57,51,93,44,91,45,54,54,46,49,54,54,49,52,53,44,49,56,46,48,53,48,48,54,51,93,44,91,45,54,54,46,50,50,53,50,55,53,44,49,55,46,57,50,52,54,53,50,93,44,91,45,54,54,46,49,56,55,51,52,50,44,49,55,46,56,55,55,48,51,54,93,44,91,45,54,54,46,48,54,52,53,48,51,44,49,55,46,57,48,52,56,50,53,93,44,91,45,54,54,46,48,56,50,50,54,51,44,49,56,46,48,51,50,57,53,56,93,44,91,45,54,54,46,48,53,51,49,52,54,44,49,56,46,49,48,55,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,52,53,55,44,34,98,101,100,115,34,58,49,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,51,53,57,48,56,44,51,49,46,48,48,50,48,52,55,93,44,91,45,57,48,46,50,53,57,53,53,53,44,51,49,46,48,48,48,54,55,57,93,44,91,45,57,48,46,51,52,55,50,53,53,44,51,49,46,48,48,48,53,51,93,44,91,45,57,48,46,51,52,54,55,49,44,51,48,46,57,48,53,52,50,55,93,44,91,45,57,48,46,50,53,53,54,52,56,44,51,48,46,55,49,49,57,48,53,93,44,91,45,56,57,46,57,57,52,50,48,49,44,51,48,46,54,54,53,52,51,93,44,91,45,56,57,46,56,52,50,51,51,44,51,48,46,54,54,54,48,49,53,93,44,91,45,56,57,46,55,50,56,49,49,57,44,51,49,46,48,48,50,51,93,44,91,45,56,57,46,56,51,53,57,48,56,44,51,49,46,48,48,50,48,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,55,34,44,34,78,65,77,69,34,58,34,83,116,111,100,100,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,53,49,50,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,53,56,53,54,51,44,51,54,46,57,50,50,48,52,51,93,44,91,45,57,48,46,49,53,56,48,53,44,51,54,46,55,50,50,57,55,54,93,44,91,45,57,48,46,49,52,56,51,57,56,44,51,54,46,54,51,48,54,53,54,93,44,91,45,56,57,46,57,53,56,55,56,54,44,51,54,46,54,50,57,51,51,49,93,44,91,45,56,57,46,55,48,48,57,53,50,44,51,54,46,54,50,55,52,53,51,93,44,91,45,56,57,46,54,57,49,54,48,51,44,51,54,46,56,53,57,53,49,55,93,44,91,45,56,57,46,54,56,54,54,50,44,51,54,46,57,50,56,50,57,51,93,44,91,45,56,57,46,55,56,54,56,49,57,44,51,55,46,48,56,55,56,50,52,93,44,91,45,56,57,46,55,54,53,50,49,49,44,51,55,46,49,50,54,48,54,54,93,44,91,45,56,57,46,56,54,54,54,50,55,44,51,55,46,49,50,54,50,50,55,93,44,91,45,56,57,46,57,53,57,49,57,54,44,51,55,46,48,53,52,51,56,93,44,91,45,57,48,46,49,49,49,50,52,55,44,51,55,46,48,52,49,50,48,53,93,44,91,45,57,48,46,50,53,56,53,54,51,44,51,54,46,57,50,50,48,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,68,111,111,108,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,52,56,51,55,57,44,51,50,46,50,57,48,57,55,93,44,91,45,56,51,46,57,53,56,56,49,55,44,51,50,46,50,53,50,49,48,53,93,44,91,45,56,52,46,48,50,55,54,44,51,50,46,49,55,49,49,54,53,93,44,91,45,56,51,46,57,54,49,50,55,56,44,51,50,46,48,51,48,53,57,53,93,44,91,45,56,51,46,54,48,57,54,54,51,44,51,50,46,48,50,55,57,51,56,93,44,91,45,56,51,46,54,48,56,53,52,55,44,51,50,46,49,49,56,52,48,53,93,44,91,45,56,51,46,54,49,53,53,55,57,44,51,50,46,50,56,56,53,53,54,93,44,91,45,56,51,46,56,52,56,51,55,57,44,51,50,46,50,57,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,83,116,101,97,114,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,56,49,57,44,34,98,101,100,115,34,58,53,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,51,57,54,55,44,52,53,46,55,53,56,56,57,49,93,44,91,45,57,53,46,49,51,49,55,51,44,52,53,46,52,49,50,52,48,50,93,44,91,45,57,52,46,55,54,50,57,51,52,44,52,53,46,52,49,50,56,54,49,93,44,91,45,57,52,46,55,54,51,48,56,44,52,53,46,51,50,54,49,93,44,91,45,57,52,46,51,56,51,53,53,54,44,52,53,46,51,50,54,55,48,53,93,44,91,45,57,52,46,50,54,48,56,50,49,44,52,53,46,50,56,51,57,52,49,93,44,91,45,57,52,46,49,49,54,55,54,53,44,52,53,46,51,50,56,48,49,57,93,44,91,45,57,52,46,48,52,55,51,50,55,44,52,53,46,52,50,50,56,54,49,93,44,91,45,57,52,46,49,52,57,52,54,55,44,52,53,46,53,53,57,48,54,54,93,44,91,45,57,52,46,50,55,49,55,55,54,44,52,53,46,55,55,53,50,48,56,93,44,91,45,57,52,46,54,52,51,57,57,44,52,53,46,55,55,51,57,53,93,44,91,45,57,53,46,49,51,57,55,51,49,44,52,53,46,55,55,51,52,49,54,93,44,91,45,57,53,46,49,51,57,54,55,44,52,53,46,55,53,56,56,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,83,97,117,110,100,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,48,50,52,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,48,53,56,54,50,44,52,49,46,52,53,51,51,56,57,93,44,91,45,57,54,46,57,48,56,53,48,55,44,52,49,46,48,52,54,48,57,49,93,44,91,45,57,54,46,52,54,51,56,54,57,44,52,49,46,48,52,53,48,56,51,93,44,91,45,57,54,46,52,54,51,56,54,49,44,52,49,46,48,49,54,48,54,57,93,44,91,45,57,54,46,51,49,57,49,57,49,44,52,49,46,48,52,52,57,57,56,93,44,91,45,57,54,46,51,50,55,51,57,57,44,52,49,46,49,56,57,57,57,57,93,44,91,45,57,54,46,52,55,48,55,50,44,52,49,46,51,57,51,50,51,57,93,44,91,45,57,54,46,53,54,56,57,55,55,44,52,49,46,52,51,51,50,52,93,44,91,45,57,54,46,57,48,53,56,54,50,44,52,49,46,52,53,51,51,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,83,104,101,114,98,117,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,50,51,49,44,34,98,101,100,115,34,58,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,49,48,55,48,52,44,52,53,46,53,53,56,55,55,50,93,44,91,45,57,51,46,55,53,57,52,51,53,44,52,53,46,53,53,57,54,52,54,93,44,91,45,57,52,46,49,52,57,52,54,55,44,52,53,46,53,53,57,48,54,54,93,44,91,45,57,52,46,48,52,55,51,50,55,44,52,53,46,52,50,50,56,54,49,93,44,91,45,57,51,46,55,53,54,54,49,44,52,53,46,50,57,52,55,50,49,93,44,91,45,57,51,46,53,55,57,51,57,44,52,53,46,50,57,50,49,50,50,93,44,91,45,57,51,46,53,50,49,54,53,51,44,52,53,46,50,52,54,54,49,56,93,44,91,45,57,51,46,53,49,50,49,57,44,52,53,46,50,52,53,54,56,51,93,44,91,45,57,51,46,53,49,48,48,55,44,52,53,46,52,49,52,55,57,56,93,44,91,45,57,51,46,53,49,48,55,48,52,44,52,53,46,53,53,56,55,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,68,97,118,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,48,49,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,50,53,50,52,50,44,52,51,46,56,53,49,48,53,56,93,44,91,45,57,56,46,51,50,48,53,57,53,44,52,51,46,52,57,56,54,53,49,93,44,91,45,57,56,46,49,49,52,55,53,56,44,52,51,46,52,57,56,50,57,55,93,44,91,45,57,55,46,57,54,52,53,56,54,44,52,51,46,52,57,57,48,52,49,93,44,91,45,57,55,46,57,54,55,50,55,57,44,52,51,46,56,53,48,54,56,54,93,44,91,45,57,56,46,51,50,53,50,52,50,44,52,51,46,56,53,49,48,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,105,98,111,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,49,51,44,34,98,101,100,115,34,58,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,55,50,49,48,56,44,51,54,46,53,57,55,50,56,52,93,44,91,45,56,51,46,54,55,53,51,57,53,44,51,54,46,54,48,48,55,56,52,93,44,91,45,56,51,46,57,51,48,55,54,50,44,51,54,46,53,56,55,54,57,49,93,44,91,45,56,51,46,57,56,55,54,49,53,44,51,54,46,53,56,57,52,55,49,93,44,91,45,56,51,46,57,48,53,54,51,56,44,51,54,46,52,49,57,57,55,57,93,44,91,45,56,51,46,54,54,55,52,48,56,44,51,54,46,51,52,52,51,56,49,93,44,91,45,56,51,46,52,54,54,48,48,50,44,51,54,46,51,54,57,49,56,54,93,44,91,45,56,51,46,51,56,54,56,44,51,54,46,52,49,51,49,56,54,93,44,91,45,56,51,46,51,57,56,51,48,51,44,51,54,46,53,51,52,56,56,53,93,44,91,45,56,51,46,52,55,50,49,48,56,44,51,54,46,53,57,55,50,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,51,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,97,103,117,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,48,57,44,34,98,101,100,115,34,58,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,55,55,56,54,44,51,51,46,56,56,57,56,50,53,93,44,91,45,57,55,46,57,55,56,57,49,57,44,51,51,46,52,54,55,49,50,57,93,44,91,45,57,55,46,57,49,56,49,56,57,44,51,51,46,52,51,51,56,55,51,93,44,91,45,57,55,46,52,56,55,48,54,53,44,51,51,46,52,51,51,54,56,49,93,44,91,45,57,55,46,52,56,52,49,54,51,44,51,51,46,57,49,53,53,49,93,44,91,45,57,55,46,53,54,48,56,53,56,44,51,51,46,56,57,57,54,52,53,93,44,91,45,57,55,46,54,54,49,52,56,57,44,51,51,46,57,57,48,56,49,56,93,44,91,45,57,55,46,56,55,55,51,56,55,44,51,51,46,56,53,48,50,51,54,93,44,91,45,57,55,46,57,55,55,56,54,44,51,51,46,56,56,57,56,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,51,52,44,34,98,101,100,115,34,58,49,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,57,53,56,55,49,44,51,50,46,48,55,57,50,51,53,93,44,91,45,57,57,46,50,48,50,55,54,56,44,51,49,46,52,54,55,50,51,52,93,44,91,45,57,57,46,48,57,48,54,50,50,44,51,49,46,52,54,48,57,50,55,93,44,91,45,57,56,46,57,57,49,54,48,56,44,51,49,46,52,56,52,48,55,49,93,44,91,45,57,56,46,54,54,56,52,52,49,44,51,49,46,55,48,48,53,49,52,93,44,91,45,57,56,46,57,50,52,52,48,49,44,51,50,46,48,55,56,48,49,56,93,44,91,45,57,57,46,49,49,56,54,54,53,44,51,50,46,48,55,57,53,56,53,93,44,91,45,57,57,46,49,57,53,56,55,49,44,51,50,46,48,55,57,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,82,97,99,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,51,57,56,44,34,98,101,100,115,34,58,52,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,48,54,51,56,52,44,52,50,46,56,52,50,48,57,53,93,44,91,45,56,56,46,51,48,53,56,57,49,44,52,50,46,54,49,48,56,49,55,93,44,91,45,56,56,46,49,56,56,51,48,54,44,52,50,46,54,54,57,55,48,57,93,44,91,45,56,55,46,48,52,51,56,57,57,44,52,50,46,54,54,51,55,50,57,93,44,91,45,56,55,46,48,53,56,55,49,54,44,52,50,46,55,54,53,50,48,50,93,44,91,45,56,55,46,48,54,57,52,49,57,44,52,50,46,56,52,50,49,52,54,93,44,91,45,56,56,46,48,54,57,57,50,52,44,52,50,46,56,52,51,51,50,51,93,44,91,45,56,56,46,51,48,54,51,56,52,44,52,50,46,56,52,50,48,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,104,97,119,97,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,48,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,50,51,56,49,52,44,52,53,46,48,50,57,50,52,54,93,44,91,45,56,57,46,50,50,51,55,52,53,44,52,52,46,54,56,49,51,54,53,93,44,91,45,56,56,46,54,48,53,49,53,57,44,52,52,46,54,55,56,51,51,49,93,44,91,45,56,56,46,54,48,54,48,56,51,44,52,52,46,53,57,48,53,49,53,93,44,91,45,56,56,46,50,52,53,50,48,52,44,52,52,46,53,56,52,55,52,54,93,44,91,45,56,56,46,50,52,50,54,56,55,44,52,52,46,54,55,57,54,51,49,93,44,91,45,56,56,46,50,52,56,50,49,51,44,52,52,46,56,53,50,55,51,57,93,44,91,45,56,56,46,52,56,57,49,52,57,44,52,52,46,56,53,53,52,52,53,93,44,91,45,56,56,46,55,51,54,49,57,52,44,52,52,46,56,53,54,51,55,54,93,44,91,45,56,56,46,55,51,53,53,52,56,44,52,52,46,57,52,51,49,55,56,93,44,91,45,56,56,46,57,56,49,51,49,57,44,52,52,46,57,52,50,55,52,53,93,44,91,45,56,56,46,57,56,49,54,56,44,52,53,46,48,50,56,57,49,55,93,44,91,45,56,57,46,50,50,51,56,49,52,44,52,53,46,48,50,57,50,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,117,100,117,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,44,91,45,57,53,46,48,57,50,53,50,44,52,49,46,54,48,50,48,53,53,93,44,91,45,57,53,46,48,52,48,55,55,44,52,49,46,53,48,52,54,57,93,44,91,45,57,52,46,55,48,48,54,50,57,44,52,49,46,53,48,52,49,52,56,93,44,91,45,57,52,46,55,52,52,50,48,52,44,52,49,46,54,48,50,49,56,53,93,44,91,45,57,52,46,55,52,52,56,55,54,44,52,49,46,56,54,50,51,57,52,93,44,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,55,34,44,34,78,65,77,69,34,58,34,72,97,115,107,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,57,48,57,56,44,51,51,46,51,57,55,52,48,52,93,44,91,45,57,57,46,57,56,56,56,50,55,44,51,50,46,57,54,48,49,50,49,93,44,91,45,57,57,46,54,49,50,48,48,49,44,51,50,46,57,53,54,57,54,50,93,44,91,45,57,57,46,52,55,49,50,53,56,44,51,50,46,57,53,55,48,50,53,93,44,91,45,57,57,46,52,55,50,52,52,52,44,51,51,46,51,57,57,48,50,51,93,44,91,45,57,57,46,57,57,48,57,56,44,51,51,46,51,57,55,52,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,48,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,55,53,54,49,55,44,51,54,46,49,54,52,54,54,51,93,44,91,45,57,55,46,54,55,52,48,50,54,44,51,53,46,55,50,53,57,55,93,44,91,45,57,55,46,49,52,49,48,54,54,44,51,53,46,55,50,52,52,48,49,93,44,91,45,57,55,46,49,52,48,53,56,51,44,51,53,46,57,52,49,57,57,49,93,44,91,45,57,55,46,51,50,51,54,50,44,51,54,46,48,49,48,56,55,55,93,44,91,45,57,55,46,51,53,52,49,51,50,44,51,54,46,49,53,57,48,55,50,93,44,91,45,57,55,46,52,54,48,55,57,50,44,51,54,46,49,54,52,52,54,50,93,44,91,45,57,55,46,54,55,53,54,49,55,44,51,54,46,49,54,52,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,79,110,101,105,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,55,56,50,44,34,98,101,100,115,34,58,56,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,53,54,50,49,51,44,52,51,46,52,55,48,51,56,56,93,44,91,45,55,53,46,56,49,52,54,50,55,44,52,51,46,52,56,51,53,55,56,93,44,91,45,55,53,46,56,56,52,50,55,53,44,52,51,46,49,53,53,53,54,50,93,44,91,45,55,53,46,55,51,56,51,57,54,44,52,51,46,49,54,52,55,54,54,93,44,91,45,55,53,46,53,53,50,55,55,52,44,52,51,46,48,51,55,53,53,52,93,44,91,45,55,53,46,53,52,50,56,48,51,44,52,50,46,57,51,49,55,55,52,93,44,91,45,55,53,46,52,51,55,49,54,55,44,52,50,46,56,54,51,51,49,57,93,44,91,45,55,53,46,50,52,55,57,54,51,44,52,50,46,56,55,49,54,48,52,93,44,91,45,55,53,46,50,49,50,49,53,56,44,52,50,46,56,55,57,57,55,51,93,44,91,45,55,53,46,50,49,57,49,48,54,44,52,51,46,48,53,50,52,54,57,93,44,91,45,55,53,46,48,54,57,49,54,53,44,52,51,46,50,50,55,51,51,51,93,44,91,45,55,53,46,49,49,48,49,54,44,52,51,46,54,49,53,50,50,57,93,44,91,45,55,53,46,53,51,51,53,44,52,51,46,52,49,57,55,53,54,93,44,91,45,55,53,46,55,53,54,50,49,51,44,52,51,46,52,55,48,51,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,56,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,50,54,52,56,55,44,51,57,46,51,54,49,56,55,49,93,44,91,45,49,48,54,46,53,48,50,54,57,44,51,57,46,50,57,56,48,54,55,93,44,91,45,49,48,54,46,52,57,51,54,52,57,44,51,57,46,49,57,56,51,50,54,93,44,91,45,49,48,54,46,53,55,55,57,54,54,44,51,57,46,48,53,55,57,48,56,93,44,91,45,49,48,54,46,49,57,49,48,48,54,44,51,57,46,48,53,54,48,55,51,93,44,91,45,49,48,54,46,49,56,51,57,55,50,44,51,57,46,51,48,57,51,53,52,93,44,91,45,49,48,54,46,49,51,53,53,50,57,44,51,57,46,51,55,57,53,52,54,93,44,91,45,49,48,54,46,50,48,54,55,51,50,44,51,57,46,51,55,57,54,51,54,93,44,91,45,49,48,54,46,52,50,54,52,56,55,44,51,57,46,51,54,49,56,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,80,105,116,116,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,51,56,50,44,34,98,101,100,115,34,58,49,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,53,49,50,53,44,51,53,46,50,57,54,48,49,57,93,44,91,45,57,53,46,55,49,54,49,53,55,44,51,53,46,49,56,57,51,53,50,93,44,91,45,57,53,46,57,56,51,48,55,55,44,51,53,46,49,53,49,54,57,53,93,44,91,45,57,54,46,48,56,56,55,57,50,44,51,53,46,48,52,57,56,55,53,93,44,91,45,57,54,46,48,57,50,48,48,49,44,51,52,46,55,54,55,52,55,57,93,44,91,45,57,54,46,48,57,50,48,52,51,44,51,52,46,54,56,48,53,53,54,93,44,91,45,57,53,46,56,56,50,49,57,54,44,51,52,46,54,56,48,53,51,52,93,44,91,45,57,53,46,56,56,49,57,56,55,44,51,52,46,53,57,51,53,50,56,93,44,91,45,57,53,46,54,55,49,56,49,44,51,52,46,53,57,51,55,51,50,93,44,91,45,57,53,46,53,49,52,53,49,49,44,51,52,46,53,57,52,49,53,51,93,44,91,45,57,53,46,53,49,52,52,55,53,44,51,52,46,54,56,48,55,49,56,93,44,91,45,57,53,46,53,48,55,55,51,56,44,51,53,46,48,50,57,50,54,53,93,44,91,45,57,53,46,51,52,57,52,48,57,44,51,53,46,48,53,56,53,50,93,44,91,45,57,53,46,51,52,57,53,50,53,44,51,53,46,49,54,48,48,50,49,93,44,91,45,57,53,46,52,53,53,48,49,56,44,51,53,46,49,54,48,53,55,53,93,44,91,45,57,53,46,52,53,49,50,53,44,51,53,46,50,57,54,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,68,111,100,100,114,105,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,49,56,54,50,57,44,51,57,46,52,53,48,51,55,53,93,44,91,45,56,48,46,56,56,56,55,52,52,44,51,57,46,50,57,52,50,57,56,93,44,91,45,56,48,46,56,49,50,57,55,44,51,57,46,49,48,57,52,48,49,93,44,91,45,56,48,46,55,50,56,51,50,54,44,51,57,46,48,57,53,54,55,57,93,44,91,45,56,48,46,53,57,54,49,50,54,44,51,57,46,49,54,55,48,54,57,93,44,91,45,56,48,46,54,48,52,51,48,49,44,51,57,46,50,56,54,48,52,55,93,44,91,45,56,48,46,53,52,52,53,50,49,44,51,57,46,52,50,57,49,50,93,44,91,45,56,48,46,54,49,56,54,50,57,44,51,57,46,52,53,48,51,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,87,105,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,57,56,48,49,55,44,51,57,46,49,56,53,53,55,50,93,44,91,45,56,49,46,52,50,52,57,48,54,44,51,57,46,49,51,53,54,55,57,93,44,91,45,56,49,46,53,56,49,52,52,55,44,51,57,46,48,50,54,49,55,57,93,44,91,45,56,49,46,53,48,50,54,50,56,44,51,56,46,57,49,55,57,50,50,93,44,91,45,56,49,46,50,55,56,52,49,50,44,51,56,46,57,49,52,56,54,55,93,44,91,45,56,49,46,49,54,50,52,53,53,44,51,57,46,48,51,48,54,48,56,93,44,91,45,56,49,46,50,53,48,50,53,50,44,51,57,46,48,51,53,48,55,52,93,44,91,45,56,49,46,50,57,56,48,49,55,44,51,57,46,49,56,53,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,56,52,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,48,48,57,57,55,54,44,52,52,46,50,56,52,56,57,57,93,44,91,45,55,49,46,48,52,50,50,56,44,52,52,46,50,51,55,53,49,52,93,44,91,45,55,49,46,50,53,49,57,53,55,44,52,52,46,50,52,52,50,54,54,93,44,91,45,55,49,46,51,48,54,48,51,54,44,52,52,46,49,51,55,50,55,50,93,44,91,45,55,49,46,52,49,53,56,57,56,44,52,52,46,50,49,50,49,54,57,93,44,91,45,55,49,46,51,54,54,51,53,53,44,52,52,46,48,54,56,53,50,52,93,44,91,45,55,49,46,51,54,49,57,54,53,44,52,51,46,57,49,53,57,51,56,93,44,91,45,55,49,46,53,54,52,54,48,51,44,52,51,46,56,57,51,49,55,50,93,44,91,45,55,49,46,53,51,49,54,53,56,44,52,51,46,55,54,48,57,55,57,93,44,91,45,55,49,46,50,53,56,50,53,57,44,52,51,46,53,55,49,51,52,53,93,44,91,45,55,49,46,49,54,50,54,55,53,44,52,51,46,53,51,56,57,53,57,93,44,91,45,55,48,46,57,54,50,49,53,52,44,52,51,46,53,52,49,48,56,55,93,44,91,45,55,48,46,57,56,57,49,50,50,44,52,51,46,55,57,50,49,49,51,93,44,91,45,55,49,46,48,48,57,57,55,54,44,52,52,46,50,56,52,56,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,84,121,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,51,56,55,49,50,44,51,57,46,53,51,57,56,56,54,93,44,91,45,56,49,46,49,50,49,53,51,51,44,51,57,46,52,53,55,55,55,53,93,44,91,45,56,49,46,48,50,53,55,48,52,44,51,57,46,52,54,50,51,49,55,93,44,91,45,56,49,46,48,48,55,56,51,54,44,51,57,46,51,53,48,57,50,51,93,44,91,45,56,48,46,56,56,56,55,52,52,44,51,57,46,50,57,52,50,57,56,93,44,91,45,56,48,46,54,49,56,54,50,57,44,51,57,46,52,53,48,51,55,53,93,44,91,45,56,48,46,55,49,54,49,50,50,44,51,57,46,52,55,53,53,51,49,93,44,91,45,56,48,46,56,52,51,55,51,49,44,51,57,46,53,56,51,56,56,53,93,44,91,45,56,48,46,57,52,51,55,56,50,44,51,57,46,54,48,54,57,50,54,93,44,91,45,56,49,46,48,51,56,55,49,50,44,51,57,46,53,51,57,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,101,32,83,117,101,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,56,51,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,50,52,51,50,55,44,52,52,46,53,52,51,54,49,56,93,44,91,45,57,51,46,57,49,48,52,48,53,44,52,52,46,53,52,51,49,54,51,93,44,91,45,57,51,46,57,50,57,53,53,44,52,52,46,52,53,54,55,49,54,93,44,91,45,57,51,46,57,51,54,48,51,50,44,52,52,46,51,51,57,54,54,53,93,44,91,45,57,52,46,48,49,49,56,54,56,44,52,52,46,50,51,57,53,50,93,44,91,45,57,51,46,55,54,55,57,55,49,44,52,52,46,49,57,53,56,51,54,93,44,91,45,57,51,46,53,50,53,50,51,49,44,52,52,46,49,57,54,49,51,52,93,44,91,45,57,51,46,53,50,52,51,50,55,44,52,52,46,53,52,51,54,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,51,55,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,56,55,48,53,57,53,44,52,55,46,57,54,48,52,53,53,93,44,91,45,49,49,57,46,57,57,50,54,55,57,44,52,55,46,55,56,51,49,53,93,44,91,45,49,50,48,46,50,48,54,57,48,56,44,52,55,46,55,53,48,54,51,56,93,44,91,45,49,50,48,46,49,57,57,48,52,56,44,52,55,46,54,56,50,50,55,54,93,44,91,45,49,50,48,46,51,49,55,57,56,52,44,52,55,46,52,53,54,57,52,56,93,44,91,45,49,50,48,46,50,56,54,53,51,44,52,55,46,51,57,51,49,49,49,93,44,91,45,49,50,48,46,49,50,57,53,55,51,44,52,55,46,51,54,54,50,53,49,93,44,91,45,49,50,48,46,48,57,52,52,54,44,52,55,46,50,54,50,49,53,57,93,44,91,45,49,50,48,46,48,48,55,48,55,52,44,52,55,46,50,50,48,49,51,51,93,44,91,45,49,50,48,46,48,48,52,55,48,52,44,52,55,46,51,49,57,57,57,52,93,44,91,45,49,49,57,46,56,55,53,55,54,44,52,55,46,52,51,55,52,57,50,93,44,91,45,49,49,57,46,53,51,51,49,50,51,44,52,55,46,52,52,49,50,48,55,93,44,91,45,49,49,57,46,53,51,50,56,56,57,44,52,55,46,53,50,55,55,53,54,93,44,91,45,49,49,57,46,51,52,49,55,54,55,44,52,55,46,54,49,50,51,56,56,93,44,91,45,49,49,57,46,50,49,50,52,49,44,52,55,46,56,48,48,54,57,53,93,44,91,45,49,49,57,46,50,49,50,50,50,53,44,52,55,46,56,56,55,55,48,56,93,44,91,45,49,49,57,46,49,48,51,56,55,51,44,52,55,46,57,54,49,55,54,51,93,44,91,45,49,49,56,46,57,56,50,50,51,52,44,52,55,46,57,54,50,48,50,53,93,44,91,45,49,49,57,46,48,53,54,57,55,44,52,56,46,49,51,54,57,55,52,93,44,91,45,49,49,57,46,49,53,48,57,56,51,44,52,56,46,49,52,54,48,54,55,93,44,91,45,49,49,57,46,51,52,51,53,50,51,44,52,56,46,48,52,57,52,51,50,93,44,91,45,49,49,57,46,52,51,54,50,53,55,44,52,56,46,48,55,54,54,56,56,93,44,91,45,49,49,57,46,54,53,50,52,54,56,44,52,56,46,48,48,48,50,50,49,93,44,91,45,49,49,57,46,54,56,50,57,56,49,44,52,56,46,48,57,50,53,49,51,93,44,91,45,49,49,57,46,56,57,53,51,53,44,52,56,46,48,53,48,48,52,52,93,44,91,45,49,49,57,46,56,55,48,53,57,53,44,52,55,46,57,54,48,52,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,97,116,116,97,114,97,117,103,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,54,56,54,44,34,98,101,100,115,34,58,50,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,54,48,55,55,55,44,52,50,46,53,51,55,56,53,51,93,44,91,45,55,57,46,48,54,49,50,54,53,44,52,49,46,57,57,57,50,53,57,93,44,91,45,55,56,46,57,49,56,56,53,53,44,52,49,46,57,57,56,49,49,57,93,44,91,45,55,56,46,51,48,56,49,50,56,44,52,49,46,57,57,57,52,49,53,93,44,91,45,55,56,46,51,48,56,56,51,57,44,52,50,46,53,50,49,50,49,55,93,44,91,45,55,56,46,52,54,51,57,52,44,52,50,46,53,51,54,51,51,50,93,44,91,45,55,56,46,56,57,53,57,57,57,44,52,50,46,52,52,48,56,48,55,93,44,91,45,55,57,46,48,54,48,55,55,55,44,52,50,46,53,51,55,56,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,68,111,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,55,55,54,44,34,98,101,100,115,34,58,50,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,48,54,56,52,56,44,52,51,46,54,51,51,48,52,53,93,44,91,45,56,57,46,48,48,57,49,51,57,44,52,51,46,50,56,52,56,51,93,44,91,45,56,57,46,48,48,56,56,51,50,44,52,51,46,49,57,55,55,50,52,93,44,91,45,56,56,46,53,51,53,56,52,51,44,52,51,46,49,57,54,48,52,56,93,44,91,45,56,56,46,52,49,55,57,56,55,44,52,51,46,49,57,52,54,57,55,93,44,91,45,56,56,46,52,48,48,52,50,54,44,52,51,46,53,52,51,53,51,50,93,44,91,45,56,56,46,52,48,49,48,52,49,44,52,51,46,54,51,48,57,51,51,93,44,91,45,56,56,46,56,56,54,48,53,50,44,52,51,46,54,51,51,53,52,93,44,91,45,56,57,46,48,48,54,56,52,56,44,52,51,46,54,51,51,48,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,54,56,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,54,51,50,54,51,44,52,50,46,50,57,54,52,52,53,93,44,91,45,57,49,46,51,54,53,56,55,55,44,52,49,46,57,52,55,52,49,93,44,91,45,57,48,46,56,57,56,52,56,52,44,52,49,46,57,52,54,50,52,53,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,50,46,48,51,51,53,52,56,93,44,91,45,57,48,46,56,57,56,48,50,44,52,50,46,50,57,53,50,51,54,93,44,91,45,57,49,46,49,51,48,48,55,57,44,52,50,46,50,57,53,55,54,49,93,44,91,45,57,49,46,51,54,51,50,54,51,44,52,50,46,50,57,54,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,97,114,98,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,51,51,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,54,52,54,54,51,44,51,55,46,52,55,49,48,49,51,93,44,91,45,57,57,46,48,49,50,53,57,56,44,51,55,46,52,55,48,52,50,49,93,44,91,45,57,57,46,48,49,49,52,57,57,44,51,55,46,51,56,52,50,54,51,93,44,91,45,57,57,46,48,48,48,51,48,49,44,51,54,46,57,57,57,52,54,55,93,44,91,45,57,56,46,53,52,52,54,54,49,44,51,54,46,57,57,56,55,53,57,93,44,91,45,57,56,46,51,52,55,49,52,57,44,51,54,46,57,57,56,49,53,53,93,44,91,45,57,56,46,51,52,57,56,48,52,44,51,55,46,51,56,52,48,53,54,93,44,91,45,57,56,46,52,54,52,57,53,49,44,51,55,46,51,56,52,48,56,54,93,44,91,45,57,56,46,52,54,52,54,54,51,44,51,55,46,52,55,49,48,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,53,57,49,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,52,48,54,50,55,53,44,51,56,46,48,50,49,49,55,57,93,44,91,45,57,50,46,52,48,57,50,51,49,44,51,55,46,56,53,57,49,56,93,44,91,45,57,50,46,52,49,51,54,54,57,44,51,55,46,55,49,51,57,52,49,93,44,91,45,57,50,46,50,52,57,52,54,51,44,51,55,46,54,48,52,53,52,51,93,44,91,45,57,50,46,48,50,57,50,53,56,44,51,55,46,54,48,50,53,52,50,93,44,91,45,57,50,46,48,50,49,49,54,53,44,51,56,46,48,49,48,54,51,57,93,44,91,45,57,50,46,49,56,53,51,55,44,51,56,46,48,49,54,51,51,56,93,44,91,45,57,50,46,52,48,54,50,55,53,44,51,56,46,48,50,49,49,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,68,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,50,53,53,44,34,98,101,100,115,34,58,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,49,54,52,51,55,44,51,49,46,54,49,57,52,54,54,93,44,91,45,56,53,46,55,52,56,50,53,49,44,51,49,46,54,49,56,48,52,56,93,44,91,45,56,53,46,55,56,57,49,52,50,44,51,49,46,54,49,55,57,54,52,93,44,91,45,56,53,46,55,57,49,52,48,50,44,51,49,46,49,57,54,51,52,57,93,44,91,45,56,53,46,55,49,48,51,51,51,44,51,49,46,49,57,53,49,55,51,93,44,91,45,56,53,46,54,54,53,55,55,53,44,51,49,46,50,54,55,53,57,49,93,44,91,45,56,53,46,52,56,53,56,53,52,44,51,49,46,50,52,54,48,57,54,93,44,91,45,56,53,46,52,49,55,52,51,52,44,51,49,46,51,49,52,57,55,51,93,44,91,45,56,53,46,52,49,54,52,51,55,44,51,49,46,54,49,57,52,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,55,56,49,57,53,44,51,57,46,49,51,52,55,54,49,93,44,91,45,49,48,49,46,52,56,52,51,56,51,44,51,56,46,55,48,48,49,54,54,93,44,91,45,49,48,49,46,49,50,56,51,55,57,44,51,56,46,55,48,48,54,48,51,93,44,91,45,49,48,48,46,56,49,56,54,57,56,44,51,56,46,54,57,57,56,54,49,93,44,91,45,49,48,48,46,56,49,49,56,53,56,44,51,57,46,49,51,51,51,54,93,44,91,45,49,48,49,46,51,57,49,55,49,55,44,51,57,46,49,51,53,49,49,55,93,44,91,45,49,48,49,46,52,55,56,49,57,53,44,51,57,46,49,51,52,55,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,77,97,100,101,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,48,49,51,44,34,98,101,100,115,34,58,52,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,53,50,48,53,53,44,51,55,46,49,56,51,49,48,56,93,44,91,45,49,50,48,46,50,50,55,50,56,54,44,51,55,46,49,54,51,52,93,44,91,45,49,50,48,46,52,55,54,54,57,50,44,51,55,46,48,57,54,51,57,93,44,91,45,49,50,48,46,53,52,49,54,57,54,44,51,55,46,48,52,52,53,48,53,93,44,91,45,49,50,48,46,51,55,48,50,53,54,44,51,54,46,55,56,52,57,52,93,44,91,45,49,50,48,46,49,56,56,56,51,44,51,54,46,55,55,54,52,48,56,93,44,91,45,49,50,48,46,48,55,57,52,53,56,44,51,54,46,56,50,53,51,52,53,93,44,91,45,49,49,57,46,56,49,51,55,51,52,44,51,54,46,56,53,48,52,49,50,93,44,91,45,49,49,57,46,54,57,48,55,55,57,44,51,55,46,48,49,49,57,56,55,93,44,91,45,49,49,57,46,53,54,50,57,55,57,44,51,55,46,48,54,52,48,57,53,93,44,91,45,49,49,57,46,53,53,57,52,49,50,44,51,55,46,49,52,51,54,49,57,93,44,91,45,49,49,57,46,51,56,54,53,50,49,44,51,55,46,49,52,57,53,51,93,44,91,45,49,49,57,46,51,51,48,53,55,51,44,51,55,46,50,48,53,55,57,49,93,44,91,45,49,49,57,46,51,49,50,49,56,54,44,51,55,46,51,53,50,55,50,53,93,44,91,45,49,49,57,46,48,50,50,51,54,51,44,51,55,46,53,56,53,55,51,55,93,44,91,45,49,49,57,46,49,50,52,51,49,50,44,51,55,46,55,51,51,57,52,52,93,44,91,45,49,49,57,46,50,54,56,57,55,57,44,51,55,46,55,51,57,50,51,93,44,91,45,49,49,57,46,51,48,56,57,57,53,44,51,55,46,55,55,55,57,56,54,93,44,91,45,49,49,57,46,53,56,51,53,56,53,44,51,55,46,53,54,48,51,51,53,93,44,91,45,49,49,57,46,54,53,49,49,57,49,44,51,55,46,52,49,55,56,51,50,93,44,91,45,49,49,57,46,55,54,49,56,48,57,44,51,55,46,52,49,55,49,49,52,93,44,91,45,49,50,48,46,48,53,50,48,53,53,44,51,55,46,49,56,51,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,71,101,110,116,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,54,53,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,53,57,56,52,56,55,44,52,48,46,51,56,54,55,49,52,93,44,91,45,57,52,46,54,48,53,57,52,50,44,52,48,46,49,50,54,49,50,55,93,44,91,45,57,52,46,54,48,53,51,55,55,44,52,48,46,48,51,57,50,49,55,93,44,91,45,57,52,46,50,49,56,56,44,52,48,46,48,51,52,56,56,53,93,44,91,45,57,52,46,50,49,54,54,57,54,44,52,48,46,49,51,54,54,50,54,93,44,91,45,57,52,46,50,49,52,50,55,56,44,52,48,46,51,56,52,50,53,52,93,44,91,45,57,52,46,53,57,56,52,56,55,44,52,48,46,51,56,54,55,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,108,97,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,54,55,54,50,50,44,52,50,46,48,56,54,49,52,55,93,44,91,45,49,48,48,46,50,54,53,52,55,52,44,52,49,46,55,51,57,56,53,54,93,44,91,45,49,48,48,46,50,53,49,50,50,52,44,52,49,46,55,51,57,56,49,55,93,44,91,45,57,57,46,54,56,54,56,51,52,44,52,49,46,55,52,48,51,50,54,93,44,91,45,57,57,46,54,56,54,57,53,57,44,52,50,46,48,56,54,48,55,53,93,44,91,45,49,48,48,46,49,54,55,54,48,53,44,52,50,46,48,56,53,56,52,56,93,44,91,45,49,48,48,46,50,54,55,54,50,50,44,52,50,46,48,56,54,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,68,97,103,103,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,53,48,48,50,54,44,52,49,46,48,48,48,54,57,49,93,44,91,45,49,49,48,46,48,48,48,55,49,55,44,52,48,46,57,57,55,52,53,93,44,91,45,49,49,48,46,48,48,48,55,49,49,44,52,48,46,56,49,51,54,55,56,93,44,91,45,49,48,57,46,57,55,54,52,48,50,44,52,48,46,56,48,57,54,56,54,93,44,91,45,49,48,57,46,56,55,48,50,48,55,44,52,48,46,55,54,51,56,50,57,93,44,91,45,49,48,57,46,51,57,52,52,57,49,44,52,48,46,56,53,56,49,54,54,93,44,91,45,49,48,57,46,50,48,51,50,53,44,52,48,46,56,53,56,52,48,49,93,44,91,45,49,48,57,46,49,54,49,48,54,51,44,52,48,46,54,56,51,56,49,55,93,44,91,45,49,48,57,46,48,52,56,57,52,52,44,52,48,46,54,54,50,54,48,49,93,44,91,45,49,48,57,46,48,53,48,48,50,54,44,52,49,46,48,48,48,54,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,80,108,97,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,50,56,51,57,49,44,52,50,46,52,51,49,52,48,50,93,44,91,45,49,48,53,46,50,55,49,55,52,54,44,52,49,46,57,56,54,48,57,53,93,44,91,45,49,48,53,46,50,55,56,50,51,54,44,52,49,46,54,53,54,54,53,53,93,44,91,45,49,48,52,46,54,53,51,51,51,56,44,52,49,46,54,53,51,48,48,55,93,44,91,45,49,48,52,46,54,53,53,54,51,57,44,52,50,46,54,48,57,52,54,56,93,44,91,45,49,48,52,46,56,57,50,52,51,55,44,52,50,46,54,48,56,57,51,57,93,44,91,45,49,48,53,46,50,56,54,53,49,49,44,52,50,46,54,48,53,56,50,54,93,44,91,45,49,48,53,46,50,56,51,57,49,44,52,50,46,52,51,49,52,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,71,97,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,54,53,56,53,44,34,98,101,100,115,34,58,52,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,53,53,54,44,51,53,46,52,49,57,56,49,49,93,44,91,45,56,49,46,51,53,54,54,56,50,44,51,53,46,51,51,48,54,48,52,93,44,91,45,56,49,46,51,50,56,48,51,55,44,51,53,46,49,54,51,52,54,55,93,44,91,45,56,49,46,48,51,51,57,48,57,44,51,53,46,49,52,56,54,57,93,44,91,45,56,48,46,57,53,52,56,54,44,51,53,46,52,48,48,48,55,56,93,44,91,45,56,49,46,52,53,53,54,44,51,53,46,52,49,57,56,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,71,117,97,100,97,108,117,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,56,50,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,50,57,48,55,57,49,44,51,53,46,48,52,50,48,51,93,44,91,45,49,48,53,46,50,57,48,51,57,54,44,51,52,46,54,48,54,55,54,54,93,44,91,45,49,48,53,46,51,49,51,48,55,50,44,51,52,46,51,52,55,50,48,53,93,44,91,45,49,48,52,46,56,57,49,55,52,53,44,51,52,46,51,52,55,48,52,51,93,44,91,45,49,48,52,46,56,57,50,48,50,51,44,51,52,46,54,48,52,52,50,54,93,44,91,45,49,48,52,46,52,52,52,55,54,50,44,51,52,46,54,48,52,57,53,50,93,44,91,45,49,48,52,46,51,51,57,55,50,53,44,51,52,46,54,57,50,50,51,52,93,44,91,45,49,48,52,46,51,51,57,56,49,55,44,51,52,46,55,55,57,48,54,50,93,44,91,45,49,48,52,46,49,50,57,49,52,51,44,51,52,46,55,55,57,51,51,55,93,44,91,45,49,48,52,46,49,50,53,49,50,49,44,51,53,46,49,52,50,48,53,56,93,44,91,45,49,48,52,46,49,50,53,49,51,54,44,51,53,46,50,49,53,54,57,54,93,44,91,45,49,48,53,46,50,57,49,49,54,57,44,51,53,46,50,49,54,52,56,57,93,44,91,45,49,48,53,46,50,57,48,55,57,49,44,51,53,46,48,52,50,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,71,111,108,100,101,110,32,86,97,108,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,51,56,57,49,54,51,44,52,54,46,54,57,51,54,50,53,93,44,91,45,49,48,57,46,52,48,50,57,48,54,44,52,54,46,50,49,57,55,48,54,93,44,91,45,49,48,57,46,54,53,51,56,55,49,44,52,54,46,50,49,57,52,48,52,93,44,91,45,49,48,57,46,54,48,53,49,53,51,44,52,54,46,48,52,52,57,57,52,93,44,91,45,49,48,57,46,52,49,55,49,53,56,44,52,54,46,48,52,52,55,53,57,93,44,91,45,49,48,57,46,52,49,54,50,50,55,44,52,54,46,49,51,50,51,55,49,93,44,91,45,49,48,56,46,57,50,52,53,56,57,44,52,54,46,49,51,50,51,55,93,44,91,45,49,48,56,46,55,55,57,55,51,51,44,52,54,46,49,51,50,52,53,55,93,44,91,45,49,48,56,46,55,55,57,50,55,50,44,52,54,46,50,55,55,51,57,56,93,44,91,45,49,48,56,46,56,54,50,50,55,55,44,52,54,46,51,54,52,53,56,54,93,44,91,45,49,48,56,46,57,48,52,57,48,52,44,52,54,46,53,55,54,57,48,56,93,44,91,45,49,48,57,46,48,48,57,57,56,50,44,52,54,46,54,50,49,49,55,50,93,44,91,45,49,48,57,46,48,48,57,53,55,44,52,54,46,55,53,48,55,48,50,93,44,91,45,49,48,57,46,51,56,57,50,48,56,44,52,54,46,55,53,49,51,53,49,93,44,91,45,49,48,57,46,51,56,57,49,54,51,44,52,54,46,54,57,51,54,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,49,55,50,44,34,98,101,100,115,34,58,49,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,53,53,57,55,51,44,51,53,46,56,49,56,49,50,93,44,91,45,55,56,46,52,57,50,49,52,57,44,51,53,46,54,56,54,57,48,51,93,44,91,45,55,56,46,55,48,56,57,48,50,44,51,53,46,53,49,57,52,53,56,93,44,91,45,55,56,46,53,51,56,51,52,57,44,51,53,46,51,49,54,52,49,93,44,91,45,55,56,46,52,49,49,55,51,52,44,51,53,46,50,53,52,54,54,51,93,44,91,45,55,56,46,51,48,54,53,56,44,51,53,46,50,56,55,54,48,52,93,44,91,45,55,56,46,49,53,56,53,56,57,44,51,53,46,51,52,55,53,51,55,93,44,91,45,55,56,46,48,54,52,55,56,52,44,51,53,46,53,56,53,50,54,51,93,44,91,45,55,56,46,49,50,53,53,51,57,44,51,53,46,54,48,51,49,48,55,93,44,91,45,55,56,46,49,57,50,49,49,55,44,51,53,46,55,51,48,53,52,53,93,44,91,45,55,56,46,50,53,53,57,55,51,44,51,53,46,56,49,56,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,67,108,97,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,50,50,48,48,44,34,98,101,100,115,34,58,52,54,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,49,53,50,50,55,56,44,51,55,46,50,56,54,48,53,53,93,44,91,45,49,50,50,46,48,50,54,49,48,55,44,51,55,46,49,54,54,56,49,93,44,91,45,49,50,49,46,55,53,55,54,44,51,55,46,48,52,57,54,51,93,44,91,45,49,50,49,46,53,56,49,51,53,52,44,51,54,46,56,57,57,49,53,50,93,44,91,45,49,50,49,46,52,56,56,57,52,57,44,51,54,46,57,56,51,49,52,56,93,44,91,45,49,50,49,46,50,49,53,52,48,54,44,51,54,46,57,54,49,50,52,56,93,44,91,45,49,50,49,46,50,50,54,56,48,52,44,51,55,46,49,51,52,55,55,52,93,44,91,45,49,50,49,46,52,48,52,54,51,54,44,51,55,46,49,53,53,57,56,57,93,44,91,45,49,50,49,46,52,53,52,48,48,57,44,51,55,46,50,56,52,48,53,93,44,91,45,49,50,49,46,52,49,50,53,52,57,44,51,55,46,51,56,57,52,51,53,93,44,91,45,49,50,49,46,52,55,50,54,52,56,44,51,55,46,52,56,50,49,55,93,44,91,45,49,50,50,46,48,56,49,52,55,51,44,51,55,46,52,55,55,56,51,56,93,44,91,45,49,50,50,46,49,57,48,52,48,50,44,51,55,46,52,51,49,52,55,50,93,44,91,45,49,50,50,46,49,53,50,50,55,56,44,51,55,46,50,56,54,48,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,101,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,55,48,56,44,34,98,101,100,115,34,58,50,49,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,52,54,54,57,57,44,51,51,46,50,49,51,52,53,56,93,44,91,45,55,57,46,53,49,56,56,52,52,44,51,51,46,49,52,56,50,57,55,93,44,91,45,55,57,46,54,52,51,51,48,49,44,51,51,46,49,50,51,52,53,51,93,44,91,45,55,57,46,56,52,49,48,54,55,44,51,50,46,57,49,50,52,54,57,93,44,91,45,55,57,46,57,53,54,52,51,51,44,51,50,46,56,53,57,55,57,49,93,44,91,45,56,48,46,48,53,53,53,57,53,44,51,50,46,57,57,56,55,49,93,44,91,45,56,48,46,49,52,57,50,52,54,44,51,51,46,48,50,49,54,48,49,93,44,91,45,56,48,46,48,55,57,48,50,56,44,51,50,46,57,50,55,56,49,49,93,44,91,45,56,48,46,49,53,55,50,54,53,44,51,50,46,56,49,56,49,56,55,93,44,91,45,56,48,46,52,48,49,51,52,44,51,50,46,56,53,56,52,54,54,93,44,91,45,56,48,46,52,53,51,54,51,44,51,50,46,55,51,57,57,93,44,91,45,56,48,46,52,48,51,50,56,50,44,51,50,46,54,53,49,54,50,50,93,44,91,45,56,48,46,52,49,54,53,56,54,44,51,50,46,53,52,54,51,49,56,93,44,91,45,56,48,46,50,50,51,53,57,44,51,50,46,52,56,50,53,54,53,93,44,91,45,56,48,46,48,56,56,56,55,55,44,51,50,46,53,52,57,48,50,57,93,44,91,45,55,57,46,57,55,57,48,48,50,44,51,50,46,53,53,56,48,55,52,93,44,91,45,55,57,46,55,57,56,50,53,53,44,51,50,46,54,55,53,54,51,50,93,44,91,45,55,57,46,55,54,48,48,55,52,44,51,50,46,55,51,56,50,53,55,93,44,91,45,55,57,46,53,51,52,54,56,57,44,51,50,46,56,55,48,48,49,50,93,44,91,45,55,57,46,52,52,48,49,56,49,44,51,50,46,57,53,56,57,49,54,93,44,91,45,55,57,46,51,50,50,50,53,55,44,51,50,46,57,53,54,48,55,56,93,44,91,45,55,57,46,50,54,49,56,51,44,51,51,46,48,52,57,55,57,51,93,44,91,45,55,57,46,52,52,54,54,57,57,44,51,51,46,50,49,51,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,49,54,56,44,34,98,101,100,115,34,58,52,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,52,53,51,49,57,44,52,54,46,54,55,57,50,52,51,93,44,91,45,49,49,57,46,53,49,54,53,56,50,44,52,54,46,55,50,55,54,51,56,93,44,91,45,49,49,57,46,54,53,57,49,56,57,44,52,54,46,54,52,48,51,51,51,93,44,91,45,49,49,57,46,56,55,52,48,52,50,44,52,54,46,54,50,56,50,56,51,93,44,91,45,49,49,57,46,56,54,53,56,50,57,44,52,54,46,48,52,48,56,53,56,93,44,91,45,49,49,57,46,56,54,56,51,49,50,44,52,53,46,56,51,54,49,57,56,93,44,91,45,49,49,57,46,54,54,57,57,55,52,44,52,53,46,56,53,54,57,48,56,93,44,91,45,49,49,57,46,53,55,49,54,48,50,44,52,53,46,57,50,53,52,55,56,93,44,91,45,49,49,57,46,52,51,50,49,53,44,52,53,46,57,49,56,50,55,49,93,44,91,45,49,49,57,46,49,50,54,51,50,50,44,52,53,46,57,51,50,55,56,52,93,44,91,45,49,49,56,46,57,56,55,50,53,56,44,52,53,46,57,57,57,56,53,53,93,44,91,45,49,49,56,46,57,55,52,54,54,52,44,52,54,46,49,51,57,53,50,51,93,44,91,45,49,49,57,46,48,52,49,52,57,56,44,52,54,46,49,57,50,54,54,55,93,44,91,45,49,49,57,46,50,54,55,50,48,50,44,52,54,46,50,56,52,54,50,53,93,44,91,45,49,49,57,46,50,55,48,51,50,44,52,54,46,53,50,49,51,49,49,93,44,91,45,49,49,57,46,52,53,51,49,57,44,52,54,46,54,55,57,50,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,50,53,44,34,98,101,100,115,34,58,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,52,57,57,55,53,44,52,48,46,51,52,54,53,48,53,93,44,91,45,57,50,46,54,56,52,49,54,55,44,52,48,46,51,52,51,52,54,54,93,44,91,45,57,50,46,56,53,53,54,50,57,44,52,48,46,51,52,50,55,51,54,93,44,91,45,57,50,46,56,53,54,49,57,49,44,52,48,46,48,51,55,50,53,51,93,44,91,45,57,50,46,56,52,55,52,55,55,44,52,48,46,48,51,55,51,48,49,93,44,91,45,57,50,46,51,52,53,48,54,52,44,52,48,46,48,51,55,50,49,93,44,91,45,57,50,46,51,52,55,56,48,49,44,52,48,46,51,48,50,55,53,54,93,44,91,45,57,50,46,51,52,57,57,55,53,44,52,48,46,51,52,54,53,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,69,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,49,51,54,44,34,98,101,100,115,34,58,50,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,53,50,50,50,52,44,52,49,46,52,53,56,50,51,57,93,44,91,45,56,50,46,56,52,55,55,49,51,44,52,49,46,52,51,48,51,50,54,93,44,91,45,56,50,46,56,52,49,52,55,53,44,52,49,46,50,57,48,48,50,51,93,44,91,45,56,50,46,51,52,50,51,49,52,44,52,49,46,50,56,51,53,53,52,93,44,91,45,56,50,46,51,52,56,49,50,50,44,52,49,46,55,48,48,48,53,55,93,44,91,45,56,50,46,51,57,56,51,52,56,44,52,49,46,54,55,54,53,50,52,93,44,91,45,56,50,46,55,50,54,52,50,55,44,52,49,46,54,57,56,51,48,56,93,44,91,45,56,50,46,55,56,55,52,48,50,44,52,49,46,53,56,55,55,51,56,93,44,91,45,56,50,46,55,49,57,50,51,54,44,52,49,46,52,56,50,52,50,51,93,44,91,45,56,50,46,57,53,50,50,50,52,44,52,49,46,52,53,56,50,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,86,101,114,109,105,108,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,52,48,55,44,34,98,101,100,115,34,58,49,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,51,50,51,56,55,44,52,48,46,51,57,57,52,93,44,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,44,91,45,56,55,46,53,51,51,50,50,56,44,51,57,46,56,56,51,93,44,91,45,56,55,46,53,51,49,52,52,57,44,52,48,46,49,52,56,49,50,55,93,44,91,45,56,55,46,53,50,54,53,56,57,44,52,48,46,52,55,54,56,55,54,93,44,91,45,56,55,46,53,50,54,51,54,54,44,52,48,46,52,57,49,50,51,55,93,44,91,45,56,55,46,57,51,53,51,48,57,44,52,48,46,52,56,53,57,50,51,93,44,91,45,56,55,46,57,51,50,51,56,55,44,52,48,46,51,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,111,117,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,56,54,56,52,44,34,98,101,100,115,34,58,53,48,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,49,55,55,48,55,44,51,56,46,56,48,53,55,52,56,93,44,91,45,57,48,46,50,57,56,55,52,51,44,51,56,46,56,56,55,55,53,57,93,44,91,45,57,48,46,52,52,48,54,49,55,44,51,56,46,56,50,55,54,53,93,44,91,45,57,48,46,53,52,49,54,49,50,44,51,56,46,54,56,53,50,54,55,93,44,91,45,57,48,46,55,51,50,51,50,56,44,51,56,46,54,51,57,51,48,50,93,44,91,45,57,48,46,55,51,54,51,49,49,44,51,56,46,52,54,54,54,52,51,93,44,91,45,57,48,46,53,57,49,49,50,51,44,51,56,46,53,48,49,54,53,50,93,44,91,45,57,48,46,52,49,50,53,49,57,44,51,56,46,53,48,48,56,53,51,93,44,91,45,57,48,46,51,52,49,52,52,54,44,51,56,46,51,56,56,50,57,56,93,44,91,45,57,48,46,50,54,52,49,50,51,44,51,56,46,53,50,48,55,50,56,93,44,91,45,57,48,46,50,53,55,52,49,51,44,51,56,46,53,51,49,56,53,50,93,44,91,45,57,48,46,51,50,48,53,48,52,44,51,56,46,53,57,52,49,55,55,93,44,91,45,57,48,46,50,53,49,55,52,53,44,51,56,46,55,49,56,56,56,55,93,44,91,45,57,48,46,49,54,54,53,55,52,44,51,56,46,55,55,50,52,52,56,93,44,91,45,57,48,46,49,49,55,55,48,55,44,51,56,46,56,48,53,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,54,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,52,48,51,56,56,44,52,50,46,52,57,53,48,52,53,93,44,91,45,56,56,46,57,51,57,55,51,50,44,52,50,46,49,53,50,51,50,93,44,91,45,56,56,46,55,48,53,53,56,53,44,52,50,46,49,53,51,53,51,55,93,44,91,45,56,56,46,55,48,55,52,50,49,44,52,50,46,52,57,51,53,57,54,93,44,91,45,56,56,46,55,55,54,52,57,51,44,52,50,46,52,57,49,57,49,50,93,44,91,45,56,56,46,57,52,48,51,56,56,44,52,50,46,52,57,53,48,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,84,101,104,97,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,51,55,51,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,52,57,55,54,51,53,44,52,48,46,52,52,53,53,57,49,93,44,91,45,49,50,49,46,54,56,53,54,55,57,44,52,48,46,52,53,51,49,50,49,93,44,91,45,49,50,50,46,48,49,48,51,49,54,44,52,48,46,52,50,54,53,53,56,93,44,91,45,49,50,50,46,51,49,48,52,49,50,44,52,48,46,51,55,49,48,54,52,93,44,91,45,49,50,50,46,53,49,57,57,56,56,44,52,48,46,51,57,51,54,55,53,93,44,91,45,49,50,50,46,54,53,48,50,54,51,44,52,48,46,51,50,56,54,51,93,44,91,45,49,50,50,46,55,52,56,54,48,56,44,52,48,46,51,54,53,54,57,52,93,44,91,45,49,50,51,46,48,54,53,52,50,54,44,52,48,46,50,56,54,57,55,49,93,44,91,45,49,50,50,46,57,56,57,48,49,53,44,52,48,46,50,53,48,49,52,53,93,44,91,45,49,50,50,46,57,51,52,48,49,51,44,51,57,46,57,55,56,49,51,49,93,44,91,45,49,50,50,46,57,51,55,54,53,52,44,51,57,46,55,57,56,49,53,54,93,44,91,45,49,50,50,46,48,52,54,52,55,49,44,51,57,46,55,57,55,54,52,56,93,44,91,45,49,50,50,46,48,52,52,56,54,53,44,51,57,46,56,56,51,55,55,49,93,44,91,45,49,50,49,46,56,48,52,48,52,49,44,51,57,46,56,56,52,51,52,52,93,44,91,45,49,50,49,46,54,52,54,48,51,50,44,51,57,46,57,56,50,53,50,55,93,44,91,45,49,50,49,46,53,56,54,52,48,55,44,52,48,46,49,48,48,53,50,50,93,44,91,45,49,50,49,46,52,51,54,56,56,54,44,52,48,46,49,53,49,57,48,53,93,44,91,45,49,50,49,46,51,52,57,44,52,48,46,50,54,52,52,53,52,93,44,91,45,49,50,49,46,52,55,48,51,57,53,44,52,48,46,51,53,48,50,49,51,93,44,91,45,49,50,49,46,52,57,55,54,51,53,44,52,48,46,52,52,53,53,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,68,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,57,56,52,51,44,34,98,101,100,115,34,58,50,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,51,56,49,51,53,44,52,51,46,50,48,54,48,53,55,93,44,91,45,56,57,46,56,51,56,49,54,55,44,52,50,46,56,53,55,51,57,55,93,44,91,45,56,57,46,51,54,57,49,50,56,44,52,50,46,56,52,53,48,51,54,93,44,91,45,56,57,46,48,49,51,53,56,50,44,52,50,46,56,52,55,54,51,93,44,91,45,56,57,46,48,48,56,56,51,50,44,52,51,46,49,57,55,55,50,52,93,44,91,45,56,57,46,48,48,57,49,51,57,44,52,51,46,50,56,52,56,51,93,44,91,45,56,57,46,55,50,48,52,54,51,44,52,51,46,50,57,51,48,56,52,93,44,91,45,56,57,46,56,51,56,49,51,53,44,52,51,46,50,48,54,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,70,105,115,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,51,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,52,52,50,50,52,44,51,50,46,57,53,57,57,55,56,93,44,91,45,49,48,48,46,53,49,57,50,48,56,44,51,50,46,57,54,50,57,50,54,93,44,91,45,49,48,48,46,54,53,53,56,55,44,51,50,46,57,54,51,52,54,57,93,44,91,45,49,48,48,46,54,54,48,54,50,54,44,51,50,46,53,50,53,51,49,50,93,44,91,45,49,48,48,46,49,52,54,53,52,51,44,51,50,46,53,50,50,55,57,51,93,44,91,45,49,48,48,46,49,52,52,50,50,52,44,51,50,46,57,53,57,57,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,83,97,98,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,56,56,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,52,49,49,55,49,44,51,49,46,56,52,53,50,51,51,93,44,91,45,57,51,46,56,55,57,48,54,49,44,51,49,46,56,52,52,50,56,55,93,44,91,45,57,51,46,55,57,52,53,52,56,44,51,49,46,55,48,50,48,55,54,93,44,91,45,57,51,46,56,51,52,57,49,56,44,51,49,46,53,56,54,50,49,50,93,44,91,45,57,51,46,54,57,50,54,51,49,44,51,49,46,52,51,55,49,57,50,93,44,91,45,57,51,46,54,56,55,53,49,49,44,51,49,46,51,49,48,56,49,51,93,44,91,45,57,51,46,54,48,48,51,48,56,44,51,49,46,49,55,54,49,53,56,93,44,91,45,57,51,46,53,53,50,53,50,52,44,51,49,46,49,56,53,52,48,53,93,44,91,45,57,51,46,53,51,52,57,49,57,44,51,49,46,50,55,54,53,55,57,93,44,91,45,57,51,46,52,52,50,53,53,52,44,51,49,46,50,55,54,55,49,54,93,44,91,45,57,51,46,51,57,48,52,57,53,44,51,49,46,51,54,52,49,52,55,93,44,91,45,57,51,46,50,51,54,49,48,52,44,51,49,46,51,54,52,53,48,55,93,44,91,45,57,51,46,50,51,54,54,54,50,44,51,49,46,53,51,56,51,51,57,93,44,91,45,57,51,46,51,51,55,52,53,54,44,51,49,46,53,51,56,49,49,93,44,91,45,57,51,46,51,51,56,57,55,50,44,51,49,46,55,49,52,50,53,57,93,44,91,45,57,51,46,52,52,49,55,52,51,44,51,49,46,55,49,52,52,56,53,93,44,91,45,57,51,46,52,52,49,49,55,49,44,51,49,46,56,52,53,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,50,54,44,34,98,101,100,115,34,58,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,57,57,49,48,53,44,51,57,46,55,57,48,48,54,93,44,91,45,57,48,46,51,55,49,50,53,54,44,51,57,46,55,53,51,49,50,50,93,44,91,45,57,48,46,51,48,48,54,54,54,44,51,57,46,54,51,54,53,52,49,93,44,91,45,57,48,46,51,48,49,56,51,49,44,51,57,46,53,50,48,51,52,52,93,44,91,45,57,48,46,49,53,51,55,56,50,44,51,57,46,53,50,48,51,49,53,93,44,91,45,56,57,46,57,50,54,48,51,55,44,51,57,46,53,50,50,49,48,52,93,44,91,45,56,57,46,57,56,52,55,52,53,44,51,57,46,55,49,56,48,55,57,93,44,91,45,56,57,46,57,57,52,52,48,53,44,51,57,46,56,55,50,56,54,93,44,91,45,57,48,46,53,56,51,53,51,52,44,51,57,46,56,55,54,55,53,93,44,91,45,57,48,46,53,55,49,52,50,52,44,51,57,46,56,51,56,57,54,49,93,44,91,45,57,48,46,53,57,57,49,48,53,44,51,57,46,55,57,48,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,53,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,57,53,44,34,98,101,100,115,34,58,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,49,53,53,55,57,44,51,50,46,50,56,56,53,53,54,93,44,91,45,56,51,46,54,48,56,53,52,55,44,51,50,46,49,49,56,52,48,53,93,44,91,45,56,51,46,51,51,55,51,49,51,44,51,50,46,49,48,53,56,56,53,93,44,91,45,56,51,46,50,57,49,49,48,54,44,51,50,46,49,55,56,56,50,53,93,44,91,45,56,51,46,51,52,54,53,50,56,44,51,50,46,50,55,50,52,56,57,93,44,91,45,56,51,46,52,57,56,48,51,57,44,51,50,46,52,48,49,55,49,53,93,44,91,45,56,51,46,54,49,53,53,55,57,44,51,50,46,50,56,56,53,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,101,114,116,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,54,52,52,44,34,98,101,100,115,34,58,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,50,57,49,53,49,57,44,51,54,46,49,54,56,51,52,50,93,44,91,45,55,55,46,51,50,55,53,54,57,44,51,54,46,48,55,49,51,54,49,93,44,91,45,55,55,46,48,52,50,56,56,50,44,51,53,46,57,52,50,50,55,56,93,44,91,45,55,55,46,48,48,53,50,53,44,51,53,46,56,53,56,52,51,51,93,44,91,45,55,54,46,55,54,48,53,57,56,44,51,53,46,56,54,52,56,56,55,93,44,91,45,55,54,46,54,48,54,50,49,52,44,51,53,46,57,55,56,48,53,49,93,44,91,45,55,54,46,54,56,50,53,51,53,44,51,54,46,48,51,48,57,52,55,93,44,91,45,55,54,46,55,51,54,57,51,51,44,51,54,46,49,53,48,53,56,51,93,44,91,45,55,54,46,55,48,54,53,56,52,44,51,54,46,50,52,51,55,57,54,93,44,91,45,55,55,46,50,48,56,52,54,56,44,51,54,46,50,52,54,53,55,56,93,44,91,45,55,55,46,50,57,49,53,49,57,44,51,54,46,49,54,56,51,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,83,116,97,110,108,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,49,49,52,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,50,57,53,52,50,49,44,51,53,46,53,48,50,57,50,93,44,91,45,56,48,46,53,48,52,57,56,53,44,51,53,46,49,56,52,57,57,56,93,44,91,45,56,48,46,51,53,56,57,50,50,44,51,53,46,49,54,53,50,56,49,93,44,91,45,56,48,46,50,55,54,56,50,57,44,51,53,46,49,57,53,55,50,50,93,44,91,45,56,48,46,48,55,53,51,54,53,44,51,53,46,49,52,51,48,56,49,93,44,91,45,56,48,46,48,57,56,49,56,53,44,51,53,46,50,53,53,49,55,51,93,44,91,45,56,48,46,48,53,49,55,51,57,44,51,53,46,51,55,50,53,56,53,93,44,91,45,56,48,46,49,56,50,53,53,57,44,51,53,46,53,48,52,49,53,49,93,44,91,45,56,48,46,50,57,53,52,50,49,44,51,53,46,53,48,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,82,104,101,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,54,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,49,54,48,54,50,44,51,53,46,55,54,49,57,51,57,93,44,91,45,56,53,46,49,48,55,55,54,50,44,51,53,46,53,55,49,51,53,57,93,44,91,45,56,53,46,49,51,53,49,57,49,44,51,53,46,52,53,56,54,52,57,93,44,91,45,56,53,46,48,49,54,51,52,51,44,51,53,46,52,48,57,50,56,56,93,44,91,45,56,52,46,57,49,53,48,52,57,44,51,53,46,52,52,48,55,55,49,93,44,91,45,56,52,46,55,56,50,51,54,54,44,51,53,46,53,57,52,55,57,57,93,44,91,45,56,52,46,55,50,51,56,53,51,44,51,53,46,55,53,50,56,57,54,93,44,91,45,56,52,46,55,56,49,57,48,49,44,51,53,46,56,50,53,93,44,91,45,56,52,46,57,49,54,48,54,50,44,51,53,46,55,54,49,57,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,48,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,55,48,48,54,57,50,44,51,53,46,54,53,50,50,57,53,93,44,91,45,55,55,46,56,50,50,53,49,49,44,51,53,46,53,56,53,51,56,51,93,44,91,45,55,55,46,56,48,54,50,52,56,44,51,53,46,51,54,56,55,53,52,93,44,91,45,55,55,46,54,51,57,49,48,49,44,51,53,46,51,53,52,48,56,54,93,44,91,45,55,55,46,52,55,53,53,49,53,44,51,53,46,52,50,54,54,53,53,93,44,91,45,55,55,46,53,48,51,52,44,51,53,46,53,49,55,52,52,53,93,44,91,45,55,55,46,55,48,48,54,57,50,44,51,53,46,54,53,50,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,76,101,115,108,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,55,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,48,55,56,56,54,44,51,55,46,50,51,53,56,55,55,93,44,91,45,56,51,46,53,53,49,51,48,51,44,51,55,46,49,54,55,53,49,93,44,91,45,56,51,46,53,48,57,48,56,51,44,51,54,46,57,51,56,53,48,57,93,44,91,45,56,51,46,52,56,57,56,49,51,44,51,54,46,56,57,53,52,49,51,93,44,91,45,56,51,46,50,54,48,48,50,44,51,54,46,57,54,56,57,53,49,93,44,91,45,56,51,46,49,56,50,49,48,52,44,51,55,46,48,50,49,49,49,53,93,44,91,45,56,51,46,50,48,56,49,50,49,44,51,55,46,49,55,52,54,53,57,93,44,91,45,56,51,46,52,54,48,57,57,50,44,51,55,46,50,57,51,56,52,56,93,44,91,45,56,51,46,53,48,55,56,56,54,44,51,55,46,50,51,53,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,83,111,109,101,114,115,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,57,52,56,52,53,52,44,51,56,46,50,49,53,57,54,93,44,91,45,55,54,46,48,55,56,53,55,53,44,51,56,46,48,54,48,57,50,93,44,91,45,55,54,46,50,48,52,55,49,57,44,51,56,46,48,53,56,52,49,93,44,91,45,55,54,46,50,51,54,49,52,49,44,51,55,46,56,56,56,52,54,56,93,44,91,45,55,54,46,50,51,54,52,53,56,44,51,55,46,56,56,54,54,48,53,93,44,91,45,55,54,46,48,53,50,48,50,49,44,51,55,46,57,53,51,53,55,56,93,44,91,45,55,53,46,57,53,50,54,55,50,44,51,55,46,57,48,54,56,50,55,93,44,91,45,55,53,46,56,48,49,50,52,44,51,55,46,57,49,50,49,55,52,93,44,91,45,55,53,46,54,50,52,51,52,51,44,51,55,46,57,57,52,50,48,56,93,44,91,45,55,53,46,53,52,53,56,48,54,44,51,56,46,48,56,54,55,52,57,93,44,91,45,55,53,46,53,52,53,56,57,56,44,51,56,46,49,55,56,55,52,93,44,91,45,55,53,46,54,49,50,55,54,52,44,51,56,46,50,55,56,54,50,54,93,44,91,45,55,53,46,55,54,57,54,55,49,44,51,56,46,50,56,52,53,56,55,93,44,91,45,55,53,46,57,52,56,52,53,52,44,51,56,46,50,49,53,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,54,50,50,51,55,44,52,49,46,49,48,52,48,48,56,93,44,91,45,56,57,46,51,53,56,52,51,55,44,52,49,46,49,48,51,56,52,57,93,44,91,45,56,57,46,52,54,54,49,48,49,44,52,49,46,49,52,56,53,50,52,93,44,91,45,56,57,46,54,51,56,53,51,54,44,52,49,46,49,52,56,53,52,53,93,44,91,45,56,57,46,54,51,56,55,50,55,44,52,48,46,57,55,51,55,48,55,93,44,91,45,56,57,46,52,55,50,51,51,44,52,48,46,57,50,49,50,48,54,93,44,91,45,56,57,46,48,52,55,55,49,56,44,52,48,46,57,50,53,55,52,57,93,44,91,45,56,57,46,48,52,55,51,57,52,44,52,49,46,49,48,52,55,56,54,93,44,91,45,56,57,46,49,54,50,50,51,55,44,52,49,46,49,48,52,48,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,76,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,57,51,53,49,57,44,51,55,46,49,52,55,50,53,54,93,44,91,45,56,56,46,50,52,48,51,55,49,44,51,54,46,57,56,49,57,49,49,93,44,91,45,56,56,46,49,53,55,51,52,55,44,51,54,46,56,54,55,49,56,51,93,44,91,45,56,55,46,56,55,54,57,57,54,44,51,54,46,57,54,48,49,49,54,93,44,91,45,56,56,46,48,52,50,49,52,50,44,51,55,46,49,55,52,55,53,54,93,44,91,45,56,56,46,48,57,53,55,56,49,44,51,55,46,49,55,57,54,56,52,93,44,91,45,56,56,46,49,57,51,53,49,57,44,51,55,46,49,52,55,50,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,67,111,110,99,104,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,51,51,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,49,50,51,52,44,51,49,46,53,56,48,50,54,55,93,44,91,45,49,48,48,46,49,49,53,50,49,54,44,51,49,46,48,56,55,57,57,52,93,44,91,45,57,57,46,54,48,51,50,50,51,44,51,49,46,48,56,55,50,57,54,93,44,91,45,57,57,46,54,48,49,56,53,44,51,49,46,52,57,49,57,53,93,44,91,45,57,57,46,55,50,49,54,57,56,44,51,49,46,53,55,54,55,53,57,93,44,91,45,49,48,48,46,49,49,49,50,51,52,44,51,49,46,53,56,48,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,67,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,51,53,49,51,55,44,51,50,46,48,56,50,51,55,50,93,44,91,45,49,48,48,46,54,54,53,51,53,51,44,51,50,46,48,56,53,52,48,55,93,44,91,45,49,48,48,46,56,50,49,53,57,52,44,51,50,46,48,56,54,54,49,93,44,91,45,49,48,48,46,56,50,53,51,55,44,51,49,46,54,57,54,49,53,53,93,44,91,45,49,48,48,46,50,51,53,55,54,49,44,51,49,46,54,57,50,57,55,93,44,91,45,49,48,48,46,50,51,53,49,51,55,44,51,50,46,48,56,50,51,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,79,118,101,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,48,52,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,56,52,56,55,56,44,51,54,46,53,51,49,50,57,51,93,44,91,45,56,53,46,52,51,56,56,48,56,44,51,54,46,53,48,49,49,48,50,93,44,91,45,56,53,46,52,57,53,52,50,50,44,51,54,46,52,48,51,48,55,52,93,44,91,45,56,53,46,52,57,53,49,50,52,44,51,54,46,51,48,50,50,55,56,93,44,91,45,56,53,46,52,49,57,52,51,50,44,51,54,46,50,51,54,49,52,53,93,44,91,45,56,53,46,49,49,57,53,56,51,44,51,54,46,49,52,52,55,49,57,93,44,91,45,56,53,46,48,56,50,52,57,55,44,51,54,46,49,57,54,49,55,49,93,44,91,45,56,53,46,49,50,48,52,52,53,44,51,54,46,52,48,55,49,54,52,93,44,91,45,56,53,46,50,56,52,56,55,56,44,51,54,46,53,51,49,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,117,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,52,51,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,56,53,50,56,44,52,52,46,49,54,56,52,48,52,93,44,91,45,56,51,46,55,48,56,53,50,53,44,52,51,46,56,51,51,57,52,56,93,44,91,45,56,51,46,55,48,56,51,49,55,44,52,51,46,56,50,56,55,50,49,93,44,91,45,56,51,46,52,54,55,52,48,51,44,52,51,46,55,50,56,57,48,57,93,44,91,45,56,51,46,52,54,54,53,57,50,44,52,51,46,54,54,55,54,50,49,93,44,91,45,56,51,46,49,49,55,56,52,52,44,52,51,46,54,55,53,52,57,51,93,44,91,45,56,50,46,49,52,53,53,48,49,44,52,51,46,54,57,53,53,56,55,93,44,91,45,56,50,46,50,52,57,57,49,52,44,52,52,46,49,53,56,55,53,49,93,44,91,45,56,51,46,49,56,53,50,56,44,52,52,46,49,54,56,52,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,73,111,115,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,52,55,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,51,57,55,55,44,52,52,46,49,54,49,55,56,54,93,44,91,45,56,51,46,49,56,53,50,56,44,52,52,46,49,54,56,52,48,52,93,44,91,45,56,50,46,50,52,57,57,49,52,44,52,52,46,49,53,56,55,53,49,93,44,91,45,56,50,46,51,50,57,53,49,57,44,52,52,46,53,49,50,56,51,52,93,44,91,45,56,51,46,56,56,54,54,51,52,44,52,52,46,53,48,56,57,55,54,93,44,91,45,56,51,46,56,56,51,57,55,55,44,52,52,46,49,54,49,55,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,67,111,102,102,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,57,54,49,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,57,56,51,54,44,51,49,46,54,55,51,49,54,52,93,44,91,45,56,51,46,49,52,53,53,56,55,44,51,49,46,52,55,50,50,55,54,93,44,91,45,56,51,46,49,52,48,52,56,51,44,51,49,46,52,50,48,51,57,53,93,44,91,45,56,50,46,56,52,52,48,57,51,44,51,49,46,52,48,51,51,50,56,93,44,91,45,56,50,46,56,49,55,53,52,52,44,51,49,46,51,54,52,52,56,54,93,44,91,45,56,50,46,54,50,56,57,55,53,44,51,49,46,51,54,51,57,51,93,44,91,45,56,50,46,53,57,55,53,48,57,44,51,49,46,52,54,57,50,57,51,93,44,91,45,56,50,46,54,50,55,51,52,50,44,51,49,46,54,55,50,54,55,50,93,44,91,45,56,50,46,56,51,54,54,51,51,44,51,49,46,54,55,49,51,57,56,93,44,91,45,56,50,46,56,51,54,51,54,54,44,51,49,46,56,49,54,49,53,52,93,44,91,45,56,50,46,57,57,53,54,57,56,44,51,49,46,55,56,48,57,56,51,93,44,91,45,56,50,46,57,57,56,51,54,44,51,49,46,54,55,51,49,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,57,34,44,34,78,65,77,69,34,58,34,87,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,57,57,44,34,98,101,100,115,34,58,50,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,55,49,54,54,57,44,51,49,46,49,56,51,55,51,57,93,44,91,45,56,50,46,53,57,50,48,55,49,44,51,49,46,48,49,56,52,56,55,93,44,91,45,56,50,46,52,57,48,53,53,56,44,51,48,46,57,54,51,49,54,54,93,44,91,45,56,50,46,52,51,53,56,53,50,44,51,48,46,56,50,48,48,54,56,93,44,91,45,56,50,46,52,49,56,57,49,52,44,51,48,46,53,56,49,55,54,55,93,44,91,45,56,50,46,50,49,52,54,55,55,44,51,48,46,53,54,56,53,53,54,93,44,91,45,56,50,46,49,52,57,56,55,50,44,51,48,46,55,56,52,51,51,54,93,44,91,45,56,50,46,52,50,48,52,52,50,44,51,48,46,55,57,53,50,50,57,93,44,91,45,56,50,46,52,49,53,54,48,51,44,51,49,46,48,49,51,53,57,93,44,91,45,56,50,46,49,51,49,54,57,56,44,51,49,46,48,49,48,55,49,52,93,44,91,45,56,50,46,50,48,56,50,54,50,44,51,49,46,48,56,52,55,54,56,93,44,91,45,56,50,46,50,48,56,55,51,50,44,51,49,46,49,55,48,57,51,56,93,44,91,45,56,50,46,50,56,52,53,54,49,44,51,49,46,50,50,52,52,52,57,93,44,91,45,56,50,46,51,56,51,55,48,53,44,51,49,46,50,57,49,49,52,51,93,44,91,45,56,50,46,52,49,55,50,52,54,44,51,49,46,52,49,55,49,49,57,93,44,91,45,56,50,46,53,57,55,53,48,57,44,51,49,46,52,54,57,50,57,51,93,44,91,45,56,50,46,54,50,56,57,55,53,44,51,49,46,51,54,51,57,51,93,44,91,45,56,50,46,54,55,49,54,54,57,44,51,49,46,49,56,51,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,48,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,57,57,56,51,50,55,44,52,54,46,48,53,51,50,55,52,93,44,91,45,49,48,49,46,56,54,49,56,50,44,52,54,46,48,54,52,55,57,52,93,44,91,45,49,48,49,46,54,55,55,54,49,50,44,52,54,46,48,49,50,56,55,49,93,44,91,45,49,48,49,46,52,57,54,52,50,51,44,52,54,46,48,50,51,55,50,56,93,44,91,45,49,48,49,46,51,48,51,53,49,52,44,52,54,46,49,48,53,53,48,51,93,44,91,45,49,48,49,46,48,50,53,54,57,49,44,52,54,46,50,56,52,52,49,52,93,44,91,45,49,48,49,46,48,52,56,53,50,55,44,52,54,46,51,55,49,52,53,93,44,91,45,49,48,49,46,50,57,56,57,56,57,44,52,54,46,51,55,49,52,48,52,93,44,91,45,49,48,49,46,50,57,56,56,50,51,44,52,54,46,54,51,48,52,51,49,93,44,91,45,49,48,49,46,55,49,56,52,54,50,44,52,54,46,54,51,49,50,56,51,93,44,91,45,49,48,49,46,55,49,56,50,50,56,44,52,54,46,55,49,55,56,51,52,93,44,91,45,49,48,50,46,48,57,54,50,52,44,52,54,46,55,49,55,55,55,50,93,44,91,45,49,48,50,46,48,57,54,55,52,52,44,52,54,46,54,51,49,48,50,54,93,44,91,45,49,48,50,46,48,53,49,50,52,44,52,54,46,54,51,48,57,49,55,93,44,91,45,49,48,50,46,48,52,54,55,56,57,44,52,54,46,50,56,51,55,52,54,93,44,91,45,49,48,49,46,57,57,55,57,51,44,52,54,46,50,48,53,51,50,52,93,44,91,45,49,48,49,46,57,57,56,51,50,55,44,52,54,46,48,53,51,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,53,51,48,48,44,34,98,101,100,115,34,58,51,50,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,53,57,56,56,57,44,51,48,46,49,54,51,52,49,93,44,91,45,57,48,46,50,56,48,50,57,54,44,50,57,46,57,55,50,54,49,56,93,44,91,45,57,48,46,50,52,48,49,55,51,44,50,57,46,56,54,50,49,49,55,93,44,91,45,57,48,46,49,54,55,50,57,55,44,50,57,46,56,49,55,52,48,55,93,44,91,45,57,48,46,50,50,56,49,53,55,44,50,57,46,54,57,50,48,50,56,93,44,91,45,57,48,46,49,55,48,51,56,55,44,50,57,46,54,56,51,53,50,51,93,44,91,45,57,48,46,49,51,55,53,48,52,44,50,57,46,52,55,55,49,54,51,93,44,91,45,57,48,46,48,50,48,54,50,50,44,50,57,46,52,50,56,52,54,49,93,44,91,45,57,48,46,48,48,48,48,54,56,44,50,57,46,50,57,52,57,49,50,93,44,91,45,57,48,46,48,57,48,51,51,55,44,50,57,46,49,56,48,53,55,52,93,44,91,45,57,48,46,48,56,57,48,57,50,44,50,57,46,48,57,52,54,52,56,93,44,91,45,56,57,46,56,57,57,54,54,52,44,50,57,46,49,53,53,48,48,57,93,44,91,45,56,57,46,57,48,50,50,54,55,44,50,57,46,50,57,50,50,56,52,93,44,91,45,56,57,46,57,55,55,52,55,44,50,57,46,52,52,57,51,55,49,93,44,91,45,56,57,46,57,56,48,56,49,50,44,50,57,46,53,56,48,49,53,53,93,44,91,45,57,48,46,48,54,55,50,52,50,44,50,57,46,55,51,56,54,54,52,93,44,91,45,57,48,46,48,48,56,48,53,54,44,50,57,46,56,57,53,53,50,56,93,44,91,45,57,48,46,49,51,56,53,55,52,44,50,57,46,57,49,56,56,48,53,93,44,91,45,57,48,46,49,48,56,49,49,57,44,51,48,46,49,54,52,57,52,93,44,91,45,57,48,46,49,53,54,50,53,54,44,51,48,46,49,56,57,54,49,51,93,44,91,45,57,48,46,50,53,57,56,56,57,44,51,48,46,49,54,51,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,83,116,46,32,84,97,109,109,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,48,57,51,44,34,98,101,100,115,34,58,49,49,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,53,53,54,52,56,44,51,48,46,55,49,49,57,48,53,93,44,91,45,57,48,46,50,52,51,54,52,57,44,51,48,46,51,54,49,53,56,49,93,44,91,45,57,48,46,49,54,48,54,51,54,44,51,48,46,50,51,52,51,51,55,93,44,91,45,57,48,46,49,53,54,50,53,54,44,51,48,46,49,56,57,54,49,51,93,44,91,45,57,48,46,49,48,56,49,49,57,44,51,48,46,49,54,52,57,52,93,44,91,45,56,57,46,57,48,51,50,51,52,44,51,48,46,49,57,56,54,54,93,44,91,45,56,57,46,55,57,55,52,49,52,44,51,48,46,49,54,48,55,53,55,93,44,91,45,56,57,46,54,50,53,48,53,52,44,51,48,46,49,53,51,52,57,51,93,44,91,45,56,57,46,52,57,52,57,55,51,44,51,48,46,49,54,48,55,53,93,44,91,45,56,57,46,54,51,49,54,49,52,44,51,48,46,50,53,55,48,49,51,93,44,91,45,56,57,46,54,57,48,48,51,53,44,51,48,46,52,53,57,51,51,51,93,44,91,45,56,57,46,55,53,50,56,48,55,44,51,48,46,53,48,50,57,54,50,93,44,91,45,56,57,46,56,52,50,51,51,44,51,48,46,54,54,54,48,49,53,93,44,91,45,56,57,46,57,57,52,50,48,49,44,51,48,46,54,54,53,52,51,93,44,91,45,57,48,46,50,53,53,54,52,56,44,51,48,46,55,49,49,57,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,50,55,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,57,57,52,56,53,44,52,50,46,53,53,55,55,93,44,91,45,57,51,46,52,54,50,54,51,53,44,52,50,46,52,55,48,56,48,50,93,44,91,45,57,51,46,52,54,51,48,52,51,44,52,50,46,50,48,57,51,48,50,93,44,91,45,57,51,46,50,51,49,55,50,50,44,52,50,46,50,48,56,56,56,54,93,44,91,45,57,51,46,48,48,49,54,55,52,44,52,50,46,50,48,57,50,54,55,93,44,91,45,57,51,46,48,48,50,57,48,50,44,52,50,46,52,55,48,54,51,56,93,44,91,45,57,51,46,48,50,55,44,52,50,46,53,53,54,56,49,93,44,91,45,57,51,46,52,57,57,52,56,53,44,52,50,46,53,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,97,109,101,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,54,56,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,57,54,51,55,49,44,51,48,46,48,51,56,52,55,57,93,44,91,45,57,51,46,49,50,56,52,55,53,44,51,48,46,48,53,50,53,56,55,93,44,91,45,57,51,46,55,50,50,53,49,55,44,51,48,46,48,53,48,56,55,50,93,44,91,45,57,51,46,56,53,52,52,49,50,44,50,57,46,56,54,53,48,53,51,93,44,91,45,57,51,46,57,50,50,55,52,52,44,50,57,46,56,49,56,56,48,56,93,44,91,45,57,51,46,56,49,52,51,53,49,44,50,57,46,53,57,54,53,55,54,93,44,91,45,57,51,46,55,55,48,49,52,55,44,50,57,46,54,55,48,56,50,53,93,44,91,45,57,51,46,52,56,55,55,53,52,44,50,57,46,55,49,55,56,49,49,93,44,91,45,57,51,46,49,50,53,49,53,44,50,57,46,55,48,54,50,48,57,93,44,91,45,57,50,46,54,49,55,51,48,54,44,50,57,46,53,50,55,49,50,57,93,44,91,45,57,50,46,54,49,53,54,49,44,51,48,46,48,51,56,49,54,56,93,44,91,45,57,50,46,55,51,56,54,48,52,44,51,48,46,48,51,55,51,50,51,93,44,91,45,57,50,46,57,57,54,51,55,49,44,51,48,46,48,51,56,52,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,56,57,54,44,34,98,101,100,115,34,58,49,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,55,55,48,48,53,44,51,57,46,53,54,57,49,54,57,93,44,91,45,56,52,46,48,48,54,55,56,50,44,51,57,46,50,53,53,48,54,56,93,44,91,45,56,51,46,57,57,51,49,50,44,51,57,46,50,53,52,50,51,53,93,44,91,45,56,51,46,56,54,53,54,55,57,44,51,57,46,50,52,55,51,51,51,93,44,91,45,56,51,46,55,56,52,55,57,51,44,51,57,46,50,54,50,56,56,56,93,44,91,45,56,51,46,53,57,48,56,55,56,44,51,57,46,51,55,56,55,51,54,93,44,91,45,56,51,46,53,55,54,50,56,54,44,51,57,46,53,52,52,53,52,55,93,44,91,45,56,51,46,54,55,48,49,57,54,44,51,57,46,53,53,48,50,53,52,93,44,91,45,56,51,46,57,55,55,48,48,53,44,51,57,46,53,54,57,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,111,117,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,48,56,48,44,34,98,101,100,115,34,58,49,49,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,56,49,49,53,56,44,52,55,46,56,57,49,56,55,93,44,91,45,57,51,46,48,54,49,50,53,51,44,52,55,46,55,50,48,49,56,55,93,44,91,45,57,51,46,48,54,57,53,44,52,55,46,51,57,51,57,49,53,93,44,91,45,57,51,46,48,53,53,57,52,51,44,52,55,46,48,50,54,52,49,53,93,44,91,45,57,51,46,48,54,49,53,50,57,44,52,54,46,55,54,54,53,53,93,44,91,45,57,50,46,51,48,49,54,55,54,44,52,54,46,55,54,52,49,51,52,93,44,91,45,57,50,46,50,57,50,50,52,50,44,52,54,46,54,54,51,51,49,56,93,44,91,45,57,50,46,50,49,50,51,57,50,44,52,54,46,54,52,57,57,52,49,93,44,91,45,57,50,46,48,56,57,52,57,51,44,52,54,46,55,52,57,50,51,55,93,44,91,45,57,50,46,48,50,48,50,57,52,44,52,54,46,55,48,52,48,52,49,93,44,91,45,57,49,46,55,57,54,51,51,44,52,54,46,55,57,52,56,51,56,93,44,91,45,57,49,46,55,56,55,57,50,56,44,52,55,46,53,52,54,56,49,55,93,44,91,45,57,49,46,55,57,56,50,53,50,44,52,56,46,50,48,50,56,53,56,93,44,91,45,57,50,46,48,48,54,53,55,52,44,52,56,46,50,54,53,52,50,51,93,44,91,45,57,50,46,49,54,49,57,56,51,44,52,56,46,51,54,51,51,48,54,93,44,91,45,57,50,46,50,56,56,57,57,52,44,52,56,46,51,52,50,57,57,93,44,91,45,57,50,46,51,55,48,49,48,51,44,52,56,46,50,50,48,50,57,57,93,44,91,45,57,50,46,53,48,55,50,56,53,44,52,56,46,52,52,55,56,55,54,93,44,91,45,57,50,46,54,53,54,48,50,55,44,52,56,46,52,51,54,55,48,57,93,44,91,45,57,50,46,55,50,56,48,52,54,44,52,56,46,53,51,57,50,56,57,93,44,91,45,57,50,46,57,56,52,57,54,51,44,52,56,46,54,50,51,55,51,49,93,44,91,45,57,51,46,48,56,56,52,51,56,44,52,56,46,54,50,55,53,57,55,93,44,91,45,57,51,46,48,57,54,52,56,56,44,52,56,46,48,54,55,56,50,54,93,44,91,45,57,51,46,48,56,49,49,53,56,44,52,55,46,56,57,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,76,111,114,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,54,55,49,51,44,34,98,101,100,115,34,58,49,48,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,52,56,49,50,50,44,52,49,46,55,48,48,48,53,55,93,44,91,45,56,50,46,51,52,50,51,49,52,44,52,49,46,50,56,51,53,53,52,93,44,91,45,56,50,46,51,51,54,52,57,54,44,52,49,46,48,54,53,55,54,49,93,44,91,45,56,50,46,49,55,49,52,57,50,44,52,49,46,48,54,51,53,51,55,93,44,91,45,56,50,46,49,54,57,56,55,53,44,52,49,46,49,51,55,48,57,55,93,44,91,45,56,49,46,57,55,51,56,57,53,44,52,49,46,49,57,57,56,51,49,93,44,91,45,56,49,46,56,55,56,48,53,51,44,52,49,46,50,55,53,48,52,52,93,44,91,45,56,49,46,57,55,49,50,54,50,44,52,49,46,51,53,49,50,54,56,93,44,91,45,56,49,46,57,55,48,53,56,44,52,49,46,56,55,55,56,52,53,93,44,91,45,56,50,46,51,52,56,49,50,50,44,52,49,46,55,48,48,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,86,101,103,97,32,65,108,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,55,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,53,48,48,57,51,44,49,56,46,53,52,49,48,49,52,93,44,91,45,54,54,46,51,55,55,48,53,56,44,49,56,46,51,52,52,50,52,54,93,44,91,45,54,54,46,51,54,53,50,55,50,44,49,56,46,51,51,51,50,50,57,93,44,91,45,54,54,46,51,49,56,55,54,52,44,49,56,46,51,54,55,52,49,49,93,44,91,45,54,54,46,51,48,51,54,54,51,44,49,56,46,51,56,52,48,55,55,93,44,91,45,54,54,46,51,48,56,51,49,51,44,49,56,46,53,50,57,55,56,56,93,44,91,45,54,54,46,51,53,48,48,57,51,44,49,56,46,53,52,49,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,51,57,57,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,51,49,53,56,44,52,50,46,50,48,57,57,48,56,93,44,91,45,57,52,46,49,54,52,55,48,52,44,52,50,46,50,48,57,57,50,93,44,91,45,57,52,46,49,54,52,49,51,56,44,52,49,46,56,54,51,50,52,52,93,44,91,45,57,51,46,56,49,53,55,50,49,44,52,49,46,56,54,51,52,49,57,93,44,91,45,57,51,46,54,57,56,48,51,50,44,52,49,46,56,54,51,51,55,93,44,91,45,57,51,46,54,57,56,51,57,44,52,50,46,50,48,57,51,51,57,93,44,91,45,57,51,46,57,51,49,53,56,44,52,50,46,50,48,57,57,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,55,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,56,51,55,44,34,98,101,100,115,34,58,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,52,50,57,52,55,44,51,49,46,49,52,54,53,55,56,93,44,91,45,57,52,46,57,51,57,49,50,55,44,51,49,46,48,52,50,48,52,56,93,44,91,45,57,53,46,50,48,48,49,56,44,51,48,46,56,50,52,53,54,54,93,44,91,45,57,53,46,49,52,53,52,50,54,44,51,48,46,55,49,51,55,57,57,93,44,91,45,57,53,46,48,50,52,52,52,51,44,51,48,46,54,54,48,53,48,51,93,44,91,45,57,52,46,56,52,57,52,49,52,44,51,48,46,52,57,51,53,53,51,93,44,91,45,57,52,46,55,51,50,55,51,50,44,51,48,46,52,57,48,48,54,54,93,44,91,45,57,52,46,53,52,53,55,49,55,44,51,48,46,53,50,54,57,55,55,93,44,91,45,57,52,46,54,53,55,57,57,50,44,51,49,46,48,49,50,48,48,55,93,44,91,45,57,52,46,53,54,49,57,52,51,44,51,49,46,48,53,56,57,53,50,93,44,91,45,57,52,46,56,52,50,57,52,55,44,51,49,46,49,52,54,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,68,105,120,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,49,53,56,52,57,44,52,50,46,55,54,49,51,51,56,93,44,91,45,57,55,46,48,49,55,55,56,57,44,52,50,46,51,53,49,51,52,55,93,44,91,45,57,55,46,48,49,55,55,51,44,52,50,46,50,54,52,52,53,51,93,44,91,45,57,54,46,56,50,50,52,57,55,44,52,50,46,50,54,52,50,57,50,93,44,91,45,57,54,46,55,50,54,54,54,49,44,52,50,46,50,55,56,48,48,53,93,44,91,45,57,54,46,55,50,50,50,51,49,44,52,50,46,53,50,52,54,53,50,93,44,91,45,57,54,46,54,51,49,52,57,50,44,52,50,46,53,50,52,51,49,56,93,44,91,45,57,54,46,56,48,54,50,49,51,44,52,50,46,55,48,52,49,53,52,93,44,91,45,57,55,46,48,49,53,56,52,57,44,52,50,46,55,54,49,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,72,97,114,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,49,48,50,53,44,34,98,101,100,115,34,58,50,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,54,57,52,52,57,44,51,57,46,55,50,49,49,55,56,93,44,91,45,55,54,46,53,51,50,49,55,52,44,51,57,46,53,52,51,57,55,55,93,44,91,45,55,54,46,51,57,49,54,56,56,44,51,57,46,52,54,52,53,51,50,93,44,91,45,55,54,46,50,56,55,54,56,57,44,51,57,46,50,53,52,49,48,52,93,44,91,45,55,54,46,48,55,57,57,50,53,44,51,57,46,52,48,53,53,48,54,93,44,91,45,55,54,46,48,52,49,57,55,54,44,51,57,46,52,57,52,50,50,56,93,44,91,45,55,54,46,50,51,51,50,55,57,44,51,57,46,55,50,49,51,54,55,93,44,91,45,55,54,46,50,51,57,56,48,53,44,51,57,46,55,50,49,51,51,53,93,44,91,45,55,54,46,53,54,57,52,52,57,44,51,57,46,55,50,49,49,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,69,100,103,101,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,52,54,57,55,52,44,51,51,46,57,53,51,50,49,93,44,91,45,56,50,46,49,53,53,55,44,51,51,46,57,50,57,50,57,93,44,91,45,56,50,46,49,50,52,56,52,50,44,51,51,46,56,52,50,50,56,49,93,44,91,45,56,50,46,49,55,50,56,48,55,44,51,51,46,55,54,53,49,57,52,93,44,91,45,56,50,46,49,49,53,51,50,57,44,51,51,46,53,57,54,54,49,51,93,44,91,45,56,50,46,48,50,56,50,51,56,44,51,51,46,53,52,52,57,51,52,93,44,91,45,56,50,46,48,49,50,52,55,44,51,51,46,53,51,50,49,49,54,93,44,91,45,56,49,46,54,53,49,55,53,57,44,51,51,46,56,49,52,53,49,93,44,91,45,56,49,46,56,51,54,56,48,51,44,51,51,46,56,54,54,53,48,49,93,44,91,45,56,49,46,56,57,52,53,57,53,44,51,51,46,57,55,53,52,49,53,93,44,91,45,56,50,46,48,48,56,50,57,56,44,51,51,46,57,54,49,54,52,54,93,44,91,45,56,50,46,48,52,54,57,55,52,44,51,51,46,57,53,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,99,99,111,109,97,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,55,52,50,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,54,50,52,51,52,51,44,51,55,46,57,57,52,50,48,56,93,44,91,45,55,53,46,56,48,49,50,52,44,51,55,46,57,49,50,49,55,52,93,44,91,45,55,53,46,57,53,50,54,55,50,44,51,55,46,57,48,54,56,50,55,93,44,91,45,55,54,46,48,53,50,48,50,49,44,51,55,46,57,53,51,53,55,56,93,44,91,45,55,54,46,50,51,54,52,53,56,44,51,55,46,56,56,54,54,48,53,93,44,91,45,55,54,46,49,55,53,54,56,55,44,51,55,46,54,55,49,54,50,54,93,44,91,45,55,54,46,49,53,49,55,49,49,44,51,55,46,53,56,53,57,54,56,93,44,91,45,55,54,46,49,52,48,56,51,53,44,51,55,46,53,52,50,50,50,93,44,91,45,55,53,46,56,51,53,50,49,52,44,51,55,46,53,53,52,50,52,53,93,44,91,45,55,53,46,55,56,55,48,51,44,51,55,46,52,54,52,53,55,56,93,44,91,45,55,53,46,53,57,55,52,52,49,44,51,55,46,52,53,48,57,56,56,93,44,91,45,55,53,46,53,52,49,55,55,57,44,51,55,46,54,48,54,49,52,53,93,44,91,45,55,53,46,52,49,55,48,55,51,44,51,55,46,56,50,49,48,53,93,44,91,45,55,53,46,50,57,54,48,48,52,44,51,55,46,56,52,53,55,53,50,93,44,91,45,55,53,46,49,54,54,52,51,53,44,51,56,46,48,50,55,56,51,52,93,44,91,45,55,53,46,54,50,52,51,52,51,44,51,55,46,57,57,52,50,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,108,117,109,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,56,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,48,52,48,55,44,52,52,46,50,52,52,49,48,50,93,44,91,45,56,56,46,52,48,52,49,56,55,44,52,51,46,57,51,56,50,93,44,91,45,56,56,46,49,54,49,54,53,52,44,52,51,46,57,51,55,54,56,51,93,44,91,45,56,56,46,49,54,50,50,55,52,44,52,51,46,56,57,49,53,49,49,93,44,91,45,56,56,46,48,52,49,55,57,52,44,52,51,46,56,57,49,54,57,50,93,44,91,45,56,56,46,48,52,51,50,52,44,52,52,46,50,52,49,48,49,56,93,44,91,45,56,56,46,49,57,50,54,49,49,44,52,52,46,50,52,49,57,52,55,93,44,91,45,56,56,46,52,48,52,48,55,44,52,52,46,50,52,52,49,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,52,54,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,57,49,56,53,51,44,51,54,46,57,53,53,57,57,50,93,44,91,45,56,52,46,48,54,53,55,53,53,44,51,54,46,56,53,51,57,54,49,93,44,91,45,56,51,46,57,53,56,53,51,52,44,51,54,46,55,50,55,50,52,53,93,44,91,45,56,51,46,56,55,55,53,48,51,44,51,54,46,54,56,55,50,53,57,93,44,91,45,56,51,46,55,56,49,50,49,50,44,51,54,46,56,48,50,54,57,51,93,44,91,45,56,51,46,53,56,49,48,57,52,44,51,54,46,57,48,52,54,54,55,93,44,91,45,56,51,46,53,56,57,53,50,49,44,51,54,46,57,53,53,55,56,54,93,44,91,45,56,51,46,56,55,49,51,49,53,44,51,55,46,48,53,52,57,49,57,93,44,91,45,56,51,46,57,53,57,51,56,53,44,51,54,46,57,55,55,49,50,56,93,44,91,45,56,52,46,48,57,49,56,53,51,44,51,54,46,57,53,53,57,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,73,111,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,49,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,44,91,45,56,53,46,51,49,50,53,49,51,44,52,51,46,49,49,56,55,57,51,93,44,91,45,56,53,46,51,48,57,54,50,54,44,52,50,46,55,54,57,56,55,56,93,44,91,45,56,53,46,48,55,52,50,52,53,44,52,50,46,55,55,48,55,56,52,93,44,91,45,56,52,46,56,51,55,48,56,53,44,52,50,46,55,55,48,52,55,57,93,44,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,78,101,119,32,72,97,110,111,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,50,51,49,44,34,98,101,100,115,34,58,56,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,50,57,57,50,50,44,51,52,46,51,51,49,55,54,56,93,44,91,45,55,55,46,57,53,54,54,48,53,44,51,52,46,50,51,52,52,57,49,93,44,91,45,55,55,46,57,52,56,52,55,57,44,51,51,46,57,55,49,50,55,52,93,44,91,45,55,55,46,56,57,55,48,49,49,44,51,51,46,55,56,54,56,93,44,91,45,55,55,46,56,57,56,57,55,44,51,51,46,56,53,52,54,51,57,93,44,91,45,55,55,46,55,56,53,53,53,53,44,51,52,46,49,50,53,49,55,49,93,44,91,45,55,55,46,54,55,53,50,55,54,44,51,52,46,50,53,51,49,51,93,44,91,45,55,55,46,56,50,51,49,48,50,44,51,52,46,51,56,57,50,56,55,93,44,91,45,55,56,46,48,50,57,57,50,50,44,51,52,46,51,51,49,55,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,79,98,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,50,48,44,34,98,101,100,115,34,58,49,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,51,52,53,56,56,44,51,54,46,53,48,50,54,49,49,93,44,91,45,56,57,46,51,52,54,48,54,54,44,51,54,46,53,48,51,50,51,50,93,44,91,45,56,57,46,51,54,48,49,50,44,51,54,46,52,48,57,50,55,55,93,44,91,45,56,57,46,52,56,50,57,55,49,44,51,54,46,50,49,50,54,53,57,93,44,91,45,56,57,46,49,53,52,52,54,52,44,51,54,46,50,48,52,54,55,56,93,44,91,45,56,56,46,57,53,57,56,51,57,44,51,54,46,50,50,50,56,51,52,93,44,91,45,56,56,46,57,53,48,50,48,53,44,51,54,46,52,48,57,50,52,56,93,44,91,45,56,56,46,56,49,53,51,56,57,44,51,54,46,52,50,50,53,50,56,93,44,91,45,56,56,46,56,50,55,51,48,51,44,51,54,46,53,48,50,54,51,51,93,44,91,45,56,56,46,56,51,52,53,56,56,44,51,54,46,53,48,50,54,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,97,108,108,111,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,55,55,54,44,34,98,101,100,115,34,58,49,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,56,53,54,57,55,44,51,54,46,55,53,48,51,50,56,93,44,91,45,56,56,46,52,56,57,48,55,53,44,51,54,46,53,48,49,49,53,55,93,44,91,45,56,56,46,48,53,51,50,57,51,44,51,54,46,52,57,55,48,53,56,93,44,91,45,56,56,46,48,55,48,53,52,49,44,51,54,46,54,55,56,50,53,53,93,44,91,45,56,56,46,49,49,48,56,51,49,44,51,54,46,55,52,55,49,53,93,44,91,45,56,56,46,52,56,53,54,57,55,44,51,54,46,55,53,48,51,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,98,101,109,97,114,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,51,53,53,44,34,98,101,100,115,34,58,50,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,56,51,56,56,55,52,44,51,56,46,48,52,55,51,55,93,44,91,45,55,56,46,54,52,51,57,49,56,44,51,55,46,55,51,51,48,56,52,93,44,91,45,55,56,46,52,57,49,51,52,53,44,51,55,46,55,57,54,57,53,54,93,44,91,45,55,56,46,51,48,54,55,54,51,44,51,56,46,48,48,54,52,55,52,93,44,91,45,55,56,46,50,48,57,51,56,52,44,51,56,46,49,51,49,49,50,56,93,44,91,45,55,56,46,51,54,56,55,52,51,44,51,56,46,49,56,52,48,55,52,93,44,91,45,55,56,46,54,54,51,49,52,53,44,51,56,46,50,55,55,57,51,51,93,44,91,45,55,56,46,55,52,57,51,57,54,44,51,56,46,50,48,54,54,52,56,93,44,91,45,55,56,46,56,51,56,56,55,52,44,51,56,46,48,52,55,51,55,93,93,44,91,91,45,55,56,46,53,50,51,54,56,44,51,56,46,48,50,50,51,50,55,93,44,91,45,55,56,46,52,56,53,50,48,50,44,51,56,46,48,54,56,57,55,52,93,44,91,45,55,56,46,52,53,52,55,51,50,44,51,56,46,48,52,53,50,55,56,93,44,91,45,55,56,46,52,54,57,53,48,52,44,51,56,46,48,49,49,55,52,53,93,44,91,45,55,56,46,53,50,51,54,56,44,51,56,46,48,50,50,51,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,82,111,98,101,114,116,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,51,52,52,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,50,48,52,52,51,44,51,54,46,52,53,53,52,54,93,44,91,45,56,54,46,57,56,56,48,54,44,51,54,46,51,54,57,49,53,52,93,44,91,45,56,54,46,57,49,51,50,51,51,44,51,54,46,51,56,50,54,50,49,93,44,91,45,56,54,46,55,53,52,55,57,53,44,51,54,46,52,48,53,52,57,54,93,44,91,45,56,54,46,54,57,53,48,54,52,44,51,54,46,52,50,49,51,49,57,93,44,91,45,56,54,46,53,54,51,57,48,57,44,51,54,46,54,51,51,53,54,50,93,44,91,45,56,54,46,55,54,51,50,57,54,44,51,54,46,54,52,56,57,53,52,93,44,91,45,56,55,46,48,54,48,56,52,57,44,51,54,46,54,52,50,57,54,51,93,44,91,45,56,55,46,49,49,52,57,56,51,44,51,54,46,54,52,50,51,55,49,93,44,91,45,56,55,46,49,50,48,52,52,51,44,51,54,46,52,53,53,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,51,51,49,57,49,44,51,57,46,50,54,52,54,49,50,93,44,91,45,55,56,46,49,53,49,54,49,52,44,51,57,46,48,51,54,54,50,57,93,44,91,45,55,56,46,48,48,52,51,49,51,44,51,56,46,57,55,57,52,51,56,93,44,91,45,55,55,46,57,54,50,50,48,51,44,51,57,46,48,49,51,55,51,51,93,44,91,45,55,55,46,56,50,56,50,57,57,44,51,57,46,49,51,50,52,50,54,93,44,91,45,55,56,46,48,51,51,49,57,49,44,51,57,46,50,54,52,54,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,50,50,56,49,50,44,52,54,46,52,54,50,50,52,53,93,44,91,45,49,49,55,46,50,53,52,50,54,50,44,52,54,46,53,52,53,48,56,50,93,44,91,45,49,49,55,46,52,54,52,55,54,57,44,52,54,46,54,57,57,54,50,54,93,44,91,45,49,49,55,46,55,52,48,56,54,56,44,52,54,46,54,57,52,53,56,51,93,44,91,45,49,49,55,46,56,53,49,56,53,44,52,54,46,54,50,52,54,55,93,44,91,45,49,49,55,46,56,54,51,51,52,55,44,52,54,46,52,55,48,54,54,55,93,44,91,45,49,49,55,46,55,51,55,51,48,51,44,52,54,46,52,55,49,52,53,52,93,44,91,45,49,49,55,46,54,49,49,57,48,51,44,52,54,46,51,51,56,52,55,56,93,44,91,45,49,49,55,46,54,48,51,52,50,52,44,52,53,46,57,57,56,57,53,93,44,91,45,49,49,55,46,52,55,57,57,51,53,44,52,53,46,57,57,55,56,48,49,93,44,91,45,49,49,55,46,52,49,57,52,56,50,44,52,54,46,49,50,49,57,53,54,93,44,91,45,49,49,55,46,52,49,57,51,51,52,44,52,54,46,51,56,51,49,51,57,93,44,91,45,49,49,55,46,50,50,56,55,57,54,44,52,54,46,52,49,49,51,48,54,93,44,91,45,49,49,55,46,50,50,56,49,50,44,52,54,46,52,54,50,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,55,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,48,53,53,55,44,51,55,46,53,52,50,56,53,54,93,44,91,45,56,52,46,48,57,48,51,54,52,44,51,55,46,53,54,54,50,50,55,93,44,91,45,56,52,46,49,57,57,52,56,57,44,51,55,46,53,50,50,56,53,56,93,44,91,45,56,52,46,49,51,55,56,57,56,44,51,55,46,51,49,57,55,53,57,93,44,91,45,56,51,46,57,52,51,55,49,56,44,51,55,46,50,53,48,53,53,49,93,44,91,45,56,51,46,55,56,52,57,55,53,44,51,55,46,51,52,56,55,49,55,93,44,91,45,56,51,46,56,56,53,50,54,50,44,51,55,46,53,49,55,54,56,56,93,44,91,45,56,51,46,57,48,53,53,55,44,51,55,46,53,52,50,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,49,49,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,51,49,55,54,49,44,52,56,46,49,56,56,52,56,54,93,44,91,45,57,49,46,48,50,51,49,50,54,44,52,55,46,52,54,52,57,56,50,93,44,91,45,57,48,46,55,57,53,49,56,57,44,52,55,46,50,52,52,50,57,57,93,44,91,45,57,48,46,54,53,52,54,54,44,52,55,46,51,48,57,56,50,50,93,44,91,45,56,57,46,57,53,55,49,48,50,44,52,55,46,50,57,49,49,48,51,93,44,91,45,56,57,46,54,56,48,55,51,44,52,55,46,55,49,52,53,53,50,93,44,91,45,56,57,46,52,56,51,51,56,53,44,52,56,46,48,49,51,55,49,54,93,44,91,45,56,57,46,56,50,48,55,53,51,44,52,56,46,48,49,52,56,57,52,93,44,91,45,56,57,46,56,57,56,56,49,52,44,52,55,46,57,56,56,48,52,57,93,44,91,45,57,48,46,48,50,51,51,51,49,44,52,56,46,48,56,52,55,52,56,93,44,91,45,57,48,46,49,51,50,53,54,55,44,52,56,46,49,49,49,54,55,49,93,44,91,45,57,48,46,51,55,52,55,54,57,44,52,56,46,48,57,48,57,53,52,93,44,91,45,57,48,46,55,54,49,52,48,52,44,52,56,46,48,57,56,51,56,52,93,44,91,45,57,48,46,56,56,53,52,56,44,52,56,46,50,52,53,55,56,52,93,44,91,45,57,49,46,48,51,49,55,54,49,44,52,56,46,49,56,56,52,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,79,99,111,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,54,57,54,44,34,98,101,100,115,34,58,49,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,48,56,54,49,51,44,51,53,46,48,48,48,54,53,57,93,44,91,45,56,51,46,49,50,55,51,53,55,44,51,52,46,57,53,48,49,57,53,93,44,91,45,56,51,46,51,50,52,49,53,44,51,52,46,55,56,55,52,55,57,93,44,91,45,56,51,46,51,53,50,52,52,56,44,51,52,46,55,49,54,49,50,53,93,44,91,45,56,51,46,51,51,56,50,51,52,44,51,52,46,54,56,55,49,56,55,93,44,91,45,56,51,46,49,48,51,54,55,51,44,51,52,46,53,51,54,54,49,55,93,44,91,45,56,51,46,48,53,49,54,51,56,44,51,52,46,52,57,51,55,48,50,93,44,91,45,56,50,46,57,57,50,50,51,50,44,51,52,46,52,55,57,50,53,56,93,44,91,45,56,50,46,56,53,53,49,48,51,44,51,52,46,54,48,57,48,48,55,93,44,91,45,56,50,46,56,52,52,56,49,55,44,51,52,46,54,49,56,55,49,57,93,44,91,45,56,50,46,56,52,48,49,53,53,44,51,52,46,54,50,51,49,50,93,44,91,45,56,50,46,56,57,54,48,50,53,44,51,52,46,55,51,54,53,52,55,93,44,91,45,56,50,46,56,57,55,51,55,51,44,51,53,46,48,53,54,50,49,52,93,44,91,45,56,51,46,48,48,56,53,51,49,44,51,53,46,48,50,55,51,57,52,93,44,91,45,56,51,46,49,48,56,53,54,56,44,51,53,46,48,48,49,51,53,52,93,44,91,45,56,51,46,49,48,56,54,49,51,44,51,53,46,48,48,48,54,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,69,97,115,116,32,66,97,116,111,110,32,82,111,117,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,52,48,57,52,44,34,98,101,100,115,34,58,50,51,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,57,55,54,53,56,44,51,48,46,54,52,57,53,52,56,93,44,91,45,57,49,46,51,49,53,50,56,50,44,51,48,46,53,57,52,50,56,56,93,44,91,45,57,49,46,49,57,55,50,48,56,44,51,48,46,53,48,55,48,56,56,93,44,91,45,57,49,46,50,52,49,53,48,56,44,51,48,46,51,53,55,53,57,50,93,44,91,45,57,49,46,49,52,50,49,48,53,44,51,48,46,51,50,51,50,57,51,93,44,91,45,57,49,46,48,50,49,48,49,52,44,51,48,46,51,50,49,52,56,57,93,44,91,45,57,48,46,56,57,49,55,50,56,44,51,48,46,51,52,53,50,52,52,93,44,91,45,57,48,46,57,55,55,53,48,51,44,51,48,46,52,50,48,56,57,57,93,44,91,45,57,48,46,57,55,55,52,48,49,44,51,48,46,53,57,51,52,56,53,93,44,91,45,57,48,46,57,49,48,55,48,49,44,51,48,46,54,52,57,51,56,53,93,44,91,45,57,48,46,56,52,57,48,52,49,44,51,48,46,55,49,57,51,49,49,93,44,91,45,57,49,46,50,53,52,52,49,57,44,51,48,46,55,48,53,50,57,52,93,44,91,45,57,49,46,50,57,55,54,53,56,44,51,48,46,54,52,57,53,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,108,97,105,98,111,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,50,48,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,50,56,54,50,50,44,51,50,46,50,50,53,49,49,57,93,44,91,45,57,48,46,55,55,52,56,50,44,51,50,46,49,53,51,57,57,51,93,44,91,45,57,48,46,57,53,54,55,56,55,44,51,50,46,48,56,51,53,57,55,93,44,91,45,57,49,46,48,51,48,50,48,55,44,51,50,46,49,49,52,51,53,51,93,44,91,45,57,49,46,50,52,56,49,52,52,44,51,49,46,56,54,57,56,52,56,93,44,91,45,57,49,46,48,49,51,54,55,54,44,51,49,46,56,54,49,56,53,50,93,44,91,45,57,48,46,55,51,54,50,56,50,44,51,49,46,55,56,54,49,51,52,93,44,91,45,57,48,46,55,49,56,50,57,55,44,51,50,46,48,52,56,51,53,50,93,44,91,45,57,48,46,55,50,56,54,50,50,44,51,50,46,50,50,53,49,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,77,97,114,121,39,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,53,51,49,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,55,52,49,49,56,44,51,56,46,52,57,57,54,50,50,93,44,91,45,55,54,46,55,55,52,57,53,53,44,51,56,46,53,48,56,57,93,44,91,45,55,54,46,56,55,49,52,54,44,51,56,46,51,56,57,57,51,55,93,44,91,45,55,54,46,56,50,49,50,53,54,44,51,56,46,50,54,56,55,53,56,93,44,91,45,55,54,46,56,54,56,56,53,57,44,51,56,46,49,55,49,51,55,50,93,44,91,45,55,54,46,54,49,48,51,56,52,44,51,56,46,49,52,56,53,49,54,93,44,91,45,55,54,46,53,49,54,51,54,57,44,51,56,46,48,51,52,55,50,52,93,44,91,45,55,54,46,50,51,54,49,52,49,44,51,55,46,56,56,56,52,54,56,93,44,91,45,55,54,46,50,48,52,55,49,57,44,51,56,46,48,53,56,52,49,93,44,91,45,55,54,46,51,50,49,57,48,56,44,51,56,46,51,50,55,50,56,52,93,44,91,45,55,54,46,52,52,53,51,51,52,44,51,56,46,51,48,53,50,49,93,44,91,45,55,54,46,54,55,52,49,49,56,44,51,56,46,52,57,57,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,51,49,52,48,44,34,98,101,100,115,34,58,50,48,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,48,54,54,50,44,52,51,46,50,48,53,49,54,55,93,44,91,45,56,53,46,55,56,50,52,57,56,44,52,50,46,55,54,56,50,93,44,91,45,56,53,46,53,52,53,53,54,52,44,52,50,46,55,54,56,49,51,57,93,44,91,45,56,53,46,51,48,57,54,50,54,44,52,50,46,55,54,57,56,55,56,93,44,91,45,56,53,46,51,49,50,53,49,51,44,52,51,46,49,49,56,55,57,51,93,44,91,45,56,53,46,51,49,50,51,55,54,44,52,51,46,50,57,52,50,48,53,93,44,91,45,56,53,46,53,54,50,53,51,56,44,52,51,46,50,57,52,50,55,49,93,44,91,45,56,53,46,55,57,48,52,52,56,44,52,51,46,50,57,51,48,48,51,93,44,91,45,56,53,46,55,57,48,54,54,50,44,52,51,46,50,48,53,49,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,80,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,51,55,50,44,34,98,101,100,115,34,58,49,48,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,55,48,48,54,57,50,44,51,53,46,54,53,50,50,57,53,93,44,91,45,55,55,46,53,48,51,52,44,51,53,46,53,49,55,52,52,53,93,44,91,45,55,55,46,52,55,53,53,49,53,44,51,53,46,52,50,54,54,53,53,93,44,91,45,55,55,46,51,57,49,48,50,54,44,51,53,46,51,51,57,53,51,51,93,44,91,45,55,55,46,49,56,57,49,49,53,44,51,53,46,52,49,56,51,54,50,93,44,91,45,55,55,46,49,55,52,44,51,53,46,55,51,50,56,51,49,93,44,91,45,55,55,46,51,53,48,51,54,57,44,51,53,46,56,49,57,50,50,56,93,44,91,45,55,55,46,51,57,48,49,53,52,44,51,53,46,56,51,51,48,54,50,93,44,91,45,55,55,46,54,54,53,49,51,49,44,51,53,46,54,55,52,57,51,53,93,44,91,45,55,55,46,55,48,48,54,57,50,44,51,53,46,54,53,50,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,97,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,52,54,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,56,52,51,48,49,54,44,52,53,46,54,49,49,48,52,50,93,44,91,45,49,48,57,46,48,54,56,52,57,56,44,52,53,46,53,56,51,50,52,49,93,44,91,45,49,48,57,46,49,57,49,55,54,49,44,52,53,46,52,54,52,53,48,52,93,44,91,45,49,48,57,46,51,53,54,52,49,55,44,52,53,46,52,54,52,51,50,54,93,44,91,45,49,48,57,46,53,54,49,57,50,52,44,52,53,46,51,54,50,56,52,51,93,44,91,45,49,48,57,46,54,56,55,55,57,50,44,52,53,46,49,54,55,51,51,57,93,44,91,45,49,48,57,46,55,57,56,54,55,51,44,52,53,46,49,54,55,51,51,57,93,44,91,45,49,48,57,46,55,57,56,52,56,51,44,52,53,46,48,48,50,51,51,51,93,44,91,45,49,48,56,46,54,50,49,51,49,53,44,52,53,46,48,48,48,51,54,49,93,44,91,45,49,48,56,46,50,52,57,52,49,50,44,52,52,46,57,57,57,57,48,52,93,44,91,45,49,48,56,46,49,50,50,49,56,52,44,52,53,46,50,49,54,51,49,55,93,44,91,45,49,48,56,46,54,57,57,54,49,54,44,52,53,46,50,49,55,55,48,57,93,44,91,45,49,48,56,46,54,56,50,50,50,51,44,52,53,46,52,51,51,49,51,50,93,44,91,45,49,48,56,46,54,52,53,51,50,53,44,52,53,46,52,54,52,48,55,51,93,44,91,45,49,48,56,46,56,52,51,48,49,54,44,52,53,46,54,49,49,48,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,83,116,97,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,57,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,52,48,52,44,52,50,46,48,57,48,57,50,50,93,44,91,45,57,55,46,51,54,56,48,55,44,52,49,46,55,52,51,50,48,55,93,44,91,45,57,55,46,50,53,50,52,50,53,44,52,49,46,55,52,51,48,56,53,93,44,91,45,57,55,46,48,49,57,57,49,49,44,52,49,46,55,52,50,57,56,93,44,91,45,57,55,46,48,49,57,51,53,57,44,52,50,46,48,57,48,53,55,55,93,44,91,45,57,55,46,51,54,56,52,48,52,44,52,50,46,48,57,48,57,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,112,112,108,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,53,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,49,53,51,49,44,51,49,46,57,54,54,49,56,50,93,44,91,45,56,50,46,52,51,49,51,54,50,44,51,49,46,56,51,55,57,57,51,93,44,91,45,56,50,46,53,50,48,50,53,49,44,51,49,46,56,51,56,51,56,56,93,44,91,45,56,50,46,53,50,49,52,50,44,51,49,46,55,49,48,55,57,54,93,44,91,45,56,50,46,50,50,54,53,56,53,44,51,49,46,53,51,48,54,57,57,93,44,91,45,56,50,46,49,51,50,55,57,52,44,51,49,46,52,55,49,50,54,50,93,44,91,45,56,50,46,49,51,51,48,49,51,44,51,49,46,55,55,51,52,48,52,93,44,91,45,56,50,46,48,52,56,53,56,50,44,51,49,46,56,50,55,48,55,53,93,44,91,45,56,50,46,50,50,53,48,52,50,44,51,49,46,57,49,51,48,55,52,93,44,91,45,56,50,46,52,51,49,53,51,49,44,51,49,46,57,54,54,49,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,57,49,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,52,55,57,51,51,44,52,49,46,56,54,51,49,48,52,93,44,91,45,57,51,46,51,50,56,54,49,52,44,52,49,46,53,48,55,56,50,52,93,44,91,45,57,50,46,56,55,49,52,50,49,44,52,49,46,53,48,56,53,50,50,93,44,91,45,57,50,46,55,53,54,53,48,56,44,52,49,46,53,48,56,55,57,52,93,44,91,45,57,50,46,55,54,53,57,57,57,44,52,49,46,56,54,50,51,55,51,93,44,91,45,57,51,46,50,51,49,56,53,56,44,52,49,46,56,54,50,55,49,49,93,44,91,45,57,51,46,51,52,55,57,51,51,44,52,49,46,56,54,51,49,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,50,50,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,55,51,50,50,55,44,51,49,46,56,57,51,56,53,54,93,44,91,45,56,56,46,54,50,50,51,57,52,44,51,49,46,56,53,55,49,57,51,93,44,91,45,56,56,46,57,49,48,52,53,57,44,51,49,46,56,50,54,54,52,57,93,44,91,45,56,56,46,57,52,51,51,53,53,44,51,49,46,56,50,52,53,54,53,93,44,91,45,56,56,46,57,52,51,52,54,56,44,51,49,46,52,51,51,52,53,56,93,44,91,45,56,56,46,56,52,49,55,48,55,44,51,49,46,52,51,51,55,48,51,93,44,91,45,56,56,46,52,52,57,52,51,56,44,51,49,46,52,51,53,56,51,55,93,44,91,45,56,56,46,52,54,52,52,51,44,51,49,46,54,57,55,57,53,50,93,44,91,45,56,56,46,52,55,51,50,50,55,44,51,49,46,56,57,51,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,67,111,116,116,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,49,55,51,52,44,51,52,46,51,49,52,49,48,50,93,44,91,45,49,48,48,46,53,49,56,54,57,49,44,51,51,46,56,51,53,54,53,93,44,91,45,49,48,48,46,48,52,56,52,56,44,51,51,46,56,51,53,57,55,52,93,44,91,45,49,48,48,46,48,52,55,48,50,56,44,51,52,46,50,50,57,55,56,93,44,91,45,57,57,46,57,57,55,54,50,49,44,51,52,46,50,50,52,51,53,53,93,44,91,45,57,57,46,57,57,55,55,50,44,51,52,46,51,49,49,56,50,57,93,44,91,45,49,48,48,46,52,49,55,55,56,51,44,51,52,46,51,49,51,53,50,52,93,44,91,45,49,48,48,46,53,49,55,51,52,44,51,52,46,51,49,52,49,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,115,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,53,56,48,51,54,44,51,54,46,56,57,52,53,49,52,93,44,91,45,55,55,46,54,53,53,56,52,49,44,51,54,46,55,49,51,53,51,57,93,44,91,45,55,55,46,55,54,55,49,53,44,51,54,46,53,52,53,51,55,52,93,44,91,45,55,55,46,50,57,54,56,55,53,44,51,54,46,53,52,52,56,53,53,93,44,91,45,55,55,46,51,54,48,57,48,54,44,51,54,46,53,54,52,55,54,93,44,91,45,55,55,46,52,51,48,49,50,55,44,51,54,46,55,48,55,54,53,56,93,44,91,45,55,55,46,53,49,48,51,54,44,51,54,46,56,52,53,48,56,50,93,44,91,45,55,55,46,54,49,57,48,50,57,44,51,54,46,56,55,55,56,52,52,93,44,91,45,55,55,46,54,53,56,48,51,54,44,51,54,46,56,57,52,53,49,52,93,93,44,91,91,45,55,55,46,53,54,51,56,56,56,44,51,54,46,55,48,51,48,54,55,93,44,91,45,55,55,46,53,48,57,51,54,53,44,51,54,46,55,49,54,51,57,56,93,44,91,45,55,55,46,53,48,57,50,52,54,44,51,54,46,54,56,50,57,57,56,93,44,91,45,55,55,46,53,53,54,53,50,52,44,51,54,46,54,55,52,56,55,52,93,44,91,45,55,55,46,53,54,51,56,56,56,44,51,54,46,55,48,51,48,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,56,54,55,49,44,34,98,101,100,115,34,58,49,55,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,48,53,56,53,51,44,50,56,46,49,55,49,54,53,93,44,91,45,56,50,46,48,53,54,50,54,49,44,50,56,46,49,55,49,53,57,50,93,44,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,44,91,45,56,49,46,53,54,51,53,51,51,44,50,55,46,54,52,54,54,52,53,93,44,91,45,56,49,46,49,52,50,49,54,52,44,50,55,46,54,52,51,50,51,56,93,44,91,45,56,49,46,50,49,52,52,48,57,44,50,55,46,56,50,56,53,53,93,44,91,45,56,49,46,50,57,55,49,49,51,44,50,55,46,56,53,57,53,56,50,93,44,91,45,56,49,46,51,56,49,48,50,50,44,50,55,46,57,56,51,51,57,51,93,44,91,45,56,49,46,51,52,54,52,49,56,44,50,56,46,48,56,52,54,57,54,93,44,91,45,56,49,46,52,53,53,55,53,56,44,50,56,46,48,56,52,56,57,93,44,91,45,56,49,46,53,50,52,50,50,55,44,50,56,46,49,52,50,56,48,53,93,44,91,45,56,49,46,53,53,55,52,53,57,44,50,56,46,50,53,57,51,54,50,93,44,91,45,56,49,46,54,53,55,49,56,57,44,50,56,46,50,53,57,50,49,55,93,44,91,45,56,49,46,54,53,55,50,54,56,44,50,56,46,51,52,55,48,57,56,93,44,91,45,56,49,46,57,53,55,54,52,49,44,50,56,46,51,52,53,49,56,93,44,91,45,56,50,46,48,53,53,56,49,57,44,50,56,46,51,49,50,55,57,52,93,44,91,45,56,50,46,49,48,53,56,53,51,44,50,56,46,49,55,49,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,53,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,48,51,34,44,34,78,65,77,69,34,58,34,89,111,117,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,49,52,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,44,91,45,57,56,46,57,53,48,56,55,53,44,51,50,46,57,53,54,57,49,56,93,44,91,45,57,56,46,53,55,53,54,49,54,44,51,50,46,57,53,52,51,52,57,93,44,91,45,57,56,46,52,50,54,53,53,51,44,51,51,46,48,48,55,57,49,51,93,44,91,45,57,56,46,52,50,48,54,54,54,44,51,51,46,51,57,54,49,57,53,93,44,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,84,97,108,108,97,112,111,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,54,51,54,44,34,98,101,100,115,34,58,49,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,51,54,53,52,44,51,51,46,49,48,54,54,51,52,93,44,91,45,56,54,46,48,48,57,49,55,44,51,51,46,48,57,48,50,54,93,44,91,45,56,54,46,48,48,55,49,56,55,44,51,50,46,55,53,52,57,56,52,93,44,91,45,56,53,46,56,55,57,56,54,44,51,50,46,55,53,52,53,50,56,93,44,91,45,56,53,46,56,56,54,49,52,56,44,51,50,46,52,57,51,48,53,51,93,44,91,45,56,53,46,55,57,56,53,56,53,44,51,50,46,53,56,49,48,56,57,93,44,91,45,56,53,46,54,57,53,56,53,52,44,51,50,46,53,57,53,57,51,51,93,44,91,45,56,53,46,54,57,54,55,53,53,44,51,50,46,54,57,55,52,50,57,93,44,91,45,56,53,46,53,57,51,49,53,49,44,51,50,46,55,50,56,53,51,93,44,91,45,56,53,46,53,57,51,49,55,55,44,51,51,46,49,48,55,51,52,93,44,91,45,56,53,46,54,53,51,54,53,52,44,51,51,46,49,48,54,54,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,82,111,99,107,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,49,50,57,44,34,98,101,100,115,34,58,53,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,56,50,48,48,49,57,44,52,51,46,49,50,50,53,52,53,93,44,91,45,55,48,46,56,55,53,52,51,54,44,52,51,46,48,56,48,52,50,50,93,44,91,45,55,49,46,48,50,54,54,56,54,44,52,51,46,49,51,55,57,52,55,93,44,91,45,55,49,46,50,52,55,51,51,54,44,52,51,46,50,55,53,50,51,50,93,44,91,45,55,49,46,51,57,50,51,56,56,44,52,51,46,48,48,57,51,48,57,93,44,91,45,55,49,46,52,53,48,52,51,54,44,52,50,46,57,51,49,48,50,93,44,91,45,55,49,46,52,50,55,48,54,55,44,52,50,46,56,50,52,56,52,93,44,91,45,55,49,46,50,52,53,52,56,49,44,52,50,46,55,52,50,53,49,52,93,44,91,45,55,49,46,49,51,50,56,48,53,44,52,50,46,56,50,49,52,55,54,93,44,91,45,55,48,46,57,50,57,53,57,52,44,52,50,46,56,56,53,48,51,50,93,44,91,45,55,48,46,55,51,53,48,48,53,44,52,50,46,56,55,52,54,56,53,93,44,91,45,55,48,46,53,55,53,48,57,52,44,52,50,46,57,49,55,49,50,54,93,44,91,45,55,48,46,56,50,48,48,49,57,44,52,51,46,49,50,50,53,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,82,105,111,32,71,114,97,110,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,53,49,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,51,56,52,49,51,44,51,55,46,55,52,56,51,53,51,93,44,91,45,49,48,54,46,53,56,54,51,55,52,44,51,55,46,55,52,55,56,48,57,93,44,91,45,49,48,54,46,54,57,51,56,52,53,44,51,55,46,56,51,53,50,52,52,93,44,91,45,49,48,54,46,55,49,48,55,55,53,44,51,55,46,52,48,52,50,50,56,93,44,91,45,49,48,54,46,54,55,56,51,55,51,44,51,55,46,52,48,51,53,57,54,93,44,91,45,49,48,54,46,48,51,57,51,51,49,44,51,55,46,52,48,48,56,53,50,93,44,91,45,49,48,54,46,48,51,56,52,49,51,44,51,55,46,55,52,56,51,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,80,108,121,109,111,117,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,51,56,52,53,56,44,52,50,46,57,48,56,55,55,49,93,44,91,45,57,54,46,54,51,53,53,54,49,44,52,50,46,55,52,48,56,52,55,93,44,91,45,57,54,46,52,57,56,55,55,54,44,52,50,46,53,54,49,48,52,51,93,44,91,45,57,53,46,56,53,57,57,52,57,44,52,50,46,53,54,48,54,50,93,44,91,45,57,53,46,56,53,57,51,55,55,44,52,50,46,57,48,57,48,57,55,93,44,91,45,57,54,46,53,51,56,52,53,56,44,52,50,46,57,48,56,55,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,89,97,116,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,55,49,51,57,50,44,52,50,46,55,54,52,50,50,51,93,44,91,45,55,55,46,51,49,51,48,48,52,44,52,50,46,55,54,49,50,54,53,93,44,91,45,55,55,46,51,54,54,53,48,53,44,52,50,46,53,55,54,51,54,56,93,44,91,45,55,55,46,49,52,51,55,57,53,44,52,50,46,53,55,54,56,54,57,93,44,91,45,55,55,46,49,48,55,50,48,51,44,52,50,46,52,56,51,55,55,49,93,44,91,45,55,54,46,56,56,57,56,48,53,44,52,50,46,52,54,51,48,53,52,93,44,91,45,55,54,46,56,57,53,53,57,54,44,52,50,46,53,52,49,53,51,55,93,44,91,45,55,54,46,56,57,53,51,52,57,44,52,50,46,54,53,54,50,53,53,93,44,91,45,55,54,46,57,55,49,51,57,50,44,52,50,46,55,54,52,50,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,75,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,54,51,50,53,55,44,34,98,101,100,115,34,58,52,54,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,52,51,56,48,57,51,44,52,55,46,55,55,55,56,49,52,93,44,91,45,49,50,50,46,52,52,55,48,49,55,44,52,55,46,53,52,48,48,52,52,93,44,91,45,49,50,50,46,53,51,54,57,57,51,44,52,55,46,52,48,51,51,53,53,93,44,91,45,49,50,50,46,51,51,52,57,49,52,44,52,55,46,50,53,55,51,54,54,93,44,91,45,49,50,50,46,49,52,51,57,55,54,44,52,55,46,50,53,55,53,50,54,93,44,91,45,49,50,50,46,48,57,52,55,54,52,44,52,55,46,49,57,52,57,55,55,93,44,91,45,49,50,49,46,57,50,56,49,57,53,44,52,55,46,49,52,55,51,53,56,93,44,91,45,49,50,49,46,55,57,54,52,54,52,44,52,55,46,49,55,51,48,53,57,93,44,91,45,49,50,49,46,51,55,57,57,54,49,44,52,55,46,48,56,55,50,52,56,93,44,91,45,49,50,49,46,51,55,57,54,56,50,44,52,55,46,48,56,55,52,57,53,93,44,91,45,49,50,49,46,51,49,53,53,51,52,44,52,55,46,49,51,51,56,52,52,93,44,91,45,49,50,49,46,51,52,49,50,48,51,44,52,55,46,50,56,49,50,54,49,93,44,91,45,49,50,49,46,52,54,51,57,53,49,44,52,55,46,51,55,48,53,55,56,93,44,91,45,49,50,49,46,49,55,50,49,57,50,44,52,55,46,53,57,48,50,51,51,93,44,91,45,49,50,49,46,49,49,51,53,54,57,44,52,55,46,53,57,55,50,56,56,93,44,91,45,49,50,49,46,49,49,57,49,55,57,44,52,55,46,55,55,57,57,51,51,93,44,91,45,49,50,49,46,57,57,49,55,55,53,44,52,55,46,55,55,53,51,52,57,93,44,91,45,49,50,50,46,52,51,56,48,57,51,44,52,55,46,55,55,55,56,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,68,101,115,99,104,117,116,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,54,52,48,44,34,98,101,100,115,34,58,51,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,49,48,55,53,51,52,44,52,52,46,51,57,48,54,93,44,91,45,49,50,49,46,56,52,51,49,51,56,44,52,52,46,51,57,50,54,51,93,44,91,45,49,50,49,46,56,49,57,52,50,57,44,52,52,46,50,54,50,51,57,52,93,44,91,45,49,50,49,46,55,54,56,48,55,44,52,52,46,49,49,53,50,52,53,93,44,91,45,49,50,49,46,56,53,55,48,54,51,44,52,51,46,57,54,53,50,52,56,93,44,91,45,49,50,49,46,57,55,50,57,51,49,44,52,51,46,56,54,49,49,53,54,93,44,91,45,49,50,50,46,48,48,50,51,54,50,44,52,51,46,54,49,53,52,57,56,93,44,91,45,49,50,49,46,51,51,50,57,54,57,44,52,51,46,54,49,54,54,52,53,93,44,91,45,49,49,57,46,56,57,54,53,56,49,44,52,51,46,54,49,49,49,54,52,93,44,91,45,49,49,57,46,56,57,55,52,51,52,44,52,51,46,54,57,56,50,93,44,91,45,49,50,48,46,50,53,55,55,55,55,44,52,51,46,54,57,56,55,54,50,93,44,91,45,49,50,48,46,51,55,56,49,48,55,44,52,51,46,55,56,53,52,50,57,93,44,91,45,49,50,48,46,51,55,56,55,52,44,52,51,46,56,55,50,51,54,50,93,44,91,45,49,50,48,46,55,52,55,56,52,56,44,52,51,46,56,55,49,51,51,49,93,44,91,45,49,50,48,46,55,52,56,50,52,57,44,52,51,46,57,53,55,51,49,93,44,91,45,49,50,48,46,57,56,54,53,56,55,44,52,51,46,57,54,48,56,53,50,93,44,91,45,49,50,48,46,57,56,55,50,55,49,44,52,52,46,49,51,52,48,50,54,93,44,91,45,49,50,49,46,49,48,50,55,55,51,44,52,52,46,49,51,56,49,50,53,93,44,91,45,49,50,49,46,49,48,55,53,51,52,44,52,52,46,51,57,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,80,111,116,116,97,119,97,116,116,97,109,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,53,48,51,44,34,98,101,100,115,34,58,53,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,51,55,55,57,49,44,52,49,46,51,57,48,55,53,50,93,44,91,45,57,53,46,57,50,51,53,52,56,44,52,49,46,49,57,48,56,53,93,44,91,45,57,53,46,56,56,48,53,50,49,44,52,49,46,49,53,57,56,55,52,93,44,91,45,57,53,46,51,56,52,51,52,57,44,52,49,46,49,54,48,48,49,49,93,44,91,45,57,53,46,49,53,53,56,53,49,44,52,49,46,49,53,57,50,51,54,93,44,91,45,57,53,46,49,53,52,55,50,50,44,52,49,46,53,48,53,50,49,49,93,44,91,45,57,53,46,52,57,55,57,57,55,44,52,49,46,53,48,54,48,55,52,93,44,91,45,57,53,46,57,57,54,49,57,52,44,52,49,46,53,48,54,57,54,93,44,91,45,57,53,46,57,51,55,55,57,49,44,52,49,46,51,57,48,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,57,34,44,34,78,65,77,69,34,58,34,87,114,105,103,104,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,56,54,54,55,49,44,51,55,46,52,56,49,53,52,53,93,44,91,45,57,50,46,54,56,53,56,54,55,44,51,55,46,48,54,55,48,53,49,93,44,91,45,57,50,46,50,53,49,51,53,57,44,51,55,46,48,53,57,54,53,51,93,44,91,45,57,50,46,50,53,50,50,54,49,44,51,55,46,52,55,50,57,52,52,93,44,91,45,57,50,46,54,56,54,54,55,49,44,51,55,46,52,56,49,53,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,84,111,111,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,55,54,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,49,57,51,52,49,44,52,56,46,57,57,56,52,55,53,93,44,91,45,49,49,50,46,49,56,52,55,56,52,44,52,56,46,52,55,55,53,55,56,93,44,91,45,49,49,50,46,48,48,52,52,51,54,44,52,56,46,52,52,56,56,56,54,93,44,91,45,49,49,49,46,57,57,48,56,56,57,44,52,56,46,51,57,52,50,54,53,93,44,91,45,49,49,49,46,55,57,53,57,49,44,52,56,46,51,57,51,48,56,49,93,44,91,45,49,49,49,46,54,54,53,55,53,54,44,52,56,46,51,52,57,52,53,54,93,44,91,45,49,49,49,46,54,54,53,53,57,57,44,52,56,46,50,49,57,53,52,57,93,44,91,45,49,49,49,46,52,48,57,48,49,56,44,52,56,46,50,49,57,53,52,50,93,44,91,45,49,49,49,46,50,55,53,51,48,54,44,52,56,46,50,49,57,53,51,49,93,44,91,45,49,49,49,46,50,54,57,56,54,50,44,52,56,46,57,57,55,50,51,93,44,91,45,49,49,50,46,49,57,51,52,49,44,52,56,46,57,57,56,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,84,105,111,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,50,53,51,51,53,57,44,52,50,46,52,48,55,53,54,56,93,44,91,45,55,54,46,50,53,48,49,52,57,44,52,50,46,50,57,54,54,55,54,93,44,91,45,55,54,46,52,49,53,51,48,53,44,52,50,46,51,49,56,51,54,56,93,44,91,45,55,54,46,53,51,56,51,52,57,44,52,50,46,50,56,49,55,53,53,93,44,91,45,55,54,46,53,53,55,54,50,52,44,52,50,46,48,48,48,49,54,93,44,91,45,55,54,46,49,52,53,53,49,57,44,52,49,46,57,57,56,56,52,50,93,44,91,45,55,54,46,49,48,53,56,52,44,52,49,46,57,57,56,56,53,56,93,44,91,45,55,54,46,49,49,54,50,50,53,44,52,50,46,49,56,53,54,49,93,44,91,45,55,54,46,48,56,49,49,51,52,44,52,50,46,50,51,48,52,57,53,93,44,91,45,55,54,46,49,51,48,49,56,49,44,52,50,46,52,49,48,51,51,55,93,44,91,45,55,54,46,50,53,51,51,53,57,44,52,50,46,52,48,55,53,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,55,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,53,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,51,52,52,54,51,44,51,48,46,52,48,50,56,52,51,93,44,91,45,57,55,46,48,56,49,56,51,52,44,51,48,46,50,53,57,51,53,55,93,44,91,45,57,55,46,48,50,52,52,54,49,44,51,48,46,48,53,49,52,51,53,93,44,91,45,57,54,46,55,57,52,53,53,50,44,51,48,46,49,54,48,53,52,53,93,44,91,45,57,54,46,54,52,48,56,56,51,44,51,48,46,50,57,54,55,56,54,93,44,91,45,57,54,46,55,53,51,56,51,53,44,51,48,46,51,50,57,51,52,56,93,44,91,45,57,54,46,57,54,51,54,50,57,44,51,48,46,53,53,55,49,54,57,93,44,91,45,57,55,46,49,53,53,50,49,57,44,51,48,46,52,53,55,51,52,52,93,44,91,45,57,55,46,51,51,52,52,54,51,44,51,48,46,52,48,50,56,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,57,48,50,44,34,98,101,100,115,34,58,52,53,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,55,56,49,51,50,44,51,51,46,55,52,51,53,48,55,93,44,91,45,56,52,46,54,53,54,52,51,51,44,51,51,46,54,53,57,52,48,57,93,44,91,45,56,52,46,56,48,56,57,51,52,44,51,51,46,53,55,52,48,56,53,93,44,91,45,56,52,46,56,53,48,55,49,51,44,51,51,46,53,49,49,52,53,55,93,44,91,45,56,52,46,54,48,57,53,52,44,51,51,46,53,48,50,53,49,49,93,44,91,45,56,52,46,52,53,56,54,54,53,44,51,51,46,53,53,48,57,51,51,93,44,91,45,56,52,46,52,53,55,55,50,54,44,51,51,46,54,52,56,56,54,54,93,44,91,45,56,52,46,51,53,48,50,50,52,44,51,51,46,54,52,55,57,48,56,93,44,91,45,56,52,46,51,52,55,56,49,57,44,51,51,46,57,54,51,50,56,56,93,44,91,45,56,52,46,50,55,55,48,57,51,44,51,51,46,57,53,55,54,49,52,93,44,91,45,56,52,46,48,57,55,54,57,51,44,51,52,46,48,53,48,55,48,56,93,44,91,45,56,52,46,50,53,56,57,51,52,44,51,52,46,49,48,57,53,51,57,93,44,91,45,56,52,46,50,53,56,55,52,51,44,51,52,46,49,56,53,57,48,57,93,44,91,45,56,52,46,51,50,56,50,54,51,44,51,52,46,49,56,54,49,52,52,93,44,91,45,56,52,46,52,49,56,57,50,55,44,51,52,46,48,55,51,50,57,56,93,44,91,45,56,52,46,51,56,51,48,50,55,44,51,51,46,57,54,51,56,93,44,91,45,56,52,46,52,55,49,51,51,44,51,51,46,56,50,53,57,48,53,93,44,91,45,56,52,46,53,55,56,49,51,50,44,51,51,46,55,52,51,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,57,48,51,44,34,98,101,100,115,34,58,51,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,50,56,53,49,50,44,51,50,46,48,56,52,52,55,53,93,44,91,45,57,53,46,52,52,54,48,50,52,44,51,49,46,56,52,55,57,56,55,93,44,91,45,57,53,46,51,54,54,49,56,55,44,51,49,46,55,50,54,55,53,51,93,44,91,45,57,53,46,50,56,57,54,54,49,44,51,49,46,54,56,51,57,57,55,93,44,91,45,57,53,46,50,55,51,50,48,51,44,51,49,46,53,57,50,56,56,54,93,44,91,45,57,53,46,49,52,57,49,57,56,44,51,49,46,53,54,56,56,48,55,93,44,91,45,57,53,46,48,48,51,51,52,53,44,51,49,46,52,50,53,55,49,93,44,91,45,57,52,46,56,54,53,56,53,55,44,51,49,46,53,50,54,57,49,54,93,44,91,45,57,52,46,57,54,53,50,50,51,44,51,49,46,54,57,51,56,56,53,93,44,91,45,57,52,46,57,51,55,53,51,50,44,51,49,46,56,52,53,53,53,53,93,44,91,45,57,52,46,57,56,53,48,51,55,44,51,49,46,56,52,54,49,57,51,93,44,91,45,57,52,46,57,56,53,50,55,50,44,51,50,46,49,51,55,57,56,57,93,44,91,45,57,53,46,52,53,57,57,48,56,44,51,50,46,49,51,53,53,53,57,93,44,91,45,57,53,46,52,50,56,53,49,50,44,51,50,46,48,56,52,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,117,100,114,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,51,53,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,49,48,51,56,55,44,51,57,46,48,54,52,50,48,52,93,44,91,45,57,49,46,54,51,51,57,57,56,44,51,57,46,48,53,57,48,53,55,93,44,91,45,57,49,46,54,50,57,53,57,56,44,51,57,46,49,52,55,56,53,51,93,44,91,45,57,49,46,52,48,57,48,51,51,44,51,57,46,49,52,50,53,52,50,93,44,91,45,57,49,46,52,51,56,50,51,53,44,51,57,46,51,49,56,55,49,54,93,44,91,45,57,49,46,55,49,55,57,54,56,44,51,57,46,51,51,57,49,50,50,93,44,91,45,57,50,46,51,49,48,48,50,56,44,51,57,46,51,52,55,55,57,53,93,44,91,45,57,50,46,51,49,52,52,55,49,44,51,57,46,50,52,54,52,53,52,93,44,91,45,57,50,46,49,48,52,51,55,52,44,51,57,46,50,51,57,56,48,57,93,44,91,45,57,50,46,49,49,48,51,56,55,44,51,57,46,48,54,52,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,108,108,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,53,54,56,44,34,98,101,100,115,34,58,49,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,44,91,45,56,48,46,57,48,48,49,57,54,44,51,50,46,56,51,50,56,49,51,93,44,91,45,56,48,46,56,50,54,51,48,57,44,51,50,46,55,48,52,51,50,49,93,44,91,45,56,48,46,54,56,52,56,53,51,44,51,50,46,54,53,54,48,57,55,93,44,91,45,56,48,46,53,48,50,57,52,52,44,51,50,46,52,57,53,54,53,50,93,44,91,45,56,48,46,51,48,53,55,49,49,44,51,50,46,51,57,55,53,56,57,93,44,91,45,56,48,46,50,50,51,53,57,44,51,50,46,52,56,50,53,54,53,93,44,91,45,56,48,46,52,49,54,53,56,54,44,51,50,46,53,52,54,51,49,56,93,44,91,45,56,48,46,52,48,51,50,56,50,44,51,50,46,54,53,49,54,50,50,93,44,91,45,56,48,46,52,53,51,54,51,44,51,50,46,55,51,57,57,93,44,91,45,56,48,46,52,48,49,51,52,44,51,50,46,56,53,56,52,54,54,93,44,91,45,56,48,46,52,48,50,50,50,54,44,51,51,46,48,53,51,50,51,56,93,44,91,45,56,48,46,54,50,51,56,49,53,44,51,51,46,48,54,54,57,50,55,93,44,91,45,56,48,46,55,57,48,50,57,54,44,51,51,46,49,56,48,56,52,93,44,91,45,56,48,46,55,57,55,57,49,50,44,51,51,46,49,55,54,57,52,52,93,44,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,54,53,50,44,34,98,101,100,115,34,58,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,48,56,56,51,50,44,52,51,46,49,57,55,55,50,52,93,44,91,45,56,57,46,48,49,51,53,56,50,44,52,50,46,56,52,55,54,51,93,44,91,45,56,56,46,55,55,55,48,55,54,44,52,50,46,56,52,50,54,57,52,93,44,91,45,56,56,46,53,52,49,53,51,53,44,52,50,46,56,52,50,57,57,54,93,44,91,45,56,56,46,53,51,53,56,52,51,44,52,51,46,49,57,54,48,52,56,93,44,91,45,56,57,46,48,48,56,56,51,50,44,52,51,46,49,57,55,55,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,54,50,51,44,34,98,101,100,115,34,58,49,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,56,48,57,56,49,54,44,51,54,46,49,52,57,53,54,55,93,44,91,45,57,48,46,56,53,50,48,54,52,44,51,53,46,57,54,56,48,57,50,93,44,91,45,57,48,46,51,56,55,51,55,56,44,51,53,46,57,54,52,55,48,56,93,44,91,45,57,48,46,51,55,55,56,57,44,51,53,46,57,57,53,54,56,51,93,44,91,45,57,48,46,49,57,48,50,48,55,44,51,54,46,50,48,49,51,54,49,93,44,91,45,57,48,46,51,49,57,56,50,44,51,54,46,50,53,57,49,52,52,93,44,91,45,57,48,46,56,48,54,54,49,53,44,51,54,46,50,54,54,56,54,53,93,44,91,45,57,48,46,56,48,57,56,49,54,44,51,54,46,49,52,57,53,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,72,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,55,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,57,52,52,57,51,57,44,51,52,46,55,52,56,50,56,49,93,44,91,45,49,48,48,46,57,52,54,49,51,50,44,51,52,46,51,49,50,55,53,57,93,44,91,45,49,48,48,46,53,49,55,51,52,44,51,52,46,51,49,52,49,48,50,93,44,91,45,49,48,48,46,52,49,55,55,56,51,44,51,52,46,51,49,51,53,50,52,93,44,91,45,49,48,48,46,52,49,53,56,57,53,44,51,52,46,55,52,55,53,50,53,93,44,91,45,49,48,48,46,53,52,48,55,48,51,44,51,52,46,55,52,55,55,50,51,93,44,91,45,49,48,48,46,57,52,52,57,51,57,44,51,52,46,55,52,56,50,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,117,114,110,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,57,51,55,48,53,44,52,54,46,49,53,55,51,50,49,93,44,91,45,57,50,46,51,53,48,52,48,55,44,52,54,46,48,49,54,51,54,56,93,44,91,45,57,50,46,55,49,50,53,48,51,44,52,53,46,56,57,49,55,48,53,93,44,91,45,57,50,46,56,52,49,48,53,49,44,52,53,46,55,51,48,48,50,52,93,44,91,45,57,50,46,56,56,55,48,54,55,44,52,53,46,54,52,52,49,52,56,93,44,91,45,57,50,46,53,50,57,49,48,55,44,52,53,46,54,52,50,48,55,54,93,44,91,45,57,50,46,53,50,56,49,57,56,44,52,53,46,55,50,56,54,56,93,44,91,45,57,50,46,49,53,52,52,52,51,44,52,53,46,55,50,53,54,49,54,93,44,91,45,57,50,46,49,53,52,56,56,56,44,52,53,46,54,51,57,55,52,50,93,44,91,45,57,50,46,48,51,49,52,49,55,44,52,53,46,54,51,57,57,50,56,93,44,91,45,57,50,46,48,52,57,54,51,54,44,52,54,46,49,53,55,53,57,55,93,44,91,45,57,50,46,50,57,51,55,48,53,44,52,54,46,49,53,55,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,84,111,114,114,97,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,49,49,55,56,49,44,51,52,46,56,55,48,50,53,50,93,44,91,45,49,48,54,46,52,54,51,56,54,56,44,51,52,46,56,55,48,49,57,52,93,44,91,45,49,48,54,46,52,54,57,55,57,44,51,52,46,53,50,49,50,49,55,93,44,91,45,49,48,54,46,52,49,54,57,50,52,44,51,52,46,52,51,57,54,56,55,93,44,91,45,49,48,54,46,52,49,53,57,55,50,44,51,52,46,50,53,57,56,50,50,93,44,91,45,49,48,53,46,57,50,53,57,54,56,44,51,52,46,50,53,57,57,57,93,44,91,45,49,48,53,46,51,49,51,50,49,56,44,51,52,46,50,54,48,48,51,49,93,44,91,45,49,48,53,46,51,49,51,48,55,50,44,51,52,46,51,52,55,50,48,53,93,44,91,45,49,48,53,46,50,57,48,51,57,54,44,51,52,46,54,48,54,55,54,54,93,44,91,45,49,48,53,46,50,57,48,55,57,49,44,51,53,46,48,52,50,48,51,93,44,91,45,49,48,53,46,55,49,52,52,49,57,44,51,53,46,48,52,49,54,48,53,93,44,91,45,49,48,54,46,50,52,51,56,55,52,44,51,53,46,48,52,48,48,48,51,93,44,91,45,49,48,54,46,50,52,51,55,54,50,44,51,52,46,57,53,51,51,53,53,93,44,91,45,49,48,54,46,49,52,57,55,51,55,44,51,52,46,56,55,48,49,52,50,93,44,91,45,49,48,54,46,52,49,49,55,56,49,44,51,52,46,56,55,48,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,80,97,99,105,102,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,50,56,49,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,49,55,53,49,51,49,44,52,54,46,55,57,51,55,51,50,93,44,91,45,49,50,52,46,49,50,57,57,53,55,44,52,54,46,52,50,54,57,53,57,93,44,91,45,49,50,52,46,49,53,57,53,52,54,44,52,54,46,50,54,49,49,51,50,93,44,91,45,49,50,51,46,57,55,54,50,55,53,44,52,54,46,50,54,57,57,48,55,93,44,91,45,49,50,51,46,56,55,49,56,54,57,44,52,54,46,50,51,52,57,52,57,93,44,91,45,49,50,51,46,55,50,56,51,49,54,44,52,54,46,50,54,52,53,52,49,93,44,91,45,49,50,51,46,55,50,54,53,53,55,44,52,54,46,51,56,52,56,55,50,93,44,91,45,49,50,51,46,51,53,56,51,51,52,44,52,54,46,51,56,52,48,50,53,93,44,91,45,49,50,51,46,51,55,48,57,53,44,52,54,46,55,57,50,49,50,57,93,44,91,45,49,50,52,46,49,55,53,49,51,49,44,52,54,46,55,57,51,55,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,80,101,110,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,48,50,48,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,49,52,48,48,55,44,51,52,46,55,50,49,55,57,53,93,44,91,45,55,56,46,50,53,52,52,52,49,44,51,52,46,53,53,51,53,57,53,93,44,91,45,55,56,46,49,55,54,53,48,49,44,51,52,46,52,54,53,51,53,54,93,44,91,45,55,56,46,50,53,54,48,56,53,44,51,52,46,51,57,57,52,54,57,93,44,91,45,55,56,46,49,54,50,51,53,44,51,52,46,51,53,55,48,48,55,93,44,91,45,55,56,46,48,50,57,57,50,50,44,51,52,46,51,51,49,55,54,56,93,44,91,45,55,55,46,56,50,51,49,48,50,44,51,52,46,51,56,57,50,56,55,93,44,91,45,55,55,46,54,55,53,50,55,54,44,51,52,46,50,53,51,49,51,93,44,91,45,55,55,46,52,56,52,53,51,56,44,51,52,46,51,57,57,55,48,53,93,44,91,45,55,55,46,53,55,52,57,50,52,44,51,52,46,52,55,56,54,56,49,93,44,91,45,55,55,46,54,56,48,49,50,55,44,51,52,46,55,50,48,53,57,53,93,44,91,45,55,56,46,49,49,52,48,48,55,44,51,52,46,55,50,49,55,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,49,34,44,34,78,65,77,69,34,58,34,72,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,57,48,49,44,34,98,101,100,115,34,58,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,49,55,48,54,54,44,51,50,46,53,53,53,52,56,52,93,44,91,45,57,56,46,48,54,54,56,51,54,44,51,50,46,53,53,56,56,50,50,93,44,91,45,57,56,46,48,54,56,53,52,53,44,51,50,46,53,49,49,54,50,54,93,44,91,45,57,55,46,57,52,53,54,50,53,44,51,50,46,50,51,51,52,54,56,93,44,91,45,57,55,46,55,56,50,55,54,44,51,50,46,51,49,54,52,57,51,93,44,91,45,57,55,46,54,49,53,50,56,54,44,51,50,46,51,49,56,54,49,56,93,44,91,45,57,55,46,54,49,55,48,54,54,44,51,50,46,53,53,53,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,83,116,97,110,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,48,49,46,49,53,52,53,49,54,44,52,52,46,54,56,57,57,52,55,93,44,91,45,49,48,49,46,49,54,54,55,53,51,44,52,52,46,49,54,56,48,56,53,93,44,91,45,49,48,49,46,48,52,54,57,49,54,44,52,52,46,49,54,56,52,56,52,93,44,91,45,49,48,48,46,51,54,55,50,48,55,44,52,52,46,49,54,56,54,57,52,93,44,91,45,49,48,48,46,51,54,55,50,52,55,44,52,52,46,49,57,52,54,50,49,93,44,91,45,57,57,46,57,51,56,50,49,55,44,52,52,46,49,57,53,49,57,53,93,44,91,45,49,48,48,46,48,56,53,51,51,44,52,52,46,51,48,56,52,53,49,93,44,91,45,49,48,48,46,51,54,53,51,57,44,52,52,46,51,53,53,53,50,52,93,44,91,45,49,48,48,46,51,56,54,51,55,54,44,52,52,46,52,52,48,48,48,56,93,44,91,45,49,48,48,46,53,55,53,55,57,54,44,52,52,46,52,57,49,55,49,51,93,44,91,45,49,48,48,46,53,50,54,52,57,56,44,52,52,46,53,52,55,52,50,50,93,44,91,45,49,48,48,46,54,52,48,48,54,49,44,52,52,46,53,56,51,55,50,51,93,44,91,45,49,48,48,46,54,49,51,56,48,53,44,52,52,46,55,48,55,49,51,53,93,44,91,45,49,48,48,46,55,49,55,54,52,52,44,52,52,46,55,55,48,57,51,93,44,91,45,49,48,48,46,56,50,57,55,57,53,44,52,52,46,55,56,51,50,52,56,93,44,91,45,49,48,49,46,48,50,50,54,49,49,44,52,52,46,55,50,52,49,53,51,93,44,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,48,52,56,54,44,34,98,101,100,115,34,58,49,55,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,48,49,48,54,50,44,51,57,46,55,50,50,52,49,56,93,44,91,45,49,50,48,46,48,48,51,55,55,51,44,51,57,46,52,52,53,48,53,54,93,44,91,45,49,50,48,46,48,48,54,51,50,51,44,51,57,46,51,49,54,52,57,54,93,44,91,45,49,50,48,46,48,48,52,50,57,55,44,51,57,46,49,54,53,54,48,51,93,44,91,45,49,49,57,46,56,56,48,55,56,55,44,51,57,46,49,54,53,53,48,57,93,44,91,45,49,49,57,46,55,49,50,54,52,53,44,51,57,46,50,53,48,56,55,49,93,44,91,45,49,49,57,46,54,55,55,52,55,54,44,51,57,46,50,56,48,56,55,49,93,44,91,45,49,49,57,46,54,57,53,54,52,51,44,51,57,46,53,50,48,48,50,51,93,44,91,45,49,49,57,46,50,56,51,54,51,55,44,51,57,46,54,50,49,53,54,49,93,44,91,45,49,49,57,46,49,56,57,51,52,50,44,51,57,46,54,53,48,56,55,93,44,91,45,49,49,57,46,50,50,53,49,55,54,44,51,57,46,57,57,57,51,56,53,93,44,91,45,49,49,57,46,51,51,57,50,57,54,44,51,57,46,57,57,56,54,48,57,93,44,91,45,49,49,57,46,51,51,56,53,48,52,44,52,48,46,53,49,55,56,48,53,93,44,91,45,49,49,57,46,51,49,51,48,51,55,44,52,48,46,53,49,56,51,49,52,93,44,91,45,49,49,57,46,51,48,57,53,57,56,44,52,48,46,57,54,48,51,55,56,93,44,91,45,49,49,57,46,51,50,57,55,57,49,44,52,48,46,57,54,48,51,57,52,93,44,91,45,49,49,57,46,51,50,52,49,56,52,44,52,49,46,57,57,51,57,50,51,93,44,91,45,49,49,57,46,51,54,48,49,50,50,44,52,49,46,57,57,52,50,55,56,93,44,91,45,49,49,57,46,57,57,57,50,51,52,44,52,49,46,57,57,52,57,52,52,93,44,91,45,49,49,57,46,57,57,57,56,54,54,44,52,49,46,49,56,51,57,55,52,93,44,91,45,49,49,57,46,57,57,53,55,48,53,44,52,48,46,51,55,53,56,51,93,44,91,45,49,50,48,46,48,48,49,48,54,50,44,51,57,46,55,50,50,52,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,97,108,108,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,51,51,52,48,49,44,51,55,46,50,50,52,57,57,49,93,44,91,45,56,57,46,48,50,57,56,54,54,44,51,55,46,50,49,49,48,54,53,93,44,91,45,56,57,46,49,55,50,48,56,49,44,51,55,46,48,54,56,51,49,93,44,91,45,56,57,46,49,51,50,57,49,53,44,51,54,46,57,56,50,48,53,55,93,44,91,45,56,57,46,49,48,48,56,54,52,44,51,54,46,57,52,52,48,49,54,93,44,91,45,56,56,46,57,56,57,55,57,55,44,51,54,46,57,49,57,51,51,93,44,91,45,56,56,46,56,49,53,57,53,50,44,51,54,46,57,53,52,49,93,44,91,45,56,56,46,57,51,51,52,48,49,44,51,55,46,50,50,52,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,114,99,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,44,91,45,57,56,46,52,50,48,54,54,54,44,51,51,46,51,57,54,49,57,53,93,44,91,45,57,56,46,52,50,49,52,49,57,44,51,51,46,52,54,54,55,57,55,93,44,91,45,57,56,46,52,50,51,53,55,55,44,51,51,46,56,51,54,48,52,55,93,44,91,45,57,56,46,57,53,51,50,48,50,44,51,51,46,56,51,52,48,50,53,93,44,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,57,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,55,53,54,53,44,51,51,46,56,51,52,48,48,53,93,44,91,45,57,57,46,52,55,52,52,57,56,44,51,51,46,55,51,51,56,52,57,93,44,91,45,57,57,46,52,55,50,52,52,52,44,51,51,46,51,57,57,48,50,51,93,44,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,44,91,45,57,56,46,57,53,51,50,48,50,44,51,51,46,56,51,52,48,50,53,93,44,91,45,57,57,46,52,55,53,54,53,44,51,51,46,56,51,52,48,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,48,53,34,44,34,78,65,77,69,34,58,34,83,97,110,32,65,117,103,117,115,116,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,50,55,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,51,57,57,48,57,49,44,51,49,46,54,53,51,53,57,54,93,44,91,45,57,52,46,51,49,49,49,44,51,49,46,53,56,56,52,56,50,93,44,91,45,57,52,46,51,50,54,54,49,54,44,51,49,46,50,50,52,55,53,52,93,44,91,45,57,52,46,49,50,57,54,51,50,44,51,49,46,48,57,57,50,56,93,44,91,45,57,52,46,48,51,57,48,51,52,44,51,49,46,49,51,52,50,55,49,93,44,91,45,57,52,46,48,52,52,49,53,52,44,51,49,46,52,48,57,57,55,57,93,44,91,45,57,51,46,57,56,51,50,51,57,44,51,49,46,52,54,54,49,49,52,93,44,91,45,57,51,46,57,56,52,52,54,49,44,51,49,46,53,54,57,52,49,57,93,44,91,45,57,52,46,48,57,48,55,49,55,44,51,49,46,54,50,48,54,48,57,93,44,91,45,57,52,46,51,57,57,48,57,49,44,51,49,46,54,53,51,53,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,83,116,111,114,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,50,56,51,54,51,55,44,51,57,46,54,50,49,53,54,49,93,44,91,45,49,49,57,46,54,57,53,54,52,51,44,51,57,46,53,50,48,48,50,51,93,44,91,45,49,49,57,46,54,55,55,52,55,54,44,51,57,46,50,56,48,56,55,49,93,44,91,45,49,49,57,46,55,49,50,54,52,53,44,51,57,46,50,53,48,56,55,49,93,44,91,45,49,49,57,46,52,55,56,56,48,54,44,51,57,46,51,51,55,52,49,54,93,44,91,45,49,49,57,46,50,56,51,54,51,55,44,51,57,46,54,50,49,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,57,34,44,34,78,65,77,69,34,58,34,83,99,104,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,51,50,49,54,44,51,50,46,51,57,55,54,52,57,93,44,91,45,56,52,46,51,57,50,51,49,54,44,51,50,46,52,49,52,48,52,54,93,44,91,45,56,52,46,52,51,48,50,49,56,44,51,50,46,49,54,54,50,53,55,93,44,91,45,56,52,46,49,56,51,53,54,57,44,51,50,46,49,53,56,52,57,51,93,44,91,45,56,52,46,49,56,49,54,53,55,44,51,50,46,50,50,57,55,48,51,93,44,91,45,56,52,46,50,53,52,54,49,51,44,51,50,46,51,55,50,48,53,51,93,44,91,45,56,52,46,51,54,51,50,49,54,44,51,50,46,51,57,55,54,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,70,97,105,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,52,51,52,56,44,34,98,101,100,115,34,58,49,56,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,53,51,48,48,54,55,44,52,49,46,53,50,55,49,57,52,93,44,91,45,55,51,46,53,52,52,55,50,56,44,52,49,46,51,54,54,51,55,53,93,44,91,45,55,51,46,52,56,50,54,57,53,44,52,49,46,50,49,50,55,55,50,93,44,91,45,55,51,46,55,50,55,55,55,53,44,52,49,46,49,48,48,54,57,54,93,44,91,45,55,51,46,54,49,50,56,56,53,44,52,48,46,57,53,48,57,52,51,93,44,91,45,55,51,46,52,51,49,57,49,57,44,52,48,46,57,56,57,48,48,57,93,44,91,45,55,50,46,57,57,57,53,52,55,44,52,49,46,48,56,55,49,48,56,93,44,91,45,55,51,46,49,48,55,52,53,50,44,52,49,46,49,54,56,51,57,55,93,44,91,45,55,51,46,48,54,55,56,53,49,44,52,49,46,51,48,48,57,57,54,93,44,91,45,55,51,46,51,49,48,52,55,51,44,52,49,46,52,54,56,56,49,53,93,44,91,45,55,51,46,52,52,49,52,54,54,44,52,49,46,52,57,49,50,57,52,93,44,91,45,55,51,46,53,49,56,48,56,44,52,49,46,54,54,54,55,50,51,93,44,91,45,55,51,46,53,51,48,48,54,55,44,52,49,46,53,50,55,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,51,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,54,52,52,49,44,51,49,46,48,57,52,50,49,49,93,44,91,45,57,53,46,57,55,51,56,52,49,44,51,49,46,48,57,50,49,53,93,44,91,45,57,54,46,50,52,49,48,50,44,51,48,46,57,55,51,55,51,55,93,44,91,45,57,54,46,49,54,56,51,55,44,51,48,46,56,50,50,57,57,55,93,44,91,45,57,53,46,56,54,51,48,53,57,44,51,48,46,56,54,52,49,50,53,93,44,91,45,57,53,46,54,49,55,56,55,50,44,51,48,46,57,51,48,52,49,56,93,44,91,45,57,53,46,54,55,50,53,57,55,44,51,48,46,57,55,54,50,55,56,93,44,91,45,57,53,46,54,53,54,52,56,55,44,51,49,46,48,55,57,51,51,57,93,44,91,45,57,53,46,55,54,52,52,49,44,51,49,46,48,57,52,50,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,111,97,113,117,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,50,50,49,50,44,34,98,101,100,115,34,58,49,51,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,48,50,55,48,56,52,44,51,56,46,51,48,48,50,53,50,93,44,91,45,49,50,49,46,51,52,52,48,50,52,44,51,56,46,50,50,56,50,54,93,44,91,45,49,50,49,46,52,55,48,57,53,56,44,51,56,46,50,53,57,57,48,50,93,44,91,45,49,50,49,46,53,56,48,48,50,50,44,51,56,46,48,57,52,52,49,52,93,44,91,45,49,50,49,46,53,53,54,57,57,55,44,51,55,46,56,49,54,52,56,56,93,44,91,45,49,50,49,46,53,53,54,54,53,53,44,51,55,46,53,52,50,55,51,50,93,44,91,45,49,50,49,46,52,55,49,57,50,53,44,51,55,46,52,56,49,55,56,51,93,44,91,45,49,50,49,46,49,53,53,56,52,57,44,51,55,46,55,49,57,56,52,52,93,44,91,45,49,50,48,46,57,50,50,49,55,52,44,51,55,46,55,52,55,56,48,54,93,44,91,45,49,50,48,46,57,50,54,52,52,57,44,51,56,46,48,55,55,52,50,49,93,44,91,45,49,50,48,46,57,57,53,52,57,55,44,51,56,46,50,50,53,52,48,50,93,44,91,45,49,50,49,46,48,50,55,48,56,52,44,51,56,46,51,48,48,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,87,105,110,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,53,56,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,56,56,50,53,53,44,51,51,46,50,56,54,48,48,51,93,44,91,45,56,57,46,49,48,56,57,44,51,51,46,49,57,56,48,53,57,93,44,91,45,56,57,46,50,49,51,52,50,50,44,51,51,46,49,57,55,53,52,51,93,44,91,45,56,57,46,50,49,51,57,50,49,44,51,51,46,49,48,57,52,48,50,93,44,91,45,56,57,46,51,49,55,56,53,53,44,51,51,46,49,48,56,56,55,49,93,44,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,44,91,45,56,56,46,57,49,52,52,49,51,44,51,50,46,57,50,54,54,93,44,91,45,56,56,46,56,49,50,55,56,50,44,51,50,46,57,50,53,57,55,51,93,44,91,45,56,56,46,56,49,51,48,53,51,44,51,51,46,50,56,54,52,50,52,93,44,91,45,56,57,46,48,56,56,50,53,53,44,51,51,46,50,56,54,48,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,54,56,50,55,44,51,56,46,53,56,53,52,52,56,93,44,91,45,56,53,46,51,49,52,48,48,54,44,51,56,46,52,57,50,53,57,50,93,44,91,45,56,53,46,50,56,51,48,56,50,44,51,56,46,51,53,56,48,53,52,93,44,91,45,56,52,46,57,57,55,54,54,55,44,51,56,46,51,51,53,53,56,54,93,44,91,45,56,52,46,56,55,48,52,56,50,44,51,56,46,51,53,54,55,53,49,93,44,91,45,56,52,46,56,56,48,50,52,56,44,51,56,46,52,49,54,49,56,93,44,91,45,56,53,46,48,50,57,56,56,56,44,51,56,46,53,49,48,55,54,53,93,44,91,45,56,53,46,48,55,52,53,56,51,44,51,56,46,53,57,54,56,51,56,93,44,91,45,56,53,46,49,54,56,50,55,44,51,56,46,53,56,53,52,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,51,48,53,50,56,44,51,55,46,56,57,49,53,51,56,93,44,91,45,56,53,46,48,50,53,48,50,49,44,51,55,46,54,55,56,56,53,52,93,44,91,45,56,52,46,55,52,52,56,56,56,44,51,55,46,55,49,51,48,55,53,93,44,91,45,56,52,46,55,49,54,57,50,53,44,51,55,46,56,49,53,51,56,57,93,44,91,45,56,52,46,55,48,57,57,49,56,44,51,55,46,56,54,49,57,53,50,93,44,91,45,56,52,46,55,57,54,51,50,55,44,51,55,46,57,55,48,48,56,56,93,44,91,45,56,52,46,57,51,51,48,56,53,44,51,55,46,57,53,52,49,56,54,93,44,91,45,56,53,46,48,51,48,53,50,56,44,51,55,46,56,57,49,53,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,87,104,101,101,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,54,49,49,53,53,44,52,50,46,48,56,56,53,49,56,93,44,91,45,57,56,46,55,53,57,49,51,51,44,52,49,46,55,52,48,51,56,50,93,44,91,45,57,56,46,55,53,50,50,50,53,44,52,49,46,55,52,48,51,55,50,93,44,91,45,57,56,46,50,57,53,55,54,44,52,49,46,55,52,49,49,55,56,93,44,91,45,57,56,46,50,57,53,54,48,50,44,52,49,46,57,49,52,57,53,52,93,44,91,45,57,56,46,51,48,48,53,57,50,44,52,50,46,48,56,56,56,53,51,93,44,91,45,57,56,46,55,54,49,49,53,53,44,52,50,46,48,56,56,53,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,54,55,54,49,51,44,51,56,46,54,49,56,52,50,93,44,91,45,56,51,46,53,50,48,55,53,53,44,51,56,46,55,48,51,48,57,52,93,44,91,45,56,51,46,54,52,52,57,49,51,44,51,56,46,54,51,54,51,52,51,93,44,91,45,56,51,46,54,52,49,56,53,50,44,51,56,46,53,50,53,51,56,49,93,44,91,45,56,51,46,53,56,48,53,54,54,44,51,56,46,52,51,48,49,54,57,93,44,91,45,56,51,46,52,53,50,56,52,56,44,51,56,46,51,56,49,55,57,57,93,44,91,45,56,51,46,51,52,49,51,52,55,44,51,56,46,51,49,57,53,50,49,93,44,91,45,56,51,46,50,51,50,56,57,53,44,51,56,46,51,51,56,55,56,54,93,44,91,45,56,51,46,49,54,54,52,49,57,44,51,56,46,53,48,51,57,54,53,93,44,91,45,56,51,46,48,55,51,54,51,51,44,51,56,46,53,57,48,52,51,56,93,44,91,45,56,51,46,48,51,48,56,53,56,44,51,56,46,55,50,53,53,50,52,93,44,91,45,56,51,46,49,51,52,55,53,52,44,51,56,46,54,51,50,48,49,51,93,44,91,45,56,51,46,50,54,55,54,49,51,44,51,56,46,54,49,56,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,51,56,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,54,54,49,52,44,52,54,46,48,50,49,54,49,93,44,91,45,57,54,46,50,53,52,48,50,50,44,52,53,46,55,53,57,56,50,93,44,91,45,57,53,46,55,53,56,53,48,56,44,52,53,46,55,53,57,57,51,50,93,44,91,45,57,53,46,55,54,57,55,53,44,52,54,46,49,48,55,52,53,93,44,91,45,57,54,46,50,54,53,51,54,54,44,52,54,46,49,48,56,54,49,93,44,91,45,57,54,46,50,54,54,49,52,44,52,54,46,48,50,49,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,72,117,109,112,104,114,101,121,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,53,51,50,51,51,44,51,51,46,51,50,57,52,56,52,93,44,91,45,57,48,46,53,53,53,50,49,49,44,51,51,46,50,55,48,53,51,51,93,44,91,45,57,48,46,55,49,54,50,55,55,44,51,51,46,50,55,48,48,51,50,93,44,91,45,57,48,46,55,48,49,56,52,53,44,51,51,46,48,57,54,50,57,52,93,44,91,45,57,48,46,54,53,54,54,51,50,44,51,50,46,57,50,50,53,49,93,44,91,45,57,48,46,52,52,57,56,57,51,44,51,50,46,57,50,51,50,57,93,44,91,45,57,48,46,51,54,52,48,51,49,44,51,51,46,48,49,48,53,57,54,93,44,91,45,57,48,46,52,50,56,55,55,52,44,51,51,46,49,48,55,57,51,50,93,44,91,45,57,48,46,51,51,48,51,49,50,44,51,51,46,49,51,55,56,49,56,93,44,91,45,57,48,46,51,51,49,53,56,57,44,51,51,46,51,48,50,56,50,53,93,44,91,45,57,48,46,52,53,51,50,51,51,44,51,51,46,51,50,57,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,51,56,55,44,34,98,101,100,115,34,58,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,56,56,50,56,56,44,51,49,46,54,57,57,51,48,51,93,44,91,45,56,56,46,48,55,50,50,51,52,44,51,49,46,53,57,52,53,93,44,91,45,56,55,46,57,48,55,51,57,57,44,51,49,46,52,57,52,52,51,56,93,44,91,45,56,55,46,56,56,56,56,53,55,44,51,49,46,51,54,52,48,50,51,93,44,91,45,56,55,46,57,53,48,55,57,53,44,51,49,46,50,57,57,52,54,51,93,44,91,45,56,55,46,57,52,54,53,56,56,44,51,49,46,49,57,50,57,51,93,44,91,45,56,55,46,56,55,51,56,56,55,44,51,49,46,50,48,49,52,57,54,93,44,91,45,56,55,46,55,54,53,49,53,50,44,51,49,46,50,57,55,51,52,54,93,44,91,45,56,55,46,55,48,54,48,52,53,44,51,49,46,52,48,48,57,53,55,93,44,91,45,56,55,46,54,48,51,49,51,55,44,51,49,46,52,48,57,53,53,54,93,44,91,45,56,55,46,53,54,53,55,48,56,44,51,49,46,52,56,49,54,56,51,93,44,91,45,56,55,46,53,54,54,56,52,49,44,51,49,46,54,57,55,49,49,53,93,44,91,45,56,55,46,53,48,48,57,51,44,51,49,46,56,50,57,50,53,49,93,44,91,45,56,55,46,54,50,48,49,49,50,44,51,49,46,56,50,55,49,50,51,93,44,91,45,56,55,46,54,54,55,55,54,57,44,51,49,46,57,57,49,51,53,53,93,44,91,45,56,56,46,48,55,51,52,57,44,51,49,46,57,57,48,49,56,50,93,44,91,45,56,56,46,49,56,48,51,56,52,44,51,49,46,56,49,52,53,52,54,93,44,91,45,56,56,46,48,56,56,50,56,56,44,51,49,46,54,57,57,51,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,97,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,53,51,55,56,44,51,56,46,53,50,49,54,53,55,93,44,91,45,57,54,46,56,49,57,53,48,57,44,51,56,46,53,50,50,52,52,57,93,44,91,45,57,54,46,56,52,48,55,55,50,44,51,56,46,48,56,53,54,50,50,93,44,91,45,57,54,46,53,50,50,55,56,50,44,51,56,46,48,56,54,51,55,93,44,91,45,57,54,46,51,53,56,48,57,57,44,51,56,46,48,56,53,56,49,55,93,44,91,45,57,54,46,51,53,55,50,55,55,44,51,56,46,49,55,50,54,54,93,44,91,45,57,54,46,51,53,51,55,56,44,51,56,46,53,50,49,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,49,34,44,34,78,65,77,69,34,58,34,84,114,105,103,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,56,55,54,57,57,54,44,51,54,46,57,54,48,49,49,54,93,44,91,45,56,56,46,49,53,55,51,52,55,44,51,54,46,56,54,55,49,56,51,93,44,91,45,56,56,46,49,49,48,56,51,49,44,51,54,46,55,52,55,49,53,93,44,91,45,56,56,46,48,55,48,53,52,49,44,51,54,46,54,55,56,50,53,53,93,44,91,45,56,55,46,54,57,52,49,57,50,44,51,54,46,54,51,55,49,48,56,93,44,91,45,56,55,46,54,53,57,55,50,52,44,51,54,46,57,54,54,51,57,55,93,44,91,45,56,55,46,55,51,51,51,54,56,44,51,55,46,48,48,50,49,48,51,93,44,91,45,56,55,46,56,55,54,57,57,54,44,51,54,46,57,54,48,49,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,111,117,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,51,53,50,44,34,98,101,100,115,34,58,56,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,56,55,54,53,49,44,51,49,46,51,48,56,54,55,55,93,44,91,45,56,53,46,52,49,55,52,51,52,44,51,49,46,51,49,52,57,55,51,93,44,91,45,56,53,46,52,56,53,56,53,52,44,51,49,46,50,52,54,48,57,54,93,44,91,45,56,53,46,54,54,53,55,55,53,44,51,49,46,50,54,55,53,57,49,93,44,91,45,56,53,46,55,49,48,51,51,51,44,51,49,46,49,57,53,49,55,51,93,44,91,45,56,53,46,52,56,53,55,54,44,51,49,46,49,57,57,56,56,54,93,44,91,45,56,53,46,52,56,56,50,57,56,44,51,48,46,57,57,55,48,54,52,93,44,91,45,56,53,46,48,48,50,52,57,57,44,51,49,46,48,48,48,54,56,53,93,44,91,45,56,53,46,48,50,56,53,54,52,44,51,49,46,48,55,53,53,50,51,93,44,91,45,56,53,46,48,57,57,54,52,55,44,51,49,46,49,54,52,57,52,50,93,44,91,45,56,53,46,48,56,55,54,53,49,44,51,49,46,51,48,56,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,117,114,111,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,55,55,55,49,44,52,51,46,57,51,53,50,50,51,93,44,91,45,57,56,46,55,57,52,53,56,56,44,52,51,46,52,57,57,49,56,55,93,44,91,45,57,56,46,55,48,53,55,56,50,44,52,51,46,52,57,57,51,49,57,93,44,91,45,57,56,46,51,50,48,53,57,53,44,52,51,46,52,57,56,54,53,49,93,44,91,45,57,56,46,51,50,53,50,52,50,44,52,51,46,56,53,49,48,53,56,93,44,91,45,57,56,46,51,51,49,53,48,56,44,52,51,46,57,51,55,55,48,56,93,44,91,45,57,56,46,56,48,55,55,55,49,44,52,51,46,57,51,53,50,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,65,108,101,117,116,105,97,110,115,32,69,97,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,50,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,56,46,56,57,51,53,56,53,44,53,54,46,57,52,53,48,53,57,93,44,91,45,49,53,57,46,49,55,51,57,49,52,44,53,54,46,56,49,52,52,53,93,44,91,45,49,53,57,46,57,48,53,49,51,57,44,53,54,46,53,55,56,49,55,53,93,44,91,45,49,54,48,46,50,50,53,52,49,54,44,53,54,46,52,51,51,54,93,44,91,45,49,54,48,46,52,49,51,49,53,55,44,53,54,46,51,50,49,55,51,52,93,44,91,45,49,54,48,46,54,49,54,48,51,53,44,53,54,46,48,54,55,52,50,49,93,44,91,45,49,54,49,46,50,49,49,49,48,56,44,53,54,46,48,54,55,52,49,93,44,91,45,49,54,49,46,56,50,53,55,53,44,53,53,46,57,52,50,54,53,53,93,44,91,45,49,54,50,46,50,56,57,55,57,49,44,53,53,46,55,50,52,56,54,54,93,44,91,45,49,54,50,46,53,52,55,50,50,56,44,53,53,46,53,50,56,55,52,53,93,44,91,45,49,54,50,46,57,51,53,49,54,49,44,53,53,46,51,56,50,48,53,49,93,44,91,45,49,54,51,46,49,53,48,52,53,53,44,53,53,46,50,50,57,53,48,53,93,44,91,45,49,54,51,46,54,51,48,54,57,50,44,53,53,46,48,57,51,50,50,57,93,44,91,45,49,54,51,46,57,53,48,49,55,54,44,53,53,46,48,55,56,56,49,50,93,44,91,45,49,54,52,46,51,48,55,53,50,53,44,53,52,46,57,53,49,52,53,56,93,44,91,45,49,54,52,46,52,49,56,49,53,49,44,53,52,46,57,55,57,53,53,56,93,44,91,45,49,54,52,46,54,49,52,50,53,53,44,53,52,46,57,50,51,56,55,55,93,44,91,45,49,54,52,46,55,56,50,55,56,44,53,52,46,54,57,49,55,48,50,93,44,91,45,49,54,52,46,57,57,57,52,56,50,44,53,52,46,54,50,54,50,52,57,93,44,91,45,49,54,52,46,57,57,53,54,51,44,53,52,46,52,53,55,51,48,57,93,44,91,45,49,54,52,46,57,48,49,50,57,55,44,53,52,46,51,55,52,54,53,49,93,44,91,45,49,54,52,46,54,49,55,49,48,57,44,53,52,46,51,51,56,56,55,52,93,44,91,45,49,54,52,46,52,49,52,57,56,55,44,53,52,46,51,54,56,56,50,51,93,44,91,45,49,54,52,46,49,50,50,54,55,49,44,53,52,46,53,53,54,49,49,57,93,44,91,45,49,54,51,46,55,49,50,55,57,55,44,53,52,46,53,55,48,49,57,49,93,44,91,45,49,54,51,46,53,57,51,53,54,51,44,53,52,46,53,52,49,49,52,93,44,91,45,49,54,51,46,52,49,51,57,51,56,44,53,52,46,54,48,48,51,55,56,93,44,91,45,49,54,51,46,48,53,57,49,52,49,44,53,52,46,54,48,54,50,48,51,93,44,91,45,49,54,50,46,57,54,56,54,48,54,44,53,52,46,55,48,56,55,48,50,93,44,91,45,49,54,51,46,49,48,52,57,51,53,44,53,52,46,56,48,57,51,56,53,93,44,91,45,49,54,50,46,56,57,51,57,48,51,44,53,52,46,56,52,52,50,51,56,93,44,91,45,49,54,50,46,54,53,49,49,48,53,44,53,52,46,57,50,50,49,53,55,93,44,91,45,49,54,50,46,53,53,52,57,51,49,44,53,52,46,55,52,57,51,52,52,93,44,91,45,49,54,50,46,52,53,57,56,55,55,44,53,52,46,54,54,54,53,50,52,93,44,91,45,49,54,50,46,52,55,57,56,49,53,44,53,52,46,53,52,48,57,51,50,93,44,91,45,49,54,50,46,51,54,53,48,51,53,44,53,52,46,53,48,55,54,57,51,93,44,91,45,49,54,50,46,50,51,57,52,51,44,53,52,46,54,51,56,55,48,56,93,44,91,45,49,54,50,46,49,48,52,56,52,54,44,53,52,46,54,49,56,50,56,54,93,44,91,45,49,54,49,46,57,54,54,56,52,52,44,53,52,46,55,49,52,56,48,50,93,44,91,45,49,54,49,46,56,52,49,48,49,54,44,53,52,46,54,56,52,53,49,54,93,44,91,45,49,54,49,46,53,54,52,55,52,52,44,53,52,46,55,57,55,49,57,55,93,44,91,45,49,54,49,46,54,53,57,52,56,49,44,53,52,46,57,53,54,51,56,51,93,44,91,45,49,54,49,46,52,55,48,48,56,54,44,53,52,46,57,52,57,55,50,57,93,44,91,45,49,54,48,46,57,53,51,52,50,52,44,53,53,46,51,50,53,51,54,55,93,44,91,45,49,54,48,46,56,57,57,54,55,54,44,53,53,46,48,57,53,51,53,93,44,91,45,49,54,48,46,53,57,56,54,57,49,44,53,53,46,48,57,52,48,53,54,93,44,91,45,49,54,48,46,53,49,57,52,54,57,44,53,53,46,48,50,53,49,50,51,93,44,91,45,49,54,48,46,51,53,51,54,44,53,53,46,49,57,51,54,53,53,93,44,91,45,49,54,48,46,50,54,49,57,49,57,44,53,53,46,48,51,53,50,48,49,93,44,91,45,49,54,48,46,51,52,51,51,57,51,44,53,52,46,57,51,48,56,56,49,93,44,91,45,49,54,48,46,51,48,50,56,49,50,44,53,52,46,56,50,57,55,52,54,93,44,91,45,49,54,48,46,48,57,56,48,50,51,44,53,52,46,56,56,53,52,49,54,93,44,91,45,49,53,57,46,56,52,54,48,57,57,44,53,52,46,57,48,50,52,51,53,93,44,91,45,49,53,57,46,55,51,52,55,51,53,44,53,52,46,57,57,48,50,52,53,93,44,91,45,49,53,57,46,53,56,48,51,52,49,44,53,52,46,57,56,55,53,57,56,93,44,91,45,49,53,57,46,51,54,50,50,57,55,44,53,52,46,56,50,56,51,49,53,93,44,91,45,49,53,57,46,50,48,49,53,49,53,44,53,52,46,56,51,51,54,55,50,93,44,91,45,49,53,57,46,49,49,49,55,57,49,44,53,52,46,57,49,53,54,57,93,44,91,45,49,53,57,46,50,53,49,53,49,52,44,53,53,46,48,48,54,54,57,57,93,44,91,45,49,53,57,46,50,53,50,56,51,52,44,53,53,46,49,48,54,49,55,49,93,44,91,45,49,53,57,46,52,49,48,56,56,54,44,53,53,46,49,50,51,52,57,54,93,44,91,45,49,53,57,46,51,57,56,48,54,51,44,53,53,46,50,57,51,51,55,93,44,91,45,49,53,57,46,53,52,52,51,51,53,44,53,53,46,51,50,56,52,48,55,93,44,91,45,49,53,57,46,54,54,48,50,48,54,44,53,53,46,50,52,50,57,49,93,44,91,45,49,54,48,46,48,52,49,49,54,50,44,53,53,46,52,52,56,56,55,57,93,44,91,45,49,53,57,46,57,53,49,49,51,56,44,53,53,46,53,48,55,53,56,51,93,44,91,45,49,53,57,46,53,51,56,49,53,51,44,53,53,46,53,51,50,48,48,54,93,44,91,45,49,53,57,46,52,52,54,56,54,56,44,53,53,46,54,51,56,53,51,49,93,44,91,45,49,53,57,46,53,54,49,52,53,49,44,53,53,46,54,51,56,52,52,51,93,44,91,45,49,53,57,46,53,54,49,51,54,44,53,53,46,56,56,55,49,57,55,93,44,91,45,49,53,57,46,56,54,55,57,55,49,44,53,53,46,56,56,55,49,57,51,93,44,91,45,49,53,57,46,56,48,54,52,48,54,44,53,53,46,57,55,51,57,49,57,93,44,91,45,49,53,57,46,56,48,54,51,56,57,44,53,54,46,51,50,48,56,48,53,93,44,91,45,49,53,57,46,57,48,48,49,51,51,44,53,54,46,51,50,48,56,48,51,93,44,91,45,49,53,57,46,57,48,48,49,52,57,44,53,54,46,52,57,52,50,51,57,93,44,91,45,49,53,57,46,53,56,56,48,51,54,44,53,54,46,52,57,52,50,52,53,93,44,91,45,49,53,57,46,53,56,56,48,52,49,44,53,54,46,53,56,48,57,54,49,93,44,91,45,49,53,57,46,50,55,53,57,50,56,44,53,54,46,53,56,48,57,54,55,93,44,91,45,49,53,57,46,50,55,53,57,51,50,44,53,54,46,54,54,55,54,56,50,93,44,91,45,49,53,57,46,48,53,49,48,56,57,44,53,54,46,54,54,55,54,56,55,93,44,91,45,49,53,56,46,56,57,51,54,48,55,44,53,54,46,55,53,52,52,48,52,93,44,91,45,49,53,56,46,56,57,51,53,56,53,44,53,54,46,57,52,53,48,53,57,93,93,93,44,91,91,91,45,49,54,54,46,50,50,53,54,52,55,44,53,52,46,48,52,49,57,57,51,93,44,91,45,49,54,54,46,50,50,53,54,52,49,44,53,51,46,57,54,48,50,48,54,93,44,91,45,49,54,53,46,57,54,49,48,56,54,44,53,51,46,57,49,54,50,52,51,93,44,91,45,49,54,53,46,55,56,56,57,54,54,44,53,52,46,48,49,54,50,51,54,93,44,91,45,49,54,53,46,54,53,55,49,55,51,44,53,52,46,48,51,54,51,51,54,93,44,91,45,49,54,53,46,53,49,57,55,54,55,44,53,51,46,57,55,50,48,54,93,44,91,45,49,54,53,46,51,56,48,57,54,53,44,53,52,46,48,49,54,52,51,54,93,44,91,45,49,54,52,46,56,56,49,48,52,56,44,53,52,46,48,52,51,52,50,57,93,44,91,45,49,54,52,46,55,49,52,52,56,53,44,53,52,46,49,54,54,49,49,55,93,44,91,45,49,54,52,46,56,48,53,51,54,57,44,53,52,46,50,56,50,51,57,50,93,44,91,45,49,54,53,46,48,54,54,56,55,49,44,53,52,46,49,56,48,48,56,54,93,44,91,45,49,54,53,46,51,52,53,49,55,55,44,53,52,46,50,53,49,48,51,51,93,44,91,45,49,54,53,46,52,54,50,52,57,51,44,53,52,46,51,52,54,56,50,50,93,44,91,45,49,54,53,46,54,53,53,53,53,44,53,52,46,51,52,55,48,53,49,93,44,91,45,49,54,53,46,55,56,57,49,52,55,44,53,52,46,50,51,57,49,51,56,93,44,91,45,49,54,53,46,57,51,55,50,50,44,53,52,46,50,55,54,57,56,53,93,44,91,45,49,54,54,46,49,54,53,49,49,55,44,53,52,46,49,57,53,48,56,56,93,44,91,45,49,54,54,46,50,50,53,54,52,55,44,53,52,46,48,52,49,57,57,51,93,93,93,44,91,91,91,45,49,54,51,46,48,49,51,54,57,52,44,53,52,46,51,56,53,48,56,55,93,44,91,45,49,54,50,46,55,48,48,48,56,52,44,53,52,46,50,51,55,57,54,57,93,44,91,45,49,54,50,46,50,56,50,50,48,51,44,53,52,46,51,51,48,57,54,53,93,44,91,45,49,54,50,46,51,53,52,51,53,50,44,53,52,46,52,53,54,54,57,49,93,44,91,45,49,54,50,46,56,56,48,55,48,54,44,53,52,46,53,53,51,50,49,51,93,44,91,45,49,54,51,46,48,49,51,54,57,52,44,53,52,46,51,56,53,48,56,55,93,93,93,44,91,91,91,45,49,53,57,46,57,49,48,51,51,53,44,53,52,46,56,49,52,49,54,56,93,44,91,45,49,53,57,46,56,53,53,50,49,55,44,53,52,46,55,53,55,55,48,52,93,44,91,45,49,53,57,46,53,52,55,56,55,50,44,53,52,46,54,57,57,50,57,54,93,44,91,45,49,53,57,46,52,49,54,55,55,50,44,53,52,46,55,57,50,49,57,55,93,44,91,45,49,53,57,46,53,53,54,49,49,54,44,53,52,46,56,56,48,50,54,50,93,44,91,45,49,53,57,46,55,54,49,48,53,49,44,53,52,46,56,57,49,51,50,52,93,44,91,45,49,53,57,46,57,49,48,51,51,53,44,53,52,46,56,49,52,49,54,56,93,93,93,44,91,91,91,45,49,54,51,46,50,55,48,56,56,55,44,53,53,46,52,51,49,55,49,56,93,44,91,45,49,54,51,46,50,51,53,51,54,50,44,53,53,46,51,54,54,49,49,50,93,44,91,45,49,54,51,46,48,50,55,57,51,56,44,53,53,46,52,50,48,56,51,93,44,91,45,49,54,51,46,49,51,54,53,51,52,44,53,53,46,53,50,53,48,50,52,93,44,91,45,49,54,51,46,50,55,48,56,56,55,44,53,53,46,52,51,49,55,49,56,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,54,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,44,91,45,57,57,46,49,55,57,49,51,52,44,52,48,46,48,48,50,48,49,51,93,44,91,45,57,57,46,48,54,55,48,52,54,44,52,48,46,48,48,50,51,52,56,93,44,91,45,57,56,46,55,50,54,51,55,51,44,52,48,46,48,48,50,52,93,44,91,45,57,56,46,55,50,54,56,50,55,44,52,48,46,51,53,48,51,57,56,93,44,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,57,51,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,48,55,57,57,50,53,44,51,57,46,52,48,53,53,48,54,93,44,91,45,55,54,46,50,56,55,54,56,57,44,51,57,46,50,53,52,49,48,52,93,44,91,45,55,54,46,51,52,57,52,55,57,44,51,57,46,49,53,54,54,50,51,93,44,91,45,55,54,46,51,53,49,55,51,44,51,57,46,48,53,54,50,51,50,93,44,91,45,55,54,46,50,53,55,57,57,53,44,51,57,46,48,49,49,56,49,56,93,44,91,45,55,54,46,49,49,55,48,53,56,44,51,57,46,49,48,55,48,57,56,93,44,91,45,55,54,46,48,49,48,50,57,50,44,51,57,46,50,51,57,53,49,55,93,44,91,45,55,53,46,55,53,54,48,48,52,44,51,57,46,50,52,54,48,54,54,93,44,91,45,55,53,46,55,54,48,48,55,52,44,51,57,46,50,57,54,56,49,57,93,44,91,45,55,53,46,55,54,54,53,57,52,44,51,57,46,51,55,55,53,54,51,93,44,91,45,55,53,46,57,48,56,48,51,53,44,51,57,46,51,54,52,53,48,49,93,44,91,45,55,54,46,48,55,57,57,50,53,44,51,57,46,52,48,53,53,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,49,48,56,44,34,98,101,100,115,34,58,49,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,56,56,48,49,50,44,51,55,46,54,55,52,53,49,57,93,44,91,45,57,53,46,48,56,56,49,56,57,44,51,55,46,51,56,51,56,51,55,93,44,91,45,57,53,46,48,55,53,49,54,54,44,51,55,46,51,51,57,57,51,55,93,44,91,45,57,52,46,54,49,55,55,50,50,44,51,55,46,51,51,56,52,49,56,93,44,91,45,57,52,46,54,49,55,53,55,44,51,55,46,51,54,52,49,55,93,44,91,45,57,52,46,54,49,55,54,57,56,44,51,55,46,54,53,51,53,55,56,93,44,91,45,57,52,46,54,49,55,55,55,57,44,51,55,46,54,55,51,49,48,53,93,44,91,45,57,53,46,48,56,56,48,49,50,44,51,55,46,54,55,52,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,105,112,112,101,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,49,48,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,51,54,54,57,56,44,52,53,46,49,53,50,50,48,54,93,44,91,45,57,53,46,55,51,54,54,57,54,44,52,52,46,57,51,54,48,52,93,44,91,45,57,53,46,52,56,50,56,52,51,44,52,52,46,55,53,50,53,48,53,93,44,91,45,57,53,46,52,56,50,56,56,57,44,52,52,46,56,57,48,55,49,50,93,44,91,45,57,53,46,50,52,56,53,50,44,52,52,46,56,57,49,51,49,93,44,91,45,57,53,46,50,52,54,52,56,57,44,52,53,46,49,53,50,52,51,49,93,44,91,45,57,54,46,48,51,54,54,57,56,44,52,53,46,49,53,50,50,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,80,101,110,110,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,50,57,52,44,34,98,101,100,115,34,58,52,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,48,49,48,54,56,44,52,52,46,53,49,48,57,50,54,93,44,91,45,49,48,50,46,49,49,50,53,51,53,44,52,52,46,52,51,53,56,56,54,93,44,91,45,49,48,50,46,50,56,52,52,48,52,44,52,52,46,52,52,49,50,51,50,93,44,91,45,49,48,50,46,51,52,49,54,51,53,44,52,52,46,51,52,56,55,55,50,93,44,91,45,49,48,50,46,51,56,56,48,52,53,44,52,52,46,49,52,48,49,56,51,93,44,91,45,49,48,51,46,52,53,50,52,53,51,44,52,52,46,49,52,48,55,55,50,93,44,91,45,49,48,52,46,48,53,52,53,56,56,44,52,52,46,49,52,49,48,56,49,93,44,91,45,49,48,52,46,48,53,53,52,56,55,44,52,51,46,56,53,51,52,55,54,93,44,91,45,49,48,50,46,54,56,55,49,57,49,44,52,51,46,56,53,53,53,57,57,93,44,91,45,49,48,50,46,56,48,57,51,57,56,44,52,51,46,54,56,55,53,54,93,44,91,45,49,48,50,46,49,55,53,50,51,49,44,52,51,46,54,56,55,55,53,54,93,44,91,45,49,48,50,46,49,51,57,49,53,56,44,52,51,46,55,48,48,57,52,56,93,44,91,45,49,48,50,46,48,49,56,56,56,55,44,52,51,46,55,48,56,54,49,56,93,44,91,45,49,48,50,46,48,48,55,51,51,54,44,52,51,46,57,57,52,53,51,93,44,91,45,49,48,50,46,48,48,49,48,54,56,44,52,52,46,53,49,48,57,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,72,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,56,48,55,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,44,91,45,56,49,46,50,49,57,53,54,51,44,51,50,46,57,53,51,51,53,93,44,91,45,56,49,46,50,54,49,54,54,50,44,51,50,46,56,51,57,49,51,57,93,44,91,45,56,49,46,52,48,53,48,53,52,44,51,50,46,55,52,52,57,53,55,93,44,91,45,56,49,46,51,56,57,50,48,53,44,51,50,46,53,57,53,52,49,54,93,44,91,45,56,49,46,50,56,49,50,55,44,51,50,46,53,53,54,52,55,49,93,44,91,45,56,49,46,48,49,56,52,57,53,44,51,50,46,55,53,48,49,55,50,93,44,91,45,56,48,46,56,54,57,55,48,53,44,51,50,46,54,54,48,57,51,53,93,44,91,45,56,48,46,56,50,54,51,48,57,44,51,50,46,55,48,52,51,50,49,93,44,91,45,56,48,46,57,48,48,49,57,54,44,51,50,46,56,51,50,56,49,51,93,44,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,70,114,101,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,57,55,54,56,52,57,44,52,51,46,57,50,55,51,56,53,93,44,91,45,49,49,49,46,53,53,56,56,51,51,44,52,51,46,56,56,51,51,48,53,93,44,91,45,49,49,49,46,51,57,56,55,56,49,44,52,51,46,57,50,50,56,57,93,44,91,45,49,49,49,46,49,56,55,50,53,54,44,52,51,46,57,51,50,49,49,52,93,44,91,45,49,49,49,46,48,52,55,49,53,55,44,52,51,46,57,56,51,52,53,57,93,44,91,45,49,49,49,46,48,53,50,52,51,52,44,52,52,46,52,55,56,52,49,49,93,44,91,45,49,49,49,46,49,51,48,54,53,57,44,52,52,46,53,48,48,49,51,49,93,44,91,45,49,49,49,46,50,49,57,51,49,57,44,52,52,46,54,50,50,53,50,49,93,44,91,45,49,49,49,46,51,55,55,48,49,53,44,52,52,46,55,53,49,52,52,51,93,44,91,45,49,49,49,46,52,55,52,57,54,51,44,52,52,46,55,48,56,55,55,51,93,44,91,45,49,49,49,46,53,50,53,54,49,44,52,52,46,54,48,52,55,52,93,44,91,45,49,49,49,46,54,49,55,51,52,53,44,52,52,46,53,53,48,51,57,50,93,44,91,45,49,49,49,46,54,49,55,52,51,55,44,52,52,46,52,48,49,50,53,52,93,44,91,45,49,49,49,46,55,57,49,54,50,52,44,52,52,46,52,48,49,54,49,93,44,91,45,49,49,49,46,56,53,50,50,55,54,44,52,52,46,51,49,54,57,57,54,93,44,91,45,49,49,49,46,56,53,55,56,53,49,44,52,52,46,49,56,55,55,53,57,93,44,91,45,49,49,50,46,48,51,51,54,54,52,44,52,52,46,49,52,52,48,52,57,93,44,91,45,49,49,50,46,49,53,53,57,51,53,44,52,52,46,48,53,55,55,56,93,44,91,45,49,49,50,46,49,53,54,51,55,44,52,51,46,57,55,49,50,52,55,93,44,91,45,49,49,49,46,57,55,54,56,52,57,44,52,51,46,57,50,55,51,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,66,114,121,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,56,56,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,56,48,56,53,56,44,51,50,46,49,53,50,56,57,93,44,91,45,56,49,46,55,49,56,54,53,56,44,51,50,46,48,56,57,51,53,49,93,44,91,45,56,49,46,53,57,50,51,57,49,44,51,49,46,57,55,50,52,54,57,93,44,91,45,56,49,46,52,48,52,51,56,56,44,51,49,46,57,49,57,55,48,49,93,44,91,45,56,49,46,51,55,54,57,53,52,44,51,49,46,56,52,56,50,53,55,93,44,91,45,56,49,46,49,53,52,55,51,49,44,51,49,46,55,49,51,48,55,93,44,91,45,56,49,46,50,49,50,51,48,57,44,51,49,46,57,49,56,51,53,56,93,44,91,45,56,49,46,51,57,49,54,57,56,44,51,50,46,48,57,53,56,56,54,93,44,91,45,56,49,46,52,51,53,56,51,44,51,50,46,50,52,49,50,56,57,93,44,91,45,56,49,46,55,56,48,56,53,56,44,51,50,46,49,53,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,68,105,110,119,105,100,100,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,48,56,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,52,55,52,48,56,44,51,55,46,50,50,51,48,54,54,93,44,91,45,55,55,46,54,53,48,54,49,44,51,55,46,50,54,53,49,49,50,93,44,91,45,55,55,46,55,57,53,57,50,54,44,51,55,46,49,57,50,53,57,50,93,44,91,45,55,55,46,57,48,48,51,51,56,44,51,55,46,49,52,51,56,56,50,93,44,91,45,55,55,46,56,56,57,56,49,51,44,51,54,46,57,56,56,56,49,56,93,44,91,45,55,55,46,55,54,53,53,52,44,51,54,46,57,55,52,54,53,53,93,44,91,45,55,55,46,54,53,56,48,51,54,44,51,54,46,56,57,52,53,49,52,93,44,91,45,55,55,46,54,49,57,48,50,57,44,51,54,46,56,55,55,56,52,52,93,44,91,45,55,55,46,51,57,56,52,57,56,44,51,54,46,57,57,50,57,56,53,93,44,91,45,55,55,46,51,57,57,50,48,51,44,51,55,46,49,55,48,56,53,93,44,91,45,55,55,46,52,52,55,52,48,56,44,51,55,46,50,50,51,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,117,99,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,53,57,49,44,34,98,101,100,115,34,58,56,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,55,55,56,54,50,44,50,55,46,50,48,53,57,56,56,93,44,91,45,56,48,46,50,56,53,53,49,44,50,55,46,50,48,54,48,50,53,93,44,91,45,56,48,46,49,51,56,48,52,57,44,50,55,46,50,54,50,56,55,57,93,44,91,45,56,48,46,50,54,51,53,52,51,44,50,55,46,53,53,54,55,56,50,93,44,91,45,56,48,46,54,55,57,56,50,49,44,50,55,46,53,53,56,52,55,93,44,91,45,56,48,46,54,55,55,56,54,50,44,50,55,46,50,48,53,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,52,50,52,56,44,34,98,101,100,115,34,58,50,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,57,57,51,57,56,50,44,52,51,46,54,51,49,50,51,52,93,44,91,45,55,55,46,57,57,55,50,57,44,52,51,46,49,51,50,57,56,49,93,44,91,45,55,55,46,57,48,57,56,51,50,44,52,50,46,57,56,55,55,54,50,93,44,91,45,55,55,46,55,51,48,57,53,55,44,52,50,46,57,56,56,51,55,50,93,44,91,45,55,55,46,53,56,48,51,55,55,44,52,50,46,57,52,51,57,54,51,93,44,91,45,55,55,46,52,56,53,52,49,56,44,52,51,46,48,51,52,53,54,52,93,44,91,45,55,55,46,51,55,49,52,55,56,44,52,51,46,48,51,52,54,57,54,93,44,91,45,55,55,46,51,56,55,57,57,53,44,52,51,46,54,51,49,53,52,51,93,44,91,45,55,55,46,57,57,51,57,56,50,44,52,51,46,54,51,49,50,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,57,49,52,44,34,98,101,100,115,34,58,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,50,52,56,52,49,44,52,51,46,53,48,48,48,48,55,93,44,91,45,57,54,46,57,50,52,49,52,50,44,52,51,46,48,56,51,55,51,51,93,44,91,45,57,54,46,56,48,53,54,56,50,44,52,51,46,48,56,51,54,55,93,44,91,45,57,54,46,52,53,52,49,51,44,52,51,46,48,56,51,51,56,93,44,91,45,57,54,46,52,55,54,55,50,57,44,52,51,46,50,50,49,57,56,55,93,44,91,45,57,54,46,53,53,52,57,54,57,44,52,51,46,50,53,57,57,53,49,93,44,91,45,57,54,46,53,50,49,55,50,44,52,51,46,51,56,54,55,53,53,93,44,91,45,57,54,46,53,57,57,49,57,49,44,52,51,46,53,48,48,52,53,54,93,44,91,45,57,54,46,57,50,52,56,52,49,44,52,51,46,53,48,48,48,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,105,112,112,101,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,54,51,53,44,34,98,101,100,115,34,58,50,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,52,49,51,50,50,44,52,53,46,50,57,50,50,50,93,44,91,45,57,49,46,54,54,53,54,52,55,44,52,53,46,50,48,55,57,57,49,93,44,91,45,57,49,46,54,53,48,52,53,53,44,52,52,46,56,53,53,57,53,49,93,44,91,45,57,48,46,57,50,50,50,52,55,44,52,52,46,56,53,55,51,48,57,93,44,91,45,57,48,46,57,50,51,51,54,50,44,52,53,46,48,51,49,49,52,51,93,44,91,45,57,48,46,57,50,53,50,50,50,44,52,53,46,50,57,50,48,54,49,93,44,91,45,57,49,46,53,52,49,51,50,50,44,52,53,46,50,57,50,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,55,34,44,34,78,65,77,69,34,58,34,87,111,111,100,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,55,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,53,57,48,52,54,44,51,56,46,48,52,48,49,57,53,93,44,91,45,57,53,46,57,54,48,56,55,54,44,51,55,46,55,51,52,51,48,52,93,44,91,45,57,53,46,53,50,53,52,57,57,44,51,55,46,55,51,50,55,53,57,93,44,91,45,57,53,46,53,49,56,57,55,44,51,56,46,48,51,56,50,51,93,44,91,45,57,53,46,57,53,57,48,52,54,44,51,56,46,48,52,48,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,49,54,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,56,50,57,53,55,44,51,55,46,48,50,50,53,54,54,93,44,91,45,56,56,46,52,56,52,49,48,51,44,51,54,46,57,52,50,48,57,54,93,44,91,45,56,56,46,52,56,53,54,57,55,44,51,54,46,55,53,48,51,50,56,93,44,91,45,56,56,46,49,49,48,56,51,49,44,51,54,46,55,52,55,49,53,93,44,91,45,56,56,46,49,53,55,51,52,55,44,51,54,46,56,54,55,49,56,51,93,44,91,45,56,56,46,50,52,48,51,55,49,44,51,54,46,57,56,49,57,49,49,93,44,91,45,56,56,46,51,55,48,52,54,51,44,51,55,46,48,54,51,50,55,56,93,44,91,45,56,56,46,52,56,50,57,53,55,44,51,55,46,48,50,50,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,67,108,105,110,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,55,49,50,52,55,44,51,49,46,49,56,51,57,56,56,93,44,91,45,56,50,46,57,55,49,51,51,54,44,51,48,46,56,54,57,51,57,50,93,44,91,45,56,50,46,56,52,54,52,48,53,44,51,48,46,56,51,52,57,52,57,93,44,91,45,56,50,46,55,54,54,49,53,57,44,51,48,46,55,51,50,52,48,52,93,44,91,45,56,50,46,54,48,52,51,48,55,44,51,48,46,55,49,51,55,49,53,93,44,91,45,56,50,46,53,56,52,48,48,55,44,51,48,46,53,57,49,53,52,56,93,44,91,45,56,50,46,52,53,57,55,57,51,44,51,48,46,53,56,52,50,54,55,93,44,91,45,56,50,46,52,49,56,57,49,52,44,51,48,46,53,56,49,55,54,55,93,44,91,45,56,50,46,52,51,53,56,53,50,44,51,48,46,56,50,48,48,54,56,93,44,91,45,56,50,46,52,57,48,53,53,56,44,51,48,46,57,54,51,49,54,54,93,44,91,45,56,50,46,53,57,50,48,55,49,44,51,49,46,48,49,56,52,56,55,93,44,91,45,56,50,46,54,55,49,54,54,57,44,51,49,46,49,56,51,55,51,57,93,44,91,45,56,50,46,57,55,49,50,52,55,44,51,49,46,49,56,51,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,76,111,119,110,100,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,53,56,50,44,34,98,101,100,115,34,58,52,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,57,53,48,53,50,44,51,49,46,48,50,55,50,55,56,93,44,91,45,56,51,46,52,55,53,54,49,55,44,51,49,46,48,51,49,57,54,52,93,44,91,45,56,51,46,51,55,48,56,57,56,44,51,48,46,56,56,52,56,50,56,93,44,91,45,56,51,46,52,56,50,52,54,49,44,51,48,46,55,53,54,57,51,49,93,44,91,45,56,51,46,51,53,55,55,48,51,44,51,48,46,54,51,55,51,54,93,44,91,45,56,51,46,51,52,48,56,53,50,44,51,48,46,54,51,54,51,51,54,93,44,91,45,56,51,46,51,48,57,50,52,57,44,51,48,46,54,51,52,52,48,54,93,44,91,45,56,51,46,49,51,54,54,49,52,44,51,48,46,54,50,51,57,54,55,93,44,91,45,56,51,46,49,50,52,56,54,53,44,51,48,46,56,48,51,54,53,53,93,44,91,45,56,51,46,48,49,57,52,49,57,44,51,48,46,56,52,57,52,53,51,93,44,91,45,56,51,46,48,52,50,57,50,52,44,51,48,46,57,52,55,50,57,54,93,44,91,45,56,51,46,49,55,57,52,54,53,44,51,48,46,57,53,48,49,50,56,93,44,91,45,56,51,46,49,57,55,57,55,49,44,51,49,46,48,50,53,52,48,53,93,44,91,45,56,51,46,50,57,53,48,53,50,44,51,49,46,48,50,55,50,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,75,97,108,97,119,97,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,72,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,55,46,48,49,53,48,53,56,44,50,49,46,50,54,49,49,57,52,93,44,91,45,49,53,55,46,48,49,52,54,49,50,44,50,49,46,49,56,50,51,52,57,93,44,91,45,49,53,54,46,57,49,55,49,44,50,49,46,49,54,51,55,49,93,44,91,45,49,53,54,46,56,55,49,49,57,53,44,50,49,46,50,51,49,56,56,55,93,44,91,45,49,53,55,46,48,49,53,48,53,56,44,50,49,46,50,54,49,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,75,97,117,97,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,72,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,51,55,55,44,34,98,101,100,115,34,58,49,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,57,46,54,49,57,49,57,49,44,50,50,46,50,54,54,56,51,55,93,44,91,45,49,53,57,46,55,53,44,50,50,46,49,57,57,52,52,57,93,44,91,45,49,53,57,46,56,52,56,49,50,52,44,50,50,46,48,55,54,48,55,51,93,44,91,45,49,53,57,46,55,57,51,54,48,49,44,50,49,46,57,51,57,55,56,93,44,91,45,49,53,57,46,54,51,49,50,53,57,44,50,49,46,56,52,54,54,56,56,93,44,91,45,49,53,57,46,52,52,51,57,57,57,44,50,49,46,56,49,55,55,56,57,93,44,91,45,49,53,57,46,50,56,52,51,53,52,44,50,49,46,57,52,48,54,51,55,93,44,91,45,49,53,57,46,50,52,53,55,55,57,44,50,50,46,49,54,54,56,48,56,93,44,91,45,49,53,57,46,51,48,56,55,57,56,44,50,50,46,50,53,93,44,91,45,49,53,57,46,52,48,50,57,50,44,50,50,46,50,57,48,52,55,51,93,44,91,45,49,53,57,46,54,49,57,49,57,49,44,50,50,46,50,54,54,56,51,55,93,93,93,44,91,91,91,45,49,54,48,46,51,48,52,51,54,44,50,49,46,56,53,51,55,57,53,93,44,91,45,49,54,48,46,50,54,53,55,55,56,44,50,49,46,55,52,54,49,56,93,44,91,45,49,54,48,46,49,55,48,51,49,44,50,49,46,55,51,57,53,53,49,93,44,91,45,49,54,48,46,49,50,50,48,49,53,44,50,49,46,56,50,52,57,54,93,44,91,45,49,54,48,46,48,51,49,48,51,50,44,50,49,46,56,54,57,51,54,52,93,44,91,45,49,53,57,46,57,57,55,50,48,53,44,50,49,46,57,57,50,53,49,93,44,91,45,49,54,48,46,48,53,54,55,50,50,44,50,50,46,48,54,56,51,52,53,93,44,91,45,49,54,48,46,49,52,48,52,49,54,44,50,50,46,48,55,51,51,50,50,93,44,91,45,49,54,48,46,49,55,52,48,49,49,44,50,49,46,57,57,49,52,55,57,93,44,91,45,49,54,48,46,50,55,57,57,52,55,44,50,49,46,57,50,48,54,51,56,93,44,91,45,49,54,48,46,51,48,52,51,54,44,50,49,46,56,53,51,55,57,53,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,97,99,111,109,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,56,55,48,52,44,34,98,101,100,115,34,58,49,51,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,50,51,49,55,44,52,50,46,52,55,55,55,55,56,93,44,91,45,56,50,46,55,51,57,48,49,44,52,50,46,56,57,55,53,52,49,93,44,91,45,56,50,46,57,56,51,54,52,55,44,52,50,46,56,57,51,55,52,49,93,44,91,45,56,51,46,49,48,50,56,57,49,44,52,50,46,56,56,56,54,52,55,93,44,91,45,56,51,46,48,56,51,51,57,51,44,52,50,46,52,52,55,49,53,51,93,44,91,45,56,50,46,55,52,57,57,48,56,44,52,50,46,52,53,49,48,57,50,93,44,91,45,56,50,46,55,50,51,49,55,44,52,50,46,52,55,55,55,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,55,34,44,34,78,65,77,69,34,58,34,84,117,114,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,49,50,50,53,54,44,51,49,46,56,53,52,48,56,57,93,44,91,45,56,51,46,54,49,50,54,52,50,44,51,49,46,56,48,52,49,50,56,93,44,91,45,56,51,46,56,48,50,55,50,51,44,51,49,46,56,48,51,53,55,57,93,44,91,45,56,51,46,55,57,54,56,52,54,44,51,49,46,54,50,50,57,50,57,93,44,91,45,56,51,46,54,52,57,51,56,52,44,51,49,46,53,54,55,57,55,55,93,44,91,45,56,51,46,53,48,48,55,48,50,44,51,49,46,53,57,51,57,57,93,44,91,45,56,51,46,52,53,51,54,51,52,44,51,49,46,55,53,55,56,54,49,93,44,91,45,56,51,46,52,56,48,49,55,54,44,51,49,46,56,52,55,51,49,50,93,44,91,45,56,51,46,54,49,50,50,53,54,44,51,49,46,56,53,52,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,54,48,54,53,52,44,51,57,46,49,55,49,49,49,56,93,44,91,45,56,56,46,51,54,49,55,52,53,44,51,56,46,57,49,48,56,52,55,93,44,91,45,56,56,46,50,53,56,53,56,51,44,51,56,46,56,52,55,53,50,57,93,44,91,45,56,55,46,57,52,53,57,49,57,44,51,56,46,56,53,48,49,52,56,93,44,91,45,56,55,46,57,53,48,51,56,53,44,51,57,46,49,55,52,56,56,50,93,44,91,45,56,56,46,48,48,55,55,54,54,44,51,57,46,49,55,51,57,50,53,93,44,91,45,56,56,46,51,54,48,54,53,52,44,51,57,46,49,55,49,49,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,51,49,34,44,34,78,65,77,69,34,58,34,77,105,108,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,54,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,55,48,49,56,56,44,51,48,46,57,56,54,50,50,93,44,91,45,57,55,46,50,53,57,48,56,50,44,51,48,46,56,56,57,53,57,54,93,44,91,45,57,55,46,51,49,53,53,48,55,44,51,48,46,55,53,50,51,55,49,93,44,91,45,57,55,46,50,55,49,52,49,56,44,51,48,46,55,51,53,54,57,50,93,44,91,45,57,55,46,49,53,53,50,49,57,44,51,48,46,52,53,55,51,52,52,93,44,91,45,57,54,46,57,54,51,54,50,57,44,51,48,46,53,53,55,49,54,57,93,44,91,45,57,54,46,54,50,49,50,56,49,44,51,48,46,55,51,48,56,49,57,93,44,91,45,57,54,46,54,52,49,50,56,44,51,48,46,56,49,56,48,53,49,93,44,91,45,57,54,46,55,53,54,51,51,44,51,48,46,57,50,55,50,48,54,93,44,91,45,57,54,46,56,50,57,49,50,49,44,51,49,46,49,48,53,56,55,49,93,44,91,45,57,55,46,48,55,48,49,56,56,44,51,48,46,57,56,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,83,112,101,110,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,49,55,52,57,44,51,56,46,50,48,51,53,56,93,44,91,45,56,55,46,48,49,55,52,53,51,44,51,56,46,49,49,56,51,48,49,93,44,91,45,56,55,46,50,50,53,55,48,49,44,51,55,46,57,55,49,54,54,55,93,44,91,45,56,55,46,50,54,56,57,57,53,44,51,55,46,56,55,56,48,50,54,93,44,91,45,56,55,46,48,54,57,54,55,53,44,51,55,46,56,48,49,53,49,51,93,44,91,45,56,54,46,57,55,56,56,51,55,44,51,55,46,57,51,48,50,52,52,93,44,91,45,56,54,46,56,49,52,55,52,52,44,51,55,46,57,57,56,55,48,52,93,44,91,45,56,54,46,55,54,55,51,53,50,44,51,56,46,48,53,54,57,50,52,93,44,91,45,56,54,46,55,57,49,52,57,55,44,51,56,46,50,48,53,49,51,93,44,91,45,56,55,46,48,49,55,52,57,44,51,56,46,50,48,51,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,72,97,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,52,55,53,57,56,44,51,55,46,52,52,57,57,51,51,93,44,91,45,56,54,46,48,55,51,54,50,54,44,51,55,46,51,52,56,48,52,53,93,44,91,45,56,54,46,49,53,55,53,56,57,44,51,55,46,51,51,53,54,52,57,93,44,91,45,56,54,46,48,53,54,52,52,51,44,51,55,46,49,54,55,50,48,56,93,44,91,45,56,53,46,57,48,54,51,51,54,44,51,55,46,49,52,56,51,55,55,93,44,91,45,56,53,46,55,52,52,50,50,49,44,51,55,46,49,54,57,56,49,51,93,44,91,45,56,53,46,54,56,54,52,56,50,44,51,55,46,49,56,50,52,50,55,93,44,91,45,56,53,46,54,57,55,51,50,53,44,51,55,46,51,48,49,56,51,56,93,44,91,45,56,53,46,54,53,55,51,51,50,44,51,55,46,52,50,49,57,57,54,93,44,91,45,56,53,46,56,57,50,56,48,52,44,51,55,46,52,52,48,51,48,56,93,44,91,45,56,54,46,48,52,55,53,57,56,44,51,55,46,52,52,57,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,52,55,52,51,52,44,51,55,46,53,52,56,51,52,51,93,44,91,45,56,52,46,56,53,48,56,49,54,44,51,55,46,52,50,55,49,52,51,93,44,91,45,56,52,46,55,50,50,56,50,54,44,51,55,46,51,54,48,48,52,51,93,44,91,45,56,52,46,55,50,48,55,49,50,44,51,55,46,50,51,56,51,50,56,93,44,91,45,56,52,46,53,53,54,52,54,49,44,51,55,46,51,53,53,55,50,57,93,44,91,45,56,52,46,53,48,50,57,51,50,44,51,55,46,51,50,56,56,48,49,93,44,91,45,56,52,46,52,52,54,55,49,57,44,51,55,46,52,56,53,56,57,51,93,44,91,45,56,52,46,54,53,56,50,57,54,44,51,55,46,54,51,52,53,48,49,93,44,91,45,56,52,46,56,52,55,52,51,52,44,51,55,46,53,52,56,51,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,108,97,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,50,55,44,34,98,101,100,115,34,58,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,50,51,54,52,57,55,44,52,56,46,57,57,57,53,55,49,93,44,91,45,49,48,57,46,52,56,57,53,53,44,52,57,46,48,48,48,50,57,50,93,44,91,45,49,48,57,46,53,48,53,51,51,51,44,52,56,46,53,54,55,57,49,93,44,91,45,49,48,57,46,52,54,52,51,49,56,44,52,56,46,52,53,50,54,51,56,93,44,91,45,49,48,57,46,53,49,56,55,56,44,52,56,46,51,57,52,55,50,54,93,44,91,45,49,48,57,46,53,51,52,50,57,53,44,52,56,46,49,51,52,53,54,52,93,44,91,45,49,48,57,46,53,51,56,54,55,55,44,52,55,46,55,51,56,56,54,52,93,44,91,45,49,48,57,46,52,49,49,53,48,54,44,52,55,46,55,50,52,54,49,55,93,44,91,45,49,48,57,46,50,55,55,51,56,50,44,52,55,46,55,57,50,52,51,53,93,44,91,45,49,48,56,46,57,52,50,55,52,53,44,52,55,46,55,57,49,56,50,52,93,44,91,45,49,48,56,46,56,57,49,49,49,53,44,52,55,46,55,51,52,52,53,54,93,44,91,45,49,48,56,46,56,56,56,51,49,54,44,52,55,46,57,50,50,55,50,50,93,44,91,45,49,48,56,46,54,50,53,53,56,55,44,52,55,46,57,50,48,52,49,49,93,44,91,45,49,48,56,46,54,48,55,53,55,57,44,52,55,46,57,57,48,57,57,55,93,44,91,45,49,48,56,46,52,51,51,57,56,44,52,55,46,57,55,54,53,53,51,93,44,91,45,49,48,56,46,52,49,49,49,56,54,44,52,56,46,52,52,52,57,56,49,93,44,91,45,49,48,56,46,51,49,57,48,49,49,44,52,56,46,53,54,56,52,51,49,93,44,91,45,49,48,56,46,50,53,57,51,56,52,44,52,56,46,55,52,50,50,50,53,93,44,91,45,49,48,56,46,50,51,54,52,57,55,44,52,56,46,57,57,57,53,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,49,48,34,44,34,78,65,77,69,34,58,34,78,111,114,102,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,53,53,57,50,44,34,98,101,100,115,34,58,57,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,51,52,49,56,50,53,44,51,54,46,57,50,52,55,55,50,93,44,91,45,55,54,46,50,56,57,57,54,50,44,51,54,46,56,50,50,48,52,56,93,44,91,45,55,54,46,50,50,54,48,54,44,51,54,46,56,51,57,57,52,55,93,44,91,45,55,54,46,49,51,51,56,55,50,44,51,55,46,48,52,48,56,56,54,93,44,91,45,55,54,46,51,51,50,50,53,55,44,51,54,46,57,54,54,48,57,57,93,44,91,45,55,54,46,51,52,49,56,50,53,44,51,54,46,57,50,52,55,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,56,57,34,44,34,78,65,77,69,34,58,34,82,101,101,118,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,49,48,50,51,53,49,44,51,49,46,49,48,53,50,48,51,93,44,91,45,49,48,51,46,53,56,53,48,56,52,44,51,48,46,55,54,54,52,55,93,44,91,45,49,48,51,46,48,49,49,48,52,44,51,49,46,51,55,49,51,48,54,93,44,91,45,49,48,51,46,49,56,49,50,50,53,44,51,49,46,51,55,48,50,52,53,93,44,91,45,49,48,51,46,52,54,53,48,53,55,44,51,49,46,52,51,49,57,52,56,93,44,91,45,49,48,51,46,53,48,56,56,48,53,44,51,49,46,54,50,52,49,49,55,93,44,91,45,49,48,51,46,54,49,48,56,56,55,44,51,49,46,54,53,49,56,48,50,93,44,91,45,49,48,51,46,55,48,48,54,48,51,44,51,49,46,55,52,56,51,57,53,93,44,91,45,49,48,51,46,55,57,54,54,49,50,44,51,49,46,55,55,48,48,49,51,93,44,91,45,49,48,51,46,56,49,52,57,57,44,51,49,46,56,53,50,49,52,50,93,44,91,45,49,48,51,46,57,49,50,50,52,56,44,51,49,46,57,48,50,52,50,52,93,44,91,45,49,48,51,46,57,56,48,49,55,57,44,51,50,46,48,48,48,49,50,53,93,44,91,45,49,48,52,46,48,50,52,53,49,50,44,51,50,46,48,48,48,49,48,50,93,44,91,45,49,48,52,46,49,48,50,51,53,49,44,51,49,46,49,48,53,50,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,50,51,52,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,48,54,57,54,50,44,51,55,46,50,52,52,56,55,49,93,44,91,45,56,48,46,56,53,52,54,50,55,44,51,55,46,49,52,55,52,56,50,93,44,91,45,56,48,46,57,49,50,54,55,52,44,51,55,46,48,55,51,51,52,57,93,44,91,45,56,48,46,55,52,48,52,56,51,44,51,54,46,56,55,57,48,48,49,93,44,91,45,56,48,46,54,51,51,57,56,55,44,51,54,46,57,51,49,55,56,93,44,91,45,56,48,46,53,52,51,57,51,51,44,51,54,46,57,56,52,54,51,57,93,44,91,45,56,48,46,53,56,48,52,54,57,44,51,55,46,48,56,57,54,54,50,93,44,91,45,56,48,46,53,57,54,52,48,57,44,51,55,46,49,49,56,56,56,57,93,44,91,45,56,48,46,53,50,57,55,54,50,44,51,55,46,49,51,51,56,52,50,93,44,91,45,56,48,46,54,48,54,57,54,50,44,51,55,46,50,52,52,56,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,54,57,52,44,34,98,101,100,115,34,58,50,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,53,48,51,52,57,44,51,53,46,50,48,56,52,49,50,93,44,91,45,56,48,46,56,52,48,50,55,56,44,51,53,46,48,48,49,54,57,50,93,44,91,45,56,48,46,55,56,49,57,50,49,44,51,52,46,57,51,53,56,52,56,93,44,91,45,56,48,46,55,57,55,52,56,52,44,51,52,46,56,49,57,56,48,51,93,44,91,45,56,48,46,53,54,49,55,49,44,51,52,46,56,49,55,52,50,57,93,44,91,45,56,48,46,51,50,48,56,50,56,44,51,52,46,56,49,51,57,48,54,93,44,91,45,56,48,46,50,55,54,56,50,57,44,51,53,46,49,57,53,55,50,50,93,44,91,45,56,48,46,51,53,56,57,50,50,44,51,53,46,49,54,53,50,56,49,93,44,91,45,56,48,46,53,48,52,57,56,53,44,51,53,46,49,56,52,57,57,56,93,44,91,45,56,48,46,53,53,48,51,52,57,44,51,53,46,50,48,56,52,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,77,99,75,101,110,122,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,51,54,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,52,48,52,52,44,52,55,46,57,57,54,48,56,50,93,44,91,45,49,48,52,46,48,52,52,56,55,49,44,52,55,46,51,57,55,48,54,51,93,44,91,45,49,48,52,46,48,52,52,57,54,56,44,52,55,46,51,51,48,49,52,49,93,44,91,45,49,48,51,46,54,54,54,54,55,53,44,52,55,46,51,50,57,50,53,54,93,44,91,45,49,48,51,46,48,57,57,49,57,55,44,52,55,46,51,50,56,55,49,52,93,44,91,45,49,48,51,46,48,57,57,54,55,44,52,55,46,54,55,52,53,49,56,93,44,91,45,49,48,50,46,54,52,50,54,54,57,44,52,55,46,54,55,52,48,49,50,93,44,91,45,49,48,50,46,54,52,50,50,54,54,44,52,55,46,56,50,51,55,49,51,93,44,91,45,49,48,50,46,53,54,53,57,48,50,44,52,55,46,57,54,57,48,50,56,93,44,91,45,49,48,50,46,54,48,56,51,54,44,52,56,46,48,52,54,51,53,49,93,44,91,45,49,48,50,46,56,50,56,52,55,55,44,52,56,46,49,50,51,54,54,52,93,44,91,45,49,48,51,46,50,48,49,56,57,44,52,56,46,49,51,53,50,48,56,93,44,91,45,49,48,51,46,50,55,55,50,54,54,44,52,56,46,48,53,56,48,50,51,93,44,91,45,49,48,51,46,52,56,53,48,55,50,44,52,56,46,48,48,54,55,50,53,93,44,91,45,49,48,51,46,54,48,56,49,55,52,44,52,56,46,49,49,52,49,50,52,93,44,91,45,49,48,51,46,55,56,52,51,57,52,44,52,56,46,48,53,57,52,57,49,93,44,91,45,49,48,51,46,57,49,57,55,56,57,44,52,55,46,57,53,53,57,53,93,44,91,45,49,48,52,46,48,52,52,48,52,52,44,52,55,46,57,57,54,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,79,107,97,108,111,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,55,51,55,44,34,98,101,100,115,34,58,52,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,55,56,53,54,57,50,44,51,48,46,57,57,54,57,56,93,44,91,45,56,54,46,56,48,48,53,53,52,44,51,48,46,51,51,52,52,57,50,93,44,91,45,56,54,46,54,52,53,56,54,49,44,51,48,46,51,52,54,49,55,51,93,44,91,45,56,54,46,51,57,55,53,48,52,44,51,48,46,51,50,53,51,53,52,93,44,91,45,56,54,46,51,56,56,54,52,54,44,51,48,46,57,57,52,49,56,49,93,44,91,45,56,54,46,54,56,56,51,49,55,44,51,48,46,57,57,52,53,48,55,93,44,91,45,56,54,46,55,56,53,54,57,50,44,51,48,46,57,57,54,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,97,109,101,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,51,55,48,48,44,34,98,101,100,115,34,58,51,56,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,50,56,49,55,56,44,51,55,46,55,48,56,50,51,93,44,91,45,49,50,50,46,48,56,49,52,55,51,44,51,55,46,52,55,55,56,51,56,93,44,91,45,49,50,49,46,52,55,50,54,52,56,44,51,55,46,52,56,50,49,55,93,44,91,45,49,50,49,46,52,55,49,57,50,53,44,51,55,46,52,56,49,55,56,51,93,44,91,45,49,50,49,46,53,53,54,54,53,53,44,51,55,46,53,52,50,55,51,50,93,44,91,45,49,50,49,46,53,53,54,57,57,55,44,51,55,46,56,49,54,52,56,56,93,44,91,45,49,50,49,46,57,54,48,55,55,44,51,55,46,55,49,56,54,50,57,93,44,91,45,49,50,50,46,48,52,53,52,55,51,44,51,55,46,55,57,56,49,50,54,93,44,91,45,49,50,50,46,49,52,48,53,53,49,44,51,55,46,56,48,52,53,57,52,93,44,91,45,49,50,50,46,50,54,52,48,50,55,44,51,55,46,57,48,51,55,55,53,93,44,91,45,49,50,50,46,51,55,51,55,56,50,44,51,55,46,56,56,51,55,50,53,93,44,91,45,49,50,50,46,50,56,49,55,56,44,51,55,46,55,48,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,53,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,50,49,56,51,53,44,51,57,46,50,50,52,49,48,56,93,44,91,45,57,48,46,54,54,51,49,56,49,44,51,56,46,57,51,52,50,50,52,93,44,91,45,57,48,46,53,52,54,56,51,49,44,51,56,46,56,55,52,48,48,57,93,44,91,45,57,48,46,52,53,48,56,49,51,44,51,56,46,57,54,55,55,54,57,93,44,91,45,57,48,46,53,55,48,49,54,57,44,51,56,46,57,57,51,50,57,93,44,91,45,57,48,46,54,48,51,53,54,57,44,51,57,46,49,49,55,53,57,50,93,44,91,45,57,48,46,54,49,51,55,55,53,44,51,57,46,51,57,53,52,49,54,93,44,91,45,57,48,46,57,51,54,55,50,56,44,51,57,46,51,57,57,53,49,49,93,44,91,45,57,48,46,55,50,49,56,51,53,44,51,57,46,50,50,52,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,75,111,115,99,105,117,115,107,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,56,48,54,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,51,53,48,55,44,52,49,46,52,51,54,56,53,54,93,44,91,45,56,54,46,48,53,57,50,51,44,52,49,46,52,51,53,56,49,50,93,44,91,45,56,54,46,48,55,55,53,53,49,44,52,49,46,49,55,50,56,54,56,93,44,91,45,56,54,46,48,55,53,57,51,57,44,52,49,46,48,56,52,56,55,56,93,44,91,45,56,53,46,57,52,53,53,54,49,44,52,49,46,48,52,50,56,55,54,93,44,91,45,56,53,46,54,56,52,49,56,49,44,52,49,46,48,52,54,55,49,54,93,44,91,45,56,53,46,54,53,49,57,50,56,44,52,49,46,50,57,52,55,55,54,93,44,91,45,56,53,46,54,53,51,53,48,55,44,52,49,46,52,51,54,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,78,111,120,117,98,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,49,51,48,53,51,44,51,51,46,50,56,54,52,50,52,93,44,91,45,56,56,46,56,49,50,55,56,50,44,51,50,46,57,50,53,57,55,51,93,44,91,45,56,56,46,51,52,55,56,56,55,44,51,50,46,57,50,57,48,56,50,93,44,91,45,56,56,46,51,52,48,52,51,50,44,51,50,46,57,57,49,49,57,57,93,44,91,45,56,56,46,51,48,52,52,51,52,44,51,51,46,50,56,56,51,50,93,44,91,45,56,56,46,54,54,57,48,55,54,44,51,51,46,50,56,54,57,50,50,93,44,91,45,56,56,46,56,49,51,48,53,51,44,51,51,46,50,56,54,52,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,87,111,111,100,114,117,102,102,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,52,55,50,53,55,44,51,53,46,52,51,57,49,48,54,93,44,91,45,57,49,46,52,51,48,56,56,52,44,51,53,46,51,55,49,53,54,54,93,44,91,45,57,49,46,51,55,57,55,49,57,44,51,53,46,50,49,53,49,52,57,93,44,91,45,57,49,46,52,54,53,49,49,52,44,51,53,46,48,56,57,52,53,52,93,44,91,45,57,49,46,51,54,51,55,54,51,44,51,53,46,48,53,49,56,56,55,93,44,91,45,57,49,46,51,54,56,53,54,44,51,52,46,57,49,50,55,51,53,93,44,91,45,57,49,46,50,57,51,49,49,49,44,51,52,46,57,56,53,48,57,49,93,44,91,45,57,49,46,49,52,57,56,52,50,44,51,53,46,48,48,50,52,55,93,44,91,45,57,49,46,48,52,53,52,51,44,51,53,46,48,48,49,48,52,93,44,91,45,57,49,46,48,52,50,54,55,44,51,53,46,49,52,56,49,56,57,93,44,91,45,57,49,46,48,51,57,55,56,51,44,51,53,46,51,53,52,50,53,54,93,44,91,45,57,49,46,50,53,49,53,53,53,44,51,53,46,51,53,55,53,54,49,93,44,91,45,57,49,46,51,52,55,50,53,55,44,51,53,46,52,51,57,49,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,71,108,111,117,99,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,56,53,50,44,34,98,101,100,115,34,58,51,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,50,49,49,52,54,51,44,51,57,46,56,54,55,48,48,52,93,44,91,45,55,53,46,52,49,53,48,54,50,44,51,57,46,56,48,49,57,49,57,93,44,91,45,55,53,46,52,48,53,52,56,57,44,51,57,46,55,57,54,51,54,56,93,44,91,45,55,53,46,51,54,55,50,51,57,44,51,57,46,55,49,55,53,54,53,93,44,91,45,55,53,46,49,57,57,55,57,51,44,51,57,46,54,54,54,57,57,54,93,44,91,45,55,53,46,48,54,49,56,53,52,44,51,57,46,53,54,56,55,52,54,93,44,91,45,55,52,46,57,56,53,50,55,49,44,51,57,46,53,49,52,57,54,55,93,44,91,45,55,52,46,56,55,55,50,54,44,51,57,46,54,48,56,51,53,50,93,44,91,45,55,53,46,49,51,57,56,51,50,44,51,57,46,56,56,56,51,49,55,93,44,91,45,55,53,46,50,49,49,52,54,51,44,51,57,46,56,54,55,48,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,72,105,108,108,115,98,111,114,111,117,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,49,48,56,55,44,34,98,101,100,115,34,58,49,48,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,48,51,56,49,52,57,44,52,51,46,49,50,56,56,48,55,93,44,91,45,55,50,46,48,48,54,49,57,44,52,50,46,57,52,51,55,56,57,93,44,91,45,55,49,46,57,50,56,57,57,51,44,52,50,46,55,49,50,49,48,50,93,44,91,45,55,49,46,56,57,56,55,55,51,44,52,50,46,55,49,49,51,49,50,93,44,91,45,55,49,46,50,57,52,54,51,55,44,52,50,46,54,57,55,48,52,50,93,44,91,45,55,49,46,50,53,53,49,52,55,44,52,50,46,55,51,54,53,53,52,93,44,91,45,55,49,46,50,52,53,52,56,49,44,52,50,46,55,52,50,53,49,52,93,44,91,45,55,49,46,52,50,55,48,54,55,44,52,50,46,56,50,52,56,52,93,44,91,45,55,49,46,52,53,48,52,51,54,44,52,50,46,57,51,49,48,50,93,44,91,45,55,49,46,51,57,50,51,56,56,44,52,51,46,48,48,57,51,48,57,93,44,91,45,55,49,46,53,49,55,52,54,55,44,52,51,46,48,54,56,57,48,57,93,44,91,45,55,49,46,54,52,49,50,57,49,44,52,51,46,48,53,52,49,54,56,93,44,91,45,55,49,46,54,54,55,55,55,49,44,52,51,46,49,53,50,53,51,52,93,44,91,45,55,49,46,56,53,54,49,44,52,51,46,49,49,53,49,51,53,93,44,91,45,55,49,46,57,49,51,50,49,53,44,52,51,46,50,48,55,48,57,57,93,44,91,45,55,50,46,48,48,57,48,55,52,44,52,51,46,49,56,55,56,56,50,93,44,91,45,55,50,46,48,51,56,49,52,57,44,52,51,46,49,50,56,56,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,74,117,100,105,116,104,32,66,97,115,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,54,51,57,53,53,57,44,52,55,46,52,49,54,52,56,54,93,44,91,45,49,49,48,46,55,54,55,49,50,53,44,52,55,46,51,53,57,49,50,56,93,44,91,45,49,49,48,46,55,55,48,54,57,56,44,52,55,46,48,57,54,53,52,54,93,44,91,45,49,49,48,46,54,52,53,50,49,50,44,52,55,46,48,57,53,56,55,93,44,91,45,49,49,48,46,54,53,50,56,55,55,44,52,54,46,56,50,51,54,50,54,93,44,91,45,49,49,48,46,52,53,52,53,54,54,44,52,54,46,54,55,57,53,52,53,93,44,91,45,49,49,48,46,50,55,51,51,51,55,44,52,54,46,55,49,48,53,48,57,93,44,91,45,49,48,57,46,57,54,55,56,44,52,54,46,55,53,48,56,55,53,93,44,91,45,49,48,57,46,55,52,53,55,52,53,44,52,54,46,54,57,52,48,57,55,93,44,91,45,49,48,57,46,55,57,55,52,54,57,44,52,54,46,56,54,55,48,51,56,93,44,91,45,49,48,57,46,55,53,53,52,50,51,44,52,54,46,56,57,54,48,50,51,93,44,91,45,49,48,57,46,55,53,54,53,54,56,44,52,55,46,49,56,53,54,57,52,93,44,91,45,49,49,48,46,49,50,55,54,57,57,44,52,55,46,50,55,49,57,49,93,44,91,45,49,49,48,46,50,49,51,53,57,54,44,52,55,46,52,49,54,54,53,55,93,44,91,45,49,49,48,46,54,51,57,53,53,57,44,52,55,46,52,49,54,52,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,105,116,99,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,52,48,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,50,50,48,54,52,44,51,54,46,49,53,54,57,54,93,44,91,45,56,50,46,52,49,54,55,51,56,44,51,54,46,48,55,50,56,50,55,93,44,91,45,56,50,46,51,52,53,50,57,44,51,54,46,48,55,54,52,53,57,93,44,91,45,56,50,46,49,57,49,55,48,53,44,51,53,46,57,57,48,54,51,54,93,44,91,45,56,50,46,49,51,51,52,56,52,44,51,53,46,56,50,51,51,48,57,93,44,91,45,56,49,46,57,56,49,57,53,52,44,51,53,46,57,49,49,51,54,49,93,44,91,45,56,50,46,48,51,52,49,48,52,44,51,53,46,57,52,50,48,53,55,93,44,91,45,56,50,46,48,56,49,48,55,57,44,51,54,46,49,48,51,49,55,93,44,91,45,56,50,46,50,50,50,48,54,52,44,51,54,46,49,53,54,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,80,111,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,54,49,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,51,48,50,57,48,51,44,52,54,46,56,51,50,49,53,57,93,44,91,45,49,49,51,46,49,49,53,54,49,52,44,52,54,46,55,49,51,51,56,55,93,44,91,45,49,49,51,46,48,51,56,55,48,50,44,52,54,46,55,51,53,53,52,93,44,91,45,49,49,51,46,48,51,54,56,50,53,44,52,54,46,50,54,54,56,50,54,93,44,91,45,49,49,50,46,53,53,56,53,57,57,44,52,54,46,50,54,53,56,50,49,93,44,91,45,49,49,50,46,53,51,51,54,50,53,44,52,54,46,51,51,48,56,57,56,93,44,91,45,49,49,50,46,51,49,48,53,55,51,44,52,54,46,52,50,49,49,55,49,93,44,91,45,49,49,50,46,51,50,48,56,55,49,44,52,54,46,54,53,53,57,50,55,93,44,91,45,49,49,50,46,53,51,53,53,57,55,44,52,54,46,54,57,57,52,56,50,93,44,91,45,49,49,50,46,53,51,53,55,52,56,44,52,54,46,56,51,52,50,51,52,93,44,91,45,49,49,50,46,55,57,53,54,52,50,44,52,54,46,56,51,49,54,54,53,93,44,91,45,49,49,50,46,55,57,53,56,48,56,44,52,55,46,49,55,55,48,48,52,93,44,91,45,49,49,51,46,48,53,57,48,53,51,44,52,55,46,49,55,57,53,55,93,44,91,45,49,49,51,46,48,53,57,49,57,57,44,52,55,46,52,56,56,53,57,57,93,44,91,45,49,49,51,46,49,52,52,51,54,56,44,52,55,46,53,57,53,53,48,55,93,44,91,45,49,49,51,46,52,54,54,52,56,53,44,52,55,46,54,48,48,48,53,55,93,44,91,45,49,49,51,46,52,54,54,52,53,44,52,55,46,49,55,57,49,56,54,93,44,91,45,49,49,51,46,51,48,50,57,52,51,44,52,55,46,49,55,57,54,52,51,93,44,91,45,49,49,51,46,51,48,50,57,48,51,44,52,54,46,56,51,50,49,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,52,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,55,50,52,54,54,51,44,52,53,46,48,52,52,52,51,50,93,44,91,45,49,50,51,46,55,50,53,48,48,49,44,52,52,46,55,51,57,48,52,54,93,44,91,45,49,50,51,46,54,48,50,54,48,57,44,52,52,46,55,50,49,49,53,52,93,44,91,45,49,50,51,46,49,52,57,48,50,53,44,52,52,46,55,50,48,50,50,53,93,44,91,45,49,50,51,46,49,52,51,56,52,51,44,52,52,46,55,52,56,57,49,52,93,44,91,45,49,50,51,46,49,55,57,51,56,55,44,52,52,46,56,51,53,55,50,57,93,44,91,45,49,50,51,46,48,52,52,57,48,51,44,52,52,46,57,52,52,48,50,56,93,44,91,45,49,50,51,46,48,54,56,54,54,55,44,52,53,46,48,55,52,56,54,93,44,91,45,49,50,51,46,55,50,52,51,54,56,44,52,53,46,48,55,54,50,50,54,93,44,91,45,49,50,51,46,55,50,52,54,54,51,44,52,53,46,48,52,52,52,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,87,97,115,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,54,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,54,57,54,52,55,57,44,52,53,46,50,53,55,57,50,93,44,91,45,49,50,49,46,55,52,56,52,56,53,44,52,53,46,50,48,52,52,52,93,44,91,45,49,50,49,46,54,53,50,48,49,56,44,52,53,46,48,56,54,55,48,54,93,44,91,45,49,50,49,46,56,48,53,54,54,55,44,52,53,46,48,48,54,49,50,52,93,44,91,45,49,50,49,46,55,51,52,50,50,51,44,52,52,46,56,56,53,55,50,93,44,91,45,49,50,49,46,55,53,50,57,57,52,44,52,52,46,56,50,57,57,49,57,93,44,91,45,49,50,49,46,48,56,57,52,56,44,52,52,46,56,50,51,50,55,50,93,44,91,45,49,50,48,46,51,55,49,52,52,49,44,52,52,46,56,50,49,55,54,57,93,44,91,45,49,50,48,46,52,53,53,51,56,57,44,52,52,46,56,54,54,48,52,54,93,44,91,45,49,50,48,46,52,57,53,49,54,44,52,53,46,48,54,56,50,55,57,93,44,91,45,49,50,48,46,53,48,51,55,51,51,44,52,53,46,48,56,51,52,55,55,93,44,91,45,49,50,48,46,55,50,51,53,54,57,44,52,53,46,49,51,48,57,49,49,93,44,91,45,49,50,48,46,56,56,57,51,53,55,44,52,53,46,50,48,50,51,48,53,93,44,91,45,49,50,49,46,48,50,52,50,57,52,44,52,53,46,50,49,57,53,51,49,93,44,91,45,49,50,48,46,56,54,56,53,54,57,44,52,53,46,52,48,49,49,52,54,93,44,91,45,49,50,48,46,56,51,56,55,55,50,44,52,53,46,53,49,53,57,52,54,93,44,91,45,49,50,48,46,57,49,53,56,53,44,52,53,46,54,52,49,50,93,44,91,45,49,50,49,46,48,56,52,56,54,51,44,52,53,46,54,52,55,57,51,50,93,44,91,45,49,50,49,46,51,51,55,55,49,50,44,52,53,46,55,48,52,56,51,57,93,44,91,45,49,50,49,46,52,52,49,50,50,57,44,52,53,46,54,57,55,50,56,93,44,91,45,49,50,49,46,52,56,50,49,54,56,44,52,53,46,53,49,57,54,48,52,93,44,91,45,49,50,49,46,52,56,49,56,56,56,44,52,53,46,50,53,56,49,50,56,93,44,91,45,49,50,49,46,54,57,54,52,55,57,44,52,53,46,50,53,55,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,80,101,114,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,57,52,50,48,55,44,52,53,46,57,52,53,93,44,91,45,49,48,50,46,57,53,55,50,56,49,44,52,53,46,50,49,50,56,53,49,93,44,91,45,49,48,50,46,57,53,55,51,55,49,44,52,53,46,48,51,57,53,54,57,93,44,91,45,49,48,49,46,57,57,57,57,57,44,52,53,46,48,51,56,50,55,52,93,44,91,45,49,48,49,46,57,57,57,55,57,44,52,53,46,52,55,50,52,49,52,93,44,91,45,49,48,50,46,48,48,48,54,56,49,44,52,53,46,57,52,52,53,54,51,93,44,91,45,49,48,50,46,57,52,50,48,55,44,52,53,46,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,48,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,50,56,52,53,57,44,52,48,46,57,48,48,54,53,51,93,44,91,45,57,52,46,57,49,52,56,57,54,44,52,48,46,53,55,53,48,54,56,93,44,91,45,57,52,46,54,51,50,48,51,44,52,48,46,53,55,49,51,54,55,93,44,91,45,57,52,46,52,55,49,50,49,51,44,52,48,46,53,55,48,56,50,53,93,44,91,45,57,52,46,52,55,48,55,55,57,44,52,48,46,56,57,57,53,48,50,93,44,91,45,57,52,46,57,50,56,52,53,57,44,52,48,46,57,48,48,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,54,52,52,51,44,51,49,46,54,57,55,57,53,50,93,44,91,45,56,56,46,52,52,57,52,51,56,44,51,49,46,52,51,53,56,51,55,93,44,91,45,56,56,46,52,51,50,48,48,55,44,51,49,46,49,49,52,50,57,56,93,44,91,45,56,56,46,51,50,57,55,56,50,44,51,49,46,49,52,51,56,50,49,93,44,91,45,56,56,46,48,50,50,54,52,57,44,51,49,46,49,52,52,50,54,55,93,44,91,45,56,55,46,57,55,50,56,54,57,44,51,49,46,49,54,50,54,57,52,93,44,91,45,56,55,46,57,52,54,53,56,56,44,51,49,46,49,57,50,57,51,93,44,91,45,56,55,46,57,53,48,55,57,53,44,51,49,46,50,57,57,52,54,51,93,44,91,45,56,55,46,56,56,56,56,53,55,44,51,49,46,51,54,52,48,50,51,93,44,91,45,56,55,46,57,48,55,51,57,57,44,51,49,46,52,57,52,52,51,56,93,44,91,45,56,56,46,48,55,50,50,51,52,44,51,49,46,53,57,52,53,93,44,91,45,56,56,46,48,56,56,50,56,56,44,51,49,46,54,57,57,51,48,51,93,44,91,45,56,56,46,52,54,52,52,51,44,51,49,46,54,57,55,57,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,101,102,105,97,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,50,55,57,44,34,98,101,100,115,34,58,49,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,49,54,54,52,44,52,49,46,52,50,55,53,54,56,93,44,91,45,56,52,46,56,48,52,48,54,51,44,52,49,46,52,50,54,48,53,49,93,44,91,45,56,52,46,56,48,51,53,56,57,44,52,49,46,50,55,49,50,55,51,93,44,91,45,56,52,46,56,48,51,53,52,52,44,52,49,46,50,53,50,53,54,50,93,44,91,45,56,52,46,52,53,55,50,49,55,44,52,49,46,50,53,51,52,56,53,93,44,91,45,56,52,46,51,52,49,54,48,50,44,52,49,46,49,54,53,53,50,52,93,44,91,45,56,52,46,50,50,56,50,50,50,44,52,49,46,49,54,53,56,54,50,93,44,91,45,56,52,46,50,50,56,52,53,52,44,52,49,46,52,50,55,56,49,93,44,91,45,56,52,46,51,52,49,54,54,52,44,52,49,46,52,50,55,53,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,98,114,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,52,55,44,34,98,101,100,115,34,58,49,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,48,54,51,49,54,44,51,55,46,56,54,56,57,49,53,93,44,91,45,56,48,46,54,54,51,51,52,56,44,51,55,46,55,51,49,54,57,54,93,44,91,45,56,48,46,53,48,54,54,57,53,44,51,55,46,54,57,49,49,53,56,93,44,91,45,56,48,46,50,57,54,49,51,56,44,51,55,46,54,57,49,55,56,51,93,44,91,45,56,48,46,49,54,50,50,48,50,44,51,55,46,56,55,53,49,50,50,93,44,91,45,56,48,46,48,53,54,48,53,54,44,51,55,46,57,53,49,57,53,57,93,44,91,45,55,57,46,57,53,57,56,52,52,44,51,56,46,48,54,51,54,57,55,93,44,91,45,56,48,46,50,54,52,54,53,51,44,51,56,46,48,52,54,54,49,54,93,44,91,45,56,48,46,51,54,51,50,57,53,44,51,56,46,49,49,52,51,51,49,93,44,91,45,56,48,46,51,54,48,48,52,56,44,51,56,46,50,50,53,56,52,53,93,44,91,45,56,48,46,52,51,54,53,49,52,44,51,56,46,50,54,55,51,51,52,93,44,91,45,56,48,46,55,49,49,57,54,49,44,51,56,46,48,55,57,49,50,57,93,44,91,45,56,48,46,56,56,50,49,56,55,44,51,56,46,49,48,51,52,53,55,93,44,91,45,56,48,46,55,54,57,56,54,54,44,51,55,46,57,56,53,50,55,93,44,91,45,56,48,46,56,48,54,51,49,54,44,51,55,46,56,54,56,57,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,56,52,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,57,53,49,54,53,44,51,56,46,56,50,54,50,57,57,93,44,91,45,56,57,46,49,51,56,49,51,56,44,51,56,46,56,50,52,50,48,57,93,44,91,45,56,57,46,49,51,56,51,57,51,44,51,56,46,55,51,54,51,51,49,93,44,91,45,56,57,46,49,52,51,56,54,54,44,51,56,46,53,48,51,48,56,57,93,44,91,45,56,57,46,49,52,52,51,56,56,44,51,56,46,52,55,51,56,55,56,93,44,91,45,56,56,46,54,57,56,57,54,49,44,51,56,46,52,55,52,57,49,52,93,44,91,45,56,56,46,54,57,56,52,53,57,44,51,56,46,54,48,54,48,54,50,93,44,91,45,56,56,46,54,57,53,49,54,53,44,51,56,46,56,50,54,50,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,68,105,99,107,101,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,54,48,44,34,98,101,100,115,34,58,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,49,52,49,57,53,44,51,55,46,50,57,54,48,55,53,93,44,91,45,56,50,46,53,53,51,56,55,52,44,51,55,46,50,48,50,56,51,51,93,44,91,45,56,50,46,52,54,55,51,52,53,44,51,55,46,48,50,50,49,51,54,93,44,91,45,56,50,46,51,50,55,56,51,44,51,54,46,57,55,48,57,56,50,93,44,91,45,56,50,46,49,52,57,51,55,53,44,51,55,46,48,52,49,54,52,49,93,44,91,45,56,50,46,51,49,52,49,57,53,44,51,55,46,50,57,54,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,109,101,108,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,53,53,49,52,56,44,51,55,46,52,49,56,51,54,51,93,44,91,45,55,55,46,57,56,54,49,57,44,51,55,46,52,56,54,50,54,57,93,44,91,45,55,56,46,49,51,50,48,52,56,44,51,55,46,52,53,52,54,56,54,93,44,91,45,55,56,46,50,51,53,48,51,57,44,51,55,46,51,54,56,49,48,50,93,44,91,45,55,56,46,50,51,49,50,51,52,44,51,55,46,50,57,54,50,50,93,44,91,45,55,55,46,55,57,53,57,50,54,44,51,55,46,49,57,50,53,57,50,93,44,91,45,55,55,46,54,53,48,54,49,44,51,55,46,50,54,53,49,49,50,93,44,91,45,55,55,46,55,53,56,54,50,44,51,55,46,50,54,56,55,49,55,93,44,91,45,55,55,46,56,55,55,53,53,54,44,51,55,46,51,54,54,50,52,55,93,44,91,45,55,55,46,56,53,53,49,52,56,44,51,55,46,52,49,56,51,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,51,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,56,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,48,55,48,48,54,44,51,49,46,57,50,52,52,54,53,93,44,91,45,56,52,46,57,53,56,54,52,44,51,49,46,55,55,55,56,53,52,93,44,91,45,56,52,46,57,52,50,51,53,51,44,51,49,46,54,49,56,54,54,57,93,44,91,45,56,52,46,56,49,55,56,52,51,44,51,49,46,54,49,57,55,55,49,93,44,91,45,56,52,46,53,52,54,56,53,52,44,51,49,46,54,50,49,49,57,57,93,44,91,45,56,52,46,54,48,51,48,56,54,44,51,49,46,55,55,50,48,48,49,93,44,91,45,56,52,46,53,57,57,55,55,54,44,51,49,46,57,50,48,49,55,49,93,44,91,45,56,52,46,54,53,53,56,50,44,51,49,46,57,50,48,51,48,56,93,44,91,45,56,52,46,57,48,55,48,48,54,44,51,49,46,57,50,52,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,76,117,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,50,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,54,48,56,52,56,53,44,51,50,46,54,48,53,52,52,57,93,44,91,45,49,48,55,46,57,50,51,57,57,55,44,51,50,46,54,48,52,51,55,57,93,44,91,45,49,48,55,46,57,50,51,55,54,54,44,51,50,46,53,49,55,52,49,54,93,44,91,45,49,48,56,46,50,50,57,51,52,51,44,51,50,46,53,49,54,56,51,55,93,44,91,45,49,48,56,46,50,50,57,57,53,49,44,51,50,46,48,55,57,56,55,93,44,91,45,49,48,56,46,50,49,55,49,52,51,44,51,49,46,56,54,52,49,51,57,93,44,91,45,49,48,56,46,50,48,56,52,56,52,44,51,49,46,55,56,51,54,57,56,93,44,91,45,49,48,55,46,50,57,54,55,57,51,44,51,49,46,55,56,51,54,52,49,93,44,91,45,49,48,55,46,50,57,57,54,51,49,44,51,50,46,54,48,53,51,55,93,44,91,45,49,48,55,46,54,48,56,52,56,53,44,51,50,46,54,48,53,52,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,53,53,34,44,34,78,65,77,69,34,58,34,78,117,101,99,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,48,52,56,54,44,34,98,101,100,115,34,58,49,49,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,57,56,53,49,55,44,50,55,46,57,57,53,54,53,57,93,44,91,45,57,55,46,57,51,52,50,55,52,44,50,55,46,56,56,53,50,48,50,93,44,91,45,57,55,46,57,52,50,49,52,54,44,50,55,46,54,51,53,57,51,50,93,44,91,45,57,55,46,56,52,48,54,55,56,44,50,55,46,53,53,56,51,53,56,93,44,91,45,57,55,46,49,54,53,48,57,55,44,50,55,46,53,54,56,51,93,44,91,45,57,54,46,57,56,52,50,56,49,44,50,55,46,56,48,51,55,56,51,93,44,91,45,57,55,46,49,51,54,51,49,50,44,50,55,46,57,48,52,51,57,93,44,91,45,57,55,46,49,56,53,53,55,57,44,50,55,46,56,51,48,50,55,50,93,44,91,45,57,55,46,51,51,55,54,55,55,44,50,55,46,56,56,51,49,54,53,93,44,91,45,57,55,46,53,56,57,52,55,51,44,50,55,46,56,53,54,49,48,49,93,44,91,45,57,55,46,55,57,56,53,49,55,44,50,55,46,57,57,53,54,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,87,101,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,48,48,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,55,57,50,56,49,44,52,52,46,49,55,54,49,56,50,93,44,91,45,49,48,53,46,48,55,57,55,57,55,44,52,51,46,52,57,56,52,52,53,93,44,91,45,49,48,52,46,56,57,57,57,52,49,44,52,51,46,52,57,57,54,52,93,44,91,45,49,48,52,46,48,53,52,55,56,54,44,52,51,46,53,48,51,51,50,56,93,44,91,45,49,48,52,46,48,53,53,52,56,55,44,52,51,46,56,53,51,52,55,54,93,44,91,45,49,48,52,46,48,53,52,53,56,56,44,52,52,46,49,52,49,48,56,49,93,44,91,45,49,48,52,46,48,53,52,52,56,55,44,52,52,46,49,56,48,51,56,49,93,44,91,45,49,48,53,46,48,55,57,50,56,49,44,52,52,46,49,55,54,49,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,84,111,97,32,66,97,106,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,55,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,56,55,50,55,49,44,49,56,46,53,50,54,50,55,49,93,44,91,45,54,54,46,50,53,50,53,53,52,44,49,56,46,51,57,52,49,56,55,93,44,91,45,54,54,46,49,57,54,57,56,44,49,56,46,51,56,57,50,56,57,93,44,91,45,54,54,46,49,54,57,53,49,54,44,49,56,46,52,51,48,57,57,56,93,44,91,45,54,54,46,49,50,57,52,48,51,44,49,56,46,52,54,53,54,51,50,93,44,91,45,54,54,46,49,50,56,57,56,54,44,49,56,46,53,50,52,52,48,51,93,44,91,45,54,54,46,49,56,55,50,55,49,44,49,56,46,53,50,54,50,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,51,56,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,56,53,49,57,52,44,52,49,46,48,54,56,55,52,57,93,44,91,45,57,48,46,55,56,57,54,53,50,44,52,48,46,54,51,53,55,53,93,44,91,45,57,48,46,52,52,53,54,50,55,44,52,48,46,54,50,55,54,51,56,93,44,91,45,57,48,46,52,52,52,51,51,57,44,52,48,46,55,49,52,56,54,56,93,44,91,45,57,48,46,52,51,57,52,50,51,44,52,49,46,48,54,51,57,57,53,93,44,91,45,57,48,46,55,56,53,49,57,52,44,52,49,46,48,54,56,55,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,53,54,48,44,34,98,101,100,115,34,58,49,50,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,49,56,55,54,49,44,51,52,46,57,57,49,49,54,57,93,44,91,45,56,54,46,55,56,51,54,50,56,44,51,52,46,57,57,49,57,52,56,93,44,91,45,56,54,46,55,57,48,48,53,54,44,51,52,46,53,53,48,55,57,93,44,91,45,56,54,46,54,56,57,51,53,51,44,51,52,46,53,56,54,52,50,53,93,44,91,45,56,54,46,53,53,48,49,54,54,44,51,52,46,53,52,53,57,54,51,93,44,91,45,56,54,46,52,50,53,52,56,50,44,51,52,46,52,55,57,50,55,55,93,44,91,45,56,54,46,51,49,49,49,56,55,44,51,52,46,53,51,57,50,55,55,93,44,91,45,56,54,46,51,50,54,56,53,51,44,51,52,46,53,57,57,52,48,51,93,44,91,45,56,54,46,51,53,57,48,51,52,44,51,52,46,54,51,50,54,49,93,44,91,45,56,54,46,51,53,49,49,50,51,44,51,52,46,56,55,51,50,54,53,93,44,91,45,56,54,46,51,49,49,50,55,52,44,51,52,46,57,57,49,48,57,56,93,44,91,45,56,54,46,51,49,56,55,54,49,44,51,52,46,57,57,49,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,87,105,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,54,54,51,44,34,98,101,100,115,34,58,49,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,57,52,50,56,54,44,51,54,46,50,52,53,49,48,53,93,44,91,45,56,54,46,53,49,53,53,56,57,44,51,54,46,49,48,48,54,49,93,44,91,45,56,54,46,51,50,54,50,53,50,44,51,53,46,57,56,53,48,48,56,93,44,91,45,56,54,46,49,53,51,50,49,52,44,51,53,46,57,53,52,51,57,57,93,44,91,45,56,54,46,48,49,52,56,52,57,44,51,53,46,57,54,49,48,54,93,44,91,45,56,54,46,48,53,57,55,48,54,44,51,54,46,48,56,54,48,50,52,93,44,91,45,56,54,46,49,51,54,56,48,51,44,51,54,46,50,57,53,56,53,57,93,44,91,45,56,54,46,50,56,51,50,53,54,44,51,54,46,51,52,55,53,93,44,91,45,56,54,46,52,53,49,55,50,49,44,51,54,46,51,51,53,54,50,57,93,44,91,45,56,54,46,53,57,52,50,56,54,44,51,54,46,50,52,53,49,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,67,97,109,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,49,57,56,50,56,44,51,50,46,57,56,50,56,56,54,93,44,91,45,57,52,46,57,50,55,55,50,55,44,51,51,46,48,55,48,51,48,52,93,44,91,45,57,53,46,49,50,54,49,51,44,51,51,46,48,51,52,53,56,49,93,44,91,45,57,53,46,49,53,50,50,48,54,44,51,51,46,48,49,51,52,53,93,44,91,45,57,53,46,49,53,50,49,49,44,51,50,46,57,48,50,54,52,49,93,44,91,45,57,52,46,55,49,57,57,52,50,44,51,50,46,57,48,52,53,48,50,93,44,91,45,57,52,46,56,49,57,56,50,56,44,51,50,46,57,56,50,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,50,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,49,51,57,48,55,50,44,51,52,46,49,52,49,56,55,93,44,91,45,57,56,46,48,56,52,52,51,53,44,51,52,46,48,48,50,56,57,51,93,44,91,45,57,55,46,57,52,54,56,48,50,44,51,51,46,57,57,48,56,57,51,93,44,91,45,57,55,46,57,55,55,56,54,44,51,51,46,56,56,57,56,50,53,93,44,91,45,57,55,46,56,55,55,51,56,55,44,51,51,46,56,53,48,50,51,54,93,44,91,45,57,55,46,54,54,49,52,56,57,44,51,51,46,57,57,48,56,49,56,93,44,91,45,57,55,46,53,54,48,56,53,56,44,51,51,46,56,57,57,54,52,53,93,44,91,45,57,55,46,53,54,48,55,54,49,44,51,52,46,48,55,49,49,53,93,44,91,45,57,55,46,53,54,50,53,49,50,44,51,52,46,50,56,57,49,56,51,93,44,91,45,57,56,46,49,51,57,50,50,55,44,51,52,46,50,56,57,56,50,52,93,44,91,45,57,56,46,49,51,57,48,55,50,44,51,52,46,49,52,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,82,105,116,99,104,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,57,56,48,49,55,44,51,57,46,49,56,53,53,55,50,93,44,91,45,56,49,46,50,53,48,50,53,50,44,51,57,46,48,51,53,48,55,52,93,44,91,45,56,49,46,49,54,50,52,53,53,44,51,57,46,48,51,48,54,48,56,93,44,91,45,56,49,46,48,51,51,54,51,50,44,51,57,46,48,48,57,53,56,52,93,44,91,45,56,48,46,56,49,50,57,55,44,51,57,46,49,48,57,52,48,49,93,44,91,45,56,48,46,56,56,56,55,52,52,44,51,57,46,50,57,52,50,57,56,93,44,91,45,56,49,46,48,48,55,56,51,54,44,51,57,46,51,53,48,57,50,51,93,44,91,45,56,49,46,50,50,49,51,51,53,44,51,57,46,51,48,55,52,55,53,93,44,91,45,56,49,46,50,51,57,52,55,55,44,51,57,46,50,54,56,51,50,56,93,44,91,45,56,49,46,50,57,56,48,49,55,44,51,57,46,49,56,53,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,80,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,54,51,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,56,52,57,54,52,44,52,48,46,57,48,49,53,53,93,44,91,45,57,53,46,51,55,51,57,50,51,44,52,48,46,53,56,48,53,48,51,93,44,91,45,57,53,46,50,48,50,50,54,53,44,52,48,46,53,55,56,52,56,56,93,44,91,45,57,52,46,57,49,52,56,57,54,44,52,48,46,53,55,53,48,54,56,93,44,91,45,57,52,46,57,50,56,52,53,57,44,52,48,46,57,48,48,54,53,51,93,44,91,45,57,53,46,51,56,52,57,54,52,44,52,48,46,57,48,49,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,56,56,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,55,48,51,53,49,44,51,57,46,52,49,57,48,53,93,44,91,45,57,53,46,53,56,57,52,55,50,44,51,57,46,50,49,54,48,56,49,93,44,91,45,57,53,46,53,57,54,55,53,57,44,51,57,46,48,54,52,54,55,50,93,44,91,45,57,53,46,53,48,48,50,53,52,44,51,57,46,48,53,54,54,53,54,93,44,91,45,57,53,46,49,56,55,49,48,51,44,51,57,46,48,52,52,49,48,57,93,44,91,45,57,53,46,49,56,48,56,57,49,44,51,57,46,52,49,57,50,49,56,93,44,91,45,57,53,46,53,55,48,51,53,49,44,51,57,46,52,49,57,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,73,98,101,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,54,57,49,44,34,98,101,100,115,34,58,49,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,54,52,52,53,56,44,51,48,46,48,51,54,57,49,56,93,44,91,45,57,49,46,57,57,48,51,57,54,44,50,57,46,57,55,48,51,50,54,93,44,91,45,57,49,46,57,55,57,57,48,56,44,50,57,46,54,53,48,49,50,56,93,44,91,45,57,50,46,48,52,53,54,49,54,44,50,57,46,53,48,53,56,48,54,93,44,91,45,57,49,46,56,52,48,57,51,52,44,50,57,46,51,54,48,49,57,93,44,91,45,57,49,46,53,57,49,56,54,52,44,50,57,46,51,53,57,51,55,53,93,44,91,45,57,49,46,53,57,49,51,44,50,57,46,53,48,55,55,48,49,93,44,91,45,57,49,46,55,50,51,50,53,52,44,50,57,46,54,54,49,50,57,55,93,44,91,45,57,49,46,57,51,53,49,54,50,44,50,57,46,54,55,50,53,55,56,93,44,91,45,57,49,46,55,49,49,49,52,57,44,50,57,46,56,52,54,48,54,53,93,44,91,45,57,49,46,54,50,52,55,48,57,44,50,57,46,57,52,53,50,55,53,93,44,91,45,57,49,46,52,55,49,57,53,49,44,50,57,46,57,53,53,57,56,57,93,44,91,45,57,49,46,50,53,53,50,50,57,44,50,57,46,57,55,49,52,53,55,93,44,91,45,57,49,46,50,50,52,51,53,54,44,51,48,46,48,50,53,51,51,54,93,44,91,45,57,49,46,51,54,56,56,51,53,44,51,48,46,48,53,56,56,50,52,93,44,91,45,57,49,46,54,48,48,51,53,52,44,51,48,46,48,51,51,49,54,57,93,44,91,45,57,49,46,54,53,56,56,56,54,44,51,48,46,49,48,56,50,50,54,93,44,91,45,57,49,46,55,54,53,49,54,56,44,51,48,46,49,48,56,52,57,53,93,44,91,45,57,49,46,56,49,57,50,49,54,44,51,48,46,48,52,52,48,49,51,93,44,91,45,57,49,46,57,53,48,57,57,56,44,51,48,46,48,55,51,50,49,51,93,44,91,45,57,49,46,57,54,52,52,53,56,44,51,48,46,48,51,54,57,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,53,56,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,56,34,44,34,78,65,77,69,34,58,34,75,117,115,105,108,118,97,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,54,50,46,54,55,49,56,49,51,44,54,51,46,51,49,50,56,50,53,93,44,91,45,49,54,50,46,56,55,48,56,54,49,44,54,51,46,50,53,51,53,53,57,93,44,91,45,49,54,51,46,49,49,56,55,48,50,44,54,51,46,49,48,49,53,53,56,93,44,91,45,49,54,51,46,50,53,50,52,55,57,44,54,51,46,48,57,50,52,53,52,93,44,91,45,49,54,51,46,54,53,56,49,48,49,44,54,51,46,50,52,57,55,49,55,93,44,91,45,49,54,52,46,48,53,49,50,53,54,44,54,51,46,51,49,55,51,53,53,93,44,91,45,49,54,52,46,52,57,53,54,55,51,44,54,51,46,50,53,49,49,53,57,93,44,91,45,49,54,52,46,57,48,54,55,51,54,44,54,51,46,48,52,52,56,57,53,93,44,91,45,49,54,52,46,56,57,53,53,51,51,44,54,50,46,57,52,56,54,51,54,93,44,91,45,49,54,53,46,50,50,49,56,56,56,44,54,50,46,55,50,50,52,54,54,93,44,91,45,49,54,53,46,52,52,56,56,55,44,54,50,46,51,57,49,48,50,50,93,44,91,45,49,54,53,46,55,51,57,53,54,54,44,54,50,46,50,48,52,56,53,50,93,44,91,45,49,54,54,46,48,52,57,50,49,51,44,54,50,46,49,48,56,48,50,50,93,44,91,45,49,54,54,46,49,49,50,53,49,52,44,54,49,46,56,55,51,49,52,52,93,44,91,45,49,54,54,46,49,57,55,55,54,51,44,54,49,46,56,51,52,50,55,51,93,44,91,45,49,54,54,46,50,56,56,54,49,51,44,54,49,46,53,56,48,56,48,57,93,44,91,45,49,54,54,46,49,57,52,52,57,44,54,49,46,52,53,57,56,54,55,93,44,91,45,49,54,53,46,55,56,54,56,56,49,44,54,49,46,49,57,56,49,49,53,93,44,91,45,49,54,53,46,54,54,51,54,53,44,54,49,46,48,53,55,56,48,57,93,44,91,45,49,54,53,46,52,49,54,54,55,44,54,49,46,48,49,50,52,56,93,44,91,45,49,54,53,46,50,53,52,49,54,50,44,54,48,46,57,49,55,49,48,56,93,44,91,45,49,54,53,46,48,48,48,53,49,52,44,54,48,46,57,54,51,54,51,53,93,44,91,45,49,54,52,46,54,49,54,53,56,53,44,54,48,46,57,55,57,48,52,57,93,44,91,45,49,54,52,46,53,50,57,57,49,49,44,54,48,46,57,52,48,55,57,54,93,44,91,45,49,54,52,46,50,51,57,55,50,55,44,54,48,46,57,56,55,49,49,57,93,44,91,45,49,54,52,46,50,49,49,55,56,49,44,54,49,46,48,56,50,50,54,50,93,44,91,45,49,54,51,46,57,50,48,56,55,52,44,54,49,46,50,49,48,54,57,50,93,44,91,45,49,54,51,46,57,56,53,49,51,56,44,54,49,46,51,55,50,48,48,51,93,44,91,45,49,54,51,46,54,53,53,51,57,44,54,49,46,51,51,53,56,50,55,93,44,91,45,49,54,51,46,52,50,56,56,54,54,44,54,49,46,52,54,50,50,56,93,44,91,45,49,54,51,46,49,55,49,51,53,52,44,54,49,46,52,52,57,48,55,49,93,44,91,45,49,54,50,46,53,48,53,55,54,49,44,54,49,46,53,53,54,52,50,54,93,44,91,45,49,54,50,46,48,49,51,52,51,56,44,54,49,46,52,55,55,48,53,55,93,44,91,45,49,54,49,46,52,52,57,54,49,49,44,54,49,46,53,54,56,56,51,56,93,44,91,45,49,54,49,46,49,50,54,56,49,50,44,54,49,46,53,57,57,53,52,93,44,91,45,49,54,48,46,55,55,53,50,52,52,44,54,49,46,55,51,56,53,50,55,93,44,91,45,49,54,48,46,51,53,48,49,52,44,54,49,46,56,49,57,48,55,49,93,44,91,45,49,54,48,46,53,51,52,54,55,49,44,54,49,46,57,52,53,57,52,93,44,91,45,49,54,48,46,57,49,53,57,53,51,44,54,49,46,57,52,53,57,52,51,93,44,91,45,49,54,48,46,57,49,53,57,54,52,44,54,50,46,50,48,53,56,54,54,93,44,91,45,49,54,49,46,48,52,56,49,54,53,44,54,50,46,50,48,53,56,54,57,93,44,91,45,49,54,49,46,48,52,56,49,55,54,44,54,50,46,53,53,50,52,49,93,44,91,45,49,54,48,46,57,57,54,50,48,49,44,54,50,46,53,53,50,52,50,52,93,44,91,45,49,54,48,46,57,57,54,50,49,53,44,54,50,46,56,57,56,57,51,54,93,44,91,45,49,54,48,46,56,53,55,57,57,44,54,51,46,48,49,49,57,53,51,93,44,91,45,49,54,50,46,48,48,49,55,54,57,44,54,51,46,48,49,49,57,49,57,93,44,91,45,49,54,50,46,48,48,49,55,57,56,44,54,51,46,48,57,56,53,51,54,93,44,91,45,49,54,50,46,51,56,51,48,56,50,44,54,51,46,50,55,49,56,49,54,93,44,91,45,49,54,50,46,54,55,49,56,49,51,44,54,51,46,51,49,50,56,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,79,110,115,108,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,51,57,49,50,44,34,98,101,100,115,34,58,51,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,55,52,56,48,53,44,51,52,46,57,55,51,57,93,44,91,45,55,55,46,54,53,49,48,52,53,44,51,52,46,57,50,51,51,52,49,93,44,91,45,55,55,46,54,56,48,49,50,55,44,51,52,46,55,50,48,53,57,53,93,44,91,45,55,55,46,53,55,52,57,50,52,44,51,52,46,52,55,56,54,56,49,93,44,91,45,55,55,46,52,56,52,53,51,56,44,51,52,46,51,57,57,55,48,53,93,44,91,45,55,55,46,49,49,55,49,57,56,44,51,52,46,53,56,52,51,54,55,93,44,91,45,55,55,46,48,57,54,57,55,50,44,51,52,46,54,55,50,52,48,49,93,44,91,45,55,55,46,49,54,53,57,56,54,44,51,52,46,55,56,53,48,51,50,93,44,91,45,55,55,46,50,54,55,52,51,51,44,51,52,46,57,50,53,53,51,55,93,44,91,45,55,55,46,51,54,54,55,54,56,44,51,52,46,57,48,56,54,53,93,44,91,45,55,55,46,53,48,50,55,55,49,44,51,52,46,57,54,57,54,51,53,93,44,91,45,55,55,46,54,55,52,56,48,53,44,51,52,46,57,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,70,97,114,105,98,97,117,108,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,57,54,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,52,55,49,50,51,44,52,51,46,56,52,55,57,52,54,93,44,91,45,57,52,46,50,52,55,57,54,56,44,52,51,46,53,48,48,49,51,51,93,44,91,45,57,51,46,57,55,48,55,54,50,44,52,51,46,52,57,57,56,56,54,93,44,91,45,57,51,46,54,52,56,53,51,51,44,52,51,46,52,57,57,54,56,93,44,91,45,57,51,46,54,52,56,50,57,44,52,51,46,56,52,56,49,51,57,93,44,91,45,57,51,46,55,54,55,55,54,49,44,52,51,46,56,52,55,57,53,54,93,44,91,45,57,52,46,50,52,55,49,50,51,44,52,51,46,56,52,55,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,71,114,97,105,110,103,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,54,55,52,48,56,44,51,54,46,51,52,52,51,56,49,93,44,91,45,56,51,46,55,51,50,55,48,52,44,51,54,46,49,54,52,53,56,51,93,44,91,45,56,51,46,54,54,55,52,54,44,51,54,46,48,56,48,53,56,55,93,44,91,45,56,51,46,53,57,55,55,54,54,44,51,54,46,49,54,52,49,56,50,93,44,91,45,56,51,46,52,54,55,48,57,55,44,51,54,46,49,55,52,54,56,56,93,44,91,45,56,51,46,51,53,53,49,57,54,44,51,54,46,50,56,50,53,57,93,44,91,45,56,51,46,50,53,53,50,57,50,44,51,54,46,50,56,57,48,57,50,93,44,91,45,56,51,46,50,56,48,53,57,53,44,51,54,46,51,57,52,54,56,57,93,44,91,45,56,51,46,51,56,54,56,44,51,54,46,52,49,51,49,56,54,93,44,91,45,56,51,46,52,54,54,48,48,50,44,51,54,46,51,54,57,49,56,54,93,44,91,45,56,51,46,54,54,55,52,48,56,44,51,54,46,51,52,52,51,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,70,114,101,101,115,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,48,57,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,57,54,55,49,51,44,51,49,46,55,57,54,49,57,49,93,44,91,45,57,54,46,50,51,54,54,50,57,44,51,49,46,52,49,51,51,57,50,93,44,91,45,57,53,46,55,56,55,51,44,51,49,46,54,49,56,51,56,53,93,44,91,45,57,53,46,56,55,53,57,51,55,44,51,49,46,55,53,53,53,48,51,93,44,91,45,57,53,46,57,56,51,52,52,57,44,51,49,46,55,56,57,57,55,57,93,44,91,45,57,54,46,48,53,50,55,56,54,44,51,50,46,48,48,53,56,57,53,93,44,91,45,57,54,46,48,53,52,55,56,44,51,50,46,48,49,50,53,50,54,93,44,91,45,57,54,46,52,57,54,55,49,51,44,51,49,46,55,57,54,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,105,102,102,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,51,54,50,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,56,49,51,51,52,44,52,48,46,55,50,57,55,53,56,93,44,91,45,55,55,46,54,56,55,48,56,44,52,48,46,54,55,54,55,53,93,44,91,45,55,55,46,56,52,49,56,50,55,44,52,48,46,53,53,48,48,51,53,93,44,91,45,55,55,46,56,49,54,53,49,51,44,52,48,46,53,48,48,48,55,52,93,44,91,45,55,55,46,57,49,51,56,52,52,44,52,48,46,51,57,56,54,55,57,93,44,91,45,55,55,46,55,53,50,49,50,44,52,48,46,51,55,56,53,52,53,93,44,91,45,55,55,46,52,57,55,53,48,54,44,52,48,46,53,56,49,55,52,93,44,91,45,55,55,46,50,56,55,57,52,49,44,52,48,46,54,57,51,53,57,53,93,44,91,45,55,55,46,51,53,54,54,50,56,44,52,48,46,56,48,55,51,51,52,93,44,91,45,55,55,46,51,54,52,49,56,44,52,48,46,56,52,54,57,51,55,93,44,91,45,55,55,46,54,56,49,51,51,52,44,52,48,46,55,50,57,55,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,114,101,110,115,104,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,54,53,44,34,98,101,100,115,34,58,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,52,56,49,57,56,44,51,49,46,57,54,52,54,50,57,93,44,91,45,56,54,46,52,52,56,54,51,53,44,51,49,46,54,53,53,54,49,55,93,44,91,45,56,54,46,52,57,57,50,49,51,44,51,49,46,53,50,53,51,51,49,93,44,91,45,56,54,46,51,57,56,53,51,54,44,51,49,46,52,53,49,51,50,53,93,44,91,45,56,54,46,49,57,51,57,53,49,44,51,49,46,52,52,48,48,55,50,93,44,91,45,56,54,46,49,52,53,56,57,53,44,51,49,46,54,49,55,55,52,49,93,44,91,45,56,54,46,49,52,56,51,51,57,44,51,49,46,55,57,48,57,53,49,93,44,91,45,56,54,46,49,57,49,51,55,57,44,51,49,46,57,54,54,52,53,51,93,44,91,45,56,54,46,51,48,50,50,49,55,44,51,49,46,57,54,53,48,54,53,93,44,91,45,56,54,46,52,48,54,50,55,54,44,51,50,46,48,53,48,55,51,49,93,44,91,45,56,54,46,52,52,56,49,57,56,44,51,49,46,57,54,52,54,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,50,48,34,44,34,78,65,77,69,34,58,34,66,114,105,115,116,111,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,50,49,57,54,52,44,51,54,46,54,52,54,57,51,54,93,44,91,45,56,50,46,50,52,51,51,56,50,44,51,54,46,53,57,53,54,53,49,93,44,91,45,56,50,46,49,52,53,53,55,51,44,51,54,46,53,57,52,55,50,53,93,44,91,45,56,50,46,49,50,49,57,54,52,44,51,54,46,54,52,54,57,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,57,57,34,44,34,78,65,77,69,34,58,34,82,117,110,110,101,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,49,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,49,50,51,52,44,51,49,46,53,56,48,50,54,55,93,44,91,45,57,57,46,55,50,49,54,57,56,44,51,49,46,53,55,54,55,53,57,93,44,91,45,57,57,46,55,49,51,57,55,49,44,51,50,46,48,56,50,48,56,57,93,44,91,45,49,48,48,46,49,53,49,57,49,49,44,51,50,46,48,56,50,54,51,56,93,44,91,45,49,48,48,46,50,51,53,49,51,55,44,51,50,46,48,56,50,51,55,50,93,44,91,45,49,48,48,46,50,51,53,55,54,49,44,51,49,46,54,57,50,57,55,93,44,91,45,49,48,48,46,50,51,52,54,51,54,44,51,49,46,53,56,55,49,52,55,93,44,91,45,49,48,48,46,49,49,49,50,51,52,44,51,49,46,53,56,48,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,52,51,34,44,34,78,65,77,69,34,58,34,84,101,114,114,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,51,50,48,56,49,57,44,50,57,46,56,55,56,57,51,51,93,44,91,45,49,48,50,46,49,49,54,55,50,51,44,50,57,46,55,57,51,48,51,56,93,44,91,45,49,48,49,46,55,54,48,57,50,52,44,50,57,46,55,56,49,56,48,50,93,44,91,45,49,48,49,46,55,53,56,52,44,51,48,46,50,56,56,48,52,52,93,44,91,45,49,48,49,46,54,53,56,53,51,44,51,48,46,51,53,55,56,54,49,93,44,91,45,49,48,49,46,55,52,48,52,50,57,44,51,48,46,52,50,48,56,57,55,93,44,91,45,49,48,49,46,54,52,54,53,48,54,44,51,48,46,53,53,49,49,49,50,93,44,91,45,49,48,49,46,54,54,57,56,51,51,44,51,48,46,54,51,55,57,48,55,93,44,91,45,49,48,49,46,55,54,56,52,50,44,51,48,46,54,53,51,48,55,55,93,44,91,45,49,48,50,46,49,51,55,55,55,56,44,51,48,46,54,53,53,57,56,50,93,44,91,45,49,48,50,46,49,51,56,52,48,54,44,51,48,46,53,57,55,53,50,49,93,44,91,45,49,48,50,46,51,52,50,57,56,54,44,51,48,46,53,57,56,55,53,57,93,44,91,45,49,48,50,46,51,52,51,48,56,53,44,51,48,46,50,56,52,49,49,54,93,44,91,45,49,48,50,46,53,54,54,57,51,55,44,51,48,46,50,56,51,50,54,57,93,44,91,45,49,48,50,46,53,54,55,48,52,57,44,51,48,46,48,53,50,56,48,56,93,44,91,45,49,48,50,46,51,50,48,56,49,57,44,50,57,46,56,55,56,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,82,97,119,108,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,57,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,53,56,56,51,44,52,48,46,48,48,50,51,48,50,93,44,91,45,49,48,49,46,51,50,53,53,49,52,44,52,48,46,48,48,50,55,48,50,93,44,91,45,49,48,49,46,52,49,49,48,50,57,44,52,48,46,48,48,50,53,50,50,93,44,91,45,49,48,49,46,52,49,51,57,49,51,44,51,57,46,53,54,56,51,54,49,93,44,91,45,49,48,49,46,51,56,57,48,54,56,44,51,57,46,53,54,56,51,54,57,93,44,91,45,49,48,48,46,55,52,48,56,55,51,44,51,57,46,53,54,56,48,52,51,93,44,91,45,49,48,48,46,55,51,56,56,50,53,44,52,48,46,48,48,50,49,49,54,93,44,91,45,49,48,48,46,55,53,56,56,51,44,52,48,46,48,48,50,51,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,84,104,111,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,51,56,57,48,54,56,44,51,57,46,53,54,56,51,54,57,93,44,91,45,49,48,49,46,51,57,49,55,49,55,44,51,57,46,49,51,53,49,49,55,93,44,91,45,49,48,48,46,56,49,49,56,53,56,44,51,57,46,49,51,51,51,54,93,44,91,45,49,48,48,46,55,50,49,50,57,54,44,51,57,46,49,51,51,51,56,49,93,44,91,45,49,48,48,46,55,50,48,50,49,51,44,51,57,46,53,54,56,48,51,52,93,44,91,45,49,48,48,46,55,52,48,56,55,51,44,51,57,46,53,54,56,48,52,51,93,44,91,45,49,48,49,46,51,56,57,48,54,56,44,51,57,46,53,54,56,51,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,32,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,57,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,52,53,54,53,57,44,51,49,46,57,49,56,56,56,51,93,44,91,45,56,50,46,56,51,54,51,54,54,44,51,49,46,56,49,54,49,53,52,93,44,91,45,56,50,46,56,51,54,54,51,51,44,51,49,46,54,55,49,51,57,56,93,44,91,45,56,50,46,54,50,55,51,52,50,44,51,49,46,54,55,50,54,55,50,93,44,91,45,56,50,46,53,50,49,52,50,44,51,49,46,55,49,48,55,57,54,93,44,91,45,56,50,46,53,50,48,50,53,49,44,51,49,46,56,51,56,51,56,56,93,44,91,45,56,50,46,52,51,49,51,54,50,44,51,49,46,56,51,55,57,57,51,93,44,91,45,56,50,46,52,51,49,53,51,49,44,51,49,46,57,54,54,49,56,50,93,44,91,45,56,50,46,52,56,51,49,51,49,44,51,49,46,57,54,56,57,54,49,93,44,91,45,56,50,46,53,52,51,54,53,53,44,51,49,46,57,53,56,57,49,52,93,44,91,45,56,50,46,54,52,53,54,53,57,44,51,49,46,57,49,56,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,54,56,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,53,57,51,55,55,44,52,50,46,57,48,57,48,57,55,93,44,91,45,57,53,46,56,53,57,57,52,57,44,52,50,46,53,54,48,54,50,93,44,91,45,57,53,46,55,52,49,54,49,49,44,52,50,46,53,54,49,50,56,53,93,44,91,45,57,53,46,51,56,56,48,49,44,52,50,46,53,54,49,55,52,50,93,44,91,45,57,53,46,51,56,56,49,56,50,44,52,50,46,57,48,57,56,57,55,93,44,91,45,57,53,46,56,53,57,51,55,55,44,52,50,46,57,48,57,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,56,48,52,44,34,98,101,100,115,34,58,52,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,57,51,57,53,56,44,51,53,46,53,51,52,49,49,52,93,44,91,45,57,49,46,56,53,49,57,53,56,44,51,53,46,51,53,56,50,56,55,93,44,91,45,57,50,46,49,49,49,52,54,51,44,51,53,46,51,54,50,55,50,53,93,44,91,45,57,50,46,49,49,57,55,49,57,44,51,53,46,48,54,54,52,57,51,93,44,91,45,57,49,46,56,48,50,53,48,53,44,51,53,46,48,51,48,52,50,53,93,44,91,45,57,49,46,53,56,52,48,48,53,44,51,53,46,48,57,49,53,56,52,93,44,91,45,57,49,46,52,54,53,49,49,52,44,51,53,46,48,56,57,52,53,52,93,44,91,45,57,49,46,51,55,57,55,49,57,44,51,53,46,50,49,53,49,52,57,93,44,91,45,57,49,46,52,51,48,56,56,52,44,51,53,46,51,55,49,53,54,54,93,44,91,45,57,49,46,51,52,55,50,53,55,44,51,53,46,52,51,57,49,48,54,93,44,91,45,57,49,46,53,56,52,54,56,55,44,51,53,46,52,52,50,51,49,49,93,44,91,45,57,49,46,53,56,49,56,56,44,51,53,46,53,51,48,52,52,55,93,44,91,45,57,49,46,55,57,51,57,53,56,44,51,53,46,53,51,52,49,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,101,102,108,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,56,48,52,44,34,98,101,100,115,34,58,50,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,53,49,54,52,51,44,51,51,46,56,49,49,51,57,93,44,91,45,57,48,46,52,53,51,50,51,51,44,51,51,46,51,50,57,52,56,52,93,44,91,45,57,48,46,51,51,49,53,56,57,44,51,51,46,51,48,50,56,50,53,93,44,91,45,57,48,46,50,57,53,48,50,57,44,51,51,46,51,54,49,55,56,52,93,44,91,45,57,48,46,49,55,52,54,49,52,44,51,51,46,51,51,51,51,55,56,93,44,91,45,57,48,46,49,48,49,52,48,49,44,51,51,46,52,53,56,57,52,93,44,91,45,57,48,46,49,50,55,55,55,53,44,51,51,46,54,55,54,57,53,54,93,44,91,45,57,48,46,49,51,54,55,56,55,44,51,51,46,55,50,49,54,52,56,93,44,91,45,57,48,46,49,56,50,53,56,52,44,51,51,46,56,48,57,51,50,50,93,44,91,45,57,48,46,52,53,49,54,52,51,44,51,51,46,56,49,49,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,67,111,111,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,53,48,52,53,51,44,51,56,46,57,50,56,50,52,52,93,44,91,45,57,51,46,48,53,57,57,55,52,44,51,56,46,54,57,51,48,55,55,93,44,91,45,57,50,46,56,51,57,56,51,55,44,51,56,46,54,56,51,57,55,52,93,44,91,45,57,50,46,54,49,55,49,52,55,44,51,56,46,54,56,48,48,49,51,93,44,91,45,57,50,46,52,57,56,51,55,55,44,51,56,46,57,50,50,48,56,52,93,44,91,45,57,50,46,53,53,56,48,56,54,44,51,56,46,57,55,48,54,57,50,93,44,91,45,57,50,46,56,52,49,54,49,55,44,51,56,46,57,55,57,56,50,49,93,44,91,45,57,50,46,57,51,52,53,54,57,44,51,57,46,48,54,52,53,52,55,93,44,91,45,57,51,46,48,53,48,52,53,51,44,51,56,46,57,50,56,50,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,105,99,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,55,48,44,34,98,101,100,115,34,58,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,49,55,52,48,55,44,52,54,46,50,52,54,54,49,56,93,44,91,45,56,56,46,49,49,54,56,52,53,44,52,53,46,57,50,49,54,50,55,93,44,91,45,56,56,46,48,53,56,50,53,51,44,52,53,46,55,56,48,54,50,57,93,44,91,45,56,55,46,56,52,54,54,48,50,44,52,53,46,55,50,50,53,52,52,93,44,91,45,56,55,46,54,57,55,49,53,57,44,52,53,46,55,50,50,57,54,93,44,91,45,56,55,46,54,57,54,57,52,54,44,52,53,46,56,57,56,56,52,50,93,44,91,45,56,55,46,54,49,55,48,57,49,44,52,53,46,57,56,54,48,49,52,93,44,91,45,56,55,46,54,49,53,53,57,55,44,52,54,46,50,52,54,54,53,51,93,44,91,45,56,56,46,49,49,55,52,48,55,44,52,54,46,50,52,54,54,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,87,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,54,57,55,44,34,98,101,100,115,34,58,49,48,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,54,49,50,55,53,44,52,49,46,55,50,52,54,53,54,93,44,91,45,56,56,46,50,53,50,50,51,49,44,52,49,46,52,54,51,48,54,54,93,44,91,45,56,56,46,50,52,52,49,52,52,44,52,49,46,50,48,49,53,54,54,93,44,91,45,56,56,46,48,49,49,56,49,44,52,49,46,50,48,53,53,48,56,93,44,91,45,56,56,46,48,49,51,57,49,57,44,52,49,46,50,57,50,52,52,55,93,44,91,45,56,55,46,53,50,54,55,51,49,44,52,49,46,50,57,56,48,53,50,93,44,91,45,56,55,46,53,50,53,55,48,53,44,52,49,46,52,55,48,50,56,51,93,44,91,45,56,55,46,55,57,48,51,48,51,44,52,49,46,52,54,57,56,52,54,93,44,91,45,56,55,46,55,57,50,55,57,51,44,52,49,46,53,53,56,53,52,93,44,91,45,56,56,46,48,50,56,57,55,51,44,52,49,46,54,56,53,50,52,50,93,44,91,45,56,56,46,50,54,49,50,55,53,44,52,49,46,55,50,52,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,68,101,97,102,32,83,109,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,57,57,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,53,50,53,49,56,52,44,51,52,46,55,52,54,57,51,49,93,44,91,45,49,48,50,46,49,54,56,56,51,57,44,51,52,46,55,52,55,52,49,55,93,44,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,44,91,45,49,48,51,46,48,52,50,53,49,49,44,51,53,46,49,56,51,49,53,55,93,44,91,45,49,48,51,46,48,52,50,55,48,49,44,51,52,46,57,53,52,49,52,50,93,44,91,45,49,48,51,46,48,52,50,57,56,50,44,51,52,46,55,52,55,51,54,49,93,44,91,45,49,48,50,46,53,50,53,49,56,52,44,51,52,46,55,52,54,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,114,111,111,107,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,50,51,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,50,56,48,50,52,44,52,52,46,53,52,51,49,50,54,93,44,91,45,57,55,46,49,50,57,54,55,49,44,52,52,46,49,57,53,57,51,51,93,44,91,45,57,54,46,56,56,57,50,49,54,44,52,52,46,49,57,53,55,48,53,93,44,91,45,57,54,46,52,53,50,55,55,51,44,52,52,46,49,57,54,55,56,93,44,91,45,57,54,46,52,53,49,56,50,44,52,52,46,53,52,51,54,53,50,93,44,91,45,57,54,46,56,56,53,53,48,52,44,52,52,46,53,52,51,55,55,51,93,44,91,45,57,55,46,49,50,56,48,50,52,44,52,52,46,53,52,51,49,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,57,49,54,52,44,34,98,101,100,115,34,58,56,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,48,56,49,57,44,51,57,46,52,53,54,49,53,53,93,44,91,45,57,52,46,54,48,49,55,51,51,44,51,57,46,49,53,57,54,48,51,93,44,91,45,57,52,46,54,48,55,51,53,52,44,51,57,46,49,49,51,52,52,52,93,44,91,45,57,52,46,52,54,49,53,57,44,51,57,46,49,50,48,51,55,50,93,44,91,45,57,52,46,50,56,57,56,55,51,44,51,57,46,50,51,55,49,48,55,93,44,91,45,57,52,46,50,49,50,53,49,53,44,51,57,46,50,48,55,48,56,54,93,44,91,45,57,52,46,50,49,48,54,52,50,44,51,57,46,52,53,52,54,56,50,93,44,91,45,57,52,46,54,48,48,56,49,57,44,51,57,46,52,53,54,49,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,111,97,104,111,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,48,50,44,34,98,101,100,115,34,58,49,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,54,57,51,52,55,44,51,52,46,53,50,52,56,54,55,93,44,91,45,57,48,46,53,56,48,54,56,49,44,51,52,46,52,49,48,53,53,49,93,44,91,45,57,48,46,56,51,51,51,51,53,44,51,52,46,50,54,52,50,54,52,93,44,91,45,57,48,46,57,53,53,57,55,52,44,51,52,46,49,50,48,49,50,53,93,44,91,45,57,48,46,54,53,57,52,53,55,44,51,52,46,49,49,56,56,54,55,93,44,91,45,57,48,46,54,53,55,48,48,50,44,51,51,46,57,56,55,53,56,54,93,44,91,45,57,48,46,52,53,49,48,49,50,44,51,51,46,57,56,53,54,56,57,93,44,91,45,57,48,46,52,53,48,57,56,49,44,51,52,46,48,55,50,57,51,50,93,44,91,45,57,48,46,52,53,48,53,55,50,44,51,52,46,50,54,50,52,48,50,93,44,91,45,57,48,46,51,57,57,52,57,56,44,51,52,46,52,50,51,56,48,55,93,44,91,45,57,48,46,53,54,57,51,52,55,44,51,52,46,53,50,52,56,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,51,50,49,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,52,50,51,54,53,44,52,48,46,49,56,48,55,55,56,93,44,91,45,56,54,46,54,57,53,56,48,52,44,52,48,46,49,55,56,54,53,55,93,44,91,45,56,54,46,54,57,53,48,55,49,44,51,57,46,57,50,50,55,55,93,44,91,45,56,54,46,51,50,54,50,57,51,44,51,57,46,57,50,52,48,50,57,93,44,91,45,56,54,46,50,51,57,55,51,57,44,51,57,46,57,50,54,48,53,53,93,44,91,45,56,54,46,50,52,50,51,54,53,44,52,48,46,49,56,48,55,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,68,101,115,32,77,111,105,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,48,48,44,34,98,101,100,115,34,58,50,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,55,48,55,49,44,52,49,46,48,55,52,49,49,50,93,44,91,45,57,49,46,52,48,57,52,53,51,44,52,48,46,56,49,50,57,48,53,93,44,91,45,57,49,46,49,49,50,52,54,55,44,52,48,46,54,57,54,51,48,49,93,44,91,45,57,49,46,48,57,54,57,52,54,44,52,48,46,56,49,49,52,48,51,93,44,91,45,57,48,46,57,54,50,57,49,54,44,52,48,46,57,50,52,57,53,55,93,44,91,45,57,48,46,57,52,56,57,56,57,44,52,49,46,48,55,48,50,53,93,44,91,45,57,48,46,57,52,57,51,56,49,44,52,49,46,48,55,50,55,49,93,44,91,45,57,49,46,51,55,48,55,49,44,52,49,46,48,55,52,49,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,50,56,56,44,34,98,101,100,115,34,58,54,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,54,53,54,50,44,52,49,46,55,50,56,57,50,56,93,44,91,45,57,48,46,53,51,55,54,49,54,44,52,49,46,55,55,54,51,57,53,93,44,91,45,57,48,46,55,48,50,49,52,50,44,52,49,46,55,51,55,55,50,56,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,49,46,55,55,49,51,57,50,93,44,91,45,57,48,46,56,57,57,56,53,51,44,52,49,46,53,57,55,49,51,51,93,44,91,45,57,48,46,55,56,51,56,49,50,44,52,49,46,53,57,54,53,51,49,93,44,91,45,57,48,46,55,56,54,50,56,50,44,52,49,46,52,53,50,56,56,56,93,44,91,45,57,48,46,52,54,49,52,51,50,44,52,49,46,53,50,51,53,51,51,93,44,91,45,57,48,46,51,52,51,50,50,56,44,52,49,46,53,56,55,56,51,51,93,44,91,45,57,48,46,51,49,54,53,54,50,44,52,49,46,55,50,56,57,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,79,116,116,97,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,50,57,55,52,54,44,51,57,46,50,49,57,50,55,51,93,44,91,45,57,55,46,57,50,56,53,54,44,51,56,46,57,53,56,51,57,53,93,44,91,45,57,55,46,51,55,49,54,49,52,44,51,56,46,57,53,55,56,53,50,93,44,91,45,57,55,46,51,55,49,49,53,52,44,51,57,46,49,51,49,57,54,49,93,44,91,45,57,55,46,51,54,57,56,51,57,44,51,57,46,51,48,54,48,49,49,93,44,91,45,57,55,46,57,50,57,48,57,55,44,51,57,46,51,48,54,51,57,55,93,44,91,45,57,55,46,57,50,57,55,52,54,44,51,57,46,50,49,57,50,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,48,53,44,34,98,101,100,115,34,58,52,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,56,57,53,51,57,44,51,48,46,53,57,55,55,51,52,93,44,91,45,56,50,46,55,50,54,53,56,51,44,51,48,46,53,53,57,52,56,54,93,44,91,45,56,50,46,54,52,53,53,53,53,44,51,48,46,52,48,54,52,49,55,93,44,91,45,56,50,46,55,49,55,55,55,51,44,51,48,46,51,50,49,51,57,49,93,44,91,45,56,50,46,55,57,52,53,57,52,44,51,48,46,51,51,55,48,50,52,93,44,91,45,56,50,46,56,48,48,52,55,55,44,50,57,46,57,51,50,49,50,54,93,44,91,45,56,50,46,54,53,56,53,53,52,44,50,57,46,56,51,48,49,52,52,93,44,91,45,56,50,46,53,50,57,55,48,53,44,50,57,46,57,52,48,56,56,49,93,44,91,45,56,50,46,53,54,57,50,56,44,50,57,46,57,55,52,57,56,93,44,91,45,56,50,46,52,53,56,51,54,52,44,51,48,46,49,51,54,52,52,57,93,44,91,45,56,50,46,52,53,57,55,57,51,44,51,48,46,53,56,52,50,54,55,93,44,91,45,56,50,46,53,56,52,48,48,55,44,51,48,46,53,57,49,53,52,56,93,44,91,45,56,50,46,54,56,57,53,51,57,44,51,48,46,53,57,55,55,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,111,108,109,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,51,48,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,57,55,57,57,50,44,51,48,46,57,57,54,57,51,49,93,44,91,45,56,54,46,48,51,53,48,51,57,44,51,48,46,57,57,51,51,50,93,44,91,45,56,54,46,48,51,55,53,57,49,44,51,48,46,55,48,52,53,55,50,93,44,91,45,56,53,46,56,52,52,52,50,49,44,51,48,46,55,48,51,49,51,93,44,91,45,56,53,46,54,49,57,48,49,49,44,51,48,46,55,52,51,56,54,56,93,44,91,45,56,53,46,53,57,57,57,51,52,44,51,48,46,56,51,48,53,53,50,93,44,91,45,56,53,46,52,57,55,57,57,50,44,51,48,46,57,57,54,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,54,50,54,44,34,98,101,100,115,34,58,49,48,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,56,52,53,51,51,44,51,48,46,54,55,55,50,57,50,93,44,91,45,56,57,46,50,52,48,48,55,51,44,51,48,46,54,55,55,49,54,93,44,91,45,56,57,46,51,52,49,52,52,54,44,51,48,46,54,52,55,55,50,93,44,91,45,56,57,46,51,52,48,56,52,55,44,51,48,46,51,53,55,57,57,53,93,44,91,45,56,57,46,51,48,54,49,51,53,44,51,48,46,49,55,55,57,52,49,93,44,91,45,56,57,46,49,56,51,54,54,57,44,51,48,46,50,49,50,49,53,53,93,44,91,45,56,57,46,48,57,54,52,55,54,44,51,48,46,49,54,53,56,50,57,93,44,91,45,56,56,46,56,56,57,48,51,44,51,48,46,49,51,57,56,52,53,93,44,91,45,56,56,46,55,57,53,49,52,55,44,51,48,46,49,57,57,57,57,52,93,44,91,45,56,56,46,55,57,53,50,56,55,44,51,48,46,51,53,48,51,54,49,93,44,91,45,56,56,46,56,56,51,49,51,44,51,48,46,52,49,56,55,57,56,93,44,91,45,56,56,46,56,56,52,53,51,51,44,51,48,46,54,55,55,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,85,116,117,97,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,52,48,50,44,34,98,101,100,115,34,58,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,56,50,54,49,50,56,44,49,56,46,51,50,51,51,56,50,93,44,91,45,54,54,46,56,49,55,50,55,49,44,49,56,46,50,51,48,51,51,54,93,44,91,45,54,54,46,54,57,50,53,55,50,44,49,56,46,50,49,53,56,56,51,93,44,91,45,54,54,46,54,55,48,52,57,52,44,49,56,46,49,53,50,56,51,49,93,44,91,45,54,54,46,54,52,57,52,54,55,44,49,56,46,49,53,56,56,53,55,93,44,91,45,54,54,46,53,54,54,54,50,44,49,56,46,50,57,56,53,52,57,93,44,91,45,54,54,46,54,48,54,57,56,57,44,49,56,46,51,50,56,49,56,54,93,44,91,45,54,54,46,55,55,48,48,55,50,44,49,56,46,51,50,53,48,49,51,93,44,91,45,54,54,46,56,50,54,49,50,56,44,49,56,46,51,50,51,51,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,114,97,100,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,53,53,55,44,34,98,101,100,115,34,58,50,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,52,54,51,51,57,44,51,53,46,50,56,55,55,49,55,93,44,91,45,56,53,46,48,50,51,54,44,51,53,46,49,50,53,48,55,51,93,44,91,45,56,52,46,57,55,54,57,55,54,44,51,52,46,57,56,55,54,54,52,93,44,91,45,56,52,46,56,49,48,52,55,55,44,51,52,46,57,56,55,54,48,53,93,44,91,45,56,52,46,55,55,53,56,53,51,44,51,52,46,57,56,55,56,56,52,93,44,91,45,56,52,46,54,57,57,57,51,55,44,51,53,46,49,55,48,57,55,52,93,44,91,45,56,52,46,55,48,51,54,48,55,44,51,53,46,50,52,49,48,52,51,93,44,91,45,56,52,46,56,54,48,49,54,52,44,51,53,46,51,53,48,48,55,52,93,44,91,45,56,52,46,57,52,54,51,51,57,44,51,53,46,50,56,55,55,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,114,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,52,48,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,54,49,53,50,57,44,52,54,46,55,54,54,53,53,93,44,91,45,57,51,46,48,53,52,56,52,55,44,52,54,46,52,49,57,50,54,57,93,44,91,45,57,50,46,50,57,50,56,54,44,52,54,46,52,49,55,50,50,93,44,91,45,57,50,46,50,57,50,50,52,50,44,52,54,46,54,54,51,51,49,56,93,44,91,45,57,50,46,51,48,49,54,55,54,44,52,54,46,55,54,52,49,51,52,93,44,91,45,57,51,46,48,54,49,53,50,57,44,52,54,46,55,54,54,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,56,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,48,50,49,52,44,51,50,46,55,57,51,48,56,56,93,44,91,45,57,52,46,53,48,55,51,50,51,44,51,50,46,54,57,51,55,51,56,93,44,91,45,57,52,46,51,57,48,55,56,51,44,51,50,46,54,57,52,51,55,55,93,44,91,45,57,52,46,50,56,51,48,50,56,44,51,50,46,55,52,54,55,50,57,93,44,91,45,57,52,46,49,55,50,49,51,54,44,51,50,46,54,57,54,57,93,44,91,45,57,52,46,48,52,51,49,52,55,44,51,50,46,54,57,51,48,51,93,44,91,45,57,52,46,48,52,51,48,55,56,44,51,50,46,56,56,49,48,56,57,93,44,91,45,57,52,46,54,53,51,57,57,52,44,51,50,46,56,55,57,53,48,54,93,44,91,45,57,52,46,55,48,53,56,55,56,44,51,50,46,56,55,57,49,55,55,93,44,91,45,57,52,46,55,48,50,49,52,44,51,50,46,55,57,51,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,83,99,104,111,104,97,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,51,54,52,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,54,52,56,50,57,56,44,52,50,46,56,50,57,53,53,56,93,44,91,45,55,52,46,54,51,48,54,51,49,44,52,50,46,54,50,54,54,55,52,93,44,91,45,55,52,46,55,49,49,53,56,44,52,50,46,53,49,55,55,57,57,93,44,91,45,55,52,46,54,49,56,56,57,53,44,52,50,46,52,50,52,51,56,57,93,44,91,45,55,52,46,52,52,51,53,48,54,44,52,50,46,51,53,53,48,49,55,93,44,91,45,55,52,46,50,53,52,51,48,51,44,52,50,46,52,48,56,50,48,55,93,44,91,45,55,52,46,49,56,48,50,55,52,44,52,50,46,55,50,57,57,55,57,93,44,91,45,55,52,46,50,54,51,51,49,52,44,52,50,46,55,57,54,53,51,52,93,44,91,45,55,52,46,52,53,52,57,49,49,44,52,50,46,55,55,50,57,55,57,93,44,91,45,55,52,46,54,52,56,50,57,56,44,52,50,46,56,50,57,53,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,80,97,119,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,50,56,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,54,56,50,56,55,44,51,54,46,49,54,49,57,56,93,44,91,45,57,54,46,52,51,51,56,49,50,44,51,54,46,50,56,53,56,56,57,93,44,91,45,57,54,46,53,49,53,50,50,57,44,51,54,46,50,57,56,51,51,50,93,44,91,45,57,54,46,54,51,53,55,50,55,44,51,54,46,52,50,53,57,48,56,93,44,91,45,57,54,46,55,49,48,55,54,57,44,51,54,46,52,51,55,54,53,54,93,44,91,45,57,54,46,55,51,55,50,51,57,44,51,54,46,53,53,48,48,56,56,93,44,91,45,57,54,46,57,52,48,50,51,53,44,51,54,46,52,53,53,53,50,53,93,44,91,45,57,55,46,48,48,57,55,56,53,44,51,54,46,53,48,54,57,51,53,93,44,91,45,57,55,46,48,51,50,49,48,54,44,51,54,46,51,51,51,51,53,52,93,44,91,45,57,54,46,57,50,53,48,54,57,44,51,54,46,50,52,54,52,55,52,93,44,91,45,57,54,46,56,49,57,48,48,53,44,51,54,46,49,53,56,56,56,54,93,44,91,45,57,54,46,54,50,50,49,50,44,51,54,46,49,53,57,57,48,51,93,44,91,45,57,54,46,50,57,55,56,56,56,44,51,54,46,49,54,50,50,55,57,93,44,91,45,57,54,46,50,54,56,50,56,55,44,51,54,46,49,54,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,114,111,111,109,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,52,48,50,44,34,98,101,100,115,34,58,53,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,54,52,48,50,44,52,50,46,52,49,53,55,48,50,93,44,91,45,55,54,46,49,51,48,49,56,49,44,52,50,46,52,49,48,51,51,55,93,44,91,45,55,54,46,48,56,49,49,51,52,44,52,50,46,50,51,48,52,57,53,93,44,91,45,55,54,46,49,49,54,50,50,53,44,52,50,46,49,56,53,54,49,93,44,91,45,55,54,46,49,48,53,56,52,44,52,49,46,57,57,56,56,53,56,93,44,91,45,55,53,46,52,56,51,49,52,57,44,52,49,46,57,57,57,50,49,52,93,44,91,45,55,53,46,51,53,57,53,55,57,44,52,49,46,57,57,57,52,52,53,93,44,91,45,55,53,46,52,50,49,55,55,54,44,52,50,46,48,52,50,48,51,93,44,91,45,55,53,46,52,49,56,52,50,49,44,52,50,46,49,57,53,48,51,50,93,44,91,45,55,53,46,54,51,55,49,49,44,52,50,46,49,57,53,54,50,56,93,44,91,45,55,53,46,54,51,56,50,57,57,44,52,50,46,50,52,56,54,56,54,93,44,91,45,55,53,46,56,52,51,55,57,50,44,52,50,46,50,53,57,55,48,55,93,44,91,45,55,53,46,56,54,52,48,50,44,52,50,46,52,49,53,55,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,49,34,44,34,78,65,77,69,34,58,34,76,105,98,101,114,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,56,54,50,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,57,54,55,48,56,44,51,48,46,49,54,55,50,49,52,93,44,91,45,57,52,46,57,56,49,52,54,44,50,57,46,56,56,52,50,55,54,93,44,91,45,57,52,46,52,52,50,50,51,53,44,50,57,46,56,56,57,53,51,56,93,44,91,45,57,52,46,52,52,52,57,49,44,51,48,46,49,49,51,48,49,53,93,44,91,45,57,52,46,53,57,54,51,51,56,44,51,48,46,49,49,50,49,48,49,93,44,91,45,57,52,46,55,51,50,55,51,50,44,51,48,46,52,57,48,48,54,54,93,44,91,45,57,52,46,56,52,57,52,49,52,44,51,48,46,52,57,51,53,53,51,93,44,91,45,57,53,46,49,54,53,56,57,55,44,51,48,46,51,52,52,57,55,54,93,44,91,45,57,53,46,48,57,54,55,48,56,44,51,48,46,49,54,55,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,116,104,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,57,51,54,44,34,98,101,100,115,34,58,49,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,56,57,54,54,51,44,51,57,46,51,56,52,49,57,53,93,44,91,45,56,50,46,50,54,56,53,56,51,44,51,57,46,50,48,51,55,54,93,44,91,45,56,49,46,55,53,54,48,56,44,51,57,46,49,56,48,53,54,93,44,91,45,56,49,46,55,50,53,54,50,50,44,51,57,46,50,49,53,57,48,53,93,44,91,45,56,49,46,56,53,51,54,54,56,44,51,57,46,51,49,56,49,54,53,93,44,91,45,56,49,46,56,52,52,56,54,51,44,51,57,46,52,53,48,50,49,54,93,44,91,45,56,50,46,48,53,53,55,55,57,44,51,57,46,52,54,48,48,53,51,93,44,91,45,56,50,46,48,52,55,53,50,56,44,51,57,46,53,53,48,56,50,53,93,44,91,45,56,50,46,49,53,57,49,54,49,44,51,57,46,53,53,54,53,55,52,93,44,91,45,56,50,46,49,54,55,51,55,57,44,51,57,46,52,54,54,51,48,55,93,44,91,45,56,50,46,50,56,48,52,49,44,51,57,46,52,55,50,57,48,54,93,44,91,45,56,50,46,50,56,57,54,54,51,44,51,57,46,51,56,52,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,56,56,54,44,34,98,101,100,115,34,58,50,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,52,49,57,49,49,44,52,48,46,52,50,52,55,93,44,91,45,56,48,46,56,54,53,53,48,52,44,52,48,46,52,50,50,57,50,57,93,44,91,45,56,48,46,56,56,50,56,57,50,44,52,48,46,49,53,57,52,57,53,93,44,91,45,56,48,46,55,48,50,55,53,44,52,48,46,49,53,55,50,52,57,93,44,91,45,56,48,46,54,56,49,56,49,49,44,52,48,46,49,56,53,53,54,51,93,44,91,45,56,48,46,53,57,57,56,57,53,44,52,48,46,51,49,55,54,54,54,93,44,91,45,56,48,46,54,50,57,54,56,52,44,52,48,46,51,57,52,57,55,56,93,44,91,45,56,48,46,53,57,52,54,54,52,44,52,48,46,52,55,49,51,56,57,93,44,91,45,56,48,46,54,54,55,57,53,55,44,52,48,46,53,56,50,52,57,54,93,44,91,45,56,48,46,56,54,49,57,57,52,44,52,48,46,53,57,57,52,48,52,93,44,91,45,56,48,46,57,50,48,57,50,44,52,48,46,53,53,54,51,49,53,93,44,91,45,56,48,46,57,52,49,57,49,49,44,52,48,46,52,50,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,54,53,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,50,53,48,57,50,44,51,57,46,49,49,53,56,48,51,93,44,91,45,55,57,46,56,57,54,48,57,52,44,51,56,46,57,55,51,52,48,52,93,44,91,45,56,48,46,48,56,53,48,54,50,44,51,56,46,57,52,55,50,51,54,93,44,91,45,56,48,46,49,50,54,49,48,53,44,51,56,46,55,52,53,56,51,54,93,44,91,45,56,48,46,50,56,48,48,53,57,44,51,56,46,54,57,52,56,54,55,93,44,91,45,56,48,46,49,56,51,57,51,49,44,51,56,46,53,50,53,51,56,54,93,44,91,45,56,48,46,50,52,53,53,49,56,44,51,56,46,51,56,56,52,53,55,93,44,91,45,56,48,46,49,49,54,57,50,44,51,56,46,52,55,51,57,53,51,93,44,91,45,56,48,46,48,50,57,50,48,56,44,51,56,46,52,53,57,49,56,52,93,44,91,45,55,57,46,56,54,51,50,53,44,51,56,46,53,53,48,56,50,93,44,91,45,55,57,46,55,57,56,50,56,51,44,51,56,46,55,48,51,50,49,49,93,44,91,45,55,57,46,54,50,54,55,55,52,44,51,56,46,54,54,52,50,49,52,93,44,91,45,55,57,46,53,49,48,48,55,51,44,51,56,46,55,56,48,55,49,50,93,44,91,45,55,57,46,53,51,57,48,55,53,44,51,56,46,56,52,49,52,49,49,93,44,91,45,55,57,46,52,53,53,52,55,50,44,51,56,46,57,50,57,57,49,93,44,91,45,55,57,46,51,52,57,56,54,55,44,51,56,46,57,53,55,53,48,57,93,44,91,45,55,57,46,51,53,55,54,54,54,44,51,56,46,57,54,52,53,48,57,93,44,91,45,55,57,46,53,48,56,55,54,53,44,51,56,46,57,55,53,49,55,51,93,44,91,45,55,57,46,55,56,53,54,56,53,44,51,57,46,48,51,55,52,48,52,93,44,91,45,55,57,46,56,50,53,48,57,50,44,51,57,46,49,49,53,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,52,57,55,44,34,98,101,100,115,34,58,50,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,52,57,52,48,56,53,44,51,57,46,52,54,57,53,57,57,93,44,91,45,56,48,46,49,57,55,50,56,54,44,51,57,46,51,57,51,49,56,54,93,44,91,45,56,48,46,48,50,53,48,48,49,44,51,57,46,52,48,49,52,52,54,93,44,91,45,55,57,46,57,51,56,56,55,56,44,51,57,46,52,53,50,52,54,53,93,44,91,45,56,48,46,49,53,51,53,51,50,44,51,57,46,54,49,48,52,50,54,93,44,91,45,56,48,46,51,57,53,56,49,44,51,57,46,54,51,55,51,52,55,93,44,91,45,56,48,46,52,57,56,49,53,56,44,51,57,46,53,54,50,56,57,57,93,44,91,45,56,48,46,52,57,52,48,56,53,44,51,57,46,52,54,57,53,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,52,48,48,44,34,98,101,100,115,34,58,51,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,48,54,49,56,53,52,44,51,57,46,53,54,56,55,52,54,93,44,91,45,55,53,46,48,56,51,56,50,51,44,51,57,46,52,53,55,51,53,52,93,44,91,45,55,53,46,50,51,56,52,51,52,44,51,57,46,53,53,57,48,51,57,93,44,91,45,55,53,46,52,52,52,55,53,49,44,51,57,46,51,53,53,48,56,57,93,44,91,45,55,53,46,51,50,49,48,50,49,44,51,57,46,50,53,49,51,55,57,93,44,91,45,55,53,46,49,54,56,52,54,50,44,51,57,46,48,53,54,49,55,57,93,44,91,45,55,52,46,57,49,53,54,56,57,44,51,57,46,49,55,53,55,53,53,93,44,91,45,55,52,46,56,54,49,50,57,52,44,51,57,46,51,50,51,56,49,53,93,44,91,45,55,52,46,56,53,53,57,55,56,44,51,57,46,52,50,52,50,51,56,93,44,91,45,55,52,46,57,56,53,50,55,49,44,51,57,46,53,49,52,57,54,55,93,44,91,45,55,53,46,48,54,49,56,53,52,44,51,57,46,53,54,56,55,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,48,57,50,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,48,51,55,55,51,44,51,57,46,52,52,53,48,53,54,93,44,91,45,49,50,48,46,53,48,53,52,52,53,44,51,57,46,52,52,54,49,49,55,93,44,91,45,49,50,48,46,53,55,55,49,56,56,44,51,57,46,53,50,51,49,52,52,93,44,91,45,49,50,48,46,55,53,53,55,50,57,44,51,57,46,52,53,50,54,54,51,93,44,91,45,49,50,49,46,48,50,50,48,56,53,44,51,57,46,51,57,49,53,53,56,93,44,91,45,49,50,49,46,49,50,50,51,49,53,44,51,57,46,51,55,56,56,50,54,93,44,91,45,49,50,49,46,50,54,54,57,49,49,44,51,57,46,50,55,49,54,48,57,93,44,91,45,49,50,49,46,50,55,57,53,51,51,44,51,57,46,48,51,52,54,49,56,93,44,91,45,49,50,49,46,48,52,49,54,48,56,44,51,57,46,48,49,51,55,57,49,93,44,91,45,49,50,48,46,57,54,54,48,56,44,51,57,46,49,50,55,57,50,56,93,44,91,45,49,50,48,46,55,50,55,56,57,51,44,51,57,46,50,56,56,48,56,49,93,44,91,45,49,50,48,46,54,52,53,55,57,53,44,51,57,46,51,49,53,49,53,53,93,44,91,45,49,50,48,46,48,48,54,51,50,51,44,51,57,46,51,49,54,52,57,54,93,44,91,45,49,50,48,46,48,48,51,55,55,51,44,51,57,46,52,52,53,48,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,52,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,57,54,51,51,44,52,54,46,55,57,52,56,51,56,93,44,91,45,57,50,46,48,50,48,50,57,52,44,52,54,46,55,48,52,48,52,49,93,44,91,45,57,50,46,48,56,57,52,57,51,44,52,54,46,55,52,57,50,51,55,93,44,91,45,57,50,46,50,49,50,51,57,50,44,52,54,46,54,52,57,57,52,49,93,44,91,45,57,50,46,50,57,50,50,52,50,44,52,54,46,54,54,51,51,49,56,93,44,91,45,57,50,46,50,57,50,56,54,44,52,54,46,52,49,55,50,50,93,44,91,45,57,50,46,50,57,51,55,48,53,44,52,54,46,49,53,55,51,50,49,93,44,91,45,57,50,46,48,52,57,54,51,54,44,52,54,46,49,53,55,53,57,55,93,44,91,45,57,49,46,53,53,49,50,56,50,44,52,54,46,49,53,55,48,52,53,93,44,91,45,57,49,46,53,52,57,51,56,53,44,52,54,46,56,57,51,50,49,51,93,44,91,45,57,49,46,55,57,54,51,51,44,52,54,46,55,57,52,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,49,52,53,44,34,98,101,100,115,34,58,50,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,50,48,55,49,50,44,51,55,46,50,51,56,51,50,56,93,44,91,45,56,52,46,57,48,49,49,49,50,44,51,55,46,49,49,54,50,57,55,93,44,91,45,56,52,46,56,51,53,55,49,50,44,51,54,46,57,57,55,54,49,50,93,44,91,45,56,52,46,54,55,57,49,54,53,44,51,54,46,57,56,48,57,49,52,93,44,91,45,56,52,46,53,55,56,49,53,56,44,51,54,46,56,54,55,49,51,51,93,44,91,45,56,52,46,51,53,56,48,50,52,44,51,54,46,57,53,57,52,93,44,91,45,56,52,46,50,56,57,48,55,54,44,51,55,46,49,53,49,55,52,93,44,91,45,56,52,46,53,48,50,57,51,50,44,51,55,46,51,50,56,56,48,49,93,44,91,45,56,52,46,53,53,54,52,54,49,44,51,55,46,51,53,53,55,50,57,93,44,91,45,56,52,46,55,50,48,55,49,50,44,51,55,46,50,51,56,51,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,69,100,103,101,99,111,109,98,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,51,51,50,44,34,98,101,100,115,34,58,49,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,57,55,57,53,54,44,51,54,46,49,53,51,49,53,93,44,91,45,55,55,46,56,50,56,52,52,52,44,51,53,46,56,54,55,50,48,56,93,44,91,45,55,55,46,55,53,49,51,51,57,44,51,53,46,56,50,55,55,57,52,93,44,91,45,55,55,46,54,54,53,49,51,49,44,51,53,46,54,55,52,57,51,53,93,44,91,45,55,55,46,51,57,48,49,53,52,44,51,53,46,56,51,51,48,54,50,93,44,91,45,55,55,46,51,53,48,51,54,57,44,51,53,46,56,49,57,50,50,56,93,44,91,45,55,55,46,51,52,50,52,49,56,44,51,53,46,57,48,53,50,54,50,93,44,91,45,55,55,46,52,48,50,54,49,52,44,51,54,46,48,48,52,57,54,54,93,44,91,45,55,55,46,53,51,51,49,54,49,44,51,54,46,48,57,48,54,53,57,93,44,91,45,55,55,46,54,57,55,57,53,54,44,51,54,46,49,53,51,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,49,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,48,52,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,53,55,56,49,54,44,51,49,46,48,51,51,51,50,53,93,44,91,45,57,52,46,50,53,50,50,57,56,44,51,49,46,48,49,56,57,51,49,93,44,91,45,57,52,46,49,50,53,56,50,52,44,51,48,46,54,56,52,48,53,50,93,44,91,45,57,52,46,48,53,48,57,54,44,51,48,46,54,51,56,53,54,56,93,44,91,45,57,52,46,48,55,49,54,56,57,44,51,48,46,53,50,54,48,51,51,93,44,91,45,57,52,46,49,49,54,52,54,54,44,51,48,46,52,51,50,54,57,49,93,44,91,45,57,52,46,48,56,50,57,50,44,51,48,46,51,52,53,54,53,52,93,44,91,45,57,52,46,49,49,55,54,48,52,44,51,48,46,50,52,49,54,54,53,93,44,91,45,57,51,46,57,48,49,52,53,50,44,51,48,46,50,52,50,54,55,50,93,44,91,45,57,51,46,56,54,53,55,49,49,44,51,48,46,57,52,55,50,49,56,93,44,91,45,57,51,46,57,49,49,49,50,54,44,51,49,46,49,53,56,48,55,49,93,44,91,45,57,52,46,48,51,57,48,51,52,44,51,49,46,49,51,52,50,55,49,93,44,91,45,57,52,46,49,50,57,54,51,50,44,51,49,46,48,57,57,50,56,93,44,91,45,57,52,46,52,53,55,56,49,54,44,51,49,46,48,51,51,51,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,101,97,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,52,51,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,48,52,57,57,55,56,44,51,56,46,49,52,56,55,54,51,93,44,91,45,49,49,51,46,52,55,49,54,44,51,56,46,49,52,56,54,54,53,93,44,91,45,49,49,50,46,52,55,56,54,56,44,51,56,46,49,52,55,52,49,57,93,44,91,45,49,49,50,46,52,52,52,50,49,52,44,51,56,46,49,53,48,48,48,49,93,44,91,45,49,49,50,46,51,51,53,53,49,44,51,56,46,51,51,50,51,52,52,93,44,91,45,49,49,50,46,52,52,52,48,56,49,44,51,56,46,52,48,53,54,52,54,93,44,91,45,49,49,50,46,53,49,56,52,57,53,44,51,56,46,53,49,48,52,49,51,93,44,91,45,49,49,50,46,53,49,53,51,57,52,44,51,56,46,53,55,50,56,52,53,93,44,91,45,49,49,52,46,48,52,57,57,55,55,44,51,56,46,53,55,50,57,55,52,93,44,91,45,49,49,52,46,48,52,57,57,55,56,44,51,56,46,49,52,56,55,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,51,34,44,34,78,65,77,69,34,58,34,77,117,114,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,53,53,55,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,49,48,52,55,55,44,51,52,46,57,56,55,54,48,53,93,44,91,45,56,52,46,56,49,56,55,49,53,44,51,52,46,56,55,54,57,53,93,44,91,45,56,52,46,57,50,52,57,48,57,44,51,52,46,55,49,53,57,55,49,93,44,91,45,56,52,46,57,49,51,52,53,54,44,51,52,46,54,51,52,49,50,56,93,44,91,45,56,52,46,54,53,52,53,50,51,44,51,52,46,53,56,51,49,56,55,93,44,91,45,56,52,46,54,53,55,48,57,56,44,51,52,46,55,50,56,57,48,53,93,44,91,45,56,52,46,54,49,56,54,51,55,44,51,52,46,56,53,53,51,57,56,93,44,91,45,56,52,46,54,50,49,52,56,51,44,51,52,46,57,56,56,51,50,57,93,44,91,45,56,52,46,55,55,53,56,53,51,44,51,52,46,57,56,55,56,56,52,93,44,91,45,56,52,46,56,49,48,52,55,55,44,51,52,46,57,56,55,54,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,74,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,57,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,48,49,49,52,54,44,52,48,46,53,54,55,50,52,50,93,44,91,45,56,53,46,50,49,57,57,48,49,44,52,48,46,51,55,57,48,51,52,93,44,91,45,56,53,46,50,49,56,55,53,56,44,52,48,46,51,48,54,55,48,54,93,44,91,45,56,52,46,56,48,51,54,55,50,44,52,48,46,51,49,48,48,57,51,93,44,91,45,56,52,46,56,48,51,56,57,52,44,52,48,46,51,53,50,55,53,56,93,44,91,45,56,52,46,56,48,50,52,55,55,44,52,48,46,53,55,50,50,49,51,93,44,91,45,56,53,46,48,54,56,52,55,57,44,52,48,46,53,54,56,50,52,93,44,91,45,56,53,46,50,48,49,49,52,54,44,52,48,46,53,54,55,50,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,99,97,108,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,50,48,57,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,54,50,53,51,56,44,52,51,46,50,57,52,50,55,49,93,44,91,45,56,53,46,51,49,50,51,55,54,44,52,51,46,50,57,52,50,48,53,93,44,91,45,56,53,46,51,49,50,53,49,51,44,52,51,46,49,49,56,55,57,51,93,44,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,44,91,45,56,52,46,56,52,53,57,54,50,44,52,51,46,52,54,54,49,53,56,93,44,91,45,56,53,46,48,56,52,57,57,54,44,52,51,46,52,54,54,49,57,93,44,91,45,56,53,46,53,54,50,51,52,56,44,52,51,46,52,54,56,49,51,93,44,91,45,56,53,46,53,54,50,53,51,56,44,52,51,46,50,57,52,50,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,82,101,110,115,115,101,108,97,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,52,51,49,44,34,98,101,100,115,34,58,50,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,50,55,52,50,57,52,44,52,50,46,57,52,51,54,53,50,93,44,91,45,55,51,46,54,51,53,52,54,51,44,52,50,46,57,52,49,50,57,93,44,91,45,55,51,46,54,55,54,55,54,50,44,52,50,46,55,56,51,50,55,55,93,44,91,45,55,51,46,55,54,49,50,54,53,44,52,50,46,54,49,48,51,55,57,93,44,91,45,55,51,46,55,56,51,55,50,49,44,52,50,46,52,54,52,50,51,49,93,44,91,45,55,51,46,51,53,50,52,50,57,44,52,50,46,53,49,48,48,49,55,93,44,91,45,55,51,46,50,54,52,56,50,55,44,52,50,46,55,52,53,56,53,49,93,44,91,45,55,51,46,50,55,52,50,57,52,44,52,50,46,57,52,51,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,111,108,108,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,57,50,50,44,34,98,101,100,115,34,58,55,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,48,53,53,48,49,44,50,54,46,51,51,48,48,56,56,93,44,91,45,56,49,46,56,53,48,51,52,44,50,54,46,48,54,50,56,55,50,93,44,91,45,56,49,46,55,49,56,49,51,57,44,50,53,46,55,57,51,48,51,51,93,44,91,45,56,49,46,53,55,48,57,54,55,44,50,53,46,56,48,50,48,51,57,93,44,91,45,56,48,46,56,55,51,48,57,54,44,50,53,46,56,48,53,51,55,55,93,44,91,45,56,48,46,56,55,50,57,51,50,44,50,53,46,57,55,57,52,51,52,93,44,91,45,56,48,46,56,55,57,56,48,57,44,50,54,46,50,53,57,52,53,53,93,44,91,45,56,49,46,50,54,56,53,53,44,50,54,46,50,53,51,48,52,53,93,44,91,45,56,49,46,50,55,49,55,54,56,44,50,54,46,53,49,55,48,54,57,93,44,91,45,56,49,46,53,54,51,55,54,51,44,50,54,46,53,49,51,51,50,52,93,44,91,45,56,49,46,53,54,50,49,56,44,50,54,46,52,50,50,54,50,53,93,44,91,45,56,49,46,54,53,57,53,48,54,44,50,54,46,52,50,49,48,55,55,93,44,91,45,56,49,46,54,53,55,57,44,50,54,46,51,49,55,53,54,51,93,44,91,45,56,49,46,57,48,53,53,48,49,44,50,54,46,51,51,48,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,77,99,75,105,110,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,56,52,57,44,34,98,101,100,115,34,58,49,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,54,48,54,55,44,51,54,46,48,48,50,55,48,49,93,44,91,45,49,48,57,46,48,52,53,57,57,54,44,51,52,46,57,53,57,56,49,57,93,44,91,45,49,48,56,46,52,54,57,52,48,50,44,51,52,46,57,53,57,48,56,49,93,44,91,45,49,48,56,46,52,54,56,55,49,53,44,51,53,46,51,48,54,54,53,56,93,44,91,45,49,48,55,46,51,48,57,51,56,54,44,51,53,46,51,48,53,54,56,55,93,44,91,45,49,48,55,46,51,48,56,54,54,55,44,51,53,46,57,57,56,53,53,54,93,44,91,45,49,48,55,46,54,50,54,53,49,49,44,51,54,46,48,48,48,50,56,56,93,44,91,45,49,48,57,46,48,52,54,48,54,55,44,51,54,46,48,48,50,55,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,101,110,32,72,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,53,52,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,53,51,54,51,52,44,51,49,46,55,53,55,56,54,49,93,44,91,45,56,51,46,51,50,53,50,57,54,44,51,49,46,55,53,54,53,56,52,93,44,91,45,56,51,46,51,50,53,54,49,55,44,51,49,46,54,56,48,54,48,51,93,44,91,45,56,50,46,57,57,56,51,54,44,51,49,46,54,55,51,49,54,52,93,44,91,45,56,50,46,57,57,53,54,57,56,44,51,49,46,55,56,48,57,56,51,93,44,91,45,56,51,46,49,55,55,52,54,57,44,51,49,46,56,52,55,56,53,55,93,44,91,45,56,51,46,52,56,48,49,55,54,44,51,49,46,56,52,55,51,49,50,93,44,91,45,56,51,46,52,53,51,54,51,52,44,51,49,46,55,53,55,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,57,57,57,54,49,44,51,52,46,56,54,55,49,50,93,44,91,45,57,49,46,49,48,50,53,52,50,44,51,52,46,55,51,52,56,54,52,93,44,91,45,57,49,46,48,53,49,57,49,56,44,51,52,46,54,52,53,55,50,49,93,44,91,45,57,48,46,53,56,51,50,50,52,44,51,52,46,54,52,49,51,56,57,93,44,91,45,57,48,46,53,49,55,49,54,56,44,51,52,46,54,51,48,57,50,56,93,44,91,45,57,48,46,52,48,55,57,57,49,44,51,52,46,56,51,50,57,55,93,44,91,45,57,48,46,52,48,56,53,52,44,51,52,46,57,48,52,49,50,49,93,44,91,45,57,49,46,48,57,57,50,48,49,44,51,52,46,57,49,49,55,57,54,93,44,91,45,57,49,46,48,57,57,57,54,49,44,51,52,46,56,54,55,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,97,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,55,56,53,44,34,98,101,100,115,34,58,49,49,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,52,57,57,53,56,44,51,48,46,51,54,50,52,55,50,93,44,91,45,56,50,46,49,55,48,49,57,55,44,51,48,46,51,53,56,57,55,50,93,44,91,45,56,50,46,50,49,48,55,51,51,44,51,48,46,52,50,53,54,52,93,44,91,45,56,50,46,50,49,52,54,55,55,44,51,48,46,53,54,56,53,53,54,93,44,91,45,56,50,46,52,49,56,57,49,52,44,51,48,46,53,56,49,55,54,55,93,44,91,45,56,50,46,52,53,57,55,57,51,44,51,48,46,53,56,52,50,54,55,93,44,91,45,56,50,46,52,53,56,51,54,52,44,51,48,46,49,51,54,52,52,57,93,44,91,45,56,50,46,49,52,50,53,55,56,44,51,48,46,49,52,51,49,49,55,93,44,91,45,56,50,46,48,52,57,52,50,53,44,51,48,46,49,52,51,49,51,54,93,44,91,45,56,50,46,48,52,57,52,49,49,44,51,48,46,49,56,54,57,51,51,93,44,91,45,56,50,46,48,52,57,50,51,54,44,51,48,46,50,55,51,52,51,50,93,44,91,45,56,50,46,48,52,57,57,53,56,44,51,48,46,51,54,50,52,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,76,97,110,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,54,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,57,55,57,55,49,44,51,49,46,48,50,53,52,48,53,93,44,91,45,56,51,46,49,55,57,52,54,53,44,51,48,46,57,53,48,49,50,56,93,44,91,45,56,51,46,48,52,50,57,50,52,44,51,48,46,57,52,55,50,57,54,93,44,91,45,56,51,46,48,49,57,52,49,57,44,51,48,46,56,52,57,52,53,51,93,44,91,45,56,50,46,57,55,49,51,51,54,44,51,48,46,56,54,57,51,57,50,93,44,91,45,56,50,46,57,55,49,50,52,55,44,51,49,46,49,56,51,57,56,56,93,44,91,45,56,51,46,48,52,54,56,56,53,44,51,49,46,49,56,51,54,56,93,44,91,45,56,51,46,49,54,53,48,55,50,44,51,49,46,49,52,55,49,57,56,93,44,91,45,56,51,46,49,57,55,57,55,49,44,51,49,46,48,50,53,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,82,105,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,54,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,56,48,51,55,55,44,51,56,46,53,50,49,56,52,49,93,44,91,45,57,56,46,52,55,57,56,52,49,44,51,56,46,50,54,48,55,57,93,44,91,45,57,56,46,52,55,50,55,57,52,44,51,56,46,49,55,50,55,53,55,93,44,91,45,57,55,46,57,50,50,49,51,54,44,51,56,46,49,55,51,55,49,51,93,44,91,45,57,55,46,57,50,52,50,54,57,44,51,56,46,53,50,50,55,53,53,93,44,91,45,57,56,46,52,56,48,51,55,55,44,51,56,46,53,50,49,56,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,48,57,56,44,34,98,101,100,115,34,58,52,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,51,56,57,55,53,44,51,51,46,57,54,56,52,54,93,44,91,45,56,53,46,56,56,49,55,54,56,44,51,51,46,57,53,48,50,57,57,93,44,91,45,56,54,46,48,54,53,50,55,50,44,51,51,46,56,52,50,49,57,56,93,44,91,45,56,54,46,48,52,51,57,57,51,44,51,51,46,55,54,51,53,57,53,93,44,91,45,56,54,46,49,52,53,53,54,50,44,51,51,46,54,55,57,48,57,56,93,44,91,45,56,54,46,48,53,48,54,54,57,44,51,51,46,54,55,52,53,57,93,44,91,45,56,53,46,57,57,52,57,51,53,44,51,51,46,53,56,54,52,55,53,93,44,91,45,56,53,46,55,57,54,48,53,52,44,51,51,46,53,53,54,50,50,93,44,91,45,56,53,46,54,51,56,53,55,57,44,51,51,46,54,52,56,52,49,51,93,44,91,45,56,53,46,54,48,49,56,53,56,44,51,51,46,56,56,57,55,53,93,44,91,45,56,53,46,53,51,48,48,57,52,44,51,51,46,57,52,49,52,50,51,93,44,91,45,56,53,46,55,51,56,57,55,53,44,51,51,46,57,54,56,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,48,49,52,44,34,98,101,100,115,34,58,52,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,56,52,53,51,51,44,51,48,46,54,55,55,50,57,50,93,44,91,45,56,56,46,56,56,51,49,51,44,51,48,46,52,49,56,55,57,56,93,44,91,45,56,56,46,55,57,53,50,56,55,44,51,48,46,51,53,48,51,54,49,93,44,91,45,56,56,46,55,57,53,49,52,55,44,51,48,46,49,57,57,57,57,52,93,44,91,45,56,56,46,52,54,49,50,56,51,44,51,48,46,49,52,54,54,56,54,93,44,91,45,56,56,46,51,56,52,52,51,49,44,51,48,46,49,53,56,53,52,51,93,44,91,45,56,56,46,52,49,50,54,49,50,44,51,48,46,55,51,53,53,57,93,44,91,45,56,56,46,56,56,52,53,51,52,44,51,48,46,55,51,53,53,57,49,93,44,91,45,56,56,46,56,56,52,53,51,51,44,51,48,46,54,55,55,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,97,109,112,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,50,54,55,44,34,98,101,100,115,34,58,51,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,48,54,49,54,49,44,51,57,46,48,57,53,49,55,55,93,44,91,45,56,52,46,52,50,55,50,56,53,44,51,56,46,57,56,48,56,54,51,93,44,91,45,56,52,46,52,49,56,49,48,55,44,51,56,46,56,48,54,53,57,54,93,44,91,45,56,52,46,50,51,49,57,49,55,44,51,56,46,56,55,52,56,54,54,93,44,91,45,56,52,46,51,49,57,57,56,53,44,51,57,46,48,50,49,53,51,52,93,44,91,45,56,52,46,53,48,54,49,54,49,44,51,57,46,48,57,53,49,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,57,54,50,49,52,44,51,54,46,56,49,56,48,51,57,93,44,91,45,56,53,46,52,51,54,52,52,50,44,51,54,46,54,49,56,54,53,53,93,44,91,45,56,53,46,50,57,54,48,48,50,44,51,54,46,54,50,53,55,49,56,93,44,91,45,56,53,46,50,49,53,52,48,53,44,51,54,46,56,53,52,52,54,55,93,44,91,45,56,53,46,50,51,50,48,50,54,44,51,54,46,57,50,53,48,54,57,93,44,91,45,56,53,46,52,53,49,56,51,44,51,54,46,57,51,56,49,51,56,93,44,91,45,56,53,46,53,57,54,50,49,52,44,51,54,46,56,49,56,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,80,97,110,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,50,52,51,44,34,98,101,100,115,34,58,49,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,50,49,51,52,49,44,51,52,46,53,53,52,50,55,52,93,44,91,45,57,48,46,49,57,56,54,51,49,44,51,52,46,53,53,52,52,50,53,93,44,91,45,57,48,46,49,57,56,53,51,54,44,51,52,46,53,49,49,48,56,56,93,44,91,45,57,48,46,49,57,52,48,56,54,44,51,52,46,51,48,49,52,48,55,93,44,91,45,57,48,46,49,51,53,52,53,54,44,51,52,46,49,54,48,48,55,52,93,44,91,45,56,57,46,57,51,49,52,56,53,44,51,52,46,49,54,52,51,48,51,93,44,91,45,56,57,46,55,50,49,48,53,44,51,52,46,49,57,50,53,52,53,93,44,91,45,56,57,46,55,50,49,51,52,49,44,51,52,46,53,53,52,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,72,97,110,115,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,55,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,51,57,49,53,44,51,54,46,52,57,57,53,50,56,93,44,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,44,91,45,49,48,49,46,48,56,53,55,51,53,44,51,54,46,48,53,53,50,55,54,93,44,91,45,49,48,49,46,48,56,53,55,49,54,44,51,54,46,48,53,55,53,55,50,93,44,91,45,49,48,49,46,48,56,53,49,53,54,44,51,54,46,52,57,57,50,52,52,93,44,91,45,49,48,49,46,54,50,51,57,49,53,44,51,54,46,52,57,57,53,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,67,104,97,109,98,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,50,57,50,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,56,49,52,54,44,50,57,46,56,56,52,50,55,54,93,44,91,45,57,52,46,57,48,56,54,53,52,44,50,57,46,56,50,53,49,56,49,93,44,91,45,57,52,46,57,49,57,54,55,49,44,50,57,46,54,56,56,52,53,52,93,44,91,45,57,53,46,48,48,49,54,52,50,44,50,57,46,54,54,52,51,56,56,93,44,91,45,57,53,46,48,49,56,50,48,53,44,50,57,46,53,53,52,53,57,55,93,44,91,45,57,52,46,57,49,52,51,57,55,44,50,57,46,52,57,54,53,48,53,93,44,91,45,57,52,46,51,55,49,54,50,44,50,57,46,53,57,55,50,48,57,93,44,91,45,57,52,46,51,54,57,51,54,49,44,50,57,46,53,48,48,54,50,93,44,91,45,57,52,46,51,53,52,56,56,44,50,57,46,53,48,54,51,50,56,93,44,91,45,57,52,46,51,53,55,57,55,54,44,50,57,46,56,56,55,52,54,52,93,44,91,45,57,52,46,52,52,50,50,51,53,44,50,57,46,56,56,57,53,51,56,93,44,91,45,57,52,46,57,56,49,52,54,44,50,57,46,56,56,52,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,57,34,44,34,78,65,77,69,34,58,34,81,117,105,116,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,54,56,50,51,44,51,49,46,57,57,49,56,53,55,93,44,91,45,56,53,46,49,52,49,49,51,44,51,49,46,55,56,48,52,54,51,93,44,91,45,56,52,46,57,53,56,54,52,44,51,49,46,55,55,55,56,53,52,93,44,91,45,56,52,46,57,48,55,48,48,54,44,51,49,46,57,50,52,52,54,53,93,44,91,45,56,53,46,48,54,56,50,51,44,51,49,46,57,57,49,56,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,55,49,54,56,57,44,51,48,46,53,50,54,48,51,51,93,44,91,45,57,52,46,53,52,53,55,49,55,44,51,48,46,53,50,54,57,55,55,93,44,91,45,57,52,46,55,51,50,55,51,50,44,51,48,46,52,57,48,48,54,54,93,44,91,45,57,52,46,53,57,54,51,51,56,44,51,48,46,49,49,50,49,48,49,93,44,91,45,57,52,46,52,52,52,57,49,44,51,48,46,49,49,51,48,49,53,93,44,91,45,57,52,46,50,57,50,54,50,57,44,51,48,46,49,49,55,54,55,49,93,44,91,45,57,52,46,50,48,51,55,48,57,44,51,48,46,49,56,56,56,49,57,93,44,91,45,57,52,46,49,49,53,57,49,55,44,51,48,46,49,54,48,51,52,55,93,44,91,45,57,52,46,49,49,55,54,48,52,44,51,48,46,50,52,49,54,54,53,93,44,91,45,57,52,46,48,56,50,57,50,44,51,48,46,51,52,53,54,53,52,93,44,91,45,57,52,46,49,49,54,52,54,54,44,51,48,46,52,51,50,54,57,49,93,44,91,45,57,52,46,48,55,49,54,56,57,44,51,48,46,53,50,54,48,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,76,105,116,99,104,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,48,51,49,44,34,98,101,100,115,34,58,49,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,52,56,55,51,49,57,44,52,50,46,48,52,57,53,50,53,93,44,91,45,55,51,46,53,49,56,48,56,44,52,49,46,54,54,54,55,50,51,93,44,91,45,55,51,46,52,52,49,52,54,54,44,52,49,46,52,57,49,50,57,52,93,44,91,45,55,51,46,51,49,48,52,55,51,44,52,49,46,52,54,56,56,49,53,93,44,91,45,55,51,46,49,53,53,52,57,50,44,52,49,46,53,49,52,51,48,52,93,44,91,45,55,50,46,57,56,51,50,53,44,52,49,46,54,51,57,53,57,56,93,44,91,45,55,51,46,48,49,54,54,55,53,44,52,49,46,55,57,56,49,56,51,93,44,91,45,55,50,46,56,56,55,48,54,44,52,49,46,57,55,51,49,50,49,93,44,91,45,55,51,46,48,48,56,55,54,54,44,52,50,46,48,51,56,55,56,53,93,44,91,45,55,51,46,48,53,51,50,56,56,44,52,50,46,48,51,57,56,54,53,93,44,91,45,55,51,46,52,56,55,51,49,57,44,52,50,46,48,52,57,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,83,97,110,100,117,115,107,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,50,57,57,44,34,98,101,100,115,34,58,50,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,49,52,54,50,54,44,52,49,46,53,48,48,50,50,56,93,44,91,45,56,51,46,52,49,57,56,52,51,44,52,49,46,50,53,52,48,48,51,93,44,91,45,56,50,46,56,52,48,48,56,55,44,52,49,46,50,53,53,51,51,55,93,44,91,45,56,50,46,56,52,49,52,55,53,44,52,49,46,50,57,48,48,50,51,93,44,91,45,56,50,46,56,52,55,55,49,51,44,52,49,46,52,51,48,51,50,54,93,44,91,45,56,50,46,57,53,50,50,50,52,44,52,49,46,52,53,56,50,51,57,93,44,91,45,56,51,46,51,51,56,49,57,54,44,52,49,46,52,53,55,53,48,56,93,44,91,45,56,51,46,52,49,52,54,50,54,44,52,49,46,53,48,48,50,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,80,105,115,99,97,116,97,113,117,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,56,55,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,57,46,55,50,49,49,48,57,44,52,54,46,53,55,52,48,53,51,93,44,91,45,54,57,46,55,50,56,53,55,55,44,52,53,46,57,55,54,56,56,50,93,44,91,45,54,57,46,55,48,52,50,54,53,44,52,53,46,56,52,54,49,51,54,93,44,91,45,54,57,46,55,56,53,50,53,55,44,52,53,46,54,57,50,55,56,93,44,91,45,54,57,46,55,48,49,54,56,56,44,52,53,46,54,50,55,57,56,50,93,44,91,45,54,57,46,55,55,57,57,50,56,44,52,53,46,53,52,50,55,54,54,93,44,91,45,54,57,46,54,50,48,57,54,55,44,52,53,46,48,49,48,57,53,54,93,44,91,45,54,57,46,51,53,53,54,54,55,44,52,53,46,48,55,51,52,54,57,93,44,91,45,54,56,46,56,53,54,53,56,55,44,52,53,46,49,52,50,55,56,51,93,44,91,45,54,56,46,55,55,54,48,54,49,44,52,53,46,50,52,48,51,49,55,93,44,91,45,54,56,46,56,53,55,50,57,55,44,52,53,46,53,50,55,51,48,49,93,44,91,45,54,56,46,57,54,52,54,53,51,44,52,53,46,53,49,50,51,54,55,93,44,91,45,54,56,46,57,53,56,57,49,44,52,53,46,54,54,50,49,57,53,93,44,91,45,54,56,46,56,50,55,48,51,57,44,52,53,46,54,56,52,56,50,54,93,44,91,45,54,56,46,56,49,57,52,48,49,44,52,54,46,51,57,53,55,56,50,93,44,91,45,54,56,46,56,50,49,52,49,52,44,52,54,46,53,55,50,53,49,93,44,91,45,54,57,46,55,50,49,49,48,57,44,52,54,46,53,55,52,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,50,56,55,53,55,44,51,55,46,51,48,50,56,52,56,93,44,91,45,56,57,46,48,52,52,55,57,57,44,51,55,46,51,50,57,55,49,55,93,44,91,45,56,57,46,50,52,56,53,54,54,44,51,55,46,51,51,53,50,57,56,93,44,91,45,56,57,46,50,55,51,54,51,49,44,51,55,46,49,50,54,57,54,56,93,44,91,45,56,57,46,49,55,50,48,56,49,44,51,55,46,48,54,56,51,49,93,44,91,45,56,57,46,48,50,57,56,54,54,44,51,55,46,50,49,49,48,54,53,93,44,91,45,56,56,46,57,51,51,52,48,49,44,51,55,46,50,50,52,57,57,49,93,44,91,45,56,56,46,57,50,55,56,57,44,51,55,46,50,50,54,51,52,50,93,44,91,45,56,56,46,57,50,56,55,53,55,44,51,55,46,51,48,50,56,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,79,107,102,117,115,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,50,51,54,57,57,44,51,53,46,52,48,48,55,50,50,93,44,91,45,57,54,46,52,52,53,53,56,52,44,51,53,46,52,53,56,55,55,49,93,44,91,45,57,54,46,52,52,49,51,54,56,44,51,53,46,50,57,48,49,50,50,93,44,91,45,57,53,46,57,56,49,53,49,49,44,51,53,46,50,56,57,55,56,93,44,91,45,57,53,46,57,56,49,52,54,53,44,51,53,46,51,55,54,55,56,56,93,44,91,45,57,54,46,48,56,55,53,51,44,51,53,46,51,55,54,56,55,55,93,44,91,45,57,54,46,48,56,55,55,55,55,44,51,53,46,53,53,50,48,48,51,93,44,91,45,57,54,46,49,57,50,53,54,51,44,51,53,46,54,51,57,48,56,55,93,44,91,45,57,54,46,54,50,48,56,50,56,44,51,53,46,54,51,57,48,48,53,93,44,91,45,57,54,46,54,50,52,54,56,49,44,51,53,46,52,54,50,55,48,55,93,44,91,45,57,54,46,54,50,51,54,57,57,44,51,53,46,52,48,48,55,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,83,97,103,105,110,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,55,55,56,44,34,98,101,100,115,34,58,56,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,57,56,55,54,44,52,51,46,52,54,54,48,52,52,93,44,91,45,56,52,46,51,54,55,56,57,49,44,52,51,46,49,50,56,52,53,50,93,44,91,45,56,51,46,57,50,57,48,55,57,44,52,51,46,49,51,50,55,56,50,93,44,91,45,56,51,46,57,51,50,48,55,49,44,52,51,46,50,50,48,51,55,55,93,44,91,45,56,51,46,54,57,53,54,50,49,44,52,51,46,50,50,49,52,50,50,93,44,91,45,56,51,46,54,57,56,56,49,54,44,52,51,46,52,55,56,57,53,55,93,44,91,45,56,51,46,56,49,55,50,50,56,44,52,51,46,53,50,50,51,52,53,93,44,91,45,56,52,46,48,53,48,57,56,55,44,52,51,46,53,50,52,48,54,52,93,44,91,45,56,52,46,49,54,56,49,50,55,44,52,51,46,53,54,56,56,57,57,93,44,91,45,56,52,46,49,55,48,53,55,54,44,52,51,46,52,56,49,57,54,57,93,44,91,45,56,52,46,51,54,57,56,55,54,44,52,51,46,52,54,54,48,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,82,105,111,32,65,114,114,105,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,51,48,55,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,55,54,48,57,44,51,54,46,57,57,51,53,52,56,93,44,91,45,49,48,55,46,52,50,49,50,50,51,44,51,55,46,48,48,48,50,50,51,93,44,91,45,49,48,55,46,52,53,49,52,52,53,44,51,54,46,57,48,52,48,51,54,93,44,91,45,49,48,55,46,54,49,56,49,56,49,44,51,54,46,56,48,52,50,54,55,93,44,91,45,49,48,55,46,54,50,52,50,56,51,44,51,54,46,50,49,57,56,48,57,93,44,91,45,49,48,54,46,56,56,53,48,53,51,44,51,54,46,50,49,54,53,55,93,44,91,45,49,48,54,46,56,56,53,51,49,55,44,51,53,46,57,57,56,57,54,57,93,44,91,45,49,48,54,46,50,52,55,49,54,52,44,51,54,46,48,48,49,52,51,52,93,44,91,45,49,48,54,46,50,52,56,49,54,49,44,51,53,46,57,54,54,51,50,55,93,44,91,45,49,48,54,46,50,52,53,54,52,57,44,51,53,46,57,51,48,55,52,50,93,44,91,45,49,48,54,46,48,53,52,51,52,54,44,51,53,46,57,51,48,55,56,51,93,44,91,45,49,48,54,46,48,55,49,51,52,57,44,51,54,46,48,48,49,57,55,93,44,91,45,49,48,53,46,55,49,55,52,55,55,44,51,53,46,57,55,56,55,52,49,93,44,91,45,49,48,53,46,53,51,48,51,56,44,51,54,46,48,49,51,48,49,52,93,44,91,45,49,48,53,46,55,51,53,56,56,51,44,51,54,46,49,48,48,49,51,51,93,44,91,45,49,48,53,46,56,53,54,57,52,55,44,51,54,46,50,51,48,52,51,52,93,44,91,45,49,48,54,46,48,53,56,51,54,52,44,51,54,46,50,57,54,57,55,56,93,44,91,45,49,48,53,46,57,54,49,52,49,52,44,51,54,46,51,53,51,48,54,54,93,44,91,45,49,48,53,46,57,51,56,55,53,52,44,51,54,46,52,54,50,52,48,50,93,44,91,45,49,48,53,46,57,55,49,56,51,54,44,51,54,46,54,51,50,52,52,52,93,44,91,45,49,48,53,46,57,55,49,56,56,57,44,51,54,46,56,56,54,50,52,55,93,44,91,45,49,48,54,46,48,48,54,51,49,54,44,51,54,46,57,57,53,50,54,55,93,44,91,45,49,48,54,46,52,55,54,48,57,44,51,54,46,57,57,51,53,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,97,108,101,100,111,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,52,50,53,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,57,51,57,57,51,54,44,52,52,46,55,54,57,48,51,50,93,44,91,45,55,50,46,48,49,50,53,48,52,44,52,52,46,54,57,56,56,50,49,93,44,91,45,55,50,46,49,49,52,53,48,51,44,52,52,46,55,52,57,54,50,52,93,44,91,45,55,50,46,50,54,50,57,54,53,44,52,52,46,53,52,50,51,51,54,93,44,91,45,55,50,46,51,55,52,55,56,54,44,52,52,46,53,56,52,49,50,53,93,44,91,45,55,50,46,52,51,52,51,49,53,44,52,52,46,53,48,54,48,57,56,93,44,91,45,55,50,46,50,50,51,54,56,57,44,52,52,46,52,50,52,53,55,51,93,44,91,45,55,50,46,51,54,56,51,53,51,44,52,52,46,50,48,52,48,53,55,93,44,91,45,55,50,46,48,52,50,57,53,54,44,52,52,46,49,53,54,52,57,55,93,44,91,45,55,50,46,48,54,56,52,55,56,44,52,52,46,50,55,48,56,48,49,93,44,91,45,55,49,46,57,56,49,52,50,52,44,52,52,46,51,51,55,51,54,54,93,44,91,45,55,49,46,56,51,55,56,53,51,44,52,52,46,51,52,55,57,57,51,93,44,91,45,55,49,46,57,51,51,50,56,56,44,52,52,46,52,52,49,49,55,52,93,44,91,45,55,49,46,57,49,48,48,56,53,44,52,52,46,54,52,55,49,56,93,44,91,45,55,49,46,57,51,57,57,51,54,44,52,52,46,55,54,57,48,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,111,116,101,116,111,117,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,50,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,50,48,53,53,52,44,51,55,46,54,52,55,52,52,50,93,44,91,45,55,57,46,57,54,57,48,55,49,44,51,55,46,53,52,52,52,48,56,93,44,91,45,56,48,46,48,55,52,49,49,57,44,51,55,46,52,50,50,52,54,57,93,44,91,45,55,57,46,56,52,55,52,55,54,44,51,55,46,51,48,57,51,53,50,93,44,91,45,55,57,46,54,57,48,48,54,44,51,55,46,52,55,54,51,55,52,93,44,91,45,55,57,46,53,57,51,55,48,55,44,51,55,46,52,52,56,56,54,52,93,44,91,45,55,57,46,52,57,56,54,57,57,44,51,55,46,53,51,50,55,57,55,93,44,91,45,55,57,46,54,56,51,53,53,52,44,51,55,46,54,54,49,55,54,51,93,44,91,45,55,57,46,54,55,52,49,54,50,44,51,55,46,55,54,51,48,57,51,93,44,91,45,55,57,46,56,49,54,54,56,53,44,51,55,46,56,48,48,57,54,52,93,44,91,45,56,48,46,48,50,48,53,53,52,44,51,55,46,54,52,55,52,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,53,54,55,48,44,34,98,101,100,115,34,58,57,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,55,53,55,48,50,44,51,56,46,57,50,51,53,50,57,93,44,91,45,57,48,46,49,49,55,55,48,55,44,51,56,46,56,48,53,55,52,56,93,44,91,45,57,48,46,49,54,54,53,55,52,44,51,56,46,55,55,50,52,52,56,93,44,91,45,57,48,46,49,56,49,53,52,51,44,51,56,46,54,54,48,48,54,50,93,44,91,45,56,57,46,55,48,54,57,52,57,44,51,56,46,54,53,53,48,49,57,93,44,91,45,56,57,46,53,57,55,51,50,49,44,51,56,46,55,52,51,50,51,54,93,44,91,45,56,57,46,54,51,57,50,54,53,44,51,56,46,57,57,57,49,50,57,93,44,91,45,56,57,46,54,57,56,53,53,53,44,51,56,46,57,57,56,57,55,57,93,44,91,45,57,48,46,49,52,53,57,56,52,44,51,56,46,57,57,57,51,48,51,93,44,91,45,57,48,46,50,55,53,55,48,50,44,51,56,46,57,50,51,53,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,67,111,108,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,52,51,53,48,44,34,98,101,100,115,34,58,50,51,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,51,52,49,49,44,51,51,46,52,48,53,52,57,56,93,44,91,45,57,54,46,56,52,51,57,55,57,44,51,50,46,57,56,55,53,53,52,93,44,91,45,57,54,46,53,49,54,56,54,54,44,51,50,46,57,56,50,51,48,56,93,44,91,45,57,54,46,50,57,55,50,50,55,44,51,50,46,57,56,49,55,53,50,93,44,91,45,57,54,46,50,57,53,52,49,51,44,51,51,46,51,53,49,57,51,54,93,44,91,45,57,54,46,51,56,52,54,48,50,44,51,51,46,51,57,55,56,50,54,93,44,91,45,57,54,46,56,51,52,49,49,44,51,51,46,52,48,53,52,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,98,98,101,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,54,53,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,49,51,57,57,54,44,51,52,46,52,56,52,48,48,50,93,44,91,45,56,50,46,55,52,50,49,48,51,44,51,52,46,50,49,49,57,48,51,93,44,91,45,56,50,46,53,57,52,54,51,49,44,51,52,46,48,49,51,55,57,54,93,44,91,45,56,50,46,53,51,48,53,54,55,44,51,52,46,48,55,49,57,50,53,93,44,91,45,56,50,46,51,50,54,57,52,55,44,51,52,46,48,54,52,49,50,93,44,91,45,56,50,46,50,52,55,55,52,55,44,51,52,46,50,49,57,54,49,57,93,44,91,45,56,50,46,51,51,52,50,51,52,44,51,52,46,51,52,50,54,51,93,44,91,45,56,50,46,50,52,54,51,51,55,44,51,52,46,52,48,57,54,55,54,93,44,91,45,56,50,46,51,49,51,57,57,54,44,51,52,46,52,56,52,48,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,68,111,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,56,51,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,48,53,57,50,50,44,52,49,46,55,52,50,55,54,51,93,44,91,45,57,54,46,57,48,53,57,49,44,52,49,46,52,53,54,52,51,54,93,44,91,45,57,54,46,57,48,53,56,54,50,44,52,49,46,52,53,51,51,56,57,93,44,91,45,57,54,46,53,54,56,57,55,55,44,52,49,46,52,51,51,50,52,93,44,91,45,57,54,46,52,55,48,55,50,44,52,49,46,51,57,51,50,51,57,93,44,91,45,57,54,46,51,50,57,48,49,50,44,52,49,46,51,57,51,49,51,54,93,44,91,45,57,54,46,52,52,51,56,57,56,44,52,49,46,53,50,51,57,51,51,93,44,91,45,57,54,46,52,52,52,55,56,53,44,52,49,46,54,56,51,54,51,51,93,44,91,45,57,54,46,53,53,53,49,55,50,44,52,49,46,55,52,50,48,49,56,93,44,91,45,57,54,46,57,48,53,57,50,50,44,52,49,46,55,52,50,55,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,97,114,97,115,111,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,49,52,52,44,34,98,101,100,115,34,58,49,53,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,48,53,52,51,56,44,50,55,46,51,56,57,54,54,56,93,44,91,45,56,50,46,53,54,52,55,52,44,50,55,46,50,48,53,54,93,44,91,45,56,50,46,52,51,55,51,50,55,44,50,54,46,57,52,54,48,50,53,93,44,91,45,56,50,46,50,53,53,53,50,49,44,50,54,46,57,52,53,50,54,52,93,44,91,45,56,50,46,50,53,53,50,51,55,44,50,55,46,48,51,50,57,55,53,93,44,91,45,56,50,46,48,53,55,52,54,57,44,50,55,46,48,51,50,49,49,57,93,44,91,45,56,50,46,48,53,54,52,57,55,44,50,55,46,50,48,55,55,54,57,93,44,91,45,56,50,46,50,53,51,53,57,54,44,50,55,46,50,48,56,57,49,54,93,44,91,45,56,50,46,50,53,50,50,54,52,44,50,55,46,51,56,54,50,52,51,93,44,91,45,56,50,46,55,48,53,52,51,56,44,50,55,46,51,56,57,54,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,77,97,114,113,117,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,54,56,54,49,50,44,52,51,46,57,56,50,56,51,52,93,44,91,45,56,57,46,53,57,55,57,53,44,52,51,46,57,56,50,49,93,44,91,45,56,57,46,53,57,57,53,52,55,44,52,51,46,54,52,50,54,51,54,93,44,91,45,56,57,46,50,52,53,52,51,55,44,52,51,46,54,52,51,48,56,51,93,44,91,45,56,57,46,50,52,53,51,55,53,44,52,51,46,55,53,57,56,49,51,93,44,91,45,56,57,46,49,54,56,49,50,49,44,52,51,46,56,55,54,52,55,93,44,91,45,56,57,46,49,54,56,54,49,50,44,52,51,46,57,56,50,56,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,77,111,104,97,118,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,48,54,52,44,34,98,101,100,115,34,58,54,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,48,53,48,51,53,52,44,51,54,46,56,52,51,49,52,49,93,44,91,45,49,49,52,46,48,52,51,57,52,52,44,51,54,46,49,57,51,51,53,93,44,91,45,49,49,52,46,49,53,51,52,44,51,54,46,48,50,51,49,55,93,44,91,45,49,49,52,46,50,52,51,56,54,53,44,51,54,46,48,49,53,50,54,54,93,44,91,45,49,49,52,46,51,55,48,49,56,49,44,51,54,46,49,52,50,54,50,52,93,44,91,45,49,49,52,46,54,50,55,48,55,57,44,51,54,46,49,52,48,55,54,49,93,44,91,45,49,49,52,46,55,53,52,53,48,56,44,51,54,46,48,56,54,49,55,49,93,44,91,45,49,49,52,46,55,48,56,49,49,50,44,51,53,46,57,48,57,57,51,51,93,44,91,45,49,49,52,46,54,55,56,56,57,50,44,51,53,46,53,48,49,50,55,54,93,44,91,45,49,49,52,46,53,57,53,49,54,51,44,51,53,46,51,50,49,56,56,51,93,44,91,45,49,49,52,46,53,54,57,53,50,57,44,51,53,46,49,54,50,51,49,55,93,44,91,45,49,49,52,46,54,51,51,52,56,55,44,51,53,46,48,48,49,56,53,55,93,44,91,45,49,49,52,46,54,50,56,50,55,54,44,51,52,46,56,54,51,53,57,54,93,44,91,45,49,49,52,46,52,55,49,54,50,44,51,52,46,55,49,50,57,54,54,93,44,91,45,49,49,52,46,52,51,53,54,55,49,44,51,52,46,53,57,51,56,52,49,93,44,91,45,49,49,52,46,51,51,57,54,50,55,44,51,52,46,52,53,49,52,51,53,93,44,91,45,49,49,52,46,49,51,56,50,56,50,44,51,52,46,51,48,51,50,51,93,44,91,45,49,49,52,46,48,51,49,49,51,50,44,51,52,46,50,53,57,56,49,57,93,44,91,45,49,49,51,46,54,48,54,48,57,51,44,51,52,46,50,50,57,51,51,52,93,44,91,45,49,49,51,46,53,51,57,53,50,52,44,51,52,46,51,48,54,51,55,55,93,44,91,45,49,49,51,46,51,51,51,53,48,56,44,51,52,46,51,49,55,56,55,55,93,44,91,45,49,49,51,46,51,51,52,49,54,49,44,51,53,46,53,50,56,48,51,55,93,44,91,45,49,49,51,46,51,49,51,52,50,56,44,51,54,46,49,48,48,48,48,49,93,44,91,45,49,49,51,46,48,48,54,51,52,51,44,51,54,46,50,51,56,55,53,52,93,44,91,45,49,49,50,46,57,48,50,57,52,57,44,51,54,46,50,53,51,55,54,49,93,44,91,45,49,49,50,46,54,56,49,53,55,49,44,51,54,46,51,52,49,54,54,50,93,44,91,45,49,49,50,46,54,50,57,52,57,44,51,54,46,51,57,49,54,49,49,93,44,91,45,49,49,50,46,54,53,54,51,54,53,44,51,54,46,53,53,51,57,49,53,93,44,91,45,49,49,50,46,54,49,57,55,50,56,44,51,54,46,55,56,50,55,52,52,93,44,91,45,49,49,50,46,53,51,56,53,55,49,44,51,55,46,48,48,48,55,53,56,93,44,91,45,49,49,50,46,56,57,57,49,57,49,44,51,55,46,48,48,48,51,56,53,93,44,91,45,49,49,52,46,48,53,48,48,53,50,44,51,55,46,48,48,48,49,57,49,93,44,91,45,49,49,52,46,48,53,48,51,53,52,44,51,54,46,56,52,51,49,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,89,97,118,97,112,97,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,54,52,53,44,34,98,101,100,115,34,58,51,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,51,51,52,49,54,49,44,51,53,46,53,50,56,48,51,55,93,44,91,45,49,49,51,46,51,51,51,53,48,56,44,51,52,46,51,49,55,56,55,55,93,44,91,45,49,49,51,46,51,51,51,55,53,51,44,51,51,46,57,57,57,50,50,55,93,44,91,45,49,49,50,46,55,52,51,57,53,49,44,51,51,46,57,57,57,56,57,56,93,44,91,45,49,49,50,46,50,55,54,48,52,44,51,51,46,56,56,50,51,49,50,93,44,91,45,49,49,50,46,49,54,51,50,53,51,44,51,52,46,48,52,55,52,55,49,93,44,91,45,49,49,49,46,55,50,53,51,49,44,51,51,46,57,57,57,56,52,57,93,44,91,45,49,49,49,46,52,57,52,55,55,56,44,51,51,46,57,57,57,56,49,55,93,44,91,45,49,49,49,46,52,55,55,56,53,51,44,51,52,46,49,53,49,49,48,56,93,44,91,45,49,49,49,46,55,49,50,49,49,56,44,51,52,46,49,53,49,50,55,49,93,44,91,45,49,49,49,46,54,53,57,54,50,50,44,51,52,46,51,56,54,51,52,50,93,44,91,45,49,49,49,46,53,53,52,54,56,49,44,51,52,46,52,55,49,55,51,51,93,44,91,45,49,49,49,46,53,53,49,57,53,57,44,51,52,46,56,48,50,53,50,93,44,91,45,49,49,49,46,55,55,56,50,48,52,44,51,52,46,56,48,51,54,56,53,93,44,91,45,49,49,49,46,55,55,56,50,57,55,44,51,52,46,57,56,49,48,48,55,93,44,91,45,49,49,50,46,51,51,52,53,51,54,44,51,52,46,57,55,51,48,50,52,93,44,91,45,49,49,50,46,51,51,53,55,49,54,44,51,53,46,49,52,56,50,55,57,93,44,91,45,49,49,50,46,52,52,50,51,44,51,53,46,49,52,57,52,48,56,93,44,91,45,49,49,50,46,52,55,50,55,44,51,53,46,50,51,56,51,49,50,93,44,91,45,49,49,50,46,53,55,55,51,57,57,44,51,53,46,50,52,51,51,57,52,93,44,91,45,49,49,50,46,54,57,52,56,52,54,44,51,53,46,51,49,49,53,56,54,93,44,91,45,49,49,50,46,57,52,52,55,56,57,44,51,53,46,51,53,50,54,48,51,93,44,91,45,49,49,51,46,49,55,52,52,53,56,44,51,53,46,53,48,54,52,52,53,93,44,91,45,49,49,51,46,51,51,52,49,54,49,44,51,53,46,53,50,56,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,72,111,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,48,57,49,53,44,34,98,101,100,115,34,58,56,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,49,50,56,49,54,53,44,51,52,46,50,53,51,54,53,50,93,44,91,45,55,57,46,51,51,50,52,53,56,44,51,51,46,57,57,52,57,57,55,93,44,91,45,55,57,46,49,57,48,50,54,52,44,51,51,46,55,48,53,55,56,55,93,44,91,45,55,57,46,49,48,49,48,55,52,44,51,51,46,53,55,50,57,54,57,93,44,91,45,55,56,46,57,50,54,48,55,53,44,51,51,46,53,55,50,54,53,56,93,44,91,45,55,56,46,54,57,49,51,56,50,44,51,51,46,55,53,53,50,56,56,93,44,91,45,55,56,46,52,57,57,51,48,49,44,51,51,46,56,49,50,56,53,50,93,44,91,45,55,56,46,54,53,48,51,49,52,44,51,51,46,57,52,52,51,52,50,93,44,91,45,55,57,46,48,55,49,50,49,49,44,51,52,46,50,57,57,51,52,50,93,44,91,45,55,57,46,49,50,56,49,54,53,44,51,52,46,50,53,51,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,49,51,48,49,44,34,98,101,100,115,34,58,51,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,54,57,54,55,56,50,44,52,48,46,50,52,49,56,54,51,93,44,91,45,55,53,46,53,55,51,51,51,56,44,52,48,46,49,57,53,51,48,51,93,44,91,45,55,53,46,51,54,49,48,54,54,44,52,48,46,48,54,53,53,52,51,93,44,91,45,55,53,46,50,55,54,52,56,50,44,51,57,46,57,55,54,57,53,57,93,44,91,45,55,53,46,50,50,51,54,49,44,52,48,46,48,57,50,57,48,55,93,44,91,45,55,53,46,49,48,57,52,51,49,44,52,48,46,48,52,53,56,55,52,93,44,91,45,55,53,46,48,49,53,48,54,54,44,52,48,46,49,51,55,57,57,50,93,44,91,45,55,53,46,52,56,52,48,53,55,44,52,48,46,52,49,56,52,53,49,93,44,91,45,55,53,46,53,50,57,54,57,52,44,52,48,46,52,52,54,57,57,53,93,44,91,45,55,53,46,54,57,54,55,56,50,44,52,48,46,50,52,49,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,44,91,45,49,49,54,46,51,54,57,49,50,50,44,52,54,46,52,54,54,57,50,51,93,44,91,45,49,49,54,46,51,54,56,56,48,49,44,52,54,46,51,52,51,50,49,55,93,44,91,45,49,49,54,46,55,49,51,52,57,54,44,52,54,46,51,50,53,53,50,55,93,44,91,45,49,49,54,46,55,48,49,56,49,57,44,52,53,46,57,57,54,51,56,49,93,44,91,45,49,49,54,46,53,49,52,55,48,55,44,52,54,46,48,51,56,55,53,55,93,44,91,45,49,49,54,46,52,53,52,49,49,55,44,52,54,46,49,57,50,48,51,50,93,44,91,45,49,49,54,46,51,48,51,55,49,51,44,52,54,46,49,54,54,55,55,56,93,44,91,45,49,49,54,46,49,51,51,53,55,44,52,54,46,50,49,53,50,51,49,93,44,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,65,114,101,99,105,98,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,50,52,50,44,34,98,101,100,115,34,58,50,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,55,54,52,54,57,50,44,49,56,46,53,51,56,51,51,93,44,91,45,54,54,46,55,55,48,48,55,50,44,49,56,46,51,50,53,48,49,51,93,44,91,45,54,54,46,54,48,54,57,56,57,44,49,56,46,51,50,56,49,56,54,93,44,91,45,54,54,46,53,57,48,55,56,53,44,49,56,46,51,51,56,48,54,93,44,91,45,54,54,46,53,56,56,49,56,49,44,49,56,46,51,56,57,52,48,56,93,44,91,45,54,54,46,53,55,56,52,52,49,44,49,56,46,53,52,49,52,51,49,93,44,91,45,54,54,46,55,54,52,54,57,50,44,49,56,46,53,51,56,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,50,48,34,44,34,78,65,77,69,34,58,34,78,111,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,57,48,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,54,51,54,50,53,44,51,54,46,57,50,48,57,53,57,93,44,91,45,56,50,46,53,57,49,49,52,55,44,51,54,46,57,51,53,51,49,51,93,44,91,45,56,50,46,54,51,51,56,51,49,44,51,54,46,57,53,50,50,55,54,93,44,91,45,56,50,46,54,54,51,54,50,53,44,51,54,46,57,50,48,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,77,111,114,114,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,52,51,56,51,44,34,98,101,100,115,34,58,49,56,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,53,48,51,50,49,50,44,52,49,46,48,56,53,56,55,51,93,44,91,45,55,52,46,54,52,48,54,52,51,44,52,48,46,57,54,53,51,51,56,93,44,91,45,55,52,46,55,54,57,52,50,53,44,52,48,46,57,49,48,57,51,52,93,44,91,45,55,52,46,56,56,57,56,49,57,44,52,48,46,55,56,55,55,50,57,93,44,91,45,55,52,46,55,50,53,54,54,54,44,52,48,46,55,49,57,53,51,50,93,44,91,45,55,52,46,53,53,54,48,49,56,44,52,48,46,55,53,56,50,56,56,93,44,91,45,55,52,46,52,54,49,48,51,53,44,52,48,46,54,55,51,53,48,52,93,44,91,45,55,52,46,51,55,49,55,51,56,44,52,48,46,55,51,57,54,52,93,44,91,45,55,52,46,50,55,50,48,54,51,44,52,48,46,56,57,55,52,50,55,93,44,91,45,55,52,46,51,48,49,54,56,53,44,52,48,46,57,57,57,49,55,51,93,44,91,45,55,52,46,53,48,51,50,49,50,44,52,49,46,48,56,53,56,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,49,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,54,54,57,51,53,44,52,48,46,51,56,50,57,57,57,93,44,91,45,57,51,46,51,54,55,50,49,52,44,52,48,46,50,54,54,51,49,52,93,44,91,45,57,51,46,51,54,49,57,53,49,44,52,48,46,48,51,51,48,57,56,93,44,91,45,57,50,46,56,53,54,49,57,49,44,52,48,46,48,51,55,50,53,51,93,44,91,45,57,50,46,56,53,53,54,50,57,44,52,48,46,51,52,50,55,51,54,93,44,91,45,57,50,46,56,53,53,51,49,51,44,52,48,46,51,56,53,56,57,52,93,44,91,45,57,51,46,51,54,54,57,51,53,44,52,48,46,51,56,50,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,78,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,53,53,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,52,55,50,44,51,56,46,54,57,56,49,54,53,93,44,91,45,49,48,48,46,50,52,52,51,57,51,44,51,56,46,50,54,50,50,57,93,44,91,45,49,48,48,46,50,50,55,49,51,55,44,51,56,46,50,54,50,50,51,55,93,44,91,45,57,57,46,53,56,52,50,48,55,44,51,56,46,50,54,50,49,55,57,93,44,91,45,57,57,46,53,56,52,55,57,52,44,51,56,46,51,52,57,51,56,54,93,44,91,45,57,57,46,53,56,53,48,56,55,44,51,56,46,54,57,54,53,51,55,93,44,91,45,57,57,46,53,57,56,51,50,51,44,51,56,46,54,57,54,53,49,52,93,44,91,45,49,48,48,46,49,53,51,56,50,51,44,51,56,46,54,57,55,51,52,49,93,44,91,45,49,48,48,46,50,52,55,50,44,51,56,46,54,57,56,49,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,66,114,97,122,111,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,57,57,57,44,34,98,101,100,115,34,58,50,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,50,52,49,49,56,44,50,57,46,53,56,48,50,51,51,93,44,91,45,57,53,46,52,54,50,53,48,51,44,50,57,46,52,51,57,50,52,93,44,91,45,57,53,46,53,52,57,57,57,52,44,50,57,46,52,51,56,52,51,57,93,44,91,45,57,53,46,53,57,48,55,57,51,44,50,57,46,51,50,55,52,56,53,93,44,91,45,57,53,46,55,53,50,56,54,54,44,50,57,46,51,50,52,53,48,51,93,44,91,45,57,53,46,56,52,55,54,53,54,44,50,57,46,50,54,50,53,57,93,44,91,45,57,53,46,56,55,52,48,50,56,44,50,57,46,50,50,57,55,48,50,93,44,91,45,57,53,46,56,52,49,52,57,57,44,50,57,46,48,57,56,54,50,93,44,91,45,57,53,46,55,54,52,57,51,55,44,50,56,46,57,54,55,51,53,57,93,44,91,45,57,53,46,54,53,53,51,57,56,44,50,56,46,57,53,49,55,49,49,93,44,91,45,57,53,46,52,57,53,54,53,44,50,56,46,55,54,52,56,51,55,93,44,91,45,57,53,46,51,53,51,52,55,49,44,50,56,46,56,49,55,56,54,51,93,44,91,45,57,53,46,48,57,52,51,51,54,44,50,57,46,48,51,50,50,52,93,44,91,45,57,53,46,48,57,49,54,50,50,44,50,57,46,48,54,50,55,51,57,93,44,91,45,57,53,46,48,53,54,53,55,53,44,50,57,46,49,57,57,56,53,54,93,44,91,45,57,53,46,50,51,51,48,56,49,44,50,57,46,52,54,53,53,54,54,93,44,91,45,57,53,46,50,49,54,52,50,50,44,50,57,46,53,53,54,48,56,93,44,91,45,57,53,46,50,54,49,52,54,53,44,50,57,46,53,57,51,48,52,52,93,44,91,45,57,53,46,52,50,52,49,49,56,44,50,57,46,53,56,48,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,57,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,57,48,34,44,34,78,65,77,69,34,58,34,83,116,97,117,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,53,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,55,55,53,54,49,44,51,56,46,49,50,54,52,54,93,44,91,45,55,57,46,48,50,48,51,48,56,44,51,56,46,49,52,51,55,50,53,93,44,91,45,55,57,46,48,51,51,55,56,57,44,51,56,46,49,57,57,48,49,56,93,44,91,45,55,57,46,48,57,51,55,57,49,44,51,56,46,49,56,54,50,56,55,93,44,91,45,55,57,46,48,55,55,53,54,49,44,51,56,46,49,50,54,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,104,97,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,52,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,51,52,53,51,54,53,44,52,48,46,54,57,56,48,57,51,93,44,91,45,49,48,50,46,48,53,49,52,53,55,44,52,48,46,54,57,55,53,51,57,93,44,91,45,49,48,50,46,48,53,49,52,54,53,44,52,48,46,52,52,48,48,48,56,93,44,91,45,49,48,50,46,48,53,49,53,56,54,44,52,48,46,51,52,57,50,49,51,93,44,91,45,49,48,49,46,51,52,50,55,56,56,44,52,48,46,51,53,48,52,52,52,93,44,91,45,49,48,49,46,51,52,53,51,54,53,44,52,48,46,54,57,56,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,50,48,51,52,44,34,98,101,100,115,34,58,50,51,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,56,53,51,54,55,44,51,57,46,57,49,56,52,57,49,93,44,91,45,56,52,46,52,55,57,50,49,51,44,51,57,46,53,57,49,48,50,52,93,44,91,45,56,52,46,51,54,53,50,51,50,44,51,57,46,53,56,57,52,57,51,93,44,91,45,56,52,46,49,49,52,49,57,53,44,51,57,46,53,55,55,57,56,51,93,44,91,45,56,52,46,48,57,50,57,51,56,44,51,57,46,56,51,56,51,52,53,93,44,91,45,56,52,46,48,53,51,55,51,54,44,51,57,46,56,53,48,52,53,56,93,44,91,45,56,52,46,48,53,49,48,49,50,44,51,57,46,56,55,57,56,49,93,44,91,45,56,52,46,49,53,55,54,55,49,44,51,57,46,57,50,50,57,55,93,44,91,45,56,52,46,52,50,53,57,48,50,44,51,57,46,57,49,57,54,50,50,93,44,91,45,56,52,46,52,56,53,51,54,55,44,51,57,46,57,49,56,52,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,52,55,34,44,34,78,65,77,69,34,58,34,84,104,114,111,99,107,109,111,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,55,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,55,49,50,53,56,44,51,50,46,57,53,55,48,50,53,93,44,91,45,57,57,46,48,57,54,48,49,54,44,51,50,46,57,53,55,48,51,55,93,44,91,45,57,56,46,57,53,48,56,55,53,44,51,50,46,57,53,54,57,49,56,93,44,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,44,91,45,57,57,46,52,55,50,52,52,52,44,51,51,46,51,57,57,48,50,51,93,44,91,45,57,57,46,52,55,49,50,53,56,44,51,50,46,57,53,55,48,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,49,34,44,34,78,65,77,69,34,58,34,79,103,108,101,116,104,111,114,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,55,54,50,57,52,44,51,52,46,48,52,51,50,49,57,93,44,91,45,56,51,46,49,50,54,50,50,57,44,51,52,46,48,52,54,50,49,51,93,44,91,45,56,51,46,50,53,56,52,49,51,44,51,51,46,57,57,57,48,57,56,93,44,91,45,56,51,46,50,55,53,57,51,51,44,51,51,46,56,52,55,57,55,55,93,44,91,45,56,51,46,50,56,48,51,52,44,51,51,46,55,54,49,55,55,52,93,44,91,45,56,51,46,49,49,56,55,50,57,44,51,51,46,54,57,56,56,49,56,93,44,91,45,56,50,46,57,57,53,54,48,50,44,51,51,46,54,57,51,53,56,51,93,44,91,45,56,50,46,57,52,57,48,52,54,44,51,51,46,55,51,51,51,51,51,93,44,91,45,56,50,46,57,56,55,50,56,54,44,51,51,46,55,56,48,55,49,93,44,91,45,56,50,46,56,52,54,54,56,54,44,51,51,46,57,52,48,54,51,57,93,44,91,45,56,50,46,55,55,57,53,48,54,44,51,51,46,57,55,49,49,50,52,93,44,91,45,56,50,46,57,55,54,50,57,52,44,51,52,46,48,52,51,50,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,110,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,48,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,53,48,54,50,52,44,51,53,46,52,54,50,57,53,93,44,91,45,57,50,46,56,53,53,44,51,53,46,49,55,50,55,55,55,93,44,91,45,57,50,46,56,57,54,49,48,57,44,51,53,46,49,55,48,54,55,56,93,44,91,45,57,51,46,48,52,48,53,50,53,44,51,53,46,48,55,54,57,50,51,93,44,91,45,57,50,46,55,49,54,51,51,49,44,51,53,46,48,55,49,55,52,50,93,44,91,45,57,50,46,53,53,52,54,56,53,44,51,53,46,49,49,51,50,55,55,93,44,91,45,57,50,46,52,57,57,57,56,53,44,51,53,46,49,54,57,53,55,53,93,44,91,45,57,50,46,52,56,49,52,54,57,44,51,53,46,51,54,56,51,57,50,93,44,91,45,57,50,46,52,55,57,50,54,56,44,51,53,46,52,53,53,51,53,55,93,44,91,45,57,50,46,56,53,48,54,50,52,44,51,53,46,52,54,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,78,111,100,97,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,52,55,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,50,48,50,50,54,53,44,52,48,46,53,55,56,52,56,56,93,44,91,45,57,53,46,49,56,48,54,49,52,44,52,48,46,50,54,49,55,48,54,93,44,91,45,57,53,46,48,55,49,55,48,51,44,52,48,46,50,54,48,56,53,57,93,44,91,45,57,53,46,48,52,51,48,56,44,52,48,46,49,51,48,48,57,54,93,44,91,45,57,52,46,54,48,53,57,52,50,44,52,48,46,49,50,54,49,50,55,93,44,91,45,57,52,46,53,57,56,52,56,55,44,52,48,46,51,56,54,55,49,52,93,44,91,45,57,52,46,54,51,50,48,51,44,52,48,46,53,55,49,51,54,55,93,44,91,45,57,52,46,57,49,52,56,57,54,44,52,48,46,53,55,53,48,54,56,93,44,91,45,57,53,46,50,48,50,50,54,53,44,52,48,46,53,55,56,52,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,82,97,110,115,111,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,54,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,51,51,56,54,50,44,52,54,46,54,51,48,55,50,55,93,44,91,45,57,56,46,48,51,52,53,53,54,44,52,54,46,50,56,50,54,53,55,93,44,91,45,57,56,46,48,48,54,55,49,53,44,52,54,46,50,56,50,54,50,54,93,44,91,45,57,55,46,50,56,48,53,54,54,44,52,54,46,50,56,50,51,57,51,93,44,91,45,57,55,46,50,55,57,57,52,56,44,52,54,46,54,50,57,51,52,56,93,44,91,45,57,55,46,54,56,50,48,48,54,44,52,54,46,54,50,57,57,50,56,93,44,91,45,57,56,46,48,51,51,56,54,50,44,52,54,46,54,51,48,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,55,56,54,44,34,98,101,100,115,34,58,51,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,54,55,51,49,56,44,52,51,46,56,50,53,57,48,50,93,44,91,45,56,52,46,49,54,56,49,50,55,44,52,51,46,53,54,56,56,57,57,93,44,91,45,56,52,46,48,53,48,57,56,55,44,52,51,46,53,50,52,48,54,52,93,44,91,45,56,51,46,56,49,55,50,50,56,44,52,51,46,53,50,50,51,52,53,93,44,91,45,56,51,46,54,57,56,56,49,54,44,52,51,46,52,55,56,57,53,55,93,44,91,45,56,51,46,55,48,56,51,49,55,44,52,51,46,56,50,56,55,50,49,93,44,91,45,56,51,46,55,48,56,53,50,53,44,52,51,46,56,51,51,57,52,56,93,44,91,45,56,51,46,57,48,55,54,48,56,44,52,51,46,57,49,48,52,49,53,93,44,91,45,56,52,46,48,52,52,56,52,51,44,52,51,46,57,49,49,49,52,54,93,44,91,45,56,52,46,49,54,54,51,55,55,44,52,51,46,57,57,54,57,48,49,93,44,91,45,56,52,46,49,54,55,51,49,56,44,52,51,46,56,50,53,57,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,55,48,48,53,44,34,98,101,100,115,34,58,52,48,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,55,52,57,57,50,44,51,53,46,51,56,52,49,53,50,93,44,91,45,57,48,46,49,53,50,48,57,52,44,51,53,46,50,53,53,57,56,57,93,44,91,45,57,48,46,48,54,54,53,57,49,44,51,53,46,49,51,53,57,57,93,44,91,45,57,48,46,49,55,51,54,48,51,44,51,53,46,49,49,56,48,55,51,93,44,91,45,57,48,46,50,48,57,51,57,55,44,51,53,46,48,50,54,53,52,54,93,44,91,45,57,48,46,51,48,57,50,56,57,44,51,52,46,57,57,53,54,57,52,93,44,91,45,56,57,46,55,50,52,51,50,52,44,51,52,46,57,57,52,55,57,93,44,91,45,56,57,46,54,52,52,48,53,44,51,52,46,57,57,53,50,57,49,93,44,91,45,56,57,46,54,51,50,55,55,54,44,51,53,46,51,55,53,56,50,52,93,44,91,45,57,48,46,48,52,49,53,54,51,44,51,53,46,51,57,54,54,50,93,44,91,45,57,48,46,48,53,52,51,50,50,44,51,53,46,51,56,57,50,55,55,93,44,91,45,57,48,46,48,55,52,57,57,50,44,51,53,46,51,56,52,49,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,117,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,48,55,53,44,34,98,101,100,115,34,58,52,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,48,52,54,52,55,49,44,51,57,46,55,57,55,54,52,56,93,44,91,45,49,50,49,46,57,55,52,55,57,52,44,51,57,46,54,55,53,52,56,55,93,44,91,45,49,50,49,46,57,57,52,48,50,49,44,51,57,46,53,51,51,57,50,54,93,44,91,45,49,50,49,46,56,53,54,53,51,50,44,51,57,46,53,51,54,57,48,52,93,44,91,45,49,50,49,46,56,57,48,48,49,51,44,51,57,46,51,56,51,56,54,52,93,44,91,45,49,50,49,46,57,48,56,50,54,57,44,51,57,46,51,48,51,56,55,56,93,44,91,45,49,50,49,46,54,50,51,55,54,44,51,57,46,50,57,53,54,50,49,93,44,91,45,49,50,49,46,52,48,55,53,50,55,44,51,57,46,51,51,57,55,53,52,93,44,91,45,49,50,49,46,51,48,53,49,50,50,44,51,57,46,53,49,57,53,56,53,93,44,91,45,49,50,49,46,49,52,57,57,48,55,44,51,57,46,53,50,54,52,52,54,93,44,91,45,49,50,49,46,48,55,54,54,57,53,44,51,57,46,53,57,55,50,54,52,93,44,91,45,49,50,49,46,49,51,54,55,49,53,44,51,57,46,54,50,56,49,54,57,93,44,91,45,49,50,49,46,51,54,49,50,48,54,44,51,57,46,56,53,53,52,55,51,93,44,91,45,49,50,49,46,52,51,54,56,56,54,44,52,48,46,49,53,49,57,48,53,93,44,91,45,49,50,49,46,53,56,54,52,48,55,44,52,48,46,49,48,48,53,50,50,93,44,91,45,49,50,49,46,54,52,54,48,51,50,44,51,57,46,57,56,50,53,50,55,93,44,91,45,49,50,49,46,56,48,52,48,52,49,44,51,57,46,56,56,52,51,52,52,93,44,91,45,49,50,50,46,48,52,52,56,54,53,44,51,57,46,56,56,51,55,55,49,93,44,91,45,49,50,50,46,48,52,54,52,55,49,44,51,57,46,55,57,55,54,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,80,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,49,50,57,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,53,51,56,55,49,44,52,54,46,49,53,56,49,50,93,44,91,45,57,51,46,48,53,53,48,56,49,44,52,53,46,57,56,49,50,51,51,93,44,91,45,57,51,46,49,52,50,56,54,57,44,52,53,46,57,56,49,48,48,53,93,44,91,45,57,51,46,49,52,49,55,57,51,44,52,53,46,55,51,48,54,53,55,93,44,91,45,57,50,46,56,52,49,48,53,49,44,52,53,46,55,51,48,48,50,52,93,44,91,45,57,50,46,55,49,50,53,48,51,44,52,53,46,56,57,49,55,48,53,93,44,91,45,57,50,46,51,53,48,52,48,55,44,52,54,46,48,49,54,51,54,56,93,44,91,45,57,50,46,50,57,51,55,48,53,44,52,54,46,49,53,55,51,50,49,93,44,91,45,57,50,46,50,57,50,56,54,44,52,54,46,52,49,55,50,50,93,44,91,45,57,51,46,48,53,52,56,52,55,44,52,54,46,52,49,57,50,54,57,93,44,91,45,57,51,46,48,53,51,56,55,49,44,52,54,46,49,53,56,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,97,115,116,114,111,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,53,55,55,44,34,98,101,100,115,34,58,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,57,53,51,57,44,51,48,46,52,49,57,53,54,51,93,44,91,45,57,55,46,52,57,50,52,56,50,44,51,48,46,50,49,48,48,49,49,93,44,91,45,57,55,46,54,52,57,51,55,44,51,48,46,48,54,55,57,52,52,93,44,91,45,57,55,46,51,49,53,56,50,51,44,50,57,46,55,56,54,53,52,49,93,44,91,45,57,55,46,48,50,52,52,54,49,44,51,48,46,48,53,49,52,51,53,93,44,91,45,57,55,46,48,56,49,56,51,52,44,51,48,46,50,53,57,51,53,55,93,44,91,45,57,55,46,51,51,52,52,54,51,44,51,48,46,52,48,50,56,52,51,93,44,91,45,57,55,46,51,54,57,53,51,57,44,51,48,46,52,49,57,53,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,75,108,105,99,107,105,116,97,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,57,54,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,56,54,53,56,50,57,44,52,54,46,48,52,48,56,53,56,93,44,91,45,49,50,48,46,56,48,49,50,57,53,44,52,54,46,48,52,49,48,49,52,93,44,91,45,49,50,49,46,53,50,50,51,50,49,44,52,54,46,48,52,52,48,48,54,93,44,91,45,49,50,49,46,54,49,50,50,51,50,44,52,54,46,48,52,52,48,57,51,93,44,91,45,49,50,49,46,54,48,57,50,52,54,44,52,53,46,55,56,50,53,49,57,93,44,91,45,49,50,49,46,53,50,51,54,56,49,44,52,53,46,55,50,52,57,51,93,44,91,45,49,50,49,46,52,52,49,50,50,57,44,52,53,46,54,57,55,50,56,93,44,91,45,49,50,49,46,51,51,55,55,49,50,44,52,53,46,55,48,52,56,51,57,93,44,91,45,49,50,49,46,48,56,52,56,54,51,44,52,53,46,54,52,55,57,51,50,93,44,91,45,49,50,48,46,57,49,53,56,53,44,52,53,46,54,52,49,50,93,44,91,45,49,50,48,46,54,53,51,53,48,51,44,52,53,46,55,51,55,49,56,49,93,44,91,45,49,50,48,46,53,48,53,55,52,51,44,52,53,46,54,57,57,57,52,57,93,44,91,45,49,50,48,46,50,49,48,55,55,52,44,52,53,46,55,50,53,57,49,53,93,44,91,45,49,49,57,46,57,57,57,53,48,49,44,52,53,46,56,49,50,53,49,55,93,44,91,45,49,49,57,46,56,54,56,51,49,50,44,52,53,46,56,51,54,49,57,56,93,44,91,45,49,49,57,46,56,54,53,56,50,57,44,52,54,46,48,52,48,56,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,117,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,55,51,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,48,48,56,52,56,53,44,52,56,46,56,51,49,50,49,56,93,44,91,45,49,50,51,46,48,48,56,52,56,54,44,52,56,46,55,54,55,48,57,57,93,44,91,45,49,50,51,46,50,54,55,56,55,55,44,52,56,46,54,57,51,57,57,51,93,44,91,45,49,50,51,46,50,49,56,57,50,57,44,52,56,46,53,52,56,55,48,56,93,44,91,45,49,50,51,46,49,49,53,49,51,56,44,52,56,46,52,50,50,56,51,93,44,91,45,49,50,51,46,50,52,55,57,49,57,44,52,56,46,50,56,52,53,53,56,93,44,91,45,49,50,50,46,57,53,50,51,56,54,44,52,56,46,51,52,57,55,48,54,93,44,91,45,49,50,50,46,56,54,51,48,55,56,44,52,56,46,51,55,48,51,54,49,93,44,91,45,49,50,50,46,55,51,53,50,51,49,44,52,56,46,52,48,53,57,51,50,93,44,91,45,49,50,50,46,55,54,52,52,48,52,44,52,56,46,54,48,48,53,55,55,93,44,91,45,49,50,50,46,55,49,51,55,48,52,44,52,56,46,54,52,53,49,51,93,44,91,45,49,50,50,46,56,49,50,51,52,44,52,56,46,55,55,49,56,53,93,44,91,45,49,50,51,46,48,48,56,52,56,53,44,52,56,46,56,51,49,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,57,55,56,54,44,34,98,101,100,115,34,58,49,50,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,52,53,50,48,52,44,52,52,46,53,56,52,55,52,54,93,44,91,45,56,56,46,49,57,48,52,54,53,44,52,52,46,53,56,54,55,57,57,93,44,91,45,56,56,46,49,57,50,54,49,49,44,52,52,46,50,52,49,57,52,55,93,44,91,45,56,56,46,48,52,51,50,52,44,52,52,46,50,52,49,48,49,56,93,44,91,45,56,55,46,56,56,56,48,56,55,44,52,52,46,50,52,48,52,54,49,93,44,91,45,56,55,46,55,54,54,48,50,54,44,52,52,46,51,50,55,49,56,52,93,44,91,45,56,55,46,55,53,56,48,52,56,44,52,52,46,54,55,55,48,53,52,93,44,91,45,56,55,46,55,54,50,51,51,57,44,52,52,46,54,55,55,48,49,53,93,44,91,45,56,56,46,50,52,50,54,56,55,44,52,52,46,54,55,57,54,51,49,93,44,91,45,56,56,46,50,52,53,50,48,52,44,52,52,46,53,56,52,55,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,53,34,44,34,78,65,77,69,34,58,34,87,105,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,56,48,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,54,48,56,55,54,44,51,55,46,55,51,52,51,48,52,93,44,91,45,57,53,46,57,54,49,48,48,50,44,51,55,46,54,48,51,55,54,49,93,44,91,45,57,53,46,57,54,49,54,48,53,44,51,55,46,51,56,54,54,51,54,93,44,91,45,57,53,46,53,50,53,53,54,44,51,55,46,51,56,51,57,55,57,93,44,91,45,57,53,46,53,50,53,52,57,57,44,51,55,46,55,51,50,55,53,57,93,44,91,45,57,53,46,57,54,48,56,55,54,44,51,55,46,55,51,52,51,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,78,97,116,99,104,105,116,111,99,104,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,57,54,51,44,34,98,101,100,115,34,58,49,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,52,49,49,55,49,44,51,49,46,56,52,53,50,51,51,93,44,91,45,57,51,46,52,52,49,55,52,51,44,51,49,46,55,49,52,52,56,53,93,44,91,45,57,51,46,51,51,56,57,55,50,44,51,49,46,55,49,52,50,53,57,93,44,91,45,57,51,46,51,51,55,52,53,54,44,51,49,46,53,51,56,49,49,93,44,91,45,57,51,46,50,51,54,54,54,50,44,51,49,46,53,51,56,51,51,57,93,44,91,45,57,51,46,50,51,54,49,48,52,44,51,49,46,51,54,52,53,48,55,93,44,91,45,57,50,46,57,56,49,52,54,52,44,51,49,46,51,52,54,54,52,52,93,44,91,45,57,50,46,57,49,51,48,49,57,44,51,49,46,51,54,56,50,51,54,93,44,91,45,57,50,46,55,49,56,57,56,51,44,51,49,46,53,49,55,53,57,52,93,44,91,45,57,50,46,56,48,54,50,48,54,44,51,49,46,53,57,56,53,52,56,93,44,91,45,57,50,46,57,48,56,51,49,51,44,51,49,46,54,50,53,49,54,57,93,44,91,45,57,50,46,57,55,51,53,50,57,44,51,49,46,55,48,56,57,50,50,93,44,91,45,57,50,46,57,52,50,50,52,53,44,51,49,46,56,53,52,50,54,56,93,44,91,45,57,50,46,56,56,50,57,57,56,44,51,49,46,57,51,57,57,55,93,44,91,45,57,50,46,57,51,57,48,56,44,51,50,46,49,52,55,57,52,50,93,44,91,45,57,51,46,49,56,55,49,54,50,44,51,50,46,49,52,56,52,49,50,93,44,91,45,57,51,46,49,51,54,49,50,55,44,51,50,46,48,53,54,50,50,52,93,44,91,45,57,51,46,50,51,56,52,55,44,51,49,46,57,55,50,55,56,49,93,44,91,45,57,51,46,51,53,53,52,53,50,44,51,49,46,57,51,50,50,50,50,93,44,91,45,57,51,46,52,52,49,49,55,49,44,51,49,46,56,52,53,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,84,101,114,114,101,98,111,110,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,53,56,55,44,34,98,101,100,115,34,58,53,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,48,57,51,56,44,50,56,46,57,57,53,51,52,93,44,91,45,57,48,46,52,48,57,52,49,51,44,50,57,46,50,51,57,55,51,56,93,44,91,45,57,48,46,51,56,53,53,51,57,44,50,57,46,51,54,55,55,52,57,93,44,91,45,57,48,46,54,49,57,51,48,57,44,50,57,46,53,57,56,48,57,50,93,44,91,45,57,48,46,55,54,54,56,52,57,44,50,57,46,54,57,53,52,55,55,93,44,91,45,57,49,46,48,48,54,55,52,51,44,50,57,46,55,49,52,55,55,49,93,44,91,45,57,49,46,48,56,50,54,48,50,44,50,57,46,54,50,54,51,54,56,93,44,91,45,57,49,46,50,54,48,54,54,49,44,50,57,46,53,52,52,53,49,93,44,91,45,57,49,46,50,49,50,49,53,55,44,50,57,46,52,50,51,52,50,57,93,44,91,45,57,49,46,51,53,52,50,55,50,44,50,57,46,50,51,57,54,48,54,93,44,91,45,57,49,46,50,57,50,54,56,49,44,50,57,46,49,57,54,49,55,55,93,44,91,45,57,49,46,48,48,54,48,53,52,44,50,57,46,49,49,57,57,57,52,93,44,91,45,57,49,46,48,48,56,55,53,57,44,50,57,46,48,50,54,57,48,50,93,44,91,45,57,48,46,57,48,55,48,56,44,50,56,46,57,57,49,49,51,50,93,44,91,45,57,48,46,55,50,48,55,54,53,44,50,56,46,57,57,50,54,51,93,44,91,45,57,48,46,53,53,50,53,52,55,44,50,57,46,48,51,54,56,48,54,93,44,91,45,57,48,46,52,48,57,51,56,44,50,56,46,57,57,53,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,73,114,119,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,54,56,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,48,48,55,48,50,44,51,49,46,53,57,51,57,57,93,44,91,45,56,51,46,51,51,56,55,50,56,44,51,49,46,52,55,53,57,57,49,93,44,91,45,56,51,46,49,52,53,53,56,55,44,51,49,46,52,55,50,50,55,54,93,44,91,45,56,50,46,57,57,56,51,54,44,51,49,46,54,55,51,49,54,52,93,44,91,45,56,51,46,51,50,53,54,49,55,44,51,49,46,54,56,48,54,48,51,93,44,91,45,56,51,46,51,50,53,50,57,54,44,51,49,46,55,53,54,53,56,52,93,44,91,45,56,51,46,52,53,51,54,51,52,44,51,49,46,55,53,55,56,54,49,93,44,91,45,56,51,46,53,48,48,55,48,50,44,51,49,46,53,57,51,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,32,83,108,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,57,55,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,49,46,48,48,50,54,57,52,44,54,56,46,52,57,56,51,54,52,93,44,91,45,49,52,49,46,48,48,50,55,56,50,44,54,57,46,55,48,51,54,52,56,93,44,91,45,49,52,49,46,51,55,55,56,57,54,44,54,57,46,55,52,52,49,52,55,93,44,91,45,49,52,49,46,53,57,49,52,53,51,44,54,57,46,56,49,52,53,56,50,93,44,91,45,49,52,50,46,48,55,57,48,56,55,44,54,57,46,57,48,56,53,48,50,93,44,91,45,49,52,50,46,55,48,54,50,57,53,44,55,48,46,48,56,56,49,57,54,93,44,91,45,49,52,51,46,50,50,54,52,51,51,44,55,48,46,50,48,49,57,57,56,93,44,91,45,49,52,51,46,57,52,48,53,56,53,44,55,48,46,49,54,57,54,56,53,93,44,91,45,49,52,52,46,53,50,57,49,48,52,44,55,48,46,48,55,57,48,54,49,93,44,91,45,49,52,52,46,54,56,49,52,54,56,44,55,48,46,48,49,53,55,55,51,93,44,91,45,49,52,53,46,48,54,52,57,56,51,44,55,48,46,48,56,55,54,49,49,93,44,91,45,49,52,53,46,50,55,57,51,54,44,55,48,46,48,56,56,57,53,57,93,44,91,45,49,52,53,46,57,56,49,55,56,49,44,55,48,46,50,52,50,51,48,55,93,44,91,45,49,52,54,46,51,55,55,57,49,56,44,55,48,46,50,56,51,55,53,93,44,91,45,49,52,54,46,55,48,56,57,54,51,44,55,48,46,50,56,50,52,51,93,44,91,45,49,52,55,46,51,55,50,53,49,56,44,55,48,46,52,51,48,53,51,57,93,44,91,45,49,52,55,46,55,55,57,52,51,54,44,55,48,46,52,55,49,56,54,57,93,44,91,45,49,52,56,46,48,48,51,53,48,50,44,55,48,46,53,52,53,53,55,57,93,44,91,45,49,52,56,46,52,50,49,51,48,53,44,55,48,46,53,51,50,56,54,52,93,44,91,45,49,52,56,46,53,49,53,52,55,57,44,55,48,46,52,55,55,52,55,53,93,44,91,45,49,52,57,46,48,57,48,52,55,54,44,55,48,46,53,54,53,52,50,93,44,91,45,49,52,57,46,54,55,57,56,55,53,44,55,48,46,54,50,49,52,57,53,93,44,91,45,49,53,48,46,51,52,53,50,52,44,55,48,46,53,53,51,50,51,50,93,44,91,45,49,53,48,46,55,57,53,49,53,50,44,55,48,46,53,52,56,51,53,57,93,44,91,45,49,53,49,46,51,49,52,57,55,55,44,55,48,46,52,54,51,52,50,54,93,44,91,45,49,53,49,46,53,52,56,56,57,49,44,55,48,46,52,57,49,48,56,53,93,44,91,45,49,53,49,46,54,49,50,55,52,44,55,48,46,53,57,51,54,48,52,93,44,91,45,49,53,50,46,49,53,49,56,53,49,44,55,48,46,56,55,53,49,51,49,93,44,91,45,49,53,50,46,53,48,57,55,53,55,44,55,48,46,57,51,52,55,50,54,93,44,91,45,49,53,51,46,50,55,52,51,49,44,55,48,46,57,55,48,57,53,55,93,44,91,45,49,53,51,46,56,57,57,49,55,53,44,55,48,46,57,51,54,50,49,56,93,44,91,45,49,53,52,46,52,51,55,54,55,53,44,55,49,46,48,50,51,53,53,50,93,44,91,45,49,53,52,46,56,50,49,51,49,55,44,55,49,46,49,53,56,57,54,49,93,44,91,45,49,53,53,46,52,53,56,56,54,53,44,55,49,46,50,54,56,53,57,93,44,91,45,49,53,53,46,55,53,54,50,49,53,44,55,49,46,50,56,51,51,56,49,93,44,91,45,49,53,53,46,57,50,54,52,50,56,44,55,49,46,51,53,55,54,56,53,93,44,91,45,49,53,54,46,52,48,48,54,50,54,44,55,49,46,52,51,53,52,48,55,93,44,91,45,49,53,54,46,53,56,50,50,53,50,44,55,49,46,52,50,55,54,55,49,93,44,91,45,49,53,54,46,57,52,48,56,51,44,55,49,46,51,49,49,50,48,52,93,44,91,45,49,53,55,46,53,51,50,52,50,50,44,55,49,46,48,48,55,53,53,52,93,44,91,45,49,53,56,46,49,55,49,52,54,51,44,55,48,46,56,55,49,48,52,55,93,44,91,45,49,53,56,46,53,53,50,55,50,51,44,55,48,46,57,48,50,56,50,56,93,44,91,45,49,53,56,46,55,51,51,57,57,56,44,55,48,46,57,54,51,49,49,57,93,44,91,45,49,53,57,46,50,51,56,52,52,44,55,48,46,57,50,48,50,56,49,93,44,91,45,49,53,57,46,55,53,53,52,54,55,44,55,48,46,56,51,48,53,50,54,93,44,91,45,49,54,48,46,52,49,52,50,49,55,44,55,48,46,53,54,49,50,57,56,93,44,91,45,49,54,48,46,57,48,55,56,54,49,44,55,48,46,52,49,53,55,52,50,93,44,91,45,49,54,49,46,51,49,53,49,51,52,44,55,48,46,51,52,55,50,53,54,93,44,91,45,49,54,49,46,57,52,56,54,53,55,44,55,48,46,51,55,52,55,52,50,93,44,91,45,49,54,50,46,52,54,53,50,50,49,44,55,48,46,50,49,55,50,52,51,93,44,91,45,49,54,50,46,56,49,56,56,49,55,44,54,57,46,57,57,57,48,50,56,93,44,91,45,49,54,51,46,49,51,51,53,54,49,44,54,57,46,56,51,56,55,48,50,93,44,91,45,49,54,51,46,50,56,55,55,55,50,44,54,57,46,54,51,50,51,56,52,93,44,91,45,49,54,51,46,50,56,57,53,56,57,44,54,57,46,52,51,48,51,53,55,93,44,91,45,49,54,51,46,51,56,48,53,56,57,44,54,57,46,51,50,48,50,49,57,93,44,91,45,49,54,51,46,54,53,48,55,57,56,44,54,57,46,49,54,56,54,57,50,93,44,91,45,49,54,52,46,48,50,48,51,54,53,44,54,57,46,48,51,51,49,53,93,44,91,45,49,54,52,46,50,55,57,51,55,57,44,54,56,46,57,55,57,54,49,55,93,44,91,45,49,54,53,46,51,53,55,48,52,56,44,54,56,46,57,48,56,57,51,57,93,44,91,45,49,54,54,46,50,48,48,49,53,49,44,54,56,46,57,51,51,56,50,51,93,44,91,45,49,54,54,46,51,52,55,52,50,56,44,54,56,46,57,48,48,51,56,54,93,44,91,45,49,54,54,46,51,54,55,54,54,52,44,54,56,46,53,55,52,57,57,52,93,44,91,45,49,54,54,46,53,48,50,56,55,50,44,54,56,46,52,53,54,49,48,57,93,44,91,45,49,54,54,46,56,52,57,57,56,49,44,54,56,46,52,48,49,54,52,52,93,44,91,45,49,54,54,46,57,52,50,48,52,49,44,54,56,46,51,48,50,53,57,52,93,44,91,45,49,54,54,46,54,53,49,57,56,51,44,54,56,46,50,56,56,51,49,56,93,44,91,45,49,54,54,46,50,56,53,51,44,54,56,46,50,50,52,51,54,55,93,44,91,45,49,54,53,46,57,54,54,48,52,50,44,54,56,46,48,55,50,52,57,50,93,44,91,45,49,54,53,46,53,57,54,48,52,54,44,54,56,46,48,51,52,55,50,55,93,44,91,45,49,54,52,46,52,57,57,52,51,55,44,54,56,46,48,51,52,55,52,56,93,44,91,45,49,54,52,46,52,57,57,52,54,51,44,54,56,46,50,48,55,56,57,93,44,91,45,49,54,50,46,55,50,50,49,57,44,54,56,46,50,48,55,57,50,54,93,44,91,45,49,54,50,46,55,50,50,50,48,50,44,54,56,46,50,57,52,52,57,54,93,44,91,45,49,54,50,46,48,50,51,50,55,51,44,54,56,46,50,57,52,53,49,49,93,44,91,45,49,54,50,46,48,50,51,50,54,49,44,54,56,46,50,48,55,57,52,93,44,91,45,49,54,49,46,53,53,55,51,50,56,44,54,56,46,50,48,55,57,52,57,93,44,91,45,49,54,49,46,53,53,55,51,50,44,54,56,46,50,57,52,53,50,49,93,44,91,45,49,54,49,46,48,57,49,51,54,52,44,54,56,46,50,57,52,53,51,50,93,44,91,45,49,54,49,46,48,57,49,51,53,49,44,54,56,46,50,48,55,57,54,49,93,44,91,45,49,54,48,46,49,53,57,52,52,44,54,56,46,50,48,55,57,56,50,93,44,91,45,49,54,48,46,49,53,57,52,53,50,44,54,56,46,50,57,52,53,53,51,93,44,91,45,49,53,57,46,54,57,51,52,56,55,44,54,56,46,50,57,52,53,54,52,93,44,91,45,49,53,57,46,54,57,51,52,55,55,44,54,56,46,50,48,55,57,57,50,93,44,91,45,49,53,56,46,52,53,55,56,51,54,44,54,56,46,50,48,56,48,49,54,93,44,91,45,49,53,55,46,49,53,52,57,50,52,44,54,56,46,50,48,56,48,53,52,93,44,91,45,49,53,55,46,49,53,52,57,49,44,54,56,46,49,50,49,52,56,51,93,44,91,45,49,53,54,46,50,51,54,56,51,49,44,54,56,46,49,50,49,52,57,56,93,44,91,45,49,53,54,46,50,51,54,56,49,55,44,54,56,46,48,51,52,57,50,54,93,44,91,45,49,53,53,46,51,49,56,55,52,56,44,54,56,46,48,51,52,57,52,50,93,44,91,45,49,53,53,46,51,49,56,55,52,52,44,54,56,46,48,48,48,48,51,50,93,44,91,45,49,53,51,46,52,48,52,49,53,50,44,54,56,93,44,91,45,49,53,49,46,57,48,48,50,55,54,44,54,56,46,48,48,48,48,48,55,93,44,91,45,49,53,48,46,56,57,48,48,50,56,44,54,56,46,48,48,48,48,48,52,93,44,91,45,49,52,57,46,51,50,53,52,51,44,54,55,46,57,57,57,57,57,57,93,44,91,45,49,52,55,46,55,53,51,49,49,55,44,54,55,46,57,57,57,57,56,56,93,44,91,45,49,52,54,44,54,56,93,44,91,45,49,52,54,44,54,56,46,53,93,44,91,45,49,52,51,46,53,50,56,56,50,51,44,54,56,46,53,48,48,48,50,49,93,44,91,45,49,52,49,46,48,48,50,54,57,52,44,54,56,46,52,57,56,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,114,101,110,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,54,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,51,57,55,55,44,52,52,46,49,54,49,55,56,54,93,44,91,45,56,52,46,49,54,54,49,48,55,44,52,52,46,49,54,49,55,56,56,93,44,91,45,56,52,46,49,54,54,51,55,55,44,52,51,46,57,57,54,57,48,49,93,44,91,45,56,52,46,48,52,52,56,52,51,44,52,51,46,57,49,49,49,52,54,93,44,91,45,56,51,46,57,48,55,54,48,56,44,52,51,46,57,49,48,52,49,53,93,44,91,45,56,51,46,55,48,56,53,50,53,44,52,51,46,56,51,51,57,52,56,93,44,91,45,56,51,46,49,56,53,50,56,44,52,52,46,49,54,56,52,48,52,93,44,91,45,56,51,46,56,56,51,57,55,55,44,52,52,46,49,54,49,55,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,53,52,49,44,34,98,101,100,115,34,58,49,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,49,56,55,56,55,44,52,48,46,56,49,51,53,52,52,93,44,91,45,57,49,46,55,49,54,55,54,57,44,52,48,46,53,57,56,53,51,93,44,91,45,57,49,46,52,56,51,49,53,51,44,52,48,46,51,56,50,52,57,50,93,44,91,45,57,49,46,52,49,57,52,50,50,44,52,48,46,51,55,56,50,54,52,93,44,91,45,57,49,46,51,55,53,55,49,50,44,52,48,46,51,57,49,57,50,53,93,44,91,45,57,49,46,51,53,57,56,55,51,44,52,48,46,54,48,49,56,48,53,93,44,91,45,57,49,46,49,56,53,50,57,53,44,52,48,46,54,51,55,56,48,51,93,44,91,45,57,49,46,49,49,50,52,54,55,44,52,48,46,54,57,54,51,48,49,93,44,91,45,57,49,46,52,48,57,52,53,51,44,52,48,46,56,49,50,57,48,53,93,44,91,45,57,49,46,55,49,56,55,56,55,44,52,48,46,56,49,51,53,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,79,115,98,111,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,48,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,52,52,51,57,56,44,51,57,46,53,54,56,48,51,53,93,44,91,45,57,57,46,48,52,55,54,56,55,44,51,57,46,49,51,51,48,49,52,93,44,91,45,57,57,46,48,51,55,53,44,51,57,46,49,51,51,49,50,49,93,44,91,45,57,56,46,52,56,57,57,57,55,44,51,57,46,49,51,50,54,57,55,93,44,91,45,57,56,46,52,57,48,49,52,57,44,51,57,46,50,49,57,55,56,93,44,91,45,57,56,46,52,56,55,51,56,52,44,51,57,46,53,54,55,52,57,50,93,44,91,45,57,56,46,53,48,53,50,54,54,44,51,57,46,53,54,55,54,48,51,93,44,91,45,57,57,46,48,52,52,51,57,56,44,51,57,46,53,54,56,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,69,109,109,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,48,51,57,44,34,98,101,100,115,34,58,50,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,51,57,54,49,56,44,52,53,46,56,55,48,55,52,93,44,91,45,56,53,46,50,50,49,51,57,52,44,52,53,46,55,56,50,56,52,51,93,44,91,45,56,53,46,51,48,55,53,56,52,44,52,53,46,54,50,53,48,48,54,93,44,91,45,56,53,46,50,56,51,50,51,56,44,52,53,46,53,53,48,50,48,57,93,44,91,45,56,52,46,57,54,52,55,56,55,44,52,53,46,50,57,49,54,48,49,93,44,91,45,56,52,46,55,51,50,54,56,55,44,52,53,46,50,56,57,51,56,50,93,44,91,45,56,52,46,55,51,50,53,57,53,44,52,53,46,56,49,48,51,51,93,44,91,45,56,53,46,50,51,57,54,49,56,44,52,53,46,56,55,48,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,70,114,101,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,49,51,52,54,53,44,52,48,46,57,48,49,54,57,51,93,44,91,45,57,53,46,56,51,52,49,50,44,52,48,46,55,56,51,55,56,51,93,44,91,45,57,53,46,56,56,49,53,50,57,44,52,48,46,55,53,48,54,49,49,93,44,91,45,57,53,46,55,54,53,54,52,53,44,52,48,46,53,56,53,50,48,56,93,44,91,45,57,53,46,51,55,51,57,50,51,44,52,48,46,53,56,48,53,48,51,93,44,91,45,57,53,46,51,56,52,57,54,52,44,52,48,46,57,48,49,53,53,93,44,91,45,57,53,46,56,49,51,52,54,53,44,52,48,46,57,48,49,54,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,48,54,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,57,46,53,48,54,51,56,50,44,52,52,46,51,52,50,56,55,93,44,91,45,54,57,46,54,53,48,49,55,49,44,52,52,46,50,55,57,54,50,53,93,44,91,45,54,57,46,54,53,54,55,52,50,44,52,52,46,49,50,50,51,57,50,93,44,91,45,54,57,46,55,53,56,50,48,56,44,52,52,46,49,51,57,51,51,52,93,44,91,45,54,57,46,56,49,51,53,52,57,44,52,52,46,48,50,54,48,49,49,93,44,91,45,54,57,46,55,48,48,48,57,55,44,52,52,46,48,48,54,54,56,53,93,44,91,45,54,57,46,54,54,52,55,52,53,44,52,51,46,55,49,49,55,52,56,93,44,91,45,54,57,46,53,48,49,54,49,55,44,52,51,46,55,55,57,54,56,54,93,44,91,45,54,57,46,50,57,55,56,53,53,44,52,51,46,55,48,55,54,57,52,93,44,91,45,54,57,46,50,51,51,52,56,44,52,51,46,55,55,56,48,48,50,93,44,91,45,54,57,46,51,57,55,55,51,56,44,52,51,46,56,55,49,56,57,93,44,91,45,54,57,46,51,54,51,57,57,54,44,52,52,46,48,49,50,56,55,51,93,44,91,45,54,57,46,50,56,50,48,50,55,44,52,52,46,48,54,52,53,50,51,93,44,91,45,54,57,46,52,48,57,54,51,53,44,52,52,46,51,50,55,57,57,56,93,44,91,45,54,57,46,53,48,54,51,56,50,44,52,52,46,51,52,50,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,83,101,110,101,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,54,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,54,51,57,50,54,44,52,51,46,48,49,51,49,53,55,93,44,91,45,55,54,46,57,55,49,51,57,50,44,52,50,46,55,54,52,50,50,51,93,44,91,45,55,54,46,56,57,53,51,52,57,44,52,50,46,54,53,54,50,53,53,93,44,91,45,55,54,46,56,57,53,53,57,54,44,52,50,46,53,52,49,53,51,55,93,44,91,45,55,54,46,54,57,54,54,53,53,44,52,50,46,53,52,54,55,57,93,44,91,45,55,54,46,54,54,54,53,52,51,44,52,50,46,54,50,51,52,53,55,93,44,91,45,55,54,46,55,51,51,52,53,52,44,52,50,46,55,50,55,56,57,53,93,44,91,45,55,54,46,55,49,51,56,48,54,44,52,51,46,48,50,52,48,51,53,93,44,91,45,55,54,46,57,54,51,57,50,54,44,52,51,46,48,49,51,49,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,76,97,117,114,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,49,56,48,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,56,57,48,55,54,44,51,55,46,49,53,49,55,52,93,44,91,45,56,52,46,51,53,56,48,50,52,44,51,54,46,57,53,57,52,93,44,91,45,56,52,46,50,57,55,52,49,54,44,51,54,46,57,52,53,57,51,49,93,44,91,45,56,52,46,48,57,49,56,53,51,44,51,54,46,57,53,53,57,57,50,93,44,91,45,56,51,46,57,53,57,51,56,53,44,51,54,46,57,55,55,49,50,56,93,44,91,45,56,51,46,56,55,49,51,49,53,44,51,55,46,48,53,52,57,49,57,93,44,91,45,56,51,46,57,54,56,57,57,44,51,55,46,49,55,52,55,57,52,93,44,91,45,56,51,46,57,52,51,55,49,56,44,51,55,46,50,53,48,53,53,49,93,44,91,45,56,52,46,49,51,55,56,57,56,44,51,55,46,51,49,57,55,53,57,93,44,91,45,56,52,46,50,49,54,50,52,49,44,51,55,46,50,56,48,50,53,54,93,44,91,45,56,52,46,50,56,57,48,55,54,44,51,55,46,49,53,49,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,101,105,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,50,51,56,53,51,44,51,53,46,55,53,50,56,57,54,93,44,91,45,56,52,46,55,56,50,51,54,54,44,51,53,46,53,57,52,55,57,57,93,44,91,45,56,52,46,57,49,53,48,52,57,44,51,53,46,52,52,48,55,55,49,93,44,91,45,56,53,46,48,49,54,51,52,51,44,51,53,46,52,48,57,50,56,56,93,44,91,45,56,52,46,57,52,54,51,51,57,44,51,53,46,50,56,55,55,49,55,93,44,91,45,56,52,46,56,54,48,49,54,52,44,51,53,46,51,53,48,48,55,52,93,44,91,45,56,52,46,56,48,53,53,52,52,44,51,53,46,52,52,56,53,55,49,93,44,91,45,56,52,46,54,49,57,56,54,53,44,51,53,46,54,52,52,54,53,49,93,44,91,45,56,52,46,55,50,51,56,53,51,44,51,53,46,55,53,50,56,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,51,34,44,34,78,65,77,69,34,58,34,84,97,110,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,55,50,48,44,34,98,101,100,115,34,58,49,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,48,52,51,53,57,44,51,54,46,56,49,54,56,54,54,93,44,91,45,57,51,46,51,49,53,51,51,50,44,51,54,46,52,57,56,49,52,93,44,91,45,57,51,46,50,57,51,52,54,55,44,51,54,46,52,57,56,50,55,54,93,44,91,45,57,50,46,56,53,52,48,52,57,44,51,54,46,52,57,55,56,52,50,93,44,91,45,57,50,46,55,55,50,51,52,51,44,51,54,46,52,57,55,54,54,50,93,44,91,45,57,50,46,55,54,52,56,54,57,44,51,54,46,56,48,54,48,57,55,93,44,91,45,57,50,46,57,48,57,51,51,54,44,51,54,46,56,48,57,49,55,56,93,44,91,45,57,51,46,51,48,52,51,53,57,44,51,54,46,56,49,54,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,57,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,44,91,45,56,52,46,48,48,51,51,54,51,44,51,50,46,53,50,57,57,50,55,93,44,91,45,56,52,46,49,48,52,57,54,54,44,51,50,46,54,55,51,51,56,53,93,44,91,45,56,52,46,50,48,50,54,50,56,44,51,50,46,54,57,48,48,49,56,93,44,91,45,56,52,46,50,56,54,50,52,54,44,51,50,46,55,52,55,54,50,54,93,44,91,45,56,52,46,52,52,52,51,53,51,44,51,50,46,53,54,50,48,56,51,93,44,91,45,56,52,46,51,57,50,51,49,54,44,51,50,46,52,49,52,48,52,54,93,44,91,45,56,52,46,51,54,51,50,49,54,44,51,50,46,51,57,55,54,52,57,93,44,91,45,56,52,46,50,53,52,54,49,51,44,51,50,46,51,55,50,48,53,51,93,44,91,45,56,52,46,49,50,50,51,52,55,44,51,50,46,53,48,53,57,50,49,93,44,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,93,93,44,91,91,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,44,91,45,56,52,46,48,49,56,49,52,55,44,51,50,46,53,48,54,52,48,54,93,44,91,45,56,52,46,48,48,56,52,57,44,51,50,46,53,50,49,55,54,57,93,44,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,56,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,56,51,48,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,56,56,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,50,55,56,53,57,44,51,55,46,51,48,53,57,50,55,93,44,91,45,55,54,46,55,52,49,48,49,55,44,51,55,46,50,54,53,57,56,52,93,44,91,45,55,54,46,54,56,48,49,53,49,44,51,55,46,50,54,53,57,57,55,93,44,91,45,55,54,46,55,50,55,56,53,57,44,51,55,46,51,48,53,57,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,49,53,34,44,34,78,65,77,69,34,58,34,83,99,117,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,51,56,54,54,44,51,50,46,57,55,48,50,50,53,93,44,91,45,49,48,49,46,49,55,51,51,55,56,44,51,50,46,57,54,51,53,57,55,93,44,91,45,49,48,49,46,49,55,52,53,54,50,44,51,50,46,53,50,55,55,48,51,93,44,91,45,49,48,48,46,54,54,48,54,50,54,44,51,50,46,53,50,53,51,49,50,93,44,91,45,49,48,48,46,54,53,53,56,55,44,51,50,46,57,54,51,52,54,57,93,44,91,45,49,48,49,46,48,51,56,54,54,44,51,50,46,57,55,48,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,71,105,108,112,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,54,55,53,55,57,56,44,51,57,46,57,51,50,52,52,53,93,44,91,45,49,48,53,46,54,57,48,51,52,56,44,51,57,46,56,53,49,57,57,54,93,44,91,45,49,48,53,46,53,51,57,51,57,51,44,51,57,46,55,55,50,51,49,93,44,91,45,49,48,53,46,51,57,55,57,52,57,44,51,57,46,55,52,54,48,52,93,44,91,45,49,48,53,46,51,57,55,56,52,57,44,51,57,46,57,49,50,56,56,54,93,44,91,45,49,48,53,46,54,55,53,55,57,56,44,51,57,46,57,51,50,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,99,67,108,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,54,51,52,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,55,49,52,49,52,44,51,53,46,51,51,53,57,52,54,93,44,91,45,57,55,46,54,54,56,48,57,57,44,51,52,46,56,53,53,49,54,52,93,44,91,45,57,54,46,57,51,50,52,51,54,44,51,52,46,56,53,52,52,57,54,93,44,91,45,57,54,46,57,51,48,53,56,54,44,51,52,46,57,54,52,51,54,52,93,44,91,45,57,55,46,48,49,53,57,51,44,51,52,46,57,48,55,51,52,56,93,44,91,45,57,55,46,49,52,50,51,52,57,44,51,52,46,57,50,56,49,55,54,93,44,91,45,57,55,46,51,52,49,53,48,57,44,51,52,46,57,54,52,48,48,49,93,44,91,45,57,55,46,51,53,52,49,57,50,44,51,53,46,48,55,54,54,53,54,93,44,91,45,57,55,46,53,53,52,55,57,44,51,53,46,50,50,52,51,50,57,93,44,91,45,57,55,46,53,53,54,57,56,55,44,51,53,46,50,56,56,52,52,93,44,91,45,57,55,46,54,55,49,52,49,53,44,51,53,46,51,51,55,52,54,53,93,44,91,45,57,55,46,54,55,49,52,49,52,44,51,53,46,51,51,53,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,80,101,110,100,108,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,54,52,57,48,55,53,44,51,56,46,53,57,49,53,49,53,93,44,91,45,55,57,46,53,51,54,56,55,44,51,56,46,53,53,48,57,49,55,93,44,91,45,55,57,46,52,55,54,54,51,56,44,51,56,46,52,53,55,50,50,56,93,44,91,45,55,57,46,51,49,50,50,55,54,44,51,56,46,52,49,49,56,55,54,93,44,91,45,55,57,46,50,50,52,53,56,51,44,51,56,46,52,55,55,53,56,56,93,44,91,45,55,57,46,48,53,55,50,53,51,44,51,56,46,55,54,49,52,49,51,93,44,91,45,55,57,46,49,51,52,50,57,54,44,51,56,46,56,49,51,51,52,93,44,91,45,55,57,46,51,52,57,56,54,55,44,51,56,46,57,53,55,53,48,57,93,44,91,45,55,57,46,52,53,53,52,55,50,44,51,56,46,57,50,57,57,49,93,44,91,45,55,57,46,53,51,57,48,55,53,44,51,56,46,56,52,49,52,49,49,93,44,91,45,55,57,46,53,49,48,48,55,51,44,51,56,46,55,56,48,55,49,50,93,44,91,45,55,57,46,54,50,54,55,55,52,44,51,56,46,54,54,52,50,49,52,93,44,91,45,55,57,46,54,52,57,48,55,53,44,51,56,46,53,57,49,53,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,80,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,55,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,57,52,55,48,52,44,51,56,46,56,50,50,55,57,93,44,91,45,55,56,46,53,52,56,56,50,56,44,51,56,46,55,51,56,54,53,53,93,44,91,45,55,56,46,54,52,49,55,54,57,44,51,56,46,54,48,52,55,49,57,93,44,91,45,55,56,46,54,57,49,51,49,50,44,51,56,46,53,49,48,48,48,56,93,44,91,45,55,56,46,52,56,53,55,52,44,51,56,46,52,50,49,53,55,57,93,44,91,45,55,56,46,52,53,50,56,48,49,44,51,56,46,52,55,53,53,50,55,93,44,91,45,55,56,46,51,51,56,49,55,54,44,51,56,46,54,50,55,51,49,50,93,44,91,45,55,56,46,50,56,52,56,48,53,44,51,56,46,55,53,57,51,49,53,93,44,91,45,55,56,46,51,57,52,55,48,52,44,51,56,46,56,50,50,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,101,32,70,108,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,57,48,57,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,49,51,54,50,57,44,51,53,46,51,50,51,51,52,52,93,44,91,45,57,52,46,56,49,52,50,55,54,44,51,53,46,50,48,50,51,51,49,93,44,91,45,57,52,46,57,50,55,55,55,52,44,51,53,46,50,48,50,54,49,93,44,91,45,57,52,46,57,50,55,56,54,51,44,51,53,46,48,53,56,50,52,54,93,44,91,45,57,53,46,48,53,57,53,49,50,44,51,52,46,56,53,53,48,49,57,93,44,91,45,57,53,46,48,53,57,54,49,54,44,51,52,46,54,56,48,55,51,54,93,44,91,45,57,52,46,57,51,55,53,53,53,44,51,52,46,54,56,48,55,57,50,93,44,91,45,57,52,46,57,51,55,54,48,52,44,51,52,46,53,48,55,50,57,54,93,44,91,45,57,52,46,52,54,49,49,52,57,44,51,52,46,53,48,55,52,53,55,93,44,91,45,57,52,46,52,53,52,53,54,52,44,51,52,46,55,50,56,57,54,50,93,44,91,45,57,52,46,52,52,55,55,55,52,44,51,52,46,57,51,51,57,51,55,93,44,91,45,57,52,46,52,51,53,53,57,44,51,53,46,51,56,54,49,50,50,93,44,91,45,57,52,46,52,57,53,50,53,49,44,51,53,46,51,48,49,50,93,44,91,45,57,52,46,54,54,56,55,57,54,44,51,53,46,50,57,53,48,50,57,93,44,91,45,57,52,46,56,49,51,54,50,57,44,51,53,46,51,50,51,51,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,117,109,109,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,48,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,52,53,48,57,44,51,55,46,56,49,57,49,50,49,93,44,91,45,56,48,46,57,48,53,57,54,49,44,51,55,46,54,57,56,53,57,54,93,44,91,45,56,49,46,48,54,56,55,55,52,44,51,55,46,54,51,57,56,50,51,93,44,91,45,56,49,46,48,57,52,54,51,44,51,55,46,53,56,56,54,53,56,93,44,91,45,56,48,46,56,53,57,52,53,55,44,51,55,46,52,50,57,52,57,49,93,44,91,45,56,48,46,56,53,56,52,54,54,44,51,55,46,52,50,56,51,48,55,93,44,91,45,56,48,46,54,54,51,51,52,56,44,51,55,46,55,51,49,54,57,54,93,44,91,45,56,48,46,56,48,54,51,49,54,44,51,55,46,56,54,56,57,49,53,93,44,91,45,56,48,46,57,52,53,48,57,44,51,55,46,56,49,57,49,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,101,99,107,108,101,110,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,52,51,49,52,44,34,98,101,100,115,34,58,50,54,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,53,48,51,52,57,44,51,53,46,50,48,56,52,49,50,93,44,91,45,56,48,46,54,54,54,52,56,44,51,53,46,50,54,55,57,51,52,93,44,91,45,56,48,46,55,56,52,49,54,55,44,51,53,46,53,48,54,48,49,55,93,44,91,45,56,48,46,57,52,55,51,52,52,44,51,53,46,52,56,56,52,55,51,93,44,91,45,56,48,46,57,53,52,56,54,44,51,53,46,52,48,48,48,55,56,93,44,91,45,56,49,46,48,51,51,57,48,57,44,51,53,46,49,52,56,54,57,93,44,91,45,56,49,46,48,52,49,52,57,54,44,51,53,46,48,52,52,55,49,51,93,44,91,45,56,48,46,57,48,54,51,56,53,44,51,53,46,48,55,54,50,55,55,93,44,91,45,56,48,46,56,52,48,50,55,56,44,51,53,46,48,48,49,54,57,50,93,44,91,45,56,48,46,53,53,48,51,52,57,44,51,53,46,50,48,56,52,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,69,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,51,53,53,53,44,34,98,101,100,115,34,58,51,53,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,50,55,50,48,54,51,44,52,48,46,56,57,55,52,50,55,93,44,91,45,55,52,46,51,55,49,55,51,56,44,52,48,46,55,51,57,54,52,93,44,91,45,55,52,46,49,51,54,55,48,51,44,52,48,46,54,55,52,52,52,52,93,44,91,45,55,52,46,49,52,55,53,50,57,44,52,48,46,55,56,54,52,57,49,93,44,91,45,55,52,46,49,51,48,48,49,54,44,52,48,46,56,49,57,57,51,56,93,44,91,45,55,52,46,50,55,50,48,54,51,44,52,48,46,56,57,55,52,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,76,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,56,54,44,34,98,101,100,115,34,58,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,54,49,57,53,55,44,51,57,46,57,54,55,54,48,54,93,44,91,45,57,51,46,51,54,52,56,48,56,44,51,57,46,55,48,51,56,48,51,93,44,91,45,57,51,46,50,54,54,57,54,56,44,51,57,46,55,48,51,53,54,50,93,44,91,45,57,50,46,56,53,55,57,50,44,51,57,46,54,57,57,57,56,53,93,44,91,45,57,50,46,56,52,55,52,55,55,44,52,48,46,48,51,55,51,48,49,93,44,91,45,57,50,46,56,53,54,49,57,49,44,52,48,46,48,51,55,50,53,51,93,44,91,45,57,51,46,51,54,49,57,53,49,44,52,48,46,48,51,51,48,57,56,93,44,91,45,57,51,46,51,54,49,57,53,55,44,51,57,46,57,54,55,54,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,57,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,53,53,52,56,54,44,51,50,46,50,57,55,53,54,49,93,44,91,45,56,50,46,53,57,55,54,55,49,44,51,50,46,48,49,51,57,55,57,93,44,91,45,56,50,46,53,52,51,54,53,53,44,51,49,46,57,53,56,57,49,52,93,44,91,45,56,50,46,52,56,51,49,51,49,44,51,49,46,57,54,56,57,54,49,93,44,91,45,56,50,46,52,48,57,49,51,44,51,50,46,51,53,51,55,51,56,93,44,91,45,56,50,46,54,53,53,52,56,54,44,51,50,46,50,57,55,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,83,104,101,114,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,57,49,53,56,53,44,52,53,46,54,52,49,50,93,44,91,45,49,50,48,46,56,51,56,55,55,50,44,52,53,46,53,49,53,57,52,54,93,44,91,45,49,50,48,46,56,54,56,53,54,57,44,52,53,46,52,48,49,49,52,54,93,44,91,45,49,50,49,46,48,50,52,50,57,52,44,52,53,46,50,49,57,53,51,49,93,44,91,45,49,50,48,46,56,56,57,51,53,55,44,52,53,46,50,48,50,51,48,53,93,44,91,45,49,50,48,46,55,50,51,53,54,57,44,52,53,46,49,51,48,57,49,49,93,44,91,45,49,50,48,46,53,48,51,55,51,51,44,52,53,46,48,56,51,52,55,55,93,44,91,45,49,50,48,46,53,51,50,48,53,57,44,52,53,46,51,55,49,50,52,57,93,44,91,45,49,50,48,46,52,57,48,51,53,57,44,52,53,46,52,54,56,57,52,57,93,44,91,45,49,50,48,46,51,54,52,57,53,53,44,52,53,46,52,57,55,50,53,93,44,91,45,49,50,48,46,52,49,49,54,57,57,44,52,53,46,53,57,54,48,54,55,93,44,91,45,49,50,48,46,54,53,51,53,48,51,44,52,53,46,55,51,55,49,56,49,93,44,91,45,49,50,48,46,57,49,53,56,53,44,52,53,46,54,52,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,55,54,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,56,48,51,52,44,51,51,46,55,54,49,55,55,52,93,44,91,45,56,51,46,52,48,54,49,56,57,44,51,51,46,54,57,56,51,48,55,93,44,91,45,56,51,46,50,55,55,54,49,49,44,51,51,46,53,50,55,54,51,93,44,91,45,56,51,46,50,55,57,57,51,49,44,51,51,46,52,56,51,52,51,56,93,44,91,45,56,51,46,49,54,52,50,48,55,44,51,51,46,51,53,53,48,51,93,44,91,45,56,51,46,48,49,50,56,53,51,44,51,51,46,52,54,57,49,55,56,93,44,91,45,56,50,46,57,57,53,54,48,50,44,51,51,46,54,57,51,53,56,51,93,44,91,45,56,51,46,49,49,56,55,50,57,44,51,51,46,54,57,56,56,49,56,93,44,91,45,56,51,46,50,56,48,51,52,44,51,51,46,55,54,49,55,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,117,102,102,97,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,50,53,57,53,51,44,52,52,46,49,57,54,53,55,53,93,44,91,45,57,57,46,51,48,48,49,56,44,52,52,46,49,57,52,56,51,93,44,91,45,57,57,46,53,55,54,53,55,49,44,52,52,46,49,57,50,52,50,49,93,44,91,45,57,57,46,53,54,50,53,51,54,44,52,52,46,49,48,49,53,49,57,93,44,91,45,57,57,46,51,53,51,55,50,44,52,51,46,57,57,53,51,50,57,93,44,91,45,57,57,46,51,53,53,56,54,52,44,52,51,46,57,51,52,51,55,49,93,44,91,45,57,56,46,57,50,54,57,57,55,44,52,51,46,57,51,53,49,52,51,93,44,91,45,57,56,46,57,50,53,57,53,51,44,52,52,46,49,57,54,53,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,101,108,108,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,51,51,56,57,55,44,52,51,46,55,49,54,57,52,50,93,44,91,45,49,48,48,46,53,53,52,54,56,55,44,52,51,46,55,51,55,50,52,55,93,44,91,45,49,48,48,46,54,55,57,51,50,50,44,52,51,46,55,49,49,54,51,54,93,44,91,45,49,48,48,46,57,56,55,48,50,55,44,52,51,46,56,52,57,49,51,50,93,44,91,45,49,48,49,46,48,54,52,51,50,54,44,52,51,46,56,52,49,48,57,93,44,91,45,49,48,49,46,50,50,56,51,51,49,44,52,51,46,55,57,53,48,52,57,93,44,91,45,49,48,49,46,50,50,56,50,51,52,44,52,51,46,51,56,57,49,56,53,93,44,91,45,49,48,48,46,50,49,52,50,50,49,44,52,51,46,51,57,48,51,50,49,93,44,91,45,49,48,48,46,50,51,48,56,52,53,44,52,51,46,55,49,51,56,53,54,93,44,91,45,49,48,48,46,51,51,56,57,55,44,52,51,46,55,49,54,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,69,99,116,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,51,52,50,44,34,98,101,100,115,34,58,54,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,50,56,55,48,52,56,44,51,50,46,48,56,54,57,57,49,93,44,91,45,49,48,50,46,55,57,57,48,56,54,44,51,50,46,48,56,53,55,57,53,93,44,91,45,49,48,50,46,55,57,56,57,51,57,44,51,49,46,54,53,49,55,56,51,93,44,91,45,49,48,50,46,55,54,55,50,52,54,44,51,49,46,54,53,49,55,49,52,93,44,91,45,49,48,50,46,51,49,56,48,53,44,51,49,46,54,53,49,51,50,55,93,44,91,45,49,48,50,46,50,56,55,51,52,53,44,51,49,46,54,53,49,50,55,54,93,44,91,45,49,48,50,46,50,56,55,48,52,56,44,51,50,46,48,56,54,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,51,34,44,34,78,65,77,69,34,58,34,76,105,109,101,115,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,49,53,44,34,98,101,100,115,34,58,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,51,50,50,49,53,44,51,49,46,55,48,56,56,56,55,93,44,91,45,57,54,46,56,48,49,49,50,51,44,51,49,46,53,50,50,50,54,57,93,44,91,45,57,54,46,53,57,54,56,54,50,44,51,49,46,50,50,48,57,93,44,91,45,57,54,46,51,49,57,49,54,53,44,51,49,46,51,53,55,49,50,57,93,44,91,45,57,54,46,50,51,54,54,50,57,44,51,49,46,52,49,51,51,57,50,93,44,91,45,57,54,46,52,57,54,55,49,51,44,51,49,46,55,57,54,49,57,49,93,44,91,45,57,54,46,55,49,57,49,49,52,44,51,49,46,56,49,52,56,56,55,93,44,91,45,57,54,46,57,51,50,50,49,53,44,51,49,46,55,48,56,56,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,71,114,97,121,115,32,72,97,114,98,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,57,54,55,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,52,50,57,53,53,51,44,52,55,46,53,51,50,57,52,57,93,44,91,45,49,50,52,46,52,50,49,55,50,56,44,52,55,46,51,57,51,50,57,51,93,44,91,45,49,50,52,46,51,48,54,51,54,55,44,52,55,46,50,52,56,48,56,51,93,44,91,45,49,50,52,46,50,53,49,50,57,49,44,52,55,46,48,57,54,54,53,52,93,44,91,45,49,50,52,46,50,51,52,51,57,51,44,52,54,46,56,57,49,49,56,56,93,44,91,45,49,50,52,46,49,55,53,49,51,49,44,52,54,46,55,57,51,55,51,50,93,44,91,45,49,50,51,46,51,55,48,57,53,44,52,54,46,55,57,50,49,50,57,93,44,91,45,49,50,51,46,49,54,48,53,56,56,44,52,54,46,55,57,51,51,56,51,93,44,91,45,49,50,51,46,49,53,56,51,54,52,44,52,54,46,57,57,53,56,55,49,93,44,91,45,49,50,51,46,50,48,49,56,57,49,44,52,55,46,48,56,53,48,53,57,93,44,91,45,49,50,51,46,52,56,56,57,52,51,44,52,55,46,48,56,50,54,52,54,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,53,49,55,55,49,54,93,44,91,45,49,50,52,46,48,52,54,55,52,44,52,55,46,53,49,56,53,50,53,93,44,91,45,49,50,52,46,52,50,57,53,53,51,44,52,55,46,53,51,50,57,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,114,107,101,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,52,57,53,44,34,98,101,100,115,34,58,50,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,50,53,53,55,50,44,51,57,46,52,57,51,50,56,57,93,44,91,45,55,55,46,56,56,57,49,51,53,44,51,57,46,53,57,55,52,53,51,93,44,91,45,55,56,46,48,50,50,49,49,44,51,57,46,54,49,57,54,53,55,93,44,91,45,55,56,46,49,51,56,57,51,55,44,51,57,46,53,57,51,55,57,54,93,44,91,45,55,56,46,50,50,56,55,54,54,44,51,57,46,51,57,49,50,51,51,93,44,91,45,55,56,46,48,51,51,49,57,49,44,51,57,46,50,54,52,54,49,50,93,44,91,45,55,55,46,56,50,53,53,55,50,44,51,57,46,52,57,51,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,86,105,108,108,97,108,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,57,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,50,49,56,57,57,44,49,56,46,49,53,49,57,53,52,93,44,91,45,54,54,46,52,51,48,51,49,52,44,49,56,46,48,56,50,48,53,51,93,44,91,45,54,54,46,52,52,52,53,54,44,49,56,46,49,55,54,54,55,52,93,44,91,45,54,54,46,53,50,49,56,57,57,44,49,56,46,49,53,49,57,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,80,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,52,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,55,56,51,56,51,51,44,52,54,46,49,57,50,54,57,57,93,44,91,45,49,49,48,46,55,57,52,55,55,52,44,52,53,46,53,57,48,54,56,50,93,44,91,45,49,49,48,46,57,49,57,50,50,50,44,52,53,46,53,50,52,56,54,49,93,44,91,45,49,49,48,46,57,49,55,56,57,57,44,52,53,46,51,53,49,50,55,51,93,44,91,45,49,49,49,46,48,51,56,49,54,57,44,52,53,46,51,53,49,51,57,49,93,44,91,45,49,49,49,46,48,52,53,48,54,54,44,52,53,46,48,48,48,57,53,93,44,91,45,49,49,48,46,55,48,52,52,55,54,44,52,52,46,57,57,50,49,55,52,93,44,91,45,49,48,57,46,55,57,56,52,56,51,44,52,53,46,48,48,50,51,51,51,93,44,91,45,49,48,57,46,55,57,56,54,55,51,44,52,53,46,49,54,55,51,51,57,93,44,91,45,49,49,48,46,48,54,52,53,49,56,44,52,53,46,49,55,50,49,50,57,93,44,91,45,49,49,48,46,50,50,56,48,53,50,44,52,53,46,49,55,50,49,50,57,93,44,91,45,49,49,48,46,50,50,48,57,48,56,44,52,53,46,55,56,52,57,55,51,93,44,91,45,49,49,48,46,50,57,50,54,54,50,44,52,53,46,55,56,53,48,53,55,93,44,91,45,49,49,48,46,50,56,49,57,49,54,44,52,54,46,49,56,52,51,57,55,93,44,91,45,49,49,48,46,55,56,51,56,51,51,44,52,54,46,49,57,50,54,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,68,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,55,48,52,55,44,34,98,101,100,115,34,58,49,53,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,56,51,48,57,53,44,51,51,46,52,51,48,52,53,93,44,91,45,57,55,46,51,57,56,52,56,44,51,50,46,57,57,48,56,51,57,93,44,91,45,57,55,46,48,51,50,50,56,55,44,51,50,46,57,56,57,51,50,52,93,44,91,45,57,54,46,56,52,51,57,55,57,44,51,50,46,57,56,55,53,53,52,93,44,91,45,57,54,46,56,51,52,49,49,44,51,51,46,52,48,53,52,57,56,93,44,91,45,57,54,46,57,52,51,56,54,44,51,51,46,52,49,54,52,49,93,44,91,45,57,55,46,51,56,51,48,57,53,44,51,51,46,52,51,48,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,55,49,49,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,55,52,54,56,57,44,51,53,46,49,56,52,48,51,54,93,44,91,45,56,49,46,55,53,53,48,56,51,44,51,52,46,57,51,48,50,56,93,44,91,45,56,49,46,55,49,49,54,57,52,44,51,52,46,57,49,50,53,55,55,93,44,91,45,56,49,46,52,53,55,50,53,55,44,51,52,46,56,51,57,50,56,93,44,91,45,56,49,46,52,56,55,48,49,54,44,51,53,46,48,51,52,56,53,51,93,44,91,45,56,49,46,52,48,56,56,55,54,44,51,53,46,48,52,54,51,50,52,93,44,91,45,56,49,46,51,54,54,54,44,51,53,46,49,54,52,56,56,51,93,44,91,45,56,49,46,55,54,56,49,48,50,44,51,53,46,49,56,48,54,49,49,93,44,91,45,56,49,46,56,55,52,54,56,57,44,51,53,46,49,56,52,48,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,89,97,110,99,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,49,54,55,51,56,44,51,54,46,48,55,50,56,50,55,93,44,91,45,56,50,46,53,48,53,52,50,53,44,51,53,46,57,55,55,52,51,50,93,44,91,45,56,50,46,52,48,56,54,48,50,44,51,53,46,56,49,56,49,55,56,93,44,91,45,56,50,46,50,55,53,51,57,57,44,51,53,46,55,48,52,52,51,56,93,44,91,45,56,50,46,49,51,51,52,56,52,44,51,53,46,56,50,51,51,48,57,93,44,91,45,56,50,46,49,57,49,55,48,53,44,51,53,46,57,57,48,54,51,54,93,44,91,45,56,50,46,51,52,53,50,57,44,51,54,46,48,55,54,52,53,57,93,44,91,45,56,50,46,52,49,54,55,51,56,44,51,54,46,48,55,50,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,56,55,34,44,34,78,65,77,69,34,58,34,82,101,100,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,49,48,52,57,55,44,51,51,46,56,55,55,50,48,52,93,44,91,45,57,53,46,51,48,56,54,51,55,44,51,51,46,51,56,48,54,54,50,93,44,91,45,57,53,46,51,48,54,54,52,44,51,51,46,51,55,56,48,50,55,93,44,91,45,57,53,46,49,50,53,52,53,49,44,51,51,46,51,56,57,52,53,52,93,44,91,45,57,52,46,56,48,56,55,56,51,44,51,51,46,51,54,51,54,51,54,93,44,91,45,57,52,46,55,52,54,57,50,53,44,51,51,46,51,50,56,57,51,56,93,44,91,45,57,52,46,55,52,54,48,57,54,44,51,51,46,55,48,51,48,49,54,93,44,91,45,57,52,46,56,54,48,54,56,55,44,51,51,46,55,52,49,57,52,53,93,44,91,45,57,52,46,57,57,56,48,49,57,44,51,51,46,56,54,48,53,48,52,93,44,91,45,57,53,46,49,53,53,56,56,50,44,51,51,46,57,51,54,53,55,50,93,44,91,45,57,53,46,51,49,48,52,57,55,44,51,51,46,56,55,55,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,49,34,44,34,78,65,77,69,34,58,34,77,97,116,97,103,111,114,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,55,52,51,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,48,57,49,55,56,44,50,56,46,57,54,51,50,57,49,93,44,91,45,57,54,46,51,50,51,53,50,50,44,50,56,46,54,55,53,53,57,55,93,44,91,45,57,54,46,51,57,53,49,57,56,44,50,56,46,50,55,57,55,51,54,93,44,91,45,57,54,46,49,56,50,50,52,50,44,50,56,46,52,53,50,48,51,54,93,44,91,45,57,53,46,55,53,48,50,51,56,44,50,56,46,54,51,56,52,49,57,93,44,91,45,57,53,46,52,57,53,54,53,44,50,56,46,55,54,52,56,51,55,93,44,91,45,57,53,46,54,53,53,51,57,56,44,50,56,46,57,53,49,55,49,49,93,44,91,45,57,53,46,55,54,52,57,51,55,44,50,56,46,57,54,55,51,53,57,93,44,91,45,57,53,46,56,52,49,52,57,57,44,50,57,46,48,57,56,54,50,93,44,91,45,57,53,46,56,55,52,48,50,56,44,50,57,46,50,50,57,55,48,50,93,44,91,45,57,53,46,57,54,53,49,57,54,44,50,57,46,49,52,54,56,54,53,93,44,91,45,57,54,46,51,48,57,49,55,56,44,50,56,46,57,54,51,50,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,83,116,101,118,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,56,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,53,51,48,50,54,44,52,53,46,53,56,53,53,50,54,93,44,91,45,57,54,46,50,52,49,51,50,56,44,52,53,46,52,49,50,54,54,55,93,44,91,45,57,54,46,49,49,55,48,51,54,44,52,53,46,52,49,49,57,57,51,93,44,91,45,57,53,46,55,52,55,52,48,50,44,52,53,46,52,49,50,51,49,51,93,44,91,45,57,53,46,55,53,56,53,48,56,44,52,53,46,55,53,57,57,51,50,93,44,91,45,57,54,46,50,53,52,48,50,50,44,52,53,46,55,53,57,56,50,93,44,91,45,57,54,46,50,53,51,48,50,54,44,52,53,46,53,56,53,53,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,49,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,55,57,57,55,53,44,51,51,46,53,57,57,55,57,50,93,44,91,45,56,50,46,56,53,49,57,53,52,44,51,51,46,52,52,51,53,52,51,93,44,91,45,56,50,46,55,53,53,56,52,54,44,51,51,46,50,53,51,52,52,93,44,91,45,56,50,46,53,53,57,55,53,51,44,51,51,46,51,50,55,50,55,93,44,91,45,56,50,46,52,51,49,57,53,55,44,51,51,46,50,55,52,56,51,93,44,91,45,56,50,46,51,56,51,56,50,57,44,51,51,46,51,49,50,49,48,54,93,44,91,45,56,50,46,53,51,53,55,55,57,44,51,51,46,51,53,55,52,54,93,44,91,45,56,50,46,54,52,57,55,48,53,44,51,51,46,54,48,56,55,54,56,93,44,91,45,56,50,46,54,55,57,57,55,53,44,51,51,46,53,57,57,55,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,72,97,114,100,101,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,53,50,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,57,55,54,50,49,44,51,52,46,50,50,52,51,53,53,93,44,91,45,57,57,46,55,55,50,48,52,51,44,51,52,46,48,57,51,50,56,54,93,44,91,45,57,57,46,53,55,51,49,54,49,44,51,52,46,48,54,51,54,48,56,93,44,91,45,57,57,46,52,55,53,50,57,52,44,51,52,46,48,56,53,54,49,56,93,44,91,45,57,57,46,52,55,53,49,49,53,44,51,52,46,51,57,53,57,51,93,44,91,45,57,57,46,53,54,57,54,57,54,44,51,52,46,52,49,56,52,49,56,93,44,91,45,57,57,46,54,57,52,53,50,56,44,51,52,46,51,55,56,50,49,56,93,44,91,45,57,57,46,56,52,52,53,56,53,44,51,52,46,53,48,54,57,49,53,93,44,91,45,57,57,46,57,57,55,53,48,49,44,51,52,46,53,54,48,53,55,52,93,44,91,45,57,57,46,57,57,55,55,50,44,51,52,46,51,49,49,56,50,57,93,44,91,45,57,57,46,57,57,55,54,50,49,44,51,52,46,50,50,52,51,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,57,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,54,52,49,50,51,44,51,56,46,53,50,48,55,50,56,93,44,91,45,57,48,46,51,52,49,52,52,54,44,51,56,46,51,56,56,50,57,56,93,44,91,45,57,48,46,51,53,56,54,50,56,44,51,56,46,50,50,49,57,56,49,93,44,91,45,57,48,46,50,53,50,54,54,54,44,51,56,46,49,50,55,56,49,50,93,44,91,45,57,48,46,50,48,53,50,48,53,44,51,56,46,48,56,54,57,48,55,93,44,91,45,57,48,46,48,51,53,56,54,55,44,51,56,46,49,51,53,55,51,54,93,44,91,45,57,48,46,48,51,54,51,49,54,44,51,56,46,50,50,51,50,52,54,93,44,91,45,56,57,46,56,57,57,48,52,51,44,51,56,46,50,50,48,55,53,53,93,44,91,45,56,57,46,57,49,51,50,50,55,44,51,56,46,51,48,56,50,54,57,93,44,91,45,57,48,46,48,51,54,49,49,51,44,51,56,46,51,50,51,51,55,55,93,44,91,45,57,48,46,50,54,52,49,50,51,44,51,56,46,53,50,48,55,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,74,101,110,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,52,52,57,55,55,44,51,50,46,56,49,50,55,52,49,93,44,91,45,56,50,46,48,56,50,52,52,44,51,50,46,54,54,51,48,54,49,93,44,91,45,56,50,46,48,48,49,50,51,54,44,51,50,46,54,48,54,57,49,93,44,91,45,56,49,46,56,52,49,48,48,53,44,51,50,46,54,52,57,48,57,51,93,44,91,45,56,49,46,56,54,55,57,51,56,44,51,50,46,54,56,49,49,53,93,44,91,45,56,49,46,55,54,55,53,53,51,44,51,50,46,57,48,57,52,49,49,93,44,91,45,56,49,46,56,53,55,57,56,53,44,51,50,46,57,53,51,56,56,50,93,44,91,45,56,50,46,48,56,49,51,51,55,44,51,50,46,57,49,54,55,55,54,93,44,91,45,56,50,46,49,52,52,57,55,55,44,51,50,46,56,49,50,55,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,71,114,97,121,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,49,55,56,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,57,50,56,49,44,51,55,46,53,54,52,51,54,93,44,91,45,56,54,46,54,54,49,56,56,44,51,55,46,53,52,49,57,51,52,93,44,91,45,56,54,46,54,49,50,48,57,53,44,51,55,46,51,57,53,49,50,51,93,44,91,45,56,54,46,52,54,57,49,50,54,44,51,55,46,51,50,49,48,57,57,93,44,91,45,56,54,46,49,53,55,53,56,57,44,51,55,46,51,51,53,54,52,57,93,44,91,45,56,54,46,48,55,51,54,50,54,44,51,55,46,51,52,56,48,52,53,93,44,91,45,56,54,46,48,52,55,53,57,56,44,51,55,46,52,52,57,57,51,51,93,44,91,45,56,54,46,49,49,52,48,57,53,44,51,55,46,53,54,55,49,51,49,93,44,91,45,56,54,46,50,55,53,50,55,44,51,55,46,53,57,51,53,49,57,93,44,91,45,56,54,46,53,57,50,56,49,44,51,55,46,53,54,52,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,54,51,34,44,34,78,65,77,69,34,58,34,80,97,108,111,32,80,105,110,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,49,55,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,55,53,54,49,54,44,51,50,46,57,53,52,51,52,57,93,44,91,45,57,56,46,53,55,54,50,53,54,44,51,50,46,53,49,53,49,54,51,93,44,91,45,57,56,46,52,55,53,49,55,55,44,51,50,46,53,49,51,48,51,57,93,44,91,45,57,56,46,48,54,56,53,52,53,44,51,50,46,53,49,49,54,50,54,93,44,91,45,57,56,46,48,54,54,56,51,54,44,51,50,46,53,53,56,56,50,50,93,44,91,45,57,56,46,48,53,54,48,57,52,44,51,51,46,48,48,51,51,51,50,93,44,91,45,57,56,46,52,50,54,53,53,51,44,51,51,46,48,48,55,57,49,51,93,44,91,45,57,56,46,53,55,53,54,49,54,44,51,50,46,57,53,52,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,72,101,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,57,51,56,48,53,44,51,51,46,52,50,56,48,57,56,93,44,91,45,56,53,46,50,51,54,53,49,56,44,51,51,46,49,50,57,53,53,57,93,44,91,45,56,52,46,57,51,57,48,49,53,44,51,51,46,50,50,52,54,57,51,93,44,91,45,56,53,46,48,49,53,51,53,56,44,51,51,46,52,50,53,53,48,54,93,44,91,45,56,53,46,50,57,51,56,48,53,44,51,51,46,52,50,56,48,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,49,55,49,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,50,57,54,54,55,44,51,52,46,53,54,55,48,56,49,93,44,91,45,56,55,46,53,50,57,55,50,50,44,51,52,46,51,48,52,53,57,56,93,44,91,45,56,55,46,49,48,57,57,49,49,44,51,52,46,50,57,57,50,57,57,93,44,91,45,56,55,46,49,49,48,49,49,49,44,51,52,46,51,49,51,55,57,57,93,44,91,45,56,55,46,49,48,53,48,55,51,44,51,52,46,54,56,54,48,51,55,93,44,91,45,56,55,46,50,54,48,54,55,54,44,51,52,46,55,53,56,54,50,54,93,44,91,45,56,55,46,52,50,54,53,49,44,51,52,46,56,48,48,48,50,50,93,44,91,45,56,55,46,52,51,51,48,54,44,51,52,46,55,49,55,52,56,53,93,44,91,45,56,55,46,53,50,57,54,54,55,44,51,52,46,53,54,55,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,71,117,97,121,110,97,98,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,54,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,51,49,53,56,44,49,56,46,52,50,52,54,53,54,93,44,91,45,54,54,46,49,52,51,56,54,49,44,49,56,46,50,55,57,53,57,93,44,91,45,54,54,46,48,56,48,52,55,53,44,49,56,46,50,57,55,50,57,53,93,44,91,45,54,54,46,49,48,56,50,56,49,44,49,56,46,52,51,56,57,48,50,93,44,91,45,54,54,46,49,51,49,53,56,44,49,56,46,52,50,52,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,56,55,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,50,52,51,50,52,44,51,52,46,57,57,52,55,57,93,44,91,45,56,57,46,55,50,51,52,52,50,44,51,52,46,55,55,50,51,49,49,93,44,91,45,56,57,46,54,54,57,49,54,44,51,52,46,54,56,53,55,56,54,93,44,91,45,56,57,46,54,54,56,52,52,56,44,51,52,46,53,53,52,51,54,55,93,44,91,45,56,57,46,52,55,54,54,52,50,44,51,52,46,53,53,52,49,54,56,93,44,91,45,56,57,46,50,52,54,49,51,51,44,51,52,46,52,57,53,54,51,51,93,44,91,45,56,57,46,50,52,53,54,52,53,44,51,52,46,53,56,51,50,51,52,93,44,91,45,56,57,46,50,57,56,51,51,52,44,51,52,46,53,56,50,57,50,54,93,44,91,45,56,57,46,50,57,57,50,50,55,44,51,52,46,56,52,52,52,49,53,93,44,91,45,56,57,46,51,53,50,54,55,57,44,51,52,46,57,57,51,56,54,51,93,44,91,45,56,57,46,54,52,52,48,53,44,51,52,46,57,57,53,50,57,49,93,44,91,45,56,57,46,55,50,52,51,50,52,44,51,52,46,57,57,52,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,51,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,48,55,50,52,56,44,51,55,46,52,55,52,56,51,54,93,44,91,45,49,48,48,46,48,57,49,53,50,57,44,51,55,46,51,56,54,56,57,50,93,44,91,45,49,48,48,46,48,56,57,52,56,51,44,51,55,46,48,48,50,50,54,49,93,44,91,45,49,48,48,46,48,48,50,53,54,51,44,51,55,46,48,48,49,55,48,54,93,44,91,45,57,57,46,53,52,49,49,49,54,44,51,54,46,57,57,57,54,49,93,44,91,45,57,57,46,53,52,51,49,56,57,44,51,55,46,51,56,49,49,50,52,93,44,91,45,57,57,46,53,53,54,49,49,57,44,51,55,46,52,54,55,55,50,50,93,44,91,45,49,48,48,46,49,48,55,50,52,56,44,51,55,46,52,55,52,56,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,72,97,115,107,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,52,55,44,34,98,101,100,115,34,58,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,54,56,49,48,54,44,51,55,46,51,56,55,55,55,57,93,44,91,45,49,48,48,46,54,53,50,55,50,56,44,51,55,46,51,56,55,54,50,55,93,44,91,45,49,48,48,46,54,53,50,54,52,50,44,51,55,46,52,55,52,56,52,56,93,44,91,45,49,48,48,46,54,53,50,50,53,49,44,51,55,46,55,51,54,50,55,53,93,44,91,45,49,48,49,46,48,56,57,54,54,55,44,51,55,46,55,51,54,51,51,55,93,44,91,45,49,48,49,46,48,56,57,54,53,51,44,51,55,46,51,56,55,55,50,49,93,44,91,45,49,48,49,46,48,54,56,49,48,54,44,51,55,46,51,56,55,55,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,105,101,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,54,56,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,49,55,56,55,54,55,44,51,50,46,53,56,52,57,49,54,93,44,91,45,57,51,46,49,52,55,49,57,51,44,51,50,46,52,53,53,49,55,51,93,44,91,45,57,51,46,50,51,54,54,53,54,44,51,50,46,52,49,48,48,55,49,93,44,91,45,57,51,46,51,55,50,55,56,49,44,51,50,46,52,49,48,49,53,51,93,44,91,45,57,51,46,52,50,56,49,57,44,51,50,46,50,51,53,56,57,55,93,44,91,45,57,51,46,50,49,51,57,56,56,44,51,50,46,50,51,54,48,54,53,93,44,91,45,57,51,46,49,56,55,49,54,50,44,51,50,46,49,52,56,52,49,50,93,44,91,45,57,50,46,57,51,57,48,56,44,51,50,46,49,52,55,57,52,50,93,44,91,45,57,50,46,56,49,52,55,51,55,44,51,50,46,49,52,54,57,48,55,93,44,91,45,57,50,46,55,55,52,57,51,54,44,51,50,46,50,51,55,48,53,53,93,44,91,45,57,50,46,55,55,55,49,57,55,44,51,50,46,52,53,51,52,53,53,93,44,91,45,57,50,46,56,55,57,50,54,56,44,51,50,46,52,53,52,49,49,56,93,44,91,45,57,50,46,56,56,48,56,48,53,44,51,50,46,53,56,53,50,55,55,93,44,91,45,57,51,46,49,55,56,55,54,55,44,51,50,46,53,56,52,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,53,34,44,34,78,65,77,69,34,58,34,87,97,108,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,54,51,57,49,57,44,51,52,46,57,56,51,51,55,53,93,44,91,45,56,53,46,52,53,48,53,54,49,44,51,52,46,56,51,49,54,55,55,93,44,91,45,56,53,46,52,53,48,52,48,57,44,51,52,46,55,53,57,50,52,49,93,44,91,45,56,53,46,53,51,52,48,56,57,44,51,52,46,54,50,51,56,53,56,93,44,91,45,56,53,46,53,50,55,50,54,49,44,51,52,46,53,56,56,54,56,51,93,44,91,45,56,53,46,49,48,55,55,52,56,44,51,52,46,53,56,55,52,56,51,93,44,91,45,56,53,46,48,54,57,49,53,57,44,51,52,46,53,56,55,49,56,52,93,44,91,45,56,53,46,48,53,48,52,52,54,44,51,52,46,54,50,50,52,56,50,93,44,91,45,56,53,46,48,53,48,56,52,55,44,51,52,46,55,49,57,57,56,93,44,91,45,56,53,46,49,52,52,55,56,57,44,51,52,46,55,54,55,54,51,57,93,44,91,45,56,53,46,50,54,52,55,54,50,44,51,52,46,56,53,52,50,55,55,93,44,91,45,56,53,46,50,54,53,48,53,53,44,51,52,46,57,56,53,48,55,53,93,44,91,45,56,53,46,51,54,51,57,49,57,44,51,52,46,57,56,51,51,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,57,56,49,54,52,44,52,49,46,56,54,50,55,55,57,93,44,91,45,57,50,46,50,57,55,52,57,52,44,52,49,46,53,48,57,55,57,93,44,91,45,57,49,46,57,52,54,48,52,51,44,52,49,46,53,49,48,55,52,57,93,44,91,45,57,49,46,56,50,57,50,51,49,44,52,49,46,53,49,49,52,53,55,93,44,91,45,57,49,46,56,51,49,51,55,57,44,52,49,46,56,54,49,56,53,49,93,44,91,45,57,50,46,50,57,56,49,54,52,44,52,49,46,56,54,50,55,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,117,102,102,97,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,51,48,44,34,98,101,100,115,34,58,51,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,50,53,57,56,54,44,52,49,46,48,52,54,52,55,49,93,44,91,45,57,57,46,52,49,55,51,49,54,44,52,48,46,54,55,48,56,50,53,93,44,91,45,57,57,46,49,55,57,50,52,56,44,52,48,46,54,54,48,53,52,49,93,44,91,45,57,56,46,57,48,54,48,57,54,44,52,48,46,54,53,50,55,50,50,93,44,91,45,57,56,46,55,50,52,51,56,55,44,52,48,46,54,56,57,55,55,50,93,44,91,45,57,56,46,55,50,49,52,51,44,52,48,46,54,57,56,57,48,51,93,44,91,45,57,56,46,55,50,49,57,55,53,44,52,49,46,48,52,54,54,55,52,93,44,91,45,57,56,46,55,52,56,53,50,54,44,52,49,46,48,52,54,54,52,93,44,91,45,57,57,46,50,48,55,53,54,52,44,52,49,46,48,52,55,48,48,51,93,44,91,45,57,57,46,52,50,53,57,56,54,44,52,49,46,48,52,54,52,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,97,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,53,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,57,52,53,52,54,51,44,51,54,46,57,57,56,52,49,54,93,44,91,45,49,48,48,46,57,53,52,49,53,51,44,51,54,46,52,57,57,57,49,54,93,44,91,45,49,48,48,46,53,52,54,49,52,53,44,51,54,46,52,57,57,51,52,51,93,44,91,45,49,48,48,46,48,48,51,55,54,50,44,51,54,46,52,57,57,56,52,57,93,44,91,45,49,48,48,46,48,48,51,49,54,44,51,54,46,53,57,51,50,53,93,44,91,45,49,48,48,46,48,48,50,53,54,51,44,51,55,46,48,48,49,55,48,54,93,44,91,45,49,48,48,46,48,56,57,52,56,51,44,51,55,46,48,48,50,50,54,49,93,44,91,45,49,48,48,46,54,51,51,51,50,55,44,51,55,46,48,48,48,49,48,51,93,44,91,45,49,48,48,46,57,52,53,52,54,51,44,51,54,46,57,57,56,52,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,44,91,45,57,51,46,48,50,55,44,52,50,46,53,53,54,56,49,93,44,91,45,57,50,46,53,53,52,51,44,52,50,46,53,53,53,56,53,52,93,44,91,45,57,50,46,53,53,52,52,57,50,44,52,50,46,54,52,50,51,49,52,93,44,91,45,57,50,46,53,53,52,50,49,49,44,52,50,46,57,48,55,49,49,50,93,44,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,82,111,111,115,101,118,101,108,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,50,56,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,49,57,52,55,56,51,44,52,56,46,48,54,54,54,49,55,93,44,91,45,49,48,53,46,48,51,55,48,57,52,44,52,56,46,48,54,51,52,49,54,93,44,91,45,49,48,52,46,56,50,50,53,56,49,44,52,56,46,49,49,56,57,52,53,93,44,91,45,49,48,52,46,53,49,49,54,57,54,44,52,56,46,49,48,57,56,57,52,93,44,91,45,49,48,52,46,48,52,52,48,52,52,44,52,55,46,57,57,54,48,56,50,93,44,91,45,49,48,52,46,48,52,54,55,54,54,44,52,56,46,51,56,57,50,57,56,93,44,91,45,49,48,52,46,54,50,55,55,54,44,52,56,46,51,56,57,51,54,50,93,44,91,45,49,48,52,46,54,50,55,55,50,54,44,52,56,46,52,55,54,51,52,57,93,44,91,45,49,48,52,46,55,53,55,54,49,57,44,52,56,46,53,54,51,49,50,55,93,44,91,45,49,48,52,46,57,55,51,51,53,52,44,52,56,46,53,54,51,49,57,93,44,91,45,49,48,53,46,56,48,52,52,51,54,44,52,56,46,53,54,51,51,53,56,93,44,91,45,49,48,53,46,56,48,52,53,57,57,44,52,56,46,50,49,57,48,51,55,93,44,91,45,49,48,53,46,56,52,51,56,57,49,44,52,56,46,48,49,48,50,56,57,93,44,91,45,49,48,53,46,53,57,53,48,50,55,44,52,56,46,48,56,49,55,56,93,44,91,45,49,48,53,46,50,50,56,57,57,44,52,56,46,48,56,57,50,56,52,93,44,91,45,49,48,53,46,49,57,52,55,56,51,44,52,56,46,48,54,54,54,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,97,114,99,101,108,111,110,101,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,50,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,55,56,52,52,49,44,49,56,46,53,52,49,52,51,49,93,44,91,45,54,54,46,53,56,56,49,56,49,44,49,56,46,51,56,57,52,48,56,93,44,91,45,54,54,46,53,52,51,48,55,57,44,49,56,46,52,48,53,52,50,50,93,44,91,45,54,54,46,53,51,50,53,50,49,44,49,56,46,53,51,53,52,55,56,93,44,91,45,54,54,46,53,55,56,52,52,49,44,49,56,46,53,52,49,52,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,111,119,108,105,116,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,49,49,50,44,34,98,101,100,115,34,58,51,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,50,49,51,48,53,52,44,52,54,46,49,55,50,53,52,49,93,44,91,45,49,50,51,46,49,49,53,57,48,52,44,52,54,46,49,56,53,50,54,56,93,44,91,45,49,50,50,46,57,48,52,49,49,57,44,52,54,46,48,56,51,55,51,52,93,44,91,45,49,50,50,46,55,56,53,53,49,53,44,52,53,46,56,53,48,53,51,54,93,44,91,45,49,50,50,46,55,50,48,57,49,44,52,53,46,57,51,49,56,57,50,93,44,91,45,49,50,50,46,52,55,56,55,53,51,44,52,53,46,57,56,55,57,51,56,93,44,91,45,49,50,50,46,51,51,50,54,54,51,44,52,53,46,57,54,53,48,54,52,93,44,91,45,49,50,50,46,50,52,53,56,53,54,44,52,54,46,48,53,51,56,53,51,93,44,91,45,49,50,50,46,50,52,48,57,54,54,44,52,54,46,51,56,53,51,54,49,93,44,91,45,49,50,51,46,50,49,55,57,53,44,52,54,46,51,56,53,54,49,55,93,44,91,45,49,50,51,46,50,49,51,48,53,52,44,52,54,46,49,55,50,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,55,34,44,34,78,65,77,69,34,58,34,76,105,118,101,32,79,97,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,51,53,48,51,49,44,50,56,46,54,49,50,54,53,56,93,44,91,45,57,56,46,51,51,52,51,50,51,44,50,56,46,48,53,55,56,93,44,91,45,57,56,46,50,51,53,52,57,55,44,50,56,46,48,53,55,57,54,54,93,44,91,45,57,55,46,56,56,51,49,52,56,44,50,56,46,48,53,54,57,93,44,91,45,57,55,46,56,49,55,55,49,54,44,50,56,46,49,55,54,56,52,56,93,44,91,45,57,56,46,48,56,57,55,54,52,44,50,56,46,54,54,50,57,55,57,93,44,91,45,57,56,46,48,48,53,50,53,50,44,50,56,46,54,57,48,50,51,57,93,44,91,45,57,56,46,48,57,56,51,49,53,44,50,56,46,55,56,54,57,52,57,93,44,91,45,57,56,46,51,51,53,48,51,49,44,50,56,46,54,49,50,54,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,77,111,110,105,116,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,53,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,52,57,56,51,55,55,44,51,56,46,57,50,50,48,56,52,93,44,91,45,57,50,46,54,49,55,49,52,55,44,51,56,46,54,56,48,48,49,51,93,44,91,45,57,50,46,56,51,57,56,51,55,44,51,56,46,54,56,51,57,55,52,93,44,91,45,57,50,46,56,52,49,56,55,49,44,51,56,46,53,57,54,55,57,50,93,44,91,45,57,50,46,54,50,53,49,56,57,44,51,56,46,52,51,48,55,55,56,93,44,91,45,57,50,46,52,57,53,49,56,53,44,51,56,46,52,50,55,56,50,57,93,44,91,45,57,50,46,51,57,52,56,54,54,44,51,56,46,55,51,57,49,51,93,44,91,45,57,50,46,51,55,57,54,49,52,44,51,56,46,56,48,48,48,55,54,93,44,91,45,57,50,46,52,57,56,51,55,55,44,51,56,46,57,50,50,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,87,101,115,116,109,111,114,101,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,51,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,51,54,57,53,57,44,51,56,46,48,55,55,48,55,52,93,44,91,45,55,54,46,56,55,55,48,54,50,44,51,56,46,49,50,52,51,53,56,93,44,91,45,55,54,46,55,52,56,56,55,49,44,51,55,46,57,57,52,56,57,55,93,44,91,45,55,54,46,54,51,52,50,51,44,51,55,46,57,54,54,54,51,93,44,91,45,55,54,46,53,49,54,51,54,57,44,51,56,46,48,51,52,55,50,52,93,44,91,45,55,54,46,54,49,48,51,56,52,44,51,56,46,49,52,56,53,49,54,93,44,91,45,55,54,46,56,54,56,56,53,57,44,51,56,46,49,55,49,51,55,50,93,44,91,45,55,54,46,57,57,55,54,55,44,51,56,46,50,55,56,48,52,54,93,44,91,45,55,55,46,48,54,49,54,57,53,44,51,56,46,49,54,49,54,51,49,93,44,91,45,55,54,46,57,51,54,57,53,57,44,51,56,46,48,55,55,48,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,89,97,100,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,54,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,55,51,50,48,53,44,51,54,46,50,51,54,51,48,53,93,44,91,45,56,48,46,56,56,49,53,57,49,44,51,54,46,48,53,53,55,49,56,93,44,91,45,56,48,46,54,57,51,49,57,55,44,51,54,46,48,53,49,50,54,93,44,91,45,56,48,46,52,57,54,50,56,51,44,51,54,46,48,52,54,53,52,53,93,44,91,45,56,48,46,52,51,57,49,48,52,44,51,54,46,49,51,57,57,52,57,93,44,91,45,56,48,46,52,53,50,51,50,50,44,51,54,46,50,52,49,52,49,57,93,44,91,45,56,48,46,54,51,49,53,52,52,44,51,54,46,50,56,53,53,56,52,93,44,91,45,56,48,46,56,55,51,50,48,53,44,51,54,46,50,51,54,51,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,48,55,53,44,34,98,101,100,115,34,58,50,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,51,56,55,54,55,44,51,55,46,54,51,51,51,54,52,93,44,91,45,49,50,48,46,57,56,51,55,53,54,44,51,55,46,51,57,57,54,52,93,44,91,45,49,50,48,46,57,55,50,57,52,49,44,51,55,46,51,51,56,52,56,51,93,44,91,45,49,50,49,46,50,50,54,56,48,52,44,51,55,46,49,51,52,55,55,52,93,44,91,45,49,50,49,46,50,49,53,52,48,54,44,51,54,46,57,54,49,50,52,56,93,44,91,45,49,50,49,46,49,52,49,53,50,51,44,51,54,46,56,51,54,54,53,54,93,44,91,45,49,50,48,46,57,49,56,55,51,49,44,51,54,46,55,52,48,51,56,49,93,44,91,45,49,50,48,46,53,52,49,54,57,54,44,51,55,46,48,52,52,53,48,53,93,44,91,45,49,50,48,46,52,55,54,54,57,50,44,51,55,46,48,57,54,51,57,93,44,91,45,49,50,48,46,50,50,55,50,56,54,44,51,55,46,49,54,51,52,93,44,91,45,49,50,48,46,48,53,50,48,53,53,44,51,55,46,49,56,51,49,48,56,93,44,91,45,49,50,48,46,49,52,51,56,50,54,44,51,55,46,50,51,57,49,57,50,93,44,91,45,49,50,48,46,50,54,54,48,49,44,51,55,46,52,48,48,54,48,55,93,44,91,45,49,50,48,46,51,56,55,54,55,44,51,55,46,54,51,51,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,101,119,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,49,56,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,56,49,48,50,50,44,51,54,46,48,49,50,57,50,53,93,44,91,45,57,57,46,51,55,53,56,49,55,44,51,53,46,56,49,50,49,56,56,93,44,91,45,57,56,46,54,51,49,57,56,53,44,51,53,46,56,49,50,52,48,50,93,44,91,45,57,56,46,54,51,54,56,57,57,44,51,54,46,49,54,52,56,57,52,93,44,91,45,57,56,46,57,53,53,56,52,57,44,51,54,46,49,54,49,53,55,55,93,44,91,45,57,57,46,51,56,50,48,55,52,44,51,54,46,49,54,52,51,48,49,93,44,91,45,57,57,46,51,56,49,48,50,50,44,51,54,46,48,49,50,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,117,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,55,49,50,44,34,98,101,100,115,34,58,55,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,52,51,49,56,56,44,51,53,46,57,54,48,48,53,93,44,91,45,56,49,46,57,48,54,54,53,50,44,51,53,46,56,56,51,51,55,54,93,44,91,45,56,49,46,57,56,54,57,51,57,44,51,53,46,56,48,54,57,50,51,93,44,91,45,56,49,46,56,54,57,51,56,56,44,51,53,46,55,49,57,54,50,52,93,44,91,45,56,49,46,56,50,52,49,50,50,44,51,53,46,53,55,52,57,56,51,93,44,91,45,56,49,46,54,57,49,57,56,57,44,51,53,46,53,56,48,48,52,49,93,44,91,45,56,49,46,53,51,55,53,57,57,44,51,53,46,53,54,52,50,50,56,93,44,91,45,56,49,46,53,51,53,52,48,51,44,51,53,46,53,54,56,49,51,55,93,44,91,45,56,49,46,51,54,51,55,57,54,44,51,53,46,55,54,55,56,48,50,93,44,91,45,56,49,46,53,53,53,57,57,52,44,51,53,46,55,55,55,53,51,56,93,44,91,45,56,49,46,56,48,55,49,54,50,44,51,53,46,57,54,49,57,53,53,93,44,91,45,56,49,46,57,52,51,49,56,56,44,51,53,46,57,54,48,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,48,48,50,44,34,98,101,100,115,34,58,53,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,54,52,55,56,52,44,51,53,46,53,56,53,50,54,51,93,44,91,45,55,56,46,49,53,56,53,56,57,44,51,53,46,51,52,55,53,51,55,93,44,91,45,55,56,46,51,48,54,53,56,44,51,53,46,50,56,55,54,48,52,93,44,91,45,55,56,46,49,54,51,52,50,44,51,53,46,49,56,57,55,49,54,93,44,91,45,55,55,46,56,51,52,50,52,57,44,51,53,46,49,55,55,56,52,54,93,44,91,45,55,55,46,56,48,54,50,52,56,44,51,53,46,51,54,56,55,53,52,93,44,91,45,55,55,46,56,50,50,53,49,49,44,51,53,46,53,56,53,51,56,51,93,44,91,45,55,56,46,48,54,52,55,56,52,44,51,53,46,53,56,53,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,51,53,44,34,98,101,100,115,34,58,50,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,54,49,48,56,51,57,44,52,49,46,57,57,57,48,48,54,93,44,91,45,55,57,46,54,49,50,48,55,50,44,52,49,46,56,53,48,48,53,54,93,44,91,45,55,57,46,54,49,50,56,55,51,44,52,49,46,54,50,51,56,53,56,93,44,91,45,55,57,46,53,49,50,48,55,44,52,49,46,54,50,52,53,53,57,93,44,91,45,55,56,46,57,53,54,48,52,50,44,52,49,46,54,50,51,52,48,50,93,44,91,45,55,56,46,57,53,54,48,53,54,44,52,49,46,54,50,51,56,54,51,93,44,91,45,55,56,46,57,49,56,56,53,53,44,52,49,46,57,57,56,49,49,57,93,44,91,45,55,57,46,48,54,49,50,54,53,44,52,49,46,57,57,57,50,53,57,93,44,91,45,55,57,46,54,49,48,56,51,57,44,52,49,46,57,57,57,48,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,56,57,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,52,51,55,51,57,44,51,52,46,49,57,50,53,48,49,93,44,91,45,57,52,46,48,57,56,53,48,49,44,51,52,46,49,57,49,50,48,51,93,44,91,45,57,52,46,48,53,50,57,52,51,44,51,51,46,56,56,54,48,56,50,93,44,91,45,57,51,46,57,53,56,56,50,56,44,51,51,46,55,53,48,57,57,52,93,44,91,45,57,51,46,57,53,55,51,49,53,44,51,51,46,55,53,48,57,52,93,44,91,45,57,51,46,56,51,49,52,53,50,44,51,51,46,55,52,55,55,48,57,93,44,91,45,57,51,46,56,50,51,48,55,54,44,51,52,46,48,48,56,56,57,51,93,44,91,45,57,51,46,56,50,48,55,50,50,44,51,52,46,49,56,51,56,48,50,93,44,91,45,57,51,46,57,50,53,56,51,44,51,52,46,49,56,54,52,57,54,93,44,91,45,57,51,46,57,51,53,51,55,49,44,51,52,46,51,53,48,48,57,55,93,44,91,45,57,52,46,50,53,52,54,54,56,44,51,52,46,51,53,53,52,56,49,93,44,91,45,57,52,46,50,52,51,55,51,57,44,51,52,46,49,57,50,53,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,68,97,118,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,57,57,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,57,51,49,57,55,44,51,54,46,48,53,49,50,54,93,44,91,45,56,48,46,55,48,55,56,50,54,44,51,53,46,56,53,50,57,50,57,93,44,91,45,56,48,46,54,51,50,55,50,52,44,51,53,46,56,52,53,56,53,52,93,44,91,45,56,48,46,52,53,56,56,56,52,44,51,53,46,55,52,51,48,51,49,93,44,91,45,56,48,46,51,56,53,55,56,52,44,51,53,46,56,53,52,53,56,55,93,44,91,45,56,48,46,51,57,52,51,48,55,44,51,53,46,57,55,50,55,54,50,93,44,91,45,56,48,46,52,57,54,50,56,51,44,51,54,46,48,52,54,53,52,53,93,44,91,45,56,48,46,54,57,51,49,57,55,44,51,54,46,48,53,49,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,77,99,68,111,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,49,48,57,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,51,51,52,56,52,44,51,53,46,56,50,51,51,48,57,93,44,91,45,56,50,46,50,55,53,51,57,57,44,51,53,46,55,48,52,52,51,56,93,44,91,45,56,50,46,50,53,49,50,53,49,44,51,53,46,53,53,57,57,52,51,93,44,91,45,56,50,46,49,54,57,48,52,57,44,51,53,46,53,50,55,56,49,49,93,44,91,45,56,49,46,57,54,55,54,49,57,44,51,53,46,53,50,54,48,48,55,93,44,91,45,56,49,46,56,50,52,49,50,50,44,51,53,46,53,55,52,57,56,51,93,44,91,45,56,49,46,56,54,57,51,56,56,44,51,53,46,55,49,57,54,50,52,93,44,91,45,56,49,46,57,56,54,57,51,57,44,51,53,46,56,48,54,57,50,51,93,44,91,45,56,49,46,57,48,54,54,53,50,44,51,53,46,56,56,51,51,55,54,93,44,91,45,56,49,46,57,52,51,49,56,56,44,51,53,46,57,54,48,48,53,93,44,91,45,56,49,46,57,56,49,57,53,52,44,51,53,46,57,49,49,51,54,49,93,44,91,45,56,50,46,49,51,51,52,56,52,44,51,53,46,56,50,51,51,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,52,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,53,54,55,48,57,44,51,51,46,57,53,54,56,51,55,93,44,91,45,57,51,46,52,56,51,48,57,55,44,51,51,46,52,55,54,48,55,53,93,44,91,45,57,51,46,51,54,53,53,56,53,44,51,51,46,52,52,52,52,53,57,93,44,91,45,57,51,46,49,49,54,51,54,49,44,51,51,46,52,53,50,57,48,57,93,44,91,45,57,51,46,49,48,52,50,57,44,51,51,46,55,55,55,48,49,49,93,44,91,45,57,51,46,50,57,48,53,55,49,44,51,51,46,56,52,53,49,51,51,93,44,91,45,57,51,46,51,55,51,52,48,54,44,51,51,46,57,53,55,48,55,93,44,91,45,57,51,46,52,53,54,55,48,57,44,51,51,46,57,53,54,56,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,89,117,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,54,57,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,53,49,52,54,53,44,52,48,46,52,52,48,48,48,56,93,44,91,45,49,48,50,46,54,54,52,56,48,52,44,52,48,46,52,51,56,52,55,51,93,44,91,45,49,48,50,46,55,55,57,57,54,44,52,48,46,52,51,56,52,52,54,93,44,91,45,49,48,50,46,55,57,51,53,56,50,44,52,48,46,51,53,49,50,56,49,93,44,91,45,49,48,50,46,56,48,50,57,51,50,44,51,57,46,53,54,55,56,52,49,93,44,91,45,49,48,50,46,48,52,57,56,48,54,44,51,57,46,53,55,52,48,53,56,93,44,91,45,49,48,50,46,48,53,49,55,52,52,44,52,48,46,48,48,51,48,55,56,93,44,91,45,49,48,50,46,48,53,49,53,56,54,44,52,48,46,51,52,57,50,49,51,93,44,91,45,49,48,50,46,48,53,49,52,54,53,44,52,48,46,52,52,48,48,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,50,49,34,44,34,78,65,77,69,34,58,34,83,104,101,114,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,51,57,49,53,44,51,54,46,52,57,57,53,50,56,93,44,91,45,49,48,50,46,48,51,50,51,51,56,44,51,54,46,53,48,48,53,55,53,93,44,91,45,49,48,50,46,49,54,50,52,54,51,44,51,54,46,53,48,48,51,50,54,93,44,91,45,49,48,50,46,49,54,51,48,49,53,44,51,54,46,48,53,53,50,52,57,93,44,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,44,91,45,49,48,49,46,54,50,51,57,49,53,44,51,54,46,52,57,57,53,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,54,51,34,44,34,78,65,77,69,34,58,34,85,118,97,108,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,48,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,48,51,49,51,44,50,57,46,54,50,55,49,56,49,93,44,91,45,49,48,48,46,48,49,52,49,56,56,44,50,57,46,54,50,51,52,57,53,93,44,91,45,49,48,48,46,49,49,50,48,57,56,44,50,57,46,54,50,51,50,54,51,93,44,91,45,49,48,48,46,49,49,49,52,48,54,44,50,57,46,48,56,54,51,49,56,93,44,91,45,57,57,46,52,49,51,56,56,44,50,57,46,48,57,49,51,51,53,93,44,91,45,57,57,46,52,49,49,56,49,55,44,50,57,46,54,50,55,53,49,52,93,44,91,45,57,57,46,54,48,51,49,51,44,50,57,46,54,50,55,49,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,117,103,108,97,105,122,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,56,52,44,34,98,101,100,115,34,58,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,53,54,49,56,44,52,48,46,54,56,52,56,54,50,93,44,91,45,56,52,46,52,51,52,51,56,55,44,52,48,46,51,53,52,53,51,52,93,44,91,45,56,52,46,51,51,56,54,44,52,48,46,51,55,57,49,57,57,93,44,91,45,56,52,46,51,51,57,49,51,55,44,52,48,46,52,56,49,48,55,54,93,44,91,45,56,52,46,48,48,50,51,55,50,44,52,48,46,52,56,51,49,49,53,93,44,91,45,56,51,46,56,56,48,48,51,57,44,52,48,46,53,51,56,54,57,52,93,44,91,45,56,51,46,56,56,48,49,57,52,44,52,48,46,54,52,52,54,57,93,44,91,45,56,52,46,49,48,55,55,56,55,44,52,48,46,54,52,51,48,54,57,93,44,91,45,56,52,46,50,50,50,55,57,57,44,52,48,46,54,56,53,57,53,55,93,44,91,45,56,52,46,51,57,54,55,55,56,44,52,48,46,54,56,52,57,50,54,93,44,91,45,56,52,46,52,53,54,49,56,44,52,48,46,54,56,52,56,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,111,115,115,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,49,51,49,44,34,98,101,100,115,34,58,50,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,49,52,53,53,51,44,51,51,46,48,49,57,51,55,49,93,44,91,45,57,51,46,55,56,51,50,51,51,44,51,50,46,55,56,52,51,54,93,44,91,45,57,51,46,56,49,57,49,54,57,44,51,50,46,55,51,54,48,48,50,93,44,91,45,57,51,46,55,51,54,54,49,44,51,50,46,53,55,57,56,52,53,93,44,91,45,57,51,46,55,53,54,50,48,54,44,51,50,46,53,51,55,48,51,55,93,44,91,45,57,51,46,54,49,53,49,51,44,51,50,46,51,52,56,51,51,50,93,44,91,45,57,51,46,52,55,49,50,52,57,44,51,50,46,50,51,55,49,56,54,93,44,91,45,57,51,46,52,50,56,49,57,44,51,50,46,50,51,53,56,57,55,93,44,91,45,57,51,46,51,55,50,55,56,49,44,51,50,46,52,49,48,49,53,51,93,44,91,45,57,51,46,52,52,49,50,49,50,44,51,50,46,52,49,48,52,51,49,93,44,91,45,57,51,46,52,53,51,49,50,49,44,51,50,46,56,53,57,57,51,53,93,44,91,45,57,51,46,53,50,48,57,57,52,44,51,51,46,48,49,56,54,49,54,93,44,91,45,57,51,46,56,48,52,57,51,44,51,51,46,48,49,57,51,53,55,93,44,91,45,57,51,46,56,49,52,53,53,51,44,51,51,46,48,49,57,51,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,69,109,109,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,53,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,49,52,53,56,50,44,52,51,46,53,48,48,56,53,51,93,44,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,44,91,45,57,52,46,52,52,51,49,51,55,44,52,51,46,50,53,53,48,49,52,93,44,91,45,57,52,46,52,52,50,56,53,44,52,51,46,53,48,48,52,50,50,93,44,91,45,57,52,46,56,53,52,53,53,53,44,52,51,46,53,48,48,57,50,53,93,44,91,45,57,52,46,57,49,52,53,56,50,44,52,51,46,53,48,48,56,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,57,55,55,44,34,98,101,100,115,34,58,51,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,50,56,53,57,50,44,51,56,46,56,55,49,48,57,57,93,44,91,45,57,55,46,57,50,52,55,57,53,44,51,56,46,54,48,57,56,56,93,44,91,45,57,55,46,51,55,49,57,49,49,44,51,56,46,54,48,57,51,53,51,93,44,91,45,57,55,46,51,55,49,54,49,52,44,51,56,46,57,53,55,56,53,50,93,44,91,45,57,55,46,57,50,56,53,54,44,51,56,46,57,53,56,51,57,53,93,44,91,45,57,55,46,57,50,56,53,57,50,44,51,56,46,56,55,49,48,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,77,97,103,111,102,102,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,52,56,54,57,50,44,51,55,46,54,54,57,54,49,54,93,44,91,45,56,51,46,48,56,57,55,57,54,44,51,55,46,54,51,50,49,54,55,93,44,91,45,56,50,46,57,52,56,53,52,52,44,51,55,46,53,48,51,49,54,55,93,44,91,45,56,50,46,57,50,53,52,54,44,51,55,46,52,56,54,53,50,53,93,44,91,45,56,50,46,56,57,49,54,48,53,44,51,55,46,53,49,57,48,56,51,93,44,91,45,56,50,46,57,52,48,55,54,51,44,51,55,46,55,49,54,51,51,56,93,44,91,45,56,51,46,48,48,52,54,52,57,44,51,55,46,56,53,57,50,52,55,93,44,91,45,56,51,46,48,56,57,52,48,57,44,51,55,46,56,57,48,51,52,93,44,91,45,56,51,46,50,55,48,51,56,55,44,51,55,46,55,54,54,56,52,53,93,44,91,45,56,51,46,50,54,50,49,55,50,44,51,55,46,55,49,50,54,53,55,93,44,91,45,56,51,46,50,52,56,54,57,50,44,51,55,46,54,54,57,54,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,97,105,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,57,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,52,51,55,54,55,44,51,52,46,51,48,50,54,52,56,93,44,91,45,49,48,51,46,48,52,55,52,48,57,44,51,51,46,56,50,52,54,55,52,93,44,91,45,49,48,50,46,54,49,53,52,52,55,44,51,51,46,56,50,53,49,50,49,93,44,91,45,49,48,50,46,54,49,53,49,53,44,51,52,46,51,49,50,56,57,49,93,44,91,45,49,48,51,46,48,52,51,55,54,50,44,51,52,46,51,49,50,55,53,93,44,91,45,49,48,51,46,48,52,51,55,54,55,44,51,52,46,51,48,50,54,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,108,108,97,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,56,52,48,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,51,51,57,57,56,44,51,57,46,48,53,57,48,53,55,93,44,91,45,57,50,46,49,49,48,51,56,55,44,51,57,46,48,54,52,50,48,52,93,44,91,45,57,50,46,49,54,53,49,49,55,44,51,56,46,57,48,48,57,52,56,93,44,91,45,57,50,46,49,51,53,51,57,55,44,51,56,46,56,49,53,53,56,49,93,44,91,45,57,50,46,50,50,48,54,54,49,44,51,56,46,54,52,51,49,54,55,93,44,91,45,57,50,46,49,48,57,50,56,50,44,51,56,46,53,54,49,52,51,93,44,91,45,57,50,46,48,48,56,57,56,51,44,51,56,46,53,55,48,57,93,44,91,45,57,49,46,56,54,57,52,56,57,44,51,56,46,54,54,51,57,52,93,44,91,45,57,49,46,54,52,55,49,55,49,44,51,56,46,55,48,51,51,57,54,93,44,91,45,57,49,46,54,51,51,57,57,56,44,51,57,46,48,53,57,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,98,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,49,48,50,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,55,51,52,48,51,44,52,50,46,52,51,51,50,51,54,93,44,91,45,49,48,54,46,48,54,56,52,48,54,44,52,49,46,51,57,53,48,50,56,93,44,91,45,49,48,54,46,51,50,50,56,56,53,44,52,49,46,51,57,53,49,52,49,93,44,91,45,49,48,54,46,51,50,49,49,54,53,44,52,48,46,57,57,57,49,50,51,93,44,91,45,49,48,54,46,49,57,48,53,53,52,44,52,48,46,57,57,55,53,55,56,93,44,91,45,49,48,53,46,50,55,54,56,54,44,52,48,46,57,57,56,49,55,50,93,44,91,45,49,48,53,46,50,55,56,50,51,54,44,52,49,46,54,53,54,54,53,53,93,44,91,45,49,48,53,46,50,55,49,55,52,54,44,52,49,46,57,56,54,48,57,53,93,44,91,45,49,48,53,46,50,56,51,57,49,44,52,50,46,52,51,49,52,48,50,93,44,91,45,49,48,53,46,51,55,53,53,52,49,44,52,50,46,50,57,48,49,51,57,93,44,91,45,49,48,53,46,54,49,51,56,54,53,44,52,50,46,51,48,52,52,53,53,93,44,91,45,49,48,53,46,53,53,54,48,52,50,44,52,50,46,52,51,48,53,56,51,93,44,91,45,49,48,54,46,48,55,51,52,48,51,44,52,50,46,52,51,51,50,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,80,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,49,50,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,55,57,56,52,56,51,44,52,53,46,48,48,50,51,51,51,93,44,91,45,49,49,48,46,55,48,52,52,55,54,44,52,52,46,57,57,50,49,55,52,93,44,91,45,49,49,49,46,48,52,53,48,54,54,44,52,53,46,48,48,48,57,53,93,44,91,45,49,49,49,46,48,53,51,52,52,55,44,52,52,46,54,54,54,50,54,56,93,44,91,45,49,49,48,46,54,54,55,56,54,55,44,52,52,46,54,54,54,50,57,49,93,44,91,45,49,49,48,46,54,54,55,56,57,57,44,52,52,46,53,56,50,55,57,50,93,44,91,45,49,49,48,46,51,55,53,51,51,52,44,52,52,46,53,56,51,48,49,54,93,44,91,45,49,49,48,46,50,55,54,53,48,54,44,52,52,46,53,49,53,54,54,53,93,44,91,45,49,49,48,46,50,57,54,54,52,56,44,52,52,46,52,51,49,51,52,49,93,44,91,45,49,49,48,46,49,53,48,49,55,53,44,52,52,46,50,56,57,54,54,54,93,44,91,45,49,49,48,46,49,49,57,49,57,51,44,52,52,46,49,51,50,53,56,52,93,44,91,45,49,49,48,46,48,53,51,49,55,57,44,52,52,46,48,48,56,48,50,50,93,44,91,45,49,48,57,46,56,56,49,57,44,52,51,46,57,52,57,48,55,54,93,44,91,45,49,48,57,46,55,56,57,57,44,52,51,46,56,48,51,50,53,50,93,44,91,45,49,48,57,46,53,52,50,51,51,50,44,52,51,46,57,54,49,51,53,50,93,44,91,45,49,48,57,46,52,52,50,51,54,49,44,52,51,46,57,51,48,52,51,52,93,44,91,45,49,48,57,46,51,49,50,57,52,57,44,52,51,46,56,49,51,50,57,51,93,44,91,45,49,48,57,46,48,57,51,54,48,51,44,52,51,46,56,49,55,54,49,57,93,44,91,45,49,48,57,46,48,57,50,56,55,56,44,52,51,46,57,48,52,52,55,52,93,44,91,45,49,48,56,46,57,49,50,55,56,51,44,52,51,46,57,48,52,55,53,52,93,44,91,45,49,48,56,46,55,57,49,55,55,57,44,52,51,46,57,57,49,48,53,51,93,44,91,45,49,48,56,46,55,57,50,50,55,55,44,52,52,46,48,55,57,54,49,54,93,44,91,45,49,48,56,46,53,53,48,55,53,56,44,52,52,46,48,55,57,52,48,51,93,44,91,45,49,48,56,46,53,53,48,53,54,50,44,52,52,46,49,54,56,52,53,53,93,44,91,45,49,48,56,46,53,57,50,50,57,54,44,52,52,46,56,55,49,52,52,52,93,44,91,45,49,48,56,46,54,50,49,51,49,53,44,52,53,46,48,48,48,51,54,49,93,44,91,45,49,48,57,46,55,57,56,52,56,51,44,52,53,46,48,48,50,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,111,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,57,52,44,34,98,101,100,115,34,58,54,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,51,50,54,55,50,44,52,49,46,49,55,50,48,52,93,44,91,45,55,54,46,55,57,50,54,49,44,52,48,46,57,52,54,54,52,55,93,44,91,45,55,54,46,54,54,49,51,52,56,44,52,48,46,57,54,55,57,57,54,93,44,91,45,55,54,46,53,50,56,48,51,52,44,52,48,46,56,56,50,53,49,53,93,44,91,45,55,54,46,53,49,50,52,50,49,44,52,48,46,57,52,54,49,48,50,93,44,91,45,55,54,46,54,49,56,57,55,49,44,52,49,46,48,54,51,55,53,57,93,44,91,45,55,54,46,54,52,48,55,54,55,44,52,49,46,49,53,53,55,49,56,93,44,91,45,55,54,46,55,51,50,54,55,50,44,52,49,46,49,55,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,81,117,101,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,57,56,53,49,51,44,34,98,101,100,115,34,58,51,50,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,48,51,54,50,57,51,44,52,48,46,53,53,49,48,52,50,93,44,91,45,55,52,46,48,52,50,49,49,50,44,52,48,46,53,48,57,50,57,57,93,44,91,45,55,51,46,56,56,54,54,53,50,44,52,48,46,52,56,57,55,57,52,93,44,91,45,55,51,46,55,54,56,55,56,49,44,52,48,46,53,51,51,55,52,55,93,44,91,45,55,51,46,55,48,49,54,51,51,44,52,48,46,55,53,50,52,57,51,93,44,91,45,55,51,46,55,55,56,57,53,56,44,52,48,46,56,49,49,55,49,51,93,44,91,45,55,51,46,57,49,50,52,53,54,44,52,48,46,55,57,54,48,57,54,93,44,91,45,55,51,46,57,54,50,52,55,56,44,52,48,46,55,51,54,56,48,50,93,44,91,45,55,51,46,56,51,51,48,52,49,44,52,48,46,54,50,56,50,54,49,93,44,91,45,55,51,46,56,55,57,50,50,50,44,52,48,46,53,55,52,54,53,54,93,44,91,45,55,52,46,48,51,54,50,57,51,44,52,48,46,53,53,49,48,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,83,117,119,97,110,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,52,55,50,53,51,44,51,48,46,50,54,48,54,55,93,44,91,45,56,51,46,50,50,54,51,54,44,51,48,46,49,49,52,54,50,49,93,44,91,45,56,51,46,49,54,50,52,53,55,44,51,48,46,49,49,48,48,50,50,93,44,91,45,56,50,46,57,54,51,49,49,50,44,50,57,46,57,57,51,48,53,93,44,91,45,56,50,46,56,55,57,56,48,50,44,50,57,46,56,56,54,56,52,55,93,44,91,45,56,50,46,56,48,48,52,55,55,44,50,57,46,57,51,50,49,50,54,93,44,91,45,56,50,46,55,57,52,53,57,52,44,51,48,46,51,51,55,48,50,52,93,44,91,45,56,50,46,57,53,53,57,44,51,48,46,52,49,51,52,56,54,93,44,91,45,56,51,46,48,55,56,55,48,54,44,51,48,46,52,51,56,49,49,54,93,44,91,45,56,51,46,49,55,48,57,54,57,44,51,48,46,51,56,53,50,50,53,93,44,91,45,56,51,46,50,52,55,50,53,51,44,51,48,46,50,54,48,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,104,101,98,111,121,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,52,53,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,51,50,53,57,53,44,52,53,46,56,49,48,51,51,93,44,91,45,56,52,46,55,51,50,54,56,55,44,52,53,46,50,56,57,51,56,50,93,44,91,45,56,52,46,55,51,52,51,48,51,44,52,53,46,50,48,49,57,51,54,93,44,91,45,56,52,46,51,54,54,54,49,52,44,52,53,46,49,57,56,55,51,55,93,44,91,45,56,52,46,50,52,54,54,51,52,44,52,53,46,49,57,56,55,50,55,93,44,91,45,56,52,46,50,53,50,48,50,44,52,53,46,54,50,53,57,57,56,93,44,91,45,56,52,46,50,48,49,48,54,50,44,52,53,46,55,53,50,50,55,53,93,44,91,45,56,52,46,52,53,50,54,51,52,44,52,53,46,54,57,53,51,55,93,44,91,45,56,52,46,55,51,50,53,57,53,44,52,53,46,56,49,48,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,108,97,100,119,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,56,48,51,57,44,52,52,46,49,54,48,53,51,56,93,44,91,45,56,52,46,54,48,56,49,48,52,44,52,52,46,49,54,48,52,56,50,93,44,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,44,91,45,56,52,46,49,54,55,51,49,56,44,52,51,46,56,50,53,57,48,50,93,44,91,45,56,52,46,49,54,54,51,55,55,44,52,51,46,57,57,54,57,48,49,93,44,91,45,56,52,46,49,54,54,49,48,55,44,52,52,46,49,54,49,55,56,56,93,44,91,45,56,52,46,51,54,56,48,51,57,44,52,52,46,49,54,48,53,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,55,53,57,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,56,48,53,50,55,44,51,56,46,49,49,53,49,49,56,93,44,91,45,56,51,46,57,54,54,51,49,44,51,55,46,57,51,48,55,54,56,93,44,91,45,56,51,46,55,54,56,55,56,51,44,51,55,46,57,49,56,51,55,49,93,44,91,45,56,51,46,55,53,57,52,51,44,51,55,46,57,57,56,55,51,49,93,44,91,45,56,51,46,56,56,49,51,53,51,44,51,56,46,49,51,54,53,49,55,93,44,91,45,56,51,46,57,55,55,57,50,52,44,51,56,46,49,57,50,49,49,56,93,44,91,45,56,52,46,48,56,48,53,50,55,44,51,56,46,49,49,53,49,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,76,97,110,99,97,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,53,52,54,44,34,98,101,100,115,34,58,50,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,57,56,50,49,53,44,51,52,46,56,50,48,55,52,54,93,44,91,45,56,48,46,56,54,48,50,55,52,44,51,52,46,54,57,53,56,52,55,93,44,91,45,56,48,46,56,55,55,52,57,49,44,51,52,46,53,52,51,49,52,54,93,44,91,45,56,48,46,56,55,57,50,50,55,44,51,52,46,52,53,55,55,55,54,93,44,91,45,56,48,46,55,52,51,51,52,53,44,51,52,46,53,51,57,57,49,54,93,44,91,45,56,48,46,54,53,56,52,49,55,44,51,52,46,52,55,56,54,49,50,93,44,91,45,56,48,46,53,53,48,53,53,50,44,51,52,46,53,54,48,49,49,54,93,44,91,45,56,48,46,52,48,56,51,55,51,44,51,52,46,54,49,52,55,54,53,93,44,91,45,56,48,46,53,54,49,55,49,44,51,52,46,56,49,55,52,50,57,93,44,91,45,56,48,46,55,57,55,52,56,52,44,51,52,46,56,49,57,56,48,51,93,44,91,45,56,48,46,55,56,49,57,50,49,44,51,52,46,57,51,53,56,52,56,93,44,91,45,56,48,46,56,52,48,50,55,56,44,51,53,46,48,48,49,54,57,50,93,44,91,45,56,48,46,57,48,54,51,56,53,44,51,53,46,48,55,54,50,55,55,93,44,91,45,56,48,46,56,54,56,54,53,50,44,51,52,46,57,53,49,49,52,51,93,44,91,45,56,48,46,56,57,56,50,49,53,44,51,52,46,56,50,48,55,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,76,97,114,117,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,56,48,52,56,56,44,51,55,46,55,51,50,50,56,52,93,44,91,45,56,53,46,56,55,54,48,48,54,44,51,55,46,53,52,51,50,53,57,93,44,91,45,56,53,46,56,57,50,56,48,52,44,51,55,46,52,52,48,51,48,56,93,44,91,45,56,53,46,54,53,55,51,51,50,44,51,55,46,52,50,49,57,57,54,93,44,91,45,56,53,46,53,56,51,52,57,55,44,51,55,46,52,54,57,57,49,55,93,44,91,45,56,53,46,52,54,54,50,53,44,51,55,46,52,54,53,53,57,53,93,44,91,45,56,53,46,53,50,49,50,57,44,51,55,46,53,53,52,51,52,51,93,44,91,45,56,53,46,54,49,56,48,55,49,44,51,55,46,53,52,48,54,49,49,93,44,91,45,56,53,46,53,57,50,48,56,56,44,51,55,46,54,57,51,52,55,57,93,44,91,45,56,53,46,54,56,48,52,56,56,44,51,55,46,55,51,50,50,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,87,111,111,100,98,117,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,51,57,56,44,34,98,101,100,115,34,58,56,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,52,53,52,56,51,44,52,50,46,52,57,48,54,51,93,44,91,45,57,54,46,51,56,48,55,48,53,44,52,50,46,52,52,54,51,57,51,93,44,91,45,57,54,46,52,48,55,57,57,56,44,52,50,46,51,51,55,52,48,56,93,44,91,45,57,54,46,51,53,54,51,57,53,44,52,50,46,50,55,54,52,57,52,93,44,91,45,57,54,46,51,53,54,53,54,44,52,50,46,50,49,53,48,48,50,93,44,91,45,57,53,46,54,55,48,56,50,50,44,52,50,46,50,49,49,52,48,56,93,44,91,45,57,53,46,54,54,57,50,54,53,44,52,50,46,52,55,52,54,52,53,93,44,91,45,57,53,46,55,52,49,54,49,49,44,52,50,46,53,54,49,50,56,53,93,44,91,45,57,53,46,56,53,57,57,52,57,44,52,50,46,53,54,48,54,50,93,44,91,45,57,54,46,52,57,56,55,55,54,44,52,50,46,53,54,49,48,52,51,93,44,91,45,57,54,46,52,52,53,52,56,51,44,52,50,46,52,57,48,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,57,56,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,57,57,56,56,51,44,51,48,46,48,49,50,50,50,53,93,44,91,45,56,51,46,54,52,55,51,49,49,44,50,57,46,55,57,55,49,51,57,93,44,91,45,56,51,46,54,48,57,51,48,56,44,50,57,46,54,57,56,52,49,54,93,44,91,45,56,51,46,52,56,49,50,54,52,44,50,57,46,54,51,48,51,50,57,93,44,91,45,56,51,46,51,54,54,51,57,56,44,50,57,46,54,54,53,55,48,49,93,44,91,45,56,51,46,51,49,56,56,53,57,44,50,57,46,56,50,50,54,50,51,93,44,91,45,56,51,46,51,55,48,56,57,44,50,57,46,56,56,55,57,51,52,93,44,91,45,56,51,46,51,54,55,50,54,44,51,48,46,50,54,48,52,52,93,44,91,45,56,51,46,52,54,56,55,54,56,44,51,48,46,51,48,52,50,49,50,93,44,91,45,56,51,46,56,50,48,50,51,53,44,51,48,46,51,48,51,53,52,93,44,91,45,56,51,46,57,49,53,51,54,57,44,51,48,46,50,52,52,55,55,57,93,44,91,45,56,51,46,57,57,57,56,56,51,44,51,48,46,48,49,50,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,101,120,97,110,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,55,50,48,56,49,44,51,55,46,48,54,56,51,49,93,44,91,45,56,57,46,50,55,51,54,51,49,44,51,55,46,49,50,54,57,54,56,93,44,91,45,56,57,46,50,52,56,53,54,54,44,51,55,46,51,51,53,50,57,56,93,44,91,45,56,57,46,52,56,54,54,56,57,44,51,55,46,51,51,52,53,53,52,93,44,91,45,56,57,46,52,56,56,55,50,44,51,55,46,50,53,49,52,53,55,93,44,91,45,56,57,46,51,55,54,54,51,50,44,51,55,46,48,51,56,52,56,50,93,44,91,45,56,57,46,51,49,50,55,48,52,44,51,55,46,48,48,56,57,55,49,93,44,91,45,56,57,46,50,53,57,57,51,53,44,51,55,46,48,54,52,48,55,93,44,91,45,56,57,46,49,51,50,57,49,53,44,51,54,46,57,56,50,48,53,55,93,44,91,45,56,57,46,49,55,50,48,56,49,44,51,55,46,48,54,56,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,51,48,50,44,34,98,101,100,115,34,58,51,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,51,54,51,49,49,44,51,56,46,52,54,54,54,52,51,93,44,91,45,57,48,46,55,56,48,49,56,53,44,51,56,46,50,48,52,49,49,50,93,44,91,45,57,48,46,54,51,57,57,56,44,51,56,46,48,55,54,53,52,56,93,44,91,45,57,48,46,53,56,51,51,50,52,44,51,56,46,48,48,51,52,57,57,93,44,91,45,57,48,46,52,49,54,48,50,50,44,51,56,46,48,52,50,51,49,53,93,44,91,45,57,48,46,50,53,50,54,54,54,44,51,56,46,49,50,55,56,49,50,93,44,91,45,57,48,46,51,53,56,54,50,56,44,51,56,46,50,50,49,57,56,49,93,44,91,45,57,48,46,51,52,49,52,52,54,44,51,56,46,51,56,56,50,57,56,93,44,91,45,57,48,46,52,49,50,53,49,57,44,51,56,46,53,48,48,56,53,51,93,44,91,45,57,48,46,53,57,49,49,50,51,44,51,56,46,53,48,49,54,53,50,93,44,91,45,57,48,46,55,51,54,51,49,49,44,51,56,46,52,54,54,54,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,53,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,50,49,56,51,53,44,51,57,46,50,50,52,49,48,56,93,44,91,45,57,49,46,49,56,50,57,52,50,44,51,57,46,50,50,55,50,51,51,93,44,91,45,57,49,46,50,54,48,50,51,50,44,51,57,46,49,51,57,56,52,53,93,44,91,45,57,49,46,50,54,52,50,56,55,44,51,56,46,57,57,50,55,54,50,93,44,91,45,57,49,46,49,49,49,50,53,49,44,51,56,46,56,55,50,55,48,57,93,44,91,45,57,48,46,57,53,56,53,51,54,44,51,56,46,56,55,48,56,54,53,93,44,91,45,57,48,46,56,50,50,55,50,52,44,51,56,46,56,55,54,51,57,50,93,44,91,45,57,48,46,54,54,51,49,56,49,44,51,56,46,57,51,52,50,50,52,93,44,91,45,57,48,46,55,50,49,56,51,53,44,51,57,46,50,50,52,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,67,104,97,116,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,55,48,52,57,44,34,98,101,100,115,34,58,49,54,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,52,52,53,55,50,44,51,50,46,50,50,54,49,50,56,93,44,91,45,56,49,46,49,57,53,54,51,52,44,51,50,46,50,51,55,52,57,57,93,44,91,45,56,49,46,51,57,49,54,57,56,44,51,50,46,48,57,53,56,56,54,93,44,91,45,56,49,46,50,49,50,51,48,57,44,51,49,46,57,49,56,51,53,56,93,44,91,45,56,49,46,49,53,52,55,51,49,44,51,49,46,55,49,51,48,55,93,44,91,45,56,49,46,48,53,49,53,50,49,44,51,49,46,55,48,53,49,57,56,93,44,91,45,56,48,46,55,56,50,57,54,44,51,49,46,57,57,53,57,53,52,93,44,91,45,56,49,46,48,48,52,51,48,53,44,51,50,46,49,48,50,51,54,55,93,44,91,45,56,49,46,49,49,55,50,50,53,44,51,50,46,49,49,55,54,48,52,93,44,91,45,56,49,46,49,52,52,53,55,50,44,51,50,46,50,50,54,49,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,51,57,44,34,98,101,100,115,34,58,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,52,50,53,55,56,44,51,48,46,49,52,51,49,49,55,93,44,91,45,56,50,46,52,53,56,51,54,52,44,51,48,46,49,51,54,52,52,57,93,44,91,45,56,50,46,53,54,57,50,56,44,50,57,46,57,55,52,57,56,93,44,91,45,56,50,46,53,50,57,55,48,53,44,50,57,46,57,52,48,56,56,49,93,44,91,45,56,50,46,52,49,56,55,50,56,44,50,57,46,57,50,51,48,57,51,93,44,91,45,56,50,46,51,49,51,51,56,53,44,50,57,46,57,53,52,55,48,52,93,44,91,45,56,50,46,49,52,50,53,55,56,44,51,48,46,49,52,51,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,71,101,110,101,115,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,49,49,50,44,34,98,101,100,115,34,58,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,54,52,52,52,57,44,52,51,46,48,56,56,55,48,51,93,44,91,45,55,56,46,52,54,52,51,56,49,44,52,50,46,56,54,55,52,54,49,93,44,91,45,55,55,46,57,53,52,57,54,52,44,52,50,46,56,54,50,55,53,52,93,44,91,45,55,55,46,57,48,57,56,51,50,44,52,50,46,57,56,55,55,54,50,93,44,91,45,55,55,46,57,57,55,50,57,44,52,51,46,49,51,50,57,56,49,93,44,91,45,55,56,46,52,54,53,53,48,53,44,52,51,46,49,50,56,54,49,57,93,44,91,45,55,56,46,52,54,52,52,52,57,44,52,51,46,48,56,56,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,49,51,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,44,91,45,57,53,46,51,56,56,48,55,56,44,52,51,46,50,53,53,50,50,49,93,44,91,45,57,53,46,51,56,56,49,56,50,44,52,50,46,57,48,57,56,57,55,93,44,91,45,57,52,46,57,49,51,56,57,44,52,50,46,57,48,57,55,93,44,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,70,97,108,108,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,56,56,53,52,57,53,44,52,54,46,49,51,54,53,57,53,93,44,91,45,49,48,52,46,53,49,54,49,50,54,44,52,54,46,49,51,54,49,57,54,93,44,91,45,49,48,52,46,51,57,48,55,52,52,44,52,54,46,48,53,52,56,50,54,93,44,91,45,49,48,52,46,51,57,48,56,55,54,44,52,53,46,57,55,48,51,54,51,93,44,91,45,49,48,52,46,49,51,52,56,52,50,44,52,53,46,57,54,56,56,51,51,93,44,91,45,49,48,52,46,48,52,52,49,57,52,44,52,53,46,56,56,49,57,55,53,93,44,91,45,49,48,52,46,48,52,53,53,52,55,44,52,53,46,57,52,53,51,48,56,93,44,91,45,49,48,52,46,48,52,53,53,53,57,44,52,54,46,50,56,48,48,56,49,93,44,91,45,49,48,52,46,48,52,53,50,49,49,44,52,54,46,53,52,48,56,54,49,93,44,91,45,49,48,52,46,48,52,53,50,51,52,44,52,54,46,54,52,49,53,48,52,93,44,91,45,49,48,52,46,51,53,52,56,51,53,44,52,54,46,54,52,49,52,48,57,93,44,91,45,49,48,52,46,52,49,55,57,57,56,44,52,54,46,54,56,52,56,57,50,93,44,91,45,49,48,52,46,54,48,54,57,48,51,44,52,54,46,54,56,52,57,50,52,93,44,91,45,49,48,52,46,55,51,51,48,53,57,44,52,54,46,54,49,50,54,57,53,93,44,91,45,49,48,52,46,55,51,50,54,55,50,44,52,54,46,52,56,50,50,48,50,93,44,91,45,49,48,52,46,57,48,53,57,56,56,44,52,54,46,52,56,50,50,53,49,93,44,91,45,49,48,52,46,56,56,53,52,57,53,44,52,54,46,49,51,54,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,80,111,116,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,54,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,55,48,56,57,56,55,44,52,53,46,50,52,53,56,54,54,93,44,91,45,49,48,48,46,50,54,48,50,50,51,44,52,53,46,50,52,54,56,49,93,44,91,45,49,48,48,46,51,50,53,52,53,49,44,52,53,46,48,57,57,51,51,55,93,44,91,45,49,48,48,46,52,50,51,57,49,56,44,52,52,46,57,57,48,48,48,54,93,44,91,45,49,48,48,46,52,48,52,55,53,51,44,52,52,46,56,57,55,54,57,53,93,44,91,45,57,57,46,54,55,52,50,53,50,44,52,52,46,56,57,55,53,48,51,93,44,91,45,57,57,46,53,55,50,54,57,57,44,52,52,46,56,57,55,50,54,51,93,44,91,45,57,57,46,53,55,51,51,51,44,52,53,46,50,52,53,51,54,52,93,44,91,45,57,57,46,55,48,56,57,56,55,44,52,53,46,50,52,53,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,67,117,108,98,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,49,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,49,56,51,53,55,44,51,50,46,48,48,48,52,49,56,93,44,91,45,49,48,52,46,57,48,57,49,50,52,44,51,49,46,50,52,54,54,48,57,93,44,91,45,49,48,52,46,57,49,55,49,54,51,44,51,48,46,54,54,51,54,50,54,93,44,91,45,49,48,52,46,49,48,50,51,53,49,44,51,49,46,49,48,53,50,48,51,93,44,91,45,49,48,52,46,48,50,52,53,49,50,44,51,50,46,48,48,48,49,48,50,93,44,91,45,49,48,52,46,56,52,55,55,52,44,51,50,46,48,48,48,52,49,53,93,44,91,45,49,48,52,46,57,49,56,51,53,55,44,51,50,46,48,48,48,52,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,57,52,52,44,34,98,101,100,115,34,58,49,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,55,56,50,57,56,52,44,52,51,46,56,49,52,49,52,55,93,44,91,45,55,48,46,54,53,57,51,54,57,44,52,51,46,55,57,48,51,56,54,93,44,91,45,55,48,46,53,52,57,57,54,53,44,52,51,46,55,49,53,55,57,54,93,44,91,45,55,48,46,52,57,50,48,48,57,44,52,51,46,54,48,54,55,54,57,93,44,91,45,55,48,46,50,50,50,48,57,44,52,51,46,52,54,54,56,55,56,93,44,91,45,55,48,46,49,53,53,57,56,54,44,52,51,46,53,50,52,52,52,52,93,44,91,45,54,57,46,56,56,49,56,57,53,44,52,51,46,54,51,54,52,54,54,93,44,91,45,54,57,46,56,57,51,50,51,50,44,52,51,46,56,55,56,53,49,56,93,44,91,45,55,48,46,48,51,52,50,51,56,44,52,51,46,57,55,53,54,54,49,93,44,91,45,55,48,46,49,49,53,56,54,44,52,51,46,57,48,54,55,49,93,44,91,45,55,48,46,51,49,53,51,55,52,44,52,52,46,48,51,55,56,48,55,93,44,91,45,55,48,46,52,56,48,48,55,56,44,52,52,46,48,51,50,48,55,56,93,44,91,45,55,48,46,54,48,51,55,56,52,44,52,52,46,48,52,49,53,51,54,93,44,91,45,55,48,46,54,50,52,51,50,57,44,52,52,46,49,55,49,48,51,54,93,44,91,45,55,48,46,56,50,49,56,48,51,44,52,52,46,48,55,55,48,56,57,93,44,91,45,55,48,46,55,49,53,52,49,56,44,52,51,46,57,54,49,56,49,53,93,44,91,45,55,48,46,55,56,50,57,56,52,44,52,51,46,56,49,52,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,65,116,97,115,99,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,56,50,56,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,52,57,44,50,57,46,48,57,48,52,51,52,93,44,91,45,57,56,46,56,48,48,56,52,49,44,50,56,46,54,52,55,52,56,55,93,44,91,45,57,56,46,56,48,48,56,52,56,44,50,56,46,54,52,55,51,48,54,93,44,91,45,57,56,46,51,51,53,48,52,55,44,50,56,46,54,52,56,50,55,53,93,44,91,45,57,56,46,51,51,53,48,51,49,44,50,56,46,54,49,50,54,53,56,93,44,91,45,57,56,46,48,57,56,51,49,53,44,50,56,46,55,56,54,57,52,57,93,44,91,45,57,56,46,49,57,48,57,57,49,44,50,56,46,56,56,50,51,51,51,93,44,91,45,57,56,46,52,48,55,51,51,54,44,50,57,46,49,49,52,52,51,53,93,44,91,45,57,56,46,56,48,52,55,54,51,44,50,57,46,50,53,48,54,57,51,93,44,91,45,57,56,46,56,48,52,57,44,50,57,46,48,57,48,52,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,75,105,110,103,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,55,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,54,52,56,48,52,44,51,55,46,55,51,50,54,55,53,93,44,91,45,57,56,46,52,54,52,54,54,51,44,51,55,46,52,55,49,48,49,51,93,44,91,45,57,56,46,52,54,52,57,53,49,44,51,55,46,51,56,52,48,56,54,93,44,91,45,57,56,46,51,52,57,56,48,52,44,51,55,46,51,56,52,48,53,54,93,44,91,45,57,55,46,56,48,55,48,53,55,44,51,55,46,51,56,54,50,57,51,93,44,91,45,57,55,46,56,48,55,54,44,51,55,46,52,55,52,49,56,52,93,44,91,45,57,55,46,56,48,55,56,50,51,44,51,55,46,55,51,51,56,53,53,93,44,91,45,57,56,46,52,54,52,56,48,52,44,51,55,46,55,51,50,54,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,49,34,44,34,78,65,77,69,34,58,34,82,97,98,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,53,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,56,50,57,52,57,44,51,52,46,57,57,51,51,48,49,93,44,91,45,56,51,46,53,52,57,51,55,54,44,51,52,46,57,57,50,51,57,51,93,44,91,45,56,51,46,54,53,54,50,57,55,44,51,52,46,56,55,56,56,50,51,93,44,91,45,56,51,46,54,53,50,49,57,52,44,51,52,46,56,50,50,57,57,51,93,44,91,45,56,51,46,53,52,56,57,56,56,44,51,52,46,55,52,57,52,53,49,93,44,91,45,56,51,46,51,53,50,52,52,56,44,51,52,46,55,49,54,49,50,53,93,44,91,45,56,51,46,51,50,52,49,53,44,51,52,46,55,56,55,52,55,57,93,44,91,45,56,51,46,49,50,55,51,53,55,44,51,52,46,57,53,48,49,57,53,93,44,91,45,56,51,46,49,48,56,54,49,51,44,51,53,46,48,48,48,54,53,57,93,44,91,45,56,51,46,52,56,50,57,52,57,44,51,52,46,57,57,51,51,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,85,112,115,104,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,54,48,53,44,34,98,101,100,115,34,58,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,51,48,48,50,48,57,44,51,57,46,49,48,51,56,53,55,93,44,91,45,56,48,46,51,49,57,51,52,54,44,51,56,46,57,54,48,57,49,57,93,44,91,45,56,48,46,51,56,54,57,56,57,44,51,56,46,56,55,52,56,48,56,93,44,91,45,56,48,46,51,57,51,48,54,51,44,51,56,46,55,50,55,53,55,49,93,44,91,45,56,48,46,50,56,48,48,53,57,44,51,56,46,54,57,52,56,54,55,93,44,91,45,56,48,46,49,50,54,49,48,53,44,51,56,46,55,52,53,56,51,54,93,44,91,45,56,48,46,48,56,53,48,54,50,44,51,56,46,57,52,55,50,51,54,93,44,91,45,56,48,46,48,52,52,54,57,53,44,51,57,46,48,49,48,49,56,54,93,44,91,45,56,48,46,50,50,55,49,55,51,44,51,57,46,49,49,50,55,57,50,93,44,91,45,56,48,46,51,48,48,50,48,57,44,51,57,46,49,48,51,56,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,53,34,44,34,78,65,77,69,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,55,49,44,34,98,101,100,115,34,58,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,50,57,50,53,56,44,51,55,46,54,48,50,53,52,50,93,44,91,45,57,50,46,50,52,57,52,54,51,44,51,55,46,54,48,52,53,52,51,93,44,91,45,57,50,46,50,53,50,50,54,49,44,51,55,46,52,55,50,57,52,52,93,44,91,45,57,50,46,50,53,49,51,53,57,44,51,55,46,48,53,57,54,53,51,93,44,91,45,57,50,46,48,56,56,55,48,56,44,51,55,46,48,53,54,50,52,56,93,44,91,45,57,49,46,54,53,53,54,48,55,44,51,55,46,48,52,56,57,50,53,93,44,91,45,57,49,46,54,52,54,54,50,54,44,51,55,46,52,50,50,55,51,49,93,44,91,45,57,49,46,55,53,53,48,52,44,51,55,46,52,50,52,49,49,93,44,91,45,57,49,46,56,48,57,49,48,53,44,51,55,46,53,57,56,56,54,51,93,44,91,45,57,50,46,48,50,57,50,53,56,44,51,55,46,54,48,50,53,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,51,52,54,51,44,34,98,101,100,115,34,58,52,51,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,48,56,48,52,49,44,51,52,46,52,57,50,55,54,53,93,44,91,45,57,50,46,48,50,57,57,57,54,44,51,52,46,52,56,57,51,53,50,93,44,91,45,57,50,46,48,50,57,53,51,57,44,51,52,46,54,50,49,50,52,56,93,44,91,45,57,50,46,48,55,56,55,49,49,44,51,52,46,55,50,57,57,56,51,93,44,91,45,57,50,46,48,55,48,56,48,53,44,51,53,46,48,49,49,56,48,50,93,44,91,45,57,50,46,49,50,49,51,51,54,44,51,53,46,48,49,50,50,49,93,44,91,45,57,50,46,50,50,57,56,57,51,44,51,52,46,57,50,55,53,53,56,93,44,91,45,57,50,46,53,52,52,51,52,49,44,51,52,46,57,53,51,51,49,57,93,44,91,45,57,50,46,55,53,51,54,50,54,44,51,52,46,57,49,49,50,52,56,93,44,91,45,57,50,46,55,51,57,55,55,57,44,51,52,46,56,53,51,52,53,57,93,44,91,45,57,50,46,54,53,52,51,50,52,44,51,52,46,55,54,52,53,52,49,93,44,91,45,57,50,46,51,52,56,55,52,57,44,51,52,46,53,56,50,50,57,93,44,91,45,57,50,46,50,52,53,56,49,56,44,51,52,46,52,57,51,53,48,54,93,44,91,45,57,50,46,50,48,56,48,52,49,44,51,52,46,52,57,50,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,54,55,48,56,50,50,44,52,50,46,50,49,49,52,48,56,93,44,91,45,57,53,46,54,55,50,55,55,49,44,52,49,46,56,54,51,49,52,55,93,44,91,45,57,53,46,53,53,55,50,55,55,44,52,49,46,56,54,51,52,52,57,93,44,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,44,91,45,57,53,46,48,57,48,56,53,49,44,52,50,46,50,49,48,52,48,53,93,44,91,45,57,53,46,51,50,51,52,57,55,44,52,50,46,50,49,48,57,51,50,93,44,91,45,57,53,46,54,55,48,56,50,50,44,52,50,46,50,49,49,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,110,110,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,48,54,53,44,34,98,101,100,115,34,58,50,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,55,53,48,53,54,50,44,52,50,46,57,53,49,53,50,56,93,44,91,45,49,49,50,46,53,55,57,50,56,55,44,52,50,46,57,55,50,52,53,49,93,44,91,45,49,49,50,46,53,49,53,53,49,57,44,52,50,46,57,48,57,57,55,53,93,44,91,45,49,49,50,46,52,57,54,57,49,44,52,50,46,55,51,51,48,49,51,93,44,91,45,49,49,50,46,51,56,57,52,49,56,44,52,50,46,54,50,52,51,56,50,93,44,91,45,49,49,50,46,52,49,57,56,50,53,44,52,50,46,53,48,51,48,51,56,93,44,91,45,49,49,50,46,49,50,54,49,57,52,44,52,50,46,50,56,53,50,50,57,93,44,91,45,49,49,49,46,56,57,54,55,50,56,44,52,50,46,50,53,54,50,55,54,93,44,91,45,49,49,49,46,56,55,53,54,51,54,44,52,50,46,52,49,54,49,53,56,93,44,91,45,49,49,49,46,57,49,54,57,50,55,44,52,50,46,54,49,55,50,54,52,93,44,91,45,49,49,49,46,57,55,51,51,55,51,44,52,50,46,55,49,53,52,55,50,93,44,91,45,49,49,50,46,49,48,53,56,56,44,52,50,46,54,57,57,50,48,51,93,44,91,45,49,49,50,46,49,52,53,48,56,57,44,52,50,46,55,57,48,54,54,52,93,44,91,45,49,49,50,46,49,50,55,52,50,52,44,52,50,46,57,52,52,52,57,56,93,44,91,45,49,49,50,46,48,54,51,48,50,51,44,52,51,46,48,50,50,51,54,52,93,44,91,45,49,49,50,46,54,53,54,53,53,50,44,52,51,46,48,50,49,57,52,52,93,44,91,45,49,49,50,46,55,53,48,53,54,50,44,52,50,46,57,53,49,53,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,101,97,117,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,57,54,49,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,48,51,54,51,49,44,52,49,46,55,49,53,49,51,55,93,44,91,45,56,49,46,49,48,49,52,50,50,44,52,49,46,54,52,49,52,53,55,93,44,91,45,56,49,46,50,57,52,54,54,57,44,52,49,46,54,52,48,56,56,57,93,44,91,45,56,49,46,51,57,49,48,48,53,44,52,49,46,53,54,57,55,49,54,93,44,91,45,56,49,46,51,57,49,54,57,52,44,52,49,46,51,52,56,50,55,50,93,44,91,45,56,49,46,48,48,51,51,49,57,44,52,49,46,51,52,55,56,54,93,44,91,45,56,49,46,48,48,51,49,50,53,44,52,49,46,53,48,49,54,56,53,93,44,91,45,56,49,46,48,48,51,54,51,49,44,52,49,46,55,49,53,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,97,121,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,53,51,48,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,57,53,48,57,57,44,49,56,46,49,54,57,48,55,55,93,44,91,45,54,54,46,50,49,54,56,57,57,44,49,56,46,49,52,51,50,50,93,44,91,45,54,54,46,50,50,52,52,57,44,49,56,46,48,57,53,51,51,57,93,44,91,45,54,54,46,49,54,54,49,52,53,44,49,56,46,48,53,48,48,54,51,93,44,91,45,54,54,46,48,53,51,49,52,54,44,49,56,46,49,48,55,50,57,51,93,44,91,45,54,54,46,48,53,49,55,56,56,44,49,56,46,49,48,57,56,55,56,93,44,91,45,54,54,46,48,53,50,53,53,53,44,49,56,46,49,49,51,48,54,57,93,44,91,45,54,54,46,48,57,53,48,57,57,44,49,56,46,49,54,57,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,84,117,108,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,48,52,55,55,44,34,98,101,100,115,34,58,55,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,53,51,56,49,49,54,44,51,53,46,55,56,57,53,54,55,93,44,91,45,49,49,56,46,54,50,57,57,55,53,44,51,53,46,55,56,57,53,56,93,44,91,45,49,49,56,46,48,48,56,48,52,51,44,51,53,46,55,56,57,49,54,49,93,44,91,45,49,49,55,46,57,56,50,52,55,51,44,51,53,46,56,57,53,55,57,54,93,44,91,45,49,49,56,46,49,50,55,54,48,49,44,51,54,46,50,56,48,51,52,56,93,44,91,45,49,49,56,46,49,48,48,49,49,54,44,51,54,46,51,50,56,56,50,51,93,44,91,45,49,49,56,46,50,52,56,57,50,44,51,54,46,52,56,54,53,51,53,93,44,91,45,49,49,56,46,51,54,48,53,56,54,44,51,54,46,55,52,52,55,55,51,93,44,91,45,49,49,56,46,57,56,50,52,52,49,44,51,54,46,55,52,49,54,52,54,93,44,91,45,49,49,56,46,57,56,52,55,55,57,44,51,54,46,54,53,55,49,52,55,93,44,91,45,49,49,57,46,51,48,52,54,50,53,44,51,54,46,54,54,48,54,48,54,93,44,91,45,49,49,57,46,51,48,53,49,48,50,44,51,54,46,53,55,51,55,50,53,93,44,91,45,49,49,57,46,52,54,54,51,50,50,44,51,54,46,53,55,53,50,51,56,93,44,91,45,49,49,57,46,53,55,51,49,57,52,44,51,54,46,52,56,56,56,51,53,93,44,91,45,49,49,57,46,52,55,52,56,57,50,44,51,54,46,52,48,48,57,53,51,93,44,91,45,49,49,57,46,53,50,57,51,53,56,44,51,54,46,50,54,57,56,53,93,44,91,45,49,49,57,46,53,51,56,49,49,54,44,51,53,46,55,56,57,53,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,65,114,114,111,121,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,56,50,50,54,51,44,49,56,46,48,51,50,57,53,56,93,44,91,45,54,54,46,48,54,52,53,48,51,44,49,55,46,57,48,52,56,50,53,93,44,91,45,54,53,46,57,56,55,53,53,49,44,49,55,46,57,48,56,57,50,51,93,44,91,45,54,54,46,48,56,50,50,54,51,44,49,56,46,48,51,50,57,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,83,97,110,32,71,101,114,109,195,161,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,49,49,52,44,34,98,101,100,115,34,58,50,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,48,56,54,51,53,57,44,49,56,46,49,52,57,56,50,57,93,44,91,45,54,55,46,49,48,48,52,57,50,44,49,56,46,49,48,54,51,57,53,93,44,91,45,54,55,46,49,48,57,48,52,52,44,49,56,46,48,53,54,48,56,53,93,44,91,45,54,54,46,57,56,51,51,51,55,44,49,56,46,48,53,50,53,49,56,93,44,91,45,54,54,46,57,55,55,56,53,53,44,49,56,46,49,52,51,55,57,57,93,44,91,45,54,55,46,48,53,49,52,54,49,44,49,56,46,49,55,52,48,53,51,93,44,91,45,54,55,46,48,56,54,51,53,57,44,49,56,46,49,52,57,56,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,56,53,54,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,56,55,57,57,53,44,52,51,46,54,51,49,53,52,51,93,44,91,45,55,55,46,51,55,49,52,55,56,44,52,51,46,48,51,52,54,57,54,93,44,91,45,55,55,46,49,51,52,51,51,53,44,52,51,46,48,51,57,57,50,54,93,44,91,45,55,54,46,57,54,51,57,50,54,44,52,51,46,48,49,51,49,53,55,93,44,91,45,55,54,46,55,49,51,56,48,54,44,52,51,46,48,50,52,48,51,53,93,44,91,45,55,54,46,55,48,50,51,50,53,44,52,51,46,48,56,48,51,57,51,93,44,91,45,55,54,46,55,53,51,53,51,56,44,52,51,46,54,56,52,50,55,53,93,44,91,45,55,54,46,55,55,54,50,51,51,44,52,51,46,54,50,57,53,50,57,93,44,91,45,55,55,46,51,56,55,57,57,53,44,52,51,46,54,51,49,53,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,82,111,99,107,98,114,105,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,54,52,55,53,56,57,44,51,55,46,56,55,52,53,51,56,93,44,91,45,55,57,46,54,55,52,49,54,50,44,51,55,46,55,54,51,48,57,51,93,44,91,45,55,57,46,54,56,51,53,53,52,44,51,55,46,54,54,49,55,54,51,93,44,91,45,55,57,46,52,57,56,54,57,57,44,51,55,46,53,51,50,55,57,55,93,44,91,45,55,57,46,52,51,54,57,52,55,44,51,55,46,54,49,55,48,53,55,93,44,91,45,55,57,46,51,52,53,50,51,53,44,51,55,46,54,54,48,54,50,53,93,44,91,45,55,57,46,50,54,52,54,55,52,44,51,55,46,55,57,52,54,57,52,93,44,91,45,55,57,46,49,55,50,49,51,49,44,51,55,46,56,48,51,48,57,55,93,44,91,45,55,57,46,49,53,55,51,57,44,51,55,46,56,57,49,48,48,51,93,44,91,45,55,57,46,52,56,50,54,54,56,44,51,56,46,48,56,54,48,53,52,93,44,91,45,55,57,46,54,52,55,53,56,57,44,51,55,46,56,55,52,53,51,56,93,93,44,91,91,45,55,57,46,52,54,49,53,56,50,44,51,55,46,55,56,54,51,53,54,93,44,91,45,55,57,46,52,51,55,51,51,55,44,51,55,46,55,57,52,55,56,52,93,44,91,45,55,57,46,52,50,48,56,50,52,44,51,55,46,55,56,56,57,57,56,93,44,91,45,55,57,46,52,53,53,54,54,55,44,51,55,46,55,54,53,50,49,57,93,44,91,45,55,57,46,52,54,49,53,56,50,44,51,55,46,55,56,54,51,53,54,93,93,44,91,91,45,55,57,46,51,56,49,53,48,57,44,51,55,46,55,52,50,49,52,57,93,44,91,45,55,57,46,51,51,49,50,53,50,44,51,55,46,55,52,52,51,51,54,93,44,91,45,55,57,46,51,54,48,55,54,50,44,51,55,46,55,48,50,54,54,54,93,44,91,45,55,57,46,51,56,49,53,48,57,44,51,55,46,55,52,50,49,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,84,111,119,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,54,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,55,48,51,57,50,44,52,56,46,53,52,52,50,51,50,93,44,91,45,57,56,46,57,57,57,56,57,44,52,56,46,55,49,56,49,50,57,93,44,91,45,57,56,46,57,57,57,56,48,50,44,52,57,46,48,48,48,48,48,54,93,44,91,45,57,57,46,53,50,53,55,55,57,44,52,56,46,57,57,57,51,48,55,93,44,91,45,57,57,46,53,50,53,56,57,53,44,52,56,46,55,49,56,51,56,52,93,44,91,45,57,57,46,52,57,51,49,56,57,44,52,56,46,53,52,52,56,51,52,93,44,91,45,57,57,46,52,57,50,57,49,57,44,52,56,46,51,55,48,57,52,54,93,44,91,45,57,57,46,50,48,48,51,48,54,44,52,56,46,51,55,48,54,53,56,93,44,91,45,57,56,46,57,55,48,56,52,50,44,52,56,46,51,55,48,52,49,52,93,44,91,45,57,56,46,57,55,48,51,57,50,44,52,56,46,53,52,52,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,53,50,55,44,34,98,101,100,115,34,58,49,49,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,51,54,49,48,54,54,44,52,48,46,48,54,53,53,52,51,93,44,91,45,55,53,46,53,50,51,56,49,54,44,51,57,46,57,52,52,49,50,52,93,44,91,45,55,53,46,53,57,52,56,56,44,51,57,46,56,51,55,53,50,53,93,44,91,45,55,53,46,53,57,51,48,57,57,44,51,57,46,56,51,55,55,50,51,93,44,91,45,55,53,46,53,55,57,57,50,54,44,51,57,46,56,51,56,56,54,50,93,44,91,45,55,53,46,52,49,53,48,54,50,44,51,57,46,56,48,49,57,49,57,93,44,91,45,55,53,46,50,49,49,52,54,51,44,51,57,46,56,54,55,48,48,52,93,44,91,45,55,53,46,50,55,54,52,56,50,44,51,57,46,57,55,54,57,53,57,93,44,91,45,55,53,46,51,54,49,48,54,54,44,52,48,46,48,54,53,53,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,78,105,97,103,97,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,55,48,52,44,34,98,101,100,115,34,58,52,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,54,56,55,49,49,44,52,51,46,54,51,51,52,50,56,93,44,91,45,55,56,46,54,56,56,50,57,53,44,52,51,46,54,51,52,55,52,50,93,44,91,45,55,57,46,50,48,48,57,51,54,44,52,51,46,52,53,48,52,50,50,93,44,91,45,55,57,46,48,55,48,52,53,50,44,52,51,46,50,54,50,52,53,53,93,44,91,45,55,57,46,48,49,57,50,50,56,44,52,51,46,48,54,55,57,53,56,93,44,91,45,55,56,46,56,51,57,51,53,44,52,51,46,48,49,57,52,53,51,93,44,91,45,55,56,46,56,48,50,48,53,49,44,52,51,46,48,54,53,55,56,49,93,44,91,45,55,56,46,52,54,52,52,52,57,44,52,51,46,48,56,56,55,48,51,93,44,91,45,55,56,46,52,54,53,53,48,53,44,52,51,46,49,50,56,54,49,57,93,44,91,45,55,56,46,52,54,56,55,49,49,44,52,51,46,54,51,51,52,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,110,110,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,57,50,48,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,50,53,52,54,51,51,44,52,51,46,51,49,52,54,55,53,93,44,91,45,55,51,46,50,55,52,50,57,52,44,52,50,46,57,52,51,54,53,50,93,44,91,45,55,51,46,50,54,52,56,50,55,44,52,50,46,55,52,53,56,53,49,93,44,91,45,55,51,46,48,50,51,48,49,53,44,52,50,46,55,52,49,49,51,53,93,44,91,45,55,50,46,57,51,48,50,53,56,44,52,50,46,55,51,57,50,57,51,93,44,91,45,55,50,46,57,50,49,51,55,54,44,52,50,46,57,50,54,55,57,50,93,44,91,45,55,51,46,48,48,56,48,54,51,44,52,50,46,57,51,48,48,56,55,93,44,91,45,55,50,46,57,57,54,57,44,52,51,46,49,49,57,48,57,53,93,44,91,45,55,50,46,56,54,56,55,51,55,44,52,51,46,49,49,51,49,55,93,44,91,45,55,50,46,56,49,57,51,54,56,44,52,51,46,50,53,53,52,57,56,93,44,91,45,55,50,46,56,54,55,57,48,50,44,52,51,46,51,48,48,55,52,50,93,44,91,45,55,51,46,50,53,52,54,51,51,44,52,51,46,51,49,52,54,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,50,57,49,44,34,98,101,100,115,34,58,53,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,56,48,50,49,53,44,51,48,46,49,50,49,50,52,93,44,91,45,56,49,46,54,55,57,54,50,54,44,51,48,46,49,57,48,52,57,53,93,44,91,45,56,50,46,48,52,57,52,49,49,44,51,48,46,49,56,54,57,51,51,93,44,91,45,56,50,46,48,52,57,52,50,53,44,51,48,46,49,52,51,49,51,54,93,44,91,45,56,50,46,48,52,57,50,52,52,44,50,57,46,55,49,56,54,55,93,44,91,45,56,49,46,57,51,57,52,50,55,44,50,57,46,55,52,55,52,57,55,93,44,91,45,56,49,46,56,49,50,52,51,44,50,57,46,56,51,54,52,57,93,44,91,45,56,49,46,53,56,49,50,48,55,44,50,57,46,56,52,48,49,55,54,93,44,91,45,56,49,46,54,49,48,49,52,54,44,50,57,46,57,55,48,50,51,53,93,44,91,45,56,49,46,54,56,56,56,55,54,44,51,48,46,48,50,56,53,54,54,93,44,91,45,56,49,46,54,56,48,50,49,53,44,51,48,46,49,50,49,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,87,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,54,53,53,56,44,34,98,101,100,115,34,58,50,51,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,55,53,49,50,55,51,44,51,54,46,48,55,48,56,51,52,93,44,91,45,55,56,46,54,57,57,51,49,54,44,51,54,46,48,49,49,52,52,56,93,44,91,45,55,56,46,56,50,57,57,54,53,44,51,53,46,56,54,54,57,55,56,93,44,91,45,55,56,46,57,48,54,48,55,49,44,51,53,46,56,54,56,48,57,54,93,44,91,45,55,56,46,57,57,53,48,53,57,44,51,53,46,54,49,48,49,51,53,93,44,91,45,55,56,46,57,49,52,55,51,52,44,51,53,46,53,56,51,54,55,50,93,44,91,45,55,56,46,55,48,56,57,48,50,44,51,53,46,53,49,57,52,53,56,93,44,91,45,55,56,46,52,57,50,49,52,57,44,51,53,46,54,56,54,57,48,51,93,44,91,45,55,56,46,50,53,53,57,55,51,44,51,53,46,56,49,56,49,50,93,44,91,45,55,56,46,52,50,54,56,54,52,44,51,53,46,57,55,53,48,49,50,93,44,91,45,55,56,46,53,52,54,52,49,52,44,51,54,46,48,50,49,56,50,54,93,44,91,45,55,56,46,55,53,49,50,55,51,44,51,54,46,48,55,48,56,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,50,48,51,55,44,34,98,101,100,115,34,58,52,55,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,49,57,52,53,44,51,57,46,51,48,53,49,53,51,93,44,91,45,56,52,46,56,50,48,49,53,55,44,51,57,46,49,48,53,52,56,57,93,44,91,45,56,52,46,55,53,48,51,52,53,44,51,57,46,49,52,55,54,50,50,93,44,91,45,56,52,46,54,50,51,52,56,56,44,51,57,46,48,55,52,50,56,50,93,44,91,45,56,52,46,53,48,54,49,54,49,44,51,57,46,48,57,53,49,55,55,93,44,91,45,56,52,46,51,49,57,57,56,53,44,51,57,46,48,50,49,53,51,52,93,44,91,45,56,52,46,50,53,57,52,51,49,44,51,57,46,50,55,48,55,57,54,93,44,91,45,56,52,46,51,53,51,50,48,57,44,51,57,46,50,57,50,50,56,55,93,44,91,45,56,52,46,56,49,57,52,53,44,51,57,46,51,48,53,49,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,114,103,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,57,57,57,57,44,34,98,101,100,115,34,58,50,56,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,50,49,49,50,50,52,44,52,49,46,49,51,51,55,49,52,93,44,91,45,55,52,46,50,55,50,50,50,54,44,52,49,46,48,49,55,57,51,53,93,44,91,45,55,52,46,49,52,49,48,57,52,44,52,48,46,57,54,54,51,55,52,93,44,91,45,55,52,46,49,51,48,48,49,54,44,52,48,46,56,49,57,57,51,56,93,44,91,45,55,52,46,49,52,55,53,50,57,44,52,48,46,55,56,54,52,57,49,93,44,91,45,55,51,46,57,56,52,55,57,52,44,52,48,46,55,57,55,54,56,55,93,44,91,45,55,51,46,57,51,51,56,48,56,44,52,48,46,56,56,50,50,49,52,93,44,91,45,55,51,46,57,49,55,57,48,53,44,52,48,46,57,49,55,53,55,55,93,44,91,45,55,51,46,56,57,51,57,55,57,44,52,48,46,57,57,55,50,48,53,93,44,91,45,55,52,46,50,49,49,50,50,52,44,52,49,46,49,51,51,55,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,52,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,54,55,55,51,50,50,93,44,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,48,53,48,55,53,55,93,44,91,45,49,49,53,46,56,57,51,56,53,55,44,51,56,46,48,53,48,53,51,49,93,44,91,45,49,49,53,46,56,57,54,57,50,53,44,51,54,46,56,52,50,48,56,53,93,44,91,45,49,49,53,46,55,52,48,56,52,54,44,51,54,46,56,53,51,48,56,52,93,44,91,45,49,49,52,46,55,54,50,53,48,55,44,51,54,46,56,53,51,52,55,51,93,44,91,45,49,49,52,46,48,53,48,51,53,52,44,51,54,46,56,52,51,49,52,49,93,44,91,45,49,49,52,46,48,53,48,48,53,50,44,51,55,46,48,48,48,49,57,49,93,44,91,45,49,49,52,46,48,53,50,51,53,44,51,55,46,54,48,52,55,55,54,93,44,91,45,49,49,52,46,48,52,57,57,55,56,44,51,56,46,49,52,56,55,54,51,93,44,91,45,49,49,52,46,48,52,57,57,55,55,44,51,56,46,53,55,50,57,55,52,93,44,91,45,49,49,52,46,48,52,57,56,48,55,44,51,56,46,54,55,55,51,54,53,93,44,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,54,55,55,51,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,56,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,48,34,44,34,78,65,77,69,34,58,34,78,111,109,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,50,53,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,54,52,46,52,54,49,52,52,57,44,54,54,46,54,50,54,53,48,57,93,44,91,45,49,54,53,46,52,51,52,52,52,44,54,54,46,52,55,53,50,51,93,44,91,45,49,54,54,46,55,49,57,52,55,52,44,54,54,46,49,52,56,48,52,54,93,44,91,45,49,54,55,46,53,50,48,56,50,51,44,54,53,46,56,55,56,49,53,50,93,44,91,45,49,54,56,46,49,53,53,49,50,57,44,54,53,46,55,50,56,51,53,49,93,44,91,45,49,54,56,46,50,51,49,56,56,55,44,54,53,46,54,50,50,53,54,55,93,44,91,45,49,54,56,46,49,54,55,53,56,52,44,54,53,46,53,52,54,57,48,50,93,44,91,45,49,54,55,46,52,48,48,56,57,49,44,54,53,46,51,52,55,50,55,93,44,91,45,49,54,55,46,48,55,48,51,51,49,44,54,53,46,51,50,55,52,57,49,93,44,91,45,49,54,55,46,48,56,52,51,51,57,44,54,53,46,49,53,53,54,57,53,93,44,91,45,49,54,54,46,57,55,56,57,54,52,44,54,53,46,48,54,57,52,49,93,44,91,45,49,54,54,46,53,56,57,49,56,53,44,54,52,46,57,48,56,50,57,49,93,44,91,45,49,54,54,46,53,57,48,49,54,51,44,54,52,46,55,51,56,57,52,56,93,44,91,45,49,54,54,46,53,48,55,56,52,49,44,54,52,46,54,51,49,51,55,51,93,44,91,45,49,54,54,46,50,56,49,51,56,56,44,54,52,46,53,52,52,57,53,54,93,44,91,45,49,54,53,46,51,51,53,57,49,56,44,54,52,46,52,52,52,52,49,55,93,44,91,45,49,54,53,46,48,51,50,50,48,53,44,54,52,46,51,56,55,57,56,55,93,44,91,45,49,54,52,46,55,53,52,56,48,49,44,54,52,46,52,48,55,56,50,52,93,44,91,45,49,54,52,46,51,53,53,51,53,53,44,54,52,46,53,48,56,52,52,55,93,44,91,45,49,54,51,46,54,53,54,57,53,49,44,54,52,46,53,50,49,57,52,93,44,91,45,49,54,51,46,51,54,51,55,53,52,44,54,52,46,52,52,53,54,52,50,93,44,91,45,49,54,51,46,50,52,49,57,51,50,44,54,52,46,51,54,48,55,52,51,93,44,91,45,49,54,50,46,55,57,53,56,48,50,44,54,52,46,50,55,53,54,55,52,93,44,91,45,49,54,50,46,53,49,55,56,55,50,44,54,52,46,51,56,52,57,48,54,93,44,91,45,49,54,50,46,52,56,54,54,57,49,44,54,52,46,52,55,48,56,57,55,93,44,91,45,49,54,50,46,51,49,51,52,57,49,44,54,52,46,53,52,50,55,56,57,93,44,91,45,49,54,49,46,53,57,48,56,52,44,54,52,46,51,51,53,53,52,49,93,44,91,45,49,54,49,46,52,49,51,56,57,57,44,54,52,46,51,53,56,53,56,55,93,44,91,45,49,54,49,46,48,55,53,52,48,50,44,54,52,46,50,48,54,54,53,50,93,44,91,45,49,54,49,46,48,52,53,54,54,44,54,52,46,48,50,50,52,54,55,93,44,91,45,49,54,48,46,56,56,54,50,44,54,51,46,55,55,49,51,57,55,93,44,91,45,49,54,49,46,51,49,52,51,53,56,44,54,51,46,53,49,57,50,50,57,93,44,91,45,49,54,49,46,56,52,48,52,48,53,44,54,51,46,52,57,51,50,56,56,93,44,91,45,49,54,49,46,57,53,54,57,54,44,54,51,46,53,53,55,50,48,57,93,44,91,45,49,54,50,46,50,50,50,55,52,52,44,54,51,46,53,57,54,57,49,52,93,44,91,45,49,54,50,46,51,57,52,51,53,57,44,54,51,46,54,56,56,51,48,52,93,44,91,45,49,54,50,46,53,56,52,51,49,57,44,54,51,46,54,57,49,51,57,50,93,44,91,45,49,54,50,46,56,50,54,52,52,49,44,54,51,46,53,55,54,51,54,93,44,91,45,49,54,50,46,54,55,57,56,51,49,44,54,51,46,52,57,49,54,50,54,93,44,91,45,49,54,50,46,52,51,55,55,55,51,44,54,51,46,52,57,49,57,57,52,93,44,91,45,49,54,50,46,54,55,49,56,49,51,44,54,51,46,51,49,50,56,50,53,93,44,91,45,49,54,50,46,51,56,51,48,56,50,44,54,51,46,50,55,49,56,49,54,93,44,91,45,49,54,50,46,48,48,49,55,57,56,44,54,51,46,48,57,56,53,51,54,93,44,91,45,49,54,50,46,48,48,49,55,54,57,44,54,51,46,48,49,49,57,49,57,93,44,91,45,49,54,48,46,56,53,55,57,57,44,54,51,46,48,49,49,57,53,51,93,44,91,45,49,54,48,46,56,53,56,48,48,52,44,54,51,46,50,55,49,56,51,56,93,44,91,45,49,54,48,46,54,54,55,51,54,49,44,54,51,46,50,55,49,56,52,53,93,44,91,45,49,54,48,46,54,57,48,50,57,52,44,54,51,46,53,51,49,54,56,57,93,44,91,45,49,54,48,46,52,57,55,51,56,49,44,54,51,46,54,49,56,51,52,51,93,44,91,45,49,54,48,46,49,49,49,53,50,50,44,54,51,46,54,49,56,51,53,49,93,44,91,45,49,54,48,46,49,49,49,52,57,56,44,54,51,46,55,48,52,57,55,50,93,44,91,45,49,53,57,46,57,51,50,55,51,49,44,54,51,46,55,57,49,53,56,57,93,44,91,45,49,53,57,46,55,51,55,52,53,49,44,54,51,46,55,57,49,53,57,49,93,44,91,45,49,53,57,46,55,51,55,52,55,53,44,54,52,46,48,53,49,52,53,57,93,44,91,45,49,53,57,46,57,52,55,50,56,56,44,54,52,46,48,53,49,52,53,57,93,44,91,45,49,53,57,46,57,54,50,50,57,44,54,52,46,55,52,52,51,55,55,93,44,91,45,49,53,57,46,55,55,52,56,57,55,44,54,52,46,55,52,52,51,56,50,93,44,91,45,49,53,57,46,55,55,52,57,50,49,44,54,52,46,57,49,55,53,54,53,93,44,91,45,49,53,57,46,53,55,50,49,55,51,44,54,52,46,57,49,55,53,57,55,93,44,91,45,49,53,57,46,53,56,50,55,51,54,44,54,53,46,50,54,52,48,50,54,93,44,91,45,49,53,57,46,51,55,55,51,54,53,44,54,53,46,50,54,52,48,51,51,93,44,91,45,49,53,57,46,51,56,53,53,55,56,44,54,53,46,53,50,51,56,51,53,93,44,91,45,49,53,57,46,53,57,51,53,48,54,44,54,53,46,53,50,51,56,51,53,93,44,91,45,49,53,57,46,56,48,49,54,57,50,44,54,53,46,52,51,55,50,51,49,93,44,91,45,49,54,49,46,53,52,54,56,57,50,44,54,53,46,52,51,55,50,48,51,93,44,91,45,49,54,51,46,55,53,53,51,57,49,44,54,53,46,52,51,55,49,54,53,93,44,91,45,49,54,51,46,55,53,53,52,48,55,44,54,53,46,54,49,48,51,54,55,93,44,91,45,49,54,51,46,57,54,51,52,57,56,44,54,53,46,54,49,48,51,54,51,93,44,91,45,49,54,51,46,57,54,51,53,49,54,44,54,53,46,55,56,51,53,54,49,93,44,91,45,49,54,52,46,50,52,52,49,50,55,44,54,53,46,55,56,51,53,53,51,93,44,91,45,49,54,52,46,50,52,52,49,57,49,44,54,54,46,49,50,57,57,52,54,93,44,91,45,49,54,52,46,51,49,56,57,49,51,44,54,54,46,49,50,57,57,52,52,93,44,91,45,49,54,52,46,51,49,56,57,51,54,44,54,54,46,52,55,54,51,49,57,93,44,91,45,49,54,52,46,52,54,49,52,52,57,44,54,54,46,54,50,54,53,48,57,93,93,93,44,91,91,91,45,49,55,49,46,57,53,52,54,55,50,44,54,51,46,53,50,48,57,49,57,93,44,91,45,49,55,49,46,56,56,52,56,56,55,44,54,51,46,51,55,55,53,57,93,44,91,45,49,55,49,46,55,55,50,50,56,52,44,54,51,46,51,49,53,51,50,55,93,44,91,45,49,55,49,46,52,56,49,57,51,53,44,54,51,46,50,53,52,53,51,49,93,44,91,45,49,55,49,46,50,53,49,51,57,56,44,54,51,46,50,57,50,53,54,56,93,44,91,45,49,55,49,46,48,54,54,56,51,54,44,54,51,46,51,55,49,49,48,56,93,44,91,45,49,55,48,46,57,48,56,50,52,57,44,54,51,46,51,54,57,57,52,53,93,44,91,45,49,55,48,46,53,49,53,50,55,54,44,54,51,46,50,56,55,57,49,93,44,91,45,49,55,48,46,51,50,56,48,50,50,44,54,51,46,49,51,56,55,50,52,93,44,91,45,49,55,48,46,49,49,53,52,49,54,44,54,51,46,49,50,55,50,52,55,93,44,91,45,49,54,57,46,57,48,49,52,48,56,44,54,51,46,48,51,55,51,54,53,93,44,91,45,49,54,57,46,56,51,56,57,53,50,44,54,50,46,57,50,53,56,56,57,93,44,91,45,49,54,57,46,53,57,49,48,51,54,44,54,50,46,56,56,55,56,54,55,93,44,91,45,49,54,57,46,52,49,57,56,54,49,44,54,50,46,57,55,51,56,53,54,93,44,91,45,49,54,57,46,52,53,49,48,56,51,44,54,51,46,48,51,56,53,53,49,93,44,91,45,49,54,57,46,50,56,50,51,50,54,44,54,51,46,49,49,52,52,48,53,93,44,91,45,49,54,56,46,57,50,50,55,56,44,54,51,46,48,57,57,53,54,55,93,44,91,45,49,54,56,46,55,51,51,52,54,44,54,51,46,49,51,49,53,53,51,93,44,91,45,49,54,56,46,54,48,57,50,54,49,44,54,51,46,50,50,57,51,54,50,93,44,91,45,49,54,56,46,54,52,50,55,54,56,44,54,51,46,51,52,52,56,56,93,44,91,45,49,54,57,46,52,53,53,53,51,57,44,54,51,46,52,49,53,48,50,93,44,91,45,49,54,57,46,54,48,50,50,56,53,44,54,51,46,52,56,48,54,51,53,93,44,91,45,49,54,57,46,57,50,54,53,57,57,44,54,51,46,53,50,54,55,51,57,93,44,91,45,49,54,57,46,57,56,53,54,50,56,44,54,51,46,54,50,50,57,53,57,93,44,91,45,49,55,48,46,50,57,54,56,52,54,44,54,51,46,55,53,53,53,55,50,93,44,91,45,49,55,48,46,53,48,52,48,51,44,54,51,46,55,53,51,52,93,44,91,45,49,55,48,46,57,53,57,49,53,53,44,54,51,46,54,50,53,56,56,56,93,44,91,45,49,55,49,46,53,51,53,54,48,51,44,54,51,46,55,50,49,56,55,53,93,44,91,45,49,55,49,46,53,52,56,56,51,44,54,51,46,56,48,48,52,54,49,93,44,91,45,49,55,49,46,55,55,54,51,55,50,44,54,51,46,56,51,55,55,50,52,93,44,91,45,49,55,49,46,57,53,52,54,55,50,44,54,51,46,53,50,48,57,49,57,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,77,99,67,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,49,56,54,50,44,52,55,46,57,53,55,52,53,55,93,44,91,45,49,48,54,46,50,54,48,57,51,50,44,52,55,46,56,54,56,52,51,49,93,44,91,45,49,48,54,46,50,54,49,49,50,49,44,52,55,46,53,50,57,48,53,50,93,44,91,45,49,48,54,46,50,57,56,49,53,56,44,52,55,46,51,53,52,50,57,56,93,44,91,45,49,48,54,46,49,55,48,54,55,53,44,52,55,46,51,53,52,52,57,53,93,44,91,45,49,48,54,46,49,55,48,52,50,44,52,55,46,49,56,48,56,50,54,93,44,91,45,49,48,54,46,48,56,54,55,55,55,44,52,55,46,49,56,48,57,51,56,93,44,91,45,49,48,53,46,57,53,57,56,57,55,44,52,55,46,48,57,50,57,54,56,93,44,91,45,49,48,53,46,56,51,51,48,52,52,44,52,55,46,49,56,49,48,57,50,93,44,91,45,49,48,53,46,52,48,54,51,48,57,44,52,55,46,49,56,49,53,56,51,93,44,91,45,49,48,53,46,52,48,54,53,56,49,44,52,55,46,53,50,57,53,51,52,93,44,91,45,49,48,53,46,51,54,51,50,54,50,44,52,55,46,55,57,48,52,49,57,93,44,91,45,49,48,53,46,50,51,52,55,55,49,44,52,55,46,55,57,48,53,48,50,93,44,91,45,49,48,53,46,49,57,53,49,50,50,44,52,55,46,56,54,56,48,56,49,93,44,91,45,49,48,53,46,49,57,52,55,56,51,44,52,56,46,48,54,54,54,49,55,93,44,91,45,49,48,53,46,50,50,56,57,57,44,52,56,46,48,56,57,50,56,52,93,44,91,45,49,48,53,46,53,57,53,48,50,55,44,52,56,46,48,56,49,55,56,93,44,91,45,49,48,53,46,56,52,51,56,57,49,44,52,56,46,48,49,48,50,56,57,93,44,91,45,49,48,54,46,50,50,57,51,48,50,44,52,56,46,48,50,54,52,49,54,93,44,91,45,49,48,54,46,51,57,52,49,54,51,44,52,56,46,48,54,52,55,50,54,93,44,91,45,49,48,54,46,52,49,56,54,50,44,52,55,46,57,53,55,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,117,99,104,97,110,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,50,53,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,56,49,54,54,49,44,52,50,46,54,52,50,48,53,54,93,44,91,45,57,50,46,48,54,52,55,54,54,44,52,50,46,50,57,55,50,53,57,93,44,91,45,57,49,46,56,51,49,48,56,57,44,52,50,46,50,57,57,48,54,51,93,44,91,45,57,49,46,53,57,54,57,56,49,44,52,50,46,50,57,54,52,48,56,93,44,91,45,57,49,46,54,48,55,48,53,57,44,52,50,46,54,52,51,57,55,51,93,44,91,45,57,50,46,48,56,49,54,54,49,44,52,50,46,54,52,50,48,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,117,80,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,49,55,52,51,44,34,98,101,100,115,34,58,49,57,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,50,56,57,55,51,44,52,49,46,54,56,53,50,52,50,93,44,91,45,56,55,46,57,49,52,50,54,52,44,52,49,46,55,49,54,53,57,56,93,44,91,45,56,55,46,57,50,48,52,55,54,44,52,49,46,57,57,51,56,56,54,93,44,91,45,56,56,46,50,54,50,56,55,53,44,52,49,46,57,56,54,51,55,56,93,44,91,45,56,56,46,50,54,49,57,53,50,44,52,49,46,55,50,52,54,53,50,93,44,91,45,56,56,46,50,54,49,50,55,53,44,52,49,46,55,50,52,54,53,54,93,44,91,45,56,56,46,48,50,56,57,55,51,44,52,49,46,54,56,53,50,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,97,108,108,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,52,56,48,51,44,52,51,46,52,55,55,56,49,53,93,44,91,45,49,48,52,46,48,53,51,48,50,56,44,52,51,46,48,48,48,53,56,53,93,44,91,45,49,48,51,46,53,48,53,49,44,52,51,46,48,48,48,55,55,93,44,91,45,49,48,51,46,48,48,48,54,48,57,44,52,51,46,48,48,48,55,53,49,93,44,91,45,49,48,51,46,48,48,48,57,49,51,44,52,51,46,52,55,54,56,52,56,93,44,91,45,49,48,52,46,48,53,52,56,48,51,44,52,51,46,52,55,55,56,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,75,105,116,116,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,51,55,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,50,56,55,50,50,44,52,57,46,48,48,48,53,54,50,93,44,91,45,57,55,46,50,51,52,49,50,56,44,52,56,46,57,52,55,56,57,56,93,44,91,45,57,55,46,49,48,53,52,52,50,44,52,56,46,54,56,57,54,52,56,93,44,91,45,57,55,46,49,54,51,51,53,53,44,52,56,46,53,52,51,57,54,55,93,44,91,45,57,54,46,51,56,55,56,51,53,44,52,56,46,53,52,52,51,48,56,93,44,91,45,57,54,46,52,48,53,52,48,56,44,52,56,46,57,57,57,57,56,51,93,44,91,45,57,55,46,50,50,56,55,50,50,44,52,57,46,48,48,48,53,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,57,34,44,34,78,65,77,69,34,58,34,79,99,111,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,48,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,52,55,48,51,49,44,51,51,46,57,48,54,49,57,56,93,44,91,45,56,51,46,53,48,53,57,50,56,44,51,51,46,56,49,55,55,54,93,44,91,45,56,51,46,52,48,54,49,56,57,44,51,51,46,54,57,56,51,48,55,93,44,91,45,56,51,46,50,56,48,51,52,44,51,51,46,55,54,49,55,55,52,93,44,91,45,56,51,46,50,55,53,57,51,51,44,51,51,46,56,52,55,57,55,55,93,44,91,45,56,51,46,53,51,55,51,56,53,44,51,51,46,57,54,53,57,49,50,93,44,91,45,56,51,46,54,52,55,48,51,49,44,51,51,46,57,48,54,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,57,51,34,44,34,78,65,77,69,34,58,34,87,105,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,49,57,56,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,49,51,52,49,55,49,44,50,57,46,52,52,49,55,53,49,93,44,91,45,57,56,46,52,48,55,51,51,54,44,50,57,46,49,49,52,52,51,53,93,44,91,45,57,56,46,49,57,48,57,57,49,44,50,56,46,56,56,50,51,51,51,93,44,91,45,57,55,46,55,50,56,52,52,51,44,50,57,46,50,50,49,55,52,56,93,44,91,45,57,55,46,56,52,48,51,56,51,44,50,57,46,51,55,54,55,57,49,93,44,91,45,57,56,46,49,50,50,53,55,52,44,50,57,46,51,55,56,53,52,57,93,44,91,45,57,56,46,49,51,52,49,55,49,44,50,57,46,52,52,49,55,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,70,105,108,108,109,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,55,52,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,50,52,55,56,44,52,48,46,54,57,56,53,51,55,93,44,91,45,57,55,46,56,50,52,49,49,52,44,52,48,46,51,53,48,53,52,49,93,44,91,45,57,55,46,56,50,48,56,49,54,44,52,48,46,51,53,48,53,52,53,93,44,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,44,91,45,57,55,46,51,54,56,52,48,49,44,52,48,46,54,57,56,54,50,53,93,44,91,45,57,55,46,56,50,52,55,56,44,52,48,46,54,57,56,53,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,50,48,50,51,53,44,51,48,46,51,48,51,53,52,93,44,91,45,56,51,46,52,54,56,55,54,56,44,51,48,46,51,48,52,50,49,50,93,44,91,45,56,51,46,51,54,55,50,54,44,51,48,46,50,54,48,52,52,93,44,91,45,56,51,46,50,52,55,50,53,51,44,51,48,46,50,54,48,54,55,93,44,91,45,56,51,46,49,55,48,57,54,57,44,51,48,46,51,56,53,50,50,53,93,44,91,45,56,51,46,50,50,48,48,56,55,44,51,48,46,52,50,50,52,56,52,93,44,91,45,56,51,46,50,55,50,54,49,50,44,51,48,46,54,50,55,54,56,55,93,44,91,45,56,51,46,51,48,57,50,52,57,44,51,48,46,54,51,52,52,48,54,93,44,91,45,56,51,46,51,52,48,56,53,50,44,51,48,46,54,51,54,51,51,54,93,44,91,45,56,51,46,51,53,55,55,48,51,44,51,48,46,54,51,55,51,54,93,44,91,45,56,51,46,54,49,49,55,50,44,51,48,46,54,53,49,50,53,56,93,44,91,45,56,51,46,54,48,52,49,56,54,44,51,48,46,53,56,49,57,49,54,93,44,91,45,56,51,46,55,51,54,57,53,52,44,51,48,46,53,48,55,53,54,57,93,44,91,45,56,51,46,55,50,49,55,50,44,51,48,46,52,51,52,51,53,52,93,44,91,45,56,51,46,56,50,48,50,51,53,44,51,48,46,51,48,51,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,52,53,51,44,34,98,101,100,115,34,58,50,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,57,57,53,53,54,44,49,56,46,51,56,48,48,54,53,93,44,91,45,54,53,46,57,52,50,52,50,57,44,49,56,46,50,57,51,52,54,57,93,44,91,45,54,53,46,57,49,56,53,51,53,44,49,56,46,50,55,48,49,51,93,44,91,45,54,53,46,57,49,57,50,55,56,44,49,56,46,52,48,50,57,57,51,93,44,91,45,54,53,46,57,57,51,52,48,49,44,49,56,46,53,49,54,53,57,56,93,44,91,45,54,54,46,48,51,51,57,55,44,49,56,46,53,49,52,50,54,57,93,44,91,45,54,53,46,57,57,57,53,53,54,44,49,56,46,51,56,48,48,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,57,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,48,52,49,52,49,44,51,57,46,50,53,57,52,53,56,93,44,91,45,56,55,46,54,50,56,55,57,56,44,51,57,46,49,53,55,53,49,51,93,44,91,45,56,55,46,53,50,50,57,51,57,44,51,56,46,57,48,50,51,57,93,44,91,45,56,55,46,50,52,49,48,50,55,44,51,56,46,57,48,55,56,55,52,93,44,91,45,56,55,46,50,52,48,55,51,55,44,51,57,46,49,55,49,55,55,51,93,44,91,45,56,55,46,50,52,48,51,55,57,44,51,57,46,50,53,57,48,54,52,93,44,91,45,56,55,46,54,48,52,49,52,49,44,51,57,46,50,53,57,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,50,34,44,34,78,65,77,69,34,58,34,76,97,32,80,97,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,48,49,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,54,50,55,49,50,53,44,51,51,46,52,51,51,53,53,52,93,44,91,45,49,49,52,46,55,50,48,48,54,53,44,51,51,46,52,48,55,56,57,49,93,44,91,45,49,49,52,46,54,55,55,48,51,50,44,51,51,46,50,55,48,49,54,57,93,44,91,45,49,49,52,46,55,48,55,56,57,54,44,51,51,46,48,57,55,52,51,49,93,44,91,45,49,49,52,46,54,55,48,56,48,51,44,51,51,46,48,51,55,57,56,51,93,44,91,45,49,49,52,46,53,49,54,56,52,50,44,51,51,46,48,50,55,56,56,54,93,44,91,45,49,49,52,46,50,54,56,56,44,51,51,46,48,50,57,57,54,49,93,44,91,45,49,49,52,46,50,54,56,56,48,56,44,51,51,46,52,54,52,52,48,50,93,44,91,45,49,49,51,46,57,53,55,53,49,52,44,51,51,46,52,54,52,52,49,51,93,44,91,45,49,49,51,46,57,53,55,52,56,57,44,51,51,46,51,55,55,51,54,50,93,44,91,45,49,49,51,46,51,51,53,48,52,56,44,51,51,46,51,55,55,52,54,57,93,44,91,45,49,49,51,46,51,51,51,55,53,51,44,51,51,46,57,57,57,50,50,55,93,44,91,45,49,49,51,46,51,51,51,53,48,56,44,51,52,46,51,49,55,56,55,55,93,44,91,45,49,49,51,46,53,51,57,53,50,52,44,51,52,46,51,48,54,51,55,55,93,44,91,45,49,49,51,46,54,48,54,48,57,51,44,51,52,46,50,50,57,51,51,52,93,44,91,45,49,49,52,46,48,51,49,49,51,50,44,51,52,46,50,53,57,56,49,57,93,44,91,45,49,49,52,46,49,51,56,50,56,50,44,51,52,46,51,48,51,50,51,93,44,91,45,49,49,52,46,50,53,52,49,52,49,44,51,52,46,49,55,51,56,51,93,44,91,45,49,49,52,46,52,51,53,52,50,57,44,51,52,46,48,55,57,55,50,55,93,44,91,45,49,49,52,46,53,51,52,49,52,54,44,51,51,46,57,50,53,49,56,55,93,44,91,45,49,49,52,46,52,57,54,52,56,57,44,51,51,46,54,57,54,57,48,49,93,44,91,45,49,49,52,46,53,50,52,50,49,53,44,51,51,46,53,53,51,48,54,56,93,44,91,45,49,49,52,46,54,50,55,49,50,53,44,51,51,46,52,51,51,53,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,66,114,111,111,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,50,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,51,54,49,53,56,44,51,49,46,48,51,55,54,55,57,93,44,91,45,56,51,46,55,52,51,55,50,57,44,51,48,46,54,53,56,51,57,54,93,44,91,45,56,51,46,54,49,49,55,50,44,51,48,46,54,53,49,50,53,56,93,44,91,45,56,51,46,51,53,55,55,48,51,44,51,48,46,54,51,55,51,54,93,44,91,45,56,51,46,52,56,50,52,54,49,44,51,48,46,55,53,54,57,51,49,93,44,91,45,56,51,46,51,55,48,56,57,56,44,51,48,46,56,56,52,56,50,56,93,44,91,45,56,51,46,52,55,53,54,49,55,44,51,49,46,48,51,49,57,54,52,93,44,91,45,56,51,46,53,55,52,56,53,55,44,51,49,46,48,55,56,49,51,53,93,44,91,45,56,51,46,55,51,54,49,53,56,44,51,49,46,48,51,55,54,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,54,34,44,34,78,65,77,69,34,58,34,65,108,101,117,116,105,97,110,115,32,87,101,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,53,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,55,56,46,51,48,55,55,56,55,44,53,49,46,56,56,49,54,48,56,93,44,91,45,49,55,56,46,49,53,49,54,54,44,53,49,46,55,55,51,55,53,54,93,44,91,45,49,55,56,46,49,56,57,51,54,56,44,53,49,46,54,51,51,54,55,51,93,44,91,45,49,55,55,46,57,50,56,50,53,55,44,53,49,46,53,52,49,56,57,53,93,44,91,45,49,55,55,46,55,50,55,55,49,51,44,53,49,46,54,49,48,57,54,52,93,44,91,45,49,55,55,46,52,53,50,48,51,51,44,53,49,46,54,52,48,50,48,49,93,44,91,45,49,55,55,46,50,56,49,48,57,55,44,53,49,46,54,50,55,54,49,50,93,44,91,45,49,55,55,46,48,55,57,57,56,53,44,53,49,46,54,55,52,50,51,49,93,44,91,45,49,55,54,46,57,54,57,54,49,53,44,53,49,46,53,51,56,57,56,53,93,44,91,45,49,55,54,46,54,57,56,55,51,49,44,53,49,46,53,55,56,52,50,56,93,44,91,45,49,55,54,46,53,51,57,55,54,54,44,53,49,46,54,52,56,52,51,56,93,44,91,45,49,55,54,46,50,53,53,49,56,54,44,53,49,46,54,57,53,51,55,54,93,44,91,45,49,55,53,46,56,52,57,55,53,52,44,53,49,46,55,57,53,52,57,51,93,44,91,45,49,55,53,46,56,48,50,52,50,53,44,53,49,46,56,54,48,52,49,53,93,44,91,45,49,55,53,46,52,48,57,57,56,50,44,53,49,46,57,51,48,49,56,52,93,44,91,45,49,55,53,46,51,52,56,55,49,57,44,53,49,46,57,54,50,53,56,53,93,44,91,45,49,55,53,46,48,53,54,51,54,44,53,49,46,57,52,56,49,53,57,93,44,91,45,49,55,52,46,56,55,54,55,51,50,44,53,49,46,57,56,53,57,48,56,93,44,91,45,49,55,52,46,55,52,53,48,54,53,44,53,49,46,57,53,53,54,52,54,93,44,91,45,49,55,52,46,52,56,48,56,57,49,44,53,49,46,57,53,50,52,57,55,93,44,91,45,49,55,52,46,51,49,51,57,55,52,44,53,50,46,48,51,54,50,50,54,93,44,91,45,49,55,52,46,48,53,54,53,48,51,44,53,50,46,48,53,49,54,51,51,93,44,91,45,49,55,51,46,57,51,53,49,54,49,44,53,50,46,48,48,52,52,52,50,93,44,91,45,49,55,51,46,55,49,48,48,51,52,44,53,50,46,48,48,54,56,52,93,44,91,45,49,55,51,46,52,56,55,51,49,56,44,53,49,46,57,55,49,49,56,52,93,44,91,45,49,55,51,46,51,48,52,53,50,50,44,53,50,46,48,48,53,52,50,54,93,44,91,45,49,55,51,46,49,54,54,55,48,51,44,53,49,46,57,52,54,55,48,54,93,44,91,45,49,55,51,46,48,55,57,54,55,50,44,53,50,46,48,49,55,57,49,53,93,44,91,45,49,55,50,46,57,50,51,48,53,56,44,53,50,46,48,50,52,49,54,93,44,91,45,49,55,50,46,56,54,54,54,52,49,44,53,50,46,49,52,56,57,51,51,93,44,91,45,49,55,51,46,52,52,48,55,54,52,44,53,50,46,49,54,56,55,54,52,93,44,91,45,49,55,51,46,53,48,54,51,48,51,44,53,50,46,50,49,51,49,51,56,93,44,91,45,49,55,51,46,55,51,50,49,48,52,44,53,50,46,49,56,51,50,53,52,93,44,91,45,49,55,51,46,57,57,48,52,55,50,44,53,50,46,49,56,51,49,52,51,93,44,91,45,49,55,51,46,57,48,50,56,51,52,44,53,50,46,51,49,57,50,50,56,93,44,91,45,49,55,51,46,57,52,48,50,50,54,44,53,50,46,51,57,54,50,53,54,93,44,91,45,49,55,52,46,49,49,48,53,56,50,44,53,50,46,52,54,56,51,50,49,93,44,91,45,49,55,52,46,51,49,50,55,51,51,44,53,50,46,52,53,54,55,49,50,93,44,91,45,49,55,52,46,55,57,54,54,50,53,44,53,50,46,49,53,51,52,55,93,44,91,45,49,55,52,46,57,50,53,50,51,51,44,53,50,46,49,54,51,57,49,93,44,91,45,49,55,53,46,50,57,54,54,49,55,44,53,50,46,48,56,56,56,50,93,44,91,45,49,55,53,46,53,52,57,49,51,53,44,53,50,46,48,48,57,56,55,57,93,44,91,45,49,55,53,46,56,49,49,57,57,56,44,53,50,46,48,52,55,57,52,56,93,44,91,45,49,55,54,46,48,50,55,55,52,52,44,53,50,46,49,54,48,49,55,53,93,44,91,45,49,55,54,46,50,50,52,52,51,52,44,53,50,46,49,53,51,49,50,54,93,44,91,45,49,55,54,46,50,57,51,49,51,44,53,50,46,48,54,53,52,50,55,93,44,91,45,49,55,54,46,50,52,50,56,54,52,44,53,49,46,57,50,54,55,52,50,93,44,91,45,49,55,54,46,52,50,57,49,51,55,44,53,49,46,57,49,53,51,53,93,44,91,45,49,55,54,46,52,56,56,52,55,57,44,53,50,46,48,50,54,48,52,50,93,44,91,45,49,55,54,46,54,48,49,50,56,44,53,50,46,48,53,54,53,54,93,44,91,45,49,55,55,46,48,49,54,56,57,54,44,53,49,46,57,54,53,48,51,50,93,44,91,45,49,55,55,46,50,48,54,50,48,57,44,53,49,46,57,57,51,49,49,93,44,91,45,49,55,55,46,51,48,56,56,57,52,44,53,49,46,56,51,54,55,57,51,93,44,91,45,49,55,55,46,53,49,53,51,49,54,44,53,49,46,55,57,49,57,55,93,44,91,45,49,55,55,46,54,49,52,57,49,50,44,53,49,46,57,48,53,93,44,91,45,49,55,55,46,56,50,54,56,48,55,44,53,49,46,56,57,54,52,49,52,93,44,91,45,49,55,55,46,57,52,55,48,48,51,44,53,49,46,57,55,49,51,49,50,93,44,91,45,49,55,56,46,50,52,55,51,56,44,53,49,46,57,53,48,49,54,54,93,44,91,45,49,55,56,46,51,48,55,55,56,55,44,53,49,46,56,56,49,54,48,56,93,93,93,44,91,91,91,45,49,54,54,46,50,50,53,54,52,55,44,53,52,46,48,52,49,57,57,51,93,44,91,45,49,54,54,46,55,56,53,49,57,52,44,53,52,46,48,54,53,57,55,57,93,44,91,45,49,54,55,46,48,53,51,57,57,51,44,53,52,46,48,48,56,54,49,51,93,44,91,45,49,54,55,46,50,51,48,48,55,55,44,53,51,46,56,56,56,50,53,50,93,44,91,45,49,54,55,46,49,51,56,50,48,53,44,53,51,46,55,48,57,52,50,51,93,44,91,45,49,54,55,46,50,51,48,51,56,44,53,51,46,53,54,54,55,51,52,93,44,91,45,49,54,55,46,55,52,54,55,54,57,44,53,51,46,52,50,54,51,51,53,93,44,91,45,49,54,55,46,54,57,56,50,49,51,44,53,51,46,53,50,52,50,50,51,93,44,91,45,49,54,55,46,57,53,57,56,56,50,44,53,51,46,54,49,50,56,49,50,93,44,91,45,49,54,56,46,48,57,48,51,53,50,44,53,51,46,54,49,57,54,54,55,93,44,91,45,49,54,56,46,52,49,53,50,53,57,44,53,51,46,53,48,57,52,52,55,93,44,91,45,49,54,56,46,53,48,52,50,57,54,44,53,51,46,51,54,50,56,56,57,93,44,91,45,49,54,56,46,54,56,57,51,51,55,44,53,51,46,51,48,51,50,55,51,93,44,91,45,49,54,56,46,56,53,57,52,52,57,44,53,51,46,49,56,56,49,53,50,93,44,91,45,49,54,57,46,48,48,51,51,52,54,44,53,50,46,57,57,54,53,53,50,93,44,91,45,49,54,57,46,49,57,55,49,51,51,44,53,50,46,57,54,52,56,56,50,93,44,91,45,49,54,57,46,51,50,54,53,57,50,44,53,50,46,55,53,51,53,52,50,93,44,91,45,49,54,57,46,50,50,56,48,53,56,44,53,50,46,55,49,52,54,49,93,44,91,45,49,54,56,46,56,52,57,52,54,52,44,53,50,46,56,52,48,57,50,49,93,44,91,45,49,54,56,46,55,52,51,48,48,50,44,53,50,46,56,53,52,55,51,49,93,44,91,45,49,54,56,46,53,53,52,54,56,54,44,53,50,46,57,53,53,48,51,54,93,44,91,45,49,54,56,46,52,48,50,54,56,52,44,53,50,46,57,50,57,50,53,51,93,44,91,45,49,54,56,46,50,53,55,55,49,51,44,53,51,46,49,52,49,56,57,53,93,44,91,45,49,54,56,46,48,50,54,50,55,44,53,51,46,50,50,54,49,51,55,93,44,91,45,49,54,55,46,54,54,57,50,55,56,44,53,51,46,49,55,50,48,53,93,44,91,45,49,54,55,46,53,50,50,49,52,49,44,53,51,46,49,56,54,48,48,57,93,44,91,45,49,54,55,46,49,48,54,55,53,56,44,53,51,46,51,54,54,57,57,49,93,44,91,45,49,54,54,46,55,48,49,55,57,44,53,51,46,52,48,50,48,51,51,93,44,91,45,49,54,54,46,51,55,56,54,53,53,44,53,51,46,54,48,50,49,52,49,93,44,91,45,49,54,54,46,49,55,52,57,51,56,44,53,51,46,54,53,57,55,55,56,93,44,91,45,49,54,53,46,57,55,54,51,54,44,53,51,46,55,55,49,48,54,49,93,44,91,45,49,54,53,46,57,54,49,48,56,54,44,53,51,46,57,49,54,50,52,51,93,44,91,45,49,54,54,46,50,50,53,54,52,49,44,53,51,46,57,54,48,50,48,54,93,44,91,45,49,54,54,46,50,50,53,54,52,55,44,53,52,46,48,52,49,57,57,51,93,93,93,44,91,91,91,49,55,50,46,51,52,57,51,52,44,53,50,46,57,50,50,49,57,52,93,44,91,49,55,50,46,55,51,54,57,52,53,44,53,50,46,55,50,55,56,56,55,93,44,91,49,55,50,46,57,52,51,48,56,55,44,53,50,46,54,56,56,56,52,55,93,44,91,49,55,51,46,50,48,57,54,50,56,44,53,50,46,55,51,57,54,53,49,93,44,91,49,55,51,46,51,51,48,50,51,54,44,53,50,46,54,57,50,56,51,51,93,44,91,49,55,51,46,53,56,48,54,52,55,44,53,50,46,56,49,53,52,56,53,93,44,91,49,55,51,46,51,50,49,57,51,56,44,53,50,46,57,57,50,49,50,49,93,44,91,49,55,51,46,49,51,50,50,48,56,44,53,51,46,48,52,51,57,53,56,93,44,91,49,55,50,46,55,51,52,52,49,56,44,53,51,46,48,54,51,54,52,53,93,44,91,49,55,50,46,53,50,55,55,51,44,53,51,46,48,50,51,51,49,56,93,44,91,49,55,50,46,51,52,57,51,52,44,53,50,46,57,50,50,49,57,52,93,93,93,44,91,91,91,45,49,55,48,46,50,55,50,57,57,50,44,53,50,46,55,52,56,53,49,53,93,44,91,45,49,55,48,46,50,53,48,48,54,51,44,53,50,46,54,56,49,48,56,57,93,44,91,45,49,55,48,46,48,51,50,53,56,54,44,53,50,46,54,55,53,55,52,52,93,44,91,45,49,54,57,46,56,52,56,55,53,52,44,53,50,46,55,54,51,49,49,93,44,91,45,49,54,57,46,55,48,51,48,54,49,44,53,50,46,55,49,54,48,57,57,93,44,91,45,49,54,57,46,53,56,56,54,49,51,44,53,50,46,56,48,48,53,54,51,93,44,91,45,49,54,57,46,54,50,55,56,50,52,44,53,50,46,57,50,54,55,52,93,44,91,45,49,54,57,46,54,48,52,52,53,52,44,53,51,46,48,54,50,48,51,49,93,44,91,45,49,54,57,46,55,53,57,49,52,56,44,53,51,46,49,51,52,48,53,52,93,44,91,45,49,54,57,46,56,54,48,55,53,52,44,53,51,46,49,48,53,48,49,50,93,44,91,45,49,54,57,46,56,51,49,56,57,56,44,53,50,46,57,51,53,53,51,56,93,44,91,45,49,55,48,46,48,52,54,49,48,54,44,53,50,46,57,55,51,49,49,54,93,44,91,45,49,55,48,46,49,55,54,56,57,44,53,50,46,57,51,53,49,51,55,93,44,91,45,49,55,48,46,50,55,50,57,57,50,44,53,50,46,55,52,56,53,49,53,93,93,93,44,91,91,91,49,55,56,46,53,51,49,56,49,51,44,53,49,46,54,52,57,54,57,50,93,44,91,49,55,56,46,53,53,49,55,55,51,44,53,49,46,53,57,57,56,53,53,93,44,91,49,55,56,46,55,57,48,50,52,49,44,53,49,46,52,57,50,52,53,56,93,44,91,49,55,56,46,56,57,54,48,49,50,44,53,49,46,52,57,50,53,51,53,93,44,91,49,55,57,46,50,49,56,49,57,54,44,53,49,46,50,57,52,57,56,53,93,44,91,49,55,57,46,53,49,48,56,55,44,53,49,46,51,48,56,50,54,53,93,44,91,49,55,57,46,53,55,56,52,48,54,44,53,49,46,51,53,52,51,52,52,93,44,91,49,55,57,46,52,50,53,50,50,49,44,53,49,46,52,54,50,56,49,55,93,44,91,49,55,57,46,49,55,48,51,50,53,44,53,49,46,53,50,51,48,50,56,93,44,91,49,55,57,46,48,54,48,54,50,44,53,49,46,54,51,50,53,49,93,44,91,49,55,56,46,54,57,56,55,56,52,44,53,49,46,55,48,57,53,54,54,93,44,91,49,55,56,46,53,51,49,56,49,51,44,53,49,46,54,52,57,54,57,50,93,93,93,44,91,91,91,49,55,55,46,49,49,49,57,55,54,44,53,49,46,56,57,48,53,52,50,93,44,91,49,55,55,46,50,57,56,54,49,56,44,53,49,46,55,54,50,56,57,53,93,44,91,49,55,55,46,52,55,53,54,51,50,44,53,49,46,56,54,48,52,48,49,93,44,91,49,55,55,46,56,51,55,48,55,54,44,53,49,46,57,48,50,50,54,57,93,44,91,49,55,55,46,56,52,53,55,48,55,44,53,49,46,57,56,51,55,55,57,93,44,91,49,55,55,46,55,52,53,54,53,53,44,53,50,46,49,52,49,54,48,50,93,44,91,49,55,55,46,53,49,48,55,55,54,44,53,50,46,49,54,49,48,57,55,93,44,91,49,55,55,46,52,49,54,52,51,49,44,53,50,46,48,51,56,49,50,56,93,44,91,49,55,55,46,49,54,53,57,54,50,44,53,49,46,57,52,57,48,51,50,93,44,91,49,55,55,46,49,49,49,57,55,54,44,53,49,46,56,57,48,53,52,50,93,93,93,44,91,91,91,49,55,51,46,50,55,51,52,48,52,44,53,50,46,52,49,48,52,54,49,93,44,91,49,55,51,46,51,48,52,48,52,53,44,53,50,46,51,53,54,52,53,51,93,44,91,49,55,51,46,54,51,56,54,51,51,44,53,50,46,50,57,52,50,53,93,44,91,49,55,51,46,56,49,52,48,55,50,44,53,50,46,51,53,51,51,52,55,93,44,91,49,55,51,46,55,56,49,49,57,54,44,53,50,46,52,52,55,57,53,52,93,44,91,49,55,51,46,56,52,55,55,55,52,44,53,50,46,53,51,55,49,56,53,93,44,91,49,55,51,46,54,48,56,50,53,52,44,53,50,46,53,53,57,56,55,51,93,44,91,49,55,51,46,51,49,53,57,52,44,53,50,46,52,54,52,54,51,56,93,44,91,49,55,51,46,50,55,51,52,48,52,44,53,50,46,52,49,48,52,54,49,93,93,93,44,91,91,91,49,55,56,46,48,48,51,52,53,51,44,53,50,46,48,52,57,53,56,56,93,44,91,49,55,56,46,48,53,57,54,55,53,44,53,49,46,57,52,56,49,49,52,93,44,91,49,55,56,46,49,57,53,56,55,44,53,49,46,57,52,56,56,52,51,93,44,91,49,55,56,46,53,51,49,53,57,49,44,53,49,46,56,52,54,55,49,54,93,44,91,49,55,56,46,54,54,54,57,48,52,44,53,49,46,57,51,48,50,53,50,93,44,91,49,55,56,46,53,49,50,52,49,50,44,53,50,46,48,52,51,52,51,54,93,44,91,49,55,56,46,50,54,55,49,53,57,44,53,50,46,48,51,55,52,53,49,93,44,91,49,55,56,46,49,56,56,56,51,56,44,53,50,46,48,57,56,54,55,55,93,44,91,49,55,56,46,48,48,51,52,53,51,44,53,50,46,48,52,57,53,56,56,93,93,93,44,91,91,91,45,49,55,48,46,53,50,50,55,48,57,44,53,55,46,49,57,51,51,55,52,93,44,91,45,49,55,48,46,52,52,52,49,52,51,44,53,54,46,57,57,54,49,51,52,93,44,91,45,49,55,48,46,49,49,49,55,56,50,44,53,55,46,49,51,54,55,48,57,93,44,91,45,49,55,48,46,48,49,54,53,49,49,44,53,55,46,50,54,54,53,56,49,93,44,91,45,49,55,48,46,49,57,49,48,50,52,44,53,55,46,50,57,55,51,53,49,93,44,91,45,49,55,48,46,52,52,57,53,57,56,44,53,55,46,50,52,57,51,51,50,93,44,91,45,49,55,48,46,53,50,50,55,48,57,44,53,55,46,49,57,51,51,55,52,93,93,93,44,91,91,91,45,49,55,50,46,55,50,48,54,56,57,44,53,50,46,50,54,52,51,54,52,93,44,91,45,49,55,50,46,54,55,54,48,48,56,44,53,50,46,50,49,48,53,55,54,93,44,91,45,49,55,50,46,51,55,55,57,49,53,44,53,50,46,50,50,56,51,54,51,93,44,91,45,49,55,50,46,50,49,48,55,49,50,44,53,50,46,51,49,54,50,54,55,93,44,91,45,49,55,50,46,50,52,57,54,54,44,53,50,46,51,57,51,52,53,52,93,44,91,45,49,55,50,46,51,57,57,50,57,54,44,53,50,46,52,52,52,53,48,53,93,44,91,45,49,55,50,46,54,51,51,50,51,57,44,53,50,46,51,56,55,56,54,51,93,44,91,45,49,55,50,46,55,50,48,54,56,57,44,53,50,46,50,54,52,51,54,52,93,93,93,44,91,91,91,49,55,57,46,51,56,56,55,52,50,44,53,49,46,57,52,49,57,49,55,93,44,91,49,55,57,46,52,56,52,54,48,54,44,53,49,46,56,52,56,48,50,55,93,44,91,49,55,57,46,54,50,51,50,49,50,44,53,49,46,56,49,56,57,56,56,93,44,91,49,55,57,46,55,56,53,48,55,44,53,49,46,56,54,50,54,51,57,93,44,91,49,55,57,46,56,53,57,54,56,49,44,53,49,46,57,54,48,51,54,54,93,44,91,49,55,57,46,54,53,56,51,56,49,44,53,50,46,48,55,56,50,55,93,44,91,49,55,57,46,52,48,56,55,50,57,44,53,50,46,48,48,53,51,53,53,93,44,91,49,55,57,46,51,56,56,55,52,50,44,53,49,46,57,52,49,57,49,55,93,93,93,44,91,91,91,45,49,55,57,46,49,52,57,53,48,53,44,53,49,46,53,55,54,53,57,53,93,44,91,45,49,55,56,46,56,48,48,49,57,51,44,53,49,46,52,56,53,56,53,57,93,44,91,45,49,55,56,46,53,53,48,49,57,51,44,53,49,46,53,48,56,52,56,52,93,44,91,45,49,55,56,46,52,50,49,54,55,54,44,53,49,46,53,56,55,50,56,51,93,44,91,45,49,55,56,46,54,54,48,49,50,50,44,53,49,46,54,54,53,56,55,57,93,44,91,45,49,55,56,46,57,52,57,57,51,54,44,53,49,46,53,57,49,53,52,52,93,44,91,45,49,55,57,46,48,53,54,48,50,57,44,53,49,46,54,52,53,57,55,50,93,44,91,45,49,55,57,46,49,52,57,53,48,53,44,53,49,46,53,55,54,53,57,53,93,93,93,44,91,91,91,45,49,55,48,46,57,50,54,48,51,55,44,53,50,46,53,53,56,54,52,52,93,44,91,45,49,55,48,46,56,50,56,51,49,56,44,53,50,46,52,57,49,57,50,55,93,44,91,45,49,55,48,46,53,51,54,49,51,51,44,53,50,46,53,55,51,56,52,55,93,44,91,45,49,55,48,46,52,56,48,57,57,52,44,53,50,46,54,57,48,52,49,93,44,91,45,49,55,48,46,54,56,48,52,53,50,44,53,50,46,55,52,57,53,56,54,93,44,91,45,49,55,48,46,56,56,56,57,49,51,44,53,50,46,54,52,57,50,55,49,93,44,91,45,49,55,48,46,57,50,54,48,51,55,44,53,50,46,53,53,56,54,52,52,93,93,93,44,91,91,91,45,49,55,57,46,50,51,48,50,51,51,44,53,49,46,50,56,51,57,50,55,93,44,91,45,49,55,57,46,49,56,51,56,49,53,44,53,49,46,49,56,51,55,55,54,93,44,91,45,49,55,57,46,48,55,51,53,57,57,44,53,49,46,49,55,57,48,52,49,93,44,91,45,49,55,56,46,56,51,50,56,48,54,44,53,49,46,51,50,51,53,56,56,93,44,91,45,49,55,56,46,56,55,51,49,54,51,44,53,49,46,52,50,52,55,57,49,93,44,91,45,49,55,57,46,48,48,53,48,52,49,44,53,49,46,52,53,50,54,53,50,93,44,91,45,49,55,57,46,50,51,48,50,51,51,44,53,49,46,50,56,51,57,50,55,93,93,93,44,91,91,91,45,49,54,57,46,56,55,57,54,51,50,44,53,54,46,54,49,52,55,57,57,93,44,91,45,49,54,57,46,54,55,54,48,57,50,44,53,54,46,52,57,54,50,50,54,93,44,91,45,49,54,57,46,53,50,54,54,51,55,44,53,54,46,52,57,50,57,55,54,93,44,91,45,49,54,57,46,51,55,55,53,52,53,44,53,54,46,53,56,55,55,50,57,93,44,91,45,49,54,57,46,53,48,57,50,54,53,44,53,54,46,54,54,55,52,55,49,93,44,91,45,49,54,57,46,56,50,57,51,56,52,44,53,54,46,54,54,57,56,49,54,93,44,91,45,49,54,57,46,56,55,57,54,51,50,44,53,54,46,54,49,52,55,57,57,93,93,93,44,91,91,91,45,49,55,49,46,51,57,51,50,57,54,44,53,50,46,52,56,48,56,53,52,93,44,91,45,49,55,49,46,51,53,56,51,53,51,44,53,50,46,52,49,50,53,52,53,93,44,91,45,49,55,49,46,50,48,54,50,53,57,44,53,50,46,51,57,56,56,57,49,93,44,91,45,49,55,49,46,48,50,50,52,50,57,44,53,50,46,54,48,51,55,49,55,93,44,91,45,49,55,49,46,49,52,48,50,51,52,44,53,50,46,54,51,57,54,51,51,93,44,91,45,49,55,49,46,51,55,52,52,51,51,44,53,50,46,53,51,55,49,49,56,93,44,91,45,49,55,49,46,51,57,51,50,57,54,44,53,50,46,52,56,48,56,53,52,93,93,93,44,91,91,91,49,55,51,46,55,55,51,55,56,51,44,53,50,46,55,56,49,53,56,56,93,44,91,49,55,51,46,56,51,55,57,54,50,44,53,50,46,55,49,54,48,50,51,93,44,91,49,55,52,46,49,54,50,53,49,52,44,53,50,46,54,53,54,55,51,53,93,44,91,49,55,52,46,50,51,50,55,50,55,44,53,50,46,55,53,55,50,57,52,93,44,91,49,55,51,46,56,55,48,54,51,56,44,53,50,46,56,51,52,55,57,93,44,91,49,55,51,46,55,55,51,55,56,51,44,53,50,46,55,56,49,53,56,56,93,93,93,44,91,91,91,49,55,56,46,49,50,51,56,51,50,44,53,49,46,56,52,51,57,56,52,93,44,91,49,55,56,46,50,52,57,56,56,49,44,53,49,46,55,50,52,52,55,52,93,44,91,49,55,56,46,52,57,54,51,52,55,44,53,49,46,55,52,52,53,50,50,93,44,91,49,55,56,46,51,54,56,52,51,52,44,53,49,46,56,54,48,53,51,57,93,44,91,49,55,56,46,50,50,48,48,55,56,44,53,49,46,56,56,56,55,50,56,93,44,91,49,55,56,46,49,50,51,56,51,50,44,53,49,46,56,52,51,57,56,52,93,93,93,44,91,91,91,45,49,55,56,46,57,53,55,50,56,49,44,53,49,46,55,56,48,55,57,57,93,44,91,45,49,55,56,46,56,50,56,48,49,57,44,53,49,46,54,57,52,55,55,54,93,44,91,45,49,55,56,46,54,52,54,56,44,53,49,46,55,57,48,51,93,44,91,45,49,55,56,46,55,56,54,53,51,50,44,53,49,46,56,56,55,56,56,93,44,91,45,49,55,56,46,57,53,55,50,56,49,44,53,49,46,55,56,48,55,57,57,93,93,93,44,91,91,91,49,55,53,46,55,54,53,50,56,51,44,53,50,46,51,56,55,51,50,93,44,91,49,55,53,46,56,51,49,51,57,50,44,53,50,46,51,48,53,53,55,55,93,44,91,49,55,54,46,48,48,57,57,50,53,44,53,50,46,50,57,57,53,53,51,93,44,91,49,55,54,46,48,52,57,49,56,49,44,53,50,46,51,56,53,54,52,93,44,91,49,55,53,46,56,52,49,57,48,57,44,53,50,46,52,52,48,50,56,56,93,44,91,49,55,53,46,55,54,53,50,56,51,44,53,50,46,51,56,55,51,50,93,93,93,44,91,91,91,45,49,55,55,46,53,53,49,55,51,57,44,53,49,46,57,49,53,53,50,53,93,44,91,45,49,55,55,46,52,56,54,55,50,54,44,53,49,46,56,52,51,54,52,57,93,44,91,45,49,55,55,46,51,51,54,52,50,55,44,53,49,46,57,50,49,53,54,49,93,44,91,45,49,55,55,46,52,53,57,53,52,54,44,53,49,46,57,56,50,56,56,52,93,44,91,45,49,55,55,46,53,53,49,55,51,57,44,53,49,46,57,49,53,53,50,53,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,53,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,48,34,44,34,78,65,77,69,34,58,34,75,111,100,105,97,107,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,52,46,57,51,51,54,57,52,44,53,55,46,50,57,52,54,55,56,93,44,91,45,49,53,52,46,54,49,57,55,56,50,44,53,55,46,49,54,50,51,54,93,44,91,45,49,53,52,46,53,55,55,52,56,51,44,53,54,46,57,53,50,55,55,51,93,44,91,45,49,53,52,46,51,56,55,55,49,57,44,53,54,46,56,57,53,54,49,56,93,44,91,45,49,53,52,46,51,56,53,53,50,52,44,53,54,46,56,51,48,50,54,57,93,44,91,45,49,53,52,46,50,49,55,56,50,54,44,53,54,46,55,50,48,52,54,55,93,44,91,45,49,53,52,46,51,54,48,49,48,56,44,53,54,46,54,51,51,53,50,52,93,44,91,45,49,53,52,46,53,48,55,53,50,44,53,54,46,54,53,56,56,52,52,93,44,91,45,49,53,52,46,55,53,56,49,48,54,44,53,54,46,53,53,57,56,49,53,93,44,91,45,49,53,52,46,56,57,51,56,52,55,44,53,54,46,52,52,52,55,50,52,93,44,91,45,49,53,52,46,55,50,53,55,51,50,44,53,54,46,51,53,53,50,49,57,93,44,91,45,49,53,52,46,52,57,56,50,48,57,44,53,54,46,52,53,53,55,56,52,93,44,91,45,49,53,51,46,57,51,54,50,55,54,44,53,54,46,52,53,51,52,54,49,93,44,91,45,49,53,51,46,56,48,54,54,48,53,44,53,54,46,53,48,57,51,54,93,44,91,45,49,53,51,46,56,48,48,52,51,50,44,53,54,46,54,56,57,57,50,56,93,44,91,45,49,53,51,46,54,49,53,49,56,44,53,54,46,56,51,52,51,56,53,93,44,91,45,49,53,51,46,52,48,52,53,50,57,44,53,54,46,57,53,48,55,55,51,93,44,91,45,49,53,51,46,49,56,48,57,53,57,44,53,54,46,57,54,48,54,56,93,44,91,45,49,53,51,46,48,57,56,50,56,57,44,53,55,46,48,52,48,51,49,51,93,44,91,45,49,53,50,46,56,51,52,49,54,50,44,53,55,46,48,57,52,52,50,53,93,44,91,45,49,53,50,46,55,56,53,50,48,54,44,53,55,46,49,57,50,52,53,55,93,44,91,45,49,53,50,46,53,50,56,55,53,56,44,53,55,46,51,50,55,51,50,55,93,44,91,45,49,53,50,46,50,53,56,52,56,49,44,53,55,46,51,50,51,52,50,57,93,44,91,45,49,53,50,46,49,53,54,53,49,54,44,53,55,46,52,48,53,56,53,53,93,44,91,45,49,53,50,46,50,50,50,52,51,55,44,53,55,46,52,55,53,50,57,57,93,44,91,45,49,53,50,46,48,51,49,48,48,54,44,53,55,46,54,50,56,54,51,49,93,44,91,45,49,53,50,46,50,50,48,50,49,49,44,53,55,46,57,51,48,50,50,51,93,44,91,45,49,53,50,46,52,49,52,52,53,51,44,53,56,46,48,51,54,53,55,55,93,44,91,45,49,53,50,46,48,51,51,53,49,57,44,53,56,46,49,49,49,55,56,49,93,44,91,45,49,53,49,46,55,54,52,48,50,44,53,56,46,49,51,54,54,50,54,93,44,91,45,49,53,49,46,54,57,48,53,48,53,44,53,56,46,50,51,53,49,51,52,93,44,91,45,49,53,49,46,55,49,50,56,48,52,44,53,56,46,51,55,51,57,56,93,44,91,45,49,53,49,46,56,57,53,50,49,54,44,53,56,46,51,55,49,55,48,53,93,44,91,45,49,53,50,46,49,50,54,51,52,56,44,53,56,46,52,52,57,53,56,57,93,44,91,45,49,53,50,46,50,52,55,55,49,50,44,53,56,46,54,56,48,55,50,56,93,44,91,45,49,53,50,46,52,55,51,53,54,57,44,53,56,46,55,53,55,50,53,56,93,44,91,45,49,53,50,46,54,57,56,52,49,51,44,53,56,46,54,52,56,54,52,52,93,44,91,45,49,53,51,46,50,48,48,48,51,53,44,53,56,46,50,54,54,50,53,50,93,44,91,45,49,53,51,46,53,48,48,49,51,53,44,53,56,46,48,55,57,53,53,53,93,44,91,45,49,53,51,46,53,51,56,57,52,54,44,53,56,46,48,48,55,51,54,54,93,44,91,45,49,53,51,46,55,56,54,54,50,50,44,53,55,46,57,49,55,55,49,50,93,44,91,45,49,53,51,46,56,55,48,53,54,55,44,53,55,46,57,50,56,55,55,57,93,44,91,45,49,53,52,46,50,52,48,48,54,53,44,53,55,46,55,49,53,52,54,55,93,44,91,45,49,53,52,46,52,48,55,48,49,49,44,53,55,46,54,57,48,53,50,53,93,44,91,45,49,53,52,46,55,48,51,49,52,53,44,53,55,46,53,52,50,48,49,54,93,44,91,45,49,53,52,46,57,51,51,54,57,52,44,53,55,46,50,57,52,54,55,56,93,93,93,44,91,91,91,45,49,53,52,46,51,48,53,54,57,49,44,53,56,46,54,53,50,55,53,49,93,44,91,45,49,53,52,46,51,48,51,52,52,55,44,53,56,46,52,54,48,51,56,53,93,44,91,45,49,53,52,46,52,54,53,55,52,49,44,53,56,46,51,54,49,51,53,54,93,44,91,45,49,53,52,46,55,51,48,51,54,57,44,53,56,46,51,48,52,54,54,57,93,44,91,45,49,53,53,46,48,48,56,49,51,50,44,53,56,46,50,57,48,57,48,53,93,44,91,45,49,53,53,46,48,53,55,55,52,49,44,53,56,46,50,51,54,50,48,57,93,44,91,45,49,53,53,46,51,51,49,57,52,53,44,53,56,46,49,57,51,50,56,51,93,44,91,45,49,53,53,46,51,51,48,50,52,53,44,53,55,46,56,55,54,51,52,51,93,44,91,45,49,53,53,46,53,51,56,56,51,44,53,55,46,55,57,57,56,48,54,93,44,91,45,49,53,53,46,54,57,51,55,55,51,44,53,55,46,55,57,55,57,56,55,93,44,91,45,49,53,53,46,55,54,56,48,50,50,44,53,55,46,54,54,56,50,54,49,93,44,91,45,49,53,54,46,50,48,56,48,50,49,44,53,55,46,53,50,50,57,54,51,93,44,91,45,49,53,54,46,51,55,48,50,51,53,44,53,55,46,53,50,50,51,54,56,93,44,91,45,49,53,54,46,55,53,48,55,56,44,53,55,46,50,51,53,55,57,53,93,44,91,45,49,53,54,46,55,53,48,56,49,53,44,53,55,46,49,54,50,56,55,56,93,44,91,45,49,53,54,46,51,53,53,51,57,50,44,53,55,46,49,53,57,57,51,49,93,44,91,45,49,53,54,46,51,50,56,48,50,51,44,53,55,46,48,53,51,50,56,56,93,44,91,45,49,53,54,46,50,50,55,56,49,49,44,53,55,46,49,54,50,52,53,53,93,44,91,45,49,53,54,46,49,54,55,49,57,54,44,53,55,46,51,52,53,56,53,50,93,44,91,45,49,53,53,46,57,51,57,55,53,56,44,53,55,46,52,49,50,56,55,93,44,91,45,49,53,53,46,56,52,52,52,56,53,44,53,55,46,52,57,55,53,49,51,93,44,91,45,49,53,53,46,54,52,53,53,48,51,44,53,55,46,53,50,50,51,53,56,93,44,91,45,49,53,53,46,54,51,50,53,54,55,44,53,55,46,53,56,54,56,49,51,93,44,91,45,49,53,53,46,51,48,48,51,57,55,44,53,55,46,54,52,50,56,57,52,93,44,91,45,49,53,52,46,57,57,52,48,49,55,44,53,55,46,56,54,51,49,56,56,93,44,91,45,49,53,52,46,57,52,48,55,52,50,44,53,55,46,57,55,53,48,55,49,93,44,91,45,49,53,52,46,51,57,48,55,52,52,44,53,55,46,57,57,57,51,48,49,93,44,91,45,49,53,52,46,49,49,57,53,54,53,44,53,56,46,49,49,51,50,50,56,93,44,91,45,49,53,51,46,57,55,48,48,51,56,44,53,56,46,51,49,50,55,50,52,93,44,91,45,49,53,51,46,56,53,56,53,53,55,44,53,56,46,51,55,52,50,55,52,93,44,91,45,49,53,51,46,56,56,49,55,57,52,44,53,56,46,52,53,54,52,57,57,93,44,91,45,49,53,51,46,53,49,53,49,53,44,53,56,46,53,52,56,51,57,55,93,44,91,45,49,53,51,46,52,55,56,55,55,54,44,53,56,46,54,52,49,54,57,52,93,44,91,45,49,53,51,46,49,54,54,56,52,54,44,53,56,46,55,53,53,49,55,53,93,44,91,45,49,53,51,46,49,56,52,48,56,54,44,53,56,46,57,48,53,55,50,57,93,44,91,45,49,53,51,46,50,53,51,54,49,51,44,53,56,46,56,53,53,48,51,54,93,44,91,45,49,53,51,46,54,51,57,52,48,51,44,53,56,46,56,53,53,48,50,57,93,44,91,45,49,53,51,46,54,51,57,48,50,55,44,53,56,46,55,51,57,52,53,93,44,91,45,49,53,51,46,56,49,55,48,55,54,44,53,56,46,55,51,57,52,52,54,93,44,91,45,49,53,51,46,56,49,55,48,55,54,44,53,56,46,54,53,50,55,54,93,44,91,45,49,53,52,46,51,48,53,54,57,49,44,53,56,46,54,53,50,55,53,49,93,93,93,44,91,91,91,45,49,53,50,46,52,54,54,53,50,55,44,53,56,46,57,49,52,57,57,53,93,44,91,45,49,53,50,46,51,56,51,50,57,52,44,53,56,46,56,50,56,50,57,93,44,91,45,49,53,50,46,49,51,52,48,55,50,44,53,56,46,56,53,56,49,49,56,93,44,91,45,49,53,49,46,57,56,49,53,56,50,44,53,56,46,56,51,55,50,55,55,93,44,91,45,49,53,49,46,56,53,51,56,56,57,44,53,56,46,57,48,56,55,54,52,93,44,91,45,49,53,50,46,48,49,57,53,53,53,44,53,57,46,48,49,48,57,50,49,93,44,91,45,49,53,50,46,52,49,52,48,48,51,44,53,56,46,57,57,50,50,51,51,93,44,91,45,49,53,50,46,52,54,54,53,50,55,44,53,56,46,57,49,52,57,57,53,93,93,93,44,91,91,91,45,49,53,54,46,57,48,50,48,51,51,44,53,54,46,49,54,53,52,52,53,93,44,91,45,49,53,54,46,56,49,55,49,55,44,53,54,46,49,48,52,48,57,54,93,44,91,45,49,53,54,46,56,50,50,50,48,57,44,53,53,46,57,54,55,53,53,54,93,44,91,45,49,53,54,46,54,55,53,52,50,55,44,53,53,46,57,53,54,55,55,93,44,91,45,49,53,54,46,53,53,51,51,50,52,44,53,54,46,48,50,55,48,55,53,93,44,91,45,49,53,54,46,54,57,48,54,50,54,44,53,54,46,50,53,55,50,52,57,93,44,91,45,49,53,54,46,56,55,50,50,50,56,44,53,54,46,50,52,55,48,50,51,93,44,91,45,49,53,54,46,57,48,50,48,51,51,44,53,54,46,49,54,53,52,52,53,93,93,93,44,91,91,91,45,49,53,53,46,56,51,54,56,44,53,53,46,56,48,48,56,50,52,93,44,91,45,49,53,53,46,55,57,52,51,52,57,44,53,53,46,55,50,57,53,57,52,93,44,91,45,49,53,53,46,53,50,56,48,57,50,44,53,53,46,55,48,53,56,52,56,93,44,91,45,49,53,53,46,52,55,52,55,53,49,44,53,53,46,55,52,49,52,53,57,93,44,91,45,49,53,53,46,52,55,52,51,53,51,44,53,53,46,57,49,51,53,57,52,93,44,91,45,49,53,53,46,54,55,54,55,54,53,44,53,53,46,57,48,55,54,54,51,93,44,91,45,49,53,53,46,56,51,54,56,44,53,53,46,56,48,48,56,50,52,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,83,116,97,102,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,49,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,49,50,53,56,51,44,51,56,46,50,54,49,48,56,56,93,44,91,45,57,56,46,57,49,51,49,51,54,44,51,56,46,48,48,48,52,53,49,93,44,91,45,57,57,46,48,50,50,49,51,54,44,51,56,46,48,48,48,50,51,54,93,44,91,45,57,57,46,48,49,51,51,49,56,44,51,55,46,56,50,53,51,51,54,93,44,91,45,57,56,46,52,55,50,50,53,55,44,51,55,46,56,50,52,52,57,55,93,44,91,45,57,56,46,52,55,50,55,57,52,44,51,56,46,49,55,50,55,53,55,93,44,91,45,57,56,46,52,55,57,56,52,49,44,51,56,46,50,54,48,55,57,93,44,91,45,57,56,46,57,49,50,53,56,51,44,51,56,46,50,54,49,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,49,34,44,34,78,65,77,69,34,58,34,84,101,108,102,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,55,55,52,54,57,44,51,49,46,56,52,55,56,53,55,93,44,91,45,56,50,46,57,57,53,54,57,56,44,51,49,46,55,56,48,57,56,51,93,44,91,45,56,50,46,56,51,54,51,54,54,44,51,49,46,56,49,54,49,53,52,93,44,91,45,56,50,46,54,52,53,54,53,57,44,51,49,46,57,49,56,56,56,51,93,44,91,45,56,50,46,55,50,56,56,48,54,44,51,50,46,48,48,54,55,48,52,93,44,91,45,56,50,46,56,56,55,54,53,55,44,51,50,46,48,55,57,56,57,49,93,44,91,45,56,50,46,57,50,55,56,54,53,44,51,50,46,49,51,53,50,55,52,93,44,91,45,56,51,46,50,48,53,55,51,57,44,51,49,46,57,48,48,51,50,53,93,44,91,45,56,51,46,49,55,55,52,54,57,44,51,49,46,56,52,55,56,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,54,57,57,44,34,98,101,100,115,34,58,50,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,55,51,57,50,50,44,52,50,46,48,56,50,52,51,93,44,91,45,56,51,46,55,54,51,49,53,44,52,49,46,55,50,51,53,53,50,93,44,91,45,56,51,46,52,49,53,56,53,49,44,52,49,46,55,51,51,55,57,52,93,44,91,45,56,51,46,49,49,50,52,54,44,52,49,46,57,53,57,52,49,93,44,91,45,56,51,46,49,52,51,57,53,54,44,52,50,46,48,50,55,57,51,93,44,91,45,56,51,46,50,57,53,48,54,51,44,52,50,46,48,57,52,50,51,55,93,44,91,45,56,51,46,53,51,57,51,57,54,44,52,50,46,48,56,53,53,57,56,93,44,91,45,56,51,46,55,55,51,57,50,50,44,52,50,46,48,56,50,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,50,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,57,56,51,57,44,52,48,46,55,51,54,53,52,49,93,44,91,45,56,55,46,48,57,53,51,53,55,44,52,48,46,53,54,50,56,57,53,93,44,91,45,56,54,46,55,55,49,50,57,51,44,52,48,46,53,54,50,48,56,50,93,44,91,45,56,54,46,55,52,55,55,54,52,44,52,48,46,55,51,55,53,52,93,44,91,45,56,54,46,53,56,49,55,51,57,44,52,48,46,55,51,53,55,54,53,93,44,91,45,56,54,46,53,56,49,53,51,50,44,52,48,46,57,49,48,57,50,53,93,44,91,45,56,54,46,57,51,48,55,53,57,44,52,48,46,57,49,50,52,49,56,93,44,91,45,56,54,46,57,56,54,52,51,56,44,52,48,46,56,51,55,57,50,49,93,44,91,45,56,55,46,48,57,57,55,57,51,44,52,48,46,56,51,55,54,48,55,93,44,91,45,56,55,46,48,57,56,51,57,44,52,48,46,55,51,54,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,78,111,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,52,53,49,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,51,53,48,55,44,52,49,46,52,51,54,56,53,54,93,44,91,45,56,53,46,54,53,49,57,50,56,44,52,49,46,50,57,52,55,55,54,93,44,91,45,56,53,46,53,51,55,49,56,44,52,49,46,50,54,54,49,53,55,93,44,91,45,56,53,46,51,48,55,55,56,49,44,52,49,46,50,54,52,49,53,56,93,44,91,45,56,53,46,49,57,50,48,57,52,44,52,49,46,50,54,52,50,48,57,93,44,91,45,56,53,46,49,57,52,48,56,52,44,52,49,46,53,50,54,52,51,55,93,44,91,45,56,53,46,54,53,52,55,52,55,44,52,49,46,53,50,51,51,52,55,93,44,91,45,56,53,46,54,53,51,53,48,55,44,52,49,46,52,51,54,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,49,53,52,48,54,44,51,55,46,52,50,51,57,55,50,93,44,91,45,56,56,46,52,55,52,48,57,44,51,55,46,51,57,49,56,54,51,93,44,91,45,56,56,46,53,48,55,48,54,50,44,51,55,46,50,53,57,54,56,57,93,44,91,45,56,56,46,52,50,52,54,48,51,44,51,55,46,49,53,49,55,54,52,93,44,91,45,56,56,46,52,57,48,52,49,49,44,51,55,46,48,54,56,53,55,57,93,44,91,45,56,56,46,53,54,54,48,54,49,44,51,55,46,48,55,53,50,48,52,93,44,91,45,56,56,46,52,56,50,57,53,55,44,51,55,46,48,50,50,53,54,54,93,44,91,45,56,56,46,51,55,48,52,54,51,44,51,55,46,48,54,51,50,55,56,93,44,91,45,56,56,46,50,52,48,51,55,49,44,51,54,46,57,56,49,57,49,49,93,44,91,45,56,56,46,49,57,51,53,49,57,44,51,55,46,49,52,55,50,53,54,93,44,91,45,56,56,46,50,49,56,57,56,44,51,55,46,50,55,51,49,52,53,93,44,91,45,56,56,46,51,53,56,52,54,54,44,51,55,46,52,48,52,55,53,50,93,44,91,45,56,56,46,52,49,53,52,48,54,44,51,55,46,52,50,51,57,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,77,105,108,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,51,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,52,49,54,55,51,44,51,49,46,50,53,56,57,54,55,93,44,91,45,56,52,46,57,49,55,52,50,49,44,51,49,46,50,53,53,57,57,93,44,91,45,56,52,46,57,50,50,52,50,51,44,51,49,46,48,55,50,53,57,93,44,91,45,56,52,46,55,51,48,56,53,53,44,51,49,46,48,54,57,49,57,93,44,91,45,56,52,46,53,52,50,54,53,51,44,51,49,46,48,55,57,48,50,57,93,44,91,45,56,52,46,53,51,55,49,48,49,44,51,49,46,50,53,53,57,51,50,93,44,91,45,56,52,46,54,52,49,54,55,51,44,51,49,46,50,53,56,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,55,49,49,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,56,50,56,51,48,49,44,51,53,46,50,54,51,54,55,55,93,44,91,45,56,54,46,56,51,54,51,48,54,44,51,52,46,57,57,49,56,57,57,93,44,91,45,56,54,46,55,56,51,54,50,56,44,51,52,46,57,57,49,57,52,56,93,44,91,45,56,54,46,51,49,56,55,54,49,44,51,52,46,57,57,49,49,54,57,93,44,91,45,56,54,46,51,49,56,49,54,56,44,51,53,46,49,50,54,57,56,54,93,44,91,45,56,54,46,53,50,53,51,48,54,44,51,53,46,51,53,52,55,49,56,93,44,91,45,56,54,46,53,57,57,52,55,56,44,51,53,46,51,54,52,57,53,93,44,91,45,56,54,46,55,52,54,56,57,57,44,51,53,46,50,53,50,56,55,56,93,44,91,45,56,54,46,56,50,56,51,48,49,44,51,53,46,50,54,51,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,49,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,55,56,54,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,50,52,48,53,52,44,51,56,46,49,52,55,52,51,56,93,44,91,45,56,53,46,49,48,49,54,52,54,44,51,56,46,48,51,55,50,55,93,44,91,45,56,53,46,48,50,51,55,49,49,44,51,56,46,49,50,57,48,53,50,93,44,91,45,56,52,46,57,57,55,54,54,55,44,51,56,46,51,51,53,53,56,54,93,44,91,45,56,53,46,50,56,51,48,56,50,44,51,56,46,51,53,56,48,53,52,93,44,91,45,56,53,46,52,54,56,50,48,54,44,51,56,46,50,56,53,51,48,57,93,44,91,45,56,53,46,52,50,52,48,53,52,44,51,56,46,49,52,55,52,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,57,57,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,50,54,50,56,55,44,52,49,46,48,52,54,53,56,49,93,44,91,45,57,55,46,56,50,53,55,50,51,44,52,48,46,54,57,56,53,53,53,93,44,91,45,57,55,46,56,50,52,55,56,44,52,48,46,54,57,56,53,51,55,93,44,91,45,57,55,46,51,54,56,52,48,49,44,52,48,46,54,57,56,54,50,53,93,44,91,45,57,55,46,51,54,56,49,49,56,44,52,49,46,48,52,54,57,52,55,93,44,91,45,57,55,46,56,50,54,50,56,55,44,52,49,46,48,52,54,53,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,48,50,51,44,34,98,101,100,115,34,58,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,51,55,52,50,53,44,52,48,46,48,54,57,57,52,53,93,44,91,45,55,55,46,49,56,53,54,51,44,52,48,46,48,50,57,53,48,49,93,44,91,45,55,55,46,52,48,51,54,48,54,44,51,57,46,57,57,52,52,55,56,93,44,91,45,55,55,46,52,55,49,48,56,53,44,51,57,46,57,52,52,48,55,55,93,44,91,45,55,55,46,52,53,57,49,51,52,44,51,57,46,55,49,57,57,56,52,93,44,91,45,55,55,46,50,49,55,48,50,52,44,51,57,46,55,49,57,56,54,49,93,44,91,45,55,54,46,57,57,57,51,49,56,44,51,57,46,55,50,48,49,48,54,93,44,91,45,55,54,46,57,53,52,57,51,50,44,51,57,46,56,53,54,56,53,93,44,91,45,55,55,46,48,49,56,54,52,56,44,52,48,46,48,49,51,57,52,55,93,44,91,45,55,55,46,49,51,55,52,50,53,44,52,48,46,48,54,57,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,49,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,57,51,48,57,57,44,51,51,46,49,49,56,54,54,56,93,44,91,45,56,49,46,51,54,52,56,53,55,44,51,51,46,49,48,56,48,54,49,93,44,91,45,56,49,46,53,52,49,56,56,49,44,51,51,46,49,53,56,50,55,57,93,44,91,45,56,49,46,54,49,52,48,51,51,44,51,51,46,48,57,53,50,53,49,93,44,91,45,56,49,46,53,52,49,56,51,49,44,51,51,46,48,52,53,54,53,52,93,44,91,45,56,49,46,52,50,54,52,55,53,44,51,50,46,56,52,48,55,55,51,93,44,91,45,56,49,46,52,48,53,48,53,52,44,51,50,46,55,52,52,57,53,55,93,44,91,45,56,49,46,50,54,49,54,54,50,44,51,50,46,56,51,57,49,51,57,93,44,91,45,56,49,46,50,49,57,53,54,51,44,51,50,46,57,53,51,51,53,93,44,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,44,91,45,56,49,46,49,57,51,48,57,57,44,51,51,46,49,49,56,54,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,97,118,105,100,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,48,49,55,44,34,98,101,100,115,34,58,52,51,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,49,51,50,51,51,44,51,54,46,51,56,50,54,50,49,93,44,91,45,56,54,46,57,57,55,55,48,53,44,51,54,46,49,50,56,53,49,50,93,44,91,45,56,55,46,48,53,51,55,50,50,44,51,54,46,48,52,53,53,56,50,93,44,91,45,56,54,46,55,57,48,56,55,53,44,51,54,46,48,51,54,55,49,53,93,44,91,45,56,54,46,54,49,56,56,57,50,44,51,53,46,57,54,56,50,50,52,93,44,91,45,56,54,46,53,49,53,53,56,57,44,51,54,46,49,48,48,54,49,93,44,91,45,56,54,46,53,57,52,50,56,54,44,51,54,46,50,52,53,49,48,53,93,44,91,45,56,54,46,55,53,52,55,57,53,44,51,54,46,52,48,53,52,57,54,93,44,91,45,56,54,46,57,49,51,50,51,51,44,51,54,46,51,56,50,54,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,85,105,110,116,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,50,51,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,56,57,52,52,44,52,48,46,54,54,50,54,48,49,93,44,91,45,49,48,57,46,49,54,49,48,54,51,44,52,48,46,54,56,51,56,49,55,93,44,91,45,49,48,57,46,50,48,51,50,53,44,52,48,46,56,53,56,52,48,49,93,44,91,45,49,48,57,46,51,57,52,52,57,49,44,52,48,46,56,53,56,49,54,54,93,44,91,45,49,48,57,46,56,55,48,50,48,55,44,52,48,46,55,54,51,56,50,57,93,44,91,45,49,48,57,46,57,55,54,52,48,50,44,52,48,46,56,48,57,54,56,54,93,44,91,45,49,48,57,46,57,55,54,56,49,52,44,51,57,46,56,48,54,50,51,93,44,91,45,49,49,48,46,48,50,51,57,54,51,44,51,57,46,52,54,57,50,54,56,93,44,91,45,49,48,57,46,57,53,51,51,52,57,44,51,57,46,52,54,49,56,48,49,93,44,91,45,49,48,57,46,49,48,54,57,55,50,44,51,57,46,52,54,49,57,55,57,93,44,91,45,49,48,57,46,48,53,49,50,50,54,44,51,57,46,52,57,55,55,51,57,93,44,91,45,49,48,57,46,48,53,49,50,50,55,44,51,57,46,54,54,48,52,54,54,93,44,91,45,49,48,57,46,48,53,48,57,52,57,44,52,48,46,50,50,50,54,52,55,93,44,91,45,49,48,57,46,48,52,56,57,52,52,44,52,48,46,54,54,50,54,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,48,52,52,48,44,34,98,101,100,115,34,58,49,51,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,49,55,50,56,54,50,44,52,48,46,52,54,55,48,54,53,93,44,91,45,49,49,50,46,49,57,56,52,54,49,44,52,48,46,51,49,51,50,48,54,93,44,91,45,49,49,50,46,49,52,54,56,53,54,44,52,48,46,49,55,55,56,49,55,93,44,91,45,49,49,50,46,49,55,57,56,44,52,48,46,48,49,49,54,53,54,93,44,91,45,49,49,50,46,48,54,50,53,53,50,44,51,57,46,57,48,52,54,56,93,44,91,45,49,49,50,46,48,51,49,56,51,53,44,51,57,46,55,56,49,49,55,50,93,44,91,45,49,49,49,46,56,50,55,49,48,54,44,51,57,46,57,52,55,48,48,50,93,44,91,45,49,49,49,46,54,52,49,57,52,52,44,51,57,46,56,49,50,56,54,57,93,44,91,45,49,49,49,46,50,52,55,52,57,54,44,51,57,46,56,49,51,48,50,56,93,44,91,45,49,49,48,46,56,53,55,55,56,44,51,57,46,56,49,51,50,56,53,93,44,91,45,49,49,48,46,56,57,49,54,53,53,44,51,57,46,56,57,57,54,53,52,93,44,91,45,49,49,49,46,48,56,51,48,54,49,44,51,57,46,57,52,51,49,57,56,93,44,91,45,49,49,49,46,50,52,57,51,51,57,44,52,48,46,48,53,53,50,49,55,93,44,91,45,49,49,49,46,50,50,53,53,48,55,44,52,48,46,49,54,55,51,50,52,93,44,91,45,49,49,49,46,51,50,49,51,48,53,44,52,48,46,50,56,55,51,55,50,93,44,91,45,49,49,49,46,52,50,56,55,50,56,44,52,48,46,50,56,55,55,54,93,44,91,45,49,49,49,46,53,53,53,50,51,53,44,52,48,46,51,54,50,54,57,54,93,44,91,45,49,49,49,46,54,50,48,52,51,55,44,52,48,46,52,53,53,48,49,56,93,44,91,45,49,49,49,46,53,57,51,57,52,50,44,52,48,46,53,55,55,48,54,54,93,44,91,45,49,49,49,46,57,52,54,52,53,52,44,52,48,46,52,50,52,53,57,52,93,44,91,45,49,49,50,46,49,55,50,56,54,50,44,52,48,46,52,54,55,48,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,57,57,48,49,50,44,51,57,46,54,48,55,49,51,55,93,44,91,45,56,55,46,50,51,56,57,54,52,44,51,57,46,53,50,48,54,50,93,44,91,45,56,55,46,50,52,48,51,55,57,44,51,57,46,50,53,57,48,54,52,93,44,91,45,56,55,46,50,52,48,55,51,55,44,51,57,46,49,55,49,55,55,51,93,44,91,45,56,55,46,48,53,52,53,55,56,44,51,57,46,49,54,56,48,56,54,93,44,91,45,56,55,46,48,53,51,54,52,54,44,51,57,46,51,52,50,54,50,49,93,44,91,45,56,54,46,57,52,50,52,55,51,44,51,57,46,51,52,50,48,52,51,93,44,91,45,56,54,46,57,51,57,57,56,49,44,51,57,46,52,55,51,51,52,53,93,44,91,45,56,55,46,48,49,51,48,54,50,44,51,57,46,54,48,52,55,56,55,93,44,91,45,56,55,46,49,57,57,48,49,50,44,51,57,46,54,48,55,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,75,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,48,55,52,55,44,34,98,101,100,115,34,58,53,55,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,48,53,53,55,51,57,44,52,48,46,54,53,49,55,54,93,44,91,45,55,52,46,48,51,54,50,57,51,44,52,48,46,53,53,49,48,52,50,93,44,91,45,55,51,46,56,55,57,50,50,50,44,52,48,46,53,55,52,54,53,54,93,44,91,45,55,51,46,56,51,51,48,52,49,44,52,48,46,54,50,56,50,54,49,93,44,91,45,55,51,46,57,54,50,52,55,56,44,52,48,46,55,51,54,56,48,50,93,44,91,45,55,52,46,48,51,52,53,55,51,44,52,48,46,54,56,52,56,54,54,93,44,91,45,55,52,46,48,53,53,55,51,57,44,52,48,46,54,53,49,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,53,57,57,55,52,44,51,56,46,54,57,51,48,55,55,93,44,91,45,57,51,46,48,54,55,50,57,49,44,51,56,46,53,50,57,57,57,53,93,44,91,45,57,51,46,48,55,55,54,57,50,44,51,56,46,50,54,51,48,57,50,93,44,91,45,57,51,46,48,50,50,50,55,55,44,51,56,46,49,57,56,54,52,50,93,44,91,45,57,50,46,55,54,52,57,54,51,44,51,56,46,49,56,57,53,51,52,93,44,91,45,57,50,46,54,57,53,56,56,54,44,51,56,46,50,50,50,48,51,49,93,44,91,45,57,50,46,54,56,57,56,51,52,44,51,56,46,51,52,56,52,55,50,93,44,91,45,57,50,46,54,50,53,49,56,57,44,51,56,46,52,51,48,55,55,56,93,44,91,45,57,50,46,56,52,49,56,55,49,44,51,56,46,53,57,54,55,57,50,93,44,91,45,57,50,46,56,51,57,56,51,55,44,51,56,46,54,56,51,57,55,52,93,44,91,45,57,51,46,48,53,57,57,55,52,44,51,56,46,54,57,51,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,72,111,108,109,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,56,53,57,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,50,48,49,49,44,52,48,46,53,54,56,50,48,54,93,44,91,45,56,50,46,49,56,52,54,48,55,44,52,48,46,52,53,54,50,56,93,44,91,45,56,49,46,55,48,57,49,51,50,44,52,48,46,52,52,52,55,55,53,93,44,91,45,56,49,46,54,52,57,49,57,57,44,52,48,46,54,51,53,49,48,54,93,44,91,45,56,49,46,54,53,48,48,52,53,44,52,48,46,54,54,56,49,49,55,93,44,91,45,56,50,46,49,50,54,49,57,57,44,52,48,46,54,54,56,50,50,57,93,44,91,45,56,50,46,50,50,48,49,49,44,52,48,46,53,54,56,50,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,79,115,99,101,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,54,48,57,52,55,44,52,51,46,53,48,48,48,51,54,93,44,91,45,57,53,46,56,54,49,57,49,52,44,52,51,46,50,53,55,53,54,54,93,44,91,45,57,53,46,51,56,56,48,55,56,44,52,51,46,50,53,53,50,50,49,93,44,91,45,57,53,46,51,56,55,55,56,55,44,52,51,46,53,48,48,50,50,54,93,44,91,45,57,53,46,52,53,52,52,51,51,44,52,51,46,53,48,48,54,52,54,93,44,91,45,57,53,46,56,54,48,57,52,55,44,52,51,46,53,48,48,48,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,74,101,110,110,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,55,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,56,56,48,52,44,51,57,46,48,54,56,53,51,54,93,44,91,45,56,53,46,55,57,53,51,53,55,44,51,56,46,56,48,55,53,48,56,93,44,91,45,56,53,46,54,56,51,56,51,57,44,51,56,46,56,49,53,52,48,54,93,44,91,45,56,53,46,52,52,52,56,57,55,44,51,56,46,57,49,50,57,57,56,93,44,91,45,56,53,46,52,52,48,48,53,52,44,51,57,46,49,57,53,54,49,55,93,44,91,45,56,53,46,53,54,54,51,50,44,51,57,46,49,51,50,55,54,49,93,44,91,45,56,53,46,54,56,54,55,56,51,44,51,57,46,49,51,48,56,53,57,93,44,91,45,56,53,46,55,57,56,56,48,52,44,51,57,46,48,54,56,53,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,84,119,105,110,32,70,97,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,54,54,54,44,34,98,101,100,115,34,58,50,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,54,49,54,52,56,55,44,52,50,46,54,52,57,50,57,56,93,44,91,45,49,49,52,46,56,49,57,57,55,49,44,52,50,46,54,54,57,55,52,54,93,44,91,45,49,49,52,46,57,48,49,54,51,54,44,52,50,46,56,53,57,49,48,56,93,44,91,45,49,49,53,46,48,51,55,55,55,52,44,52,50,46,57,49,49,56,54,52,93,44,91,45,49,49,53,46,48,51,55,54,57,55,44,52,50,46,55,54,56,52,49,52,93,44,91,45,49,49,53,46,48,51,56,49,53,55,44,52,49,46,57,57,54,50,55,57,93,44,91,45,49,49,52,46,50,56,49,55,57,57,44,52,49,46,57,57,52,52,52,49,93,44,91,45,49,49,52,46,50,56,53,52,52,56,44,52,50,46,52,49,55,51,51,51,93,44,91,45,49,49,52,46,48,54,57,49,54,50,44,52,50,46,52,49,55,49,50,52,93,44,91,45,49,49,52,46,48,48,48,51,56,56,44,52,50,46,53,50,54,51,55,51,93,44,91,45,49,49,52,46,49,50,52,57,51,52,44,52,50,46,52,57,54,49,51,93,44,91,45,49,49,52,46,50,52,52,55,48,51,44,52,50,46,53,53,57,50,52,52,93,44,91,45,49,49,52,46,54,49,54,52,56,55,44,52,50,46,54,52,57,50,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,50,51,49,44,34,98,101,100,115,34,58,49,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,48,54,55,53,57,44,51,55,46,56,54,51,52,53,55,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,50,55,55,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,48,53,57,93,44,91,45,56,56,46,52,49,50,54,57,55,44,51,55,46,53,57,57,54,50,53,93,44,91,45,56,56,46,51,55,53,52,51,52,44,51,55,46,53,57,57,53,57,53,93,44,91,45,56,56,46,51,55,52,53,51,44,51,55,46,57,48,55,54,55,56,93,44,91,45,56,56,46,55,48,54,54,50,50,44,51,55,46,57,48,54,55,57,55,93,44,91,45,56,56,46,55,48,54,55,53,57,44,51,55,46,56,54,51,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,75,97,108,97,109,97,122,111,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,49,53,55,51,44,34,98,101,100,115,34,58,57,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,54,52,54,57,55,44,52,50,46,52,50,48,55,49,53,93,44,91,45,56,53,46,55,54,50,57,52,51,44,52,50,46,48,54,57,51,50,55,93,44,91,45,56,53,46,50,57,51,54,50,54,44,52,50,46,48,55,49,53,53,51,93,44,91,45,56,53,46,50,57,56,56,55,57,44,52,50,46,52,49,57,56,52,57,93,44,91,45,56,53,46,53,52,51,49,57,49,44,52,50,46,52,50,49,52,51,51,93,44,91,45,56,53,46,55,54,52,54,57,55,44,52,50,46,52,50,48,55,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,54,57,56,55,56,44,51,52,46,48,56,54,49,57,49,93,44,91,45,56,48,46,49,51,53,52,49,51,44,51,52,46,50,56,52,53,53,50,93,44,91,45,56,48,46,50,56,56,54,57,50,44,51,52,46,51,54,52,49,51,57,93,44,91,45,56,48,46,52,50,48,52,56,52,44,51,52,46,50,57,51,48,55,52,93,44,91,45,56,48,46,52,55,57,56,53,55,44,51,52,46,49,54,56,54,57,54,93,44,91,45,56,48,46,52,56,49,51,49,56,44,51,52,46,49,49,50,54,50,50,93,44,91,45,56,48,46,51,50,49,55,50,49,44,51,52,46,48,56,48,51,53,54,93,44,91,45,56,48,46,49,56,48,51,55,49,44,51,51,46,57,53,50,48,48,50,93,44,91,45,56,48,46,48,48,48,53,57,52,44,51,52,46,48,52,55,56,55,55,93,44,91,45,56,48,46,48,54,57,56,55,56,44,51,52,46,48,56,54,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,49,52,54,56,48,56,44,52,52,46,49,54,53,54,54,54,93,44,91,45,49,48,55,46,49,49,48,55,51,52,44,52,51,46,53,48,48,50,56,54,93,44,91,45,49,48,54,46,53,57,52,56,57,55,44,52,51,46,52,57,49,52,55,93,44,91,45,49,48,54,46,48,55,56,48,54,56,44,52,51,46,52,57,52,52,55,49,93,44,91,45,49,48,54,46,48,49,55,51,54,54,44,52,51,46,52,57,52,57,54,57,93,44,91,45,49,48,54,46,48,48,57,54,55,54,44,52,52,46,53,54,51,57,56,49,93,44,91,45,49,48,54,46,52,50,56,56,57,55,44,52,52,46,53,53,54,55,55,55,93,44,91,45,49,48,55,46,51,54,57,54,50,49,44,52,52,46,53,53,57,56,51,55,93,44,91,45,49,48,55,46,50,48,50,48,51,56,44,52,52,46,52,52,54,51,48,53,93,44,91,45,49,48,55,46,49,52,53,48,48,49,44,52,52,46,51,50,52,48,48,52,93,44,91,45,49,48,55,46,49,52,54,56,48,56,44,52,52,46,49,54,53,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,68,97,118,105,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,51,55,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,57,56,55,55,49,44,51,56,46,57,48,51,57,55,52,93,44,91,45,56,55,46,50,52,54,54,44,51,56,46,56,48,55,55,48,49,93,44,91,45,56,55,46,50,55,56,53,53,51,44,51,56,46,54,57,49,51,52,51,93,44,91,45,56,55,46,50,52,50,48,57,55,44,51,56,46,53,52,52,57,51,93,44,91,45,56,55,46,48,55,50,51,54,57,44,51,56,46,53,49,52,55,93,44,91,45,56,54,46,57,50,52,49,56,54,44,51,56,46,53,48,53,51,53,56,93,44,91,45,56,54,46,57,48,52,50,53,50,44,51,56,46,57,48,52,50,48,52,93,44,91,45,56,55,46,48,57,56,55,55,49,44,51,56,46,57,48,51,57,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,114,97,110,100,32,84,114,97,118,101,114,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,55,52,54,44,34,98,101,100,115,34,58,52,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,56,48,54,55,52,44,52,53,46,49,50,48,51,50,54,93,44,91,45,56,53,46,53,53,48,52,53,53,44,52,53,46,48,53,49,48,55,51,93,44,91,45,56,53,46,54,49,56,48,51,51,44,52,52,46,55,55,52,53,53,55,93,44,91,45,56,53,46,56,49,53,49,49,57,44,52,52,46,55,55,52,53,51,52,93,44,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,44,91,45,56,53,46,51,51,52,44,52,52,46,53,49,50,51,48,51,93,44,91,45,56,53,46,51,51,50,56,51,54,44,52,52,46,56,49,50,51,55,50,93,44,91,45,56,53,46,52,55,51,56,52,49,44,52,52,46,56,53,57,52,52,57,93,44,91,45,56,53,46,52,50,55,54,56,56,44,52,52,46,57,54,53,50,55,51,93,44,91,45,56,53,46,52,56,48,54,55,52,44,52,53,46,49,50,48,51,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,54,49,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,50,51,57,51,50,44,51,48,46,56,57,93,44,91,45,57,50,46,57,55,56,52,53,51,44,51,48,46,56,55,56,49,55,53,93,44,91,45,57,50,46,57,55,57,49,55,44,51,48,46,53,57,56,51,52,93,44,91,45,57,51,46,49,51,48,51,56,44,51,48,46,53,57,55,55,55,55,93,44,91,45,57,51,46,49,51,49,49,53,53,44,51,48,46,52,50,51,54,49,50,93,44,91,45,57,50,46,55,55,53,53,53,52,44,51,48,46,52,51,55,54,53,54,93,44,91,45,57,50,46,54,51,48,51,52,55,44,51,48,46,52,56,55,56,55,51,93,44,91,45,57,50,46,53,57,55,51,53,51,44,51,48,46,53,56,49,54,50,51,93,44,91,45,57,50,46,53,57,55,55,52,49,44,51,48,46,56,57,54,49,48,49,93,44,91,45,57,50,46,56,50,51,57,51,50,44,51,48,46,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,117,103,104,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,49,55,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,55,54,51,57,56,44,52,52,46,53,52,56,49,49,49,93,44,91,45,49,48,48,46,53,50,54,52,57,56,44,52,52,46,53,52,55,52,50,50,93,44,91,45,49,48,48,46,53,55,53,55,57,54,44,52,52,46,52,57,49,55,49,51,93,44,91,45,49,48,48,46,51,56,54,51,55,54,44,52,52,46,52,52,48,48,48,56,93,44,91,45,49,48,48,46,51,54,53,51,57,44,52,52,46,51,53,53,53,50,52,93,44,91,45,49,48,48,46,48,56,53,51,51,44,52,52,46,51,48,56,52,53,49,93,44,91,45,57,57,46,57,51,56,50,49,55,44,52,52,46,49,57,53,49,57,53,93,44,91,45,57,57,46,56,56,52,52,56,53,44,52,52,46,49,50,57,53,56,50,93,44,91,45,57,57,46,54,53,52,53,51,54,44,52,52,46,49,48,49,54,56,57,93,44,91,45,57,57,46,54,54,51,53,48,56,44,52,52,46,50,49,55,53,49,55,93,44,91,45,57,57,46,54,55,54,51,57,56,44,52,52,46,53,52,56,49,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,121,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,55,52,50,53,50,44,52,52,46,56,57,55,53,48,51,93,44,91,45,57,57,46,54,55,54,51,57,56,44,52,52,46,53,52,56,49,49,49,93,44,91,45,57,57,46,54,54,51,53,48,56,44,52,52,46,50,49,55,53,49,55,93,44,91,45,57,57,46,53,55,54,53,55,49,44,52,52,46,49,57,50,52,50,49,93,44,91,45,57,57,46,51,48,48,49,56,44,52,52,46,49,57,52,56,51,93,44,91,45,57,57,46,51,49,49,55,53,52,44,52,52,46,56,57,55,50,50,55,93,44,91,45,57,57,46,53,55,50,54,57,57,44,52,52,46,56,57,55,50,54,51,93,44,91,45,57,57,46,54,55,52,50,53,50,44,52,52,46,56,57,55,53,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,114,101,110,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,48,49,55,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,55,52,54,48,49,44,51,51,46,57,52,54,53,50,55,93,44,91,45,56,48,46,50,53,53,57,48,52,44,51,51,46,56,48,51,55,48,56,93,44,91,45,56,48,46,51,57,55,49,51,49,44,51,51,46,55,54,55,56,50,49,93,44,91,45,56,48,46,53,51,52,48,56,53,44,51,51,46,54,52,51,57,49,49,93,44,91,45,56,48,46,52,57,54,50,55,51,44,51,51,46,53,53,56,52,56,49,93,44,91,45,56,48,46,51,53,52,53,51,57,44,51,51,46,52,51,48,52,48,56,93,44,91,45,56,48,46,50,50,50,50,54,55,44,51,51,46,52,52,51,55,49,54,93,44,91,45,56,48,46,49,48,49,54,57,55,44,51,51,46,52,57,54,56,57,49,93,44,91,45,55,57,46,57,55,52,51,56,50,44,51,51,46,55,50,49,53,57,93,44,91,45,55,57,46,57,57,53,54,51,56,44,51,51,46,55,54,55,57,48,54,93,44,91,45,55,57,46,56,55,53,54,50,44,51,51,46,56,56,53,50,52,53,93,44,91,45,55,57,46,57,55,52,54,48,49,44,51,51,46,57,52,54,53,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,83,116,105,108,108,119,97,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,49,48,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,52,49,55,49,53,56,44,52,54,46,48,52,52,55,53,57,93,44,91,45,49,48,57,46,53,48,54,54,48,52,44,52,53,46,57,53,57,49,49,50,93,44,91,45,49,48,57,46,53,54,51,57,48,55,44,52,53,46,55,56,51,52,55,49,93,44,91,45,49,48,57,46,53,54,50,48,55,44,52,53,46,54,48,57,49,49,57,93,44,91,45,49,48,57,46,54,56,53,51,56,53,44,52,53,46,54,48,57,48,50,50,93,44,91,45,49,48,57,46,57,51,50,48,50,53,44,52,53,46,53,50,50,52,53,54,93,44,91,45,49,48,57,46,57,51,49,57,56,52,44,52,53,46,51,52,56,55,53,53,93,44,91,45,49,49,48,46,48,54,52,53,56,49,44,52,53,46,51,52,56,55,53,53,93,44,91,45,49,49,48,46,48,54,52,53,49,56,44,52,53,46,49,55,50,49,50,57,93,44,91,45,49,48,57,46,55,57,56,54,55,51,44,52,53,46,49,54,55,51,51,57,93,44,91,45,49,48,57,46,54,56,55,55,57,50,44,52,53,46,49,54,55,51,51,57,93,44,91,45,49,48,57,46,53,54,49,57,50,52,44,52,53,46,51,54,50,56,52,51,93,44,91,45,49,48,57,46,51,53,54,52,49,55,44,52,53,46,52,54,52,51,50,54,93,44,91,45,49,48,57,46,49,57,49,55,54,49,44,52,53,46,52,54,52,53,48,52,93,44,91,45,49,48,57,46,48,54,56,52,57,56,44,52,53,46,53,56,51,50,52,49,93,44,91,45,49,48,56,46,56,52,51,48,49,54,44,52,53,46,54,49,49,48,52,50,93,44,91,45,49,48,56,46,57,48,52,55,50,54,44,52,53,46,54,56,50,56,50,49,93,44,91,45,49,48,56,46,57,48,49,54,53,53,44,52,53,46,57,53,57,52,49,54,93,44,91,45,49,48,56,46,57,50,52,53,56,57,44,52,54,46,49,51,50,51,55,93,44,91,45,49,48,57,46,52,49,54,50,50,55,44,52,54,46,49,51,50,51,55,49,93,44,91,45,49,48,57,46,52,49,55,49,53,56,44,52,54,46,48,52,52,55,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,108,101,100,115,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,54,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,49,54,48,54,50,44,51,53,46,55,54,49,57,51,57,93,44,91,45,56,53,46,50,53,52,48,54,50,44,51,53,46,55,54,53,54,49,49,93,44,91,45,56,53,46,52,50,51,56,48,52,44,51,53,46,53,54,55,52,50,50,93,44,91,45,56,53,46,52,48,51,50,57,56,44,51,53,46,52,57,50,50,56,93,44,91,45,56,53,46,50,50,53,56,55,55,44,51,53,46,51,53,52,50,55,54,93,44,91,45,56,53,46,49,51,53,49,57,49,44,51,53,46,52,53,56,54,52,57,93,44,91,45,56,53,46,49,48,55,55,54,50,44,51,53,46,53,55,49,51,53,57,93,44,91,45,56,52,46,57,49,54,48,54,50,44,51,53,46,55,54,49,57,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,57,34,44,34,78,65,77,69,34,58,34,84,111,100,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,53,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,53,57,51,55,49,44,51,55,46,48,55,50,52,48,49,93,44,91,45,56,55,46,51,51,53,57,56,44,51,54,46,54,52,49,54,53,57,93,44,91,45,56,55,46,49,49,52,57,56,51,44,51,54,46,54,52,50,51,55,49,93,44,91,45,56,55,46,48,54,48,56,52,57,44,51,54,46,54,52,50,57,54,51,93,44,91,45,56,55,46,48,53,51,49,54,52,44,51,55,46,48,54,49,48,49,57,93,44,91,45,56,55,46,50,53,57,51,55,49,44,51,55,46,48,55,50,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,87,101,97,107,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,54,50,54,44,34,98,101,100,115,34,58,49,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,50,55,51,48,51,44,51,54,46,53,48,50,54,51,51,93,44,91,45,56,56,46,56,49,53,51,56,57,44,51,54,46,52,50,50,53,50,56,93,44,91,45,56,56,46,57,53,48,50,48,53,44,51,54,46,52,48,57,50,52,56,93,44,91,45,56,56,46,57,53,57,56,51,57,44,51,54,46,50,50,50,56,51,52,93,44,91,45,56,56,46,56,51,53,52,53,55,44,51,54,46,49,50,49,52,54,49,93,44,91,45,56,56,46,54,57,50,55,48,57,44,51,54,46,48,54,50,55,52,54,93,44,91,45,56,56,46,53,51,48,51,50,50,44,51,54,46,49,53,50,48,50,51,93,44,91,45,56,56,46,53,49,54,52,48,51,44,51,54,46,53,48,49,53,56,51,93,44,91,45,56,56,46,56,49,54,55,54,51,44,51,54,46,53,48,50,54,54,53,93,44,91,45,56,56,46,56,50,55,51,48,51,44,51,54,46,53,48,50,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,56,52,50,57,44,34,98,101,100,115,34,58,49,57,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,50,53,56,52,52,44,51,55,46,50,56,50,48,49,49,93,44,91,45,57,51,46,54,48,56,56,57,57,44,51,55,46,48,57,56,49,53,51,93,44,91,45,57,51,46,48,54,53,50,55,52,44,51,55,46,48,56,56,54,57,52,93,44,91,45,57,51,46,48,55,51,51,56,44,51,55,46,52,49,52,57,56,57,93,44,91,45,57,51,46,49,56,50,52,56,57,44,51,55,46,52,49,55,50,48,52,93,44,91,45,57,51,46,54,50,49,49,53,51,44,51,55,46,52,50,55,52,50,51,93,44,91,45,57,51,46,54,50,53,56,52,52,44,51,55,46,50,56,50,48,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,101,104,105,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,50,54,49,51,44,34,98,101,100,115,34,58,49,52,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,57,49,52,55,51,44,52,48,46,54,55,55,50,55,93,44,91,45,55,53,46,53,50,57,54,57,52,44,52,48,46,52,52,54,57,57,53,93,44,91,45,55,53,46,52,56,52,48,53,55,44,52,48,46,52,49,56,52,53,49,93,44,91,45,55,53,46,51,51,51,53,49,52,44,52,48,46,53,51,55,48,53,55,93,44,91,45,55,53,46,51,56,51,48,52,57,44,52,48,46,54,50,51,54,54,51,93,44,91,45,55,53,46,52,56,49,52,54,57,44,52,48,46,54,53,53,55,52,52,93,44,91,45,55,53,46,54,48,56,57,56,53,44,52,48,46,55,56,55,51,56,55,93,44,91,45,55,53,46,55,53,55,56,48,55,44,52,48,46,55,51,53,52,49,52,93,44,91,45,55,53,46,56,57,49,52,55,51,44,52,48,46,54,55,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,83,101,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,50,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,49,49,56,44,52,49,46,48,52,54,57,52,55,93,44,91,45,57,55,46,51,54,56,52,48,49,44,52,48,46,54,57,56,54,50,53,93,44,91,45,57,54,46,57,49,51,52,57,51,44,52,48,46,54,57,55,57,52,56,93,44,91,45,57,54,46,57,49,48,57,52,44,52,49,46,48,52,54,49,49,54,93,44,91,45,57,55,46,51,54,56,49,49,56,44,52,49,46,48,52,54,57,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,104,101,109,117,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,55,52,48,44,34,98,101,100,115,34,58,52,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,54,53,48,50,56,44,52,50,46,50,55,56,52,57,53,93,44,91,45,55,54,46,57,54,53,55,50,56,44,52,50,46,48,48,49,50,55,54,93,44,91,45,55,54,46,57,50,55,48,56,52,44,52,50,46,48,48,49,54,55,52,93,44,91,45,55,54,46,53,53,55,54,50,52,44,52,50,46,48,48,48,49,54,93,44,91,45,55,54,46,53,51,56,51,52,57,44,52,50,46,50,56,49,55,53,53,93,44,91,45,55,54,46,54,49,57,51,48,51,44,52,50,46,50,56,50,56,53,51,93,44,91,45,55,54,46,57,54,53,48,50,56,44,52,50,46,50,55,56,52,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,54,53,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,54,52,51,56,49,44,52,50,46,56,54,55,52,54,49,93,44,91,45,55,56,46,52,54,51,57,52,44,52,50,46,53,51,54,51,51,50,93,44,91,45,55,56,46,51,48,56,56,51,57,44,52,50,46,53,50,49,50,49,55,93,44,91,45,55,56,46,48,51,56,50,54,49,44,52,50,46,53,50,49,53,50,50,93,44,91,45,55,55,46,57,53,54,51,51,52,44,52,50,46,54,54,55,51,50,50,93,44,91,45,55,55,46,57,53,52,57,54,52,44,52,50,46,56,54,50,55,53,52,93,44,91,45,55,56,46,52,54,52,51,56,49,44,52,50,46,56,54,55,52,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,83,116,97,110,105,115,108,97,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,57,51,48,49,44,34,98,101,100,115,34,58,49,51,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,57,50,54,52,52,57,44,51,56,46,48,55,55,52,50,49,93,44,91,45,49,50,48,46,57,50,50,49,55,52,44,51,55,46,55,52,55,56,48,54,93,44,91,45,49,50,49,46,49,53,53,56,52,57,44,51,55,46,55,49,57,56,52,52,93,44,91,45,49,50,49,46,52,55,49,57,50,53,44,51,55,46,52,56,49,55,56,51,93,44,91,45,49,50,49,46,52,55,50,54,52,56,44,51,55,46,52,56,50,49,55,93,44,91,45,49,50,49,46,52,49,50,53,52,57,44,51,55,46,51,56,57,52,51,53,93,44,91,45,49,50,49,46,52,53,52,48,48,57,44,51,55,46,50,56,52,48,53,93,44,91,45,49,50,49,46,52,48,52,54,51,54,44,51,55,46,49,53,53,57,56,57,93,44,91,45,49,50,49,46,50,50,54,56,48,52,44,51,55,46,49,51,52,55,55,52,93,44,91,45,49,50,48,46,57,55,50,57,52,49,44,51,55,46,51,51,56,52,56,51,93,44,91,45,49,50,48,46,57,56,51,55,53,54,44,51,55,46,51,57,57,54,52,93,44,91,45,49,50,48,46,51,56,55,54,55,44,51,55,46,54,51,51,51,54,52,93,44,91,45,49,50,48,46,51,56,55,54,49,51,44,51,55,46,54,51,51,55,48,52,93,44,91,45,49,50,48,46,54,53,51,50,55,52,44,51,55,46,56,51,49,56,53,56,93,44,91,45,49,50,48,46,57,50,54,52,52,57,44,51,56,46,48,55,55,52,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,49,55,55,56,44,34,98,101,100,115,34,58,49,50,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,49,50,48,50,51,50,44,52,48,46,57,54,56,55,48,50,93,44,91,45,55,53,46,51,48,48,53,57,52,44,52,48,46,56,53,57,53,54,51,93,44,91,45,55,53,46,52,55,52,49,57,51,44,52,48,46,56,49,52,55,52,54,93,44,91,45,55,53,46,54,48,56,57,56,53,44,52,48,46,55,56,55,51,56,55,93,44,91,45,55,53,46,52,56,49,52,54,57,44,52,48,46,54,53,53,55,52,52,93,44,91,45,55,53,46,51,56,51,48,52,57,44,52,48,46,54,50,51,54,54,51,93,44,91,45,55,53,46,51,51,51,53,49,52,44,52,48,46,53,51,55,48,53,55,93,44,91,45,55,53,46,49,57,54,56,48,51,44,52,48,46,54,48,56,53,56,93,44,91,45,55,53,46,49,55,49,53,56,55,44,52,48,46,55,55,55,55,52,53,93,44,91,45,55,53,46,48,53,51,54,54,52,44,52,48,46,56,55,51,54,54,93,44,91,45,55,53,46,49,50,48,50,51,50,44,52,48,46,57,54,56,55,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,49,50,50,44,34,98,101,100,115,34,58,50,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,48,53,48,55,51,44,51,52,46,54,56,54,48,51,55,93,44,91,45,56,55,46,49,49,48,49,49,49,44,51,52,46,51,49,51,55,57,57,93,44,91,45,56,54,46,53,56,49,57,51,54,44,51,52,46,51,48,52,54,57,52,93,44,91,45,56,54,46,53,53,48,49,54,54,44,51,52,46,53,52,53,57,54,51,93,44,91,45,56,54,46,54,56,57,51,53,51,44,51,52,46,53,56,54,52,50,53,93,44,91,45,56,54,46,55,57,48,48,53,54,44,51,52,46,53,53,48,55,57,93,44,91,45,56,54,46,57,48,55,50,48,53,44,51,52,46,53,55,57,55,57,50,93,44,91,45,56,55,46,49,48,53,48,55,51,44,51,52,46,54,56,54,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,66,114,101,99,107,105,110,114,105,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,57,48,56,53,52,44,51,56,46,48,52,53,55,51,53,93,44,91,45,56,54,46,53,48,55,48,56,57,44,51,55,46,57,50,57,57,49,55,93,44,91,45,56,54,46,54,53,53,50,55,50,44,51,55,46,56,52,50,53,50,49,93,44,91,45,56,54,46,54,51,56,57,51,53,44,51,55,46,54,54,49,56,55,55,93,44,91,45,56,54,46,53,57,50,56,49,44,51,55,46,53,54,52,51,54,93,44,91,45,56,54,46,50,55,53,50,55,44,51,55,46,53,57,51,53,49,57,93,44,91,45,56,54,46,49,53,49,50,56,53,44,51,55,46,55,57,56,56,55,56,93,44,91,45,56,54,46,52,57,48,56,53,52,44,51,56,46,48,52,53,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,71,114,101,110,97,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,50,55,56,44,34,98,101,100,115,34,58,49,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,50,54,48,57,57,44,51,51,46,56,57,55,57,53,55,93,44,91,45,56,57,46,57,50,54,50,57,52,44,51,51,46,56,50,51,56,53,52,93,44,91,45,57,48,46,49,51,54,52,57,49,44,51,51,46,56,48,57,51,49,57,93,44,91,45,57,48,46,49,51,54,55,56,55,44,51,51,46,55,50,49,54,52,56,93,44,91,45,57,48,46,49,50,55,55,55,53,44,51,51,46,54,55,54,57,53,54,93,44,91,45,56,57,46,55,56,54,56,57,44,51,51,46,54,55,54,55,50,55,93,44,91,45,56,57,46,53,48,54,56,55,50,44,51,51,46,54,55,55,54,48,53,93,44,91,45,56,57,46,53,48,55,49,51,53,44,51,51,46,55,50,49,56,49,57,93,44,91,45,56,57,46,53,48,55,51,53,51,44,51,51,46,56,54,55,52,54,57,93,44,91,45,56,57,46,55,54,57,48,53,44,51,51,46,56,54,55,51,51,52,93,44,91,45,56,57,46,57,50,54,48,57,57,44,51,51,46,56,57,55,57,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,51,34,44,34,78,65,77,69,34,58,34,83,105,109,112,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,55,54,51,50,57,54,44,51,54,46,54,52,56,57,53,52,93,44,91,45,56,54,46,53,54,51,57,48,57,44,51,54,46,54,51,51,53,54,50,93,44,91,45,56,54,46,52,49,49,51,55,57,44,51,54,46,54,53,48,57,50,52,93,44,91,45,56,54,46,52,48,53,55,54,57,44,51,54,46,55,55,54,49,56,55,93,44,91,45,56,54,46,53,56,51,50,56,57,44,51,54,46,56,51,48,50,56,50,93,44,91,45,56,54,46,54,49,49,53,56,54,44,51,54,46,56,56,51,48,53,55,93,44,91,45,56,54,46,54,57,48,55,49,57,44,51,54,46,56,52,52,51,93,44,91,45,56,54,46,55,54,51,50,57,54,44,51,54,46,54,52,56,57,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,100,32,73,115,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,52,51,49,50,52,44,52,53,46,48,49,48,56,52,93,44,91,45,55,51,46,51,51,53,48,52,52,44,52,52,46,56,48,52,49,48,57,93,44,91,45,55,51,46,51,56,57,56,50,44,52,52,46,54,49,55,50,49,49,93,44,91,45,55,51,46,51,54,49,52,53,53,44,52,52,46,53,54,51,53,54,51,93,44,91,45,55,51,46,50,51,51,50,48,57,44,52,52,46,54,52,57,55,57,49,93,44,91,45,55,51,46,50,50,56,56,53,52,44,52,52,46,55,50,50,56,54,54,93,44,91,45,55,51,46,49,57,49,57,50,56,44,52,53,46,48,49,51,54,49,53,93,44,91,45,55,51,46,51,52,51,49,50,52,44,52,53,46,48,49,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,48,48,51,44,34,98,101,100,115,34,58,51,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,56,54,54,55,57,44,52,48,46,57,48,49,54,48,57,93,44,91,45,56,49,46,48,56,55,50,56,57,44,52,48,46,55,50,55,56,49,54,93,44,91,45,56,48,46,57,49,55,49,55,50,44,52,48,46,55,50,54,57,51,52,93,44,91,45,56,48,46,56,54,49,57,57,52,44,52,48,46,53,57,57,52,48,52,93,44,91,45,56,48,46,54,54,55,57,53,55,44,52,48,46,53,56,50,52,57,54,93,44,91,45,56,48,46,53,49,56,57,57,49,44,52,48,46,54,51,56,56,48,49,93,44,91,45,56,48,46,53,49,57,48,52,52,44,52,48,46,56,53,49,51,51,57,93,44,91,45,56,48,46,53,49,57,49,53,44,52,48,46,57,48,48,51,50,54,93,44,91,45,56,49,46,48,56,54,54,55,57,44,52,48,46,57,48,49,54,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,78,101,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,56,51,56,56,55,52,44,51,56,46,48,52,55,51,55,93,44,91,45,55,57,46,48,48,53,49,50,57,44,51,55,46,56,56,49,54,57,93,44,91,45,55,57,46,49,53,55,51,57,44,51,55,46,56,57,49,48,48,51,93,44,91,45,55,57,46,49,55,50,49,51,49,44,51,55,46,56,48,51,48,57,55,93,44,91,45,55,56,46,57,54,54,57,50,54,44,51,55,46,54,55,55,48,48,52,93,44,91,45,55,56,46,56,54,57,50,52,53,44,51,55,46,53,52,50,48,57,50,93,44,91,45,55,56,46,56,50,53,50,51,56,44,51,55,46,53,53,50,53,52,50,93,44,91,45,55,56,46,54,52,51,57,49,56,44,51,55,46,55,51,51,48,56,52,93,44,91,45,55,56,46,56,51,56,56,55,52,44,51,56,46,48,52,55,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,79,115,99,101,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,54,49,57,44,34,98,101,100,115,34,58,54,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,53,55,50,54,56,44,50,56,46,51,52,55,48,57,56,93,44,91,45,56,49,46,54,53,55,49,56,57,44,50,56,46,50,53,57,50,49,55,93,44,91,45,56,49,46,53,53,55,52,53,57,44,50,56,46,50,53,57,51,54,50,93,44,91,45,56,49,46,53,50,52,50,50,55,44,50,56,46,49,52,50,56,48,53,93,44,91,45,56,49,46,52,53,53,55,53,56,44,50,56,46,48,56,52,56,57,93,44,91,45,56,49,46,51,52,54,52,49,56,44,50,56,46,48,56,52,54,57,54,93,44,91,45,56,49,46,51,56,49,48,50,50,44,50,55,46,57,56,51,51,57,51,93,44,91,45,56,49,46,50,57,55,49,49,51,44,50,55,46,56,53,57,53,56,50,93,44,91,45,56,49,46,50,49,52,52,48,57,44,50,55,46,56,50,56,53,53,93,44,91,45,56,49,46,49,52,50,49,54,52,44,50,55,46,54,52,51,50,51,56,93,44,91,45,56,48,46,56,55,51,49,53,44,50,55,46,54,52,50,50,56,56,93,44,91,45,56,48,46,56,54,56,56,56,49,44,50,55,46,56,50,50,53,50,50,93,44,91,45,56,48,46,56,54,50,57,48,56,44,50,56,46,51,52,55,52,56,55,93,44,91,45,56,49,46,54,53,55,50,54,56,44,50,56,46,51,52,55,48,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,52,53,56,49,56,44,51,52,46,52,57,51,53,48,54,93,44,91,45,57,50,46,52,48,52,54,56,44,51,52,46,52,53,49,57,49,54,93,44,91,45,57,50,46,53,56,57,52,49,56,44,51,52,46,52,53,53,54,52,49,93,44,91,45,57,50,46,54,54,56,55,49,49,44,51,52,46,52,49,52,50,51,55,93,44,91,45,57,50,46,54,55,56,51,56,51,44,51,52,46,49,52,57,54,50,50,93,44,91,45,57,50,46,52,57,51,54,55,50,44,51,52,46,49,52,52,50,51,52,93,44,91,45,57,50,46,51,51,54,55,54,53,44,51,52,46,48,53,57,54,51,51,93,44,91,45,57,50,46,50,51,51,51,55,54,44,51,52,46,48,54,50,51,49,50,93,44,91,45,57,50,46,50,48,56,48,52,49,44,51,52,46,52,57,50,55,54,53,93,44,91,45,57,50,46,50,52,53,56,49,56,44,51,52,46,52,57,51,53,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,76,97,117,114,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,52,49,56,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,44,91,45,56,51,46,49,51,56,57,57,49,44,51,50,46,52,50,51,48,54,57,93,44,91,45,56,50,46,57,57,48,57,54,55,44,51,50,46,49,52,55,50,55,52,93,44,91,45,56,50,46,56,56,52,56,48,51,44,51,50,46,49,57,54,48,55,50,93,44,91,45,56,50,46,55,50,49,57,54,52,44,51,50,46,51,48,57,50,56,51,93,44,91,45,56,50,46,54,52,55,55,51,51,44,51,50,46,53,49,50,53,48,55,93,44,91,45,56,50,46,54,54,56,53,53,55,44,51,50,46,54,49,50,49,54,52,93,44,91,45,56,50,46,56,54,50,55,54,51,44,51,50,46,55,49,53,55,54,93,44,91,45,56,50,46,57,53,55,48,54,54,44,51,50,46,55,48,56,51,49,56,93,44,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,50,52,56,48,44,34,98,101,100,115,34,58,49,48,51,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,56,52,55,57,52,44,52,48,46,55,57,55,54,56,55,93,44,91,45,55,52,46,48,51,52,53,55,51,44,52,48,46,54,56,52,56,54,54,93,44,91,45,55,51,46,57,54,50,52,55,56,44,52,48,46,55,51,54,56,48,50,93,44,91,45,55,51,46,57,49,50,52,53,54,44,52,48,46,55,57,54,48,57,54,93,44,91,45,55,51,46,57,51,51,56,48,56,44,52,48,46,56,56,50,50,49,52,93,44,91,45,55,51,46,57,56,52,55,57,52,44,52,48,46,55,57,55,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,57,56,48,44,34,98,101,100,115,34,58,52,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,55,57,49,57,44,51,54,46,52,57,57,52,49,52,93,44,91,45,57,52,46,53,54,50,55,50,55,44,51,54,46,49,54,49,56,57,51,93,44,91,45,57,52,46,53,53,50,49,55,50,44,51,54,46,49,48,50,49,50,56,93,44,91,45,57,52,46,51,57,49,49,50,53,44,51,54,46,48,57,57,51,57,54,93,44,91,45,57,52,46,51,51,51,53,54,53,44,51,54,46,50,49,52,55,50,55,93,44,91,45,57,52,46,48,49,55,53,48,57,44,51,54,46,50,48,56,49,52,57,93,44,91,45,57,51,46,56,56,55,55,55,53,44,51,54,46,50,51,53,48,52,54,93,44,91,45,57,51,46,56,49,53,48,55,56,44,51,54,46,51,48,54,53,53,49,93,44,91,45,57,51,46,56,54,54,57,54,49,44,51,54,46,51,52,56,53,55,57,93,44,91,45,57,51,46,56,54,54,54,56,57,44,51,54,46,52,57,56,55,51,53,93,44,91,45,57,52,46,48,55,55,48,56,57,44,51,54,46,52,57,56,55,51,93,44,91,45,57,52,46,54,49,55,57,49,57,44,51,54,46,52,57,57,52,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,73,115,97,98,101,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,52,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,48,52,57,54,53,44,49,56,46,53,54,54,53,54,93,44,91,45,54,55,46,48,53,54,53,48,55,44,49,56,46,52,54,48,57,53,52,93,44,91,45,54,55,46,48,50,55,49,55,51,44,49,56,46,51,57,51,51,55,54,93,44,91,45,54,54,46,57,50,50,48,50,44,49,56,46,51,57,51,50,48,52,93,44,91,45,54,54,46,57,52,53,57,51,56,44,49,56,46,53,52,48,52,49,57,93,44,91,45,54,55,46,49,48,52,57,54,53,44,49,56,46,53,54,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,56,51,55,49,44,34,98,101,100,115,34,58,56,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,48,54,54,50,44,50,57,46,52,56,53,48,52,56,93,44,91,45,56,50,46,52,48,51,50,51,55,44,50,57,46,50,49,53,54,50,51,93,44,91,45,56,50,46,53,51,52,56,54,44,50,57,46,50,49,52,54,56,93,44,91,45,56,50,46,53,51,53,53,57,49,44,50,57,46,48,52,52,56,53,53,93,44,91,45,56,50,46,52,55,55,54,51,57,44,50,57,46,48,53,50,52,56,52,93,44,91,45,56,50,46,51,49,49,54,57,55,44,50,56,46,57,54,48,51,57,49,93,44,91,45,56,49,46,57,53,52,49,57,44,50,56,46,57,54,48,48,53,51,93,44,91,45,56,49,46,54,53,56,54,57,56,44,50,56,46,57,54,48,51,52,53,93,44,91,45,56,49,46,54,52,49,57,49,54,44,50,57,46,50,55,54,55,54,54,93,44,91,45,56,49,46,54,56,48,57,48,51,44,50,57,46,51,50,52,52,51,93,44,91,45,56,49,46,55,55,54,50,48,53,44,50,57,46,52,56,55,52,52,56,93,44,91,45,56,49,46,56,52,51,48,48,57,44,50,57,46,53,50,49,48,48,52,93,44,91,45,56,50,46,48,53,53,56,57,57,44,50,57,46,52,55,49,50,51,50,93,44,91,45,56,50,46,52,48,54,54,50,44,50,57,46,52,56,53,48,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,78,111,116,116,111,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,48,48,44,34,98,101,100,115,34,58,49,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,55,57,53,57,50,54,44,51,55,46,49,57,50,53,57,50,93,44,91,45,55,56,46,50,51,49,50,51,52,44,51,55,46,50,57,54,50,50,93,44,91,45,55,56,46,50,51,57,51,53,52,44,51,55,46,49,50,48,48,56,57,93,44,91,45,55,56,46,49,55,48,56,57,53,44,51,55,46,48,53,51,57,52,57,93,44,91,45,55,56,46,48,48,51,54,51,57,44,51,55,46,48,50,50,55,53,54,93,44,91,45,55,55,46,56,56,57,56,49,51,44,51,54,46,57,56,56,56,49,56,93,44,91,45,55,55,46,57,48,48,51,51,56,44,51,55,46,49,52,51,56,56,50,93,44,91,45,55,55,46,55,57,53,57,50,54,44,51,55,46,49,57,50,53,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,50,57,51,44,34,98,101,100,115,34,58,49,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,49,50,48,50,51,50,44,52,48,46,57,54,56,55,48,50,93,44,91,45,55,53,46,48,53,51,54,54,52,44,52,48,46,56,55,51,54,54,93,44,91,45,55,53,46,49,55,49,53,56,55,44,52,48,46,55,55,55,55,52,53,93,44,91,45,55,53,46,49,57,54,56,48,51,44,52,48,46,54,48,56,53,56,93,44,91,45,55,53,46,49,56,57,54,44,52,48,46,53,57,49,55,55,54,93,44,91,45,55,52,46,57,55,48,49,49,50,44,52,48,46,55,48,57,56,54,50,93,44,91,45,55,52,46,56,56,57,56,49,57,44,52,48,46,55,56,55,55,50,57,93,44,91,45,55,52,46,55,54,57,52,50,53,44,52,48,46,57,49,48,57,51,52,93,44,91,45,55,52,46,57,54,54,57,48,54,44,52,49,46,48,57,52,52,49,93,44,91,45,55,53,46,49,50,48,50,51,50,44,52,48,46,57,54,56,55,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,57,49,57,44,34,98,101,100,115,34,58,49,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,53,50,52,50,57,44,52,50,46,53,49,48,48,49,55,93,44,91,45,55,51,46,55,56,51,55,50,49,44,52,50,46,52,54,52,50,51,49,93,44,91,45,55,51,46,55,56,57,53,48,50,44,52,50,46,50,54,55,55,51,56,93,44,91,45,55,51,46,57,49,48,54,55,53,44,52,50,46,49,50,55,50,57,51,93,44,91,45,55,51,46,57,50,57,54,50,54,44,52,50,46,48,55,56,55,55,56,93,44,91,45,55,51,46,55,49,48,57,51,44,52,50,46,48,48,53,52,56,56,93,44,91,45,55,51,46,53,50,55,48,55,50,44,52,49,46,57,55,55,57,56,93,44,91,45,55,51,46,52,57,55,48,49,56,44,52,50,46,48,52,57,54,50,52,93,44,91,45,55,51,46,53,48,56,50,49,44,52,50,46,48,56,54,49,51,52,93,44,91,45,55,51,46,51,53,50,52,50,57,44,52,50,46,53,49,48,48,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,57,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,57,48,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,115,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,48,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,48,52,48,55,55,44,51,54,46,54,56,52,49,50,55,93,44,91,45,55,57,46,56,53,57,50,54,44,51,54,46,54,54,49,55,51,55,93,44,91,45,55,57,46,56,51,55,51,53,57,44,51,54,46,55,48,52,49,51,55,93,44,91,45,55,57,46,56,55,52,55,54,44,51,54,46,55,49,53,50,51,55,93,44,91,45,55,57,46,57,48,52,48,55,55,44,51,54,46,54,56,52,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,111,99,116,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,56,54,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,53,54,53,50,49,44,51,52,46,49,53,54,57,54,53,93,44,91,45,57,53,46,55,55,57,51,55,54,44,51,52,46,49,53,54,54,57,57,93,44,91,45,57,53,46,57,57,49,53,55,56,44,51,52,46,49,53,54,56,48,53,93,44,91,45,57,53,46,57,51,56,49,53,44,51,52,46,49,50,53,49,93,44,91,45,57,53,46,57,51,55,57,56,57,44,51,51,46,57,52,56,50,49,57,93,44,91,45,57,53,46,55,54,49,53,50,44,51,51,46,56,55,51,49,49,56,93,44,91,45,57,53,46,53,53,50,55,57,57,44,51,51,46,57,50,52,51,49,49,93,44,91,45,57,53,46,53,51,51,55,57,56,44,51,51,46,56,56,49,49,53,51,93,44,91,45,57,53,46,51,49,48,52,57,55,44,51,51,46,56,55,55,50,48,52,93,44,91,45,57,53,46,49,53,53,56,56,50,44,51,51,46,57,51,54,53,55,50,93,44,91,45,57,53,46,49,53,54,53,50,49,44,51,52,46,49,53,54,57,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,105,99,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,48,52,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,55,49,54,49,52,44,51,56,46,57,53,55,56,53,50,93,44,91,45,57,55,46,51,55,49,57,49,49,44,51,56,46,54,48,57,51,53,51,93,44,91,45,57,54,46,57,51,48,50,56,54,44,51,56,46,54,48,57,51,54,50,93,44,91,45,57,54,46,57,50,55,50,51,52,44,51,56,46,56,49,50,49,54,93,44,91,45,57,54,46,56,57,48,50,52,53,44,51,56,46,56,55,48,48,54,55,93,44,91,45,57,54,46,57,54,51,52,55,44,51,56,46,57,54,52,57,48,49,93,44,91,45,57,54,46,57,54,51,49,55,55,44,51,57,46,49,51,50,51,93,44,91,45,57,55,46,51,55,49,49,53,52,44,51,57,46,49,51,49,57,54,49,93,44,91,45,57,55,46,51,55,49,54,49,52,44,51,56,46,57,53,55,56,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,50,55,34,44,34,78,65,77,69,34,58,34,83,116,97,114,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,56,57,52,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,54,57,52,49,54,44,50,54,46,53,55,49,54,56,50,93,44,91,45,57,57,46,48,56,50,48,48,54,44,50,54,46,51,57,54,54,54,55,93,44,91,45,57,56,46,56,57,53,54,57,52,44,50,54,46,51,53,51,52,57,49,93,44,91,45,57,56,46,56,50,48,52,53,50,44,50,54,46,51,55,49,48,48,50,93,44,91,45,57,56,46,54,54,52,54,51,51,44,50,54,46,50,51,53,51,53,49,93,44,91,45,57,56,46,53,56,54,55,49,53,44,50,54,46,50,53,55,53,52,50,93,44,91,45,57,56,46,51,50,48,54,55,44,50,54,46,55,56,51,48,56,49,93,44,91,45,57,56,46,52,50,50,54,49,54,44,50,54,46,55,56,51,53,51,53,93,44,91,45,57,56,46,57,53,52,50,51,44,50,54,46,55,56,53,54,57,52,93,44,91,45,57,57,46,48,49,49,49,49,50,44,50,54,46,54,55,53,48,50,51,93,44,91,45,57,57,46,49,54,57,52,49,54,44,50,54,46,53,55,49,54,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,69,102,102,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,54,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,52,56,48,48,54,44,51,50,46,52,56,57,50,56,54,93,44,91,45,56,49,46,53,51,48,57,50,49,44,51,50,46,51,57,48,51,56,53,93,44,91,45,56,49,46,52,51,53,56,51,44,51,50,46,50,52,49,50,56,57,93,44,91,45,56,49,46,51,57,49,54,57,56,44,51,50,46,48,57,53,56,56,54,93,44,91,45,56,49,46,49,57,53,54,51,52,44,51,50,46,50,51,55,52,57,57,93,44,91,45,56,49,46,49,52,52,53,55,50,44,51,50,46,50,50,54,49,50,56,93,44,91,45,56,49,46,49,50,56,53,51,53,44,51,50,46,51,51,56,51,56,49,93,44,91,45,56,49,46,50,56,49,50,55,44,51,50,46,53,53,54,52,55,49,93,44,91,45,56,49,46,51,56,57,50,48,53,44,51,50,46,53,57,53,52,49,54,93,44,91,45,56,49,46,53,52,56,48,48,54,44,51,50,46,52,56,57,50,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,82,111,103,101,114,32,77,105,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,48,56,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,56,49,48,50,50,44,51,54,46,48,49,50,57,50,53,93,44,91,45,57,57,46,52,57,53,56,49,50,44,51,53,46,57,55,56,55,51,50,93,44,91,45,57,57,46,53,53,56,52,56,54,44,51,53,46,56,54,53,57,56,56,93,44,91,45,57,57,46,55,49,55,49,48,49,44,51,53,46,56,53,57,55,54,57,93,44,91,45,57,57,46,56,57,51,51,55,50,44,51,53,46,57,56,53,50,57,53,93,44,91,45,49,48,48,46,48,48,48,51,57,54,44,51,53,46,56,56,49,50,51,51,93,44,91,45,49,48,48,46,48,48,48,51,57,50,44,51,53,46,54,49,57,49,49,53,93,44,91,45,57,57,46,57,57,57,54,54,44,51,53,46,52,50,50,51,54,52,93,44,91,45,57,57,46,53,55,53,56,50,44,51,53,46,52,50,49,54,53,53,93,44,91,45,57,57,46,53,55,53,55,50,51,44,51,53,46,53,48,56,56,54,52,93,44,91,45,57,57,46,51,54,52,49,52,49,44,51,53,46,53,48,56,55,57,51,93,44,91,45,57,57,46,51,55,53,56,49,55,44,51,53,46,56,49,50,49,56,56,93,44,91,45,57,57,46,51,56,49,48,50,50,44,51,54,46,48,49,50,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,49,48,54,57,44,52,51,46,53,53,51,57,57,49,93,44,91,45,57,48,46,54,55,49,54,53,50,44,52,51,46,53,53,50,56,53,54,93,44,91,45,57,48,46,54,54,56,53,54,49,44,52,51,46,52,50,50,57,57,52,93,44,91,45,57,48,46,54,54,54,55,56,54,44,52,51,46,49,55,49,55,55,55,93,44,91,45,57,48,46,52,50,57,56,50,53,44,52,51,46,50,48,48,57,52,93,44,91,45,57,48,46,49,57,51,56,49,52,44,52,51,46,49,54,52,52,54,52,93,44,91,45,57,48,46,49,57,49,57,54,52,44,52,51,46,53,53,52,57,57,54,93,44,91,45,57,48,46,51,49,49,48,54,57,44,52,51,46,53,53,51,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,76,101,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,49,50,54,44,34,98,101,100,115,34,58,50,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,49,48,49,50,57,44,51,51,46,53,55,48,49,49,55,93,44,91,45,49,48,51,46,55,50,48,56,48,57,44,51,51,46,53,54,57,53,51,55,93,44,91,45,49,48,51,46,55,54,54,51,54,49,44,51,51,46,51,57,53,50,57,55,93,44,91,45,49,48,51,46,55,54,54,52,49,55,44,51,50,46,57,54,53,50,54,52,93,44,91,45,49,48,51,46,56,49,52,53,48,55,44,51,50,46,57,54,53,49,49,52,93,44,91,45,49,48,51,46,56,49,52,50,49,54,44,51,50,46,53,50,50,51,54,56,93,44,91,45,49,48,51,46,55,50,50,57,51,56,44,51,50,46,53,50,50,51,52,52,93,44,91,45,49,48,51,46,55,50,50,56,56,50,44,51,50,46,48,48,48,50,48,54,93,44,91,45,49,48,51,46,51,50,54,53,48,49,44,51,50,46,48,48,48,51,54,57,93,44,91,45,49,48,51,46,48,54,52,53,49,44,51,50,46,48,48,48,52,50,52,93,44,91,45,49,48,51,46,48,54,52,53,49,54,44,51,50,46,48,56,55,48,53,49,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,53,50,50,49,57,51,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,57,53,57,48,57,57,93,44,91,45,49,48,51,46,48,53,54,52,56,53,44,51,51,46,51,56,56,52,49,52,93,44,91,45,49,48,51,46,48,53,50,54,50,49,44,51,51,46,53,55,48,53,55,53,93,44,91,45,49,48,51,46,53,49,48,49,50,57,44,51,51,46,53,55,48,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,97,109,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,51,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,48,55,50,50,57,44,51,52,46,48,53,56,51,51,51,93,44,91,45,56,56,46,50,52,56,57,49,54,44,51,51,46,55,52,52,57,55,55,93,44,91,45,56,56,46,50,55,52,54,49,57,44,51,51,46,53,51,52,48,48,56,93,44,91,45,56,55,46,57,52,54,53,49,57,44,51,51,46,53,50,52,48,54,53,93,44,91,45,56,55,46,57,53,49,55,56,53,44,51,51,46,57,49,57,57,51,93,44,91,45,56,55,46,57,56,54,57,51,44,51,52,46,48,53,50,49,48,50,93,44,91,45,56,56,46,50,48,55,50,50,57,44,51,52,46,48,53,56,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,52,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,52,34,44,34,78,65,77,69,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,56,56,49,56,49,44,49,56,46,51,56,57,52,48,56,93,44,91,45,54,54,46,53,57,48,55,56,53,44,49,56,46,51,51,56,48,54,93,44,91,45,54,54,46,53,51,51,54,50,51,44,49,56,46,51,53,49,51,51,51,93,44,91,45,54,54,46,53,52,51,48,55,57,44,49,56,46,52,48,53,52,50,50,93,44,91,45,54,54,46,53,56,56,49,56,49,44,49,56,46,51,56,57,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,56,54,49,57,51,44,51,53,46,55,49,48,48,53,49,93,44,91,45,56,54,46,55,56,50,48,49,54,44,51,53,46,55,48,54,53,57,53,93,44,91,45,56,54,46,56,52,57,53,55,51,44,51,53,46,53,50,53,53,49,53,93,44,91,45,56,54,46,57,54,48,56,48,52,44,51,53,46,52,49,55,48,50,49,93,44,91,45,56,54,46,56,50,56,51,48,49,44,51,53,46,50,54,51,54,55,55,93,44,91,45,56,54,46,55,52,54,56,57,57,44,51,53,46,50,53,50,56,55,56,93,44,91,45,56,54,46,53,57,57,52,55,56,44,51,53,46,51,54,52,57,53,93,44,91,45,56,54,46,54,53,56,50,52,55,44,51,53,46,52,51,53,50,56,49,93,44,91,45,56,54,46,54,51,57,52,51,54,44,51,53,46,54,56,53,57,93,44,91,45,56,54,46,54,56,54,49,57,51,44,51,53,46,55,49,48,48,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,112,112,111,109,97,116,116,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,56,54,57,50,52,53,44,51,55,46,53,52,50,48,57,50,93,44,91,45,55,57,46,48,50,49,54,56,55,44,51,55,46,52,50,57,50,52,51,93,44,91,45,55,56,46,57,50,54,52,54,44,51,55,46,50,55,55,48,55,49,93,44,91,45,55,56,46,56,50,52,50,48,57,44,51,55,46,50,48,53,51,54,49,93,44,91,45,55,56,46,54,56,49,53,55,51,44,51,55,46,50,52,56,55,53,57,93,44,91,45,55,56,46,53,57,52,52,51,54,44,51,55,46,51,57,55,57,55,52,93,44,91,45,55,56,46,54,56,51,50,50,52,44,51,55,46,52,50,56,57,55,52,93,44,91,45,55,56,46,56,50,53,50,51,56,44,51,55,46,53,53,50,53,52,50,93,44,91,45,55,56,46,56,54,57,50,52,53,44,51,55,46,53,52,50,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,55,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,56,55,55,55,53,44,51,54,46,50,51,53,48,52,54,93,44,91,45,57,51,46,57,52,52,49,55,55,44,51,54,46,48,57,49,49,48,51,93,44,91,45,57,51,46,57,54,50,56,57,50,44,51,53,46,55,54,48,57,51,93,44,91,45,57,51,46,57,49,48,56,51,54,44,51,53,46,55,53,57,55,53,50,93,44,91,45,57,51,46,54,57,53,57,56,49,44,51,53,46,55,54,56,54,52,57,93,44,91,45,57,51,46,53,49,57,50,48,52,44,51,53,46,55,54,51,53,50,49,93,44,91,45,57,51,46,53,50,51,54,51,57,44,51,53,46,56,56,49,53,57,50,93,44,91,45,57,51,46,52,53,48,55,49,53,44,51,53,46,57,54,55,52,57,51,93,44,91,45,57,51,46,52,55,57,53,50,56,44,51,54,46,49,50,53,48,55,50,93,44,91,45,57,51,46,53,53,49,49,51,53,44,51,54,46,49,50,54,50,55,49,93,44,91,45,57,51,46,54,53,55,54,56,57,44,51,54,46,51,48,51,48,56,50,93,44,91,45,57,51,46,56,49,53,48,55,56,44,51,54,46,51,48,54,53,53,49,93,44,91,45,57,51,46,56,56,55,55,55,53,44,51,54,46,50,51,53,48,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,83,104,101,114,105,100,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,49,50,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,51,54,57,54,50,49,44,52,52,46,53,53,57,56,51,55,93,44,91,45,49,48,54,46,52,50,56,56,57,55,44,52,52,46,53,53,54,55,55,55,93,44,91,45,49,48,54,46,48,48,57,54,55,54,44,52,52,46,53,54,51,57,56,49,93,44,91,45,49,48,54,46,48,50,52,56,49,53,44,52,52,46,57,57,51,52,57,53,93,44,91,45,49,48,54,46,50,54,51,55,49,53,44,52,52,46,57,57,51,56,49,54,93,44,91,45,49,48,55,46,48,56,52,56,56,54,44,52,52,46,57,57,54,54,93,44,91,45,49,48,55,46,57,49,49,53,50,51,44,52,53,46,48,48,48,54,55,56,93,44,91,45,49,48,55,46,56,51,49,54,50,50,44,52,52,46,55,57,57,55,56,55,93,44,91,45,49,48,55,46,55,52,49,53,52,51,44,52,52,46,55,49,52,51,53,50,93,44,91,45,49,48,55,46,53,50,56,50,55,57,44,52,52,46,54,54,53,53,56,52,93,44,91,45,49,48,55,46,51,54,57,54,50,49,44,52,52,46,53,53,57,56,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,55,52,51,51,44,34,98,101,100,115,34,58,49,52,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,49,52,57,55,44,52,48,46,51,50,56,52,56,52,93,44,91,45,55,55,46,50,55,48,48,53,55,44,52,48,46,50,55,56,54,53,50,93,44,91,45,55,55,46,52,50,54,53,57,53,44,52,48,46,50,56,54,54,49,93,44,91,45,55,55,46,54,49,52,54,54,53,44,52,48,46,49,57,56,53,52,57,93,44,91,45,55,55,46,52,55,49,48,56,53,44,51,57,46,57,52,52,48,55,55,93,44,91,45,55,55,46,52,48,51,54,48,54,44,51,57,46,57,57,52,52,55,56,93,44,91,45,55,55,46,49,56,53,54,51,44,52,48,46,48,50,57,53,48,49,93,44,91,45,55,55,46,49,51,55,52,50,53,44,52,48,46,48,54,57,57,52,53,93,44,91,45,55,54,46,56,53,57,48,50,51,44,52,48,46,50,50,54,51,50,56,93,44,91,45,55,54,46,57,49,52,57,55,44,52,48,46,51,50,56,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,55,53,49,44,34,98,101,100,115,34,58,52,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,55,49,48,56,53,44,51,57,46,57,52,52,48,55,55,93,44,91,45,55,55,46,54,49,52,54,54,53,44,52,48,46,49,57,56,53,52,57,93,44,91,45,55,55,46,54,55,49,55,54,49,44,52,48,46,50,56,57,56,50,53,93,44,91,45,55,55,46,55,48,51,48,51,44,52,48,46,50,54,51,53,55,54,93,44,91,45,55,55,46,56,54,52,52,56,57,44,52,48,46,48,54,49,53,54,56,93,44,91,45,55,56,46,48,48,50,55,44,51,57,46,56,50,54,53,57,57,93,44,91,45,55,56,46,48,57,57,52,48,51,44,51,57,46,55,50,50,48,57,57,93,44,91,45,55,55,46,52,54,57,49,52,53,44,51,57,46,55,50,48,48,49,56,93,44,91,45,55,55,46,52,53,57,49,51,52,44,51,57,46,55,49,57,57,56,52,93,44,91,45,55,55,46,52,55,49,48,56,53,44,51,57,46,57,52,52,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,117,122,101,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,55,56,56,52,44,34,98,101,100,115,34,58,49,49,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,51,52,54,57,53,44,52,49,46,52,50,55,50,52,54,93,44,91,45,55,54,46,48,48,53,48,55,44,52,49,46,51,56,52,53,53,49,93,44,91,45,55,54,46,50,56,51,49,44,52,49,46,51,55,54,53,49,55,93,44,91,45,55,54,46,51,49,48,49,51,51,44,52,49,46,51,49,48,49,57,57,93,44,91,45,55,54,46,51,49,57,50,51,54,44,52,49,46,50,48,56,48,57,50,93,44,91,45,55,54,46,50,48,55,56,50,55,44,52,48,46,57,52,57,55,52,93,44,91,45,55,53,46,57,57,55,51,52,56,44,52,48,46,57,49,50,57,56,53,93,44,91,45,55,53,46,55,51,49,57,51,44,52,49,46,48,48,56,50,50,93,44,91,45,55,53,46,55,55,49,51,48,54,44,52,49,46,48,55,55,56,49,54,93,44,91,45,55,53,46,54,52,57,54,51,55,44,52,49,46,49,50,50,51,52,52,93,44,91,45,55,53,46,54,48,48,55,51,54,44,52,49,46,49,54,49,52,57,55,93,44,91,45,55,53,46,54,56,55,50,52,52,44,52,49,46,51,51,57,50,49,54,93,44,91,45,55,53,46,56,51,52,54,57,53,44,52,49,46,52,50,55,50,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,51,54,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,52,55,51,48,57,44,52,52,46,56,53,56,48,51,55,93,44,91,45,56,52,46,56,53,48,57,50,57,44,52,52,46,53,49,49,48,54,57,93,44,91,45,56,52,46,51,55,48,54,52,51,44,52,52,46,53,48,55,50,50,51,93,44,91,45,56,52,46,51,55,49,55,51,55,44,52,52,46,56,53,53,48,51,57,93,44,91,45,56,52,46,56,52,55,51,48,57,44,52,52,46,56,53,56,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,82,117,115,115,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,50,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,48,49,48,50,44,51,50,46,53,49,48,49,53,55,93,44,91,45,56,53,46,48,53,57,50,57,52,44,51,50,46,52,55,50,57,48,57,93,44,91,45,56,53,46,51,51,51,56,52,51,44,51,50,46,52,54,56,54,51,57,93,44,91,45,56,53,46,52,51,52,48,52,53,44,51,50,46,52,48,57,56,52,93,44,91,45,56,53,46,52,51,51,53,52,51,44,51,50,46,50,51,52,54,52,56,93,44,91,45,56,53,46,52,49,48,50,52,49,44,51,50,46,49,52,54,54,53,49,93,44,91,45,56,53,46,50,53,55,55,52,55,44,51,50,46,49,52,56,50,53,49,93,44,91,45,56,53,46,49,56,53,48,54,55,44,51,50,46,48,54,49,55,48,56,93,44,91,45,56,53,46,48,53,54,48,50,57,44,51,50,46,48,54,51,48,53,53,93,44,91,45,56,53,46,48,54,50,48,54,44,51,50,46,49,51,50,52,56,54,93,44,91,45,56,52,46,57,50,51,48,50,55,44,51,50,46,50,51,48,56,53,49,93,44,91,45,56,52,46,57,55,49,57,54,50,44,51,50,46,51,55,55,54,57,56,93,44,91,45,56,53,46,48,48,49,48,50,44,51,50,46,53,49,48,49,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,53,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,49,55,55,51,57,44,52,48,46,54,53,49,53,55,57,93,44,91,45,56,49,46,50,54,52,55,52,52,44,52,48,46,53,54,53,48,52,50,93,44,91,45,56,49,46,50,54,57,57,53,49,44,52,48,46,52,51,51,52,56,54,93,44,91,45,56,48,46,57,52,49,57,49,49,44,52,48,46,52,50,52,55,93,44,91,45,56,48,46,57,50,48,57,50,44,52,48,46,53,53,54,51,49,53,93,44,91,45,56,48,46,56,54,49,57,57,52,44,52,48,46,53,57,57,52,48,52,93,44,91,45,56,48,46,57,49,55,49,55,50,44,52,48,46,55,50,54,57,51,52,93,44,91,45,56,49,46,48,56,55,50,56,57,44,52,48,46,55,50,55,56,49,54,93,44,91,45,56,49,46,50,51,55,50,50,55,44,52,48,46,55,50,51,53,52,50,93,44,91,45,56,49,46,51,49,55,55,51,57,44,52,48,46,54,53,49,53,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,70,108,117,118,97,110,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,48,54,55,54,51,44,51,56,46,48,48,54,52,55,52,93,44,91,45,55,56,46,52,57,49,51,52,53,44,51,55,46,55,57,54,57,53,54,93,44,91,45,55,56,46,52,48,53,53,57,54,44,51,55,46,55,51,53,50,54,51,93,44,91,45,55,56,46,50,51,57,55,52,56,44,51,55,46,54,57,48,52,57,53,93,44,91,45,55,56,46,49,53,57,51,50,54,44,51,55,46,55,52,56,53,50,56,93,44,91,45,55,56,46,48,54,50,52,56,49,44,51,55,46,57,48,52,54,56,53,93,44,91,45,55,56,46,51,48,54,55,54,51,44,51,56,46,48,48,54,52,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,51,54,49,57,44,34,98,101,100,115,34,58,49,48,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,57,57,51,56,57,44,52,50,46,52,57,53,49,51,51,93,44,91,45,56,56,46,49,57,57,53,56,52,44,52,50,46,49,53,52,50,54,93,44,91,45,56,55,46,49,49,49,49,54,50,44,52,50,46,49,52,57,52,48,57,93,44,91,45,56,55,46,48,56,56,51,51,56,44,52,50,46,50,51,53,51,51,52,93,44,91,45,56,55,46,48,52,48,48,52,54,44,52,50,46,52,49,54,57,57,51,93,44,91,45,56,55,46,48,49,57,57,51,53,44,52,50,46,52,57,51,52,57,56,93,44,91,45,56,56,46,49,57,57,51,56,57,44,52,50,46,52,57,53,49,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,49,51,51,54,44,51,52,46,50,55,51,53,51,93,44,91,45,56,51,46,50,57,55,51,49,55,44,51,52,46,50,54,52,53,56,55,93,44,91,45,56,51,46,51,53,53,50,53,49,44,51,52,46,50,50,51,55,57,52,93,44,91,45,56,51,46,52,48,50,52,50,56,44,51,52,46,49,57,55,52,57,57,93,44,91,45,56,51,46,51,54,48,48,50,56,44,51,52,46,48,52,48,53,55,50,93,44,91,45,56,51,46,50,53,56,52,49,51,44,51,51,46,57,57,57,48,57,56,93,44,91,45,56,51,46,49,50,54,50,50,57,44,51,52,46,48,52,54,50,49,51,93,44,91,45,56,50,46,57,55,54,50,57,52,44,51,52,46,48,52,51,50,49,57,93,44,91,45,56,51,46,48,55,56,48,48,52,44,51,52,46,50,50,51,54,48,54,93,44,91,45,56,51,46,49,49,51,51,54,44,51,52,46,50,55,51,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,56,54,50,56,53,44,51,52,46,49,53,53,56,55,55,93,44,91,45,57,50,46,56,57,51,53,51,52,44,51,51,46,56,48,57,57,52,51,93,44,91,45,57,50,46,53,56,51,48,53,52,44,51,51,46,56,48,50,49,57,56,93,44,91,45,57,50,46,51,51,52,50,52,57,44,51,51,46,55,57,53,48,54,53,93,44,91,45,57,50,46,52,53,55,48,55,57,44,51,51,46,57,55,50,53,57,55,93,44,91,45,57,50,46,52,55,49,54,54,55,44,51,52,46,48,53,55,48,53,52,93,44,91,45,57,50,46,51,51,54,55,54,53,44,51,52,46,48,53,57,54,51,51,93,44,91,45,57,50,46,52,57,51,54,55,50,44,51,52,46,49,52,52,50,51,52,93,44,91,45,57,50,46,54,55,56,51,56,51,44,51,52,46,49,52,57,54,50,50,93,44,91,45,57,50,46,56,56,54,50,56,53,44,51,52,46,49,53,53,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,56,53,55,55,55,51,44,52,49,46,48,48,50,54,54,51,93,44,91,45,49,48,54,46,56,54,57,56,57,49,44,52,48,46,57,53,54,55,50,93,44,91,45,49,48,54,46,54,51,54,57,50,50,44,52,48,46,55,56,57,52,56,57,93,44,91,45,49,48,54,46,55,48,54,49,52,57,44,52,48,46,54,49,54,53,57,55,93,44,91,45,49,48,54,46,54,53,50,49,49,50,44,52,48,46,52,52,53,50,51,49,93,44,91,45,49,48,54,46,54,49,50,51,50,49,44,52,48,46,51,55,57,51,56,51,93,44,91,45,49,48,54,46,50,51,48,55,52,54,44,52,48,46,51,50,52,52,56,54,93,44,91,45,49,48,53,46,57,48,53,57,57,44,52,48,46,51,57,57,54,53,50,93,44,91,45,49,48,53,46,56,53,52,57,50,54,44,52,48,46,52,56,54,50,53,50,93,44,91,45,49,48,54,46,48,53,51,55,55,57,44,52,48,46,56,49,50,54,54,50,93,44,91,45,49,48,54,46,49,56,53,51,48,55,44,52,48,46,57,51,51,57,55,51,93,44,91,45,49,48,54,46,49,57,48,53,53,52,44,52,48,46,57,57,55,53,55,56,93,44,91,45,49,48,54,46,51,50,49,49,54,53,44,52,48,46,57,57,57,49,50,51,93,44,91,45,49,48,54,46,56,53,55,55,55,51,44,52,49,46,48,48,50,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,75,105,116,32,67,97,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,51,53,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,57,56,48,54,44,51,57,46,53,55,52,48,53,56,93,44,91,45,49,48,50,46,56,48,50,57,51,50,44,51,57,46,53,54,55,56,52,49,93,44,91,45,49,48,51,46,49,53,52,51,55,54,44,51,57,46,53,54,53,54,53,52,93,44,91,45,49,48,51,46,49,54,51,48,50,53,44,51,57,46,48,51,55,54,49,93,44,91,45,49,48,50,46,48,52,54,53,55,49,44,51,57,46,48,52,55,48,51,56,93,44,91,45,49,48,50,46,48,52,55,49,54,49,44,51,57,46,49,51,51,49,52,55,93,44,91,45,49,48,50,46,48,52,57,55,54,52,44,51,57,46,53,54,56,49,56,93,44,91,45,49,48,50,46,48,52,57,56,48,54,44,51,57,46,53,55,52,48,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,79,119,121,104,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,50,54,53,51,56,44,52,51,46,54,56,48,56,48,50,93,44,91,45,49,49,55,46,48,50,54,56,55,52,44,52,51,46,49,50,55,48,48,53,93,44,91,45,49,49,55,46,48,50,54,50,44,52,50,46,48,48,48,49,57,53,93,44,91,45,49,49,55,46,48,49,56,50,48,52,44,52,49,46,57,57,57,55,49,53,93,44,91,45,49,49,54,46,48,52,53,51,55,51,44,52,49,46,57,57,54,51,51,49,93,44,91,45,49,49,53,46,48,51,56,49,53,55,44,52,49,46,57,57,54,50,55,57,93,44,91,45,49,49,53,46,48,51,55,54,57,55,44,52,50,46,55,54,56,52,49,52,93,44,91,45,49,49,53,46,52,53,52,50,50,52,44,52,50,46,55,54,55,57,51,54,93,44,91,45,49,49,53,46,52,52,49,53,50,50,44,52,50,46,57,51,49,49,50,55,93,44,91,45,49,49,53,46,57,54,48,57,57,57,44,52,50,46,57,56,57,48,56,52,93,44,91,45,49,49,54,46,50,48,49,55,52,44,52,51,46,48,52,56,57,51,93,44,91,45,49,49,54,46,50,54,54,50,48,55,44,52,51,46,49,49,50,50,54,57,93,44,91,45,49,49,54,46,53,49,49,56,57,55,44,52,51,46,50,57,48,53,50,93,44,91,45,49,49,54,46,55,56,49,51,51,54,44,52,51,46,52,55,56,54,51,51,93,44,91,45,49,49,54,46,56,52,52,57,55,56,44,52,51,46,53,57,52,52,93,44,91,45,49,49,55,46,48,50,54,53,51,56,44,52,51,46,54,56,48,56,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,87,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,50,55,52,44,34,98,101,100,115,34,58,54,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,54,50,53,51,44,52,52,46,54,56,53,49,53,52,93,44,91,45,57,48,46,51,49,54,48,53,53,44,52,52,46,52,50,52,53,48,50,93,44,91,45,57,48,46,51,49,50,54,56,44,52,52,46,50,52,56,55,53,93,44,91,45,56,57,46,57,48,50,55,56,51,44,52,52,46,50,52,57,52,55,51,93,44,91,45,56,57,46,55,50,52,55,52,54,44,52,52,46,50,52,55,54,55,56,93,44,91,45,56,57,46,55,50,54,55,50,53,44,52,52,46,53,49,49,49,57,50,93,44,91,45,56,57,46,56,52,52,53,52,54,44,52,52,46,53,49,49,53,48,51,93,44,91,45,56,57,46,56,52,52,57,51,49,44,52,52,46,54,56,52,57,52,53,93,44,91,45,57,48,46,51,49,54,50,53,51,44,52,52,46,54,56,53,49,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,104,97,117,116,97,117,113,117,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,54,53,54,44,34,98,101,100,115,34,58,51,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,54,48,55,55,55,44,52,50,46,53,51,55,56,53,51,93,44,91,45,55,57,46,51,49,50,49,51,54,44,52,50,46,54,56,54,56,48,53,93,44,91,45,55,57,46,55,54,50,52,49,56,44,52,50,46,53,49,54,48,55,50,93,44,91,45,55,57,46,55,54,49,51,49,51,44,52,49,46,57,57,56,56,48,56,93,44,91,45,55,57,46,54,49,48,56,51,57,44,52,49,46,57,57,57,48,48,54,93,44,91,45,55,57,46,48,54,49,50,54,53,44,52,49,46,57,57,57,50,53,57,93,44,91,45,55,57,46,48,54,48,55,55,55,44,52,50,46,53,51,55,56,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,67,111,98,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,53,48,53,55,44,34,98,101,100,115,34,58,49,51,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,51,55,56,51,54,44,51,52,46,48,55,57,51,57,57,93,44,91,45,56,52,46,55,50,52,49,51,57,44,51,51,46,56,48,54,49,55,93,44,91,45,56,52,46,53,55,56,49,51,50,44,51,51,46,55,52,51,53,48,55,93,44,91,45,56,52,46,52,55,49,51,51,44,51,51,46,56,50,53,57,48,53,93,44,91,45,56,52,46,51,56,51,48,50,55,44,51,51,46,57,54,51,56,93,44,91,45,56,52,46,52,49,56,57,50,55,44,51,52,46,48,55,51,50,57,56,93,44,91,45,56,52,46,54,53,57,50,52,49,44,51,52,46,48,55,56,50,52,93,44,91,45,56,52,46,55,51,55,56,51,54,44,51,52,46,48,55,57,51,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,56,57,44,34,98,101,100,115,34,58,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,56,51,56,52,51,44,51,54,46,53,48,56,51,49,52,93,44,91,45,56,50,46,48,52,52,49,52,53,44,51,54,46,51,54,51,55,49,54,93,44,91,45,56,49,46,57,51,51,48,54,53,44,51,54,46,50,54,52,56,55,51,93,44,91,45,56,49,46,57,49,56,49,49,57,44,51,54,46,50,56,55,49,50,57,93,44,91,45,56,49,46,55,50,56,55,56,49,44,51,54,46,51,57,49,51,48,57,93,44,91,45,56,49,46,54,55,55,52,57,44,51,54,46,53,56,56,49,51,55,93,44,91,45,56,49,46,54,52,54,57,44,51,54,46,54,49,49,57,49,56,93,44,91,45,56,49,46,56,50,54,55,52,50,44,51,54,46,54,49,52,50,49,53,93,44,91,45,56,49,46,57,56,51,56,52,51,44,51,54,46,53,48,56,51,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,101,108,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,55,50,44,34,98,101,100,115,34,58,49,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,50,53,57,50,52,44,52,48,46,49,55,48,48,55,53,93,44,91,45,56,49,46,50,51,52,48,53,51,44,51,57,46,57,53,49,50,55,93,44,91,45,56,49,46,50,51,55,51,49,54,44,51,57,46,56,54,55,56,50,56,93,44,91,45,56,48,46,56,50,49,50,55,57,44,51,57,46,56,52,57,57,56,50,93,44,91,45,56,48,46,55,53,54,49,49,51,44,51,57,46,57,49,51,52,48,50,93,44,91,45,56,48,46,55,51,51,56,48,51,44,52,48,46,48,51,51,52,48,57,93,44,91,45,56,48,46,55,48,50,55,53,44,52,48,46,49,53,55,50,52,57,93,44,91,45,56,48,46,56,56,50,56,57,50,44,52,48,46,49,53,57,52,57,53,93,44,91,45,56,49,46,50,50,53,57,50,52,44,52,48,46,49,55,48,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,87,105,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,48,50,53,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,55,56,52,44,51,54,46,56,57,50,57,53,51,93,44,91,45,56,50,46,55,55,49,53,57,53,44,51,54,46,56,48,48,48,51,49,93,44,91,45,56,50,46,54,49,55,55,52,44,51,54,46,56,56,48,55,55,51,93,44,91,45,56,50,46,52,48,54,54,51,51,44,51,54,46,56,55,54,51,53,54,93,44,91,45,56,50,46,51,50,55,56,51,44,51,54,46,57,55,48,57,56,50,93,44,91,45,56,50,46,52,54,55,51,52,53,44,51,55,46,48,50,50,49,51,54,93,44,91,45,56,50,46,53,53,51,56,55,52,44,51,55,46,50,48,50,56,51,51,93,44,91,45,56,50,46,53,54,53,51,55,57,44,51,55,46,49,57,54,48,57,57,93,44,91,45,56,50,46,55,49,53,49,52,57,44,51,55,46,49,50,49,56,52,56,93,44,91,45,56,50,46,55,52,50,55,53,57,44,51,55,46,48,52,50,55,57,54,93,44,91,45,56,50,46,56,54,57,49,57,50,44,51,54,46,57,55,52,49,56,54,93,44,91,45,56,50,46,56,55,56,52,44,51,54,46,56,57,50,57,53,51,93,93,44,91,91,45,56,50,46,54,54,51,54,50,53,44,51,54,46,57,50,48,57,53,57,93,44,91,45,56,50,46,54,51,51,56,51,49,44,51,54,46,57,53,50,50,55,54,93,44,91,45,56,50,46,53,57,49,49,52,55,44,51,54,46,57,51,53,51,49,51,93,44,91,45,56,50,46,54,54,51,54,50,53,44,51,54,46,57,50,48,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,49,55,55,54,54,44,51,55,46,48,57,53,54,55,55,93,44,91,45,57,49,46,50,49,55,49,53,44,51,55,46,48,56,54,49,57,55,93,44,91,45,57,49,46,50,50,50,56,51,44,51,54,46,56,56,51,56,53,55,93,44,91,45,57,49,46,49,49,53,57,50,54,44,51,54,46,56,50,51,54,55,50,93,44,91,45,57,48,46,54,54,50,54,49,55,44,51,54,46,56,49,49,52,53,51,93,44,91,45,57,48,46,54,55,56,53,54,50,44,51,54,46,57,50,54,52,57,93,44,91,45,57,48,46,55,55,57,53,53,51,44,51,55,46,48,53,48,51,50,52,93,44,91,45,57,48,46,57,54,52,52,54,54,44,51,55,46,48,53,51,53,56,52,93,44,91,45,57,49,46,48,49,55,55,54,54,44,51,55,46,48,57,53,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,114,121,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,53,57,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,57,49,53,55,56,44,51,52,46,49,53,54,56,48,53,93,44,91,45,57,54,46,52,48,55,53,49,55,44,51,52,46,49,53,55,51,49,55,93,44,91,45,57,54,46,53,56,53,51,53,53,44,51,52,46,49,49,52,52,53,57,93,44,91,45,57,54,46,54,49,57,57,51,57,44,51,51,46,57,57,57,52,52,57,93,44,91,45,57,54,46,53,56,56,53,48,50,44,51,51,46,56,57,52,57,56,51,93,44,91,45,57,54,46,53,48,48,57,56,52,44,51,51,46,55,55,50,56,48,49,93,44,91,45,57,54,46,51,55,57,52,53,50,44,51,51,46,55,50,53,55,54,52,93,44,91,45,57,54,46,50,57,48,51,53,57,44,51,51,46,55,55,48,56,51,49,93,44,91,45,57,54,46,49,55,57,56,52,54,44,51,51,46,55,53,57,54,49,56,93,44,91,45,57,54,46,49,52,57,50,50,55,44,51,51,46,56,51,55,48,57,49,93,44,91,45,57,53,46,57,52,54,48,51,44,51,51,46,56,53,57,51,51,56,93,44,91,45,57,53,46,56,52,54,53,51,54,44,51,51,46,56,51,57,56,53,53,93,44,91,45,57,53,46,55,54,49,53,50,44,51,51,46,56,55,51,49,49,56,93,44,91,45,57,53,46,57,51,55,57,56,57,44,51,51,46,57,52,56,50,49,57,93,44,91,45,57,53,46,57,51,56,49,53,44,51,52,46,49,50,53,49,93,44,91,45,57,53,46,57,57,49,53,55,56,44,51,52,46,49,53,54,56,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,50,53,55,50,51,44,52,48,46,54,57,56,53,53,53,93,44,91,45,57,56,46,50,55,56,49,48,51,44,52,48,46,54,57,56,50,57,49,93,44,91,45,57,56,46,50,55,56,48,57,44,52,48,46,51,53,48,51,52,55,93,44,91,45,57,56,46,50,55,51,53,55,49,44,52,48,46,51,53,48,51,53,57,93,44,91,45,57,55,46,56,50,52,49,49,52,44,52,48,46,51,53,48,53,52,49,93,44,91,45,57,55,46,56,50,52,55,56,44,52,48,46,54,57,56,53,51,55,93,44,91,45,57,55,46,56,50,53,55,50,51,44,52,48,46,54,57,56,53,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,54,55,49,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,50,50,55,51,51,54,44,51,56,46,54,48,52,53,55,93,44,91,45,55,55,46,50,57,53,52,48,54,44,51,56,46,53,48,57,50,51,57,93,44,91,45,55,55,46,50,56,55,48,57,55,44,51,56,46,51,52,56,56,93,44,91,45,55,55,46,48,49,56,52,57,56,44,51,56,46,51,56,49,57,52,49,93,44,91,45,55,54,46,57,57,55,54,55,44,51,56,46,50,55,56,48,52,54,93,44,91,45,55,54,46,56,54,56,56,53,57,44,51,56,46,49,55,49,51,55,50,93,44,91,45,55,54,46,56,50,49,50,53,54,44,51,56,46,50,54,56,55,53,56,93,44,91,45,55,54,46,56,55,49,52,54,44,51,56,46,51,56,57,57,51,55,93,44,91,45,55,54,46,55,55,52,57,53,53,44,51,56,46,53,48,56,57,93,44,91,45,55,54,46,54,55,52,49,49,56,44,51,56,46,52,57,57,54,50,50,93,44,91,45,55,54,46,54,55,53,52,53,55,44,51,56,46,53,51,53,56,55,54,93,44,91,45,55,54,46,55,52,55,53,55,44,51,56,46,54,49,55,51,51,53,93,44,91,45,55,55,46,48,56,54,51,57,49,44,51,56,46,55,48,54,50,50,55,93,44,91,45,55,55,46,50,50,55,51,51,54,44,51,56,46,54,48,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,101,114,114,111,32,71,111,114,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,57,56,52,44,34,98,101,100,115,34,58,51,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,52,49,52,51,44,52,51,46,50,53,53,53,51,56,93,44,91,45,57,51,46,52,57,55,54,51,53,44,52,51,46,50,53,53,52,54,56,93,44,91,45,57,51,46,52,57,56,54,49,55,44,52,50,46,57,48,56,53,49,50,93,44,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,44,91,45,57,51,46,48,50,52,48,57,50,44,52,51,46,50,49,50,56,49,50,93,44,91,45,57,51,46,48,50,52,49,52,51,44,52,51,46,50,53,53,53,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,48,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,50,56,56,48,54,44,52,50,46,50,48,57,51,57,54,93,44,91,45,57,52,46,54,50,56,55,50,52,44,52,49,46,56,54,50,55,54,51,93,44,91,45,57,52,46,50,56,48,51,52,44,52,49,46,56,54,50,57,57,57,93,44,91,45,57,52,46,49,54,52,49,51,56,44,52,49,46,56,54,51,50,52,52,93,44,91,45,57,52,46,49,54,52,55,48,52,44,52,50,46,50,48,57,57,50,93,44,91,45,57,52,46,51,57,55,53,50,54,44,52,50,46,50,48,57,49,54,49,93,44,91,45,57,52,46,54,50,56,56,48,54,44,52,50,46,50,48,57,51,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,53,34,44,34,78,65,77,69,34,58,34,82,111,119,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,57,57,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,51,53,49,57,53,44,51,56,46,49,56,55,53,50,53,93,44,91,45,56,51,46,52,57,56,56,52,54,44,51,56,46,48,53,48,54,50,93,44,91,45,56,51,46,52,51,51,57,52,50,44,51,56,46,48,51,51,57,55,52,93,44,91,45,56,51,46,50,54,51,50,56,57,44,51,56,46,49,49,53,51,56,54,93,44,91,45,56,51,46,50,52,52,51,48,54,44,51,56,46,49,57,50,51,56,93,44,91,45,56,51,46,51,52,49,51,52,55,44,51,56,46,51,49,57,53,50,49,93,44,91,45,56,51,46,52,53,50,56,52,56,44,51,56,46,51,56,49,55,57,57,93,44,91,45,56,51,46,53,48,55,57,53,51,44,51,56,46,50,55,51,49,53,53,93,44,91,45,56,51,46,54,51,53,49,57,53,44,51,56,46,49,56,55,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,51,48,53,54,54,53,44,51,56,46,53,49,48,49,54,57,93,44,91,45,49,49,49,46,55,54,54,51,57,51,44,51,56,46,53,48,50,50,52,51,93,44,91,45,49,49,49,46,56,52,56,55,54,49,44,51,56,46,52,50,52,57,51,51,93,44,91,45,49,49,49,46,56,52,51,50,49,53,44,51,56,46,49,53,49,50,56,93,44,91,45,49,49,48,46,54,56,55,52,48,54,44,51,56,46,49,53,49,51,56,53,93,44,91,45,49,48,57,46,57,50,55,57,57,53,44,51,56,46,49,53,49,56,56,52,93,44,91,45,49,48,57,46,57,48,57,55,54,44,51,56,46,50,55,49,50,51,93,44,91,45,49,49,48,46,48,51,49,57,55,51,44,51,56,46,51,56,52,57,53,55,93,44,91,45,49,49,48,46,48,50,53,52,48,50,44,51,56,46,52,57,57,57,56,49,93,44,91,45,49,49,49,46,51,48,53,55,48,49,44,51,56,46,52,57,57,57,57,56,93,44,91,45,49,49,49,46,51,48,53,54,54,53,44,51,56,46,53,49,48,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,97,112,101,32,71,105,114,97,114,100,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,51,50,52,44,34,98,101,100,115,34,58,54,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,54,49,49,50,51,44,51,55,46,53,57,57,50,56,54,93,44,91,45,56,57,46,56,54,54,54,50,55,44,51,55,46,49,50,54,50,50,55,93,44,91,45,56,57,46,55,54,53,50,49,49,44,51,55,46,49,50,54,48,54,54,93,44,91,45,56,57,46,54,50,48,50,53,54,44,51,55,46,50,51,51,48,48,56,93,44,91,45,56,57,46,52,56,56,55,50,44,51,55,46,50,53,49,52,53,55,93,44,91,45,56,57,46,52,56,54,54,56,57,44,51,55,46,51,51,52,53,53,52,93,44,91,45,56,57,46,52,50,48,57,51,57,44,51,55,46,51,57,51,57,53,50,93,44,91,45,56,57,46,53,50,49,56,53,53,44,51,55,46,53,54,54,50,49,52,93,44,91,45,56,57,46,54,48,56,57,51,52,44,51,55,46,53,57,55,52,50,55,93,44,91,45,56,57,46,56,54,49,49,50,51,44,51,55,46,53,57,57,50,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,87,97,108,108,97,32,87,97,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,50,51,54,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,50,50,56,54,51,53,44,52,54,46,53,57,51,51,54,50,93,44,91,45,49,49,56,46,52,55,53,57,51,50,44,52,54,46,53,57,53,49,52,50,93,44,91,45,49,49,56,46,54,49,53,53,57,50,44,52,54,46,53,48,52,53,52,51,93,44,91,45,49,49,56,46,54,51,51,56,50,54,44,52,54,46,52,49,52,48,50,50,93,44,91,45,49,49,56,46,55,55,55,50,50,56,44,52,54,46,50,57,48,49,55,55,93,44,91,45,49,49,57,46,48,52,49,52,57,56,44,52,54,46,49,57,50,54,54,55,93,44,91,45,49,49,56,46,57,55,52,54,54,52,44,52,54,46,49,51,57,53,50,51,93,44,91,45,49,49,56,46,57,56,55,50,53,56,44,52,53,46,57,57,57,56,53,53,93,44,91,45,49,49,55,46,57,57,54,57,55,44,52,54,46,48,48,48,53,54,93,44,91,45,49,49,55,46,57,57,49,52,56,49,44,52,54,46,50,48,55,55,48,50,93,44,91,45,49,49,56,46,49,49,54,54,50,52,44,52,54,46,50,48,56,48,53,93,44,91,45,49,49,56,46,50,52,49,56,55,50,44,52,54,46,50,57,53,48,54,52,93,44,91,45,49,49,56,46,50,50,56,54,51,53,44,52,54,46,53,57,51,51,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,49,57,56,48,57,44,51,54,46,56,54,57,54,49,55,93,44,91,45,56,57,46,51,50,55,53,56,56,44,51,54,46,54,51,50,50,55,54,93,44,91,45,56,57,46,50,50,55,48,52,54,44,51,54,46,53,54,57,53,51,55,93,44,91,45,56,57,46,49,55,52,55,50,55,44,51,54,46,54,53,48,52,55,53,93,44,91,45,56,57,46,49,50,51,53,51,49,44,51,54,46,55,56,53,50,49,55,93,44,91,45,56,57,46,49,48,48,56,54,52,44,51,54,46,57,52,52,48,49,54,93,44,91,45,56,57,46,49,51,50,57,49,53,44,51,54,46,57,56,50,48,53,55,93,44,91,45,56,57,46,50,53,57,57,51,53,44,51,55,46,48,54,52,48,55,93,44,91,45,56,57,46,51,49,50,55,48,52,44,51,55,46,48,48,56,57,55,49,93,44,91,45,56,57,46,53,49,57,56,48,57,44,51,54,46,56,54,57,54,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,101,118,101,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,51,54,55,54,53,44,51,52,46,48,53,57,54,51,51,93,44,91,45,57,50,46,52,55,49,54,54,55,44,51,52,46,48,53,55,48,53,52,93,44,91,45,57,50,46,52,53,55,48,55,57,44,51,51,46,57,55,50,53,57,55,93,44,91,45,57,50,46,51,51,52,50,52,57,44,51,51,46,55,57,53,48,54,53,93,44,91,45,57,50,46,51,51,48,56,51,57,44,51,51,46,55,48,55,56,48,54,93,44,91,45,57,49,46,57,55,53,56,52,52,44,51,51,46,55,48,52,52,49,52,93,44,91,45,57,49,46,57,55,53,57,55,52,44,51,51,46,55,57,49,55,56,55,93,44,91,45,57,49,46,57,53,51,55,57,57,44,51,52,46,48,54,52,49,52,49,93,44,91,45,57,50,46,50,51,51,51,55,54,44,51,52,46,48,54,50,51,49,50,93,44,91,45,57,50,46,51,51,54,55,54,53,44,51,52,46,48,53,57,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,54,53,53,50,44,34,98,101,100,115,34,58,56,49,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,50,57,57,56,55,44,51,50,46,53,52,53,50,56,50,93,44,91,45,57,54,46,53,49,56,57,55,44,51,50,46,56,49,51,54,49,54,93,44,91,45,57,54,46,53,49,54,56,54,54,44,51,50,46,57,56,50,51,48,56,93,44,91,45,57,54,46,56,52,51,57,55,57,44,51,50,46,57,56,55,53,53,52,93,44,91,45,57,55,46,48,51,50,50,56,55,44,51,50,46,57,56,57,51,50,52,93,44,91,45,57,55,46,48,51,56,51,56,53,44,51,50,46,53,52,56,54,54,50,93,44,91,45,57,54,46,53,50,57,57,56,55,44,51,50,46,53,52,53,50,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,97,106,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,51,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,48,57,48,52,52,44,49,56,46,48,53,54,48,56,53,93,44,91,45,54,55,46,49,48,56,54,51,53,44,49,55,46,56,57,53,52,48,55,93,44,91,45,54,54,46,57,57,57,54,49,57,44,49,55,46,56,56,51,57,93,44,91,45,54,54,46,57,53,56,55,52,56,44,49,56,46,48,51,50,52,55,55,93,44,91,45,54,54,46,57,56,51,51,51,55,44,49,56,46,48,53,50,53,49,56,93,44,91,45,54,55,46,49,48,57,48,52,52,44,49,56,46,48,53,54,48,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,55,48,52,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,57,52,48,56,52,44,52,49,46,53,50,54,52,51,55,93,44,91,45,56,53,46,49,57,50,48,57,52,44,52,49,46,50,54,52,50,48,57,93,44,91,45,56,52,46,56,48,51,53,56,57,44,52,49,46,50,55,49,50,55,51,93,44,91,45,56,52,46,56,48,52,48,54,51,44,52,49,46,52,50,54,48,53,49,93,44,91,45,56,52,46,56,48,52,54,56,55,44,52,49,46,53,51,48,49,51,52,93,44,91,45,56,53,46,49,57,52,48,56,52,44,52,49,46,53,50,54,52,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,79,117,97,99,104,105,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,48,55,53,44,34,98,101,100,115,34,58,49,48,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,54,53,49,55,57,44,51,50,46,55,50,51,48,48,51,93,44,91,45,57,50,46,50,55,50,51,49,51,44,51,50,46,53,56,48,57,55,53,93,44,91,45,57,50,46,52,49,53,48,55,49,44,51,50,46,53,56,50,56,52,53,93,44,91,45,57,50,46,52,49,53,51,53,44,51,50,46,52,57,53,52,56,54,93,44,91,45,57,50,46,52,49,53,52,49,56,44,51,50,46,52,48,55,56,49,50,93,44,91,45,57,50,46,51,49,49,56,53,49,44,51,50,46,50,55,55,52,52,49,93,44,91,45,57,50,46,48,51,52,51,57,55,44,51,50,46,50,55,55,48,54,56,93,44,91,45,57,50,46,48,48,52,51,52,44,51,50,46,51,56,48,52,57,57,93,44,91,45,57,49,46,57,49,51,48,53,55,44,51,50,46,53,48,53,57,48,50,93,44,91,45,57,49,46,57,55,53,48,50,54,44,51,50,46,55,49,49,52,50,56,93,44,91,45,57,50,46,48,54,53,49,55,57,44,51,50,46,55,50,51,48,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,83,116,46,32,74,111,104,110,32,116,104,101,32,66,97,112,116,105,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,52,52,54,44,34,98,101,100,115,34,58,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,52,49,57,57,56,44,51,48,46,49,54,54,52,51,93,44,91,45,57,48,46,54,53,54,51,49,50,44,50,57,46,56,56,57,50,52,54,93,44,91,45,57,48,46,53,50,57,54,48,49,44,50,57,46,56,56,52,57,57,55,93,44,91,45,57,48,46,53,51,56,49,51,50,44,51,48,46,48,49,54,56,56,52,93,44,91,45,57,48,46,52,53,48,50,49,56,44,51,48,46,48,51,51,49,48,54,93,44,91,45,57,48,46,51,50,54,54,51,55,44,51,48,46,49,53,48,49,56,56,93,44,91,45,57,48,46,50,53,57,56,56,57,44,51,48,46,49,54,51,52,49,93,44,91,45,57,48,46,49,53,54,50,53,54,44,51,48,46,49,56,57,54,49,51,93,44,91,45,57,48,46,49,54,48,54,51,54,44,51,48,46,50,51,52,51,51,55,93,44,91,45,57,48,46,51,48,48,57,50,51,44,51,48,46,50,57,52,54,56,93,44,91,45,57,48,46,52,56,53,56,50,54,44,51,48,46,50,55,54,57,57,50,93,44,91,45,57,48,46,53,53,52,49,52,55,44,51,48,46,49,57,53,54,50,56,93,44,91,45,57,48,46,54,51,50,56,49,49,44,51,48,46,50,50,49,52,48,57,93,44,91,45,57,48,46,54,52,49,57,57,56,44,51,48,46,49,54,54,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,83,116,46,32,72,101,108,101,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,49,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,56,50,53,56,50,57,44,51,48,46,57,57,57,51,54,49,93,44,91,45,57,48,46,56,54,49,48,49,57,44,51,48,46,57,51,53,51,55,51,93,44,91,45,57,48,46,56,52,57,48,52,49,44,51,48,46,55,49,57,51,49,49,93,44,91,45,57,48,46,57,49,48,55,48,49,44,51,48,46,54,52,57,51,56,53,93,44,91,45,57,48,46,53,54,55,49,54,53,44,51,48,46,54,53,48,48,50,51,93,44,91,45,57,48,46,53,54,55,49,57,53,44,51,48,46,57,57,57,55,51,51,93,44,91,45,57,48,46,56,50,53,56,50,57,44,51,48,46,57,57,57,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,83,99,104,117,121,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,49,52,53,57,54,44,52,48,46,53,56,57,52,50,55,93,44,91,45,57,50,46,54,56,52,49,54,55,44,52,48,46,51,52,51,52,54,54,93,44,91,45,57,50,46,51,52,57,57,55,53,44,52,48,46,51,52,54,53,48,53,93,44,91,45,57,50,46,51,53,48,56,48,55,44,52,48,46,53,57,55,50,55,53,93,44,91,45,57,50,46,54,51,55,56,57,56,44,52,48,46,53,57,48,56,53,51,93,44,91,45,57,50,46,55,49,52,53,57,54,44,52,48,46,53,56,57,52,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,52,50,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,53,54,50,57,50,44,51,52,46,52,54,51,50,49,52,93,44,91,45,56,56,46,49,55,51,54,51,50,44,51,52,46,51,50,49,48,53,52,93,44,91,45,56,55,46,54,51,52,55,50,53,44,51,52,46,51,48,54,57,57,55,93,44,91,45,56,55,46,53,50,57,55,50,50,44,51,52,46,51,48,52,53,57,56,93,44,91,45,56,55,46,53,50,57,54,54,55,44,51,52,46,53,54,55,48,56,49,93,44,91,45,56,56,46,49,51,57,57,56,56,44,51,52,46,53,56,49,55,48,51,93,44,91,45,56,56,46,49,53,54,50,57,50,44,51,52,46,52,54,51,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,49,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,50,51,53,49,57,44,51,56,46,55,54,49,56,55,93,44,91,45,56,53,46,50,48,49,52,55,52,44,51,56,46,54,57,49,51,49,56,93,44,91,45,56,53,46,51,51,51,48,57,57,44,51,56,46,55,51,54,50,50,56,93,44,91,45,56,53,46,49,54,56,50,55,44,51,56,46,53,56,53,52,52,56,93,44,91,45,56,53,46,48,55,52,53,56,51,44,51,56,46,53,57,54,56,51,56,93,44,91,45,56,52,46,57,51,52,53,51,54,44,51,56,46,54,54,50,49,51,93,44,91,45,56,53,46,48,50,51,53,49,57,44,51,56,46,55,54,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,101,97,114,32,67,114,101,101,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,54,57,48,51,52,56,44,51,57,46,56,53,49,57,57,54,93,44,91,45,49,48,53,46,57,50,52,54,49,56,44,51,57,46,54,57,56,57,55,50,93,44,91,45,49,48,53,46,55,56,50,54,55,52,44,51,57,46,54,50,57,48,50,52,93,44,91,45,49,48,53,46,56,50,57,54,54,50,44,51,57,46,53,54,52,56,54,53,93,44,91,45,49,48,53,46,51,57,56,57,52,57,44,51,57,46,53,54,54,48,53,54,93,44,91,45,49,48,53,46,51,57,55,57,52,57,44,51,57,46,55,52,54,48,52,93,44,91,45,49,48,53,46,53,51,57,51,57,51,44,51,57,46,55,55,50,51,49,93,44,91,45,49,48,53,46,54,57,48,51,52,56,44,51,57,46,56,53,49,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,55,34,44,34,78,65,77,69,34,58,34,75,105,109,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,48,56,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,54,52,54,49,44,51,48,46,50,57,48,50,57,54,93,44,91,45,57,57,46,55,53,52,49,52,50,44,51,48,46,50,57,48,54,57,56,93,44,91,45,57,57,46,51,48,49,55,49,56,44,51,48,46,50,56,54,54,53,51,93,44,91,45,57,57,46,51,48,51,57,57,54,44,51,48,46,52,57,57,56,51,50,93,44,91,45,57,57,46,52,56,52,52,57,51,44,51,48,46,52,57,57,54,52,49,93,44,91,45,57,57,46,52,56,51,56,54,57,44,51,48,46,55,49,48,55,55,49,93,44,91,45,49,48,48,46,49,49,54,50,51,52,44,51,48,46,55,49,48,51,54,54,93,44,91,45,49,48,48,46,49,49,54,52,54,49,44,51,48,46,50,57,48,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,97,99,107,105,110,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,53,48,50,53,44,52,54,46,50,52,52,54,51,49,93,44,91,45,56,53,46,56,54,56,50,52,49,44,52,53,46,56,49,57,55,57,53,93,44,91,45,56,53,46,53,55,48,48,55,52,44,52,53,46,56,56,51,50,52,52,93,44,91,45,56,53,46,50,51,57,54,49,56,44,52,53,46,56,55,48,55,52,93,44,91,45,56,52,46,55,51,50,53,57,53,44,52,53,46,56,49,48,51,51,93,44,91,45,56,52,46,52,53,50,54,51,52,44,52,53,46,54,57,53,51,55,93,44,91,45,56,52,46,50,48,49,48,54,50,44,52,53,46,55,53,50,50,55,53,93,44,91,45,56,52,46,49,50,51,48,57,56,44,52,53,46,55,55,55,54,54,56,93,44,91,45,56,52,46,49,49,52,49,56,54,44,52,53,46,57,56,53,49,53,50,93,44,91,45,56,52,46,50,51,57,51,51,50,44,52,53,46,57,56,52,57,49,52,93,44,91,45,56,52,46,51,54,51,48,57,44,52,54,46,48,55,49,53,55,52,93,44,91,45,56,52,46,51,54,51,53,48,51,44,52,54,46,49,53,55,57,56,52,93,44,91,45,56,53,46,49,49,50,53,49,51,44,52,54,46,49,53,56,50,54,51,93,44,91,45,56,53,46,50,51,55,56,51,57,44,52,54,46,50,52,53,52,51,93,44,91,45,56,53,46,56,54,53,48,50,53,44,52,54,46,50,52,52,54,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,55,34,44,34,78,65,77,69,34,58,34,77,99,67,117,108,108,111,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,48,50,55,54,56,44,51,49,46,52,54,55,50,51,52,93,44,91,45,57,57,46,51,48,50,54,48,53,44,51,49,46,52,51,50,53,48,52,93,44,91,45,57,57,46,54,48,49,56,53,44,51,49,46,52,57,49,57,53,93,44,91,45,57,57,46,54,48,51,50,50,51,44,51,49,46,48,56,55,50,57,54,93,44,91,45,57,57,46,54,48,51,54,50,55,44,51,48,46,57,52,48,55,50,54,93,44,91,45,57,57,46,52,56,52,55,53,53,44,51,48,46,57,52,48,54,48,53,93,44,91,45,57,57,46,48,57,50,51,49,55,44,51,48,46,57,52,49,48,48,50,93,44,91,45,57,57,46,48,57,48,54,50,50,44,51,49,46,52,54,48,57,50,55,93,44,91,45,57,57,46,50,48,50,55,54,56,44,51,49,46,52,54,55,50,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,84,105,115,104,111,109,105,110,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,55,56,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,48,48,48,54,52,44,51,52,46,57,57,53,54,51,52,93,44,91,45,56,56,46,51,54,51,53,51,49,44,51,52,46,57,57,53,52,55,53,93,44,91,45,56,56,46,51,54,53,52,55,50,44,51,52,46,55,53,53,54,48,52,93,44,91,45,56,56,46,51,51,48,54,57,57,44,51,52,46,55,52,48,55,50,49,93,44,91,45,56,56,46,51,50,57,49,57,51,44,51,52,46,52,54,51,53,55,49,93,44,91,45,56,56,46,49,53,54,50,57,50,44,51,52,46,52,54,51,50,49,52,93,44,91,45,56,56,46,49,51,57,57,56,56,44,51,52,46,53,56,49,55,48,51,93,44,91,45,56,56,46,48,57,55,56,56,56,44,51,52,46,56,57,50,50,48,50,93,44,91,45,56,56,46,50,48,48,48,54,52,44,51,52,46,57,57,53,54,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,67,114,111,99,107,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,55,53,56,52,44,51,48,46,50,56,56,48,52,52,93,44,91,45,49,48,48,46,57,54,48,54,52,51,44,51,48,46,50,56,55,55,55,54,93,44,91,45,49,48,48,46,57,54,48,53,56,55,44,51,48,46,55,48,54,48,55,49,93,44,91,45,49,48,48,46,57,54,50,49,55,54,44,51,49,46,48,56,50,52,57,93,44,91,45,49,48,49,46,50,55,52,55,57,57,44,51,49,46,48,55,57,51,55,57,93,44,91,45,49,48,49,46,55,55,54,49,57,49,44,51,49,46,48,55,57,55,56,52,93,44,91,45,49,48,50,46,51,48,49,50,49,50,44,51,49,46,48,56,54,50,49,50,93,44,91,45,49,48,50,46,51,56,56,56,48,52,44,51,49,46,48,56,55,49,53,54,93,44,91,45,49,48,50,46,50,57,50,54,56,49,44,51,49,46,48,51,54,54,55,55,93,44,91,45,49,48,49,46,57,56,52,53,50,55,44,51,48,46,57,56,55,52,52,53,93,44,91,45,49,48,49,46,56,55,52,50,55,54,44,51,48,46,57,49,50,50,51,54,93,44,91,45,49,48,49,46,56,51,52,53,50,56,44,51,48,46,55,53,55,57,52,57,93,44,91,45,49,48,49,46,55,54,56,52,50,44,51,48,46,54,53,51,48,55,55,93,44,91,45,49,48,49,46,54,54,57,56,51,51,44,51,48,46,54,51,55,57,48,55,93,44,91,45,49,48,49,46,54,52,54,53,48,54,44,51,48,46,53,53,49,49,49,50,93,44,91,45,49,48,49,46,55,52,48,52,50,57,44,51,48,46,52,50,48,56,57,55,93,44,91,45,49,48,49,46,54,53,56,53,51,44,51,48,46,51,53,55,56,54,49,93,44,91,45,49,48,49,46,55,53,56,52,44,51,48,46,50,56,56,48,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,55,34,44,34,78,65,77,69,34,58,34,72,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,57,57,44,34,98,101,100,115,34,58,49,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,55,54,48,56,54,44,51,50,46,49,55,51,52,54,93,44,91,45,57,55,46,52,56,53,57,54,56,44,51,50,46,48,49,55,54,49,49,93,44,91,45,57,55,46,51,50,55,49,52,53,44,51,49,46,56,52,49,52,53,50,93,44,91,45,57,55,46,50,55,55,50,54,53,44,51,49,46,55,52,53,52,57,50,93,44,91,45,57,55,46,48,51,55,50,54,54,44,51,49,46,56,54,51,48,55,57,93,44,91,45,57,54,46,57,51,50,50,49,53,44,51,49,46,55,48,56,56,56,55,93,44,91,45,57,54,46,55,49,57,49,49,52,44,51,49,46,56,49,52,56,56,55,93,44,91,45,57,54,46,56,57,54,50,48,57,44,51,50,46,48,55,51,57,55,55,93,44,91,45,57,54,46,57,52,48,54,53,54,44,51,50,46,48,53,50,48,56,55,93,44,91,45,57,55,46,48,56,54,49,57,49,44,51,50,46,50,54,53,52,53,49,93,44,91,45,57,55,46,52,55,54,48,56,54,44,51,50,46,49,55,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,54,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,55,51,55,55,52,44,52,49,46,48,48,49,55,49,54,93,44,91,45,49,48,51,46,53,56,49,56,52,52,44,52,48,46,53,50,51,51,56,51,93,44,91,45,49,48,51,46,52,54,53,51,55,55,44,52,48,46,52,51,54,51,52,54,93,44,91,45,49,48,50,46,55,55,57,57,54,44,52,48,46,52,51,56,52,52,54,93,44,91,45,49,48,50,46,54,54,52,56,48,52,44,52,48,46,52,51,56,52,55,51,93,44,91,45,49,48,50,46,54,53,49,51,49,44,52,48,46,55,52,57,52,48,50,93,44,91,45,49,48,50,46,54,53,51,52,54,51,44,52,49,46,48,48,50,51,51,50,93,44,91,45,49,48,51,46,51,56,50,52,57,50,44,52,49,46,48,48,50,50,53,50,93,44,91,45,49,48,51,46,53,55,51,55,55,52,44,52,49,46,48,48,49,55,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,70,105,110,110,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,57,53,55,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,49,48,51,50,54,56,44,51,56,46,50,54,52,53,53,55,93,44,91,45,49,48,49,46,49,48,51,55,55,56,44,51,55,46,56,50,57,48,51,53,93,44,91,45,49,48,49,46,48,56,57,54,54,55,44,51,55,46,55,51,54,51,51,55,93,44,91,45,49,48,48,46,54,53,50,50,53,49,44,51,55,46,55,51,54,50,55,53,93,44,91,45,49,48,48,46,54,54,52,49,54,54,44,51,56,46,48,48,50,53,51,93,44,91,45,49,48,48,46,50,50,54,54,49,44,51,56,46,48,48,49,48,49,53,93,44,91,45,49,48,48,46,50,50,55,49,51,55,44,51,56,46,50,54,50,50,51,55,93,44,91,45,49,48,48,46,50,52,52,51,57,51,44,51,56,46,50,54,50,50,57,93,44,91,45,49,48,48,46,54,56,52,54,57,57,44,51,56,46,50,54,52,49,51,55,93,44,91,45,49,48,49,46,49,48,51,50,54,56,44,51,56,46,50,54,52,53,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,55,48,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,54,52,51,57,57,44,51,55,46,50,57,57,50,51,50,93,44,91,45,57,53,46,57,54,52,50,55,44,51,54,46,57,57,57,49,48,52,93,44,91,45,57,53,46,55,56,54,55,54,50,44,51,54,46,57,57,57,51,49,93,44,91,45,57,53,46,53,50,50,52,49,53,44,51,54,46,57,57,57,50,56,93,44,91,45,57,53,46,53,50,49,49,51,44,51,55,46,51,56,51,57,57,93,44,91,45,57,53,46,53,50,53,53,54,44,51,55,46,51,56,51,57,55,57,93,44,91,45,57,53,46,57,54,49,54,48,53,44,51,55,46,51,56,54,54,51,54,93,44,91,45,57,53,46,57,54,52,51,57,57,44,51,55,46,50,57,57,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,70,97,105,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,50,51,50,52,49,44,51,52,46,52,57,52,51,55,57,93,44,91,45,56,49,46,51,49,54,57,49,49,44,51,52,46,50,51,57,52,53,56,93,44,91,45,56,49,46,48,57,53,56,54,51,44,51,52,46,50,49,51,56,55,50,93,44,91,45,56,48,46,56,50,53,57,50,49,44,51,52,46,50,54,56,55,54,93,44,91,45,56,48,46,55,54,57,57,50,54,44,51,52,46,51,55,55,49,49,49,93,44,91,45,56,48,46,56,55,57,50,50,55,44,51,52,46,52,53,55,55,55,54,93,44,91,45,56,48,46,56,55,55,52,57,49,44,51,52,46,53,52,51,49,52,54,93,44,91,45,56,49,46,52,50,50,55,48,54,44,51,52,46,53,55,50,48,50,57,93,44,91,45,56,49,46,52,50,51,50,52,49,44,51,52,46,52,57,52,51,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,104,101,121,101,110,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,53,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,51,54,54,57,53,44,52,49,46,52,51,57,48,53,51,93,44,91,45,49,48,51,46,51,54,57,48,50,52,44,52,49,46,52,51,55,54,53,53,93,44,91,45,49,48,51,46,51,55,55,54,50,44,52,49,46,51,57,52,54,51,51,93,44,91,45,49,48,51,46,51,56,50,52,57,50,44,52,49,46,48,48,50,50,53,50,93,44,91,45,49,48,50,46,54,53,51,52,54,51,44,52,49,46,48,48,50,51,51,50,93,44,91,45,49,48,50,46,54,50,49,48,51,51,44,52,49,46,48,48,50,53,57,55,93,44,91,45,49,48,50,46,54,49,48,52,49,51,44,52,49,46,50,50,49,54,49,52,93,44,91,45,49,48,50,46,54,51,54,54,57,53,44,52,49,46,52,51,57,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,54,52,44,34,98,101,100,115,34,58,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,51,54,56,57,55,52,44,52,51,46,56,52,56,48,52,55,93,44,91,45,57,52,46,56,53,52,52,52,52,44,52,51,46,56,52,56,48,57,57,93,44,91,45,57,52,46,56,53,52,53,53,53,44,52,51,46,53,48,48,57,50,53,93,44,91,45,57,52,46,52,52,50,56,53,44,52,51,46,53,48,48,52,50,50,93,44,91,45,57,52,46,50,52,55,57,54,56,44,52,51,46,53,48,48,49,51,51,93,44,91,45,57,52,46,50,52,55,49,50,51,44,52,51,46,56,52,55,57,52,54,93,44,91,45,57,52,46,51,54,56,57,55,52,44,52,51,46,56,52,56,48,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,83,101,118,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,50,56,55,44,34,98,101,100,115,34,58,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,57,52,50,55,53,44,51,53,46,56,56,55,49,50,53,93,44,91,45,56,51,46,54,54,50,57,57,57,44,51,53,46,53,54,57,52,54,56,93,44,91,45,56,51,46,52,56,53,56,51,52,44,51,53,46,53,54,56,49,57,93,44,91,45,56,51,46,50,53,52,50,53,55,44,51,53,46,54,57,53,53,57,51,93,44,91,45,56,51,46,50,53,53,51,52,51,44,51,53,46,55,49,53,48,56,52,93,44,91,45,56,51,46,51,49,48,55,56,50,44,51,53,46,56,57,53,56,52,54,93,44,91,45,56,51,46,52,55,52,57,48,49,44,51,53,46,57,50,50,56,57,51,93,44,91,45,56,51,46,54,55,51,50,57,55,44,51,54,46,48,51,56,52,56,54,93,44,91,45,56,51,46,54,53,52,54,48,53,44,51,53,46,57,55,49,57,51,55,93,44,91,45,56,51,46,55,57,52,50,55,53,44,51,53,46,56,56,55,49,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,48,51,54,48,55,44,51,53,46,50,52,49,48,52,51,93,44,91,45,56,52,46,54,57,57,57,51,55,44,51,53,46,49,55,48,57,55,52,93,44,91,45,56,52,46,55,55,53,56,53,51,44,51,52,46,57,56,55,56,56,52,93,44,91,45,56,52,46,54,50,49,52,56,51,44,51,52,46,57,56,56,51,50,57,93,44,91,45,56,52,46,51,50,49,56,50,49,44,51,52,46,57,56,56,52,48,56,93,44,91,45,56,52,46,50,57,50,51,54,53,44,51,53,46,50,48,54,54,57,52,93,44,91,45,56,52,46,52,57,53,53,50,57,44,51,53,46,50,56,53,52,55,50,93,44,91,45,56,52,46,55,48,51,54,48,55,44,51,53,46,50,52,49,48,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,51,34,44,34,78,65,77,69,34,58,34,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,44,91,45,49,48,49,46,48,51,56,54,54,44,51,50,46,57,55,48,50,50,53,93,44,91,45,49,48,48,46,54,53,53,56,55,44,51,50,46,57,54,51,52,54,57,93,44,91,45,49,48,48,46,53,49,57,50,48,56,44,51,50,46,57,54,50,57,50,54,93,44,91,45,49,48,48,46,53,49,55,52,52,57,44,51,51,46,51,57,55,56,54,54,93,44,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,84,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,57,56,52,55,51,52,44,52,55,46,57,53,51,57,49,56,93,44,91,45,49,49,50,46,57,49,51,50,53,54,44,52,55,46,56,50,54,50,49,54,93,44,91,45,49,49,50,46,57,49,51,56,55,52,44,52,55,46,54,57,55,49,57,57,93,44,91,45,49,49,50,46,56,53,52,55,48,49,44,52,55,46,54,50,57,50,51,52,93,44,91,45,49,49,50,46,53,54,56,54,54,44,52,55,46,54,51,54,48,49,56,93,44,91,45,49,49,50,46,52,51,50,55,49,49,44,52,55,46,54,48,54,49,48,52,93,44,91,45,49,49,50,46,50,55,56,44,52,55,46,53,48,53,54,50,51,93,44,91,45,49,49,50,46,48,52,55,55,56,49,44,52,55,46,53,49,54,48,51,52,93,44,91,45,49,49,49,46,57,50,50,55,57,53,44,52,55,46,53,48,53,48,54,52,93,44,91,45,49,49,49,46,57,50,50,57,51,54,44,52,55,46,54,49,49,50,51,49,93,44,91,45,49,49,49,46,54,54,54,50,54,44,52,55,46,54,49,49,50,53,51,93,44,91,45,49,49,49,46,54,54,54,52,56,50,44,52,55,46,54,57,55,55,54,49,93,44,91,45,49,49,49,46,52,48,56,56,53,44,52,55,46,54,57,56,49,50,51,93,44,91,45,49,49,49,46,52,48,56,53,49,52,44,52,55,46,57,56,55,49,55,56,93,44,91,45,49,49,49,46,57,56,52,50,54,51,44,52,55,46,57,56,52,53,57,50,93,44,91,45,49,49,50,46,48,52,55,57,57,57,44,52,56,46,48,56,54,54,49,50,93,44,91,45,49,49,50,46,49,55,55,56,51,51,44,52,56,46,49,51,48,55,49,50,93,44,91,45,49,49,51,46,48,49,52,56,49,49,44,52,56,46,49,51,49,48,51,93,44,91,45,49,49,50,46,56,56,52,56,56,51,44,52,55,46,57,56,53,52,49,52,93,44,91,45,49,49,50,46,57,56,52,55,51,52,44,52,55,46,57,53,51,57,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,71,97,114,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,48,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,51,54,54,57,53,44,52,49,46,52,51,57,48,53,51,93,44,91,45,49,48,50,46,54,49,48,52,49,51,44,52,49,46,50,50,49,54,49,52,93,44,91,45,49,48,50,46,48,53,53,53,51,53,44,52,49,46,50,50,49,53,52,55,93,44,91,45,49,48,50,46,48,53,53,50,53,54,44,52,49,46,51,57,53,49,54,50,93,44,91,45,49,48,49,46,57,56,52,54,51,44,52,49,46,51,57,52,55,49,50,93,44,91,45,49,48,49,46,57,56,53,53,50,51,44,52,49,46,55,52,50,50,57,93,44,91,45,49,48,50,46,48,54,55,57,49,56,44,52,49,46,55,52,50,48,57,57,93,44,91,45,49,48,50,46,48,54,54,54,53,44,52,50,46,48,48,57,49,57,53,93,44,91,45,49,48,50,46,54,55,55,53,56,50,44,52,50,46,48,48,53,50,56,50,93,44,91,45,49,48,50,46,54,55,57,48,57,51,44,52,49,46,56,52,51,48,53,93,44,91,45,49,48,50,46,54,51,54,52,55,54,44,52,49,46,55,52,51,49,51,57,93,44,91,45,49,48,50,46,54,51,54,54,57,53,44,52,49,46,52,51,57,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,97,99,111,117,112,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,49,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,53,51,55,56,50,44,51,57,46,53,50,48,51,49,53,93,44,91,45,57,48,46,49,52,56,49,50,49,44,51,57,46,50,54,49,57,52,55,93,44,91,45,57,48,46,49,52,53,57,56,52,44,51,56,46,57,57,57,51,48,51,93,44,91,45,56,57,46,54,57,56,53,53,53,44,51,56,46,57,57,56,57,55,57,93,44,91,45,56,57,46,55,48,49,54,54,49,44,51,57,46,53,50,51,51,49,54,93,44,91,45,56,57,46,57,50,54,48,51,55,44,51,57,46,53,50,50,49,48,52,93,44,91,45,57,48,46,49,53,51,55,56,50,44,51,57,46,53,50,48,51,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,82,111,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,48,53,49,44,34,98,101,100,115,34,58,50,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,55,50,55,49,52,44,51,57,46,51,55,55,52,49,54,93,44,91,45,56,51,46,51,53,51,53,51,49,44,51,57,46,49,57,55,53,56,53,93,44,91,45,56,50,46,55,56,53,56,57,49,44,51,57,46,49,54,56,55,54,57,93,44,91,45,56,50,46,55,54,50,56,57,50,44,51,57,46,50,48,55,57,54,55,93,44,91,45,56,50,46,55,52,56,53,57,49,44,51,57,46,51,54,56,49,54,53,93,44,91,45,56,50,46,55,52,48,55,50,57,44,51,57,46,52,54,56,51,53,93,44,91,45,56,50,46,57,56,52,53,54,44,51,57,46,53,48,54,55,53,52,93,44,91,45,56,51,46,50,54,54,55,51,55,44,51,57,46,53,49,54,50,52,57,93,44,91,45,56,51,46,51,55,50,55,49,52,44,51,57,46,51,55,55,52,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,115,105,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,57,54,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,53,49,57,56,44,52,49,46,57,50,56,57,49,55,93,44,91,45,57,48,46,50,52,50,51,56,44,52,49,46,55,56,50,57,54,52,93,44,91,45,57,48,46,49,56,53,53,51,54,44,52,49,46,53,56,52,53,55,52,93,44,91,45,56,57,46,56,54,50,51,53,49,44,52,49,46,53,56,52,48,48,53,93,44,91,45,56,57,46,54,51,49,52,57,52,44,52,49,46,53,56,52,57,52,57,93,44,91,45,56,57,46,54,50,57,51,51,44,52,49,46,57,48,49,54,49,55,93,44,91,45,56,57,46,54,56,53,51,54,54,44,52,49,46,57,51,48,51,52,93,44,91,45,57,48,46,49,53,49,57,56,44,52,49,46,57,50,56,57,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,69,108,32,80,97,115,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,55,54,53,52,44,34,98,101,100,115,34,58,50,54,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,51,55,55,49,55,52,44,51,50,46,48,48,49,53,48,51,93,44,91,45,49,48,54,46,54,49,56,52,56,54,44,51,50,46,48,48,48,52,57,53,93,44,91,45,49,48,54,46,54,51,53,57,50,44,51,49,46,56,54,54,50,51,51,93,44,91,45,49,48,54,46,53,50,56,48,52,55,44,51,49,46,55,56,51,56,57,49,93,44,91,45,49,48,54,46,51,56,49,48,55,52,44,51,49,46,55,51,50,48,56,50,93,44,91,45,49,48,54,46,50,49,57,54,50,44,51,49,46,52,56,49,53,54,49,93,44,91,45,49,48,53,46,57,57,55,49,53,50,44,51,49,46,51,56,55,50,51,93,44,91,45,49,48,53,46,57,57,56,48,49,50,44,51,50,46,48,48,50,51,55,55,93,44,91,45,49,48,54,46,51,55,55,49,55,52,44,51,50,46,48,48,49,53,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,49,34,44,34,78,65,77,69,34,58,34,76,111,118,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,57,56,48,49,55,57,44,51,50,46,48,48,48,49,50,53,93,44,91,45,49,48,51,46,57,49,50,50,52,56,44,51,49,46,57,48,50,52,50,52,93,44,91,45,49,48,51,46,56,49,52,57,57,44,51,49,46,56,53,50,49,52,50,93,44,91,45,49,48,51,46,55,57,54,54,49,50,44,51,49,46,55,55,48,48,49,51,93,44,91,45,49,48,51,46,55,48,48,54,48,51,44,51,49,46,55,52,56,51,57,53,93,44,91,45,49,48,51,46,54,49,48,56,56,55,44,51,49,46,54,53,49,56,48,50,93,44,91,45,49,48,51,46,51,50,55,53,51,56,44,51,49,46,54,53,49,52,50,93,44,91,45,49,48,51,46,51,50,54,53,48,49,44,51,50,46,48,48,48,51,54,57,93,44,91,45,49,48,51,46,55,50,50,56,56,50,44,51,50,46,48,48,48,50,48,54,93,44,91,45,49,48,51,46,57,56,48,49,55,57,44,51,50,46,48,48,48,49,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,97,116,105,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,57,53,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,50,55,56,54,51,44,51,53,46,48,53,56,50,52,54,93,44,91,45,57,53,46,51,52,57,52,48,57,44,51,53,46,48,53,56,53,50,93,44,91,45,57,53,46,53,48,55,55,51,56,44,51,53,46,48,50,57,50,54,53,93,44,91,45,57,53,46,53,49,52,52,55,53,44,51,52,46,54,56,48,55,49,56,93,44,91,45,57,53,46,48,53,57,54,49,54,44,51,52,46,54,56,48,55,51,54,93,44,91,45,57,53,46,48,53,57,53,49,50,44,51,52,46,56,53,53,48,49,57,93,44,91,45,57,52,46,57,50,55,56,54,51,44,51,53,46,48,53,56,50,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,54,55,49,44,34,98,101,100,115,34,58,50,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,56,51,48,55,53,44,51,57,46,54,48,53,55,57,54,93,44,91,45,56,49,46,53,56,56,49,56,53,44,51,57,46,53,56,54,57,55,51,93,44,91,45,56,49,46,54,56,56,56,56,52,44,51,57,46,53,57,48,53,49,49,93,44,91,45,56,49,46,55,48,56,53,50,55,44,51,57,46,52,56,48,55,55,53,93,44,91,45,56,49,46,56,52,52,56,54,51,44,51,57,46,52,53,48,50,49,54,93,44,91,45,56,49,46,56,53,51,54,54,56,44,51,57,46,51,49,56,49,54,53,93,44,91,45,56,49,46,55,50,53,54,50,50,44,51,57,46,50,49,53,57,48,53,93,44,91,45,56,49,46,54,55,55,53,57,53,44,51,57,46,50,55,52,49,55,49,93,44,91,45,56,49,46,52,53,54,49,52,51,44,51,57,46,52,48,57,50,55,52,93,44,91,45,56,49,46,51,55,49,50,54,44,51,57,46,51,52,49,57,50,52,93,44,91,45,56,49,46,49,50,49,53,51,51,44,51,57,46,52,53,55,55,55,53,93,44,91,45,56,49,46,48,51,56,55,49,50,44,51,57,46,53,51,57,56,56,54,93,44,91,45,56,49,46,50,56,51,48,55,53,44,51,57,46,54,48,53,55,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,111,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,49,48,50,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,56,56,55,48,56,44,51,55,46,48,53,54,50,52,56,93,44,91,45,57,50,46,49,49,50,51,52,54,44,51,54,46,55,57,52,50,51,49,93,44,91,45,57,50,46,49,50,48,52,51,44,51,54,46,52,57,56,55,93,44,91,45,57,49,46,54,55,50,51,52,51,44,51,54,46,52,57,57,52,54,51,93,44,91,45,57,49,46,54,53,56,49,49,49,44,51,54,46,56,56,56,55,50,52,93,44,91,45,57,49,46,54,53,53,54,48,55,44,51,55,46,48,52,56,57,50,53,93,44,91,45,57,50,46,48,56,56,55,48,56,44,51,55,46,48,53,54,50,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,69,100,119,97,114,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,50,53,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,50,50,49,51,54,44,51,56,46,48,48,48,50,51,54,93,44,91,45,57,57,46,51,53,48,50,56,57,44,51,56,46,48,48,48,55,52,53,93,44,91,45,57,57,46,51,53,48,51,53,57,44,51,56,46,48,56,55,53,57,52,93,44,91,45,57,57,46,53,54,57,53,51,51,44,51,56,46,48,56,55,51,55,50,93,44,91,45,57,57,46,53,54,57,56,55,57,44,51,55,46,57,49,51,48,49,54,93,44,91,45,57,57,46,53,53,57,53,56,44,51,55,46,55,51,52,56,56,56,93,44,91,45,57,57,46,48,49,51,53,53,44,51,55,46,55,51,50,57,55,93,44,91,45,57,57,46,48,49,51,51,49,56,44,51,55,46,56,50,53,51,51,54,93,44,91,45,57,57,46,48,50,50,49,51,54,44,51,56,46,48,48,48,50,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,55,49,53,52,44,34,98,101,100,115,34,58,50,57,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,50,51,49,54,44,51,56,46,50,56,55,52,51,51,93,44,91,45,56,53,46,56,57,57,55,54,44,51,56,46,49,56,48,52,52,52,93,44,91,45,56,53,46,57,52,55,49,49,52,44,51,56,46,48,48,53,48,56,53,93,44,91,45,56,53,46,57,51,56,51,50,49,44,51,55,46,57,57,56,55,53,54,93,44,91,45,56,53,46,55,49,50,53,55,56,44,51,56,46,48,56,55,51,49,49,93,44,91,45,56,53,46,53,53,55,50,55,44,51,56,46,48,55,51,56,52,49,93,44,91,45,56,53,46,52,50,56,56,51,44,51,56,46,49,49,56,51,56,51,93,44,91,45,56,53,46,52,50,52,48,53,52,44,51,56,46,49,52,55,52,51,56,93,44,91,45,56,53,46,52,54,56,50,48,54,44,51,56,46,50,56,53,51,48,57,93,44,91,45,56,53,46,54,51,55,56,54,49,44,51,56,46,51,56,48,50,54,51,93,44,91,45,56,53,46,55,57,50,51,49,54,44,51,56,46,50,56,55,52,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,50,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,54,51,55,52,44,52,48,46,51,50,53,51,52,52,93,44,91,45,56,57,46,54,48,50,57,55,57,44,52,48,46,51,50,48,49,50,57,93,44,91,45,56,57,46,54,48,49,54,56,56,44,52,48,46,49,50,50,51,55,56,93,44,91,45,56,57,46,53,55,56,50,56,57,44,51,57,46,57,55,54,49,50,55,93,44,91,45,56,57,46,52,48,52,57,56,52,44,51,57,46,57,49,56,49,56,55,93,44,91,45,56,57,46,50,49,55,56,52,54,44,51,57,46,57,49,54,57,57,93,44,91,45,56,57,46,49,52,52,55,54,52,44,52,48,46,48,52,56,56,53,51,93,44,91,45,56,57,46,49,52,56,55,54,52,44,52,48,46,50,56,50,48,51,56,93,44,91,45,56,57,46,50,54,51,55,52,44,52,48,46,51,50,53,51,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,87,105,110,110,101,98,97,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,57,50,54,44,34,98,101,100,115,34,58,55,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,48,52,48,55,44,52,52,46,50,52,52,49,48,50,93,44,91,45,56,56,46,55,51,57,55,55,44,52,52,46,50,52,51,51,48,51,93,44,91,45,56,56,46,56,56,54,54,55,51,44,52,52,46,50,52,50,54,50,50,93,44,91,45,56,56,46,56,56,54,49,57,51,44,52,51,46,57,56,51,50,51,51,93,44,91,45,56,56,46,56,56,53,54,57,55,44,52,51,46,56,57,53,49,56,52,93,44,91,45,56,56,46,52,48,51,49,57,53,44,52,51,46,56,57,50,57,55,55,93,44,91,45,56,56,46,52,48,52,49,56,55,44,52,51,46,57,51,56,50,93,44,91,45,56,56,46,52,48,52,48,55,44,52,52,46,50,52,52,49,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,51,52,53,56,56,44,51,54,46,53,48,50,54,49,49,93,44,91,45,56,56,46,57,48,51,52,56,44,51,54,46,53,55,54,56,54,52,93,44,91,45,56,57,46,49,55,52,55,50,55,44,51,54,46,54,53,48,52,55,53,93,44,91,45,56,57,46,50,50,55,48,52,54,44,51,54,46,53,54,57,53,51,55,93,44,91,45,56,57,46,51,50,55,53,56,56,44,51,54,46,54,51,50,50,55,54,93,44,91,45,56,57,46,52,49,55,50,55,53,44,51,54,46,52,57,57,48,49,49,93,44,91,45,56,57,46,51,52,54,48,54,54,44,51,54,46,53,48,51,50,51,50,93,44,91,45,56,56,46,56,51,52,53,56,56,44,51,54,46,53,48,50,54,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,72,97,114,118,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,53,53,53,44,34,98,101,100,115,34,58,49,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,48,49,56,52,49,44,51,56,46,49,55,51,56,49,52,93,44,91,45,57,55,46,55,48,49,57,54,57,44,51,55,46,57,49,49,51,50,53,93,44,91,45,57,55,46,49,53,50,52,55,54,44,51,55,46,57,49,50,55,51,51,93,44,91,45,57,55,46,49,53,50,57,49,51,44,51,56,46,48,56,55,55,48,52,93,44,91,45,57,55,46,49,53,51,48,57,51,44,51,56,46,49,55,52,54,51,52,93,44,91,45,57,55,46,51,55,49,55,53,44,51,56,46,49,55,51,54,55,51,93,44,91,45,57,55,46,55,48,49,56,52,49,44,51,56,46,49,55,51,56,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,68,97,119,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,57,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,52,48,54,51,48,57,44,52,55,46,49,56,49,53,56,51,93,44,91,45,49,48,53,46,51,50,52,56,53,51,44,52,55,46,49,56,49,52,57,54,93,44,91,45,49,48,53,46,51,50,52,55,53,55,44,52,54,46,57,55,55,49,57,54,93,44,91,45,49,48,53,46,49,57,54,55,51,53,44,52,54,46,57,55,55,49,55,50,93,44,91,45,49,48,53,46,48,50,55,53,50,54,44,52,54,46,56,54,49,52,53,55,93,44,91,45,49,48,52,46,54,48,51,55,54,54,44,52,54,46,56,54,48,56,53,51,93,44,91,45,49,48,52,46,52,49,50,49,50,52,44,52,54,46,57,48,52,48,48,51,93,44,91,45,49,48,52,46,51,48,54,48,54,50,44,52,55,46,48,52,50,48,52,54,93,44,91,45,49,48,52,46,51,52,49,54,56,44,52,55,46,50,52,53,51,57,50,93,44,91,45,49,48,52,46,52,50,48,51,52,55,44,52,55,46,51,53,52,52,51,53,93,44,91,45,49,48,52,46,53,49,51,50,57,50,44,52,55,46,51,53,52,55,49,57,93,44,91,45,49,48,52,46,53,49,51,48,52,57,44,52,55,46,53,50,57,52,52,50,93,44,91,45,49,48,52,46,53,57,51,54,54,52,44,52,55,46,54,49,54,50,57,52,93,44,91,45,49,48,52,46,57,55,56,53,53,51,44,52,55,46,54,49,54,50,55,50,93,44,91,45,49,48,52,46,57,55,56,48,57,44,52,55,46,55,48,51,50,57,51,93,44,91,45,49,48,53,46,50,51,53,48,49,54,44,52,55,46,55,48,51,53,56,49,93,44,91,45,49,48,53,46,50,51,52,55,55,49,44,52,55,46,55,57,48,53,48,50,93,44,91,45,49,48,53,46,51,54,51,50,54,50,44,52,55,46,55,57,48,52,49,57,93,44,91,45,49,48,53,46,52,48,54,53,56,49,44,52,55,46,53,50,57,53,51,52,93,44,91,45,49,48,53,46,52,48,54,51,48,57,44,52,55,46,49,56,49,53,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,53,49,44,34,98,101,100,115,34,58,49,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,51,56,56,55,56,44,51,57,46,52,53,50,52,54,53,93,44,91,45,56,48,46,48,50,53,48,48,49,44,51,57,46,52,48,49,52,52,54,93,44,91,45,56,48,46,49,57,55,50,56,54,44,51,57,46,51,57,51,49,56,54,93,44,91,45,56,48,46,49,54,54,51,56,55,44,51,57,46,50,52,50,50,56,51,93,44,91,45,56,48,46,48,50,51,52,49,49,44,51,57,46,50,52,55,56,57,50,93,44,91,45,55,57,46,56,57,53,53,51,54,44,51,57,46,50,57,57,53,56,52,93,44,91,45,55,57,46,56,57,52,54,56,56,44,51,57,46,52,51,53,53,56,56,93,44,91,45,55,57,46,57,51,56,56,55,56,44,51,57,46,52,53,50,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,77,105,100,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,51,56,57,44,34,98,101,100,115,34,58,51,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,44,91,45,56,52,46,54,48,55,53,52,44,52,51,46,52,54,54,48,48,54,93,44,91,45,56,52,46,51,54,57,56,55,54,44,52,51,46,52,54,54,48,52,52,93,44,91,45,56,52,46,49,55,48,53,55,54,44,52,51,46,52,56,49,57,54,57,93,44,91,45,56,52,46,49,54,56,49,50,55,44,52,51,46,53,54,56,56,57,57,93,44,91,45,56,52,46,49,54,55,51,49,56,44,52,51,46,56,50,53,57,48,50,93,44,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,81,117,105,116,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,55,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,57,56,53,51,54,44,51,52,46,53,49,49,48,56,56,93,44,91,45,57,48,46,51,48,52,51,49,55,44,51,52,46,53,48,57,54,50,49,93,44,91,45,57,48,46,51,57,57,52,57,56,44,51,52,46,52,50,51,56,48,55,93,44,91,45,57,48,46,52,53,48,53,55,50,44,51,52,46,50,54,50,52,48,50,93,44,91,45,57,48,46,52,53,48,57,56,49,44,51,52,46,48,55,50,57,51,50,93,44,91,45,57,48,46,49,51,53,54,57,53,44,51,52,46,48,55,50,57,93,44,91,45,57,48,46,49,51,53,52,53,54,44,51,52,46,49,54,48,48,55,52,93,44,91,45,57,48,46,49,57,52,48,56,54,44,51,52,46,51,48,49,52,48,55,93,44,91,45,57,48,46,49,57,56,53,51,54,44,51,52,46,53,49,49,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,57,53,44,34,98,101,100,115,34,58,52,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,53,49,50,56,53,44,51,55,46,55,57,56,56,55,56,93,44,91,45,56,54,46,50,55,53,50,55,44,51,55,46,53,57,51,53,49,57,93,44,91,45,56,54,46,49,49,52,48,57,53,44,51,55,46,53,54,55,49,51,49,93,44,91,45,56,54,46,48,52,55,53,57,56,44,51,55,46,52,52,57,57,51,51,93,44,91,45,56,53,46,56,57,50,56,48,52,44,51,55,46,52,52,48,51,48,56,93,44,91,45,56,53,46,56,55,54,48,48,54,44,51,55,46,53,52,51,50,53,57,93,44,91,45,56,53,46,54,56,48,52,56,56,44,51,55,46,55,51,50,50,56,52,93,44,91,45,56,53,46,55,51,55,55,55,55,44,51,55,46,56,49,49,55,57,93,44,91,45,56,53,46,57,51,56,51,50,49,44,51,55,46,57,57,56,55,53,54,93,44,91,45,56,53,46,57,52,55,49,49,52,44,51,56,46,48,48,53,48,56,53,93,44,91,45,56,53,46,57,57,56,57,53,50,44,51,55,46,57,57,57,54,53,52,93,44,91,45,56,54,46,48,48,55,52,51,50,44,51,55,46,56,49,56,52,51,57,93,44,91,45,56,54,46,49,53,49,50,56,53,44,51,55,46,55,57,56,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,49,54,57,44,34,98,101,100,115,34,58,49,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,52,52,51,56,56,44,51,56,46,52,55,51,56,55,56,93,44,91,45,56,57,46,49,52,55,53,57,55,44,51,56,46,50,49,50,56,57,53,93,44,91,45,56,57,46,49,50,57,54,51,50,44,51,56,46,49,50,52,55,54,55,93,44,91,45,56,56,46,55,48,52,54,48,54,44,51,56,46,49,50,53,49,57,53,93,44,91,45,56,56,46,55,48,50,51,57,49,44,51,56,46,50,53,54,54,54,49,93,44,91,45,56,56,46,54,57,56,57,54,49,44,51,56,46,52,55,52,57,49,52,93,44,91,45,56,57,46,49,52,52,51,56,56,44,51,56,46,52,55,51,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,97,109,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,57,49,51,52,54,44,52,52,46,56,48,52,48,51,53,93,44,91,45,57,55,46,52,57,50,50,54,54,44,52,52,46,53,52,51,56,56,52,93,44,91,45,57,55,46,49,50,56,48,50,52,44,52,52,46,53,52,51,49,50,54,93,44,91,45,57,54,46,56,56,53,53,48,52,44,52,52,46,53,52,51,55,55,51,93,44,91,45,57,54,46,56,56,52,53,55,44,52,52,46,56,48,52,52,51,54,93,44,91,45,57,55,46,52,57,49,51,52,54,44,52,52,46,56,48,52,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,52,56,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,52,51,52,49,52,44,52,53,46,53,53,53,48,56,50,93,44,91,45,57,48,46,48,52,50,50,55,51,44,52,53,46,51,56,49,56,54,54,93,44,91,45,57,48,46,48,52,51,54,56,53,44,52,53,46,49,50,48,50,49,52,93,44,91,45,56,57,46,52,50,53,57,55,49,44,52,53,46,49,49,57,48,57,56,93,44,91,45,56,57,46,52,50,52,56,50,52,44,52,53,46,52,54,55,49,54,54,93,44,91,45,56,57,46,52,50,56,50,53,56,44,52,53,46,53,53,53,51,53,51,93,44,91,45,57,48,46,48,52,51,52,49,52,44,52,53,46,53,53,53,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,54,57,50,44,34,98,101,100,115,34,58,49,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,50,54,50,50,56,44,52,52,46,57,57,52,56,54,51,93,44,91,45,55,52,46,54,52,49,56,55,50,44,52,52,46,57,53,50,54,50,49,93,44,91,45,55,52,46,53,50,53,54,56,51,44,52,52,46,49,55,48,54,51,54,93,44,91,45,55,52,46,53,51,53,49,53,54,44,52,52,46,48,57,57,50,53,93,44,91,45,55,52,46,50,56,49,56,55,44,52,52,46,49,50,48,53,53,50,93,44,91,45,55,52,46,48,57,51,52,57,44,52,52,46,49,51,55,54,49,53,93,44,91,45,55,52,46,49,52,49,52,50,52,44,52,52,46,52,48,55,50,54,56,93,44,91,45,55,51,46,57,48,57,54,56,55,44,52,52,46,52,50,57,54,57,57,93,44,91,45,55,51,46,57,56,54,51,56,50,44,52,52,46,55,48,55,55,55,51,93,44,91,45,55,52,46,48,50,55,51,56,57,44,52,52,46,57,57,53,54,56,53,93,44,91,45,55,52,46,55,50,54,50,50,56,44,52,52,46,57,57,52,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,51,48,34,44,34,78,65,77,69,34,58,34,70,114,101,100,101,114,105,99,107,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,54,57,44,34,98,101,100,115,34,58,52,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,53,51,48,50,56,51,44,51,56,46,51,48,57,49,55,53,93,44,91,45,55,55,46,52,52,55,49,50,54,44,51,56,46,50,56,52,54,49,52,93,44,91,45,55,55,46,52,54,55,48,53,51,44,51,56,46,51,49,56,54,54,93,44,91,45,55,55,46,53,51,48,50,56,51,44,51,56,46,51,48,57,49,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,82,97,108,101,105,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,50,51,50,44,34,98,101,100,115,34,58,52,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,49,52,50,50,56,44,51,55,46,55,57,49,50,49,49,93,44,91,45,56,49,46,52,50,55,55,56,49,44,51,55,46,55,52,57,51,53,50,93,44,91,45,56,49,46,51,48,52,49,51,44,51,55,46,53,52,54,53,54,52,93,44,91,45,56,49,46,50,50,50,49,50,49,44,51,55,46,53,49,48,52,49,54,93,44,91,45,56,49,46,48,57,52,54,51,44,51,55,46,53,56,56,54,53,56,93,44,91,45,56,49,46,48,54,56,55,55,52,44,51,55,46,54,51,57,56,50,51,93,44,91,45,56,48,46,57,48,53,57,54,49,44,51,55,46,54,57,56,53,57,54,93,44,91,45,56,48,46,57,52,53,48,57,44,51,55,46,56,49,57,49,50,49,93,44,91,45,56,49,46,48,55,51,50,52,57,44,51,55,46,56,55,53,56,54,53,93,44,91,45,56,49,46,50,57,53,49,50,55,44,51,55,46,56,56,57,51,49,49,93,44,91,45,56,49,46,51,56,48,56,50,57,44,51,55,46,57,54,57,49,48,57,93,44,91,45,56,49,46,52,53,54,54,51,50,44,51,55,46,57,56,55,51,48,55,93,44,91,45,56,49,46,53,55,49,51,51,52,44,51,55,46,57,50,56,49,48,55,93,44,91,45,56,49,46,53,49,52,50,50,56,44,51,55,46,55,57,49,50,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,104,97,118,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,52,53,57,44,34,98,101,100,115,34,58,50,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,56,57,51,51,55,55,44,51,52,46,48,56,56,52,48,55,93,44,91,45,49,48,52,46,56,57,50,52,51,51,44,51,51,46,51,57,56,49,57,57,93,44,91,45,49,48,52,46,57,48,53,52,50,52,44,51,51,46,49,51,56,57,48,52,93,44,91,45,49,48,53,46,51,49,54,57,54,56,44,51,51,46,49,51,50,51,48,51,93,44,91,45,49,48,53,46,51,53,50,53,49,51,44,51,50,46,57,54,50,48,48,55,93,44,91,45,49,48,53,46,51,53,52,48,49,44,51,50,46,53,49,56,55,55,54,93,44,91,45,49,48,52,46,56,53,49,53,50,52,44,51,50,46,53,50,48,53,52,49,93,44,91,45,49,48,52,46,56,52,49,53,55,54,44,51,50,46,57,54,51,50,49,51,93,44,91,45,49,48,51,46,56,49,52,53,48,55,44,51,50,46,57,54,53,49,49,52,93,44,91,45,49,48,51,46,55,54,54,52,49,55,44,51,50,46,57,54,53,50,54,52,93,44,91,45,49,48,51,46,55,54,54,51,54,49,44,51,51,46,51,57,53,50,57,55,93,44,91,45,49,48,51,46,55,50,48,56,48,57,44,51,51,46,53,54,57,53,51,55,93,44,91,45,49,48,51,46,53,49,48,49,50,57,44,51,51,46,53,55,48,49,49,55,93,44,91,45,49,48,51,46,53,48,57,55,53,57,44,51,51,46,54,53,55,50,54,50,93,44,91,45,49,48,51,46,55,49,56,51,51,51,44,51,51,46,54,53,54,50,49,93,44,91,45,49,48,51,46,55,49,54,56,56,53,44,51,51,46,56,49,57,53,53,56,93,44,91,45,49,48,51,46,56,52,49,57,51,51,44,51,51,46,56,49,57,50,93,44,91,45,49,48,51,46,56,52,49,54,57,49,44,51,52,46,48,56,49,57,48,57,93,44,91,45,49,48,51,46,57,52,54,48,49,57,44,51,52,46,48,56,50,52,54,51,93,44,91,45,49,48,52,46,49,53,53,54,44,51,52,46,48,56,51,50,48,53,93,44,91,45,49,48,52,46,49,53,54,50,54,57,44,51,51,46,57,57,53,52,49,51,93,44,91,45,49,48,52,46,55,56,54,49,48,52,44,51,52,46,48,48,48,49,51,55,93,44,91,45,49,48,52,46,55,56,54,52,50,57,44,51,52,46,48,56,55,54,54,52,93,44,91,45,49,48,52,46,56,57,51,51,55,55,44,51,52,46,48,56,56,52,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,70,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,57,49,55,44,34,98,101,100,115,34,58,50,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,50,52,56,50,53,55,44,51,53,46,56,51,57,49,55,56,93,44,91,45,49,48,54,46,50,53,48,52,57,57,44,51,53,46,55,53,53,56,49,56,93,44,91,45,49,48,54,46,50,52,52,50,49,54,44,51,53,46,50,49,53,54,53,55,93,44,91,45,49,48,54,46,50,52,51,56,55,52,44,51,53,46,48,52,48,48,48,51,93,44,91,45,49,48,53,46,55,49,52,52,49,57,44,51,53,46,48,52,49,54,48,53,93,44,91,45,49,48,53,46,55,50,48,53,50,57,44,51,53,46,56,55,49,49,56,53,93,44,91,45,49,48,53,46,55,49,55,52,55,55,44,51,53,46,57,55,56,55,52,49,93,44,91,45,49,48,54,46,48,55,49,51,52,57,44,51,54,46,48,48,49,57,55,93,44,91,45,49,48,54,46,48,53,52,51,52,54,44,51,53,46,57,51,48,55,56,51,93,44,91,45,49,48,54,46,50,52,53,54,52,57,44,51,53,46,57,51,48,55,52,50,93,44,91,45,49,48,54,46,50,52,56,51,52,53,44,51,53,46,56,53,53,54,53,50,93,44,91,45,49,48,54,46,50,52,56,50,53,55,44,51,53,46,56,51,57,49,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,52,49,56,50,44,34,98,101,100,115,34,58,53,57,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,49,50,53,57,44,51,51,46,54,57,55,49,53,49,93,44,91,45,49,49,56,46,48,57,54,52,55,51,44,51,51,46,54,53,51,54,53,49,93,44,91,45,49,49,55,46,56,49,54,51,53,54,44,51,51,46,52,57,48,56,55,50,93,44,91,45,49,49,55,46,54,49,49,48,56,49,44,51,51,46,51,51,51,57,57,50,93,44,91,45,49,49,55,46,53,55,56,52,56,44,51,51,46,52,53,51,57,50,55,93,44,91,45,49,49,55,46,53,48,57,55,50,50,44,51,51,46,53,48,53,48,49,57,93,44,91,45,49,49,55,46,52,49,50,57,56,55,44,51,51,46,54,53,57,48,52,53,93,44,91,45,49,49,55,46,53,51,51,57,57,57,44,51,51,46,55,49,48,51,53,53,93,44,91,45,49,49,55,46,54,55,51,49,51,52,44,51,51,46,56,55,49,48,48,53,93,44,91,45,49,49,55,46,55,56,51,50,56,55,44,51,51,46,57,52,54,52,49,49,93,44,91,45,49,49,55,46,57,55,54,52,57,56,44,51,51,46,57,52,54,48,53,93,44,91,45,49,49,56,46,48,53,56,57,49,56,44,51,51,46,56,52,54,49,50,49,93,44,91,45,49,49,56,46,49,50,53,57,44,51,51,46,54,57,55,49,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,67,114,117,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,53,56,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,52,53,50,51,44,51,49,46,55,51,49,50,49,57,93,44,91,45,49,49,49,46,49,54,52,49,56,51,44,51,49,46,55,50,53,56,57,93,44,91,45,49,49,49,46,49,54,51,55,49,55,44,51,49,46,53,50,49,55,50,52,93,44,91,45,49,49,49,46,51,54,54,57,50,50,44,51,49,46,53,50,49,51,54,49,93,44,91,45,49,49,49,46,51,54,54,51,55,50,44,51,49,46,52,50,54,48,54,49,93,44,91,45,49,49,49,46,48,55,52,57,56,44,51,49,46,51,51,50,51,52,49,93,44,91,45,49,49,48,46,52,53,57,55,53,49,44,51,49,46,51,51,50,57,49,52,93,44,91,45,49,49,48,46,52,53,50,51,44,51,49,46,55,51,49,50,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,67,117,114,114,105,116,117,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,51,49,51,51,48,51,44,51,54,46,53,53,48,53,50,93,44,91,45,55,54,46,49,49,52,48,54,57,44,51,54,46,51,53,55,52,57,56,93,44,91,45,55,53,46,57,54,57,54,50,53,44,51,54,46,51,48,54,51,49,50,93,44,91,45,55,53,46,56,56,55,57,56,52,44,51,54,46,49,54,51,51,49,49,93,44,91,45,55,53,46,57,48,54,50,57,53,44,51,54,46,48,56,53,56,55,55,93,44,91,45,55,53,46,56,52,48,48,52,54,44,51,54,46,48,50,56,56,51,52,93,44,91,45,55,53,46,55,54,52,55,50,55,44,51,54,46,48,54,48,49,51,57,93,44,91,45,55,53,46,56,49,51,49,48,56,44,51,54,46,50,50,51,53,54,93,44,91,45,55,53,46,55,48,57,48,55,56,44,51,54,46,50,52,52,57,56,52,93,44,91,45,55,53,46,55,57,55,52,57,55,44,51,54,46,53,53,48,57,49,54,93,44,91,45,55,54,46,49,50,50,51,52,57,44,51,54,46,53,53,48,53,50,51,93,44,91,45,55,54,46,51,49,51,51,48,51,44,51,54,46,53,53,48,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,51,49,49,52,53,44,51,56,46,56,53,50,53,48,55,93,44,91,45,56,55,46,57,48,56,49,49,51,44,51,56,46,56,53,48,49,48,55,93,44,91,45,56,55,46,57,49,50,50,56,54,44,51,56,46,53,55,48,49,48,52,93,44,91,45,56,55,46,54,53,49,53,50,57,44,51,56,46,53,54,56,49,54,54,93,44,91,45,56,55,46,53,49,57,54,49,44,51,56,46,54,57,55,49,57,56,93,44,91,45,56,55,46,53,51,49,49,52,53,44,51,56,46,56,53,50,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,51,56,55,44,34,98,101,100,115,34,58,50,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,51,54,52,49,44,52,48,46,53,54,53,53,50,53,93,44,91,45,56,54,46,49,54,53,48,50,52,44,52,48,46,53,54,50,54,52,57,93,44,91,45,56,54,46,51,55,52,52,49,55,44,52,48,46,53,54,49,51,54,49,93,44,91,45,56,54,46,51,55,53,55,54,50,44,52,48,46,52,51,49,56,53,49,93,44,91,45,56,54,46,50,52,50,57,57,50,44,52,48,46,51,55,51,54,54,49,93,44,91,45,56,54,46,50,52,50,56,49,50,44,52,48,46,52,48,50,57,49,52,93,44,91,45,56,53,46,56,54,50,49,49,55,44,52,48,46,52,48,54,56,56,57,93,44,91,45,56,53,46,56,54,51,54,52,49,44,52,48,46,53,54,53,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,54,50,56,57,50,44,51,56,46,53,51,51,53,49,57,93,44,91,45,56,55,46,52,48,55,53,56,51,44,51,56,46,51,55,53,53,48,49,93,44,91,45,56,55,46,51,49,53,57,51,44,51,56,46,51,55,53,48,52,56,93,44,91,45,56,55,46,51,49,54,56,57,51,44,51,56,46,50,52,54,48,55,55,93,44,91,45,56,55,46,48,55,51,48,54,55,44,51,56,46,50,51,50,53,57,54,93,44,91,45,56,55,46,48,55,50,51,54,57,44,51,56,46,53,49,52,55,93,44,91,45,56,55,46,50,52,50,48,57,55,44,51,56,46,53,52,52,57,51,93,44,91,45,56,55,46,52,54,50,56,57,50,44,51,56,46,53,51,51,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,104,114,105,115,116,105,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,54,51,44,34,98,101,100,115,34,58,55,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,51,51,51,54,56,44,51,55,46,48,48,50,49,48,51,93,44,91,45,56,55,46,54,53,57,55,50,52,44,51,54,46,57,54,54,51,57,55,93,44,91,45,56,55,46,54,57,52,49,57,50,44,51,54,46,54,51,55,49,48,56,93,44,91,45,56,55,46,54,52,49,49,53,55,44,51,54,46,54,51,56,49,48,57,93,44,91,45,56,55,46,51,51,53,57,56,44,51,54,46,54,52,49,54,53,57,93,44,91,45,56,55,46,50,53,57,51,55,49,44,51,55,46,48,55,50,52,48,49,93,44,91,45,56,55,46,51,51,51,55,52,49,44,51,55,46,49,53,55,49,56,54,93,44,91,45,56,55,46,53,50,49,54,48,57,44,51,55,46,49,48,53,51,52,52,93,44,91,45,56,55,46,54,56,48,54,49,55,44,51,55,46,49,52,57,50,51,57,93,44,91,45,56,55,46,55,51,51,51,54,56,44,51,55,46,48,48,50,49,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,69,97,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,49,53,53,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,55,52,50,52,53,44,52,50,46,55,55,48,55,56,52,93,44,91,45,56,53,46,48,55,49,54,48,57,44,52,50,46,52,50,49,52,50,56,93,44,91,45,56,52,46,55,49,56,52,57,51,44,52,50,46,52,50,49,53,50,93,44,91,45,56,52,46,54,48,48,52,48,51,44,52,50,46,52,50,49,57,56,52,93,44,91,45,56,52,46,54,48,50,55,54,49,44,52,50,46,55,54,57,56,56,93,44,91,45,56,52,46,56,51,55,48,56,53,44,52,50,46,55,55,48,52,55,57,93,44,91,45,56,53,46,48,55,52,50,52,53,44,52,50,46,55,55,48,55,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,87,97,112,101,108,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,49,53,44,34,98,101,100,115,34,58,50,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,52,48,51,54,49,44,52,49,46,49,54,49,50,57,56,93,44,91,45,57,50,46,54,51,57,48,57,49,44,52,48,46,56,57,56,56,56,54,93,44,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,44,91,45,57,50,46,49,55,57,57,55,52,44,52,49,46,49,54,50,54,54,50,93,44,91,45,57,50,46,52,49,48,50,51,51,44,52,49,46,49,54,49,57,52,50,93,44,91,45,57,50,46,54,52,48,51,54,49,44,52,49,46,49,54,49,50,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,73,109,112,101,114,105,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,50,49,54,44,34,98,101,100,115,34,58,50,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,48,54,49,54,56,44,51,50,46,54,49,56,52,56,93,44,91,45,49,49,52,46,55,49,57,52,57,55,44,51,50,46,55,49,56,55,51,57,93,44,91,45,49,49,52,46,53,50,54,56,53,54,44,51,50,46,55,53,55,48,57,52,93,44,91,45,49,49,52,46,52,54,50,57,50,57,44,51,50,46,57,48,55,57,52,52,93,44,91,45,49,49,52,46,53,49,54,56,52,50,44,51,51,46,48,50,55,56,56,54,93,44,91,45,49,49,52,46,54,55,48,56,48,51,44,51,51,46,48,51,55,57,56,51,93,44,91,45,49,49,52,46,55,48,55,56,57,54,44,51,51,46,48,57,55,52,51,49,93,44,91,45,49,49,52,46,54,55,55,48,51,50,44,51,51,46,50,55,48,49,54,57,93,44,91,45,49,49,52,46,55,50,48,48,54,53,44,51,51,46,52,48,55,56,57,49,93,44,91,45,49,49,52,46,54,50,55,49,50,53,44,51,51,46,52,51,51,53,53,52,93,44,91,45,49,49,53,46,54,48,57,54,53,53,44,51,51,46,52,50,54,56,55,51,93,44,91,45,49,49,54,46,48,56,53,49,54,53,44,51,51,46,52,50,53,57,51,50,93,44,91,45,49,49,54,46,49,48,51,50,53,50,44,51,51,46,48,55,52,54,55,93,44,91,45,49,49,54,46,49,48,54,49,54,56,44,51,50,46,54,49,56,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,52,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,50,50,57,52,44,52,50,46,48,55,49,52,56,52,93,44,91,45,56,54,46,50,50,54,48,57,53,44,52,49,46,55,54,48,52,48,54,93,44,91,45,56,54,46,48,54,50,53,55,53,44,52,49,46,55,54,48,53,49,51,93,44,91,45,56,53,46,55,57,49,51,51,53,44,52,49,46,55,53,57,48,55,56,93,44,91,45,56,53,46,55,54,48,49,56,54,44,52,49,46,55,57,56,56,49,52,93,44,91,45,56,53,46,55,54,50,57,52,51,44,52,50,46,48,54,57,51,50,55,93,44,91,45,56,54,46,50,50,50,57,52,44,52,50,46,48,55,49,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,87,105,108,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,53,56,49,53,44,51,49,46,51,52,54,54,57,53,93,44,91,45,57,49,46,51,48,51,53,56,44,51,49,46,51,54,48,57,55,53,93,44,91,45,57,49,46,52,50,52,48,49,50,44,51,49,46,51,49,53,48,52,93,44,91,45,57,49,46,52,55,56,55,57,57,44,51,49,46,50,51,56,57,57,57,93,44,91,45,57,49,46,53,56,57,52,53,49,44,51,49,46,49,57,49,49,52,93,44,91,45,57,49,46,54,51,54,57,52,50,44,51,48,46,57,57,57,52,49,54,93,44,91,45,57,49,46,49,55,54,49,52,44,51,48,46,57,57,57,48,56,93,44,91,45,57,49,46,48,54,48,50,49,57,44,51,48,46,57,57,56,57,50,55,93,44,91,45,57,49,46,48,53,57,52,51,49,44,51,49,46,50,56,49,56,53,56,93,44,91,45,57,49,46,48,57,53,51,57,56,44,51,49,46,51,50,48,57,55,53,93,44,91,45,57,49,46,49,53,56,49,53,44,51,49,46,51,52,54,54,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,56,50,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,50,34,44,34,78,65,77,69,34,58,34,89,97,107,117,116,97,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,49,46,48,48,49,57,53,53,44,54,48,46,51,57,49,54,56,56,93,44,91,45,49,52,49,46,50,49,51,52,53,49,44,54,48,46,52,51,53,50,54,56,93,44,91,45,49,52,49,46,55,57,48,54,48,49,44,54,48,46,52,51,53,50,51,56,93,44,91,45,49,52,49,46,55,57,48,54,49,57,44,54,48,46,53,50,49,56,57,57,93,44,91,45,49,52,51,46,49,57,51,53,49,57,44,54,48,46,53,50,49,56,50,56,93,44,91,45,49,52,51,46,56,57,51,51,50,53,44,54,48,46,48,50,52,49,54,54,93,44,91,45,49,52,51,46,56,57,53,50,49,44,53,57,46,57,52,50,54,52,55,93,44,91,45,49,52,51,46,54,52,50,55,48,50,44,53,57,46,57,56,56,56,50,53,93,44,91,45,49,52,50,46,56,50,54,48,52,53,44,54,48,46,48,53,49,49,48,50,93,44,91,45,49,52,50,46,53,55,55,57,56,55,44,54,48,46,48,52,51,53,50,93,44,91,45,49,52,49,46,56,56,57,51,49,50,44,53,57,46,57,53,50,54,57,53,93,44,91,45,49,52,48,46,57,50,55,49,57,50,44,53,57,46,55,48,50,48,55,53,93,44,91,45,49,52,48,46,52,50,53,48,57,55,44,53,57,46,54,53,55,48,51,93,44,91,45,49,51,57,46,57,48,50,56,51,53,44,53,57,46,52,57,55,57,56,51,93,44,91,45,49,51,57,46,53,55,57,53,51,57,44,53,57,46,51,55,55,54,48,54,93,44,91,45,49,51,56,46,56,55,51,57,48,51,44,53,57,46,49,56,48,49,54,54,93,44,91,45,49,51,56,46,54,49,56,49,55,54,44,53,57,46,48,55,52,55,50,56,93,44,91,45,49,51,56,46,50,53,50,53,48,54,44,53,56,46,57,56,57,52,52,93,44,91,45,49,51,56,46,48,50,49,52,54,55,44,53,56,46,56,54,49,52,52,57,93,44,91,45,49,51,56,46,48,50,49,54,49,44,53,56,46,55,57,48,48,50,51,93,44,91,45,49,51,55,46,53,50,53,54,55,53,44,53,56,46,57,48,56,57,55,53,93,44,91,45,49,51,55,46,53,44,53,56,46,57,56,53,51,57,53,93,44,91,45,49,51,55,46,54,48,55,51,53,54,44,53,57,46,50,52,51,56,48,51,93,44,91,45,49,51,56,46,54,50,54,50,48,50,44,53,57,46,55,54,56,53,56,93,44,91,45,49,51,56,46,55,48,55,51,55,56,44,53,57,46,57,48,54,51,50,53,93,44,91,45,49,51,57,46,48,53,51,54,55,49,44,53,57,46,57,57,52,56,51,55,93,44,91,45,49,51,57,46,49,57,56,56,52,54,44,54,48,46,48,56,56,50,57,54,93,44,91,45,49,51,57,46,48,55,52,56,49,57,44,54,48,46,51,53,50,53,48,53,93,44,91,45,49,51,57,46,54,57,50,57,56,49,44,54,48,46,51,51,53,50,50,52,93,44,91,45,49,51,57,46,57,56,49,48,57,52,44,54,48,46,49,56,49,57,54,54,93,44,91,45,49,52,48,46,52,53,56,50,48,54,44,54,48,46,51,48,56,48,56,53,93,44,91,45,49,52,48,46,53,50,48,52,50,53,44,54,48,46,50,49,57,56,49,57,93,44,91,45,49,52,49,46,48,48,49,57,56,44,54,48,46,51,48,54,51,54,57,93,44,91,45,49,52,49,46,48,48,49,57,53,53,44,54,48,46,51,57,49,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,83,104,101,114,105,100,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,54,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,50,48,50,49,51,44,51,57,46,53,54,56,48,51,52,93,44,91,45,49,48,48,46,55,50,49,50,57,54,44,51,57,46,49,51,51,51,56,49,93,44,91,45,49,48,48,46,49,54,52,50,44,51,57,46,49,51,50,48,55,49,93,44,91,45,49,48,48,46,49,54,49,54,54,55,44,51,57,46,53,54,55,50,55,55,93,44,91,45,49,48,48,46,49,56,48,51,53,49,44,51,57,46,53,54,54,56,57,93,44,91,45,49,48,48,46,55,50,48,50,49,51,44,51,57,46,53,54,56,48,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,101,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,55,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,44,91,45,56,57,46,55,51,48,49,53,52,44,51,50,46,57,50,57,57,50,52,93,44,91,45,56,57,46,55,51,48,48,49,54,44,51,50,46,56,56,53,48,55,50,93,44,91,45,56,57,46,55,51,48,51,48,52,44,51,50,46,54,51,52,50,50,56,93,44,91,45,56,57,46,55,51,48,49,53,50,44,51,50,46,53,55,55,50,52,56,93,44,91,45,56,57,46,51,50,50,53,57,56,44,51,50,46,53,55,54,52,51,51,93,44,91,45,56,57,46,51,49,55,53,56,56,44,51,50,46,53,55,54,52,53,56,93,44,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,103,117,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,51,54,51,44,34,98,101,100,115,34,58,54,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,54,54,49,48,51,44,49,56,46,51,48,51,51,50,49,93,44,91,45,54,54,46,49,49,55,55,55,52,44,49,56,46,50,48,57,57,52,57,93,44,91,45,54,54,46,48,57,53,48,57,57,44,49,56,46,49,54,57,48,55,55,93,44,91,45,54,54,46,48,53,50,53,53,53,44,49,56,46,49,49,51,48,54,57,93,44,91,45,54,53,46,57,57,55,54,53,44,49,56,46,50,48,54,57,57,50,93,44,91,45,54,54,46,48,50,49,55,52,55,44,49,56,46,51,48,53,48,51,52,93,44,91,45,54,54,46,48,52,49,53,51,53,44,49,56,46,51,49,50,51,52,52,93,44,91,45,54,54,46,48,54,54,49,48,51,44,49,56,46,51,48,51,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,109,117,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,57,48,50,48,56,54,44,49,56,46,53,51,53,50,51,56,93,44,91,45,54,54,46,56,57,56,57,44,49,56,46,51,54,54,49,48,56,93,44,91,45,54,54,46,56,57,51,51,51,57,44,49,56,46,51,54,55,48,56,57,93,44,91,45,54,54,46,56,50,52,50,50,51,44,49,56,46,51,52,50,57,57,56,93,44,91,45,54,54,46,56,51,54,54,57,51,44,49,56,46,53,52,48,50,48,54,93,44,91,45,54,54,46,57,48,50,48,56,54,44,49,56,46,53,51,53,50,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,56,48,56,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,49,57,57,55,57,44,51,51,46,56,49,49,51,51,93,44,91,45,56,56,46,57,51,49,49,55,54,44,51,51,46,56,49,50,51,55,52,93,44,91,45,56,57,46,48,51,52,52,57,56,44,51,51,46,55,51,57,52,51,93,44,91,45,56,57,46,48,49,56,54,49,51,44,51,51,46,53,54,50,49,49,52,93,44,91,45,56,56,46,54,55,49,53,50,54,44,51,51,46,53,54,53,49,51,53,93,44,91,45,56,56,46,54,55,49,50,53,44,51,51,46,53,48,54,49,54,56,93,44,91,45,56,56,46,52,57,50,53,48,52,44,51,51,46,53,52,51,49,53,52,93,44,91,45,56,56,46,53,49,51,57,49,55,44,51,51,46,54,53,48,50,48,57,93,44,91,45,56,56,46,55,49,57,54,50,54,44,51,51,46,54,56,48,50,53,51,93,44,91,45,56,56,46,55,49,57,57,55,57,44,51,51,46,56,49,49,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,53,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,51,55,51,51,44,51,49,46,54,49,49,49,50,52,93,44,91,45,57,49,46,49,53,51,56,54,52,44,51,49,46,54,49,48,48,54,56,93,44,91,45,57,49,46,49,53,56,49,53,44,51,49,46,51,52,54,54,57,53,93,44,91,45,57,49,46,48,57,53,51,57,56,44,51,49,46,51,50,48,57,55,53,93,44,91,45,57,48,46,57,56,51,48,48,50,44,51,49,46,51,52,56,54,55,49,93,44,91,45,57,48,46,54,51,51,51,48,50,44,51,49,46,51,52,57,51,48,54,93,44,91,45,57,48,46,54,51,51,50,51,49,44,51,49,46,54,49,49,52,48,57,93,44,91,45,57,48,46,55,51,55,51,51,44,51,49,46,54,49,49,49,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,78,101,115,104,111,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,55,54,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,44,91,45,56,57,46,51,49,55,53,56,56,44,51,50,46,53,55,54,52,53,56,93,44,91,45,56,56,46,57,49,52,53,49,54,44,51,50,46,53,55,54,57,53,53,93,44,91,45,56,56,46,57,49,52,52,49,51,44,51,50,46,57,50,54,54,93,44,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,69,100,109,117,110,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,48,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,55,48,55,55,48,53,44,52,53,46,53,57,51,51,57,49,93,44,91,45,57,57,46,55,48,56,57,56,55,44,52,53,46,50,52,53,56,54,54,93,44,91,45,57,57,46,53,55,51,51,51,44,52,53,46,50,52,53,51,54,52,93,44,91,45,57,56,46,55,50,50,52,56,49,44,52,53,46,50,52,51,55,54,52,93,44,91,45,57,56,46,55,50,53,48,48,50,44,52,53,46,53,57,49,50,53,50,93,44,91,45,57,57,46,55,48,55,55,48,53,44,52,53,46,53,57,51,51,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,82,195,173,111,32,71,114,97,110,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,53,53,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,56,48,53,51,49,51,44,49,56,46,52,55,56,50,53,51,93,44,91,45,54,53,46,56,54,55,52,52,55,44,49,56,46,51,55,56,49,57,56,93,44,91,45,54,53,46,56,51,54,51,56,55,44,49,56,46,50,55,53,50,52,54,93,44,91,45,54,53,46,56,50,52,50,50,44,49,56,46,50,55,51,48,53,52,93,44,91,45,54,53,46,55,54,54,56,51,49,44,49,56,46,50,56,48,48,48,52,93,44,91,45,54,53,46,55,53,56,56,54,49,44,49,56,46,50,57,48,54,48,52,93,44,91,45,54,53,46,55,49,51,56,50,53,44,49,56,46,52,52,52,48,50,52,93,44,91,45,54,53,46,56,48,53,51,49,51,44,49,56,46,52,55,56,50,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,111,110,101,99,117,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,49,52,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,48,53,56,57,57,44,51,49,46,55,53,51,48,51,53,93,44,91,45,56,55,46,49,51,53,48,53,49,44,51,49,46,54,52,50,52,49,55,93,44,91,45,56,55,46,49,54,54,53,56,49,44,51,49,46,53,49,57,53,54,49,93,44,91,45,56,55,46,52,50,55,52,53,53,44,51,49,46,50,54,48,51,56,54,93,44,91,45,56,54,46,55,54,51,57,54,49,44,51,49,46,50,54,49,50,57,51,93,44,91,45,56,54,46,55,48,48,50,56,50,44,51,49,46,49,57,50,50,49,55,93,44,91,45,56,54,46,55,48,49,53,53,52,44,51,49,46,53,50,51,57,52,54,93,44,91,45,56,54,46,56,51,57,51,56,54,44,51,49,46,53,50,53,50,48,52,93,44,91,45,56,54,46,57,48,54,55,54,57,44,51,49,46,54,51,50,54,55,49,93,44,91,45,56,54,46,57,48,53,56,57,57,44,51,49,46,55,53,51,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,68,101,97,114,98,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,53,48,49,44,34,98,101,100,115,34,58,49,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,54,53,53,55,52,44,51,57,46,51,48,55,50,51,50,93,44,91,45,56,53,46,49,51,50,53,48,56,44,51,56,46,57,52,56,48,53,53,93,44,91,45,56,52,46,56,55,55,54,50,52,44,51,57,46,48,51,49,50,49,51,93,44,91,45,56,52,46,56,50,48,49,53,55,44,51,57,46,49,48,53,52,56,57,93,44,91,45,56,52,46,56,49,57,52,53,44,51,57,46,51,48,53,49,53,51,93,44,91,45,56,53,46,48,54,53,53,55,52,44,51,57,46,51,48,55,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,51,56,44,34,98,101,100,115,34,58,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,49,55,52,55,52,44,51,56,46,57,57,48,56,55,93,44,91,45,56,54,46,50,55,53,50,56,49,44,51,56,46,55,54,51,55,57,53,93,44,91,45,56,54,46,48,57,49,55,48,53,44,51,56,46,55,56,51,51,57,57,93,44,91,45,56,53,46,56,56,56,51,51,52,44,51,56,46,55,51,52,52,52,51,93,44,91,45,56,53,46,55,57,53,51,53,55,44,51,56,46,56,48,55,53,48,56,93,44,91,45,56,53,46,55,57,56,56,48,52,44,51,57,46,48,54,56,53,51,54,93,44,91,45,56,53,46,56,54,48,53,55,51,44,51,57,46,48,52,48,57,49,93,44,91,45,56,54,46,48,56,48,50,55,50,44,51,57,46,48,53,48,50,55,93,44,91,45,56,54,46,51,49,56,49,51,51,44,51,57,46,48,52,56,56,49,93,44,91,45,56,54,46,51,49,55,52,55,52,44,51,56,46,57,57,48,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,57,49,53,44,34,98,101,100,115,34,58,55,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,52,50,48,55,57,44,51,52,46,52,54,53,50,55,54,93,44,91,45,56,56,46,55,51,54,52,54,53,44,51,52,46,53,48,56,57,49,93,44,91,45,56,56,46,56,50,52,57,54,54,44,51,52,46,51,54,52,55,53,57,93,44,91,45,56,56,46,56,50,52,53,50,51,44,51,52,46,48,55,52,57,52,56,93,44,91,45,56,56,46,55,49,56,57,54,52,44,51,52,46,48,55,52,53,50,49,93,44,91,45,56,56,46,53,52,51,51,53,50,44,51,52,46,48,56,57,48,52,52,93,44,91,45,56,56,46,53,52,50,48,55,57,44,51,52,46,52,54,53,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,87,101,115,116,32,70,101,108,105,99,105,97,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,55,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,57,49,46,54,54,50,53,48,54,44,51,48,46,57,55,48,51,54,50,93,44,91,45,57,49,46,54,54,49,51,55,50,44,51,48,46,56,53,55,48,57,57,93,44,91,45,57,49,46,53,49,53,54,50,54,44,51,48,46,56,54,49,51,55,56,93,44,91,45,57,49,46,53,53,51,48,49,57,44,51,48,46,55,51,48,55,57,56,93,44,91,45,57,49,46,51,56,48,54,50,44,51,48,46,55,53,56,56,48,52,93,44,91,45,57,49,46,51,51,48,56,55,44,51,48,46,54,53,56,54,55,55,93,44,91,45,57,49,46,51,49,48,48,54,49,44,51,48,46,54,53,51,57,54,49,93,44,91,45,57,49,46,50,52,48,52,57,52,44,51,48,46,55,56,55,49,54,51,93,44,91,45,57,49,46,49,55,54,49,52,44,51,48,46,57,57,57,48,56,93,44,91,45,57,49,46,54,51,54,57,52,50,44,51,48,46,57,57,57,52,49,54,93,44,91,45,57,49,46,54,54,50,53,48,54,44,51,48,46,57,55,48,51,54,50,93,93,93,44,91,91,91,45,57,49,46,55,50,51,56,48,52,44,51,49,46,48,52,52,50,53,52,93,44,91,45,57,49,46,55,53,48,49,49,57,44,51,49,46,48,49,56,56,49,52,93,44,91,45,57,49,46,54,53,56,51,50,49,44,51,48,46,57,57,52,51,54,53,93,44,91,45,57,49,46,55,50,51,56,48,52,44,51,49,46,48,52,52,50,53,52,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,114,105,116,116,101,110,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,49,51,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,48,50,52,50,57,44,51,53,46,52,52,49,55,50,54,93,44,91,45,57,48,46,53,48,50,57,57,51,44,51,53,46,49,52,52,50,49,52,93,44,91,45,57,48,46,52,48,48,52,51,56,44,51,53,46,49,52,56,50,51,49,93,44,91,45,57,48,46,52,48,56,53,52,44,51,52,46,57,48,52,49,50,49,93,44,91,45,57,48,46,52,48,55,57,57,49,44,51,52,46,56,51,50,57,55,93,44,91,45,57,48,46,51,48,52,53,51,50,44,51,52,46,56,54,48,53,56,56,93,44,91,45,57,48,46,50,52,54,49,49,54,44,51,52,46,57,52,52,51,49,54,93,44,91,45,57,48,46,51,48,57,50,56,57,44,51,52,46,57,57,53,54,57,52,93,44,91,45,57,48,46,50,48,57,51,57,55,44,51,53,46,48,50,54,53,52,54,93,44,91,45,57,48,46,49,55,51,54,48,51,44,51,53,46,49,49,56,48,55,51,93,44,91,45,57,48,46,48,54,54,53,57,49,44,51,53,46,49,51,53,57,57,93,44,91,45,57,48,46,49,53,50,48,57,52,44,51,53,46,50,53,53,57,56,57,93,44,91,45,57,48,46,48,55,52,57,57,50,44,51,53,46,51,56,52,49,53,50,93,44,91,45,57,48,46,49,52,48,50,53,55,44,51,53,46,52,51,54,54,51,54,93,44,91,45,57,48,46,50,56,54,56,57,57,44,51,53,46,52,51,56,53,55,51,93,44,91,45,57,48,46,53,48,50,52,50,57,44,51,53,46,52,52,49,55,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,55,50,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,48,50,52,57,57,44,51,49,46,48,48,48,54,56,53,93,44,91,45,56,53,46,52,56,56,50,57,56,44,51,48,46,57,57,55,48,54,52,93,44,91,45,56,53,46,52,57,55,57,57,50,44,51,48,46,57,57,54,57,51,49,93,44,91,45,56,53,46,53,57,57,57,51,52,44,51,48,46,56,51,48,53,53,50,93,44,91,45,56,53,46,52,51,50,50,55,52,44,51,48,46,55,56,53,52,53,55,93,44,91,45,56,53,46,52,51,52,55,56,50,44,51,48,46,53,54,55,53,54,93,44,91,45,56,53,46,51,56,51,57,52,56,44,51,48,46,53,54,54,56,53,54,93,44,91,45,56,53,46,49,55,49,56,57,49,44,51,48,46,53,54,52,51,51,54,93,44,91,45,56,53,46,49,54,52,55,52,52,44,51,48,46,54,48,56,48,55,57,93,44,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,44,91,45,56,52,46,56,54,52,54,57,51,44,51,48,46,55,49,49,53,52,50,93,44,91,45,56,52,46,57,49,49,49,50,50,44,51,48,46,55,53,49,49,57,49,93,44,91,45,56,53,46,48,48,50,52,57,57,44,51,49,46,48,48,48,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,68,105,99,107,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,44,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,44,91,45,49,48,48,46,53,49,55,52,52,57,44,51,51,46,51,57,55,56,54,54,93,44,91,45,49,48,48,46,53,49,56,54,57,49,44,51,51,46,56,51,53,54,53,93,44,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,97,116,104,101,119,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,51,55,53,54,49,44,51,55,46,53,49,52,51,54,93,44,91,45,55,54,46,52,52,52,55,51,54,44,51,55,46,52,49,56,53,51,57,93,44,91,45,55,54,46,51,48,52,53,44,51,55,46,50,55,56,51,54,49,93,44,91,45,55,54,46,49,51,54,51,48,49,44,51,55,46,50,56,50,49,51,55,93,44,91,45,55,54,46,49,52,48,56,51,53,44,51,55,46,53,52,50,50,50,93,44,91,45,55,54,46,52,51,55,53,54,49,44,51,55,46,53,49,52,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,82,101,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,50,49,54,52,51,44,52,56,46,56,48,55,49,48,56,93,44,91,45,49,48,50,46,48,50,49,52,50,56,44,52,56,46,55,50,48,50,56,51,93,44,91,45,49,48,49,46,56,52,50,50,52,52,44,52,56,46,55,50,48,48,54,52,93,44,91,45,49,48,49,46,56,52,50,56,52,49,44,52,56,46,52,53,57,52,51,57,93,44,91,45,49,48,49,46,48,53,57,56,51,51,44,52,56,46,52,53,56,52,52,56,93,44,91,45,49,48,49,46,48,53,57,54,54,51,44,52,56,46,53,52,53,52,49,57,93,44,91,45,49,48,49,46,52,53,49,50,55,53,44,52,56,46,53,52,54,48,55,57,93,44,91,45,49,48,49,46,52,57,54,54,56,52,44,52,56,46,55,50,48,48,55,56,93,44,91,45,49,48,49,46,52,57,54,53,53,50,44,52,56,46,57,57,57,52,50,49,93,44,91,45,49,48,50,46,48,50,49,49,52,52,44,52,56,46,57,57,57,48,49,53,93,44,91,45,49,48,50,46,48,50,49,54,52,51,44,52,56,46,56,48,55,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,51,34,44,34,78,65,77,69,34,58,34,76,97,32,83,97,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,57,52,49,55,55,44,50,56,46,50,48,52,54,50,55,93,44,91,45,57,57,46,51,56,56,57,52,54,44,50,56,46,48,51,48,52,49,57,93,44,91,45,57,56,46,56,48,51,51,50,53,44,50,56,46,48,53,55,52,56,93,44,91,45,57,56,46,56,48,48,56,52,56,44,50,56,46,54,52,55,51,48,54,93,44,91,45,57,56,46,56,48,48,56,52,49,44,50,56,46,54,52,55,52,56,55,93,44,91,45,57,57,46,51,57,53,55,51,54,44,50,56,46,54,52,48,55,56,52,93,44,91,45,57,57,46,51,57,52,49,55,55,44,50,56,46,50,48,52,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,79,110,111,110,100,97,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,52,50,52,50,44,34,98,101,100,115,34,58,49,56,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,55,57,50,50,52,44,52,51,46,50,50,55,53,49,57,93,44,91,45,55,54,46,52,53,48,55,51,56,44,52,50,46,56,52,53,55,54,93,44,91,45,55,54,46,51,53,54,57,55,52,44,52,50,46,56,52,57,52,53,93,44,91,45,55,54,46,50,55,52,54,55,51,44,52,50,46,55,55,49,50,53,55,93,44,91,45,55,53,46,56,57,54,48,55,57,44,52,50,46,55,57,48,57,54,52,93,44,91,45,55,53,46,57,49,55,49,56,57,44,52,51,46,48,56,53,55,55,57,93,44,91,45,55,53,46,57,57,51,51,57,52,44,52,51,46,49,56,51,51,55,54,93,44,91,45,55,54,46,49,54,57,48,52,55,44,52,51,46,50,52,54,54,54,56,93,44,91,45,55,54,46,52,55,57,50,50,52,44,52,51,46,50,50,55,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,50,54,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,49,54,48,52,50,44,52,49,46,49,54,50,56,48,56,93,44,91,45,57,49,46,55,49,56,49,56,44,52,48,46,57,48,49,48,56,55,93,44,91,45,57,49,46,55,49,56,55,56,55,44,52,48,46,56,49,51,53,52,52,93,44,91,45,57,49,46,52,48,57,52,53,51,44,52,48,46,56,49,50,57,48,53,93,44,91,45,57,49,46,51,55,48,55,49,44,52,49,46,48,55,52,49,49,50,93,44,91,45,57,49,46,52,56,53,55,49,55,44,52,49,46,49,54,50,52,48,53,93,44,91,45,57,49,46,55,49,54,48,52,50,44,52,49,46,49,54,50,56,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,97,114,108,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,51,56,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,44,91,45,57,57,46,54,51,48,52,53,57,44,52,48,46,51,53,49,49,50,93,44,91,45,57,57,46,54,50,56,50,53,52,44,52,48,46,48,48,49,56,52,55,93,44,91,45,57,57,46,54,50,53,51,50,52,44,52,48,46,48,48,49,56,53,57,93,44,91,45,57,57,46,49,55,57,49,51,52,44,52,48,46,48,48,50,48,49,51,93,44,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,80,111,119,100,101,114,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,56,49,57,52,44,52,53,46,55,56,54,57,56,50,93,44,91,45,49,48,54,46,49,57,49,55,51,52,44,52,53,46,55,56,56,54,93,44,91,45,49,48,54,46,50,51,52,53,48,50,44,52,53,46,55,56,56,53,55,56,93,44,91,45,49,48,54,46,50,51,53,55,49,54,44,52,53,46,51,53,49,55,57,54,93,44,91,45,49,48,54,46,50,55,57,55,48,57,44,52,53,46,49,55,57,55,50,56,93,44,91,45,49,48,54,46,50,54,51,55,49,53,44,52,52,46,57,57,51,56,49,54,93,44,91,45,49,48,54,46,48,50,52,56,49,53,44,52,52,46,57,57,51,52,57,53,93,44,91,45,49,48,53,46,48,55,54,54,48,49,44,52,52,46,57,57,57,57,50,54,93,44,91,45,49,48,53,46,48,51,56,50,52,57,44,52,53,46,48,48,48,49,48,54,93,44,91,45,49,48,53,46,48,51,56,50,48,53,44,52,53,46,51,53,50,48,51,53,93,44,91,45,49,48,52,46,57,56,55,51,49,56,44,52,53,46,51,53,50,48,52,93,44,91,45,49,48,52,46,57,56,49,57,52,44,52,53,46,55,56,54,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,74,117,97,110,97,32,68,195,173,97,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,57,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,53,50,55,54,54,44,49,56,46,49,53,50,48,53,55,93,44,91,45,54,54,46,53,52,57,55,48,55,44,49,55,46,57,52,49,57,51,56,93,44,91,45,54,54,46,52,57,57,54,49,51,44,49,55,46,56,52,49,53,53,56,93,44,91,45,54,54,46,52,50,52,53,55,53,44,49,55,46,56,56,49,57,51,56,93,44,91,45,54,54,46,52,50,54,57,56,57,44,49,56,46,48,52,50,54,50,55,93,44,91,45,54,54,46,52,51,48,51,49,52,44,49,56,46,48,56,50,48,53,51,93,44,91,45,54,54,46,53,50,49,56,57,57,44,49,56,46,49,53,49,57,53,52,93,44,91,45,54,54,46,53,52,55,50,50,44,49,56,46,49,53,51,49,51,93,44,91,45,54,54,46,53,53,50,55,54,54,44,49,56,46,49,53,50,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,80,101,112,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,54,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,53,48,51,54,49,44,52,52,46,54,56,51,54,51,51,93,44,91,45,57,50,46,49,51,53,50,48,50,44,52,52,46,54,56,52,51,55,52,93,44,91,45,57,50,46,49,51,53,51,44,52,52,46,53,51,57,53,56,93,44,91,45,57,50,46,51,49,54,49,54,57,44,52,52,46,53,52,49,48,48,57,93,44,91,45,57,50,46,50,52,50,48,49,44,52,52,46,52,53,52,50,53,52,93,44,91,45,57,50,46,48,56,51,53,55,50,44,52,52,46,52,48,55,51,51,54,93,44,91,45,57,50,46,48,50,57,49,56,44,52,52,46,53,56,54,50,57,50,93,44,91,45,57,49,46,54,53,48,50,52,56,44,52,52,46,53,57,54,54,52,57,93,44,91,45,57,49,46,54,53,48,51,54,49,44,52,52,46,54,56,51,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,112,97,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,53,50,50,44,34,98,101,100,115,34,58,49,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,48,48,48,54,56,56,44,51,54,46,57,57,56,51,52,57,93,44,91,45,49,49,48,46,48,48,48,54,55,54,44,51,54,46,52,52,53,50,56,52,93,44,91,45,49,49,48,46,48,48,48,54,55,52,44,51,53,46,54,54,51,48,56,55,93,44,91,45,49,48,57,46,56,50,54,57,54,52,44,51,53,46,54,54,50,56,56,55,93,44,91,45,49,48,57,46,56,52,51,55,54,52,44,51,53,46,53,49,55,56,55,53,93,44,91,45,49,48,57,46,56,52,52,54,50,52,44,51,52,46,56,50,50,53,54,50,93,44,91,45,49,48,57,46,56,54,52,57,56,57,44,51,52,46,53,54,54,56,57,51,93,44,91,45,49,48,57,46,56,52,56,50,52,54,44,51,52,46,52,55,51,52,48,49,93,44,91,45,49,48,57,46,56,53,57,50,55,52,44,51,51,46,55,55,55,54,56,51,93,44,91,45,49,48,57,46,56,57,49,54,55,54,44,51,51,46,53,54,55,56,55,52,93,44,91,45,49,48,57,46,55,57,57,55,56,50,44,51,51,46,52,56,56,51,49,52,93,44,91,45,49,48,57,46,52,57,53,52,52,44,51,51,46,54,53,50,54,57,55,93,44,91,45,49,48,57,46,51,52,56,53,56,49,44,51,51,46,55,55,56,49,50,51,93,44,91,45,49,48,57,46,48,52,54,55,49,55,44,51,51,46,55,55,55,52,48,55,93,44,91,45,49,48,57,46,48,52,54,49,50,50,44,51,52,46,53,55,57,50,57,49,93,44,91,45,49,48,57,46,48,52,53,57,57,54,44,51,52,46,57,53,57,56,49,57,93,44,91,45,49,48,57,46,48,52,54,48,54,55,44,51,54,46,48,48,50,55,48,49,93,44,91,45,49,48,57,46,48,52,53,49,55,50,44,51,54,46,57,57,56,57,55,55,93,44,91,45,49,49,48,46,48,48,48,54,56,56,44,51,54,46,57,57,56,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,53,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,52,55,52,55,55,44,52,48,46,48,51,55,51,48,49,93,44,91,45,57,50,46,56,53,55,57,50,44,51,57,46,54,57,57,57,56,53,93,44,91,45,57,50,46,54,56,57,51,51,49,44,51,57,46,54,57,56,48,57,52,93,44,91,45,57,50,46,54,57,50,49,52,57,44,51,57,46,54,49,48,50,54,53,93,44,91,45,57,50,46,51,48,48,56,55,49,44,51,57,46,54,48,53,51,52,56,93,44,91,45,57,50,46,50,57,57,51,49,54,44,51,57,46,54,48,53,51,52,52,93,44,91,45,57,50,46,50,56,55,56,56,50,44,51,57,46,57,53,50,52,57,93,44,91,45,57,50,46,51,52,53,48,54,52,44,52,48,46,48,51,55,50,49,93,44,91,45,57,50,46,56,52,55,52,55,55,44,52,48,46,48,51,55,51,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,57,34,44,34,78,65,77,69,34,58,34,76,97,109,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,54,50,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,49,53,49,53,44,51,52,46,51,49,50,56,57,49,93,44,91,45,49,48,50,46,54,49,53,52,52,55,44,51,51,46,56,50,53,49,50,49,93,44,91,45,49,48,50,46,48,56,53,55,51,51,44,51,51,46,56,50,52,54,55,53,93,44,91,45,49,48,50,46,48,57,48,52,49,53,44,51,52,46,51,49,51,49,51,50,93,44,91,45,49,48,50,46,53,50,53,54,51,49,44,51,52,46,51,49,51,48,51,52,93,44,91,45,49,48,50,46,54,49,53,49,53,44,51,52,46,51,49,50,56,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,75,105,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,54,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,53,57,53,56,44,51,55,46,55,51,52,56,56,56,93,44,91,45,57,57,46,53,53,54,49,49,57,44,51,55,46,52,54,55,55,50,50,93,44,91,45,57,57,46,53,52,51,49,56,57,44,51,55,46,51,56,49,49,50,52,93,44,91,45,57,57,46,48,49,49,52,57,57,44,51,55,46,51,56,52,50,54,51,93,44,91,45,57,57,46,48,49,50,53,57,56,44,51,55,46,52,55,48,52,50,49,93,44,91,45,57,57,46,48,49,51,53,53,44,51,55,46,55,51,50,57,55,93,44,91,45,57,57,46,53,53,57,53,56,44,51,55,46,55,51,52,56,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,65,117,115,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,53,54,53,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,54,57,56,52,52,44,50,57,46,57,54,49,53,49,54,93,44,91,45,57,54,46,52,49,51,50,56,51,44,50,57,46,56,50,52,57,56,53,93,44,91,45,57,54,46,51,51,48,56,54,57,44,50,57,46,56,49,52,52,52,57,93,44,91,45,57,54,46,50,53,54,54,57,54,44,50,57,46,54,54,55,48,54,49,93,44,91,45,57,54,46,49,55,53,52,50,50,44,50,57,46,54,51,51,56,48,54,93,44,91,45,57,54,46,48,56,56,57,49,50,44,50,57,46,54,48,49,54,53,56,93,44,91,45,57,54,46,48,51,50,55,49,49,44,50,57,46,55,50,55,57,52,52,93,44,91,45,57,54,46,49,48,50,52,57,54,44,50,57,46,56,48,57,54,54,53,93,44,91,45,57,54,46,49,51,49,54,53,44,50,57,46,57,51,55,53,48,52,93,44,91,45,57,54,46,48,56,52,53,52,49,44,51,48,46,48,48,53,49,51,55,93,44,91,45,57,54,46,49,52,54,48,53,50,44,51,48,46,48,55,48,50,50,52,93,44,91,45,57,54,46,50,57,50,56,52,57,44,51,48,46,48,57,54,49,53,93,44,91,45,57,54,46,54,50,49,57,56,44,51,48,46,48,52,52,50,56,51,93,44,91,45,57,54,46,53,54,57,56,52,52,44,50,57,46,57,54,49,53,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,68,97,118,105,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,49,56,56,44,52,48,46,48,51,52,56,56,53,93,44,91,45,57,52,46,50,48,53,56,52,52,44,51,57,46,55,56,56,57,53,52,93,44,91,45,57,51,46,55,53,56,57,57,50,44,51,57,46,55,56,52,54,55,52,93,44,91,45,57,51,46,55,54,49,57,55,51,44,51,57,46,57,53,57,53,53,50,93,44,91,45,57,51,46,55,54,52,48,50,49,44,52,48,46,49,51,50,57,48,57,93,44,91,45,57,52,46,50,49,54,54,57,54,44,52,48,46,49,51,54,54,50,54,93,44,91,45,57,52,46,50,49,56,56,44,52,48,46,48,51,52,56,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,51,34,44,34,78,65,77,69,34,58,34,83,101,109,105,110,111,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,51,55,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,51,48,56,53,53,44,51,49,46,48,54,57,49,57,93,44,91,45,56,52,46,57,50,50,52,50,51,44,51,49,46,48,55,50,53,57,93,44,91,45,56,53,46,48,50,56,53,54,52,44,51,49,46,48,55,53,53,50,51,93,44,91,45,56,53,46,48,48,50,52,57,57,44,51,49,46,48,48,48,54,56,53,93,44,91,45,56,52,46,57,49,49,49,50,50,44,51,48,46,55,53,49,49,57,49,93,44,91,45,56,52,46,56,54,52,54,57,51,44,51,48,46,55,49,49,53,52,50,93,44,91,45,56,52,46,56,54,51,52,54,53,44,51,48,46,55,49,49,52,57,52,93,44,91,45,56,52,46,55,53,53,57,49,55,44,51,48,46,56,56,53,50,55,93,44,91,45,56,52,46,55,51,48,56,53,53,44,51,49,46,48,54,57,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,97,110,105,115,116,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,52,52,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,44,91,45,56,54,46,56,52,54,57,50,56,44,52,52,46,53,49,57,52,50,57,93,44,91,45,56,54,46,57,50,51,52,48,51,44,52,52,46,51,50,56,56,50,53,93,44,91,45,56,54,46,57,56,55,57,57,56,44,52,52,46,49,56,50,54,52,57,93,44,91,45,56,54,46,48,52,51,53,48,55,44,52,52,46,49,54,55,48,56,56,93,44,91,45,56,53,46,56,50,49,49,56,54,44,52,52,46,49,54,52,49,57,55,93,44,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,76,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,54,57,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,53,51,49,54,50,44,52,51,46,53,48,48,49,53,53,93,44,91,45,57,54,46,52,53,51,50,54,44,52,51,46,53,48,48,51,57,93,44,91,45,57,54,46,53,57,57,49,57,49,44,52,51,46,53,48,48,52,53,54,93,44,91,45,57,54,46,53,50,49,55,50,44,52,51,46,51,56,54,55,53,53,93,44,91,45,57,54,46,53,53,52,57,54,57,44,52,51,46,50,53,57,57,53,49,93,44,91,45,57,53,46,56,54,49,57,49,52,44,52,51,46,50,53,55,53,54,54,93,44,91,45,57,53,46,56,54,48,57,52,55,44,52,51,46,53,48,48,48,51,54,93,44,91,45,57,54,46,48,53,51,49,54,50,44,52,51,46,53,48,48,49,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,51,34,44,34,78,65,77,69,34,58,34,72,117,116,99,104,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,55,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,44,91,45,49,48,49,46,54,50,50,56,51,49,44,51,53,46,54,50,52,48,53,55,93,44,91,45,49,48,49,46,48,56,54,48,54,56,44,51,53,46,54,50,53,50,54,55,93,44,91,45,49,48,49,46,48,56,53,55,51,53,44,51,54,46,48,53,53,50,55,54,93,44,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,50,49,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,54,54,52,53,49,44,51,54,46,57,57,55,57,50,50,93,44,91,45,49,48,49,46,53,53,53,50,53,57,44,51,54,46,57,57,53,51,50,52,93,44,91,45,49,48,50,46,48,50,56,50,48,52,44,51,54,46,57,57,51,49,48,50,93,44,91,45,49,48,50,46,48,51,50,51,51,56,44,51,54,46,53,48,48,53,55,53,93,44,91,45,49,48,49,46,54,50,51,57,49,53,44,51,54,46,52,57,57,53,50,56,93,44,91,45,49,48,49,46,48,56,53,49,53,54,44,51,54,46,52,57,57,50,52,52,93,44,91,45,49,48,48,46,57,53,52,49,53,51,44,51,54,46,52,57,57,57,49,54,93,44,91,45,49,48,48,46,57,52,53,52,54,51,44,51,54,46,57,57,56,52,49,54,93,44,91,45,49,48,49,46,48,54,54,52,53,49,44,51,54,46,57,57,55,57,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,87,111,111,100,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,54,55,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,57,53,49,56,54,44,51,54,46,56,49,57,53,54,54,93,44,91,45,57,57,46,50,57,53,49,57,51,44,51,54,46,53,57,53,48,51,49,93,44,91,45,57,57,46,54,48,53,54,51,52,44,51,54,46,53,57,50,55,53,52,93,44,91,45,57,57,46,53,57,54,48,55,57,44,51,54,46,49,54,52,48,54,49,93,44,91,45,57,57,46,51,56,50,48,55,52,44,51,54,46,49,54,52,51,48,49,93,44,91,45,57,56,46,57,53,53,56,52,57,44,51,54,46,49,54,49,53,55,55,93,44,91,45,57,56,46,57,54,48,51,51,52,44,51,54,46,53,48,54,57,49,52,93,44,91,45,57,56,46,57,53,57,57,55,51,44,51,54,46,53,57,56,57,57,49,93,44,91,45,57,57,46,49,51,57,56,53,53,44,51,54,46,55,56,51,48,52,93,44,91,45,57,57,46,50,57,53,49,56,54,44,51,54,46,56,49,57,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,54,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,50,55,53,56,55,44,52,49,46,49,53,56,53,48,56,93,44,91,45,57,52,46,57,50,56,52,53,57,44,52,48,46,57,48,48,54,53,51,93,44,91,45,57,52,46,52,55,48,55,55,57,44,52,48,46,56,57,57,53,48,50,93,44,91,45,57,52,46,52,55,48,54,48,51,44,52,49,46,49,53,55,53,54,54,93,44,91,45,57,52,46,55,48,48,53,56,57,44,52,49,46,49,53,56,48,56,53,93,44,91,45,57,52,46,57,50,55,53,56,55,44,52,49,46,49,53,56,53,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,83,117,116,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,56,55,50,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,57,48,56,50,54,57,44,51,57,46,51,48,51,56,55,56,93,44,91,45,49,50,49,46,57,52,53,53,49,52,44,51,57,46,49,55,57,56,52,51,93,44,91,45,49,50,49,46,56,49,57,49,52,50,44,51,56,46,57,56,56,53,53,49,93,44,91,45,49,50,49,46,56,51,53,52,56,56,44,51,56,46,57,50,52,52,56,49,93,44,91,45,49,50,49,46,55,50,51,51,52,54,44,51,56,46,56,48,51,55,53,57,93,44,91,45,49,50,49,46,54,48,50,56,57,52,44,51,56,46,55,51,53,56,51,56,93,44,91,45,49,50,49,46,52,56,52,51,57,54,44,51,56,46,55,51,52,53,57,56,93,44,91,45,49,50,49,46,52,54,57,51,53,54,44,51,56,46,57,50,53,57,57,50,93,44,91,45,49,50,49,46,52,49,52,55,55,57,44,51,56,46,57,57,54,52,53,50,93,44,91,45,49,50,49,46,53,52,51,51,48,54,44,51,56,46,57,55,50,52,48,52,93,44,91,45,49,50,49,46,54,50,57,48,56,57,44,51,57,46,50,48,52,54,55,56,93,44,91,45,49,50,49,46,54,50,51,55,54,44,51,57,46,50,57,53,54,50,49,93,44,91,45,49,50,49,46,57,48,56,50,54,57,44,51,57,46,51,48,51,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,80,111,116,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,51,55,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,48,54,54,48,52,44,52,49,46,57,57,57,53,57,53,93,44,91,45,55,56,46,50,48,51,52,50,50,44,52,49,46,54,49,56,49,53,55,93,44,91,45,55,56,46,48,53,48,52,52,50,44,52,49,46,52,55,53,52,54,50,93,44,91,45,55,55,46,57,56,57,49,57,52,44,52,49,46,52,55,52,56,50,50,93,44,91,45,55,55,46,53,57,56,49,50,57,44,52,49,46,52,55,56,53,55,54,93,44,91,45,55,55,46,53,57,57,50,55,56,44,52,49,46,53,52,50,50,55,49,93,44,91,45,55,55,46,54,49,48,48,50,55,44,52,49,46,57,57,57,51,54,56,93,44,91,45,55,55,46,55,52,57,57,51,49,44,52,49,46,57,57,56,55,56,50,93,44,91,45,55,56,46,50,48,54,54,48,52,44,52,49,46,57,57,57,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,54,53,34,44,34,78,65,77,69,34,58,34,86,97,108,32,86,101,114,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,50,55,44,34,98,101,100,115,34,58,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,55,54,48,57,50,52,44,50,57,46,55,56,49,56,48,50,93,44,91,45,49,48,49,46,54,52,54,57,51,54,44,50,57,46,55,53,52,53,54,53,93,44,91,45,49,48,49,46,52,53,53,55,57,57,44,50,57,46,55,56,56,48,52,57,93,44,91,45,49,48,49,46,51,48,48,48,50,55,44,50,57,46,54,52,48,55,48,50,93,44,91,45,49,48,49,46,50,54,49,49,55,54,44,50,57,46,53,51,54,55,55,54,93,44,91,45,49,48,49,46,48,54,48,49,53,49,44,50,57,46,52,53,56,54,54,49,93,44,91,45,49,48,49,46,48,48,51,57,53,51,44,50,57,46,51,54,52,55,48,51,93,44,91,45,49,48,48,46,55,57,52,54,50,55,44,50,57,46,50,52,49,54,49,50,93,44,91,45,49,48,48,46,55,52,53,51,48,56,44,50,57,46,50,54,52,56,57,56,93,44,91,45,49,48,48,46,54,57,57,49,52,49,44,50,57,46,52,49,57,55,52,55,93,44,91,45,49,48,48,46,54,57,57,57,51,50,44,50,57,46,54,50,51,56,57,55,93,44,91,45,49,48,48,46,55,48,48,51,57,51,44,51,48,46,50,56,56,50,55,54,93,44,91,45,49,48,48,46,57,54,48,54,52,51,44,51,48,46,50,56,55,55,55,54,93,44,91,45,49,48,49,46,55,53,56,52,44,51,48,46,50,56,56,48,52,52,93,44,91,45,49,48,49,46,55,54,48,57,50,52,44,50,57,46,55,56,49,56,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,72,97,114,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,52,57,56,48,52,44,51,55,46,51,56,52,48,53,54,93,44,91,45,57,56,46,51,52,55,49,52,57,44,51,54,46,57,57,56,49,53,53,93,44,91,45,57,56,46,49,49,49,57,56,53,44,51,54,46,57,57,56,48,57,51,93,44,91,45,57,55,46,56,48,50,51,49,51,44,51,54,46,57,57,56,55,49,56,93,44,91,45,57,55,46,56,48,55,48,53,55,44,51,55,46,51,56,54,50,57,51,93,44,91,45,57,56,46,51,52,57,56,48,52,44,51,55,46,51,56,52,48,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,77,111,110,111,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,57,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,53,54,53,54,44,52,50,46,50,49,53,48,48,50,93,44,91,45,57,54,46,50,55,51,49,50,44,52,50,46,48,52,55,49,53,56,93,44,91,45,57,54,46,49,50,57,49,56,54,44,52,49,46,57,54,53,49,51,54,93,44,91,45,57,54,46,49,51,57,48,48,56,44,52,49,46,56,54,54,50,55,55,93,44,91,45,57,53,46,54,55,50,55,55,49,44,52,49,46,56,54,51,49,52,55,93,44,91,45,57,53,46,54,55,48,56,50,50,44,52,50,46,50,49,49,52,48,56,93,44,91,45,57,54,46,51,53,54,53,54,44,52,50,46,50,49,53,48,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,74,117,97,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,52,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,48,52,55,54,52,57,44,51,57,46,53,52,50,55,52,50,93,44,91,45,49,49,51,46,56,49,53,55,52,51,44,51,57,46,53,53,50,54,52,52,93,44,91,45,49,49,51,46,49,48,55,52,55,53,44,51,57,46,53,53,50,53,49,51,93,44,91,45,49,49,50,46,50,49,50,48,52,53,44,51,57,46,53,53,51,57,56,55,93,44,91,45,49,49,50,46,49,56,56,57,50,50,44,51,57,46,51,50,57,51,57,50,93,44,91,45,49,49,50,46,48,49,54,48,48,51,44,51,57,46,51,49,52,53,54,49,93,44,91,45,49,49,49,46,57,50,50,51,56,57,44,51,57,46,51,56,49,53,57,49,93,44,91,45,49,49,49,46,55,52,55,48,52,52,44,51,57,46,51,56,50,55,53,93,44,91,45,49,49,49,46,55,49,51,50,50,52,44,51,57,46,52,54,48,50,57,52,93,44,91,45,49,49,49,46,55,49,55,52,56,50,44,51,57,46,54,57,52,53,54,93,44,91,45,49,49,49,46,53,56,52,55,53,52,44,51,57,46,55,52,48,49,52,49,93,44,91,45,49,49,49,46,54,52,49,57,52,52,44,51,57,46,56,49,50,56,54,57,93,44,91,45,49,49,49,46,56,50,55,49,48,54,44,51,57,46,57,52,55,48,48,50,93,44,91,45,49,49,50,46,48,51,49,56,51,53,44,51,57,46,55,56,49,49,55,50,93,44,91,45,49,49,50,46,48,54,50,53,53,50,44,51,57,46,57,48,52,54,56,93,44,91,45,49,49,50,46,49,55,57,56,44,52,48,46,48,49,49,54,53,54,93,44,91,45,49,49,50,46,51,52,49,57,56,56,44,51,57,46,57,48,52,52,53,56,93,44,91,45,49,49,51,46,50,52,56,52,57,56,44,51,57,46,57,48,52,55,49,52,93,44,91,45,49,49,52,46,48,52,55,48,50,54,44,51,57,46,57,48,54,48,57,55,93,44,91,45,49,49,52,46,48,52,55,54,52,57,44,51,57,46,53,52,50,55,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,83,116,101,112,104,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,56,51,44,34,98,101,100,115,34,58,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,49,52,50,49,52,56,44,51,52,46,53,48,54,57,57,52,93,44,91,45,57,56,46,49,51,57,50,50,55,44,51,52,46,50,56,57,56,50,52,93,44,91,45,57,55,46,53,54,50,53,49,50,44,51,52,46,50,56,57,49,56,51,93,44,91,45,57,55,46,53,54,50,51,50,51,44,51,52,46,53,48,55,48,51,54,93,44,91,45,57,55,46,53,54,51,48,48,52,44,51,52,46,54,56,49,49,56,53,93,44,91,45,57,55,46,54,54,56,53,49,50,44,51,52,46,54,56,49,51,52,93,44,91,45,57,56,46,48,56,57,48,57,55,44,51,52,46,54,56,49,49,54,51,93,44,91,45,57,56,46,49,52,50,49,52,56,44,51,52,46,53,48,54,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,101,110,97,110,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,51,52,56,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,56,57,56,51,50,44,52,50,46,55,50,51,56,52,52,93,44,91,45,55,53,46,56,54,52,48,50,44,52,50,46,52,49,53,55,48,50,93,44,91,45,55,53,46,56,52,51,55,57,50,44,52,50,46,50,53,57,55,48,55,93,44,91,45,55,53,46,54,51,56,50,57,57,44,52,50,46,50,52,56,54,56,54,93,44,91,45,55,53,46,54,51,55,49,49,44,52,50,46,49,57,53,54,50,56,93,44,91,45,55,53,46,52,49,56,52,50,49,44,52,50,46,49,57,53,48,51,50,93,44,91,45,55,53,46,52,49,53,51,49,57,44,52,50,46,51,49,52,49,53,49,93,44,91,45,55,53,46,52,48,52,52,54,52,44,52,50,46,52,55,57,49,49,55,93,44,91,45,55,53,46,51,51,50,57,52,57,44,52,50,46,53,54,54,51,49,50,93,44,91,45,55,53,46,50,57,53,56,55,55,44,52,50,46,55,52,52,49,48,54,93,44,91,45,55,53,46,56,56,57,56,51,50,44,52,50,46,55,50,51,56,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,80,101,111,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,52,54,51,44,34,98,101,100,115,34,58,49,50,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,56,53,52,55,57,44,52,48,46,57,55,52,52,57,53,93,44,91,45,56,57,46,57,56,54,48,54,52,44,52,48,46,55,49,50,51,54,49,93,44,91,45,56,57,46,56,55,51,54,56,44,52,48,46,54,50,52,57,55,53,93,44,91,45,56,57,46,56,55,50,52,54,51,44,52,48,46,53,49,51,49,50,55,93,44,91,45,56,57,46,54,53,56,48,48,51,44,52,48,46,53,54,55,52,51,56,93,44,91,45,56,57,46,53,53,52,57,57,52,44,52,48,46,55,52,55,54,51,55,93,44,91,45,56,57,46,52,55,50,51,51,44,52,48,46,57,50,49,50,48,54,93,44,91,45,56,57,46,54,51,56,55,50,55,44,52,48,46,57,55,51,55,48,55,93,44,91,45,56,57,46,57,56,53,52,55,57,44,52,48,46,57,55,52,52,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,117,109,98,111,108,100,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,54,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,44,91,45,57,52,46,52,52,51,48,56,51,44,52,50,46,54,52,53,49,54,52,93,44,91,45,57,51,46,57,55,49,55,49,52,44,52,50,46,54,52,52,55,48,55,93,44,91,45,57,51,46,57,55,49,50,51,56,44,52,50,46,57,48,55,55,54,50,93,44,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,49,57,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,52,52,55,56,53,44,52,49,46,54,56,51,54,51,51,93,44,91,45,57,54,46,52,52,51,56,57,56,44,52,49,46,53,50,51,57,51,51,93,44,91,45,57,54,46,51,50,57,48,49,50,44,52,49,46,51,57,51,49,51,54,93,44,91,45,57,53,46,57,51,55,55,57,49,44,52,49,46,51,57,48,55,53,50,93,44,91,45,57,53,46,57,57,54,49,57,52,44,52,49,46,53,48,54,57,54,93,44,91,45,57,54,46,48,53,55,51,51,49,44,52,49,46,53,49,49,48,53,49,93,44,91,45,57,54,46,49,50,50,54,48,52,44,52,49,46,54,56,51,48,52,93,44,91,45,57,54,46,52,52,52,55,56,53,44,52,49,46,54,56,51,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,54,50,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,57,51,56,49,52,44,52,51,46,49,54,52,52,54,52,93,44,91,45,57,48,46,52,50,57,56,50,53,44,52,51,46,50,48,48,57,52,93,44,91,45,57,48,46,52,50,54,57,48,50,44,52,50,46,56,49,50,56,54,50,93,44,91,45,56,57,46,56,51,56,52,49,44,52,50,46,56,49,51,55,57,57,93,44,91,45,56,57,46,56,51,56,49,54,55,44,52,50,46,56,53,55,51,57,55,93,44,91,45,56,57,46,56,51,56,49,51,53,44,52,51,46,50,48,54,48,53,55,93,44,91,45,57,48,46,49,57,51,56,49,52,44,52,51,46,49,54,52,52,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,111,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,52,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,53,51,52,54,50,44,52,54,46,51,52,56,54,55,56,93,44,91,45,57,52,46,54,52,51,57,57,44,52,53,46,55,55,51,57,53,93,44,91,45,57,52,46,50,55,49,55,55,54,44,52,53,46,55,55,53,50,48,56,93,44,91,45,57,52,46,51,53,51,49,49,50,44,52,53,46,56,50,49,57,54,55,93,44,91,45,57,51,46,55,54,51,57,52,56,44,52,53,46,56,50,50,49,52,51,93,44,91,45,57,51,46,56,49,48,51,50,49,44,52,53,46,57,56,51,48,56,93,44,91,45,57,51,46,56,49,48,51,54,50,44,52,54,46,49,53,54,53,56,53,93,44,91,45,57,52,46,51,55,52,53,57,50,44,52,54,46,49,53,55,48,57,51,93,44,91,45,57,52,46,51,52,49,54,55,57,44,52,54,46,50,55,55,55,48,53,93,44,91,45,57,52,46,54,53,51,52,54,50,44,52,54,46,51,52,56,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,104,101,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,53,53,54,49,44,34,98,101,100,115,34,58,55,50,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,49,52,56,54,56,50,44,52,48,46,54,55,52,50,56,49,93,44,91,45,56,48,46,49,56,48,52,50,52,44,52,48,46,54,48,55,55,54,57,93,44,91,45,56,48,46,51,54,48,56,55,51,44,52,48,46,52,55,55,53,51,57,93,44,91,45,56,48,46,49,56,51,52,55,50,44,52,48,46,51,51,50,55,56,50,93,44,91,45,55,57,46,57,49,52,49,51,57,44,52,48,46,50,53,50,53,49,56,93,44,91,45,55,57,46,56,55,48,53,56,53,44,52,48,46,49,57,55,52,49,53,93,44,91,45,55,57,46,55,56,49,55,54,49,44,52,48,46,50,50,55,55,49,49,93,44,91,45,55,57,46,55,55,49,48,56,50,44,52,48,46,51,55,53,52,49,57,93,44,91,45,55,57,46,55,48,52,55,51,57,44,52,48,46,52,50,55,50,51,49,93,44,91,45,55,57,46,55,54,53,52,49,53,44,52,48,46,53,52,57,56,53,52,93,44,91,45,55,57,46,54,57,50,53,56,55,44,52,48,46,54,54,57,55,51,50,93,44,91,45,55,57,46,54,57,50,57,51,44,52,48,46,54,54,57,55,52,52,93,44,91,45,56,48,46,49,52,56,54,56,50,44,52,48,46,54,55,52,50,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,53,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,56,55,56,56,50,44,51,57,46,57,53,50,52,57,93,44,91,45,57,50,46,50,57,57,51,49,54,44,51,57,46,54,48,53,51,52,52,93,44,91,45,57,50,46,49,56,52,57,56,54,44,51,57,46,54,54,50,57,51,50,93,44,91,45,57,49,46,56,52,54,55,52,51,44,51,57,46,54,53,56,53,49,51,93,44,91,45,57,49,46,56,52,48,51,53,51,44,51,57,46,57,52,56,50,51,53,93,44,91,45,57,49,46,57,53,50,55,50,54,44,51,57,46,57,52,57,52,50,54,93,44,91,45,57,50,46,50,56,55,56,56,50,44,51,57,46,57,53,50,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,56,56,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,49,54,49,53,53,44,52,48,46,48,49,48,49,56,56,93,44,91,45,56,51,46,53,56,56,48,52,49,44,51,57,46,55,54,56,55,55,56,93,44,91,45,56,51,46,54,52,55,49,54,57,44,51,57,46,55,55,51,48,50,57,93,44,91,45,56,51,46,54,53,51,51,51,44,51,57,46,55,49,54,56,55,54,93,44,91,45,56,51,46,50,53,50,52,51,53,44,51,57,46,54,57,53,52,51,56,93,44,91,45,56,51,46,50,52,51,55,48,50,44,51,57,46,56,49,50,53,48,51,93,44,91,45,56,51,46,50,53,51,56,51,44,52,48,46,48,52,57,50,49,56,93,44,91,45,56,51,46,50,48,54,50,55,51,44,52,48,46,49,48,55,55,51,51,93,44,91,45,56,51,46,53,48,51,55,49,52,44,52,48,46,49,49,49,52,54,56,93,44,91,45,56,51,46,53,49,54,49,53,53,44,52,48,46,48,49,48,49,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,50,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,57,49,57,57,44,52,48,46,48,48,49,57,54,54,93,44,91,45,57,55,46,51,54,56,54,55,44,51,57,46,54,53,52,48,52,51,93,44,91,45,57,55,46,51,54,56,53,55,52,44,51,57,46,53,54,55,48,49,56,93,44,91,45,57,54,46,57,53,56,55,49,57,44,51,57,46,53,54,54,52,48,49,93,44,91,45,57,54,46,56,48,54,53,52,52,44,51,57,46,53,54,54,52,50,51,93,44,91,45,57,54,46,56,48,53,55,54,56,44,52,48,46,48,48,49,52,57,53,93,44,91,45,57,54,46,57,49,54,52,48,55,44,52,48,46,48,48,49,53,49,49,93,44,91,45,57,55,46,51,54,57,49,57,57,44,52,48,46,48,48,49,57,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,104,97,109,112,97,105,103,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,52,52,56,44,34,98,101,100,115,34,58,54,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,54,48,52,49,56,44,52,48,46,50,56,49,57,51,53,93,44,91,45,56,56,46,52,54,50,50,48,55,44,51,57,46,56,55,57,48,57,50,93,44,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,44,91,45,56,55,46,57,51,50,51,56,55,44,52,48,46,51,57,57,52,93,44,91,45,56,56,46,52,53,57,57,53,55,44,52,48,46,51,57,56,56,53,93,44,91,45,56,56,46,52,54,48,52,49,56,44,52,48,46,50,56,49,57,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,56,57,57,55,49,49,44,52,52,46,56,52,48,54,48,57,93,44,91,45,49,49,55,46,48,52,52,50,49,55,44,52,52,46,55,52,53,49,52,93,44,91,45,49,49,55,46,49,52,52,49,54,49,44,52,52,46,53,52,53,54,52,55,93,44,91,45,49,49,55,46,50,50,52,49,48,52,44,52,52,46,52,56,51,55,51,52,93,44,91,45,49,49,55,46,50,50,48,48,52,56,44,52,52,46,51,48,49,52,48,52,93,44,91,45,49,49,55,46,49,49,57,56,54,49,44,52,52,46,50,55,56,50,55,50,93,44,91,45,49,49,54,46,56,57,55,55,57,44,52,52,46,49,53,50,53,57,93,44,91,45,49,49,54,46,52,53,50,48,54,56,44,52,52,46,49,53,49,52,54,53,93,44,91,45,49,49,54,46,51,53,56,52,57,50,44,52,52,46,49,53,49,49,53,56,93,44,91,45,49,49,54,46,50,57,57,56,55,54,44,52,52,46,52,52,52,53,55,54,93,44,91,45,49,49,54,46,53,50,56,56,57,56,44,52,52,46,52,57,49,53,52,53,93,44,91,45,49,49,54,46,53,50,57,49,54,55,44,52,52,46,54,49,53,49,53,52,93,44,91,45,49,49,54,46,54,50,52,49,53,51,44,52,52,46,54,54,51,50,54,57,93,44,91,45,49,49,54,46,54,50,53,48,51,52,44,52,52,46,56,51,56,57,53,50,93,44,91,45,49,49,54,46,56,57,57,55,49,49,44,52,52,46,56,52,48,54,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,69,100,103,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,44,91,45,56,55,46,57,54,54,51,52,55,44,51,57,46,54,56,53,57,55,51,93,44,91,45,56,55,46,57,54,48,49,55,57,44,51,57,46,52,56,49,51,48,57,93,44,91,45,56,55,46,53,51,49,54,52,44,51,57,46,52,55,55,49,48,53,93,44,91,45,56,55,46,53,51,50,49,57,52,44,51,57,46,54,48,55,51,48,54,93,44,91,45,56,55,46,53,51,51,50,50,56,44,51,57,46,56,56,51,93,44,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,52,54,53,51,55,55,44,52,48,46,52,51,54,51,52,54,93,44,91,45,49,48,51,46,52,55,49,57,57,44,52,48,46,48,48,49,53,48,50,93,44,91,45,49,48,51,46,55,48,53,55,48,49,44,52,48,46,48,48,49,51,54,54,93,44,91,45,49,48,51,46,55,48,54,53,52,55,44,51,57,46,55,51,57,56,57,52,93,44,91,45,49,48,51,46,55,48,55,48,55,50,44,51,57,46,53,54,54,50,57,53,93,44,91,45,49,48,51,46,49,53,52,51,55,54,44,51,57,46,53,54,53,54,53,52,93,44,91,45,49,48,50,46,56,48,50,57,51,50,44,51,57,46,53,54,55,56,52,49,93,44,91,45,49,48,50,46,55,57,51,53,56,50,44,52,48,46,51,53,49,50,56,49,93,44,91,45,49,48,50,46,55,55,57,57,54,44,52,48,46,52,51,56,52,52,54,93,44,91,45,49,48,51,46,52,54,53,51,55,55,44,52,48,46,52,51,54,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,48,49,57,52,44,52,48,46,54,52,52,54,57,93,44,91,45,56,51,46,56,56,48,48,51,57,44,52,48,46,53,51,56,54,57,52,93,44,91,45,56,51,46,53,50,48,50,50,55,44,52,48,46,53,48,52,48,55,55,93,44,91,45,56,51,46,52,49,56,54,55,44,52,48,46,53,48,53,50,50,57,93,44,91,45,56,51,46,52,49,57,56,51,54,44,52,48,46,54,56,54,56,50,51,93,44,91,45,56,51,46,52,57,53,55,57,56,44,52,48,46,55,48,49,53,49,53,93,44,91,45,56,51,46,53,49,53,56,56,51,44,52,48,46,56,49,56,49,51,52,93,44,91,45,56,51,46,56,56,48,48,54,51,44,52,48,46,56,49,57,57,49,57,93,44,91,45,56,51,46,56,56,48,49,57,52,44,52,48,46,54,52,52,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,105,115,115,97,117,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,51,52,44,52,52,46,53,49,50,51,48,51,93,44,91,45,56,53,46,51,51,52,55,55,55,44,52,52,46,49,54,53,49,49,56,93,44,91,45,56,53,46,48,56,55,52,48,51,44,52,52,46,49,54,52,50,52,50,93,44,91,45,56,52,46,56,53,49,55,48,53,44,52,52,46,49,54,49,51,55,53,93,44,91,45,56,52,46,56,53,48,57,50,57,44,52,52,46,53,49,49,48,54,57,93,44,91,45,56,53,46,51,51,52,44,52,52,46,53,49,50,51,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,83,116,117,116,115,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,48,54,52,44,34,98,101,100,115,34,58,49,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,56,49,48,57,53,44,52,55,46,51,50,55,48,50,55,93,44,91,45,57,57,46,52,56,49,48,50,44,52,54,46,57,56,48,51,54,57,93,44,91,45,57,57,46,52,52,53,56,57,49,44,52,54,46,57,56,48,49,56,57,93,44,91,45,57,57,46,52,52,57,55,50,44,52,54,46,54,51,49,54,51,93,44,91,45,57,57,46,48,51,54,54,50,53,44,52,54,46,54,51,48,50,49,49,93,44,91,45,57,56,46,52,51,57,48,53,54,44,52,54,46,54,51,49,49,50,93,44,91,45,57,56,46,52,51,57,55,51,52,44,52,54,46,57,55,57,54,51,49,93,44,91,45,57,56,46,52,54,55,48,54,54,44,52,55,46,50,52,48,52,48,52,93,44,91,45,57,56,46,52,57,57,50,52,54,44,52,55,46,51,50,54,53,51,56,93,44,91,45,57,57,46,50,54,54,50,49,53,44,52,55,46,51,50,54,57,57,57,93,44,91,45,57,57,46,52,56,49,48,57,53,44,52,55,46,51,50,55,48,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,51,34,44,34,78,65,77,69,34,58,34,83,104,97,110,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,49,49,56,54,51,44,51,55,46,52,49,53,50,55,55,93,44,91,45,57,49,46,54,52,54,54,50,54,44,51,55,46,52,50,50,55,51,49,93,44,91,45,57,49,46,54,53,53,54,48,55,44,51,55,46,48,52,56,57,50,53,93,44,91,45,57,49,46,54,53,56,49,49,49,44,51,54,46,56,56,56,55,50,52,93,44,91,45,57,49,46,50,50,50,56,51,44,51,54,46,56,56,51,56,53,55,93,44,91,45,57,49,46,50,49,55,49,53,44,51,55,46,48,56,54,49,57,55,93,44,91,45,57,49,46,48,49,55,55,54,54,44,51,55,46,48,57,53,54,55,55,93,44,91,45,57,49,46,49,50,54,48,50,56,44,51,55,46,49,57,57,52,56,93,44,91,45,57,49,46,50,49,49,56,54,51,44,51,55,46,52,49,53,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,50,51,34,44,34,78,65,77,69,34,58,34,83,109,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,48,49,53,44,34,98,101,100,115,34,58,49,55,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,52,57,49,54,53,44,51,50,46,51,53,53,50,51,51,93,44,91,45,57,53,46,52,56,56,44,51,50,46,50,51,53,52,56,52,93,44,91,45,57,53,46,52,53,57,57,48,56,44,51,50,46,49,51,53,53,53,57,93,44,91,45,57,52,46,57,56,53,50,55,50,44,51,50,46,49,51,55,57,56,57,93,44,91,45,57,52,46,57,56,53,52,49,49,44,51,50,46,51,55,48,56,50,93,44,91,45,57,52,46,57,56,54,57,51,53,44,51,50,46,53,51,55,50,52,54,93,44,91,45,57,53,46,49,53,51,52,49,44,51,50,46,53,55,48,49,49,53,93,44,91,45,57,53,46,53,49,48,57,52,53,44,51,50,46,54,50,48,51,50,56,93,44,91,45,57,53,46,53,57,52,53,52,49,44,51,50,46,54,56,55,48,50,54,93,44,91,45,57,53,46,53,57,52,51,44,51,50,46,52,55,57,56,53,56,93,44,91,45,57,53,46,52,52,57,49,54,53,44,51,50,46,51,53,53,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,84,117,108,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,50,55,56,49,44,34,98,101,100,115,34,58,52,52,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,48,49,49,55,49,44,51,54,46,52,50,51,54,56,54,93,44,91,45,57,54,46,48,48,49,50,50,54,44,51,54,46,49,54,49,50,57,54,93,44,91,45,57,54,46,50,54,56,50,56,55,44,51,54,46,49,54,49,57,56,93,44,91,45,57,54,46,50,57,55,56,56,56,44,51,54,46,49,54,50,50,55,57,93,44,91,45,57,54,46,50,57,55,57,48,53,44,51,54,46,48,55,53,55,54,54,93,44,91,45,57,54,46,48,50,57,53,56,51,44,51,54,46,48,55,53,51,54,54,93,44,91,45,57,54,46,48,51,51,49,49,56,44,51,53,46,56,53,54,56,50,52,93,44,91,45,57,53,46,56,49,57,52,53,57,44,51,53,46,56,53,54,50,53,53,93,44,91,45,57,53,46,55,54,49,55,48,50,44,51,53,46,57,48,49,49,52,55,93,44,91,45,57,53,46,55,54,49,54,53,44,51,54,46,49,54,50,55,53,93,44,91,45,57,53,46,56,49,53,52,44,51,54,46,49,54,50,54,51,93,44,91,45,57,53,46,56,49,50,51,52,50,44,51,54,46,52,50,51,53,56,93,44,91,45,57,54,46,48,48,49,49,55,49,44,51,54,46,52,50,51,54,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,99,73,110,116,111,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,56,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,49,50,57,53,51,44,51,53,46,53,53,49,55,51,56,93,44,91,45,57,53,46,56,50,50,51,54,49,44,51,53,46,53,53,49,54,57,51,93,44,91,45,57,53,46,56,55,53,52,48,53,44,51,53,46,51,55,54,54,57,93,44,91,45,57,53,46,57,56,49,52,54,53,44,51,53,46,51,55,54,55,56,56,93,44,91,45,57,53,46,57,56,49,53,49,49,44,51,53,46,50,56,57,55,56,93,44,91,45,57,53,46,57,56,51,48,55,55,44,51,53,46,49,53,49,54,57,53,93,44,91,45,57,53,46,55,49,54,49,53,55,44,51,53,46,49,56,57,51,53,50,93,44,91,45,57,53,46,52,53,49,50,53,44,51,53,46,50,57,54,48,49,57,93,44,91,45,57,53,46,51,52,52,55,54,54,44,51,53,46,50,57,51,48,51,53,93,44,91,45,57,53,46,51,52,52,55,57,57,44,51,53,46,53,53,49,55,53,49,93,44,91,45,57,53,46,55,49,50,57,53,51,44,51,53,46,53,53,49,55,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,57,53,34,44,34,78,65,77,69,34,58,34,82,111,98,101,114,116,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,50,57,49,50,49,44,51,49,46,49,48,53,56,55,49,93,44,91,45,57,54,46,55,53,54,51,51,44,51,48,46,57,50,55,50,48,54,93,44,91,45,57,54,46,54,52,49,50,56,44,51,48,46,56,49,56,48,53,49,93,44,91,45,57,54,46,54,50,49,50,56,49,44,51,48,46,55,51,48,56,49,57,93,44,91,45,57,54,46,53,54,54,57,56,51,44,51,48,46,54,57,53,54,55,93,44,91,45,57,54,46,52,53,55,54,51,44,51,48,46,55,52,52,52,55,52,93,44,91,45,57,54,46,51,51,56,48,48,49,44,51,48,46,57,50,48,53,51,49,93,44,91,45,57,54,46,50,52,49,48,50,44,51,48,46,57,55,51,55,51,55,93,44,91,45,57,54,46,51,50,55,54,51,44,51,49,46,50,56,52,56,55,54,93,44,91,45,57,54,46,51,49,57,49,54,53,44,51,49,46,51,53,55,49,50,57,93,44,91,45,57,54,46,53,57,54,56,54,50,44,51,49,46,50,50,48,57,93,44,91,45,57,54,46,56,50,57,49,50,49,44,51,49,46,49,48,53,56,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,71,105,108,108,101,115,112,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,48,56,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,57,49,54,55,44,51,48,46,52,57,57,56,55,53,93,44,91,45,57,56,46,57,54,52,50,51,50,44,51,48,46,52,57,56,52,56,50,93,44,91,45,57,57,46,51,48,51,57,57,54,44,51,48,46,52,57,57,56,51,50,93,44,91,45,57,57,46,51,48,49,55,49,56,44,51,48,46,50,56,54,54,53,51,93,44,91,45,57,57,46,51,48,48,57,56,56,44,51,48,46,49,51,52,50,57,56,93,44,91,45,57,56,46,57,50,48,49,52,55,44,51,48,46,49,51,56,50,57,93,44,91,45,57,56,46,53,56,55,56,57,55,44,51,48,46,49,51,56,57,53,52,93,44,91,45,57,56,46,53,57,49,54,55,44,51,48,46,52,57,57,56,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,79,97,107,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,48,56,52,51,44,34,98,101,100,115,34,58,52,53,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,56,54,52,57,51,44,52,50,46,55,56,51,50,54,51,93,44,91,45,56,51,46,54,54,52,56,48,56,44,52,50,46,52,51,49,49,55,57,93,44,91,45,56,51,46,53,53,49,57,48,55,44,52,50,46,52,51,53,49,54,54,93,44,91,45,56,51,46,48,56,51,51,57,51,44,52,50,46,52,52,55,49,53,51,93,44,91,45,56,51,46,49,48,50,56,57,49,44,52,50,46,56,56,56,54,52,55,93,44,91,45,56,51,46,52,53,51,51,54,52,44,52,50,46,56,56,48,52,51,50,93,44,91,45,56,51,46,54,56,57,51,56,52,44,52,50,46,56,55,49,50,54,51,93,44,91,45,56,51,46,54,56,54,52,57,51,44,52,50,46,55,56,51,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,71,111,108,100,101,110,32,86,97,108,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,52,57,54,56,44,52,55,46,51,51,48,49,52,49,93,44,91,45,49,48,52,46,48,52,53,50,51,52,44,52,54,46,54,52,49,53,48,52,93,44,91,45,49,48,52,46,48,52,53,50,49,49,44,52,54,46,53,52,48,56,54,49,93,44,91,45,49,48,51,46,56,48,48,56,56,44,52,54,46,53,52,48,54,55,49,93,44,91,45,49,48,51,46,56,48,48,56,55,51,44,52,54,46,54,50,57,55,51,49,93,44,91,45,49,48,51,46,54,48,57,50,55,51,44,52,54,46,54,50,57,56,50,50,93,44,91,45,49,48,51,46,54,48,57,53,57,50,44,52,54,46,57,55,57,56,53,52,93,44,91,45,49,48,51,46,54,54,55,48,55,51,44,52,54,46,57,55,57,55,55,53,93,44,91,45,49,48,51,46,54,54,54,54,55,53,44,52,55,46,51,50,57,50,53,54,93,44,91,45,49,48,52,46,48,52,52,57,54,56,44,52,55,46,51,51,48,49,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,78,105,111,98,114,97,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,56,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,52,55,56,54,44,52,51,46,53,48,51,51,50,56,93,44,91,45,49,48,52,46,56,57,57,57,52,49,44,52,51,46,52,57,57,54,52,93,44,91,45,49,48,52,46,56,57,50,52,51,55,44,52,50,46,54,48,56,57,51,57,93,44,91,45,49,48,52,46,54,53,53,54,51,57,44,52,50,46,54,48,57,52,54,56,93,44,91,45,49,48,52,46,48,53,50,56,51,56,44,52,50,46,54,49,49,55,54,55,93,44,91,45,49,48,52,46,48,53,51,48,50,56,44,52,51,46,48,48,48,53,56,53,93,44,91,45,49,48,52,46,48,53,52,56,48,51,44,52,51,46,52,55,55,56,49,53,93,44,91,45,49,48,52,46,48,53,52,55,56,54,44,52,51,46,53,48,51,51,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,80,105,112,101,115,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,56,53,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,53,50,55,55,51,44,52,52,46,49,57,54,55,56,93,44,91,45,57,54,46,52,53,50,57,56,56,44,52,51,46,56,52,57,53,48,55,93,44,91,45,57,54,46,48,54,52,54,50,44,52,51,46,56,52,57,48,51,57,93,44,91,45,57,54,46,48,54,51,55,55,56,44,52,52,46,49,57,54,52,50,53,93,44,91,45,57,54,46,48,55,56,53,56,44,52,52,46,49,57,54,54,50,93,44,91,45,57,54,46,52,53,50,55,55,51,44,52,52,46,49,57,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,75,105,110,103,32,71,101,111,114,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,57,55,54,55,44,51,56,46,50,55,56,48,52,54,93,44,91,45,55,55,46,48,49,56,52,57,56,44,51,56,46,51,56,49,57,52,49,93,44,91,45,55,55,46,50,56,55,48,57,55,44,51,56,46,51,52,56,56,93,44,91,45,55,55,46,51,50,54,54,57,50,44,51,56,46,50,52,53,49,51,54,93,44,91,45,55,55,46,49,49,53,57,57,55,44,51,56,46,49,52,57,57,51,49,93,44,91,45,55,55,46,48,54,49,54,57,53,44,51,56,46,49,54,49,54,51,49,93,44,91,45,55,54,46,57,57,55,54,55,44,51,56,46,50,55,56,48,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,56,54,48,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,57,56,50,50,51,52,44,52,55,46,57,54,50,48,50,53,93,44,91,45,49,49,57,46,49,48,51,56,55,51,44,52,55,46,57,54,49,55,54,51,93,44,91,45,49,49,57,46,50,49,50,50,50,53,44,52,55,46,56,56,55,55,48,56,93,44,91,45,49,49,57,46,50,49,50,52,49,44,52,55,46,56,48,48,54,57,53,93,44,91,45,49,49,57,46,51,52,49,55,54,55,44,52,55,46,54,49,50,51,56,56,93,44,91,45,49,49,57,46,53,51,50,56,56,57,44,52,55,46,53,50,55,55,53,54,93,44,91,45,49,49,57,46,53,51,51,49,50,51,44,52,55,46,52,52,49,50,48,55,93,44,91,45,49,49,57,46,56,55,53,55,54,44,52,55,46,52,51,55,52,57,50,93,44,91,45,49,50,48,46,48,48,52,55,48,52,44,52,55,46,51,49,57,57,57,52,93,44,91,45,49,50,48,46,48,48,55,48,55,52,44,52,55,46,50,50,48,49,51,51,93,44,91,45,49,50,48,46,48,52,50,56,54,54,44,52,55,46,48,55,51,52,53,51,93,44,91,45,49,49,57,46,57,50,55,53,51,55,44,52,54,46,56,49,55,48,57,50,93,44,91,45,49,49,57,46,57,55,51,48,51,54,44,52,54,46,55,51,55,49,50,54,93,44,91,45,49,49,57,46,56,55,52,48,52,50,44,52,54,46,54,50,56,50,56,51,93,44,91,45,49,49,57,46,54,53,57,49,56,57,44,52,54,46,54,52,48,51,51,51,93,44,91,45,49,49,57,46,53,49,54,53,56,50,44,52,54,46,55,50,55,54,51,56,93,44,91,45,49,49,57,46,52,53,51,49,57,44,52,54,46,54,55,57,50,52,51,93,44,91,45,49,49,57,46,51,54,57,52,50,57,44,52,54,46,55,51,55,54,57,53,93,44,91,45,49,49,57,46,51,54,56,54,54,50,44,52,54,46,57,49,50,53,54,50,93,44,91,45,49,49,56,46,57,56,50,54,53,50,44,52,54,46,57,49,49,51,52,52,93,44,91,45,49,49,56,46,57,55,57,55,55,55,44,52,55,46,50,54,49,55,48,57,93,44,91,45,49,49,56,46,57,55,51,53,48,52,44,52,55,46,57,52,51,52,49,52,93,44,91,45,49,49,56,46,57,56,50,50,51,52,44,52,55,46,57,54,50,48,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,82,101,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,50,49,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,50,52,56,53,50,44,52,52,46,56,57,49,51,49,93,44,91,45,57,53,46,52,56,50,56,56,57,44,52,52,46,56,57,48,55,49,50,93,44,91,45,57,53,46,52,56,50,56,52,51,44,52,52,46,55,53,50,53,48,53,93,44,91,45,57,53,46,51,54,48,49,55,55,44,52,52,46,54,57,56,53,52,93,44,91,45,57,53,46,50,52,48,52,51,57,44,52,52,46,54,54,52,54,48,52,93,44,91,45,57,53,46,48,49,51,53,57,57,44,52,52,46,53,52,50,56,51,51,93,44,91,45,57,52,46,56,54,53,56,50,52,44,52,52,46,52,57,56,50,49,56,93,44,91,45,57,52,46,55,56,48,54,51,44,52,52,46,52,53,54,54,53,93,44,91,45,57,52,46,54,50,52,50,44,52,52,46,52,53,54,48,51,93,44,91,45,57,52,46,54,50,57,52,56,57,44,52,52,46,55,49,54,54,54,51,93,44,91,45,57,52,46,52,57,56,48,55,52,44,52,52,46,55,49,55,49,55,49,93,44,91,45,57,52,46,53,48,50,51,57,53,44,52,52,46,56,57,50,50,57,53,93,44,91,45,57,52,46,55,53,56,49,56,57,44,52,52,46,56,57,50,48,57,55,93,44,91,45,57,53,46,50,52,56,53,50,44,52,52,46,56,57,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,97,99,104,117,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,51,49,52,56,44,34,98,101,100,115,34,58,49,56,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,53,56,53,53,52,44,50,57,46,56,51,48,49,52,52,93,44,91,45,56,50,46,54,53,54,51,48,49,44,50,57,46,53,54,52,56,49,49,93,44,91,45,56,50,46,53,53,54,55,54,54,44,50,57,46,52,56,48,48,53,53,93,44,91,45,56,50,46,52,48,54,54,50,44,50,57,46,52,56,53,48,52,56,93,44,91,45,56,50,46,48,53,53,56,57,57,44,50,57,46,52,55,49,50,51,50,93,44,91,45,56,50,46,48,53,53,54,50,53,44,50,57,46,55,49,56,50,51,50,93,44,91,45,56,50,46,49,51,51,49,50,54,44,50,57,46,56,51,53,57,52,57,93,44,91,45,56,50,46,50,56,49,56,51,55,44,50,57,46,56,52,52,52,52,56,93,44,91,45,56,50,46,52,49,56,55,50,56,44,50,57,46,57,50,51,48,57,51,93,44,91,45,56,50,46,53,50,57,55,48,53,44,50,57,46,57,52,48,56,56,49,93,44,91,45,56,50,46,54,53,56,53,53,52,44,50,57,46,56,51,48,49,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,111,111,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,50,54,53,53,55,44,52,50,46,48,57,50,49,57,52,93,44,91,45,49,48,49,46,52,50,53,57,50,44,52,49,46,55,52,51,48,53,57,93,44,91,45,49,48,49,46,52,48,54,52,54,54,44,52,49,46,55,52,51,50,93,44,91,45,49,48,48,46,56,52,50,52,53,57,44,52,49,46,55,52,48,52,48,52,93,44,91,45,49,48,48,46,56,52,54,49,50,57,44,52,50,46,48,56,56,49,54,54,93,44,91,45,49,48,49,46,52,50,54,53,53,55,44,52,50,46,48,57,50,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,80,114,105,110,99,101,32,69,100,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,57,53,54,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,53,57,52,52,51,54,44,51,55,46,51,57,55,57,55,52,93,44,91,45,55,56,46,54,56,49,53,55,51,44,51,55,46,50,52,56,55,53,57,93,44,91,45,55,56,46,54,57,50,52,55,50,44,51,55,46,50,48,52,55,56,54,93,44,91,45,55,56,46,52,52,51,54,52,52,44,51,55,46,48,55,57,51,55,49,93,44,91,45,55,56,46,50,51,57,51,53,52,44,51,55,46,49,50,48,48,56,57,93,44,91,45,55,56,46,50,51,49,50,51,52,44,51,55,46,50,57,54,50,50,93,44,91,45,55,56,46,50,51,53,48,51,57,44,51,55,46,51,54,56,49,48,50,93,44,91,45,55,56,46,51,50,49,56,52,44,51,55,46,51,48,57,50,57,50,93,44,91,45,55,56,46,52,54,53,48,56,57,44,51,55,46,51,51,57,54,55,55,93,44,91,45,55,56,46,53,57,52,52,51,54,44,51,55,46,51,57,55,57,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,97,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,53,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,50,52,55,51,57,49,44,51,57,46,55,48,52,51,53,93,44,91,45,49,49,49,46,48,56,53,51,53,53,44,51,57,46,53,50,49,49,55,93,44,91,45,49,49,49,46,48,55,55,53,52,53,44,51,57,46,52,54,57,55,52,51,93,44,91,45,49,49,48,46,48,50,52,49,49,56,44,51,57,46,52,54,57,50,54,57,93,44,91,45,49,49,48,46,48,50,51,57,54,51,44,51,57,46,52,54,57,50,54,56,93,44,91,45,49,48,57,46,57,55,54,56,49,52,44,51,57,46,56,48,54,50,51,93,44,91,45,49,49,48,46,56,53,55,55,56,44,51,57,46,56,49,51,50,56,53,93,44,91,45,49,49,49,46,50,52,55,52,57,54,44,51,57,46,56,49,51,48,50,56,93,44,91,45,49,49,49,46,50,52,55,51,57,49,44,51,57,46,55,48,52,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,117,99,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,54,51,55,48,44,34,98,101,100,115,34,58,49,49,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,52,56,52,48,53,55,44,52,48,46,52,49,56,52,53,49,93,44,91,45,55,53,46,48,49,53,48,54,54,44,52,48,46,49,51,55,57,57,50,93,44,91,45,55,52,46,57,55,51,57,56,49,44,52,48,46,48,52,56,53,57,53,93,44,91,45,55,52,46,55,50,50,48,52,56,44,52,48,46,49,53,48,51,49,49,93,44,91,45,55,52,46,57,52,50,57,48,57,44,52,48,46,51,52,49,54,56,51,93,44,91,45,55,53,46,48,54,48,57,49,55,44,52,48,46,52,50,49,55,51,55,93,44,91,45,55,53,46,48,54,56,49,44,52,48,46,53,52,49,52,56,56,93,44,91,45,55,53,46,49,56,57,54,44,52,48,46,53,57,49,55,55,54,93,44,91,45,55,53,46,49,57,54,56,48,51,44,52,48,46,54,48,56,53,56,93,44,91,45,55,53,46,51,51,51,53,49,52,44,52,48,46,53,51,55,48,53,55,93,44,91,45,55,53,46,52,56,52,48,53,55,44,52,48,46,52,49,56,52,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,49,49,55,53,52,44,52,52,46,56,57,55,50,50,55,93,44,91,45,57,57,46,51,48,48,49,56,44,52,52,46,49,57,52,56,51,93,44,91,45,57,56,46,57,50,53,57,53,51,44,52,52,46,49,57,54,53,55,53,93,44,91,45,57,56,46,55,48,48,52,53,51,44,52,52,46,49,57,54,55,50,55,93,44,91,45,57,56,46,55,48,53,55,54,50,44,52,52,46,54,51,52,49,53,57,93,44,91,45,57,56,46,55,49,54,52,57,56,44,52,52,46,56,57,54,57,50,53,93,44,91,45,57,57,46,51,49,49,55,53,52,44,52,52,46,56,57,55,50,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,121,99,111,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,56,53,57,44,34,98,101,100,115,34,58,51,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,53,57,56,49,50,57,44,52,49,46,52,55,56,53,55,54,93,44,91,45,55,55,46,53,50,54,53,51,55,44,52,49,46,51,53,56,53,50,56,93,44,91,45,55,55,46,49,52,52,49,49,49,44,52,49,46,48,54,56,56,52,93,44,91,45,55,54,46,57,55,55,57,51,57,44,52,49,46,48,56,55,56,56,51,93,44,91,45,55,54,46,56,57,54,49,49,52,44,52,49,46,49,51,57,48,55,93,44,91,45,55,54,46,55,51,50,54,55,50,44,52,49,46,49,55,50,48,52,93,44,91,45,55,54,46,54,52,48,55,54,55,44,52,49,46,49,53,53,55,49,56,93,44,91,45,55,54,46,52,52,55,53,57,55,44,52,49,46,50,55,53,54,50,57,93,44,91,45,55,54,46,53,57,50,53,51,50,44,52,49,46,51,48,52,51,51,50,93,44,91,45,55,54,46,55,52,57,52,57,55,44,52,49,46,52,48,53,53,55,50,93,44,91,45,55,54,46,56,49,51,55,51,49,44,52,49,46,53,57,48,48,51,52,93,44,91,45,55,54,46,56,55,52,55,49,52,44,52,49,46,53,57,54,57,49,57,93,44,91,45,55,54,46,57,54,48,52,55,57,44,52,49,46,53,53,49,51,55,49,93,44,91,45,55,55,46,53,57,57,50,55,56,44,52,49,46,53,52,50,50,55,49,93,44,91,45,55,55,46,53,57,56,49,50,57,44,52,49,46,52,55,56,53,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,76,97,116,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,50,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,51,57,55,53,50,44,52,55,46,49,50,55,50,54,57,93,44,91,45,49,49,55,46,48,51,57,54,57,52,44,52,54,46,53,52,49,55,48,57,93,44,91,45,49,49,54,46,55,49,57,48,56,53,44,52,54,46,53,52,50,56,55,52,93,44,91,45,49,49,54,46,54,49,49,55,52,44,52,54,46,54,51,49,50,52,53,93,44,91,45,49,49,54,46,52,53,54,48,57,56,44,52,54,46,54,50,57,48,57,55,93,44,91,45,49,49,54,46,51,50,57,53,52,44,52,54,46,54,50,55,57,53,55,93,44,91,45,49,49,54,46,51,50,57,52,51,54,44,52,54,46,57,51,52,54,54,57,93,44,91,45,49,49,54,46,51,50,57,52,49,56,44,52,55,46,48,50,49,57,49,53,93,44,91,45,49,49,54,46,56,51,53,50,54,57,44,52,55,46,48,51,50,52,53,50,93,44,91,45,49,49,55,46,48,51,57,55,53,50,44,52,55,46,49,50,55,50,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,55,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,51,51,55,51,54,44,51,51,46,52,51,52,52,55,50,93,44,91,45,56,51,46,53,52,53,56,55,54,44,51,51,46,49,55,49,57,52,52,93,44,91,45,56,51,46,52,50,57,48,57,44,51,51,46,49,56,53,51,53,50,93,44,91,45,56,51,46,50,55,52,49,48,56,44,51,51,46,49,56,55,50,51,56,93,44,91,45,56,51,46,49,54,52,50,48,55,44,51,51,46,51,53,53,48,51,93,44,91,45,56,51,46,50,55,57,57,51,49,44,51,51,46,52,56,51,52,51,56,93,44,91,45,56,51,46,53,51,51,55,51,54,44,51,51,46,52,51,52,52,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,52,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,52,48,34,44,34,78,65,77,69,34,58,34,71,97,108,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,51,56,44,34,98,101,100,115,34,58,49,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,51,50,50,55,49,44,51,54,46,54,55,49,53,57,51,93,44,91,45,56,48,46,57,49,52,49,55,51,44,51,54,46,54,53,48,50,52,54,93,44,91,45,56,48,46,56,55,55,50,55,52,44,51,54,46,54,57,50,50,49,53,93,44,91,45,56,48,46,57,49,54,49,54,54,44,51,54,46,54,57,52,54,52,93,44,91,45,56,48,46,57,51,50,50,55,49,44,51,54,46,54,55,49,53,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,81,117,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,54,51,55,48,53,51,44,51,53,46,51,56,57,54,54,50,93,44,91,45,49,48,51,46,54,51,55,49,51,44,51,53,46,50,52,48,56,49,57,93,44,91,45,49,48,51,46,56,53,55,53,51,44,51,53,46,50,52,50,52,48,53,93,44,91,45,49,48,52,46,49,50,53,49,50,49,44,51,53,46,49,52,50,48,53,56,93,44,91,45,49,48,52,46,49,50,57,49,52,51,44,51,52,46,55,55,57,51,51,55,93,44,91,45,49,48,52,46,49,50,56,56,56,44,51,52,46,54,48,53,50,48,49,93,44,91,45,49,48,51,46,57,52,56,55,55,56,44,51,52,46,54,48,53,48,53,56,93,44,91,45,49,48,51,46,55,51,56,49,54,54,44,51,52,46,54,48,52,54,55,93,44,91,45,49,48,51,46,55,48,53,55,56,56,44,51,52,46,54,57,50,52,52,54,93,44,91,45,49,48,51,46,52,57,53,54,53,51,44,51,52,46,54,57,49,51,57,51,93,44,91,45,49,48,51,46,50,56,52,51,49,55,44,51,52,46,56,54,52,57,57,93,44,91,45,49,48,51,46,50,56,52,49,52,57,44,51,52,46,57,53,52,49,55,50,93,44,91,45,49,48,51,46,48,52,50,55,48,49,44,51,52,46,57,53,52,49,52,50,93,44,91,45,49,48,51,46,48,52,50,53,49,49,44,51,53,46,49,56,51,49,53,55,93,44,91,45,49,48,51,46,48,52,49,55,48,54,44,51,53,46,54,50,50,52,56,56,93,44,91,45,49,48,51,46,48,52,49,51,52,57,44,51,53,46,55,51,57,52,51,51,93,44,91,45,49,48,51,46,51,55,53,49,49,55,44,51,53,46,55,51,57,53,49,54,93,44,91,45,49,48,51,46,51,55,57,55,51,44,51,53,46,51,57,54,55,57,54,93,44,91,45,49,48,51,46,54,51,55,48,53,51,44,51,53,46,51,56,57,54,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,57,34,44,34,78,65,77,69,34,58,34,75,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,49,56,54,57,49,44,51,51,46,56,51,53,54,53,93,44,91,45,49,48,48,46,53,49,55,52,52,57,44,51,51,46,51,57,55,56,54,54,93,44,91,45,57,57,46,57,57,48,57,56,44,51,51,46,51,57,55,52,48,52,93,44,91,45,57,57,46,57,57,54,52,51,52,44,51,51,46,56,51,53,57,54,55,93,44,91,45,49,48,48,46,48,52,56,52,56,44,51,51,46,56,51,53,57,55,52,93,44,91,45,49,48,48,46,53,49,56,54,57,49,44,51,51,46,56,51,53,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,50,50,56,54,55,44,51,51,46,52,56,49,57,54,51,93,44,91,45,57,51,46,54,56,51,55,49,53,44,51,51,46,50,56,49,48,57,50,93,44,91,45,57,51,46,56,53,57,48,56,55,44,51,51,46,48,56,57,53,51,55,93,44,91,45,57,51,46,56,48,52,57,51,44,51,51,46,48,49,57,51,53,55,93,44,91,45,57,51,46,53,50,48,57,57,52,44,51,51,46,48,49,56,54,49,54,93,44,91,45,57,51,46,52,57,48,53,50,44,51,51,46,48,49,56,52,52,50,93,44,91,45,57,51,46,52,56,49,55,54,44,51,51,46,50,53,57,57,57,49,93,44,91,45,57,51,46,51,54,53,53,56,53,44,51,51,46,52,52,52,52,53,57,93,44,91,45,57,51,46,52,56,51,48,57,55,44,51,51,46,52,55,54,48,55,53,93,44,91,45,57,51,46,55,50,50,56,54,55,44,51,51,46,52,56,49,57,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,53,49,34,44,34,78,65,77,69,34,58,34,84,111,109,32,71,114,101,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,52,54,54,44,34,98,101,100,115,34,58,53,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,51,53,55,54,49,44,51,49,46,54,57,50,57,55,93,44,91,45,49,48,48,46,56,50,53,51,55,44,51,49,46,54,57,54,49,53,53,93,44,91,45,49,48,48,46,56,54,53,50,53,54,44,51,49,46,53,54,50,50,57,52,93,44,91,45,49,48,49,46,50,54,55,54,51,44,51,49,46,53,53,54,52,54,50,93,44,91,45,49,48,49,46,50,54,55,57,52,55,44,51,49,46,53,50,56,54,56,56,93,44,91,45,49,48,48,46,54,57,51,48,54,53,44,51,49,46,53,50,51,57,53,52,93,44,91,45,49,48,48,46,54,56,56,55,54,52,44,51,49,46,48,56,54,53,55,54,93,44,91,45,49,48,48,46,49,49,53,50,49,54,44,51,49,46,48,56,55,57,57,52,93,44,91,45,49,48,48,46,49,49,49,50,51,52,44,51,49,46,53,56,48,50,54,55,93,44,91,45,49,48,48,46,50,51,52,54,51,54,44,51,49,46,53,56,55,49,52,55,93,44,91,45,49,48,48,46,50,51,53,55,54,49,44,51,49,46,54,57,50,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,72,97,114,100,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,44,91,45,56,50,46,48,53,53,55,53,51,44,50,55,46,51,51,56,50,54,52,93,44,91,45,56,49,46,53,54,52,48,54,50,44,50,55,46,51,52,48,54,52,49,93,44,91,45,56,49,46,53,54,51,53,51,51,44,50,55,46,54,52,54,54,52,53,93,44,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,50,49,54,44,34,98,101,100,115,34,58,49,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,48,54,55,56,50,44,51,57,46,50,53,53,48,54,56,93,44,91,45,56,52,46,50,53,57,52,51,49,44,51,57,46,50,55,48,55,57,54,93,44,91,45,56,52,46,51,49,57,57,56,53,44,51,57,46,48,50,49,53,51,52,93,44,91,45,56,52,46,50,51,49,57,49,55,44,51,56,46,56,55,52,56,54,54,93,44,91,45,56,52,46,50,51,48,52,49,49,44,51,56,46,56,50,55,52,51,55,93,44,91,45,56,52,46,48,53,50,55,48,57,44,51,56,46,55,55,49,50,50,54,93,44,91,45,56,51,46,57,57,51,49,50,44,51,57,46,50,53,52,50,51,53,93,44,91,45,56,52,46,48,48,54,55,56,50,44,51,57,46,50,53,53,48,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,53,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,48,49,34,44,34,78,65,77,69,34,58,34,89,111,97,107,117,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,55,49,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,53,54,52,56,53,44,51,51,46,51,56,56,52,49,52,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,57,53,57,48,57,57,93,44,91,45,49,48,50,46,53,57,53,48,50,51,44,51,50,46,57,53,56,56,51,49,93,44,91,45,49,48,50,46,53,57,52,56,51,54,44,51,51,46,51,56,56,52,56,57,93,44,91,45,49,48,51,46,48,53,54,52,56,53,44,51,51,46,51,56,56,52,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,89,97,109,104,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,56,50,48,44,34,98,101,100,115,34,58,49,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,52,54,52,56,56,44,52,53,46,52,51,51,51,51,50,93,44,91,45,49,50,51,46,52,54,51,53,49,56,44,52,53,46,50,49,54,51,49,50,93,44,91,45,49,50,51,46,55,56,52,53,52,44,52,53,46,50,49,54,50,57,52,93,44,91,45,49,50,51,46,55,50,52,51,54,56,44,52,53,46,48,55,54,50,50,54,93,44,91,45,49,50,51,46,48,54,56,54,54,55,44,52,53,46,48,55,52,56,54,93,44,91,45,49,50,51,46,48,48,48,55,56,56,44,52,53,46,50,53,57,51,52,55,93,44,91,45,49,50,50,46,56,52,57,57,50,53,44,52,53,46,50,53,57,54,57,55,93,44,91,45,49,50,50,46,56,54,55,56,57,49,44,52,53,46,51,49,55,51,52,53,93,44,91,45,49,50,51,46,49,51,53,52,50,55,44,52,53,46,52,51,51,52,53,57,93,44,91,45,49,50,51,46,52,54,52,56,56,44,52,53,46,52,51,51,51,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,76,111,117,105,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,56,51,57,57,53,44,52,49,46,52,50,51,56,52,56,93,44,91,45,57,49,46,52,56,53,55,49,55,44,52,49,46,49,54,50,52,48,53,93,44,91,45,57,49,46,51,55,48,55,49,44,52,49,46,48,55,52,49,49,50,93,44,91,45,57,48,46,57,52,57,51,56,49,44,52,49,46,48,55,50,55,49,93,44,91,45,57,48,46,57,56,57,54,54,50,44,52,49,46,49,53,53,55,48,55,93,44,91,45,57,49,46,49,49,52,49,56,54,44,52,49,46,50,53,48,48,50,57,93,44,91,45,57,49,46,48,55,50,48,55,44,52,49,46,51,51,51,51,54,49,93,44,91,45,57,49,46,48,55,50,48,52,53,44,52,49,46,51,51,51,53,57,57,93,44,91,45,57,49,46,51,54,57,51,51,50,44,52,49,46,51,51,54,48,54,51,93,44,91,45,57,49,46,51,54,56,53,50,49,44,52,49,46,52,50,51,49,55,56,93,44,91,45,57,49,46,52,56,51,57,57,53,44,52,49,46,52,50,51,56,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,69,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,54,49,48,48,50,44,51,55,46,54,48,51,55,54,49,93,44,91,45,57,54,46,53,50,53,51,44,51,55,46,54,48,55,48,49,53,93,44,91,45,57,54,46,53,50,53,54,57,44,51,55,46,52,55,54,52,48,53,93,44,91,45,57,54,46,53,50,52,56,55,51,44,51,55,46,51,48,50,55,51,93,44,91,45,57,53,46,57,54,52,51,57,57,44,51,55,46,50,57,57,50,51,50,93,44,91,45,57,53,46,57,54,49,54,48,53,44,51,55,46,51,56,54,54,51,54,93,44,91,45,57,53,46,57,54,49,48,48,50,44,51,55,46,54,48,51,55,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,78,111,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,57,55,52,52,50,44,51,57,46,55,53,53,53,55,50,93,44,91,45,56,49,46,53,56,56,49,56,53,44,51,57,46,53,56,54,57,55,51,93,44,91,45,56,49,46,50,56,51,48,55,53,44,51,57,46,54,48,53,55,57,54,93,44,91,45,56,49,46,51,49,57,49,50,53,44,51,57,46,55,48,55,51,54,93,44,91,45,56,49,46,51,49,51,53,57,49,44,51,57,46,56,54,57,52,55,49,93,44,91,45,56,49,46,50,51,55,51,49,54,44,51,57,46,56,54,55,56,50,56,93,44,91,45,56,49,46,50,51,52,48,53,51,44,51,57,46,57,53,49,50,55,93,44,91,45,56,49,46,51,56,54,48,48,54,44,51,57,46,57,53,48,54,57,52,93,44,91,45,56,49,46,54,57,52,49,52,54,44,51,57,46,56,52,50,54,51,54,93,44,91,45,56,49,46,54,57,55,52,52,50,44,51,57,46,55,53,53,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,57,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,49,54,48,50,44,52,49,46,49,54,53,53,50,52,93,44,91,45,56,52,46,51,57,57,52,56,54,44,52,48,46,57,57,48,51,49,53,93,44,91,45,56,52,46,51,52,48,53,51,49,44,52,48,46,56,53,57,48,57,57,93,44,91,45,56,52,46,49,48,57,53,56,54,44,52,48,46,56,54,48,57,57,52,93,44,91,45,56,52,46,49,48,57,53,49,54,44,52,48,46,57,48,52,55,51,93,44,91,45,56,51,46,56,56,48,52,50,51,44,52,48,46,57,50,48,52,50,57,93,44,91,45,56,51,46,56,56,49,49,52,57,44,52,49,46,49,54,55,56,50,52,93,44,91,45,56,52,46,50,50,56,50,50,50,44,52,49,46,49,54,53,56,54,50,93,44,91,45,56,52,46,51,52,49,54,48,50,44,52,49,46,49,54,53,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,50,53,34,44,34,78,65,77,69,34,58,34,83,111,109,101,114,118,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,52,51,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,52,53,54,50,53,44,51,50,46,50,51,51,52,54,56,93,44,91,45,57,55,46,56,54,52,56,54,52,44,51,50,46,48,56,55,51,50,56,93,44,91,45,57,55,46,54,49,53,48,53,53,44,51,50,46,50,48,51,53,56,49,93,44,91,45,57,55,46,54,49,53,50,56,54,44,51,50,46,51,49,56,54,49,56,93,44,91,45,57,55,46,55,56,50,55,54,44,51,50,46,51,49,54,52,57,51,93,44,91,45,57,55,46,57,52,53,54,50,53,44,51,50,46,50,51,51,52,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,101,98,97,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,54,55,52,44,34,98,101,100,115,34,58,52,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,51,53,52,49,52,44,52,48,46,53,53,53,49,53,55,93,44,91,45,55,54,46,54,55,56,48,52,44,52,48,46,52,55,52,55,49,55,93,44,91,45,55,54,46,53,54,54,51,51,57,44,52,48,46,49,57,54,54,52,52,93,44,91,45,55,54,46,51,48,55,53,55,56,44,52,48,46,50,53,53,48,54,54,93,44,91,45,55,54,46,49,53,49,50,49,53,44,52,48,46,51,49,53,57,55,49,93,44,91,45,55,54,46,52,52,48,49,56,49,44,52,48,46,52,57,53,57,53,50,93,44,91,45,55,54,46,53,51,53,52,49,52,44,52,48,46,53,53,53,49,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,71,108,97,99,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,57,57,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,49,57,51,52,49,44,52,56,46,57,57,56,52,55,53,93,44,91,45,49,49,50,46,56,55,53,57,49,55,44,52,56,46,57,57,56,53,48,53,93,44,91,45,49,49,52,46,48,54,56,49,56,44,52,56,46,57,57,56,56,53,55,93,44,91,45,49,49,51,46,57,53,54,56,54,52,44,52,56,46,56,49,55,52,55,52,93,44,91,45,49,49,51,46,56,49,56,51,55,51,44,52,56,46,56,52,56,50,49,56,93,44,91,45,49,49,51,46,55,48,50,57,51,56,44,52,56,46,55,49,57,56,54,53,93,44,91,45,49,49,51,46,55,53,48,52,53,52,44,52,56,46,54,49,52,51,51,53,93,44,91,45,49,49,51,46,52,54,55,51,55,50,44,52,56,46,53,52,55,53,53,53,93,44,91,45,49,49,51,46,52,56,48,56,51,57,44,52,56,46,52,53,57,54,54,50,93,44,91,45,49,49,51,46,51,53,53,57,55,54,44,52,56,46,52,50,51,57,49,50,93,44,91,45,49,49,51,46,51,52,57,48,52,54,44,52,56,46,51,49,48,50,54,51,93,44,91,45,49,49,50,46,53,56,48,52,56,52,44,52,56,46,51,48,57,57,51,50,93,44,91,45,49,49,50,46,53,55,54,57,56,50,44,52,56,46,52,56,51,51,52,56,93,44,91,45,49,49,50,46,49,56,52,55,56,52,44,52,56,46,52,55,55,53,55,56,93,44,91,45,49,49,50,46,49,57,51,52,49,44,52,56,46,57,57,56,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,80,101,114,115,104,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,49,49,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,51,48,57,53,57,56,44,52,48,46,57,54,48,51,55,56,93,44,91,45,49,49,57,46,51,49,51,48,51,55,44,52,48,46,53,49,56,51,49,52,93,44,91,45,49,49,57,46,51,51,56,53,48,52,44,52,48,46,53,49,55,56,48,53,93,44,91,45,49,49,57,46,51,51,57,50,57,54,44,51,57,46,57,57,56,54,48,57,93,44,91,45,49,49,57,46,50,50,53,49,55,54,44,51,57,46,57,57,57,51,56,53,93,44,91,45,49,49,56,46,53,48,48,57,55,57,44,51,57,46,57,57,56,54,55,54,93,44,91,45,49,49,55,46,53,52,49,55,52,57,44,52,48,46,48,48,49,48,51,52,93,44,91,45,49,49,55,46,51,48,48,53,57,55,44,52,48,46,53,50,54,49,51,54,93,44,91,45,49,49,55,46,51,48,57,52,52,49,44,52,48,46,54,56,51,53,51,55,93,44,91,45,49,49,55,46,54,52,52,51,57,57,44,52,48,46,54,56,52,51,52,51,93,44,91,45,49,49,55,46,54,52,52,50,50,44,52,48,46,56,53,55,56,50,52,93,44,91,45,49,49,56,46,55,56,54,55,51,56,44,52,48,46,56,53,53,57,50,57,93,44,91,45,49,49,56,46,55,56,54,55,48,53,44,52,48,46,57,54,48,56,53,93,44,91,45,49,49,57,46,51,48,57,53,57,56,44,52,48,46,57,54,48,51,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,97,104,110,111,109,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,48,54,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,54,55,54,50,49,44,52,55,46,52,57,57,49,51,54,93,44,91,45,57,54,46,48,54,55,48,54,57,44,52,55,46,49,53,49,56,49,51,93,44,91,45,57,53,46,53,53,49,49,56,54,44,52,55,46,49,53,49,52,53,51,93,44,91,45,57,53,46,53,53,52,50,52,56,44,52,55,46,52,57,57,56,57,51,93,44,91,45,57,54,46,48,54,55,54,50,49,44,52,55,46,52,57,57,49,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,80,97,115,115,97,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,52,48,52,49,44,34,98,101,100,115,34,58,57,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,50,55,50,48,54,51,44,52,48,46,56,57,55,52,50,55,93,44,91,45,55,52,46,49,51,48,48,49,54,44,52,48,46,56,49,57,57,51,56,93,44,91,45,55,52,46,49,52,49,48,57,52,44,52,48,46,57,54,54,51,55,52,93,44,91,45,55,52,46,50,55,50,50,50,54,44,52,49,46,48,49,55,57,51,53,93,44,91,45,55,52,46,50,49,49,50,50,52,44,52,49,46,49,51,51,55,49,52,93,44,91,45,55,52,46,50,51,52,50,56,56,44,52,49,46,49,52,51,48,48,56,93,44,91,45,55,52,46,51,54,55,53,49,44,52,49,46,50,48,51,50,52,49,93,44,91,45,55,52,46,53,48,51,50,49,50,44,52,49,46,48,56,53,56,55,51,93,44,91,45,55,52,46,51,48,49,54,56,53,44,52,48,46,57,57,57,49,55,51,93,44,91,45,55,52,46,50,55,50,48,54,51,44,52,48,46,56,57,55,52,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,55,55,52,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,54,51,52,48,55,57,44,52,55,46,54,48,48,48,50,55,93,44,91,45,49,49,51,46,54,55,50,51,51,53,44,52,55,46,56,57,54,52,57,49,93,44,91,45,49,49,51,46,56,51,50,53,53,54,44,52,55,46,57,55,54,52,51,52,93,44,91,45,49,49,51,46,56,56,52,53,52,49,44,52,56,46,48,53,49,57,93,44,91,45,49,49,52,46,48,50,57,48,52,50,44,52,56,46,48,53,49,54,53,51,93,44,91,45,49,49,52,46,48,51,56,53,52,53,44,52,55,46,57,54,50,53,53,93,44,91,45,49,49,52,46,52,57,50,49,57,44,52,55,46,57,54,49,57,56,57,93,44,91,45,49,49,52,46,52,55,55,50,57,44,52,55,46,55,56,57,57,52,49,93,44,91,45,49,49,52,46,54,48,52,52,54,50,44,52,55,46,55,56,57,56,55,49,93,44,91,45,49,49,52,46,53,56,51,55,54,44,52,55,46,54,48,49,55,49,56,93,44,91,45,49,49,52,46,51,53,48,51,54,52,44,52,55,46,54,48,50,49,52,50,93,44,91,45,49,49,52,46,51,53,51,48,56,44,52,55,46,51,56,57,56,53,93,44,91,45,49,49,52,46,50,48,51,48,50,54,44,52,55,46,51,53,53,55,52,54,93,44,91,45,49,49,52,46,49,56,55,49,55,44,52,55,46,49,51,56,49,57,49,93,44,91,45,49,49,51,46,57,51,51,53,48,51,44,52,55,46,49,51,56,50,56,57,93,44,91,45,49,49,51,46,56,50,49,52,52,55,44,52,55,46,49,56,49,55,48,57,93,44,91,45,49,49,51,46,56,55,49,49,49,44,52,55,46,51,57,49,57,55,93,44,91,45,49,49,51,46,57,52,50,56,56,54,44,52,55,46,52,55,57,54,55,56,93,44,91,45,49,49,51,46,57,50,52,56,50,54,44,52,55,46,54,48,48,50,51,57,93,44,91,45,49,49,51,46,54,51,52,48,55,57,44,52,55,46,54,48,48,48,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,49,34,44,34,78,65,77,69,34,58,34,75,101,110,101,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,56,53,56,56,55,44,50,55,46,50,48,57,51,48,56,93,44,91,45,57,55,46,57,56,53,52,57,52,44,50,54,46,55,56,48,57,49,55,93,44,91,45,57,55,46,57,53,55,52,48,53,44,50,54,46,54,49,49,55,54,57,93,44,91,45,57,55,46,56,54,49,54,56,56,44,50,54,46,53,57,55,57,57,53,93,44,91,45,57,55,46,50,50,53,51,55,52,44,50,54,46,54,48,48,50,50,55,93,44,91,45,57,55,46,51,48,48,52,50,51,44,50,54,46,56,51,52,54,49,51,93,44,91,45,57,55,46,51,50,51,50,49,57,44,50,55,46,48,49,48,50,53,54,93,44,91,45,57,55,46,50,56,56,51,51,55,44,50,55,46,50,55,55,53,56,52,93,44,91,45,57,55,46,56,49,52,57,51,52,44,50,55,46,50,55,49,56,57,51,93,44,91,45,57,55,46,57,56,53,56,56,55,44,50,55,46,50,48,57,51,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,66,111,114,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,57,49,50,56,52,44,51,50,46,57,54,49,56,51,56,93,44,91,45,49,48,49,46,54,56,56,55,52,44,51,50,46,53,50,53,50,50,50,93,44,91,45,49,48,49,46,49,55,52,53,55,49,44,51,50,46,53,50,52,49,49,50,93,44,91,45,49,48,49,46,49,55,52,53,54,50,44,51,50,46,53,50,55,55,48,51,93,44,91,45,49,48,49,46,49,55,51,51,55,56,44,51,50,46,57,54,51,53,57,55,93,44,91,45,49,48,49,46,53,53,55,52,51,52,44,51,50,46,57,54,49,48,50,53,93,44,91,45,49,48,49,46,54,57,49,50,56,52,44,51,50,46,57,54,49,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,52,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,51,56,54,48,56,44,51,55,46,56,55,52,51,48,52,93,44,91,45,57,48,46,49,49,48,53,51,55,44,51,55,46,54,55,49,51,52,93,44,91,45,57,48,46,49,52,54,55,55,56,44,51,55,46,54,52,49,54,49,56,93,44,91,45,57,48,46,49,52,54,55,54,51,44,51,55,46,53,57,55,52,51,52,93,44,91,45,56,57,46,56,54,49,49,50,51,44,51,55,46,53,57,57,50,56,54,93,44,91,45,56,57,46,54,48,56,57,51,52,44,51,55,46,53,57,55,52,50,55,93,44,91,45,56,57,46,53,50,49,56,53,53,44,51,55,46,53,54,54,50,49,52,93,44,91,45,56,57,46,53,50,49,53,54,52,44,51,55,46,53,55,50,49,53,54,93,44,91,45,56,57,46,53,49,50,48,48,57,44,51,55,46,54,56,53,53,50,53,93,44,91,45,56,57,46,54,55,52,51,50,49,44,51,55,46,56,48,51,49,53,50,93,44,91,45,56,57,46,56,52,52,55,56,54,44,51,55,46,57,48,53,53,55,50,93,44,91,45,56,57,46,57,51,56,54,48,56,44,51,55,46,56,55,52,51,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,49,49,34,44,34,78,65,77,69,34,58,34,83,97,110,32,83,97,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,57,48,54,50,50,44,51,49,46,52,54,48,57,50,55,93,44,91,45,57,57,46,48,57,50,51,49,55,44,51,48,46,57,52,49,48,48,50,93,44,91,45,57,56,46,57,54,52,54,49,50,44,51,48,46,57,50,49,51,54,56,93,44,91,45,57,56,46,52,52,53,55,56,50,44,51,48,46,57,50,49,52,51,57,93,44,91,45,57,56,46,52,51,57,54,56,55,44,51,49,46,48,50,57,53,51,55,93,44,91,45,57,56,46,53,54,50,55,51,57,44,51,49,46,50,51,48,53,56,50,93,44,91,45,57,56,46,54,50,53,54,50,56,44,51,49,46,50,54,57,55,57,56,93,44,91,45,57,56,46,54,57,54,54,51,52,44,51,49,46,52,48,55,50,56,55,93,44,91,45,57,56,46,57,54,51,53,57,51,44,51,49,46,52,52,54,50,53,49,93,44,91,45,57,56,46,57,57,49,54,48,56,44,51,49,46,52,56,52,48,55,49,93,44,91,45,57,57,46,48,57,48,54,50,50,44,51,49,46,52,54,48,57,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,75,105,110,103,102,105,115,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,49,48,52,48,53,44,51,54,46,49,54,52,56,56,57,93,44,91,45,57,56,46,50,48,55,49,48,52,44,51,53,46,55,50,53,49,56,55,93,44,91,45,57,55,46,54,55,52,48,50,54,44,51,53,46,55,50,53,57,55,93,44,91,45,57,55,46,54,55,53,54,49,55,44,51,54,46,49,54,52,54,54,51,93,44,91,45,57,56,46,49,48,51,57,48,52,44,51,54,46,49,54,52,56,55,55,93,44,91,45,57,56,46,50,49,48,52,48,53,44,51,54,46,49,54,52,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,66,117,114,108,101,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,54,51,54,50,57,44,51,48,46,53,53,55,49,54,57,93,44,91,45,57,54,46,55,53,51,56,51,53,44,51,48,46,51,50,57,51,52,56,93,44,91,45,57,54,46,54,52,48,56,56,51,44,51,48,46,50,57,54,55,56,54,93,44,91,45,57,54,46,50,57,57,49,55,51,44,51,48,46,51,55,57,49,53,50,93,44,91,45,57,54,46,50,56,50,53,54,52,44,51,48,46,52,50,54,54,49,52,93,44,91,45,57,54,46,53,54,54,57,56,51,44,51,48,46,54,57,53,54,55,93,44,91,45,57,54,46,54,50,49,50,56,49,44,51,48,46,55,51,48,56,49,57,93,44,91,45,57,54,46,57,54,51,54,50,57,44,51,48,46,53,53,55,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,55,52,51,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,49,50,54,49,53,44,52,51,46,50,56,54,49,52,51,93,44,91,45,55,52,46,54,57,54,55,56,55,44,52,51,46,49,56,51,49,49,54,93,44,91,45,55,52,46,55,53,57,56,57,53,44,52,51,46,48,52,55,52,50,51,93,44,91,45,55,52,46,53,52,50,51,54,55,44,52,50,46,57,56,53,53,51,93,44,91,45,55,52,46,48,57,55,52,54,55,44,52,50,46,57,56,50,57,51,52,93,44,91,45,55,52,46,49,52,48,49,52,55,44,52,51,46,50,53,51,57,55,57,93,44,91,45,55,52,46,53,51,52,54,53,55,44,52,51,46,50,50,56,49,49,53,93,44,91,45,55,52,46,55,49,50,54,49,53,44,52,51,46,50,56,54,49,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,83,117,110,102,108,111,119,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,53,51,50,44,34,98,101,100,115,34,58,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,53,55,48,48,50,44,51,51,46,57,56,55,53,56,54,93,44,91,45,57,48,46,54,53,56,54,44,51,51,46,54,49,54,50,55,50,93,44,91,45,57,48,46,55,54,51,53,48,57,44,51,51,46,53,50,57,51,56,57,93,44,91,45,57,48,46,55,54,51,55,55,51,44,51,51,46,50,55,48,51,53,57,93,44,91,45,57,48,46,55,49,54,50,55,55,44,51,51,46,50,55,48,48,51,50,93,44,91,45,57,48,46,53,53,53,50,49,49,44,51,51,46,50,55,48,53,51,51,93,44,91,45,57,48,46,52,53,51,50,51,51,44,51,51,46,51,50,57,52,56,52,93,44,91,45,57,48,46,52,53,49,54,52,51,44,51,51,46,56,49,49,51,57,93,44,91,45,57,48,46,52,53,49,48,49,50,44,51,51,46,57,56,53,54,56,57,93,44,91,45,57,48,46,54,53,55,48,48,50,44,51,51,46,57,56,55,53,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,72,101,110,110,101,112,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,53,52,55,56,44,34,98,101,100,115,34,58,53,56,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,50,49,54,53,51,44,52,53,46,50,52,54,54,49,56,93,44,91,45,57,51,46,54,53,56,57,49,55,44,52,53,46,49,57,51,53,53,49,93,44,91,45,57,51,46,55,54,54,56,48,56,44,52,53,46,48,53,55,51,49,50,93,44,91,45,57,51,46,55,54,55,51,54,55,44,52,52,46,57,55,55,57,54,52,93,44,91,45,57,51,46,55,54,55,48,52,49,44,52,52,46,56,57,48,56,54,50,93,44,91,45,57,51,46,53,50,48,55,48,54,44,52,52,46,56,57,49,53,48,50,93,44,91,45,57,51,46,53,50,48,52,51,49,44,52,52,46,56,48,52,50,54,51,93,44,91,45,57,51,46,51,50,57,54,49,53,44,52,52,46,55,57,49,48,56,54,93,44,91,45,57,51,46,49,55,56,53,51,57,44,52,52,46,56,56,56,51,51,56,93,44,91,45,57,51,46,50,50,54,57,50,57,44,52,53,46,48,51,53,54,55,49,93,44,91,45,57,51,46,51,49,49,53,52,52,44,52,53,46,49,52,51,55,55,56,93,44,91,45,57,51,46,53,49,50,49,57,44,52,53,46,50,52,53,54,56,51,93,44,91,45,57,51,46,53,50,49,54,53,51,44,52,53,46,50,52,54,54,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,101,110,116,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,52,52,51,44,34,98,101,100,115,34,58,52,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,51,56,50,48,51,44,52,49,46,49,53,51,54,51,51,93,44,91,45,55,56,46,48,55,55,55,52,44,52,48,46,57,53,56,56,50,52,93,44,91,45,55,56,46,50,49,57,56,49,51,44,52,48,46,57,49,50,55,52,49,93,44,91,45,55,56,46,51,53,57,57,49,50,44,52,48,46,55,51,50,53,57,50,93,44,91,45,55,56,46,49,49,54,53,50,49,44,52,48,46,55,51,57,49,50,55,93,44,91,45,55,55,46,57,52,52,50,53,44,52,48,46,54,57,49,53,53,55,93,44,91,45,55,55,46,56,50,52,53,48,54,44,52,48,46,55,52,51,54,56,49,93,44,91,45,55,55,46,54,56,49,51,51,52,44,52,48,46,55,50,57,55,53,56,93,44,91,45,55,55,46,51,54,52,49,56,44,52,48,46,56,52,54,57,51,55,93,44,91,45,55,55,46,49,52,52,49,54,44,52,49,46,48,52,52,51,51,56,93,44,91,45,55,55,46,53,48,56,53,57,54,44,52,48,46,57,54,50,57,51,56,93,44,91,45,55,55,46,54,50,49,55,53,57,44,52,49,46,48,57,49,49,56,53,93,44,91,45,55,55,46,55,52,49,57,49,49,44,52,49,46,49,48,55,54,49,52,93,44,91,45,55,55,46,55,57,56,53,54,44,52,49,46,49,56,49,57,53,93,44,91,45,55,56,46,48,51,56,50,48,51,44,52,49,46,49,53,51,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,66,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,54,57,49,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,48,53,50,53,50,44,50,56,46,54,57,48,50,51,57,93,44,91,45,57,56,46,48,56,57,55,54,52,44,50,56,46,54,54,50,57,55,57,93,44,91,45,57,55,46,56,49,55,55,49,54,44,50,56,46,49,55,54,56,52,56,93,44,91,45,57,55,46,53,54,55,54,50,50,44,50,56,46,49,50,57,54,56,51,93,44,91,45,57,55,46,53,52,49,48,55,49,44,50,56,46,49,54,52,54,54,57,93,44,91,45,57,55,46,51,55,53,53,55,57,44,50,56,46,51,56,56,54,56,52,93,44,91,45,57,55,46,53,53,51,57,49,54,44,50,56,46,52,53,53,50,55,56,93,44,91,45,57,55,46,53,55,55,48,53,56,44,50,56,46,53,50,50,53,52,55,93,44,91,45,57,55,46,54,57,54,57,52,53,44,50,56,46,53,52,49,56,53,54,93,44,91,45,57,55,46,55,55,56,53,51,44,50,56,46,54,54,56,48,50,55,93,44,91,45,57,55,46,57,49,53,49,48,54,44,50,56,46,55,49,57,54,52,56,93,44,91,45,57,56,46,48,48,53,50,53,50,44,50,56,46,54,57,48,50,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,72,101,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,53,57,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,48,54,56,54,50,44,51,53,46,55,56,57,51,53,52,93,44,91,45,56,56,46,54,49,51,54,49,49,44,51,53,46,53,56,56,48,56,57,93,44,91,45,56,56,46,52,49,52,53,56,50,44,51,53,46,52,56,50,51,51,57,93,44,91,45,56,56,46,51,54,48,56,50,57,44,51,53,46,52,49,56,57,55,50,93,44,91,45,56,56,46,50,52,49,54,55,55,44,51,53,46,52,50,51,50,54,51,93,44,91,45,56,56,46,49,57,48,52,54,53,44,51,53,46,54,48,57,48,56,56,93,44,91,45,56,56,46,49,55,57,49,55,55,44,51,53,46,56,49,54,55,56,53,93,44,91,45,56,56,46,53,54,57,48,52,55,44,51,53,46,56,50,52,56,50,57,93,44,91,45,56,56,46,54,48,54,56,54,50,44,51,53,46,55,56,57,51,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,84,97,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,54,55,52,54,51,44,52,50,46,50,49,48,49,52,93,44,91,45,57,50,46,55,54,53,57,57,57,44,52,49,46,56,54,50,51,55,51,93,44,91,45,57,50,46,50,57,56,49,54,52,44,52,49,46,56,54,50,55,55,57,93,44,91,45,57,50,46,50,57,56,55,57,50,44,52,50,46,50,57,55,53,50,55,93,44,91,45,57,50,46,53,51,51,53,49,44,52,50,46,50,57,55,48,48,49,93,44,91,45,57,50,46,55,54,56,48,57,44,52,50,46,50,57,54,54,56,93,44,91,45,57,50,46,55,54,55,52,54,51,44,52,50,46,50,49,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,83,101,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,57,50,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,54,56,49,48,54,44,51,55,46,51,56,55,55,55,57,93,44,91,45,49,48,49,46,48,54,54,52,53,49,44,51,54,46,57,57,55,57,50,50,93,44,91,45,49,48,48,46,57,52,53,52,54,51,44,51,54,46,57,57,56,52,49,54,93,44,91,45,49,48,48,46,54,51,51,51,50,55,44,51,55,46,48,48,48,49,48,51,93,44,91,45,49,48,48,46,54,53,50,55,50,56,44,51,55,46,51,56,55,54,50,55,93,44,91,45,49,48,49,46,48,54,56,49,48,54,44,51,55,46,51,56,55,55,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,57,57,50,49,55,44,52,49,46,49,54,48,56,54,55,93,44,91,45,57,51,46,48,57,55,53,57,53,44,52,48,46,56,57,56,52,53,49,93,44,91,45,57,50,46,54,51,57,48,57,49,44,52,48,46,56,57,56,56,56,54,93,44,91,45,57,50,46,54,52,48,51,54,49,44,52,49,46,49,54,49,50,57,56,93,44,91,45,57,50,46,56,54,57,55,55,49,44,52,49,46,49,54,49,48,54,54,93,44,91,45,57,51,46,48,57,57,50,49,55,44,52,49,46,49,54,48,56,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,82,105,99,104,97,114,100,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,48,57,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,53,50,52,55,51,44,52,48,46,50,54,49,57,48,52,93,44,91,45,57,54,46,48,49,48,49,55,54,44,52,48,46,50,54,49,52,56,50,93,44,91,45,57,54,46,48,49,48,54,56,44,52,48,46,48,48,48,54,53,49,93,44,91,45,57,53,46,55,56,56,49,49,49,44,52,48,46,48,48,48,52,54,50,93,44,91,45,57,53,46,51,51,57,56,57,54,44,51,57,46,57,57,57,57,57,57,93,44,91,45,57,53,46,51,48,56,50,57,44,51,57,46,57,57,57,57,57,56,93,44,91,45,57,53,46,52,49,57,57,57,57,44,52,48,46,48,53,48,52,52,93,44,91,45,57,53,46,51,57,54,53,52,57,44,52,48,46,49,50,52,55,48,49,93,44,91,45,57,53,46,53,53,50,52,55,51,44,52,48,46,50,54,49,57,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,114,105,115,116,105,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,50,51,49,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,49,55,52,55,51,44,51,57,46,56,49,51,54,54,54,93,44,91,45,56,57,46,52,48,57,52,55,53,44,51,57,46,55,52,51,53,51,93,44,91,45,56,57,46,53,51,53,48,50,56,44,51,57,46,54,52,49,49,51,56,93,44,91,45,56,57,46,53,51,51,54,53,53,44,51,57,46,53,50,52,53,57,50,93,44,91,45,56,57,46,53,51,48,56,51,54,44,51,57,46,51,52,56,56,54,52,93,44,91,45,56,57,46,49,51,57,56,48,55,44,51,57,46,51,52,56,56,56,56,93,44,91,45,56,57,46,48,50,53,52,53,51,44,51,57,46,51,52,54,49,49,53,93,44,91,45,56,57,46,48,50,53,54,56,44,51,57,46,54,53,52,49,56,51,93,44,91,45,56,57,46,49,51,57,49,50,53,44,51,57,46,54,53,53,49,51,49,93,44,91,45,56,57,46,49,52,49,57,54,55,44,51,57,46,56,48,49,50,55,51,93,44,91,45,56,57,46,50,49,55,52,55,51,44,51,57,46,56,49,51,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,78,97,115,115,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,53,55,56,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,52,55,48,49,53,44,51,48,46,55,49,50,52,52,52,93,44,91,45,56,49,46,55,49,56,49,48,57,44,51,48,46,55,52,52,56,48,54,93,44,91,45,56,49,46,57,48,52,56,53,53,44,51,48,46,56,50,56,51,52,93,44,91,45,56,50,46,48,51,57,55,57,53,44,51,48,46,55,52,55,50,57,55,93,44,91,45,56,50,46,48,48,53,56,49,44,51,48,46,53,54,53,51,53,56,93,44,91,45,56,50,46,48,52,57,57,53,56,44,51,48,46,51,54,50,52,55,50,93,44,91,45,56,50,46,48,52,57,50,51,54,44,51,48,46,50,55,51,52,51,50,93,44,91,45,56,49,46,56,51,49,50,50,55,44,51,48,46,52,54,55,52,51,55,93,44,91,45,56,49,46,54,50,52,53,49,51,44,51,48,46,53,56,54,50,51,50,93,44,91,45,56,49,46,53,52,51,48,49,56,44,51,48,46,53,50,51,56,56,57,93,44,91,45,56,49,46,51,53,56,55,57,51,44,51,48,46,53,48,49,53,48,52,93,44,91,45,56,49,46,51,56,48,56,54,55,44,51,48,46,54,50,55,51,52,53,93,44,91,45,56,49,46,51,52,55,48,49,53,44,51,48,46,55,49,50,52,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,53,54,54,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,57,57,57,51,52,44,51,48,46,56,51,48,53,53,50,93,44,91,45,56,53,46,54,49,57,48,49,49,44,51,48,46,55,52,51,56,54,56,93,44,91,45,56,53,46,56,52,52,52,50,49,44,51,48,46,55,48,51,49,51,93,44,91,45,56,53,46,57,49,53,50,57,55,44,51,48,46,54,51,54,52,50,55,93,44,91,45,56,53,46,56,54,54,56,49,56,44,51,48,46,52,56,55,54,51,55,93,44,91,45,56,53,46,57,57,50,55,51,54,44,51,48,46,51,56,57,51,50,93,44,91,45,56,53,46,56,53,51,53,44,51,48,46,52,52,48,54,50,51,93,44,91,45,56,53,46,52,56,55,57,54,56,44,51,48,46,52,51,54,54,53,53,93,44,91,45,56,53,46,52,51,52,55,56,50,44,51,48,46,53,54,55,53,54,93,44,91,45,56,53,46,52,51,50,50,55,52,44,51,48,46,55,56,53,52,53,55,93,44,91,45,56,53,46,53,57,57,57,51,52,44,51,48,46,56,51,48,53,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,97,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,50,57,56,55,54,44,51,49,46,52,51,54,54,54,49,93,44,91,45,56,52,46,54,51,55,53,55,57,44,51,49,46,52,51,51,57,50,54,93,44,91,45,56,52,46,54,52,49,54,55,51,44,51,49,46,50,53,56,57,54,55,93,44,91,45,56,52,46,53,51,55,49,48,49,44,51,49,46,50,53,53,57,51,50,93,44,91,45,56,52,46,53,52,50,54,53,51,44,51,49,46,48,55,57,48,50,57,93,44,91,45,56,52,46,53,48,56,48,55,56,44,51,49,46,48,55,56,52,93,44,91,45,56,52,46,51,52,48,53,53,50,44,51,49,46,51,48,53,51,52,49,93,44,91,45,56,52,46,49,57,55,57,56,54,44,51,49,46,51,53,55,53,50,49,93,44,91,45,56,52,46,49,52,49,49,50,52,44,51,49,46,52,52,48,49,55,57,93,44,91,45,56,52,46,52,50,57,56,55,54,44,51,49,46,52,51,54,54,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,53,34,44,34,78,65,77,69,34,58,34,84,104,111,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,55,51,48,44,34,98,101,100,115,34,58,50,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,49,54,54,52,52,44,51,49,46,48,55,55,57,55,49,93,44,91,45,56,52,46,48,55,55,49,49,57,44,51,48,46,57,49,52,57,54,53,93,44,91,45,56,52,46,48,56,51,55,53,55,44,51,48,46,54,55,53,56,48,52,93,44,91,45,56,52,46,48,48,55,52,53,52,44,51,48,46,54,55,50,49,50,55,93,44,91,45,56,51,46,55,52,51,55,50,57,44,51,48,46,54,53,56,51,57,54,93,44,91,45,56,51,46,55,51,54,49,53,56,44,51,49,46,48,51,55,54,55,57,93,44,91,45,56,52,46,48,48,51,56,55,54,44,51,49,46,48,52,49,53,56,50,93,44,91,45,56,52,46,48,48,51,54,50,55,44,51,49,46,48,55,55,50,57,93,44,91,45,56,52,46,49,49,54,54,52,52,44,51,49,46,48,55,55,57,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,50,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,48,49,54,52,54,44,51,56,46,48,51,55,50,55,93,44,91,45,56,53,46,49,54,55,56,51,52,44,51,55,46,57,55,49,56,48,57,93,44,91,45,56,53,46,49,53,50,55,57,55,44,51,55,46,56,57,55,54,54,49,93,44,91,45,56,53,46,48,51,48,53,50,56,44,51,55,46,56,57,49,53,51,56,93,44,91,45,56,52,46,57,51,51,48,56,53,44,51,55,46,57,53,52,49,56,54,93,44,91,45,56,52,46,55,57,54,51,50,55,44,51,55,46,57,55,48,48,56,56,93,44,91,45,56,52,46,56,54,52,57,48,56,44,51,56,46,49,49,54,57,50,54,93,44,91,45,56,53,46,48,50,51,55,49,49,44,51,56,46,49,50,57,48,53,50,93,44,91,45,56,53,46,49,48,49,54,52,54,44,51,56,46,48,51,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,79,108,100,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,51,55,52,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,51,51,49,56,57,44,51,56,46,53,50,52,51,55,53,93,44,91,45,56,53,46,53,56,54,48,51,51,44,51,56,46,52,53,48,48,57,50,93,44,91,45,56,53,46,54,51,55,56,54,49,44,51,56,46,51,56,48,50,54,51,93,44,91,45,56,53,46,52,54,56,50,48,54,44,51,56,46,50,56,53,51,48,57,93,44,91,45,56,53,46,50,56,51,48,56,50,44,51,56,46,51,53,56,48,53,52,93,44,91,45,56,53,46,51,49,52,48,48,54,44,51,56,46,52,57,50,53,57,50,93,44,91,45,56,53,46,52,51,51,49,56,57,44,51,56,46,53,50,52,51,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,57,49,48,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,53,51,50,51,50,44,51,52,46,52,49,50,53,57,93,44,91,45,56,52,46,54,53,57,50,52,49,44,51,52,46,48,55,56,50,52,93,44,91,45,56,52,46,52,49,56,57,50,55,44,51,52,46,48,55,51,50,57,56,93,44,91,45,56,52,46,51,50,56,50,54,51,44,51,52,46,49,56,54,49,52,52,93,44,91,45,56,52,46,50,53,56,55,52,51,44,51,52,46,49,56,53,57,48,57,93,44,91,45,56,52,46,50,53,56,48,55,53,44,51,52,46,51,51,53,49,53,54,93,44,91,45,56,52,46,50,53,55,53,56,54,44,51,52,46,51,56,48,57,57,50,93,44,91,45,56,52,46,53,56,50,54,51,44,51,52,46,51,56,49,52,57,50,93,44,91,45,56,52,46,54,53,51,50,51,50,44,51,52,46,52,49,50,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,79,108,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,55,54,52,51,57,50,44,52,54,46,57,56,49,51,48,54,93,44,91,45,49,48,48,46,57,51,53,57,56,51,44,52,54,46,57,56,50,56,52,93,44,91,45,49,48,48,46,56,56,50,49,55,50,44,52,55,46,48,49,53,49,49,53,93,44,91,45,49,48,48,46,57,54,53,52,52,44,52,55,46,49,53,55,49,51,52,93,44,91,45,49,48,49,46,48,54,48,52,50,52,44,52,55,46,50,57,51,50,57,51,93,44,91,45,49,48,49,46,50,53,55,48,51,49,44,52,55,46,50,54,52,56,57,53,93,44,91,45,49,48,49,46,50,53,55,54,51,51,44,52,55,46,50,52,49,51,52,51,93,44,91,45,49,48,49,46,55,54,52,54,52,55,44,52,55,46,50,52,49,53,49,56,93,44,91,45,49,48,49,46,55,54,52,51,57,50,44,52,54,46,57,56,49,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,79,115,99,101,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,54,52,53,53,52,44,52,52,46,49,54,52,56,54,49,93,44,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,44,91,45,56,53,46,48,56,56,56,49,49,44,52,51,46,56,49,51,54,55,54,93,44,91,45,56,53,46,48,56,55,52,48,51,44,52,52,46,49,54,52,50,52,50,93,44,91,45,56,53,46,51,51,52,55,55,55,44,52,52,46,49,54,53,49,49,56,93,44,91,45,56,53,46,53,54,52,53,53,52,44,52,52,46,49,54,52,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,77,99,78,97,105,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,57,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,54,50,53,55,50,44,51,53,46,51,56,48,57,57,52,93,44,91,45,56,56,46,54,52,48,57,51,52,44,51,53,46,51,54,49,48,49,55,93,44,91,45,56,56,46,55,49,57,55,54,49,44,51,53,46,50,52,55,53,53,93,44,91,45,56,56,46,55,56,49,55,54,56,44,51,53,46,50,52,55,53,56,55,93,44,91,45,56,56,46,55,56,54,54,49,50,44,51,52,46,57,57,53,50,53,50,93,44,91,45,56,56,46,51,56,48,53,48,56,44,51,52,46,57,57,53,54,49,93,44,91,45,56,56,46,51,54,50,53,55,50,44,51,53,46,51,56,48,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,53,50,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,57,55,57,55,55,55,44,52,55,46,50,54,49,55,48,57,93,44,91,45,49,49,56,46,57,56,50,54,53,50,44,52,54,46,57,49,49,51,52,52,93,44,91,45,49,49,57,46,51,54,56,54,54,50,44,52,54,46,57,49,50,53,54,50,93,44,91,45,49,49,57,46,51,54,57,52,50,57,44,52,54,46,55,51,55,54,57,53,93,44,91,45,49,49,56,46,50,49,48,50,52,51,44,52,54,46,55,51,56,56,51,51,93,44,91,45,49,49,56,46,48,49,50,52,52,50,44,52,54,46,55,57,48,55,56,93,44,91,45,49,49,55,46,57,53,57,51,51,53,44,52,54,46,57,49,52,56,49,49,93,44,91,45,49,49,55,46,57,54,48,57,51,44,52,55,46,50,54,48,53,54,56,93,44,91,45,49,49,56,46,57,55,57,55,55,55,44,52,55,46,50,54,49,55,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,68,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,55,53,51,56,53,44,51,55,46,53,56,49,53,55,93,44,91,45,57,52,46,48,56,50,48,56,51,44,51,55,46,51,52,57,50,57,49,93,44,91,45,57,52,46,48,53,50,51,49,51,44,51,55,46,50,57,48,48,55,56,93,44,91,45,57,51,46,54,50,53,56,52,52,44,51,55,46,50,56,50,48,49,49,93,44,91,45,57,51,46,54,50,49,49,53,51,44,51,55,46,52,50,55,52,50,51,93,44,91,45,57,51,46,54,49,54,48,51,51,44,51,55,46,53,55,50,54,56,57,93,44,91,45,57,52,46,48,55,53,51,56,53,44,51,55,46,53,56,49,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,83,116,46,32,77,97,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,51,52,44,34,98,101,100,115,34,58,49,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,55,49,57,53,49,44,50,57,46,57,53,53,57,56,57,93,44,91,45,57,49,46,54,50,52,55,48,57,44,50,57,46,57,52,53,50,55,53,93,44,91,45,57,49,46,55,49,49,49,52,57,44,50,57,46,56,52,54,48,54,53,93,44,91,45,57,49,46,57,51,53,49,54,50,44,50,57,46,54,55,50,53,55,56,93,44,91,45,57,49,46,55,50,51,50,53,52,44,50,57,46,54,54,49,50,57,55,93,44,91,45,57,49,46,53,57,49,51,44,50,57,46,53,48,55,55,48,49,93,44,91,45,57,49,46,53,57,49,56,54,52,44,50,57,46,51,53,57,51,55,53,93,44,91,45,57,49,46,52,50,49,49,50,56,44,50,57,46,51,48,50,56,50,56,93,44,91,45,57,49,46,51,53,52,50,55,50,44,50,57,46,50,51,57,54,48,54,93,44,91,45,57,49,46,50,49,50,49,53,55,44,50,57,46,52,50,51,52,50,57,93,44,91,45,57,49,46,50,54,48,54,54,49,44,50,57,46,53,52,52,53,49,93,44,91,45,57,49,46,48,56,50,54,48,50,44,50,57,46,54,50,54,51,54,56,93,44,91,45,57,49,46,49,48,48,48,49,44,50,57,46,54,57,57,52,48,50,93,44,91,45,57,49,46,51,56,54,52,57,49,44,50,57,46,55,56,51,54,56,49,93,44,91,45,57,49,46,51,55,51,54,52,50,44,50,57,46,56,51,52,52,48,49,93,44,91,45,57,49,46,52,55,49,57,53,49,44,50,57,46,57,53,53,57,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,104,105,116,116,101,110,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,48,53,50,44,34,98,101,100,115,34,58,53,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,50,50,56,56,53,52,44,52,52,46,55,50,50,56,54,54,93,44,91,45,55,51,46,50,51,51,50,48,57,44,52,52,46,54,52,57,55,57,49,93,44,91,45,55,51,46,51,54,49,52,53,53,44,52,52,46,53,54,51,53,54,51,93,44,91,45,55,51,46,51,51,56,54,51,54,44,52,52,46,53,52,54,56,52,52,93,44,91,45,55,51,46,50,57,54,48,53,50,44,52,52,46,52,50,56,51,51,52,93,44,91,45,55,51,46,51,49,51,50,56,51,44,52,52,46,50,54,52,49,51,93,44,91,45,55,50,46,57,55,51,51,49,56,44,52,52,46,50,57,51,52,50,93,44,91,45,55,50,46,57,53,50,49,54,55,44,52,52,46,49,54,49,50,55,49,93,44,91,45,55,50,46,56,48,52,57,57,53,44,52,52,46,52,53,49,54,55,54,93,44,91,45,55,50,46,56,50,57,48,55,51,44,52,52,46,53,53,50,50,55,51,93,44,91,45,55,50,46,57,50,52,49,49,50,44,52,52,46,54,51,51,48,53,49,93,44,91,45,55,51,46,50,50,56,56,53,52,44,52,52,46,55,50,50,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,111,109,101,114,195,173,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,57,48,54,55,54,44,49,56,46,50,53,56,56,52,93,44,91,45,54,54,46,50,48,54,49,51,53,44,49,56,46,50,55,54,54,54,93,44,91,45,54,54,46,50,54,54,52,54,54,44,49,56,46,50,52,53,50,55,93,44,91,45,54,54,46,50,52,48,52,54,44,49,56,46,49,56,52,55,57,52,93,44,91,45,54,54,46,49,54,57,49,50,54,44,49,56,46,50,50,52,50,57,93,44,91,45,54,54,46,49,57,48,54,55,54,44,49,56,46,50,53,56,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,77,97,117,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,72,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,53,50,56,49,44,34,98,101,100,115,34,58,51,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,54,46,53,55,55,50,50,52,44,50,48,46,55,52,51,49,51,93,44,91,45,49,53,54,46,53,44,50,48,46,54,57,57,48,56,55,93,44,91,45,49,53,54,46,55,48,52,52,52,50,44,50,48,46,54,48,52,53,57,49,93,44,91,45,49,53,54,46,55,53,44,50,48,46,52,53,52,51,51,53,93,44,91,45,49,53,54,46,53,51,51,52,53,54,44,50,48,46,52,54,50,57,56,93,44,91,45,49,53,54,46,52,53,57,56,54,56,44,50,48,46,53,53,55,54,54,54,93,44,91,45,49,53,54,46,50,57,48,52,55,50,44,50,48,46,53,51,54,56,57,53,93,44,91,45,49,53,54,46,48,49,54,51,48,53,44,50,48,46,54,49,50,51,55,52,93,44,91,45,49,53,53,46,57,50,54,55,56,53,44,50,48,46,55,56,49,55,51,53,93,44,91,45,49,53,54,46,49,57,53,50,57,54,44,50,48,46,57,55,49,53,48,50,93,44,91,45,49,53,54,46,51,51,57,50,49,56,44,50,49,46,48,48,52,49,57,53,93,44,91,45,49,53,54,46,52,53,49,48,57,44,50,48,46,57,54,56,55,53,56,93,44,91,45,49,53,54,46,53,57,49,48,51,49,44,50,49,46,48,57,50,52,49,49,93,44,91,45,49,53,54,46,55,51,53,48,49,55,44,50,49,46,48,48,53,55,50,57,93,44,91,45,49,53,54,46,55,50,49,55,51,55,44,50,48,46,56,52,50,52,51,54,93,44,91,45,49,53,54,46,53,55,55,50,50,52,44,50,48,46,55,52,51,49,51,93,93,93,44,91,91,91,45,49,53,55,46,48,49,53,48,53,56,44,50,49,46,50,54,49,49,57,52,93,44,91,45,49,53,55,46,50,50,48,50,49,50,44,50,49,46,50,55,56,52,57,54,93,44,91,45,49,53,55,46,51,48,53,50,53,50,44,50,49,46,50,53,50,56,56,49,93,44,91,45,49,53,55,46,51,54,54,53,52,57,44,50,49,46,49,48,48,57,53,54,93,44,91,45,49,53,55,46,51,50,49,50,52,52,44,50,49,46,48,53,48,54,55,54,93,44,91,45,49,53,55,46,48,55,50,49,52,57,44,50,49,46,48,53,55,53,57,55,93,44,91,45,49,53,54,46,57,49,52,53,51,53,44,50,48,46,57,57,55,53,56,52,93,44,91,45,49,53,54,46,56,51,54,57,53,52,44,50,49,93,44,91,45,49,53,54,46,54,55,50,53,56,54,44,50,49,46,48,57,53,55,49,55,93,44,91,45,49,53,54,46,55,50,50,48,55,54,44,50,49,46,50,50,54,48,54,50,93,44,91,45,49,53,54,46,56,55,49,49,57,53,44,50,49,46,50,51,49,56,56,55,93,44,91,45,49,53,54,46,57,49,55,49,44,50,49,46,49,54,51,55,49,93,44,91,45,49,53,55,46,48,49,52,54,49,50,44,50,49,46,49,56,50,51,52,57,93,44,91,45,49,53,55,46,48,49,53,48,53,56,44,50,49,46,50,54,49,49,57,52,93,93,93,44,91,91,91,45,49,53,55,46,49,49,54,49,56,55,44,50,48,46,57,48,50,56,49,51,93,44,91,45,49,53,54,46,57,57,52,52,51,52,44,50,48,46,54,57,51,53,55,53,93,44,91,45,49,53,54,46,56,55,53,44,50,48,46,54,57,48,57,54,53,93,44,91,45,49,53,54,46,55,53,44,50,48,46,56,48,55,54,48,53,93,44,91,45,49,53,54,46,56,50,51,51,50,57,44,50,48,46,57,51,48,56,48,56,93,44,91,45,49,53,54,46,57,49,51,51,50,51,44,50,48,46,57,55,55,57,54,51,93,44,91,45,49,53,55,46,48,51,53,50,54,56,44,50,48,46,57,56,51,51,48,50,93,44,91,45,49,53,55,46,49,49,54,49,56,55,44,50,48,46,57,48,50,56,49,51,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,76,97,102,111,117,114,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,50,49,52,44,34,98,101,100,115,34,58,50,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,48,54,55,52,51,44,50,57,46,55,49,52,55,55,49,93,44,91,45,57,48,46,55,54,54,56,52,57,44,50,57,46,54,57,53,52,55,55,93,44,91,45,57,48,46,54,49,57,51,48,57,44,50,57,46,53,57,56,48,57,50,93,44,91,45,57,48,46,51,56,53,53,51,57,44,50,57,46,51,54,55,55,52,57,93,44,91,45,57,48,46,52,48,57,52,49,51,44,50,57,46,50,51,57,55,51,56,93,44,91,45,57,48,46,52,48,57,51,56,44,50,56,46,57,57,53,51,52,93,44,91,45,57,48,46,50,48,48,54,57,54,44,50,57,46,48,51,54,49,56,52,93,44,91,45,57,48,46,48,56,57,48,57,50,44,50,57,46,48,57,52,54,52,56,93,44,91,45,57,48,46,48,57,48,51,51,55,44,50,57,46,49,56,48,53,55,52,93,44,91,45,57,48,46,48,48,48,48,54,56,44,50,57,46,50,57,52,57,49,50,93,44,91,45,57,48,46,48,50,48,54,50,50,44,50,57,46,52,50,56,52,54,49,93,44,91,45,57,48,46,49,51,55,53,48,52,44,50,57,46,52,55,55,49,54,51,93,44,91,45,57,48,46,49,55,48,51,56,55,44,50,57,46,54,56,51,53,50,51,93,44,91,45,57,48,46,50,50,56,49,53,55,44,50,57,46,54,57,50,48,50,56,93,44,91,45,57,48,46,51,52,54,49,57,49,44,50,57,46,54,57,51,51,48,50,93,44,91,45,57,48,46,51,55,49,57,55,56,44,50,57,46,55,53,57,50,51,57,93,44,91,45,57,48,46,53,50,57,54,48,49,44,50,57,46,56,56,52,57,57,55,93,44,91,45,57,48,46,54,53,54,51,49,50,44,50,57,46,56,56,57,50,52,54,93,44,91,45,57,48,46,56,56,53,53,56,57,44,50,57,46,57,48,53,51,53,51,93,44,91,45,57,49,46,48,48,54,55,52,51,44,50,57,46,55,49,52,55,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,77,117,115,99,97,116,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,57,53,48,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,54,54,52,52,56,44,52,49,46,53,57,56,51,55,51,93,44,91,45,57,49,46,51,54,56,53,50,49,44,52,49,46,52,50,51,49,55,56,93,44,91,45,57,49,46,51,54,57,51,51,50,44,52,49,46,51,51,54,48,54,51,93,44,91,45,57,49,46,48,55,50,48,52,53,44,52,49,46,51,51,51,53,57,57,93,44,91,45,57,49,46,48,52,56,50,53,57,44,52,49,46,52,48,57,55,52,56,93,44,91,45,57,48,46,55,56,54,50,56,50,44,52,49,46,52,53,50,56,56,56,93,44,91,45,57,48,46,55,56,51,56,49,50,44,52,49,46,53,57,54,53,51,49,93,44,91,45,57,48,46,56,57,57,56,53,51,44,52,49,46,53,57,55,49,51,51,93,44,91,45,57,49,46,51,54,54,52,52,56,44,52,49,46,53,57,56,51,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,82,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,52,52,50,44,34,98,101,100,115,34,58,51,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,54,51,54,53,51,44,51,48,46,57,57,57,48,50,57,93,44,91,45,56,55,46,50,56,50,50,57,44,51,48,46,57,50,52,56,50,57,93,44,91,45,56,55,46,51,49,50,52,48,57,44,51,48,46,55,51,52,55,55,93,44,91,45,56,55,46,50,54,48,54,55,55,44,51,48,46,54,50,49,51,54,51,93,44,91,45,56,55,46,49,50,52,57,54,56,44,51,48,46,53,48,48,49,57,54,93,44,91,45,56,55,46,49,55,56,57,54,56,44,51,48,46,51,51,52,53,57,57,93,44,91,45,56,54,46,57,50,48,49,49,51,44,51,48,46,51,56,54,53,54,55,93,44,91,45,56,54,46,57,49,54,54,48,55,44,51,48,46,51,49,56,55,50,52,93,44,91,45,56,54,46,56,48,48,53,53,52,44,51,48,46,51,51,52,52,57,50,93,44,91,45,56,54,46,55,56,53,54,57,50,44,51,48,46,57,57,54,57,56,93,44,91,45,56,55,46,49,54,51,54,53,51,44,51,48,46,57,57,57,48,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,48,52,50,53,50,44,51,56,46,57,48,52,50,48,52,93,44,91,45,56,54,46,57,50,52,49,56,54,44,51,56,46,53,48,53,51,53,56,93,44,91,45,56,54,46,54,56,50,51,53,57,44,51,56,46,53,50,54,51,55,56,93,44,91,45,56,54,46,54,56,51,49,48,50,44,51,56,46,54,56,54,53,54,49,93,44,91,45,56,54,46,54,56,50,56,53,51,44,51,56,46,57,48,52,54,57,55,93,44,91,45,56,54,46,57,48,52,50,53,50,44,51,56,46,57,48,52,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,51,34,44,34,78,65,77,69,34,58,34,82,111,99,107,99,97,115,116,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,50,55,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,55,56,48,53,44,51,55,46,53,51,57,48,54,52,93,44,91,45,56,52,46,52,52,54,55,49,57,44,51,55,46,52,56,53,56,57,51,93,44,91,45,56,52,46,53,48,50,57,51,50,44,51,55,46,51,50,56,56,48,49,93,44,91,45,56,52,46,50,56,57,48,55,54,44,51,55,46,49,53,49,55,52,93,44,91,45,56,52,46,50,49,54,50,52,49,44,51,55,46,50,56,48,50,53,54,93,44,91,45,56,52,46,49,51,55,56,57,56,44,51,55,46,51,49,57,55,53,57,93,44,91,45,56,52,46,49,57,57,52,56,57,44,51,55,46,53,50,50,56,53,56,93,44,91,45,56,52,46,51,52,55,56,48,53,44,51,55,46,53,51,57,48,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,51,34,44,34,78,65,77,69,34,58,34,84,114,105,109,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,51,51,48,57,57,44,51,56,46,55,51,54,50,50,56,93,44,91,45,56,53,46,52,53,50,48,56,55,44,51,56,46,55,48,57,55,56,53,93,44,91,45,56,53,46,52,50,56,50,56,51,44,51,56,46,53,56,54,51,50,53,93,44,91,45,56,53,46,52,51,51,49,56,57,44,51,56,46,53,50,52,51,55,53,93,44,91,45,56,53,46,51,49,52,48,48,54,44,51,56,46,52,57,50,53,57,50,93,44,91,45,56,53,46,49,54,56,50,55,44,51,56,46,53,56,53,52,52,56,93,44,91,45,56,53,46,51,51,51,48,57,57,44,51,56,46,55,51,54,50,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,67,104,97,116,116,111,111,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,48,55,55,52,56,44,51,52,46,53,56,55,52,56,51,93,44,91,45,56,53,46,53,50,55,50,54,49,44,51,52,46,53,56,56,54,56,51,93,44,91,45,56,53,46,53,49,51,54,49,50,44,51,52,46,53,50,51,56,50,53,93,44,91,45,56,53,46,52,54,50,50,48,55,44,51,52,46,50,56,54,51,56,54,93,44,91,45,56,53,46,49,56,48,53,52,56,44,51,52,46,52,51,53,57,57,54,93,44,91,45,56,53,46,49,48,55,55,52,56,44,51,52,46,53,56,55,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,68,105,108,108,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,55,49,44,34,98,101,100,115,34,58,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,53,48,48,50,52,44,51,52,46,54,50,49,48,53,51,93,44,91,45,55,57,46,54,51,51,52,49,51,44,51,52,46,50,57,55,57,57,52,93,44,91,45,55,57,46,53,52,55,57,51,44,51,52,46,50,51,48,57,49,51,93,44,91,45,55,57,46,52,56,48,55,49,50,44,51,52,46,50,56,56,48,56,49,93,44,91,45,55,57,46,49,50,56,49,54,53,44,51,52,46,50,53,51,54,53,50,93,44,91,45,55,57,46,48,55,49,50,49,49,44,51,52,46,50,57,57,51,52,50,93,44,91,45,55,57,46,52,53,48,48,50,52,44,51,52,46,54,50,49,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,55,52,56,48,53,44,51,52,46,57,55,51,57,93,44,91,45,55,55,46,53,48,50,55,55,49,44,51,52,46,57,54,57,54,51,53,93,44,91,45,55,55,46,51,54,54,55,54,56,44,51,52,46,57,48,56,54,53,93,44,91,45,55,55,46,50,54,55,52,51,51,44,51,52,46,57,50,53,53,51,55,93,44,91,45,55,55,46,49,54,53,57,56,54,44,51,52,46,55,56,53,48,51,50,93,44,91,45,55,55,46,48,55,56,50,54,51,44,51,52,46,56,49,49,51,50,50,93,44,91,45,55,55,46,49,48,56,56,53,49,44,51,52,46,56,51,48,55,56,93,44,91,45,55,55,46,49,48,57,49,56,57,44,51,53,46,48,54,55,50,48,54,93,44,91,45,55,55,46,49,56,55,54,55,57,44,51,53,46,48,56,49,48,56,54,93,44,91,45,55,55,46,52,55,51,54,57,50,44,51,53,46,50,50,56,57,56,53,93,44,91,45,55,55,46,54,48,49,50,56,50,44,51,53,46,48,55,49,51,54,56,93,44,91,45,55,55,46,55,51,49,48,50,54,44,51,53,46,48,48,56,49,51,56,93,44,91,45,55,55,46,54,55,52,56,48,53,44,51,52,46,57,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,83,99,111,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,55,57,55,56,44,52,48,46,54,48,48,53,50,57,93,44,91,45,57,50,46,51,53,48,56,48,55,44,52,48,46,53,57,55,50,55,53,93,44,91,45,57,50,46,51,52,57,57,55,53,44,52,48,46,51,52,54,53,48,53,93,44,91,45,57,50,46,51,52,55,56,48,49,44,52,48,46,51,48,50,55,53,54,93,44,91,45,57,49,46,57,52,57,55,52,55,44,52,48,46,51,48,48,56,51,50,93,44,91,45,57,49,46,57,52,51,49,49,50,44,52,48,46,54,48,53,56,50,55,93,44,91,45,57,50,46,49,55,57,55,56,44,52,48,46,54,48,48,53,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,78,101,109,97,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,48,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,51,57,50,44,52,48,46,48,48,48,56,56,49,93,44,91,45,57,54,46,50,51,56,57,54,57,44,51,57,46,53,54,54,50,50,93,44,91,45,57,54,46,48,51,53,57,53,50,44,51,57,46,53,54,54,49,93,44,91,45,57,53,46,55,56,57,49,48,49,44,51,57,46,53,54,53,57,49,54,93,44,91,45,57,53,46,55,56,56,57,52,49,44,51,57,46,54,53,51,48,48,49,93,44,91,45,57,53,46,55,56,56,49,49,49,44,52,48,46,48,48,48,52,54,50,93,44,91,45,57,54,46,48,49,48,54,56,44,52,48,46,48,48,48,54,53,49,93,44,91,45,57,54,46,50,51,57,50,44,52,48,46,48,48,48,56,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,78,111,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,56,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,55,55,55,57,52,44,52,48,46,48,48,49,54,48,50,93,44,91,45,49,48,48,46,49,56,48,51,53,49,44,51,57,46,53,54,54,56,57,93,44,91,45,49,48,48,46,49,54,49,54,54,55,44,51,57,46,53,54,55,50,55,55,93,44,91,45,57,57,46,54,50,55,57,53,51,44,51,57,46,53,54,55,52,51,55,93,44,91,45,57,57,46,54,50,53,51,50,52,44,52,48,46,48,48,49,56,53,57,93,44,91,45,57,57,46,54,50,56,50,53,52,44,52,48,46,48,48,49,56,52,55,93,44,91,45,49,48,48,46,49,55,55,55,57,52,44,52,48,46,48,48,49,54,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,103,117,97,115,32,66,117,101,110,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,56,48,52,55,53,44,49,56,46,50,57,55,50,57,53,93,44,91,45,54,54,46,49,52,51,56,54,49,44,49,56,46,50,55,57,53,57,93,44,91,45,54,54,46,49,57,48,54,55,54,44,49,56,46,50,53,56,56,52,93,44,91,45,54,54,46,49,54,57,49,50,54,44,49,56,46,50,50,52,50,57,93,44,91,45,54,54,46,49,49,55,55,55,52,44,49,56,46,50,48,57,57,52,57,93,44,91,45,54,54,46,48,54,54,49,48,51,44,49,56,46,51,48,51,51,50,49,93,44,91,45,54,54,46,48,56,48,52,55,53,44,49,56,46,50,57,55,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,97,116,97,195,177,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,48,56,50,56,49,44,49,56,46,52,51,56,57,48,50,93,44,91,45,54,54,46,49,50,57,52,48,51,44,49,56,46,52,54,53,54,51,50,93,44,91,45,54,54,46,49,54,57,53,49,54,44,49,56,46,52,51,48,57,57,56,93,44,91,45,54,54,46,49,51,49,53,56,44,49,56,46,52,50,52,54,53,54,93,44,91,45,54,54,46,49,48,56,50,56,49,44,49,56,46,52,51,56,57,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,70,117,114,110,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,56,54,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,57,55,56,48,55,44,52,48,46,51,53,48,48,50,55,93,44,91,45,49,48,48,46,49,57,51,53,57,57,44,52,48,46,48,48,49,54,54,51,93,44,91,45,49,48,48,46,49,55,55,55,57,52,44,52,48,46,48,48,49,54,48,50,93,44,91,45,57,57,46,54,50,56,50,53,52,44,52,48,46,48,48,49,56,52,55,93,44,91,45,57,57,46,54,51,48,52,53,57,44,52,48,46,51,53,49,49,50,93,44,91,45,57,57,46,54,52,50,50,48,57,44,52,48,46,51,53,49,50,93,44,91,45,49,48,48,46,48,57,52,55,57,56,44,52,48,46,51,53,49,50,52,53,93,44,91,45,49,48,48,46,49,57,55,56,48,55,44,52,48,46,51,53,48,48,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,68,101,99,97,116,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,56,51,51,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,51,48,56,53,53,44,51,49,46,48,54,57,49,57,93,44,91,45,56,52,46,55,53,53,57,49,55,44,51,48,46,56,56,53,50,55,93,44,91,45,56,52,46,56,54,51,52,54,53,44,51,48,46,55,49,49,52,57,52,93,44,91,45,56,52,46,51,56,48,55,48,53,44,51,48,46,54,56,57,57,57,51,93,44,91,45,56,52,46,51,55,54,54,49,50,44,51,49,46,48,55,56,56,56,51,93,44,91,45,56,52,46,53,48,56,48,55,56,44,51,49,46,48,55,56,52,93,44,91,45,56,52,46,53,52,50,54,53,51,44,51,49,46,48,55,57,48,50,57,93,44,91,45,56,52,46,55,51,48,56,53,53,44,51,49,46,48,54,57,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,54,49,51,44,34,98,101,100,115,34,58,51,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,48,49,52,55,51,44,52,48,46,48,48,52,53,50,49,93,44,91,45,56,53,46,50,50,49,49,49,56,44,51,57,46,55,56,56,52,52,57,93,44,91,45,56,53,46,49,56,53,48,56,57,44,51,57,46,55,49,53,53,49,53,93,44,91,45,56,53,46,48,51,52,53,55,53,44,51,57,46,55,49,52,55,54,52,93,44,91,45,56,52,46,56,49,52,51,55,51,44,51,57,46,55,50,54,54,50,93,44,91,45,56,52,46,56,49,50,52,49,44,51,57,46,57,49,54,57,49,53,93,44,91,45,56,52,46,56,49,48,56,50,53,44,52,48,46,48,48,53,48,55,55,93,44,91,45,56,53,46,50,48,49,52,55,51,44,52,48,46,48,48,52,53,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,54,56,48,44,34,98,101,100,115,34,58,49,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,49,51,53,49,50,44,51,55,46,48,54,49,48,55,50,93,44,91,45,56,54,46,49,54,54,55,52,44,51,54,46,57,51,52,48,49,53,93,44,91,45,56,54,46,48,55,48,50,57,51,44,51,54,46,56,55,56,49,56,56,93,44,91,45,56,54,46,48,54,57,57,53,55,44,51,54,46,56,48,53,55,56,51,93,44,91,45,56,53,46,57,55,54,57,49,44,51,54,46,55,50,50,55,50,50,93,44,91,45,56,53,46,55,51,57,50,53,53,44,51,54,46,56,52,49,52,55,54,93,44,91,45,56,53,46,55,52,52,50,50,49,44,51,55,46,49,54,57,56,49,51,93,44,91,45,56,53,46,57,48,54,51,51,54,44,51,55,46,49,52,56,51,55,55,93,44,91,45,56,54,46,48,53,54,52,52,51,44,51,55,46,49,54,55,50,48,56,93,44,91,45,56,54,46,49,49,51,53,49,50,44,51,55,46,48,54,49,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,48,53,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,52,52,51,51,44,52,49,46,51,57,52,49,55,56,93,44,91,45,57,56,46,55,52,56,53,50,54,44,52,49,46,48,52,54,54,52,93,44,91,45,57,56,46,55,50,49,57,55,53,44,52,49,46,48,52,54,54,55,52,93,44,91,45,57,56,46,50,56,55,49,54,56,44,52,49,46,48,52,54,51,54,51,93,44,91,45,57,56,46,50,56,54,53,56,52,44,52,49,46,51,57,51,56,57,56,93,44,91,45,57,56,46,50,57,49,52,49,57,44,52,49,46,51,57,51,56,57,52,93,44,91,45,57,56,46,55,52,52,51,51,44,52,49,46,51,57,52,49,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,68,117,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,52,50,50,54,54,44,52,55,46,56,50,51,55,49,51,93,44,91,45,49,48,50,46,54,52,50,54,54,57,44,52,55,46,54,55,52,48,49,50,93,44,91,45,49,48,51,46,48,57,57,54,55,44,52,55,46,54,55,52,53,49,56,93,44,91,45,49,48,51,46,48,57,57,49,57,55,44,52,55,46,51,50,56,55,49,52,93,44,91,45,49,48,51,46,48,51,50,51,54,54,44,52,55,46,51,50,56,54,56,54,93,44,91,45,49,48,51,46,48,51,50,54,56,49,44,52,54,46,57,56,48,53,56,93,44,91,45,49,48,50,46,53,50,53,51,54,52,44,52,54,46,57,56,49,50,56,56,93,44,91,45,49,48,50,46,49,52,52,55,55,49,44,52,55,46,48,49,48,51,48,55,93,44,91,45,49,48,50,46,49,52,52,52,53,51,44,52,55,46,51,50,56,48,55,57,93,44,91,45,49,48,50,46,50,48,53,53,53,54,44,52,55,46,51,50,56,48,55,49,93,44,91,45,49,48,50,46,50,48,53,51,53,44,52,55,46,53,55,52,53,48,54,93,44,91,45,49,48,50,46,50,54,53,52,53,50,44,52,55,46,54,50,52,51,48,55,93,44,91,45,49,48,50,46,50,54,48,57,53,49,44,52,55,46,55,56,49,52,48,57,93,44,91,45,49,48,50,46,51,56,53,55,53,56,44,52,55,46,55,53,56,48,48,56,93,44,91,45,49,48,50,46,54,52,50,50,54,54,44,52,55,46,56,50,51,55,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,109,97,100,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,50,57,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,48,50,55,53,48,55,44,51,56,46,53,48,56,50,57,50,93,44,91,45,49,50,49,46,48,50,55,48,56,52,44,51,56,46,51,48,48,50,53,50,93,44,91,45,49,50,48,46,57,57,53,52,57,55,44,51,56,46,50,50,53,52,48,50,93,44,91,45,49,50,48,46,54,52,54,54,49,51,44,51,56,46,51,51,52,53,56,54,93,44,91,45,49,50,48,46,53,48,52,54,52,44,51,56,46,52,51,57,51,55,56,93,44,91,45,49,50,48,46,48,55,50,52,56,52,44,51,56,46,53,48,57,56,54,57,93,44,91,45,49,50,48,46,48,55,50,51,57,50,44,51,56,46,55,48,50,55,54,55,93,44,91,45,49,50,48,46,50,55,52,53,50,50,44,51,56,46,53,53,57,52,53,50,93,44,91,45,49,50,48,46,54,50,56,52,50,56,44,51,56,46,53,48,51,50,48,52,93,44,91,45,49,50,48,46,56,50,51,50,56,51,44,51,56,46,53,53,57,54,56,55,93,44,91,45,49,50,49,46,48,50,55,53,48,55,44,51,56,46,53,48,56,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,70,101,110,116,114,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,50,48,52,52,53,44,51,54,46,52,48,55,49,54,52,93,44,91,45,56,53,46,48,56,50,52,57,55,44,51,54,46,49,57,54,49,55,49,93,44,91,45,56,53,46,49,49,57,53,56,51,44,51,54,46,49,52,52,55,49,57,93,44,91,45,56,53,46,49,48,48,50,49,51,44,51,54,46,49,51,56,53,54,49,93,44,91,45,56,52,46,57,48,55,55,53,51,44,51,54,46,49,53,54,50,57,51,93,44,91,45,56,52,46,56,54,54,49,48,52,44,51,54,46,50,57,50,57,50,56,93,44,91,45,56,52,46,55,48,48,55,56,53,44,51,54,46,51,55,48,56,50,52,93,44,91,45,56,52,46,55,51,49,56,51,57,44,51,54,46,53,50,52,54,55,52,93,44,91,45,56,52,46,57,52,51,49,52,52,44,51,54,46,53,56,49,50,55,93,44,91,45,56,53,46,48,52,51,57,50,52,44,51,54,46,53,53,56,55,57,49,93,44,91,45,56,53,46,49,50,48,52,52,53,44,51,54,46,52,48,55,49,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,102,102,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,57,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,53,48,50,56,50,44,51,56,46,52,51,52,49,48,53,93,44,91,45,57,53,46,57,53,56,56,54,50,44,51,56,46,49,55,48,57,51,57,93,44,91,45,57,53,46,57,53,57,48,52,54,44,51,56,46,48,52,48,49,57,53,93,44,91,45,57,53,46,53,49,56,57,55,44,51,56,46,48,51,56,50,51,93,44,91,45,57,53,46,53,48,56,51,50,56,44,51,56,46,51,57,48,50,55,56,93,44,91,45,57,53,46,53,48,56,50,54,55,44,51,56,46,52,51,51,57,51,51,93,44,91,45,57,53,46,57,53,48,50,56,50,44,51,56,46,52,51,52,49,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,114,97,110,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,53,56,52,44,34,98,101,100,115,34,58,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,57,51,54,50,54,44,52,50,46,48,55,49,53,53,51,93,44,91,45,56,53,46,50,57,50,49,55,57,44,52,49,46,55,53,57,56,56,57,93,44,91,45,56,53,46,49,57,54,55,55,52,44,52,49,46,55,53,57,54,52,52,93,44,91,45,56,52,46,56,50,53,49,51,44,52,49,46,55,53,57,57,57,57,93,44,91,45,56,52,46,56,50,54,52,57,49,44,52,50,46,48,55,50,52,54,56,93,44,91,45,56,53,46,50,57,51,54,50,54,44,52,50,46,48,55,49,53,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,97,109,112,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,49,55,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,53,55,57,53,53,44,51,55,46,51,53,53,56,49,54,93,44,91,45,55,57,46,52,52,50,56,53,57,44,51,55,46,48,53,53,56,54,55,93,44,91,45,55,57,46,51,51,50,49,54,49,44,51,55,46,49,50,53,53,54,56,93,44,91,45,55,57,46,48,57,50,50,54,52,44,51,55,46,48,54,49,52,57,56,93,44,91,45,55,56,46,57,48,52,53,56,55,44,51,55,46,48,50,50,50,56,56,93,44,91,45,55,56,46,56,50,52,50,48,57,44,51,55,46,50,48,53,51,54,49,93,44,91,45,55,56,46,57,50,54,52,54,44,51,55,46,50,55,55,48,55,49,93,44,91,45,55,57,46,48,50,49,54,56,55,44,51,55,46,52,50,57,50,52,51,93,44,91,45,55,57,46,48,56,53,49,50,51,44,51,55,46,51,57,52,56,55,53,93,44,91,45,55,57,46,50,53,55,57,53,53,44,51,55,46,51,53,53,56,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,77,101,105,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,54,56,53,56,51,44,51,57,46,50,48,51,55,54,93,44,91,45,56,50,46,51,50,50,56,55,52,44,51,57,46,48,50,55,54,55,52,93,44,91,45,56,50,46,48,57,53,52,54,53,44,51,57,46,48,48,50,55,55,56,93,44,91,45,56,50,46,48,57,56,57,54,53,44,51,56,46,57,53,56,51,55,56,93,44,91,45,56,50,46,48,48,53,57,57,44,51,57,46,48,50,57,51,56,55,93,44,91,45,56,49,46,57,48,48,53,57,53,44,51,56,46,57,51,55,54,55,49,93,44,91,45,56,49,46,57,48,56,54,52,53,44,51,56,46,56,55,56,52,54,93,44,91,45,56,49,46,55,56,49,56,50,44,51,56,46,57,54,52,57,51,53,93,44,91,45,56,49,46,55,52,55,50,53,52,44,51,57,46,48,57,53,51,55,57,93,44,91,45,56,49,46,55,53,54,48,56,44,51,57,46,49,56,48,53,54,93,44,91,45,56,50,46,50,54,56,53,56,51,44,51,57,46,50,48,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,78,105,99,104,111,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,50,52,44,34,98,101,100,115,34,58,49,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,56,49,50,51,50,44,51,56,46,53,48,55,48,52,53,93,44,91,45,56,48,46,57,49,49,51,54,49,44,51,56,46,52,49,52,55,56,53,93,44,91,45,56,49,46,50,51,49,52,51,52,44,51,56,46,50,54,51,55,49,54,93,44,91,45,56,49,46,50,51,49,54,51,54,44,51,56,46,50,54,51,53,49,52,93,44,91,45,56,49,46,48,55,53,48,51,57,44,51,56,46,49,57,54,49,51,54,93,44,91,45,56,48,46,57,56,51,52,55,50,44,51,56,46,50,50,50,53,52,93,44,91,45,56,48,46,56,56,50,49,56,55,44,51,56,46,49,48,51,52,53,55,93,44,91,45,56,48,46,55,49,49,57,54,49,44,51,56,46,48,55,57,49,50,57,93,44,91,45,56,48,46,52,51,54,53,49,52,44,51,56,46,50,54,55,51,51,52,93,44,91,45,56,48,46,54,48,57,51,55,56,44,51,56,46,51,53,56,54,48,54,93,44,91,45,56,48,46,54,53,48,55,56,54,44,51,56,46,53,50,54,53,57,93,44,91,45,56,48,46,55,56,53,49,55,55,44,51,56,46,53,53,55,54,52,57,93,44,91,45,56,48,46,56,56,49,50,51,50,44,51,56,46,53,48,55,48,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,49,49,49,57,56,53,44,51,54,46,57,57,56,48,57,51,93,44,91,45,57,56,46,49,48,52,50,56,54,44,51,54,46,53,57,51,53,55,56,93,44,91,45,57,55,46,52,54,50,52,53,57,44,51,54,46,53,57,51,54,50,55,93,44,91,45,57,55,46,52,54,50,51,52,54,44,51,54,46,57,57,56,55,48,49,93,44,91,45,57,55,46,56,48,50,51,49,51,44,51,54,46,57,57,56,55,49,56,93,44,91,45,57,56,46,49,49,49,57,56,53,44,51,54,46,57,57,56,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,112,105,110,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,49,55,55,53,57,44,52,53,46,50,52,51,55,51,50,93,44,91,45,57,56,46,55,49,54,52,57,56,44,52,52,46,56,57,54,57,50,53,93,44,91,45,57,56,46,55,48,53,55,54,50,44,52,52,46,54,51,52,49,53,57,93,44,91,45,57,55,46,57,55,55,55,57,49,44,52,52,46,54,51,49,54,48,50,93,44,91,45,57,55,46,57,56,49,55,57,50,44,52,53,46,49,53,51,50,57,53,93,44,91,45,57,55,46,57,56,49,52,53,55,44,52,53,46,50,52,48,52,49,53,93,44,91,45,57,56,46,55,49,55,55,53,57,44,52,53,46,50,52,51,55,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,87,105,110,100,115,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,50,55,44,34,98,101,100,115,34,58,49,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,57,53,56,56,53,51,44,52,51,46,56,50,54,53,52,50,93,44,91,45,55,50,46,55,56,50,56,49,50,44,52,51,46,56,48,52,51,51,56,93,44,91,45,55,50,46,56,50,48,48,52,51,44,52,51,46,55,49,54,56,51,52,93,44,91,45,55,50,46,55,48,48,57,52,53,44,52,51,46,54,56,50,56,51,49,93,44,91,45,55,50,46,55,56,56,57,56,55,44,52,51,46,53,48,48,48,55,93,44,91,45,55,50,46,55,53,57,55,57,57,44,52,51,46,51,53,52,49,52,52,93,44,91,45,55,50,46,56,54,55,57,48,50,44,52,51,46,51,48,48,55,52,50,93,44,91,45,55,50,46,56,49,57,51,54,56,44,52,51,46,50,53,53,52,57,56,93,44,91,45,55,50,46,54,56,53,54,51,55,44,52,51,46,50,50,50,52,57,53,93,44,91,45,55,50,46,52,51,52,54,52,53,44,52,51,46,50,51,51,51,49,49,93,44,91,45,55,50,46,51,55,51,56,44,52,51,46,53,55,57,49,49,57,93,44,91,45,55,50,46,51,50,57,56,57,57,44,52,51,46,54,48,48,50,49,52,93,44,91,45,55,50,46,51,48,53,49,51,51,44,52,51,46,54,57,53,51,50,49,93,44,91,45,55,50,46,50,48,53,50,49,57,44,52,51,46,55,55,48,57,54,52,93,44,91,45,55,50,46,55,56,51,50,48,56,44,52,51,46,57,50,56,57,54,55,93,44,91,45,55,50,46,55,57,49,51,51,54,44,52,51,46,57,54,49,56,53,53,93,44,91,45,55,50,46,57,53,51,48,56,51,44,52,51,46,56,55,52,56,55,93,44,91,45,55,50,46,57,53,56,56,53,51,44,52,51,46,56,50,54,53,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,53,53,34,44,34,78,65,77,69,34,58,34,84,114,105,110,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,50,55,52,56,44,51,48,46,56,53,57,53,52,55,93,44,91,45,57,53,46,50,48,48,49,56,44,51,48,46,56,50,52,53,54,54,93,44,91,45,57,52,46,57,51,57,49,50,55,44,51,49,46,48,52,50,48,52,56,93,44,91,45,57,52,46,56,52,50,57,52,55,44,51,49,46,49,52,54,53,55,56,93,44,91,45,57,52,46,56,57,57,48,49,55,44,51,49,46,51,50,54,57,55,50,93,44,91,45,57,52,46,57,53,56,49,49,44,51,49,46,51,56,54,57,51,93,44,91,45,57,53,46,52,51,52,55,56,49,44,51,49,46,48,53,56,48,57,56,93,44,91,45,57,53,46,52,51,52,51,51,53,44,51,48,46,57,51,55,52,48,53,93,44,91,45,57,53,46,51,50,55,52,56,44,51,48,46,56,53,57,53,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,101,114,110,97,108,105,108,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,55,54,57,50,44,34,98,101,100,115,34,58,50,48,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,48,54,54,53,54,50,44,51,52,46,57,53,55,49,57,93,44,91,45,49,48,55,46,48,50,52,52,56,49,44,51,52,46,56,54,57,57,53,51,93,44,91,45,49,48,54,46,55,50,48,54,54,54,44,51,52,46,56,55,48,48,53,51,93,44,91,45,49,48,54,46,54,56,53,56,48,49,44,51,52,46,57,48,54,51,53,56,93,44,91,45,49,48,54,46,52,50,57,52,56,54,44,51,52,46,57,48,51,52,93,44,91,45,49,48,54,46,52,49,49,55,56,49,44,51,52,46,56,55,48,50,53,50,93,44,91,45,49,48,54,46,49,52,57,55,51,55,44,51,52,46,56,55,48,49,52,50,93,44,91,45,49,48,54,46,50,52,51,55,54,50,44,51,52,46,57,53,51,51,53,53,93,44,91,45,49,48,54,46,50,52,51,56,55,52,44,51,53,46,48,52,48,48,48,51,93,44,91,45,49,48,54,46,50,52,52,50,49,54,44,51,53,46,50,49,53,54,53,55,93,44,91,45,49,48,55,46,49,57,55,50,52,52,44,51,53,46,50,49,57,52,53,57,93,44,91,45,49,48,55,46,48,54,54,53,54,50,44,51,52,46,57,53,55,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,53,34,44,34,78,65,77,69,34,58,34,77,105,116,99,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,52,49,49,50,52,44,51,49,46,52,52,48,49,55,57,93,44,91,45,56,52,46,49,57,55,57,56,54,44,51,49,46,51,53,55,53,50,49,93,44,91,45,56,52,46,51,52,48,53,53,50,44,51,49,46,51,48,53,51,52,49,93,44,91,45,56,52,46,53,48,56,48,55,56,44,51,49,46,48,55,56,52,93,44,91,45,56,52,46,51,55,54,54,49,50,44,51,49,46,48,55,56,56,56,51,93,44,91,45,56,52,46,49,49,54,54,52,52,44,51,49,46,48,55,55,57,55,49,93,44,91,45,56,52,46,48,48,51,54,50,55,44,51,49,46,48,55,55,50,57,93,44,91,45,56,51,46,57,57,57,52,51,44,51,49,46,51,51,52,57,54,54,93,44,91,45,56,51,46,57,57,55,55,57,54,44,51,49,46,52,52,51,55,53,51,93,44,91,45,56,52,46,49,52,49,49,50,52,44,51,49,46,52,52,48,49,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,72,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,54,53,56,44,34,98,101,100,115,34,58,53,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,53,46,52,51,50,56,54,50,44,50,48,46,49,52,53,50,48,55,93,44,91,45,49,53,53,46,53,55,56,55,54,56,44,50,48,46,49,56,48,49,52,55,93,44,91,45,49,53,53,46,55,53,49,52,54,52,44,50,48,46,50,57,52,52,55,93,44,91,45,49,53,53,46,56,51,54,55,56,51,44,50,48,46,51,50,49,50,50,54,93,44,91,45,49,53,53,46,57,52,55,57,54,50,44,50,48,46,50,54,49,54,53,50,93,44,91,45,49,53,53,46,57,53,55,55,49,57,44,50,48,46,49,54,55,54,49,52,93,44,91,45,49,53,53,46,56,56,52,51,49,49,44,50,48,46,48,49,56,51,50,55,93,44,91,45,49,53,53,46,57,54,50,52,50,55,44,49,57,46,57,48,57,49,53,50,93,44,91,45,49,53,54,46,49,48,55,50,52,44,49,57,46,55,57,48,52,48,50,93,44,91,45,49,53,54,46,49,49,57,48,55,53,44,49,57,46,55,49,57,51,48,49,93,44,91,45,49,53,54,46,48,51,53,56,57,53,44,49,57,46,53,57,55,57,54,49,93,44,91,45,49,53,53,46,57,52,51,50,49,51,44,49,57,46,51,52,52,50,50,55,93,44,91,45,49,53,53,46,57,55,52,48,52,49,44,49,57,46,49,48,55,55,56,57,93,44,91,45,49,53,53,46,57,50,53,57,51,49,44,49,57,46,48,48,56,49,53,52,93,44,91,45,49,53,53,46,55,51,57,57,55,49,44,49,56,46,57,49,54,56,57,49,93,44,91,45,49,53,53,46,54,57,52,50,53,55,44,49,56,46,56,54,54,55,56,54,93,44,91,45,49,53,53,46,53,54,53,54,44,49,56,46,57,51,52,53,49,55,93,44,91,45,49,53,53,46,52,57,52,56,55,56,44,49,57,46,48,55,49,53,56,54,93,44,91,45,49,53,53,46,50,53,56,48,49,53,44,49,57,46,50,50,50,49,55,49,93,44,91,45,49,53,53,46,49,56,50,48,57,56,44,49,57,46,50,48,57,57,53,52,93,44,91,45,49,53,52,46,57,51,57,54,54,51,44,49,57,46,51,49,50,56,51,52,93,44,91,45,49,53,52,46,55,55,53,55,53,49,44,49,57,46,52,53,55,49,49,51,93,44,91,45,49,53,52,46,55,53,57,51,51,51,44,49,57,46,53,51,54,52,54,50,93,44,91,45,49,53,52,46,57,50,56,57,51,53,44,49,57,46,54,55,51,54,48,53,93,44,91,45,49,53,53,46,48,51,49,54,50,44,49,57,46,56,55,53,93,44,91,45,49,53,53,46,49,52,48,51,51,44,49,57,46,57,56,57,52,56,49,93,44,91,45,49,53,53,46,52,51,50,56,54,50,44,50,48,46,49,52,53,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,77,99,67,114,101,97,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,55,56,49,53,56,44,51,54,46,56,54,55,49,51,51,93,44,91,45,56,52,46,55,55,56,52,53,52,44,51,54,46,54,48,51,50,57,93,44,91,45,56,52,46,50,54,49,51,51,55,44,51,54,46,53,57,49,55,56,52,93,44,91,45,56,52,46,50,50,55,50,57,50,44,51,54,46,53,57,50,48,52,53,93,44,91,45,56,52,46,51,53,48,48,48,54,44,51,54,46,55,56,48,54,56,49,93,44,91,45,56,52,46,50,57,55,52,49,54,44,51,54,46,57,52,53,57,51,49,93,44,91,45,56,52,46,51,53,56,48,50,52,44,51,54,46,57,53,57,52,93,44,91,45,56,52,46,53,55,56,49,53,56,44,51,54,46,56,54,55,49,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,80,101,110,100,108,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,51,50,50,56,56,44,51,56,46,55,57,49,57,51,55,93,44,91,45,56,52,46,52,55,54,50,57,57,44,51,56,46,53,52,50,55,50,51,93,44,91,45,56,52,46,50,48,53,51,52,54,44,51,56,46,53,56,50,48,51,57,93,44,91,45,56,52,46,50,51,48,52,49,49,44,51,56,46,56,50,55,52,51,55,93,44,91,45,56,52,46,50,51,49,57,49,55,44,51,56,46,56,55,52,56,54,54,93,44,91,45,56,52,46,52,49,56,49,48,55,44,51,56,46,56,48,54,53,57,54,93,44,91,45,56,52,46,53,51,50,50,56,56,44,51,56,46,55,57,49,57,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,53,34,44,34,78,65,77,69,34,58,34,83,112,101,110,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,48,49,54,52,54,44,51,56,46,48,51,55,50,55,93,44,91,45,56,53,46,52,50,52,48,53,52,44,51,56,46,49,52,55,52,51,56,93,44,91,45,56,53,46,52,50,56,56,51,44,51,56,46,49,49,56,51,56,51,93,44,91,45,56,53,46,52,56,57,50,48,50,44,51,55,46,57,57,48,54,53,52,93,44,91,45,56,53,46,51,57,57,56,55,49,44,51,55,46,57,51,57,57,53,54,93,44,91,45,56,53,46,49,54,55,56,51,52,44,51,55,46,57,55,49,56,48,57,93,44,91,45,56,53,46,49,48,49,54,52,54,44,51,56,46,48,51,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,72,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,51,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,52,56,57,53,53,44,52,57,46,48,48,48,50,57,50,93,44,91,45,49,49,48,46,55,52,51,48,54,52,44,52,56,46,57,57,56,54,48,54,93,44,91,45,49,49,48,46,55,53,53,56,55,51,44,52,56,46,50,49,57,54,48,49,93,44,91,45,49,49,48,46,54,50,53,52,48,57,44,52,56,46,51,48,54,52,55,57,93,44,91,45,49,48,57,46,56,52,53,57,51,50,44,52,56,46,51,48,53,57,55,49,93,44,91,45,49,48,57,46,55,50,54,57,52,51,44,52,56,46,50,50,49,53,50,53,93,44,91,45,49,48,57,46,55,50,54,57,49,52,44,52,56,46,49,51,50,56,53,57,93,44,91,45,49,48,57,46,53,51,52,50,57,53,44,52,56,46,49,51,52,53,54,52,93,44,91,45,49,48,57,46,53,49,56,55,56,44,52,56,46,51,57,52,55,50,54,93,44,91,45,49,48,57,46,52,54,52,51,49,56,44,52,56,46,52,53,50,54,51,56,93,44,91,45,49,48,57,46,53,48,53,51,51,51,44,52,56,46,53,54,55,57,49,93,44,91,45,49,48,57,46,52,56,57,53,53,44,52,57,46,48,48,48,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,86,97,108,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,50,52,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,49,50,48,49,54,44,52,49,46,55,52,48,54,49,51,93,44,91,45,57,57,46,50,48,51,50,54,49,44,52,49,46,51,57,52,49,52,93,44,91,45,57,56,46,55,53,49,53,53,56,44,52,49,46,51,57,52,48,56,52,93,44,91,45,57,56,46,55,53,50,50,50,53,44,52,49,46,55,52,48,51,55,50,93,44,91,45,57,56,46,55,53,57,49,51,51,44,52,49,46,55,52,48,51,56,50,93,44,91,45,57,57,46,50,49,50,48,49,54,44,52,49,46,55,52,48,54,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,67,97,115,116,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,56,55,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,53,50,53,49,56,52,44,51,52,46,55,52,54,57,51,49,93,44,91,45,49,48,50,46,53,50,53,54,51,49,44,51,52,46,51,49,51,48,51,52,93,44,91,45,49,48,50,46,48,57,48,52,49,53,44,51,52,46,51,49,51,49,51,50,93,44,91,45,49,48,49,46,57,57,56,48,50,44,51,52,46,51,49,51,48,51,57,93,44,91,45,49,48,49,46,57,57,56,52,57,51,44,51,52,46,55,52,56,49,57,93,44,91,45,49,48,50,46,49,54,56,56,51,57,44,51,52,46,55,52,55,52,49,55,93,44,91,45,49,48,50,46,53,50,53,49,56,52,44,51,52,46,55,52,54,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,56,49,49,44,34,98,101,100,115,34,58,51,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,50,50,49,49,44,51,57,46,54,49,57,54,53,55,93,44,91,45,55,55,46,56,56,57,49,51,53,44,51,57,46,53,57,55,52,53,51,93,44,91,45,55,55,46,56,50,53,53,55,50,44,51,57,46,52,57,51,50,56,57,93,44,91,45,55,55,46,55,49,57,53,49,57,44,51,57,46,51,50,49,51,49,52,93,44,91,45,55,55,46,54,55,55,49,54,52,44,51,57,46,51,50,52,53,51,52,93,44,91,45,55,55,46,53,55,48,49,56,50,44,51,57,46,54,49,57,57,57,56,93,44,91,45,55,55,46,52,54,57,49,52,53,44,51,57,46,55,50,48,48,49,56,93,44,91,45,55,56,46,48,57,57,52,48,51,44,51,57,46,55,50,50,48,57,57,93,44,91,45,55,56,46,51,52,50,56,51,52,44,51,57,46,55,50,50,50,54,51,93,44,91,45,55,56,46,51,51,51,56,49,57,44,51,57,46,54,51,54,55,54,50,93,44,91,45,55,56,46,49,55,49,53,52,57,44,51,57,46,54,57,53,54,52,51,93,44,91,45,55,56,46,48,50,50,49,49,44,51,57,46,54,49,57,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,76,101,116,99,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,55,54,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,51,50,54,57,51,44,51,55,46,50,55,49,53,48,50,93,44,91,45,56,51,46,48,48,48,49,52,50,44,51,55,46,49,57,53,55,49,93,44,91,45,56,51,46,49,50,50,48,57,44,51,55,46,48,48,48,57,57,55,93,44,91,45,56,50,46,57,51,57,52,54,54,44,51,55,46,48,49,53,53,50,93,44,91,45,56,50,46,56,54,57,49,57,50,44,51,54,46,57,55,52,49,56,54,93,44,91,45,56,50,46,55,52,50,55,53,57,44,51,55,46,48,52,50,55,57,54,93,44,91,45,56,50,46,55,49,53,49,52,57,44,51,55,46,49,50,49,56,52,56,93,44,91,45,56,50,46,53,54,53,51,55,57,44,51,55,46,49,57,54,48,57,57,93,44,91,45,56,50,46,55,51,50,54,57,51,44,51,55,46,50,55,49,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,83,97,108,101,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,51,51,54,44,34,98,101,100,115,34,58,50,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,52,48,53,52,56,57,44,51,57,46,55,57,54,51,54,56,93,44,91,45,55,53,46,53,53,56,55,55,51,44,51,57,46,54,50,57,57,56,55,93,44,91,45,55,53,46,53,49,50,55,55,44,51,57,46,53,55,56,50,57,93,44,91,45,55,53,46,53,54,48,53,51,56,44,51,57,46,52,53,53,54,52,53,93,44,91,45,55,53,46,52,56,49,51,54,44,51,57,46,51,56,55,53,53,53,93,44,91,45,55,53,46,52,52,52,55,53,49,44,51,57,46,51,53,53,48,56,57,93,44,91,45,55,53,46,50,51,56,52,51,52,44,51,57,46,53,53,57,48,51,57,93,44,91,45,55,53,46,48,56,51,56,50,51,44,51,57,46,52,53,55,51,53,52,93,44,91,45,55,53,46,48,54,49,56,53,52,44,51,57,46,53,54,56,55,52,54,93,44,91,45,55,53,46,49,57,57,55,57,51,44,51,57,46,54,54,54,57,57,54,93,44,91,45,55,53,46,51,54,55,50,51,57,44,51,57,46,55,49,55,53,54,53,93,44,91,45,55,53,46,52,48,53,52,56,57,44,51,57,46,55,57,54,51,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,56,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,56,48,34,44,34,78,65,77,69,34,58,34,76,121,110,99,104,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,49,51,49,44,34,98,101,100,115,34,58,51,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,49,56,53,55,48,50,44,51,55,46,52,54,53,56,50,93,44,91,45,55,57,46,50,53,55,57,53,53,44,51,55,46,51,53,53,56,49,54,93,44,91,45,55,57,46,48,56,53,49,50,51,44,51,55,46,51,57,52,56,55,53,93,44,91,45,55,57,46,49,56,53,55,48,50,44,51,55,46,52,54,53,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,48,48,57,44,34,98,101,100,115,34,58,50,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,55,53,49,55,56,44,51,52,46,55,55,49,56,57,50,93,44,91,45,57,50,46,57,54,57,50,53,44,51,52,46,55,55,50,50,54,54,93,44,91,45,57,50,46,57,55,57,57,48,50,44,51,52,46,54,51,55,50,50,50,93,44,91,45,57,50,46,56,48,56,48,50,56,44,51,52,46,53,57,48,52,48,54,93,44,91,45,57,50,46,55,57,51,49,57,55,44,51,52,46,53,48,51,54,48,54,93,44,91,45,57,50,46,54,54,56,55,49,49,44,51,52,46,52,49,52,50,51,55,93,44,91,45,57,50,46,53,56,57,52,49,56,44,51,52,46,52,53,53,54,52,49,93,44,91,45,57,50,46,52,48,52,54,56,44,51,52,46,52,53,49,57,49,54,93,44,91,45,57,50,46,50,52,53,56,49,56,44,51,52,46,52,57,51,53,48,54,93,44,91,45,57,50,46,51,52,56,55,52,57,44,51,52,46,53,56,50,50,57,93,44,91,45,57,50,46,54,53,52,51,50,52,44,51,52,46,55,54,52,53,52,49,93,44,91,45,57,50,46,55,51,57,55,55,57,44,51,52,46,56,53,51,52,53,57,93,44,91,45,57,51,46,48,55,51,56,55,55,44,51,52,46,56,53,56,48,57,49,93,44,91,45,57,51,46,48,55,53,49,55,56,44,51,52,46,55,55,49,56,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,51,57,44,34,98,101,100,115,34,58,50,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,48,56,54,52,53,44,51,56,46,56,55,56,52,54,93,44,91,45,56,49,46,57,48,48,53,57,53,44,51,56,46,57,51,55,54,55,49,93,44,91,45,56,50,46,48,48,53,57,57,44,51,57,46,48,50,57,51,56,55,93,44,91,45,56,50,46,48,57,56,57,54,53,44,51,56,46,57,53,56,51,55,56,93,44,91,45,56,50,46,49,52,52,49,54,55,44,51,56,46,56,52,49,56,56,93,44,91,45,56,50,46,50,50,49,53,54,54,44,51,56,46,55,56,55,49,56,55,93,44,91,45,56,50,46,49,55,49,57,54,54,44,51,56,46,54,50,53,51,56,52,93,44,91,45,56,50,46,50,49,56,57,54,55,44,51,56,46,53,57,49,54,56,51,93,44,91,45,56,50,46,48,53,53,49,50,55,44,51,56,46,52,55,52,53,52,55,93,44,91,45,56,50,46,48,54,52,53,54,50,44,51,56,46,54,48,55,57,56,53,93,44,91,45,56,49,46,57,53,53,55,57,49,44,51,56,46,54,53,55,51,53,53,93,44,91,45,56,49,46,55,55,50,56,52,51,44,51,56,46,54,56,48,56,52,51,93,44,91,45,56,49,46,57,48,56,54,52,53,44,51,56,46,56,55,56,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,71,105,108,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,51,51,54,51,50,44,51,57,46,48,48,57,53,56,52,93,44,91,45,56,48,46,57,56,52,57,53,44,51,56,46,55,49,55,56,57,56,93,44,91,45,56,48,46,55,48,49,53,50,50,44,51,56,46,56,55,57,48,52,53,93,44,91,45,56,48,46,54,48,53,55,57,57,44,51,56,46,57,48,52,49,54,55,93,44,91,45,56,48,46,55,49,54,56,49,53,44,51,57,46,48,48,56,52,51,93,44,91,45,56,48,46,55,50,56,51,50,54,44,51,57,46,48,57,53,54,55,57,93,44,91,45,56,48,46,56,49,50,57,55,44,51,57,46,49,48,57,52,48,49,93,44,91,45,56,49,46,48,51,51,54,51,50,44,51,57,46,48,48,57,53,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,52,54,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,52,56,49,52,52,44,51,49,46,56,54,57,56,52,56,93,44,91,45,57,49,46,51,52,53,50,49,52,44,51,49,46,56,52,51,56,54,49,93,44,91,45,57,49,46,51,49,55,56,54,52,44,51,49,46,55,52,57,55,54,54,93,44,91,45,57,49,46,50,57,53,53,55,44,51,49,46,54,54,57,56,55,93,44,91,45,57,49,46,49,53,51,56,54,52,44,51,49,46,54,49,48,48,54,56,93,44,91,45,57,48,46,55,51,55,51,51,44,51,49,46,54,49,49,49,50,52,93,44,91,45,57,48,46,55,51,54,56,50,52,44,51,49,46,54,57,56,52,57,49,93,44,91,45,57,48,46,55,51,54,50,56,50,44,51,49,46,55,56,54,49,51,52,93,44,91,45,57,49,46,48,49,51,54,55,54,44,51,49,46,56,54,49,56,53,50,93,44,91,45,57,49,46,50,52,56,49,52,52,44,51,49,46,56,54,57,56,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,82,111,108,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,54,48,51,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,56,50,54,48,56,44,52,56,46,57,57,57,50,48,52,93,44,91,45,49,48,48,46,49,56,51,48,51,52,44,52,56,46,55,49,56,57,48,57,93,44,91,45,49,48,48,46,49,52,53,56,53,56,44,52,56,46,53,52,53,50,49,49,93,44,91,45,57,57,46,52,57,51,49,56,57,44,52,56,46,53,52,52,56,51,52,93,44,91,45,57,57,46,53,50,53,56,57,53,44,52,56,46,55,49,56,51,56,52,93,44,91,45,57,57,46,53,50,53,55,55,57,44,52,56,46,57,57,57,51,48,55,93,44,91,45,49,48,48,46,49,56,50,54,48,56,44,52,56,46,57,57,57,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,84,114,101,97,115,117,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,55,51,56,53,52,56,44,52,54,46,52,56,49,56,48,54,93,44,91,45,49,48,55,46,52,54,54,57,57,54,44,52,54,46,49,50,57,57,57,53,93,44,91,45,49,48,55,46,53,49,49,53,51,52,44,52,54,46,48,52,51,52,48,51,93,44,91,45,49,48,55,46,52,50,53,49,50,56,44,52,53,46,57,53,54,54,55,52,93,44,91,45,49,48,55,46,49,55,54,51,53,56,44,52,53,46,57,53,54,55,54,49,93,44,91,45,49,48,54,46,57,51,57,48,57,53,44,52,53,46,56,55,48,48,52,49,93,44,91,45,49,48,54,46,57,51,57,48,54,55,44,52,54,46,49,51,54,54,54,55,93,44,91,45,49,48,55,46,48,48,53,53,51,52,44,52,54,46,49,51,54,54,54,57,93,44,91,45,49,48,55,46,48,50,56,52,50,50,44,52,54,46,51,57,53,52,54,93,44,91,45,49,48,55,46,49,53,51,52,52,52,44,52,54,46,51,57,53,54,49,51,93,44,91,45,49,48,55,46,49,55,52,53,51,49,44,52,54,46,52,56,50,55,49,51,93,44,91,45,49,48,55,46,55,51,56,53,52,56,44,52,54,46,52,56,49,56,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,56,55,50,44,34,98,101,100,115,34,58,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,56,54,52,54,49,44,51,56,46,48,54,55,48,50,56,93,44,91,45,56,52,46,51,51,55,51,57,51,44,51,55,46,56,57,50,48,48,55,93,44,91,45,56,52,46,48,56,48,51,51,55,44,51,55,46,56,53,51,48,54,54,93,44,91,45,56,52,46,48,48,49,57,54,55,44,51,55,46,56,51,55,53,57,50,93,44,91,45,56,51,46,57,54,54,51,49,44,51,55,46,57,51,48,55,54,56,93,44,91,45,56,52,46,48,56,48,53,50,55,44,51,56,46,49,49,53,49,49,56,93,44,91,45,56,52,46,50,56,54,52,54,49,44,51,56,46,48,54,55,48,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,111,114,111,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,51,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,52,54,51,50,49,49,44,49,56,46,51,55,49,52,55,51,93,44,91,45,54,54,46,52,53,53,55,48,51,44,49,56,46,50,53,55,55,50,54,93,44,91,45,54,54,46,51,55,55,55,49,50,44,49,56,46,50,57,51,57,55,54,93,44,91,45,54,54,46,51,54,53,50,55,50,44,49,56,46,51,51,51,50,50,57,93,44,91,45,54,54,46,51,55,55,48,53,56,44,49,56,46,51,52,52,50,52,54,93,44,91,45,54,54,46,52,52,51,56,44,49,56,46,51,55,49,48,50,55,93,44,91,45,54,54,46,52,54,51,50,49,49,44,49,56,46,51,55,49,52,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,50,53,48,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,56,50,52,57,56,44,52,50,46,55,54,56,50,93,44,91,45,56,55,46,48,53,56,55,49,54,44,52,50,46,55,54,53,50,48,50,93,44,91,45,56,55,46,48,52,51,56,57,57,44,52,50,46,54,54,51,55,50,57,93,44,91,45,56,55,46,48,49,57,57,51,53,44,52,50,46,52,57,51,52,57,56,93,44,91,45,56,55,46,48,52,48,48,52,54,44,52,50,46,52,49,54,57,57,51,93,44,91,45,56,53,46,55,54,52,54,57,55,44,52,50,46,52,50,48,55,49,53,93,44,91,45,56,53,46,53,52,51,49,57,49,44,52,50,46,52,50,49,52,51,51,93,44,91,45,56,53,46,53,52,53,53,54,52,44,52,50,46,55,54,56,49,51,57,93,44,91,45,56,53,46,55,56,50,52,57,56,44,52,50,46,55,54,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,49,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,57,48,57,50,44,51,54,46,51,54,48,49,51,51,93,44,91,45,56,56,46,50,49,50,53,53,57,44,51,54,46,49,50,48,50,57,93,44,91,45,56,56,46,50,49,55,52,51,54,44,51,53,46,56,52,54,53,56,50,93,44,91,45,56,56,46,49,55,55,56,53,57,44,51,53,46,56,52,53,56,52,49,93,44,91,45,56,55,46,57,55,48,55,51,56,44,51,53,46,56,49,53,55,48,53,93,44,91,45,56,55,46,57,54,50,55,52,44,51,53,46,56,52,48,57,50,49,93,44,91,45,56,55,46,57,50,53,56,51,53,44,51,53,46,57,51,48,52,51,50,93,44,91,45,56,56,46,48,48,48,56,48,57,44,51,54,46,48,50,56,48,56,57,93,44,91,45,56,55,46,57,49,57,48,52,51,44,51,54,46,49,51,48,48,52,57,93,44,91,45,56,55,46,57,52,57,54,48,51,44,51,54,46,50,52,51,49,54,93,44,91,45,56,55,46,57,56,48,55,52,44,51,54,46,51,53,51,51,48,55,93,44,91,45,56,55,46,57,57,48,57,50,44,51,54,46,51,54,48,49,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,49,49,44,34,98,101,100,115,34,58,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,54,53,56,50,52,44,52,52,46,52,57,56,50,49,56,93,44,91,45,57,52,46,56,54,54,50,53,57,44,52,52,46,50,56,50,51,55,50,93,44,91,45,57,53,46,49,48,55,52,56,44,52,52,46,50,56,49,55,54,56,93,44,91,45,57,53,46,49,48,56,55,55,55,44,52,52,46,49,57,53,48,52,52,93,44,91,45,57,53,46,49,48,48,50,50,49,44,52,52,46,49,48,56,48,51,52,93,44,91,45,57,52,46,56,53,57,56,48,51,44,52,52,46,49,48,56,48,49,54,93,44,91,45,57,52,46,51,54,56,56,53,44,52,52,46,49,48,56,54,57,56,93,44,91,45,57,52,46,51,55,49,55,51,49,44,52,52,46,50,54,52,52,52,56,93,44,91,45,57,52,46,52,57,49,54,56,54,44,52,52,46,51,53,50,50,53,52,93,44,91,45,57,52,46,55,56,48,54,51,44,52,52,46,52,53,54,54,53,93,44,91,45,57,52,46,56,54,53,56,50,52,44,52,52,46,52,57,56,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,80,105,99,107,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,55,52,56,49,49,44,51,54,46,54,49,53,52,54,53,93,44,91,45,56,53,46,50,55,54,50,56,49,44,51,54,46,54,50,54,56,49,54,93,44,91,45,56,53,46,50,56,52,56,55,56,44,51,54,46,53,51,49,50,57,51,93,44,91,45,56,53,46,49,50,48,52,52,53,44,51,54,46,52,48,55,49,54,52,93,44,91,45,56,53,46,48,52,51,57,50,52,44,51,54,46,53,53,56,55,57,49,93,44,91,45,56,52,46,57,52,51,49,52,52,44,51,54,46,53,56,49,50,55,93,44,91,45,56,52,46,55,51,49,56,51,57,44,51,54,46,53,50,52,54,55,52,93,44,91,45,56,52,46,55,56,53,52,53,44,51,54,46,54,48,51,52,52,52,93,44,91,45,56,52,46,57,55,52,56,49,49,44,51,54,46,54,49,53,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,76,111,117,105,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,54,50,52,56,49,44,51,55,46,57,48,52,54,56,53,93,44,91,45,55,55,46,55,57,55,51,48,54,44,51,55,46,55,50,57,51,53,56,93,44,91,45,55,55,46,54,56,55,52,54,57,44,51,56,46,48,48,55,56,48,54,93,44,91,45,55,55,46,56,51,57,55,49,55,44,51,56,46,49,48,54,48,51,56,93,44,91,45,55,55,46,57,53,51,54,51,57,44,51,56,46,49,49,56,53,48,49,93,44,91,45,55,56,46,49,48,49,55,52,56,44,51,56,46,49,53,50,53,54,55,93,44,91,45,55,56,46,50,48,57,51,56,52,44,51,56,46,49,51,49,49,50,56,93,44,91,45,55,56,46,51,48,54,55,54,51,44,51,56,46,48,48,54,52,55,52,93,44,91,45,55,56,46,48,54,50,52,56,49,44,51,55,46,57,48,52,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,51,57,57,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,53,50,48,56,44,51,57,46,54,51,56,51,52,53,93,44,91,45,56,53,46,57,53,50,48,48,53,44,51,57,46,51,52,55,51,55,51,93,44,91,45,56,53,46,54,56,52,53,49,53,44,51,57,46,51,53,48,48,52,57,93,44,91,45,56,53,46,54,50,57,51,50,55,44,51,57,46,52,53,50,55,53,93,44,91,45,56,53,46,54,51,51,50,50,56,44,51,57,46,54,57,56,52,54,50,93,44,91,45,56,53,46,57,53,49,55,50,49,44,51,57,46,54,57,55,49,51,54,93,44,91,45,56,53,46,57,53,50,48,56,44,51,57,46,54,51,56,51,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,53,51,51,51,44,34,98,101,100,115,34,58,53,56,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,54,49,56,50,55,44,52,48,46,49,50,53,56,53,53,93,44,91,45,56,51,46,49,54,57,57,56,49,44,52,48,46,49,52,51,48,56,55,93,44,91,45,56,51,46,50,48,54,50,55,51,44,52,48,46,49,48,55,55,51,51,93,44,91,45,56,51,46,50,53,51,56,51,44,52,48,46,48,52,57,50,49,56,93,44,91,45,56,51,46,50,52,51,55,48,50,44,51,57,46,56,49,50,53,48,51,93,44,91,45,56,50,46,56,50,52,50,53,52,44,51,57,46,55,57,52,57,57,54,93,44,91,45,56,50,46,55,56,50,52,57,53,44,51,57,46,57,51,57,54,54,50,93,44,91,45,56,50,46,55,54,49,56,50,55,44,52,48,46,49,50,53,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,73,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,54,57,49,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,48,53,50,51,53,44,51,55,46,54,48,52,55,55,54,93,44,91,45,49,49,51,46,53,56,55,55,57,55,44,51,55,46,54,48,52,54,49,49,93,44,91,45,49,49,51,46,52,55,52,48,50,57,44,51,55,46,53,50,57,48,56,53,93,44,91,45,49,49,51,46,50,53,51,51,52,44,51,55,46,53,50,56,57,56,51,93,44,91,45,49,49,51,46,50,53,51,52,57,44,51,55,46,52,56,50,49,54,55,93,44,91,45,49,49,51,46,48,51,55,48,52,56,44,51,55,46,52,55,52,52,55,52,93,44,91,45,49,49,50,46,57,48,48,57,57,51,44,51,55,46,53,48,48,48,50,49,93,44,91,45,49,49,50,46,54,56,51,55,53,44,51,55,46,53,52,51,54,57,50,93,44,91,45,49,49,50,46,54,56,57,50,50,49,44,51,55,46,56,48,53,53,57,93,44,91,45,49,49,50,46,53,55,56,51,57,55,44,51,55,46,56,56,50,49,52,55,93,44,91,45,49,49,50,46,52,54,56,49,55,55,44,51,55,46,56,57,48,52,54,52,93,44,91,45,49,49,50,46,52,55,56,54,56,44,51,56,46,49,52,55,52,49,57,93,44,91,45,49,49,51,46,52,55,49,54,44,51,56,46,49,52,56,54,54,53,93,44,91,45,49,49,52,46,48,52,57,57,55,56,44,51,56,46,49,52,56,55,54,51,93,44,91,45,49,49,52,46,48,53,50,51,53,44,51,55,46,54,48,52,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,69,115,109,101,114,97,108,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,52,50,56,49,52,52,44,51,55,46,56,57,54,50,50,93,44,91,45,49,49,55,46,56,51,50,55,50,54,44,51,55,46,52,54,52,57,50,57,93,44,91,45,49,49,55,46,49,54,54,48,48,49,44,51,54,46,57,55,49,49,49,49,93,44,91,45,49,49,55,46,49,54,53,54,49,50,44,51,56,46,48,48,49,54,57,50,93,44,91,45,49,49,55,46,54,57,49,48,50,49,44,51,56,46,52,55,51,55,57,55,93,44,91,45,49,49,56,46,51,53,49,52,56,52,44,51,55,46,56,57,51,55,48,53,93,44,91,45,49,49,56,46,52,50,56,49,52,52,44,51,55,46,56,57,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,75,101,119,101,101,110,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,52,56,56,54,57,44,52,55,46,52,55,55,49,52,53,93,44,91,45,56,56,46,53,49,50,53,57,50,44,52,55,46,50,56,53,57,52,51,93,44,91,45,56,56,46,50,57,56,57,57,50,44,52,55,46,50,56,54,48,57,55,93,44,91,45,56,56,46,50,57,56,52,51,54,44,52,55,46,49,57,57,55,56,50,93,44,91,45,56,56,46,48,52,54,48,54,51,44,52,55,46,49,57,57,55,50,50,93,44,91,45,56,56,46,48,52,54,54,49,52,44,52,55,46,50,49,56,54,57,54,93,44,91,45,56,55,46,49,49,50,49,49,52,44,52,55,46,50,50,51,50,54,57,93,44,91,45,56,55,46,49,49,50,54,57,53,44,52,55,46,56,49,55,57,57,56,93,44,91,45,56,56,46,51,54,57,56,54,50,44,52,56,46,51,48,54,48,54,51,93,44,91,45,56,56,46,54,55,55,52,52,50,44,52,56,46,50,52,53,51,57,55,93,44,91,45,56,57,46,51,51,55,53,53,44,52,55,46,57,55,52,50,54,49,93,44,91,45,56,57,46,52,56,51,51,56,53,44,52,56,46,48,49,51,55,49,54,93,44,91,45,56,57,46,54,56,48,55,51,44,52,55,46,55,49,52,53,53,50,93,44,91,45,56,56,46,57,52,56,56,54,57,44,52,55,46,52,55,55,49,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,83,97,110,112,101,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,54,54,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,54,52,49,57,52,52,44,51,57,46,56,49,50,56,54,57,93,44,91,45,49,49,49,46,53,56,52,55,53,52,44,51,57,46,55,52,48,49,52,49,93,44,91,45,49,49,49,46,55,49,55,52,56,50,44,51,57,46,54,57,52,53,54,93,44,91,45,49,49,49,46,55,49,51,50,50,52,44,51,57,46,52,54,48,50,57,52,93,44,91,45,49,49,49,46,55,52,55,48,52,52,44,51,57,46,51,56,50,55,53,93,44,91,45,49,49,49,46,57,50,50,51,56,57,44,51,57,46,51,56,49,53,57,49,93,44,91,45,49,49,50,46,48,49,54,48,48,51,44,51,57,46,51,49,52,53,54,49,93,44,91,45,49,49,50,46,48,49,52,48,56,51,44,51,57,46,48,52,53,53,49,56,93,44,91,45,49,49,49,46,56,53,51,50,57,55,44,51,57,46,48,51,50,57,56,52,93,44,91,45,49,49,49,46,50,57,57,51,54,44,51,57,46,48,51,50,50,54,52,93,44,91,45,49,49,49,46,51,48,48,57,48,53,44,51,57,46,52,54,55,50,51,55,93,44,91,45,49,49,49,46,50,52,55,55,52,56,44,51,57,46,52,54,55,49,57,57,93,44,91,45,49,49,49,46,50,52,55,51,57,49,44,51,57,46,55,48,52,51,53,93,44,91,45,49,49,49,46,50,52,55,52,57,54,44,51,57,46,56,49,51,48,50,56,93,44,91,45,49,49,49,46,54,52,49,57,52,52,44,51,57,46,56,49,50,56,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,75,101,97,114,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,52,50,51,49,50,44,51,56,46,50,54,51,50,48,55,93,44,91,45,49,48,49,46,53,52,50,55,53,55,44,51,55,46,56,50,55,53,57,52,93,44,91,45,49,48,49,46,53,50,55,48,54,51,44,51,55,46,55,51,54,51,49,52,93,44,91,45,49,48,49,46,48,56,57,54,54,55,44,51,55,46,55,51,54,51,51,55,93,44,91,45,49,48,49,46,49,48,51,55,55,56,44,51,55,46,56,50,57,48,51,53,93,44,91,45,49,48,49,46,49,48,51,50,54,56,44,51,56,46,50,54,52,53,53,55,93,44,91,45,49,48,49,46,49,50,53,52,51,56,44,51,56,46,50,54,52,53,48,57,93,44,91,45,49,48,49,46,53,52,50,51,49,50,44,51,56,46,50,54,51,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,114,101,118,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,54,56,48,56,44,34,98,101,100,115,34,58,50,48,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,54,50,57,48,56,44,50,56,46,51,52,55,52,56,55,93,44,91,45,56,48,46,56,54,56,56,56,49,44,50,55,46,56,50,50,53,50,50,93,44,91,45,56,48,46,53,48,57,48,55,53,44,50,55,46,56,50,50,48,53,56,93,44,91,45,56,48,46,51,56,53,48,54,57,44,50,55,46,56,54,49,51,54,50,93,44,91,45,56,48,46,52,57,57,55,55,51,44,50,56,46,48,55,55,50,54,93,44,91,45,56,48,46,53,52,51,57,57,57,44,50,56,46,50,55,49,48,57,50,93,44,91,45,56,48,46,52,54,57,51,57,44,50,56,46,52,53,51,48,57,55,93,44,91,45,56,48,46,53,50,50,57,55,51,44,50,56,46,54,48,56,50,51,56,93,44,91,45,56,48,46,54,54,51,52,54,49,44,50,56,46,55,57,48,53,56,56,93,44,91,45,56,48,46,57,54,55,56,57,53,44,50,56,46,55,57,48,49,57,55,93,44,91,45,56,48,46,57,56,55,50,53,44,50,56,46,54,49,50,57,57,55,93,44,91,45,56,48,46,56,56,53,57,48,50,44,50,56,46,53,49,48,50,51,56,93,44,91,45,56,48,46,56,54,50,57,48,56,44,50,56,46,51,52,55,52,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,52,48,51,44,34,98,101,100,115,34,58,51,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,51,48,56,49,56,44,51,57,46,51,52,54,57,52,56,93,44,91,45,56,54,46,54,56,53,54,49,44,51,57,46,51,51,54,48,52,51,93,44,91,45,56,54,46,54,56,51,48,48,50,44,51,57,46,49,54,53,55,52,54,93,44,91,45,56,54,46,54,56,50,50,55,55,44,51,56,46,57,57,50,52,48,52,93,44,91,45,56,54,46,51,49,55,52,55,52,44,51,56,46,57,57,48,56,55,93,44,91,45,56,54,46,51,49,56,49,51,51,44,51,57,46,48,52,56,56,49,93,44,91,45,56,54,46,51,55,48,48,54,54,44,51,57,46,48,52,56,51,55,53,93,44,91,45,56,54,46,51,56,49,51,57,53,44,51,57,46,51,51,57,55,53,50,93,44,91,45,56,54,46,54,51,48,56,49,56,44,51,57,46,51,52,54,57,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,76,117,99,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,57,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,53,55,53,53,54,44,52,49,46,49,54,49,50,55,49,93,44,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,44,91,45,57,51,46,48,57,55,53,57,53,44,52,48,46,56,57,56,52,53,49,93,44,91,45,57,51,46,48,57,57,50,49,55,44,52,49,46,49,54,48,56,54,55,93,44,91,45,57,51,46,51,50,55,56,56,54,44,52,49,46,49,54,48,54,53,57,93,44,91,45,57,51,46,53,53,55,53,53,54,44,52,49,46,49,54,49,50,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,57,34,44,34,78,65,77,69,34,58,34,87,111,111,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,57,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,50,53,49,54,56,44,51,56,46,49,57,53,52,50,54,93,44,91,45,56,52,46,56,54,52,57,48,56,44,51,56,46,49,49,54,57,50,54,93,44,91,45,56,52,46,55,57,54,51,50,55,44,51,55,46,57,55,48,48,56,56,93,44,91,45,56,52,46,55,48,57,57,49,56,44,51,55,46,56,54,49,57,53,50,93,44,91,45,56,52,46,54,54,48,51,52,44,51,56,46,48,48,51,56,51,54,93,44,91,45,56,52,46,54,50,53,48,55,57,44,51,56,46,49,49,54,51,57,55,93,44,91,45,56,52,46,55,50,53,49,54,56,44,51,56,46,49,57,53,52,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,48,48,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,56,49,50,55,44,51,50,46,53,53,54,52,55,49,93,44,91,45,56,49,46,49,50,56,53,51,53,44,51,50,46,51,51,56,51,56,49,93,44,91,45,56,49,46,49,52,52,53,55,50,44,51,50,46,50,50,54,49,50,56,93,44,91,45,56,49,46,49,49,55,50,50,53,44,51,50,46,49,49,55,54,48,52,93,44,91,45,56,49,46,48,48,52,51,48,53,44,51,50,46,49,48,50,51,54,55,93,44,91,45,56,48,46,55,56,50,57,54,44,51,49,46,57,57,53,57,53,52,93,44,91,45,56,48,46,55,52,53,53,51,54,44,51,50,46,48,55,56,54,54,55,93,44,91,45,56,48,46,57,48,48,53,55,51,44,51,50,46,49,49,49,54,49,55,93,44,91,45,56,49,46,48,48,56,53,52,44,51,50,46,50,49,50,49,50,56,93,44,91,45,56,48,46,57,50,49,56,56,51,44,51,50,46,51,53,49,56,51,52,93,44,91,45,56,48,46,56,52,49,52,53,56,44,51,50,46,51,56,53,48,54,52,93,44,91,45,56,48,46,56,50,48,50,50,56,44,51,50,46,52,57,48,55,56,56,93,44,91,45,56,48,46,56,54,57,55,48,53,44,51,50,46,54,54,48,57,51,53,93,44,91,45,56,49,46,48,49,56,52,57,53,44,51,50,46,55,53,48,49,55,50,93,44,91,45,56,49,46,50,56,49,50,55,44,51,50,46,53,53,54,52,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,66,114,101,119,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,53,54,55,48,52,57,44,51,48,46,48,53,50,56,48,56,93,44,91,45,49,48,51,46,52,51,57,57,55,54,44,51,48,46,54,54,53,57,51,57,93,44,91,45,49,48,51,46,56,48,48,54,56,44,51,48,46,52,49,50,53,50,55,93,44,91,45,49,48,51,46,55,57,50,55,48,51,44,50,57,46,50,54,50,52,57,57,93,44,91,45,49,48,51,46,55,49,56,53,54,49,44,50,57,46,49,56,48,56,50,54,93,44,91,45,49,48,51,46,53,53,54,56,54,56,44,50,57,46,49,53,53,53,48,50,93,44,91,45,49,48,51,46,51,56,54,56,49,55,44,50,57,46,48,50,49,55,51,53,93,44,91,45,49,48,51,46,49,53,51,56,57,54,44,50,56,46,57,55,49,54,48,54,93,44,91,45,49,48,50,46,57,48,54,51,56,50,44,50,57,46,50,54,50,48,53,53,93,44,91,45,49,48,50,46,56,55,55,55,50,54,44,50,57,46,51,53,52,56,93,44,91,45,49,48,50,46,54,57,51,53,51,57,44,50,57,46,54,55,54,57,53,55,93,44,91,45,49,48,50,46,54,55,55,50,49,57,44,50,57,46,55,52,49,48,53,50,93,44,91,45,49,48,50,46,52,51,52,50,50,56,44,50,57,46,55,55,54,57,52,54,93,44,91,45,49,48,50,46,51,50,48,56,49,57,44,50,57,46,56,55,56,57,51,51,93,44,91,45,49,48,50,46,53,54,55,48,52,57,44,51,48,46,48,53,50,56,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,77,99,67,111,114,109,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,53,54,52,52,57,49,44,51,51,46,57,53,53,55,51,51,93,44,91,45,56,50,46,51,52,54,57,51,51,44,51,51,46,56,51,52,50,57,56,93,44,91,45,56,50,46,50,49,56,54,52,57,44,51,51,46,54,56,54,50,57,57,93,44,91,45,56,50,46,49,49,53,51,50,57,44,51,51,46,53,57,54,54,49,51,93,44,91,45,56,50,46,49,55,50,56,48,55,44,51,51,46,55,54,53,49,57,52,93,44,91,45,56,50,46,49,50,52,56,52,50,44,51,51,46,56,52,50,50,56,49,93,44,91,45,56,50,46,49,53,53,55,44,51,51,46,57,50,57,50,57,93,44,91,45,56,50,46,48,52,54,57,55,52,44,51,51,46,57,53,51,50,49,93,44,91,45,56,50,46,50,48,48,50,56,54,44,51,51,46,57,55,56,53,57,55,93,44,91,45,56,50,46,51,50,54,57,52,55,44,51,52,46,48,54,52,49,50,93,44,91,45,56,50,46,53,51,48,53,54,55,44,51,52,46,48,55,49,57,50,53,93,44,91,45,56,50,46,53,57,52,54,51,49,44,51,52,46,48,49,51,55,57,54,93,44,91,45,56,50,46,53,54,52,52,57,49,44,51,51,46,57,53,53,55,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,54,52,52,44,34,98,101,100,115,34,58,49,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,49,49,54,57,52,44,51,52,46,57,49,50,53,55,55,93,44,91,45,56,49,46,55,56,51,51,57,44,51,52,46,56,51,55,49,50,53,93,44,91,45,56,49,46,56,53,52,48,48,50,44,51,52,46,53,57,52,53,52,57,93,44,91,45,56,49,46,54,52,51,53,53,50,44,51,52,46,53,51,51,54,53,50,93,44,91,45,56,49,46,53,53,51,50,48,52,44,51,52,46,52,55,55,49,49,52,93,44,91,45,56,49,46,52,50,51,50,52,49,44,51,52,46,52,57,52,51,55,57,93,44,91,45,56,49,46,52,50,50,55,48,54,44,51,52,46,53,55,50,48,50,57,93,44,91,45,56,49,46,52,55,56,52,53,52,44,51,52,46,56,50,49,53,48,57,93,44,91,45,56,49,46,52,53,55,50,53,55,44,51,52,46,56,51,57,50,56,93,44,91,45,56,49,46,55,49,49,54,57,52,44,51,52,46,57,49,50,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,78,105,99,111,108,108,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,55,56,51,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,50,57,53,53,44,52,52,46,52,53,54,55,49,54,93,44,91,45,57,52,46,54,50,52,50,44,52,52,46,52,53,54,48,51,93,44,91,45,57,52,46,55,56,48,54,51,44,52,52,46,52,53,54,54,53,93,44,91,45,57,52,46,52,57,49,54,56,54,44,52,52,46,51,53,50,50,53,52,93,44,91,45,57,52,46,51,55,49,55,51,49,44,52,52,46,50,54,52,52,52,56,93,44,91,45,57,52,46,48,53,54,55,53,55,44,52,52,46,49,53,52,54,49,55,93,44,91,45,57,52,46,48,49,49,56,54,56,44,52,52,46,50,51,57,53,50,93,44,91,45,57,51,46,57,51,54,48,51,50,44,52,52,46,51,51,57,54,54,53,93,44,91,45,57,51,46,57,50,57,53,53,44,52,52,46,52,53,54,55,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,110,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,51,55,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,50,56,49,48,50,44,52,53,46,51,55,55,48,49,93,44,91,45,56,56,46,51,48,53,56,49,49,44,52,53,46,51,55,52,54,49,93,44,91,45,56,56,46,51,48,57,48,54,51,44,52,53,46,50,48,49,53,56,93,44,91,45,56,56,46,49,56,54,51,53,53,44,52,53,46,49,57,55,57,55,52,93,44,91,45,56,56,46,49,50,49,49,53,50,44,52,53,46,48,50,51,53,56,49,93,44,91,45,56,55,46,55,54,48,48,55,49,44,52,52,46,57,57,48,53,51,93,44,91,45,56,55,46,55,54,50,52,54,52,44,52,52,46,55,54,52,51,54,55,93,44,91,45,56,55,46,53,53,49,50,54,50,44,52,53,46,48,48,56,48,52,57,93,44,91,45,56,55,46,52,52,50,55,54,44,52,53,46,48,55,54,52,55,49,93,44,91,45,56,55,46,54,54,49,50,49,49,44,52,53,46,49,48,56,50,55,57,93,44,91,45,56,55,46,55,51,53,50,56,50,44,52,53,46,49,55,54,53,54,53,93,44,91,45,56,55,46,54,52,55,55,54,56,44,52,53,46,51,52,48,53,54,51,93,44,91,45,56,55,46,56,56,52,56,53,53,44,52,53,46,51,54,50,55,57,50,93,44,91,45,56,55,46,55,57,50,55,54,57,44,52,53,46,52,57,57,57,54,55,93,44,91,45,56,55,46,55,55,52,54,56,50,44,52,53,46,54,48,50,48,50,52,93,44,91,45,56,55,46,56,52,54,54,48,50,44,52,53,46,55,50,50,53,52,52,93,44,91,45,56,56,46,48,53,56,50,53,51,44,52,53,46,55,56,48,54,50,57,93,44,91,45,56,56,46,48,53,57,50,52,54,44,52,53,46,55,49,51,48,54,51,93,44,91,45,56,56,46,52,50,53,51,48,50,44,52,53,46,55,50,50,52,50,54,93,44,91,45,56,56,46,52,50,56,49,48,50,44,52,53,46,51,55,55,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,53,51,56,52,44,34,98,101,100,115,34,58,56,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,55,56,53,53,49,53,44,52,53,46,56,53,48,53,51,54,93,44,91,45,49,50,50,46,55,54,50,52,51,55,44,52,53,46,55,50,56,54,54,53,93,44,91,45,49,50,50,46,55,54,51,56,49,44,52,53,46,54,53,55,49,51,56,93,44,91,45,49,50,50,46,52,51,56,54,55,52,44,52,53,46,53,54,51,53,56,53,93,44,91,45,49,50,50,46,50,52,57,50,49,55,44,52,53,46,53,52,56,54,53,51,93,44,91,45,49,50,50,46,50,52,53,56,53,54,44,52,54,46,48,53,51,56,53,51,93,44,91,45,49,50,50,46,51,51,50,54,54,51,44,52,53,46,57,54,53,48,54,52,93,44,91,45,49,50,50,46,52,55,56,55,53,51,44,52,53,46,57,56,55,57,51,56,93,44,91,45,49,50,50,46,55,50,48,57,49,44,52,53,46,57,51,49,56,57,50,93,44,91,45,49,50,50,46,55,56,53,53,49,53,44,52,53,46,56,53,48,53,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,80,114,105,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,55,54,57,54,56,44,52,53,46,57,56,49,53,53,52,93,44,91,45,57,48,46,54,55,56,55,52,57,44,52,53,46,54,51,56,50,54,52,93,44,91,45,57,48,46,54,55,56,55,55,51,44,52,53,46,51,55,55,57,48,55,93,44,91,45,57,48,46,48,52,50,50,55,51,44,52,53,46,51,56,49,56,54,54,93,44,91,45,57,48,46,48,52,51,52,49,52,44,52,53,46,53,53,53,48,56,50,93,44,91,45,57,48,46,48,52,50,56,53,55,44,52,53,46,56,57,55,50,54,51,93,44,91,45,57,48,46,48,52,51,57,53,56,44,52,53,46,57,56,49,57,52,56,93,44,91,45,57,48,46,51,48,50,48,54,51,44,52,53,46,57,56,49,51,52,57,93,44,91,45,57,48,46,54,55,54,57,54,56,44,52,53,46,57,56,49,53,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,77,105,97,109,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,57,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,54,57,48,49,50,44,52,48,46,57,48,57,56,51,54,93,44,91,45,56,54,46,49,54,53,48,50,52,44,52,48,46,53,54,50,54,52,57,93,44,91,45,56,53,46,56,54,51,54,52,49,44,52,48,46,53,54,53,53,50,53,93,44,91,45,56,53,46,56,54,52,55,57,49,44,52,48,46,54,53,49,54,57,51,93,44,91,45,56,53,46,57,51,57,53,50,53,44,52,48,46,54,53,48,57,57,49,93,44,91,45,56,53,46,57,52,54,52,51,54,44,52,48,46,57,57,57,49,57,53,93,44,91,45,56,54,46,49,54,56,52,53,57,44,52,48,46,57,57,54,48,57,55,93,44,91,45,56,54,46,49,54,57,48,49,50,44,52,48,46,57,48,57,56,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,69,108,108,115,119,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,57,51,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,56,52,56,54,49,44,51,56,46,56,55,48,55,57,49,93,44,91,45,57,56,46,52,56,54,49,48,56,44,51,56,46,54,57,54,56,55,56,93,44,91,45,57,56,46,52,56,48,51,55,55,44,51,56,46,53,50,49,56,52,49,93,44,91,45,57,55,46,57,50,52,50,54,57,44,51,56,46,53,50,50,55,53,53,93,44,91,45,57,55,46,57,50,52,55,57,53,44,51,56,46,54,48,57,56,56,93,44,91,45,57,55,46,57,50,56,53,57,50,44,51,56,46,56,55,49,48,57,57,93,44,91,45,57,56,46,52,56,52,56,54,49,44,51,56,46,56,55,48,55,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,87,101,115,116,32,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,56,48,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,51,53,55,56,50,44,51,51,46,48,48,54,48,57,57,93,44,91,45,57,49,46,53,54,54,51,54,51,44,51,50,46,56,53,53,53,54,49,93,44,91,45,57,49,46,54,51,55,53,56,55,44,51,50,46,54,54,55,51,52,49,93,44,91,45,57,49,46,53,57,54,48,50,55,44,51,50,46,53,56,50,49,57,50,93,44,91,45,57,49,46,52,52,53,50,57,57,44,51,50,46,53,56,49,57,53,54,93,44,91,45,57,49,46,51,52,52,56,52,53,44,51,50,46,55,53,54,54,53,57,93,44,91,45,57,49,46,51,51,53,52,54,51,44,51,50,46,56,54,54,49,48,52,93,44,91,45,57,49,46,50,54,53,48,49,56,44,51,51,46,48,48,53,48,56,51,93,44,91,45,57,49,46,52,51,53,55,56,50,44,51,51,46,48,48,54,48,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,105,98,101,114,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,52,54,52,48,56,44,51,48,46,51,56,56,50,56,49,93,44,91,45,56,52,46,56,56,50,54,49,54,44,51,48,46,53,51,51,48,57,52,93,44,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,44,91,45,56,53,46,48,51,50,57,51,49,44,51,48,46,52,50,48,50,57,57,93,44,91,45,56,53,46,48,53,50,55,55,55,44,51,48,46,50,56,55,52,48,54,93,44,91,45,56,53,46,49,49,53,54,54,44,51,48,46,49,57,57,57,55,54,93,44,91,45,56,53,46,49,51,53,50,53,52,44,51,48,46,48,52,51,50,55,93,44,91,45,56,53,46,48,50,53,52,51,57,44,50,57,46,57,55,49,51,57,57,93,44,91,45,56,53,46,48,48,55,54,50,54,44,51,48,46,48,49,51,56,56,51,93,44,91,45,56,52,46,53,52,52,52,53,44,51,48,46,48,49,49,48,51,93,44,91,45,56,52,46,54,54,57,50,53,56,44,51,48,46,49,50,53,50,93,44,91,45,56,52,46,55,49,51,51,53,49,44,51,48,46,51,48,48,49,55,93,44,91,45,56,52,46,54,52,54,52,48,56,44,51,48,46,51,56,56,50,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,111,100,103,101,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,56,52,50,48,55,44,51,56,46,50,54,50,49,55,57,93,44,91,45,49,48,48,46,50,50,55,49,51,55,44,51,56,46,50,54,50,50,51,55,93,44,91,45,49,48,48,46,50,50,54,54,49,44,51,56,46,48,48,49,48,49,53,93,44,91,45,49,48,48,46,50,50,55,48,57,44,51,55,46,57,49,52,48,49,56,93,44,91,45,57,57,46,53,54,57,56,55,57,44,51,55,46,57,49,51,48,49,54,93,44,91,45,57,57,46,53,54,57,53,51,51,44,51,56,46,48,56,55,51,55,50,93,44,91,45,57,57,46,53,56,52,50,48,55,44,51,56,46,50,54,50,49,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,101,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,54,49,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,49,54,50,50,57,44,51,55,46,52,55,53,49,57,93,44,91,45,49,48,48,46,54,53,50,54,52,50,44,51,55,46,52,55,52,56,52,56,93,44,91,45,49,48,48,46,54,53,50,55,50,56,44,51,55,46,51,56,55,54,50,55,93,44,91,45,49,48,48,46,54,51,51,51,50,55,44,51,55,46,48,48,48,49,48,51,93,44,91,45,49,48,48,46,48,56,57,52,56,51,44,51,55,46,48,48,50,50,54,49,93,44,91,45,49,48,48,46,48,57,49,53,50,57,44,51,55,46,51,56,54,56,57,50,93,44,91,45,49,48,48,46,49,48,55,50,52,56,44,51,55,46,52,55,52,56,51,54,93,44,91,45,49,48,48,46,50,49,54,50,50,57,44,51,55,46,52,55,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,77,99,76,101,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,55,53,49,52,53,44,51,55,46,53,54,57,57,56,56,93,44,91,45,56,55,46,51,53,49,56,57,51,44,51,55,46,52,50,53,54,53,53,93,44,91,45,56,55,46,50,57,53,57,54,53,44,51,55,46,51,57,49,56,49,57,93,44,91,45,56,55,46,48,57,57,56,48,51,44,51,55,46,52,49,54,48,52,50,93,44,91,45,56,55,46,48,51,56,50,54,44,51,55,46,53,54,48,56,48,51,93,44,91,45,56,55,46,52,48,56,53,52,55,44,51,55,46,54,56,51,53,54,51,93,44,91,45,56,55,46,52,57,53,51,51,49,44,51,55,46,54,52,55,53,52,55,93,44,91,45,56,55,46,51,55,53,49,52,53,44,51,55,46,53,54,57,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,52,55,44,34,98,101,100,115,34,58,49,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,56,48,50,53,52,44,51,49,46,55,51,51,50,53,53,93,44,91,45,57,49,46,52,52,51,57,49,54,44,51,49,46,53,52,50,52,54,54,93,44,91,45,57,49,46,53,49,53,57,49,57,44,51,49,46,53,51,48,55,50,57,93,44,91,45,57,49,46,52,55,50,48,54,55,44,51,49,46,51,57,55,48,55,54,93,44,91,45,57,49,46,53,56,57,52,53,49,44,51,49,46,49,57,49,49,52,93,44,91,45,57,49,46,52,55,56,55,57,57,44,51,49,46,50,51,56,57,57,57,93,44,91,45,57,49,46,52,50,52,48,49,50,44,51,49,46,51,49,53,48,52,93,44,91,45,57,49,46,51,48,51,53,56,44,51,49,46,51,54,48,57,55,53,93,44,91,45,57,49,46,49,53,56,49,53,44,51,49,46,51,52,54,54,57,53,93,44,91,45,57,49,46,49,53,51,56,54,52,44,51,49,46,54,49,48,48,54,56,93,44,91,45,57,49,46,50,57,53,53,55,44,51,49,46,54,54,57,56,55,93,44,91,45,57,49,46,51,49,55,56,54,52,44,51,49,46,55,52,57,55,54,54,93,44,91,45,57,49,46,51,56,48,50,53,52,44,51,49,46,55,51,51,50,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,97,115,32,77,97,114,195,173,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,48,56,50,48,48,50,44,49,56,46,50,53,52,57,52,54,93,44,91,45,54,55,46,48,49,57,56,51,54,44,49,56,46,49,57,53,52,55,49,93,44,91,45,54,54,46,56,57,55,57,54,52,44,49,56,46,49,56,55,55,52,52,93,44,91,45,54,54,46,57,48,55,50,51,54,44,49,56,46,50,53,51,48,57,93,44,91,45,54,55,46,48,51,55,57,51,53,44,49,56,46,50,56,57,55,48,53,93,44,91,45,54,55,46,48,56,50,48,48,50,44,49,56,46,50,53,52,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,73,116,97,119,97,109,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,52,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,52,50,48,55,57,44,51,52,46,52,54,53,50,55,54,93,44,91,45,56,56,46,53,52,51,51,53,50,44,51,52,46,48,56,57,48,52,52,93,44,91,45,56,56,46,50,48,51,56,54,52,44,51,52,46,48,56,54,53,54,52,93,44,91,45,56,56,46,49,55,51,54,51,50,44,51,52,46,51,50,49,48,53,52,93,44,91,45,56,56,46,49,53,54,50,57,50,44,51,52,46,52,54,51,50,49,52,93,44,91,45,56,56,46,51,50,57,49,57,51,44,51,52,46,52,54,51,53,55,49,93,44,91,45,56,56,46,53,52,50,48,55,57,44,51,52,46,52,54,53,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,50,57,54,44,34,98,101,100,115,34,58,49,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,55,48,52,56,50,44,51,56,46,51,53,54,55,53,49,93,44,91,45,56,52,46,57,57,55,54,54,55,44,51,56,46,51,51,53,53,56,54,93,44,91,45,56,53,46,48,50,51,55,49,49,44,51,56,46,49,50,57,48,53,50,93,44,91,45,56,52,46,56,54,52,57,48,56,44,51,56,46,49,49,54,57,50,54,93,44,91,45,56,52,46,55,50,53,49,54,56,44,51,56,46,49,57,53,52,50,54,93,44,91,45,56,52,46,55,52,48,53,57,52,44,51,56,46,51,53,50,52,49,53,93,44,91,45,56,52,46,56,55,48,52,56,50,44,51,56,46,51,53,54,55,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,53,52,49,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,56,46,48,53,52,57,56,53,44,52,53,46,50,53,50,53,55,55,93,44,91,45,54,56,46,51,48,51,55,49,52,44,52,53,46,50,50,49,53,51,49,93,44,91,45,54,56,46,50,55,48,52,57,55,44,52,53,46,49,48,48,49,50,49,93,44,91,45,54,56,46,51,57,54,57,48,51,44,52,53,46,48,56,51,50,57,54,93,44,91,45,54,56,46,51,55,53,56,57,50,44,52,52,46,57,57,55,51,55,51,93,44,91,45,54,56,46,53,48,49,48,57,53,44,52,52,46,57,56,48,55,49,56,93,44,91,45,54,56,46,52,52,53,50,49,57,44,52,52,46,55,54,51,48,49,52,93,44,91,45,54,56,46,56,49,53,55,57,51,44,52,52,46,54,56,51,55,53,52,93,44,91,45,54,56,46,56,48,52,54,49,53,44,52,52,46,52,53,56,52,49,49,93,44,91,45,54,56,46,56,57,54,51,56,52,44,52,52,46,50,48,57,57,51,53,93,44,91,45,54,56,46,55,50,48,57,49,55,44,52,52,46,49,49,53,50,54,93,44,91,45,54,56,46,53,55,57,51,52,56,44,52,52,46,49,50,56,55,53,93,44,91,45,54,56,46,52,56,52,54,51,53,44,52,52,46,48,50,56,51,50,54,93,44,91,45,54,56,46,51,49,49,51,57,51,44,52,52,46,48,53,51,52,50,57,93,44,91,45,54,56,46,49,55,53,56,53,56,44,52,52,46,49,50,53,48,56,51,93,44,91,45,54,56,46,49,50,56,50,56,44,52,52,46,50,54,52,50,53,51,93,44,91,45,54,55,46,57,50,53,49,55,56,44,52,52,46,51,52,49,52,51,52,93,44,91,45,54,55,46,57,56,49,57,56,56,44,52,52,46,52,55,51,55,53,54,93,44,91,45,54,56,46,49,48,53,48,49,55,44,52,52,46,57,51,57,48,56,56,93,44,91,45,54,55,46,57,56,49,56,53,49,44,52,52,46,57,53,53,56,56,53,93,44,91,45,54,56,46,48,53,52,57,56,53,44,52,53,46,50,53,50,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,56,50,51,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,57,46,52,48,57,54,51,53,44,52,52,46,51,50,55,57,57,56,93,44,91,45,54,57,46,50,56,50,48,50,55,44,52,52,46,48,54,52,53,50,51,93,44,91,45,54,57,46,51,54,51,57,57,54,44,52,52,46,48,49,50,56,55,51,93,44,91,45,54,57,46,51,57,55,55,51,56,44,52,51,46,56,55,49,56,57,93,44,91,45,54,57,46,50,51,51,52,56,44,52,51,46,55,55,56,48,48,50,93,44,91,45,54,57,46,48,53,53,56,57,52,44,52,51,46,56,53,56,57,49,49,93,44,91,45,54,56,46,57,50,53,53,49,56,44,52,51,46,55,53,48,48,56,56,93,44,91,45,54,56,46,56,50,54,57,49,54,44,52,51,46,55,51,53,55,49,49,93,44,91,45,54,56,46,55,52,57,52,55,51,44,52,51,46,56,51,50,53,51,49,93,44,91,45,54,56,46,52,56,52,54,51,53,44,52,52,46,48,50,56,51,50,54,93,44,91,45,54,56,46,53,55,57,51,52,56,44,52,52,46,49,50,56,55,53,93,44,91,45,54,56,46,55,50,48,57,49,55,44,52,52,46,49,49,53,50,54,93,44,91,45,54,56,46,56,57,54,51,56,52,44,52,52,46,50,48,57,57,51,53,93,44,91,45,54,56,46,57,57,57,52,53,53,44,52,52,46,50,48,50,55,50,49,93,44,91,45,54,57,46,50,54,56,56,56,50,44,52,52,46,51,54,52,54,53,51,93,44,91,45,54,57,46,52,48,57,54,51,53,44,52,52,46,51,50,55,57,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,55,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,52,57,55,44,34,98,101,100,115,34,58,49,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,52,52,52,57,51,44,51,51,46,53,50,53,55,55,54,93,44,91,45,56,51,46,57,50,51,57,49,51,44,51,51,46,52,52,52,49,57,52,93,44,91,45,56,51,46,56,54,51,48,53,56,44,51,51,46,51,54,56,50,55,56,93,44,91,45,56,51,46,54,56,50,49,57,54,44,51,51,46,53,50,54,50,50,93,44,91,45,56,51,46,54,56,48,56,57,54,44,51,51,46,53,57,54,57,49,57,93,44,91,45,56,51,46,57,49,52,56,50,51,44,51,51,46,55,52,52,50,48,51,93,44,91,45,56,51,46,57,51,48,56,54,51,44,51,51,46,54,53,49,56,50,51,93,44,91,45,56,52,46,48,52,52,52,57,51,44,51,51,46,53,50,53,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,70,97,117,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,50,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,55,51,51,51,44,52,53,46,50,52,53,51,54,52,93,44,91,45,57,57,46,53,55,50,54,57,57,44,52,52,46,56,57,55,50,54,51,93,44,91,45,57,57,46,51,49,49,55,53,52,44,52,52,46,56,57,55,50,50,55,93,44,91,45,57,56,46,55,49,54,52,57,56,44,52,52,46,56,57,54,57,50,53,93,44,91,45,57,56,46,55,49,55,55,53,57,44,52,53,46,50,52,51,55,51,50,93,44,91,45,57,56,46,55,50,50,52,56,49,44,52,53,46,50,52,51,55,54,52,93,44,91,45,57,57,46,53,55,51,51,51,44,52,53,46,50,52,53,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,111,117,103,104,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,54,48,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,52,56,56,54,57,44,52,55,46,52,55,55,49,52,53,93,44,91,45,56,56,46,57,51,50,52,56,44,52,54,46,55,54,52,55,56,55,93,44,91,45,56,56,46,57,56,57,53,50,57,44,52,54,46,54,56,48,49,49,57,93,44,91,45,56,56,46,57,57,49,50,51,54,44,52,54,46,52,49,57,55,48,52,93,44,91,45,56,56,46,54,55,57,51,57,50,44,52,54,46,52,50,48,49,51,57,93,44,91,45,56,56,46,54,55,56,57,56,51,44,52,54,46,56,53,49,56,50,50,93,44,91,45,56,56,46,53,53,49,57,52,51,44,52,54,46,56,53,49,55,57,53,93,44,91,45,56,56,46,52,53,49,50,44,52,54,46,57,51,56,57,55,54,93,44,91,45,56,56,46,48,52,51,55,51,49,44,52,55,46,48,52,51,57,53,56,93,44,91,45,56,56,46,48,52,54,48,54,51,44,52,55,46,49,57,57,55,50,50,93,44,91,45,56,56,46,50,57,56,52,51,54,44,52,55,46,49,57,57,55,56,50,93,44,91,45,56,56,46,50,57,56,57,57,50,44,52,55,46,50,56,54,48,57,55,93,44,91,45,56,56,46,53,49,50,53,57,50,44,52,55,46,50,56,53,57,52,51,93,44,91,45,56,56,46,57,52,56,56,54,57,44,52,55,46,52,55,55,49,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,77,105,110,101,114,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,49,49,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,54,50,57,52,56,56,44,52,55,46,52,55,57,54,49,93,44,91,45,49,49,53,46,55,52,54,54,49,57,44,52,55,46,52,52,50,51,49,49,93,44,91,45,49,49,53,46,51,52,48,56,52,57,44,52,55,46,50,54,50,56,53,93,44,91,45,49,49,53,46,48,52,55,56,53,55,44,52,54,46,57,54,57,53,51,50,93,44,91,45,49,49,52,46,57,53,57,51,49,55,44,52,54,46,57,51,50,56,57,56,93,44,91,45,49,49,52,46,57,50,50,51,49,50,44,52,54,46,56,50,56,54,48,50,93,44,91,45,49,49,52,46,54,55,52,57,52,50,44,52,54,46,55,51,54,56,50,54,93,44,91,45,49,49,52,46,53,52,57,49,50,55,44,52,54,46,55,52,55,51,54,54,93,44,91,45,49,49,52,46,53,54,54,49,50,57,44,52,54,46,57,54,51,52,48,53,93,44,91,45,49,49,52,46,52,56,51,50,50,55,44,52,55,46,48,50,51,51,53,56,93,44,91,45,49,49,52,46,55,55,53,56,51,51,44,52,55,46,50,50,53,53,55,51,93,44,91,45,49,49,52,46,55,57,55,50,48,52,44,52,55,46,50,54,56,57,49,54,93,44,91,45,49,49,52,46,57,54,56,57,55,56,44,52,55,46,51,49,50,54,50,53,93,44,91,45,49,49,52,46,57,56,50,50,54,53,44,52,55,46,51,57,54,56,48,52,93,44,91,45,49,49,53,46,50,56,51,56,53,54,44,52,55,46,52,56,54,54,51,56,93,44,91,45,49,49,53,46,54,50,57,52,56,56,44,52,55,46,52,55,57,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,53,49,50,44,34,98,101,100,115,34,58,49,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,54,49,52,56,57,44,51,53,46,51,51,51,53,55,57,93,44,91,45,56,54,46,51,49,56,49,54,56,44,51,53,46,49,50,54,57,56,54,93,44,91,45,56,54,46,51,49,56,55,54,49,44,51,52,46,57,57,49,49,54,57,93,44,91,45,56,54,46,51,49,49,50,55,52,44,51,52,46,57,57,49,48,57,56,93,44,91,45,56,53,46,56,54,51,57,51,53,44,51,52,46,57,56,56,50,53,51,93,44,91,45,56,53,46,56,55,51,48,50,53,44,51,53,46,50,50,51,51,54,50,93,44,91,45,56,53,46,57,49,51,53,57,51,44,51,53,46,50,56,57,49,56,57,93,44,91,45,56,54,46,49,53,56,48,49,56,44,51,53,46,51,54,50,54,48,55,93,44,91,45,56,54,46,50,54,49,52,56,57,44,51,53,46,51,51,51,53,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,110,99,111,114,100,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,50,49,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,52,52,55,57,49,44,51,49,46,55,53,49,55,51,49,93,44,91,45,57,49,46,54,57,52,52,54,57,44,51,49,46,55,51,53,50,56,54,93,44,91,45,57,49,46,55,48,53,57,52,56,44,51,49,46,54,52,50,56,54,51,93,44,91,45,57,49,46,56,50,54,57,50,54,44,51,49,46,53,57,49,54,55,49,93,44,91,45,57,49,46,56,53,53,57,48,56,44,51,49,46,52,57,54,48,49,93,44,91,45,57,49,46,56,51,52,50,56,44,51,49,46,50,54,54,51,52,52,93,44,91,45,57,49,46,54,55,55,51,48,50,44,51,49,46,49,56,56,48,52,55,93,44,91,45,57,49,46,55,50,51,56,48,52,44,51,49,46,48,52,52,50,53,52,93,44,91,45,57,49,46,54,53,56,51,50,49,44,51,48,46,57,57,52,51,54,53,93,44,91,45,57,49,46,54,54,50,53,48,54,44,51,48,46,57,55,48,51,54,50,93,44,91,45,57,49,46,54,51,54,57,52,50,44,51,48,46,57,57,57,52,49,54,93,44,91,45,57,49,46,53,56,57,52,53,49,44,51,49,46,49,57,49,49,52,93,44,91,45,57,49,46,52,55,50,48,54,55,44,51,49,46,51,57,55,48,55,54,93,44,91,45,57,49,46,53,49,53,57,49,57,44,51,49,46,53,51,48,55,50,57,93,44,91,45,57,49,46,52,52,51,57,49,54,44,51,49,46,53,52,50,52,54,54,93,44,91,45,57,49,46,51,56,48,50,53,52,44,51,49,46,55,51,51,50,53,53,93,44,91,45,57,49,46,53,52,52,55,57,49,44,51,49,46,55,53,49,55,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,49,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,48,55,48,49,44,51,48,46,54,52,57,51,56,53,93,44,91,45,57,48,46,57,55,55,52,48,49,44,51,48,46,53,57,51,52,56,53,93,44,91,45,57,48,46,57,55,55,53,48,51,44,51,48,46,52,50,48,56,57,57,93,44,91,45,57,48,46,56,57,49,55,50,56,44,51,48,46,51,52,53,50,52,52,93,44,91,45,57,48,46,55,49,57,53,51,57,44,51,48,46,49,56,57,57,57,52,93,44,91,45,57,48,46,54,51,50,56,49,49,44,51,48,46,50,50,49,52,48,57,93,44,91,45,57,48,46,53,53,52,49,52,55,44,51,48,46,49,57,53,54,50,56,93,44,91,45,57,48,46,52,56,53,56,50,54,44,51,48,46,50,55,54,57,57,50,93,44,91,45,57,48,46,52,55,55,56,44,51,48,46,51,53,54,52,52,55,93,44,91,45,57,48,46,53,54,54,57,48,54,44,51,48,46,52,56,55,48,54,93,44,91,45,57,48,46,53,54,55,49,54,53,44,51,48,46,54,53,48,48,50,51,93,44,91,45,57,48,46,57,49,48,55,48,49,44,51,48,46,54,52,57,51,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,69,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,49,48,50,52,44,34,98,101,100,115,34,58,49,51,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,55,51,53,48,48,53,44,52,50,46,56,55,52,54,56,53,93,44,91,45,55,48,46,57,50,57,53,57,52,44,52,50,46,56,56,53,48,51,50,93,44,91,45,55,49,46,49,51,50,56,48,53,44,52,50,46,56,50,49,52,55,54,93,44,91,45,55,49,46,50,52,53,52,56,49,44,52,50,46,55,52,50,53,49,52,93,44,91,45,55,49,46,50,53,53,49,52,55,44,52,50,46,55,51,54,53,53,52,93,44,91,45,55,49,46,50,53,54,49,56,56,44,52,50,46,54,53,55,49,52,53,93,44,91,45,55,49,46,49,51,53,52,48,53,44,52,50,46,53,57,57,48,56,93,44,91,45,55,49,46,48,50,53,56,51,54,44,52,50,46,52,52,52,55,48,57,93,44,91,45,55,48,46,57,50,52,53,57,51,44,52,50,46,51,56,54,55,57,56,93,44,91,45,55,48,46,54,52,56,48,55,50,44,52,50,46,52,48,53,54,50,56,93,44,91,45,55,48,46,54,48,54,50,57,44,52,50,46,53,51,49,50,50,93,44,91,45,55,48,46,53,48,50,49,52,51,44,52,50,46,54,50,52,53,55,57,93,44,91,45,55,48,46,53,52,57,51,48,54,44,52,50,46,55,50,52,49,54,52,93,44,91,45,55,48,46,55,48,50,53,56,44,52,50,46,55,50,52,49,54,50,93,44,91,45,55,48,46,55,51,53,48,48,53,44,52,50,46,56,55,52,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,117,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,57,53,55,50,56,49,44,52,53,46,50,49,50,56,53,49,93,44,91,45,49,48,52,46,48,52,48,48,48,52,44,52,53,46,50,49,50,56,57,49,93,44,91,45,49,48,52,46,48,53,55,56,55,57,44,52,52,46,57,57,55,54,48,53,93,44,91,45,49,48,52,46,48,53,53,57,52,51,44,52,52,46,53,55,49,48,50,53,93,44,91,45,49,48,51,46,56,50,48,54,51,57,44,52,52,46,54,48,52,55,55,55,93,44,91,45,49,48,51,46,53,54,55,54,53,51,44,52,52,46,54,48,52,48,57,56,93,44,91,45,49,48,50,46,57,54,52,49,50,53,44,52,52,46,54,48,52,50,56,55,93,44,91,45,49,48,50,46,57,53,55,51,55,49,44,52,53,46,48,51,57,53,54,57,93,44,91,45,49,48,50,46,57,53,55,50,56,49,44,52,53,46,50,49,50,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,56,54,49,52,44,34,98,101,100,115,34,58,55,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,54,54,48,54,50,54,44,51,57,46,53,54,53,57,48,57,93,44,91,45,49,48,53,46,48,52,56,55,52,44,51,57,46,53,54,54,48,56,56,93,44,91,45,49,48,53,46,50,51,51,57,51,56,44,51,57,46,50,52,54,56,54,56,93,44,91,45,49,48,53,46,51,50,57,50,50,44,51,57,46,49,50,57,54,56,57,93,44,91,45,49,48,53,46,48,51,51,53,52,52,44,51,57,46,49,50,57,56,49,57,93,44,91,45,49,48,52,46,54,54,50,56,57,54,44,51,57,46,49,50,57,53,50,55,93,44,91,45,49,48,52,46,54,54,48,54,50,54,44,51,57,46,53,54,53,57,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,56,50,54,51,44,34,98,101,100,115,34,58,50,50,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,50,53,57,50,49,44,51,52,46,50,54,56,55,54,93,44,91,45,56,49,46,48,57,53,56,54,51,44,51,52,46,50,49,51,56,55,50,93,44,91,45,56,49,46,51,49,54,57,49,49,44,51,52,46,50,51,57,52,53,56,93,44,91,45,56,49,46,51,51,56,57,54,49,44,51,52,46,49,57,55,53,56,55,93,44,91,45,56,49,46,50,55,53,56,52,53,44,51,52,46,48,57,55,51,56,49,93,44,91,45,56,49,46,50,48,49,56,51,57,44,51,52,46,48,57,55,49,54,56,93,44,91,45,56,49,46,48,54,55,54,49,53,44,51,52,46,48,48,56,57,53,51,93,44,91,45,56,49,46,48,49,50,51,51,44,51,51,46,56,56,48,48,56,93,44,91,45,56,48,46,56,48,55,53,57,49,44,51,51,46,55,55,52,50,49,49,93,44,91,45,56,48,46,54,50,48,49,48,55,44,51,51,46,55,52,51,50,51,55,93,44,91,45,56,48,46,53,57,55,55,49,53,44,51,51,46,55,55,55,53,49,50,93,44,91,45,56,48,46,54,52,48,57,56,54,44,51,51,46,57,57,57,52,51,51,93,44,91,45,56,48,46,54,49,54,49,56,54,44,51,52,46,48,57,57,54,48,53,93,44,91,45,56,48,46,55,49,57,51,49,56,44,51,52,46,48,54,56,57,55,50,93,44,91,45,56,48,46,56,54,57,53,50,52,44,51,52,46,49,56,50,50,55,49,93,44,91,45,56,48,46,56,50,53,57,50,49,44,51,52,46,50,54,56,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,53,48,53,44,34,98,101,100,115,34,58,51,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,49,57,48,51,44,52,48,46,50,49,56,57,51,54,93,44,91,45,56,53,46,56,54,50,52,56,57,44,51,57,46,57,52,51,54,49,56,93,44,91,45,56,53,46,53,55,54,49,57,50,44,51,57,46,57,52,53,55,53,54,93,44,91,45,56,53,46,53,55,54,49,57,55,44,52,48,46,48,55,55,49,52,51,93,44,91,45,56,53,46,53,55,56,53,56,57,44,52,48,46,51,55,57,53,50,52,93,44,91,45,56,53,46,56,54,50,50,57,54,44,52,48,46,51,55,56,51,54,55,93,44,91,45,56,53,46,56,54,49,57,48,51,44,52,48,46,50,49,56,57,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,117,114,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,53,50,49,56,51,44,51,52,46,53,48,54,55,57,54,93,44,91,45,57,55,46,51,53,50,49,49,53,44,51,52,46,51,55,54,49,56,56,93,44,91,45,57,55,46,48,51,56,50,51,57,44,51,52,46,51,55,53,55,48,55,93,44,91,45,57,54,46,57,51,51,51,48,53,44,51,52,46,51,51,50,53,54,49,93,44,91,45,57,54,46,56,56,48,55,57,44,51,52,46,53,48,54,48,53,51,93,44,91,45,57,54,46,56,50,55,51,52,51,44,51,52,46,53,48,54,48,54,50,93,44,91,45,57,54,46,56,50,55,49,52,52,44,51,52,46,53,57,51,50,50,93,44,91,45,57,54,46,57,51,50,52,53,50,44,51,52,46,54,51,54,56,49,50,93,44,91,45,57,55,46,49,52,50,54,55,49,44,51,52,46,54,51,55,49,50,54,93,44,91,45,57,55,46,49,52,51,57,55,51,44,51,52,46,53,48,54,54,48,54,93,44,91,45,57,55,46,51,53,50,49,56,51,44,51,52,46,53,48,54,55,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,114,111,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,55,50,44,34,98,101,100,115,34,58,51,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,50,57,54,56,52,44,52,48,46,51,57,52,57,55,56,93,44,91,45,56,48,46,53,57,57,56,57,53,44,52,48,46,51,49,55,54,54,54,93,44,91,45,56,48,46,54,56,49,56,49,49,44,52,48,46,49,56,53,53,54,51,93,44,91,45,56,48,46,53,49,57,49,48,52,44,52,48,46,49,53,57,54,55,50,93,44,91,45,56,48,46,53,49,55,57,57,49,44,52,48,46,51,57,57,54,52,52,93,44,91,45,56,48,46,54,50,57,54,56,52,44,52,48,46,51,57,52,57,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,57,54,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,54,50,52,53,53,44,51,57,46,48,51,48,54,48,56,93,44,91,45,56,49,46,50,55,56,52,49,50,44,51,56,46,57,49,52,56,54,55,93,44,91,45,56,49,46,48,56,51,55,49,44,51,56,46,54,49,49,57,56,50,93,44,91,45,56,49,46,48,51,49,54,55,55,44,51,56,46,54,54,55,56,51,57,93,44,91,45,56,48,46,57,56,52,57,53,44,51,56,46,55,49,55,56,57,56,93,44,91,45,56,49,46,48,51,51,54,51,50,44,51,57,46,48,48,57,53,56,52,93,44,91,45,56,49,46,49,54,50,52,53,53,44,51,57,46,48,51,48,54,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,52,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,50,53,49,48,52,44,51,55,46,50,51,52,56,55,52,93,44,91,45,56,49,46,50,55,48,48,55,56,44,51,55,46,48,57,51,48,49,50,93,44,91,45,56,49,46,52,51,54,55,51,44,51,55,46,48,49,48,49,51,53,93,44,91,45,56,49,46,51,55,57,52,48,50,44,51,54,46,57,53,50,52,52,50,93,44,91,45,56,49,46,50,50,52,54,50,52,44,51,55,46,48,52,55,56,51,53,93,44,91,45,56,49,46,49,49,52,51,49,57,44,51,55,46,48,50,50,54,49,50,93,44,91,45,56,48,46,57,49,50,54,55,52,44,51,55,46,48,55,51,51,52,57,93,44,91,45,56,48,46,56,53,52,54,50,55,44,51,55,46,49,52,55,52,56,50,93,44,91,45,56,48,46,57,56,48,49,52,54,44,51,55,46,50,57,50,55,52,51,93,44,91,45,56,49,46,50,50,53,49,48,52,44,51,55,46,50,51,52,56,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,89,101,108,108,111,119,115,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,56,49,54,44,34,98,101,100,115,34,58,54,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,55,56,49,50,49,52,44,52,54,46,52,57,54,48,49,52,93,44,91,45,49,48,55,46,55,56,50,48,56,55,44,52,54,46,51,57,53,49,56,50,93,44,91,45,49,48,55,46,57,50,56,53,52,55,44,52,54,46,51,57,53,50,56,52,93,44,91,45,49,48,56,46,48,50,57,51,54,51,44,52,54,46,50,54,52,48,53,53,93,44,91,45,49,48,56,46,51,50,48,56,49,50,44,52,54,46,50,54,51,57,57,55,93,44,91,45,49,48,56,46,52,48,52,56,53,54,44,52,54,46,50,51,53,57,54,93,44,91,45,49,48,56,46,52,48,52,55,57,53,44,52,54,46,49,51,50,57,53,50,93,44,91,45,49,48,56,46,55,55,57,55,51,51,44,52,54,46,49,51,50,52,53,55,93,44,91,45,49,48,56,46,57,50,52,53,56,57,44,52,54,46,49,51,50,51,55,93,44,91,45,49,48,56,46,57,48,49,54,53,53,44,52,53,46,57,53,57,52,49,54,93,44,91,45,49,48,56,46,57,48,52,55,50,54,44,52,53,46,54,56,50,56,50,49,93,44,91,45,49,48,56,46,56,52,51,48,49,54,44,52,53,46,54,49,49,48,52,50,93,44,91,45,49,48,56,46,54,52,53,51,50,53,44,52,53,46,52,54,52,48,55,51,93,44,91,45,49,48,56,46,51,49,54,51,55,52,44,52,53,46,52,54,48,53,48,57,93,44,91,45,49,48,56,46,49,57,51,50,48,53,44,52,53,46,53,49,56,53,51,56,93,44,91,45,49,48,56,46,48,54,57,55,53,50,44,52,53,46,53,49,56,53,51,53,93,44,91,45,49,48,56,46,48,52,55,51,53,50,44,52,53,46,56,57,57,52,55,57,93,44,91,45,49,48,55,46,56,56,49,56,52,54,44,52,53,46,56,57,57,50,51,51,93,44,91,45,49,48,55,46,54,55,52,52,53,52,44,52,54,46,48,52,51,54,49,93,44,91,45,49,48,55,46,53,49,49,53,51,52,44,52,54,46,48,52,51,52,48,51,93,44,91,45,49,48,55,46,52,54,54,57,57,54,44,52,54,46,49,50,57,57,57,53,93,44,91,45,49,48,55,46,55,51,56,53,52,56,44,52,54,46,52,56,49,56,48,54,93,44,91,45,49,48,55,46,55,56,49,50,49,52,44,52,54,46,52,57,54,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,48,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,52,55,49,50,56,44,51,56,46,51,55,52,52,51,50,93,44,91,45,56,50,46,49,57,53,55,53,49,44,51,56,46,51,50,51,52,57,57,93,44,91,45,56,50,46,50,54,52,56,52,57,44,51,56,46,50,50,57,49,57,57,93,44,91,45,56,50,46,50,56,53,54,57,51,44,51,56,46,49,52,52,57,53,50,93,44,91,45,56,50,46,50,48,50,50,51,54,44,51,56,46,48,51,54,49,57,51,93,44,91,45,56,50,46,51,48,54,51,57,49,44,51,55,46,57,52,51,54,52,93,44,91,45,56,50,46,49,57,48,54,53,56,44,51,55,46,57,55,52,55,55,56,93,44,91,45,56,49,46,57,51,50,53,48,55,44,51,56,46,48,50,53,51,53,54,93,44,91,45,56,49,46,57,51,50,52,52,52,44,51,56,46,49,53,48,48,56,53,93,44,91,45,56,49,46,56,51,51,52,55,44,51,56,46,50,48,57,53,55,93,44,91,45,56,49,46,56,49,56,50,51,52,44,51,56,46,51,49,54,55,53,49,93,44,91,45,56,49,46,57,49,53,49,57,55,44,51,56,46,51,50,53,53,57,55,93,44,91,45,56,50,46,48,52,55,49,50,56,44,51,56,46,51,55,52,52,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,49,52,56,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,56,56,53,51,53,50,44,51,57,46,53,56,48,49,48,56,93,44,91,45,49,50,50,46,56,57,48,51,49,44,51,57,46,53,50,57,48,49,52,93,44,91,45,49,50,51,46,48,54,51,49,56,49,44,51,57,46,53,48,51,53,51,57,93,44,91,45,49,50,51,46,48,55,53,49,49,52,44,51,57,46,52,48,55,54,56,51,93,44,91,45,49,50,51,46,48,49,50,55,49,44,51,57,46,50,51,54,49,56,56,93,44,91,45,49,50,51,46,48,57,51,48,49,51,44,51,57,46,48,55,49,57,57,52,93,44,91,45,49,50,50,46,57,56,54,54,52,44,51,56,46,57,57,55,50,56,51,93,44,91,45,49,50,50,46,57,52,56,56,54,53,44,51,56,46,57,48,48,50,50,93,44,91,45,49,50,50,46,56,50,49,53,57,50,44,51,56,46,56,53,48,49,52,93,44,91,45,49,50,50,46,54,50,55,51,57,54,44,51,56,46,54,54,55,53,48,54,93,44,91,45,49,50,50,46,52,54,51,56,57,44,51,56,46,55,48,53,50,48,51,93,44,91,45,49,50,50,46,51,57,53,48,53,54,44,51,56,46,56,54,52,50,52,53,93,44,91,45,49,50,50,46,51,52,48,49,55,50,44,51,56,46,57,50,52,50,52,54,93,44,91,45,49,50,50,46,52,56,51,56,55,57,44,51,57,46,48,54,54,57,53,53,93,44,91,45,49,50,50,46,53,49,53,51,51,49,44,51,57,46,50,48,57,50,49,53,93,44,91,45,49,50,50,46,54,57,49,51,54,49,44,51,57,46,50,52,55,52,51,49,93,44,91,45,49,50,50,46,55,55,53,48,52,51,44,51,57,46,51,49,49,55,55,56,93,44,91,45,49,50,50,46,55,51,57,48,54,50,44,51,57,46,51,56,51,50,54,54,93,44,91,45,49,50,50,46,55,51,53,54,51,57,44,51,57,46,53,56,48,54,54,56,93,44,91,45,49,50,50,46,56,56,53,51,53,50,44,51,57,46,53,56,48,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,71,114,97,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,50,54,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,55,54,54,49,50,44,51,49,46,48,55,56,56,56,51,93,44,91,45,56,52,46,51,56,48,55,48,53,44,51,48,46,54,56,57,57,57,51,93,44,91,45,56,52,46,50,56,50,53,53,57,44,51,48,46,54,56,53,51,51,52,93,44,91,45,56,52,46,48,56,51,55,53,55,44,51,48,46,54,55,53,56,48,52,93,44,91,45,56,52,46,48,55,55,49,49,57,44,51,48,46,57,49,52,57,54,53,93,44,91,45,56,52,46,49,49,54,54,52,52,44,51,49,46,48,55,55,57,55,49,93,44,91,45,56,52,46,51,55,54,54,49,50,44,51,49,46,48,55,56,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,111,110,101,106,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,52,50,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,55,49,56,52,54,51,44,51,54,46,57,57,53,56,52,49,93,44,91,45,49,48,53,46,55,52,51,51,51,57,44,51,55,46,51,53,54,55,57,56,93,44,91,45,49,48,54,46,48,51,56,57,49,50,44,51,55,46,51,53,54,57,53,51,93,44,91,45,49,48,54,46,48,51,57,51,51,49,44,51,55,46,52,48,48,56,53,50,93,44,91,45,49,48,54,46,54,55,56,51,55,51,44,51,55,46,52,48,51,53,57,54,93,44,91,45,49,48,54,46,54,55,56,51,53,52,44,51,55,46,50,50,56,53,54,54,93,44,91,45,49,48,54,46,52,55,54,48,57,44,51,54,46,57,57,51,53,52,56,93,44,91,45,49,48,54,46,48,48,54,51,49,54,44,51,54,46,57,57,53,50,54,55,93,44,91,45,49,48,53,46,55,49,56,52,54,51,44,51,54,46,57,57,53,56,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,117,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,56,49,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,54,52,54,51,57,52,44,51,55,46,53,52,49,48,54,51,93,44,91,45,49,49,48,46,55,52,50,49,57,56,44,51,55,46,51,52,52,51,57,50,93,44,91,45,49,49,48,46,56,49,50,53,48,49,44,51,55,46,51,50,52,57,57,50,93,44,91,45,49,49,48,46,56,57,57,53,49,55,44,51,55,46,49,55,54,49,53,51,93,44,91,45,49,49,48,46,57,57,50,52,48,52,44,51,55,46,49,49,49,48,57,51,93,44,91,45,49,49,49,46,49,55,56,51,52,57,44,51,55,46,49,48,50,54,49,51,93,44,91,45,49,49,49,46,52,49,50,55,56,52,44,51,55,46,48,48,49,53,48,51,93,44,91,45,49,49,48,46,55,53,48,54,57,44,51,55,46,48,48,51,48,48,55,93,44,91,45,49,49,48,46,48,48,48,54,56,56,44,51,54,46,57,57,56,51,52,57,93,44,91,45,49,48,57,46,48,52,53,49,55,50,44,51,54,46,57,57,56,57,55,55,93,44,91,45,49,48,57,46,48,52,51,51,54,54,44,51,55,46,52,56,52,56,49,56,93,44,91,45,49,48,57,46,48,52,49,57,57,50,44,51,55,46,56,56,49,48,56,51,93,44,91,45,49,48,57,46,48,52,50,53,56,51,44,51,56,46,49,53,51,48,50,56,93,44,91,45,49,48,57,46,48,54,48,49,49,57,44,51,56,46,52,57,57,57,56,57,93,44,91,45,49,49,48,46,48,50,53,52,48,50,44,51,56,46,52,57,57,57,56,49,93,44,91,45,49,49,48,46,48,51,49,57,55,51,44,51,56,46,51,56,52,57,53,55,93,44,91,45,49,48,57,46,57,48,57,55,54,44,51,56,46,50,55,49,50,51,93,44,91,45,49,48,57,46,57,50,55,57,57,53,44,51,56,46,49,53,49,56,56,52,93,44,91,45,49,49,48,46,48,48,57,52,57,52,44,51,56,46,49,48,57,54,53,54,93,44,91,45,49,49,48,46,50,49,52,57,52,57,44,51,55,46,56,57,50,53,53,53,93,44,91,45,49,49,48,46,51,54,52,49,52,54,44,51,55,46,56,57,50,49,56,53,93,44,91,45,49,49,48,46,52,51,55,53,51,56,44,51,55,46,56,48,54,57,50,93,44,91,45,49,49,48,46,53,48,49,53,57,52,44,51,55,46,54,53,93,44,91,45,49,49,48,46,54,52,54,51,57,52,44,51,55,46,53,52,49,48,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,53,53,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,48,57,52,55,55,44,51,57,46,56,54,54,55,48,53,93,44,91,45,56,55,46,48,49,51,48,54,50,44,51,57,46,54,48,52,55,56,55,93,44,91,45,56,54,46,57,51,57,57,56,49,44,51,57,46,52,55,51,51,52,53,93,44,91,45,56,54,46,54,56,53,55,49,44,51,57,46,52,55,48,48,54,51,93,44,91,45,56,54,46,54,53,54,54,53,44,51,57,46,54,48,49,51,57,53,93,44,91,45,56,54,46,54,56,55,52,48,54,44,51,57,46,54,51,48,52,51,55,93,44,91,45,56,54,46,54,57,53,49,50,55,44,51,57,46,56,54,52,56,52,53,93,44,91,45,56,55,46,48,48,57,52,55,55,44,51,57,46,56,54,54,55,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,71,111,111,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,54,57,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,48,51,55,55,55,52,44,52,50,46,57,49,49,56,54,52,93,44,91,45,49,49,52,46,57,48,49,54,51,54,44,52,50,46,56,53,57,49,48,56,93,44,91,45,49,49,52,46,56,49,57,57,55,49,44,52,50,46,54,54,57,55,52,54,93,44,91,45,49,49,52,46,54,49,54,52,56,55,44,52,50,46,54,52,57,50,57,56,93,44,91,45,49,49,52,46,53,57,52,51,55,53,44,52,50,46,56,53,48,57,48,49,93,44,91,45,49,49,52,46,53,57,52,54,48,53,44,52,51,46,49,57,56,51,52,53,93,44,91,45,49,49,53,46,48,56,54,49,53,53,44,52,51,46,49,57,56,48,54,52,93,44,91,45,49,49,53,46,48,56,54,56,53,50,44,52,50,46,57,49,52,53,54,93,44,91,45,49,49,53,46,48,51,55,55,55,52,44,52,50,46,57,49,49,56,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,84,105,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,52,52,54,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,56,57,46,53,48,50,49,49,56,44,51,53,46,53,56,48,54,50,49,93,44,91,45,56,57,46,54,49,50,57,55,54,44,51,53,46,54,52,51,50,51,54,93,44,91,45,56,57,46,55,57,51,49,52,53,44,51,53,46,54,51,55,51,53,54,93,44,91,45,56,57,46,57,48,57,55,57,55,44,51,53,46,53,51,55,57,49,52,93,44,91,45,57,48,46,48,53,48,52,51,55,44,51,53,46,53,49,53,56,57,52,93,44,91,45,57,48,46,48,52,49,53,54,51,44,51,53,46,51,57,54,54,50,93,44,91,45,56,57,46,54,51,50,55,55,54,44,51,53,46,51,55,53,56,50,52,93,44,91,45,56,57,46,52,55,52,49,55,49,44,51,53,46,52,48,51,48,51,57,93,44,91,45,56,57,46,53,48,50,49,49,56,44,51,53,46,53,56,48,54,50,49,93,93,93,44,91,91,91,45,57,48,46,49,52,48,50,53,55,44,51,53,46,52,51,54,54,51,54,93,44,91,45,57,48,46,48,55,52,57,57,50,44,51,53,46,51,56,52,49,53,50,93,44,91,45,57,48,46,48,53,52,51,50,50,44,51,53,46,51,56,57,50,55,55,93,44,91,45,57,48,46,49,52,48,50,53,55,44,51,53,46,52,51,54,54,51,54,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,87,101,115,116,32,66,97,116,111,110,32,82,111,117,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,51,48,56,55,44,51,48,46,54,53,56,54,55,55,93,44,91,45,57,49,46,52,49,52,55,54,44,51,48,46,53,49,49,53,49,54,93,44,91,45,57,49,46,52,56,53,48,56,57,44,51,48,46,52,57,55,49,51,56,93,44,91,45,57,49,46,51,49,49,54,54,44,51,48,46,51,50,50,52,55,49,93,44,91,45,57,49,46,49,52,50,49,48,53,44,51,48,46,51,50,51,50,57,51,93,44,91,45,57,49,46,50,52,49,53,48,56,44,51,48,46,51,53,55,53,57,50,93,44,91,45,57,49,46,49,57,55,50,48,56,44,51,48,46,53,48,55,48,56,56,93,44,91,45,57,49,46,51,49,53,50,56,50,44,51,48,46,53,57,52,50,56,56,93,44,91,45,57,49,46,50,57,55,54,53,56,44,51,48,46,54,52,57,53,52,56,93,44,91,45,57,49,46,51,49,48,48,54,49,44,51,48,46,54,53,51,57,54,49,93,44,91,45,57,49,46,51,51,48,56,55,44,51,48,46,54,53,56,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,49,53,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,57,55,50,57,54,44,52,48,46,53,56,52,48,49,52,93,44,91,45,57,51,46,51,55,52,51,56,54,44,52,48,46,53,56,48,51,51,51,93,44,91,45,57,51,46,51,54,54,57,51,53,44,52,48,46,51,56,50,57,57,57,93,44,91,45,57,50,46,56,53,53,51,49,51,44,52,48,46,51,56,53,56,57,52,93,44,91,45,57,50,46,56,53,53,54,50,57,44,52,48,46,51,52,50,55,51,54,93,44,91,45,57,50,46,54,56,52,49,54,55,44,52,48,46,51,52,51,52,54,54,93,44,91,45,57,50,46,55,49,52,53,57,54,44,52,48,46,53,56,57,52,50,55,93,44,91,45,57,51,46,48,57,55,50,57,54,44,52,48,46,53,56,52,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,84,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,53,57,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,48,53,50,52,51,52,44,52,52,46,52,55,56,52,49,49,93,44,91,45,49,49,49,46,48,52,55,49,53,55,44,52,51,46,57,56,51,52,53,57,93,44,91,45,49,49,49,46,48,52,53,52,55,51,44,52,51,46,53,48,49,48,53,49,93,44,91,45,49,49,49,46,48,52,52,56,57,51,44,52,51,46,51,49,53,55,49,57,93,44,91,45,49,49,48,46,56,49,51,57,57,54,44,52,51,46,51,49,51,57,52,93,44,91,45,49,49,48,46,56,49,51,57,57,51,44,52,51,46,50,51,53,49,55,56,93,44,91,45,49,49,48,46,53,55,56,54,53,54,44,52,51,46,50,51,53,50,50,52,93,44,91,45,49,49,48,46,53,55,56,51,56,44,52,51,46,50,57,49,54,52,93,44,91,45,49,49,48,46,51,52,51,57,53,57,44,52,51,46,50,57,49,49,54,53,93,44,91,45,49,49,48,46,51,52,52,50,49,56,44,52,51,46,51,55,55,57,49,56,93,44,91,45,49,49,48,46,48,53,55,51,49,44,52,51,46,51,55,55,55,54,56,93,44,91,45,49,49,48,46,48,53,49,53,55,44,52,51,46,52,54,52,55,56,51,93,44,91,45,49,49,48,46,48,53,51,49,55,57,44,52,52,46,48,48,56,48,50,50,93,44,91,45,49,49,48,46,49,49,57,49,57,51,44,52,52,46,49,51,50,53,56,52,93,44,91,45,49,49,48,46,49,53,48,49,55,53,44,52,52,46,50,56,57,54,54,54,93,44,91,45,49,49,48,46,50,57,54,54,52,56,44,52,52,46,52,51,49,51,52,49,93,44,91,45,49,49,48,46,50,55,54,53,48,54,44,52,52,46,53,49,53,54,54,53,93,44,91,45,49,49,48,46,51,55,53,51,51,52,44,52,52,46,53,56,51,48,49,54,93,44,91,45,49,49,48,46,54,54,55,56,57,57,44,52,52,46,53,56,50,55,57,50,93,44,91,45,49,49,48,46,54,54,55,56,54,55,44,52,52,46,54,54,54,50,57,49,93,44,91,45,49,49,49,46,48,53,51,52,52,55,44,52,52,46,54,54,54,50,54,56,93,44,91,45,49,49,49,46,48,53,50,52,51,52,44,52,52,46,52,55,56,52,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,56,50,56,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,53,54,56,49,50,44,52,50,46,57,56,56,49,55,93,44,91,45,57,49,46,48,53,49,50,55,53,44,52,50,46,55,51,55,48,48,49,93,44,91,45,57,48,46,56,57,54,57,53,49,44,52,50,46,54,55,53,48,56,50,93,44,91,45,57,48,46,55,50,48,50,48,57,44,52,50,46,54,52,48,55,53,56,93,44,91,45,57,48,46,54,52,50,56,52,51,44,52,50,46,53,48,56,52,56,49,93,44,91,45,57,48,46,52,50,54,51,55,55,44,52,50,46,53,48,55,49,55,51,93,44,91,45,57,48,46,52,50,54,57,48,50,44,52,50,46,56,49,50,56,54,50,93,44,91,45,57,48,46,52,50,57,56,50,53,44,52,51,46,50,48,48,57,52,93,44,91,45,57,48,46,54,54,54,55,56,54,44,52,51,46,49,55,49,55,55,55,93,44,91,45,57,49,46,48,54,53,50,55,44,52,50,46,57,57,50,48,55,52,93,44,91,45,57,49,46,49,53,54,56,49,50,44,52,50,46,57,56,56,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,77,111,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,52,52,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,54,54,50,48,49,53,44,52,54,46,54,51,52,54,93,44,91,45,49,48,48,46,55,56,56,55,54,56,44,52,54,46,54,57,49,55,48,49,93,44,91,45,49,48,48,46,57,51,53,57,56,51,44,52,54,46,57,56,50,56,52,93,44,91,45,49,48,49,46,55,54,52,51,57,50,44,52,54,46,57,56,49,51,48,54,93,44,91,45,49,48,50,46,48,57,53,57,48,52,44,52,54,46,57,56,49,51,50,57,93,44,91,45,49,48,50,46,48,57,54,50,52,44,52,54,46,55,49,55,55,55,50,93,44,91,45,49,48,49,46,55,49,56,50,50,56,44,52,54,46,55,49,55,56,51,52,93,44,91,45,49,48,49,46,55,49,56,52,54,50,44,52,54,46,54,51,49,50,56,51,93,44,91,45,49,48,49,46,50,57,56,56,50,51,44,52,54,46,54,51,48,52,51,49,93,44,91,45,49,48,49,46,50,57,56,57,56,57,44,52,54,46,51,55,49,52,48,52,93,44,91,45,49,48,49,46,48,52,56,53,50,55,44,52,54,46,51,55,49,52,53,93,44,91,45,49,48,49,46,48,50,53,54,57,49,44,52,54,46,50,56,52,52,49,52,93,44,91,45,49,48,48,46,57,49,56,57,53,44,52,54,46,51,57,52,57,56,51,93,44,91,45,49,48,48,46,56,49,52,56,55,51,44,52,54,46,51,56,52,55,48,49,93,44,91,45,49,48,48,46,53,57,48,49,57,57,44,52,54,46,52,50,55,56,57,52,93,44,91,45,49,48,48,46,53,52,52,53,53,53,44,52,54,46,53,51,51,55,54,54,93,44,91,45,49,48,48,46,54,54,50,48,49,53,44,52,54,46,54,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,104,111,119,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,48,53,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,48,54,53,56,52,44,51,54,46,50,52,51,55,57,54,93,44,91,45,55,54,46,55,51,54,57,51,51,44,51,54,46,49,53,48,53,56,51,93,44,91,45,55,54,46,54,56,50,53,51,53,44,51,54,46,48,51,48,57,52,55,93,44,91,45,55,54,46,54,48,54,50,49,52,44,51,53,46,57,55,56,48,53,49,93,44,91,45,55,54,46,51,57,54,55,57,52,44,51,54,46,48,50,54,52,52,51,93,44,91,45,55,54,46,52,48,50,57,53,55,44,51,54,46,48,55,50,56,54,55,93,44,91,45,55,54,46,53,55,51,48,55,51,44,51,54,46,49,49,49,55,53,55,93,44,91,45,55,54,46,53,57,48,49,48,55,44,51,54,46,50,51,56,56,54,50,93,44,91,45,55,54,46,53,53,57,54,52,54,44,51,54,46,51,53,49,48,53,54,93,44,91,45,55,54,46,54,57,54,53,55,49,44,51,54,46,50,57,54,49,51,56,93,44,91,45,55,54,46,55,48,54,53,56,52,44,51,54,46,50,52,51,55,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,117,110,99,111,109,98,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,52,52,55,52,44,34,98,101,100,115,34,58,57,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,48,56,54,48,50,44,51,53,46,56,49,56,49,55,56,93,44,91,45,56,50,46,53,49,51,49,54,49,44,51,53,46,56,48,51,51,56,93,44,91,45,56,50,46,56,48,55,48,53,54,44,51,53,46,54,56,53,56,55,52,93,44,91,45,56,50,46,56,56,51,57,48,57,44,51,53,46,54,55,56,50,51,53,93,44,91,45,56,50,46,55,54,53,56,57,51,44,51,53,46,53,54,55,52,57,53,93,44,91,45,56,50,46,55,52,53,49,51,57,44,51,53,46,52,50,50,57,54,55,93,44,91,45,56,50,46,52,55,48,53,53,55,44,51,53,46,52,52,53,49,55,52,93,44,91,45,56,50,46,51,51,50,51,51,49,44,51,53,46,53,48,48,49,49,55,93,44,91,45,56,50,46,50,54,53,55,57,53,44,51,53,46,52,54,55,56,49,56,93,44,91,45,56,50,46,49,54,57,48,52,57,44,51,53,46,53,50,55,56,49,49,93,44,91,45,56,50,46,50,53,49,50,53,49,44,51,53,46,53,53,57,57,52,51,93,44,91,45,56,50,46,50,55,53,51,57,57,44,51,53,46,55,48,52,52,51,56,93,44,91,45,56,50,46,52,48,56,54,48,50,44,51,53,46,56,49,56,49,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,80,108,117,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,57,57,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,52,51,54,56,56,54,44,52,48,46,49,53,49,57,48,53,93,44,91,45,49,50,49,46,51,54,49,50,48,54,44,51,57,46,56,53,53,52,55,51,93,44,91,45,49,50,49,46,49,51,54,55,49,53,44,51,57,46,54,50,56,49,54,57,93,44,91,45,49,50,49,46,48,55,54,54,57,53,44,51,57,46,53,57,55,50,54,52,93,44,91,45,49,50,49,46,48,48,57,52,55,55,44,51,57,46,54,51,57,52,53,57,93,44,91,45,49,50,48,46,56,55,49,52,57,56,44,51,57,46,55,55,54,53,50,57,93,44,91,45,49,50,48,46,54,53,52,50,50,55,44,51,57,46,55,48,54,54,50,57,93,44,91,45,49,50,48,46,49,52,55,49,52,57,44,51,57,46,55,48,55,54,53,56,93,44,91,45,49,50,48,46,49,49,48,54,50,55,44,51,57,46,55,54,53,55,55,57,93,44,91,45,49,50,48,46,49,48,56,55,54,49,44,51,57,46,57,51,57,53,49,93,44,91,45,49,50,48,46,50,48,57,54,52,49,44,52,48,46,48,56,54,48,48,56,93,44,91,45,49,50,48,46,51,52,49,51,56,53,44,52,48,46,49,49,53,50,52,51,93,44,91,45,49,50,48,46,53,55,54,56,50,53,44,52,48,46,50,56,53,52,51,93,44,91,45,49,50,48,46,55,54,52,52,48,51,44,52,48,46,51,49,54,48,49,93,44,91,45,49,50,48,46,56,55,49,55,56,50,44,52,48,46,50,52,49,54,52,93,44,91,45,49,50,49,46,48,54,49,52,57,51,44,52,48,46,50,53,54,52,49,55,93,44,91,45,49,50,49,46,48,54,49,52,49,55,44,52,48,46,52,52,54,53,51,54,93,44,91,45,49,50,49,46,51,50,55,56,50,54,44,52,48,46,52,52,53,51,54,55,93,44,91,45,49,50,49,46,52,57,55,54,51,53,44,52,48,46,52,52,53,53,57,49,93,44,91,45,49,50,49,46,52,55,48,51,57,53,44,52,48,46,51,53,48,50,49,51,93,44,91,45,49,50,49,46,51,52,57,44,52,48,46,50,54,52,52,53,52,93,44,91,45,49,50,49,46,52,51,54,56,56,54,44,52,48,46,49,53,49,57,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,51,48,34,44,34,78,65,77,69,34,58,34,80,101,116,101,114,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,56,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,52,55,52,48,56,44,51,55,46,50,50,51,48,54,54,93,44,91,45,55,55,46,51,57,57,50,48,51,44,51,55,46,49,55,48,56,53,93,44,91,45,55,55,46,51,55,54,55,56,53,44,51,55,46,50,52,52,56,52,57,93,44,91,45,55,55,46,51,56,51,56,53,54,44,51,55,46,50,51,56,57,48,54,93,44,91,45,55,55,46,52,48,51,54,55,49,44,51,55,46,50,51,55,51,52,54,93,44,91,45,55,55,46,52,49,54,53,48,49,44,51,55,46,50,51,51,50,48,56,93,44,91,45,55,55,46,52,52,55,52,48,56,44,51,55,46,50,50,51,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,52,55,55,44,34,98,101,100,115,34,58,49,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,52,51,52,51,49,53,44,52,52,46,53,48,54,48,57,56,93,44,91,45,55,50,46,52,57,50,57,49,52,44,52,52,46,52,50,51,48,51,93,44,91,45,55,50,46,54,53,52,51,57,56,44,52,52,46,51,57,56,50,50,52,93,44,91,45,55,50,46,56,48,52,57,57,53,44,52,52,46,52,53,49,54,55,54,93,44,91,45,55,50,46,57,53,50,49,54,55,44,52,52,46,49,54,49,50,55,49,93,44,91,45,55,50,46,57,49,54,55,55,56,44,52,52,46,48,55,49,56,56,54,93,44,91,45,55,50,46,55,52,50,51,48,51,44,52,52,46,48,50,57,54,53,53,93,44,91,45,55,50,46,53,56,57,56,53,53,44,52,52,46,49,53,57,51,52,51,93,44,91,45,55,50,46,52,52,51,48,51,50,44,52,52,46,49,50,56,54,54,57,93,44,91,45,55,50,46,51,54,56,51,53,51,44,52,52,46,50,48,52,48,53,55,93,44,91,45,55,50,46,50,50,51,54,56,57,44,52,52,46,52,50,52,53,55,51,93,44,91,45,55,50,46,52,51,52,51,49,53,44,52,52,46,53,48,54,48,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,101,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,50,52,44,34,98,101,100,115,34,58,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,57,53,55,51,55,49,44,52,53,46,48,51,57,53,54,57,93,44,91,45,49,48,50,46,57,54,52,49,50,53,44,52,52,46,54,48,52,50,56,55,93,44,91,45,49,48,51,46,53,54,55,54,53,51,44,52,52,46,54,48,52,48,57,56,93,44,91,45,49,48,51,46,53,55,52,51,57,54,44,52,52,46,50,53,54,48,55,55,93,44,91,45,49,48,51,46,52,53,51,48,49,54,44,52,52,46,50,53,54,54,48,57,93,44,91,45,49,48,51,46,52,53,50,52,53,51,44,52,52,46,49,52,48,55,55,50,93,44,91,45,49,48,50,46,51,56,56,48,52,53,44,52,52,46,49,52,48,49,56,51,93,44,91,45,49,48,50,46,51,52,49,54,51,53,44,52,52,46,51,52,56,55,55,50,93,44,91,45,49,48,50,46,50,56,52,52,48,52,44,52,52,46,52,52,49,50,51,50,93,44,91,45,49,48,50,46,49,49,50,53,51,53,44,52,52,46,52,51,53,56,56,54,93,44,91,45,49,48,50,46,48,48,49,48,54,56,44,52,52,46,53,49,48,57,50,54,93,44,91,45,49,48,50,46,48,48,48,52,51,50,44,52,52,46,53,49,49,54,54,51,93,44,91,45,49,48,49,46,57,57,57,57,57,44,52,53,46,48,51,56,50,55,52,93,44,91,45,49,48,50,46,57,53,55,51,55,49,44,52,53,46,48,51,57,53,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,52,53,50,51,44,34,98,101,100,115,34,58,51,56,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,51,55,53,56,55,44,51,57,46,57,50,55,49,51,55,93,44,91,45,56,54,46,50,51,57,55,51,57,44,51,57,46,57,50,54,48,53,53,93,44,91,45,56,54,46,51,50,54,50,57,51,44,51,57,46,57,50,52,48,50,57,93,44,91,45,56,54,46,51,50,54,51,52,49,44,51,57,46,54,51,50,49,55,55,93,44,91,45,56,54,46,50,52,57,56,56,53,44,51,57,46,54,51,51,54,52,53,93,44,91,45,56,53,46,57,53,50,48,56,44,51,57,46,54,51,56,51,52,53,93,44,91,45,56,53,46,57,53,49,55,50,49,44,51,57,46,54,57,55,49,51,54,93,44,91,45,56,53,46,57,51,55,53,56,55,44,51,57,46,57,50,55,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,105,99,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,50,54,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,53,51,52,51,56,44,51,51,46,53,54,51,55,48,51,93,44,91,45,57,49,46,52,53,55,51,55,44,51,51,46,51,56,56,57,55,52,93,44,91,45,57,49,46,52,54,48,52,44,51,51,46,48,48,53,57,49,53,93,44,91,45,57,49,46,52,51,53,55,56,50,44,51,51,46,48,48,54,48,57,57,93,44,91,45,57,49,46,50,54,53,48,49,56,44,51,51,46,48,48,53,48,56,51,93,44,91,45,57,49,46,49,54,54,48,55,51,44,51,51,46,48,48,52,49,48,54,93,44,91,45,57,49,46,49,54,54,50,56,50,44,51,51,46,48,49,49,51,51,49,93,44,91,45,57,49,46,48,56,55,53,56,57,44,51,51,46,49,52,53,49,55,54,93,44,91,45,57,49,46,49,54,57,52,53,57,44,51,51,46,52,53,50,49,51,55,93,44,91,45,57,49,46,50,49,53,54,55,49,44,51,51,46,53,50,57,52,50,51,93,44,91,45,57,49,46,50,51,48,56,57,55,44,51,51,46,53,54,49,52,93,44,91,45,57,49,46,52,53,51,52,51,56,44,51,51,46,53,54,51,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,105,98,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,52,57,48,44,34,98,101,100,115,34,58,49,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,49,48,54,56,53,44,51,50,46,57,53,50,55,57,50,93,44,91,45,56,51,46,56,57,49,57,50,50,44,51,50,46,56,52,56,51,53,49,93,44,91,45,56,51,46,56,48,56,50,54,55,44,51,50,46,55,50,56,54,56,50,93,44,91,45,56,51,46,55,48,49,49,53,50,44,51,50,46,54,57,50,49,54,57,93,44,91,45,56,51,46,53,57,55,54,53,54,44,51,50,46,54,54,52,51,51,56,93,44,91,45,56,51,46,53,49,51,53,49,49,44,51,50,46,56,52,52,56,54,56,93,44,91,45,56,51,46,54,53,56,50,49,49,44,51,50,46,56,56,55,57,49,51,93,44,91,45,56,51,46,55,49,48,54,56,53,44,51,50,46,57,53,50,55,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,71,117,97,121,97,110,105,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,55,57,55,53,53,55,44,49,56,46,49,51,51,52,52,53,93,44,91,45,54,54,46,56,53,56,50,51,51,44,49,55,46,57,53,48,56,50,53,93,44,91,45,54,54,46,56,51,57,57,50,57,44,49,55,46,56,57,56,57,57,51,93,44,91,45,54,54,46,55,55,52,49,50,51,44,49,55,46,57,49,52,55,57,54,93,44,91,45,54,54,46,55,54,57,48,52,57,44,49,56,46,49,51,52,57,56,51,93,44,91,45,54,54,46,55,57,55,53,53,55,44,49,56,46,49,51,51,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,83,97,110,32,83,101,98,97,115,116,105,195,161,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,57,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,48,50,55,49,55,51,44,49,56,46,51,57,51,51,55,54,93,44,91,45,54,55,46,48,53,50,53,56,51,44,49,56,46,51,48,54,54,53,53,93,44,91,45,54,55,46,48,51,55,57,51,53,44,49,56,46,50,56,57,55,48,53,93,44,91,45,54,54,46,57,48,55,50,51,54,44,49,56,46,50,53,51,48,57,93,44,91,45,54,54,46,56,57,51,51,51,57,44,49,56,46,51,54,55,48,56,57,93,44,91,45,54,54,46,56,57,56,57,44,49,56,46,51,54,54,49,48,56,93,44,91,45,54,54,46,57,50,50,48,50,44,49,56,46,51,57,51,50,48,52,93,44,91,45,54,55,46,48,50,55,49,55,51,44,49,56,46,51,57,51,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,80,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,54,52,52,44,34,98,101,100,115,34,58,49,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,49,54,52,52,53,50,44,51,53,46,55,50,56,56,51,49,93,44,91,45,57,51,46,49,54,55,56,44,51,53,46,53,57,55,54,57,53,93,44,91,45,57,51,46,50,50,51,54,51,51,44,51,53,46,52,54,56,53,57,51,93,44,91,45,57,51,46,50,57,53,57,49,44,51,53,46,52,54,57,57,49,53,93,44,91,45,57,51,46,50,57,57,48,49,44,51,53,46,51,50,55,54,52,52,93,44,91,45,57,51,46,50,55,56,49,51,54,44,51,53,46,51,49,55,53,48,51,93,44,91,45,57,51,46,49,53,54,48,55,56,44,51,53,46,50,51,53,51,48,55,93,44,91,45,57,51,46,48,56,52,54,55,56,44,51,53,46,49,50,55,51,57,93,44,91,45,57,50,46,56,57,54,49,48,57,44,51,53,46,49,55,48,54,55,56,93,44,91,45,57,50,46,56,53,53,44,51,53,46,49,55,50,55,55,55,93,44,91,45,57,50,46,56,53,48,54,50,52,44,51,53,46,52,54,50,57,53,93,44,91,45,57,50,46,56,49,51,52,49,55,44,51,53,46,53,52,57,93,44,91,45,57,50,46,56,48,57,55,54,51,44,51,53,46,55,50,50,52,48,49,93,44,91,45,57,50,46,57,53,49,51,49,53,44,51,53,46,55,50,52,54,54,51,93,44,91,45,57,51,46,49,54,52,52,53,50,44,51,53,46,55,50,56,56,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,83,111,117,116,104,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,51,48,49,50,55,44,51,54,46,55,48,55,54,53,56,93,44,91,45,55,55,46,51,54,48,57,48,54,44,51,54,46,53,54,52,55,54,93,44,91,45,55,55,46,50,57,54,56,55,53,44,51,54,46,53,52,52,56,53,53,93,44,91,45,55,55,46,49,54,52,51,55,55,44,51,54,46,53,52,54,51,50,57,93,44,91,45,55,54,46,57,49,53,57,55,55,44,51,54,46,53,52,51,56,56,52,93,44,91,45,55,54,46,57,49,53,56,57,57,44,51,54,46,53,53,50,49,52,57,93,44,91,45,55,54,46,56,57,55,53,57,50,44,51,54,46,54,52,52,48,53,93,44,91,45,55,54,46,57,48,57,54,55,50,44,51,54,46,54,52,56,49,55,53,93,44,91,45,55,54,46,57,53,53,52,50,52,44,51,54,46,54,54,52,53,56,55,93,44,91,45,55,54,46,57,50,52,54,50,57,44,51,54,46,55,48,55,55,50,57,93,44,91,45,55,54,46,56,49,52,57,52,49,44,51,54,46,57,48,48,52,54,53,93,44,91,45,55,54,46,56,52,57,54,56,52,44,51,54,46,57,57,54,50,49,49,93,44,91,45,55,54,46,57,53,51,53,52,54,44,51,54,46,57,52,52,52,53,93,44,91,45,55,55,46,52,51,48,49,50,55,44,51,54,46,55,48,55,54,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,71,114,101,103,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,52,57,52,44,34,98,101,100,115,34,58,55,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,56,54,57,51,53,44,51,50,46,53,51,55,50,52,54,93,44,91,45,57,52,46,57,56,53,52,49,49,44,51,50,46,51,55,48,56,50,93,44,91,45,57,52,46,54,51,56,51,52,55,44,51,50,46,51,55,48,53,51,57,93,44,91,45,57,52,46,53,55,57,50,49,57,44,51,50,46,51,57,52,57,49,54,93,44,91,45,57,52,46,55,48,49,57,56,54,44,51,50,46,52,50,49,55,56,50,93,44,91,45,57,52,46,55,48,49,55,57,44,51,50,46,54,53,50,50,48,57,93,44,91,45,57,52,46,57,56,54,57,51,53,44,51,50,46,53,51,55,50,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,82,111,99,107,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,51,54,56,54,44,34,98,101,100,115,34,58,49,51,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,56,49,51,56,52,44,52,49,46,51,50,52,54,57,51,93,44,91,45,55,52,46,50,51,52,50,56,56,44,52,49,46,49,52,51,48,48,56,93,44,91,45,55,52,46,50,49,49,50,50,52,44,52,49,46,49,51,51,55,49,52,93,44,91,45,55,51,46,56,57,51,57,55,57,44,52,48,46,57,57,55,50,48,53,93,44,91,45,55,51,46,56,56,57,52,56,44,52,49,46,49,52,53,48,57,53,93,44,91,45,55,51,46,57,56,50,53,56,52,44,52,49,46,51,50,49,54,57,51,93,44,91,45,55,51,46,57,56,49,51,56,52,44,52,49,46,51,50,52,54,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,51,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,53,52,48,52,57,44,51,54,46,52,57,55,56,52,50,93,44,91,45,57,50,46,56,56,52,57,53,52,44,51,54,46,52,57,48,56,57,49,93,44,91,45,57,50,46,56,57,48,54,57,53,44,51,54,46,49,49,52,49,51,50,93,44,91,45,57,50,46,56,51,55,55,55,54,44,51,54,46,48,55,48,49,50,52,93,44,91,45,57,50,46,52,49,49,53,48,50,44,51,54,46,48,54,50,55,53,54,93,44,91,45,57,50,46,52,48,57,49,55,53,44,51,54,46,49,51,52,54,56,52,93,44,91,45,57,50,46,53,50,48,53,56,49,44,51,54,46,50,54,56,56,50,52,93,44,91,45,57,50,46,53,50,57,49,50,56,44,51,54,46,52,57,56,53,57,57,93,44,91,45,57,50,46,55,55,50,51,52,51,44,51,54,46,52,57,55,54,54,50,93,44,91,45,57,50,46,56,53,52,48,52,57,44,51,54,46,52,57,55,56,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,56,48,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,56,48,48,34,44,34,78,65,77,69,34,58,34,83,117,102,102,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,49,54,48,44,34,98,101,100,115,34,58,49,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,56,57,55,53,57,50,44,51,54,46,54,52,52,48,53,93,44,91,45,55,54,46,57,49,53,56,57,57,44,51,54,46,53,53,50,49,52,57,93,44,91,45,55,54,46,53,52,49,57,54,54,44,51,54,46,53,53,48,54,53,51,93,44,91,45,55,54,46,52,57,49,52,57,54,44,51,54,46,53,53,48,54,52,56,93,44,91,45,55,54,46,52,53,55,52,54,57,44,51,54,46,56,49,52,56,52,49,93,44,91,45,55,54,46,52,50,48,51,54,56,44,51,54,46,56,54,54,51,52,56,93,44,91,45,55,54,46,51,57,57,53,54,55,44,51,54,46,57,51,48,57,52,55,93,44,91,45,55,54,46,52,52,53,51,48,49,44,51,54,46,57,52,49,56,57,49,93,44,91,45,55,54,46,53,51,51,53,50,44,51,54,46,57,49,53,53,54,51,93,44,91,45,55,54,46,56,57,55,53,57,50,44,51,54,46,54,52,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,69,108,32,80,97,115,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,49,53,51,44,34,98,101,100,115,34,58,49,50,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,51,51,53,52,52,44,51,57,46,49,50,57,56,49,57,93,44,91,45,49,48,53,46,48,50,56,57,48,51,44,51,56,46,56,54,56,57,48,55,93,44,91,45,49,48,52,46,57,51,56,57,57,52,44,51,56,46,55,57,54,56,56,52,93,44,91,45,49,48,52,46,57,52,50,52,50,54,44,51,56,46,54,52,57,56,56,50,93,44,91,45,49,48,52,46,57,52,49,53,51,51,44,51,56,46,53,49,57,53,54,57,93,44,91,45,49,48,52,46,48,53,51,57,50,49,44,51,56,46,53,50,50,51,57,51,93,44,91,45,49,48,52,46,48,53,53,53,50,56,44,51,56,46,56,54,56,56,54,56,93,44,91,45,49,48,52,46,48,53,49,53,56,57,44,51,57,46,49,50,56,51,55,93,44,91,45,49,48,52,46,54,54,50,56,57,54,44,51,57,46,49,50,57,53,50,55,93,44,91,45,49,48,53,46,48,51,51,53,52,52,44,51,57,46,49,50,57,56,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,70,114,97,110,99,111,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,51,52,50,44,34,98,101,100,115,34,58,52,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,51,57,57,56,44,51,56,46,48,55,54,53,52,56,93,44,91,45,57,48,46,54,52,53,49,51,53,44,51,55,46,55,51,52,56,49,51,93,44,91,45,57,48,46,54,52,55,56,55,52,44,51,55,46,54,52,50,56,48,57,93,44,91,45,57,48,46,53,51,53,48,49,54,44,51,55,46,54,52,51,54,52,49,93,44,91,45,57,48,46,49,52,54,55,55,56,44,51,55,46,54,52,49,54,49,56,93,44,91,45,57,48,46,49,49,48,53,51,55,44,51,55,46,54,55,49,51,52,93,44,91,45,57,48,46,50,48,48,50,48,56,44,51,55,46,54,54,57,54,50,56,93,44,91,45,57,48,46,52,53,57,49,51,51,44,51,55,46,56,55,56,57,50,52,93,44,91,45,57,48,46,51,50,50,56,55,44,51,55,46,57,56,49,55,51,49,93,44,91,45,57,48,46,52,49,54,48,50,50,44,51,56,46,48,52,50,51,49,53,93,44,91,45,57,48,46,53,56,51,51,50,52,44,51,56,46,48,48,51,52,57,57,93,44,91,45,57,48,46,54,51,57,57,56,44,51,56,46,48,55,54,53,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,55,53,34,44,34,78,65,77,69,34,58,34,87,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,56,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,54,49,48,56,56,55,44,51,49,46,54,53,49,56,48,50,93,44,91,45,49,48,51,46,53,48,56,56,48,53,44,51,49,46,54,50,52,49,49,55,93,44,91,45,49,48,51,46,52,54,53,48,53,55,44,51,49,46,52,51,49,57,52,56,93,44,91,45,49,48,51,46,49,56,49,50,50,53,44,51,49,46,51,55,48,50,52,53,93,44,91,45,49,48,51,46,48,49,49,48,52,44,51,49,46,51,55,49,51,48,54,93,44,91,45,49,48,50,46,56,50,53,49,49,54,44,51,49,46,50,54,54,57,49,52,93,44,91,45,49,48,50,46,55,54,55,51,54,53,44,51,49,46,50,57,51,56,48,51,93,44,91,45,49,48,50,46,55,54,55,50,52,54,44,51,49,46,54,53,49,55,49,52,93,44,91,45,49,48,50,46,55,57,56,57,51,57,44,51,49,46,54,53,49,55,56,51,93,44,91,45,49,48,51,46,51,50,55,53,51,56,44,51,49,46,54,53,49,52,50,93,44,91,45,49,48,51,46,54,49,48,56,56,55,44,51,49,46,54,53,49,56,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,75,105,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,53,48,56,50,44,51,56,46,54,49,53,49,55,50,93,44,91,45,49,48,51,46,49,55,50,57,52,51,44,51,56,46,54,49,50,52,53,93,44,91,45,49,48,51,46,49,55,50,56,55,56,44,51,56,46,53,50,53,51,49,53,93,44,91,45,49,48,51,46,53,48,52,54,54,54,44,51,56,46,53,49,54,52,48,57,93,44,91,45,49,48,51,46,53,48,49,55,54,52,44,51,56,46,50,54,53,48,49,54,93,44,91,45,49,48,51,46,51,57,57,57,51,56,44,51,56,46,50,54,53,52,51,53,93,44,91,45,49,48,50,46,55,52,50,51,51,44,51,56,46,50,54,54,57,55,49,93,44,91,45,49,48,50,46,48,52,52,52,55,53,44,51,56,46,50,54,56,55,52,57,93,44,91,45,49,48,50,46,48,52,53,48,56,50,44,51,56,46,54,49,53,49,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,56,55,34,44,34,78,65,77,69,34,58,34,87,105,108,98,97,114,103,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,48,54,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,55,53,50,57,52,44,51,52,46,48,56,53,54,49,56,93,44,91,45,57,57,46,52,55,53,54,53,44,51,51,46,56,51,52,48,48,53,93,44,91,45,57,56,46,57,53,51,50,48,50,44,51,51,46,56,51,52,48,50,53,93,44,91,45,57,56,46,57,53,50,51,57,53,44,51,52,46,50,49,50,52,57,55,93,44,91,45,57,57,46,49,56,57,55,55,54,44,51,52,46,50,49,52,51,53,55,93,44,91,45,57,57,46,50,48,54,57,48,53,44,51,52,46,51,51,56,50,55,55,93,44,91,45,57,57,46,50,54,49,50,55,53,44,51,52,46,52,48,51,53,48,56,93,44,91,45,57,57,46,52,55,53,49,49,53,44,51,52,46,51,57,53,57,51,93,44,91,45,57,57,46,52,55,53,50,57,52,44,51,52,46,48,56,53,54,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,117,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,48,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,53,53,50,51,55,51,44,52,50,46,57,53,52,51,49,49,93,44,91,45,49,50,52,46,55,48,48,50,56,51,44,52,50,46,55,56,52,48,50,56,93,44,91,45,49,50,52,46,52,55,51,53,53,52,44,52,50,46,54,49,52,55,51,52,93,44,91,45,49,50,52,46,53,54,55,50,50,49,44,52,50,46,52,55,55,55,57,49,93,44,91,45,49,50,52,46,52,57,52,49,53,52,44,52,50,46,51,57,54,48,56,54,93,44,91,45,49,50,52,46,52,55,49,51,53,54,44,52,50,46,50,48,51,55,50,51,93,44,91,45,49,50,52,46,52,48,57,51,49,52,44,52,50,46,48,54,52,48,55,55,93,44,91,45,49,50,52,46,51,50,56,56,51,53,44,52,49,46,57,57,56,51,51,52,93,44,91,45,49,50,51,46,56,50,50,48,52,49,44,52,49,46,57,57,53,53,56,93,44,91,45,49,50,51,46,56,53,56,53,52,57,44,52,50,46,49,51,53,49,49,54,93,44,91,45,49,50,51,46,55,57,50,56,51,52,44,52,50,46,50,50,52,51,49,52,93,44,91,45,49,50,51,46,56,57,50,54,53,49,44,52,50,46,51,53,51,50,57,51,93,44,91,45,49,50,52,46,48,50,53,57,56,52,44,52,50,46,51,53,57,52,48,57,93,44,91,45,49,50,51,46,57,57,56,55,56,44,52,50,46,52,57,57,57,54,50,93,44,91,45,49,50,51,46,56,57,48,54,53,55,44,52,50,46,53,48,48,53,51,56,93,44,91,45,49,50,51,46,55,49,54,52,57,50,44,52,50,46,55,56,52,48,54,49,93,44,91,45,49,50,51,46,56,49,49,53,53,51,44,52,50,46,55,56,56,56,51,55,93,44,91,45,49,50,51,46,57,50,53,55,49,55,44,52,50,46,55,55,52,53,49,52,93,44,91,45,49,50,51,46,57,57,54,50,57,49,44,52,50,46,54,56,53,54,53,49,93,44,91,45,49,50,52,46,49,51,56,55,52,56,44,52,50,46,54,55,49,49,49,53,93,44,91,45,49,50,52,46,49,54,49,51,48,56,44,52,50,46,56,56,51,52,57,57,93,44,91,45,49,50,52,46,50,53,56,51,56,56,44,52,50,46,57,53,52,57,52,54,93,44,91,45,49,50,52,46,53,53,50,51,55,51,44,52,50,46,57,53,52,51,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,84,101,108,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,49,51,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,51,51,48,52,52,52,44,51,57,46,49,50,57,54,56,53,93,44,91,45,49,48,53,46,51,50,57,49,51,52,44,51,56,46,54,57,55,50,48,53,93,44,91,45,49,48,53,46,50,52,48,51,54,50,44,51,56,46,54,52,55,53,57,53,93,44,91,45,49,48,52,46,57,52,50,52,50,54,44,51,56,46,54,52,57,56,56,50,93,44,91,45,49,48,52,46,57,51,56,57,57,52,44,51,56,46,55,57,54,56,56,52,93,44,91,45,49,48,53,46,48,50,56,57,48,51,44,51,56,46,56,54,56,57,48,55,93,44,91,45,49,48,53,46,48,51,51,53,52,52,44,51,57,46,49,50,57,56,49,57,93,44,91,45,49,48,53,46,51,50,57,50,50,44,51,57,46,49,50,57,54,56,57,93,44,91,45,49,48,53,46,51,51,48,52,52,52,44,51,57,46,49,50,57,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,55,53,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,50,50,53,55,44,51,57,46,55,52,55,49,57,53,93,44,91,45,57,52,46,54,48,49,50,49,53,44,51,57,46,53,51,48,49,55,93,44,91,45,57,52,46,54,48,48,56,49,57,44,51,57,46,52,53,54,49,53,53,93,44,91,45,57,52,46,50,49,48,54,52,50,44,51,57,46,52,53,52,54,56,50,93,44,91,45,57,52,46,50,48,56,52,50,51,44,51,57,46,53,50,55,50,93,44,91,45,57,52,46,50,48,53,57,54,49,44,51,57,46,55,52,53,56,52,49,93,44,91,45,57,52,46,54,48,50,50,53,55,44,51,57,46,55,52,55,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,87,97,115,97,116,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,50,51,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,53,57,51,57,52,50,44,52,48,46,53,55,55,48,54,54,93,44,91,45,49,49,49,46,54,50,48,52,51,55,44,52,48,46,52,53,53,48,49,56,93,44,91,45,49,49,49,46,53,53,53,50,51,53,44,52,48,46,51,54,50,54,57,54,93,44,91,45,49,49,49,46,52,50,56,55,50,56,44,52,48,46,50,56,55,55,54,93,44,91,45,49,49,49,46,51,50,49,51,48,53,44,52,48,46,50,56,55,51,55,50,93,44,91,45,49,49,49,46,50,50,53,53,48,55,44,52,48,46,49,54,55,51,50,52,93,44,91,45,49,49,49,46,50,52,57,51,51,57,44,52,48,46,48,53,53,50,49,55,93,44,91,45,49,49,49,46,48,56,51,48,54,49,44,51,57,46,57,52,51,49,57,56,93,44,91,45,49,49,48,46,56,57,49,54,53,53,44,51,57,46,56,57,57,54,53,52,93,44,91,45,49,49,48,46,57,48,49,57,55,52,44,52,48,46,54,55,56,49,54,50,93,44,91,45,49,49,48,46,57,55,54,48,56,54,44,52,48,46,53,57,50,57,53,52,93,44,91,45,49,49,49,46,49,52,55,50,49,54,44,52,48,46,53,52,57,54,48,50,93,44,91,45,49,49,49,46,51,55,53,52,56,49,44,52,48,46,54,51,51,49,49,54,93,44,91,45,49,49,49,46,53,53,51,50,54,54,44,52,48,46,54,48,57,51,49,51,93,44,91,45,49,49,49,46,53,57,51,57,52,50,44,52,48,46,53,55,55,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,97,114,105,98,111,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,48,54,51,48,50,51,44,52,51,46,48,50,50,51,54,52,93,44,91,45,49,49,50,46,49,50,55,52,50,52,44,52,50,46,57,52,52,52,57,56,93,44,91,45,49,49,50,46,49,52,53,48,56,57,44,52,50,46,55,57,48,54,54,52,93,44,91,45,49,49,50,46,49,48,53,56,56,44,52,50,46,54,57,57,50,48,51,93,44,91,45,49,49,49,46,57,55,51,51,55,51,44,52,50,46,55,49,53,52,55,50,93,44,91,45,49,49,49,46,57,49,54,57,50,55,44,52,50,46,54,49,55,50,54,52,93,44,91,45,49,49,49,46,56,55,53,54,51,54,44,52,50,46,52,49,54,49,53,56,93,44,91,45,49,49,49,46,53,57,57,50,50,55,44,52,50,46,52,49,53,51,57,53,93,44,91,45,49,49,49,46,54,51,52,57,49,44,52,50,46,53,55,48,48,50,54,93,44,91,45,49,49,49,46,51,54,56,48,54,50,44,52,50,46,53,57,48,50,57,52,93,44,91,45,49,49,49,46,50,51,54,48,56,57,44,52,50,46,52,55,57,55,53,57,93,44,91,45,49,49,49,46,48,52,54,56,49,55,44,52,50,46,53,49,51,57,50,53,93,44,91,45,49,49,49,46,48,52,52,48,55,50,44,52,51,46,48,49,57,52,48,55,93,44,91,45,49,49,49,46,53,56,57,52,56,57,44,52,51,46,48,50,48,48,53,50,93,44,91,45,49,49,50,46,48,54,51,48,50,51,44,52,51,46,48,50,50,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,82,111,99,107,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,50,55,48,44,34,98,101,100,115,34,58,49,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,55,49,52,56,52,57,44,51,54,46,53,52,49,57,54,53,93,44,91,45,56,48,46,48,50,55,51,51,57,44,51,54,46,53,52,50,52,56,93,44,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,44,91,45,55,57,46,53,51,50,52,49,44,51,54,46,50,52,49,52,54,51,93,44,91,45,55,57,46,53,51,49,56,54,53,44,51,54,46,50,52,57,54,55,51,93,44,91,45,55,57,46,53,49,51,54,51,56,44,51,54,46,53,52,48,57,48,50,93,44,91,45,55,57,46,55,49,52,56,52,57,44,51,54,46,53,52,49,57,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,80,114,97,105,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,52,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,48,50,53,48,53,44,51,53,46,48,51,48,52,50,53,93,44,91,45,57,49,46,56,48,51,55,48,51,44,51,52,46,57,50,49,53,50,52,93,44,91,45,57,49,46,54,57,51,55,48,53,44,51,52,46,57,49,57,54,48,53,93,44,91,45,57,49,46,55,48,48,56,50,56,44,51,52,46,54,55,50,48,50,57,93,44,91,45,57,49,46,54,52,51,48,56,44,51,52,46,54,51,54,56,54,50,93,44,91,45,57,49,46,54,55,56,48,51,55,44,51,52,46,52,56,49,57,50,93,44,91,45,57,49,46,53,57,52,52,50,57,44,51,52,46,53,54,56,48,53,93,44,91,45,57,49,46,51,55,55,56,50,44,51,52,46,53,54,51,52,56,93,44,91,45,57,49,46,51,54,56,53,54,44,51,52,46,57,49,50,55,51,53,93,44,91,45,57,49,46,51,54,51,55,54,51,44,51,53,46,48,53,49,56,56,55,93,44,91,45,57,49,46,52,54,53,49,49,52,44,51,53,46,48,56,57,52,53,52,93,44,91,45,57,49,46,53,56,52,48,48,53,44,51,53,46,48,57,49,53,56,52,93,44,91,45,57,49,46,56,48,50,53,48,53,44,51,53,46,48,51,48,52,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,114,97,100,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,52,56,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,51,48,56,51,57,44,51,51,46,55,48,55,56,48,54,93,44,91,45,57,50,46,51,49,49,48,55,57,44,51,51,46,52,57,57,55,56,50,93,44,91,45,57,50,46,51,56,50,48,54,44,51,51,46,51,52,53,57,55,49,93,44,91,45,57,50,46,51,53,48,52,51,50,44,51,51,46,50,57,56,57,52,49,93,44,91,45,57,50,46,49,51,55,53,50,55,44,51,51,46,49,54,50,57,53,54,93,44,91,45,57,49,46,57,55,55,50,56,52,44,51,51,46,51,48,50,48,50,54,93,44,91,45,57,49,46,57,57,48,49,54,55,44,51,51,46,51,57,56,50,49,52,93,44,91,45,57,49,46,57,55,53,56,52,52,44,51,51,46,55,48,52,52,49,52,93,44,91,45,57,50,46,51,51,48,56,51,57,44,51,51,46,55,48,55,56,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,54,57,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,48,56,51,56,54,44,51,49,46,57,49,55,53,49,49,93,44,91,45,57,56,46,49,53,54,53,54,56,44,51,49,46,56,52,49,55,49,51,93,44,91,45,57,56,46,52,54,51,55,51,54,44,51,49,46,54,56,51,57,56,57,93,44,91,45,57,56,46,50,55,49,48,55,44,51,49,46,52,49,54,51,57,56,93,44,91,45,57,56,46,49,56,48,48,48,54,44,51,49,46,52,54,51,55,49,55,93,44,91,45,57,55,46,55,54,54,52,51,49,44,51,49,46,54,55,50,52,54,49,93,44,91,45,57,56,46,48,48,53,52,54,50,44,51,50,46,48,49,55,56,57,55,93,44,91,45,57,56,46,50,48,56,51,56,54,44,51,49,46,57,49,55,53,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,97,114,111,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,56,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,57,52,57,51,51,53,44,51,56,46,57,49,56,51,51,51,93,44,91,45,55,53,46,56,57,54,55,55,52,44,51,56,46,56,49,53,49,48,57,93,44,91,45,55,54,46,48,49,53,48,52,53,44,51,56,46,55,50,56,54,56,55,93,44,91,45,55,53,46,57,52,53,50,52,56,44,51,56,46,54,55,52,49,48,57,93,44,91,45,55,53,46,56,51,55,57,55,52,44,51,56,46,55,48,51,57,57,93,44,91,45,55,53,46,55,48,55,52,52,55,44,51,56,46,54,51,53,51,57,54,93,44,91,45,55,53,46,55,50,50,55,57,55,44,51,56,46,56,50,57,56,53,49,93,44,91,45,55,53,46,55,52,55,55,54,49,44,51,57,46,49,52,51,51,51,56,93,44,91,45,55,53,46,56,51,52,57,52,56,44,51,57,46,49,48,56,52,51,55,93,44,91,45,55,53,46,57,52,57,51,51,53,44,51,56,46,57,49,56,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,48,51,44,34,98,101,100,115,34,58,49,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,54,57,55,53,44,52,54,46,49,48,55,52,53,93,44,91,45,57,53,46,55,53,56,53,48,56,44,52,53,46,55,53,57,57,51,50,93,44,91,45,57,53,46,49,51,57,54,55,44,52,53,46,55,53,56,56,57,49,93,44,91,45,57,53,46,49,51,57,55,51,49,44,52,53,46,55,55,51,52,49,54,93,44,91,45,57,53,46,49,52,53,56,56,44,52,54,46,49,48,54,55,54,49,93,44,91,45,57,53,46,55,54,57,55,53,44,52,54,46,49,48,55,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,53,55,55,49,48,54,44,52,54,46,49,55,56,57,56,49,93,44,91,45,49,49,50,46,52,54,54,51,50,57,44,52,54,46,48,57,50,57,55,57,93,44,91,45,49,49,50,46,52,48,49,52,52,49,44,52,53,46,56,51,49,56,53,49,93,44,91,45,49,49,50,46,49,57,48,50,54,57,44,52,53,46,55,52,56,53,48,51,93,44,91,45,49,49,50,46,48,56,56,55,54,44,52,53,46,56,52,57,48,53,93,44,91,45,49,49,49,46,57,50,54,57,54,53,44,52,53,46,56,53,53,54,57,52,93,44,91,45,49,49,49,46,56,48,53,50,53,57,44,52,53,46,55,57,56,51,48,54,93,44,91,45,49,49,49,46,54,54,48,48,53,55,44,52,53,46,56,51,51,53,93,44,91,45,49,49,49,46,54,54,48,52,50,50,44,52,54,46,48,52,57,49,57,50,93,44,91,45,49,49,49,46,55,56,52,53,54,53,44,52,54,46,48,52,57,56,49,51,93,44,91,45,49,49,49,46,55,56,55,57,52,57,44,52,54,46,53,54,57,52,54,53,93,44,91,45,49,49,50,46,48,50,57,50,51,49,44,52,54,46,53,54,56,56,48,53,93,44,91,45,49,49,50,46,49,55,54,50,51,53,44,52,54,46,52,53,54,51,52,50,93,44,91,45,49,49,50,46,51,49,48,53,55,51,44,52,54,46,52,50,49,49,55,49,93,44,91,45,49,49,50,46,53,51,51,54,50,53,44,52,54,46,51,51,48,56,57,56,93,44,91,45,49,49,50,46,53,53,56,53,57,57,44,52,54,46,50,54,53,56,50,49,93,44,91,45,49,49,50,46,53,55,55,49,48,54,44,52,54,46,49,55,56,57,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,70,97,105,114,102,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,55,51,57,52,44,34,98,101,100,115,34,58,50,57,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,50,56,51,49,56,44,51,57,46,48,53,55,54,55,56,93,44,91,45,55,55,46,53,51,53,57,57,49,44,51,56,46,56,52,55,51,54,56,93,44,91,45,55,55,46,50,50,51,54,56,51,44,51,56,46,54,53,50,48,54,52,93,44,91,45,55,55,46,50,50,55,51,51,54,44,51,56,46,54,48,52,53,55,93,44,91,45,55,55,46,48,56,54,51,57,49,44,51,56,46,55,48,54,50,50,55,93,44,91,45,55,55,46,48,52,49,51,54,50,44,51,56,46,55,56,53,52,49,53,93,44,91,45,55,55,46,49,49,48,55,57,57,44,51,56,46,56,52,51,52,52,54,93,44,91,45,55,55,46,49,52,57,55,48,49,44,51,56,46,56,55,53,54,55,93,44,91,45,55,55,46,49,56,57,55,53,52,44,51,56,46,56,55,56,49,51,54,93,44,91,45,55,55,46,49,55,50,50,55,54,44,51,56,46,56,57,51,50,52,53,93,44,91,45,55,55,46,49,49,57,55,57,50,44,51,56,46,57,51,52,51,55,52,93,44,91,45,55,55,46,51,50,56,51,49,56,44,51,57,46,48,53,55,54,55,56,93,93,44,91,91,45,55,55,46,51,51,52,56,53,50,44,51,56,46,56,53,51,55,51,55,93,44,91,45,55,55,46,51,48,51,49,51,57,44,51,56,46,56,54,57,50,48,56,93,44,91,45,55,55,46,50,55,48,53,57,55,44,51,56,46,56,54,54,48,55,53,93,44,91,45,55,55,46,50,55,48,53,50,44,51,56,46,56,52,48,57,48,50,93,44,91,45,55,55,46,51,49,54,50,50,52,44,51,56,46,56,51,54,52,48,56,93,44,91,45,55,55,46,51,51,52,56,53,50,44,51,56,46,56,53,51,55,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,68,101,101,114,32,76,111,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,48,48,44,34,98,101,100,115,34,58,49,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,48,51,54,56,50,53,44,52,54,46,50,54,54,56,50,54,93,44,91,45,49,49,51,46,50,56,52,53,51,50,44,52,54,46,50,50,50,55,56,51,93,44,91,45,49,49,51,46,50,55,56,48,49,50,44,52,54,46,48,52,53,50,54,56,93,44,91,45,49,49,51,46,53,49,55,52,48,57,44,52,53,46,57,52,48,48,56,57,93,44,91,45,49,49,51,46,53,49,54,49,52,52,44,52,53,46,57,51,56,56,49,52,93,44,91,45,49,49,51,46,51,57,54,57,48,51,44,52,53,46,55,54,55,54,53,93,44,91,45,49,49,51,46,49,55,57,55,57,49,44,52,53,46,56,56,53,48,48,57,93,44,91,45,49,49,51,46,48,56,53,53,49,55,44,52,53,46,56,54,48,54,52,56,93,44,91,45,49,49,50,46,57,50,52,53,53,50,44,52,53,46,57,51,54,52,52,51,93,44,91,45,49,49,50,46,55,55,55,49,50,44,52,54,46,49,51,53,56,50,54,93,44,91,45,49,49,50,46,53,55,55,49,48,54,44,52,54,46,49,55,56,57,56,49,93,44,91,45,49,49,50,46,53,53,56,53,57,57,44,52,54,46,50,54,53,56,50,49,93,44,91,45,49,49,51,46,48,51,54,56,50,53,44,52,54,46,50,54,54,56,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,55,55,53,44,34,98,101,100,115,34,58,51,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,49,56,49,50,44,51,54,46,48,52,56,57,55,55,93,44,91,45,56,52,46,50,55,49,53,56,55,44,51,53,46,57,49,48,49,54,53,93,44,91,45,56,52,46,49,57,50,50,56,55,44,51,53,46,57,57,53,52,56,56,93,44,91,45,56,51,46,57,52,49,55,49,49,44,51,54,46,49,56,54,51,55,56,93,44,91,45,56,52,46,48,48,52,51,49,55,44,51,54,46,50,55,48,51,55,56,93,44,91,45,56,52,46,48,54,57,54,49,56,44,51,54,46,50,51,48,57,55,56,93,44,91,45,56,52,46,50,50,55,53,50,55,44,51,54,46,50,52,52,56,55,57,93,44,91,45,56,52,46,51,55,50,55,51,49,44,51,54,46,50,49,54,55,55,56,93,44,91,45,56,52,46,52,52,49,48,51,52,44,51,54,46,49,54,51,52,55,56,93,44,91,45,56,52,46,51,52,49,56,49,50,44,51,54,46,48,52,56,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,72,117,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,52,53,55,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,52,48,48,56,55,44,52,49,46,50,53,53,51,51,55,93,44,91,45,56,50,46,56,50,57,53,49,50,44,52,48,46,57,57,54,54,50,52,93,44,91,45,56,50,46,55,50,52,55,57,50,44,52,48,46,57,57,53,54,51,56,93,44,91,45,56,50,46,52,51,50,56,53,50,44,52,48,46,57,57,50,57,52,52,93,44,91,45,56,50,46,51,51,54,52,57,54,44,52,49,46,48,54,53,55,54,49,93,44,91,45,56,50,46,51,52,50,51,49,52,44,52,49,46,50,56,51,53,53,52,93,44,91,45,56,50,46,56,52,49,52,55,53,44,52,49,46,50,57,48,48,50,51,93,44,91,45,56,50,46,56,52,48,48,56,55,44,52,49,46,50,53,53,51,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,53,50,49,52,50,44,51,49,46,55,49,48,55,57,54,93,44,91,45,56,50,46,54,50,55,51,52,50,44,51,49,46,54,55,50,54,55,50,93,44,91,45,56,50,46,53,57,55,53,48,57,44,51,49,46,52,54,57,50,57,51,93,44,91,45,56,50,46,52,49,55,50,52,54,44,51,49,46,52,49,55,49,49,57,93,44,91,45,56,50,46,51,52,52,56,52,51,44,51,49,46,52,51,48,49,51,93,44,91,45,56,50,46,50,50,54,53,56,53,44,51,49,46,53,51,48,54,57,57,93,44,91,45,56,50,46,53,50,49,52,50,44,51,49,46,55,49,48,55,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,68,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,52,56,50,50,44,34,98,101,100,115,34,58,52,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,52,55,55,54,49,44,51,57,46,49,52,51,51,51,56,93,44,91,45,55,53,46,55,50,50,55,57,55,44,51,56,46,56,50,57,56,53,49,93,44,91,45,55,53,46,53,53,53,48,49,51,44,51,56,46,56,51,53,54,52,57,93,44,91,45,55,53,46,51,55,50,49,51,49,44,51,56,46,57,54,49,52,51,54,93,44,91,45,55,53,46,49,51,56,52,54,49,44,51,57,46,48,48,50,54,57,55,93,44,91,45,55,53,46,49,54,56,52,54,50,44,51,57,46,48,53,54,49,55,57,93,44,91,45,55,53,46,51,50,49,48,50,49,44,51,57,46,50,53,49,51,55,57,93,44,91,45,55,53,46,52,52,52,55,53,49,44,51,57,46,51,53,53,48,56,57,93,44,91,45,55,53,46,52,56,49,51,54,44,51,57,46,51,56,55,53,53,53,93,44,91,45,55,53,46,53,55,52,52,50,57,44,51,57,46,51,49,51,54,49,49,93,44,91,45,55,53,46,55,54,48,48,55,52,44,51,57,46,50,57,54,56,49,57,93,44,91,45,55,53,46,55,53,54,48,48,52,44,51,57,46,50,52,54,48,54,54,93,44,91,45,55,53,46,55,52,55,55,54,49,44,51,57,46,49,52,51,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,87,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,57,51,54,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,49,53,57,52,49,44,52,49,46,54,49,57,49,49,93,44,91,45,56,51,46,53,54,57,57,51,52,44,52,49,46,54,49,55,49,53,93,44,91,45,56,51,46,55,52,55,50,49,55,44,52,49,46,52,54,54,50,49,54,93,44,91,45,56,51,46,56,56,51,50,51,52,44,52,49,46,52,49,52,53,48,51,93,44,91,45,56,51,46,56,56,49,49,52,57,44,52,49,46,49,54,55,56,50,52,93,44,91,45,56,51,46,52,50,49,48,53,52,44,52,49,46,49,54,54,55,56,93,44,91,45,56,51,46,52,49,57,56,52,51,44,52,49,46,50,53,52,48,48,51,93,44,91,45,56,51,46,52,49,52,54,50,54,44,52,49,46,53,48,48,50,50,56,93,44,91,45,56,51,46,52,49,53,57,52,49,44,52,49,46,54,49,57,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,55,53,53,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,50,48,49,49,53,44,51,52,46,50,57,53,50,55,54,93,44,91,45,56,51,46,56,49,55,54,56,50,44,51,52,46,49,50,55,52,57,51,93,44,91,45,56,51,46,55,53,49,51,56,49,44,51,52,46,48,54,52,50,48,49,93,44,91,45,56,51,46,53,54,51,50,49,53,44,51,52,46,48,51,49,55,53,55,93,44,91,45,56,51,46,53,51,55,51,56,53,44,51,51,46,57,54,53,57,49,50,93,44,91,45,56,51,46,51,54,48,48,50,56,44,51,52,46,48,52,48,53,55,50,93,44,91,45,56,51,46,52,48,50,52,50,56,44,51,52,46,49,57,55,52,57,57,93,44,91,45,56,51,46,52,56,48,51,54,49,44,51,52,46,50,54,50,48,51,56,93,44,91,45,56,51,46,54,50,48,49,49,53,44,51,52,46,50,57,53,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,53,50,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,44,91,45,57,53,46,53,48,56,51,50,56,44,51,56,46,51,57,48,50,55,56,93,44,91,45,57,53,46,53,49,56,57,55,44,51,56,46,48,51,56,50,51,93,44,91,45,57,53,46,48,55,55,56,55,54,44,51,56,46,48,51,55,55,48,54,93,44,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,57,57,57,44,34,98,101,100,115,34,58,50,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,51,57,52,50,51,44,52,49,46,48,54,51,57,57,53,93,44,91,45,57,48,46,52,52,52,51,51,57,44,52,48,46,55,49,52,56,54,56,93,44,91,45,56,57,46,57,56,54,48,54,52,44,52,48,46,55,49,50,51,54,49,93,44,91,45,56,57,46,57,56,53,52,55,57,44,52,48,46,57,55,52,52,57,53,93,44,91,45,56,57,46,57,56,52,53,53,57,44,52,49,46,49,52,57,51,57,52,93,44,91,45,57,48,46,52,51,55,54,53,50,44,52,49,46,49,53,49,52,54,51,93,44,91,45,57,48,46,52,51,57,52,50,51,44,52,49,46,48,54,51,57,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,87,104,101,97,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,55,52,53,55,52,53,44,52,54,46,54,57,52,48,57,55,93,44,91,45,49,48,57,46,57,54,55,56,44,52,54,46,55,53,48,56,55,53,93,44,91,45,49,49,48,46,50,55,51,51,51,55,44,52,54,46,55,49,48,53,48,57,93,44,91,45,49,49,48,46,50,56,49,57,55,49,44,52,54,46,50,50,48,54,48,53,93,44,91,45,49,48,57,46,54,53,51,56,55,49,44,52,54,46,50,49,57,52,48,52,93,44,91,45,49,48,57,46,52,48,50,57,48,54,44,52,54,46,50,49,57,55,48,54,93,44,91,45,49,48,57,46,51,56,57,49,54,51,44,52,54,46,54,57,51,54,50,53,93,44,91,45,49,48,57,46,55,52,53,55,52,53,44,52,54,46,54,57,52,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,110,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,55,54,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,53,51,50,49,52,44,51,53,46,57,53,52,51,57,57,93,44,91,45,56,54,46,50,48,55,49,52,55,44,51,53,46,55,48,51,55,57,93,44,91,45,56,54,46,49,52,51,54,53,50,44,51,53,46,54,54,49,55,52,55,93,44,91,45,56,53,46,57,56,53,48,54,50,44,51,53,46,54,54,48,49,48,56,93,44,91,45,56,53,46,57,56,52,56,57,49,44,51,53,46,55,51,52,53,53,51,93,44,91,45,56,53,46,56,56,53,49,53,54,44,51,53,46,56,51,57,54,53,56,93,44,91,45,56,54,46,48,49,52,56,52,57,44,51,53,46,57,54,49,48,54,93,44,91,45,56,54,46,49,53,51,50,49,52,44,51,53,46,57,53,52,51,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,49,57,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,56,51,53,49,52,50,44,52,53,46,50,55,55,48,52,55,93,44,91,45,55,48,46,55,55,57,56,52,50,44,52,53,46,48,49,56,51,55,57,93,44,91,45,55,48,46,55,54,57,50,50,56,44,52,52,46,55,51,50,50,50,56,93,44,91,45,55,48,46,54,49,53,48,51,44,52,52,46,55,57,53,54,51,52,93,44,91,45,55,48,46,53,49,48,53,57,56,44,52,52,46,54,50,55,50,49,54,93,44,91,45,55,48,46,50,56,48,55,52,56,44,52,52,46,53,54,57,54,49,57,93,44,91,45,55,48,46,50,51,56,57,48,52,44,52,52,46,52,53,56,57,52,50,93,44,91,45,55,48,46,49,50,57,51,57,44,52,52,46,52,56,55,50,49,55,93,44,91,45,55,48,46,48,52,48,50,49,53,44,52,52,46,53,56,56,55,50,50,93,44,91,45,54,57,46,57,51,48,52,53,49,44,52,52,46,54,49,48,56,53,50,93,44,91,45,54,57,46,57,57,54,49,57,49,44,52,52,46,54,55,55,52,57,55,93,44,91,45,55,48,46,48,51,51,50,55,44,52,52,46,56,54,52,53,52,93,44,91,45,55,48,46,49,49,48,51,54,53,44,52,52,46,57,52,55,51,49,49,93,44,91,45,55,48,46,49,53,57,51,55,53,44,52,53,46,49,50,56,51,57,54,93,44,91,45,55,48,46,50,57,51,56,50,54,44,52,53,46,49,48,57,57,48,51,93,44,91,45,55,48,46,52,49,56,53,49,57,44,52,53,46,49,52,52,48,48,53,93,44,91,45,55,48,46,53,53,50,56,53,51,44,52,53,46,54,54,55,56,57,57,93,44,91,45,55,48,46,55,50,50,53,55,49,44,52,53,46,53,49,51,54,55,50,93,44,91,45,55,48,46,54,50,52,52,53,52,44,52,53,46,52,48,54,49,52,57,93,44,91,45,55,48,46,56,50,53,55,51,55,44,52,53,46,52,48,48,50,54,53,93,44,91,45,55,48,46,56,51,53,49,52,50,44,52,53,46,50,55,55,48,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,77,101,110,105,102,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,51,49,48,54,44,51,55,46,56,50,53,51,55,50,93,44,91,45,56,51,46,52,57,53,48,56,44,51,55,46,56,54,49,57,48,54,93,44,91,45,56,51,46,52,51,51,57,52,50,44,51,56,46,48,51,51,57,55,52,93,44,91,45,56,51,46,52,57,56,56,52,54,44,51,56,46,48,53,48,54,50,93,44,91,45,56,51,46,55,53,57,52,51,44,51,55,46,57,57,56,55,51,49,93,44,91,45,56,51,46,55,54,56,55,56,51,44,51,55,46,57,49,56,51,55,49,93,44,91,45,56,51,46,54,51,49,48,54,44,51,55,46,56,50,53,51,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,99,80,104,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,54,52,44,34,98,101,100,115,34,58,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,48,53,55,53,56,44,52,53,46,57,51,57,55,51,49,93,44,91,45,57,57,46,55,49,56,48,55,49,44,52,53,46,57,52,48,56,56,51,93,44,91,45,57,57,46,55,49,55,52,54,54,44,52,53,46,53,57,51,52,50,56,93,44,91,45,57,57,46,55,48,55,55,48,53,44,52,53,46,53,57,51,51,57,49,93,44,91,45,57,56,46,55,50,53,48,48,50,44,52,53,46,53,57,49,50,53,50,93,44,91,45,57,56,46,55,50,52,51,55,53,44,52,53,46,57,51,56,55,51,49,93,44,91,45,57,57,46,48,48,53,55,53,56,44,52,53,46,57,51,57,55,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,117,110,110,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,53,51,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,53,48,48,54,48,54,44,51,57,46,50,49,55,57,49,54,93,44,91,45,49,48,55,46,53,48,48,54,53,53,44,51,56,46,54,54,56,53,53,51,93,44,91,45,49,48,55,46,53,48,48,48,50,44,51,56,46,51,48,49,57,50,54,93,44,91,45,49,48,55,46,54,51,53,48,52,44,51,56,46,51,48,49,56,57,54,93,44,91,45,49,48,55,46,53,54,56,54,50,44,51,56,46,49,52,55,50,54,55,93,44,91,45,49,48,55,46,48,48,49,49,49,57,44,51,56,46,49,52,55,48,55,50,93,44,91,45,49,48,55,46,48,48,48,54,48,49,44,51,56,46,52,50,53,54,49,57,93,44,91,45,49,48,54,46,50,52,54,57,52,44,51,56,46,52,50,50,55,54,56,93,44,91,45,49,48,54,46,51,52,56,49,48,56,44,51,56,46,53,49,50,52,57,57,93,44,91,45,49,48,54,46,52,51,48,49,53,57,44,51,56,46,54,53,51,52,54,56,93,44,91,45,49,48,54,46,52,49,54,50,54,51,44,51,56,46,56,50,51,56,53,93,44,91,45,49,48,54,46,52,54,53,48,51,50,44,51,56,46,57,49,48,51,53,52,93,44,91,45,49,48,54,46,53,57,57,50,49,52,44,51,56,46,57,57,55,57,57,52,93,44,91,45,49,48,54,46,55,52,48,54,57,53,44,51,57,46,48,52,53,57,48,54,93,44,91,45,49,48,54,46,56,48,49,56,55,52,44,51,56,46,57,55,56,51,48,51,93,44,91,45,49,48,54,46,57,48,56,49,57,54,44,51,56,46,57,57,50,53,55,57,93,44,91,45,49,48,55,46,48,54,54,51,50,44,51,57,46,49,49,56,56,48,53,93,44,91,45,49,48,55,46,50,56,50,52,57,44,51,57,46,49,49,56,55,49,56,93,44,91,45,49,48,55,46,51,57,52,52,56,54,44,51,57,46,50,53,54,50,57,57,93,44,91,45,49,48,55,46,53,48,48,54,48,54,44,51,57,46,50,49,55,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,101,118,111,105,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,49,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,53,56,56,57,54,44,52,53,46,50,48,54,53,55,52,93,44,91,45,56,53,46,50,50,50,55,48,55,44,52,53,46,50,48,53,53,54,93,44,91,45,56,53,46,50,50,51,54,56,49,44,52,53,46,49,49,55,56,54,49,93,44,91,45,56,52,46,56,53,55,52,53,50,44,52,53,46,49,49,54,55,48,55,93,44,91,45,56,52,46,55,51,52,51,48,51,44,52,53,46,50,48,49,57,51,54,93,44,91,45,56,52,46,55,51,50,54,56,55,44,52,53,46,50,56,57,51,56,50,93,44,91,45,56,52,46,57,54,52,55,56,55,44,52,53,46,50,57,49,54,48,49,93,44,91,45,56,53,46,50,56,51,50,51,56,44,52,53,46,53,53,48,50,48,57,93,44,91,45,56,53,46,51,48,55,53,56,52,44,52,53,46,54,50,53,48,48,54,93,44,91,45,56,53,46,50,50,49,51,57,52,44,52,53,46,55,56,50,56,52,51,93,44,91,45,56,53,46,50,51,57,54,49,56,44,52,53,46,56,55,48,55,52,93,44,91,45,56,53,46,53,55,48,48,55,52,44,52,53,46,56,56,51,50,52,52,93,44,91,45,56,53,46,56,54,56,50,52,49,44,52,53,46,56,49,57,55,57,53,93,44,91,45,56,53,46,56,53,53,55,54,56,44,52,53,46,53,55,56,51,56,54,93,44,91,45,56,53,46,54,50,53,48,55,54,44,52,53,46,52,53,52,54,48,50,93,44,91,45,56,53,46,52,53,56,56,57,54,44,52,53,46,50,48,54,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,119,105,102,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,49,49,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,49,49,55,48,51,54,44,52,53,46,52,49,49,57,57,51,93,44,91,45,57,54,46,49,48,51,54,49,52,44,52,53,46,49,55,54,54,55,53,93,44,91,45,57,54,46,48,51,54,54,57,56,44,52,53,46,49,53,50,50,48,54,93,44,91,45,57,53,46,50,52,54,52,56,57,44,52,53,46,49,53,50,52,51,49,93,44,91,45,57,53,46,50,53,53,50,49,51,44,52,53,46,52,49,50,55,51,57,93,44,91,45,57,53,46,55,52,55,52,48,50,44,52,53,46,52,49,50,51,49,51,93,44,91,45,57,54,46,49,49,55,48,51,54,44,52,53,46,52,49,49,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,83,101,110,101,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,55,53,44,34,98,101,100,115,34,58,49,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,49,57,56,52,51,44,52,49,46,50,53,52,48,48,51,93,44,91,45,56,51,46,52,50,49,48,53,52,44,52,49,46,49,54,54,55,56,93,44,91,45,56,51,46,52,50,48,51,49,57,44,52,48,46,57,57,49,56,56,57,93,44,91,45,56,51,46,49,49,50,55,51,55,44,52,48,46,57,57,51,52,52,55,93,44,91,45,56,50,46,56,50,57,53,49,50,44,52,48,46,57,57,54,54,50,52,93,44,91,45,56,50,46,56,52,48,48,56,55,44,52,49,46,50,53,53,51,51,55,93,44,91,45,56,51,46,52,49,57,56,52,51,44,52,49,46,50,53,52,48,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,55,34,44,34,78,65,77,69,34,58,34,84,97,116,116,110,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,51,50,55,56,56,44,51,50,46,51,49,56,56,51,56,93,44,91,45,56,50,46,49,56,50,55,50,55,44,51,50,46,49,54,48,52,52,50,93,44,91,45,56,50,46,50,50,53,48,52,50,44,51,49,46,57,49,51,48,55,52,93,44,91,45,56,50,46,48,52,56,53,56,50,44,51,49,46,56,50,55,48,55,53,93,44,91,45,56,49,46,57,54,57,48,53,50,44,51,49,46,55,56,57,51,50,52,93,44,91,45,56,49,46,56,50,52,52,48,53,44,51,50,46,48,49,52,56,56,50,93,44,91,45,56,49,46,55,54,49,55,51,53,44,51,50,46,48,52,55,57,93,44,91,45,56,49,46,57,56,48,48,52,49,44,51,50,46,48,56,49,53,48,50,93,44,91,45,56,50,46,48,50,53,51,51,57,44,51,50,46,50,55,56,56,56,51,93,44,91,45,56,50,46,50,51,50,55,56,56,44,51,50,46,51,49,56,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,50,57,34,44,34,78,65,77,69,34,58,34,83,116,101,112,104,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,55,50,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,57,54,48,49,54,44,51,50,46,57,53,55,48,51,55,93,44,91,45,57,57,46,48,57,54,48,53,44,51,50,46,53,49,52,55,54,56,93,44,91,45,57,56,46,53,55,54,50,53,54,44,51,50,46,53,49,53,49,54,51,93,44,91,45,57,56,46,53,55,53,54,49,54,44,51,50,46,57,53,52,51,52,57,93,44,91,45,57,56,46,57,53,48,56,55,53,44,51,50,46,57,53,54,57,49,56,93,44,91,45,57,57,46,48,57,54,48,49,54,44,51,50,46,57,53,55,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,53,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,48,50,54,49,52,44,51,54,46,48,48,52,57,54,54,93,44,91,45,55,55,46,51,52,50,52,49,56,44,51,53,46,57,48,53,50,54,50,93,44,91,45,55,55,46,51,53,48,51,54,57,44,51,53,46,56,49,57,50,50,56,93,44,91,45,55,55,46,49,55,52,44,51,53,46,55,51,50,56,51,49,93,44,91,45,55,54,46,57,56,53,56,52,50,44,51,53,46,54,53,56,56,52,56,93,44,91,45,55,54,46,56,52,55,50,54,52,44,51,53,46,55,49,57,57,56,50,93,44,91,45,55,54,46,55,54,48,53,57,56,44,51,53,46,56,54,52,56,56,55,93,44,91,45,55,55,46,48,48,53,50,53,44,51,53,46,56,53,56,52,51,51,93,44,91,45,55,55,46,48,52,50,56,56,50,44,51,53,46,57,52,50,50,55,56,93,44,91,45,55,55,46,51,50,55,53,54,57,44,51,54,46,48,55,49,51,54,49,93,44,91,45,55,55,46,52,48,50,54,49,52,44,51,54,46,48,48,52,57,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,82,97,118,97,108,108,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,57,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,51,51,50,55,57,54,44,52,54,46,54,54,48,53,56,49,93,44,91,45,49,49,52,46,51,52,50,57,56,53,44,52,54,46,53,49,56,48,52,93,44,91,45,49,49,52,46,52,55,48,55,57,53,44,52,54,46,50,54,53,51,55,55,93,44,91,45,49,49,52,46,52,52,53,50,51,52,44,52,54,46,49,54,55,57,52,54,93,44,91,45,49,49,52,46,52,56,48,53,51,55,44,52,54,46,48,51,48,52,51,57,93,44,91,45,49,49,52,46,52,48,53,57,49,55,44,52,53,46,56,55,48,52,93,44,91,45,49,49,52,46,53,54,54,51,52,56,44,52,53,46,55,55,50,55,51,57,93,44,91,45,49,49,52,46,52,57,57,54,54,55,44,52,53,46,54,54,56,53,49,51,93,44,91,45,49,49,52,46,53,54,52,57,57,57,44,52,53,46,53,53,55,56,48,51,93,44,91,45,49,49,52,46,50,54,57,56,57,50,44,52,53,46,52,56,52,53,53,50,93,44,91,45,49,49,51,46,57,51,56,48,57,53,44,52,53,46,54,57,53,55,52,93,44,91,45,49,49,51,46,55,49,50,53,50,50,44,52,53,46,56,51,56,51,56,52,93,44,91,45,49,49,51,46,53,51,50,51,55,44,52,53,46,56,55,56,52,48,53,93,44,91,45,49,49,51,46,53,49,54,49,52,52,44,52,53,46,57,51,56,56,49,52,93,44,91,45,49,49,51,46,53,49,55,52,48,57,44,52,53,46,57,52,48,48,56,57,93,44,91,45,49,49,51,46,54,52,56,51,53,56,44,52,53,46,57,54,53,48,51,56,93,44,91,45,49,49,51,46,55,53,51,50,52,54,44,52,54,46,49,49,50,56,93,44,91,45,49,49,51,46,55,56,50,48,51,50,44,52,54,46,51,53,57,53,49,56,93,44,91,45,49,49,51,46,56,55,52,54,53,49,44,52,54,46,53,48,56,51,50,57,93,44,91,45,49,49,51,46,56,50,55,55,52,51,44,52,54,46,54,54,48,56,57,54,93,44,91,45,49,49,52,46,51,51,50,55,57,54,44,52,54,46,54,54,48,53,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,55,34,44,34,78,65,77,69,34,58,34,87,105,108,107,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,56,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,55,57,53,48,54,44,51,51,46,57,55,49,49,50,52,93,44,91,45,56,50,46,56,52,54,54,56,54,44,51,51,46,57,52,48,54,51,57,93,44,91,45,56,50,46,57,56,55,50,56,54,44,51,51,46,55,56,48,55,49,93,44,91,45,56,50,46,57,52,57,48,52,54,44,51,51,46,55,51,51,51,51,51,93,44,91,45,56,50,46,56,57,48,53,57,57,44,51,51,46,54,51,50,56,55,55,93,44,91,45,56,50,46,56,49,50,57,53,56,44,51,51,46,54,53,53,56,51,54,93,44,91,45,56,50,46,54,55,57,57,55,53,44,51,51,46,53,57,57,55,57,50,93,44,91,45,56,50,46,54,52,57,55,48,53,44,51,51,46,54,48,56,55,54,56,93,44,91,45,56,50,46,52,55,57,53,49,56,44,51,51,46,54,51,57,53,51,53,93,44,91,45,56,50,46,53,55,51,54,53,50,44,51,51,46,55,56,54,49,49,54,93,44,91,45,56,50,46,54,52,53,52,53,49,44,51,51,46,57,56,52,49,57,53,93,44,91,45,56,50,46,55,55,57,53,48,54,44,51,51,46,57,55,49,49,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,51,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,51,52,48,57,51,56,44,52,55,46,56,57,52,51,49,54,93,44,91,45,49,49,56,46,53,51,49,50,57,55,44,52,55,46,56,55,52,56,55,56,93,44,91,45,49,49,56,46,55,51,48,51,50,53,44,52,55,46,57,48,48,49,54,57,93,44,91,45,49,49,56,46,56,53,49,57,54,44,52,55,46,57,53,55,57,48,54,93,44,91,45,49,49,56,46,57,55,51,53,48,52,44,52,55,46,57,52,51,52,49,52,93,44,91,45,49,49,56,46,57,55,57,55,55,55,44,52,55,46,50,54,49,55,48,57,93,44,91,45,49,49,55,46,57,54,48,57,51,44,52,55,46,50,54,48,53,54,56,93,44,91,45,49,49,55,46,56,50,51,54,50,57,44,52,55,46,50,54,48,50,50,93,44,91,45,49,49,55,46,56,50,48,57,52,55,44,52,55,46,56,50,53,55,55,53,93,44,91,45,49,49,56,46,48,55,56,49,56,50,44,52,55,46,56,48,48,48,54,50,93,44,91,45,49,49,56,46,50,49,50,51,50,51,44,52,55,46,57,52,53,52,57,51,93,44,91,45,49,49,56,46,51,52,48,57,51,56,44,52,55,46,56,57,52,51,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,83,97,110,32,77,97,116,101,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,53,57,51,53,44,34,98,101,100,115,34,58,50,52,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,53,55,53,49,56,57,44,51,55,46,55,48,54,55,50,49,93,44,91,45,49,50,50,46,53,55,52,57,54,51,44,51,55,46,52,57,57,57,52,51,93,44,91,45,49,50,50,46,52,54,53,56,54,57,44,51,55,46,51,52,49,50,52,93,44,91,45,49,50,50,46,52,54,52,49,49,55,44,51,55,46,49,55,55,56,52,56,93,44,91,45,49,50,50,46,51,49,51,56,57,57,44,51,55,46,48,53,52,55,54,52,93,44,91,45,49,50,50,46,51,49,55,54,56,50,44,51,55,46,49,56,54,57,52,53,93,44,91,45,49,50,50,46,49,53,50,55,55,52,44,51,55,46,50,49,53,52,52,52,93,44,91,45,49,50,50,46,49,53,50,50,55,56,44,51,55,46,50,56,54,48,53,53,93,44,91,45,49,50,50,46,49,57,48,52,48,50,44,51,55,46,52,51,49,52,55,50,93,44,91,45,49,50,50,46,48,56,49,52,55,51,44,51,55,46,52,55,55,56,51,56,93,44,91,45,49,50,50,46,50,56,49,55,56,44,51,55,46,55,48,56,50,51,93,44,91,45,49,50,50,46,53,55,53,49,56,57,44,51,55,46,55,48,54,55,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,57,51,54,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,57,57,53,52,54,44,52,49,46,55,48,53,56,49,54,93,44,91,45,56,52,46,56,48,53,57,55,50,44,52,49,46,54,57,54,49,49,56,93,44,91,45,56,52,46,56,48,52,54,56,55,44,52,49,46,53,51,48,49,51,52,93,44,91,45,56,52,46,56,48,52,48,54,51,44,52,49,46,52,50,54,48,53,49,93,44,91,45,56,52,46,51,52,49,54,54,52,44,52,49,46,52,50,55,53,54,56,93,44,91,45,56,52,46,51,52,49,57,48,50,44,52,49,46,52,56,53,53,49,57,93,44,91,45,56,52,46,51,56,48,55,51,53,44,52,49,46,53,49,51,57,52,50,93,44,91,45,56,52,46,51,57,57,53,52,54,44,52,49,46,55,48,53,56,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,54,51,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,48,50,51,50,57,44,51,55,46,48,48,48,49,53,93,44,91,45,49,48,50,46,48,52,50,48,56,57,44,51,54,46,57,57,51,48,49,54,93,44,91,45,49,48,50,46,48,52,49,54,52,50,44,51,55,46,51,56,57,49,57,93,44,91,45,49,48,50,46,48,52,49,53,56,53,44,51,55,46,54,52,52,50,56,50,93,44,91,45,49,48,50,46,55,52,55,54,49,53,44,51,55,46,54,52,51,54,52,50,93,44,91,45,49,48,51,46,48,55,53,57,51,56,44,51,55,46,54,52,51,52,50,93,44,91,45,49,48,51,46,48,56,54,49,48,50,44,51,55,46,48,48,48,49,56,56,93,44,91,45,49,48,51,46,48,48,50,51,50,57,44,51,55,46,48,48,48,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,111,117,110,100,97,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,52,57,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,48,52,57,48,56,54,44,52,57,46,48,48,48,56,52,54,93,44,91,45,49,49,55,46,48,51,50,51,52,53,44,52,56,46,57,57,57,50,48,49,93,44,91,45,49,49,55,46,48,51,50,52,52,49,44,52,56,46,56,52,54,54,54,54,93,44,91,45,49,49,54,46,55,56,53,49,55,52,44,52,56,46,56,52,55,52,48,50,93,44,91,45,49,49,54,46,55,56,52,56,55,56,44,52,56,46,53,48,48,52,55,50,93,44,91,45,49,49,54,46,48,52,57,48,53,56,44,52,56,46,53,48,50,48,54,50,93,44,91,45,49,49,54,46,48,52,57,48,56,54,44,52,57,46,48,48,48,56,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,97,114,32,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,54,50,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,53,57,57,50,50,55,44,52,50,46,52,49,53,51,57,53,93,44,91,45,49,49,49,46,53,54,54,54,50,56,44,52,50,46,50,55,51,53,55,52,93,44,91,45,49,49,49,46,54,50,54,49,48,52,44,52,50,46,50,48,55,53,52,50,93,44,91,45,49,49,49,46,53,57,53,55,52,51,44,52,50,46,48,57,52,50,49,93,44,91,45,49,49,49,46,53,48,55,56,48,54,44,52,49,46,57,57,57,53,53,50,93,44,91,45,49,49,49,46,48,52,54,55,49,52,44,52,50,46,48,48,49,55,48,50,93,44,91,45,49,49,49,46,48,52,54,56,49,55,44,52,50,46,53,49,51,57,50,53,93,44,91,45,49,49,49,46,50,51,54,48,56,57,44,52,50,46,52,55,57,55,53,57,93,44,91,45,49,49,49,46,51,54,56,48,54,50,44,52,50,46,53,57,48,50,57,52,93,44,91,45,49,49,49,46,54,51,52,57,49,44,52,50,46,53,55,48,48,50,54,93,44,91,45,49,49,49,46,53,57,57,50,50,55,44,52,50,46,52,49,53,51,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,54,53,52,44,34,98,101,100,115,34,58,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,50,48,50,50,55,44,52,48,46,53,48,52,48,55,55,93,44,91,45,56,51,46,53,53,49,51,51,56,44,52,48,46,50,50,57,51,55,93,44,91,45,56,51,46,53,48,51,55,49,52,44,52,48,46,49,49,49,52,54,56,93,44,91,45,56,51,46,50,48,54,50,55,51,44,52,48,46,49,48,55,55,51,51,93,44,91,45,56,51,46,49,54,57,57,56,49,44,52,48,46,49,52,51,48,56,55,93,44,91,45,56,51,46,50,52,56,52,50,56,44,52,48,46,50,52,52,52,54,54,93,44,91,45,56,51,46,50,52,56,53,57,53,44,52,48,46,52,52,51,57,56,57,93,44,91,45,56,51,46,50,52,56,49,56,51,44,52,48,46,53,48,55,48,51,52,93,44,91,45,56,51,46,52,49,56,54,55,44,52,48,46,53,48,53,50,50,57,93,44,91,45,56,51,46,53,50,48,50,50,55,44,52,48,46,53,48,52,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,117,121,97,104,111,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,51,55,56,51,44,34,98,101,100,115,34,58,55,49,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,55,48,53,56,44,52,49,46,56,55,55,56,52,53,93,44,91,45,56,49,46,57,55,49,50,54,50,44,52,49,46,51,53,49,50,54,56,93,44,91,45,56,49,46,56,55,56,48,53,51,44,52,49,46,50,55,53,48,52,52,93,44,91,45,56,49,46,54,56,52,57,53,44,52,49,46,50,55,55,49,52,54,93,44,91,45,56,49,46,53,57,56,48,53,50,44,52,49,46,51,53,49,49,53,55,93,44,91,45,56,49,46,51,57,49,54,57,52,44,52,49,46,51,52,56,50,55,50,93,44,91,45,56,49,46,51,57,49,48,48,53,44,52,49,46,53,54,57,55,49,54,93,44,91,45,56,49,46,52,56,55,56,52,50,44,52,49,46,53,55,48,48,53,49,93,44,91,45,56,49,46,52,57,53,49,56,49,44,52,50,46,48,57,54,52,48,50,93,44,91,45,56,49,46,57,55,48,53,56,44,52,49,46,56,55,55,56,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,53,34,44,34,78,65,77,69,34,58,34,76,97,118,97,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,52,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,52,48,49,48,56,44,50,57,46,51,56,52,52,56,56,93,44,91,45,57,54,46,57,55,54,51,55,56,44,50,57,46,49,48,52,48,52,54,93,44,91,45,57,54,46,57,51,56,53,56,55,44,50,57,46,48,54,51,50,52,52,93,44,91,45,57,54,46,54,53,56,52,54,54,44,50,57,46,50,54,51,56,55,54,93,44,91,45,57,54,46,53,54,48,53,53,53,44,50,57,46,51,51,53,52,51,57,93,44,91,45,57,54,46,55,57,51,49,51,50,44,50,57,46,53,55,55,51,55,56,93,44,91,45,57,54,46,56,55,52,50,50,50,44,50,57,46,54,51,50,55,48,54,93,44,91,45,57,55,46,49,52,50,54,52,51,44,50,57,46,54,50,56,49,48,49,93,44,91,45,57,55,46,50,48,52,48,56,55,44,50,57,46,53,56,48,54,49,51,93,44,91,45,57,55,46,50,52,48,49,48,56,44,50,57,46,51,56,52,52,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,78,111,119,97,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,56,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,56,54,55,54,50,44,51,54,46,57,57,57,51,49,93,44,91,45,57,53,46,56,48,57,56,50,44,51,54,46,57,52,49,57,51,93,44,91,45,57,53,46,56,48,57,53,52,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,52,51,49,53,55,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,52,51,49,55,53,56,44,51,54,46,57,52,50,53,57,51,93,44,91,45,57,53,46,52,48,55,55,51,51,44,51,54,46,57,57,57,51,49,49,93,44,91,45,57,53,46,53,50,50,52,49,53,44,51,54,46,57,57,57,50,56,93,44,91,45,57,53,46,55,56,54,55,54,50,44,51,54,46,57,57,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,71,108,97,115,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,49,57,53,55,44,51,51,46,50,55,52,56,51,93,44,91,45,56,50,46,53,53,57,55,53,51,44,51,51,46,51,50,55,50,55,93,44,91,45,56,50,46,55,53,53,56,52,54,44,51,51,46,50,53,51,52,52,93,44,91,45,56,50,46,55,52,56,51,49,49,44,51,51,46,50,51,56,51,52,56,93,44,91,45,56,50,46,54,54,49,57,49,55,44,51,51,46,49,50,54,51,51,49,93,44,91,45,56,50,46,52,51,49,57,53,55,44,51,51,46,50,55,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,85,109,97,116,105,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,56,57,56,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,57,56,55,50,53,56,44,52,53,46,57,57,57,56,53,53,93,44,91,45,49,49,57,46,49,50,54,51,50,50,44,52,53,46,57,51,50,55,56,52,93,44,91,45,49,49,57,46,52,51,50,49,53,44,52,53,46,57,49,56,50,55,49,93,44,91,45,49,49,57,46,52,51,52,54,52,44,52,53,46,54,48,50,57,56,53,93,44,91,45,49,49,57,46,50,52,56,53,52,55,44,52,53,46,54,48,49,57,51,53,93,44,91,45,49,49,57,46,49,52,53,49,52,52,44,52,53,46,53,49,53,57,48,57,93,44,91,45,49,49,57,46,49,52,54,52,50,52,44,52,53,46,48,56,50,57,52,93,44,91,45,49,49,57,46,49,54,50,57,54,54,44,52,52,46,57,57,54,50,52,49,93,44,91,45,49,49,56,46,53,49,56,54,56,57,44,52,52,46,57,57,53,56,55,55,93,44,91,45,49,49,56,46,53,52,54,54,51,50,44,52,53,46,49,57,54,56,57,56,93,44,91,45,49,49,56,46,54,53,53,57,57,50,44,52,53,46,49,57,54,57,50,56,93,44,91,45,49,49,56,46,54,57,55,55,54,54,44,52,53,46,51,52,53,54,52,55,93,44,91,45,49,49,56,46,52,50,56,51,50,57,44,52,53,46,51,53,53,49,57,93,44,91,45,49,49,56,46,52,50,56,53,51,57,44,52,53,46,52,50,57,48,55,54,93,44,91,45,49,49,56,46,49,57,55,56,55,54,44,52,53,46,52,50,55,50,48,52,93,44,91,45,49,49,56,46,49,49,54,52,54,49,44,52,53,46,52,55,48,55,51,50,93,44,91,45,49,49,56,46,49,49,55,49,57,52,44,52,53,46,54,56,56,54,48,55,93,44,91,45,49,49,55,46,57,55,50,57,56,44,52,53,46,56,54,48,53,57,53,93,44,91,45,49,49,55,46,57,55,55,54,54,52,44,52,54,46,48,48,48,53,50,50,93,44,91,45,49,49,55,46,57,57,54,57,55,44,52,54,46,48,48,48,53,54,93,44,91,45,49,49,56,46,57,56,55,50,53,56,44,52,53,46,57,57,57,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,50,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,50,34,44,34,78,65,77,69,34,58,34,79,103,108,97,108,97,32,76,97,107,111,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,49,51,57,49,53,56,44,52,51,46,55,48,48,57,52,56,93,44,91,45,49,48,50,46,49,55,53,50,51,49,44,52,51,46,54,56,55,55,53,54,93,44,91,45,49,48,50,46,56,48,57,51,57,56,44,52,51,46,54,56,55,53,54,93,44,91,45,49,48,51,46,48,48,49,48,49,55,44,52,51,46,54,48,53,56,49,54,93,44,91,45,49,48,51,46,48,48,48,57,49,51,44,52,51,46,52,55,54,56,52,56,93,44,91,45,49,48,51,46,48,48,48,54,48,57,44,52,51,46,48,48,48,55,53,49,93,44,91,45,49,48,50,46,55,57,50,49,49,49,44,52,50,46,57,57,57,57,56,93,44,91,45,49,48,50,46,48,56,50,53,52,54,44,52,50,46,57,57,57,51,53,54,93,44,91,45,49,48,50,46,48,56,50,52,56,54,44,52,50,46,57,57,57,51,53,53,93,44,91,45,49,48,50,46,49,48,56,56,57,50,44,52,51,46,49,50,57,50,53,56,93,44,91,45,49,48,50,46,49,49,48,56,49,57,44,52,51,46,51,56,57,57,48,50,93,44,91,45,49,48,50,46,49,51,57,48,53,49,44,52,51,46,52,55,54,54,55,54,93,44,91,45,49,48,50,46,49,51,57,49,53,56,44,52,51,46,55,48,48,57,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,48,53,55,54,56,44,52,48,46,48,48,49,52,57,53,93,44,91,45,57,54,46,56,48,54,53,52,52,44,51,57,46,53,54,54,52,50,51,93,44,91,45,57,54,46,53,56,48,51,54,50,44,51,57,46,53,54,54,51,51,50,93,44,91,45,57,54,46,50,51,56,57,54,57,44,51,57,46,53,54,54,50,50,93,44,91,45,57,54,46,50,51,57,50,44,52,48,46,48,48,48,56,56,49,93,44,91,45,57,54,46,52,54,51,55,49,50,44,52,48,46,48,48,49,48,50,51,93,44,91,45,57,54,46,56,48,53,55,54,56,44,52,48,46,48,48,49,52,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,55,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,53,55,54,52,51,44,51,50,46,53,51,55,56,48,55,93,44,91,45,57,49,46,52,55,54,55,51,57,44,51,50,46,52,48,53,56,48,56,93,44,91,45,57,49,46,53,52,51,48,50,49,44,51,50,46,50,53,57,48,48,54,93,44,91,45,57,49,46,52,57,50,55,49,56,44,51,50,46,50,48,51,51,52,57,93,44,91,45,57,49,46,49,50,52,48,52,51,44,51,50,46,50,49,49,49,48,52,93,44,91,45,57,48,46,57,56,51,51,56,49,44,51,50,46,50,49,49,55,54,55,93,44,91,45,57,48,46,57,56,54,54,55,50,44,51,50,46,51,53,49,55,54,93,44,91,45,57,49,46,49,49,54,55,48,56,44,51,50,46,53,48,48,49,51,56,93,44,91,45,57,49,46,48,54,57,55,57,50,44,51,50,46,53,54,50,56,48,51,93,44,91,45,57,49,46,49,51,51,55,49,51,44,51,50,46,53,51,55,57,49,50,93,44,91,45,57,49,46,52,53,55,54,52,51,44,51,50,46,53,51,55,56,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,86,97,108,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,49,49,50,48,53,56,44,52,56,46,57,57,57,52,54,93,44,91,45,49,48,55,46,49,55,57,56,49,50,44,52,57,46,48,48,48,49,48,51,93,44,91,45,49,48,55,46,50,48,54,48,51,50,44,52,56,46,57,49,50,55,49,93,44,91,45,49,48,55,46,50,48,54,51,49,54,44,52,56,46,53,54,56,49,55,93,44,91,45,49,48,55,46,51,48,49,55,50,49,44,52,56,46,52,56,48,57,52,51,93,44,91,45,49,48,55,46,50,54,48,52,53,56,44,52,56,46,51,48,52,55,54,56,93,44,91,45,49,48,55,46,52,48,52,53,49,51,44,52,56,46,50,49,56,52,52,93,44,91,45,49,48,55,46,52,49,52,56,56,54,44,52,55,46,54,57,49,55,51,52,93,44,91,45,49,48,55,46,50,52,57,44,52,55,46,54,54,49,53,54,54,93,44,91,45,49,48,54,46,56,56,49,49,54,50,44,52,55,46,54,55,56,49,50,56,93,44,91,45,49,48,54,46,56,54,49,54,54,56,44,52,55,46,55,51,55,51,55,50,93,44,91,45,49,48,54,46,53,55,49,48,48,51,44,52,55,46,56,49,50,57,51,51,93,44,91,45,49,48,54,46,52,49,56,54,50,44,52,55,46,57,53,55,52,53,55,93,44,91,45,49,48,54,46,51,57,52,49,54,51,44,52,56,46,48,54,52,55,50,54,93,44,91,45,49,48,54,46,50,50,57,51,48,50,44,52,56,46,48,50,54,52,49,54,93,44,91,45,49,48,53,46,56,52,51,56,57,49,44,52,56,46,48,49,48,50,56,57,93,44,91,45,49,48,53,46,56,48,52,53,57,57,44,52,56,46,50,49,57,48,51,55,93,44,91,45,49,48,53,46,56,48,52,52,51,54,44,52,56,46,53,54,51,51,53,56,93,44,91,45,49,48,54,46,48,49,57,56,50,44,52,56,46,53,54,51,50,50,49,93,44,91,45,49,48,54,46,48,50,49,50,53,49,44,52,56,46,56,50,51,57,55,53,93,44,91,45,49,48,54,46,49,53,49,57,48,56,44,52,56,46,56,50,51,57,50,55,93,44,91,45,49,48,54,46,49,49,50,48,53,56,44,52,56,46,57,57,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,51,34,44,34,78,65,77,69,34,58,34,87,104,105,116,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,56,52,57,44,34,98,101,100,115,34,58,50,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,55,57,56,54,44,51,52,46,57,56,55,54,52,55,93,44,91,45,56,53,46,48,54,49,54,52,56,44,51,52,46,56,49,57,52,55,56,93,44,91,45,56,53,46,49,52,52,55,56,57,44,51,52,46,55,54,55,54,51,57,93,44,91,45,56,53,46,48,53,48,56,52,55,44,51,52,46,55,49,57,57,56,93,44,91,45,56,53,46,48,53,48,52,52,54,44,51,52,46,54,50,50,52,56,50,93,44,91,45,56,52,46,57,49,51,52,53,54,44,51,52,46,54,51,52,49,50,56,93,44,91,45,56,52,46,57,50,52,57,48,57,44,51,52,46,55,49,53,57,55,49,93,44,91,45,56,52,46,56,49,56,55,49,53,44,51,52,46,56,55,54,57,53,93,44,91,45,56,52,46,56,49,48,52,55,55,44,51,52,46,57,56,55,54,48,53,93,44,91,45,56,52,46,57,55,54,57,55,54,44,51,52,46,57,56,55,54,54,52,93,44,91,45,56,52,46,57,55,57,56,54,44,51,52,46,57,56,55,54,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,51,34,44,34,78,65,77,69,34,58,34,87,105,99,104,105,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,54,55,48,57,52,44,51,56,46,54,57,57,54,54,57,93,44,91,45,49,48,49,46,53,54,55,52,56,50,44,51,56,46,50,54,51,49,52,53,93,44,91,45,49,48,49,46,53,52,50,51,49,50,44,51,56,46,50,54,51,50,48,55,93,44,91,45,49,48,49,46,49,50,53,52,51,56,44,51,56,46,50,54,52,53,48,57,93,44,91,45,49,48,49,46,49,50,56,51,55,57,44,51,56,46,55,48,48,54,48,51,93,44,91,45,49,48,49,46,52,56,52,51,56,51,44,51,56,46,55,48,48,49,54,54,93,44,91,45,49,48,49,46,53,54,55,48,57,52,44,51,56,46,54,57,57,54,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,101,115,32,77,105,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,52,52,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,57,55,57,57,56,44,52,51,46,52,57,57,54,54,57,93,44,91,45,57,57,46,49,53,50,56,56,57,44,52,51,46,52,50,54,57,48,56,93,44,91,45,57,57,46,48,54,57,50,56,53,44,52,51,46,51,50,48,54,56,56,93,44,91,45,57,56,46,56,57,54,55,56,51,44,52,51,46,50,52,54,57,48,57,93,44,91,45,57,56,46,56,54,56,55,54,50,44,52,51,46,49,54,50,48,48,57,93,44,91,45,57,56,46,52,57,56,53,53,44,52,50,46,57,57,56,53,53,57,93,44,91,45,57,56,46,51,48,57,55,55,49,44,52,50,46,56,56,50,54,48,53,93,44,91,45,57,56,46,49,53,51,49,48,55,44,52,50,46,56,51,56,57,56,54,93,44,91,45,57,56,46,48,57,50,55,56,50,44,52,50,46,57,55,51,57,50,49,93,44,91,45,57,56,46,48,55,55,49,48,56,44,52,51,46,49,54,56,51,51,93,44,91,45,57,56,46,49,48,57,52,57,50,44,52,51,46,49,57,54,56,51,56,93,44,91,45,57,56,46,54,56,48,54,56,56,44,52,51,46,51,55,51,49,53,55,93,44,91,45,57,56,46,55,48,53,55,56,50,44,52,51,46,52,57,57,51,49,57,93,44,91,45,57,56,46,55,57,52,53,56,56,44,52,51,46,52,57,57,49,56,55,93,44,91,45,57,57,46,50,57,55,56,56,50,44,52,51,46,52,57,57,56,53,54,93,44,91,45,57,57,46,50,57,55,57,57,56,44,52,51,46,52,57,57,54,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,101,100,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,56,52,57,50,49,44,52,50,46,56,53,48,51,54,56,93,44,91,45,57,55,46,52,56,53,50,57,56,44,52,50,46,52,51,56,53,55,56,93,44,91,45,57,55,46,51,54,55,55,50,52,44,52,50,46,51,53,49,56,54,49,93,44,91,45,57,55,46,48,49,55,55,56,57,44,52,50,46,51,53,49,51,52,55,93,44,91,45,57,55,46,48,49,53,56,52,57,44,52,50,46,55,54,49,51,51,56,93,44,91,45,57,55,46,49,54,48,51,53,51,44,52,50,46,55,57,57,55,48,49,93,44,91,45,57,55,46,50,49,56,48,52,54,44,52,50,46,56,52,53,49,49,51,93,44,91,45,57,55,46,52,56,52,57,50,49,44,52,50,46,56,53,48,51,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,75,105,116,115,97,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,52,55,53,44,34,98,101,100,115,34,58,51,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,54,48,54,55,54,44,52,55,46,57,55,50,57,53,51,93,44,91,45,49,50,50,46,53,57,57,51,54,52,44,52,55,46,56,55,52,56,49,53,93,44,91,45,49,50,50,46,55,50,49,57,55,49,44,52,55,46,55,56,55,54,54,53,93,44,91,45,49,50,50,46,55,56,51,50,51,55,44,52,55,46,54,55,50,55,53,52,93,44,91,45,49,50,50,46,57,53,48,54,50,49,44,52,55,46,54,48,54,51,48,56,93,44,91,45,49,50,51,46,48,51,56,52,48,52,44,52,55,46,53,50,48,50,51,54,93,44,91,45,49,50,50,46,56,48,49,48,49,50,44,52,55,46,53,50,48,52,48,54,93,44,91,45,49,50,50,46,56,48,49,49,57,57,44,52,55,46,52,48,51,53,55,56,93,44,91,45,49,50,50,46,53,51,54,57,57,51,44,52,55,46,52,48,51,51,53,53,93,44,91,45,49,50,50,46,52,52,55,48,49,55,44,52,55,46,53,52,48,48,52,52,93,44,91,45,49,50,50,46,52,51,56,48,57,51,44,52,55,46,55,55,55,56,49,52,93,44,91,45,49,50,50,46,52,50,57,54,50,53,44,52,55,46,56,50,56,48,57,56,93,44,91,45,49,50,50,46,54,48,54,55,54,44,52,55,46,57,55,50,57,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,77,99,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,55,55,56,57,44,34,98,101,100,115,34,58,52,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,57,57,51,56,57,44,52,50,46,52,57,53,49,51,51,93,44,91,45,56,56,46,51,48,52,54,57,50,44,52,50,46,52,57,52,54,49,56,93,44,91,45,56,56,46,55,48,55,52,50,49,44,52,50,46,52,57,51,53,57,54,93,44,91,45,56,56,46,55,48,53,53,56,53,44,52,50,46,49,53,51,53,51,55,93,44,91,45,56,56,46,53,56,56,54,53,55,44,52,50,46,49,53,51,53,57,93,44,91,45,56,56,46,50,51,56,52,52,57,44,52,50,46,49,53,52,50,52,57,93,44,91,45,56,56,46,49,57,57,53,56,52,44,52,50,46,49,53,52,50,54,93,44,91,45,56,56,46,49,57,57,51,56,57,44,52,50,46,52,57,53,49,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,80,101,116,114,111,108,101,117,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,51,49,51,48,52,56,44,52,55,46,53,56,51,54,53,93,44,91,45,49,48,56,46,51,49,53,52,56,49,44,52,55,46,51,49,53,49,53,50,93,44,91,45,49,48,56,46,53,57,48,56,51,53,44,52,55,46,51,48,54,53,49,54,93,44,91,45,49,48,56,46,55,49,57,49,56,57,44,52,55,46,50,55,48,51,52,50,93,44,91,45,49,48,56,46,55,51,54,56,51,56,44,52,55,46,48,57,56,50,49,56,93,44,91,45,49,48,56,46,54,48,56,57,53,52,44,52,55,46,48,57,56,49,50,54,93,44,91,45,49,48,56,46,54,51,49,52,54,50,44,52,54,46,55,52,57,51,57,50,93,44,91,45,49,48,55,46,56,50,55,54,56,55,44,52,54,46,55,53,53,56,55,53,93,44,91,45,49,48,55,46,56,57,50,50,51,51,44,52,54,46,56,53,49,50,49,53,93,44,91,45,49,48,55,46,56,56,52,55,49,56,44,52,54,46,57,56,52,50,52,57,93,44,91,45,49,48,55,46,57,53,52,51,52,55,44,52,55,46,49,50,48,54,53,50,93,44,91,45,49,48,55,46,57,53,54,54,50,52,44,52,55,46,51,54,48,57,52,51,93,44,91,45,49,48,55,46,57,48,57,49,50,44,52,55,46,52,53,48,54,57,50,93,44,91,45,49,48,55,46,57,51,49,49,48,53,44,52,55,46,53,54,57,48,55,51,93,44,91,45,49,48,56,46,48,54,53,52,49,56,44,52,55,46,53,57,56,50,57,52,93,44,91,45,49,48,56,46,51,49,51,48,52,56,44,52,55,46,53,56,51,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,55,56,48,57,56,44,51,57,46,54,49,53,54,51,50,93,44,91,45,57,51,46,55,53,56,51,53,55,44,51,57,46,54,49,49,52,48,55,93,44,91,45,57,51,46,55,53,57,49,56,51,44,51,57,46,53,50,52,53,53,56,93,44,91,45,57,51,46,55,53,56,52,54,51,44,51,57,46,50,48,55,48,50,49,93,44,91,45,57,51,46,54,53,48,53,50,54,44,51,57,46,50,52,56,50,49,52,93,44,91,45,57,51,46,52,56,55,56,56,53,44,51,57,46,50,50,56,56,55,53,93,44,91,45,57,51,46,52,55,55,50,51,51,44,51,57,46,50,57,50,55,57,54,93,44,91,45,57,51,46,50,50,49,50,48,52,44,51,57,46,51,51,49,54,53,54,93,44,91,45,57,51,46,49,48,52,52,56,53,44,51,57,46,51,56,51,54,53,54,93,44,91,45,57,51,46,50,55,53,57,51,50,44,51,57,46,52,56,52,51,55,49,93,44,91,45,57,51,46,50,55,56,48,57,56,44,51,57,46,54,49,53,54,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,87,104,105,116,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,53,57,51,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,57,54,48,57,51,44,52,55,46,50,54,48,53,54,56,93,44,91,45,49,49,55,46,57,53,57,51,51,53,44,52,54,46,57,49,52,56,49,49,93,44,91,45,49,49,56,46,48,49,50,52,52,50,44,52,54,46,55,57,48,55,56,93,44,91,45,49,49,56,46,50,49,48,50,52,51,44,52,54,46,55,51,56,56,51,51,93,44,91,45,49,49,56,46,50,49,53,54,54,44,52,54,46,53,56,56,57,50,52,93,44,91,45,49,49,56,46,49,55,50,53,53,50,44,52,54,46,53,53,54,57,52,55,93,44,91,45,49,49,55,46,56,53,49,56,53,44,52,54,46,54,50,52,54,55,93,44,91,45,49,49,55,46,55,52,48,56,54,56,44,52,54,46,54,57,52,53,56,51,93,44,91,45,49,49,55,46,52,54,52,55,54,57,44,52,54,46,54,57,57,54,50,54,93,44,91,45,49,49,55,46,50,53,52,50,54,50,44,52,54,46,53,52,53,48,56,50,93,44,91,45,49,49,55,46,50,50,56,49,50,44,52,54,46,52,54,50,50,52,53,93,44,91,45,49,49,55,46,48,51,57,55,54,54,44,52,54,46,52,50,53,56,56,55,93,44,91,45,49,49,55,46,48,51,57,54,57,52,44,52,54,46,53,52,49,55,48,57,93,44,91,45,49,49,55,46,48,51,57,55,53,50,44,52,55,46,49,50,55,50,54,57,93,44,91,45,49,49,55,46,48,51,57,56,55,56,44,52,55,46,50,53,57,50,55,50,93,44,91,45,49,49,55,46,56,50,51,54,50,57,44,52,55,46,50,54,48,50,50,93,44,91,45,49,49,55,46,57,54,48,57,51,44,52,55,46,50,54,48,53,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,83,116,101,101,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,55,54,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,52,53,57,49,44,52,52,46,49,57,54,55,49,54,93,44,91,45,57,51,46,52,48,54,53,54,53,44,52,52,46,49,57,54,51,55,55,93,44,91,45,57,51,46,52,48,54,54,52,50,44,52,51,46,56,52,56,49,50,93,44,91,45,57,51,46,48,52,57,53,50,52,44,52,51,46,56,52,56,52,52,51,93,44,91,45,57,51,46,48,52,53,57,54,54,44,52,51,46,56,52,56,52,54,55,93,44,91,45,57,51,46,48,52,53,57,49,44,52,52,46,49,57,54,55,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,84,104,97,121,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,57,56,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,44,91,45,57,55,46,56,50,48,56,49,54,44,52,48,46,51,53,48,53,52,53,93,44,91,45,57,55,46,56,50,49,52,57,53,44,52,48,46,48,48,50,48,52,55,93,44,91,45,57,55,46,51,54,57,49,57,57,44,52,48,46,48,48,49,57,54,54,93,44,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,114,111,99,107,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,53,54,48,51,51,44,51,53,46,56,49,55,54,51,53,93,44,91,45,56,57,46,50,55,49,50,50,52,44,51,53,46,55,53,52,57,50,50,93,44,91,45,56,57,46,48,54,57,53,52,52,44,51,53,46,54,57,50,54,55,57,93,44,91,45,56,56,46,57,49,54,49,56,49,44,51,53,46,55,57,55,51,48,55,93,44,91,45,56,57,46,49,48,57,54,48,50,44,51,53,46,56,54,50,48,57,53,93,44,91,45,56,57,46,49,56,56,56,52,52,44,51,53,46,57,57,57,55,54,93,44,91,45,56,57,46,50,56,48,49,56,56,44,51,53,46,56,56,54,52,49,54,93,44,91,45,56,57,46,51,52,50,56,50,57,44,51,53,46,56,56,48,57,51,52,93,44,91,45,56,57,46,51,53,54,48,51,51,44,51,53,46,56,49,55,54,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,55,49,53,56,51,44,52,50,46,53,53,56,49,51,57,93,44,91,45,57,51,46,57,51,49,54,56,52,44,52,50,46,52,55,50,48,49,49,93,44,91,45,57,51,46,57,51,49,53,56,44,52,50,46,50,48,57,57,48,56,93,44,91,45,57,51,46,54,57,56,51,57,44,52,50,46,50,48,57,51,51,57,93,44,91,45,57,51,46,52,54,51,48,52,51,44,52,50,46,50,48,57,51,48,50,93,44,91,45,57,51,46,52,54,50,54,51,53,44,52,50,46,52,55,48,56,48,50,93,44,91,45,57,51,46,52,57,57,52,56,53,44,52,50,46,53,53,55,55,93,44,91,45,57,51,46,57,55,49,53,56,51,44,52,50,46,53,53,56,49,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,53,54,52,44,34,98,101,100,115,34,58,51,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,53,50,51,50,44,51,57,46,53,56,57,52,57,51,93,44,91,45,56,52,46,51,51,50,48,56,57,44,51,57,46,53,52,56,56,48,51,93,44,91,45,56,52,46,51,53,51,50,48,57,44,51,57,46,50,57,50,50,56,55,93,44,91,45,56,52,46,50,53,57,52,51,49,44,51,57,46,50,55,48,55,57,54,93,44,91,45,56,52,46,48,48,54,55,56,50,44,51,57,46,50,53,53,48,54,56,93,44,91,45,56,51,46,57,55,55,48,48,53,44,51,57,46,53,54,57,49,54,57,93,44,91,45,56,52,46,49,49,52,49,57,53,44,51,57,46,53,55,55,57,56,51,93,44,91,45,56,52,46,51,54,53,50,51,50,44,51,57,46,53,56,57,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,53,34,44,34,78,65,77,69,34,58,34,83,112,97,108,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,55,49,57,44,34,98,101,100,115,34,58,49,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,52,56,49,56,53,44,51,51,46,49,56,57,48,49,57,93,44,91,45,56,52,46,49,50,51,55,54,55,44,51,51,46,50,48,50,56,50,52,93,44,91,45,56,52,46,49,48,50,53,56,50,44,51,51,46,50,57,56,49,57,49,93,44,91,45,56,52,46,49,53,48,53,56,49,44,51,51,46,51,51,53,54,51,57,93,44,91,45,56,52,46,51,53,52,52,44,51,51,46,51,53,50,53,49,52,93,44,91,45,56,52,46,51,56,56,49,49,56,44,51,51,46,51,53,50,52,54,53,93,44,91,45,56,52,46,52,57,55,53,50,55,44,51,51,46,50,53,55,52,50,50,93,44,91,45,56,52,46,53,48,50,51,53,50,44,51,51,46,50,50,49,48,53,53,93,44,91,45,56,52,46,52,57,54,55,56,51,44,51,51,46,49,56,51,56,54,54,93,44,91,45,56,52,46,50,52,56,49,56,53,44,51,51,46,49,56,57,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,72,117,110,116,101,114,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,48,53,49,44,34,98,101,100,115,34,58,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,56,56,57,56,49,57,44,52,48,46,55,56,55,55,50,57,93,44,91,45,55,52,46,57,55,48,49,49,50,44,52,48,46,55,48,57,56,54,50,93,44,91,45,55,53,46,49,56,57,54,44,52,48,46,53,57,49,55,55,54,93,44,91,45,55,53,46,48,54,56,49,44,52,48,46,53,52,49,52,56,56,93,44,91,45,55,53,46,48,54,48,57,49,55,44,52,48,46,52,50,49,55,51,55,93,44,91,45,55,52,46,57,52,50,57,48,57,44,52,48,46,51,52,49,54,56,51,93,44,91,45,55,52,46,55,52,56,49,52,55,44,52,48,46,52,50,52,49,53,54,93,44,91,45,55,52,46,55,55,53,57,55,57,44,52,48,46,53,48,51,54,48,54,93,44,91,45,55,52,46,55,49,51,49,53,44,52,48,46,53,56,51,57,48,51,93,44,91,45,55,52,46,55,50,53,54,54,54,44,52,48,46,55,49,57,53,51,50,93,44,91,45,55,52,46,56,56,57,56,49,57,44,52,48,46,55,56,55,55,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,55,34,44,34,78,65,77,69,34,58,34,86,101,114,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,57,49,44,34,98,101,100,115,34,58,49,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,53,56,50,56,53,44,51,56,46,48,51,54,54,50,55,93,44,91,45,57,52,46,54,49,52,48,54,49,44,51,56,46,48,54,48,48,53,54,93,44,91,45,57,52,46,54,49,52,48,56,57,44,51,56,46,48,51,55,48,53,55,93,44,91,45,57,52,46,54,49,55,55,55,57,44,51,55,46,54,55,51,49,48,53,93,44,91,45,57,52,46,54,49,55,54,57,56,44,51,55,46,54,53,51,53,55,56,93,44,91,45,57,52,46,48,55,51,53,50,52,44,51,55,46,54,51,57,55,50,50,93,44,91,45,57,52,46,48,54,53,54,55,53,44,51,55,46,57,48,48,57,56,55,93,44,91,45,57,52,46,48,53,56,50,56,53,44,51,56,46,48,51,54,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,80,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,50,48,50,50,49,44,51,57,46,57,53,50,52,53,50,93,44,91,45,56,55,46,51,54,56,56,54,51,44,51,57,46,56,57,48,52,55,49,93,44,91,45,56,55,46,51,56,50,52,49,56,44,51,57,46,54,48,55,57,51,55,93,44,91,45,56,55,46,49,57,57,48,49,50,44,51,57,46,54,48,55,49,51,55,93,44,91,45,56,55,46,48,49,51,48,54,50,44,51,57,46,54,48,52,55,56,55,93,44,91,45,56,55,46,48,48,57,52,55,55,44,51,57,46,56,54,54,55,48,53,93,44,91,45,56,55,46,48,57,49,48,48,54,44,51,57,46,57,53,51,48,48,57,93,44,91,45,56,55,46,52,50,48,50,50,49,44,51,57,46,57,53,50,52,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,52,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,44,91,45,57,51,46,52,57,56,54,49,55,44,52,50,46,57,48,56,53,49,50,93,44,91,45,57,51,46,52,57,57,52,56,53,44,52,50,46,53,53,55,55,93,44,91,45,57,51,46,48,50,55,44,52,50,46,53,53,54,56,49,93,44,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,66,117,116,116,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,55,53,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,50,51,57,49,51,44,51,51,46,52,52,52,49,57,52,93,44,91,45,56,52,46,49,48,50,53,56,50,44,51,51,46,50,57,56,49,57,49,93,44,91,45,56,52,46,49,50,51,55,54,55,44,51,51,46,50,48,50,56,50,52,93,44,91,45,56,52,46,48,52,49,52,57,56,44,51,51,46,50,48,50,54,50,57,93,44,91,45,56,51,46,56,50,50,50,54,49,44,51,51,46,49,56,48,50,51,56,93,44,91,45,56,51,46,56,54,51,48,53,56,44,51,51,46,51,54,56,50,55,56,93,44,91,45,56,51,46,57,50,51,57,49,51,44,51,51,46,52,52,52,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,69,108,98,101,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,49,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,55,49,52,51,53,53,44,51,57,46,53,54,54,51,51,49,93,44,91,45,49,48,52,46,54,54,48,54,50,54,44,51,57,46,53,54,53,57,48,57,93,44,91,45,49,48,52,46,54,54,50,56,57,54,44,51,57,46,49,50,57,53,50,55,93,44,91,45,49,48,52,46,48,53,49,53,56,57,44,51,57,46,49,50,56,51,55,93,44,91,45,49,48,52,46,48,53,53,53,50,56,44,51,56,46,56,54,56,56,54,56,93,44,91,45,49,48,51,46,55,49,57,54,54,52,44,51,56,46,56,54,54,56,50,55,93,44,91,45,49,48,51,46,55,49,52,51,53,53,44,51,57,46,53,54,54,51,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,52,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,114,105,115,116,111,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,82,104,111,100,101,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,82,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,57,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,51,51,48,57,55,44,52,49,46,54,56,54,57,54,50,93,44,91,45,55,49,46,50,48,56,51,55,49,44,52,49,46,54,57,48,53,57,56,93,44,91,45,55,49,46,51,49,55,56,55,51,44,52,49,46,55,55,54,49,57,57,93,44,91,45,55,49,46,51,54,53,50,48,55,44,52,49,46,55,51,53,54,52,57,93,44,91,45,55,49,46,51,51,48,57,55,44,52,49,46,54,56,54,57,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,66,111,115,113,117,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,50,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,49,53,48,53,53,44,51,50,46,50,48,51,53,56,49,93,44,91,45,57,55,46,56,54,52,56,54,52,44,51,50,46,48,56,55,51,50,56,93,44,91,45,57,56,46,48,48,53,52,54,50,44,51,50,46,48,49,55,56,57,55,93,44,91,45,57,55,46,55,54,54,52,51,49,44,51,49,46,54,55,50,52,54,49,93,44,91,45,57,55,46,54,56,57,56,51,52,44,51,49,46,55,49,49,48,49,57,93,44,91,45,57,55,46,54,48,53,50,51,44,51,49,46,53,56,55,55,54,50,93,44,91,45,57,55,46,50,55,55,50,54,53,44,51,49,46,55,52,53,52,57,50,93,44,91,45,57,55,46,51,50,55,49,52,53,44,51,49,46,56,52,49,52,53,50,93,44,91,45,57,55,46,52,56,53,57,54,56,44,51,50,46,48,49,55,54,49,49,93,44,91,45,57,55,46,52,55,54,48,56,54,44,51,50,46,49,55,51,52,54,93,44,91,45,57,55,46,54,49,53,48,53,53,44,51,50,46,50,48,51,53,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,52,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,78,101,119,112,111,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,82,104,111,100,101,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,82,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,48,55,53,44,34,98,101,100,115,34,58,49,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,51,56,48,53,52,50,44,52,49,46,54,53,48,51,50,54,93,44,91,45,55,49,46,52,48,57,48,57,57,44,52,49,46,52,54,56,50,48,50,93,44,91,45,55,49,46,53,48,57,52,52,50,44,52,49,46,51,48,55,55,51,50,93,44,91,45,55,49,46,48,56,56,53,55,49,44,52,49,46,52,51,49,51,49,53,93,44,91,45,55,49,46,49,51,50,53,53,55,44,52,49,46,54,54,48,51,54,51,93,44,91,45,55,49,46,50,48,56,51,55,49,44,52,49,46,54,57,48,53,57,56,93,44,91,45,55,49,46,51,51,48,57,55,44,52,49,46,54,56,54,57,54,50,93,44,91,45,55,49,46,51,56,48,53,52,50,44,52,49,46,54,53,48,51,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,70,97,105,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,57,49,48,44,34,98,101,100,115,34,58,50,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,56,50,52,57,53,44,51,57,46,57,51,57,54,54,50,93,44,91,45,56,50,46,56,50,52,50,53,52,44,51,57,46,55,57,52,57,57,54,93,44,91,45,56,50,46,56,52,50,57,53,51,44,51,57,46,53,54,49,52,56,93,44,91,45,56,50,46,55,51,49,53,49,56,44,51,57,46,53,53,52,52,52,53,93,44,91,45,56,50,46,52,57,54,49,50,51,44,51,57,46,54,48,50,56,52,57,93,44,91,45,56,50,46,51,55,52,53,51,49,44,51,57,46,54,53,52,57,53,57,93,44,91,45,56,50,46,51,57,54,53,57,52,44,51,57,46,56,51,51,48,53,55,93,44,91,45,56,50,46,52,54,50,56,49,51,44,51,57,46,57,51,48,51,56,93,44,91,45,56,50,46,55,56,50,52,57,53,44,51,57,46,57,51,57,54,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,80,105,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,55,54,54,49,57,44,52,56,46,53,52,52,56,49,51,93,44,91,45,49,48,48,46,50,51,55,48,57,57,44,52,56,46,51,55,49,50,52,52,93,44,91,45,49,48,48,46,50,51,55,48,50,50,44,52,56,46,48,50,49,56,54,54,93,44,91,45,49,48,48,46,49,57,55,57,57,54,44,52,55,46,56,52,55,54,53,50,93,44,91,45,49,48,48,46,48,54,57,51,49,49,44,52,55,46,56,52,55,52,51,49,93,44,91,45,57,57,46,56,49,50,49,54,55,44,52,55,46,56,52,55,50,53,55,93,44,91,45,57,57,46,56,52,56,50,50,50,44,52,56,46,48,50,49,52,50,52,93,44,91,45,57,57,46,56,52,55,48,52,54,44,52,56,46,51,55,49,50,93,44,91,45,57,57,46,52,57,50,57,49,57,44,52,56,46,51,55,48,57,52,54,93,44,91,45,57,57,46,52,57,51,49,56,57,44,52,56,46,53,52,52,56,51,52,93,44,91,45,49,48,48,46,49,52,53,56,53,56,44,52,56,46,53,52,53,50,49,49,93,44,91,45,49,48,48,46,50,55,54,54,49,57,44,52,56,46,53,52,52,56,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,55,51,57,53,44,52,50,46,49,57,51,54,52,53,93,44,91,45,57,48,46,49,54,50,56,57,53,44,52,50,46,49,49,54,55,49,56,93,44,91,45,57,48,46,49,53,52,50,50,49,44,52,50,46,48,51,51,48,55,51,93,44,91,45,57,48,46,49,53,49,57,56,44,52,49,46,57,50,56,57,49,55,93,44,91,45,56,57,46,54,56,53,51,54,54,44,52,49,46,57,51,48,51,52,93,44,91,45,56,57,46,54,56,56,52,56,54,44,52,50,46,49,57,57,49,49,50,93,44,91,45,56,57,46,57,49,57,55,55,50,44,52,50,46,49,57,54,56,56,49,93,44,91,45,57,48,46,51,49,55,51,57,53,44,52,50,46,49,57,51,54,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,82,101,100,32,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,56,50,53,53,44,52,55,46,57,54,51,53,57,53,93,44,91,45,57,54,46,52,56,50,48,57,50,44,52,55,46,56,52,55,52,50,56,93,44,91,45,57,54,46,51,53,49,55,50,55,44,52,55,46,55,54,48,51,93,44,91,45,57,53,46,56,51,55,49,55,55,44,52,55,46,55,54,48,56,57,52,93,44,91,45,57,53,46,56,51,54,56,50,55,44,52,55,46,56,52,56,50,49,57,93,44,91,45,57,53,46,55,48,57,54,49,57,44,52,55,46,57,51,53,56,48,53,93,44,91,45,57,53,46,55,48,57,56,52,44,52,55,46,57,54,52,51,51,93,44,91,45,57,54,46,52,56,50,53,53,44,52,55,46,57,54,51,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,56,52,51,49,51,56,44,52,52,46,51,57,50,54,51,93,44,91,45,49,50,49,46,49,48,55,53,51,52,44,52,52,46,51,57,48,54,93,44,91,45,49,50,48,46,57,56,56,56,50,52,44,52,52,46,52,55,54,52,56,52,93,44,91,45,49,50,48,46,56,50,54,56,57,57,44,52,52,46,52,55,54,52,57,57,93,44,91,45,49,50,48,46,56,50,55,53,53,53,44,52,52,46,53,54,50,55,57,51,93,44,91,45,49,50,48,46,51,56,54,53,54,49,44,52,52,46,53,54,52,48,48,57,93,44,91,45,49,50,48,46,51,55,49,52,52,49,44,52,52,46,56,50,49,55,54,57,93,44,91,45,49,50,49,46,48,56,57,52,56,44,52,52,46,56,50,51,50,55,50,93,44,91,45,49,50,49,46,55,53,50,57,57,52,44,52,52,46,56,50,57,57,49,57,93,44,91,45,49,50,49,46,56,48,48,48,49,53,44,52,52,46,54,56,51,52,50,53,93,44,91,45,49,50,49,46,56,52,51,49,51,56,44,52,52,46,51,57,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,101,97,116,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,57,50,57,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,56,54,53,48,49,44,51,54,46,51,50,49,57,51,51,93,44,91,45,56,55,46,49,53,54,53,56,57,44,51,54,46,51,48,55,55,48,54,93,44,91,45,56,55,46,49,56,50,53,55,51,44,51,54,46,48,52,57,55,50,54,93,44,91,45,56,55,46,48,53,51,55,50,50,44,51,54,46,48,52,53,53,56,50,93,44,91,45,56,54,46,57,57,55,55,48,53,44,51,54,46,49,50,56,53,49,50,93,44,91,45,56,54,46,57,49,51,50,51,51,44,51,54,46,51,56,50,54,50,49,93,44,91,45,56,54,46,57,56,56,48,54,44,51,54,46,51,54,57,49,53,52,93,44,91,45,56,55,46,49,50,48,52,52,51,44,51,54,46,52,53,53,52,54,93,44,91,45,56,55,46,50,56,54,53,48,49,44,51,54,46,51,50,49,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,55,55,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,48,53,54,56,50,44,52,51,46,48,56,51,54,55,93,44,91,45,57,54,46,56,48,54,50,49,51,44,52,50,46,55,48,52,49,53,52,93,44,91,45,57,54,46,54,51,49,52,57,50,44,52,50,46,53,50,52,51,49,56,93,44,91,45,57,54,46,52,52,53,52,56,51,44,52,50,46,52,57,48,54,51,93,44,91,45,57,54,46,52,57,56,55,55,54,44,52,50,46,53,54,49,48,52,51,93,44,91,45,57,54,46,54,51,53,53,54,49,44,52,50,46,55,52,48,56,52,55,93,44,91,45,57,54,46,53,51,56,52,53,56,44,52,50,46,57,48,56,55,55,49,93,44,91,45,57,54,46,53,49,51,54,56,49,44,52,51,46,48,52,55,48,51,93,44,91,45,57,54,46,52,53,52,49,51,44,52,51,46,48,56,51,51,56,93,44,91,45,57,54,46,56,48,53,54,56,50,44,52,51,46,48,56,51,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,69,108,109,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,50,49,50,44,34,98,101,100,115,34,58,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,55,52,57,55,52,44,51,50,46,55,53,51,53,56,93,44,91,45,56,54,46,52,49,51,49,49,54,44,51,50,46,55,48,55,51,56,54,93,44,91,45,56,54,46,52,49,49,49,55,50,44,51,50,46,52,48,57,57,51,55,93,44,91,45,56,54,46,50,51,55,48,54,56,44,51,50,46,52,57,52,57,56,93,44,91,45,56,54,46,49,49,54,51,50,57,44,51,50,46,52,49,55,48,50,54,93,44,91,45,56,54,46,48,50,51,48,49,50,44,51,50,46,52,49,57,57,55,56,93,44,91,45,56,53,46,56,56,54,49,52,56,44,51,50,46,52,57,51,48,53,51,93,44,91,45,56,53,46,56,55,57,56,54,44,51,50,46,55,53,52,53,50,56,93,44,91,45,56,54,46,48,48,55,49,56,55,44,51,50,46,55,53,52,57,56,52,93,44,91,45,56,54,46,51,55,52,57,55,52,44,51,50,46,55,53,51,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,76,117,109,112,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,57,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,53,54,53,48,54,44,51,52,46,55,50,50,49,57,49,93,44,91,45,56,51,46,57,51,57,48,48,55,44,51,52,46,55,52,48,56,53,57,93,44,91,45,56,52,46,48,51,54,50,55,54,44,51,52,46,54,52,50,48,56,55,93,44,91,45,56,52,46,49,53,56,48,51,53,44,51,52,46,54,52,56,50,52,51,93,44,91,45,56,52,46,49,56,56,53,53,55,44,51,52,46,54,48,50,54,57,50,93,44,91,45,56,52,46,49,57,49,48,52,44,51,52,46,53,51,57,49,56,49,93,44,91,45,56,51,46,57,56,48,54,52,57,44,51,52,46,52,49,56,51,56,57,93,44,91,45,56,51,46,56,52,51,52,48,53,44,51,52,46,53,48,53,52,57,52,93,44,91,45,56,51,46,56,53,54,53,48,54,44,51,52,46,55,50,50,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,50,49,53,44,34,98,101,100,115,34,58,49,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,50,51,54,48,57,44,52,48,46,53,52,57,56,55,57,93,44,91,45,56,50,46,54,52,54,53,48,51,44,52,48,46,51,52,53,48,55,54,93,44,91,45,56,50,46,55,52,52,57,51,49,44,52,48,46,51,52,57,54,48,51,93,44,91,45,56,50,46,55,53,48,55,52,55,44,52,48,46,50,55,54,57,57,54,93,44,91,45,56,50,46,52,55,55,50,55,51,44,52,48,46,50,52,53,56,49,93,44,91,45,56,50,46,49,57,53,57,49,49,44,52,48,46,50,51,57,48,55,49,93,44,91,45,56,50,46,49,56,52,54,48,55,44,52,48,46,52,53,54,50,56,93,44,91,45,56,50,46,50,50,48,49,49,44,52,48,46,53,54,56,50,48,54,93,44,91,45,56,50,46,51,51,54,57,54,50,44,52,48,46,53,53,53,48,48,49,93,44,91,45,56,50,46,54,50,51,54,48,57,44,52,48,46,53,52,57,56,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,114,101,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,55,56,50,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,52,50,49,49,44,52,50,46,57,48,55,49,49,50,93,44,91,45,57,50,46,53,53,52,52,57,50,44,52,50,46,54,52,50,51,49,52,93,44,91,45,57,50,46,48,56,49,54,54,49,44,52,50,46,54,52,50,48,53,54,93,44,91,45,57,50,46,48,56,49,53,54,56,44,52,50,46,57,48,55,48,49,51,93,44,91,45,57,50,46,53,53,52,50,49,49,44,52,50,46,57,48,55,49,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,71,111,108,105,97,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,48,53,57,49,54,44,50,56,46,56,54,52,48,51,55,93,44,91,45,57,55,46,52,49,55,51,52,44,50,56,46,57,50,53,50,50,56,93,44,91,45,57,55,46,53,55,52,54,51,57,44,50,56,46,56,49,51,51,93,44,91,45,57,55,46,55,55,56,53,51,44,50,56,46,54,54,56,48,50,55,93,44,91,45,57,55,46,54,57,54,57,52,53,44,50,56,46,53,52,49,56,53,54,93,44,91,45,57,55,46,53,55,55,48,53,56,44,50,56,46,53,50,50,53,52,55,93,44,91,45,57,55,46,53,53,51,57,49,54,44,50,56,46,52,53,53,50,55,56,93,44,91,45,57,55,46,51,55,53,53,55,57,44,50,56,46,51,56,56,54,56,52,93,44,91,45,57,55,46,49,54,48,55,53,49,44,50,56,46,53,53,51,52,55,53,93,44,91,45,57,55,46,49,53,56,57,51,51,44,50,56,46,55,55,54,49,53,54,93,44,91,45,57,55,46,50,48,52,57,57,56,44,50,56,46,56,53,53,48,52,93,44,91,45,57,55,46,51,48,53,57,49,54,44,50,56,46,56,54,52,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,72,101,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,54,50,53,44,34,98,101,100,115,34,58,51,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,54,53,55,57,53,44,51,53,46,52,54,55,56,49,56,93,44,91,45,56,50,46,51,51,50,51,51,49,44,51,53,46,53,48,48,49,49,55,93,44,91,45,56,50,46,52,55,48,53,53,55,44,51,53,46,52,52,53,49,55,52,93,44,91,45,56,50,46,55,52,53,49,51,57,44,51,53,46,52,50,50,57,54,55,93,44,91,45,56,50,46,54,49,48,49,56,54,44,51,53,46,50,56,56,49,57,57,93,44,91,45,56,50,46,53,55,52,56,51,57,44,51,53,46,49,52,53,52,52,57,93,44,91,45,56,50,46,51,53,51,55,53,52,44,51,53,46,49,57,48,57,54,55,93,44,91,45,56,50,46,51,52,54,49,52,49,44,51,53,46,50,56,53,57,57,50,93,44,91,45,56,50,46,50,54,49,51,48,53,44,51,53,46,51,57,51,49,57,56,93,44,91,45,56,50,46,50,54,53,55,57,53,44,51,53,46,52,54,55,56,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,73,110,100,105,97,110,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,57,56,52,44,34,98,101,100,115,34,58,52,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,55,57,56,50,49,44,50,55,46,53,53,56,52,55,93,44,91,45,56,48,46,50,54,51,53,52,51,44,50,55,46,53,53,54,55,56,50,93,44,91,45,56,48,46,51,56,53,48,54,57,44,50,55,46,56,54,49,51,54,50,93,44,91,45,56,48,46,53,48,57,48,55,53,44,50,55,46,56,50,50,48,53,56,93,44,91,45,56,48,46,56,54,56,56,56,49,44,50,55,46,56,50,50,53,50,50,93,44,91,45,56,48,46,56,55,51,49,53,44,50,55,46,54,52,50,50,56,56,93,44,91,45,56,48,46,55,55,55,49,54,54,44,50,55,46,53,53,56,55,51,51,93,44,91,45,56,48,46,54,55,57,56,50,49,44,50,55,46,53,53,56,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,57,51,34,44,34,78,65,77,69,34,58,34,82,111,98,101,114,116,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,56,53,55,51,53,44,51,54,46,48,53,53,50,55,54,93,44,91,45,49,48,49,46,48,56,54,48,54,56,44,51,53,46,54,50,53,50,54,55,93,44,91,45,49,48,49,46,48,56,53,57,51,53,44,51,53,46,54,49,57,49,48,50,93,44,91,45,49,48,48,46,53,52,48,49,53,56,44,51,53,46,54,49,57,50,57,54,93,44,91,45,49,48,48,46,53,52,48,50,50,49,44,51,54,46,48,53,54,52,57,49,93,44,91,45,49,48,48,46,53,52,54,55,50,52,44,51,54,46,48,53,54,53,51,54,93,44,91,45,49,48,49,46,48,56,53,55,49,54,44,51,54,46,48,53,55,53,55,50,93,44,91,45,49,48,49,46,48,56,53,55,51,53,44,51,54,46,48,53,53,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,68,101,117,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,49,48,52,49,51,44,52,49,46,50,50,49,54,49,52,93,44,91,45,49,48,50,46,54,50,49,48,51,51,44,52,49,46,48,48,50,53,57,55,93,44,91,45,49,48,50,46,48,53,49,55,49,55,44,52,49,46,48,48,50,51,53,57,93,44,91,45,49,48,50,46,48,53,49,55,54,49,44,52,49,46,48,48,51,56,57,93,44,91,45,49,48,50,46,48,53,53,53,51,53,44,52,49,46,50,50,49,53,52,55,93,44,91,45,49,48,50,46,54,49,48,52,49,51,44,52,49,46,50,50,49,54,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,57,48,55,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,57,48,57,56,51,50,44,52,50,46,57,56,55,55,54,50,93,44,91,45,55,55,46,57,53,52,57,54,52,44,52,50,46,56,54,50,55,53,52,93,44,91,45,55,55,46,57,53,54,51,51,52,44,52,50,46,54,54,55,51,50,50,93,44,91,45,55,56,46,48,51,56,50,54,49,44,52,50,46,53,50,49,53,50,50,93,44,91,45,55,55,46,56,52,48,57,48,49,44,52,50,46,53,49,55,55,54,55,93,44,91,45,55,55,46,55,50,50,57,54,52,44,52,50,46,52,55,49,50,49,54,93,44,91,45,55,55,46,54,53,57,57,49,55,44,52,50,46,53,56,48,52,48,57,93,44,91,45,55,55,46,52,57,48,56,56,57,44,52,50,46,53,55,55,50,56,56,93,44,91,45,55,55,46,53,57,56,56,49,53,44,52,50,46,54,55,49,57,54,53,93,44,91,45,55,55,46,53,56,48,51,55,55,44,52,50,46,57,52,51,57,54,51,93,44,91,45,55,55,46,55,51,48,57,53,55,44,52,50,46,57,56,56,51,55,50,93,44,91,45,55,55,46,57,48,57,56,51,50,44,52,50,46,57,56,55,55,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,79,39,66,114,105,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,49,49,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,54,49,57,49,52,44,52,51,46,50,53,55,53,54,54,93,44,91,45,57,53,46,56,53,57,51,55,55,44,52,50,46,57,48,57,48,57,55,93,44,91,45,57,53,46,51,56,56,49,56,50,44,52,50,46,57,48,57,56,57,55,93,44,91,45,57,53,46,51,56,56,48,55,56,44,52,51,46,50,53,53,50,50,49,93,44,91,45,57,53,46,56,54,49,57,49,52,44,52,51,46,50,53,55,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,67,97,108,108,97,104,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,55,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,49,52,50,57,51,44,51,50,46,53,49,52,56,49,49,93,44,91,45,57,57,46,54,49,50,48,50,54,44,51,50,46,53,49,52,54,53,52,93,44,91,45,57,57,46,54,50,57,53,55,57,44,51,50,46,53,49,52,54,53,55,93,44,91,45,57,57,46,54,51,49,52,49,51,44,51,50,46,48,56,49,50,55,52,93,44,91,45,57,57,46,49,57,53,56,55,49,44,51,50,46,48,55,57,50,51,53,93,44,91,45,57,57,46,49,49,56,54,54,53,44,51,50,46,48,55,57,53,56,53,93,44,91,45,57,57,46,49,49,52,50,57,51,44,51,50,46,53,49,52,56,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,55,57,34,44,34,78,65,77,69,34,58,34,82,97,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,55,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,51,52,52,51,51,44,51,50,46,56,51,55,50,49,55,93,44,91,45,57,53,46,54,51,53,48,49,55,44,51,50,46,55,50,48,51,56,93,44,91,45,57,53,46,54,54,53,51,56,57,44,51,50,46,57,54,48,52,51,52,93,44,91,45,57,53,46,56,54,50,53,50,49,44,51,50,46,57,55,57,53,55,49,93,44,91,45,57,53,46,57,52,53,51,44,51,50,46,57,55,57,56,55,55,93,44,91,45,57,53,46,57,51,52,52,51,51,44,51,50,46,56,51,55,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,49,54,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,50,55,48,54,51,44,51,55,46,55,51,54,51,49,52,93,44,91,45,49,48,49,46,53,50,53,56,49,44,51,55,46,51,56,56,51,57,50,93,44,91,45,49,48,49,46,48,56,57,54,53,51,44,51,55,46,51,56,55,55,50,49,93,44,91,45,49,48,49,46,48,56,57,54,54,55,44,51,55,46,55,51,54,51,51,55,93,44,91,45,49,48,49,46,53,50,55,48,54,51,44,51,55,46,55,51,54,51,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,51,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,55,56,52,44,51,54,46,56,57,50,57,53,51,93,44,91,45,56,51,46,48,55,50,56,51,54,44,51,54,46,56,53,52,52,53,55,93,44,91,45,56,51,46,49,57,52,50,53,50,44,51,54,46,55,51,57,53,49,57,93,44,91,45,56,51,46,52,54,49,48,49,54,44,51,54,46,54,54,52,56,54,93,44,91,45,56,51,46,54,55,53,51,57,53,44,51,54,46,54,48,48,55,56,52,93,44,91,45,56,51,46,52,55,50,49,48,56,44,51,54,46,53,57,55,50,56,52,93,44,91,45,56,50,46,57,56,53,49,50,52,44,51,54,46,53,57,51,55,50,57,93,44,91,45,56,50,46,57,52,55,54,52,55,44,51,54,46,54,55,53,55,53,49,93,44,91,45,56,50,46,55,55,49,53,57,53,44,51,54,46,56,48,48,48,51,49,93,44,91,45,56,50,46,56,55,56,52,44,51,54,46,56,57,50,57,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,83,105,101,114,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,51,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,51,55,50,55,57,55,44,51,51,46,52,55,57,56,55,53,93,44,91,45,49,48,54,46,52,55,52,50,57,53,44,51,51,46,52,55,53,55,56,54,93,44,91,45,49,48,55,46,55,49,50,55,53,52,44,51,51,46,52,55,54,56,51,50,93,44,91,45,49,48,56,46,48,48,48,54,48,50,44,51,51,46,52,55,56,48,49,52,93,44,91,45,49,48,56,46,48,48,48,53,57,56,44,51,51,46,50,48,49,50,53,51,93,44,91,45,49,48,55,46,56,54,53,48,48,57,44,51,51,46,49,57,57,57,55,52,93,44,91,45,49,48,55,46,56,53,54,54,55,50,44,51,51,46,48,48,50,53,51,57,93,44,91,45,49,48,55,46,55,56,48,53,52,56,44,51,50,46,57,53,50,55,55,54,93,44,91,45,49,48,55,46,55,50,49,51,56,55,44,51,50,46,55,55,56,48,55,55,93,44,91,45,49,48,55,46,55,51,50,50,56,50,44,51,50,46,54,50,55,51,53,51,93,44,91,45,49,48,55,46,54,48,56,52,56,53,44,51,50,46,54,48,53,52,52,57,93,44,91,45,49,48,55,46,50,57,57,54,51,49,44,51,50,46,54,48,53,51,55,93,44,91,45,49,48,55,46,50,57,57,52,55,53,44,51,50,46,55,56,48,49,54,54,93,44,91,45,49,48,54,46,56,56,55,55,51,51,44,51,50,46,55,55,57,50,55,51,93,44,91,45,49,48,54,46,56,56,55,56,57,49,44,51,50,46,56,50,50,55,56,49,93,44,91,45,49,48,54,46,51,52,48,53,49,53,44,51,51,46,48,53,50,55,55,55,93,44,91,45,49,48,54,46,51,52,53,55,49,44,51,51,46,51,57,48,53,57,53,93,44,91,45,49,48,54,46,51,55,50,55,57,55,44,51,51,46,52,55,57,56,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,114,101,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,48,50,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,55,53,56,52,52,44,51,51,46,55,48,52,52,49,52,93,44,91,45,57,49,46,57,57,48,49,54,55,44,51,51,46,51,57,56,50,49,52,93,44,91,45,57,49,46,52,53,55,51,55,44,51,51,46,51,56,56,57,55,52,93,44,91,45,57,49,46,52,53,51,52,51,56,44,51,51,46,53,54,51,55,48,51,93,44,91,45,57,49,46,52,53,48,51,50,53,44,51,51,46,55,56,48,52,49,53,93,44,91,45,57,49,46,53,53,55,54,52,56,44,51,51,46,55,56,51,51,56,52,93,44,91,45,57,49,46,57,55,53,57,55,52,44,51,51,46,55,57,49,55,56,55,93,44,91,45,57,49,46,57,55,53,56,52,52,44,51,51,46,55,48,52,52,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,111,114,114,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,49,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,57,55,56,51,53,44,52,50,46,48,48,52,56,52,51,93,44,91,45,49,48,51,46,51,54,51,51,51,55,44,52,50,46,48,48,50,57,51,93,44,91,45,49,48,51,46,51,55,48,51,57,49,44,52,49,46,54,57,57,50,49,93,44,91,45,49,48,51,46,51,54,57,48,50,52,44,52,49,46,52,51,55,54,53,53,93,44,91,45,49,48,50,46,54,51,54,54,57,53,44,52,49,46,52,51,57,48,53,51,93,44,91,45,49,48,50,46,54,51,54,52,55,54,44,52,49,46,55,52,51,49,51,57,93,44,91,45,49,48,50,46,54,55,57,48,57,51,44,52,49,46,56,52,51,48,53,93,44,91,45,49,48,50,46,54,55,55,53,56,50,44,52,50,46,48,48,53,50,56,50,93,44,91,45,49,48,50,46,54,57,55,56,51,53,44,52,50,46,48,48,52,56,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,57,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,54,55,50,57,49,44,51,56,46,53,50,57,57,57,53,93,44,91,45,57,51,46,50,57,48,52,53,52,44,51,56,46,53,51,53,51,56,56,93,44,91,45,57,51,46,53,49,50,55,52,51,44,51,56,46,53,49,50,52,55,54,93,44,91,45,57,51,46,53,50,51,52,56,52,44,51,56,46,50,48,55,50,49,54,93,44,91,45,57,51,46,53,48,51,57,52,54,44,51,56,46,48,55,51,49,50,51,93,44,91,45,57,51,46,48,54,53,49,57,57,44,51,56,46,48,54,50,52,55,57,93,44,91,45,57,51,46,48,55,55,54,57,50,44,51,56,46,50,54,51,48,57,50,93,44,91,45,57,51,46,48,54,55,50,57,49,44,51,56,46,53,50,57,57,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,51,53,51,55,49,44,51,52,46,51,53,48,48,57,55,93,44,91,45,57,51,46,57,50,53,56,51,44,51,52,46,49,56,54,52,57,54,93,44,91,45,57,51,46,56,50,48,55,50,50,44,51,52,46,49,56,51,56,48,50,93,44,91,45,57,51,46,56,50,51,48,55,54,44,51,52,46,48,48,56,56,57,51,93,44,91,45,57,51,46,54,49,55,52,54,44,51,51,46,57,53,57,54,50,55,93,44,91,45,57,51,46,52,53,54,55,48,57,44,51,51,46,57,53,54,56,51,55,93,44,91,45,57,51,46,51,55,51,52,48,54,44,51,51,46,57,53,55,48,55,93,44,91,45,57,51,46,52,51,52,56,56,55,44,51,52,46,48,53,50,50,57,56,93,44,91,45,57,51,46,52,55,56,54,52,54,44,51,52,46,51,52,48,56,53,49,93,44,91,45,57,51,46,57,51,53,51,55,49,44,51,52,46,51,53,48,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,77,101,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,57,57,56,44,34,98,101,100,115,34,58,52,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,53,48,55,54,53,44,51,57,46,51,54,54,54,55,55,93,44,91,45,49,48,57,46,48,54,48,49,49,57,44,51,56,46,52,57,57,57,56,57,93,44,91,45,49,48,56,46,51,55,57,49,51,54,44,51,56,46,52,57,57,57,56,55,93,44,91,45,49,48,56,46,51,55,56,54,57,56,44,51,56,46,54,54,56,48,57,55,93,44,91,45,49,48,56,46,51,55,56,57,53,51,44,51,56,46,56,50,57,49,48,56,93,44,91,45,49,48,56,46,49,53,50,52,55,56,44,51,56,46,57,48,49,50,54,56,93,44,91,45,49,48,55,46,57,56,50,49,55,51,44,51,57,46,48,53,57,56,55,56,93,44,91,45,49,48,55,46,55,54,53,48,53,57,44,51,57,46,48,52,52,54,56,51,93,44,91,45,49,48,55,46,53,48,48,54,48,54,44,51,57,46,50,49,55,57,49,54,93,44,91,45,49,48,55,46,51,57,52,52,56,54,44,51,57,46,50,53,54,50,57,57,93,44,91,45,49,48,55,46,52,51,48,57,52,57,44,51,57,46,51,54,54,49,55,56,93,44,91,45,49,48,56,46,52,48,57,54,48,55,44,51,57,46,51,54,53,57,56,51,93,44,91,45,49,48,57,46,48,53,48,55,54,53,44,51,57,46,51,54,54,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,68,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,48,52,44,34,98,101,100,115,34,58,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,48,57,49,48,53,44,51,55,46,53,57,56,56,54,51,93,44,91,45,57,49,46,55,53,53,48,52,44,51,55,46,52,50,52,49,49,93,44,91,45,57,49,46,54,52,54,54,50,54,44,51,55,46,52,50,50,55,51,49,93,44,91,45,57,49,46,50,49,49,56,54,51,44,51,55,46,52,49,53,50,55,55,93,44,91,45,57,49,46,51,49,52,50,51,54,44,51,55,46,53,48,53,49,51,50,93,44,91,45,57,49,46,51,49,50,52,53,56,44,51,55,46,53,57,50,56,50,52,93,44,91,45,57,49,46,49,53,53,48,55,51,44,51,55,46,53,56,56,48,57,50,93,44,91,45,57,49,46,49,53,51,51,52,53,44,51,55,46,54,57,55,51,52,93,44,91,45,57,49,46,51,49,48,54,53,53,44,51,55,46,55,48,48,48,52,56,93,44,91,45,57,49,46,51,48,56,51,49,49,44,51,55,46,55,56,55,49,56,54,93,44,91,45,57,49,46,53,50,56,55,57,55,44,51,55,46,55,56,56,57,56,57,93,44,91,45,57,49,46,56,48,54,50,49,57,44,51,55,46,55,57,49,50,56,54,93,44,91,45,57,49,46,56,48,57,49,48,53,44,51,55,46,53,57,56,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,84,97,122,101,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,48,56,48,44,34,98,101,100,115,34,58,50,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,52,48,49,50,52,44,51,55,46,50,51,55,55,53,50,93,44,91,45,56,49,46,57,48,48,56,57,50,44,51,55,46,49,52,50,53,53,51,93,44,91,45,56,49,46,55,56,48,53,52,53,44,51,54,46,57,53,56,54,50,57,93,44,91,45,56,49,46,54,56,50,55,56,54,44,51,54,46,57,51,50,57,51,52,93,44,91,45,56,49,46,52,51,54,55,51,44,51,55,46,48,49,48,49,51,53,93,44,91,45,56,49,46,50,55,48,48,55,56,44,51,55,46,48,57,51,48,49,50,93,44,91,45,56,49,46,50,50,53,49,48,52,44,51,55,46,50,51,52,56,55,52,93,44,91,45,56,49,46,51,54,50,49,53,54,44,51,55,46,51,51,55,54,56,55,93,44,91,45,56,49,46,53,54,48,54,51,49,44,51,55,46,50,48,54,54,54,51,93,44,91,45,56,49,46,55,52,48,49,50,52,44,51,55,46,50,51,55,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,48,54,57,53,53,57,44,52,49,46,54,48,49,56,55,52,93,44,91,45,55,53,46,51,53,57,49,56,52,44,52,49,46,50,51,57,50,48,54,93,44,91,45,55,53,46,49,50,57,55,50,49,44,52,49,46,50,53,50,49,48,49,93,44,91,45,55,53,46,49,53,54,53,48,55,44,52,49,46,49,53,48,51,52,49,93,44,91,45,55,52,46,57,57,49,55,49,56,44,52,49,46,48,57,50,50,56,52,93,44,91,45,55,52,46,56,56,50,49,51,57,44,52,49,46,49,56,48,56,51,54,93,44,91,45,55,52,46,56,51,48,48,53,55,44,52,49,46,50,56,55,50,93,44,91,45,55,52,46,54,57,52,57,49,52,44,52,49,46,51,53,55,52,50,51,93,44,91,45,55,52,46,55,53,52,54,57,44,52,49,46,52,50,52,57,55,51,93,44,91,45,55,52,46,57,56,49,54,53,50,44,52,49,46,52,55,57,57,52,53,93,44,91,45,55,53,46,48,54,57,53,53,57,44,52,49,46,54,48,49,56,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,117,115,113,117,101,104,97,110,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,51,52,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,52,56,51,49,52,57,44,52,49,46,57,57,57,50,49,52,93,44,91,45,55,54,46,49,48,53,56,52,44,52,49,46,57,57,56,56,53,56,93,44,91,45,55,54,46,49,52,53,53,49,57,44,52,49,46,57,57,56,56,52,50,93,44,91,45,55,54,46,49,49,53,49,55,50,44,52,49,46,54,53,49,56,50,53,93,44,91,45,55,53,46,55,49,57,56,56,55,44,52,49,46,54,52,50,50,54,51,93,44,91,45,55,53,46,52,54,50,52,49,49,44,52,49,46,54,52,49,53,56,55,93,44,91,45,55,53,46,52,56,51,49,52,57,44,52,49,46,57,57,57,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,52,51,34,44,34,78,65,77,69,34,58,34,77,111,114,114,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,48,56,55,56,51,44,51,51,46,51,54,51,54,51,54,93,44,91,45,57,52,46,56,49,57,56,50,56,44,51,50,46,57,56,50,56,56,54,93,44,91,45,57,52,46,55,49,57,57,52,50,44,51,50,46,57,48,52,53,48,50,93,44,91,45,57,52,46,55,48,53,56,55,56,44,51,50,46,56,55,57,49,55,55,93,44,91,45,57,52,46,54,53,51,57,57,52,44,51,50,46,56,55,57,53,48,54,93,44,91,45,57,52,46,54,53,50,50,54,44,51,51,46,50,54,56,56,54,49,93,44,91,45,57,52,46,55,52,54,57,50,53,44,51,51,46,51,50,56,57,51,56,93,44,91,45,57,52,46,56,48,56,55,56,51,44,51,51,46,51,54,51,54,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,53,52,55,44,34,98,101,100,115,34,58,53,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,55,57,57,49,44,52,48,46,51,57,57,54,52,52,93,44,91,45,56,48,46,53,49,57,49,48,52,44,52,48,46,49,53,57,54,55,50,93,44,91,45,56,48,46,53,49,57,49,50,44,52,48,46,48,49,54,52,49,93,44,91,45,56,48,46,53,49,57,48,57,49,44,51,57,46,57,54,50,50,93,44,91,45,56,48,46,50,56,55,52,50,49,44,52,48,46,48,49,57,50,48,54,93,44,91,45,55,57,46,57,57,56,48,49,52,44,51,57,46,57,56,51,51,50,50,93,44,91,45,55,57,46,56,55,55,51,56,53,44,52,48,46,49,50,54,55,57,50,93,44,91,45,55,57,46,56,55,48,53,56,53,44,52,48,46,49,57,55,52,49,53,93,44,91,45,55,57,46,57,49,52,49,51,57,44,52,48,46,50,53,50,53,49,56,93,44,91,45,56,48,46,49,56,51,52,55,50,44,52,48,46,51,51,50,55,56,50,93,44,91,45,56,48,46,51,54,48,56,55,51,44,52,48,46,52,55,55,53,51,57,93,44,91,45,56,48,46,53,49,57,48,51,56,44,52,48,46,52,55,55,51,54,51,93,44,91,45,56,48,46,53,49,55,57,57,49,44,52,48,46,51,57,57,54,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,57,51,57,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,49,51,50,56,51,44,52,52,46,50,54,52,49,51,93,44,91,45,55,51,46,51,57,48,54,50,53,44,52,52,46,49,57,49,48,54,56,93,44,91,45,55,51,46,52,51,55,57,48,53,44,52,52,46,48,52,53,49,50,53,93,44,91,45,55,51,46,51,55,57,50,56,49,44,52,51,46,56,48,56,52,56,49,93,44,91,45,55,51,46,51,54,50,56,50,51,44,52,51,46,55,53,51,48,56,52,93,44,91,45,55,51,46,50,48,54,51,50,50,44,52,51,46,55,54,54,55,55,53,93,44,91,45,55,51,46,50,49,56,57,53,54,44,52,51,46,56,51,55,50,57,49,93,44,91,45,55,50,46,57,53,56,56,53,51,44,52,51,46,56,50,54,53,52,50,93,44,91,45,55,50,46,57,53,51,48,56,51,44,52,51,46,56,55,52,56,55,93,44,91,45,55,50,46,55,57,49,51,51,54,44,52,51,46,57,54,49,56,53,53,93,44,91,45,55,50,46,55,52,50,51,48,51,44,52,52,46,48,50,57,54,53,53,93,44,91,45,55,50,46,57,49,54,55,55,56,44,52,52,46,48,55,49,56,56,54,93,44,91,45,55,50,46,57,53,50,49,54,55,44,52,52,46,49,54,49,50,55,49,93,44,91,45,55,50,46,57,55,51,51,49,56,44,52,52,46,50,57,51,52,50,93,44,91,45,55,51,46,51,49,51,50,56,51,44,52,52,46,50,54,52,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,76,101,97,118,101,110,119,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,48,52,50,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,56,48,56,57,49,44,51,57,46,52,49,57,50,49,56,93,44,91,45,57,53,46,49,56,55,49,48,51,44,51,57,46,48,52,52,49,48,57,93,44,91,45,57,53,46,48,53,54,50,53,56,44,51,56,46,57,56,50,49,50,93,44,91,45,57,52,46,57,48,56,55,54,53,44,51,56,46,57,57,49,52,48,49,93,44,91,45,57,52,46,57,48,48,49,57,49,44,51,57,46,50,48,50,57,49,49,93,44,91,45,57,52,46,55,55,53,53,51,50,44,51,57,46,50,48,48,54,48,54,93,44,91,45,57,52,46,56,57,56,53,49,54,44,51,57,46,50,57,56,52,53,93,44,91,45,57,52,46,57,54,56,57,55,51,44,51,57,46,52,49,56,56,55,57,93,44,91,45,57,53,46,49,56,48,56,57,49,44,51,57,46,52,49,57,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,117,115,107,101,103,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,48,52,51,44,34,98,101,100,115,34,58,51,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,48,52,52,56,44,52,51,46,50,57,51,48,48,51,93,44,91,45,56,54,46,48,51,56,57,53,51,44,52,51,46,50,57,51,53,49,57,93,44,91,45,56,54,46,48,51,57,52,57,49,44,52,51,46,52,54,55,52,52,55,93,44,91,45,56,55,46,49,52,48,51,51,49,44,52,51,46,52,55,49,52,51,54,93,44,91,45,56,55,46,49,49,57,48,48,56,44,52,51,46,49,57,48,56,49,54,93,44,91,45,56,55,46,49,48,55,54,54,57,44,52,51,46,49,49,56,50,52,51,93,44,91,45,56,53,46,57,48,55,52,51,53,44,52,51,46,49,49,56,57,49,49,93,44,91,45,56,53,46,55,57,48,54,54,50,44,52,51,46,50,48,53,49,54,55,93,44,91,45,56,53,46,55,57,48,52,52,56,44,52,51,46,50,57,51,48,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,72,105,110,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,55,55,52,44,34,98,101,100,115,34,58,50,52,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,54,53,54,57,55,44,51,50,46,51,57,57,53,50,57,93,44,91,45,57,48,46,50,52,51,55,54,52,44,51,50,46,52,48,48,48,57,56,93,44,91,45,57,48,46,50,52,51,54,52,49,44,51,50,46,52,56,55,53,51,51,93,44,91,45,57,48,46,52,52,53,57,52,54,44,51,50,46,52,56,55,57,48,51,93,44,91,45,57,48,46,52,53,48,48,51,55,44,51,50,46,53,55,51,55,56,51,93,44,91,45,57,48,46,53,53,51,56,50,49,44,51,50,46,53,48,55,53,55,52,93,44,91,45,57,48,46,54,56,51,53,55,49,44,51,50,46,51,53,50,55,56,52,93,44,91,45,57,48,46,55,50,56,54,50,50,44,51,50,46,50,50,53,49,49,57,93,44,91,45,57,48,46,55,49,56,50,57,55,44,51,50,46,48,52,56,51,53,50,93,44,91,45,57,48,46,50,51,48,51,51,49,44,51,50,46,48,52,57,55,50,56,93,44,91,45,57,48,46,50,52,53,51,56,44,51,50,46,49,55,49,51,57,54,93,44,91,45,57,48,46,48,54,53,54,57,55,44,51,50,46,51,57,57,53,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,49,34,44,34,78,65,77,69,34,58,34,76,97,109,112,97,115,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,52,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,55,49,48,55,44,51,49,46,52,49,54,51,57,56,93,44,91,45,57,56,46,53,54,50,55,51,57,44,51,49,46,50,51,48,53,56,50,93,44,91,45,57,56,46,52,51,57,54,56,55,44,51,49,46,48,50,57,53,51,55,93,44,91,45,57,55,46,57,49,49,54,56,52,44,51,49,46,48,51,52,57,49,57,93,44,91,45,57,55,46,57,48,55,49,44,51,49,46,48,54,57,51,55,52,93,44,91,45,57,56,46,49,56,48,48,48,54,44,51,49,46,52,54,51,55,49,55,93,44,91,45,57,56,46,50,55,49,48,55,44,51,49,46,52,49,54,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,76,111,117,100,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,53,49,52,51,44,34,98,101,100,115,34,58,52,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,50,56,51,49,56,44,51,57,46,48,53,55,54,55,56,93,44,91,45,55,55,46,52,54,48,54,48,50,44,51,57,46,48,55,52,56,52,51,93,44,91,45,55,55,46,53,50,55,51,50,50,44,51,57,46,49,52,54,57,54,49,93,44,91,45,55,55,46,52,53,56,56,48,56,44,51,57,46,50,50,48,50,55,93,44,91,45,55,55,46,53,54,56,55,53,51,44,51,57,46,51,48,54,52,52,55,93,44,91,45,55,55,46,54,55,55,49,54,52,44,51,57,46,51,50,52,53,51,52,93,44,91,45,55,55,46,55,49,57,53,49,57,44,51,57,46,51,50,49,51,49,52,93,44,91,45,55,55,46,56,50,56,50,57,57,44,51,57,46,49,51,50,52,50,54,93,44,91,45,55,55,46,57,54,50,50,48,51,44,51,57,46,48,49,51,55,51,51,93,44,91,45,55,55,46,54,53,53,49,54,57,44,51,56,46,57,52,50,54,53,54,93,44,91,45,55,55,46,53,51,53,57,57,49,44,51,56,46,56,52,55,51,54,56,93,44,91,45,55,55,46,51,50,56,51,49,56,44,51,57,46,48,53,55,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,108,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,56,51,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,53,56,50,56,53,44,51,56,46,48,51,54,54,50,55,93,44,91,45,57,52,46,48,54,53,54,55,53,44,51,55,46,57,48,48,57,56,55,93,44,91,45,57,51,46,56,48,56,54,52,56,44,51,55,46,56,57,50,55,55,53,93,44,91,45,57,51,46,56,49,49,52,48,50,44,51,55,46,56,51,52,53,55,49,93,44,91,45,57,51,46,54,50,56,52,48,52,44,51,55,46,56,50,57,52,51,53,93,44,91,45,57,51,46,53,55,51,50,48,50,44,51,55,46,56,50,56,48,51,53,93,44,91,45,57,51,46,53,49,50,49,48,51,44,51,55,46,57,49,51,53,51,53,93,44,91,45,57,51,46,53,48,51,57,52,54,44,51,56,46,48,55,51,49,50,51,93,44,91,45,57,51,46,53,50,51,52,56,52,44,51,56,46,50,48,55,50,49,54,93,44,91,45,57,52,46,48,52,57,56,57,53,44,51,56,46,50,49,51,57,56,53,93,44,91,45,57,52,46,48,53,56,50,56,53,44,51,56,46,48,51,54,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,53,48,50,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,49,49,53,56,44,52,50,46,53,49,55,55,57,57,93,44,91,45,55,52,46,56,52,52,49,50,49,44,52,50,46,53,49,50,53,57,49,93,44,91,45,55,53,46,48,49,57,56,49,56,44,52,50,46,52,50,57,48,52,53,93,44,91,45,55,53,46,52,49,53,51,49,57,44,52,50,46,51,49,52,49,53,49,93,44,91,45,55,53,46,52,49,56,52,50,49,44,52,50,46,49,57,53,48,51,50,93,44,91,45,55,53,46,52,50,49,55,55,54,44,52,50,46,48,52,50,48,51,93,44,91,45,55,53,46,51,53,57,53,55,57,44,52,49,46,57,57,57,52,52,53,93,44,91,45,55,53,46,50,55,49,50,57,51,44,52,49,46,56,56,55,51,53,56,93,44,91,45,55,53,46,49,52,54,52,52,54,44,52,49,46,56,53,48,56,57,57,93,44,91,45,55,52,46,55,56,48,54,57,51,44,52,50,46,48,49,54,51,55,53,93,44,91,45,55,52,46,52,53,49,55,49,51,44,52,50,46,49,54,57,50,50,53,93,44,91,45,55,52,46,53,51,55,51,49,44,52,50,46,50,48,49,52,50,52,93,44,91,45,55,52,46,52,52,51,53,48,54,44,52,50,46,51,53,53,48,49,55,93,44,91,45,55,52,46,54,49,56,56,57,53,44,52,50,46,52,50,52,51,56,57,93,44,91,45,55,52,46,55,49,49,53,56,44,52,50,46,53,49,55,55,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,80,104,105,108,108,105,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,52,44,34,98,101,100,115,34,58,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,50,51,54,52,57,55,44,52,56,46,57,57,57,53,55,49,93,44,91,45,49,48,56,46,50,53,57,51,56,52,44,52,56,46,55,52,50,50,50,53,93,44,91,45,49,48,56,46,51,49,57,48,49,49,44,52,56,46,53,54,56,52,51,49,93,44,91,45,49,48,56,46,52,49,49,49,56,54,44,52,56,46,52,52,52,57,56,49,93,44,91,45,49,48,56,46,52,51,51,57,56,44,52,55,46,57,55,54,53,53,51,93,44,91,45,49,48,56,46,54,48,55,53,55,57,44,52,55,46,57,57,48,57,57,55,93,44,91,45,49,48,56,46,54,50,53,53,56,55,44,52,55,46,57,50,48,52,49,49,93,44,91,45,49,48,56,46,56,56,56,51,49,54,44,52,55,46,57,50,50,55,50,50,93,44,91,45,49,48,56,46,56,57,49,49,49,53,44,52,55,46,55,51,52,52,53,54,93,44,91,45,49,48,56,46,54,55,49,52,44,52,55,46,54,49,57,53,53,54,93,44,91,45,49,48,56,46,51,49,51,48,52,56,44,52,55,46,53,56,51,54,53,93,44,91,45,49,48,56,46,48,54,53,52,49,56,44,52,55,46,53,57,56,50,57,52,93,44,91,45,49,48,55,46,57,51,49,49,48,53,44,52,55,46,53,54,57,48,55,51,93,44,91,45,49,48,55,46,57,48,57,49,50,44,52,55,46,52,53,48,54,57,50,93,44,91,45,49,48,55,46,56,54,52,57,50,50,44,52,55,46,53,49,51,55,52,93,44,91,45,49,48,55,46,53,57,52,50,53,44,52,55,46,54,52,57,55,51,49,93,44,91,45,49,48,55,46,52,49,52,56,56,54,44,52,55,46,54,57,49,55,51,52,93,44,91,45,49,48,55,46,52,48,52,53,49,51,44,52,56,46,50,49,56,52,52,93,44,91,45,49,48,55,46,50,54,48,52,53,56,44,52,56,46,51,48,52,55,54,56,93,44,91,45,49,48,55,46,51,48,49,55,50,49,44,52,56,46,52,56,48,57,52,51,93,44,91,45,49,48,55,46,50,48,54,51,49,54,44,52,56,46,53,54,56,49,55,93,44,91,45,49,48,55,46,50,48,54,48,51,50,44,52,56,46,57,49,50,55,49,93,44,91,45,49,48,55,46,49,55,57,56,49,50,44,52,57,46,48,48,48,49,48,51,93,44,91,45,49,48,56,46,50,51,54,52,57,55,44,52,56,46,57,57,57,53,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,53,54,56,57,57,44,52,48,46,53,56,48,50,51,53,93,44,91,45,57,51,46,55,55,52,51,52,52,44,52,48,46,53,55,55,53,52,56,93,44,91,45,57,51,46,55,54,51,51,50,52,44,52,48,46,50,54,51,57,56,56,93,44,91,45,57,51,46,51,54,55,50,49,52,44,52,48,46,50,54,54,51,49,52,93,44,91,45,57,51,46,51,54,54,57,51,53,44,52,48,46,51,56,50,57,57,57,93,44,91,45,57,51,46,51,55,52,51,56,54,44,52,48,46,53,56,48,51,51,51,93,44,91,45,57,51,46,53,53,54,56,57,57,44,52,48,46,53,56,48,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,54,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,56,50,48,53,55,54,44,52,55,46,49,57,52,50,50,93,44,91,45,49,50,50,46,56,53,49,49,56,55,44,52,55,46,50,52,57,55,55,52,93,44,91,45,49,50,50,46,56,48,49,49,57,57,44,52,55,46,52,48,51,53,55,56,93,44,91,45,49,50,50,46,56,48,49,48,49,50,44,52,55,46,53,50,48,52,48,54,93,44,91,45,49,50,51,46,48,51,56,52,48,52,44,52,55,46,53,50,48,50,51,54,93,44,91,45,49,50,50,46,57,53,48,54,50,49,44,52,55,46,54,48,54,51,48,56,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,54,48,52,54,49,53,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,53,49,55,55,49,54,93,44,91,45,49,50,51,46,52,56,56,57,52,51,44,52,55,46,48,56,50,54,52,54,93,44,91,45,49,50,51,46,50,48,49,56,57,49,44,52,55,46,48,56,53,48,53,57,93,44,91,45,49,50,51,46,48,55,53,48,50,54,44,52,55,46,48,56,52,55,56,55,93,44,91,45,49,50,51,46,48,48,50,52,51,53,44,52,55,46,49,53,49,51,48,50,93,44,91,45,49,50,50,46,56,50,48,53,55,54,44,52,55,46,49,57,52,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,78,97,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,48,48,51,44,34,98,101,100,115,34,58,51,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,48,54,53,53,49,44,51,54,46,50,48,50,54,51,51,93,44,91,45,55,56,46,50,53,53,57,55,51,44,51,53,46,56,49,56,49,50,93,44,91,45,55,56,46,49,57,50,49,49,55,44,51,53,46,55,51,48,53,52,53,93,44,91,45,55,55,46,56,50,56,52,52,52,44,51,53,46,56,54,55,50,48,56,93,44,91,45,55,55,46,54,57,55,57,53,54,44,51,54,46,49,53,51,49,53,93,44,91,45,55,55,46,56,56,55,50,52,44,51,54,46,49,52,51,56,52,93,44,91,45,55,56,46,48,48,54,53,53,49,44,51,54,46,50,48,50,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,53,56,55,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,57,49,51,48,50,44,51,55,46,50,49,51,50,48,53,93,44,91,45,55,54,46,52,51,56,48,50,54,44,51,55,46,48,57,52,51,52,56,93,44,91,45,55,54,46,51,57,53,55,57,53,44,51,55,46,49,48,55,49,55,52,93,44,91,45,55,54,46,51,51,48,52,51,53,44,51,55,46,49,57,48,57,56,52,93,44,91,45,55,54,46,49,51,53,53,50,44,51,55,46,49,57,49,57,55,93,44,91,45,55,54,46,49,51,54,51,48,49,44,51,55,46,50,56,50,49,51,55,93,44,91,45,55,54,46,51,48,52,53,44,51,55,46,50,55,56,51,54,49,93,44,91,45,55,54,46,53,49,54,48,53,55,44,51,55,46,50,52,56,55,53,50,93,44,91,45,55,54,46,54,53,56,54,53,49,44,51,55,46,51,56,48,49,51,57,93,44,91,45,55,54,46,55,50,55,56,53,57,44,51,55,46,51,48,53,57,50,55,93,44,91,45,55,54,46,54,56,48,49,53,49,44,51,55,46,50,54,53,57,57,55,93,44,91,45,55,54,46,53,57,49,51,48,50,44,51,55,46,50,49,51,50,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,80,101,116,116,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,51,55,49,44,34,98,101,100,115,34,58,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,53,48,52,53,51,44,51,56,46,57,50,56,50,52,52,93,44,91,45,57,51,46,52,57,54,51,55,55,44,51,56,46,57,52,50,56,51,55,93,44,91,45,57,51,46,52,57,55,50,55,56,44,51,56,46,57,50,56,52,51,93,44,91,45,57,51,46,53,49,49,48,51,44,51,56,46,53,53,54,50,49,93,44,91,45,57,51,46,53,49,50,55,52,51,44,51,56,46,53,49,50,52,55,54,93,44,91,45,57,51,46,50,57,48,52,53,52,44,51,56,46,53,51,53,51,56,56,93,44,91,45,57,51,46,48,54,55,50,57,49,44,51,56,46,53,50,57,57,57,53,93,44,91,45,57,51,46,48,53,57,57,55,52,44,51,56,46,54,57,51,48,55,55,93,44,91,45,57,51,46,48,53,48,52,53,51,44,51,56,46,57,50,56,50,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,77,105,115,115,111,117,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,57,56,51,44,34,98,101,100,115,34,58,52,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,54,51,52,48,55,57,44,52,55,46,54,48,48,48,50,55,93,44,91,45,49,49,51,46,57,50,52,56,50,54,44,52,55,46,54,48,48,50,51,57,93,44,91,45,49,49,51,46,57,52,50,56,56,54,44,52,55,46,52,55,57,54,55,56,93,44,91,45,49,49,51,46,56,55,49,49,49,44,52,55,46,51,57,49,57,55,93,44,91,45,49,49,51,46,56,50,49,52,52,55,44,52,55,46,49,56,49,55,48,57,93,44,91,45,49,49,51,46,57,51,51,53,48,51,44,52,55,46,49,51,56,50,56,57,93,44,91,45,49,49,52,46,49,56,55,49,55,44,52,55,46,49,51,56,49,57,49,93,44,91,45,49,49,52,46,50,53,51,53,56,52,44,52,55,46,49,50,49,48,48,55,93,44,91,45,49,49,52,46,52,50,51,56,53,56,44,52,55,46,50,49,48,48,57,49,93,44,91,45,49,49,52,46,54,56,55,50,57,53,44,52,55,46,50,55,52,51,49,93,44,91,45,49,49,52,46,55,57,55,50,48,52,44,52,55,46,50,54,56,57,49,54,93,44,91,45,49,49,52,46,55,55,53,56,51,51,44,52,55,46,50,50,53,53,55,51,93,44,91,45,49,49,52,46,52,56,51,50,50,55,44,52,55,46,48,50,51,51,53,56,93,44,91,45,49,49,52,46,53,54,54,49,50,57,44,52,54,46,57,54,51,52,48,53,93,44,91,45,49,49,52,46,53,52,57,49,50,55,44,52,54,46,55,52,55,51,54,54,93,44,91,45,49,49,52,46,54,55,52,57,52,50,44,52,54,46,55,51,54,56,50,54,93,44,91,45,49,49,52,46,53,57,52,54,51,52,44,52,54,46,54,51,51,52,52,56,93,44,91,45,49,49,52,46,51,51,50,55,57,54,44,52,54,46,54,54,48,53,56,49,93,44,91,45,49,49,51,46,56,50,55,55,52,51,44,52,54,46,54,54,48,56,57,54,93,44,91,45,49,49,51,46,52,55,57,56,53,54,44,52,54,46,55,52,52,55,49,52,93,44,91,45,49,49,51,46,52,49,54,53,57,57,44,52,54,46,56,51,50,49,49,51,93,44,91,45,49,49,51,46,51,48,50,57,48,51,44,52,54,46,56,51,50,49,53,57,93,44,91,45,49,49,51,46,51,48,50,57,52,51,44,52,55,46,49,55,57,54,52,51,93,44,91,45,49,49,51,46,52,54,54,52,53,44,52,55,46,49,55,57,49,56,54,93,44,91,45,49,49,51,46,52,54,54,52,56,53,44,52,55,46,54,48,48,48,53,55,93,44,91,45,49,49,51,46,54,51,52,48,55,57,44,52,55,46,54,48,48,48,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,104,97,117,116,97,117,113,117,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,54,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,50,52,56,55,51,44,51,55,46,51,48,50,55,51,93,44,91,45,57,54,46,53,50,53,53,56,50,44,51,54,46,57,57,56,55,49,93,44,91,45,57,54,46,48,48,48,56,49,44,51,54,46,57,57,56,56,54,93,44,91,45,57,53,46,57,54,52,50,55,44,51,54,46,57,57,57,49,48,52,93,44,91,45,57,53,46,57,54,52,51,57,57,44,51,55,46,50,57,57,50,51,50,93,44,91,45,57,54,46,53,50,52,56,55,51,44,51,55,46,51,48,50,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,53,57,34,44,34,78,65,77,69,34,58,34,85,112,115,104,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,55,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,53,50,49,49,44,51,50,46,57,48,50,54,52,49,93,44,91,45,57,53,46,49,53,51,52,49,44,51,50,46,53,55,48,49,49,53,93,44,91,45,57,52,46,57,56,54,57,51,53,44,51,50,46,53,51,55,50,52,54,93,44,91,45,57,52,46,55,48,49,55,57,44,51,50,46,54,53,50,50,48,57,93,44,91,45,57,52,46,55,48,50,49,52,44,51,50,46,55,57,51,48,56,56,93,44,91,45,57,52,46,55,48,53,56,55,56,44,51,50,46,56,55,57,49,55,55,93,44,91,45,57,52,46,55,49,57,57,52,50,44,51,50,46,57,48,52,53,48,50,93,44,91,45,57,53,46,49,53,50,49,49,44,51,50,46,57,48,50,54,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,117,108,112,101,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,52,53,48,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,51,49,56,48,51,44,51,56,46,53,51,50,53,51,57,93,44,91,45,55,56,46,48,57,54,48,56,51,44,51,56,46,52,48,52,51,52,51,93,44,91,45,55,56,46,48,57,52,52,57,56,44,51,56,46,51,49,49,50,52,50,93,44,91,45,55,55,46,57,48,56,57,55,57,44,51,56,46,51,56,49,53,48,51,93,44,91,45,55,55,46,55,48,50,56,52,51,44,51,56,46,51,54,48,56,52,93,44,91,45,55,55,46,54,49,56,55,50,55,44,51,56,46,51,54,55,56,51,53,93,44,91,45,55,55,46,54,51,52,57,52,44,51,56,46,52,49,48,50,49,56,93,44,91,45,55,55,46,55,51,53,57,48,49,44,51,56,46,52,49,51,52,53,56,93,44,91,45,55,55,46,57,51,53,51,53,53,44,51,56,46,54,57,53,56,52,93,44,91,45,55,56,46,49,54,56,55,57,50,44,51,56,46,53,50,51,56,48,57,93,44,91,45,55,56,46,50,51,49,56,48,51,44,51,56,46,53,51,50,53,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,97,115,107,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,52,57,57,51,51,44,51,53,46,52,53,56,56,57,52,93,44,91,45,57,53,46,49,55,49,55,54,51,44,51,53,46,51,48,53,53,53,51,93,44,91,45,57,53,46,51,52,52,55,54,54,44,51,53,46,50,57,51,48,51,53,93,44,91,45,57,53,46,52,53,49,50,53,44,51,53,46,50,57,54,48,49,57,93,44,91,45,57,53,46,52,53,53,48,49,56,44,51,53,46,49,54,48,53,55,53,93,44,91,45,57,53,46,51,52,57,53,50,53,44,51,53,46,49,54,48,48,50,49,93,44,91,45,57,53,46,51,52,57,52,48,57,44,51,53,46,48,53,56,53,50,93,44,91,45,57,52,46,57,50,55,56,54,51,44,51,53,46,48,53,56,50,52,54,93,44,91,45,57,52,46,57,50,55,55,55,52,44,51,53,46,50,48,50,54,49,93,44,91,45,57,52,46,56,49,52,50,55,54,44,51,53,46,50,48,50,51,51,49,93,44,91,45,57,52,46,56,49,51,54,50,57,44,51,53,46,51,50,51,51,52,52,93,44,91,45,57,53,46,48,52,57,57,51,51,44,51,53,46,52,53,56,56,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,53,52,55,44,34,98,101,100,115,34,58,52,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,51,51,56,48,51,44,52,48,46,48,51,51,52,48,57,93,44,91,45,56,48,46,53,49,57,49,50,44,52,48,46,48,49,54,52,49,93,44,91,45,56,48,46,53,49,57,49,48,52,44,52,48,46,49,53,57,54,55,50,93,44,91,45,56,48,46,54,56,49,56,49,49,44,52,48,46,49,56,53,53,54,51,93,44,91,45,56,48,46,55,48,50,55,53,44,52,48,46,49,53,55,50,52,57,93,44,91,45,56,48,46,55,51,51,56,48,51,44,52,48,46,48,51,51,52,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,50,52,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,50,50,49,49,44,51,57,46,54,49,57,54,53,55,93,44,91,45,55,56,46,49,55,49,53,52,57,44,51,57,46,54,57,53,54,52,51,93,44,91,45,55,56,46,51,51,51,56,49,57,44,51,57,46,54,51,54,55,54,50,93,44,91,45,55,56,46,52,54,56,53,56,49,44,51,57,46,53,49,54,54,49,57,93,44,91,45,55,56,46,51,52,55,48,56,55,44,51,57,46,52,54,54,48,49,50,93,44,91,45,55,56,46,50,50,56,55,54,54,44,51,57,46,51,57,49,50,51,51,93,44,91,45,55,56,46,49,51,56,57,51,55,44,51,57,46,53,57,51,55,57,54,93,44,91,45,55,56,46,48,50,50,49,49,44,51,57,46,54,49,57,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,82,111,99,107,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,52,52,52,44,34,98,101,100,115,34,58,50,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,53,55,50,53,51,44,51,56,46,55,54,49,52,49,51,93,44,91,45,55,57,46,50,50,52,53,56,51,44,51,56,46,52,55,55,53,56,56,93,44,91,45,55,56,46,55,52,57,51,57,54,44,51,56,46,50,48,54,54,52,56,93,44,91,45,55,56,46,54,54,51,49,52,53,44,51,56,46,50,55,55,57,51,51,93,44,91,45,55,56,46,52,56,53,55,52,44,51,56,46,52,50,49,53,55,57,93,44,91,45,55,56,46,54,57,49,51,49,50,44,51,56,46,53,49,48,48,48,56,93,44,91,45,55,56,46,54,52,49,55,54,57,44,51,56,46,54,48,52,55,49,57,93,44,91,45,55,56,46,56,54,57,50,54,49,44,51,56,46,55,54,50,57,56,93,44,91,45,55,56,46,57,57,51,55,54,49,44,51,56,46,56,53,48,48,50,49,93,44,91,45,55,57,46,48,53,55,50,53,51,44,51,56,46,55,54,49,52,49,51,93,93,44,91,91,45,55,56,46,57,49,55,56,55,49,44,51,56,46,51,57,52,49,53,51,93,44,91,45,55,56,46,57,48,48,53,56,57,44,51,56,46,52,53,57,50,49,55,93,44,91,45,55,56,46,56,50,52,51,50,44,51,56,46,52,51,53,48,55,57,93,44,91,45,55,56,46,57,49,55,56,55,49,44,51,56,46,51,57,52,49,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,87,104,105,116,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,54,52,57,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,49,57,50,56,44,52,49,46,50,57,52,55,55,54,93,44,91,45,56,53,46,54,56,52,49,56,49,44,52,49,46,48,52,54,55,49,54,93,44,91,45,56,53,46,54,52,51,56,52,49,44,52,49,46,48,48,50,51,48,53,93,44,91,45,56,53,46,51,51,53,54,52,51,44,52,49,46,48,48,53,50,53,93,44,91,45,56,53,46,51,48,55,55,56,49,44,52,49,46,50,54,52,49,53,56,93,44,91,45,56,53,46,53,51,55,49,56,44,52,49,46,50,54,54,49,53,55,93,44,91,45,56,53,46,54,53,49,57,50,56,44,52,49,46,50,57,52,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,83,105,115,107,105,121,111,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,53,52,48,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,50,56,57,55,52,56,44,52,50,46,48,48,56,48,57,56,93,44,91,45,49,50,51,46,50,51,49,49,49,51,44,52,50,46,48,48,51,57,52,51,93,44,91,45,49,50,51,46,53,49,55,57,49,49,44,52,50,46,48,48,48,55,53,54,93,44,91,45,49,50,51,46,53,54,53,52,52,50,44,52,49,46,57,48,51,49,52,49,93,44,91,45,49,50,51,46,55,48,51,54,56,49,44,52,49,46,56,50,57,52,56,55,93,44,91,45,49,50,51,46,54,54,55,49,49,52,44,52,49,46,54,57,49,54,56,57,93,44,91,45,49,50,51,46,55,49,57,49,55,52,44,52,49,46,53,57,53,54,49,51,93,44,91,45,49,50,51,46,54,49,50,51,57,53,44,52,49,46,52,52,56,57,53,52,93,44,91,45,49,50,51,46,54,54,49,51,54,51,44,52,49,46,51,56,50,48,57,93,44,91,45,49,50,51,46,52,55,52,48,56,53,44,52,49,46,51,54,54,49,57,51,93,44,91,45,49,50,51,46,52,48,56,50,57,49,44,52,49,46,49,55,57,57,52,52,93,44,91,45,49,50,51,46,50,52,53,50,50,50,44,52,49,46,48,55,55,57,56,55,93,44,91,45,49,50,51,46,49,48,57,48,55,55,44,52,49,46,48,55,53,52,50,57,93,44,91,45,49,50,51,46,48,51,54,56,48,56,44,52,49,46,48,48,52,48,53,56,93,44,91,45,49,50,50,46,56,57,55,48,54,54,44,52,49,46,50,48,49,48,48,54,93,44,91,45,49,50,50,46,56,49,49,51,52,50,44,52,49,46,50,48,50,52,53,49,93,44,91,45,49,50,50,46,53,57,48,56,48,56,44,52,49,46,51,50,53,57,49,93,44,91,45,49,50,50,46,53,48,52,50,53,52,44,52,49,46,51,51,52,55,49,93,44,91,45,49,50,50,46,52,57,56,51,55,54,44,52,49,46,49,56,50,54,55,53,93,44,91,45,49,50,49,46,52,52,54,52,57,53,44,52,49,46,49,56,51,52,56,52,93,44,91,45,49,50,49,46,52,52,55,53,51,56,44,52,49,46,57,57,55,52,54,53,93,44,91,45,49,50,50,46,50,56,57,55,52,56,44,52,50,46,48,48,56,48,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,48,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,55,57,53,57,50,44,52,53,46,53,56,56,52,56,51,93,44,91,45,57,55,46,57,56,49,52,53,55,44,52,53,46,50,52,48,52,49,53,93,44,91,45,57,55,46,57,56,49,55,57,50,44,52,53,46,49,53,51,50,57,53,93,44,91,45,57,55,46,52,57,52,50,53,52,44,52,53,46,49,53,49,54,51,49,93,44,91,45,57,55,46,50,50,54,50,56,49,44,52,53,46,49,53,49,56,50,54,93,44,91,45,57,55,46,50,50,54,50,52,52,44,52,53,46,50,57,55,54,52,55,93,44,91,45,57,55,46,50,50,55,48,56,57,44,52,53,46,53,53,56,49,53,56,93,44,91,45,57,55,46,51,55,51,51,54,54,44,52,53,46,53,56,55,54,51,52,93,44,91,45,57,55,46,57,55,57,53,57,50,44,52,53,46,53,56,56,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,79,114,108,101,97,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,57,54,52,56,44,34,98,101,100,115,34,58,49,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,48,56,49,49,57,44,51,48,46,49,54,52,57,52,93,44,91,45,57,48,46,49,51,56,53,55,52,44,50,57,46,57,49,56,56,48,53,93,44,91,45,57,48,46,48,48,56,48,53,54,44,50,57,46,56,57,53,53,50,56,93,44,91,45,56,57,46,57,49,48,55,48,56,44,50,57,46,56,54,55,56,54,53,93,44,91,45,56,57,46,56,56,49,53,57,57,44,50,57,46,57,56,54,50,93,44,91,45,56,57,46,54,56,51,50,51,44,51,48,46,48,55,54,52,48,54,93,44,91,45,56,57,46,54,50,53,48,53,52,44,51,48,46,49,53,51,52,57,51,93,44,91,45,56,57,46,55,57,55,52,49,52,44,51,48,46,49,54,48,55,53,55,93,44,91,45,56,57,46,57,48,51,50,51,52,44,51,48,46,49,57,56,54,54,93,44,91,45,57,48,46,49,48,56,49,49,57,44,51,48,46,49,54,52,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,57,56,57,50,44,34,98,101,100,115,34,58,52,55,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,53,51,54,54,52,44,51,51,46,56,49,53,50,57,55,93,44,91,45,56,55,46,48,50,51,50,56,54,44,51,51,46,55,55,50,55,50,55,93,44,91,45,56,55,46,48,57,50,55,51,51,44,51,51,46,54,50,55,56,53,93,44,91,45,56,55,46,49,55,57,52,51,44,51,51,46,54,49,51,55,57,52,93,44,91,45,56,55,46,50,54,54,57,50,51,44,51,51,46,53,49,50,57,50,57,93,44,91,45,56,55,46,50,56,52,51,54,51,44,51,51,46,52,52,48,53,55,56,93,44,91,45,56,55,46,49,55,57,54,51,56,44,51,51,46,51,50,49,49,49,50,93,44,91,45,56,55,46,48,54,53,55,51,56,44,51,51,46,50,52,54,57,48,55,93,44,91,45,56,55,46,48,50,54,56,52,54,44,51,51,46,50,52,54,52,53,57,93,44,91,45,56,54,46,54,55,52,52,49,56,44,51,51,46,52,54,54,53,50,49,93,44,91,45,56,54,46,53,49,54,55,56,51,44,51,51,46,53,52,53,56,57,54,93,44,91,45,56,54,46,53,50,53,48,55,51,44,51,51,46,55,50,49,50,51,54,93,44,91,45,56,54,46,53,55,55,55,57,57,44,51,51,46,55,54,53,51,49,54,93,44,91,45,56,54,46,55,53,57,49,52,52,44,51,51,46,56,52,48,54,49,55,93,44,91,45,56,54,46,57,53,51,54,54,52,44,51,51,46,56,49,53,50,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,87,97,108,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,52,57,51,44,34,98,101,100,115,34,58,50,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,51,53,57,51,50,44,51,51,46,57,49,53,50,53,49,93,44,91,45,56,55,46,53,51,49,54,48,50,44,51,51,46,56,54,55,54,49,56,93,44,91,45,56,55,46,53,50,56,51,51,56,44,51,51,46,54,57,50,48,52,57,93,44,91,45,56,55,46,52,50,51,56,52,51,44,51,51,46,54,56,57,49,49,50,93,44,91,45,56,55,46,52,50,51,55,48,49,44,51,51,46,54,48,50,48,57,54,93,44,91,45,56,55,46,51,49,56,53,51,50,44,51,51,46,53,56,55,51,57,51,93,44,91,45,56,55,46,50,54,54,57,50,51,44,51,51,46,53,49,50,57,50,57,93,44,91,45,56,55,46,49,55,57,52,51,44,51,51,46,54,49,51,55,57,52,93,44,91,45,56,55,46,48,57,50,55,51,51,44,51,51,46,54,50,55,56,53,93,44,91,45,56,55,46,48,50,51,50,56,54,44,51,51,46,55,55,50,55,50,55,93,44,91,45,56,54,46,57,53,51,54,54,52,44,51,51,46,56,49,53,50,57,55,93,44,91,45,56,54,46,57,54,51,51,53,56,44,51,51,46,56,53,56,50,50,49,93,44,91,45,56,55,46,49,53,49,48,51,54,44,51,51,46,57,57,51,50,50,53,93,44,91,45,56,55,46,54,51,54,49,49,56,44,51,52,46,48,48,50,50,48,51,93,44,91,45,56,55,46,54,51,53,57,51,50,44,51,51,46,57,49,53,50,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,53,51,55,55,44,52,48,46,48,51,57,50,49,55,93,44,91,45,57,52,46,54,48,50,56,51,44,51,57,46,56,49,57,57,48,54,93,44,91,45,57,52,46,54,48,50,50,53,55,44,51,57,46,55,52,55,49,57,53,93,44,91,45,57,52,46,50,48,53,57,54,49,44,51,57,46,55,52,53,56,52,49,93,44,91,45,57,52,46,50,48,53,56,52,52,44,51,57,46,55,56,56,57,53,52,93,44,91,45,57,52,46,50,49,56,56,44,52,48,46,48,51,52,56,56,53,93,44,91,45,57,52,46,54,48,53,51,55,55,44,52,48,46,48,51,57,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,71,97,100,115,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,48,49,55,44,34,98,101,100,115,34,58,57,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,44,91,45,56,52,46,56,56,50,54,49,54,44,51,48,46,53,51,51,48,57,52,93,44,91,45,56,52,46,54,52,54,52,48,56,44,51,48,46,51,56,56,50,56,49,93,44,91,45,56,52,46,52,50,48,52,55,52,44,51,48,46,52,54,51,57,48,53,93,44,91,45,56,52,46,50,56,50,53,53,57,44,51,48,46,54,56,53,51,51,52,93,44,91,45,56,52,46,51,56,48,55,48,53,44,51,48,46,54,56,57,57,57,51,93,44,91,45,56,52,46,56,54,51,52,54,53,44,51,48,46,55,49,49,52,57,52,93,44,91,45,56,52,46,56,54,52,54,57,51,44,51,48,46,55,49,49,53,52,50,93,44,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,68,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,50,55,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,56,51,49,52,53,44,51,52,46,56,54,48,51,55,49,93,44,91,45,56,53,46,53,51,52,48,56,57,44,51,52,46,54,50,51,56,53,56,93,44,91,45,56,53,46,52,53,48,52,48,57,44,51,52,46,55,53,57,50,52,49,93,44,91,45,56,53,46,52,53,48,53,54,49,44,51,52,46,56,51,49,54,55,55,93,44,91,45,56,53,46,51,54,51,57,49,57,44,51,52,46,57,56,51,51,55,53,93,44,91,45,56,53,46,52,55,52,48,55,51,44,51,52,46,57,56,51,48,50,93,44,91,45,56,53,46,54,48,53,49,54,53,44,51,52,46,57,56,52,54,55,56,93,44,91,45,56,53,46,53,56,51,49,52,53,44,51,52,46,56,54,48,51,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,68,101,83,111,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,49,51,50,44,34,98,101,100,115,34,58,53,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,48,52,53,51,50,44,51,52,46,56,54,48,53,56,56,93,44,91,45,57,48,46,50,48,50,49,50,54,44,51,52,46,56,54,48,51,55,52,93,44,91,45,57,48,46,50,48,48,49,57,57,44,51,52,46,55,50,52,52,49,56,93,44,91,45,57,48,46,48,50,57,49,52,52,44,51,52,46,55,48,56,49,55,54,93,44,91,45,56,57,46,57,48,56,53,56,55,44,51,52,46,55,55,50,54,52,49,93,44,91,45,56,57,46,55,50,51,52,52,50,44,51,52,46,55,55,50,51,49,49,93,44,91,45,56,57,46,55,50,52,51,50,52,44,51,52,46,57,57,52,55,57,93,44,91,45,57,48,46,51,48,57,50,56,57,44,51,52,46,57,57,53,54,57,52,93,44,91,45,57,48,46,50,52,54,49,49,54,44,51,52,46,57,52,52,51,49,54,93,44,91,45,57,48,46,51,48,52,53,51,50,44,51,52,46,56,54,48,53,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,52,57,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,49,52,48,56,44,51,57,46,48,48,55,57,57,52,93,44,91,45,55,56,46,51,48,48,52,49,52,44,51,56,46,57,52,51,53,57,50,93,44,91,45,55,56,46,51,57,52,55,48,52,44,51,56,46,56,50,50,55,57,93,44,91,45,55,56,46,50,56,52,56,48,53,44,51,56,46,55,53,57,51,49,53,93,44,91,45,55,56,46,49,51,48,53,55,52,44,51,56,46,56,54,52,56,54,53,93,44,91,45,55,56,46,48,48,52,51,49,51,44,51,56,46,57,55,57,52,51,56,93,44,91,45,55,56,46,49,53,49,54,49,52,44,51,57,46,48,51,54,54,50,57,93,44,91,45,55,56,46,51,49,52,48,56,44,51,57,46,48,48,55,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,69,100,119,97,114,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,52,55,56,48,51,44,51,56,46,53,54,57,48,51,55,93,44,91,45,56,56,46,49,53,48,56,57,49,44,51,56,46,50,53,54,49,53,54,93,44,91,45,56,55,46,57,57,48,54,50,56,44,51,56,46,50,53,57,54,50,57,93,44,91,45,56,55,46,57,52,51,48,51,52,44,51,56,46,52,52,57,50,49,54,93,44,91,45,56,55,46,57,53,52,54,55,53,44,51,56,46,53,55,48,50,51,93,44,91,45,56,56,46,49,52,55,56,48,51,44,51,56,46,53,54,57,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,54,56,50,44,34,98,101,100,115,34,58,57,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,49,54,49,56,49,44,51,53,46,55,57,55,51,48,55,93,44,91,45,56,57,46,48,54,57,53,52,52,44,51,53,46,54,57,50,54,55,57,93,44,91,45,56,57,46,48,55,56,56,55,54,44,51,53,46,52,51,49,52,50,56,93,44,91,45,56,56,46,56,52,49,54,48,55,44,51,53,46,52,50,55,56,50,54,93,44,91,45,56,56,46,54,55,53,56,54,55,44,51,53,46,52,56,57,49,54,51,93,44,91,45,56,56,46,54,49,51,54,49,49,44,51,53,46,53,56,56,48,56,57,93,44,91,45,56,56,46,54,48,54,56,54,50,44,51,53,46,55,56,57,51,53,52,93,44,91,45,56,56,46,55,48,54,56,49,49,44,51,53,46,55,57,49,48,55,53,93,44,91,45,56,56,46,57,49,54,49,56,49,44,51,53,46,55,57,55,51,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,55,52,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,52,51,52,56,50,44,51,51,46,52,57,53,56,56,53,93,44,91,45,56,53,46,54,53,51,54,53,52,44,51,51,46,49,48,54,54,51,52,93,44,91,45,56,53,46,53,57,51,49,55,55,44,51,51,46,49,48,55,51,52,93,44,91,45,56,53,46,50,51,50,51,55,56,44,51,51,46,49,48,56,48,55,55,93,44,91,45,56,53,46,50,51,54,53,49,56,44,51,51,46,49,50,57,53,53,57,93,44,91,45,56,53,46,50,57,51,56,48,53,44,51,51,46,52,50,56,48,57,56,93,44,91,45,56,53,46,51,48,52,52,51,57,44,51,51,46,52,56,50,56,56,52,93,44,91,45,56,53,46,54,52,51,52,56,50,44,51,51,46,52,57,53,56,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,115,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,56,54,44,34,98,101,100,115,34,58,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,55,55,52,57,44,51,54,46,53,56,56,49,51,55,93,44,91,45,56,49,46,55,50,56,55,56,49,44,51,54,46,51,57,49,51,48,57,93,44,91,45,56,49,46,52,55,55,53,49,54,44,51,54,46,50,52,48,50,53,93,44,91,45,56,49,46,50,53,51,54,52,57,44,51,54,46,51,54,54,54,48,49,93,44,91,45,56,49,46,51,53,51,50,53,57,44,51,54,46,53,55,52,54,57,50,93,44,91,45,56,49,46,54,55,55,52,57,44,51,54,46,53,56,56,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,68,111,108,111,114,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,56,54,48,56,52,53,44,51,55,46,55,55,53,53,49,55,93,44,91,45,49,48,55,46,57,56,57,50,48,56,44,51,55,46,56,53,54,54,52,93,44,91,45,49,48,56,46,50,48,57,48,57,51,44,51,55,46,56,50,48,57,51,54,93,44,91,45,49,48,56,46,50,53,54,52,57,56,44,51,55,46,56,57,52,54,48,55,93,44,91,45,49,48,56,46,56,49,54,55,49,44,51,55,46,56,57,53,53,51,56,93,44,91,45,49,48,57,46,48,52,49,57,57,50,44,51,55,46,56,56,49,48,56,51,93,44,91,45,49,48,57,46,48,52,51,51,54,54,44,51,55,46,52,56,52,56,49,56,93,44,91,45,49,48,56,46,57,49,55,48,56,49,44,51,55,46,54,51,49,57,48,50,93,44,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,44,91,45,49,48,55,46,56,54,48,56,52,53,44,51,55,46,55,55,53,53,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,76,105,99,107,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,50,57,51,44,34,98,101,100,115,34,58,50,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,54,49,56,50,55,44,52,48,46,49,50,53,56,53,53,93,44,91,45,56,50,46,55,56,50,52,57,53,44,51,57,46,57,51,57,54,54,50,93,44,91,45,56,50,46,52,54,50,56,49,51,44,51,57,46,57,51,48,51,56,93,44,91,45,56,50,46,50,51,51,57,55,52,44,51,57,46,57,49,51,50,54,93,44,91,45,56,50,46,49,57,56,55,55,50,44,51,57,46,57,53,48,49,52,93,44,91,45,56,50,46,49,56,55,49,48,53,44,52,48,46,49,54,54,56,56,93,44,91,45,56,50,46,49,57,53,57,49,49,44,52,48,46,50,51,57,48,55,49,93,44,91,45,56,50,46,52,55,55,50,55,51,44,52,48,46,50,52,53,56,49,93,44,91,45,56,50,46,55,53,48,55,52,55,44,52,48,46,50,55,54,57,57,54,93,44,91,45,56,50,46,55,54,49,56,50,55,44,52,48,46,49,50,53,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,56,51,34,44,34,78,65,77,69,34,58,34,77,97,110,97,115,115,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,52,53,55,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,55,53,55,54,44,51,56,46,55,56,49,49,55,49,93,44,91,45,55,55,46,52,57,57,52,51,44,51,56,46,55,51,55,49,51,55,93,44,91,45,55,55,46,52,53,49,54,52,50,44,51,56,46,55,51,56,51,51,55,93,44,91,45,55,55,46,52,53,56,54,57,53,44,51,56,46,55,55,50,51,49,57,93,44,91,45,55,55,46,52,55,53,55,54,44,51,56,46,55,56,49,49,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,55,51,50,44,34,98,101,100,115,34,58,49,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,55,56,52,54,57,44,51,51,46,51,55,55,50,56,93,44,91,45,57,50,46,57,56,56,55,48,55,44,51,51,46,48,49,55,52,51,51,93,44,91,45,57,50,46,55,50,52,55,52,44,51,51,46,48,49,52,51,57,93,44,91,45,57,50,46,48,54,57,49,48,53,44,51,51,46,48,48,56,49,54,51,93,44,91,45,57,50,46,49,51,55,53,50,55,44,51,51,46,49,54,50,57,53,54,93,44,91,45,57,50,46,51,53,48,52,51,50,44,51,51,46,50,57,56,57,52,49,93,44,91,45,57,50,46,52,52,49,54,55,55,44,51,51,46,50,55,51,54,52,55,93,44,91,45,57,50,46,53,54,55,49,53,54,44,51,51,46,51,54,55,50,93,44,91,45,57,50,46,57,55,56,52,54,57,44,51,51,46,51,55,55,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,72,101,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,52,56,57,56,57,44,52,49,46,48,55,48,50,53,93,44,91,45,57,48,46,57,54,50,57,49,54,44,52,48,46,57,50,52,57,53,55,93,44,91,45,57,49,46,48,57,54,57,52,54,44,52,48,46,56,49,49,52,48,51,93,44,91,45,57,49,46,49,49,50,52,54,55,44,52,48,46,54,57,54,51,48,49,93,44,91,45,57,49,46,49,56,53,50,57,53,44,52,48,46,54,51,55,56,48,51,93,44,91,45,57,48,46,57,48,52,50,49,54,44,52,48,46,54,51,57,50,48,49,93,44,91,45,57,48,46,55,56,57,54,53,50,44,52,48,46,54,51,53,55,53,93,44,91,45,57,48,46,55,56,53,49,57,52,44,52,49,46,48,54,56,55,52,57,93,44,91,45,57,48,46,57,52,56,57,56,57,44,52,49,46,48,55,48,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,57,52,49,44,34,98,101,100,115,34,58,49,50,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,57,54,55,55,52,44,51,50,46,51,52,52,52,51,55,93,44,91,45,56,54,46,52,48,56,55,55,49,44,51,50,46,50,52,52,51,48,57,93,44,91,45,56,54,46,52,48,54,50,55,54,44,51,50,46,48,53,48,55,51,49,93,44,91,45,56,54,46,51,48,50,50,49,55,44,51,49,46,57,54,53,48,54,53,93,44,91,45,56,54,46,49,57,49,51,55,57,44,51,49,46,57,54,54,52,53,51,93,44,91,45,56,53,46,57,57,53,53,54,51,44,51,49,46,57,54,55,53,53,52,93,44,91,45,56,53,46,57,57,54,56,53,51,44,51,50,46,48,53,49,48,52,57,93,44,91,45,56,53,46,57,57,57,49,53,55,44,51,50,46,50,53,48,53,52,51,93,44,91,45,56,53,46,57,49,57,50,57,51,44,51,50,46,50,55,52,51,56,50,93,44,91,45,56,54,46,48,50,51,48,49,50,44,51,50,46,52,49,57,57,55,56,93,44,91,45,56,54,46,49,49,54,51,50,57,44,51,50,46,52,49,55,48,50,54,93,44,91,45,56,54,46,50,51,55,48,54,56,44,51,50,46,52,57,52,57,56,93,44,91,45,56,54,46,52,49,49,49,55,50,44,51,50,46,52,48,57,57,51,55,93,44,91,45,56,54,46,52,57,54,55,55,52,44,51,50,46,51,52,52,52,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,114,97,112,97,104,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,54,54,55,49,44,34,98,101,100,115,34,58,49,50,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,52,56,55,52,44,51,57,46,53,54,54,48,56,56,93,44,91,45,49,48,52,46,54,54,48,54,50,54,44,51,57,46,53,54,53,57,48,57,93,44,91,45,49,48,51,46,55,49,52,51,53,53,44,51,57,46,53,54,54,51,51,49,93,44,91,45,49,48,51,46,55,48,55,48,55,50,44,51,57,46,53,54,54,50,57,53,93,44,91,45,49,48,51,46,55,48,54,53,52,55,44,51,57,46,55,51,57,56,57,52,93,44,91,45,49,48,52,46,56,56,52,54,52,54,44,51,57,46,55,52,48,49,53,54,93,44,91,45,49,48,53,46,48,53,51,52,49,49,44,51,57,46,54,51,49,53,56,54,93,44,91,45,49,48,53,46,48,53,51,52,53,55,44,51,57,46,54,50,57,53,50,54,93,44,91,45,49,48,53,46,48,53,51,51,51,44,51,57,46,54,50,55,57,56,57,93,44,91,45,49,48,53,46,48,53,51,52,51,57,44,51,57,46,54,50,52,51,56,55,93,44,91,45,49,48,53,46,48,53,51,52,51,55,44,51,57,46,54,50,48,57,56,52,93,44,91,45,49,48,53,46,48,52,56,55,52,44,51,57,46,53,54,54,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,51,50,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,51,48,49,55,50,44,51,55,46,54,51,49,50,55,93,44,91,45,56,53,46,50,53,55,50,57,56,44,51,55,46,54,51,48,57,48,51,93,44,91,45,56,53,46,52,48,49,55,56,52,44,51,55,46,55,51,48,54,53,56,93,44,91,45,56,53,46,53,50,49,50,57,44,51,55,46,53,53,52,51,52,51,93,44,91,45,56,53,46,52,54,54,50,53,44,51,55,46,52,54,53,53,57,53,93,44,91,45,56,53,46,51,52,49,50,50,44,51,55,46,52,54,57,52,53,56,93,44,91,45,56,53,46,50,52,54,55,53,57,44,51,55,46,52,50,48,50,48,53,93,44,91,45,56,53,46,49,54,57,53,54,53,44,51,55,46,52,54,52,48,48,52,93,44,91,45,56,53,46,48,55,51,55,55,50,44,51,55,46,52,49,51,54,54,57,93,44,91,45,56,53,46,48,51,57,54,55,52,44,51,55,46,53,52,53,50,51,50,93,44,91,45,56,53,46,48,51,48,49,55,50,44,51,55,46,54,51,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,83,107,97,103,105,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,57,48,55,44,34,98,101,100,115,34,58,50,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,55,51,53,50,51,49,44,52,56,46,52,48,53,57,51,50,93,44,91,45,49,50,50,46,53,57,49,57,52,52,44,52,56,46,52,49,55,55,53,56,93,44,91,45,49,50,50,46,52,53,56,53,57,54,44,52,56,46,50,57,55,55,48,51,93,44,91,45,49,50,49,46,48,48,49,54,53,56,44,52,56,46,50,57,54,48,48,57,93,44,91,45,49,50,49,46,48,54,50,52,53,44,52,56,46,52,54,48,51,54,55,93,44,91,45,49,50,48,46,56,53,55,52,50,55,44,52,56,46,53,52,55,54,55,54,93,44,91,45,49,50,48,46,55,48,50,48,54,57,44,52,56,46,53,51,49,53,56,57,93,44,91,45,49,50,48,46,55,53,49,57,48,52,44,52,56,46,54,53,55,48,48,50,93,44,91,45,49,50,49,46,50,54,49,54,51,56,44,52,56,46,54,52,48,57,49,50,93,44,91,45,49,50,50,46,55,49,51,55,48,52,44,52,56,46,54,52,53,49,51,93,44,91,45,49,50,50,46,55,54,52,52,48,52,44,52,56,46,54,48,48,53,55,55,93,44,91,45,49,50,50,46,55,51,53,50,51,49,44,52,56,46,52,48,53,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,53,52,44,34,98,101,100,115,34,58,50,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,52,51,51,53,53,44,51,49,46,56,50,52,53,54,53,93,44,91,45,56,57,46,51,49,54,53,54,44,51,49,46,56,48,50,48,57,93,44,91,45,56,57,46,52,48,49,50,50,55,44,51,49,46,55,57,54,56,54,51,93,44,91,45,56,57,46,51,57,57,49,55,56,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,49,52,54,48,57,50,44,51,49,46,52,51,52,48,53,50,93,44,91,45,56,56,46,57,52,51,52,54,56,44,51,49,46,52,51,51,52,53,56,93,44,91,45,56,56,46,57,52,51,51,53,53,44,51,49,46,56,50,52,53,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,57,53,52,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,56,53,56,48,57,44,52,51,46,54,52,49,48,52,57,93,44,91,45,56,57,46,55,50,55,55,56,56,44,52,51,46,53,54,57,52,55,56,93,44,91,45,56,57,46,53,57,57,51,53,55,44,52,51,46,53,53,56,48,52,49,93,44,91,45,56,57,46,54,48,48,55,51,44,52,51,46,51,56,48,54,54,54,93,44,91,45,56,57,46,55,50,48,52,54,51,44,52,51,46,50,57,51,48,56,52,93,44,91,45,56,57,46,48,48,57,49,51,57,44,52,51,46,50,56,52,56,51,93,44,91,45,56,57,46,48,48,54,56,52,56,44,52,51,46,54,51,51,48,52,53,93,44,91,45,56,57,46,50,52,53,52,51,55,44,52,51,46,54,52,51,48,56,51,93,44,91,45,56,57,46,53,57,57,53,52,55,44,52,51,46,54,52,50,54,51,54,93,44,91,45,56,57,46,55,56,52,57,48,49,44,52,51,46,54,52,49,48,53,49,93,44,91,45,56,57,46,55,56,53,56,48,57,44,52,51,46,54,52,49,48,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,114,117,110,115,119,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,56,54,48,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,54,50,51,53,44,51,52,46,51,53,55,48,48,55,93,44,91,45,55,56,46,50,53,52,54,50,50,44,51,52,46,50,49,54,51,48,53,93,44,91,45,55,56,46,51,55,52,50,57,53,44,51,52,46,50,48,52,56,57,51,93,44,91,45,55,56,46,53,53,53,48,52,51,44,51,52,46,48,54,55,48,55,49,93,44,91,45,55,56,46,54,53,48,51,49,52,44,51,51,46,57,52,52,51,52,50,93,44,91,45,55,56,46,52,57,57,51,48,49,44,51,51,46,56,49,50,56,53,50,93,44,91,45,55,56,46,50,54,50,51,51,53,44,51,51,46,56,54,51,49,54,51,93,44,91,45,55,56,46,48,54,54,53,56,49,44,51,51,46,56,52,55,57,56,53,93,44,91,45,55,55,46,57,54,52,48,53,50,44,51,51,46,55,53,50,56,57,57,93,44,91,45,55,55,46,56,57,55,48,49,49,44,51,51,46,55,56,54,56,93,44,91,45,55,55,46,57,52,56,52,55,57,44,51,51,46,57,55,49,50,55,52,93,44,91,45,55,55,46,57,53,54,54,48,53,44,51,52,46,50,51,52,52,57,49,93,44,91,45,55,56,46,48,50,57,57,50,50,44,51,52,46,51,51,49,55,54,56,93,44,91,45,55,56,46,49,54,50,51,53,44,51,52,46,51,53,55,48,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,108,101,97,114,119,97,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,49,50,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,56,50,49,53,53,44,52,55,46,57,51,51,57,54,54,93,44,91,45,57,53,46,53,53,52,50,52,56,44,52,55,46,52,57,57,56,57,51,93,44,91,45,57,53,46,53,53,49,49,56,54,44,52,55,46,49,53,49,52,53,51,93,44,91,45,57,53,46,49,54,57,49,55,50,44,52,55,46,49,53,50,53,49,53,93,44,91,45,57,53,46,49,56,51,50,49,54,44,52,55,46,52,49,50,55,55,51,93,44,91,45,57,53,46,49,57,51,55,48,53,44,52,55,46,56,55,50,53,52,52,93,44,91,45,57,53,46,50,55,55,56,51,52,44,52,55,46,57,50,53,51,52,54,93,44,91,45,57,53,46,50,50,57,49,51,51,44,52,56,46,48,49,57,57,53,56,93,44,91,45,57,53,46,53,56,50,56,56,55,44,52,56,46,48,50,48,53,53,55,93,44,91,45,57,53,46,53,56,50,49,53,53,44,52,55,46,57,51,51,57,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,49,52,48,56,51,53,44,51,55,46,53,52,50,50,50,93,44,91,45,55,54,46,49,51,54,51,48,49,44,51,55,46,50,56,50,49,51,55,93,44,91,45,55,54,46,49,51,53,53,50,44,51,55,46,49,57,49,57,55,93,44,91,45,55,54,46,49,51,52,57,52,49,44,51,55,46,49,49,55,54,48,51,93,44,91,45,55,54,46,49,51,51,56,55,50,44,51,55,46,48,52,48,56,56,54,93,44,91,45,55,53,46,57,48,57,52,57,49,44,51,54,46,57,57,48,55,48,56,93,44,91,45,55,53,46,56,56,57,54,55,54,44,51,55,46,48,53,52,53,49,53,93,44,91,45,55,53,46,55,52,52,54,51,57,44,51,55,46,49,56,50,51,52,57,93,44,91,45,55,53,46,55,49,53,53,49,53,44,51,55,46,50,55,53,54,56,55,93,44,91,45,55,53,46,53,57,55,52,52,49,44,51,55,46,52,53,48,57,56,56,93,44,91,45,55,53,46,55,56,55,48,51,44,51,55,46,52,54,52,53,55,56,93,44,91,45,55,53,46,56,51,53,50,49,52,44,51,55,46,53,53,52,50,52,53,93,44,91,45,55,54,46,49,52,48,56,51,53,44,51,55,46,53,52,50,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,82,111,111,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,48,50,49,55,54,44,51,57,46,53,54,55,51,50,56,93,44,91,45,57,57,46,54,48,53,49,56,55,44,51,57,46,49,51,50,52,56,49,93,44,91,45,57,57,46,53,57,49,55,55,54,44,51,57,46,49,51,50,51,53,55,93,44,91,45,57,57,46,48,52,55,54,56,55,44,51,57,46,49,51,51,48,49,52,93,44,91,45,57,57,46,48,52,52,51,57,56,44,51,57,46,53,54,56,48,51,53,93,44,91,45,57,57,46,48,54,54,50,50,44,51,57,46,53,54,56,49,50,53,93,44,91,45,57,57,46,54,48,50,49,55,54,44,51,57,46,53,54,55,51,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,48,49,53,56,52,44,51,57,46,55,56,55,53,55,57,93,44,91,45,56,53,46,50,57,56,49,49,44,51,57,46,53,50,53,52,55,54,93,44,91,45,56,53,46,48,51,54,48,56,55,44,51,57,46,53,50,54,50,49,51,93,44,91,45,56,53,46,48,51,52,53,55,53,44,51,57,46,55,49,52,55,54,52,93,44,91,45,56,53,46,49,56,53,48,56,57,44,51,57,46,55,49,53,53,49,53,93,44,91,45,56,53,46,50,50,49,49,49,56,44,51,57,46,55,56,56,52,52,57,93,44,91,45,56,53,46,51,48,49,53,56,52,44,51,57,46,55,56,55,53,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,72,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,51,52,51,44,34,98,101,100,115,34,58,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,50,49,57,55,53,44,52,49,46,48,52,54,54,55,52,93,44,91,45,57,56,46,55,50,49,52,51,44,52,48,46,54,57,56,57,48,51,93,44,91,45,57,56,46,50,56,50,56,53,49,44,52,48,46,54,57,56,50,56,52,93,44,91,45,57,56,46,50,56,50,53,55,56,44,52,48,46,56,54,56,54,55,55,93,44,91,45,57,56,46,50,56,55,49,54,56,44,52,49,46,48,52,54,51,54,51,93,44,91,45,57,56,46,55,50,49,57,55,53,44,52,49,46,48,52,54,54,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,55,56,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,56,50,53,55,56,44,52,48,46,56,54,56,54,55,55,93,44,91,45,57,56,46,50,56,50,56,53,49,44,52,48,46,54,57,56,50,56,52,93,44,91,45,57,56,46,50,55,56,49,48,51,44,52,48,46,54,57,56,50,57,49,93,44,91,45,57,55,46,56,50,53,55,50,51,44,52,48,46,54,57,56,53,53,53,93,44,91,45,57,55,46,56,50,54,50,56,55,44,52,49,46,48,52,54,53,56,49,93,44,91,45,57,55,46,56,50,56,50,53,54,44,52,49,46,49,55,51,52,51,57,93,44,91,45,57,56,46,48,49,48,53,52,56,44,52,49,46,48,55,50,55,54,49,93,44,91,45,57,56,46,50,56,50,53,55,56,44,52,48,46,56,54,56,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,76,111,117,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,51,52,54,50,57,44,52,50,46,48,56,55,57,57,53,93,44,91,45,57,57,46,54,54,50,51,55,57,44,52,50,46,48,56,54,48,48,57,93,44,91,45,57,57,46,54,56,54,57,53,57,44,52,50,46,48,56,54,48,55,53,93,44,91,45,57,57,46,54,56,54,56,51,52,44,52,49,46,55,52,48,51,50,54,93,44,91,45,57,57,46,50,50,49,56,51,44,52,49,46,55,52,48,55,57,50,93,44,91,45,57,57,46,50,50,50,55,51,51,44,52,50,46,48,56,55,57,49,54,93,44,91,45,57,57,46,50,51,52,54,50,57,44,52,50,46,48,56,55,57,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,83,104,101,114,105,100,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,52,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,53,55,54,52,50,44,52,56,46,57,57,57,48,49,50,93,44,91,45,49,48,53,46,48,51,56,53,52,56,44,52,56,46,54,53,48,48,57,57,93,44,91,45,49,48,52,46,57,55,51,51,53,52,44,52,56,46,53,54,51,49,57,93,44,91,45,49,48,52,46,55,53,55,54,49,57,44,52,56,46,53,54,51,49,50,55,93,44,91,45,49,48,52,46,54,50,55,55,50,54,44,52,56,46,52,55,54,51,52,57,93,44,91,45,49,48,52,46,54,50,55,55,54,44,52,56,46,51,56,57,51,54,50,93,44,91,45,49,48,52,46,48,52,54,55,54,54,44,52,56,46,51,56,57,50,57,56,93,44,91,45,49,48,52,46,48,52,55,57,50,52,44,52,56,46,54,51,51,57,49,49,93,44,91,45,49,48,52,46,48,52,56,54,56,57,44,52,56,46,57,57,57,53,57,51,93,44,91,45,49,48,53,46,48,53,55,54,52,50,44,52,56,46,57,57,57,48,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,70,114,111,110,116,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,55,55,56,51,51,44,52,48,46,55,48,48,49,51,53,93,44,91,45,49,48,48,46,55,55,55,51,55,54,44,52,48,46,51,52,57,52,54,54,93,44,91,45,49,48,48,46,55,53,56,52,51,53,44,52,48,46,51,52,57,53,48,55,93,44,91,45,49,48,48,46,49,57,55,56,48,55,44,52,48,46,51,53,48,48,50,55,93,44,91,45,49,48,48,46,48,57,52,55,57,56,44,52,48,46,51,53,49,50,52,53,93,44,91,45,57,57,46,57,56,49,49,57,51,44,52,48,46,52,51,56,50,57,49,93,44,91,45,57,57,46,57,56,49,55,52,51,44,52,48,46,55,48,48,48,48,51,93,44,91,45,49,48,48,46,50,50,51,51,49,49,44,52,48,46,55,48,48,50,53,52,93,44,91,45,49,48,48,46,55,55,55,56,51,51,44,52,48,46,55,48,48,49,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,76,117,113,117,105,108,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,52,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,55,49,51,56,50,53,44,49,56,46,52,52,52,48,50,52,93,44,91,45,54,53,46,55,53,56,56,54,49,44,49,56,46,50,57,48,54,48,52,93,44,91,45,54,53,46,55,53,51,53,57,49,44,49,56,46,50,57,54,55,53,53,93,44,91,45,54,53,46,54,56,53,57,50,44,49,56,46,51,50,57,57,57,49,93,44,91,45,54,53,46,54,52,54,48,56,51,44,49,56,46,52,52,50,50,50,93,44,91,45,54,53,46,55,49,51,56,50,53,44,49,56,46,52,52,52,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,105,98,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,50,55,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,54,53,55,51,56,44,51,51,46,50,52,54,57,48,55,93,44,91,45,56,55,46,50,56,49,57,52,53,44,51,51,46,49,51,51,48,54,93,44,91,45,56,55,46,51,49,56,53,51,57,44,51,51,46,48,48,54,49,55,57,93,44,91,45,56,55,46,52,50,49,57,51,54,44,51,51,46,48,48,51,51,55,57,93,44,91,45,56,55,46,52,50,49,50,44,51,50,46,56,55,52,53,48,56,93,44,91,45,56,55,46,51,49,57,49,56,52,44,51,50,46,56,51,49,53,50,50,93,44,91,45,56,55,46,48,49,57,49,53,55,44,51,50,46,56,51,55,48,51,52,93,44,91,45,56,54,46,56,55,54,49,49,56,44,51,50,46,56,51,54,50,54,52,93,44,91,45,56,54,46,56,56,49,49,56,50,44,51,51,46,48,52,57,57,48,49,93,44,91,45,56,55,46,48,50,53,53,57,54,44,51,51,46,49,54,53,55,57,53,93,44,91,45,56,55,46,48,50,54,56,52,54,44,51,51,46,50,52,54,52,53,57,93,44,91,45,56,55,46,48,54,53,55,51,56,44,51,51,46,50,52,54,57,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,97,117,100,101,114,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,51,50,51,44,34,98,101,100,115,34,58,57,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,49,52,53,49,54,44,51,50,46,53,55,54,57,53,53,93,44,91,45,56,56,46,57,49,51,56,52,55,44,51,50,46,50,50,52,49,56,54,93,44,91,45,56,56,46,52,51,49,51,55,57,44,51,50,46,50,50,55,54,54,54,93,44,91,45,56,56,46,52,50,49,52,53,51,44,51,50,46,51,48,56,54,56,93,44,91,45,56,56,46,51,56,56,55,57,55,44,51,50,46,53,55,56,49,50,51,93,44,91,45,56,56,46,57,49,52,53,49,54,44,51,50,46,53,55,54,57,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,105,103,32,83,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,49,54,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,51,53,52,53,49,44,52,53,46,53,56,54,49,50,57,93,44,91,45,57,54,46,54,56,48,52,53,52,44,52,53,46,52,49,48,52,57,57,93,44,91,45,57,54,46,52,55,48,52,55,53,44,52,53,46,51,50,54,53,52,53,93,44,91,45,57,54,46,52,53,50,57,52,55,44,52,53,46,50,54,56,57,50,53,93,44,91,45,57,54,46,50,56,51,49,57,53,44,52,53,46,50,52,54,51,57,49,93,44,91,45,57,54,46,49,48,51,54,49,52,44,52,53,46,49,55,54,54,55,53,93,44,91,45,57,54,46,49,49,55,48,51,54,44,52,53,46,52,49,49,57,57,51,93,44,91,45,57,54,46,50,52,49,51,50,56,44,52,53,46,52,49,50,54,54,55,93,44,91,45,57,54,46,50,53,51,48,50,54,44,52,53,46,53,56,53,53,50,54,93,44,91,45,57,54,46,56,51,53,52,53,49,44,52,53,46,53,56,54,49,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,108,117,101,32,69,97,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,51,50,50,44,34,98,101,100,115,34,58,50,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,51,55,49,55,51,49,44,52,52,46,50,54,52,52,52,56,93,44,91,45,57,52,46,51,54,56,56,53,44,52,52,46,49,48,56,54,57,56,93,44,91,45,57,52,46,51,54,56,57,55,52,44,52,51,46,56,52,56,48,52,55,93,44,91,45,57,52,46,50,52,55,49,50,51,44,52,51,46,56,52,55,57,52,54,93,44,91,45,57,51,46,55,54,55,55,54,49,44,52,51,46,56,52,55,57,53,54,93,44,91,45,57,51,46,55,54,55,57,55,49,44,52,52,46,49,57,53,56,51,54,93,44,91,45,57,52,46,48,49,49,56,54,56,44,52,52,46,50,51,57,53,50,93,44,91,45,57,52,46,48,53,54,55,53,55,44,52,52,46,49,53,52,54,49,55,93,44,91,45,57,52,46,51,55,49,55,51,49,44,52,52,46,50,54,52,52,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,105,103,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,55,57,53,57,50,49,44,51,56,46,50,54,53,53,53,50,93,44,91,45,55,57,46,53,49,50,49,53,56,44,51,56,46,49,56,48,52,49,57,93,44,91,45,55,57,46,52,51,51,54,55,44,51,56,46,50,50,57,52,57,51,93,44,91,45,55,57,46,51,49,50,50,55,54,44,51,56,46,52,49,49,56,55,54,93,44,91,45,55,57,46,52,55,54,54,51,56,44,51,56,46,52,53,55,50,50,56,93,44,91,45,55,57,46,53,51,54,56,55,44,51,56,46,53,53,48,57,49,55,93,44,91,45,55,57,46,54,52,57,48,55,53,44,51,56,46,53,57,49,53,49,53,93,44,91,45,55,57,46,54,56,57,54,54,55,44,51,56,46,52,51,49,52,54,50,93,44,91,45,55,57,46,55,57,53,57,50,49,44,51,56,46,50,54,53,53,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,83,112,111,116,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,52,49,50,44,34,98,101,100,115,34,58,49,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,55,48,50,56,52,51,44,51,56,46,51,54,48,56,52,93,44,91,45,55,55,46,57,53,51,54,51,57,44,51,56,46,49,49,56,53,48,49,93,44,91,45,55,55,46,56,51,57,55,49,55,44,51,56,46,49,48,54,48,51,56,93,44,91,45,55,55,46,54,56,55,52,54,57,44,51,56,46,48,48,55,56,48,54,93,44,91,45,55,55,46,54,52,50,53,49,56,44,51,55,46,57,57,48,54,56,56,93,44,91,45,55,55,46,51,55,48,50,57,55,44,51,56,46,50,52,54,53,55,54,93,44,91,45,55,55,46,52,52,55,49,50,54,44,51,56,46,50,56,52,54,49,52,93,44,91,45,55,55,46,53,51,48,50,56,51,44,51,56,46,51,48,57,49,55,53,93,44,91,45,55,55,46,54,49,56,55,50,55,44,51,56,46,51,54,55,56,51,53,93,44,91,45,55,55,46,55,48,50,56,52,51,44,51,56,46,51,54,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,83,116,114,97,102,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,50,51,55,44,34,98,101,100,115,34,58,50,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,49,54,50,54,55,53,44,52,51,46,53,51,56,57,53,57,93,44,91,45,55,49,46,49,53,57,51,54,52,44,52,51,46,51,53,53,49,50,51,93,44,91,45,55,49,46,50,51,54,48,49,49,44,52,51,46,50,56,52,57,57,52,93,44,91,45,55,49,46,50,52,55,51,51,54,44,52,51,46,50,55,53,50,51,50,93,44,91,45,55,49,46,48,50,54,54,56,54,44,52,51,46,49,51,55,57,52,55,93,44,91,45,55,48,46,56,55,53,52,51,54,44,52,51,46,48,56,48,52,50,50,93,44,91,45,55,48,46,56,50,48,48,49,57,44,52,51,46,49,50,50,53,52,53,93,44,91,45,55,48,46,56,49,56,49,57,53,44,52,51,46,50,51,56,51,51,93,44,91,45,55,48,46,57,55,56,49,49,53,44,52,51,46,51,53,56,57,49,52,93,44,91,45,55,48,46,57,54,50,49,53,52,44,52,51,46,53,52,49,48,56,55,93,44,91,45,55,49,46,49,54,50,54,55,53,44,52,51,46,53,51,56,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,72,111,117,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,54,56,50,44,34,98,101,100,115,34,58,50,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,48,49,48,57,44,51,50,46,54,57,49,53,57,56,93,44,91,45,56,51,46,55,49,57,56,53,57,44,51,50,46,53,51,49,55,54,93,44,91,45,56,51,46,56,52,54,54,55,54,44,51,50,46,52,54,56,53,49,52,93,44,91,45,56,51,46,56,52,56,51,55,57,44,51,50,46,50,57,48,57,55,93,44,91,45,56,51,46,54,49,53,53,55,57,44,51,50,46,50,56,56,53,53,54,93,44,91,45,56,51,46,52,57,56,48,51,57,44,51,50,46,52,48,49,55,49,53,93,44,91,45,56,51,46,52,57,55,57,50,51,44,51,50,46,52,53,50,49,57,56,93,44,91,45,56,51,46,53,57,55,54,53,54,44,51,50,46,54,54,52,51,51,56,93,44,91,45,56,51,46,55,48,49,49,53,50,44,51,50,46,54,57,50,49,54,57,93,44,91,45,56,51,46,55,48,49,48,57,44,51,50,46,54,57,49,53,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,108,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,49,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,54,55,56,52,57,44,52,53,46,57,56,53,51,50,49,93,44,91,45,56,55,46,51,50,53,51,57,49,44,52,53,46,56,57,56,54,54,53,93,44,91,45,56,55,46,51,50,55,53,48,50,44,52,53,46,53,53,49,50,53,93,44,91,45,56,55,46,49,50,57,49,49,56,44,52,53,46,53,53,48,52,56,53,93,44,91,45,56,55,46,49,50,55,56,50,54,44,52,53,46,52,48,57,52,56,55,93,44,91,45,56,55,46,49,48,49,49,51,51,44,52,53,46,52,52,52,50,51,93,44,91,45,56,54,46,55,53,52,50,51,54,44,52,53,46,52,52,51,54,49,93,44,91,45,56,54,46,52,54,52,49,50,44,52,53,46,51,50,52,56,49,93,44,91,45,56,54,46,52,54,48,55,57,55,44,52,53,46,53,56,52,52,51,51,93,44,91,45,56,54,46,52,53,57,49,49,52,44,52,53,46,56,57,54,51,54,51,93,44,91,45,56,54,46,52,57,48,49,52,50,44,52,54,46,49,53,56,49,55,56,93,44,91,45,56,54,46,54,49,53,54,48,49,44,52,54,46,49,53,56,54,57,49,93,44,91,45,56,55,46,49,49,54,49,51,56,44,52,54,46,49,53,57,48,53,93,44,91,45,56,55,46,50,52,49,53,48,54,44,52,54,46,49,53,57,49,48,51,93,44,91,45,56,55,46,50,52,50,56,56,53,44,52,53,46,57,56,53,49,49,55,93,44,91,45,56,55,46,51,54,55,56,52,57,44,52,53,46,57,56,53,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,83,101,98,97,115,116,105,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,52,54,49,44,34,98,101,100,115,34,58,49,48,55,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,51,53,53,57,44,51,53,46,51,56,54,49,50,50,93,44,91,45,57,52,46,52,52,55,55,55,52,44,51,52,46,57,51,51,57,51,55,93,44,91,45,57,52,46,50,51,48,53,50,52,44,51,52,46,57,54,56,53,50,55,93,44,91,45,57,52,46,50,50,56,50,50,54,44,51,53,46,48,55,49,57,53,53,93,44,91,45,57,52,46,49,52,48,53,55,49,44,51,53,46,48,57,57,54,55,56,93,44,91,45,57,52,46,48,51,49,50,51,54,44,51,53,46,49,52,48,57,48,56,93,44,91,45,57,52,46,48,50,56,56,56,54,44,51,53,46,50,49,51,56,52,49,93,44,91,45,57,52,46,48,56,50,55,57,56,44,51,53,46,50,49,53,57,49,51,93,44,91,45,57,52,46,48,55,52,56,57,53,44,51,53,46,52,52,53,52,48,51,93,44,91,45,57,52,46,50,56,57,51,51,50,44,51,53,46,51,52,53,50,49,49,93,44,91,45,57,52,46,52,51,49,48,52,53,44,51,53,46,51,57,51,55,51,53,93,44,91,45,57,52,46,52,51,53,53,57,44,51,53,46,51,56,54,49,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,67,114,117,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,51,55,54,53,44,34,98,101,100,115,34,58,51,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,49,53,50,50,55,56,44,51,55,46,50,56,54,48,53,53,93,44,91,45,49,50,50,46,49,53,50,55,55,52,44,51,55,46,50,49,53,52,52,52,93,44,91,45,49,50,50,46,51,49,55,54,56,50,44,51,55,46,49,56,54,57,52,53,93,44,91,45,49,50,50,46,51,49,51,56,57,57,44,51,55,46,48,53,52,55,54,52,93,44,91,45,49,50,50,46,50,53,49,48,56,50,44,51,54,46,57,56,53,56,51,51,93,44,91,45,49,50,50,46,48,55,54,51,57,57,44,51,54,46,57,49,48,49,57,57,93,44,91,45,49,50,50,46,48,53,49,56,55,56,44,51,54,46,56,49,57,54,93,44,91,45,49,50,49,46,54,52,52,48,48,49,44,51,54,46,56,57,51,57,57,54,93,44,91,45,49,50,49,46,53,56,49,51,53,52,44,51,54,46,56,57,57,49,53,50,93,44,91,45,49,50,49,46,55,53,55,54,44,51,55,46,48,52,57,54,51,93,44,91,45,49,50,50,46,48,50,54,49,48,55,44,51,55,46,49,54,54,56,49,93,44,91,45,49,50,50,46,49,53,50,50,55,56,44,51,55,46,50,56,54,48,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,77,99,73,110,116,111,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,50,52,50,57,44,51,49,46,52,53,50,57,56,50,93,44,91,45,56,49,46,52,51,53,56,55,52,44,51,49,46,51,49,51,50,54,51,93,44,91,45,56,49,46,49,56,51,55,49,54,44,51,49,46,50,57,52,50,56,51,93,44,91,45,56,49,46,49,57,48,55,53,56,44,51,49,46,51,57,57,56,55,54,93,44,91,45,56,49,46,48,57,53,51,56,51,44,51,49,46,53,50,48,57,56,49,93,44,91,45,56,49,46,49,55,53,49,52,56,44,51,49,46,53,51,57,54,54,93,44,91,45,56,49,46,50,54,49,56,54,56,44,51,49,46,54,53,48,49,52,50,93,44,91,45,56,49,46,52,51,53,55,54,44,51,49,46,54,52,50,48,53,53,93,44,91,45,56,49,46,52,57,49,55,57,56,44,51,49,46,54,57,57,53,55,53,93,44,91,45,56,49,46,53,54,54,48,48,57,44,51,49,46,53,55,54,52,54,55,93,44,91,45,56,49,46,54,54,51,50,48,54,44,51,49,46,53,51,56,54,54,55,93,44,91,45,56,49,46,54,50,52,50,57,44,51,49,46,52,53,50,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,55,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,48,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,52,49,52,57,56,44,51,51,46,50,48,50,54,50,57,93,44,91,45,56,52,46,48,52,52,49,49,51,44,51,50,46,57,52,55,56,55,52,93,44,91,45,56,52,46,49,50,51,51,52,44,51,50,46,57,51,50,49,56,52,93,44,91,45,56,52,46,49,50,52,50,55,53,44,51,50,46,56,52,57,53,54,50,93,44,91,45,56,51,46,56,57,49,57,50,50,44,51,50,46,56,52,56,51,53,49,93,44,91,45,56,51,46,55,49,48,54,56,53,44,51,50,46,57,53,50,55,57,50,93,44,91,45,56,51,46,56,49,54,48,52,56,44,51,51,46,49,51,49,56,49,54,93,44,91,45,56,51,46,56,50,50,50,54,49,44,51,51,46,49,56,48,50,51,56,93,44,91,45,56,52,46,48,52,49,52,57,56,44,51,51,46,50,48,50,54,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,68,117,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,52,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,50,48,55,51,50,44,51,54,46,52,57,55,56,53,57,93,44,91,45,57,48,46,48,54,51,53,57,52,44,51,54,46,51,56,52,50,51,53,93,44,91,45,57,48,46,49,50,53,52,56,55,44,51,54,46,50,51,49,50,51,50,93,44,91,45,57,48,46,49,57,48,50,48,55,44,51,54,46,50,48,49,51,54,49,93,44,91,45,57,48,46,51,55,55,56,57,44,51,53,46,57,57,53,54,56,51,93,44,91,45,57,48,46,50,56,56,57,52,55,44,51,53,46,57,57,54,52,49,93,44,91,45,56,57,46,57,53,57,51,55,54,44,51,53,46,57,57,57,49,51,49,93,44,91,45,56,57,46,57,54,49,51,49,44,51,54,46,51,56,56,56,48,51,93,44,91,45,56,57,46,57,53,56,55,56,54,44,51,54,46,54,50,57,51,51,49,93,44,91,45,57,48,46,49,52,56,51,57,56,44,51,54,46,54,51,48,54,53,54,93,44,91,45,57,48,46,50,50,48,55,51,50,44,51,54,46,52,57,55,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,56,51,34,44,34,78,65,77,69,34,58,34,87,104,101,101,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,56,50,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,52,48,49,53,56,44,51,53,46,54,49,57,50,57,54,93,44,91,45,49,48,48,46,53,51,56,57,55,56,44,51,53,46,49,56,51,49,52,52,93,44,91,45,49,48,48,46,48,48,48,51,56,53,44,51,53,46,49,56,50,55,48,50,93,44,91,45,57,57,46,57,57,57,54,54,44,51,53,46,52,50,50,51,54,52,93,44,91,45,49,48,48,46,48,48,48,51,57,50,44,51,53,46,54,49,57,49,49,53,93,44,91,45,49,48,48,46,53,52,48,49,53,56,44,51,53,46,54,49,57,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,70,111,114,115,121,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,56,56,48,44,34,98,101,100,115,34,58,51,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,53,56,48,55,53,44,51,52,46,51,51,53,49,53,54,93,44,91,45,56,52,46,50,53,56,55,52,51,44,51,52,46,49,56,53,57,48,57,93,44,91,45,56,52,46,50,53,56,57,51,52,44,51,52,46,49,48,57,53,51,57,93,44,91,45,56,52,46,48,57,55,54,57,51,44,51,52,46,48,53,48,55,48,56,93,44,91,45,56,52,46,48,54,50,56,52,49,44,51,52,46,49,54,55,56,55,51,93,44,91,45,56,51,46,57,50,55,50,56,52,44,51,52,46,50,55,57,51,57,57,93,44,91,45,56,51,46,57,53,55,48,55,55,44,51,52,46,51,51,52,48,49,49,93,44,91,45,56,52,46,50,53,56,48,55,53,44,51,52,46,51,51,53,49,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,48,57,34,44,34,78,65,77,69,34,58,34,83,97,110,32,80,97,116,114,105,99,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,48,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,57,56,53,49,55,44,50,55,46,57,57,53,54,53,57,93,44,91,45,57,55,46,53,56,57,52,55,51,44,50,55,46,56,53,54,49,48,49,93,44,91,45,57,55,46,51,51,55,54,55,55,44,50,55,46,56,56,51,49,54,53,93,44,91,45,57,55,46,49,56,53,53,55,57,44,50,55,46,56,51,48,50,55,50,93,44,91,45,57,55,46,49,51,54,51,49,50,44,50,55,46,57,48,52,51,57,93,44,91,45,57,55,46,50,54,48,56,49,56,44,50,56,46,48,55,53,55,53,57,93,44,91,45,57,55,46,51,49,57,49,57,57,44,50,56,46,49,50,53,57,53,56,93,44,91,45,57,55,46,53,52,49,48,55,49,44,50,56,46,49,54,52,54,54,57,93,44,91,45,57,55,46,53,54,55,54,50,50,44,50,56,46,49,50,57,54,56,51,93,44,91,45,57,55,46,56,49,55,55,49,54,44,50,56,46,49,55,54,56,52,56,93,44,91,45,57,55,46,56,56,51,49,52,56,44,50,56,46,48,53,54,57,93,44,91,45,57,55,46,55,57,56,53,49,55,44,50,55,46,57,57,53,54,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,87,97,108,116,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,54,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,54,48,51,57,49,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,50,53,57,53,53,53,44,51,49,46,48,48,48,54,55,57,93,44,91,45,56,57,46,56,51,53,57,48,56,44,51,49,46,48,48,50,48,52,55,93,44,91,45,56,57,46,56,51,53,56,55,51,44,51,49,46,48,55,52,57,50,54,93,44,91,45,57,48,46,48,51,49,56,57,54,44,51,49,46,49,55,53,55,50,55,93,44,91,45,57,48,46,48,52,48,52,54,54,44,51,49,46,51,51,54,48,49,52,93,44,91,45,57,48,46,50,52,51,56,57,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,50,54,48,51,57,49,44,51,49,46,51,53,48,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,52,54,55,52,51,44,51,57,46,54,53,56,53,49,51,93,44,91,45,57,50,46,49,56,52,57,56,54,44,51,57,46,54,54,50,57,51,50,93,44,91,45,57,50,46,50,57,57,51,49,54,44,51,57,46,54,48,53,51,52,52,93,44,91,45,57,50,46,51,48,48,56,55,49,44,51,57,46,54,48,53,51,52,56,93,44,91,45,57,50,46,51,49,48,48,50,56,44,51,57,46,51,52,55,55,57,53,93,44,91,45,57,49,46,55,49,55,57,54,56,44,51,57,46,51,51,57,49,50,50,93,44,91,45,57,49,46,55,49,53,50,52,55,44,51,57,46,54,53,55,54,52,52,93,44,91,45,57,49,46,56,52,54,55,52,51,44,51,57,46,54,53,56,53,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,73,115,97,98,101,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,55,55,53,44,34,98,101,100,115,34,58,49,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,44,91,45,56,53,46,48,56,56,56,49,49,44,52,51,46,56,49,51,54,55,54,93,44,91,45,56,53,46,48,56,52,57,57,54,44,52,51,46,52,54,54,49,57,93,44,91,45,56,52,46,56,52,53,57,54,50,44,52,51,46,52,54,54,49,53,56,93,44,91,45,56,52,46,54,48,55,53,52,44,52,51,46,52,54,54,48,48,54,93,44,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,52,49,34,44,34,78,65,77,69,34,58,34,77,111,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,44,91,45,49,48,50,46,49,54,51,48,49,53,44,51,54,46,48,53,53,50,52,57,93,44,91,45,49,48,50,46,49,54,50,56,48,57,44,51,53,46,54,50,55,53,49,53,93,44,91,45,49,48,50,46,49,54,50,55,53,50,44,51,53,46,54,50,48,48,51,53,93,44,91,45,49,48,49,46,54,50,50,56,44,51,53,46,54,50,48,49,57,54,93,44,91,45,49,48,49,46,54,50,50,56,51,49,44,51,53,46,54,50,52,48,53,55,93,44,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,52,50,56,53,52,44,51,51,46,55,48,55,49,51,49,93,44,91,45,56,48,46,57,54,53,52,56,57,44,51,51,46,54,50,53,50,56,50,93,44,91,45,56,48,46,56,48,55,54,51,49,44,51,51,46,54,48,52,48,56,49,93,44,91,45,56,48,46,54,53,57,48,50,44,51,51,46,52,55,48,57,56,50,93,44,91,45,56,48,46,52,57,54,50,55,51,44,51,51,46,53,53,56,52,56,49,93,44,91,45,56,48,46,53,51,52,48,56,53,44,51,51,46,54,52,51,57,49,49,93,44,91,45,56,48,46,54,50,48,49,48,55,44,51,51,46,55,52,51,50,51,55,93,44,91,45,56,48,46,56,48,55,53,57,49,44,51,51,46,55,55,52,50,49,49,93,44,91,45,56,49,46,48,49,50,51,51,44,51,51,46,56,56,48,48,56,93,44,91,45,56,49,46,48,52,50,56,53,52,44,51,51,46,55,48,55,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,83,117,98,108,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,53,55,56,54,53,54,44,52,51,46,50,51,53,50,50,52,93,44,91,45,49,49,48,46,53,57,48,49,51,49,44,52,50,46,52,52,56,52,51,53,93,44,91,45,49,49,48,46,53,52,49,54,51,52,44,52,50,46,50,55,55,52,57,49,93,44,91,45,49,49,48,46,48,53,51,55,48,56,44,52,50,46,50,55,48,55,52,52,93,44,91,45,49,48,57,46,48,52,51,56,54,52,44,52,50,46,50,54,51,54,56,52,93,44,91,45,49,48,57,46,48,55,50,56,53,49,44,52,50,46,54,57,51,53,49,52,93,44,91,45,49,48,57,46,50,49,52,54,48,50,44,52,50,46,55,54,49,55,57,53,93,44,91,45,49,48,57,46,51,55,48,54,53,56,44,52,50,46,57,52,53,55,50,56,93,44,91,45,49,48,57,46,53,53,50,53,55,57,44,52,51,46,48,49,50,53,51,56,93,44,91,45,49,48,57,46,54,57,50,55,49,54,44,52,51,46,50,54,53,48,51,93,44,91,45,49,48,57,46,55,53,52,55,49,55,44,52,51,46,52,54,51,50,93,44,91,45,49,49,48,46,48,53,49,53,55,44,52,51,46,52,54,52,55,56,51,93,44,91,45,49,49,48,46,48,53,55,51,49,44,52,51,46,51,55,55,55,54,56,93,44,91,45,49,49,48,46,51,52,52,50,49,56,44,52,51,46,51,55,55,57,49,56,93,44,91,45,49,49,48,46,51,52,51,57,53,57,44,52,51,46,50,57,49,49,54,53,93,44,91,45,49,49,48,46,53,55,56,51,56,44,52,51,46,50,57,49,54,52,93,44,91,45,49,49,48,46,53,55,56,54,53,54,44,52,51,46,50,51,53,50,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,70,108,101,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,55,57,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,52,49,56,53,50,44,51,56,46,53,50,53,51,56,49,93,44,91,45,56,51,46,56,53,57,50,56,44,51,56,46,52,53,54,51,52,56,93,44,91,45,56,51,46,57,51,48,51,52,56,44,51,56,46,52,57,50,50,55,56,93,44,91,45,56,51,46,57,56,48,48,54,56,44,51,56,46,52,51,57,52,52,56,93,44,91,45,56,51,46,56,52,56,51,53,53,44,51,56,46,50,57,54,57,52,57,93,44,91,45,56,51,46,54,51,53,49,57,53,44,51,56,46,49,56,55,53,50,53,93,44,91,45,56,51,46,53,48,55,57,53,51,44,51,56,46,50,55,51,49,53,53,93,44,91,45,56,51,46,52,53,50,56,52,56,44,51,56,46,51,56,49,55,57,57,93,44,91,45,56,51,46,53,56,48,53,54,54,44,51,56,46,52,51,48,49,54,57,93,44,91,45,56,51,46,54,52,49,56,53,50,44,51,56,46,53,50,53,51,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,57,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,54,50,53,51,44,52,52,46,54,56,53,49,53,52,93,44,91,45,57,48,46,51,49,53,48,51,56,44,52,53,46,48,51,51,56,50,57,93,44,91,45,57,48,46,57,50,51,51,54,50,44,52,53,46,48,51,49,49,52,51,93,44,91,45,57,48,46,57,50,50,50,52,55,44,52,52,46,56,53,55,51,48,57,93,44,91,45,57,48,46,57,50,50,51,53,44,52,52,46,53,57,54,50,57,51,93,44,91,45,57,48,46,56,48,49,53,50,53,44,52,52,46,53,48,57,54,56,49,93,44,91,45,57,48,46,56,48,49,57,49,56,44,52,52,46,52,50,50,52,52,50,93,44,91,45,57,48,46,51,49,54,48,53,53,44,52,52,46,52,50,52,53,48,50,93,44,91,45,57,48,46,51,49,54,50,53,51,44,52,52,46,54,56,53,49,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,54,52,49,44,34,98,101,100,115,34,58,51,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,54,54,54,44,51,53,46,49,54,52,56,56,51,93,44,91,45,56,49,46,52,48,56,56,55,54,44,51,53,46,48,52,54,51,50,52,93,44,91,45,56,49,46,52,56,55,48,49,54,44,51,53,46,48,51,52,56,53,51,93,44,91,45,56,49,46,52,53,55,50,53,55,44,51,52,46,56,51,57,50,56,93,44,91,45,56,49,46,52,55,56,52,53,52,44,51,52,46,56,50,49,53,48,57,93,44,91,45,56,48,46,56,57,56,50,49,53,44,51,52,46,56,50,48,55,52,54,93,44,91,45,56,48,46,56,54,56,54,53,50,44,51,52,46,57,53,49,49,52,51,93,44,91,45,56,48,46,57,48,54,51,56,53,44,51,53,46,48,55,54,50,55,55,93,44,91,45,56,49,46,48,52,49,52,57,54,44,51,53,46,48,52,52,55,49,51,93,44,91,45,56,49,46,48,51,51,57,48,57,44,51,53,46,49,52,56,54,57,93,44,91,45,56,49,46,51,50,56,48,51,55,44,51,53,46,49,54,51,52,54,55,93,44,91,45,56,49,46,51,54,54,54,44,51,53,46,49,54,52,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,49,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,55,51,56,54,49,44,52,48,46,57,49,55,56,50,51,93,44,91,45,56,53,46,48,54,56,52,55,57,44,52,48,46,53,54,56,50,52,93,44,91,45,56,52,46,56,48,50,52,55,55,44,52,48,46,53,55,50,50,49,51,93,44,91,45,56,52,46,56,48,50,50,55,51,44,52,48,46,55,50,56,49,52,54,93,44,91,45,56,52,46,56,48,50,57,50,50,44,52,48,46,57,50,50,53,54,56,93,44,91,45,56,53,46,48,55,51,56,54,49,44,52,48,46,57,49,55,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,115,99,101,110,115,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,49,55,54,44,34,98,101,100,115,34,58,49,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,56,57,49,55,50,56,44,51,48,46,51,52,53,50,52,52,93,44,91,45,57,49,46,48,50,49,48,49,52,44,51,48,46,51,50,49,52,56,57,93,44,91,45,57,49,46,49,48,53,57,53,49,44,51,48,46,48,54,50,52,55,56,93,44,91,45,57,48,46,57,54,51,54,57,51,44,51,48,46,48,54,54,52,53,93,44,91,45,57,48,46,57,49,53,53,54,53,44,51,48,46,49,49,51,50,56,53,93,44,91,45,57,48,46,54,52,49,57,57,56,44,51,48,46,49,54,54,52,51,93,44,91,45,57,48,46,54,51,50,56,49,49,44,51,48,46,50,50,49,52,48,57,93,44,91,45,57,48,46,55,49,57,53,51,57,44,51,48,46,49,56,57,57,57,52,93,44,91,45,57,48,46,56,57,49,55,50,56,44,51,48,46,51,52,53,50,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,49,49,52,44,34,98,101,100,115,34,58,49,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,52,52,49,54,44,52,49,46,48,52,52,51,51,56,93,44,91,45,55,55,46,51,54,52,49,56,44,52,48,46,56,52,54,57,51,55,93,44,91,45,55,55,46,51,53,54,54,50,56,44,52,48,46,56,48,55,51,51,52,93,44,91,45,55,54,46,57,52,48,55,48,54,44,52,48,46,56,56,56,48,50,51,93,44,91,45,55,54,46,56,48,48,50,52,50,44,52,48,46,56,56,49,57,57,52,93,44,91,45,55,54,46,56,56,50,50,56,44,52,48,46,57,55,49,51,51,52,93,44,91,45,55,54,46,56,57,54,49,49,52,44,52,49,46,49,51,57,48,55,93,44,91,45,55,54,46,57,55,55,57,51,57,44,52,49,46,48,56,55,56,56,51,93,44,91,45,55,55,46,49,52,52,49,49,49,44,52,49,46,48,54,56,56,52,93,44,91,45,55,55,46,49,52,52,49,54,44,52,49,46,48,52,52,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,104,101,115,116,101,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,57,52,52,55,44,34,98,101,100,115,34,58,52,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,44,91,45,55,55,46,56,53,53,49,52,56,44,51,55,46,52,49,56,51,54,51,93,44,91,45,55,55,46,56,55,55,53,53,54,44,51,55,46,51,54,54,50,52,55,93,44,91,45,55,55,46,55,53,56,54,50,44,51,55,46,50,54,56,55,49,55,93,44,91,45,55,55,46,54,53,48,54,49,44,51,55,46,50,54,53,49,49,50,93,44,91,45,55,55,46,52,52,55,52,48,56,44,51,55,46,50,50,51,48,54,54,93,44,91,45,55,55,46,52,49,54,53,48,49,44,51,55,46,50,51,51,50,48,56,93,44,91,45,55,55,46,52,49,52,52,48,54,44,51,55,46,50,54,48,57,52,57,93,44,91,45,55,55,46,51,56,56,57,49,55,44,51,55,46,50,56,55,51,52,57,93,44,91,45,55,55,46,51,55,57,49,57,51,44,51,55,46,50,54,55,53,56,93,44,91,45,55,55,46,51,56,50,53,50,49,44,51,55,46,50,52,50,56,51,55,93,44,91,45,55,55,46,52,48,51,54,55,49,44,51,55,46,50,51,55,51,52,54,93,44,91,45,55,55,46,51,56,51,56,53,54,44,51,55,46,50,51,56,57,48,54,93,44,91,45,55,55,46,51,55,54,55,56,53,44,51,55,46,50,52,52,56,52,57,93,44,91,45,55,55,46,51,51,53,54,54,54,44,51,55,46,51,49,51,48,51,57,93,44,91,45,55,55,46,50,56,52,48,49,57,44,51,55,46,51,49,51,48,49,50,93,44,91,45,55,55,46,50,55,48,54,55,53,44,51,55,46,51,50,48,55,53,54,93,44,91,45,55,55,46,50,52,57,54,54,53,44,51,55,46,51,56,50,93,44,91,45,55,55,46,51,52,57,50,51,53,44,51,55,46,51,55,56,52,54,54,93,44,91,45,55,55,46,52,50,48,56,55,53,44,51,55,46,52,52,55,49,48,49,93,44,91,45,55,55,46,53,57,53,52,54,50,44,51,55,46,53,53,53,55,53,93,44,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,99,97,100,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,53,54,56,44,34,98,101,100,115,34,58,49,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,51,49,57,56,55,44,51,48,46,52,56,49,49,52,55,93,44,91,45,57,50,46,54,50,53,52,56,52,44,51,48,46,48,57,50,51,51,93,44,91,45,57,50,46,53,51,52,54,51,56,44,51,48,46,49,48,55,56,53,50,93,44,91,45,57,50,46,52,50,54,48,51,57,44,51,48,46,48,52,57,51,54,57,93,44,91,45,57,50,46,50,56,52,54,55,53,44,51,48,46,49,52,55,52,52,51,93,44,91,45,57,50,46,49,52,50,49,56,52,44,51,48,46,50,57,56,56,49,55,93,44,91,45,57,50,46,49,55,54,52,52,52,44,51,48,46,52,51,54,56,53,50,93,44,91,45,57,50,46,50,52,52,55,57,53,44,51,48,46,52,56,48,49,57,51,93,44,91,45,57,50,46,52,57,51,50,53,57,44,51,48,46,52,56,48,52,57,57,93,44,91,45,57,50,46,54,51,49,57,56,55,44,51,48,46,52,56,49,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,49,54,52,44,34,98,101,100,115,34,58,50,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,51,53,52,44,52,49,46,56,52,57,53,54,51,93,44,91,45,56,48,46,53,49,57,50,50,53,44,52,49,46,52,57,57,57,50,52,93,44,91,45,56,48,46,53,49,57,50,49,55,44,52,49,46,52,56,57,48,49,51,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,52,57,48,48,52,57,93,44,91,45,55,57,46,56,50,56,56,55,54,44,52,49,46,54,50,50,48,53,55,93,44,91,45,55,57,46,54,49,50,56,55,51,44,52,49,46,54,50,51,56,53,56,93,44,91,45,55,57,46,54,49,50,48,55,50,44,52,49,46,56,53,48,48,53,54,93,44,91,45,56,48,46,53,49,57,51,53,52,44,52,49,46,56,52,57,53,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,84,114,105,112,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,51,48,56,52,53,44,52,51,46,55,49,51,56,53,54,93,44,91,45,49,48,48,46,50,49,52,50,50,49,44,52,51,46,51,57,48,51,50,49,93,44,91,45,49,48,48,46,49,57,56,52,49,51,44,52,50,46,57,57,56,54,55,52,93,44,91,45,57,57,46,53,51,52,48,52,57,44,52,50,46,57,57,56,48,51,51,93,44,91,45,57,57,46,53,51,52,52,56,49,44,52,51,46,52,57,57,56,48,49,93,44,91,45,57,57,46,54,50,51,53,55,56,44,52,51,46,52,57,57,56,53,57,93,44,91,45,57,57,46,54,50,51,53,56,55,44,52,51,46,55,52,50,52,49,52,93,44,91,45,57,57,46,56,51,55,56,50,53,44,52,51,46,54,56,57,48,55,49,93,44,91,45,49,48,48,46,50,51,48,56,52,53,44,52,51,46,55,49,51,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,117,116,104,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,56,48,51,52,44,52,49,46,56,54,50,57,57,57,93,44,91,45,57,52,46,54,50,56,55,50,52,44,52,49,46,56,54,50,55,54,51,93,44,91,45,57,52,46,55,52,52,56,55,54,44,52,49,46,56,54,50,51,57,52,93,44,91,45,57,52,46,55,52,52,50,48,52,44,52,49,46,54,48,50,49,56,53,93,44,91,45,57,52,46,55,48,48,54,50,57,44,52,49,46,53,48,52,49,52,56,93,44,91,45,57,52,46,50,52,49,53,57,51,44,52,49,46,53,48,51,54,55,57,93,44,91,45,57,52,46,50,56,48,48,53,55,44,52,49,46,54,48,49,51,49,50,93,44,91,45,57,52,46,50,56,48,51,52,44,52,49,46,56,54,50,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,52,54,48,52,51,44,52,49,46,53,49,48,55,52,57,93,44,91,45,57,49,46,57,52,53,53,55,49,44,52,49,46,49,54,51,53,55,56,93,44,91,45,57,49,46,55,49,54,48,52,50,44,52,49,46,49,54,50,56,48,56,93,44,91,45,57,49,46,52,56,53,55,49,55,44,52,49,46,49,54,50,52,48,53,93,44,91,45,57,49,46,52,56,51,57,57,53,44,52,49,46,52,50,51,56,52,56,93,44,91,45,57,49,46,53,50,50,52,56,44,52,49,46,53,49,49,48,51,53,93,44,91,45,57,49,46,56,50,57,50,51,49,44,52,49,46,53,49,49,52,53,55,93,44,91,45,57,49,46,57,52,54,48,52,51,44,52,49,46,53,49,48,55,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,83,97,110,98,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,51,49,57,49,44,52,52,46,49,57,54,54,56,55,93,44,91,45,57,56,46,51,51,49,53,48,56,44,52,51,46,57,51,55,55,48,56,93,44,91,45,57,56,46,51,50,53,50,52,50,44,52,51,46,56,53,49,48,53,56,93,44,91,45,57,55,46,57,54,55,50,55,57,44,52,51,46,56,53,48,54,56,54,93,44,91,45,57,55,46,56,53,49,49,49,44,52,51,46,56,52,57,56,53,55,93,44,91,45,57,55,46,56,52,57,52,57,50,44,52,52,46,49,57,53,50,51,53,93,44,91,45,57,55,46,56,53,51,54,54,44,52,52,46,49,57,53,50,51,51,93,44,91,45,57,56,46,51,51,49,57,49,44,52,52,46,49,57,54,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,114,97,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,55,51,51,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,57,54,48,49,52,44,51,53,46,51,55,55,55,53,51,93,44,91,45,57,56,46,48,57,51,49,50,55,44,51,52,46,56,53,52,57,56,56,93,44,91,45,57,56,46,48,56,57,48,57,55,44,51,52,46,54,56,49,49,54,51,93,44,91,45,57,55,46,54,54,56,53,49,50,44,51,52,46,54,56,49,51,52,93,44,91,45,57,55,46,54,54,56,48,57,57,44,51,52,46,56,53,53,49,54,52,93,44,91,45,57,55,46,54,55,49,52,49,52,44,51,53,46,51,51,53,57,52,54,93,44,91,45,57,55,46,57,53,53,49,50,52,44,51,53,46,51,52,54,48,52,56,93,44,91,45,57,56,46,48,57,54,48,49,52,44,51,53,46,51,55,55,55,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,75,97,110,97,119,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,55,49,48,44,34,98,101,100,115,34,58,49,51,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,49,53,49,57,55,44,51,56,46,51,50,53,53,57,55,93,44,91,45,56,49,46,56,49,56,50,51,52,44,51,56,46,51,49,54,55,53,49,93,44,91,45,56,49,46,56,51,51,52,55,44,51,56,46,50,48,57,53,55,93,44,91,45,56,49,46,54,52,56,53,51,55,44,51,56,46,49,56,53,48,51,54,93,44,91,45,56,49,46,52,55,56,49,50,50,44,51,56,46,48,54,48,49,51,56,93,44,91,45,56,49,46,52,53,54,54,51,50,44,51,55,46,57,56,55,51,48,55,93,44,91,45,56,49,46,51,56,48,56,50,57,44,51,55,46,57,54,57,49,48,57,93,44,91,45,56,49,46,51,51,49,53,48,51,44,51,56,46,49,54,55,53,55,56,93,44,91,45,56,49,46,50,51,49,54,51,54,44,51,56,46,50,54,51,53,49,52,93,44,91,45,56,49,46,50,51,49,52,51,52,44,51,56,46,50,54,51,55,49,54,93,44,91,45,56,49,46,50,56,51,56,55,50,44,51,56,46,52,55,50,48,50,57,93,44,91,45,56,49,46,49,57,52,49,49,51,44,51,56,46,53,50,55,54,51,52,93,44,91,45,56,49,46,52,54,53,51,55,50,44,51,56,46,53,52,57,56,57,56,93,44,91,45,56,49,46,53,50,50,49,54,54,44,51,56,46,54,49,50,55,52,54,93,44,91,45,56,49,46,54,51,50,56,51,54,44,51,56,46,53,53,52,51,55,93,44,91,45,56,49,46,54,57,54,51,52,56,44,51,56,46,54,50,54,52,50,55,93,44,91,45,56,49,46,55,53,48,53,52,55,44,51,56,46,53,57,49,48,49,52,93,44,91,45,56,49,46,55,50,53,56,48,49,44,51,56,46,52,54,54,54,50,93,44,91,45,56,49,46,57,48,48,50,50,50,44,51,56,46,51,57,56,53,55,50,93,44,91,45,56,49,46,57,49,53,49,57,55,44,51,56,46,51,50,53,53,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,114,111,105,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,57,49,55,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,53,56,48,48,56,44,52,53,46,50,48,57,53,54,54,93,44,91,45,57,50,46,55,54,57,53,48,49,44,52,52,46,56,54,50,48,48,49,93,44,91,45,57,50,46,49,51,54,51,52,56,44,52,52,46,56,53,55,56,52,56,93,44,91,45,57,50,46,49,53,54,52,54,53,44,52,53,46,50,48,57,53,53,52,93,44,91,45,57,50,46,55,53,56,48,48,56,44,52,53,46,50,48,57,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,86,101,110,97,110,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,51,55,54,44,34,98,101,100,115,34,58,49,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,52,57,48,48,52,57,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,49,55,49,56,54,49,93,44,91,45,55,57,46,54,57,52,57,56,52,44,52,49,46,49,55,50,56,54,53,93,44,91,45,55,57,46,52,55,55,56,50,50,44,52,49,46,51,56,54,52,55,57,93,44,91,45,55,57,46,53,49,50,48,55,44,52,49,46,54,50,52,53,53,57,93,44,91,45,55,57,46,54,49,50,56,55,51,44,52,49,46,54,50,51,56,53,56,93,44,91,45,55,57,46,56,50,56,56,55,54,44,52,49,46,54,50,50,48,53,55,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,52,57,48,48,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,83,117,109,109,105,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,56,49,48,44,34,98,101,100,115,34,58,50,53,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,56,52,57,53,44,52,49,46,50,55,55,49,52,54,93,44,91,45,56,49,46,54,56,56,52,57,49,44,52,48,46,57,56,56,53,57,93,44,91,45,56,49,46,54,52,55,55,51,53,44,52,48,46,57,49,52,48,49,54,93,44,91,45,56,49,46,52,50,48,51,54,51,44,52,48,46,57,48,54,53,48,50,93,44,91,45,56,49,46,51,57,51,50,52,57,44,52,48,46,57,56,56,53,51,49,93,44,91,45,56,49,46,51,57,49,54,57,52,44,52,49,46,51,52,56,50,55,50,93,44,91,45,56,49,46,53,57,56,48,53,50,44,52,49,46,51,53,49,49,53,55,93,44,91,45,56,49,46,54,56,52,57,53,44,52,49,46,50,55,55,49,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,71,108,121,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,57,55,52,44,34,98,101,100,115,34,58,52,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,50,52,50,57,44,51,49,46,52,53,50,57,56,50,93,44,91,45,56,49,46,55,51,49,54,57,52,44,51,49,46,51,51,48,48,52,56,93,44,91,45,56,49,46,55,54,54,51,50,50,44,51,49,46,49,54,57,53,57,53,93,44,91,45,56,49,46,53,54,53,49,49,54,44,51,49,46,48,57,49,57,52,93,44,91,45,56,49,46,52,50,51,55,55,53,44,51,48,46,57,57,48,56,57,50,93,44,91,45,56,49,46,51,48,54,52,51,53,44,51,48,46,57,57,48,54,52,52,93,44,91,45,56,49,46,50,57,50,49,52,53,44,51,49,46,49,53,53,52,49,53,93,44,91,45,56,49,46,50,51,52,51,51,55,44,51,49,46,49,55,48,50,53,56,93,44,91,45,56,49,46,49,56,51,55,49,54,44,51,49,46,50,57,52,50,56,51,93,44,91,45,56,49,46,52,51,53,56,55,52,44,51,49,46,51,49,51,50,54,51,93,44,91,45,56,49,46,54,50,52,50,57,44,51,49,46,52,53,50,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,55,57,34,44,34,78,65,77,69,34,58,34,87,101,98,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,48,53,51,44,34,98,101,100,115,34,58,53,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,49,50,49,56,57,44,50,56,46,49,57,54,56,51,55,93,44,91,45,49,48,48,46,48,56,54,56,57,56,44,50,56,46,49,52,54,55,56,51,93,44,91,45,57,57,46,57,56,57,55,54,50,44,50,55,46,57,57,50,56,55,54,93,44,91,45,57,57,46,56,57,51,52,53,54,44,50,55,46,56,57,57,50,48,56,93,44,91,45,57,57,46,56,55,50,50,57,52,44,50,55,46,55,57,53,50,53,56,93,44,91,45,57,57,46,55,50,49,53,49,57,44,50,55,46,54,54,54,49,53,53,93,44,91,45,57,57,46,54,48,51,53,51,51,44,50,55,46,54,52,49,57,57,50,93,44,91,45,57,57,46,53,49,49,48,52,57,44,50,55,46,53,54,52,53,48,55,93,44,91,45,57,57,46,52,55,57,50,53,49,44,50,55,46,52,55,56,54,51,53,93,44,91,45,57,57,46,53,48,52,51,57,55,44,50,55,46,51,51,57,56,57,54,93,44,91,45,57,57,46,52,53,51,55,57,52,44,50,55,46,50,54,53,48,53,56,93,44,91,45,57,56,46,57,53,52,54,54,57,44,50,55,46,50,54,57,51,57,55,93,44,91,45,57,56,46,55,57,56,48,56,55,44,50,55,46,50,54,56,48,49,50,93,44,91,45,57,56,46,55,57,56,51,50,51,44,50,55,46,51,53,52,48,50,57,93,44,91,45,57,56,46,56,48,51,51,50,53,44,50,56,46,48,53,55,52,56,93,44,91,45,57,57,46,51,56,56,57,52,54,44,50,56,46,48,51,48,52,49,57,93,44,91,45,57,57,46,51,57,52,49,55,55,44,50,56,46,50,48,52,54,50,55,93,44,91,45,49,48,48,46,49,49,51,55,49,57,44,50,56,46,49,57,55,56,49,57,93,44,91,45,49,48,48,46,50,49,50,49,56,57,44,50,56,46,49,57,54,56,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,51,51,56,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,49,56,50,53,53,57,44,51,53,46,53,48,52,49,53,49,93,44,91,45,56,48,46,48,53,49,55,51,57,44,51,53,46,51,55,50,53,56,53,93,44,91,45,56,48,46,48,57,56,49,56,53,44,51,53,46,50,53,53,49,55,51,93,44,91,45,56,48,46,48,55,53,51,54,53,44,51,53,46,49,52,51,48,56,49,93,44,91,45,55,57,46,56,53,49,50,54,56,44,51,53,46,49,56,51,56,53,53,93,44,91,45,55,57,46,54,49,52,51,48,52,44,51,53,46,49,54,51,54,55,57,93,44,91,45,55,57,46,54,57,55,55,55,51,44,51,53,46,50,53,49,51,55,57,93,44,91,45,55,57,46,55,54,55,57,53,55,44,51,53,46,53,49,49,52,56,52,93,44,91,45,56,48,46,48,54,54,56,52,50,44,51,53,46,53,48,53,54,54,49,93,44,91,45,56,48,46,49,56,50,53,53,57,44,51,53,46,53,48,52,49,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,114,111,111,115,116,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,50,54,57,44,34,98,101,100,115,34,58,50,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,56,48,53,54,56,57,44,52,53,46,54,56,48,48,53,49,93,44,91,45,54,55,46,55,56,49,50,52,56,44,52,53,46,57,52,51,52,53,93,44,91,45,54,55,46,55,57,48,49,57,54,44,52,55,46,48,54,55,50,50,93,44,91,45,54,55,46,57,53,49,57,56,54,44,52,55,46,49,57,52,54,50,56,93,44,91,45,54,56,46,50,51,52,53,49,51,44,52,55,46,51,53,53,50,57,53,93,44,91,45,54,56,46,51,56,51,57,55,50,44,52,55,46,51,48,49,49,55,49,93,44,91,45,54,56,46,53,56,48,48,53,44,52,55,46,50,56,55,49,49,53,93,44,91,45,54,56,46,57,48,52,57,56,49,44,52,55,46,49,56,48,52,51,54,93,44,91,45,54,57,46,48,52,48,57,49,56,44,52,55,46,50,52,52,57,55,51,93,44,91,45,54,57,46,48,51,53,52,56,49,44,52,55,46,52,49,52,57,56,53,93,44,91,45,54,57,46,50,50,52,52,54,49,44,52,55,46,52,53,57,56,51,51,93,44,91,45,54,57,46,57,57,55,49,49,49,44,52,54,46,54,57,53,53,50,93,44,91,45,55,48,46,48,50,51,49,56,55,44,52,54,46,53,55,51,52,56,55,93,44,91,45,54,57,46,55,50,49,49,48,57,44,52,54,46,53,55,52,48,53,51,93,44,91,45,54,56,46,56,50,49,52,49,52,44,52,54,46,53,55,50,53,49,93,44,91,45,54,56,46,56,49,57,52,48,49,44,52,54,46,51,57,53,55,56,50,93,44,91,45,54,56,46,52,51,54,52,52,51,44,52,54,46,51,56,50,49,50,49,93,44,91,45,54,56,46,52,50,54,49,54,57,44,52,53,46,56,55,48,56,50,57,93,44,91,45,54,56,46,52,51,51,48,50,56,44,52,53,46,53,55,56,52,56,50,93,44,91,45,54,56,46,48,52,56,48,49,50,44,52,53,46,54,51,57,56,57,55,93,44,91,45,54,55,46,56,48,53,54,56,57,44,52,53,46,54,56,48,48,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,32,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,57,53,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,55,52,53,56,54,44,51,49,46,55,54,49,54,53,53,93,44,91,45,56,57,46,57,53,56,57,52,44,51,49,46,51,57,48,52,56,57,93,44,91,45,56,57,46,56,50,52,50,51,54,44,51,49,46,52,51,52,48,57,51,93,44,91,45,56,57,46,54,53,52,50,49,50,44,51,49,46,52,51,51,56,48,53,93,44,91,45,56,57,46,53,56,54,56,49,57,44,51,49,46,52,51,51,54,56,56,93,44,91,45,56,57,46,54,48,50,56,56,57,44,51,49,46,53,51,56,56,51,54,93,44,91,45,56,57,46,55,53,53,54,49,52,44,51,49,46,54,48,57,55,53,49,93,44,91,45,56,57,46,55,53,53,49,48,51,44,51,49,46,55,55,52,54,53,52,93,44,91,45,56,57,46,57,55,52,53,56,54,44,51,49,46,55,54,49,54,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,48,56,55,48,49,44,51,56,46,54,56,56,49,48,49,93,44,91,45,56,54,46,51,48,56,54,55,52,44,51,56,46,52,50,50,56,55,53,93,44,91,45,56,54,46,50,53,53,48,52,53,44,51,56,46,52,50,50,54,56,53,93,44,91,45,56,54,46,48,51,50,56,49,55,44,51,56,46,52,49,55,56,57,56,93,44,91,45,56,53,46,57,57,52,54,50,44,51,56,46,52,49,56,51,52,53,93,44,91,45,56,53,46,57,57,51,51,49,55,44,51,56,46,52,56,56,53,52,93,44,91,45,56,53,46,56,52,55,56,57,51,44,51,56,46,53,54,49,50,54,57,93,44,91,45,56,53,46,56,56,56,51,51,52,44,51,56,46,55,51,52,52,52,51,93,44,91,45,56,54,46,48,57,49,55,48,53,44,51,56,46,55,56,51,51,57,57,93,44,91,45,56,54,46,50,55,53,50,56,49,44,51,56,46,55,54,51,55,57,53,93,44,91,45,56,54,46,51,48,56,55,48,49,44,51,56,46,54,56,56,49,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,66,108,97,110,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,57,49,54,55,44,51,48,46,52,57,57,56,55,53,93,44,91,45,57,56,46,53,56,55,56,57,55,44,51,48,46,49,51,56,57,53,52,93,44,91,45,57,56,46,52,49,52,48,49,56,44,50,57,46,57,51,55,53,53,55,93,44,91,45,57,56,46,50,57,55,54,44,51,48,46,48,51,55,57,57,52,93,44,91,45,57,56,46,49,55,50,57,55,55,44,51,48,46,51,53,54,51,49,50,93,44,91,45,57,56,46,49,50,53,53,53,54,44,51,48,46,52,50,54,49,56,54,93,44,91,45,57,56,46,51,53,49,48,52,49,44,51,48,46,52,56,54,48,57,54,93,44,91,45,57,56,46,53,57,49,54,55,44,51,48,46,52,57,57,56,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,66,114,117,110,115,119,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,50,55,52,49,49,44,51,54,46,55,55,55,56,53,56,93,44,91,45,55,56,46,48,52,54,50,55,49,44,51,54,46,53,52,51,53,53,49,93,44,91,45,55,55,46,56,57,57,55,55,51,44,51,54,46,53,52,52,53,57,54,93,44,91,45,55,55,46,55,54,55,49,53,44,51,54,46,53,52,53,51,55,52,93,44,91,45,55,55,46,54,53,53,56,52,49,44,51,54,46,55,49,51,53,51,57,93,44,91,45,55,55,46,54,53,56,48,51,54,44,51,54,46,56,57,52,53,49,52,93,44,91,45,55,55,46,55,54,53,53,52,44,51,54,46,57,55,52,54,53,53,93,44,91,45,55,55,46,56,56,57,56,49,51,44,51,54,46,57,56,56,56,49,56,93,44,91,45,55,56,46,48,48,51,54,51,57,44,51,55,46,48,50,50,55,53,54,93,44,91,45,55,56,46,48,50,55,52,49,49,44,51,54,46,55,55,55,56,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,68,121,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,53,55,54,44,34,98,101,100,115,34,58,50,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,56,50,57,55,49,44,51,54,46,50,49,50,54,53,57,93,44,91,45,56,57,46,54,50,57,52,53,51,44,51,54,46,49,56,53,51,56,50,93,44,91,45,56,57,46,55,51,51,48,57,53,44,51,54,46,48,48,48,54,48,56,93,44,91,45,56,57,46,54,52,52,56,51,56,44,51,53,46,57,48,52,51,53,49,93,44,91,45,56,57,46,52,48,54,57,54,53,44,51,53,46,57,52,54,53,57,57,93,44,91,45,56,57,46,51,52,50,56,50,57,44,51,53,46,56,56,48,57,51,52,93,44,91,45,56,57,46,50,56,48,49,56,56,44,51,53,46,56,56,54,52,49,54,93,44,91,45,56,57,46,49,56,56,56,52,52,44,51,53,46,57,57,57,55,54,93,44,91,45,56,57,46,49,53,52,52,54,52,44,51,54,46,50,48,52,54,55,56,93,44,91,45,56,57,46,52,56,50,57,55,49,44,51,54,46,50,49,50,54,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,105,98,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,49,55,53,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,56,56,56,52,52,44,51,53,46,57,57,57,55,54,93,44,91,45,56,57,46,49,48,57,54,48,50,44,51,53,46,56,54,50,48,57,53,93,44,91,45,56,56,46,57,49,54,49,56,49,44,51,53,46,55,57,55,51,48,55,93,44,91,45,56,56,46,55,48,54,56,49,49,44,51,53,46,55,57,49,48,55,53,93,44,91,45,56,56,46,54,57,50,55,48,57,44,51,54,46,48,54,50,55,52,54,93,44,91,45,56,56,46,56,51,53,52,53,55,44,51,54,46,49,50,49,52,54,49,93,44,91,45,56,56,46,57,53,57,56,51,57,44,51,54,46,50,50,50,56,51,52,93,44,91,45,56,57,46,49,53,52,52,54,52,44,51,54,46,50,48,52,54,55,56,93,44,91,45,56,57,46,49,56,56,56,52,52,44,51,53,46,57,57,57,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,80,114,105,110,99,101,32,71,101,111,114,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,57,52,44,34,98,101,100,115,34,58,52,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,55,54,55,56,53,44,51,55,46,50,52,52,56,52,57,93,44,91,45,55,55,46,51,57,57,50,48,51,44,51,55,46,49,55,48,56,53,93,44,91,45,55,55,46,51,57,56,52,57,56,44,51,54,46,57,57,50,57,56,53,93,44,91,45,55,55,46,49,53,53,52,49,53,44,51,55,46,49,49,50,48,51,52,93,44,91,45,55,54,46,57,55,50,52,51,57,44,51,55,46,50,52,56,53,48,49,93,44,91,45,55,55,46,50,55,48,54,55,53,44,51,55,46,51,50,48,55,53,54,93,44,91,45,55,55,46,50,56,52,48,49,57,44,51,55,46,51,49,51,48,49,50,93,44,91,45,55,55,46,50,55,51,54,49,52,44,51,55,46,50,55,56,51,48,56,93,44,91,45,55,55,46,51,50,53,51,50,44,51,55,46,50,54,48,57,51,50,93,44,91,45,55,55,46,51,51,53,54,54,54,44,51,55,46,51,49,51,48,51,57,93,44,91,45,55,55,46,51,55,54,55,56,53,44,51,55,46,50,52,52,56,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,56,48,57,56,49,54,44,51,54,46,49,52,57,53,54,55,93,44,91,45,57,49,46,49,49,57,54,50,53,44,51,54,46,49,53,51,54,55,49,93,44,91,45,57,49,46,50,53,56,57,50,44,51,54,46,50,53,55,56,56,93,44,91,45,57,49,46,51,52,57,56,51,52,44,51,54,46,50,51,48,57,54,55,93,44,91,45,57,49,46,51,53,55,50,51,44,51,53,46,56,57,48,54,50,49,93,44,91,45,57,49,46,49,57,56,53,53,54,44,51,53,46,56,57,48,48,50,52,93,44,91,45,57,49,46,48,51,50,52,57,57,44,51,53,46,56,56,53,48,55,93,44,91,45,57,48,46,56,55,50,55,56,53,44,51,53,46,56,56,48,56,55,93,44,91,45,57,48,46,56,53,50,48,54,52,44,51,53,46,57,54,56,48,57,50,93,44,91,45,57,48,46,56,48,57,56,49,54,44,51,54,46,49,52,57,53,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,69,100,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,57,55,50,48,50,44,52,55,46,56,52,54,56,51,52,93,44,91,45,57,57,46,50,54,53,55,57,56,44,52,55,46,53,56,55,54,93,44,91,45,57,56,46,53,48,48,48,56,53,44,52,55,46,53,56,55,50,50,56,93,44,91,45,57,56,46,53,48,48,49,56,49,44,52,55,46,54,55,50,52,49,51,93,44,91,45,57,56,46,53,50,53,53,49,54,44,52,55,46,56,52,54,50,55,54,93,44,91,45,57,57,46,50,57,55,50,48,50,44,52,55,46,56,52,54,56,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,80,105,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,57,56,52,48,44,34,98,101,100,115,34,58,50,52,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,56,50,48,53,55,54,44,52,55,46,49,57,52,50,50,93,44,91,45,49,50,50,46,54,51,56,50,49,49,44,52,54,46,57,55,56,49,51,57,93,44,91,45,49,50,50,46,52,57,48,56,56,56,44,52,54,46,56,54,55,52,53,50,93,44,91,45,49,50,50,46,50,48,51,49,49,53,44,52,54,46,55,54,51,48,54,49,93,44,91,45,49,50,49,46,56,52,49,56,57,44,52,54,46,55,50,56,52,53,53,93,44,91,45,49,50,49,46,55,53,56,53,57,51,44,52,54,46,55,56,51,55,57,49,93,44,91,45,49,50,49,46,52,53,53,50,49,56,44,52,54,46,55,56,51,55,57,55,93,44,91,45,49,50,49,46,52,57,55,51,52,53,44,52,54,46,56,54,50,56,54,54,93,44,91,45,49,50,49,46,51,55,57,57,54,49,44,52,55,46,48,56,55,50,52,56,93,44,91,45,49,50,49,46,55,57,54,52,54,52,44,52,55,46,49,55,51,48,53,57,93,44,91,45,49,50,49,46,57,50,56,49,57,53,44,52,55,46,49,52,55,51,53,56,93,44,91,45,49,50,50,46,48,57,52,55,54,52,44,52,55,46,49,57,52,57,55,55,93,44,91,45,49,50,50,46,49,52,51,57,55,54,44,52,55,46,50,53,55,53,50,54,93,44,91,45,49,50,50,46,51,51,52,57,49,52,44,52,55,46,50,53,55,51,54,54,93,44,91,45,49,50,50,46,53,51,54,57,57,51,44,52,55,46,52,48,51,51,53,53,93,44,91,45,49,50,50,46,56,48,49,49,57,57,44,52,55,46,52,48,51,53,55,56,93,44,91,45,49,50,50,46,56,53,49,49,56,55,44,52,55,46,50,52,57,55,55,52,93,44,91,45,49,50,50,46,56,50,48,53,55,54,44,52,55,46,49,57,52,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,50,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,55,49,52,54,52,50,44,52,51,46,49,57,57,55,56,51,93,44,91,45,49,49,52,46,51,55,52,57,54,50,44,52,51,46,49,57,57,54,52,93,44,91,45,49,49,52,46,53,57,52,54,48,53,44,52,51,46,49,57,56,51,52,53,93,44,91,45,49,49,52,46,53,57,52,51,55,53,44,52,50,46,56,53,48,57,48,49,93,44,91,45,49,49,52,46,51,54,53,51,54,54,44,52,50,46,56,53,48,55,57,93,44,91,45,49,49,52,46,51,52,53,54,53,57,44,52,50,46,56,48,57,48,53,53,93,44,91,45,49,49,52,46,48,52,57,56,52,57,44,52,50,46,56,48,56,52,52,52,93,44,91,45,49,49,51,46,57,51,49,54,56,55,44,52,50,46,55,54,53,48,50,54,93,44,91,45,49,49,51,46,55,54,51,56,54,50,44,52,50,46,55,54,52,53,48,56,93,44,91,45,49,49,51,46,55,49,52,48,52,52,44,52,50,46,56,52,57,55,51,52,93,44,91,45,49,49,51,46,55,49,52,54,52,50,44,52,51,46,49,57,57,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,76,97,110,99,97,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,56,51,52,55,44,34,98,101,100,115,34,58,49,48,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,54,54,51,51,57,44,52,48,46,49,57,54,54,52,52,93,44,91,45,55,54,46,55,50,49,54,50,44,52,48,46,49,50,48,48,55,93,44,91,45,55,54,46,53,51,52,53,50,52,44,52,48,46,48,53,49,51,52,56,93,44,91,45,55,54,46,52,55,51,53,56,44,51,57,46,57,52,55,51,53,50,93,44,91,45,55,54,46,50,51,57,56,48,53,44,51,57,46,55,50,49,51,51,53,93,44,91,45,55,54,46,50,51,51,50,55,57,44,51,57,46,55,50,49,51,54,55,93,44,91,45,55,54,46,49,51,53,52,56,52,44,51,57,46,55,50,49,49,52,55,93,44,91,45,55,53,46,57,56,54,56,50,51,44,51,57,46,56,57,50,49,57,50,93,44,91,45,55,53,46,57,57,52,54,50,57,44,51,57,46,57,53,50,52,50,57,93,44,91,45,55,53,46,56,55,51,51,55,53,44,52,48,46,49,51,55,49,48,55,93,44,91,45,55,54,46,49,53,49,50,49,53,44,52,48,46,51,49,53,57,55,49,93,44,91,45,55,54,46,51,48,55,53,55,56,44,52,48,46,50,53,53,48,54,54,93,44,91,45,55,54,46,53,54,54,51,51,57,44,52,48,46,49,57,54,54,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,74,117,110,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,49,57,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,48,50,55,56,51,44,52,52,46,50,52,57,52,55,51,93,44,91,45,57,48,46,51,49,50,54,56,44,52,52,46,50,52,56,55,53,93,44,91,45,57,48,46,51,49,50,53,50,50,44,52,52,46,49,53,53,49,57,56,93,44,91,45,57,48,46,51,49,50,49,57,52,44,52,51,46,55,51,49,52,55,57,93,44,91,45,57,48,46,51,49,50,52,48,52,44,52,51,46,54,52,48,57,56,56,93,44,91,45,56,57,46,55,56,53,56,48,57,44,52,51,46,54,52,49,48,52,57,93,44,91,45,56,57,46,55,56,52,57,48,49,44,52,51,46,54,52,49,48,53,49,93,44,91,45,56,57,46,56,54,53,49,51,50,44,52,51,46,55,56,51,52,49,52,93,44,91,45,56,57,46,57,54,49,50,50,49,44,52,51,46,56,54,52,48,50,55,93,44,91,45,56,57,46,57,54,50,54,48,49,44,52,51,46,57,55,57,50,51,54,93,44,91,45,57,48,46,48,50,53,57,53,51,44,52,52,46,48,57,49,55,52,56,93,44,91,45,56,57,46,57,48,50,55,56,51,44,52,52,46,50,52,57,52,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,53,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,51,49,56,51,57,44,51,54,46,53,50,52,54,55,52,93,44,91,45,56,52,46,55,48,48,55,56,53,44,51,54,46,51,55,48,56,50,52,93,44,91,45,56,52,46,53,54,56,55,52,49,44,51,54,46,50,51,55,48,55,55,93,44,91,45,56,52,46,52,52,49,48,51,52,44,51,54,46,49,54,51,52,55,56,93,44,91,45,56,52,46,51,55,50,55,51,49,44,51,54,46,50,49,54,55,55,56,93,44,91,45,56,52,46,51,50,57,57,50,55,44,51,54,46,50,56,53,48,56,54,93,44,91,45,56,52,46,51,52,57,57,51,57,44,51,54,46,52,54,54,50,57,50,93,44,91,45,56,52,46,50,53,57,53,57,51,44,51,54,46,53,49,51,57,56,53,93,44,91,45,56,52,46,50,54,49,51,51,55,44,51,54,46,53,57,49,55,56,52,93,44,91,45,56,52,46,55,55,56,52,53,52,44,51,54,46,54,48,51,50,57,93,44,91,45,56,52,46,55,56,53,52,53,44,51,54,46,54,48,51,52,52,52,93,44,91,45,56,52,46,55,51,49,56,51,57,44,51,54,46,53,50,52,54,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,49,49,57,52,57,44,52,53,46,57,52,51,55,49,50,93,44,91,45,49,48,49,46,57,57,56,55,51,51,44,52,53,46,57,52,52,54,53,51,93,44,91,45,49,48,50,46,48,48,48,54,56,49,44,52,53,46,57,52,52,53,54,51,93,44,91,45,49,48,49,46,57,57,57,55,57,44,52,53,46,52,55,50,52,49,52,93,44,91,45,49,48,49,46,52,55,48,49,57,44,52,53,46,52,55,50,52,49,54,93,44,91,45,49,48,48,46,51,52,49,57,50,52,44,52,53,46,52,55,50,57,48,52,93,44,91,45,49,48,48,46,52,56,54,53,54,49,44,52,53,46,53,51,54,53,50,49,93,44,91,45,49,48,48,46,52,51,48,48,55,57,44,52,53,46,53,57,52,56,50,51,93,44,91,45,49,48,48,46,51,48,57,48,49,51,44,52,53,46,55,48,55,56,52,50,93,44,91,45,49,48,48,46,51,56,55,48,51,54,44,52,53,46,56,54,57,49,52,50,93,44,91,45,49,48,48,46,52,57,57,51,55,49,44,52,53,46,57,52,51,54,53,51,93,44,91,45,49,48,48,46,53,49,49,57,52,57,44,52,53,46,57,52,51,55,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,114,101,103,111,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,48,49,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,51,52,52,56,49,44,52,51,46,52,57,57,56,48,49,93,44,91,45,57,57,46,53,51,52,48,52,57,44,52,50,46,57,57,56,48,51,51,93,44,91,45,57,57,46,50,53,52,52,53,53,44,52,50,46,57,57,56,48,55,52,93,44,91,45,57,56,46,52,57,56,53,53,44,52,50,46,57,57,56,53,53,57,93,44,91,45,57,56,46,56,54,56,55,54,50,44,52,51,46,49,54,50,48,48,57,93,44,91,45,57,56,46,56,57,54,55,56,51,44,52,51,46,50,52,54,57,48,57,93,44,91,45,57,57,46,48,54,57,50,56,53,44,52,51,46,51,50,48,54,56,56,93,44,91,45,57,57,46,49,53,50,56,56,57,44,52,51,46,52,50,54,57,48,56,93,44,91,45,57,57,46,50,57,55,57,57,56,44,52,51,46,52,57,57,54,54,57,93,44,91,45,57,57,46,53,51,52,52,56,49,44,52,51,46,52,57,57,56,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,86,97,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,52,56,50,44,34,98,101,100,115,34,58,49,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,53,54,57,49,51,44,51,54,46,53,52,50,53,52,49,93,44,91,45,55,56,46,53,49,49,50,50,52,44,51,54,46,52,53,52,56,48,56,93,44,91,45,55,56,46,52,57,54,54,49,52,44,51,54,46,49,55,53,49,57,57,93,44,91,45,55,56,46,52,49,50,48,57,53,44,51,54,46,49,54,57,53,57,55,93,44,91,45,55,56,46,51,48,54,57,54,53,44,51,54,46,50,54,54,49,57,49,93,44,91,45,55,56,46,50,55,55,49,54,53,44,51,54,46,51,48,54,49,51,50,93,44,91,45,55,56,46,51,50,51,57,57,49,44,51,54,46,53,52,51,56,50,50,93,44,91,45,55,56,46,52,53,54,57,49,51,44,51,54,46,53,52,50,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,97,108,100,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,57,53,55,56,49,44,51,55,46,49,55,57,54,56,52,93,44,91,45,56,56,46,48,52,50,49,52,50,44,51,55,46,49,55,52,55,53,54,93,44,91,45,56,55,46,56,55,54,57,57,54,44,51,54,46,57,54,48,49,49,54,93,44,91,45,56,55,46,55,51,51,51,54,56,44,51,55,46,48,48,50,49,48,51,93,44,91,45,56,55,46,54,56,48,54,49,55,44,51,55,46,49,52,57,50,51,57,93,44,91,45,56,55,46,55,55,52,54,57,52,44,51,55,46,49,57,56,49,50,55,93,44,91,45,56,55,46,56,49,51,52,49,51,44,51,55,46,51,53,48,54,52,53,93,44,91,45,56,55,46,56,48,49,48,52,54,44,51,55,46,51,55,57,52,52,53,93,44,91,45,56,56,46,48,56,49,48,53,56,44,51,55,46,50,50,51,51,52,55,93,44,91,45,56,56,46,48,57,53,55,56,49,44,51,55,46,49,55,57,54,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,97,114,110,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,55,50,57,51,49,44,51,51,46,52,57,48,52,49,55,93,44,91,45,56,49,46,55,53,55,48,51,53,44,51,51,46,49,57,56,49,52,56,93,44,91,45,56,49,46,55,48,52,54,51,52,44,51,51,46,49,49,54,52,53,93,44,91,45,56,49,46,54,49,52,48,51,51,44,51,51,46,48,57,53,50,53,49,93,44,91,45,56,49,46,53,52,49,56,56,49,44,51,51,46,49,53,56,50,55,57,93,44,91,45,56,49,46,51,54,52,56,53,55,44,51,51,46,49,48,56,48,54,49,93,44,91,45,56,49,46,49,57,51,48,57,57,44,51,51,46,49,49,56,54,54,56,93,44,91,45,56,49,46,50,50,55,55,55,56,44,51,51,46,49,54,50,54,50,50,93,44,91,45,56,49,46,50,50,50,54,55,51,44,51,51,46,52,52,93,44,91,45,56,49,46,51,55,50,57,51,49,44,51,51,46,52,57,48,52,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,101,99,97,116,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,56,51,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,55,57,49,55,55,44,51,53,46,56,49,54,55,56,53,93,44,91,45,56,56,46,49,57,48,52,54,53,44,51,53,46,54,48,57,48,56,56,93,44,91,45,56,56,46,50,52,49,54,55,55,44,51,53,46,52,50,51,50,54,51,93,44,91,45,56,56,46,49,56,57,54,54,49,44,51,53,46,51,56,52,51,48,51,93,44,91,45,56,56,46,48,50,52,55,52,49,44,51,53,46,51,57,50,51,48,55,93,44,91,45,56,56,46,48,48,55,55,48,57,44,51,53,46,52,50,51,51,56,49,93,44,91,45,56,55,46,57,55,52,54,51,44,51,53,46,53,50,49,48,50,53,93,44,91,45,56,56,46,48,51,53,56,51,55,44,51,53,46,54,50,49,56,51,57,93,44,91,45,56,56,46,48,51,52,55,56,56,44,51,53,46,55,49,55,50,54,49,93,44,91,45,56,55,46,57,55,48,55,51,56,44,51,53,46,56,49,53,55,48,53,93,44,91,45,56,56,46,49,55,55,56,53,57,44,51,53,46,56,52,53,56,52,49,93,44,91,45,56,56,46,49,55,57,49,55,55,44,51,53,46,56,49,54,55,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,108,97,99,107,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,50,57,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,52,55,48,49,52,44,52,48,46,53,54,54,57,50,57,93,44,91,45,56,53,46,52,52,52,51,51,44,52,48,46,51,55,57,49,52,93,44,91,45,56,53,46,50,49,57,57,48,49,44,52,48,46,51,55,57,48,51,52,93,44,91,45,56,53,46,50,48,49,49,52,54,44,52,48,46,53,54,55,50,52,50,93,44,91,45,56,53,46,52,52,55,48,49,52,44,52,48,46,53,54,54,57,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,69,116,111,119,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,57,51,57,44,34,98,101,100,115,34,58,55,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,48,54,48,56,54,44,51,52,46,50,48,48,55,53,54,93,44,91,45,56,54,46,51,48,51,53,49,54,44,51,52,46,48,57,57,48,55,51,93,44,91,45,56,54,46,51,50,53,54,50,50,44,51,51,46,57,52,48,49,52,55,93,44,91,45,56,54,46,50,49,53,53,50,53,44,51,51,46,57,56,55,52,50,49,93,44,91,45,56,54,46,48,54,53,50,55,50,44,51,51,46,56,52,50,49,57,56,93,44,91,45,56,53,46,56,56,49,55,54,56,44,51,51,46,57,53,48,50,57,57,93,44,91,45,56,53,46,55,51,56,57,55,53,44,51,51,46,57,54,56,52,54,93,44,91,45,56,53,46,56,52,51,54,49,55,44,51,52,46,50,48,48,48,48,54,93,44,91,45,56,54,46,49,48,54,48,56,54,44,51,52,46,50,48,48,55,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,51,55,52,57,54,50,44,52,51,46,49,57,57,54,52,93,44,91,45,49,49,52,46,51,57,52,54,48,54,44,52,51,46,51,50,54,52,54,55,93,44,91,45,49,49,52,46,53,51,52,52,56,56,44,52,51,46,51,51,51,51,56,51,93,44,91,45,49,49,52,46,53,49,50,52,51,56,44,52,51,46,52,54,48,52,53,52,93,44,91,45,49,49,52,46,54,56,51,49,52,44,52,51,46,53,57,51,51,54,55,93,44,91,45,49,49,52,46,55,48,50,48,53,44,52,51,46,56,48,53,52,49,51,93,44,91,45,49,49,52,46,57,56,57,50,53,56,44,52,51,46,56,53,56,53,54,51,93,44,91,45,49,49,53,46,48,56,51,48,56,57,44,52,51,46,54,48,52,50,57,50,93,44,91,45,49,49,53,46,48,56,54,49,53,53,44,52,51,46,49,57,56,48,54,52,93,44,91,45,49,49,52,46,53,57,52,54,48,53,44,52,51,46,49,57,56,51,52,53,93,44,91,45,49,49,52,46,51,55,52,57,54,50,44,52,51,46,49,57,57,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,82,101,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,49,48,49,44,34,98,101,100,115,34,58,50,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,50,50,49,51,54,44,51,56,46,49,55,51,55,49,51,93,44,91,45,57,56,46,52,55,50,55,57,52,44,51,56,46,49,55,50,55,53,55,93,44,91,45,57,56,46,52,55,50,50,53,55,44,51,55,46,56,50,52,52,57,55,93,44,91,45,57,56,46,52,54,52,56,48,52,44,51,55,46,55,51,50,54,55,53,93,44,91,45,57,55,46,56,48,55,56,50,51,44,51,55,46,55,51,51,56,53,53,93,44,91,45,57,55,46,54,57,56,54,57,50,44,51,55,46,55,51,53,48,53,54,93,44,91,45,57,55,46,55,48,49,57,54,57,44,51,55,46,57,49,49,51,50,53,93,44,91,45,57,55,46,55,48,49,56,52,49,44,51,56,46,49,55,51,56,49,52,93,44,91,45,57,55,46,57,50,50,49,51,54,44,51,56,46,49,55,51,55,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,97,117,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,55,55,54,44,34,98,101,100,115,34,58,50,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,51,57,50,51,50,44,51,53,46,54,53,57,49,49,93,44,91,45,56,55,46,50,57,52,53,51,52,44,51,53,46,52,52,52,54,55,54,93,44,91,45,56,55,46,50,48,54,53,55,56,44,51,53,46,52,51,51,50,48,55,93,44,91,45,56,55,46,49,50,48,56,56,51,44,51,53,46,52,53,53,54,54,93,44,91,45,56,54,46,57,54,48,56,48,52,44,51,53,46,52,49,55,48,50,49,93,44,91,45,56,54,46,56,52,57,53,55,51,44,51,53,46,53,50,53,53,49,53,93,44,91,45,56,54,46,55,56,50,48,49,54,44,51,53,46,55,48,54,53,57,53,93,44,91,45,56,55,46,50,49,53,48,57,57,44,51,53,46,56,53,48,54,53,49,93,44,91,45,56,55,46,50,51,52,49,52,51,44,51,53,46,55,50,52,54,57,49,93,44,91,45,56,55,46,51,51,57,50,51,50,44,51,53,46,54,53,57,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,71,111,115,104,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,51,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,54,53,53,54,51,57,44,52,50,46,54,48,57,52,54,56,93,44,91,45,49,48,52,46,54,53,51,51,51,56,44,52,49,46,54,53,51,48,48,55,93,44,91,45,49,48,52,46,54,53,50,57,57,50,44,52,49,46,53,54,53,48,49,52,93,44,91,45,49,48,52,46,48,53,50,53,52,44,52,49,46,53,54,52,50,55,52,93,44,91,45,49,48,52,46,48,53,50,54,56,56,44,52,49,46,54,57,55,57,53,52,93,44,91,45,49,48,52,46,48,53,50,54,52,53,44,52,50,46,48,48,49,55,49,56,93,44,91,45,49,48,52,46,48,53,50,56,51,56,44,52,50,46,54,49,49,55,54,55,93,44,91,45,49,48,52,46,54,53,53,54,51,57,44,52,50,46,54,48,57,52,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,82,117,115,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,56,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,55,56,55,52,57,44,52,53,46,54,51,56,50,54,52,93,44,91,45,57,49,46,53,52,48,50,57,52,44,52,53,46,54,51,55,54,48,53,93,44,91,45,57,49,46,53,52,49,51,50,50,44,52,53,46,50,57,50,50,50,93,44,91,45,57,48,46,57,50,53,50,50,50,44,52,53,46,50,57,50,48,54,49,93,44,91,45,57,48,46,57,50,53,51,52,51,44,52,53,46,51,55,57,51,53,93,44,91,45,57,48,46,54,55,56,55,55,51,44,52,53,46,51,55,55,57,48,55,93,44,91,45,57,48,46,54,55,56,55,52,57,44,52,53,46,54,51,56,50,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,87,97,117,107,101,115,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,56,56,55,57,44,34,98,101,100,115,34,58,49,48,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,51,53,56,52,51,44,52,51,46,49,57,54,48,52,56,93,44,91,45,56,56,46,53,52,49,53,51,53,44,52,50,46,56,52,50,57,57,54,93,44,91,45,56,56,46,51,48,54,51,56,52,44,52,50,46,56,52,50,48,57,53,93,44,91,45,56,56,46,48,54,57,57,50,52,44,52,50,46,56,52,51,51,50,51,93,44,91,45,56,56,46,48,54,51,51,53,51,44,52,51,46,49,57,50,49,49,55,93,44,91,45,56,56,46,52,49,55,57,56,55,44,52,51,46,49,57,52,54,57,55,93,44,91,45,56,56,46,53,51,53,56,52,51,44,52,51,46,49,57,54,48,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,71,97,114,114,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,52,52,56,56,56,44,51,55,46,55,49,51,48,55,53,93,44,91,45,56,52,46,54,53,56,50,57,54,44,51,55,46,54,51,52,53,48,49,93,44,91,45,56,52,46,52,52,54,55,49,57,44,51,55,46,52,56,53,56,57,51,93,44,91,45,56,52,46,51,52,55,56,48,53,44,51,55,46,53,51,57,48,54,52,93,44,91,45,56,52,46,53,50,53,54,52,51,44,51,55,46,55,54,57,52,57,55,93,44,91,45,56,52,46,55,49,54,57,50,53,44,51,55,46,56,49,53,51,56,57,93,44,91,45,56,52,46,55,52,52,56,56,56,44,51,55,46,55,49,51,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,78,111,114,102,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,56,50,52,57,44,34,98,101,100,115,34,58,49,51,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,49,57,49,49,53,53,44,52,50,46,50,56,51,48,53,57,93,44,91,45,55,49,46,52,55,56,49,49,57,44,52,50,46,49,53,54,55,56,50,93,44,91,45,55,49,46,52,57,56,50,53,57,44,52,50,46,48,49,55,50,55,50,93,44,91,45,55,49,46,51,56,49,50,57,57,44,52,49,46,57,56,53,48,56,52,93,44,91,45,55,49,46,48,56,48,52,56,51,44,52,50,46,48,57,53,53,51,57,93,44,91,45,55,48,46,57,50,52,56,55,55,44,52,50,46,49,53,55,53,56,93,44,91,45,55,48,46,57,54,48,49,57,50,44,52,50,46,50,57,57,52,57,56,93,44,91,45,55,49,46,49,57,49,49,53,53,44,52,50,46,50,56,51,48,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,101,110,100,114,105,99,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,57,52,48,44,34,98,101,100,115,34,58,50,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,57,53,49,50,55,44,51,57,46,56,54,52,56,52,53,93,44,91,45,56,54,46,54,56,55,52,48,54,44,51,57,46,54,51,48,52,51,55,93,44,91,45,56,54,46,54,53,54,54,53,44,51,57,46,54,48,49,51,57,53,93,44,91,45,56,54,46,52,54,53,54,48,53,44,51,57,46,54,48,48,55,54,57,93,44,91,45,56,54,46,51,50,54,51,52,49,44,51,57,46,54,51,50,49,55,55,93,44,91,45,56,54,46,51,50,54,50,57,51,44,51,57,46,57,50,52,48,50,57,93,44,91,45,56,54,46,54,57,53,48,55,49,44,51,57,46,57,50,50,55,55,93,44,91,45,56,54,46,54,57,53,49,50,55,44,51,57,46,56,54,52,56,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,53,53,49,44,34,98,101,100,115,34,58,49,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,57,53,48,55,51,44,51,55,46,57,53,53,51,52,51,93,44,91,45,56,57,46,54,55,52,51,50,49,44,51,55,46,56,48,51,49,53,50,93,44,91,45,56,57,46,53,49,50,48,48,57,44,51,55,46,54,56,53,53,50,53,93,44,91,45,56,57,46,53,50,49,53,54,52,44,51,55,46,53,55,50,49,53,54,93,44,91,45,56,57,46,52,52,56,53,57,56,44,51,55,46,53,57,56,56,50,49,93,44,91,45,56,57,46,49,53,51,54,49,55,44,51,55,46,54,48,48,50,51,55,93,44,91,45,56,57,46,49,53,49,49,55,54,44,51,55,46,56,54,49,57,57,57,93,44,91,45,56,57,46,49,55,55,53,57,55,44,51,55,46,57,53,48,51,49,49,93,44,91,45,56,57,46,53,57,53,48,55,51,44,51,55,46,57,53,53,51,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,71,101,111,114,103,101,116,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,54,48,53,44,34,98,101,100,115,34,58,52,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,51,49,55,48,52,49,44,51,51,46,55,55,57,56,55,56,93,44,91,45,55,57,46,52,48,57,51,51,50,44,51,51,46,54,56,56,56,57,93,44,91,45,55,57,46,52,51,53,55,51,51,44,51,51,46,53,55,50,55,48,50,93,44,91,45,55,57,46,53,57,48,49,49,44,51,51,46,52,52,51,53,52,93,44,91,45,55,57,46,54,55,55,48,49,52,44,51,51,46,51,48,52,57,52,52,93,44,91,45,55,57,46,52,52,54,54,57,57,44,51,51,46,50,49,51,52,53,56,93,44,91,45,55,57,46,50,54,49,56,51,44,51,51,46,48,52,57,55,57,51,93,44,91,45,55,57,46,48,57,49,54,49,52,44,51,51,46,49,53,57,48,53,54,93,44,91,45,55,57,46,49,50,48,50,49,55,44,51,51,46,50,52,54,57,51,50,93,44,91,45,55,57,46,48,56,55,53,56,49,44,51,51,46,51,54,57,50,56,55,93,44,91,45,55,56,46,57,50,54,48,55,53,44,51,51,46,53,55,50,54,53,56,93,44,91,45,55,57,46,49,48,49,48,55,52,44,51,51,46,53,55,50,57,54,57,93,44,91,45,55,57,46,49,57,48,50,54,52,44,51,51,46,55,48,53,55,56,55,93,44,91,45,55,57,46,51,49,55,48,52,49,44,51,51,46,55,55,57,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,72,101,116,116,105,110,103,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,57,54,55,52,52,44,52,54,46,54,51,49,48,50,54,93,44,91,45,49,48,50,46,57,50,55,52,53,49,44,52,54,46,54,51,48,48,50,93,44,91,45,49,48,50,46,57,50,52,53,52,55,44,52,54,46,50,56,49,53,49,56,93,44,91,45,49,48,50,46,52,57,55,54,52,50,44,52,54,46,50,56,51,49,57,53,93,44,91,45,49,48,50,46,52,57,55,49,51,55,44,52,54,46,50,48,53,57,48,52,93,44,91,45,49,48,49,46,57,57,55,57,51,44,52,54,46,50,48,53,51,50,52,93,44,91,45,49,48,50,46,48,52,54,55,56,57,44,52,54,46,50,56,51,55,52,54,93,44,91,45,49,48,50,46,48,53,49,50,52,44,52,54,46,54,51,48,57,49,55,93,44,91,45,49,48,50,46,48,57,54,55,52,52,44,52,54,46,54,51,49,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,71,114,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,49,54,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,53,49,50,50,54,44,51,57,46,52,57,55,55,51,57,93,44,91,45,49,48,57,46,49,48,54,57,55,50,44,51,57,46,52,54,49,57,55,57,93,44,91,45,49,48,57,46,57,53,51,51,52,57,44,51,57,46,52,54,49,56,48,49,93,44,91,45,49,49,48,46,48,50,51,57,54,51,44,51,57,46,52,54,57,50,54,56,93,44,91,45,49,49,48,46,48,50,52,49,49,56,44,51,57,46,52,54,57,50,54,57,93,44,91,45,49,49,48,46,48,50,50,49,54,54,44,51,57,46,51,53,50,48,49,56,93,44,91,45,49,49,48,46,48,55,55,50,55,44,51,57,46,50,55,53,56,54,57,93,44,91,45,49,49,48,46,49,53,54,50,50,50,44,51,57,46,48,51,50,54,53,52,93,44,91,45,49,49,48,46,49,54,50,53,50,57,44,51,56,46,56,54,51,57,50,50,93,44,91,45,49,49,48,46,48,56,49,57,51,57,44,51,56,46,55,53,54,54,54,54,93,44,91,45,49,48,57,46,57,57,52,50,56,51,44,51,56,46,53,50,55,49,49,56,93,44,91,45,49,49,48,46,48,50,53,52,48,50,44,51,56,46,52,57,57,57,56,49,93,44,91,45,49,48,57,46,48,54,48,49,49,57,44,51,56,46,52,57,57,57,56,57,93,44,91,45,49,48,57,46,48,53,48,55,54,53,44,51,57,46,51,54,54,54,55,55,93,44,91,45,49,48,57,46,48,53,49,50,50,54,44,51,57,46,52,57,55,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,84,111,111,101,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,49,56,53,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,52,57,51,53,49,53,44,52,49,46,48,55,54,56,56,56,93,44,91,45,49,49,50,46,55,57,57,51,53,57,44,52,48,46,57,57,57,57,51,57,93,44,91,45,49,49,52,46,48,52,50,48,50,57,44,52,48,46,57,57,57,56,57,54,93,44,91,45,49,49,52,46,48,52,54,54,49,52,44,52,48,46,49,49,54,57,51,54,93,44,91,45,49,49,52,46,48,52,55,48,50,54,44,51,57,46,57,48,54,48,57,55,93,44,91,45,49,49,51,46,50,52,56,52,57,56,44,51,57,46,57,48,52,55,49,52,93,44,91,45,49,49,50,46,51,52,49,57,56,56,44,51,57,46,57,48,52,52,53,56,93,44,91,45,49,49,50,46,49,55,57,56,44,52,48,46,48,49,49,54,53,54,93,44,91,45,49,49,50,46,49,52,54,56,53,54,44,52,48,46,49,55,55,56,49,55,93,44,91,45,49,49,50,46,49,57,56,52,54,49,44,52,48,46,51,49,51,50,48,54,93,44,91,45,49,49,50,46,49,55,50,56,54,50,44,52,48,46,52,54,55,48,54,53,93,44,91,45,49,49,50,46,49,55,53,51,51,55,44,52,48,46,54,48,51,57,56,49,93,44,91,45,49,49,50,46,50,54,48,50,49,54,44,52,48,46,55,54,57,48,57,51,93,44,91,45,49,49,50,46,52,57,51,53,49,53,44,52,49,46,48,55,54,56,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,53,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,53,48,34,44,34,78,65,77,69,34,58,34,72,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,53,56,51,44,34,98,101,100,115,34,58,51,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,51,56,48,50,54,44,51,55,46,48,57,52,51,52,56,93,44,91,45,55,54,46,51,56,52,52,49,57,44,51,54,46,57,53,49,48,53,57,93,44,91,45,55,54,46,51,52,49,56,50,53,44,51,54,46,57,50,52,55,55,50,93,44,91,45,55,54,46,51,51,50,50,53,55,44,51,54,46,57,54,54,48,57,57,93,44,91,45,55,54,46,49,51,51,56,55,50,44,51,55,46,48,52,48,56,56,54,93,44,91,45,55,54,46,49,51,52,57,52,49,44,51,55,46,49,49,55,54,48,51,93,44,91,45,55,54,46,51,57,53,55,57,53,44,51,55,46,49,48,55,49,55,52,93,44,91,45,55,54,46,52,51,56,48,50,54,44,51,55,46,48,57,52,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,117,102,102,97,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,53,48,50,52,56,44,52,52,46,53,57,54,54,52,57,93,44,91,45,57,50,46,48,50,57,49,56,44,52,52,46,53,56,54,50,57,50,93,44,91,45,57,50,46,48,56,51,53,55,50,44,52,52,46,52,48,55,51,51,54,93,44,91,45,57,49,46,57,50,56,50,50,52,44,52,52,46,51,51,53,52,55,51,93,44,91,45,57,49,46,56,53,56,50,52,53,44,52,52,46,49,57,51,48,48,52,93,44,91,45,57,49,46,53,53,57,48,48,52,44,52,52,46,48,50,53,51,49,53,93,44,91,45,57,49,46,54,49,50,51,51,49,44,52,52,46,49,54,56,56,48,57,93,44,91,45,57,49,46,53,50,57,55,52,49,44,52,52,46,50,52,54,55,55,55,93,44,91,45,57,49,46,53,50,57,49,48,49,44,52,52,46,53,57,54,49,57,55,93,44,91,45,57,49,46,54,53,48,50,52,56,44,52,52,46,53,57,54,54,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,70,114,101,100,101,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,49,53,51,44,34,98,101,100,115,34,58,51,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,52,55,48,56,55,44,51,57,46,52,54,54,48,49,50,93,44,91,45,55,56,46,51,52,48,52,49,53,44,51,57,46,51,53,51,54,50,56,93,44,91,45,55,56,46,52,49,57,52,50,50,44,51,57,46,50,53,55,52,55,54,93,44,91,45,55,56,46,52,48,51,57,48,55,44,51,57,46,49,54,55,55,51,56,93,44,91,45,55,56,46,53,48,56,49,51,50,44,51,57,46,48,56,56,54,51,93,44,91,45,55,56,46,53,52,52,49,56,50,44,51,57,46,48,53,54,53,53,57,93,44,91,45,55,56,46,51,49,52,48,56,44,51,57,46,48,48,55,57,57,52,93,44,91,45,55,56,46,49,53,49,54,49,52,44,51,57,46,48,51,54,54,50,57,93,44,91,45,55,56,46,48,51,51,49,57,49,44,51,57,46,50,54,52,54,49,50,93,44,91,45,55,56,46,50,50,56,55,54,54,44,51,57,46,51,57,49,50,51,51,93,44,91,45,55,56,46,51,52,55,48,56,55,44,51,57,46,52,54,54,48,49,50,93,93,44,91,91,45,55,56,46,50,48,48,52,57,55,44,51,57,46,49,56,48,49,54,51,93,44,91,45,55,56,46,49,52,56,56,57,53,44,51,57,46,49,55,53,51,53,50,93,44,91,45,55,56,46,49,55,49,54,50,44,51,57,46,49,52,51,49,55,52,93,44,91,45,55,56,46,50,48,48,52,57,55,44,51,57,46,49,56,48,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,55,54,44,34,98,101,100,115,34,58,50,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,50,56,51,50,54,44,51,57,46,48,57,53,54,55,57,93,44,91,45,56,48,46,55,49,54,56,49,53,44,51,57,46,48,48,56,52,51,93,44,91,45,56,48,46,54,48,53,55,57,57,44,51,56,46,57,48,52,49,54,55,93,44,91,45,56,48,46,52,55,51,55,54,56,44,51,56,46,56,50,57,48,57,56,93,44,91,45,56,48,46,52,53,55,51,51,50,44,51,56,46,55,51,57,49,54,57,93,44,91,45,56,48,46,51,57,51,48,54,51,44,51,56,46,55,50,55,53,55,49,93,44,91,45,56,48,46,51,56,54,57,56,57,44,51,56,46,56,55,52,56,48,56,93,44,91,45,56,48,46,51,49,57,51,52,54,44,51,56,46,57,54,48,57,49,57,93,44,91,45,56,48,46,51,48,48,50,48,57,44,51,57,46,49,48,51,56,53,55,93,44,91,45,56,48,46,53,57,54,49,50,54,44,51,57,46,49,54,55,48,54,57,93,44,91,45,56,48,46,55,50,56,51,50,54,44,51,57,46,48,57,53,54,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,57,49,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,52,54,55,48,51,44,52,56,46,49,55,51,50,50,51,93,44,91,45,57,55,46,48,53,53,53,57,55,44,52,55,46,57,52,57,49,50,57,93,44,91,45,57,54,46,56,56,54,56,52,54,44,52,55,46,54,55,50,48,54,51,93,44,91,45,57,54,46,56,52,56,57,50,51,44,52,55,46,52,57,56,57,57,49,93,44,91,45,57,54,46,48,54,55,54,50,49,44,52,55,46,52,57,57,49,51,54,93,44,91,45,57,53,46,53,53,52,50,52,56,44,52,55,46,52,57,57,56,57,51,93,44,91,45,57,53,46,53,56,50,49,53,53,44,52,55,46,57,51,51,57,54,54,93,44,91,45,57,53,46,55,48,57,54,49,57,44,52,55,46,57,51,53,56,48,53,93,44,91,45,57,53,46,56,51,54,56,50,55,44,52,55,46,56,52,56,50,49,57,93,44,91,45,57,53,46,56,51,55,49,55,55,44,52,55,46,55,54,48,56,57,52,93,44,91,45,57,54,46,51,53,49,55,50,55,44,52,55,46,55,54,48,51,93,44,91,45,57,54,46,52,56,50,48,57,50,44,52,55,46,56,52,55,52,50,56,93,44,91,45,57,54,46,52,56,50,53,53,44,52,55,46,57,54,51,53,57,53,93,44,91,45,57,54,46,53,48,48,56,52,51,44,52,56,46,49,55,52,49,48,56,93,44,91,45,57,55,46,49,52,54,55,48,51,44,52,56,46,49,55,51,50,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,82,101,100,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,54,48,49,55,55,44,52,52,46,54,57,56,53,52,93,44,91,45,57,53,46,51,54,48,52,44,52,52,46,53,52,49,55,54,50,93,44,91,45,57,53,46,53,57,52,56,49,55,44,52,52,46,53,52,50,51,48,53,93,44,91,45,57,53,46,53,57,51,53,55,44,52,52,46,49,57,53,53,51,93,44,91,45,57,53,46,52,54,50,53,52,55,44,52,52,46,49,57,53,57,52,50,93,44,91,45,57,53,46,49,48,56,55,55,55,44,52,52,46,49,57,53,48,52,52,93,44,91,45,57,53,46,49,48,55,52,56,44,52,52,46,50,56,49,55,54,56,93,44,91,45,57,52,46,56,54,54,50,53,57,44,52,52,46,50,56,50,51,55,50,93,44,91,45,57,52,46,56,54,53,56,50,52,44,52,52,46,52,57,56,50,49,56,93,44,91,45,57,53,46,48,49,51,53,57,57,44,52,52,46,53,52,50,56,51,51,93,44,91,45,57,53,46,50,52,48,52,51,57,44,52,52,46,54,54,52,54,48,52,93,44,91,45,57,53,46,51,54,48,49,55,55,44,52,52,46,54,57,56,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,57,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,51,50,55,55,54,44,51,53,46,51,55,53,56,50,52,93,44,91,45,56,57,46,54,52,52,48,53,44,51,52,46,57,57,53,50,57,49,93,44,91,45,56,57,46,51,53,50,54,55,57,44,51,52,46,57,57,51,56,54,51,93,44,91,45,56,57,46,49,57,56,50,56,56,44,51,52,46,57,57,52,52,56,52,93,44,91,45,56,57,46,49,56,51,57,52,52,44,51,53,46,51,57,55,49,50,54,93,44,91,45,56,57,46,52,55,52,49,55,49,44,51,53,46,52,48,51,48,51,57,93,44,91,45,56,57,46,54,51,50,55,55,54,44,51,53,46,51,55,53,56,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,104,97,114,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,50,52,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,53,57,56,56,57,44,51,48,46,49,54,51,52,49,93,44,91,45,57,48,46,51,50,54,54,51,55,44,51,48,46,49,53,48,49,56,56,93,44,91,45,57,48,46,52,53,48,50,49,56,44,51,48,46,48,51,51,49,48,54,93,44,91,45,57,48,46,53,51,56,49,51,50,44,51,48,46,48,49,54,56,56,52,93,44,91,45,57,48,46,53,50,57,54,48,49,44,50,57,46,56,56,52,57,57,55,93,44,91,45,57,48,46,51,55,49,57,55,56,44,50,57,46,55,53,57,50,51,57,93,44,91,45,57,48,46,51,52,54,49,57,49,44,50,57,46,54,57,51,51,48,50,93,44,91,45,57,48,46,50,50,56,49,53,55,44,50,57,46,54,57,50,48,50,56,93,44,91,45,57,48,46,49,54,55,50,57,55,44,50,57,46,56,49,55,52,48,55,93,44,91,45,57,48,46,50,52,48,49,55,51,44,50,57,46,56,54,50,49,49,55,93,44,91,45,57,48,46,50,56,48,50,57,54,44,50,57,46,57,55,50,54,49,56,93,44,91,45,57,48,46,50,53,57,56,56,57,44,51,48,46,49,54,51,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,80,111,105,110,115,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,56,54,55,51,54,44,51,53,46,54,57,57,57,49,52,93,44,91,45,57,49,46,48,51,54,57,54,55,44,51,53,46,55,48,56,52,49,56,93,44,91,45,57,49,46,48,51,57,50,51,44,51,53,46,52,52,52,55,49,55,93,44,91,45,57,48,46,53,48,50,52,50,57,44,51,53,46,52,52,49,55,50,54,93,44,91,45,57,48,46,50,56,54,56,57,57,44,51,53,46,52,51,56,53,55,51,93,44,91,45,57,48,46,50,56,54,55,51,54,44,51,53,46,54,57,57,57,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,71,117,108,102,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,53,53,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,56,57,54,55,57,44,51,48,46,50,48,48,57,55,51,93,44,91,45,56,53,46,51,56,56,54,54,57,44,50,57,46,57,50,52,51,53,57,93,44,91,45,56,53,46,52,52,54,50,56,57,44,50,57,46,57,48,49,48,51,51,93,44,91,45,56,53,46,52,55,52,57,57,54,44,50,57,46,56,51,49,53,52,50,93,44,91,45,56,53,46,51,56,49,54,56,52,44,50,57,46,54,49,50,56,53,51,93,44,91,45,56,53,46,50,52,54,51,49,54,44,50,57,46,54,50,53,48,48,50,93,44,91,45,56,53,46,50,48,54,50,50,54,44,50,57,46,55,49,49,49,56,56,93,44,91,45,56,53,46,48,50,48,53,51,52,44,50,57,46,56,48,55,51,55,51,93,44,91,45,56,53,46,48,50,53,52,51,57,44,50,57,46,57,55,49,51,57,57,93,44,91,45,56,53,46,49,51,53,50,53,52,44,51,48,46,48,52,51,50,55,93,44,91,45,56,53,46,49,49,53,54,54,44,51,48,46,49,57,57,57,55,54,93,44,91,45,56,53,46,51,56,57,54,55,57,44,51,48,46,50,48,48,57,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,97,109,98,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,55,52,48,44,34,98,101,100,115,34,58,49,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,53,53,50,57,50,44,51,54,46,50,56,57,48,57,50,93,44,91,45,56,51,46,51,53,53,49,57,54,44,51,54,46,50,56,50,53,57,93,44,91,45,56,51,46,52,54,55,48,57,55,44,51,54,46,49,55,52,54,56,56,93,44,91,45,56,51,46,50,57,51,54,56,57,44,51,54,46,49,51,56,49,57,51,93,44,91,45,56,51,46,50,51,52,53,56,53,44,51,54,46,48,56,53,48,57,52,93,44,91,45,56,51,46,49,54,54,48,56,53,44,51,54,46,49,56,48,56,57,52,93,44,91,45,56,51,46,48,56,50,51,49,50,44,51,54,46,50,52,50,50,57,54,93,44,91,45,56,51,46,49,53,49,54,56,57,44,51,54,46,51,49,56,49,57,50,93,44,91,45,56,51,46,50,53,53,50,57,50,44,51,54,46,50,56,57,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,51,48,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,56,56,49,49,56,50,44,51,51,46,48,52,57,57,48,49,93,44,91,45,56,54,46,56,55,54,49,49,56,44,51,50,46,56,51,54,50,54,52,93,44,91,45,56,55,46,48,49,57,49,53,55,44,51,50,46,56,51,55,48,51,52,93,44,91,45,56,55,46,48,49,55,55,54,50,44,51,50,46,55,50,57,53,51,50,93,44,91,45,56,54,46,57,49,55,53,57,53,44,51,50,46,54,54,52,49,54,57,93,44,91,45,56,54,46,55,49,52,50,49,57,44,51,50,46,55,48,53,54,57,52,93,44,91,45,56,54,46,52,49,51,49,49,54,44,51,50,46,55,48,55,51,56,54,93,44,91,45,56,54,46,51,55,52,57,55,52,44,51,50,46,55,53,51,53,56,93,44,91,45,56,54,46,52,53,55,48,49,53,44,51,50,46,56,49,51,56,57,57,93,44,91,45,56,54,46,53,49,55,51,52,52,44,51,51,46,48,50,48,53,54,54,93,44,91,45,56,54,46,54,49,48,48,48,51,44,51,51,46,48,55,48,48,48,51,93,44,91,45,56,54,46,56,56,49,49,56,50,44,51,51,46,48,52,57,57,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,53,49,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,49,49,49,50,54,44,51,49,46,49,53,56,48,55,49,93,44,91,45,57,51,46,56,54,53,55,49,49,44,51,48,46,57,52,55,50,49,56,93,44,91,45,57,51,46,57,48,49,52,53,50,44,51,48,46,50,52,50,54,55,50,93,44,91,45,57,51,46,55,48,54,57,57,51,44,51,48,46,50,52,51,55,51,54,93,44,91,45,57,51,46,55,54,52,50,53,50,44,51,48,46,51,51,48,50,50,57,93,44,91,45,57,51,46,55,52,49,54,55,57,44,51,48,46,52,48,50,57,55,53,93,44,91,45,57,51,46,55,51,56,55,56,56,44,51,48,46,53,52,48,57,55,53,93,44,91,45,57,51,46,54,51,49,51,52,53,44,51,48,46,54,55,55,56,55,50,93,44,91,45,57,51,46,53,53,56,53,57,54,44,51,48,46,56,54,56,56,50,50,93,44,91,45,57,51,46,53,50,52,55,51,57,44,51,49,46,48,51,57,48,48,55,93,44,91,45,57,51,46,53,53,50,53,50,52,44,51,49,46,49,56,53,52,48,53,93,44,91,45,57,51,46,54,48,48,51,48,56,44,51,49,46,49,55,54,49,53,56,93,44,91,45,57,51,46,57,49,49,49,50,54,44,51,49,46,49,53,56,48,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,57,34,44,34,78,65,77,69,34,58,34,72,111,99,107,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,54,50,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,49,53,52,52,55,44,51,51,46,56,50,53,49,50,49,93,44,91,45,49,48,50,46,53,57,52,56,51,54,44,51,51,46,51,56,56,52,56,57,93,44,91,45,49,48,50,46,48,55,53,57,50,57,44,51,51,46,51,56,57,53,56,54,93,44,91,45,49,48,50,46,48,56,53,55,51,51,44,51,51,46,56,50,52,54,55,53,93,44,91,45,49,48,50,46,54,49,53,52,52,55,44,51,51,46,56,50,53,49,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,108,100,119,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,50,56,54,44,34,98,101,100,115,34,58,51,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,50,57,48,57,44,51,51,46,49,56,53,51,53,50,93,44,91,45,56,51,46,51,53,55,54,56,53,44,51,50,46,57,50,54,49,52,49,93,44,91,45,56,51,46,49,51,51,56,52,55,44,51,51,46,48,48,55,50,52,56,93,44,91,45,56,51,46,48,55,51,54,52,56,44,51,50,46,57,52,54,53,54,50,93,44,91,45,56,51,46,48,53,50,49,57,55,44,51,51,46,48,56,48,54,56,50,93,44,91,45,56,51,46,48,57,55,54,52,57,44,51,51,46,49,53,49,53,51,54,93,44,91,45,56,51,46,50,55,52,49,48,56,44,51,51,46,49,56,55,50,51,56,93,44,91,45,56,51,46,52,50,57,48,57,44,51,51,46,49,56,53,51,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,84,114,97,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,49,51,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,50,48,56,56,49,44,51,53,46,50,57,50,48,51,55,93,44,91,45,56,51,46,48,48,56,53,51,49,44,51,53,46,48,50,55,51,57,52,93,44,91,45,56,50,46,56,57,55,51,55,51,44,51,53,46,48,53,54,50,49,52,93,44,91,45,56,50,46,55,54,52,53,55,53,44,51,53,46,48,54,56,51,56,93,44,91,45,56,50,46,53,55,52,56,51,57,44,51,53,46,49,52,53,52,52,57,93,44,91,45,56,50,46,54,49,48,49,56,54,44,51,53,46,50,56,56,49,57,57,93,44,91,45,56,50,46,55,52,53,49,51,57,44,51,53,46,52,50,50,57,54,55,93,44,91,45,56,50,46,56,51,50,50,52,52,44,51,53,46,51,49,56,51,50,52,93,44,91,45,56,50,46,57,50,48,56,56,49,44,51,53,46,50,57,50,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,83,117,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,48,57,57,44,34,98,101,100,115,34,58,50,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,54,55,49,53,51,44,51,54,46,52,48,50,48,50,93,44,91,45,56,48,46,56,54,56,55,52,54,44,51,54,46,51,50,54,52,52,55,93,44,91,45,56,48,46,56,55,51,50,48,53,44,51,54,46,50,51,54,51,48,53,93,44,91,45,56,48,46,54,51,49,53,52,52,44,51,54,46,50,56,53,53,56,52,93,44,91,45,56,48,46,52,53,50,51,50,50,44,51,54,46,50,52,49,52,49,57,93,44,91,45,56,48,46,52,53,49,54,57,54,44,51,54,46,50,54,49,53,48,50,93,44,91,45,56,48,46,52,52,48,48,57,56,44,51,54,46,53,53,48,54,53,53,93,44,91,45,56,48,46,54,49,50,48,53,55,44,51,54,46,53,53,55,56,57,56,93,44,91,45,56,48,46,56,51,55,57,53,52,44,51,54,46,53,53,57,49,52,51,93,44,91,45,56,48,46,57,48,49,54,52,49,44,51,54,46,53,54,49,55,54,54,93,44,91,45,56,48,46,57,54,55,49,53,51,44,51,54,46,52,48,50,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,102,102,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,50,56,56,44,34,98,101,100,115,34,58,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,52,53,56,57,53,44,51,49,46,54,49,55,55,52,49,93,44,91,45,56,54,46,49,57,51,57,53,49,44,51,49,46,52,52,48,48,55,50,93,44,91,45,56,54,46,49,57,51,52,55,54,44,51,49,46,49,57,50,50,49,51,93,44,91,45,56,53,46,55,57,49,52,48,50,44,51,49,46,49,57,54,51,52,57,93,44,91,45,56,53,46,55,56,57,49,52,50,44,51,49,46,54,49,55,57,54,52,93,44,91,45,56,54,46,49,52,53,56,57,53,44,51,49,46,54,49,55,55,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,55,57,55,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,51,52,54,51,49,44,52,48,46,51,53,52,50,53,57,93,44,91,45,56,52,46,52,51,50,53,55,53,44,52,48,46,49,57,55,48,51,55,93,44,91,45,56,52,46,48,50,50,57,49,57,44,52,48,46,49,56,51,57,52,53,93,44,91,45,56,52,46,48,49,52,55,54,51,44,52,48,46,50,55,51,52,53,57,93,44,91,45,56,52,46,48,48,50,51,55,50,44,52,48,46,52,56,51,49,49,53,93,44,91,45,56,52,46,51,51,57,49,51,55,44,52,48,46,52,56,49,48,55,54,93,44,91,45,56,52,46,51,51,56,54,44,52,48,46,51,55,57,49,57,57,93,44,91,45,56,52,46,52,51,52,51,56,55,44,52,48,46,51,53,52,53,51,52,93,44,91,45,56,52,46,52,51,52,54,51,49,44,52,48,46,51,53,52,50,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,110,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,50,50,51,48,44,34,98,101,100,115,34,58,51,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,50,54,53,51,56,44,52,51,46,54,56,48,56,48,50,93,44,91,45,49,49,54,46,56,52,52,57,55,56,44,52,51,46,53,57,52,52,93,44,91,45,49,49,54,46,55,56,49,51,51,54,44,52,51,46,52,55,56,54,51,51,93,44,91,45,49,49,54,46,53,49,49,56,57,55,44,52,51,46,50,57,48,53,50,93,44,91,45,49,49,54,46,52,55,51,53,57,55,44,52,51,46,52,53,57,50,49,56,93,44,91,45,49,49,54,46,52,55,51,52,57,50,44,52,51,46,54,51,52,49,48,51,93,44,91,45,49,49,54,46,53,49,50,53,48,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,55,49,50,54,55,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,56,53,51,49,53,52,44,52,51,46,55,57,50,55,49,93,44,91,45,49,49,54,46,57,56,51,56,50,55,44,52,51,46,56,56,48,48,52,54,93,44,91,45,49,49,55,46,48,51,50,50,56,57,44,52,51,46,56,50,56,55,54,55,93,44,91,45,49,49,55,46,48,50,54,53,51,56,44,52,51,46,54,56,48,56,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,68,97,110,105,101,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,49,49,50,48,53,56,44,52,56,46,57,57,57,52,54,93,44,91,45,49,48,54,46,49,53,49,57,48,56,44,52,56,46,56,50,51,57,50,55,93,44,91,45,49,48,54,46,48,50,49,50,53,49,44,52,56,46,56,50,51,57,55,53,93,44,91,45,49,48,54,46,48,49,57,56,50,44,52,56,46,53,54,51,50,50,49,93,44,91,45,49,48,53,46,56,48,52,52,51,54,44,52,56,46,53,54,51,51,53,56,93,44,91,45,49,48,52,46,57,55,51,51,53,52,44,52,56,46,53,54,51,49,57,93,44,91,45,49,48,53,46,48,51,56,53,52,56,44,52,56,46,54,53,48,48,57,57,93,44,91,45,49,48,53,46,48,53,55,54,52,50,44,52,56,46,57,57,57,48,49,50,93,44,91,45,49,48,54,46,49,49,50,48,53,56,44,52,56,46,57,57,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,101,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,56,49,48,50,44,34,98,101,100,115,34,58,49,50,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,56,50,53,53,57,44,51,48,46,54,56,53,51,51,52,93,44,91,45,56,52,46,52,50,48,52,55,52,44,51,48,46,52,54,51,57,48,53,93,44,91,45,56,52,46,54,52,54,52,48,56,44,51,48,46,51,56,56,50,56,49,93,44,91,45,56,52,46,55,49,51,51,53,49,44,51,48,46,51,48,48,49,55,93,44,91,45,56,52,46,50,52,55,54,55,51,44,51,48,46,51,48,51,52,57,51,93,44,91,45,56,52,46,48,55,53,53,51,57,44,51,48,46,50,55,51,54,49,55,93,44,91,45,56,52,46,48,55,52,54,57,49,44,51,48,46,52,51,52,51,48,50,93,44,91,45,56,51,46,57,55,56,54,48,55,44,51,48,46,53,50,50,54,56,55,93,44,91,45,56,52,46,48,48,55,52,53,52,44,51,48,46,54,55,50,49,50,55,93,44,91,45,56,52,46,48,56,51,55,53,55,44,51,48,46,54,55,53,56,48,52,93,44,91,45,56,52,46,50,56,50,53,53,57,44,51,48,46,54,56,53,51,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,80,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,53,49,50,44,34,98,101,100,115,34,58,50,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,50,50,49,50,44,51,54,46,49,53,57,57,48,51,93,44,91,45,57,54,46,56,49,57,48,48,53,44,51,54,46,49,53,56,56,56,54,93,44,91,45,57,54,46,57,50,53,48,54,57,44,51,54,46,50,52,54,52,55,52,93,44,91,45,57,55,46,49,52,48,57,54,56,44,51,54,46,50,52,54,52,51,53,93,44,91,45,57,55,46,49,52,48,54,54,56,44,51,54,46,49,53,57,50,51,49,93,44,91,45,57,55,46,51,53,52,49,51,50,44,51,54,46,49,53,57,48,55,50,93,44,91,45,57,55,46,51,50,51,54,50,44,51,54,46,48,49,48,56,55,55,93,44,91,45,57,55,46,49,52,48,53,56,51,44,51,53,46,57,52,49,57,57,49,93,44,91,45,57,54,46,54,49,57,54,53,53,44,51,53,46,57,52,49,53,55,49,93,44,91,45,57,54,46,54,50,50,49,50,44,51,54,46,49,53,57,57,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,111,118,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,53,49,44,34,98,101,100,115,34,58,49,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,57,51,57,53,49,44,51,49,46,52,52,48,48,55,50,93,44,91,45,56,54,46,51,57,56,53,51,54,44,51,49,46,52,53,49,51,50,53,93,44,91,45,56,54,46,52,57,57,50,49,51,44,51,49,46,53,50,53,51,51,49,93,44,91,45,56,54,46,55,48,49,53,53,52,44,51,49,46,53,50,51,57,52,54,93,44,91,45,56,54,46,55,48,48,50,56,50,44,51,49,46,49,57,50,50,49,55,93,44,91,45,56,54,46,54,56,56,51,49,55,44,51,48,46,57,57,52,53,48,55,93,44,91,45,56,54,46,51,56,56,54,52,54,44,51,48,46,57,57,52,49,56,49,93,44,91,45,56,54,46,49,56,55,50,52,54,44,51,48,46,57,57,52,48,50,49,93,44,91,45,56,54,46,49,57,51,52,55,54,44,51,49,46,49,57,50,50,49,51,93,44,91,45,56,54,46,49,57,51,57,53,49,44,51,49,46,52,52,48,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,49,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,56,50,56,53,51,44,51,56,46,57,48,52,54,57,55,93,44,91,45,56,54,46,54,56,51,49,48,50,44,51,56,46,54,56,54,53,54,49,93,44,91,45,56,54,46,51,48,56,55,48,49,44,51,56,46,54,56,56,49,48,49,93,44,91,45,56,54,46,50,55,53,50,56,49,44,51,56,46,55,54,51,55,57,53,93,44,91,45,56,54,46,51,49,55,52,55,52,44,51,56,46,57,57,48,56,55,93,44,91,45,56,54,46,54,56,50,50,55,55,44,51,56,46,57,57,50,52,48,52,93,44,91,45,56,54,46,54,56,50,56,53,51,44,51,56,46,57,48,52,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,71,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,50,54,54,49,44,51,56,46,48,48,49,48,49,53,93,44,91,45,49,48,48,46,54,54,52,49,54,54,44,51,56,46,48,48,50,53,51,93,44,91,45,49,48,48,46,54,53,50,50,53,49,44,51,55,46,55,51,54,50,55,53,93,44,91,45,49,48,48,46,54,53,50,54,52,50,44,51,55,46,52,55,52,56,52,56,93,44,91,45,49,48,48,46,50,49,54,50,50,57,44,51,55,46,52,55,53,49,57,93,44,91,45,49,48,48,46,50,50,55,48,57,44,51,55,46,57,49,52,48,49,56,93,44,91,45,49,48,48,46,50,50,54,54,49,44,51,56,46,48,48,49,48,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,97,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,57,54,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,51,57,54,55,52,44,51,55,46,53,52,53,50,51,50,93,44,91,45,56,53,46,48,55,51,55,55,50,44,51,55,46,52,49,51,54,54,57,93,44,91,45,56,53,46,49,54,53,49,55,52,44,51,55,46,51,49,48,51,57,54,93,44,91,45,56,53,46,48,53,54,56,57,56,44,51,55,46,50,53,55,48,52,49,93,44,91,45,56,53,46,48,52,51,51,49,54,44,51,55,46,49,56,54,48,50,56,93,44,91,45,56,52,46,57,48,49,49,49,50,44,51,55,46,49,49,54,50,57,55,93,44,91,45,56,52,46,55,50,48,55,49,50,44,51,55,46,50,51,56,51,50,56,93,44,91,45,56,52,46,55,50,50,56,50,54,44,51,55,46,51,54,48,48,52,51,93,44,91,45,56,52,46,56,53,48,56,49,54,44,51,55,46,52,50,55,49,52,51,93,44,91,45,56,52,46,56,52,55,52,51,52,44,51,55,46,53,52,56,51,52,51,93,44,91,45,56,53,46,48,51,57,54,55,52,44,51,55,46,53,52,53,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,77,101,116,99,97,108,102,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,52,52,50,50,49,44,51,55,46,49,54,57,56,49,51,93,44,91,45,56,53,46,55,51,57,50,53,53,44,51,54,46,56,52,49,52,55,54,93,44,91,45,56,53,46,53,57,54,50,49,52,44,51,54,46,56,49,56,48,51,57,93,44,91,45,56,53,46,52,53,49,56,51,44,51,54,46,57,51,56,49,51,56,93,44,91,45,56,53,46,53,50,54,56,56,49,44,51,55,46,49,48,57,52,53,93,44,91,45,56,53,46,54,56,54,52,56,50,44,51,55,46,49,56,50,52,50,55,93,44,91,45,56,53,46,55,52,52,50,50,49,44,51,55,46,49,54,57,56,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,55,34,44,34,78,65,77,69,34,58,34,82,117,115,115,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,52,51,51,49,54,44,51,55,46,49,56,54,48,50,56,93,44,91,45,56,53,46,50,48,53,56,51,49,44,51,54,46,57,57,54,56,54,50,93,44,91,45,56,53,46,50,51,50,48,50,54,44,51,54,46,57,50,53,48,54,57,93,44,91,45,56,53,46,50,49,53,52,48,53,44,51,54,46,56,53,52,52,54,55,93,44,91,45,56,53,46,48,54,52,51,48,55,44,51,54,46,56,53,56,55,52,51,93,44,91,45,56,52,46,56,51,53,55,49,50,44,51,54,46,57,57,55,54,49,50,93,44,91,45,56,52,46,57,48,49,49,49,50,44,51,55,46,49,49,54,50,57,55,93,44,91,45,56,53,46,48,52,51,51,49,54,44,51,55,46,49,56,54,48,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,101,97,117,114,101,103,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,55,54,57,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,55,56,52,53,51,44,51,48,46,56,55,56,49,55,53,93,44,91,45,57,51,46,52,50,49,49,48,50,44,51,48,46,56,56,51,49,51,56,93,44,91,45,57,51,46,53,53,56,53,57,54,44,51,48,46,56,54,56,56,50,50,93,44,91,45,57,51,46,54,51,49,51,52,53,44,51,48,46,54,55,55,56,55,50,93,44,91,45,57,51,46,55,51,56,55,56,56,44,51,48,46,53,52,48,57,55,53,93,44,91,45,57,51,46,55,52,49,54,55,57,44,51,48,46,52,48,50,57,55,53,93,44,91,45,57,51,46,49,51,49,49,48,57,44,51,48,46,52,48,51,48,53,55,93,44,91,45,57,51,46,49,51,49,49,53,53,44,51,48,46,52,50,51,54,49,50,93,44,91,45,57,51,46,49,51,48,51,56,44,51,48,46,53,57,55,55,55,55,93,44,91,45,57,50,46,57,55,57,49,55,44,51,48,46,53,57,56,51,52,93,44,91,45,57,50,46,57,55,56,52,53,51,44,51,48,46,56,55,56,49,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,83,111,109,101,114,115,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,55,49,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,48,50,51,49,56,55,44,52,54,46,53,55,51,52,56,55,93,44,91,45,55,48,46,48,53,54,53,53,54,44,52,54,46,52,49,54,53,53,93,44,91,45,55,48,46,50,48,56,57,56,57,44,52,54,46,51,50,57,53,50,55,93,44,91,45,55,48,46,50,57,48,52,48,53,44,52,54,46,49,56,53,48,56,55,93,44,91,45,55,48,46,51,49,49,53,55,44,52,53,46,57,54,54,51,53,57,93,44,91,45,55,48,46,50,53,52,48,57,44,52,53,46,57,48,50,50,56,54,93,44,91,45,55,48,46,52,49,54,57,55,55,44,52,53,46,55,57,53,51,56,50,93,44,91,45,55,48,46,52,48,48,52,57,52,44,52,53,46,55,49,57,55,52,51,93,44,91,45,55,48,46,53,53,50,56,53,51,44,52,53,46,54,54,55,56,57,57,93,44,91,45,55,48,46,52,49,56,53,49,57,44,52,53,46,49,52,52,48,48,53,93,44,91,45,55,48,46,50,57,51,56,50,54,44,52,53,46,49,48,57,57,48,51,93,44,91,45,55,48,46,49,53,57,51,55,53,44,52,53,46,49,50,56,51,57,54,93,44,91,45,55,48,46,49,49,48,51,54,53,44,52,52,46,57,52,55,51,49,49,93,44,91,45,55,48,46,48,51,51,50,55,44,52,52,46,56,54,52,53,52,93,44,91,45,54,57,46,57,57,54,49,57,49,44,52,52,46,54,55,55,52,57,55,93,44,91,45,54,57,46,57,51,48,52,53,49,44,52,52,46,54,49,48,56,53,50,93,44,91,45,54,57,46,54,48,53,55,52,54,44,52,52,46,53,55,55,50,54,52,93,44,91,45,54,57,46,54,51,51,49,49,56,44,52,52,46,55,48,48,51,55,51,93,44,91,45,54,57,46,52,55,49,55,49,50,44,52,52,46,54,57,50,56,57,57,93,44,91,45,54,57,46,50,54,54,55,56,53,44,52,52,46,55,50,49,57,50,56,93,44,91,45,54,57,46,51,53,53,54,54,55,44,52,53,46,48,55,51,52,54,57,93,44,91,45,54,57,46,54,50,48,57,54,55,44,52,53,46,48,49,48,57,53,54,93,44,91,45,54,57,46,55,55,57,57,50,56,44,52,53,46,53,52,50,55,54,54,93,44,91,45,54,57,46,55,48,49,54,56,56,44,52,53,46,54,50,55,57,56,50,93,44,91,45,54,57,46,55,56,53,50,53,55,44,52,53,46,54,57,50,55,56,93,44,91,45,54,57,46,55,48,52,50,54,53,44,52,53,46,56,52,54,49,51,54,93,44,91,45,54,57,46,55,50,56,53,55,55,44,52,53,46,57,55,54,56,56,50,93,44,91,45,54,57,46,55,50,49,49,48,57,44,52,54,46,53,55,52,48,53,51,93,44,91,45,55,48,46,48,50,51,49,56,55,44,52,54,46,53,55,51,52,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,105,109,97,114,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,50,48,56,57,44,51,54,46,57,57,51,48,49,54,93,44,91,45,49,48,51,46,48,48,50,51,50,57,44,51,55,46,48,48,48,49,53,93,44,91,45,49,48,51,46,48,48,50,51,53,57,44,51,54,46,53,48,48,53,53,49,93,44,91,45,49,48,50,46,49,54,50,52,54,51,44,51,54,46,53,48,48,51,50,54,93,44,91,45,49,48,50,46,48,51,50,51,51,56,44,51,54,46,53,48,48,53,55,53,93,44,91,45,49,48,50,46,48,50,56,50,48,52,44,51,54,46,57,57,51,49,48,50,93,44,91,45,49,48,50,46,48,52,50,48,56,57,44,51,54,46,57,57,51,48,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,77,101,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,57,48,56,53,52,44,51,56,46,48,52,53,55,51,53,93,44,91,45,56,54,46,49,53,49,50,56,53,44,51,55,46,55,57,56,56,55,56,93,44,91,45,56,54,46,48,48,55,52,51,50,44,51,55,46,56,49,56,52,51,57,93,44,91,45,56,53,46,57,57,56,57,53,50,44,51,55,46,57,57,57,54,53,52,93,44,91,45,56,54,46,49,55,56,57,51,44,51,56,46,48,49,48,56,49,93,44,91,45,56,54,46,50,54,55,55,54,57,44,51,56,46,48,53,55,49,55,49,93,44,91,45,56,54,46,51,50,57,54,44,51,56,46,49,56,49,56,48,53,93,44,91,45,56,54,46,52,54,49,48,50,50,44,51,56,46,49,50,49,48,56,55,93,44,91,45,56,54,46,52,57,48,56,53,52,44,51,56,46,48,52,53,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,78,101,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,51,56,56,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,56,57,50,48,50,44,51,55,46,57,57,48,54,53,52,93,44,91,45,56,53,46,54,52,51,50,53,52,44,51,55,46,56,51,52,48,51,51,93,44,91,45,56,53,46,55,51,55,55,55,55,44,51,55,46,56,49,49,55,57,93,44,91,45,56,53,46,54,56,48,52,56,56,44,51,55,46,55,51,50,50,56,52,93,44,91,45,56,53,46,53,57,50,48,56,56,44,51,55,46,54,57,51,52,55,57,93,44,91,45,56,53,46,54,49,56,48,55,49,44,51,55,46,53,52,48,54,49,49,93,44,91,45,56,53,46,53,50,49,50,57,44,51,55,46,53,53,52,51,52,51,93,44,91,45,56,53,46,52,48,49,55,56,52,44,51,55,46,55,51,48,54,53,56,93,44,91,45,56,53,46,50,57,48,50,56,52,44,51,55,46,56,51,49,49,56,50,93,44,91,45,56,53,46,49,53,50,55,57,55,44,51,55,46,56,57,55,54,54,49,93,44,91,45,56,53,46,49,54,55,56,51,52,44,51,55,46,57,55,49,56,48,57,93,44,91,45,56,53,46,51,57,57,56,55,49,44,51,55,46,57,51,57,57,53,54,93,44,91,45,56,53,46,52,56,57,50,48,50,44,51,55,46,57,57,48,54,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,79,119,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,55,52,53,56,51,44,51,56,46,53,57,54,56,51,56,93,44,91,45,56,53,46,48,50,57,56,56,56,44,51,56,46,53,49,48,55,54,53,93,44,91,45,56,52,46,56,56,48,50,52,56,44,51,56,46,52,49,54,49,56,93,44,91,45,56,52,46,56,55,48,52,56,50,44,51,56,46,51,53,54,55,53,49,93,44,91,45,56,52,46,55,52,48,53,57,52,44,51,56,46,51,53,50,52,49,53,93,44,91,45,56,52,46,53,56,48,53,51,57,44,51,56,46,52,55,51,48,51,57,93,44,91,45,56,52,46,55,55,52,51,50,50,44,51,56,46,54,49,56,53,57,52,93,44,91,45,56,52,46,55,56,53,55,56,56,44,51,56,46,55,50,48,52,53,57,93,44,91,45,56,52,46,57,51,52,53,51,54,44,51,56,46,54,54,50,49,51,93,44,91,45,56,53,46,48,55,52,53,56,51,44,51,56,46,53,57,54,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,80,101,109,105,115,99,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,51,49,44,34,98,101,100,115,34,58,49,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,54,49,51,49,44,51,54,46,51,56,56,56,48,51,93,44,91,45,56,57,46,57,53,57,51,55,54,44,51,53,46,57,57,57,49,51,49,93,44,91,45,56,57,46,55,51,51,48,57,53,44,51,54,46,48,48,48,54,48,56,93,44,91,45,56,57,46,54,50,57,52,53,51,44,51,54,46,49,56,53,51,56,50,93,44,91,45,56,57,46,53,51,54,52,52,49,44,51,54,46,50,55,50,56,50,55,93,44,91,45,56,57,46,53,52,53,48,48,54,44,51,54,46,51,51,54,56,48,57,93,44,91,45,56,57,46,54,49,49,51,48,56,44,51,54,46,52,49,49,50,55,51,93,44,91,45,56,57,46,57,54,49,51,49,44,51,54,46,51,56,56,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,78,97,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,52,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,56,54,53,56,52,44,52,49,46,51,57,51,56,57,56,93,44,91,45,57,56,46,50,55,53,52,48,56,44,52,49,46,50,54,52,51,52,49,93,44,91,45,57,56,46,48,53,51,49,51,55,44,52,49,46,50,57,51,49,50,51,93,44,91,45,57,55,46,55,48,53,52,57,55,44,52,49,46,51,48,57,49,51,52,93,44,91,45,57,55,46,55,48,51,55,54,53,44,52,49,46,51,57,52,56,55,54,93,44,91,45,57,55,46,55,48,51,54,50,55,44,52,49,46,53,50,54,55,57,54,93,44,91,45,57,55,46,56,50,57,56,52,54,44,52,49,46,53,50,54,49,55,52,93,44,91,45,57,56,46,48,57,57,53,50,51,44,52,49,46,52,56,48,55,55,55,93,44,91,45,57,56,46,50,57,49,51,52,52,44,52,49,46,52,56,48,55,50,55,93,44,91,45,57,56,46,50,57,49,52,49,57,44,52,49,46,51,57,51,56,57,52,93,44,91,45,57,56,46,50,56,54,53,56,52,44,52,49,46,51,57,51,56,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,56,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,56,34,44,34,78,65,77,69,34,58,34,77,101,110,111,109,105,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,52,49,49,53,57,44,52,53,46,49,49,55,51,52,54,93,44,91,45,56,56,46,57,56,50,49,53,57,44,52,53,46,49,49,56,48,50,54,93,44,91,45,56,56,46,57,56,49,54,56,44,52,53,46,48,50,56,57,49,55,93,44,91,45,56,56,46,57,56,49,51,49,57,44,52,52,46,57,52,50,55,52,53,93,44,91,45,56,56,46,55,51,53,53,52,56,44,52,52,46,57,52,51,49,55,56,93,44,91,45,56,56,46,55,51,54,49,57,52,44,52,52,46,56,53,54,51,55,54,93,44,91,45,56,56,46,52,56,57,49,52,57,44,52,52,46,56,53,53,52,52,53,93,44,91,45,56,56,46,52,56,51,55,51,50,44,52,53,46,49,49,54,56,56,55,93,44,91,45,56,56,46,54,52,49,49,53,57,44,52,53,46,49,49,55,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,54,53,34,44,34,78,65,77,69,34,58,34,80,97,110,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,52,52,48,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,57,49,56,49,56,44,51,50,46,51,57,52,49,51,55,93,44,91,45,57,52,46,53,56,48,53,44,51,50,46,50,48,49,51,54,51,93,44,91,45,57,52,46,53,57,57,57,55,56,44,51,49,46,57,55,51,49,57,51,93,44,91,45,57,52,46,53,49,49,52,51,49,44,51,49,46,57,55,51,57,56,52,93,44,91,45,57,52,46,48,49,53,54,51,44,51,49,46,57,55,57,56,53,54,93,44,91,45,57,52,46,48,52,50,53,57,56,44,51,50,46,49,57,54,48,48,53,93,44,91,45,57,52,46,48,52,50,57,48,49,44,51,50,46,51,57,50,50,56,51,93,44,91,45,57,52,46,51,53,52,50,57,52,44,51,50,46,51,50,57,50,48,57,93,44,91,45,57,52,46,52,57,49,56,49,56,44,51,50,46,51,57,52,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,97,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,55,55,57,50,52,44,51,56,46,49,57,50,49,49,56,93,44,91,45,56,51,46,56,56,49,51,53,51,44,51,56,46,49,51,54,53,49,55,93,44,91,45,56,51,46,55,53,57,52,51,44,51,55,46,57,57,56,55,51,49,93,44,91,45,56,51,46,52,57,56,56,52,54,44,51,56,46,48,53,48,54,50,93,44,91,45,56,51,46,54,51,53,49,57,53,44,51,56,46,49,56,55,53,50,53,93,44,91,45,56,51,46,56,52,56,51,53,53,44,51,56,46,50,57,54,57,52,57,93,44,91,45,56,51,46,57,55,55,57,50,52,44,51,56,46,49,57,50,49,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,56,54,51,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,50,56,53,49,50,44,51,50,46,48,56,52,52,55,53,93,44,91,45,57,54,46,48,53,50,55,56,54,44,51,50,46,48,48,53,56,57,53,93,44,91,45,57,53,46,57,56,51,52,52,57,44,51,49,46,55,56,57,57,55,57,93,44,91,45,57,53,46,56,55,53,57,51,55,44,51,49,46,55,53,53,53,48,51,93,44,91,45,57,53,46,55,56,55,51,44,51,49,46,54,49,56,51,56,53,93,44,91,45,57,53,46,55,51,57,50,55,57,44,51,49,46,53,48,52,48,53,54,93,44,91,45,57,53,46,54,53,49,55,54,52,44,51,49,46,53,52,49,55,57,49,93,44,91,45,57,53,46,50,55,51,50,48,51,44,51,49,46,53,57,50,56,56,54,93,44,91,45,57,53,46,50,56,57,54,54,49,44,51,49,46,54,56,51,57,57,55,93,44,91,45,57,53,46,51,54,54,49,56,55,44,51,49,46,55,50,54,55,53,51,93,44,91,45,57,53,46,52,52,54,48,50,52,44,51,49,46,56,52,55,57,56,55,93,44,91,45,57,53,46,52,50,56,53,49,50,44,51,50,46,48,56,52,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,97,114,111,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,49,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,55,48,50,57,55,44,51,56,46,50,52,54,53,55,54,93,44,91,45,55,55,46,54,52,50,53,49,56,44,51,55,46,57,57,48,54,56,56,93,44,91,45,55,55,46,51,52,53,50,49,53,44,51,55,46,55,56,57,49,55,53,93,44,91,45,55,55,46,49,56,49,52,49,56,44,51,55,46,56,57,49,54,53,52,93,44,91,45,55,55,46,48,55,48,49,49,53,44,51,55,46,57,54,52,55,55,93,44,91,45,55,55,46,49,55,48,49,44,51,56,46,48,55,57,53,52,51,93,44,91,45,55,55,46,49,49,53,57,57,55,44,51,56,46,49,52,57,57,51,49,93,44,91,45,55,55,46,51,50,54,54,57,50,44,51,56,46,50,52,53,49,51,54,93,44,91,45,55,55,46,51,55,48,50,57,55,44,51,56,46,50,52,54,53,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,83,105,111,117,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,56,50,53,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,53,52,57,54,57,44,52,51,46,50,53,57,57,53,49,93,44,91,45,57,54,46,52,55,54,55,50,57,44,52,51,46,50,50,49,57,56,55,93,44,91,45,57,54,46,52,53,52,49,51,44,52,51,46,48,56,51,51,56,93,44,91,45,57,54,46,53,49,51,54,56,49,44,52,51,46,48,52,55,48,51,93,44,91,45,57,54,46,53,51,56,52,53,56,44,52,50,46,57,48,56,55,55,49,93,44,91,45,57,53,46,56,53,57,51,55,55,44,52,50,46,57,48,57,48,57,55,93,44,91,45,57,53,46,56,54,49,57,49,52,44,52,51,46,50,53,55,53,54,54,93,44,91,45,57,54,46,53,53,52,57,54,57,44,52,51,46,50,53,57,57,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,71,108,101,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,57,55,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,57,51,55,54,53,52,44,51,57,46,55,57,56,49,53,54,93,44,91,45,49,50,50,46,56,56,53,51,53,50,44,51,57,46,53,56,48,49,48,56,93,44,91,45,49,50,50,46,55,51,53,54,51,57,44,51,57,46,53,56,48,54,54,56,93,44,91,45,49,50,50,46,55,51,57,48,54,50,44,51,57,46,51,56,51,50,54,54,93,44,91,45,49,50,50,46,49,51,54,48,48,54,44,51,57,46,51,56,53,52,57,52,93,44,91,45,49,50,50,46,48,48,56,56,53,55,44,51,57,46,52,49,51,53,54,55,93,44,91,45,49,50,49,46,56,57,48,48,49,51,44,51,57,46,51,56,51,56,54,52,93,44,91,45,49,50,49,46,56,53,54,53,51,50,44,51,57,46,53,51,54,57,48,52,93,44,91,45,49,50,49,46,57,57,52,48,50,49,44,51,57,46,53,51,51,57,50,54,93,44,91,45,49,50,49,46,57,55,52,55,57,52,44,51,57,46,54,55,53,52,56,55,93,44,91,45,49,50,50,46,48,52,54,52,55,49,44,51,57,46,55,57,55,54,52,56,93,44,91,45,49,50,50,46,57,51,55,54,53,52,44,51,57,46,55,57,56,49,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,53,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,49,48,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,111,117,105,115,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,49,50,55,51,44,34,98,101,100,115,34,58,50,56,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,54,54,53,55,52,44,51,56,46,55,55,50,52,52,56,93,44,91,45,57,48,46,50,53,49,55,52,53,44,51,56,46,55,49,56,56,56,55,93,44,91,45,57,48,46,51,50,48,53,48,52,44,51,56,46,53,57,52,49,55,55,93,44,91,45,57,48,46,50,53,55,52,49,51,44,51,56,46,53,51,49,56,53,50,93,44,91,45,57,48,46,49,56,49,53,52,51,44,51,56,46,54,54,48,48,54,50,93,44,91,45,57,48,46,49,54,54,53,55,52,44,51,56,46,55,55,50,52,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,70,97,110,110,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,50,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,50,49,56,50,49,44,51,52,46,57,56,56,52,48,56,93,44,91,45,56,52,46,54,50,49,52,56,51,44,51,52,46,57,56,56,51,50,57,93,44,91,45,56,52,46,54,49,56,54,51,55,44,51,52,46,56,53,53,51,57,56,93,44,91,45,56,52,46,52,50,57,48,57,51,44,51,52,46,56,53,53,48,51,54,93,44,91,45,56,52,46,51,49,52,54,53,51,44,51,52,46,56,48,55,51,50,56,93,44,91,45,56,52,46,49,57,54,55,53,52,44,51,52,46,54,49,55,57,50,52,93,44,91,45,56,52,46,49,56,56,53,53,55,44,51,52,46,54,48,50,54,57,50,93,44,91,45,56,52,46,49,53,56,48,51,53,44,51,52,46,54,52,56,50,52,51,93,44,91,45,56,52,46,49,48,51,54,51,44,51,52,46,55,50,55,56,51,55,93,44,91,45,56,52,46,49,50,57,52,52,56,44,51,52,46,57,56,55,53,49,52,93,44,91,45,56,52,46,51,50,49,56,50,49,44,51,52,46,57,56,56,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,50,54,50,52,52,44,52,53,46,50,57,55,54,52,55,93,44,91,45,57,55,46,50,50,54,50,56,49,44,52,53,46,49,53,49,56,50,54,93,44,91,45,57,54,46,56,56,51,57,52,56,44,52,53,46,49,53,48,50,50,52,93,44,91,45,57,54,46,56,56,50,51,52,53,44,52,52,46,57,55,54,56,55,93,44,91,45,57,54,46,52,53,50,48,51,53,44,52,52,46,57,55,55,54,53,93,44,91,45,57,54,46,52,53,50,57,52,55,44,52,53,46,50,54,56,57,50,53,93,44,91,45,57,54,46,52,55,48,52,55,53,44,52,53,46,51,50,54,53,52,53,93,44,91,45,57,54,46,57,57,50,57,52,54,44,52,53,46,51,50,54,56,56,93,44,91,45,57,55,46,50,50,54,50,52,52,44,52,53,46,50,57,55,54,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,57,53,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,55,56,55,55,56,44,52,53,46,57,51,53,56,54,51,93,44,91,45,57,55,46,57,55,57,53,57,50,44,52,53,46,53,56,56,52,56,51,93,44,91,45,57,55,46,51,55,51,51,54,54,44,52,53,46,53,56,55,54,51,52,93,44,91,45,57,55,46,50,50,55,48,56,57,44,52,53,46,53,53,56,49,53,56,93,44,91,45,57,55,46,50,50,56,50,57,49,44,52,53,46,57,51,53,51,56,51,93,44,91,45,57,55,46,57,55,56,55,55,56,44,52,53,46,57,51,53,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,84,104,117,114,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,54,56,52,44,34,98,101,100,115,34,58,52,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,50,48,49,56,57,49,44,52,55,46,48,56,53,48,53,57,93,44,91,45,49,50,51,46,49,53,56,51,54,52,44,52,54,46,57,57,53,56,55,49,93,44,91,45,49,50,51,46,49,54,48,53,56,56,44,52,54,46,55,57,51,51,56,51,93,44,91,45,49,50,51,46,49,54,48,57,48,57,44,52,54,46,55,54,52,51,51,93,44,91,45,49,50,50,46,50,48,51,49,49,53,44,52,54,46,55,54,51,48,54,49,93,44,91,45,49,50,50,46,52,57,48,56,56,56,44,52,54,46,56,54,55,52,53,50,93,44,91,45,49,50,50,46,54,51,56,50,49,49,44,52,54,46,57,55,56,49,51,57,93,44,91,45,49,50,50,46,56,50,48,53,55,54,44,52,55,46,49,57,52,50,50,93,44,91,45,49,50,51,46,48,48,50,52,51,53,44,52,55,46,49,53,49,51,48,50,93,44,91,45,49,50,51,46,48,55,53,48,50,54,44,52,55,46,48,56,52,55,56,55,93,44,91,45,49,50,51,46,50,48,49,56,57,49,44,52,55,46,48,56,53,48,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,54,48,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,56,52,57,50,49,44,52,50,46,56,53,48,51,54,56,93,44,91,45,57,55,46,54,51,53,52,52,44,52,50,46,56,53,49,53,51,50,93,44,91,45,57,55,46,56,55,53,53,51,49,44,52,50,46,56,53,56,54,53,54,93,44,91,45,57,56,46,48,49,51,48,55,50,44,52,50,46,55,54,50,50,49,57,93,44,91,45,57,56,46,49,53,51,49,48,55,44,52,50,46,56,51,56,57,56,54,93,44,91,45,57,56,46,51,48,57,55,55,49,44,52,50,46,56,56,50,54,48,53,93,44,91,45,57,56,46,51,48,53,49,52,57,44,52,50,46,55,54,49,50,48,55,93,44,91,45,57,56,46,51,48,48,50,51,53,44,52,50,46,52,51,54,57,49,51,93,44,91,45,57,55,46,56,51,52,52,51,49,44,52,50,46,52,51,55,54,56,52,93,44,91,45,57,55,46,52,56,53,50,57,56,44,52,50,46,52,51,56,53,55,56,93,44,91,45,57,55,46,52,56,52,57,50,49,44,52,50,46,56,53,48,51,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,86,97,108,101,110,99,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,57,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,49,49,55,56,49,44,51,52,46,56,55,48,50,53,50,93,44,91,45,49,48,54,46,52,50,57,52,56,54,44,51,52,46,57,48,51,52,93,44,91,45,49,48,54,46,54,56,53,56,48,49,44,51,52,46,57,48,54,51,53,56,93,44,91,45,49,48,54,46,55,50,48,54,54,54,44,51,52,46,56,55,48,48,53,51,93,44,91,45,49,48,55,46,48,50,52,52,56,49,44,51,52,46,56,54,57,57,53,51,93,44,91,45,49,48,55,46,48,54,54,53,54,50,44,51,52,46,57,53,55,49,57,93,44,91,45,49,48,55,46,50,48,50,56,56,50,44,51,52,46,57,53,55,53,55,50,93,44,91,45,49,48,55,46,50,48,49,55,52,51,44,51,52,46,53,55,56,55,53,55,93,44,91,45,49,48,54,46,56,56,50,56,49,51,44,51,52,46,53,55,57,54,50,56,93,44,91,45,49,48,54,46,55,54,56,50,56,49,44,51,52,46,53,51,49,50,54,50,93,44,91,45,49,48,54,46,52,49,54,57,50,52,44,51,52,46,52,51,57,54,56,55,93,44,91,45,49,48,54,46,52,54,57,55,57,44,51,52,46,53,50,49,50,49,55,93,44,91,45,49,48,54,46,52,54,51,56,54,56,44,51,52,46,56,55,48,49,57,52,93,44,91,45,49,48,54,46,52,49,49,55,56,49,44,51,52,46,56,55,48,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,80,114,97,105,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,50,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,56,54,53,56,53,44,52,54,46,56,54,48,50,57,93,44,91,45,49,48,53,46,56,51,50,54,55,52,44,52,54,46,56,54,48,56,50,93,44,91,45,49,48,53,46,54,49,56,49,53,56,44,52,54,46,56,51,50,49,52,56,93,44,91,45,49,48,53,46,53,55,54,48,54,51,44,52,54,46,54,53,56,48,48,51,93,44,91,45,49,48,53,46,52,52,57,49,57,54,44,52,54,46,53,55,48,57,54,55,93,44,91,45,49,48,53,46,50,51,57,50,51,56,44,52,54,46,53,52,49,49,56,56,93,44,91,45,49,48,52,46,57,56,52,55,49,52,44,52,54,46,53,52,48,51,56,57,93,44,91,45,49,48,52,46,55,51,51,48,53,57,44,52,54,46,54,49,50,54,57,53,93,44,91,45,49,48,52,46,54,48,54,57,48,51,44,52,54,46,54,56,52,57,50,52,93,44,91,45,49,48,52,46,54,48,51,55,54,54,44,52,54,46,56,54,48,56,53,51,93,44,91,45,49,48,53,46,48,50,55,53,50,54,44,52,54,46,56,54,49,52,53,55,93,44,91,45,49,48,53,46,49,57,54,55,51,53,44,52,54,46,57,55,55,49,55,50,93,44,91,45,49,48,53,46,51,50,52,55,53,55,44,52,54,46,57,55,55,49,57,54,93,44,91,45,49,48,53,46,51,50,52,56,53,51,44,52,55,46,49,56,49,52,57,54,93,44,91,45,49,48,53,46,52,48,54,51,48,57,44,52,55,46,49,56,49,53,56,51,93,44,91,45,49,48,53,46,56,51,51,48,52,52,44,52,55,46,49,56,49,48,57,50,93,44,91,45,49,48,53,46,57,53,57,56,57,55,44,52,55,46,48,57,50,57,54,56,93,44,91,45,49,48,54,46,48,56,54,55,55,55,44,52,55,46,49,56,48,57,51,56,93,44,91,45,49,48,54,46,48,56,54,53,56,53,44,52,54,46,56,54,48,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,108,108,97,109,97,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,49,48,56,51,53,44,52,51,46,53,48,48,54,53,55,93,44,91,45,57,49,46,54,48,53,51,48,55,44,52,51,46,48,56,49,54,53,51,93,44,91,45,57,49,46,49,55,55,50,50,50,44,52,51,46,48,56,48,50,52,55,93,44,91,45,57,49,46,48,53,55,57,49,44,52,51,46,50,53,51,57,54,56,93,44,91,45,57,49,46,50,48,49,56,52,55,44,52,51,46,51,52,57,49,48,51,93,44,91,45,57,49,46,50,48,53,53,53,44,52,51,46,52,50,50,57,52,57,93,44,91,45,57,49,46,50,49,55,55,48,54,44,52,51,46,53,48,48,53,53,93,44,91,45,57,49,46,54,49,48,56,51,53,44,52,51,46,53,48,48,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,67,97,109,101,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,49,55,53,48,44,34,98,101,100,115,34,58,49,51,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,54,55,50,53,53,44,50,54,46,52,49,50,55,49,53,93,44,91,45,57,55,46,51,56,54,53,48,53,44,50,54,46,52,49,48,52,51,55,93,44,91,45,57,55,46,53,50,55,53,56,50,44,50,54,46,50,57,57,51,48,52,93,44,91,45,57,55,46,56,54,49,56,55,53,44,50,54,46,51,52,56,49,53,54,93,44,91,45,57,55,46,56,54,49,56,50,50,44,50,54,46,48,54,57,57,50,49,93,44,91,45,57,55,46,54,54,55,52,50,50,44,50,54,46,48,50,57,48,55,51,93,44,91,45,57,55,46,53,50,48,56,49,50,44,50,53,46,56,56,54,93,44,91,45,57,55,46,51,55,51,49,56,55,44,50,53,46,56,51,57,57,53,54,93,44,91,45,57,55,46,50,55,54,55,48,49,44,50,53,46,57,53,50,49,52,54,93,44,91,45,57,55,46,48,57,49,49,50,49,44,50,53,46,57,55,51,56,52,93,44,91,45,57,55,46,49,50,54,49,50,49,44,50,54,46,50,53,48,51,53,49,93,44,91,45,57,55,46,49,54,55,50,53,53,44,50,54,46,52,49,50,55,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,51,57,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,52,52,53,44,34,98,101,100,115,34,58,49,55,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,48,52,51,48,54,44,51,48,46,50,52,53,53,55,93,44,91,45,57,53,46,56,48,51,51,51,44,51,48,46,48,57,48,48,57,54,93,44,91,45,57,53,46,54,48,49,49,51,50,44,51,48,46,49,51,50,55,56,93,44,91,45,57,53,46,52,50,52,50,49,54,44,51,48,46,49,49,53,52,57,49,93,44,91,45,57,53,46,50,54,52,49,51,56,44,51,48,46,48,51,50,48,54,57,93,44,91,45,57,53,46,48,57,54,55,48,56,44,51,48,46,49,54,55,50,49,52,93,44,91,45,57,53,46,49,54,53,56,57,55,44,51,48,46,51,52,52,57,55,54,93,44,91,45,57,53,46,51,48,56,51,57,53,44,51,48,46,52,48,53,55,53,93,44,91,45,57,53,46,51,53,57,49,53,54,44,51,48,46,53,48,52,51,54,57,93,44,91,45,57,53,46,53,57,56,57,55,49,44,51,48,46,53,48,57,48,48,50,93,44,91,45,57,53,46,56,51,48,50,52,44,51,48,46,54,51,48,50,56,52,93,44,91,45,57,53,46,56,48,52,51,48,54,44,51,48,46,50,52,53,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,76,97,115,32,65,110,105,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,55,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,51,53,49,49,48,57,44,51,55,46,56,49,55,52,56,56,93,44,91,45,49,48,52,46,52,53,52,57,51,44,51,55,46,55,52,48,56,51,57,93,44,91,45,49,48,52,46,53,52,56,54,53,50,44,51,55,46,53,55,52,55,93,44,91,45,49,48,52,46,55,52,56,52,52,55,44,51,55,46,52,48,55,52,51,55,93,44,91,45,49,48,52,46,57,57,53,53,48,53,44,51,55,46,51,55,53,53,53,49,93,44,91,45,49,48,53,46,49,53,52,49,55,54,44,51,55,46,50,57,51,49,50,57,93,44,91,45,49,48,53,46,49,53,53,48,52,50,44,51,54,46,57,57,53,50,54,50,93,44,91,45,49,48,52,46,48,48,55,56,53,49,44,51,54,46,57,57,54,49,51,52,93,44,91,45,49,48,51,46,48,56,54,49,48,50,44,51,55,46,48,48,48,49,56,56,93,44,91,45,49,48,51,46,48,55,53,57,51,56,44,51,55,46,54,52,51,52,50,93,44,91,45,49,48,51,46,52,48,52,51,51,57,44,51,55,46,54,52,51,53,55,54,93,44,91,45,49,48,52,46,48,53,56,49,57,54,44,51,55,46,54,52,52,48,52,57,93,44,91,45,49,48,52,46,48,54,49,49,51,50,44,51,55,46,55,51,52,55,48,52,93,44,91,45,49,48,52,46,51,53,49,49,48,57,44,51,55,46,56,49,55,52,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,57,34,44,34,78,65,77,69,34,58,34,76,108,97,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,52,48,44,34,98,101,100,115,34,58,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,54,52,54,49,50,44,51,48,46,57,50,49,51,54,56,93,44,91,45,57,56,46,57,54,52,50,51,50,44,51,48,46,52,57,56,52,56,50,93,44,91,45,57,56,46,53,57,49,54,55,44,51,48,46,52,57,57,56,55,53,93,44,91,45,57,56,46,51,53,49,48,52,49,44,51,48,46,52,56,54,48,57,54,93,44,91,45,57,56,46,52,49,56,53,57,52,44,51,48,46,54,52,53,57,50,54,93,44,91,45,57,56,46,51,57,51,54,52,54,44,51,48,46,56,52,50,57,54,93,44,91,45,57,56,46,52,52,53,55,56,50,44,51,48,46,57,50,49,52,51,57,93,44,91,45,57,56,46,57,54,52,54,49,50,44,51,48,46,57,50,49,51,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,57,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,48,51,57,57,54,44,51,48,46,52,57,57,56,51,50,93,44,91,45,57,56,46,57,54,52,50,51,50,44,51,48,46,52,57,56,52,56,50,93,44,91,45,57,56,46,57,54,52,54,49,50,44,51,48,46,57,50,49,51,54,56,93,44,91,45,57,57,46,48,57,50,51,49,55,44,51,48,46,57,52,49,48,48,50,93,44,91,45,57,57,46,52,56,52,55,53,53,44,51,48,46,57,52,48,54,48,53,93,44,91,45,57,57,46,52,56,51,56,54,57,44,51,48,46,55,49,48,55,55,49,93,44,91,45,57,57,46,52,56,52,52,57,51,44,51,48,46,52,57,57,54,52,49,93,44,91,45,57,57,46,51,48,51,57,57,54,44,51,48,46,52,57,57,56,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,51,54,51,57,53,44,51,52,46,57,56,55,53,54,52,93,44,91,45,56,51,46,53,52,57,51,55,54,44,51,52,46,57,57,50,51,57,51,93,44,91,45,56,51,46,52,56,50,57,52,57,44,51,52,46,57,57,51,51,48,49,93,44,91,45,56,51,46,54,52,56,52,53,53,44,51,53,46,49,53,50,56,57,54,93,44,91,45,56,51,46,55,51,56,49,50,57,44,51,53,46,49,53,53,57,53,93,44,91,45,56,51,46,56,52,48,55,51,51,44,51,53,46,49,52,51,56,52,49,93,44,91,45,56,52,46,48,48,53,49,51,50,44,51,52,46,57,56,55,49,55,53,93,44,91,45,56,51,46,57,51,54,51,57,53,44,51,52,46,57,56,55,53,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,50,50,55,44,34,98,101,100,115,34,58,49,48,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,51,54,55,48,53,53,44,52,49,46,53,57,48,57,55,55,93,44,91,45,55,52,46,52,56,52,51,54,55,44,52,49,46,53,48,52,50,51,53,93,44,91,45,55,52,46,55,53,50,51,57,57,44,52,49,46,52,57,51,55,52,51,93,44,91,45,55,52,46,55,53,52,54,57,44,52,49,46,52,50,52,57,55,51,93,44,91,45,55,52,46,54,57,52,57,49,52,44,52,49,46,51,53,55,52,50,51,93,44,91,45,55,52,46,51,54,55,53,49,44,52,49,46,50,48,51,50,52,49,93,44,91,45,55,52,46,50,51,52,50,56,56,44,52,49,46,49,52,51,48,48,56,93,44,91,45,55,51,46,57,56,49,51,56,52,44,52,49,46,51,50,52,54,57,51,93,44,91,45,55,51,46,57,56,49,52,56,54,44,52,49,46,52,51,56,57,48,53,93,44,91,45,55,51,46,57,53,51,51,48,55,44,52,49,46,53,56,57,57,55,55,93,44,91,45,55,52,46,51,54,55,48,53,53,44,52,49,46,53,57,48,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,83,99,104,101,110,101,99,116,97,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,56,56,51,44,34,98,101,100,115,34,58,52,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,49,56,48,50,55,52,44,52,50,46,55,50,57,57,55,57,93,44,91,45,55,51,46,56,48,57,51,54,57,44,52,50,46,55,55,56,56,54,57,93,44,91,45,55,52,46,48,48,53,54,53,54,44,52,50,46,57,51,51,52,56,52,93,44,91,45,55,52,46,48,57,50,57,56,44,52,50,46,57,53,53,56,54,56,93,44,91,45,55,52,46,48,56,51,56,56,51,44,52,50,46,56,57,55,51,53,52,93,44,91,45,55,52,46,50,54,51,51,49,52,44,52,50,46,55,57,54,53,51,52,93,44,91,45,55,52,46,49,56,48,50,55,52,44,52,50,46,55,50,57,57,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,77,105,110,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,55,52,49,44,34,98,101,100,115,34,58,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,51,51,49,51,54,44,51,55,46,55,52,48,56,52,56,93,44,91,45,56,50,46,49,49,55,51,48,52,44,51,55,46,53,53,57,50,50,54,93,44,91,45,56,49,46,57,54,56,48,49,50,44,51,55,46,53,51,56,48,51,53,93,44,91,45,56,49,46,57,50,55,54,56,49,44,51,55,46,53,49,50,49,49,51,93,44,91,45,56,49,46,56,53,53,57,51,57,44,51,55,46,53,52,56,57,49,93,44,91,45,56,49,46,56,48,50,57,51,55,44,51,55,46,54,54,48,53,48,56,93,44,91,45,56,50,46,48,55,57,57,52,49,44,51,55,46,55,48,48,49,50,50,93,44,91,45,56,50,46,49,57,48,54,53,56,44,51,55,46,57,55,52,55,55,56,93,44,91,45,56,50,46,51,48,54,51,57,49,44,51,55,46,57,52,51,54,52,93,44,91,45,56,50,46,52,49,52,55,53,55,44,51,55,46,56,53,53,53,48,57,93,44,91,45,56,50,46,51,51,51,49,51,54,44,51,55,46,55,52,48,56,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,87,97,98,97,117,110,115,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,56,57,48,52,54,44,51,57,46,49,55,50,56,55,56,93,44,91,45,57,54,46,51,57,48,55,57,54,44,51,57,46,48,52,51,50,53,55,93,44,91,45,57,54,46,53,48,49,49,54,54,44,51,57,46,48,52,51,54,54,54,93,44,91,45,57,54,46,53,48,49,53,53,54,44,51,56,46,56,54,57,55,48,52,93,44,91,45,57,54,46,51,57,48,51,57,56,44,51,56,46,56,50,53,56,53,56,93,44,91,45,57,54,46,51,53,50,54,49,51,44,51,56,46,55,51,57,48,50,49,93,44,91,45,57,53,46,57,52,53,57,50,52,44,51,56,46,55,51,57,49,49,50,93,44,91,45,57,53,46,57,52,54,53,56,55,44,51,56,46,56,54,57,57,55,51,93,44,91,45,57,53,46,57,52,54,55,53,52,44,51,57,46,48,57,56,54,56,53,93,44,91,45,57,54,46,48,51,57,48,54,44,51,57,46,49,50,54,53,50,55,93,44,91,45,57,54,46,48,56,51,53,53,55,44,51,57,46,49,57,51,53,48,52,93,44,91,45,57,54,46,50,51,51,54,55,49,44,51,57,46,50,49,50,50,55,57,93,44,91,45,57,54,46,51,56,57,48,52,54,44,51,57,46,49,55,50,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,72,111,117,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,51,48,52,50,52,44,52,51,46,56,52,54,57,51,53,93,44,91,45,57,49,46,55,51,48,50,49,55,44,52,51,46,53,48,48,56,48,54,93,44,91,45,57,49,46,54,49,48,56,51,53,44,52,51,46,53,48,48,54,53,55,93,44,91,45,57,49,46,50,49,55,55,48,54,44,52,51,46,53,48,48,53,53,93,44,91,45,57,49,46,50,54,56,55,52,56,44,52,51,46,54,49,53,51,52,56,93,44,91,45,57,49,46,50,53,55,56,51,57,44,52,51,46,55,50,53,54,54,49,93,44,91,45,57,49,46,50,56,52,49,51,56,44,52,51,46,56,52,55,48,54,53,93,44,91,45,57,49,46,55,51,48,52,50,52,44,52,51,46,56,52,54,57,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,78,105,99,104,111,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,57,52,48,53,44,51,56,46,51,55,49,55,53,93,44,91,45,56,52,46,48,54,50,54,57,49,44,51,56,46,50,51,53,50,48,51,93,44,91,45,56,51,46,57,55,55,57,50,52,44,51,56,46,49,57,50,49,49,56,93,44,91,45,56,51,46,56,52,56,51,53,53,44,51,56,46,50,57,54,57,52,57,93,44,91,45,56,51,46,57,56,48,48,54,56,44,51,56,46,52,51,57,52,52,56,93,44,91,45,56,52,46,49,48,50,49,44,51,56,46,52,53,57,51,55,57,93,44,91,45,56,52,46,49,57,52,48,53,44,51,56,46,51,55,49,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,80,108,121,109,111,117,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,50,49,51,53,44,34,98,101,100,115,34,58,55,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,48,56,48,52,56,51,44,52,50,46,48,57,53,53,51,57,93,44,91,45,55,49,46,48,52,57,52,56,53,44,52,49,46,57,54,51,48,57,52,93,44,91,45,55,48,46,56,56,54,52,51,57,44,52,49,46,55,54,48,50,51,50,93,44,91,45,55,48,46,56,51,57,49,55,53,44,52,49,46,54,49,52,55,54,49,93,44,91,45,55,48,46,55,53,50,52,50,52,44,52,49,46,53,54,53,56,53,49,93,44,91,45,55,48,46,54,50,49,54,50,50,44,52,49,46,55,52,56,57,55,50,93,44,91,45,55,48,46,51,53,53,48,48,52,44,52,50,46,48,48,48,49,48,52,93,44,91,45,55,48,46,51,50,50,53,50,50,44,52,50,46,49,49,55,57,49,53,93,44,91,45,55,48,46,54,48,56,51,56,49,44,52,50,46,49,51,56,52,55,57,93,44,91,45,55,48,46,54,57,48,51,57,51,44,52,50,46,50,55,56,57,57,57,93,44,91,45,55,48,46,54,53,56,55,50,51,44,52,50,46,51,55,53,48,57,56,93,44,91,45,55,48,46,54,55,53,54,57,44,52,50,46,51,55,53,48,57,56,93,44,91,45,55,48,46,55,50,57,50,49,50,44,52,50,46,51,55,51,56,52,56,93,44,91,45,55,48,46,56,57,52,50,57,50,44,52,50,46,51,55,50,51,57,57,93,44,91,45,55,48,46,57,54,48,49,57,50,44,52,50,46,50,57,57,52,57,56,93,44,91,45,55,48,46,57,50,52,56,55,55,44,52,50,46,49,53,55,53,56,93,44,91,45,55,49,46,48,56,48,52,56,51,44,52,50,46,48,57,53,53,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,114,111,110,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,55,56,55,50,44,34,98,101,100,115,34,58,51,52,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,49,55,57,48,53,44,52,48,46,57,49,55,53,55,55,93,44,91,45,55,51,46,57,51,51,56,48,56,44,52,48,46,56,56,50,50,49,52,93,44,91,45,55,51,46,57,49,50,52,53,54,44,52,48,46,55,57,54,48,57,54,93,44,91,45,55,51,46,55,55,56,57,53,56,44,52,48,46,56,49,49,55,49,51,93,44,91,45,55,51,46,55,52,56,48,54,44,52,48,46,56,55,49,55,50,49,93,44,91,45,55,51,46,57,49,55,57,48,53,44,52,48,46,57,49,55,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,68,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,52,49,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,48,57,48,55,56,44,51,54,46,50,52,52,57,56,52,93,44,91,45,55,53,46,56,49,51,49,48,56,44,51,54,46,50,50,51,53,54,93,44,91,45,55,53,46,55,54,52,55,50,55,44,51,54,46,48,54,48,49,51,57,93,44,91,45,55,53,46,56,52,48,48,52,54,44,51,54,46,48,50,56,56,51,52,93,44,91,45,55,53,46,57,53,52,51,55,52,44,51,53,46,57,57,48,48,54,52,93,44,91,45,55,54,46,48,48,56,51,52,56,44,51,53,46,56,57,53,56,48,50,93,44,91,45,55,54,46,48,50,55,52,55,57,44,51,53,46,54,54,56,56,52,57,93,44,91,45,55,53,46,57,48,49,51,52,50,44,51,53,46,54,54,56,57,53,50,93,44,91,45,55,53,46,56,49,52,48,50,49,44,51,53,46,53,48,48,49,56,50,93,44,91,45,55,53,46,55,51,54,54,50,44,51,53,46,49,52,48,53,54,53,93,44,91,45,55,53,46,52,55,52,54,44,51,53,46,50,48,50,48,50,57,93,44,91,45,55,53,46,52,48,48,51,57,44,51,53,46,53,57,51,53,49,50,93,44,91,45,55,53,46,52,51,55,54,49,55,44,51,53,46,55,52,54,57,54,93,44,91,45,55,53,46,55,48,57,48,55,56,44,51,54,46,50,52,52,57,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,77,101,100,105,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,50,53,55,44,34,98,101,100,115,34,58,49,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,56,52,57,53,44,52,49,46,50,55,55,49,52,54,93,44,91,45,56,49,46,56,55,56,48,53,51,44,52,49,46,50,55,53,48,52,52,93,44,91,45,56,49,46,57,55,51,56,57,53,44,52,49,46,49,57,57,56,51,49,93,44,91,45,56,50,46,49,54,57,56,55,53,44,52,49,46,49,51,55,48,57,55,93,44,91,45,56,50,46,49,55,49,52,57,50,44,52,49,46,48,54,51,53,51,55,93,44,91,45,56,50,46,49,50,57,51,51,52,44,52,48,46,57,57,49,56,48,55,93,44,91,45,56,49,46,54,56,56,52,57,49,44,52,48,46,57,56,56,53,57,93,44,91,45,56,49,46,54,56,52,57,53,44,52,49,46,50,55,55,49,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,114,109,115,116,114,111,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,51,51,49,44,34,98,101,100,115,34,58,49,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,54,57,48,55,49,49,44,52,49,46,49,55,48,54,57,49,93,44,91,45,55,57,46,54,57,50,57,51,44,52,48,46,54,54,57,55,52,52,93,44,91,45,55,57,46,54,57,50,53,56,55,44,52,48,46,54,54,57,55,51,50,93,44,91,45,55,57,46,53,54,49,49,49,44,52,48,46,53,54,52,49,49,51,93,44,91,45,55,57,46,52,53,48,49,55,54,44,52,48,46,53,51,48,49,52,57,93,44,91,45,55,57,46,50,49,53,50,49,53,44,52,48,46,55,55,53,57,52,50,93,44,91,45,55,57,46,50,49,53,51,49,44,52,48,46,57,49,49,51,52,54,93,44,91,45,55,57,46,50,49,53,50,49,52,44,52,49,46,48,53,48,53,49,53,93,44,91,45,55,57,46,51,56,53,53,51,55,44,52,48,46,57,56,57,55,54,54,93,44,91,45,55,57,46,53,57,55,48,49,51,44,52,48,46,57,57,52,51,56,56,93,44,91,45,55,57,46,54,54,53,55,54,50,44,52,49,46,48,52,57,49,50,51,93,44,91,45,55,57,46,54,57,48,55,49,49,44,52,49,46,49,55,48,54,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,116,108,97,110,116,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,56,53,51,57,44,34,98,101,100,115,34,58,56,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,57,56,53,50,55,49,44,51,57,46,53,49,52,57,54,55,93,44,91,45,55,52,46,56,53,53,57,55,56,44,51,57,46,52,50,52,50,51,56,93,44,91,45,55,52,46,56,54,49,50,57,52,44,51,57,46,51,50,51,56,49,53,93,44,91,45,55,52,46,55,53,50,49,54,53,44,51,57,46,50,57,53,48,48,53,93,44,91,45,55,52,46,52,54,52,57,51,44,51,57,46,50,57,56,50,51,93,44,91,45,55,52,46,51,54,50,53,49,51,44,51,57,46,51,50,53,55,56,49,93,44,91,45,55,52,46,50,51,50,48,54,50,44,51,57,46,52,55,53,49,57,56,93,44,91,45,55,52,46,51,56,48,55,57,54,44,51,57,46,52,57,56,53,51,55,93,44,91,45,55,52,46,52,49,55,51,57,51,44,51,57,46,53,53,55,50,53,53,93,44,91,45,55,52,46,54,53,57,50,57,53,44,51,57,46,54,51,49,50,51,51,93,44,91,45,55,52,46,55,51,54,50,49,54,44,51,57,46,55,50,57,55,55,53,93,44,91,45,55,52,46,56,55,55,50,54,44,51,57,46,54,48,56,51,53,50,93,44,91,45,55,52,46,57,56,53,50,55,49,44,51,57,46,53,49,52,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,77,97,110,105,116,111,119,111,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,52,48,55,44,34,98,101,100,115,34,58,50,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,52,51,50,52,44,52,52,46,50,52,49,48,49,56,93,44,91,45,56,56,46,48,52,49,55,57,52,44,52,51,46,56,57,49,54,57,50,93,44,91,45,56,55,46,48,55,53,51,51,53,44,52,51,46,56,57,52,55,55,52,93,44,91,45,56,54,46,57,56,55,57,57,56,44,52,52,46,49,56,50,54,52,57,93,44,91,45,56,54,46,57,50,51,52,48,51,44,52,52,46,51,50,56,56,50,53,93,44,91,45,56,55,46,55,54,54,48,50,54,44,52,52,46,51,50,55,49,56,52,93,44,91,45,56,55,46,56,56,56,48,56,55,44,52,52,46,50,52,48,52,54,49,93,44,91,45,56,56,46,48,52,51,50,52,44,52,52,46,50,52,49,48,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,68,111,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,50,55,56,50,54,44,52,53,46,52,48,57,52,56,55,93,44,91,45,56,55,46,51,49,53,52,50,50,44,52,53,46,50,52,48,54,53,55,93,44,91,45,56,55,46,52,48,53,54,57,52,44,52,53,46,50,48,49,57,54,57,93,44,91,45,56,55,46,52,52,50,55,54,44,52,53,46,48,55,54,52,55,49,93,44,91,45,56,55,46,53,53,49,50,54,50,44,52,53,46,48,48,56,48,52,57,93,44,91,45,56,55,46,55,54,50,52,54,52,44,52,52,46,55,54,52,51,54,55,93,44,91,45,56,55,46,55,54,50,51,51,57,44,52,52,46,54,55,55,48,49,53,93,44,91,45,56,55,46,55,53,56,48,52,56,44,52,52,46,54,55,55,48,53,52,93,44,91,45,56,54,46,55,55,56,51,57,56,44,52,52,46,54,55,53,50,49,57,93,44,91,45,56,54,46,55,51,52,53,50,57,44,52,52,46,55,55,51,48,55,52,93,44,91,45,56,54,46,54,56,54,50,56,56,44,52,52,46,56,56,49,48,48,50,93,44,91,45,56,54,46,52,57,57,57,51,44,52,53,46,48,56,48,56,93,44,91,45,56,54,46,50,53,48,49,44,52,53,46,50,51,53,55,51,53,93,44,91,45,56,54,46,52,54,52,49,50,44,52,53,46,51,50,52,56,49,93,44,91,45,56,54,46,55,53,52,50,51,54,44,52,53,46,52,52,51,54,49,93,44,91,45,56,55,46,49,48,49,49,51,51,44,52,53,46,52,52,52,50,51,93,44,91,45,56,55,46,49,50,55,56,50,54,44,52,53,46,52,48,57,52,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,50,57,51,44,34,98,101,100,115,34,58,49,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,53,54,48,56,53,44,51,52,46,51,57,57,52,54,57,93,44,91,45,55,56,46,52,52,53,51,50,44,51,52,46,51,55,55,52,93,44,91,45,55,56,46,54,54,55,53,56,56,44,51,52,46,52,54,57,54,52,53,93,44,91,45,55,56,46,56,54,56,57,54,49,44,51,52,46,52,56,52,55,55,56,93,44,91,45,55,56,46,57,53,49,56,48,56,44,51,52,46,52,52,56,55,53,54,93,44,91,45,55,57,46,48,55,49,50,49,49,44,51,52,46,50,57,57,51,52,50,93,44,91,45,55,56,46,54,53,48,51,49,52,44,51,51,46,57,52,52,51,52,50,93,44,91,45,55,56,46,53,53,53,48,52,51,44,51,52,46,48,54,55,48,55,49,93,44,91,45,55,56,46,51,55,52,50,57,53,44,51,52,46,50,48,52,56,57,51,93,44,91,45,55,56,46,50,53,52,54,50,50,44,51,52,46,50,49,54,51,48,53,93,44,91,45,55,56,46,49,54,50,51,53,44,51,52,46,51,53,55,48,48,55,93,44,91,45,55,56,46,50,53,54,48,56,53,44,51,52,46,51,57,57,52,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,97,108,108,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,49,57,53,44,34,98,101,100,115,34,58,50,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,53,51,48,57,44,51,57,46,48,51,53,48,55,57,93,44,91,45,56,50,46,52,53,53,49,55,57,44,51,56,46,56,52,52,53,55,55,93,44,91,45,56,50,46,53,55,53,53,56,51,44,51,56,46,56,52,52,52,55,56,93,44,91,45,56,50,46,52,56,51,53,55,57,44,51,56,46,55,55,50,50,55,56,93,44,91,45,56,50,46,52,55,50,52,55,56,44,51,56,46,54,56,50,50,55,57,93,44,91,45,56,50,46,51,53,52,52,54,56,44,51,56,46,54,55,54,48,55,93,44,91,45,56,50,46,50,56,55,50,55,44,51,56,46,53,56,50,55,56,51,93,44,91,45,56,50,46,50,49,56,57,54,55,44,51,56,46,53,57,49,54,56,51,93,44,91,45,56,50,46,49,55,49,57,54,54,44,51,56,46,54,50,53,51,56,52,93,44,91,45,56,50,46,50,50,49,53,54,54,44,51,56,46,55,56,55,49,56,55,93,44,91,45,56,50,46,49,52,52,49,54,55,44,51,56,46,56,52,49,56,56,93,44,91,45,56,50,46,48,57,56,57,54,53,44,51,56,46,57,53,56,51,55,56,93,44,91,45,56,50,46,48,57,53,52,54,53,44,51,57,46,48,48,50,55,55,56,93,44,91,45,56,50,46,51,50,50,56,55,52,44,51,57,46,48,50,55,54,55,52,93,44,91,45,56,50,46,52,51,53,51,48,57,44,51,57,46,48,51,53,48,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,52,49,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,51,52,56,44,34,98,101,100,115,34,58,49,48,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,50,57,53,55,57,44,51,50,46,53,49,52,54,53,55,93,44,91,45,49,48,48,46,49,52,54,53,52,51,44,51,50,46,53,50,50,55,57,51,93,44,91,45,49,48,48,46,49,53,49,57,49,49,44,51,50,46,48,56,50,54,51,56,93,44,91,45,57,57,46,55,49,51,57,55,49,44,51,50,46,48,56,50,48,56,57,93,44,91,45,57,57,46,54,51,49,52,49,51,44,51,50,46,48,56,49,50,55,52,93,44,91,45,57,57,46,54,50,57,53,55,57,44,51,50,46,53,49,52,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,55,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,55,48,34,44,34,78,65,77,69,34,58,34,67,111,108,111,110,105,97,108,32,72,101,105,103,104,116,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,48,51,54,55,49,44,51,55,46,50,51,55,51,52,54,93,44,91,45,55,55,46,51,56,50,53,50,49,44,51,55,46,50,52,50,56,51,55,93,44,91,45,55,55,46,51,55,57,49,57,51,44,51,55,46,50,54,55,53,56,93,44,91,45,55,55,46,51,56,56,57,49,55,44,51,55,46,50,56,55,51,52,57,93,44,91,45,55,55,46,52,49,52,52,48,54,44,51,55,46,50,54,48,57,52,57,93,44,91,45,55,55,46,52,49,54,53,48,49,44,51,55,46,50,51,51,50,48,56,93,44,91,45,55,55,46,52,48,51,54,55,49,44,51,55,46,50,51,55,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,115,104,111,99,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,53,55,52,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,56,52,54,48,55,44,52,48,46,52,53,54,50,56,93,44,91,45,56,50,46,49,57,53,57,49,49,44,52,48,46,50,51,57,48,55,49,93,44,91,45,56,50,46,49,56,55,49,48,53,44,52,48,46,49,54,54,56,56,93,44,91,45,56,49,46,55,49,54,50,55,54,44,52,48,46,49,53,50,49,54,54,93,44,91,45,56,49,46,54,50,50,54,56,51,44,52,48,46,50,50,49,51,48,56,93,44,91,45,56,49,46,54,49,54,48,51,44,52,48,46,51,54,56,49,49,56,93,44,91,45,56,49,46,55,48,57,49,51,50,44,52,48,46,52,52,52,55,55,53,93,44,91,45,56,50,46,49,56,52,54,48,55,44,52,48,46,52,53,54,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,80,101,114,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,55,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,52,57,57,55,53,44,52,49,46,48,48,51,57,53,93,44,91,45,49,48,50,46,48,53,49,55,54,49,44,52,49,46,48,48,51,56,57,93,44,91,45,49,48,50,46,48,53,49,55,49,55,44,52,49,46,48,48,50,51,53,57,93,44,91,45,49,48,50,46,48,53,49,52,49,54,44,52,48,46,55,52,57,53,56,54,93,44,91,45,49,48,50,46,48,53,49,52,53,55,44,52,48,46,54,57,55,53,51,57,93,44,91,45,49,48,49,46,51,52,53,51,54,53,44,52,48,46,54,57,56,48,57,51,93,44,91,45,49,48,49,46,50,52,55,57,54,51,44,52,48,46,54,57,55,56,48,50,93,44,91,45,49,48,49,46,50,52,57,57,55,53,44,52,49,46,48,48,51,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,53,34,44,34,78,65,77,69,34,58,34,72,97,114,116,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,54,55,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,52,49,51,52,57,44,51,53,46,55,51,57,52,51,51,93,44,91,45,49,48,51,46,48,52,49,55,48,54,44,51,53,46,54,50,50,52,56,56,93,44,91,45,49,48,50,46,49,54,50,56,48,57,44,51,53,46,54,50,55,53,49,53,93,44,91,45,49,48,50,46,49,54,51,48,49,53,44,51,54,46,48,53,53,50,52,57,93,44,91,45,49,48,51,46,48,52,49,48,54,50,44,51,54,46,48,53,53,50,50,54,93,44,91,45,49,48,51,46,48,52,49,51,52,57,44,51,53,46,55,51,57,52,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,71,114,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,54,54,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,56,53,52,57,50,54,44,52,48,46,52,56,54,50,53,50,93,44,91,45,49,48,53,46,57,48,53,57,57,44,52,48,46,51,57,57,54,53,50,93,44,91,45,49,48,54,46,50,51,48,55,52,54,44,52,48,46,51,50,52,52,56,54,93,44,91,45,49,48,54,46,54,49,50,51,50,49,44,52,48,46,51,55,57,51,56,51,93,44,91,45,49,48,54,46,54,53,50,49,49,50,44,52,48,46,52,52,53,50,51,49,93,44,91,45,49,48,54,46,54,51,50,50,53,55,44,52,48,46,51,52,49,53,53,57,93,44,91,45,49,48,54,46,54,50,54,53,54,57,44,51,57,46,57,50,52,55,56,53,93,44,91,45,49,48,54,46,52,51,52,53,48,56,44,51,57,46,57,50,52,57,49,52,93,44,91,45,49,48,54,46,50,53,50,48,50,55,44,51,57,46,57,49,52,55,49,50,93,44,91,45,49,48,54,46,48,56,51,55,49,49,44,51,57,46,56,48,53,57,54,52,93,44,91,45,49,48,54,46,48,50,51,55,56,51,44,51,57,46,54,56,56,52,50,93,44,91,45,49,48,53,46,57,50,52,54,49,56,44,51,57,46,54,57,56,57,55,50,93,44,91,45,49,48,53,46,54,57,48,51,52,56,44,51,57,46,56,53,49,57,57,54,93,44,91,45,49,48,53,46,54,55,53,55,57,56,44,51,57,46,57,51,50,52,52,53,93,44,91,45,49,48,53,46,54,51,56,50,57,50,44,52,48,46,48,52,52,51,50,54,93,44,91,45,49,48,53,46,54,53,51,51,50,49,44,52,48,46,50,54,48,52,53,55,93,44,91,45,49,48,53,46,56,53,52,57,50,54,44,52,48,46,52,56,54,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,57,34,44,34,78,65,77,69,34,58,34,74,105,109,32,87,101,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,49,57,50,44,34,98,101,100,115,34,58,49,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,51,53,52,57,55,44,50,56,46,48,53,55,57,54,54,93,44,91,45,57,56,46,50,51,50,52,54,52,44,50,55,46,50,54,50,52,56,55,93,44,91,45,57,56,46,48,53,56,48,55,56,44,50,55,46,50,54,48,57,56,49,93,44,91,45,57,56,46,48,53,57,56,44,50,55,46,54,51,53,56,54,57,93,44,91,45,57,55,46,57,52,50,49,52,54,44,50,55,46,54,51,53,57,51,50,93,44,91,45,57,55,46,57,51,52,50,55,52,44,50,55,46,56,56,53,50,48,50,93,44,91,45,57,55,46,55,57,56,53,49,55,44,50,55,46,57,57,53,54,53,57,93,44,91,45,57,55,46,56,56,51,49,52,56,44,50,56,46,48,53,54,57,93,44,91,45,57,56,46,50,51,53,52,57,55,44,50,56,46,48,53,55,57,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,87,105,110,110,101,98,97,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,55,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,55,48,55,54,50,44,52,51,46,52,57,57,56,56,54,93,44,91,45,57,51,46,57,55,48,52,49,53,44,52,51,46,50,53,53,51,53,56,93,44,91,45,57,51,46,52,57,55,54,51,53,44,52,51,46,50,53,53,52,54,56,93,44,91,45,57,51,46,52,57,55,51,53,51,44,52,51,46,52,57,57,54,50,50,93,44,91,45,57,51,46,54,52,56,53,51,51,44,52,51,46,52,57,57,54,56,93,44,91,45,57,51,46,57,55,48,55,54,50,44,52,51,46,52,57,57,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,83,97,110,32,76,117,105,115,32,79,98,105,115,112,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,49,52,53,53,44,34,98,101,100,115,34,58,49,55,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,50,49,51,57,55,57,44,51,53,46,55,56,57,50,55,54,93,44,91,45,49,50,49,46,52,51,56,49,55,54,44,51,53,46,55,57,54,54,53,53,93,44,91,45,49,50,49,46,51,50,51,53,49,50,44,51,53,46,54,50,52,57,54,57,93,44,91,45,49,50,49,46,50,48,49,53,53,53,44,51,53,46,53,56,51,54,57,93,44,91,45,49,50,49,46,48,52,49,54,51,53,44,51,53,46,52,49,57,57,57,93,44,91,45,49,50,48,46,57,51,51,50,57,50,44,51,53,46,51,57,50,55,52,56,93,44,91,45,49,50,48,46,57,54,48,50,52,55,44,51,53,46,50,52,51,54,50,50,93,44,91,45,49,50,48,46,56,48,48,52,49,49,44,51,53,46,49,49,54,53,55,55,93,44,91,45,49,50,48,46,54,56,57,54,48,54,44,51,53,46,48,57,56,56,50,56,93,44,91,45,49,50,48,46,55,48,50,55,57,53,44,51,52,46,57,57,57,57,55,53,93,44,91,45,49,50,48,46,54,51,52,49,52,52,44,51,52,46,57,53,57,53,54,50,93,44,91,45,49,50,48,46,52,57,54,50,50,50,44,51,52,46,57,57,51,49,53,53,93,44,91,45,49,50,48,46,51,50,55,49,49,53,44,51,52,46,57,56,54,53,50,53,93,44,91,45,49,50,48,46,48,57,54,57,51,44,51,53,46,49,48,57,53,57,53,93,44,91,45,49,49,57,46,55,52,53,53,54,54,44,51,52,46,57,55,51,54,55,54,93,44,91,45,49,49,57,46,52,55,50,55,53,52,44,51,52,46,57,48,49,49,55,52,93,44,91,45,49,49,57,46,52,55,50,55,49,57,44,51,53,46,48,55,54,56,56,53,93,44,91,45,49,49,57,46,53,53,51,54,52,49,44,51,53,46,49,55,57,57,55,53,93,44,91,45,49,49,57,46,54,54,55,48,53,54,44,51,53,46,49,55,52,56,48,57,93,44,91,45,49,49,57,46,54,54,54,54,54,51,44,51,53,46,50,54,50,53,50,55,93,44,91,45,49,49,57,46,56,48,57,52,52,57,44,51,53,46,50,54,51,53,56,52,93,44,91,45,49,49,57,46,56,56,48,49,55,50,44,51,53,46,51,53,49,50,49,49,93,44,91,45,49,49,57,46,56,56,48,48,52,53,44,51,53,46,52,51,57,49,51,51,93,44,91,45,49,50,48,46,48,56,54,54,55,52,44,51,53,46,53,50,54,53,53,52,93,44,91,45,49,50,48,46,49,57,51,57,49,56,44,51,53,46,54,49,52,51,53,57,93,44,91,45,49,50,48,46,49,57,52,49,52,54,44,51,53,46,55,56,57,50,48,52,93,44,91,45,49,50,48,46,50,49,51,57,55,57,44,51,53,46,55,56,57,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,49,54,52,51,55,44,51,49,46,54,49,57,52,54,54,93,44,91,45,56,53,46,52,49,55,52,51,52,44,51,49,46,51,49,52,57,55,51,93,44,91,45,56,53,46,48,56,55,54,53,49,44,51,49,46,51,48,56,54,55,55,93,44,91,45,56,53,46,48,52,53,52,57,53,44,51,49,46,53,49,55,49,50,57,93,44,91,45,56,53,46,49,50,55,51,50,57,44,51,49,46,55,54,50,53,54,51,93,44,91,45,56,53,46,50,49,54,48,55,54,44,51,49,46,55,48,50,52,48,57,93,44,91,45,56,53,46,52,49,54,48,51,56,44,51,49,46,55,48,54,54,54,52,93,44,91,45,56,53,46,52,49,54,52,51,55,44,51,49,46,54,49,57,52,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,87,121,97,110,100,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,48,55,44,34,98,101,100,115,34,58,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,50,48,51,49,57,44,52,48,46,57,57,49,56,56,57,93,44,91,45,56,51,46,53,49,53,56,56,51,44,52,48,46,56,49,56,49,51,52,93,44,91,45,56,51,46,52,57,53,55,57,56,44,52,48,46,55,48,49,53,49,53,93,44,91,45,56,51,46,52,49,57,56,51,54,44,52,48,46,54,56,54,56,50,51,93,44,91,45,56,51,46,49,49,49,51,54,44,52,48,46,55,48,50,57,49,53,93,44,91,45,56,51,46,49,49,50,55,51,55,44,52,48,46,57,57,51,52,52,55,93,44,91,45,56,51,46,52,50,48,51,49,57,44,52,48,46,57,57,49,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,53,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,48,53,34,44,34,78,65,77,69,34,58,34,90,97,112,97,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,53,51,55,57,52,44,50,55,46,50,54,53,48,53,56,93,44,91,45,57,57,46,52,50,54,52,49,56,44,50,55,46,49,55,56,50,56,55,93,44,91,45,57,57,46,52,52,54,49,50,51,44,50,55,46,48,50,51,48,52,56,93,44,91,45,57,57,46,50,54,56,54,49,51,44,50,54,46,56,52,51,50,49,51,93,44,91,45,57,57,46,49,54,57,52,49,54,44,50,54,46,53,55,49,54,56,50,93,44,91,45,57,57,46,48,49,49,49,49,50,44,50,54,46,54,55,53,48,50,51,93,44,91,45,57,56,46,57,53,52,50,51,44,50,54,46,55,56,53,54,57,52,93,44,91,45,57,56,46,57,53,52,54,54,57,44,50,55,46,50,54,57,51,57,55,93,44,91,45,57,57,46,52,53,51,55,57,52,44,50,55,46,50,54,53,48,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,48,53,50,48,52,44,51,49,46,54,57,49,48,53,56,93,44,91,45,56,52,46,50,57,55,56,48,49,44,51,49,46,54,50,49,57,53,49,93,44,91,45,56,52,46,48,52,51,50,49,51,44,51,49,46,54,50,51,53,55,51,93,44,91,45,56,52,46,48,49,56,52,48,52,44,51,49,46,54,53,48,50,55,52,93,44,91,45,56,52,46,48,50,53,54,50,51,44,51,49,46,55,49,48,48,50,50,93,44,91,45,56,51,46,57,51,57,52,51,55,44,51,49,46,56,52,55,57,50,57,93,44,91,45,56,51,46,57,50,50,52,57,52,44,51,49,46,57,48,57,54,53,51,93,44,91,45,56,52,46,51,51,56,49,52,51,44,51,49,46,57,49,54,49,57,93,44,91,45,56,52,46,51,51,56,50,52,53,44,51,49,46,56,55,51,53,57,49,93,44,91,45,56,52,46,50,54,50,51,52,57,44,51,49,46,56,50,56,52,56,56,93,44,91,45,56,52,46,51,48,53,50,48,52,44,51,49,46,54,57,49,48,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,48,57,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,49,55,52,53,52,44,51,56,46,51,55,51,57,51,53,93,44,91,45,56,50,46,55,57,52,50,48,54,44,51,56,46,50,52,51,55,55,50,93,44,91,45,56,50,46,54,48,52,54,50,53,44,51,56,46,50,52,55,54,54,50,93,44,91,45,56,50,46,53,57,51,52,56,44,51,56,46,52,50,49,56,50,49,93,44,91,45,56,50,46,54,54,53,52,49,49,44,51,56,46,53,48,53,55,56,55,93,44,91,45,56,50,46,56,49,55,52,53,52,44,51,56,46,51,55,51,57,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,114,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,52,49,54,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,54,55,51,54,55,44,52,52,46,57,55,55,57,54,52,93,44,91,45,57,52,46,48,49,50,50,51,54,44,52,52,46,57,55,56,55,49,50,93,44,91,45,57,52,46,48,49,48,52,57,52,44,52,52,46,55,49,55,52,54,52,93,44,91,45,57,51,46,55,54,56,48,51,57,44,52,52,46,54,52,48,51,48,51,93,44,91,45,57,51,46,53,50,48,52,51,49,44,52,52,46,56,48,52,50,54,51,93,44,91,45,57,51,46,53,50,48,55,48,54,44,52,52,46,56,57,49,53,48,50,93,44,91,45,57,51,46,55,54,55,48,52,49,44,52,52,46,56,57,48,56,54,50,93,44,91,45,57,51,46,55,54,55,51,54,55,44,52,52,46,57,55,55,57,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,111,108,102,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,53,50,52,50,53,44,52,49,46,55,52,51,48,56,53,93,44,91,45,57,55,46,50,53,51,53,49,57,44,52,49,46,51,56,52,50,49,50,93,44,91,45,57,55,46,49,55,53,54,49,51,44,52,49,46,51,55,55,48,56,51,93,44,91,45,57,54,46,57,48,53,57,49,44,52,49,46,52,53,54,52,51,54,93,44,91,45,57,54,46,57,48,53,57,50,50,44,52,49,46,55,52,50,55,54,51,93,44,91,45,57,55,46,48,49,57,57,49,49,44,52,49,46,55,52,50,57,56,93,44,91,45,57,55,46,50,53,50,52,50,53,44,52,49,46,55,52,51,48,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,104,101,115,116,101,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,48,50,52,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,54,49,55,49,44,51,52,46,56,49,55,52,50,57,93,44,91,45,56,48,46,52,48,56,51,55,51,44,51,52,46,54,49,52,55,54,53,93,44,91,45,56,48,46,51,50,55,53,57,44,51,52,46,52,57,55,55,54,93,44,91,45,56,48,46,50,56,56,53,57,54,44,51,52,46,51,54,54,50,48,55,93,44,91,45,56,48,46,48,52,53,52,51,57,44,51,52,46,52,57,50,54,51,49,93,44,91,45,55,57,46,56,56,52,53,52,50,44,51,52,46,52,57,49,50,49,56,93,44,91,45,55,57,46,56,50,57,57,56,49,44,51,52,46,53,51,49,57,50,53,93,44,91,45,55,57,46,56,48,51,56,55,55,44,51,52,46,54,48,57,48,53,51,93,44,91,45,55,57,46,57,50,55,52,49,50,44,51,52,46,56,48,54,55,51,52,93,44,91,45,56,48,46,51,50,48,56,50,56,44,51,52,46,56,49,51,57,48,54,93,44,91,45,56,48,46,53,54,49,55,49,44,51,52,46,56,49,55,52,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,53,56,49,56,57,44,51,53,46,54,48,57,51,52,57,93,44,91,45,56,55,46,55,49,55,53,53,57,44,51,53,46,52,56,51,51,52,55,93,44,91,45,56,55,46,53,55,53,51,53,50,44,51,53,46,51,57,56,52,53,52,93,44,91,45,56,55,46,50,57,52,53,51,52,44,51,53,46,52,52,52,54,55,54,93,44,91,45,56,55,46,51,51,57,50,51,50,44,51,53,46,54,53,57,49,49,93,44,91,45,56,55,46,52,53,57,53,56,55,44,51,53,46,54,49,53,49,50,52,93,44,91,45,56,55,46,53,54,56,56,51,49,44,51,53,46,54,53,50,50,57,54,93,44,91,45,56,55,46,54,53,56,49,56,57,44,51,53,46,54,48,57,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,49,56,50,49,44,34,98,101,100,115,34,58,57,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,52,54,52,56,56,44,52,53,46,52,51,51,51,51,50,93,44,91,45,49,50,51,46,49,51,53,52,50,55,44,52,53,46,52,51,51,52,53,57,93,44,91,45,49,50,50,46,56,54,55,56,57,49,44,52,53,46,51,49,55,51,52,53,93,44,91,45,49,50,50,46,55,52,51,55,52,49,44,52,53,46,51,51,50,48,54,55,93,44,91,45,49,50,50,46,55,52,51,55,50,49,44,52,53,46,52,51,51,50,57,52,93,44,91,45,49,50,50,46,55,52,51,56,54,50,44,52,53,46,53,49,57,53,48,57,93,44,91,45,49,50,50,46,57,50,57,49,50,56,44,52,53,46,54,51,53,51,49,51,93,44,91,45,49,50,50,46,57,50,57,49,52,54,44,52,53,46,55,50,49,52,56,50,93,44,91,45,49,50,51,46,48,51,48,56,55,51,44,52,53,46,55,55,57,49,53,57,93,44,91,45,49,50,51,46,51,54,49,54,50,50,44,52,53,46,55,55,57,53,55,57,93,44,91,45,49,50,51,46,52,56,52,55,50,54,44,52,53,46,55,48,56,55,54,52,93,44,91,45,49,50,51,46,51,54,49,49,51,49,44,52,53,46,53,55,56,55,55,57,93,44,91,45,49,50,51,46,52,54,52,56,56,44,52,53,46,52,51,51,51,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,56,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,56,49,48,34,44,34,78,65,77,69,34,58,34,86,105,114,103,105,110,105,97,32,66,101,97,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,48,49,51,53,44,34,98,101,100,115,34,58,56,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,50,50,54,48,54,44,51,54,46,56,51,57,57,52,55,93,44,91,45,55,54,46,49,50,49,57,53,53,44,51,54,46,54,54,53,55,53,93,44,91,45,55,54,46,49,50,50,51,52,57,44,51,54,46,53,53,48,53,50,51,93,44,91,45,55,53,46,55,57,55,52,57,55,44,51,54,46,53,53,48,57,49,54,93,44,91,45,55,53,46,57,50,54,56,52,55,44,51,54,46,57,51,54,52,54,50,93,44,91,45,55,53,46,57,48,57,52,57,49,44,51,54,46,57,57,48,55,48,56,93,44,91,45,55,54,46,49,51,51,56,55,50,44,51,55,46,48,52,48,56,56,54,93,44,91,45,55,54,46,50,50,54,48,54,44,51,54,46,56,51,57,57,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,49,56,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,48,53,50,53,57,44,52,53,46,55,57,56,51,48,54,93,44,91,45,49,49,49,46,57,50,54,57,54,53,44,52,53,46,56,53,53,54,57,52,93,44,91,45,49,49,50,46,48,56,56,55,54,44,52,53,46,56,52,57,48,53,93,44,91,45,49,49,50,46,49,57,48,50,54,57,44,52,53,46,55,52,56,53,48,51,93,44,91,45,49,49,50,46,53,49,53,52,53,51,44,52,53,46,55,52,54,55,48,50,93,44,91,45,49,49,50,46,54,56,55,48,53,52,44,52,53,46,54,50,52,56,53,52,93,44,91,45,49,49,50,46,54,56,55,56,51,57,44,52,53,46,52,55,55,50,52,93,44,91,45,49,49,50,46,53,48,53,53,54,56,44,52,53,46,52,52,51,48,48,57,93,44,91,45,49,49,50,46,52,53,56,48,54,50,44,52,53,46,51,52,57,57,49,93,44,91,45,49,49,50,46,52,53,54,56,53,52,44,52,53,46,48,56,56,53,48,57,93,44,91,45,49,49,50,46,51,51,52,50,52,56,44,52,53,46,48,48,48,53,49,57,93,44,91,45,49,49,50,46,49,57,49,49,56,55,44,52,53,46,48,48,48,53,49,50,93,44,91,45,49,49,50,46,49,54,55,49,48,56,44,52,52,46,56,50,54,55,51,56,93,44,91,45,49,49,50,46,48,54,53,55,57,55,44,52,52,46,55,56,51,52,55,53,93,44,91,45,49,49,49,46,55,56,49,49,53,55,44,52,52,46,55,56,49,48,50,55,93,44,91,45,49,49,49,46,55,56,49,48,57,57,44,52,52,46,55,48,56,56,52,53,93,44,91,45,49,49,49,46,52,55,52,57,54,51,44,52,52,46,55,48,56,55,55,51,93,44,91,45,49,49,49,46,51,55,55,48,49,53,44,52,52,46,55,53,49,52,52,51,93,44,91,45,49,49,49,46,51,55,51,48,51,44,52,53,46,51,53,48,53,50,49,93,44,91,45,49,49,49,46,51,53,49,51,56,44,52,53,46,54,52,49,57,51,56,93,44,91,45,49,49,49,46,53,51,54,50,52,49,44,52,53,46,54,52,50,50,53,55,93,44,91,45,49,49,49,46,54,53,57,55,51,56,44,52,53,46,55,52,51,51,52,52,93,44,91,45,49,49,49,46,56,48,53,50,53,57,44,52,53,46,55,57,56,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,76,97,110,99,97,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,48,55,56,50,56,44,51,55,46,56,51,56,56,49,52,93,44,91,45,55,54,46,54,54,56,49,56,50,44,51,55,46,55,55,56,51,56,54,93,44,91,45,55,54,46,53,51,54,53,56,57,44,51,55,46,54,51,57,49,57,52,93,44,91,45,55,54,46,51,54,56,50,49,51,44,51,55,46,53,57,52,51,51,49,93,44,91,45,55,54,46,49,53,49,55,49,49,44,51,55,46,53,56,53,57,54,56,93,44,91,45,55,54,46,49,55,53,54,56,55,44,51,55,46,54,55,49,54,50,54,93,44,91,45,55,54,46,51,48,56,51,54,55,44,51,55,46,54,54,57,55,55,51,93,44,91,45,55,54,46,52,50,48,48,55,49,44,51,55,46,56,50,51,55,54,54,93,44,91,45,55,54,46,53,48,55,56,50,56,44,51,55,46,56,51,56,56,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,97,116,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,55,52,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,51,50,51,50,44,51,56,46,51,56,56,55,49,56,93,44,91,45,57,52,46,54,49,52,48,54,49,44,51,56,46,48,54,48,48,53,54,93,44,91,45,57,52,46,48,53,56,50,56,53,44,51,56,46,48,51,54,54,50,55,93,44,91,45,57,52,46,48,52,57,56,57,53,44,51,56,46,50,49,51,57,56,53,93,44,91,45,57,52,46,48,54,53,55,49,51,44,51,56,46,52,52,55,48,56,55,93,44,91,45,57,52,46,54,49,50,56,56,50,44,51,56,46,52,55,55,53,57,55,93,44,91,45,57,52,46,54,49,51,50,51,50,44,51,56,46,51,56,56,55,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,101,108,107,110,97,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,54,52,48,44,34,98,101,100,115,34,58,49,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,55,50,55,53,55,51,44,52,51,46,53,54,51,52,49,49,93,44,91,45,55,49,46,54,49,50,52,50,54,44,52,51,46,52,51,55,56,57,51,93,44,91,45,55,49,46,53,53,48,48,51,44,52,51,46,52,53,50,55,48,49,93,44,91,45,55,49,46,50,51,54,48,49,49,44,52,51,46,50,56,52,57,57,52,93,44,91,45,55,49,46,49,53,57,51,54,52,44,52,51,46,51,53,53,49,50,51,93,44,91,45,55,49,46,49,54,50,54,55,53,44,52,51,46,53,51,56,57,53,57,93,44,91,45,55,49,46,50,53,56,50,53,57,44,52,51,46,53,55,49,51,52,53,93,44,91,45,55,49,46,53,51,49,54,53,56,44,52,51,46,55,54,48,57,55,57,93,44,91,45,55,49,46,54,52,56,51,52,54,44,52,51,46,54,56,52,53,49,49,93,44,91,45,55,49,46,55,50,55,53,55,51,44,52,51,46,53,54,51,52,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,82,105,99,104,109,111,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,55,56,44,34,98,101,100,115,34,58,57,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,51,54,57,53,57,44,51,56,46,48,55,55,48,55,52,93,44,91,45,55,54,46,57,48,48,52,57,44,51,55,46,57,56,50,49,52,50,93,44,91,45,55,54,46,54,54,56,49,56,50,44,51,55,46,55,55,56,51,56,54,93,44,91,45,55,54,46,53,48,55,56,50,56,44,51,55,46,56,51,56,56,49,52,93,44,91,45,55,54,46,54,51,52,50,51,44,51,55,46,57,54,54,54,51,93,44,91,45,55,54,46,55,52,56,56,55,49,44,51,55,46,57,57,52,56,57,55,93,44,91,45,55,54,46,56,55,55,48,54,50,44,51,56,46,49,50,52,51,53,56,93,44,91,45,55,54,46,57,51,54,57,53,57,44,51,56,46,48,55,55,48,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,48,34,44,34,78,65,77,69,34,58,34,83,107,97,103,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,53,46,55,49,55,51,48,55,44,53,57,46,55,51,48,48,52,51,93,44,91,45,49,51,53,46,51,55,53,48,50,44,53,57,46,51,53,48,48,51,51,93,44,91,45,49,51,53,46,48,51,48,53,50,53,44,53,57,46,51,52,54,51,52,56,93,44,91,45,49,51,53,46,49,48,49,48,50,44,53,57,46,52,50,55,53,51,49,93,44,91,45,49,51,53,46,48,50,56,57,48,51,44,53,57,46,53,54,51,54,53,57,93,44,91,45,49,51,53,46,52,55,57,49,54,49,44,53,57,46,55,57,56,48,52,49,93,44,91,45,49,51,53,46,55,49,55,51,48,55,44,53,57,46,55,51,48,48,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,72,111,111,110,97,104,45,65,110,103,111,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,44,91,45,49,51,51,46,56,49,51,48,53,49,44,53,55,46,56,51,55,54,50,52,93,44,91,45,49,51,52,46,49,55,54,57,57,44,53,56,46,49,53,56,51,50,93,44,91,45,49,51,52,46,53,51,56,52,49,51,44,53,56,46,48,57,56,49,55,50,93,44,91,45,49,51,52,46,54,57,55,55,54,54,44,53,56,46,48,51,50,48,51,54,93,44,91,45,49,51,52,46,55,55,54,56,54,50,44,53,56,46,48,57,57,48,52,53,93,44,91,45,49,51,52,46,54,57,52,56,51,54,44,53,56,46,50,55,54,53,50,50,93,44,91,45,49,51,53,46,48,55,48,52,53,44,53,56,46,52,57,57,56,57,55,93,44,91,45,49,51,53,46,48,48,48,52,51,50,44,53,56,46,49,49,56,48,54,52,93,44,91,45,49,51,53,46,50,53,48,48,50,44,53,56,46,49,54,54,55,93,44,91,45,49,51,53,46,52,52,57,54,56,55,44,53,56,46,51,49,55,48,55,51,93,44,91,45,49,51,53,46,52,55,54,49,51,57,44,53,56,46,52,55,53,51,52,55,93,44,91,45,49,51,53,46,52,50,50,54,56,55,44,53,56,46,54,51,49,52,49,54,93,44,91,45,49,51,53,46,55,53,53,51,50,51,44,53,56,46,55,52,53,57,53,52,93,44,91,45,49,51,53,46,53,54,54,56,54,53,44,53,56,46,57,54,51,56,50,93,44,91,45,49,51,53,46,55,49,48,51,56,51,44,53,57,46,49,48,49,52,57,49,93,44,91,45,49,51,53,46,57,54,57,56,52,55,44,53,57,46,49,55,57,55,52,93,44,91,45,49,51,54,46,52,56,56,52,48,50,44,53,57,46,50,53,57,50,57,93,44,91,45,49,51,54,46,53,56,49,53,50,49,44,53,57,46,49,54,52,57,48,57,93,44,91,45,49,51,54,46,56,50,54,54,51,51,44,53,57,46,49,53,56,51,56,57,93,44,91,45,49,51,55,46,53,50,53,54,55,53,44,53,56,46,57,48,56,57,55,53,93,44,91,45,49,51,56,46,48,50,49,54,49,44,53,56,46,55,57,48,48,50,51,93,44,91,45,49,51,55,46,55,54,50,50,49,56,44,53,56,46,53,57,54,53,48,50,93,44,91,45,49,51,55,46,49,52,57,53,56,54,44,53,56,46,51,52,49,51,48,55,93,44,91,45,49,51,55,46,48,49,52,53,44,53,56,46,51,52,52,51,49,49,93,44,91,45,49,51,54,46,56,49,52,52,49,50,44,53,56,46,49,56,56,55,57,93,44,91,45,49,51,54,46,54,49,54,51,51,57,44,53,56,46,49,52,55,50,51,93,44,91,45,49,51,54,46,54,55,56,56,57,49,44,53,56,46,48,51,54,50,57,51,93,44,91,45,49,51,54,46,54,53,56,53,54,56,44,53,55,46,57,48,49,52,53,53,93,44,91,45,49,51,54,46,52,53,52,52,50,55,44,53,55,46,56,51,48,54,55,54,93,44,91,45,49,51,54,46,48,50,52,51,50,56,44,53,55,46,56,51,56,55,57,53,93,44,91,45,49,51,53,46,57,48,49,57,54,52,44,53,56,46,48,48,49,51,52,51,93,44,91,45,49,51,53,46,53,50,56,53,51,52,44,53,55,46,56,56,48,52,55,93,44,91,45,49,51,53,46,50,51,56,49,50,57,44,53,55,46,55,54,49,55,49,49,93,44,91,45,49,51,52,46,56,51,54,50,44,53,55,46,55,56,55,55,93,44,91,45,49,51,52,46,55,48,49,49,52,49,44,53,55,46,52,53,52,54,49,51,93,44,91,45,49,51,52,46,55,51,56,53,53,54,44,53,55,46,50,50,54,51,48,51,93,44,91,45,49,51,52,46,54,55,55,50,44,53,54,46,57,57,57,93,44,91,45,49,51,52,46,53,54,57,50,56,57,44,53,54,46,56,54,51,48,53,50,93,44,91,45,49,51,52,46,51,51,53,51,49,57,44,53,54,46,57,54,55,53,51,57,93,44,91,45,49,51,52,46,48,54,51,49,52,53,44,53,55,46,49,53,54,50,56,54,93,44,91,45,49,51,51,46,54,53,56,50,50,50,44,53,55,46,49,54,50,52,57,51,93,44,91,45,49,51,51,46,55,51,56,54,49,49,44,53,55,46,49,56,54,51,52,56,93,44,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,93,93,44,91,91,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,44,91,45,49,51,51,46,52,53,50,50,52,50,44,53,55,46,56,49,52,48,54,50,93,44,91,45,49,51,50,46,56,55,49,56,57,56,44,53,55,46,55,49,50,55,57,54,93,44,91,45,49,51,50,46,56,56,55,56,53,44,53,55,46,54,49,51,55,51,57,93,44,91,45,49,51,50,46,54,53,50,52,53,54,44,53,55,46,54,48,55,51,53,55,93,44,91,45,49,51,50,46,56,54,57,51,49,56,44,53,55,46,56,52,50,57,52,49,93,44,91,45,49,51,51,46,48,55,54,52,50,49,44,53,55,46,57,57,57,55,54,50,93,44,91,45,49,51,51,46,49,55,54,57,51,55,44,53,56,46,49,53,48,53,54,55,93,44,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,54,54,48,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,52,53,51,49,57,44,52,54,46,54,55,57,50,52,51,93,44,91,45,49,49,57,46,50,55,48,51,50,44,52,54,46,53,50,49,51,49,49,93,44,91,45,49,49,57,46,50,54,55,50,48,50,44,52,54,46,50,56,52,54,50,53,93,44,91,45,49,49,57,46,48,52,49,52,57,56,44,52,54,46,49,57,50,54,54,55,93,44,91,45,49,49,56,46,55,55,55,50,50,56,44,52,54,46,50,57,48,49,55,55,93,44,91,45,49,49,56,46,54,51,51,56,50,54,44,52,54,46,52,49,52,48,50,50,93,44,91,45,49,49,56,46,54,49,53,53,57,50,44,52,54,46,53,48,52,53,52,51,93,44,91,45,49,49,56,46,52,55,53,57,51,50,44,52,54,46,53,57,53,49,52,50,93,44,91,45,49,49,56,46,50,50,56,54,51,53,44,52,54,46,53,57,51,51,54,50,93,44,91,45,49,49,56,46,50,49,53,54,54,44,52,54,46,53,56,56,57,50,52,93,44,91,45,49,49,56,46,50,49,48,50,52,51,44,52,54,46,55,51,56,56,51,51,93,44,91,45,49,49,57,46,51,54,57,52,50,57,44,52,54,46,55,51,55,54,57,53,93,44,91,45,49,49,57,46,52,53,51,49,57,44,52,54,46,54,55,57,50,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,73,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,52,49,54,49,49,44,52,50,46,53,54,49,50,56,53,93,44,91,45,57,53,46,54,54,57,50,54,53,44,52,50,46,52,55,52,54,52,53,93,44,91,45,57,53,46,54,55,48,56,50,50,44,52,50,46,50,49,49,52,48,56,93,44,91,45,57,53,46,51,50,51,52,57,55,44,52,50,46,50,49,48,57,51,50,93,44,91,45,57,53,46,51,50,50,51,53,55,44,52,50,46,52,55,52,55,51,55,93,44,91,45,57,53,46,51,56,56,48,49,44,52,50,46,53,54,49,55,52,50,93,44,91,45,57,53,46,55,52,49,54,49,49,44,52,50,46,53,54,49,50,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,83,101,100,103,119,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,50,48,54,52,44,34,98,101,100,115,34,58,50,56,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,44,91,45,57,55,46,49,53,50,52,55,54,44,51,55,46,57,49,50,55,51,51,93,44,91,45,57,55,46,55,48,49,57,54,57,44,51,55,46,57,49,49,51,50,53,93,44,91,45,57,55,46,54,57,56,54,57,50,44,51,55,46,55,51,53,48,53,54,93,44,91,45,57,55,46,56,48,55,56,50,51,44,51,55,46,55,51,51,56,53,53,93,44,91,45,57,55,46,56,48,55,54,44,51,55,46,52,55,52,49,56,52,93,44,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,53,51,34,44,34,78,65,77,69,34,58,34,84,114,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,51,49,54,54,44,34,98,101,100,115,34,58,51,48,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,52,57,56,56,54,44,51,48,46,54,50,52,49,53,53,93,44,91,45,57,56,46,49,50,53,53,53,54,44,51,48,46,52,50,54,49,56,54,93,44,91,45,57,56,46,49,55,50,57,55,55,44,51,48,46,51,53,54,51,49,50,93,44,91,45,57,55,46,55,49,48,50,49,53,44,51,48,46,48,50,52,52,57,57,93,44,91,45,57,55,46,54,52,57,51,55,44,51,48,46,48,54,55,57,52,52,93,44,91,45,57,55,46,52,57,50,52,56,50,44,51,48,46,50,49,48,48,49,49,93,44,91,45,57,55,46,51,54,57,53,51,57,44,51,48,46,52,49,57,53,54,51,93,44,91,45,57,55,46,53,57,54,50,51,54,44,51,48,46,53,48,49,53,49,51,93,44,91,45,57,55,46,56,49,49,56,54,51,44,51,48,46,52,52,55,48,49,56,93,44,91,45,57,55,46,57,53,54,55,51,52,44,51,48,46,54,50,56,50,52,57,93,44,91,45,57,56,46,48,52,57,56,56,54,44,51,48,46,54,50,52,49,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,105,108,108,115,98,111,114,111,117,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,56,56,56,51,44,34,98,101,100,115,34,58,52,48,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,53,49,49,54,53,44,50,56,46,49,55,51,50,54,54,93,44,91,45,56,50,46,54,52,56,51,50,44,50,55,46,57,52,55,51,57,56,93,44,91,45,56,50,46,53,57,55,50,49,57,44,50,55,46,57,51,53,49,57,57,93,44,91,45,56,50,46,53,52,49,53,49,56,44,50,55,46,55,56,50,50,48,52,93,44,91,45,56,50,46,54,48,54,49,51,57,44,50,55,46,54,52,51,54,51,56,93,44,91,45,56,50,46,56,49,51,51,54,50,44,50,55,46,54,52,53,55,52,56,93,44,91,45,56,50,46,56,50,51,48,50,57,44,50,55,46,53,55,48,53,53,93,44,91,45,56,50,46,55,52,53,49,51,55,44,50,55,46,53,55,48,53,53,93,44,91,45,56,50,46,53,53,51,54,54,54,44,50,55,46,54,52,53,52,54,53,93,44,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,44,91,45,56,50,46,48,53,54,50,54,49,44,50,56,46,49,55,49,53,57,50,93,44,91,45,56,50,46,49,48,53,56,53,51,44,50,56,46,49,55,49,54,53,93,44,91,45,56,50,46,54,53,49,49,54,53,44,50,56,46,49,55,51,50,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,55,54,50,44,34,98,101,100,115,34,58,50,48,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,57,52,50,57,48,57,44,52,48,46,51,52,49,54,56,51,93,44,91,45,55,52,46,55,50,50,48,52,56,44,52,48,46,49,53,48,51,49,49,93,44,91,45,55,52,46,53,56,55,56,51,53,44,52,48,46,49,51,56,50,53,52,93,44,91,45,55,52,46,52,56,52,57,54,50,44,52,48,46,50,53,51,51,50,53,93,44,91,45,55,52,46,54,50,48,50,52,44,52,48,46,51,55,51,55,52,57,93,44,91,45,55,52,46,55,52,56,49,52,55,44,52,48,46,52,50,52,49,53,54,93,44,91,45,55,52,46,57,52,50,57,48,57,44,52,48,46,51,52,49,54,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,54,55,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,48,53,57,49,44,52,49,46,52,53,54,52,51,54,93,44,91,45,57,55,46,49,55,53,54,49,51,44,52,49,46,51,55,55,48,56,51,93,44,91,45,57,55,46,50,53,51,53,49,57,44,52,49,46,51,56,52,50,49,50,93,44,91,45,57,55,46,51,54,56,49,56,54,44,52,49,46,51,57,54,52,49,54,93,44,91,45,57,55,46,51,54,56,49,49,56,44,52,49,46,48,52,54,57,52,55,93,44,91,45,57,54,46,57,49,48,57,52,44,52,49,46,48,52,54,49,49,54,93,44,91,45,57,54,46,57,48,56,53,48,55,44,52,49,46,48,52,54,48,57,49,93,44,91,45,57,54,46,57,48,53,56,54,50,44,52,49,46,52,53,51,51,56,57,93,44,91,45,57,54,46,57,48,53,57,49,44,52,49,46,52,53,54,52,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,87,101,115,116,109,111,114,101,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,52,55,53,49,44,34,98,101,100,115,34,58,57,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,53,48,49,55,54,44,52,48,46,53,51,48,49,52,57,93,44,91,45,55,57,46,53,54,49,49,49,44,52,48,46,53,54,52,49,49,51,93,44,91,45,55,57,46,54,57,50,53,56,55,44,52,48,46,54,54,57,55,51,50,93,44,91,45,55,57,46,55,54,53,52,49,53,44,52,48,46,53,52,57,56,53,52,93,44,91,45,55,57,46,55,48,52,55,51,57,44,52,48,46,52,50,55,50,51,49,93,44,91,45,55,57,46,55,55,49,48,56,50,44,52,48,46,51,55,53,52,49,57,93,44,91,45,55,57,46,55,56,49,55,54,49,44,52,48,46,50,50,55,55,49,49,93,44,91,45,55,57,46,56,55,48,53,56,53,44,52,48,46,49,57,55,52,49,53,93,44,91,45,55,57,46,56,55,55,51,56,53,44,52,48,46,49,50,54,55,57,50,93,44,91,45,55,57,46,54,51,56,57,57,52,44,52,48,46,48,56,50,56,53,57,93,44,91,45,55,57,46,53,48,53,49,56,56,44,52,48,46,49,52,48,53,54,56,93,44,91,45,55,57,46,50,57,51,54,56,50,44,52,48,46,48,52,48,52,49,51,93,44,91,45,55,57,46,48,53,53,57,56,51,44,52,48,46,50,56,53,48,56,57,93,44,91,45,55,56,46,57,55,52,54,52,57,44,52,48,46,51,57,53,57,55,50,93,44,91,45,55,57,46,49,50,49,54,51,52,44,52,48,46,51,55,48,53,55,54,93,44,91,45,55,57,46,52,53,48,49,55,54,44,52,48,46,53,51,48,49,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,111,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,57,53,52,44,34,98,101,100,115,34,58,54,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,55,52,54,57,44,50,55,46,48,51,50,49,49,57,93,44,91,45,56,50,46,50,53,53,50,51,55,44,50,55,46,48,51,50,57,55,53,93,44,91,45,56,50,46,50,53,53,53,50,49,44,50,54,46,57,52,53,50,54,52,93,44,91,45,56,50,46,52,51,55,51,50,55,44,50,54,46,57,52,54,48,50,53,93,44,91,45,56,50,46,51,51,53,48,52,44,50,54,46,55,56,55,57,52,54,93,44,91,45,56,50,46,49,57,56,54,50,54,44,50,54,46,55,55,48,56,57,50,93,44,91,45,56,49,46,53,54,53,57,51,49,44,50,54,46,55,54,57,53,53,50,93,44,91,45,56,49,46,53,54,50,53,51,49,44,50,55,46,48,51,51,54,56,55,93,44,91,45,56,49,46,53,54,50,54,50,52,44,50,55,46,48,51,51,56,51,53,93,44,91,45,56,50,46,48,53,55,52,54,57,44,50,55,46,48,51,50,49,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,57,49,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,53,52,55,50,50,44,52,49,46,53,48,53,50,49,49,93,44,91,45,57,53,46,49,53,53,56,53,49,44,52,49,46,49,53,57,50,51,54,93,44,91,45,57,52,46,57,50,55,53,56,55,44,52,49,46,49,53,56,53,48,56,93,44,91,45,57,52,46,55,48,48,53,56,57,44,52,49,46,49,53,56,48,56,53,93,44,91,45,57,52,46,55,48,48,54,50,57,44,52,49,46,53,48,52,49,52,56,93,44,91,45,57,53,46,48,52,48,55,55,44,52,49,46,53,48,52,54,57,93,44,91,45,57,53,46,49,53,52,55,50,50,44,52,49,46,53,48,53,50,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,56,48,54,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,48,50,52,55,55,44,52,48,46,53,55,50,50,49,51,93,44,91,45,56,52,46,56,48,51,56,57,52,44,52,48,46,51,53,50,55,53,56,93,44,91,45,56,52,46,52,51,52,54,51,49,44,52,48,46,51,53,52,50,53,57,93,44,91,45,56,52,46,52,51,52,51,56,55,44,52,48,46,51,53,52,53,51,52,93,44,91,45,56,52,46,52,53,54,49,56,44,52,48,46,54,56,52,56,54,50,93,44,91,45,56,52,46,52,53,54,49,55,50,44,52,48,46,55,50,56,51,48,54,93,44,91,45,56,52,46,56,48,50,50,55,51,44,52,48,46,55,50,56,49,52,54,93,44,91,45,56,52,46,56,48,50,52,55,55,44,52,48,46,53,55,50,50,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,52,51,44,34,98,101,100,115,34,58,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,48,48,52,54,52,57,44,51,55,46,56,53,57,50,52,55,93,44,91,45,56,50,46,57,52,48,55,54,51,44,51,55,46,55,49,54,51,51,56,93,44,91,45,56,50,46,55,54,50,49,57,44,51,55,46,55,53,53,56,53,54,93,44,91,45,56,50,46,54,52,48,55,53,44,51,55,46,55,50,48,49,56,50,93,44,91,45,56,50,46,54,49,50,51,57,51,44,51,55,46,56,55,57,50,55,50,93,44,91,45,56,50,46,57,52,55,57,51,54,44,51,56,46,48,48,48,52,51,49,93,44,91,45,56,50,46,57,56,57,48,49,52,44,51,55,46,57,54,51,57,54,56,93,44,91,45,56,51,46,48,48,52,54,52,57,44,51,55,46,56,53,57,50,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,52,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,82,104,111,100,101,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,82,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,56,54,49,44,34,98,101,100,115,34,58,51,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,51,54,53,50,48,55,44,52,49,46,55,51,53,54,52,57,93,44,91,45,55,49,46,55,56,57,55,48,52,44,52,49,46,55,50,53,49,57,56,93,44,91,45,55,49,46,55,56,55,54,53,56,44,52,49,46,54,51,57,57,49,56,93,44,91,45,55,49,46,55,56,57,50,52,55,44,52,49,46,53,57,54,56,52,55,93,44,91,45,55,49,46,52,56,52,52,50,55,44,52,49,46,54,48,50,53,57,49,93,44,91,45,55,49,46,51,56,48,53,52,50,44,52,49,46,54,53,48,51,50,54,93,44,91,45,55,49,46,51,51,48,57,55,44,52,49,46,54,56,54,57,54,50,93,44,91,45,55,49,46,51,54,53,50,48,55,44,52,49,46,55,51,53,54,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,87,105,110,100,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,49,53,48,44,34,98,101,100,115,34,58,50,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,56,49,57,51,54,56,44,52,51,46,50,53,53,52,57,56,93,44,91,45,55,50,46,56,54,56,55,51,55,44,52,51,46,49,49,51,49,55,93,44,91,45,55,50,46,57,57,54,57,44,52,51,46,49,49,57,48,57,53,93,44,91,45,55,51,46,48,48,56,48,54,51,44,52,50,46,57,51,48,48,56,55,93,44,91,45,55,50,46,57,50,49,51,55,54,44,52,50,46,57,50,54,55,57,50,93,44,91,45,55,50,46,57,51,48,50,53,56,44,52,50,46,55,51,57,50,57,51,93,44,91,45,55,50,46,52,53,56,52,49,50,44,52,50,46,55,50,54,57,51,51,93,44,91,45,55,50,46,53,52,49,53,49,51,44,52,50,46,56,48,55,48,57,52,93,44,91,45,55,50,46,53,51,50,48,50,50,44,52,50,46,57,53,52,57,52,51,93,44,91,45,55,50,46,52,55,51,48,55,54,44,52,50,46,57,55,50,53,50,56,93,44,91,45,55,50,46,52,53,50,50,53,49,44,52,51,46,49,54,49,51,53,52,93,44,91,45,55,50,46,52,51,52,54,52,53,44,52,51,46,50,51,51,51,49,49,93,44,91,45,55,50,46,54,56,53,54,51,55,44,52,51,46,50,50,50,52,57,53,93,44,91,45,55,50,46,56,49,57,51,54,56,44,52,51,46,50,53,53,52,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,79,114,108,101,97,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,49,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,56,57,55,54,48,56,44,52,53,46,48,48,56,51,53,93,44,91,45,55,50,46,53,53,52,51,54,44,52,53,46,48,48,56,50,55,49,93,44,91,45,55,50,46,53,51,50,54,51,56,44,52,52,46,56,51,51,51,52,54,93,44,91,45,55,50,46,53,55,56,49,54,49,44,52,52,46,55,56,49,53,55,56,93,44,91,45,55,50,46,52,49,55,51,49,53,44,52,52,46,55,50,50,56,57,51,93,44,91,45,55,50,46,52,56,50,51,48,50,44,52,52,46,54,51,51,57,50,56,93,44,91,45,55,50,46,51,55,52,55,56,54,44,52,52,46,53,56,52,49,50,53,93,44,91,45,55,50,46,50,54,50,57,54,53,44,52,52,46,53,52,50,51,51,54,93,44,91,45,55,50,46,49,49,52,53,48,51,44,52,52,46,55,52,57,54,50,52,93,44,91,45,55,50,46,48,49,50,53,48,52,44,52,52,46,54,57,56,56,50,49,93,44,91,45,55,49,46,57,51,57,57,51,54,44,52,52,46,55,54,57,48,51,50,93,44,91,45,55,49,46,56,55,52,52,51,51,44,52,52,46,56,55,54,51,56,50,93,44,91,45,55,49,46,56,57,55,54,48,56,44,52,53,46,48,48,56,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,56,56,57,52,49,44,51,57,46,54,53,51,48,48,49,93,44,91,45,57,53,46,55,56,57,49,48,49,44,51,57,46,53,54,53,57,49,54,93,44,91,45,57,54,46,48,51,53,57,53,50,44,51,57,46,53,54,54,49,93,44,91,45,57,54,46,48,51,53,53,55,51,44,51,57,46,50,49,54,53,50,93,44,91,45,57,53,46,53,56,57,52,55,50,44,51,57,46,50,49,54,48,56,49,93,44,91,45,57,53,46,53,55,48,51,53,49,44,51,57,46,52,49,57,48,53,93,44,91,45,57,53,46,53,54,52,49,50,54,44,51,57,46,54,53,50,56,55,50,93,44,91,45,57,53,46,55,56,56,57,52,49,44,51,57,46,54,53,51,48,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,50,50,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,55,54,55,51,57,44,51,50,46,52,48,53,56,48,56,93,44,91,45,57,49,46,54,50,53,49,50,49,44,51,50,46,52,48,53,51,52,52,93,44,91,45,57,49,46,55,53,57,48,57,56,44,51,50,46,51,49,55,55,49,52,93,44,91,45,57,49,46,55,55,54,53,56,55,44,51,50,46,50,51,57,49,48,54,93,44,91,45,57,49,46,56,57,52,55,50,57,44,51,50,46,49,53,49,53,53,93,44,91,45,57,49,46,56,56,57,54,56,55,44,51,49,46,57,55,49,52,55,52,93,44,91,45,57,49,46,55,55,57,57,50,56,44,51,49,46,56,56,49,52,56,49,93,44,91,45,57,49,46,54,52,54,48,52,44,51,49,46,57,54,49,49,52,49,93,44,91,45,57,49,46,53,55,53,55,50,49,44,51,49,46,56,56,50,53,54,93,44,91,45,57,49,46,53,49,49,51,55,52,44,51,49,46,57,51,48,48,50,53,93,44,91,45,57,49,46,52,57,50,55,49,56,44,51,50,46,50,48,51,51,52,57,93,44,91,45,57,49,46,53,52,51,48,50,49,44,51,50,46,50,53,57,48,48,54,93,44,91,45,57,49,46,52,55,54,55,51,57,44,51,50,46,52,48,53,56,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,50,56,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,57,49,55,56,49,44,51,51,46,55,51,56,54,48,50,93,44,91,45,56,57,46,53,48,55,49,51,53,44,51,51,46,55,50,49,56,49,57,93,44,91,45,56,57,46,53,48,54,56,55,50,44,51,51,46,54,55,55,54,48,53,93,44,91,45,56,57,46,53,48,54,52,57,54,44,51,51,46,52,53,57,56,48,54,93,44,91,45,56,57,46,51,56,49,48,57,50,44,51,51,46,52,54,48,51,48,55,93,44,91,45,56,57,46,50,50,50,48,51,57,44,51,51,46,53,50,55,50,52,53,93,44,91,45,56,57,46,48,56,56,52,52,54,44,51,51,46,53,51,51,50,48,50,93,44,91,45,56,57,46,48,49,56,54,49,51,44,51,51,46,53,54,50,49,49,52,93,44,91,45,56,57,46,48,51,52,52,57,56,44,51,51,46,55,51,57,52,51,93,44,91,45,56,57,46,49,57,49,55,56,49,44,51,51,46,55,51,56,54,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,57,51,53,44,34,98,101,100,115,34,58,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,48,50,51,48,49,53,44,52,50,46,55,52,49,49,51,53,93,44,91,45,55,50,46,57,53,49,48,51,57,44,52,50,46,54,52,49,48,48,54,93,44,91,45,55,50,46,57,55,53,52,48,57,44,52,50,46,53,53,54,48,51,55,93,44,91,45,55,50,46,56,55,49,49,51,54,44,52,50,46,52,56,52,48,52,49,93,44,91,45,55,50,46,51,55,53,48,50,50,44,52,50,46,52,50,48,56,49,57,93,44,91,45,55,50,46,51,49,52,50,53,51,44,52,50,46,51,52,51,54,56,56,93,44,91,45,55,50,46,50,55,54,52,51,52,44,52,50,46,53,55,55,51,55,52,93,44,91,45,55,50,46,50,56,51,48,52,53,44,52,50,46,55,50,49,54,49,53,93,44,91,45,55,50,46,52,53,56,52,49,50,44,52,50,46,55,50,54,57,51,51,93,44,91,45,55,50,46,57,51,48,50,53,56,44,52,50,46,55,51,57,50,57,51,93,44,91,45,55,51,46,48,50,51,48,49,53,44,52,50,46,55,52,49,49,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,104,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,50,56,48,49,51,44,52,50,46,57,57,56,49,51,54,93,44,91,45,49,48,50,46,48,56,50,52,56,54,44,52,50,46,57,57,57,51,53,53,93,44,91,45,49,48,50,46,48,56,50,53,52,54,44,52,50,46,57,57,57,51,53,54,93,44,91,45,49,48,50,46,48,54,54,54,56,57,44,52,50,46,52,52,51,52,54,51,93,44,91,45,49,48,50,46,48,52,48,50,56,44,52,50,46,48,57,54,55,52,52,93,44,91,45,49,48,50,46,48,48,54,50,48,52,44,52,50,46,48,57,54,51,51,56,93,44,91,45,49,48,49,46,52,50,54,53,53,55,44,52,50,46,48,57,50,49,57,52,93,44,91,45,49,48,48,46,56,52,54,49,50,57,44,52,50,46,48,56,56,49,54,54,93,44,91,45,49,48,48,46,50,54,55,54,50,50,44,52,50,46,48,56,54,49,52,55,93,44,91,45,49,48,48,46,49,54,55,54,48,53,44,52,50,46,48,56,53,56,52,56,93,44,91,45,49,48,48,46,49,57,56,52,55,56,44,52,50,46,56,52,54,49,48,50,93,44,91,45,49,48,48,46,49,57,56,52,49,51,44,52,50,46,57,57,56,54,55,52,93,44,91,45,49,48,49,46,50,50,56,48,49,51,44,52,50,46,57,57,56,49,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,101,97,118,101,114,104,101,97,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,57,51,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,57,51,56,48,57,53,44,52,53,46,54,57,53,55,52,93,44,91,45,49,49,51,46,56,48,54,52,51,49,44,52,53,46,54,48,49,54,51,93,44,91,45,49,49,51,46,55,55,51,55,53,51,44,52,53,46,52,48,54,51,53,57,93,44,91,45,49,49,51,46,53,55,54,55,50,53,44,52,53,46,49,51,49,50,51,55,93,44,91,45,49,49,51,46,52,53,50,48,52,52,44,52,53,46,48,53,57,49,55,52,93,44,91,45,49,49,51,46,52,53,53,48,55,49,44,52,52,46,56,54,53,52,50,52,93,44,91,45,49,49,51,46,50,52,55,49,57,50,44,52,52,46,56,50,50,57,53,52,93,44,91,45,49,49,51,46,49,48,49,54,49,56,44,52,52,46,55,50,57,52,54,53,93,44,91,45,49,49,51,46,48,48,49,57,55,56,44,52,52,46,52,52,57,56,53,55,93,44,91,45,49,49,50,46,56,49,51,56,48,53,44,52,52,46,51,55,54,52,53,53,93,44,91,45,49,49,50,46,55,49,55,57,51,44,52,52,46,53,48,52,50,55,51,93,44,91,45,49,49,50,46,52,55,51,52,49,57,44,52,52,46,52,55,57,51,53,57,93,44,91,45,49,49,50,46,50,56,56,54,55,51,44,52,52,46,53,54,55,57,49,93,44,91,45,49,49,50,46,48,57,54,52,56,52,44,52,52,46,53,50,50,57,57,50,93,44,91,45,49,49,49,46,56,54,51,54,53,55,44,52,52,46,53,53,49,50,52,52,93,44,91,45,49,49,49,46,54,49,55,51,52,53,44,52,52,46,53,53,48,51,57,50,93,44,91,45,49,49,49,46,53,50,53,54,49,44,52,52,46,54,48,52,55,52,93,44,91,45,49,49,49,46,52,55,52,57,54,51,44,52,52,46,55,48,56,55,55,51,93,44,91,45,49,49,49,46,55,56,49,48,57,57,44,52,52,46,55,48,56,56,52,53,93,44,91,45,49,49,49,46,55,56,49,49,53,55,44,52,52,46,55,56,49,48,50,55,93,44,91,45,49,49,50,46,48,54,53,55,57,55,44,52,52,46,55,56,51,52,55,53,93,44,91,45,49,49,50,46,49,54,55,49,48,56,44,52,52,46,56,50,54,55,51,56,93,44,91,45,49,49,50,46,49,57,49,49,56,55,44,52,53,46,48,48,48,53,49,50,93,44,91,45,49,49,50,46,51,51,52,50,52,56,44,52,53,46,48,48,48,53,49,57,93,44,91,45,49,49,50,46,52,53,54,56,53,52,44,52,53,46,48,56,56,53,48,57,93,44,91,45,49,49,50,46,52,53,56,48,54,50,44,52,53,46,51,52,57,57,49,93,44,91,45,49,49,50,46,53,48,53,53,54,56,44,52,53,46,52,52,51,48,48,57,93,44,91,45,49,49,50,46,54,56,55,56,51,57,44,52,53,46,52,55,55,50,52,93,44,91,45,49,49,50,46,54,56,55,48,53,52,44,52,53,46,54,50,52,56,53,52,93,44,91,45,49,49,50,46,55,53,57,51,51,57,44,52,53,46,55,52,56,50,48,57,93,44,91,45,49,49,51,46,48,48,48,49,53,53,44,52,53,46,56,48,55,55,52,55,93,44,91,45,49,49,51,46,48,56,53,53,49,55,44,52,53,46,56,54,48,54,52,56,93,44,91,45,49,49,51,46,49,55,57,55,57,49,44,52,53,46,56,56,53,48,48,57,93,44,91,45,49,49,51,46,51,57,54,57,48,51,44,52,53,46,55,54,55,54,53,93,44,91,45,49,49,51,46,53,49,54,49,52,52,44,52,53,46,57,51,56,56,49,52,93,44,91,45,49,49,51,46,53,51,50,51,55,44,52,53,46,56,55,56,52,48,53,93,44,91,45,49,49,51,46,55,49,50,53,50,50,44,52,53,46,56,51,56,51,56,52,93,44,91,45,49,49,51,46,57,51,56,48,57,53,44,52,53,46,54,57,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,78,101,119,32,77,97,100,114,105,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,57,49,54,48,51,44,51,54,46,56,53,57,53,49,55,93,44,91,45,56,57,46,55,48,48,57,53,50,44,51,54,46,54,50,55,52,53,51,93,44,91,45,56,57,46,57,53,56,55,56,54,44,51,54,46,54,50,57,51,51,49,93,44,91,45,56,57,46,57,54,49,51,49,44,51,54,46,51,56,56,56,48,51,93,44,91,45,56,57,46,54,49,49,51,48,56,44,51,54,46,52,49,49,50,55,51,93,44,91,45,56,57,46,53,52,53,48,48,54,44,51,54,46,51,51,54,56,48,57,93,44,91,45,56,57,46,53,51,57,50,51,50,44,51,54,46,52,57,55,57,51,52,93,44,91,45,56,57,46,52,56,53,52,50,55,44,51,54,46,52,57,55,52,57,49,93,44,91,45,56,57,46,52,49,55,50,55,53,44,51,54,46,52,57,57,48,49,49,93,44,91,45,56,57,46,51,50,55,53,56,56,44,51,54,46,54,51,50,50,55,54,93,44,91,45,56,57,46,53,49,57,56,48,57,44,51,54,46,56,54,57,54,49,55,93,44,91,45,56,57,46,54,57,49,54,48,51,44,51,54,46,56,53,57,53,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,101,109,112,115,116,101,97,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,49,56,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,50,51,48,55,54,44,51,52,46,48,48,56,56,57,51,93,44,91,45,57,51,46,56,51,49,52,53,50,44,51,51,46,55,52,55,55,48,57,93,44,91,45,57,51,46,57,53,55,51,49,53,44,51,51,46,55,53,48,57,52,93,44,91,45,57,51,46,57,54,53,54,51,55,44,51,51,46,54,54,57,55,51,54,93,44,91,45,57,51,46,56,50,53,56,56,52,44,51,51,46,54,48,57,56,53,51,93,44,91,45,57,51,46,55,50,50,56,54,55,44,51,51,46,52,56,49,57,54,51,93,44,91,45,57,51,46,52,56,51,48,57,55,44,51,51,46,52,55,54,48,55,53,93,44,91,45,57,51,46,52,53,54,55,48,57,44,51,51,46,57,53,54,56,51,55,93,44,91,45,57,51,46,54,49,55,52,54,44,51,51,46,57,53,57,54,50,55,93,44,91,45,57,51,46,56,50,51,48,55,54,44,51,52,46,48,48,56,56,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,97,109,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,48,57,54,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,55,55,54,57,50,44,51,56,46,50,54,51,48,57,50,93,44,91,45,57,51,46,48,54,53,49,57,57,44,51,56,46,48,54,50,52,55,57,93,44,91,45,57,51,46,48,55,50,52,52,55,44,51,55,46,57,48,50,54,50,55,93,44,91,45,57,50,46,56,53,53,51,56,52,44,51,55,46,56,57,53,55,51,54,93,44,91,45,57,50,46,54,50,48,49,56,49,44,51,55,46,56,57,50,53,50,49,93,44,91,45,57,50,46,53,52,56,57,51,52,44,51,55,46,56,48,48,52,55,93,44,91,45,57,50,46,52,48,57,50,51,49,44,51,55,46,56,53,57,49,56,93,44,91,45,57,50,46,52,48,54,50,55,53,44,51,56,46,48,50,49,49,55,57,93,44,91,45,57,50,46,53,55,48,50,56,49,44,51,56,46,48,54,54,54,51,53,93,44,91,45,57,50,46,54,52,48,48,56,53,44,51,56,46,50,49,51,48,51,50,93,44,91,45,57,50,46,54,57,53,56,56,54,44,51,56,46,50,50,50,48,51,49,93,44,91,45,57,50,46,55,54,52,57,54,51,44,51,56,46,49,56,57,53,51,52,93,44,91,45,57,51,46,48,50,50,50,55,55,44,51,56,46,49,57,56,54,52,50,93,44,91,45,57,51,46,48,55,55,54,57,50,44,51,56,46,50,54,51,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,101,99,107,108,101,110,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,52,55,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,50,55,52,49,49,44,51,54,46,55,55,55,56,53,56,93,44,91,45,55,56,46,50,52,49,53,48,57,44,51,54,46,56,48,55,57,53,56,93,44,91,45,55,56,46,52,57,51,48,50,56,44,51,54,46,56,57,49,50,50,93,44,91,45,55,56,46,54,52,56,53,52,49,44,51,54,46,54,57,55,57,48,57,93,44,91,45,55,56,46,55,51,52,49,50,50,44,51,54,46,53,52,49,57,51,57,93,44,91,45,55,56,46,52,53,54,57,49,51,44,51,54,46,53,52,50,53,52,49,93,44,91,45,55,56,46,51,50,51,57,57,49,44,51,54,46,53,52,51,56,50,50,93,44,91,45,55,56,46,48,52,54,50,55,49,44,51,54,46,53,52,51,53,53,49,93,44,91,45,55,56,46,48,50,55,52,49,49,44,51,54,46,55,55,55,56,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,51,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,51,52,53,52,53,44,51,55,46,54,51,56,51,55,54,93,44,91,45,56,55,46,57,51,50,57,53,50,44,51,55,46,52,56,48,48,53,50,93,44,91,45,56,55,46,56,48,49,48,52,54,44,51,55,46,51,55,57,52,52,53,93,44,91,45,56,55,46,56,49,51,52,49,51,44,51,55,46,51,53,48,54,52,53,93,44,91,45,56,55,46,51,55,53,49,52,53,44,51,55,46,53,54,57,57,56,56,93,44,91,45,56,55,46,52,57,53,51,51,49,44,51,55,46,54,52,55,53,52,55,93,44,91,45,56,55,46,55,51,52,53,52,53,44,51,55,46,54,51,56,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,49,57,48,44,34,98,101,100,115,34,58,52,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,49,48,52,52,50,55,44,51,54,46,52,54,51,49,48,53,93,44,91,45,57,56,46,49,48,51,57,48,52,44,51,54,46,49,54,52,56,55,55,93,44,91,45,57,55,46,54,55,53,54,49,55,44,51,54,46,49,54,52,54,54,51,93,44,91,45,57,55,46,52,54,48,55,57,50,44,51,54,46,49,54,52,52,54,50,93,44,91,45,57,55,46,52,54,49,54,48,51,44,51,54,46,53,57,51,54,51,55,93,44,91,45,57,55,46,52,54,50,52,53,57,44,51,54,46,53,57,51,54,50,55,93,44,91,45,57,56,46,49,48,52,50,56,54,44,51,54,46,53,57,51,53,55,56,93,44,91,45,57,56,46,49,48,52,52,50,55,44,51,54,46,52,54,51,49,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,83,107,97,109,97,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,50,52,53,56,53,54,44,52,54,46,48,53,51,56,53,51,93,44,91,45,49,50,50,46,50,52,57,50,49,55,44,52,53,46,53,52,56,54,53,51,93,44,91,45,49,50,49,46,57,50,50,48,50,56,44,52,53,46,54,52,57,50,48,53,93,44,91,45,49,50,49,46,56,54,55,48,50,49,44,52,53,46,54,57,51,51,57,49,93,44,91,45,49,50,49,46,53,50,51,54,56,49,44,52,53,46,55,50,52,57,51,93,44,91,45,49,50,49,46,54,48,57,50,52,54,44,52,53,46,55,56,50,53,49,57,93,44,91,45,49,50,49,46,54,49,50,50,51,50,44,52,54,46,48,52,52,48,57,51,93,44,91,45,49,50,49,46,53,50,50,51,50,49,44,52,54,46,48,52,52,48,48,54,93,44,91,45,49,50,49,46,53,50,50,51,50,52,44,52,54,46,51,56,56,50,50,52,93,44,91,45,49,50,50,46,50,52,48,57,54,54,44,52,54,46,51,56,53,51,54,49,93,44,91,45,49,50,50,46,50,52,53,56,53,54,44,52,54,46,48,53,51,56,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,76,101,110,97,119,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,52,55,52,44,34,98,101,100,115,34,58,49,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,51,50,57,55,44,52,50,46,48,55,51,52,53,54,93,44,91,45,56,52,46,51,54,48,52,49,54,44,52,49,46,55,48,54,53,56,57,93,44,91,45,56,51,46,56,56,48,51,57,49,44,52,49,46,55,50,48,50,49,50,93,44,91,45,56,51,46,55,54,51,49,53,44,52,49,46,55,50,51,53,53,50,93,44,91,45,56,51,46,55,55,51,57,50,50,44,52,50,46,48,56,50,52,51,93,44,91,45,56,52,46,49,51,49,57,54,51,44,52,50,46,48,55,49,53,55,55,93,44,91,45,56,52,46,51,54,51,50,57,55,44,52,50,46,48,55,51,52,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,71,105,108,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,57,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,49,56,54,51,55,44,51,52,46,56,53,53,51,57,56,93,44,91,45,56,52,46,54,53,55,48,57,56,44,51,52,46,55,50,56,57,48,53,93,44,91,45,56,52,46,54,53,52,53,50,51,44,51,52,46,53,56,51,49,56,55,93,44,91,45,56,52,46,54,53,52,51,54,54,44,51,52,46,53,52,56,57,52,54,93,44,91,45,56,52,46,51,52,53,53,53,51,44,51,52,46,53,54,50,55,51,53,93,44,91,45,56,52,46,49,57,54,55,53,52,44,51,52,46,54,49,55,57,50,52,93,44,91,45,56,52,46,51,49,52,54,53,51,44,51,52,46,56,48,55,51,50,56,93,44,91,45,56,52,46,52,50,57,48,57,51,44,51,52,46,56,53,53,48,51,54,93,44,91,45,56,52,46,54,49,56,54,51,55,44,51,52,46,56,53,53,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,82,111,115,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,54,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,48,53,52,48,56,44,52,56,46,57,57,57,57,56,51,93,44,91,45,57,54,46,51,56,55,56,51,53,44,52,56,46,53,52,52,51,48,56,93,44,91,45,57,53,46,54,48,50,51,49,53,44,52,56,46,53,51,56,56,56,55,93,44,91,45,57,53,46,51,52,50,53,52,44,52,56,46,53,52,48,50,49,49,93,44,91,45,57,53,46,51,52,50,55,51,44,52,56,46,55,49,51,48,50,56,93,44,91,45,57,53,46,48,56,57,56,54,51,44,52,56,46,55,49,51,48,54,50,93,44,91,45,57,53,46,48,57,49,50,56,50,44,52,56,46,57,49,57,49,55,51,93,44,91,45,57,53,46,50,51,53,54,48,54,44,52,56,46,56,56,49,52,53,93,44,91,45,57,53,46,51,49,57,56,57,53,44,52,56,46,57,57,56,55,55,93,44,91,45,57,54,46,52,48,53,52,48,56,44,52,56,46,57,57,57,57,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,52,57,56,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,44,91,45,57,48,46,48,52,57,49,50,57,44,51,50,46,55,51,53,54,55,52,93,44,91,45,57,48,46,52,53,48,48,51,55,44,51,50,46,53,55,51,55,56,51,93,44,91,45,57,48,46,52,52,53,57,52,54,44,51,50,46,52,56,55,57,48,51,93,44,91,45,57,48,46,50,52,51,54,52,49,44,51,50,46,52,56,55,53,51,51,93,44,91,45,57,48,46,50,52,51,55,54,52,44,51,50,46,52,48,48,48,57,56,93,44,91,45,57,48,46,48,54,53,54,57,55,44,51,50,46,51,57,57,53,50,57,93,44,91,45,56,57,46,56,54,49,49,53,57,44,51,50,46,53,56,51,49,54,50,93,44,91,45,56,57,46,55,56,52,49,50,51,44,51,50,46,53,56,54,56,57,49,93,44,91,45,56,57,46,55,51,48,51,48,52,44,51,50,46,54,51,52,50,50,56,93,44,91,45,56,57,46,55,51,48,48,49,54,44,51,50,46,56,56,53,48,55,50,93,44,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,55,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,54,55,44,34,98,101,100,115,34,58,51,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,56,56,55,52,44,51,50,46,53,50,53,50,50,50,93,44,91,45,49,48,49,46,54,57,53,48,49,49,44,51,50,46,48,56,55,53,51,50,93,44,91,45,49,48,49,46,50,54,52,50,49,54,44,51,50,46,48,56,55,49,51,54,93,44,91,45,49,48,49,46,49,56,51,57,57,55,44,51,50,46,48,56,55,50,48,56,93,44,91,45,49,48,49,46,49,55,52,53,55,49,44,51,50,46,53,50,52,49,49,50,93,44,91,45,49,48,49,46,54,56,56,55,52,44,51,50,46,53,50,53,50,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,55,48,56,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,53,57,51,52,56,44,51,56,46,52,50,49,56,50,49,93,44,91,45,56,50,46,54,48,52,54,50,53,44,51,56,46,50,52,55,54,54,50,93,44,91,45,56,50,46,54,51,52,55,48,50,44,51,56,46,49,51,54,57,52,49,93,44,91,45,56,50,46,53,52,57,50,52,44,51,56,46,48,54,55,57,53,50,93,44,91,45,56,50,46,52,57,55,55,57,54,44,51,55,46,57,52,53,52,56,56,93,44,91,45,56,50,46,52,49,52,55,53,55,44,51,55,46,56,53,53,53,48,57,93,44,91,45,56,50,46,51,48,54,51,57,49,44,51,55,46,57,52,51,54,52,93,44,91,45,56,50,46,50,48,50,50,51,54,44,51,56,46,48,51,54,49,57,51,93,44,91,45,56,50,46,50,56,53,54,57,51,44,51,56,46,49,52,52,57,53,50,93,44,91,45,56,50,46,50,54,52,56,52,57,44,51,56,46,50,50,57,49,57,57,93,44,91,45,56,50,46,53,48,56,50,56,44,51,56,46,52,49,49,49,57,56,93,44,91,45,56,50,46,53,57,51,52,56,44,51,56,46,52,50,49,56,50,49,93,93,93,125,125,93,125]) \ No newline at end of file diff --git a/functions/qLastMonth.js b/functions/qLastMonth.js deleted file mode 100644 index d0c313bcc..000000000 --- a/functions/qLastMonth.js +++ /dev/null @@ -1,83 +0,0 @@ -const {BigQuery} = require('@google-cloud/bigquery'); -const columns = require('./meta/columns.json'); - -const options = { - credentials: { - "type": "service_account", - "project_id": process.env.project_id, - "private_key_id": process.env.SK_ID, - "private_key": process.env.SK.replace(/\\n/gm, '\n'), - "client_email": process.env.CLIENT_EMAIL, - "client_id": process.env.CLIENT_ID, - "auth_uri": "https://accounts.google.com/o/oauth2/auth", - "token_uri": "https://oauth2.googleapis.com/token", - "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", - "client_x509_cert_url": process.env.client_x509_cert_url - }, - projectId: process.env.project_id, -}; - -async function query(query, bigquery) { - const options = { - query, - location: 'US', - }; - const [job] = await bigquery.createQueryJob(options); - return await job.getQueryResults(); -}; - -const constructQuery = (datasets, days=30) => { - let queryStrings = [] - datasets.forEach(dataset => { - const currColumns = columns['public.' + dataset]; - const dateRange = currColumns.slice(-days,).map(col => col[0] === '_' ? col.slice(1,).replace(/_/g, '-') : col) - queryStrings.push({ - query: `SELECT fips_code as id, ARRAY(SELECT IFNULL(${currColumns.slice(-days,).join(',-999) UNION ALL SELECT IFNULL( ')},-999)) as data from covid-atlas.public.${dataset}`, - dataset, - dateRange - }) - }) - - return { - queryStrings, - } -} - - - -exports.handler = async (event) => { - try { - const { - datasets, - days - } = event.queryStringParameters; - console.log(datasets) - const datasetsArray = JSON.parse(datasets) - const bigquery = new BigQuery(options); - - const { - queryStrings - } = constructQuery( - datasetsArray, - days||30 - ) - const results = await Promise.all(queryStrings.map(entry => query(entry.query, bigquery))) - - const parsed = results.map((result, idx) => {return { - data: result, - dataset: queryStrings[idx].dataset, - dateRange: queryStrings[idx].dateRange, - }}) - - return { - statusCode: 200, - body: JSON.stringify({ data: parsed }) - }; - } catch (error) { - console.log(error); - return { - statusCode: 500, - body: JSON.stringify({ error: 'Failed fetching data' }), - }; - } -}; \ No newline at end of file diff --git a/functions/qTimeseries.js b/functions/qTimeseries.js index 06cd511d0..7436ddade 100644 --- a/functions/qTimeseries.js +++ b/functions/qTimeseries.js @@ -105,10 +105,9 @@ exports.handler = async (event) => { dataset, geoid } = event.queryStringParameters; - const idArray = geoid ? JSON.parse(geoid) : false; - const bigquery = new BigQuery(options); + const idArray = geoid ? JSON.parse(geoid) : false; const { queryString, dateRange diff --git a/functions/query.js b/functions/query.js index e6810da74..42184ecac 100644 --- a/functions/query.js +++ b/functions/query.js @@ -1,90 +1,194 @@ -const jsgeoda = require('jsgeoda'); const {BigQuery} = require('@google-cloud/bigquery'); +const columns = require('./meta/columns.json'); const options = { - credentials: { - "type": "service_account", - "project_id": process.env.project_id, - "private_key_id": process.env.SK_ID, - "private_key": process.env.SK.replace(/\\n/gm, '\n'), - "client_email": process.env.CLIENT_EMAIL, - "client_id": process.env.CLIENT_ID, - "auth_uri": "https://accounts.google.com/o/oauth2/auth", - "token_uri": "https://oauth2.googleapis.com/token", - "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", - "client_x509_cert_url": process.env.client_x509_cert_url - }, - projectId: process.env.project_id, + credentials: { + "type": "service_account", + "project_id": process.env.project_id, + "private_key_id": process.env.SK_ID, + "private_key": process.env.SK.replace(/\\n/gm, '\n'), + "client_email": process.env.CLIENT_EMAIL, + "client_id": process.env.CLIENT_ID, + "auth_uri": "https://accounts.google.com/o/oauth2/auth", + "token_uri": "https://oauth2.googleapis.com/token", + "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", + "client_x509_cert_url": process.env.client_x509_cert_url + }, + projectId: process.env.project_id, }; -async function query(queryString, bigquery) { +async function query(query, bigquery) { const options = { - query: queryString, + query, location: 'US', }; const [job] = await bigquery.createQueryJob(options); return await job.getQueryResults(); }; -function orderData(data, idColumn, idOrder, dataColumn){ - let result = []; - let indexed = {}; +const constructQuery = (datasets, days=30) => { + let queryStrings = [] + datasets.forEach(dataset => { + const currColumns = columns[dataset]; + const dateRange = currColumns.slice(-days,).map(col => col[0] === '_' ? col.slice(1,).replace(/_/g, '-') : col) + queryStrings.push({ + query: `SELECT fips_code as id, ARRAY(SELECT IFNULL(${currColumns.slice(-days,).join(',-999) UNION ALL SELECT IFNULL( ')},-999)) as vals from covid-atlas.${dataset}`, + dataset, + dateRange + }) + }) - for (let i=0; i { + let returnCollection = [] + + const vals = Object.values(result[0][0]) + + const indvVals = indvData + ? indvData[0].map(t => Object.values(t).slice(1,)) + : null + + const indvKeys = indvData + ? indvData[0].map(t => t['fips_code']) + : null + + const indvFunc = indvData + ? (indvVals, indvKeys, i) => { + for (let n=0; n {} + + for (let i=0; i { + let queryString = 'SELECT ' + let dateRange = [] + const currColumns = columns[dataset] + if (allSeries) { + queryString += 'fips_code, ' + for (let i=0; i 1) queryString += ' where fips_code IN (' + geoid.join(',') + ')' + + return { + queryString, + dateRange + } } -const idColumn = 'fips_code'; -const dataColumn = 'count'; + exports.handler = async (event) => { try { - if (event.queryStringParameters.lisa == 'true') { - const bigquery = new BigQuery(options); - const [geoda, raw] = await Promise.all([ - jsgeoda.New(), - query( - event.queryStringParameters.q, - bigquery) - ]); - const uid = geoda.readGeoJSON(geom); - const data = orderData( - raw[0], - idColumn, - geoidOrder, - dataColumn + const { + datasets, + days, + geoid, + type + } = event.queryStringParameters; + const bigquery = new BigQuery(options); + if (type === undefined) { + return { + statusCode: 500, + body: JSON.stringify({ error: 'Specify a query type such as snapshot or timeseries.' }), + }; + } + if (type === 'snapshot') { + const datasetsArray = JSON.parse(datasets) + const { + queryStrings + } = constructQuery( + datasetsArray, + days||30 ) - const weights = geoda.getQueenWeights(uid) - return { statusCode: 200, body: JSON.stringify({ localMoran: geoda.localMoran(weights, data) }) - }; - } else { - const bigquery = new BigQuery(options); - const result = await query( - event.queryStringParameters.q, - bigquery); - return { statusCode: 200, body: JSON.stringify({ result }) }; + const results = await Promise.all(queryStrings.map(entry => query(entry.query, bigquery))) + const parsed = results.map((result, idx) => {return { + rows: result[0], + dataset: queryStrings[idx].dataset, + dateRange: queryStrings[idx].dateRange, + }}) + return { + statusCode: 200, + body: JSON.stringify({ data: parsed }) + }; + } + if (type === "timeseries") { + const idArray = geoid ? JSON.parse(geoid) : false; + const { + queryString, + dateRange + } = constructTimeQuery( + 'public.' + dataset, + idArray + ) + if (idArray && idArray.length > 1) { + + const indQuery = constructTimeQuery( + 'public.' + dataset, + idArray, + true + ) + + const [resultSum, resultIndividual] = await Promise.all([query(queryString, bigquery), query(indQuery.queryString, bigquery)]) + const data = zip(resultSum, dateRange, resultIndividual) + return { + statusCode: 200, + body: JSON.stringify({ data }) + }; + } else { + const result = await query(queryString, bigquery) + const data = zip(result, dateRange) + return { + statusCode: 200, + body: JSON.stringify({ data }) + }; + } + } } catch (error) { console.log(error); return { - statusCode: 500, - body: JSON.stringify({ error: 'Failed fetching data' }), + statusCode: 500, + body: JSON.stringify({ error: 'Failed fetching data' }), }; } -}; - -var geoidOrder = [31039,53069,35011,31109,31129,72085,46099,48327,6091,21053,39063,48189,1027,48011,39003,13189,55111,5137,41063,42007,28061,29083,8109,37037,49033,40001,39085,51775,51121,47065,35035,35003,1091,56023,29011,48057,51735,54075,48077,51095,31101,31137,22019,22111,40135,1049,36101,42053,22105,51179,26109,18073,13025,13171,18151,48361,39047,25015,21003,37001,20073,25025,16051,48177,47115,26007,21231,47185,48147,20043,48265,12053,12129,12131,28017,2130,26035,20157,12127,40017,72115,13115,32001,31181,17067,46067,41013,50011,26103,9007,37057,17025,29103,29117,42117,31043,26089,51181,48391,39017,13273,13063,56013,18115,13073,8115,30065,42043,46101,54079,34037,20039,18123,28145,31015,27095,38099,39115,39133,56041,32013,48247,8017,41005,5113,13193,18007,47129,46043,24047,17185,18069,21209,19053,18169,18003,18099,31171,38085,48127,27045,45023,27073,49005,55093,13049,13233,17113,23001,16055,32003,20147,31089,29101,55063,22021,21061,17005,17009,27085,55033,8027,29123,48353,42127,36091,48041,40095,24001,54103,55053,41007,53041,36003,19031,18117,13089,13227,30015,31017,47013,37069,24510,20111,19027,22107,47123,20075,19151,16045,5063,5085,18111,13119,12051,13265,48245,30059,8067,48027,28069,5019,41035,36075,72105,1019,48019,30087,35059,26153,36111,34007,17083,51085,20199,26003,5049,48215,37155,26123,41049,27153,5083,37109,5091,12095,8111,16041,13045,20161,48413,51167,37027,16065,18173,21001,21077,21097,23023,30097,48181,42059,2188,20051,1065,1105,1033,20151,21017,47149,13075,20101,40059,17147,48107,72053,1063,16033,19109,72151,38013,37063,19085,31103,19187,17151,47159,51089,51510,19101,30049,49013,40003,48119,47169,21193,46039,41029,72067,48507,31007,19121,12011,13279,26151,48397,26163,27105,27001,38071,37145,20195,28151,48133,28055,48123,48005,45081,29125,5001,29109,51540,17011,39145,37115,16053,39163,48309,16037,19089,12099,13181,1013,47165,51097,5015,51820,2220,41051,47061,27057,38081,36089,29179,6067,39125,18179,51063,6083,54005,28009,21055,19147,19159,37151,24015,18171,31077,31095,31151,21119,19045,27063,27039,27047,6009,25001,51119,42065,18089,47003,47027,17029,47097,41001,36097,26159,17131,21127,21175,21177,17049,47105,46025,15003,12041,18157,42109,48277,12086,31057,48289,8097,38035,18091,18057,51595,40081,20071,13145,13251,72127,48433,39069,33009,29145,18129,48311,17035,13297,27121,51157,51009,6111,17033,8093,6037,4027,13129,19025,12055,51580,50017,20113,4021,39051,8003,12017,72049,72051,47041,42031,46097,46073,18031,18037,51057,45089,36031,19195,40063,51027,51005,28087,18143,8099,48435,72121,40101,29043,72039,28073,18137,38057,13147,22049,51133,48157,55047,30073,55127,32021,17057,36103,18161,29119,31157,35047,1081,48367,38021,38003,27143,13293,6097,26033,16019,13013,13183,48271,40115,42033,26037,72133,17135,28003,28071,22043,29005,17115,26149,17055,30033,31001,27109,34039,72139,1097,46087,1057,1017,37131,8081,21087,18047,37013,72073,38015,37159,26071,27067,21237,48149,46081,23029,48045,26131,28015,41003,27133,42063,22061,42099,46137,48203,26013,40131,29019,72097,40015,8059,54011,48383,5141,8117,20035,5071,36041,51045,48083,2290,4017,28085,48357,48103,56003,47081,28143,29081,72029,18005,13223,39015,47141,38101,25027,39091,6031,6073,72123,13079,72103,29037,36027,48477,8101,29067,38009,37051,56017,26001,6061,5129,48305,36077,37153,37093,31131,42023,45035,27161,46015,47177,17023,21201,47095,45015,5051,20139,39155,48333,48359,42019,16049,20115,51029,37025,29225,49011,27033,12093,13291,19013,48403,39131,1125,1131,28097,31099,31087,10003,16081,17161,51073,5133,18017,16077,18015,42101,56043,37029,36109,5069,5079,55123,29093,48223,36001,48225,39111,20165,18107,20187,21129,27071,48029,8013,47089,40097,27165,16013,22053,46119,8031,40029,30011,48461,18051,31105,17093,11001,8085,27171,55059,8037,6075,8113,2020,12109,28019,29079,26085,26139,17031,17059,45047,20059,27027,47075,49003,28139,54051,54035,16039,24005,38005,29163,39087,29201,39001,48143,13137,13319,54061,39033,12027,9011,39059,26015,29209,51760,37169,19039,19065,6041,48381,48401,19181,39161,12043,13199,8023,48099,19001,13053,6043,29089,41047,55079,27139,39129,51145,8014,47099,26009,45069,16009,17103,31127,37031,20149,26075,48091,25019,45009,48007,13019,18165,26143,37005,6035,51610,12081,39119,8015,8025,8043,28109,28111,31041,12013,21117,19037,17037,19081,38089,26095,40019,37139,35055,28011,32023,47073,38011,42057,22055,48237,17175,40055,48211,16069,46129,6055,40033,29221,36011,48417,48407,19061,51075,20181,39139,17001,39021,33019,17075,19157,39169,13113,13141,48259,36039,51137,40089,13277,31025,46077,56009,36043,38047,26053,27005,1095,47173,54057,55003,17053,38029,6089,22113,5121,55085,22035,22037,22087,48481,2198,2195,48153,2275,21151,47009,30031,45031,1053,13143,20001,17041,51079,55137,5065,6053,35017,29131,37193,2110,29165,29021,1083,18065,31143,39123,27107,19165,24013,19011,21159,27025,21189,42015,54029,29051,26021,42061,31045,51141,26119,26135,35007,17163,17189,42009,5127,20099,42073,39067,37003,34009,33005,27089,51101,8055,48255,47023,17171,49027,49029,48257,4011,4013,26129,47087,17159,1009,30051,48131,29173,48251,13061,41023,41011,48159,36113,51113,40005,17129,13015,12069,40111,38083,18049,20091,24009,55129,53031,72003,27169,28149,29003,29139,20021,37083,35043,21051,42035,41043,55065,40147,54077,55135,48137,41037,29153,48473,1099,50009,51111,38097,13139,13283,13037,55125,27007,72043,72055,24019,42037,39023,48323,4019,35006,34005,50021,13099,25007,38049,31179,38045,16023,33007,38043,48273,18127,28101,37163,47127,12103,72019,17065,5105,20023,8029,19185,48165,1093,37189,51770,48317,48037,49057,29127,36045,19097,38063,36019,8045,29177,39073,1085,13043,19113,6105,13215,28135,20005,72081,48003,39109,48375,40133,45003,6045,51550,72153,56037,48169,54031,72001,55089,47163,45059,56011,55117,25013,48055,20029,6027,1037,19059,21095,20061,42011,47019,27083,51037,47179,45071,51093,41069,29023,22047,28125,51061,51750,32005,12037,18055,18139,55131,29105,42085,5031,29195,17193,17039,32033,27049,37173,12101,12119,36059,38091,18163,29071,37011,54107,55007,47161,55097,45063,24003,55039,54101,55061,48369,40151,21063,25003,29041,8103,8087,41045,34023,20167,17155,46055,47111,5023,1109,16003,25005,42107,38103,37045,5059,24021,17169,6051,6109,35013,13081,5027,38039,6095,19043,48449,54027,37125,20009,38087,22083,31071,22099,1119,1133,12117,28035,26065,20177,46061,27061,8073,36053,36115,18081,48445,35021,1121,55067,48155,19021,19129,48385,39041,37067,32510,19049,48065,13261,29223,45007,56007,30093,17177,26087,22027,28161,72093,26079,72005,22039,47069,4003,35023,38023,6071,8083,28023,19125,31055,51600,40057,29039,13059,16085,48275,5103,39037,40071,46041,41057,13077,28127,28131,6013,47017,51087,18119,36119,29017,54047,54033,37077,9009,31139,13023,13033,17181,17091,38051,31141,37185,72009,13197,46027,10005,13159,29175,20015,48209,48325,26105,45013,46135,55105,45077,53013,18023,17027,16067,42113,28121,48345,41039,48485,26155,20089,20123,12007,28091,28039,17085,18059,51620,48329,20171,30013,51660,17199,30029,72111,20189,21067,21091,46013,54001,47181,31013,42097,48469,51530,26147,31173,50015,51067,40011,53037,18135,49025,54093,72113,55023,1071,19123,20045,21059,21197,29097,41061,13151,38001,37137,21083,42021,47107,26093,8001,42069,40123,40037,48457,47175,40125,9013,35053,13003,12031,48145,5149,20033,21113,21171,40075,46079,37033,48377,39057,48489,72021,35028,2122,1003,19007,51127,13263,36049,54015,18077,51019,35033,31011,29149,47083,42131,37107,18167,18039,51077,48303,27093,39005,31119,12085,8079,13085,13167,5095,29059,51143,2068,20145,20209,12029,26157,2240,20065,22097,47055,39095,5093,72117,18043,20129,21081,21217,37075,54045,54073,51071,54019,53061,35015,31117,31145,31149,47085,17125,51197,13303,53077,5143,48213,55035,47153,48471,4005,20191,26127,27065,39007,6003,48167,1011,17105,39135,39079,48201,25017,72145,48115,36069,2261,1001,20121,13091,36023,13039,26161,18087,48371,13225,13311,13163,55083,48347,44009,53047,53063,55041,55113,34017,39151,48187,53029,54037,51153,42029,54055,47145,53009,53065,19177,31073,28095,12033,48439,24033,51169,48239,40085,13289,39099,1087,17191,48437,29151,17089,6017,45055,37073,8089,41019,42089,5101,38019,40103,20063,22077,31067,1115,28123,13095,18061,16017,13047,22059,23027,24027,49035,9003,9015,12087,39157,36085,39071,27077,16011,72023,72069,72077,45045,46085,55121,6113,48431,48495,46071,49041,51036,1023,18083,31047,20057,38105,38017,17069,31005,48163,19103,20133,21089,20107,49017,32011,31085,8095,5013,2090,21101,28051,28105,72037,72047,30027,24023,22119,26059,21141,46033,33013,42133,37161,46005,1043,13097,31097,37187,46075,37007,2100,38007,31003,29073,21031,56005,13211,5037,5107,22093,6115,1117,8091,35009,40149,37135,18131,26019,36029,24031,51685,51013,51035,29183,6069,24035,20013,13031,21071,30007,13309,37049,29087,48295,41009,45041,38061,49053,30003,42047,31165,28031,72099,18013,18019,21021,21065,48087,48089,17063,27081,13109,48497,2050,13307,13169,13135,55095,55045,72107,36079,51700,8011,40065,30089,48173,5047,40093,47125,53051,38055,41027,19197,48419,29055,51017,27111,22075,28115,22067,21029,1047,48093,30053,72129,72135,27021,8007,28163,55087,29107,37195,39117,30039,38031,5033,48053,29186,48179,17109,19137,5067,48229,22079,31111,48067,47079,51840,37061,37087,27037,41025,72095,55001,29045,21015,21229,22009,28137,29227,31163,46021,46063,26057,19175,17127,31113,31121,31161,21039,56025,13321,18109,48139,13229,18053,12035,28077,22127,17073,41041,23031,46029,13231,13259,34025,5021,5045,40041,19107,17061,27075,13285,6023,47043,27003,46009,47059,51183,18141,38067,46007,22115,23019,24041,13257,6065,5005,28007,19169,20011,51049,45085,2164,54109,6029,48097,45075,55119,27099,27101,44007,29161,28117,21235,18149,48491,72109,19131,13107,22025,42025,31133,47171,45083,55073,32007,54007,26165,48079,42013,29085,29009,27123,5081,32019,12071,41033,72091,28113,47031,16059,21183,31153,13071,27167,17157,23011,51173,35041,42111,51191,37081,16001,40039,39101,17149,17203,13245,1107,40045,17145,19075,8107,34035,6011,17087,8053,16031,27059,42049,28029,48467,51161,51015,2060,49031,21161,27009,48129,12005,1077,18045,17173,17051,39127,51590,13011,13305,40109,40069,37099,49043,29167,32015,19191,21023,55037,54087,27159,51670,17201,4007,24045,21043,37097,51083,37091,36057,27113,53073,41021,34029,5009,40031,48253,48185,26049,22007,28013,28041,30017,46109,17141,38077,55005,55051,27157,6015,40127,53007,26141,40027,36105,37149,37165,37085,37105,18159,20027,40145,30083,5003,5041,72147,47135,27163,51740,42051,54023,51171,48235,29025,12107,18025,29111,31075,72087,16071,17139,21107,16035,21013,27035,72011,4009,5123,13101,2070,20105,20183,12065,72041,28005,5097,26025,1029,8123,40009,6049,19153,13179,48349,48047,47187,56021,53003,27155,17017,13247,42067,42083,40049,31021,35045,36073,22031,6019,13105,1005,37017,48111,17167,40035,47035,26137,19161,49015,53019,30109,35027,40021,27173,48231,48335,48499,40113,37039,26107,21195,12067,37035,21025,48075,29181,17179,48243,51678,5135,8069,37177,27131,29219,21227,22017,46121,19127,40141,37113,54063,18155,21105,1061,17099,19055,20127,19051,16015,55081,37143,12047,2170,18035,12075,72063,72065,28045,13315,22081,47093,23017,29095,13281,28129,16075,16079,37095,19067,21145,21225,46125,47029,47067,47071,45067,72057,22117,29207,13093,27145,31155,27141,46035,47025,48337,48049,55101,55115,19009,48207,40083,36065,8065,40121,54017,54105,33003,54095,27079,53017,36009,55027,19105,20007,29169,1045,20109,6039,29075,31009,49009,56031,37071,35019,30037,37101,6085,45019,53005,29001,39043,17183,29189,17007,6103,55025,48151,22085,17137,13235,37015,37167,47143,37079,21131,24039,17123,21143,48095,48081,47133,26063,26069,13069,13299,38037,22051,22103,19083,22023,39027,27137,39093,72143,19015,48373,31051,24025,45037,51001,55015,21121,26067,37129,47131,21035,51003,47147,51043,53023,21109,27031,45073,22033,28021,24037,26081,37147,30009,31167,13001,19099,28153,48101,51081,12105,48503,1123,33015,8105,19149,36123,53033,41017,19155,29229,30101,36107,48287,13121,48073,29007,45029,55055,5055,48191,55013,35057,53049,37141,48221,46117,32031,21007,48009,48023,48405,32029,13249,9001,48313,6077,28159,21103,21167,31183,21135,27051,28053,1025,20017,21221,1069,46003,2013,31061,24029,20037,27023,46103,45049,16043,13029,51053,12111,36055,46083,55017,20207,21157,13065,13185,15005,15007,26099,13287,17079,48331,18147,21099,21137,30005,51710,48389,51155,37179,38053,12091,6001,17013,18085,28103,5147,34015,33011,30045,37121,30077,41053,41065,46105,19173,1129,39039,54025,17121,51051,51007,13243,35029,48355,56045,72137,17187,1089,47189,48063,40067,54085,19145,20087,22045,2158,37133,27043,47057,48161,42087,1041,51520,48399,48443,20153,20193,13161,19035,5145,28083,29053,26043,17197,48117,46011,29047,28027,18011,19057,19163,20143,12023,12059,28047,72141,47011,27017,48315,36095,40117,36007,48291,39009,39081,54083,54049,34011,6057,55031,21199,37065,48241,49001,13213,18075,26117,36083,12021,35031,13017,5077,12003,13173,20159,1015,28059,21037,21057,28107,48195,48071,13239,48199,9005,39143,23021,17153,40107,26145,35039,50005,51023,17119,48085,45001,31053,12115,55077,4015,4025,45051,42091,16061,72013,51720,34027,29211,20135,48039,51790,31029,39113,48447,13221,5029,29147,38073,26017,47157,6007,27115,48021,53039,53055,55009,20205,22069,22109,13155,2185,26011,19111,20141,26047,19071,23015,36099,21125,47121,29213,13269,51830,48415,8047,40087,54071,51139,40079,54089,37119,34013,29115,13209,41055,13133,46017,46095,48135,48293,53027,54003,72149,30067,48121,45021,37199,48387,48321,27149,13301,48197,17133,13165,21085,48363,13149,1079,72061,28093,20025,20081,22013,13295,19095,31019,40007,19023,30085,72017,53015,48297,29135,51193,37197,6047,40043,37023,37191,42123,5061,37059,37111,5099,8125,48421,48463,39011,22015,19063,20169,21153,48017,29027,56001,56029,42093,36081,12121,26031,26051,21173,45057,21123,19193,12123,17003,29099,29113,13051,12125,36037,19041,30025,46107,48109,23005,48013,20095,13241,54097,29215,5119,19047,16005,39055,72035,6107,72015,72125,36117,51163,38095,42045,36063,50003,12019,37183,39061,34003,32017,2180,30055,19019,17043,46047,27069,13219,48493,31059,12079,72031,18153,4012,13027,2016,2150,20185,13271,26115,18181,18113,21139,13201,47103,21211,31185,42001,45005,47037,49047,49049,18021,36047,29141,39075,19143,18079,16083,17165,26077,45061,56019,18027,26055,22003,46065,46069,45027,30095,47007,21219,47183,29077,42077,31159,36015,36121,6099,42095,1103,21027,28043,21213,50013,39029,51125,12097,5053,13175,36061,5007,72071,12083,51135,34041,36021,51690,40023,20041,48427,13103,40129,55103,35025,1075,72054,47117,51011,5087,56033,42041,42055,42079,26039,1113,39019,51065,17097,13195,5039,8057,8063,16073,55141,36013,13067,47091,39013,51195,29035,40013,31035,24017,19033,19073,21205,49055,29031,53071,29133,5025,48113,72079,18033,22073,22095,22091,29197,1059,21041,8019,48267,26097,48307,28141,48105,48217,8075,20055,20125,45039,31033,27091,47155,47139,48263,30099,31069,17117,39141,17195,48141,48301,40077,39167,29091,20047,21111,17107,55139,21075,20079,30021,54091,26111,28119,21093,17081,46057,55069,36033,51630,54081,35005,35049,6059,4023,37053,17101,18067,18125,21047,26045,19179,6025,26027,28157,2282,20179,28079,72025,72027,28025,28037,28099,46045,72119,1035,18029,18071,28081,22125,5035,12063,48125,51115,38075,48283,36067,19087,31083,30075,72075,55091,4001,29121,48279,20097,48015,29061,13253,26101,19119,48233,40139,40153,19003,6101,42105,48465,20077,19133,49023,40137,36017,17143,19091,31177,55049,27097,42003,29205,39097,20201,17019,16087,17045,8121,39065,26113,38093,29203,48423,40143,40091,48395,48171,26125,38033,56027,27117,51099,53025,27129,12001,31091,51147,49007,42017,46059,42081,16057,13237,51640,35037,48269,5073,48451,12049,39025,48501,41071,19115,20049,39121,39137,48425,42075,30035,32027,27087,34031,30047,48261,48033,29157,48411,40073,48051,36035,28133,27053,42027,48025,47077,19171,20175,19135,31147,17021,12089,12133,13007,13275,21005,21185,13057,38065,26133,47109,53001,29057,22101,50007,72045,15009,22057,19139,12113,18101,21203,21223,13055,45033,37103,29199,20131,20137,72007,72033,31065,13087,18177,21009,31093,38025,6005,47049,20031,26023,51031,39105,54067,40053,46115,50027,48455,35001,13205,15001,21147,21191,21215,30041,31175,48069,24043,21133,34033,51680,5125,54053,54021,28063,38079,30103,21049,72101,26005,47005,27015,47137,51109,18145,39049,49021,32009,26083,49039,20093,12009,18105,19117,21239,45053,48043,45065,45087,27103,55075,53011,55099,18103,20053,22123,12077,20083,20119,21149,28001,72083,28057,21073,23009,23013,13217,46049,26061,30061,47051,22029,22063,25009,46019,8035,45079,18095,40099,54009,54013,51021,30111,54043,6033,13131,8021,49037,18133,16047,47167,22121,29171,56039,55043,38059,37041,37021,6063,51730,50023,46093,18097,5017,13021,72059,72131,5115,51175,48183,36087,5089,51800,8041,29187,48475,8061,48487,41015,8119,29049,49051,16029,37157,5117,5011,48193,24011,27041,30043,51059,30023,47001,39077,13005,10001,39173,13157,20003,17095,30107,47015,23007,21165,46089,8051,26029,27151,39147,13267,48429,37117,30081,13317,53043,6081,39171,8009,16021,16007,39159,39035,48285,40105,13125,41059,46102,20117,22065,30105,13313,20203,46023,31027,53035,17111,30069,29033,53075,27147,31169,47033,19079,39165,13255,34019,29217,18121,19069,13035,8039,44001,48035,44005,39045,38069,17015,27125,41031,47021,46127,1051,13187,39083,19017,48175,37089,12061,48393,31049,36051,19141,48059,48379,20067,51105,35051,5043,31123,29015,5109,8077,29065,51185,42103,42115,48343,42125,50001,20103,26121,28049,48281,51107,29185,36025,30071,29129,53045,37127,51199,29159,30063,20019,48459,51047,40061,54069,54065,51165,18183,6093,46037,22071,1073,1127,29063,12039,13083,28033,51187,17047,47113,1111,37009,8033,39089,51683,5139,17071,1101,8005,21155,53057,28067,55021,37019,27029,51131,20163,18041,31079,31081,31115,30091,31063,72089,1007,28075,27011,27013,51091,51177,33017,13153,26041,5131,6087,13191,13207,29069,48483,13117,48409,28147,29137,26073,48341,45017,56035,21069,55019,45091,18001,22005,42119,51041,22001,42039,46123,19077,19183,46111,40051,54039,55109,42121,39153,13127,48479,37123,23003,28065,18175,48031,51025,47045,47053,51149,5075,38027,53053,16063,42071,55057,47151,46031,46053,37181,21033,45011,47039,18009,1055,16025,20155,47119,56015,55107,55133,21079,25021,18063,17077,45043,38041,49019,49045,51650,55011,51069,54041,27119,27127,47047,22089,5111,12045,47063,1021,48351,48219,13009,37175,37171,1031,39149,16027,30019,12073,40119,1039,18093,20069,21045,21169,21207,22011,23025,40025,21163,21179,21187,29155,31125,55078,48365,21011,48001,51033,19167,6021,29510,13111,46051,46091,53067,31107,35061,30079,19005,48061,48339,8071,48299,48319,37043,36071,36093,54059,20197,27055,21181,25023,36005,37055,39103,42005,34001,55071,55029,37047,39053,48441,51570,39031,31135,48205,8049,48249,19189,6079,1067,39175,48505,13177,21019,27019,31037,45025,47101,41067,51810,30057,51103,29013,33001,51159,2230,2105,53021,19093,20173,48453,12057,34021,31023,42129,12015,19029,39107,21115,44003,50025,50019,20085,22041,28155,25011,31031,30001,29143,5057,29029,51117,21233,40047,53059,26091,13123,27135,28089,48227,54099] - -var geom = new Uint8Array([123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,67,111,108,108,101,99,116,105,111,110,34,44,34,110,97,109,101,34,58,34,99,100,99,34,44,34,99,114,115,34,58,123,34,116,121,112,101,34,58,34,110,97,109,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,110,97,109,101,34,58,34,117,114,110,58,111,103,99,58,100,101,102,58,99,114,115,58,79,71,67,58,49,46,51,58,67,82,83,56,52,34,125,125,44,34,102,101,97,116,117,114,101,115,34,58,91,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,117,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,57,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,49,57,51,53,57,44,52,50,46,48,57,48,53,55,55,93,44,91,45,57,55,46,48,49,57,57,49,49,44,52,49,46,55,52,50,57,56,93,44,91,45,57,54,46,57,48,53,57,50,50,44,52,49,46,55,52,50,55,54,51,93,44,91,45,57,54,46,53,53,53,49,55,50,44,52,49,46,55,52,50,48,49,56,93,44,91,45,57,54,46,53,53,52,56,54,54,44,52,50,46,48,49,53,56,55,53,93,44,91,45,57,54,46,53,53,53,53,49,49,44,52,50,46,48,56,57,57,53,55,93,44,91,45,57,54,46,56,50,51,54,55,44,52,50,46,48,57,48,52,49,49,93,44,91,45,57,55,46,48,49,57,51,53,57,44,52,50,46,48,57,48,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,87,97,104,107,105,97,107,117,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,55,50,56,51,49,54,44,52,54,46,50,54,52,53,52,49,93,44,91,45,49,50,51,46,52,55,57,54,52,52,44,52,54,46,50,54,57,49,51,49,93,44,91,45,49,50,51,46,51,54,51,55,52,51,44,52,54,46,49,52,54,51,51,51,93,44,91,45,49,50,51,46,50,49,51,48,53,52,44,52,54,46,49,55,50,53,52,49,93,44,91,45,49,50,51,46,50,49,55,57,53,44,52,54,46,51,56,53,54,49,55,93,44,91,45,49,50,51,46,51,53,56,51,51,52,44,52,54,46,51,56,52,48,50,53,93,44,91,45,49,50,51,46,55,50,54,53,53,55,44,52,54,46,51,56,52,56,55,50,93,44,91,45,49,50,51,46,55,50,56,51,49,54,44,52,54,46,50,54,52,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,68,101,32,66,97,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,56,57,51,51,55,55,44,51,52,46,48,56,56,52,48,55,93,44,91,45,49,48,52,46,55,56,54,52,50,57,44,51,52,46,48,56,55,54,54,52,93,44,91,45,49,48,52,46,55,56,54,49,48,52,44,51,52,46,48,48,48,49,51,55,93,44,91,45,49,48,52,46,49,53,54,50,54,57,44,51,51,46,57,57,53,52,49,51,93,44,91,45,49,48,52,46,49,53,53,54,44,51,52,46,48,56,51,50,48,53,93,44,91,45,49,48,51,46,57,52,54,48,49,57,44,51,52,46,48,56,50,52,54,51,93,44,91,45,49,48,51,46,57,52,56,55,55,56,44,51,52,46,54,48,53,48,53,56,93,44,91,45,49,48,52,46,49,50,56,56,56,44,51,52,46,54,48,53,50,48,49,93,44,91,45,49,48,52,46,49,50,57,49,52,51,44,51,52,46,55,55,57,51,51,55,93,44,91,45,49,48,52,46,51,51,57,56,49,55,44,51,52,46,55,55,57,48,54,50,93,44,91,45,49,48,52,46,51,51,57,55,50,53,44,51,52,46,54,57,50,50,51,52,93,44,91,45,49,48,52,46,52,52,52,55,54,50,44,51,52,46,54,48,52,57,53,50,93,44,91,45,49,48,52,46,56,57,50,48,50,51,44,51,52,46,54,48,52,52,50,54,93,44,91,45,49,48,52,46,56,57,49,55,52,53,44,51,52,46,51,52,55,48,52,51,93,44,91,45,49,48,52,46,56,57,51,51,55,55,44,51,52,46,48,56,56,52,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,76,97,110,99,97,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,48,48,57,52,44,34,98,101,100,115,34,58,49,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,49,48,57,52,44,52,49,46,48,52,54,49,49,54,93,44,91,45,57,54,46,57,49,51,52,57,51,44,52,48,46,54,57,55,57,52,56,93,44,91,45,57,54,46,57,49,50,54,51,55,44,52,48,46,53,50,51,54,50,53,93,44,91,45,57,54,46,52,54,51,54,51,50,44,52,48,46,53,50,51,48,49,51,93,44,91,45,57,54,46,52,54,51,55,54,52,44,52,48,46,55,56,51,57,54,93,44,91,45,57,54,46,52,54,51,56,54,49,44,52,49,46,48,49,54,48,54,57,93,44,91,45,57,54,46,52,54,51,56,54,57,44,52,49,46,48,52,53,48,56,51,93,44,91,45,57,54,46,57,48,56,53,48,55,44,52,49,46,48,52,54,48,57,49,93,44,91,45,57,54,46,57,49,48,57,52,44,52,49,46,48,52,54,49,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,78,117,99,107,111,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,55,51,53,55,49,44,52,48,46,51,53,48,51,53,57,93,44,91,45,57,56,46,50,55,52,48,49,55,44,52,48,46,48,48,50,54,54,50,93,44,91,45,57,55,46,57,51,49,56,50,53,44,52,48,46,48,48,50,48,55,50,93,44,91,45,57,55,46,56,50,49,52,57,53,44,52,48,46,48,48,50,48,52,55,93,44,91,45,57,55,46,56,50,48,56,49,54,44,52,48,46,51,53,48,53,52,53,93,44,91,45,57,55,46,56,50,52,49,49,52,44,52,48,46,51,53,48,53,52,49,93,44,91,45,57,56,46,50,55,51,53,55,49,44,52,48,46,51,53,48,51,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,97,115,32,80,105,101,100,114,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,55,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,56,53,50,54,49,54,44,49,56,46,50,53,52,57,55,50,93,44,91,45,54,53,46,57,50,56,51,52,49,44,49,56,46,49,52,50,56,52,53,93,44,91,45,54,53,46,57,50,54,50,50,55,44,49,56,46,49,49,57,57,54,51,93,44,91,45,54,53,46,56,55,55,54,49,53,44,49,56,46,49,49,56,49,54,55,93,44,91,45,54,53,46,56,50,54,48,54,51,44,49,56,46,50,48,48,52,48,56,93,44,91,45,54,53,46,56,50,52,50,50,44,49,56,46,50,55,51,48,53,52,93,44,91,45,54,53,46,56,51,54,51,56,55,44,49,56,46,50,55,53,50,52,54,93,44,91,45,54,53,46,56,53,50,54,49,54,44,49,56,46,50,53,52,57,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,105,110,110,101,104,97,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,55,52,57,44,34,98,101,100,115,34,58,49,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,50,57,48,56,57,44,52,51,46,56,52,55,57,55,51,93,44,91,45,57,55,46,49,50,57,52,55,56,44,52,51,46,52,57,57,54,56,51,93,44,91,45,57,54,46,57,50,52,56,52,49,44,52,51,46,53,48,48,48,48,55,93,44,91,45,57,54,46,53,57,57,49,57,49,44,52,51,46,53,48,48,52,53,54,93,44,91,45,57,54,46,52,53,51,50,54,44,52,51,46,53,48,48,51,57,93,44,91,45,57,54,46,52,53,50,57,56,56,44,52,51,46,56,52,57,53,48,55,93,44,91,45,57,54,46,56,56,56,54,54,52,44,52,51,46,56,52,56,51,56,53,93,44,91,45,57,55,46,49,50,57,48,56,57,44,52,51,46,56,52,55,57,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,55,34,44,34,78,65,77,69,34,58,34,77,101,110,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,48,51,50,50,51,44,51,49,46,48,56,55,50,57,54,93,44,91,45,49,48,48,46,49,49,53,50,49,54,44,51,49,46,48,56,55,57,57,52,93,44,91,45,49,48,48,46,49,49,54,50,51,52,44,51,48,46,55,49,48,51,54,54,93,44,91,45,57,57,46,52,56,51,56,54,57,44,51,48,46,55,49,48,55,55,49,93,44,91,45,57,57,46,52,56,52,55,53,53,44,51,48,46,57,52,48,54,48,53,93,44,91,45,57,57,46,54,48,51,54,50,55,44,51,48,46,57,52,48,55,50,54,93,44,91,45,57,57,46,54,48,51,50,50,51,44,51,49,46,48,56,55,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,83,105,101,114,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,49,52,55,49,52,57,44,51,57,46,55,48,55,54,53,56,93,44,91,45,49,50,48,46,54,53,52,50,50,55,44,51,57,46,55,48,54,54,50,57,93,44,91,45,49,50,48,46,56,55,49,52,57,56,44,51,57,46,55,55,54,53,50,57,93,44,91,45,49,50,49,46,48,48,57,52,55,55,44,51,57,46,54,51,57,52,53,57,93,44,91,45,49,50,49,46,48,50,50,48,56,53,44,51,57,46,51,57,49,53,53,56,93,44,91,45,49,50,48,46,55,53,53,55,50,57,44,51,57,46,52,53,50,54,54,51,93,44,91,45,49,50,48,46,53,55,55,49,56,56,44,51,57,46,53,50,51,49,52,52,93,44,91,45,49,50,48,46,53,48,53,52,52,53,44,51,57,46,52,52,54,49,49,55,93,44,91,45,49,50,48,46,48,48,51,55,55,51,44,51,57,46,52,52,53,48,53,54,93,44,91,45,49,50,48,46,48,48,49,48,54,50,44,51,57,46,55,50,50,52,49,56,93,44,91,45,49,50,48,46,49,52,55,49,52,57,44,51,57,46,55,48,55,54,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,49,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,49,53,52,48,53,44,51,54,46,56,53,52,52,54,55,93,44,91,45,56,53,46,50,57,54,48,48,50,44,51,54,46,54,50,53,55,49,56,93,44,91,45,56,53,46,50,55,54,50,56,49,44,51,54,46,54,50,54,56,49,54,93,44,91,45,56,52,46,57,55,52,56,49,49,44,51,54,46,54,49,53,52,54,53,93,44,91,45,56,53,46,48,54,52,51,48,55,44,51,54,46,56,53,56,55,52,51,93,44,91,45,56,53,46,50,49,53,52,48,53,44,51,54,46,56,53,52,52,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,54,57,48,44,34,98,101,100,115,34,58,50,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,49,49,52,57,44,52,49,46,49,54,55,56,50,52,93,44,91,45,56,51,46,56,56,48,52,50,51,44,52,48,46,57,50,48,52,50,57,93,44,91,45,56,51,46,56,56,48,48,54,51,44,52,48,46,56,49,57,57,49,57,93,44,91,45,56,51,46,53,49,53,56,56,51,44,52,48,46,56,49,56,49,51,52,93,44,91,45,56,51,46,52,50,48,51,49,57,44,52,48,46,57,57,49,56,56,57,93,44,91,45,56,51,46,52,50,49,48,53,52,44,52,49,46,49,54,54,55,56,93,44,91,45,56,51,46,56,56,49,49,52,57,44,52,49,46,49,54,55,56,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,72,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,49,49,51,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,57,48,52,49,53,44,51,52,46,51,49,51,49,51,50,93,44,91,45,49,48,50,46,48,56,53,55,51,51,44,51,51,46,56,50,52,54,55,53,93,44,91,45,49,48,49,46,53,54,51,53,56,44,51,51,46,56,51,48,52,53,49,93,44,91,45,49,48,49,46,53,54,52,56,53,54,44,51,52,46,51,49,50,52,57,51,93,44,91,45,49,48,49,46,57,57,56,48,50,44,51,52,46,51,49,51,48,51,57,93,44,91,45,49,48,50,46,48,57,48,52,49,53,44,51,52,46,51,49,51,49,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,55,56,44,34,98,101,100,115,34,58,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,53,49,56,57,44,51,51,46,52,57,56,55,52,50,93,44,91,45,56,53,46,57,56,48,50,57,51,44,51,51,46,50,57,52,49,57,93,44,91,45,56,54,46,49,49,56,49,57,56,44,51,51,46,50,57,54,51,50,93,44,91,45,56,54,46,49,55,52,51,55,44,51,51,46,49,48,52,51,57,52,93,44,91,45,56,54,46,48,48,57,49,55,44,51,51,46,48,57,48,50,54,93,44,91,45,56,53,46,54,53,51,54,53,52,44,51,51,46,49,48,54,54,51,52,93,44,91,45,56,53,46,54,52,51,52,56,50,44,51,51,46,52,57,53,56,56,53,93,44,91,45,56,53,46,56,53,49,56,57,44,51,51,46,52,57,56,55,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,114,109,115,116,114,111,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,44,91,45,49,48,49,46,54,50,57,50,53,55,44,51,52,46,55,52,55,54,52,57,93,44,91,45,49,48,49,46,52,55,49,53,54,50,44,51,52,46,55,52,55,52,54,50,93,44,91,45,49,48,49,46,48,57,48,55,52,57,44,51,52,46,55,52,56,50,52,54,93,44,91,45,49,48,49,46,48,56,54,50,56,49,44,51,53,46,49,56,50,49,52,93,44,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,54,52,50,44,34,98,101,100,115,34,58,56,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,48,53,51,49,44,52,48,46,56,53,57,48,57,57,93,44,91,45,56,52,46,51,57,55,51,55,52,44,52,48,46,56,49,53,57,52,49,93,44,91,45,56,52,46,51,57,54,55,55,56,44,52,48,46,54,56,52,57,50,54,93,44,91,45,56,52,46,50,50,50,55,57,57,44,52,48,46,54,56,53,57,53,55,93,44,91,45,56,52,46,49,48,55,55,56,55,44,52,48,46,54,52,51,48,54,57,93,44,91,45,56,51,46,56,56,48,49,57,52,44,52,48,46,54,52,52,54,57,93,44,91,45,56,51,46,56,56,48,48,54,51,44,52,48,46,56,49,57,57,49,57,93,44,91,45,56,51,46,56,56,48,52,50,51,44,52,48,46,57,50,48,52,50,57,93,44,91,45,56,52,46,49,48,57,53,49,54,44,52,48,46,57,48,52,55,51,93,44,91,45,56,52,46,49,48,57,53,56,54,44,52,48,46,56,54,48,57,57,52,93,44,91,45,56,52,46,51,52,48,53,51,49,44,52,48,46,56,53,57,48,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,77,99,68,117,102,102,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,52,57,55,48,53,44,51,51,46,54,48,56,55,54,56,93,44,91,45,56,50,46,53,51,53,55,55,57,44,51,51,46,51,53,55,52,54,93,44,91,45,56,50,46,51,56,51,56,50,57,44,51,51,46,51,49,50,49,48,54,93,44,91,45,56,50,46,51,53,51,52,57,56,44,51,51,46,51,49,50,51,49,56,93,44,91,45,56,50,46,50,57,52,49,55,57,44,51,51,46,51,53,52,54,51,53,93,44,91,45,56,50,46,52,51,54,56,49,52,44,51,51,46,53,52,57,54,53,56,93,44,91,45,56,50,46,52,50,53,51,50,56,44,51,51,46,54,53,48,54,50,57,93,44,91,45,56,50,46,52,55,57,53,49,56,44,51,51,46,54,51,57,53,51,53,93,44,91,45,56,50,46,54,52,57,55,48,53,44,51,51,46,54,48,56,55,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,83,97,117,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,53,57,54,44,34,98,101,100,115,34,58,49,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,49,48,54,57,44,52,51,46,53,53,51,57,57,49,93,44,91,45,57,48,46,49,57,49,57,54,52,44,52,51,46,53,53,52,57,57,54,93,44,91,45,57,48,46,49,57,51,56,49,52,44,52,51,46,49,54,52,52,54,52,93,44,91,45,56,57,46,56,51,56,49,51,53,44,52,51,46,50,48,54,48,53,55,93,44,91,45,56,57,46,55,50,48,52,54,51,44,52,51,46,50,57,51,48,56,52,93,44,91,45,56,57,46,54,48,48,55,51,44,52,51,46,51,56,48,54,54,54,93,44,91,45,56,57,46,53,57,57,51,53,55,44,52,51,46,53,53,56,48,52,49,93,44,91,45,56,57,46,55,50,55,55,56,56,44,52,51,46,53,54,57,52,55,56,93,44,91,45,56,57,46,55,56,53,56,48,57,44,52,51,46,54,52,49,48,52,57,93,44,91,45,57,48,46,51,49,50,52,48,52,44,52,51,46,54,52,48,57,56,56,93,44,91,45,57,48,46,51,49,49,48,54,57,44,52,51,46,53,53,51,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,83,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,52,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,52,49,52,51,57,54,44,51,53,46,57,55,53,55,57,56,93,44,91,45,57,50,46,52,49,54,56,52,55,44,51,53,46,55,56,56,53,57,49,93,44,91,45,57,50,46,52,49,56,52,48,56,44,51,53,46,55,49,54,48,52,54,93,44,91,45,57,50,46,50,52,48,53,50,44,51,53,46,55,49,50,49,57,93,44,91,45,57,49,46,56,51,55,49,55,57,44,51,53,46,55,48,52,57,51,50,93,44,91,45,57,49,46,56,52,57,52,52,56,44,51,53,46,56,54,55,52,49,49,93,44,91,45,57,50,46,48,56,53,52,56,53,44,51,53,46,57,54,53,57,52,51,93,44,91,45,57,50,46,49,51,57,49,48,52,44,51,54,46,49,49,50,50,50,49,93,44,91,45,57,50,46,49,57,53,52,51,44,51,54,46,49,51,50,55,57,56,93,44,91,45,57,50,46,52,49,52,51,57,54,44,51,53,46,57,55,53,55,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,87,97,108,108,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,57,55,50,57,56,44,52,53,46,56,54,48,53,57,53,93,44,91,45,49,49,55,46,55,52,55,51,50,55,44,52,53,46,56,54,49,48,55,50,93,44,91,45,49,49,55,46,55,56,55,54,50,51,44,52,53,46,54,56,57,53,54,55,93,44,91,45,49,49,55,46,54,52,51,52,57,52,44,52,53,46,51,51,54,56,55,93,44,91,45,49,49,55,46,53,50,50,50,52,57,44,52,53,46,50,54,55,55,51,49,93,44,91,45,49,49,55,46,52,55,54,54,56,52,44,52,53,46,49,54,54,53,51,57,93,44,91,45,49,49,55,46,50,54,54,48,48,54,44,52,53,46,49,54,54,53,51,57,93,44,91,45,49,49,55,46,50,54,54,48,48,53,44,52,53,46,48,56,48,53,55,93,44,91,45,49,49,54,46,55,56,51,56,50,57,44,52,53,46,48,55,56,50,54,51,93,44,91,45,49,49,54,46,54,56,55,49,55,55,44,52,53,46,50,54,55,54,52,51,93,44,91,45,49,49,54,46,53,53,55,54,50,49,44,52,53,46,53,48,51,52,57,53,93,44,91,45,49,49,54,46,52,54,51,54,51,53,44,52,53,46,54,48,50,55,56,53,93,44,91,45,49,49,54,46,53,57,52,50,49,44,52,53,46,55,55,57,48,56,93,44,91,45,49,49,54,46,55,57,52,53,54,50,44,52,53,46,56,53,54,48,52,57,93,44,91,45,49,49,54,46,57,49,54,48,55,49,44,52,53,46,57,57,53,51,53,55,93,44,91,45,49,49,55,46,52,55,57,57,51,53,44,52,53,46,57,57,55,56,48,49,93,44,91,45,49,49,55,46,54,48,51,52,50,52,44,52,53,46,57,57,56,57,53,93,44,91,45,49,49,55,46,57,55,55,54,54,52,44,52,54,46,48,48,48,53,50,50,93,44,91,45,49,49,55,46,57,55,50,57,56,44,52,53,46,56,54,48,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,97,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,56,57,54,44,34,98,101,100,115,34,58,51,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,48,52,52,44,52,48,46,56,53,49,51,51,57,93,44,91,45,56,48,46,53,49,56,57,57,49,44,52,48,46,54,51,56,56,48,49,93,44,91,45,56,48,46,53,49,57,48,51,56,44,52,48,46,52,55,55,51,54,51,93,44,91,45,56,48,46,51,54,48,56,55,51,44,52,48,46,52,55,55,53,51,57,93,44,91,45,56,48,46,49,56,48,52,50,52,44,52,48,46,54,48,55,55,54,57,93,44,91,45,56,48,46,49,52,56,54,56,50,44,52,48,46,54,55,52,50,56,49,93,44,91,45,56,48,46,49,53,56,53,51,44,52,48,46,56,53,53,48,57,54,93,44,91,45,56,48,46,53,49,57,48,52,52,44,52,48,46,56,53,49,51,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,53,50,57,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,44,91,45,56,57,46,51,49,54,53,54,44,51,49,46,56,48,50,48,57,93,44,91,45,56,56,46,57,52,51,51,53,53,44,51,49,46,56,50,52,53,54,53,93,44,91,45,56,56,46,57,49,48,52,53,57,44,51,49,46,56,50,54,54,52,57,93,44,91,45,56,56,46,57,49,51,56,52,55,44,51,50,46,50,50,52,49,56,54,93,44,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,54,53,44,34,98,101,100,115,34,58,49,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,54,52,51,49,55,44,51,56,46,53,54,55,51,56,93,44,91,45,57,52,46,48,54,53,55,49,51,44,51,56,46,52,52,55,48,56,55,93,44,91,45,57,52,46,48,52,57,56,57,53,44,51,56,46,50,49,51,57,56,53,93,44,91,45,57,51,46,53,50,51,52,56,52,44,51,56,46,50,48,55,50,49,54,93,44,91,45,57,51,46,53,49,50,55,52,51,44,51,56,46,53,49,50,52,55,54,93,44,91,45,57,51,46,53,49,49,48,51,44,51,56,46,53,53,54,50,49,93,44,91,45,57,52,46,48,54,52,51,49,55,44,51,56,46,53,54,55,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,83,97,103,117,97,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,48,48,48,54,48,50,44,51,55,46,57,53,54,48,52,49,93,44,91,45,49,48,54,46,56,57,55,56,51,52,44,51,55,46,57,54,55,56,57,49,93,44,91,45,49,48,54,46,54,57,51,56,52,53,44,51,55,46,56,51,53,50,52,52,93,44,91,45,49,48,54,46,53,56,54,51,55,52,44,51,55,46,55,52,55,56,48,57,93,44,91,45,49,48,54,46,48,51,56,52,49,51,44,51,55,46,55,52,56,51,53,51,93,44,91,45,49,48,53,46,52,53,55,50,53,53,44,51,55,46,55,53,49,52,54,52,93,44,91,45,49,48,53,46,52,55,51,50,48,52,44,51,55,46,56,57,53,57,55,93,44,91,45,49,48,53,46,53,54,48,51,49,49,44,51,55,46,57,53,49,56,56,54,93,44,91,45,49,48,53,46,54,56,54,56,51,56,44,51,56,46,49,54,54,56,52,53,93,44,91,45,49,48,53,46,55,57,54,56,57,55,44,51,56,46,50,54,53,48,52,55,93,44,91,45,49,48,54,46,48,49,48,55,53,49,44,51,56,46,52,52,54,53,54,54,93,44,91,45,49,48,54,46,50,52,54,57,52,44,51,56,46,52,50,50,55,54,56,93,44,91,45,49,48,55,46,48,48,48,54,48,49,44,51,56,46,52,50,53,54,49,57,93,44,91,45,49,48,55,46,48,48,49,49,49,57,44,51,56,46,49,52,55,48,55,50,93,44,91,45,49,48,55,46,48,48,48,54,48,50,44,51,55,46,57,53,54,48,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,104,97,116,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,55,57,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,53,52,50,52,50,56,44,51,53,46,56,52,51,51,48,51,93,44,91,45,55,57,46,53,53,53,56,48,52,44,51,53,46,53,49,53,48,51,57,93,44,91,45,55,57,46,51,53,48,48,55,51,44,51,53,46,53,49,56,48,48,50,93,44,91,45,55,57,46,49,57,57,49,51,54,44,51,53,46,53,53,57,56,52,52,93,44,91,45,55,57,46,49,49,55,48,57,54,44,51,53,46,54,50,56,49,54,52,93,44,91,45,55,56,46,57,54,57,54,52,44,51,53,46,53,50,49,54,54,57,93,44,91,45,55,56,46,57,49,52,55,51,52,44,51,53,46,53,56,51,54,55,50,93,44,91,45,55,56,46,57,57,53,48,53,57,44,51,53,46,54,49,48,49,51,53,93,44,91,45,55,56,46,57,48,54,48,55,49,44,51,53,46,56,54,56,48,57,54,93,44,91,45,55,57,46,48,49,54,51,48,53,44,51,53,46,56,54,51,50,49,93,44,91,45,55,57,46,50,52,57,53,51,56,44,51,53,46,56,55,54,56,49,93,44,91,45,55,57,46,53,52,50,52,50,56,44,51,53,46,56,52,51,51,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,82,105,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,53,48,55,56,48,54,44,52,49,46,57,57,57,53,53,50,93,44,91,45,49,49,49,46,52,50,54,56,53,53,44,52,49,46,54,55,55,56,54,52,93,44,91,45,49,49,49,46,52,52,50,57,52,57,44,52,49,46,53,51,49,51,54,53,93,44,91,45,49,49,49,46,53,49,48,56,51,57,44,52,49,46,52,50,51,49,93,44,91,45,49,49,49,46,52,50,48,55,50,56,44,52,49,46,51,54,49,51,48,56,93,44,91,45,49,49,49,46,50,57,52,56,56,54,44,52,49,46,51,50,57,57,54,57,93,44,91,45,49,49,49,46,50,50,53,56,50,51,44,52,49,46,49,57,49,48,49,55,93,44,91,45,49,49,49,46,50,54,52,57,55,52,44,52,49,46,49,52,52,48,52,52,93,44,91,45,49,49,49,46,48,52,54,55,54,54,44,52,49,46,50,53,49,54,50,55,93,44,91,45,49,49,49,46,48,52,53,56,51,55,44,52,49,46,53,55,57,56,52,53,93,44,91,45,49,49,49,46,48,52,54,55,49,52,44,52,50,46,48,48,49,55,48,50,93,44,91,45,49,49,49,46,53,48,55,56,48,54,44,52,49,46,57,57,57,53,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,49,51,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,57,55,52,48,57,44,51,54,46,49,54,49,54,53,50,93,44,91,45,57,52,46,56,48,55,55,53,55,44,51,53,46,54,51,56,53,52,54,93,44,91,45,57,52,46,52,55,50,54,52,55,44,51,53,46,54,51,56,53,53,54,93,44,91,45,57,52,46,52,57,51,49,51,44,51,53,46,55,53,57,49,54,55,93,44,91,45,57,52,46,53,53,50,49,55,50,44,51,54,46,49,48,50,49,50,56,93,44,91,45,57,52,46,53,54,50,55,50,55,44,51,54,46,49,54,49,56,57,51,93,44,91,45,57,52,46,55,57,55,52,48,57,44,51,54,46,49,54,49,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,48,53,50,44,34,98,101,100,115,34,58,52,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,57,53,49,56,49,44,52,50,46,48,57,54,52,48,50,93,44,91,45,56,49,46,52,56,55,56,52,50,44,52,49,46,53,55,48,48,53,49,93,44,91,45,56,49,46,51,57,49,48,48,53,44,52,49,46,53,54,57,55,49,54,93,44,91,45,56,49,46,50,57,52,54,54,57,44,52,49,46,54,52,48,56,56,57,93,44,91,45,56,49,46,49,48,49,52,50,50,44,52,49,46,54,52,49,52,53,55,93,44,91,45,56,49,46,48,48,51,54,51,49,44,52,49,46,55,49,53,49,51,55,93,44,91,45,56,49,46,48,48,57,56,50,55,44,52,50,46,50,53,49,54,48,50,93,44,91,45,56,49,46,50,52,57,56,51,51,44,52,50,46,50,49,54,52,49,53,93,44,91,45,56,49,46,52,57,53,49,56,49,44,52,50,46,48,57,54,52,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,55,53,34,44,34,78,65,77,69,34,58,34,83,97,108,101,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,49,57,44,34,98,101,100,115,34,58,51,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,50,50,50,50,54,44,51,55,46,51,48,56,51,51,56,93,44,91,45,56,48,46,48,57,51,54,55,53,44,51,55,46,50,56,50,53,48,50,93,44,91,45,56,48,46,48,51,51,52,54,52,44,51,55,46,50,54,50,56,57,93,44,91,45,56,48,46,48,50,50,50,50,54,44,51,55,46,51,48,56,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,57,57,55,44,34,98,101,100,115,34,58,49,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,48,54,57,54,50,44,51,55,46,50,52,52,56,55,49,93,44,91,45,56,48,46,53,50,57,55,54,50,44,51,55,46,49,51,51,56,52,50,93,44,91,45,56,48,46,53,56,48,52,54,57,44,51,55,46,48,56,57,54,54,50,93,44,91,45,56,48,46,53,52,51,57,51,51,44,51,54,46,57,56,52,54,51,57,93,44,91,45,56,48,46,51,52,53,51,54,50,44,51,55,46,48,50,54,56,49,56,93,44,91,45,56,48,46,49,55,56,49,50,53,44,51,55,46,49,49,51,52,93,44,91,45,56,48,46,49,57,48,55,51,56,44,51,55,46,50,50,55,55,56,51,93,44,91,45,56,48,46,50,54,50,49,56,52,44,51,55,46,51,52,49,53,50,54,93,44,91,45,56,48,46,52,51,48,57,52,51,44,51,55,46,51,49,54,51,55,56,93,44,91,45,56,48,46,54,48,54,57,54,50,44,51,55,46,50,52,52,56,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,53,52,54,44,34,98,101,100,115,34,58,49,55,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,50,53,56,55,55,44,51,53,46,51,53,52,50,55,54,93,44,91,45,56,53,46,51,56,55,48,56,57,44,51,53,46,49,52,55,49,54,57,93,44,91,45,56,53,46,51,56,50,50,53,53,44,51,53,46,48,52,52,55,51,93,44,91,45,56,53,46,52,55,52,48,55,51,44,51,52,46,57,56,51,48,50,93,44,91,45,56,53,46,51,54,51,57,49,57,44,51,52,46,57,56,51,51,55,53,93,44,91,45,56,53,46,50,54,53,48,53,53,44,51,52,46,57,56,53,48,55,53,93,44,91,45,56,52,46,57,55,57,56,54,44,51,52,46,57,56,55,54,52,55,93,44,91,45,56,52,46,57,55,54,57,55,54,44,51,52,46,57,56,55,54,54,52,93,44,91,45,56,53,46,48,50,51,54,44,51,53,46,49,50,53,48,55,51,93,44,91,45,56,52,46,57,52,54,51,51,57,44,51,53,46,50,56,55,55,49,55,93,44,91,45,56,53,46,48,49,54,51,52,51,44,51,53,46,52,48,57,50,56,56,93,44,91,45,56,53,46,49,51,53,49,57,49,44,51,53,46,52,53,56,54,52,57,93,44,91,45,56,53,46,50,50,53,56,55,55,44,51,53,46,51,53,52,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,79,116,101,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,55,52,53,44,34,98,101,100,115,34,58,49,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,51,52,48,53,49,53,44,51,51,46,48,53,50,55,55,55,93,44,91,45,49,48,54,46,51,55,54,53,56,53,44,51,50,46,57,53,56,48,53,93,44,91,45,49,48,54,46,51,55,55,49,55,52,44,51,50,46,48,48,49,53,48,51,93,44,91,45,49,48,53,46,57,57,56,48,49,50,44,51,50,46,48,48,50,51,55,55,93,44,91,45,49,48,52,46,57,49,56,51,53,55,44,51,50,46,48,48,48,52,49,56,93,44,91,45,49,48,52,46,56,52,55,55,52,44,51,50,46,48,48,48,52,49,53,93,44,91,45,49,48,52,46,56,53,49,53,50,52,44,51,50,46,53,50,48,53,52,49,93,44,91,45,49,48,53,46,51,53,52,48,49,44,51,50,46,53,49,56,55,55,54,93,44,91,45,49,48,53,46,51,53,50,53,49,51,44,51,50,46,57,54,50,48,48,55,93,44,91,45,49,48,53,46,51,49,54,57,54,56,44,51,51,46,49,51,50,51,48,51,93,44,91,45,49,48,53,46,51,49,55,51,55,54,44,51,51,46,51,48,53,57,55,55,93,44,91,45,49,48,53,46,55,50,53,57,53,55,44,51,51,46,51,48,52,56,51,52,93,44,91,45,49,48,53,46,55,50,55,49,55,49,44,51,51,46,51,57,48,54,51,51,93,44,91,45,49,48,54,46,51,52,53,55,49,44,51,51,46,51,57,48,53,57,53,93,44,91,45,49,48,54,46,51,52,48,53,49,53,44,51,51,46,48,53,50,55,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,67,97,116,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,54,49,50,50,44,51,52,46,53,55,57,50,57,49,93,44,91,45,49,48,57,46,48,52,54,55,49,55,44,51,51,46,55,55,55,52,48,55,93,44,91,45,49,48,57,46,48,52,55,53,55,56,44,51,51,46,50,48,56,56,57,56,93,44,91,45,49,48,56,46,48,48,48,53,57,56,44,51,51,46,50,48,49,50,53,51,93,44,91,45,49,48,56,46,48,48,48,54,48,50,44,51,51,46,52,55,56,48,49,52,93,44,91,45,49,48,55,46,55,49,50,55,53,52,44,51,51,46,52,55,54,56,51,50,93,44,91,45,49,48,55,46,55,49,54,51,48,49,44,51,52,46,50,53,57,56,53,54,93,44,91,45,49,48,55,46,55,50,52,55,57,52,44,51,52,46,53,55,56,49,51,50,93,44,91,45,49,48,57,46,48,52,54,49,50,50,44,51,52,46,53,55,57,50,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,97,114,101,110,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,51,56,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,51,48,54,54,49,44,51,50,46,51,49,48,53,55,52,93,44,91,45,56,56,46,48,49,57,49,52,53,44,51,50,46,50,56,53,50,52,93,44,91,45,56,56,46,48,48,55,48,55,55,44,51,50,46,49,56,53,51,49,51,93,44,91,45,56,56,46,48,55,51,52,57,44,51,49,46,57,57,48,49,56,50,93,44,91,45,56,55,46,54,54,55,55,54,57,44,51,49,46,57,57,49,51,53,53,93,44,91,45,56,55,46,54,50,52,48,48,53,44,51,50,46,49,51,50,51,52,53,93,44,91,45,56,55,46,53,50,49,57,52,54,44,51,50,46,49,51,50,56,49,54,93,44,91,45,56,55,46,52,55,50,50,48,54,44,51,50,46,50,54,52,57,49,57,93,44,91,45,56,55,46,52,55,51,48,56,44,51,50,46,51,48,55,54,49,52,93,44,91,45,56,55,46,53,50,52,52,56,53,44,51,50,46,52,56,50,48,50,56,93,44,91,45,56,55,46,55,50,56,55,52,52,44,51,50,46,52,56,48,57,49,56,93,44,91,45,56,55,46,56,49,50,53,53,57,44,51,50,46,53,50,52,53,54,93,44,91,45,56,55,46,56,53,51,52,50,44,51,50,46,53,51,50,48,56,54,93,44,91,45,56,56,46,48,51,49,54,50,51,44,51,50,46,52,51,51,54,49,93,44,91,45,56,56,46,48,52,54,51,51,53,44,51,50,46,51,55,55,48,56,55,93,44,91,45,56,55,46,57,51,48,54,54,49,44,51,50,46,51,49,48,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,49,49,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,48,52,54,56,49,55,44,52,50,46,53,49,51,57,50,53,93,44,91,45,49,49,49,46,48,52,54,55,49,52,44,52,50,46,48,48,49,55,48,50,93,44,91,45,49,49,49,46,48,52,53,56,51,55,44,52,49,46,53,55,57,56,52,53,93,44,91,45,49,49,48,46,48,52,56,44,52,49,46,53,55,56,48,49,53,93,44,91,45,49,49,48,46,48,53,51,55,48,56,44,52,50,46,50,55,48,55,52,52,93,44,91,45,49,49,48,46,53,52,49,54,51,52,44,52,50,46,50,55,55,52,57,49,93,44,91,45,49,49,48,46,53,57,48,49,51,49,44,52,50,46,52,52,56,52,51,53,93,44,91,45,49,49,48,46,53,55,56,54,53,54,44,52,51,46,50,51,53,50,50,52,93,44,91,45,49,49,48,46,56,49,51,57,57,51,44,52,51,46,50,51,53,49,55,56,93,44,91,45,49,49,48,46,56,49,51,57,57,54,44,52,51,46,51,49,51,57,52,93,44,91,45,49,49,49,46,48,52,52,56,57,51,44,52,51,46,51,49,53,55,49,57,93,44,91,45,49,49,49,46,48,52,52,48,55,50,44,52,51,46,48,49,57,52,48,55,93,44,91,45,49,49,49,46,48,52,54,56,49,55,44,52,50,46,53,49,51,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,97,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,53,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,55,54,57,56,44,51,55,46,54,53,51,53,55,56,93,44,91,45,57,52,46,54,49,55,53,55,44,51,55,46,51,54,52,49,55,93,44,91,45,57,52,46,48,56,50,48,56,51,44,51,55,46,51,52,57,50,57,49,93,44,91,45,57,52,46,48,55,53,51,56,53,44,51,55,46,53,56,49,53,55,93,44,91,45,57,52,46,48,55,51,53,50,52,44,51,55,46,54,51,57,55,50,50,93,44,91,45,57,52,46,54,49,55,54,57,56,44,51,55,46,54,53,51,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,52,51,52,52,50,44,50,56,46,55,49,50,49,48,53,93,44,91,45,57,54,46,56,53,51,55,53,55,44,50,56,46,54,51,53,49,57,57,93,44,91,45,57,54,46,56,57,48,57,53,49,44,50,56,46,53,48,55,49,55,56,93,44,91,45,57,54,46,55,55,56,54,51,52,44,50,56,46,52,48,52,50,53,57,93,44,91,45,57,54,46,55,57,48,53,49,50,44,50,56,46,51,49,57,50,51,56,93,44,91,45,57,54,46,56,51,48,56,54,49,44,50,56,46,49,48,56,93,44,91,45,57,54,46,56,49,53,57,48,53,44,50,56,46,48,50,50,56,51,53,93,44,91,45,57,54,46,54,49,56,55,56,53,44,50,56,46,49,54,57,53,50,50,93,44,91,45,57,54,46,51,57,53,49,57,56,44,50,56,46,50,55,57,55,51,54,93,44,91,45,57,54,46,51,50,51,53,50,50,44,50,56,46,54,55,53,53,57,55,93,44,91,45,57,54,46,54,52,51,52,52,50,44,50,56,46,55,49,50,49,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,51,53,34,44,34,78,65,77,69,34,58,34,80,111,113,117,111,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,49,51,53,53,50,44,51,55,46,49,57,49,57,55,93,44,91,45,55,54,46,51,51,48,52,51,53,44,51,55,46,49,57,48,57,56,52,93,44,91,45,55,54,46,51,57,53,55,57,53,44,51,55,46,49,48,55,49,55,52,93,44,91,45,55,54,46,49,51,52,57,52,49,44,51,55,46,49,49,55,54,48,51,93,44,91,45,55,54,46,49,51,53,53,50,44,51,55,46,49,57,49,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,80,111,99,97,104,111,110,116,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,50,52,53,53,49,56,44,51,56,46,51,56,56,52,53,55,93,44,91,45,56,48,46,51,51,48,50,54,55,44,51,56,46,51,51,53,55,53,56,93,44,91,45,56,48,46,51,54,48,48,52,56,44,51,56,46,50,50,53,56,52,53,93,44,91,45,56,48,46,51,54,51,50,57,53,44,51,56,46,49,49,52,51,51,49,93,44,91,45,56,48,46,50,54,52,54,53,51,44,51,56,46,48,52,54,54,49,54,93,44,91,45,55,57,46,57,53,57,56,52,52,44,51,56,46,48,54,51,54,57,55,93,44,91,45,55,57,46,56,57,55,51,51,53,44,51,56,46,49,57,51,51,56,49,93,44,91,45,55,57,46,55,57,53,57,50,49,44,51,56,46,50,54,53,53,53,50,93,44,91,45,55,57,46,54,56,57,54,54,55,44,51,56,46,52,51,49,52,54,50,93,44,91,45,55,57,46,54,52,57,48,55,53,44,51,56,46,53,57,49,53,49,53,93,44,91,45,55,57,46,54,50,54,55,55,52,44,51,56,46,54,54,52,50,49,52,93,44,91,45,55,57,46,55,57,56,50,56,51,44,51,56,46,55,48,51,50,49,49,93,44,91,45,55,57,46,56,54,51,50,53,44,51,56,46,53,53,48,56,50,93,44,91,45,56,48,46,48,50,57,50,48,56,44,51,56,46,52,53,57,49,56,52,93,44,91,45,56,48,46,49,49,54,57,50,44,51,56,46,52,55,51,57,53,51,93,44,91,45,56,48,46,50,52,53,53,49,56,44,51,56,46,51,56,56,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,56,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,50,51,53,51,51,44,51,52,46,48,56,50,56,52,51,93,44,91,45,57,56,46,52,50,51,53,55,55,44,51,51,46,56,51,54,48,52,55,93,44,91,45,57,56,46,52,50,49,52,49,57,44,51,51,46,52,54,54,55,57,55,93,44,91,45,57,55,46,57,55,56,57,49,57,44,51,51,46,52,54,55,49,50,57,93,44,91,45,57,55,46,57,55,55,56,54,44,51,51,46,56,56,57,56,50,53,93,44,91,45,57,55,46,57,52,54,56,48,50,44,51,51,46,57,57,48,56,57,51,93,44,91,45,57,56,46,48,56,52,52,51,53,44,51,52,46,48,48,50,56,57,51,93,44,91,45,57,56,46,49,51,57,48,55,50,44,51,52,46,49,52,49,56,55,93,44,91,45,57,56,46,51,54,52,48,50,51,44,51,52,46,49,53,55,49,48,57,93,44,91,45,57,56,46,52,50,51,53,51,51,44,51,52,46,48,56,50,56,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,74,97,109,101,115,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,49,53,51,44,34,98,101,100,115,34,58,50,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,52,49,57,56,52,44,51,55,46,52,54,55,48,55,54,93,44,91,45,55,54,46,57,48,52,52,55,49,44,51,55,46,51,55,55,54,54,53,93,44,91,45,55,54,46,56,56,51,49,53,54,44,51,55,46,50,50,51,48,53,55,93,44,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,44,91,45,55,54,46,53,57,49,51,48,50,44,51,55,46,50,49,51,50,48,53,93,44,91,45,55,54,46,54,56,48,49,53,49,44,51,55,46,50,54,53,57,57,55,93,44,91,45,55,54,46,55,52,49,48,49,55,44,51,55,46,50,54,53,57,56,52,93,44,91,45,55,54,46,55,50,55,56,53,57,44,51,55,46,51,48,53,57,50,55,93,44,91,45,55,54,46,54,53,56,54,53,49,44,51,55,46,51,56,48,49,51,57,93,44,91,45,55,54,46,55,49,50,51,48,53,44,51,55,46,52,51,49,51,48,57,93,44,91,45,55,54,46,55,52,49,57,56,52,44,51,55,46,52,54,55,48,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,75,101,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,57,57,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,53,49,55,54,49,44,52,49,46,48,48,51,56,57,93,44,91,45,49,48,49,46,50,52,57,57,55,53,44,52,49,46,48,48,51,57,53,93,44,91,45,49,48,49,46,50,55,48,51,56,49,44,52,49,46,48,52,55,51,57,50,93,44,91,45,49,48,49,46,50,54,57,54,57,53,44,52,49,46,51,57,52,57,51,52,93,44,91,45,49,48,49,46,52,48,55,50,54,44,52,49,46,51,57,53,52,49,54,93,44,91,45,49,48,49,46,57,56,52,54,51,44,52,49,46,51,57,52,55,49,50,93,44,91,45,49,48,50,46,48,53,53,50,53,54,44,52,49,46,51,57,53,49,54,50,93,44,91,45,49,48,50,46,48,53,53,53,51,53,44,52,49,46,50,50,49,53,52,55,93,44,91,45,49,48,50,46,48,53,49,55,54,49,44,52,49,46,48,48,51,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,80,104,101,108,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,50,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,52,51,52,54,50,44,52,48,46,54,56,52,57,49,49,93,44,91,45,57,57,46,54,52,50,50,48,57,44,52,48,46,51,53,49,50,93,44,91,45,57,57,46,54,51,48,52,53,57,44,52,48,46,51,53,49,49,50,93,44,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,44,91,45,57,57,46,49,55,57,50,52,56,44,52,48,46,54,54,48,53,52,49,93,44,91,45,57,57,46,52,49,55,51,49,54,44,52,48,46,54,55,48,56,50,53,93,44,91,45,57,57,46,54,52,51,52,54,50,44,52,48,46,54,56,52,57,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,108,99,97,115,105,101,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,49,56,50,44,34,98,101,100,115,34,58,57,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,50,50,53,49,55,44,51,48,46,48,53,48,56,55,50,93,44,91,45,57,51,46,49,50,56,52,55,53,44,51,48,46,48,53,50,53,56,55,93,44,91,45,57,50,46,57,57,54,51,55,49,44,51,48,46,48,51,56,52,55,57,93,44,91,45,57,51,46,48,51,48,57,53,53,44,51,48,46,51,55,57,51,57,93,44,91,45,57,51,46,49,51,49,49,48,57,44,51,48,46,52,48,51,48,53,55,93,44,91,45,57,51,46,55,52,49,54,55,57,44,51,48,46,52,48,50,57,55,53,93,44,91,45,57,51,46,55,54,52,50,53,50,44,51,48,46,51,51,48,50,50,57,93,44,91,45,57,51,46,55,48,54,57,57,51,44,51,48,46,50,52,51,55,51,54,93,44,91,45,57,51,46,55,50,50,53,49,55,44,51,48,46,48,53,48,56,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,55,53,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,50,52,55,52,44,51,51,46,48,49,52,51,57,93,44,91,45,57,50,46,55,50,53,52,51,57,44,51,50,46,55,53,57,53,52,93,44,91,45,57,50,46,54,50,56,50,56,56,44,51,50,46,55,53,57,54,54,57,93,44,91,45,57,50,46,52,49,53,48,53,44,51,50,46,54,55,48,48,53,54,93,44,91,45,57,50,46,52,49,53,48,55,49,44,51,50,46,53,56,50,56,52,53,93,44,91,45,57,50,46,50,55,50,51,49,51,44,51,50,46,53,56,48,57,55,53,93,44,91,45,57,50,46,48,54,53,49,55,57,44,51,50,46,55,50,51,48,48,51,93,44,91,45,57,50,46,48,54,57,49,48,53,44,51,51,46,48,48,56,49,54,51,93,44,91,45,57,50,46,55,50,52,55,52,44,51,51,46,48,49,52,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,83,101,113,117,111,121,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,51,53,57,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,48,55,55,53,55,44,51,53,46,54,51,56,53,52,54,93,44,91,45,57,53,46,49,50,55,50,49,51,44,51,53,46,54,51,56,56,56,56,93,44,91,45,57,53,46,49,51,50,50,55,49,44,51,53,46,53,50,54,48,53,53,93,44,91,45,57,53,46,48,52,57,57,51,51,44,51,53,46,52,53,56,56,57,52,93,44,91,45,57,52,46,56,49,51,54,50,57,44,51,53,46,51,50,51,51,52,52,93,44,91,45,57,52,46,54,54,56,55,57,54,44,51,53,46,50,57,53,48,50,57,93,44,91,45,57,52,46,52,57,53,50,53,49,44,51,53,46,51,48,49,50,93,44,91,45,57,52,46,52,51,53,53,57,44,51,53,46,51,56,54,49,50,50,93,44,91,45,57,52,46,52,51,49,48,52,53,44,51,53,46,51,57,51,55,51,53,93,44,91,45,57,52,46,52,55,50,54,52,55,44,51,53,46,54,51,56,53,53,54,93,44,91,45,57,52,46,56,48,55,55,53,55,44,51,53,46,54,51,56,53,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,50,48,48,44,34,98,101,100,115,34,58,49,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,56,51,49,52,53,44,51,52,46,56,54,48,51,55,49,93,44,91,45,56,53,46,55,56,53,52,55,49,44,51,52,46,54,50,52,53,56,52,93,44,91,45,56,54,46,48,48,51,56,52,44,51,52,46,52,56,48,48,51,49,93,44,91,45,56,54,46,48,53,55,55,49,50,44,51,52,46,52,55,53,57,57,52,93,44,91,45,56,54,46,49,49,48,51,54,50,44,51,52,46,52,50,55,55,57,55,93,44,91,45,56,54,46,49,48,54,48,56,54,44,51,52,46,50,48,48,55,53,54,93,44,91,45,56,53,46,56,52,51,54,49,55,44,51,52,46,50,48,48,48,48,54,93,44,91,45,56,53,46,54,51,54,54,52,53,44,51,52,46,51,54,54,54,50,50,93,44,91,45,56,53,46,53,49,51,54,49,50,44,51,52,46,53,50,51,56,50,53,93,44,91,45,56,53,46,53,50,55,50,54,49,44,51,52,46,53,56,56,54,56,51,93,44,91,45,56,53,46,53,51,52,48,56,57,44,51,52,46,54,50,51,56,53,56,93,44,91,45,56,53,46,53,56,51,49,52,53,44,51,52,46,56,54,48,51,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,83,116,101,117,98,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,57,50,55,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,54,54,53,48,53,44,52,50,46,53,55,54,51,54,56,93,44,91,45,55,55,46,52,57,48,56,56,57,44,52,50,46,53,55,55,50,56,56,93,44,91,45,55,55,46,54,53,57,57,49,55,44,52,50,46,53,56,48,52,48,57,93,44,91,45,55,55,46,55,50,50,57,54,52,44,52,50,46,52,55,49,50,49,54,93,44,91,45,55,55,46,55,52,57,57,51,49,44,52,49,46,57,57,56,55,56,50,93,44,91,45,55,55,46,54,49,48,48,50,55,44,52,49,46,57,57,57,51,54,56,93,44,91,45,55,54,46,57,54,53,55,50,56,44,52,50,46,48,48,49,50,55,54,93,44,91,45,55,54,46,57,54,53,48,50,56,44,52,50,46,50,55,56,52,57,53,93,44,91,45,55,55,46,48,57,57,54,53,55,44,52,50,46,50,55,50,51,53,54,93,44,91,45,55,55,46,49,48,55,50,48,51,44,52,50,46,52,56,51,55,55,49,93,44,91,45,55,55,46,49,52,51,55,57,53,44,52,50,46,53,55,54,56,54,57,93,44,91,45,55,55,46,51,54,54,53,48,53,44,52,50,46,53,55,54,51,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,70,111,114,101,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,53,54,48,52,50,44,52,49,46,54,50,51,52,48,50,93,44,91,45,55,57,46,53,49,50,48,55,44,52,49,46,54,50,52,53,53,57,93,44,91,45,55,57,46,52,55,55,56,50,50,44,52,49,46,51,56,54,52,55,57,93,44,91,45,55,57,46,52,48,48,50,54,57,44,52,49,46,52,51,54,49,52,53,93,44,91,45,55,57,46,50,48,55,49,57,54,44,52,49,46,52,51,48,57,50,50,93,44,91,45,55,57,46,50,48,56,56,55,56,44,52,49,46,51,51,49,56,54,49,93,44,91,45,55,57,46,48,57,53,48,57,54,44,52,49,46,51,52,48,54,53,56,93,44,91,45,55,57,46,48,57,51,53,56,56,44,52,49,46,52,50,51,50,56,54,93,44,91,45,55,56,46,57,55,54,54,53,56,44,52,49,46,52,53,49,55,54,49,93,44,91,45,55,56,46,57,53,54,48,52,50,44,52,49,46,54,50,51,52,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,84,97,110,103,105,112,97,104,111,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,48,53,48,52,44,34,98,101,100,115,34,58,53,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,54,55,49,54,53,44,51,48,46,54,53,48,48,50,51,93,44,91,45,57,48,46,53,54,54,57,48,54,44,51,48,46,52,56,55,48,54,93,44,91,45,57,48,46,52,55,55,56,44,51,48,46,51,53,54,52,52,55,93,44,91,45,57,48,46,52,56,53,56,50,54,44,51,48,46,50,55,54,57,57,50,93,44,91,45,57,48,46,51,48,48,57,50,51,44,51,48,46,50,57,52,54,56,93,44,91,45,57,48,46,49,54,48,54,51,54,44,51,48,46,50,51,52,51,51,55,93,44,91,45,57,48,46,50,52,51,54,52,57,44,51,48,46,51,54,49,53,56,49,93,44,91,45,57,48,46,50,53,53,54,52,56,44,51,48,46,55,49,49,57,48,53,93,44,91,45,57,48,46,51,52,54,55,49,44,51,48,46,57,48,53,52,50,55,93,44,91,45,57,48,46,51,52,55,50,53,53,44,51,49,46,48,48,48,53,51,93,44,91,45,57,48,46,53,52,55,54,49,54,44,51,48,46,57,57,57,55,50,93,44,91,45,57,48,46,53,54,55,49,57,53,44,51,48,46,57,57,57,55,51,51,93,44,91,45,57,48,46,53,54,55,49,54,53,44,51,48,46,54,53,48,48,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,83,116,97,102,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,48,49,50,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,53,51,49,51,50,56,44,51,56,46,53,53,54,53,53,93,44,91,45,55,55,46,54,51,52,57,52,44,51,56,46,52,49,48,50,49,56,93,44,91,45,55,55,46,54,49,56,55,50,55,44,51,56,46,51,54,55,56,51,53,93,44,91,45,55,55,46,53,51,48,50,56,51,44,51,56,46,51,48,57,49,55,53,93,44,91,45,55,55,46,52,54,55,48,53,51,44,51,56,46,51,49,56,54,54,93,44,91,45,55,55,46,52,52,55,49,50,54,44,51,56,46,50,56,52,54,49,52,93,44,91,45,55,55,46,51,55,48,50,57,55,44,51,56,46,50,52,54,53,55,54,93,44,91,45,55,55,46,51,50,54,54,57,50,44,51,56,46,50,52,53,49,51,54,93,44,91,45,55,55,46,50,56,55,48,57,55,44,51,56,46,51,52,56,56,93,44,91,45,55,55,46,50,57,53,52,48,54,44,51,56,46,53,48,57,50,51,57,93,44,91,45,55,55,46,52,55,54,56,52,55,44,51,56,46,53,57,50,50,56,54,93,44,91,45,55,55,46,53,51,49,51,50,56,44,51,56,46,53,53,54,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,77,101,110,111,109,105,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,51,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,54,55,56,52,57,44,52,53,46,57,56,53,51,50,49,93,44,91,45,56,55,46,54,49,55,48,57,49,44,52,53,46,57,56,54,48,49,52,93,44,91,45,56,55,46,54,57,54,57,52,54,44,52,53,46,56,57,56,56,52,50,93,44,91,45,56,55,46,54,57,55,49,53,57,44,52,53,46,55,50,50,57,54,93,44,91,45,56,55,46,56,52,54,54,48,50,44,52,53,46,55,50,50,53,52,52,93,44,91,45,56,55,46,55,55,52,54,56,50,44,52,53,46,54,48,50,48,50,52,93,44,91,45,56,55,46,55,57,50,55,54,57,44,52,53,46,52,57,57,57,54,55,93,44,91,45,56,55,46,56,56,52,56,53,53,44,52,53,46,51,54,50,55,57,50,93,44,91,45,56,55,46,54,52,55,55,54,56,44,52,53,46,51,52,48,53,54,51,93,44,91,45,56,55,46,55,51,53,50,56,50,44,52,53,46,49,55,54,53,54,53,93,44,91,45,56,55,46,54,54,49,50,49,49,44,52,53,46,49,48,56,50,55,57,93,44,91,45,56,55,46,52,52,50,55,54,44,52,53,46,48,55,54,52,55,49,93,44,91,45,56,55,46,52,48,53,54,57,52,44,52,53,46,50,48,49,57,54,57,93,44,91,45,56,55,46,51,49,53,52,50,50,44,52,53,46,50,52,48,54,53,55,93,44,91,45,56,55,46,49,50,55,56,50,54,44,52,53,46,52,48,57,52,56,55,93,44,91,45,56,55,46,49,50,57,49,49,56,44,52,53,46,53,53,48,52,56,53,93,44,91,45,56,55,46,51,50,55,53,48,50,44,52,53,46,53,53,49,50,53,93,44,91,45,56,55,46,51,50,53,51,57,49,44,52,53,46,56,57,56,54,54,53,93,44,91,45,56,55,46,51,54,55,56,52,57,44,52,53,46,57,56,53,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,52,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,55,53,56,56,50,44,52,49,46,50,49,56,53,57,53,93,44,91,45,56,55,46,50,54,55,50,57,56,44,52,48,46,55,51,54,53,56,50,93,44,91,45,56,55,46,48,57,56,51,57,44,52,48,46,55,51,54,53,52,49,93,44,91,45,56,55,46,48,57,57,55,57,51,44,52,48,46,56,51,55,54,48,55,93,44,91,45,56,54,46,57,56,54,52,51,56,44,52,48,46,56,51,55,57,50,49,93,44,91,45,56,54,46,57,51,48,55,53,57,44,52,48,46,57,49,50,52,49,56,93,44,91,45,56,54,46,57,51,48,49,55,44,52,49,46,49,55,50,51,49,56,93,44,91,45,56,54,46,57,51,48,48,55,57,44,52,49,46,50,51,54,55,57,56,93,44,91,45,56,55,46,49,51,49,54,53,51,44,52,49,46,50,56,54,49,53,53,93,44,91,45,56,55,46,50,49,56,56,54,50,44,52,49,46,50,52,50,48,50,55,93,44,91,45,56,55,46,50,55,53,56,56,50,44,52,49,46,50,49,56,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,66,114,97,110,116,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,51,49,54,57,52,44,51,49,46,51,51,48,48,52,56,93,44,91,45,56,50,46,48,52,49,49,50,57,44,51,49,46,51,55,51,55,50,49,93,44,91,45,56,50,46,48,57,50,55,50,44,51,49,46,50,55,54,49,49,57,93,44,91,45,56,50,46,49,57,52,56,50,52,44,51,49,46,50,48,55,53,57,93,44,91,45,56,50,46,50,56,52,53,54,49,44,51,49,46,50,50,52,52,52,57,93,44,91,45,56,50,46,50,48,56,55,51,50,44,51,49,46,49,55,48,57,51,56,93,44,91,45,56,50,46,50,48,56,50,54,50,44,51,49,46,48,56,52,55,54,56,93,44,91,45,56,50,46,49,51,49,54,57,56,44,51,49,46,48,49,48,55,49,52,93,44,91,45,56,50,46,48,54,48,56,55,44,51,49,46,48,55,53,56,48,57,93,44,91,45,56,49,46,57,51,54,48,48,54,44,51,49,46,48,52,55,57,57,51,93,44,91,45,56,49,46,55,54,54,51,50,50,44,51,49,46,49,54,57,53,57,53,93,44,91,45,56,49,46,55,51,49,54,57,52,44,51,49,46,51,51,48,48,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,76,97,109,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,52,56,49,56,53,44,51,51,46,49,56,57,48,49,57,93,44,91,45,56,52,46,50,55,48,49,52,44,51,50,46,57,57,49,48,49,49,93,44,91,45,56,52,46,49,50,51,51,52,44,51,50,46,57,51,50,49,56,52,93,44,91,45,56,52,46,48,52,52,49,49,51,44,51,50,46,57,52,55,56,55,52,93,44,91,45,56,52,46,48,52,49,52,57,56,44,51,51,46,50,48,50,54,50,57,93,44,91,45,56,52,46,49,50,51,55,54,55,44,51,51,46,50,48,50,56,50,52,93,44,91,45,56,52,46,50,52,56,49,56,53,44,51,51,46,49,56,57,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,116,101,117,98,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,57,54,55,55,52,44,52,49,46,55,53,57,54,52,52,93,44,91,45,56,53,46,49,57,52,48,56,52,44,52,49,46,53,50,54,52,51,55,93,44,91,45,56,52,46,56,48,52,54,56,55,44,52,49,46,53,51,48,49,51,52,93,44,91,45,56,52,46,56,48,53,57,55,50,44,52,49,46,54,57,54,49,49,56,93,44,91,45,56,52,46,56,50,53,49,51,44,52,49,46,55,53,57,57,57,57,93,44,91,45,56,53,46,49,57,54,55,55,52,44,52,49,46,55,53,57,54,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,54,49,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,48,52,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,49,49,53,57,49,55,44,51,48,46,49,54,48,51,52,55,93,44,91,45,57,52,46,48,51,49,57,55,54,44,51,48,46,48,50,56,48,49,51,93,44,91,45,57,51,46,56,54,48,49,54,57,44,50,57,46,57,55,55,51,57,55,93,44,91,45,57,51,46,56,53,52,52,49,50,44,50,57,46,56,54,53,48,53,51,93,44,91,45,57,51,46,55,50,50,53,49,55,44,51,48,46,48,53,48,56,55,50,93,44,91,45,57,51,46,55,48,54,57,57,51,44,51,48,46,50,52,51,55,51,54,93,44,91,45,57,51,46,57,48,49,52,53,50,44,51,48,46,50,52,50,54,55,50,93,44,91,45,57,52,46,49,49,55,54,48,52,44,51,48,46,50,52,49,54,54,53,93,44,91,45,57,52,46,49,49,53,57,49,55,44,51,48,46,49,54,48,51,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,52,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,53,51,51,51,44,51,57,46,55,49,54,56,55,54,93,44,91,45,56,51,46,54,55,48,49,57,54,44,51,57,46,53,53,48,50,53,52,93,44,91,45,56,51,46,53,55,54,50,56,54,44,51,57,46,53,52,52,53,52,55,93,44,91,45,56,51,46,53,57,48,56,55,56,44,51,57,46,51,55,56,55,51,54,93,44,91,45,56,51,46,51,55,50,55,49,52,44,51,57,46,51,55,55,52,49,54,93,44,91,45,56,51,46,50,54,54,55,51,55,44,51,57,46,53,49,54,50,52,57,93,44,91,45,56,51,46,50,53,50,52,51,53,44,51,57,46,54,57,53,52,51,56,93,44,91,45,56,51,46,54,53,51,51,51,44,51,57,46,55,49,54,56,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,49,53,57,44,34,98,101,100,115,34,58,49,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,57,55,53,52,48,57,44,52,50,46,53,53,54,48,51,55,93,44,91,45,55,51,46,48,48,48,49,55,51,44,52,50,46,51,49,50,54,55,56,93,44,91,45,55,50,46,55,56,49,48,51,57,44,52,50,46,49,57,57,55,52,57,93,44,91,45,55,50,46,50,50,49,50,49,56,44,52,50,46,50,52,53,50,53,50,93,44,91,45,55,50,46,51,49,52,50,53,51,44,52,50,46,51,52,51,54,56,56,93,44,91,45,55,50,46,51,55,53,48,50,50,44,52,50,46,52,50,48,56,49,57,93,44,91,45,55,50,46,56,55,49,49,51,54,44,52,50,46,52,56,52,48,52,49,93,44,91,45,55,50,46,57,55,53,52,48,57,44,52,50,46,53,53,54,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,57,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,54,54,55,52,44,51,54,46,57,51,52,48,49,53,93,44,91,45,56,54,46,52,48,53,55,54,57,44,51,54,46,55,55,54,49,56,55,93,44,91,45,56,54,46,52,49,49,51,55,57,44,51,54,46,54,53,48,57,50,52,93,44,91,45,56,54,46,50,48,53,51,56,56,44,51,54,46,54,52,48,49,56,52,93,44,91,45,56,53,46,57,55,54,52,49,56,44,51,54,46,54,50,56,52,57,51,93,44,91,45,56,53,46,57,55,54,57,49,44,51,54,46,55,50,50,55,50,50,93,44,91,45,56,54,46,48,54,57,57,53,55,44,51,54,46,56,48,53,55,56,51,93,44,91,45,56,54,46,48,55,48,50,57,51,44,51,54,46,56,55,56,49,56,56,93,44,91,45,56,54,46,49,54,54,55,52,44,51,54,46,57,51,52,48,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,97,109,97,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,53,55,54,44,34,98,101,100,115,34,58,50,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,53,51,50,52,49,44,51,54,46,50,52,49,52,54,51,93,44,91,45,55,57,46,53,52,49,55,50,56,44,51,53,46,56,57,57,56,53,49,93,44,91,45,55,57,46,53,52,50,52,50,56,44,51,53,46,56,52,51,51,48,51,93,44,91,45,55,57,46,50,52,57,53,51,56,44,51,53,46,56,55,54,56,49,93,44,91,45,55,57,46,50,53,55,57,53,50,44,51,54,46,50,52,51,52,52,53,93,44,91,45,55,57,46,53,51,49,56,54,53,44,51,54,46,50,52,57,54,55,51,93,44,91,45,55,57,46,53,51,50,52,49,44,51,54,46,50,52,49,52,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,53,55,50,55,55,44,51,56,46,49,55,50,54,54,93,44,91,45,57,54,46,51,53,56,48,57,57,44,51,56,46,48,56,53,56,49,55,93,44,91,45,57,54,46,53,50,50,55,56,50,44,51,56,46,48,56,54,51,55,93,44,91,45,57,54,46,53,50,53,51,44,51,55,46,54,48,55,48,49,53,93,44,91,45,57,53,46,57,54,49,48,48,50,44,51,55,46,54,48,51,55,54,49,93,44,91,45,57,53,46,57,54,48,56,55,54,44,51,55,46,55,51,52,51,48,52,93,44,91,45,57,53,46,57,53,57,48,52,54,44,51,56,46,48,52,48,49,57,53,93,44,91,45,57,53,46,57,53,56,56,54,50,44,51,56,46,49,55,48,57,51,57,93,44,91,45,57,54,46,51,53,55,50,55,55,44,51,56,46,49,55,50,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,83,117,102,102,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,49,55,54,54,44,34,98,101,100,115,34,58,54,50,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,48,50,53,56,51,54,44,52,50,46,52,52,52,55,48,57,93,44,91,45,55,49,46,49,53,55,48,51,54,44,52,50,46,51,51,48,51,57,93,44,91,45,55,49,46,49,54,52,55,48,50,44,52,50,46,51,48,51,56,51,93,44,91,45,55,49,46,49,57,49,49,53,53,44,52,50,46,50,56,51,48,53,57,93,44,91,45,55,48,46,57,54,48,49,57,50,44,52,50,46,50,57,57,52,57,56,93,44,91,45,55,48,46,56,57,52,50,57,50,44,52,50,46,51,55,50,51,57,57,93,44,91,45,55,48,46,55,50,57,50,49,50,44,52,50,46,51,55,51,56,52,56,93,44,91,45,55,48,46,54,55,53,54,57,44,52,50,46,51,55,53,48,57,56,93,44,91,45,55,48,46,54,53,56,55,50,51,44,52,50,46,51,55,53,48,57,56,93,44,91,45,55,48,46,54,52,56,48,55,50,44,52,50,46,52,48,53,54,50,56,93,44,91,45,55,48,46,57,50,52,53,57,51,44,52,50,46,51,56,54,55,57,56,93,44,91,45,55,49,46,48,50,53,56,51,54,44,52,50,46,52,52,52,55,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,54,50,54,48,52,51,44,52,51,46,54,50,54,55,53,54,93,44,91,45,49,49,49,46,57,51,52,51,53,55,44,52,51,46,55,54,54,49,54,93,44,91,45,49,49,49,46,57,55,54,56,52,57,44,52,51,46,57,50,55,51,56,53,93,44,91,45,49,49,50,46,49,53,54,51,55,44,52,51,46,57,55,49,50,52,55,93,44,91,45,49,49,50,46,49,53,53,57,51,53,44,52,52,46,48,53,55,55,56,93,44,91,45,49,49,50,46,54,57,52,55,52,52,44,52,52,46,48,53,56,52,54,52,93,44,91,45,49,49,50,46,54,57,53,50,52,50,44,52,51,46,57,55,49,57,52,49,93,44,91,45,49,49,50,46,54,57,55,49,50,50,44,52,51,46,54,50,51,49,52,93,44,91,45,49,49,50,46,53,49,57,56,54,49,44,52,51,46,54,50,54,54,50,51,93,44,91,45,49,49,49,46,54,50,54,48,52,51,44,52,51,46,54,50,54,55,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,71,111,110,122,97,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,54,55,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,51,51,49,55,54,44,50,57,46,54,52,57,56,54,51,93,44,91,45,57,55,46,56,52,48,51,56,51,44,50,57,46,51,55,54,55,57,49,93,44,91,45,57,55,46,55,50,56,52,52,51,44,50,57,46,50,50,49,55,52,56,93,44,91,45,57,55,46,54,49,51,49,51,50,44,50,57,46,49,48,57,55,54,53,93,44,91,45,57,55,46,50,52,48,49,48,56,44,50,57,46,51,56,52,52,56,56,93,44,91,45,57,55,46,50,48,52,48,56,55,44,50,57,46,53,56,48,54,49,51,93,44,91,45,57,55,46,49,52,50,54,52,51,44,50,57,46,54,50,56,49,48,49,93,44,91,45,57,55,46,51,49,55,56,57,51,44,50,57,46,55,56,52,54,53,56,93,44,91,45,57,55,46,53,57,55,55,52,51,44,50,57,46,54,51,48,55,49,56,93,44,91,45,57,55,46,54,51,51,49,55,54,44,50,57,46,54,52,57,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,56,55,48,56,57,44,51,53,46,49,52,55,49,54,57,93,44,91,45,56,53,46,52,52,52,49,52,52,44,51,53,46,50,54,50,54,52,54,93,44,91,45,56,53,46,53,53,56,53,53,49,44,51,53,46,51,49,57,50,57,50,93,44,91,45,56,53,46,54,57,48,52,49,53,44,51,53,46,50,56,54,48,55,53,93,44,91,45,56,53,46,55,52,48,49,49,51,44,51,53,46,50,49,53,50,57,53,93,44,91,45,56,53,46,56,55,51,48,50,53,44,51,53,46,50,50,51,51,54,50,93,44,91,45,56,53,46,56,54,51,57,51,53,44,51,52,46,57,56,56,50,53,51,93,44,91,45,56,53,46,54,48,53,49,54,53,44,51,52,46,57,56,52,54,55,56,93,44,91,45,56,53,46,52,55,52,48,55,51,44,51,52,46,57,56,51,48,50,93,44,91,45,56,53,46,51,56,50,50,53,53,44,51,53,46,48,52,52,55,51,93,44,91,45,56,53,46,51,56,55,48,56,57,44,51,53,46,49,52,55,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,108,112,101,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,49,50,44,34,98,101,100,115,34,58,49,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,57,48,53,57,54,44,52,53,46,50,48,56,52,56,52,93,44,91,45,56,51,46,56,56,49,50,50,51,44,52,53,46,50,48,50,48,55,49,93,44,91,45,56,51,46,56,56,56,52,56,50,44,52,52,46,56,53,54,54,51,53,93,44,91,45,56,51,46,56,56,56,52,56,52,44,52,52,46,56,53,54,52,53,56,93,44,91,45,56,50,46,52,48,56,55,49,55,44,52,52,46,56,53,56,49,52,55,93,44,91,45,56,50,46,52,57,48,53,57,54,44,52,53,46,50,48,56,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,49,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,51,53,55,49,50,44,51,54,46,57,57,55,54,49,50,93,44,91,45,56,53,46,48,54,52,51,48,55,44,51,54,46,56,53,56,55,52,51,93,44,91,45,56,52,46,57,55,52,56,49,49,44,51,54,46,54,49,53,52,54,53,93,44,91,45,56,52,46,55,56,53,52,53,44,51,54,46,54,48,51,52,52,52,93,44,91,45,56,52,46,55,55,56,52,53,52,44,51,54,46,54,48,51,50,57,93,44,91,45,56,52,46,53,55,56,49,53,56,44,51,54,46,56,54,55,49,51,51,93,44,91,45,56,52,46,54,55,57,49,54,53,44,51,54,46,57,56,48,57,49,52,93,44,91,45,56,52,46,56,51,53,55,49,50,44,51,54,46,57,57,55,54,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,53,56,48,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,52,52,54,48,52,44,51,54,46,48,49,53,48,53,51,93,44,91,45,56,53,46,54,56,50,48,57,53,44,51,53,46,56,51,49,50,53,52,93,44,91,45,56,53,46,54,48,50,56,55,54,44,51,53,46,55,57,52,57,57,54,93,44,91,45,56,53,46,52,52,57,51,54,44,51,53,46,56,50,49,53,53,57,93,44,91,45,56,53,46,50,54,57,51,53,57,44,51,53,46,55,57,51,51,56,56,93,44,91,45,56,53,46,50,50,50,53,50,52,44,51,53,46,56,55,55,51,54,52,93,44,91,45,56,53,46,50,54,52,50,48,54,44,51,53,46,57,55,57,49,53,52,93,44,91,45,56,53,46,51,53,54,54,49,57,44,51,54,46,48,52,53,56,57,51,93,44,91,45,56,53,46,53,48,55,54,55,55,44,51,54,46,48,56,50,48,49,50,93,44,91,45,56,53,46,54,52,52,54,48,52,44,51,54,46,48,49,53,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,70,97,110,110,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,49,55,53,44,34,98,101,100,115,34,58,51,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,55,57,52,53,50,44,51,51,46,55,50,53,55,54,52,93,44,91,45,57,54,46,51,56,52,54,48,50,44,51,51,46,51,57,55,56,50,54,93,44,91,45,57,54,46,50,57,53,52,49,51,44,51,51,46,51,53,49,57,51,54,93,44,91,45,57,53,46,56,53,56,55,50,51,44,51,51,46,52,48,57,53,51,93,44,91,45,57,53,46,56,53,55,55,51,56,44,51,51,46,52,54,49,55,50,50,93,44,91,45,57,53,46,56,52,54,53,51,54,44,51,51,46,56,51,57,56,53,53,93,44,91,45,57,53,46,57,52,54,48,51,44,51,51,46,56,53,57,51,51,56,93,44,91,45,57,54,46,49,52,57,50,50,55,44,51,51,46,56,51,55,48,57,49,93,44,91,45,57,54,46,49,55,57,56,52,54,44,51,51,46,55,53,57,54,49,56,93,44,91,45,57,54,46,50,57,48,51,53,57,44,51,51,46,55,55,48,56,51,49,93,44,91,45,57,54,46,51,55,57,52,53,50,44,51,51,46,55,50,53,55,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,111,110,105,112,104,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,51,57,56,57,54,44,51,57,46,57,57,57,57,57,57,93,44,91,45,57,53,46,51,51,57,55,52,44,51,57,46,54,53,50,57,56,93,44,91,45,57,53,46,49,49,53,49,56,57,44,51,57,46,54,53,50,53,52,57,93,44,91,45,57,53,46,48,53,51,53,56,54,44,51,57,46,54,49,53,50,54,57,93,44,91,45,57,52,46,56,55,54,53,53,56,44,51,57,46,56,50,48,56,56,51,93,44,91,45,57,52,46,57,57,51,51,56,50,44,51,57,46,56,57,55,57,48,54,93,44,91,45,57,53,46,48,56,53,48,48,51,44,51,57,46,56,54,49,56,56,51,93,44,91,45,57,53,46,51,48,56,50,57,44,51,57,46,57,57,57,57,57,56,93,44,91,45,57,53,46,51,51,57,56,57,54,44,51,57,46,57,57,57,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,53,34,44,34,78,65,77,69,34,58,34,75,101,114,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,51,54,53,44,34,98,101,100,115,34,58,51,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,48,50,55,55,54,44,50,57,46,57,48,55,54,55,57,93,44,91,45,57,57,46,49,55,54,57,56,56,44,50,57,46,56,57,53,48,54,51,93,44,91,45,57,56,46,57,49,55,55,50,53,44,50,57,46,55,56,49,51,57,56,93,44,91,45,57,56,46,57,50,48,49,52,55,44,51,48,46,49,51,56,50,57,93,44,91,45,57,57,46,51,48,48,57,56,56,44,51,48,46,49,51,52,50,57,56,93,44,91,45,57,57,46,51,48,49,55,49,56,44,51,48,46,50,56,54,54,53,51,93,44,91,45,57,57,46,55,53,52,49,52,50,44,51,48,46,50,57,48,54,57,56,93,44,91,45,57,57,46,55,53,55,54,50,49,44,51,48,46,48,55,52,49,51,50,93,44,91,45,57,57,46,54,56,57,56,55,57,44,51,48,46,48,55,51,57,52,56,93,44,91,45,57,57,46,54,57,49,50,49,53,44,50,57,46,57,48,56,53,56,50,93,44,91,45,57,57,46,54,48,50,55,55,54,44,50,57,46,57,48,55,54,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,72,101,114,110,97,110,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,54,57,54,44,34,98,101,100,115,34,58,53,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,53,51,57,55,55,44,50,56,46,52,51,51,50,57,93,44,91,45,56,50,46,50,53,51,52,51,57,44,50,56,46,52,51,52,56,50,52,93,44,91,45,56,50,46,48,53,52,54,57,52,44,50,56,46,52,55,56,51,57,55,93,44,91,45,56,50,46,50,54,51,48,53,50,44,50,56,46,54,54,55,54,51,52,93,44,91,45,56,50,46,52,49,56,51,53,51,44,50,56,46,54,57,52,56,53,57,93,44,91,45,56,50,46,55,55,56,52,51,55,44,50,56,46,54,57,52,50,48,54,93,44,91,45,56,50,46,55,50,55,51,57,50,44,50,56,46,53,57,53,53,56,55,93,44,91,45,56,50,46,55,53,51,57,55,55,44,50,56,46,52,51,51,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,87,97,107,117,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,56,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,55,53,53,51,57,44,51,48,46,50,55,51,54,49,55,93,44,91,45,56,52,46,50,52,55,54,55,51,44,51,48,46,51,48,51,52,57,51,93,44,91,45,56,52,46,55,49,51,51,53,49,44,51,48,46,51,48,48,49,55,93,44,91,45,56,52,46,54,54,57,50,53,56,44,51,48,46,49,50,53,50,93,44,91,45,56,52,46,53,52,52,52,53,44,51,48,46,48,49,49,48,51,93,44,91,45,56,52,46,51,50,53,49,57,56,44,50,57,46,57,53,56,48,53,93,44,91,45,56,52,46,50,54,52,55,51,53,44,50,57,46,57,55,56,48,54,49,93,44,91,45,56,52,46,48,55,53,52,53,53,44,51,48,46,48,51,52,54,50,54,93,44,91,45,56,52,46,48,55,53,53,51,57,44,51,48,46,50,55,51,54,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,87,97,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,56,53,56,44,34,98,101,100,115,34,58,49,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,56,56,54,52,54,44,51,48,46,57,57,52,49,56,49,93,44,91,45,56,54,46,51,57,55,53,48,52,44,51,48,46,51,50,53,51,53,52,93,44,91,45,56,53,46,57,57,57,56,57,51,44,51,48,46,50,49,51,48,57,93,44,91,45,56,53,46,57,57,50,55,51,54,44,51,48,46,51,56,57,51,50,93,44,91,45,56,53,46,56,54,54,56,49,56,44,51,48,46,52,56,55,54,51,55,93,44,91,45,56,53,46,57,49,53,50,57,55,44,51,48,46,54,51,54,52,50,55,93,44,91,45,56,53,46,56,52,52,52,50,49,44,51,48,46,55,48,51,49,51,93,44,91,45,56,54,46,48,51,55,53,57,49,44,51,48,46,55,48,52,53,55,50,93,44,91,45,56,54,46,48,51,53,48,51,57,44,51,48,46,57,57,51,51,50,93,44,91,45,56,54,46,49,56,55,50,52,54,44,51,48,46,57,57,52,48,50,49,93,44,91,45,56,54,46,51,56,56,54,52,54,44,51,48,46,57,57,52,49,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,105,99,107,97,115,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,55,57,44,34,98,101,100,115,34,58,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,50,52,53,50,51,44,51,52,46,48,55,52,57,52,56,93,44,91,45,56,57,46,49,51,57,49,53,56,44,51,52,46,48,55,52,49,49,54,93,44,91,45,56,57,46,49,51,55,56,55,54,44,51,51,46,56,49,50,49,52,52,93,44,91,45,56,57,46,49,57,49,55,56,49,44,51,51,46,55,51,56,54,48,50,93,44,91,45,56,57,46,48,51,52,52,57,56,44,51,51,46,55,51,57,52,51,93,44,91,45,56,56,46,57,51,49,49,55,54,44,51,51,46,56,49,50,51,55,52,93,44,91,45,56,56,46,55,49,57,57,55,57,44,51,51,46,56,49,49,51,51,93,44,91,45,56,56,46,55,49,56,57,54,52,44,51,52,46,48,55,52,53,50,49,93,44,91,45,56,56,46,56,50,52,53,50,51,44,51,52,46,48,55,52,57,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,48,34,44,34,78,65,77,69,34,58,34,75,101,116,99,104,105,107,97,110,32,71,97,116,101,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,48,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,50,46,49,57,57,55,52,57,44,53,53,46,54,51,51,56,51,52,93,44,91,45,49,51,50,46,50,50,53,57,55,57,44,53,53,46,53,54,53,56,49,50,93,44,91,45,49,51,50,46,48,51,55,48,48,54,44,53,53,46,52,54,53,50,52,54,93,44,91,45,49,51,49,46,57,52,49,51,54,52,44,53,53,46,51,49,50,56,50,54,93,44,91,45,49,51,49,46,56,53,53,48,48,51,44,53,53,46,48,56,56,54,49,53,93,44,91,45,49,51,49,46,54,56,53,51,55,55,44,53,53,46,49,49,52,52,53,56,93,44,91,45,49,51,49,46,54,48,57,50,53,51,44,53,53,46,50,56,50,48,49,51,93,44,91,45,49,51,49,46,52,56,54,55,53,54,44,53,53,46,50,55,54,49,56,51,93,44,91,45,49,51,49,46,50,51,57,53,53,52,44,53,53,46,49,54,57,54,56,51,93,44,91,45,49,51,49,46,51,51,54,57,56,51,44,53,52,46,57,57,53,53,51,52,93,44,91,45,49,51,49,46,53,49,48,54,54,44,53,53,46,48,49,54,51,54,54,93,44,91,45,49,51,49,46,55,57,52,50,56,55,44,53,52,46,57,52,52,48,49,55,93,44,91,45,49,51,49,46,55,54,50,51,51,57,44,53,52,46,54,56,54,56,52,93,44,91,45,49,51,49,46,50,48,51,48,55,52,44,53,52,46,54,57,49,51,49,55,93,44,91,45,49,51,48,46,55,50,54,53,57,53,44,53,52,46,54,54,57,57,50,51,93,44,91,45,49,51,48,46,51,52,52,53,51,55,44,53,52,46,57,49,56,56,49,51,93,44,91,45,49,51,48,46,49,56,55,53,54,50,44,53,53,46,48,54,50,56,52,49,93,44,91,45,49,51,48,46,49,48,50,56,52,50,44,53,53,46,49,57,50,54,48,50,93,44,91,45,49,50,57,46,57,55,52,49,54,55,44,53,53,46,50,56,49,57,49,57,93,44,91,45,49,51,48,46,49,50,55,57,48,52,44,53,53,46,53,56,49,48,51,53,93,44,91,45,49,51,48,46,49,53,49,53,55,55,44,53,53,46,55,54,55,52,50,56,93,44,91,45,49,51,48,46,51,56,56,54,48,54,44,53,53,46,57,52,51,49,55,57,93,44,91,45,49,51,48,46,50,52,54,55,54,55,44,53,54,46,48,57,54,53,56,49,93,44,91,45,49,51,48,46,52,50,54,48,48,54,44,53,54,46,49,52,49,53,54,49,93,44,91,45,49,51,48,46,52,54,55,56,55,44,53,54,46,50,52,51,48,53,51,93,44,91,45,49,51,48,46,54,50,51,51,48,56,44,53,54,46,50,54,54,56,55,56,93,44,91,45,49,51,48,46,55,56,49,57,56,49,44,53,54,46,51,54,54,56,52,52,93,44,91,45,49,51,49,46,48,56,55,51,52,57,44,53,54,46,52,48,54,48,48,53,93,44,91,45,49,51,49,46,48,49,53,57,55,49,44,53,54,46,50,52,57,56,54,49,93,44,91,45,49,51,49,46,50,53,51,51,53,56,44,53,54,46,50,48,54,56,53,93,44,91,45,49,51,49,46,52,51,57,57,53,55,44,53,54,46,49,51,49,48,56,51,93,44,91,45,49,51,49,46,51,55,57,57,56,55,44,53,54,46,48,49,51,52,49,57,93,44,91,45,49,51,49,46,56,51,51,49,56,50,44,53,54,46,48,53,51,53,49,50,93,44,91,45,49,51,49,46,57,51,53,54,51,53,44,53,53,46,55,57,56,52,51,49,93,44,91,45,49,51,50,46,48,57,49,49,55,56,44,53,53,46,54,54,48,55,48,51,93,44,91,45,49,51,50,46,49,57,57,55,52,57,44,53,53,46,54,51,51,56,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,108,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,54,49,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,56,55,52,48,51,44,52,52,46,49,54,52,50,52,50,93,44,91,45,56,53,46,48,56,56,56,49,49,44,52,51,46,56,49,51,54,55,54,93,44,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,44,91,45,56,52,46,54,48,56,49,48,52,44,52,52,46,49,54,48,52,56,50,93,44,91,45,56,52,46,56,53,49,55,48,53,44,52,52,46,49,54,49,51,55,53,93,44,91,45,56,53,46,48,56,55,52,48,51,44,52,52,46,49,54,52,50,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,82,101,112,117,98,108,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,56,54,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,51,49,56,50,53,44,52,48,46,48,48,50,48,55,50,93,44,91,45,57,55,46,57,51,49,52,56,50,44,51,57,46,54,53,51,55,54,55,93,44,91,45,57,55,46,51,54,56,54,55,44,51,57,46,54,53,52,48,52,51,93,44,91,45,57,55,46,51,54,57,49,57,57,44,52,48,46,48,48,49,57,54,54,93,44,91,45,57,55,46,56,50,49,52,57,53,44,52,48,46,48,48,50,48,52,55,93,44,91,45,57,55,46,57,51,49,56,50,53,44,52,48,46,48,48,50,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,86,111,108,117,115,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,54,51,52,44,34,98,101,100,115,34,58,49,52,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,52,49,57,49,54,44,50,57,46,50,55,54,55,54,54,93,44,91,45,56,49,46,53,51,50,53,55,54,44,50,57,46,49,55,55,54,49,53,93,44,91,45,56,49,46,53,48,50,48,53,53,44,50,57,46,48,57,55,56,48,50,93,44,91,45,56,49,46,51,53,52,53,53,52,44,50,56,46,57,56,52,51,55,53,93,44,91,45,56,49,46,51,54,54,57,52,44,50,56,46,56,55,57,50,50,55,93,44,91,45,56,49,46,51,50,48,52,55,51,44,50,56,46,56,51,52,53,51,93,44,91,45,56,49,46,49,48,53,55,53,44,50,56,46,56,50,56,53,52,49,93,44,91,45,56,48,46,57,56,55,50,53,44,50,56,46,54,49,50,57,57,55,93,44,91,45,56,48,46,57,54,55,56,57,53,44,50,56,46,55,57,48,49,57,55,93,44,91,45,56,48,46,54,54,51,52,54,49,44,50,56,46,55,57,48,53,56,56,93,44,91,45,56,48,46,57,48,54,56,51,54,44,50,57,46,49,52,52,55,48,54,93,44,91,45,56,49,46,48,52,53,55,48,54,44,50,57,46,52,51,50,52,54,50,93,44,91,45,56,49,46,49,53,53,56,56,49,44,50,57,46,52,49,48,57,53,52,93,44,91,45,56,49,46,49,53,48,48,56,49,44,50,57,46,50,54,53,57,53,55,93,44,91,45,56,49,46,52,49,55,50,57,44,50,57,46,50,54,49,49,53,54,93,44,91,45,56,49,46,52,51,51,57,57,50,44,50,57,46,51,57,56,53,53,50,93,44,91,45,56,49,46,54,56,48,57,48,51,44,50,57,46,51,50,52,52,51,93,44,91,45,56,49,46,54,52,49,57,49,54,44,50,57,46,50,55,54,55,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,110,97,100,105,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,55,49,48,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,57,54,48,49,52,44,51,53,46,51,55,55,55,53,51,93,44,91,45,57,55,46,57,53,53,49,50,52,44,51,53,46,51,52,54,48,52,56,93,44,91,45,57,55,46,54,55,49,52,49,52,44,51,53,46,51,51,53,57,52,54,93,44,91,45,57,55,46,54,55,49,52,49,53,44,51,53,46,51,51,55,52,54,53,93,44,91,45,57,55,46,54,55,49,51,54,57,44,51,53,46,51,55,55,49,53,49,93,44,91,45,57,55,46,54,55,52,48,50,54,44,51,53,46,55,50,53,57,55,93,44,91,45,57,56,46,50,48,55,49,48,52,44,51,53,46,55,50,53,49,56,55,93,44,91,45,57,56,46,51,49,51,49,53,51,44,51,53,46,55,50,53,49,54,49,93,44,91,45,57,56,46,51,49,51,50,53,49,44,51,53,46,53,53,49,53,50,51,93,44,91,45,57,56,46,51,48,54,51,50,54,44,51,53,46,51,55,55,50,51,57,93,44,91,45,57,56,46,48,57,54,48,49,52,44,51,53,46,51,55,55,55,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,81,117,101,98,114,97,100,105,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,57,52,53,57,51,56,44,49,56,46,53,52,48,52,49,57,93,44,91,45,54,54,46,57,50,50,48,50,44,49,56,46,51,57,51,50,48,52,93,44,91,45,54,54,46,56,57,56,57,44,49,56,46,51,54,54,49,48,56,93,44,91,45,54,54,46,57,48,50,48,56,54,44,49,56,46,53,51,53,50,51,56,93,44,91,45,54,54,46,57,52,53,57,51,56,44,49,56,46,53,52,48,52,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,56,50,52,44,34,98,101,100,115,34,58,53,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,48,55,55,52,56,44,51,52,46,53,56,55,52,56,51,93,44,91,45,56,53,46,49,56,48,53,52,56,44,51,52,46,52,51,53,57,57,54,93,44,91,45,56,53,46,52,54,50,50,48,55,44,51,52,46,50,56,54,51,56,54,93,44,91,45,56,53,46,52,50,49,56,53,50,44,51,52,46,48,56,48,56,50,50,93,44,91,45,56,53,46,48,52,54,56,55,49,44,51,52,46,48,57,54,52,49,50,93,44,91,45,56,53,46,48,48,53,55,55,53,44,51,52,46,51,57,50,52,52,54,93,44,91,45,56,53,46,48,56,54,55,54,49,44,51,52,46,52,48,49,50,54,52,93,44,91,45,56,53,46,48,54,57,49,53,57,44,51,52,46,53,56,55,49,56,52,93,44,91,45,56,53,46,49,48,55,55,52,56,44,51,52,46,53,56,55,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,67,104,117,114,99,104,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,49,48,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,49,56,57,51,52,50,44,51,57,46,54,53,48,56,55,93,44,91,45,49,49,57,46,48,55,55,57,56,56,44,51,57,46,55,50,50,52,52,49,93,44,91,45,49,49,57,46,49,49,56,49,57,51,44,51,57,46,51,56,56,53,49,54,93,44,91,45,49,49,56,46,55,53,52,48,49,52,44,51,57,46,49,49,50,48,50,51,93,44,91,45,49,49,56,46,55,53,51,56,51,53,44,51,57,46,48,55,52,54,51,93,44,91,45,49,49,55,46,56,54,53,49,49,54,44,51,57,46,48,55,51,54,53,52,93,44,91,45,49,49,55,46,55,55,53,52,54,56,44,51,57,46,48,57,51,52,50,53,93,44,91,45,49,49,55,46,55,49,57,57,53,44,51,57,46,50,51,54,56,50,49,93,44,91,45,49,49,55,46,55,54,51,48,52,54,44,51,57,46,51,53,50,56,51,93,44,91,45,49,49,55,46,54,52,54,48,49,49,44,51,57,46,52,50,54,54,48,50,93,44,91,45,49,49,55,46,53,56,55,49,52,44,51,57,46,53,49,56,53,50,49,93,44,91,45,49,49,55,46,52,56,53,51,51,54,44,51,57,46,53,52,53,51,50,50,93,44,91,45,49,49,55,46,52,57,53,51,52,52,44,51,57,46,55,52,56,51,54,52,93,44,91,45,49,49,55,46,52,54,49,51,52,44,51,57,46,56,54,55,56,49,56,93,44,91,45,49,49,55,46,53,52,49,55,52,57,44,52,48,46,48,48,49,48,51,52,93,44,91,45,49,49,56,46,53,48,48,57,55,57,44,51,57,46,57,57,56,54,55,54,93,44,91,45,49,49,57,46,50,50,53,49,55,54,44,51,57,46,57,57,57,51,56,53,93,44,91,45,49,49,57,46,49,56,57,51,52,50,44,51,57,46,54,53,48,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,49,44,34,98,101,100,115,34,58,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,50,54,56,50,55,44,52,48,46,51,53,48,51,57,56,93,44,91,45,57,56,46,55,50,54,51,55,51,44,52,48,46,48,48,50,52,93,44,91,45,57,56,46,53,48,52,52,53,53,44,52,48,46,48,48,50,50,57,49,93,44,91,45,57,56,46,50,55,52,48,49,55,44,52,48,46,48,48,50,54,54,50,93,44,91,45,57,56,46,50,55,51,53,55,49,44,52,48,46,51,53,48,51,53,57,93,44,91,45,57,56,46,50,55,56,48,57,44,52,48,46,51,53,48,51,52,55,93,44,91,45,57,56,46,55,50,51,57,52,56,44,52,48,46,51,53,48,51,57,49,93,44,91,45,57,56,46,55,50,54,56,50,55,44,52,48,46,51,53,48,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,49,50,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,56,53,50,57,53,44,52,48,46,54,51,55,56,48,51,93,44,91,45,57,49,46,51,53,57,56,55,51,44,52,48,46,54,48,49,56,48,53,93,44,91,45,57,49,46,51,55,53,55,49,50,44,52,48,46,51,57,49,57,50,53,93,44,91,45,57,49,46,52,49,57,52,50,50,44,52,48,46,51,55,56,50,54,52,93,44,91,45,57,49,46,52,57,55,50,54,54,44,52,48,46,50,52,56,55,54,51,93,44,91,45,57,49,46,53,48,53,48,54,49,44,52,48,46,49,57,57,57,50,53,93,44,91,45,57,48,46,57,49,49,57,54,57,44,52,48,46,49,57,51,48,56,56,93,44,91,45,57,48,46,57,48,57,55,53,54,44,52,48,46,50,56,52,51,57,52,93,44,91,45,57,48,46,57,48,52,50,49,54,44,52,48,46,54,51,57,50,48,49,93,44,91,45,57,49,46,49,56,53,50,57,53,44,52,48,46,54,51,55,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,117,116,99,104,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,49,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,48,55,48,49,50,44,52,51,46,52,57,57,56,50,54,93,44,91,45,57,55,46,57,54,52,53,56,54,44,52,51,46,52,57,57,48,52,49,93,44,91,45,57,56,46,49,49,52,55,53,56,44,52,51,46,52,57,56,50,57,55,93,44,91,45,57,56,46,49,48,57,52,57,50,44,52,51,46,49,57,54,56,51,56,93,44,91,45,57,56,46,48,55,55,49,48,56,44,52,51,46,49,54,56,51,51,93,44,91,45,57,55,46,54,51,55,52,57,54,44,52,51,46,49,54,56,55,55,93,44,91,45,57,55,46,51,57,57,49,57,49,44,52,51,46,49,54,57,52,49,57,93,44,91,45,57,55,46,52,48,49,52,53,44,52,51,46,52,57,57,55,56,51,93,44,91,45,57,55,46,54,48,55,48,49,50,44,52,51,46,52,57,57,56,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,114,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,51,55,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,51,56,54,53,54,49,44,52,52,46,53,54,52,48,48,57,93,44,91,45,49,50,48,46,56,50,55,53,53,53,44,52,52,46,53,54,50,55,57,51,93,44,91,45,49,50,48,46,56,50,54,56,57,57,44,52,52,46,52,55,54,52,57,57,93,44,91,45,49,50,48,46,57,56,56,56,50,52,44,52,52,46,52,55,54,52,56,52,93,44,91,45,49,50,49,46,49,48,55,53,51,52,44,52,52,46,51,57,48,54,93,44,91,45,49,50,49,46,49,48,50,55,55,51,44,52,52,46,49,51,56,49,50,53,93,44,91,45,49,50,48,46,57,56,55,50,55,49,44,52,52,46,49,51,52,48,50,54,93,44,91,45,49,50,48,46,57,56,54,53,56,55,44,52,51,46,57,54,48,56,53,50,93,44,91,45,49,50,48,46,55,52,56,50,52,57,44,52,51,46,57,53,55,51,49,93,44,91,45,49,50,48,46,55,52,55,56,52,56,44,52,51,46,56,55,49,51,51,49,93,44,91,45,49,50,48,46,51,55,56,55,52,44,52,51,46,56,55,50,51,54,50,93,44,91,45,49,50,48,46,51,55,56,49,48,55,44,52,51,46,55,56,53,52,50,57,93,44,91,45,49,50,48,46,50,53,55,55,55,55,44,52,51,46,54,57,56,55,54,50,93,44,91,45,49,49,57,46,56,57,55,52,51,52,44,52,51,46,54,57,56,50,93,44,91,45,49,49,57,46,55,55,55,53,50,56,44,52,51,46,54,57,55,57,53,55,93,44,91,45,49,49,57,46,55,55,53,52,48,50,44,52,51,46,57,53,57,48,56,54,93,44,91,45,49,49,57,46,54,53,55,49,56,51,44,52,51,46,57,53,56,57,50,93,44,91,45,49,49,57,46,54,53,53,53,49,55,44,52,52,46,51,48,55,48,52,53,93,44,91,45,49,49,57,46,56,57,57,48,48,50,44,52,52,46,51,48,54,54,50,93,44,91,45,49,49,57,46,56,57,57,50,56,51,44,52,52,46,51,56,57,53,55,53,93,44,91,45,49,50,48,46,48,50,49,54,50,49,44,52,52,46,52,51,56,55,57,51,93,44,91,45,49,50,48,46,51,56,54,48,55,52,44,52,52,46,52,51,54,48,56,51,93,44,91,45,49,50,48,46,51,56,54,53,54,49,44,52,52,46,53,54,52,48,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,50,53,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,49,57,49,57,50,56,44,52,53,46,48,49,51,54,49,53,93,44,91,45,55,51,46,50,50,56,56,53,52,44,52,52,46,55,50,50,56,54,54,93,44,91,45,55,50,46,57,50,52,49,49,50,44,52,52,46,54,51,51,48,53,49,93,44,91,45,55,50,46,55,52,55,51,54,44,52,52,46,55,56,54,49,55,93,44,91,45,55,50,46,53,55,56,49,54,49,44,52,52,46,55,56,49,53,55,56,93,44,91,45,55,50,46,53,51,50,54,51,56,44,52,52,46,56,51,51,51,52,54,93,44,91,45,55,50,46,53,53,52,51,54,44,52,53,46,48,48,56,50,55,49,93,44,91,45,55,51,46,49,57,49,57,50,56,44,52,53,46,48,49,51,54,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,77,97,114,113,117,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,57,51,57,44,34,98,101,100,115,34,58,50,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,52,51,55,51,49,44,52,55,46,48,52,51,57,53,56,93,44,91,45,56,56,46,48,52,52,55,48,57,44,52,54,46,55,54,53,51,53,51,93,44,91,45,56,56,46,49,49,53,56,52,51,44,52,54,46,54,55,56,51,56,49,93,44,91,45,56,56,46,49,49,54,53,55,49,44,52,54,46,52,49,57,57,53,49,93,44,91,45,56,56,46,49,49,55,52,48,55,44,52,54,46,50,52,54,54,49,56,93,44,91,45,56,55,46,54,49,53,53,57,55,44,52,54,46,50,52,54,54,53,51,93,44,91,45,56,55,46,54,49,55,48,57,49,44,52,53,46,57,56,54,48,49,52,93,44,91,45,56,55,46,51,54,55,56,52,57,44,52,53,46,57,56,53,51,50,49,93,44,91,45,56,55,46,50,52,50,56,56,53,44,52,53,46,57,56,53,49,49,55,93,44,91,45,56,55,46,50,52,49,53,48,54,44,52,54,46,49,53,57,49,48,51,93,44,91,45,56,55,46,49,49,54,49,51,56,44,52,54,46,49,53,57,48,53,93,44,91,45,56,55,46,49,49,50,49,49,52,44,52,55,46,50,50,51,50,54,57,93,44,91,45,56,56,46,48,52,54,54,49,52,44,52,55,46,50,49,56,54,57,54,93,44,91,45,56,56,46,48,52,54,48,54,51,44,52,55,46,49,57,57,55,50,50,93,44,91,45,56,56,46,48,52,51,55,51,49,44,52,55,46,48,52,51,57,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,77,105,100,100,108,101,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,51,54,56,44,34,98,101,100,115,34,58,55,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,55,53,50,49,56,49,44,52,49,46,53,55,56,56,57,52,93,44,91,45,55,50,46,55,51,57,49,50,44,52,49,46,52,51,56,50,57,52,93,44,91,45,55,50,46,54,53,52,49,57,51,44,52,49,46,52,51,56,50,53,54,93,44,91,45,55,50,46,53,50,55,57,48,50,44,52,49,46,50,53,48,49,49,53,93,44,91,45,55,50,46,53,50,55,57,48,49,44,52,49,46,49,55,55,55,55,52,93,44,91,45,55,50,46,51,51,49,52,53,51,44,52,49,46,50,49,53,48,48,52,93,44,91,45,55,50,46,51,56,52,56,51,51,44,52,49,46,51,56,53,49,57,93,44,91,45,55,50,46,51,48,53,53,51,49,44,52,49,46,52,51,54,50,56,50,93,44,91,45,55,50,46,51,50,51,51,57,52,44,52,49,46,53,51,52,50,53,93,44,91,45,55,50,46,52,54,54,55,51,44,52,49,46,53,56,51,56,57,57,93,44,91,45,55,50,46,53,48,53,52,51,49,44,52,49,46,54,52,54,57,57,57,93,44,91,45,55,50,46,55,49,51,56,57,55,44,52,49,46,54,50,55,55,48,53,93,44,91,45,55,50,46,55,53,50,49,56,49,44,52,49,46,53,55,56,56,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,68,97,118,105,100,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,54,54,52,44,34,98,101,100,115,34,58,50,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,52,51,50,51,56,44,51,54,46,48,49,48,55,53,56,93,44,91,45,56,48,46,50,49,51,55,51,44,51,54,46,48,50,54,56,48,56,93,44,91,45,56,48,46,51,57,52,51,48,55,44,51,53,46,57,55,50,55,54,50,93,44,91,45,56,48,46,51,56,53,55,56,52,44,51,53,46,56,53,52,53,56,55,93,44,91,45,56,48,46,52,53,56,56,56,52,44,51,53,46,55,52,51,48,51,49,93,44,91,45,56,48,46,50,48,57,53,48,57,44,51,53,46,53,56,49,57,53,49,93,44,91,45,56,48,46,49,56,50,53,53,57,44,51,53,46,53,48,52,49,53,49,93,44,91,45,56,48,46,48,54,54,56,52,50,44,51,53,46,53,48,53,54,54,49,93,44,91,45,56,48,46,48,52,54,56,54,57,44,51,53,46,57,50,48,54,57,51,93,44,91,45,56,48,46,48,52,51,50,51,56,44,51,54,46,48,49,48,55,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,51,56,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,57,53,49,54,53,44,51,56,46,56,50,54,50,57,57,93,44,91,45,56,56,46,54,57,56,52,53,57,44,51,56,46,54,48,54,48,54,50,93,44,91,45,56,56,46,50,53,51,57,55,56,44,51,56,46,53,57,57,53,48,50,93,44,91,45,56,56,46,50,53,56,53,56,51,44,51,56,46,56,52,55,53,50,57,93,44,91,45,56,56,46,51,54,49,55,52,53,44,51,56,46,57,49,48,56,52,55,93,44,91,45,56,56,46,54,57,51,53,51,49,44,51,56,46,57,49,52,54,49,55,93,44,91,45,56,56,46,54,57,53,49,54,53,44,51,56,46,56,50,54,50,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,52,55,56,48,49,44,52,48,46,51,48,50,55,53,54,93,44,91,45,57,50,46,51,52,53,48,54,52,44,52,48,46,48,51,55,50,49,93,44,91,45,57,50,46,50,56,55,56,56,50,44,51,57,46,57,53,50,52,57,93,44,91,45,57,49,46,57,53,50,55,50,54,44,51,57,46,57,52,57,52,50,54,93,44,91,45,57,49,46,57,53,48,56,49,50,44,52,48,46,50,53,55,50,49,93,44,91,45,57,49,46,57,52,57,55,52,55,44,52,48,46,51,48,48,56,51,50,93,44,91,45,57,50,46,51,52,55,56,48,49,44,52,48,46,51,48,50,55,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,54,49,57,55,51,44,51,57,46,57,53,57,53,53,50,93,44,91,45,57,51,46,55,53,56,57,57,50,44,51,57,46,55,56,52,54,55,52,93,44,91,45,57,51,46,55,53,56,51,53,55,44,51,57,46,54,49,49,52,48,55,93,44,91,45,57,51,46,50,55,56,48,57,56,44,51,57,46,54,49,53,54,51,50,93,44,91,45,57,51,46,50,54,54,57,54,56,44,51,57,46,55,48,51,53,54,50,93,44,91,45,57,51,46,51,54,52,56,48,56,44,51,57,46,55,48,51,56,48,51,93,44,91,45,57,51,46,51,54,49,57,53,55,44,51,57,46,57,54,55,54,48,54,93,44,91,45,57,51,46,55,54,49,57,55,51,44,51,57,46,57,53,57,53,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,84,105,111,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,50,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,54,53,55,50,56,44,52,50,46,48,48,49,50,55,54,93,44,91,45,55,55,46,54,49,48,48,50,55,44,52,49,46,57,57,57,51,54,56,93,44,91,45,55,55,46,53,57,57,50,55,56,44,52,49,46,53,52,50,50,55,49,93,44,91,45,55,54,46,57,54,48,52,55,57,44,52,49,46,53,53,49,51,55,49,93,44,91,45,55,54,46,56,55,52,55,49,52,44,52,49,46,53,57,54,57,49,57,93,44,91,45,55,54,46,57,50,55,48,56,52,44,52,50,46,48,48,49,54,55,52,93,44,91,45,55,54,46,57,54,53,55,50,56,44,52,50,46,48,48,49,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,51,49,52,57,50,44,52,50,46,53,50,52,51,49,56,93,44,91,45,57,54,46,55,50,50,50,51,49,44,52,50,46,53,50,52,54,53,50,93,44,91,45,57,54,46,55,50,54,54,54,49,44,52,50,46,50,55,56,48,48,53,93,44,91,45,57,54,46,51,53,54,51,57,53,44,52,50,46,50,55,54,52,57,52,93,44,91,45,57,54,46,52,48,55,57,57,56,44,52,50,46,51,51,55,52,48,56,93,44,91,45,57,54,46,51,56,48,55,48,53,44,52,50,46,52,52,54,51,57,51,93,44,91,45,57,54,46,52,52,53,52,56,51,44,52,50,46,52,57,48,54,51,93,44,91,45,57,54,46,54,51,49,52,57,50,44,52,50,46,53,50,52,51,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,76,101,101,108,97,110,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,54,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,49,53,49,49,57,44,52,52,46,55,55,52,53,51,52,93,44,91,45,56,53,46,54,49,56,48,51,51,44,52,52,46,55,55,52,53,53,55,93,44,91,45,56,53,46,53,53,48,52,53,53,44,52,53,46,48,53,49,48,55,51,93,44,91,45,56,53,46,52,56,48,54,55,52,44,52,53,46,49,50,48,51,50,54,93,44,91,45,56,53,46,52,53,56,56,57,54,44,52,53,46,50,48,54,53,55,52,93,44,91,45,56,53,46,54,50,53,48,55,54,44,52,53,46,52,53,52,54,48,50,93,44,91,45,56,53,46,56,53,53,55,54,56,44,52,53,46,53,55,56,51,56,54,93,44,91,45,56,54,46,52,54,48,55,57,55,44,52,53,46,53,56,52,52,51,51,93,44,91,45,56,54,46,52,54,52,49,50,44,52,53,46,51,50,52,56,49,93,44,91,45,56,54,46,50,53,48,49,44,52,53,46,50,51,53,55,51,53,93,44,91,45,56,54,46,52,57,57,57,51,44,52,53,46,48,56,48,56,93,44,91,45,56,54,46,54,56,54,50,56,56,44,52,52,46,56,56,49,48,48,50,93,44,91,45,56,54,46,55,51,52,53,50,57,44,52,52,46,55,55,51,48,55,52,93,44,91,45,56,53,46,56,49,53,49,49,57,44,52,52,46,55,55,52,53,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,83,117,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,55,50,52,51,57,44,51,55,46,50,52,56,53,48,49,93,44,91,45,55,55,46,49,53,53,52,49,53,44,51,55,46,49,49,50,48,51,52,93,44,91,45,55,54,46,57,56,54,54,49,44,51,55,46,48,52,57,54,57,55,93,44,91,45,55,54,46,57,53,51,53,52,54,44,51,54,46,57,52,52,52,53,93,44,91,45,55,54,46,56,52,57,54,56,52,44,51,54,46,57,57,54,50,49,49,93,44,91,45,55,54,46,55,49,49,55,55,53,44,51,55,46,48,53,53,51,56,93,44,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,44,91,45,55,54,46,56,56,51,49,53,54,44,51,55,46,50,50,51,48,53,55,93,44,91,45,55,54,46,57,55,50,52,51,57,44,51,55,46,50,52,56,53,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,57,49,34,44,34,78,65,77,69,34,58,34,82,101,102,117,103,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,51,54,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,55,53,53,55,57,44,50,56,46,51,56,56,54,56,52,93,44,91,45,57,55,46,53,52,49,48,55,49,44,50,56,46,49,54,52,54,54,57,93,44,91,45,57,55,46,51,49,57,49,57,57,44,50,56,46,49,50,53,57,53,56,93,44,91,45,57,55,46,50,54,48,56,49,56,44,50,56,46,48,55,53,55,53,57,93,44,91,45,57,55,46,49,52,52,57,49,54,44,50,56,46,49,48,50,54,50,50,93,44,91,45,57,55,46,48,50,51,53,56,54,44,50,56,46,49,56,55,54,53,55,93,44,91,45,57,55,46,49,50,51,48,55,50,44,50,56,46,50,55,50,56,49,55,93,44,91,45,57,54,46,55,57,48,53,49,50,44,50,56,46,51,49,57,50,51,56,93,44,91,45,57,54,46,55,55,56,54,51,52,44,50,56,46,52,48,52,50,53,57,93,44,91,45,57,54,46,56,57,48,57,53,49,44,50,56,46,53,48,55,49,55,56,93,44,91,45,57,55,46,49,54,48,55,53,49,44,50,56,46,53,53,51,52,55,53,93,44,91,45,57,55,46,51,55,53,53,55,57,44,50,56,46,51,56,56,54,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,50,57,52,44,34,98,101,100,115,34,58,55,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,55,57,50,49,51,44,51,57,46,53,57,49,48,50,52,93,44,91,45,56,52,46,56,49,52,57,51,52,44,51,57,46,53,54,55,55,49,52,93,44,91,45,56,52,46,56,49,53,51,53,51,44,51,57,46,53,50,49,57,53,93,44,91,45,56,52,46,56,49,57,52,53,44,51,57,46,51,48,53,49,53,51,93,44,91,45,56,52,46,51,53,51,50,48,57,44,51,57,46,50,57,50,50,56,55,93,44,91,45,56,52,46,51,51,50,48,56,57,44,51,57,46,53,52,56,56,48,51,93,44,91,45,56,52,46,51,54,53,50,51,50,44,51,57,46,53,56,57,52,57,51,93,44,91,45,56,52,46,52,55,57,50,49,51,44,51,57,46,53,57,49,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,51,34,44,34,78,65,77,69,34,58,34,84,101,114,114,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,57,57,55,55,54,44,51,49,46,57,50,48,49,55,49,93,44,91,45,56,52,46,54,48,51,48,56,54,44,51,49,46,55,55,50,48,48,49,93,44,91,45,56,52,46,53,52,54,56,53,52,44,51,49,46,54,50,49,49,57,57,93,44,91,45,56,52,46,52,53,48,51,57,56,44,51,49,46,54,50,49,56,54,56,93,44,91,45,56,52,46,50,57,55,56,48,49,44,51,49,46,54,50,49,57,53,49,93,44,91,45,56,52,46,51,48,53,50,48,52,44,51,49,46,54,57,49,48,53,56,93,44,91,45,56,52,46,50,54,50,51,52,57,44,51,49,46,56,50,56,52,56,56,93,44,91,45,56,52,46,51,51,56,50,52,53,44,51,49,46,56,55,51,53,57,49,93,44,91,45,56,52,46,52,52,51,56,48,55,44,51,49,46,57,54,55,52,53,54,93,44,91,45,56,52,46,53,57,57,55,55,54,44,51,49,46,57,50,48,49,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,67,108,97,121,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,54,54,54,44,34,98,101,100,115,34,58,53,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,53,48,50,50,52,44,51,51,46,54,52,55,57,48,56,93,44,91,45,56,52,46,52,53,55,55,50,54,44,51,51,46,54,52,56,56,54,54,93,44,91,45,56,52,46,52,53,56,54,54,53,44,51,51,46,53,53,48,57,51,51,93,44,91,45,56,52,46,51,56,55,55,48,56,44,51,51,46,52,55,55,49,51,57,93,44,91,45,56,52,46,51,56,56,49,49,56,44,51,51,46,51,53,50,52,54,53,93,44,91,45,56,52,46,51,53,52,52,44,51,51,46,51,53,50,53,49,52,93,44,91,45,56,52,46,50,57,52,54,56,44,51,51,46,52,51,53,55,49,53,93,44,91,45,56,52,46,50,56,49,50,55,51,44,51,51,46,54,52,55,52,49,49,93,44,91,45,56,52,46,51,53,48,50,50,52,44,51,51,46,54,52,55,57,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,70,114,101,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,55,54,44,34,98,101,100,115,34,58,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,48,53,49,53,55,44,52,51,46,52,54,52,55,56,51,93,44,91,45,49,48,57,46,55,53,52,55,49,55,44,52,51,46,52,54,51,50,93,44,91,45,49,48,57,46,54,57,50,55,49,54,44,52,51,46,50,54,53,48,51,93,44,91,45,49,48,57,46,53,53,50,53,55,57,44,52,51,46,48,49,50,53,51,56,93,44,91,45,49,48,57,46,51,55,48,54,53,56,44,52,50,46,57,52,53,55,50,56,93,44,91,45,49,48,57,46,50,49,52,54,48,50,44,52,50,46,55,54,49,55,57,53,93,44,91,45,49,48,57,46,48,55,50,56,53,49,44,52,50,46,54,57,51,53,49,52,93,44,91,45,49,48,57,46,48,52,51,56,54,52,44,52,50,46,50,54,51,54,56,52,93,44,91,45,49,48,55,46,53,50,50,55,50,50,44,52,50,46,50,54,49,55,53,54,93,44,91,45,49,48,55,46,53,50,50,57,50,51,44,52,50,46,52,51,52,51,53,54,93,44,91,45,49,48,55,46,53,52,51,53,50,54,44,52,50,46,55,56,49,53,53,56,93,44,91,45,49,48,55,46,53,48,49,52,50,53,44,52,50,46,55,56,49,52,53,56,93,44,91,45,49,48,55,46,53,49,55,48,51,49,44,52,51,46,52,55,50,54,53,57,93,44,91,45,49,48,55,46,53,51,52,56,57,55,44,52,51,46,53,48,49,51,54,50,93,44,91,45,49,48,55,46,53,57,53,49,48,53,44,52,51,46,53,48,49,51,57,55,93,44,91,45,49,48,55,46,53,57,53,49,51,55,44,52,51,46,52,55,50,50,55,57,93,44,91,45,49,48,56,46,51,51,55,56,54,49,44,52,51,46,52,53,57,55,54,53,93,44,91,45,49,48,56,46,54,57,53,48,55,50,44,52,51,46,53,51,50,50,53,53,93,44,91,45,49,48,56,46,54,57,52,54,55,50,44,52,51,46,53,55,53,55,53,53,93,44,91,45,49,48,56,46,57,51,52,49,52,49,44,52,51,46,54,49,57,49,54,51,93,44,91,45,49,48,57,46,49,55,49,54,51,56,44,52,51,46,54,49,57,55,54,52,93,44,91,45,49,48,57,46,49,55,49,52,52,56,44,52,51,46,54,57,57,49,57,56,93,44,91,45,49,48,57,46,51,49,50,57,52,57,44,52,51,46,56,49,51,50,57,51,93,44,91,45,49,48,57,46,52,52,50,51,54,49,44,52,51,46,57,51,48,52,51,52,93,44,91,45,49,48,57,46,53,52,50,51,51,50,44,52,51,46,57,54,49,51,53,50,93,44,91,45,49,48,57,46,55,56,57,57,44,52,51,46,56,48,51,50,53,50,93,44,91,45,49,48,57,46,56,56,49,57,44,52,51,46,57,52,57,48,55,54,93,44,91,45,49,49,48,46,48,53,51,49,55,57,44,52,52,46,48,48,56,48,50,50,93,44,91,45,49,49,48,46,48,53,49,53,55,44,52,51,46,52,54,52,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,51,53,56,51,50,44,51,56,46,57,50,57,53,55,56,93,44,91,45,56,52,46,56,55,48,55,52,57,44,51,56,46,57,48,48,57,48,53,93,44,91,45,56,52,46,56,55,55,54,50,52,44,51,57,46,48,51,49,50,49,51,93,44,91,45,56,53,46,49,51,50,53,48,56,44,51,56,46,57,52,56,48,53,53,93,44,91,45,56,53,46,49,51,53,56,51,50,44,51,56,46,57,50,57,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,50,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,50,53,51,50,56,44,51,51,46,54,53,48,54,50,57,93,44,91,45,56,50,46,52,51,54,56,49,52,44,51,51,46,53,52,57,54,53,56,93,44,91,45,56,50,46,50,57,52,49,55,57,44,51,51,46,51,53,52,54,51,53,93,44,91,45,56,50,46,48,50,56,50,51,56,44,51,51,46,53,52,52,57,51,52,93,44,91,45,56,50,46,49,49,53,51,50,57,44,51,51,46,53,57,54,54,49,51,93,44,91,45,56,50,46,50,49,56,54,52,57,44,51,51,46,54,56,54,50,57,57,93,44,91,45,56,50,46,51,50,57,48,52,57,44,51,51,46,54,57,55,54,55,54,93,44,91,45,56,50,46,52,50,53,51,50,56,44,51,51,46,54,53,48,54,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,101,100,103,119,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,48,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,53,51,52,54,51,44,52,49,46,48,48,50,51,51,50,93,44,91,45,49,48,50,46,54,53,49,51,49,44,52,48,46,55,52,57,52,48,50,93,44,91,45,49,48,50,46,48,53,49,52,49,54,44,52,48,46,55,52,57,53,56,54,93,44,91,45,49,48,50,46,48,53,49,55,49,55,44,52,49,46,48,48,50,51,53,57,93,44,91,45,49,48,50,46,54,50,49,48,51,51,44,52,49,46,48,48,50,53,57,55,93,44,91,45,49,48,50,46,54,53,51,52,54,51,44,52,49,46,48,48,50,51,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,77,117,115,115,101,108,115,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,48,57,53,55,44,52,54,46,55,53,48,55,48,50,93,44,91,45,49,48,57,46,48,48,57,57,56,50,44,52,54,46,54,50,49,49,55,50,93,44,91,45,49,48,56,46,57,48,52,57,48,52,44,52,54,46,53,55,54,57,48,56,93,44,91,45,49,48,56,46,56,54,50,50,55,55,44,52,54,46,51,54,52,53,56,54,93,44,91,45,49,48,56,46,55,55,57,50,55,50,44,52,54,46,50,55,55,51,57,56,93,44,91,45,49,48,56,46,55,55,57,55,51,51,44,52,54,46,49,51,50,52,53,55,93,44,91,45,49,48,56,46,52,48,52,55,57,53,44,52,54,46,49,51,50,57,53,50,93,44,91,45,49,48,56,46,52,48,52,56,53,54,44,52,54,46,50,51,53,57,54,93,44,91,45,49,48,56,46,51,50,48,56,49,50,44,52,54,46,50,54,51,57,57,55,93,44,91,45,49,48,56,46,48,50,57,51,54,51,44,52,54,46,50,54,52,48,53,53,93,44,91,45,49,48,55,46,57,50,56,53,52,55,44,52,54,46,51,57,53,50,56,52,93,44,91,45,49,48,55,46,55,56,50,48,56,55,44,52,54,46,51,57,53,49,56,50,93,44,91,45,49,48,55,46,55,56,49,50,49,52,44,52,54,46,52,57,54,48,49,52,93,44,91,45,49,48,55,46,56,50,55,54,56,55,44,52,54,46,55,53,53,56,55,53,93,44,91,45,49,48,56,46,54,51,49,52,54,50,44,52,54,46,55,52,57,51,57,50,93,44,91,45,49,48,57,46,48,48,57,53,55,44,52,54,46,55,53,48,55,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,97,117,112,104,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,53,49,53,44,34,98,101,100,115,34,58,54,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,44,91,45,55,54,46,57,52,57,51,57,55,44,52,48,46,52,54,57,48,51,55,93,44,91,45,55,55,46,48,50,56,54,52,53,44,52,48,46,51,57,49,49,57,55,93,44,91,45,55,54,46,57,49,52,57,55,44,52,48,46,51,50,56,52,56,52,93,44,91,45,55,54,46,56,53,57,48,50,51,44,52,48,46,50,50,54,51,50,56,93,44,91,45,55,54,46,55,50,49,54,50,44,52,48,46,49,50,48,48,55,93,44,91,45,55,54,46,53,54,54,51,51,57,44,52,48,46,49,57,54,54,52,52,93,44,91,45,55,54,46,54,55,56,48,52,44,52,48,46,52,55,52,55,49,55,93,44,91,45,55,54,46,53,51,53,52,49,52,44,52,48,46,53,53,53,49,53,55,93,44,91,45,55,54,46,55,48,49,54,50,52,44,52,48,46,54,53,56,48,56,50,93,44,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,111,111,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,48,54,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,56,57,50,49,54,44,52,52,46,49,57,53,55,48,53,93,44,91,45,57,54,46,56,56,56,54,54,52,44,52,51,46,56,52,56,51,56,53,93,44,91,45,57,54,46,52,53,50,57,56,56,44,52,51,46,56,52,57,53,48,55,93,44,91,45,57,54,46,52,53,50,55,55,51,44,52,52,46,49,57,54,55,56,93,44,91,45,57,54,46,56,56,57,50,49,54,44,52,52,46,49,57,53,55,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,54,53,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,53,49,50,55,44,51,56,46,52,55,52,53,52,55,93,44,91,45,56,50,46,48,52,55,49,50,56,44,51,56,46,51,55,52,52,51,50,93,44,91,45,56,49,46,57,49,53,49,57,55,44,51,56,46,51,50,53,53,57,55,93,44,91,45,56,49,46,57,48,48,50,50,50,44,51,56,46,51,57,56,53,55,50,93,44,91,45,56,49,46,55,50,53,56,48,49,44,51,56,46,52,54,54,54,50,93,44,91,45,56,49,46,55,53,48,53,52,55,44,51,56,46,53,57,49,48,49,52,93,44,91,45,56,49,46,54,57,54,51,52,56,44,51,56,46,54,50,54,52,50,55,93,44,91,45,56,49,46,55,55,50,56,52,51,44,51,56,46,54,56,48,56,52,51,93,44,91,45,56,49,46,57,53,53,55,57,49,44,51,56,46,54,53,55,51,53,53,93,44,91,45,56,50,46,48,54,52,53,54,50,44,51,56,46,54,48,55,57,56,53,93,44,91,45,56,50,46,48,53,53,49,50,55,44,51,56,46,52,55,52,53,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,83,117,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,50,57,56,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,57,54,54,57,48,54,44,52,49,46,48,57,52,52,49,93,44,91,45,55,52,46,55,54,57,52,50,53,44,52,48,46,57,49,48,57,51,52,93,44,91,45,55,52,46,54,52,48,54,52,51,44,52,48,46,57,54,53,51,51,56,93,44,91,45,55,52,46,53,48,51,50,49,50,44,52,49,46,48,56,53,56,55,51,93,44,91,45,55,52,46,51,54,55,53,49,44,52,49,46,50,48,51,50,52,49,93,44,91,45,55,52,46,54,57,52,57,49,52,44,52,49,46,51,53,55,52,50,51,93,44,91,45,55,52,46,56,51,48,48,53,55,44,52,49,46,50,56,55,50,93,44,91,45,55,52,46,56,56,50,49,51,57,44,52,49,46,49,56,48,56,51,54,93,44,91,45,55,52,46,57,57,49,55,49,56,44,52,49,46,48,57,50,50,56,52,93,44,91,45,55,52,46,57,54,54,57,48,54,44,52,49,46,48,57,52,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,101,99,97,116,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,56,49,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,51,56,56,50,53,44,52,48,46,48,48,50,49,49,54,93,44,91,45,49,48,48,46,55,52,48,56,55,51,44,51,57,46,53,54,56,48,52,51,93,44,91,45,49,48,48,46,55,50,48,50,49,51,44,51,57,46,53,54,56,48,51,52,93,44,91,45,49,48,48,46,49,56,48,51,53,49,44,51,57,46,53,54,54,56,57,93,44,91,45,49,48,48,46,49,55,55,55,57,52,44,52,48,46,48,48,49,54,48,50,93,44,91,45,49,48,48,46,49,57,51,53,57,57,44,52,48,46,48,48,49,54,54,51,93,44,91,45,49,48,48,46,55,51,56,56,50,53,44,52,48,46,48,48,50,49,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,52,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,55,57,49,52,57,55,44,51,56,46,50,48,53,49,51,93,44,91,45,56,54,46,55,54,55,51,53,50,44,51,56,46,48,53,54,57,50,52,93,44,91,45,56,54,46,56,49,52,55,52,52,44,51,55,46,57,57,56,55,48,52,93,44,91,45,56,54,46,54,53,53,50,55,50,44,51,55,46,56,52,50,53,50,49,93,44,91,45,56,54,46,53,48,55,48,56,57,44,51,55,46,57,50,57,57,49,55,93,44,91,45,56,54,46,52,57,48,56,53,52,44,51,56,46,48,52,53,55,51,53,93,44,91,45,56,54,46,52,54,49,48,50,50,44,51,56,46,49,50,49,48,56,55,93,44,91,45,56,54,46,54,55,57,53,49,49,44,51,56,46,50,54,51,48,56,54,93,44,91,45,56,54,46,55,57,49,52,57,55,44,51,56,46,50,48,53,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,53,54,44,34,98,101,100,115,34,58,49,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,52,53,54,52,53,44,51,52,46,53,56,51,50,51,52,93,44,91,45,56,57,46,50,52,54,49,51,51,44,51,52,46,52,57,53,54,51,51,93,44,91,45,56,57,46,50,52,54,51,51,57,44,51,52,46,51,55,57,51,52,52,93,44,91,45,56,56,46,56,50,52,57,54,54,44,51,52,46,51,54,52,55,53,57,93,44,91,45,56,56,46,55,51,54,52,54,53,44,51,52,46,53,48,56,57,49,93,44,91,45,56,56,46,55,51,53,52,52,44,51,52,46,53,57,54,52,56,51,93,44,91,45,56,57,46,48,56,56,52,56,56,44,51,52,46,53,57,56,50,52,55,93,44,91,45,56,57,46,50,52,53,54,52,53,44,51,52,46,53,56,51,50,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,50,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,57,56,53,53,44,52,50,46,57,57,56,53,53,57,93,44,91,45,57,57,46,50,53,52,52,53,53,44,52,50,46,57,57,56,48,55,52,93,44,91,45,57,57,46,50,53,55,48,51,57,44,52,50,46,56,48,52,50,57,54,93,44,91,45,57,56,46,57,53,52,54,51,52,44,52,50,46,56,57,52,48,55,55,93,44,91,45,57,56,46,55,49,48,48,52,56,44,52,50,46,56,48,51,52,56,93,44,91,45,57,56,46,51,48,53,49,52,57,44,52,50,46,55,54,49,50,48,55,93,44,91,45,57,56,46,51,48,57,55,55,49,44,52,50,46,56,56,50,54,48,53,93,44,91,45,57,56,46,52,57,56,53,53,44,52,50,46,57,57,56,53,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,105,108,108,101,32,76,97,99,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,50,56,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,49,48,51,54,50,44,52,54,46,49,53,54,53,56,53,93,44,91,45,57,51,46,56,49,48,51,50,49,44,52,53,46,57,56,51,48,56,93,44,91,45,57,51,46,55,54,51,57,52,56,44,52,53,46,56,50,50,49,52,51,93,44,91,45,57,51,46,55,53,57,52,51,53,44,52,53,46,53,53,57,54,52,54,93,44,91,45,57,51,46,53,49,48,55,48,52,44,52,53,46,53,53,56,55,55,50,93,44,91,45,57,51,46,53,49,51,54,56,51,44,52,53,46,55,51,52,51,49,56,93,44,91,45,57,51,46,53,49,56,48,56,44,52,53,46,57,56,49,55,56,57,93,44,91,45,57,51,46,52,51,50,52,57,50,44,52,53,46,57,56,49,51,57,56,93,44,91,45,57,51,46,52,51,49,56,51,49,44,52,54,46,49,53,51,57,57,49,93,44,91,45,57,51,46,52,51,48,54,52,56,44,52,54,46,50,52,54,52,49,50,93,44,91,45,57,51,46,55,57,54,50,56,49,44,52,54,46,50,52,51,49,57,57,93,44,91,45,57,51,46,56,49,48,51,54,50,44,52,54,46,49,53,54,53,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,87,97,108,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,50,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,49,56,48,51,54,44,52,56,46,53,52,51,55,55,51,93,44,91,45,57,56,46,50,57,50,49,56,52,44,52,56,46,49,57,53,49,55,55,93,44,91,45,57,55,46,57,48,51,51,49,51,44,52,56,46,49,57,52,56,52,53,93,44,91,45,57,55,46,49,52,49,50,50,49,44,52,56,46,49,57,51,55,49,50,93,44,91,45,57,55,46,49,49,54,53,55,44,52,56,46,50,55,57,54,54,49,93,44,91,45,57,55,46,49,54,49,51,57,51,44,52,56,46,53,52,50,51,52,56,93,44,91,45,57,55,46,57,50,55,48,54,57,44,52,56,46,53,52,51,49,50,52,93,44,91,45,57,56,46,51,49,56,48,51,54,44,52,56,46,53,52,51,55,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,55,54,54,51,57,44,51,57,46,55,55,48,57,54,93,44,91,45,56,50,46,48,50,52,50,49,57,44,51,57,46,55,50,52,54,56,54,93,44,91,45,56,50,46,48,52,55,53,50,56,44,51,57,46,53,53,48,56,50,53,93,44,91,45,56,50,46,48,53,53,55,55,57,44,51,57,46,52,54,48,48,53,51,93,44,91,45,56,49,46,56,52,52,56,54,51,44,51,57,46,52,53,48,50,49,54,93,44,91,45,56,49,46,55,48,56,53,50,55,44,51,57,46,52,56,48,55,55,53,93,44,91,45,56,49,46,54,56,56,56,56,52,44,51,57,46,53,57,48,53,49,49,93,44,91,45,56,49,46,53,56,56,49,56,53,44,51,57,46,53,56,54,57,55,51,93,44,91,45,56,49,46,54,57,55,52,52,50,44,51,57,46,55,53,53,53,55,50,93,44,91,45,56,50,46,48,55,54,54,51,57,44,51,57,46,55,55,48,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,80,111,114,116,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,54,52,52,44,34,98,101,100,115,34,58,51,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,57,49,54,57,52,44,52,49,46,51,52,56,50,55,50,93,44,91,45,56,49,46,51,57,51,50,52,57,44,52,48,46,57,56,56,53,51,49,93,44,91,45,56,49,46,48,56,54,51,49,50,44,52,48,46,57,56,56,48,51,49,93,44,91,45,56,49,46,48,48,49,54,57,53,44,52,48,46,57,56,55,55,56,51,93,44,91,45,56,49,46,48,48,50,50,57,44,52,49,46,49,51,52,49,56,57,93,44,91,45,56,49,46,48,48,51,51,49,57,44,52,49,46,51,52,55,56,54,93,44,91,45,56,49,46,51,57,49,54,57,52,44,52,49,46,51,52,56,50,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,85,105,110,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,48,57,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,48,52,54,55,54,54,44,52,49,46,50,53,49,54,50,55,93,44,91,45,49,49,49,46,48,52,54,56,49,53,44,52,48,46,57,57,55,56,55,53,93,44,91,45,49,49,48,46,48,52,56,52,56,51,44,52,48,46,57,57,55,50,57,53,93,44,91,45,49,49,48,46,48,52,56,44,52,49,46,53,55,56,48,49,53,93,44,91,45,49,49,49,46,48,52,53,56,51,55,44,52,49,46,53,55,57,56,52,53,93,44,91,45,49,49,49,46,48,52,54,55,54,54,44,52,49,46,50,53,49,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,72,117,109,98,111,108,100,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,48,52,44,34,98,101,100,115,34,58,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,51,48,57,53,57,56,44,52,48,46,57,54,48,51,55,56,93,44,91,45,49,49,56,46,55,56,54,55,48,53,44,52,48,46,57,54,48,56,53,93,44,91,45,49,49,56,46,55,56,54,55,51,56,44,52,48,46,56,53,53,57,50,57,93,44,91,45,49,49,55,46,54,52,52,50,50,44,52,48,46,56,53,55,56,50,52,93,44,91,45,49,49,55,46,54,52,52,51,57,57,44,52,48,46,54,56,52,51,52,51,93,44,91,45,49,49,55,46,51,48,57,52,52,49,44,52,48,46,54,56,51,53,51,55,93,44,91,45,49,49,55,46,51,48,48,53,57,55,44,52,48,46,53,50,54,49,51,54,93,44,91,45,49,49,55,46,50,52,54,55,56,56,44,52,48,46,54,52,50,52,52,53,93,44,91,45,49,49,55,46,48,49,56,54,54,52,44,52,48,46,54,52,51,48,51,53,93,44,91,45,49,49,55,46,48,49,56,52,49,57,44,52,49,46,48,48,48,50,53,52,93,44,91,45,49,49,55,46,48,49,56,50,48,52,44,52,49,46,57,57,57,55,49,53,93,44,91,45,49,49,55,46,48,50,54,50,44,52,50,46,48,48,48,49,57,53,93,44,91,45,49,49,56,46,49,57,55,51,55,49,44,52,49,46,57,57,55,51,52,52,93,44,91,45,49,49,57,46,51,50,52,49,56,52,44,52,49,46,57,57,51,57,50,51,93,44,91,45,49,49,57,46,51,50,57,55,57,49,44,52,48,46,57,54,48,51,57,52,93,44,91,45,49,49,57,46,51,48,57,53,57,56,44,52,48,46,57,54,48,51,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,55,34,44,34,78,65,77,69,34,58,34,74,105,109,32,72,111,103,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,53,52,54,54,57,44,50,55,46,50,54,57,51,57,55,93,44,91,45,57,56,46,57,53,52,50,51,44,50,54,46,55,56,53,54,57,52,93,44,91,45,57,56,46,52,50,50,54,49,54,44,50,54,46,55,56,51,53,51,53,93,44,91,45,57,56,46,52,49,55,56,56,51,44,50,55,46,48,53,53,50,56,53,93,44,91,45,57,56,46,52,54,54,53,52,50,44,50,55,46,48,53,52,55,49,49,93,44,91,45,57,56,46,53,50,51,50,56,52,44,50,55,46,50,54,53,49,53,93,44,91,45,57,56,46,53,53,50,54,49,55,44,50,55,46,51,53,57,49,48,49,93,44,91,45,57,56,46,55,57,56,51,50,51,44,50,55,46,51,53,52,48,50,57,93,44,91,45,57,56,46,55,57,56,48,56,55,44,50,55,46,50,54,56,48,49,50,93,44,91,45,57,56,46,57,53,52,54,54,57,44,50,55,46,50,54,57,51,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,101,121,101,110,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,54,53,55,49,44,51,57,46,48,52,55,48,51,56,93,44,91,45,49,48,51,46,49,54,51,48,50,53,44,51,57,46,48,51,55,54,49,93,44,91,45,49,48,51,46,49,55,50,57,52,51,44,51,56,46,54,49,50,52,53,93,44,91,45,49,48,50,46,48,52,53,48,56,50,44,51,56,46,54,49,53,49,55,50,93,44,91,45,49,48,50,46,48,52,53,50,49,50,44,51,56,46,54,57,55,53,54,55,93,44,91,45,49,48,50,46,48,52,54,53,55,49,44,51,57,46,48,52,55,48,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,108,97,99,107,97,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,55,56,56,44,34,98,101,100,115,34,58,54,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,55,52,51,55,50,49,44,52,53,46,52,51,51,50,57,52,93,44,91,45,49,50,50,46,55,52,51,55,52,49,44,52,53,46,51,51,50,48,54,55,93,44,91,45,49,50,50,46,56,54,55,56,57,49,44,52,53,46,51,49,55,51,52,53,93,44,91,45,49,50,50,46,56,52,57,57,50,53,44,52,53,46,50,53,57,54,57,55,93,44,91,45,49,50,50,46,55,52,57,55,57,51,44,52,53,46,49,57,53,50,52,50,93,44,91,45,49,50,50,46,55,56,56,53,53,52,44,52,53,46,49,51,48,49,55,54,93,44,91,45,49,50,50,46,53,57,53,53,50,51,44,52,53,46,48,49,57,54,55,57,93,44,91,45,49,50,50,46,53,48,56,49,48,54,44,52,52,46,57,49,57,53,57,57,93,44,91,45,49,50,50,46,52,48,49,48,50,49,44,52,52,46,56,56,53,55,50,93,44,91,45,49,50,49,46,55,51,52,50,50,51,44,52,52,46,56,56,53,55,50,93,44,91,45,49,50,49,46,56,48,53,54,54,55,44,52,53,46,48,48,54,49,50,52,93,44,91,45,49,50,49,46,54,53,50,48,49,56,44,52,53,46,48,56,54,55,48,54,93,44,91,45,49,50,49,46,55,52,56,52,56,53,44,52,53,46,50,48,52,52,52,93,44,91,45,49,50,49,46,54,57,54,52,55,57,44,52,53,46,50,53,55,57,50,93,44,91,45,49,50,49,46,55,48,48,52,55,51,44,52,53,46,51,55,56,53,51,49,93,44,91,45,49,50,49,46,56,49,57,53,56,55,44,52,53,46,52,54,49,54,55,53,93,44,91,45,49,50,50,46,54,52,49,53,56,44,52,53,46,52,54,49,52,56,50,93,44,91,45,49,50,50,46,55,52,51,55,50,49,44,52,53,46,52,51,51,50,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,54,51,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,53,52,53,54,52,44,51,52,46,55,50,56,57,54,50,93,44,91,45,57,52,46,52,54,49,49,52,57,44,51,52,46,53,48,55,52,53,55,93,44,91,45,57,52,46,52,55,48,51,51,49,44,51,52,46,49,57,48,49,56,51,93,44,91,45,57,52,46,50,52,51,55,51,57,44,51,52,46,49,57,50,53,48,49,93,44,91,45,57,52,46,50,53,52,54,54,56,44,51,52,46,51,53,53,52,56,49,93,44,91,45,57,51,46,57,51,53,51,55,49,44,51,52,46,51,53,48,48,57,55,93,44,91,45,57,51,46,57,51,48,53,48,57,44,51,52,46,54,54,53,54,48,56,93,44,91,45,57,52,46,48,49,56,49,54,56,44,51,52,46,54,57,50,52,54,57,93,44,91,45,57,52,46,51,49,55,54,53,57,44,51,52,46,54,57,55,52,48,56,93,44,91,45,57,52,46,52,53,52,53,54,52,44,51,52,46,55,50,56,57,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,56,48,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,44,91,45,56,52,46,49,50,50,51,52,55,44,51,50,46,53,48,53,57,50,49,93,44,91,45,56,52,46,50,53,52,54,49,51,44,51,50,46,51,55,50,48,53,51,93,44,91,45,56,52,46,49,56,49,54,53,55,44,51,50,46,50,50,57,55,48,51,93,44,91,45,56,52,46,48,50,55,54,44,51,50,46,49,55,49,49,54,53,93,44,91,45,56,51,46,57,53,56,56,49,55,44,51,50,46,50,53,50,49,48,53,93,44,91,45,56,51,46,56,52,56,51,55,57,44,51,50,46,50,57,48,57,55,93,44,91,45,56,51,46,56,52,54,54,55,54,44,51,50,46,52,54,56,53,49,52,93,44,91,45,56,52,46,48,49,56,49,52,55,44,51,50,46,53,48,54,52,48,54,93,44,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,93,93,44,91,91,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,44,91,45,56,52,46,48,48,56,52,57,44,51,50,46,53,50,49,55,54,57,93,44,91,45,56,52,46,48,48,51,51,54,51,44,51,50,46,53,50,57,57,50,55,93,44,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,50,54,48,51,49,44,52,48,46,55,51,54,56,56,53,93,44,91,45,56,55,46,53,50,54,51,54,54,44,52,48,46,52,57,49,50,51,55,93,44,91,45,56,55,46,53,50,54,53,56,57,44,52,48,46,52,55,54,56,55,54,93,44,91,45,56,55,46,48,57,51,54,55,54,44,52,48,46,52,55,53,55,52,53,93,44,91,45,56,55,46,48,57,53,51,53,55,44,52,48,46,53,54,50,56,57,53,93,44,91,45,56,55,46,48,57,56,51,57,44,52,48,46,55,51,54,53,52,49,93,44,91,45,56,55,46,50,54,55,50,57,56,44,52,48,46,55,51,54,53,56,50,93,44,91,45,56,55,46,53,50,54,48,51,49,44,52,48,46,55,51,54,56,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,48,55,55,53,51,44,51,54,46,49,53,54,50,57,51,93,44,91,45,56,52,46,55,50,48,55,50,55,44,51,53,46,57,57,52,57,49,52,93,44,91,45,56,52,46,54,56,48,54,51,51,44,51,53,46,57,48,56,52,53,52,93,44,91,45,56,52,46,52,52,54,48,53,52,44,51,53,46,57,56,53,57,56,52,93,44,91,45,56,52,46,51,52,49,56,49,50,44,51,54,46,48,52,56,57,55,55,93,44,91,45,56,52,46,52,52,49,48,51,52,44,51,54,46,49,54,51,52,55,56,93,44,91,45,56,52,46,53,54,56,55,52,49,44,51,54,46,50,51,55,48,55,55,93,44,91,45,56,52,46,55,48,48,55,56,53,44,51,54,46,51,55,48,56,50,52,93,44,91,45,56,52,46,56,54,54,49,48,52,44,51,54,46,50,57,50,57,50,56,93,44,91,45,56,52,46,57,48,55,55,53,51,44,51,54,46,49,53,54,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,48,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,48,53,55,56,50,44,52,51,46,52,57,57,51,49,57,93,44,91,45,57,56,46,54,56,48,54,56,56,44,52,51,46,51,55,51,49,53,55,93,44,91,45,57,56,46,49,48,57,52,57,50,44,52,51,46,49,57,54,56,51,56,93,44,91,45,57,56,46,49,49,52,55,53,56,44,52,51,46,52,57,56,50,57,55,93,44,91,45,57,56,46,51,50,48,53,57,53,44,52,51,46,52,57,56,54,53,49,93,44,91,45,57,56,46,55,48,53,55,56,50,44,52,51,46,52,57,57,51,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,87,111,114,99,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,53,54,52,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,54,49,50,55,54,52,44,51,56,46,50,55,56,54,50,54,93,44,91,45,55,53,46,53,52,53,56,57,56,44,51,56,46,49,55,56,55,52,93,44,91,45,55,53,46,53,52,53,56,48,54,44,51,56,46,48,56,54,55,52,57,93,44,91,45,55,53,46,54,50,52,51,52,51,44,51,55,46,57,57,52,50,48,56,93,44,91,45,55,53,46,49,54,54,52,51,53,44,51,56,46,48,50,55,56,51,52,93,44,91,45,55,52,46,57,57,57,54,50,53,44,51,56,46,51,55,49,54,54,56,93,44,91,45,55,52,46,57,56,54,50,56,50,44,51,56,46,52,53,49,54,51,50,93,44,91,45,55,53,46,51,52,49,50,57,49,44,51,56,46,52,53,50,48,51,52,93,44,91,45,55,53,46,51,48,55,48,49,49,44,51,56,46,51,53,52,55,54,93,44,91,45,55,53,46,51,54,52,54,52,49,44,51,56,46,50,57,48,51,53,57,93,44,91,45,55,53,46,54,49,50,55,54,52,44,51,56,46,50,55,56,54,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,87,97,98,97,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,53,52,54,55,53,44,51,56,46,53,55,48,50,51,93,44,91,45,56,55,46,57,52,51,48,51,52,44,51,56,46,52,52,57,50,49,54,93,44,91,45,56,55,46,57,57,48,54,50,56,44,51,56,46,50,53,57,54,50,57,93,44,91,45,56,55,46,57,56,55,57,49,49,44,51,56,46,50,53,54,57,53,55,93,44,91,45,56,55,46,56,53,49,49,51,44,51,56,46,50,55,53,49,50,93,44,91,45,56,55,46,55,52,51,54,57,49,44,51,56,46,52,49,52,51,56,55,93,44,91,45,56,55,46,54,53,49,53,50,57,44,51,56,46,53,54,56,49,54,54,93,44,91,45,56,55,46,57,49,50,50,56,54,44,51,56,46,53,55,48,49,48,52,93,44,91,45,56,55,46,57,53,52,54,55,53,44,51,56,46,53,55,48,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,117,110,116,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,55,56,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,52,51,56,52,49,44,52,49,46,48,48,50,51,48,53,93,44,91,45,56,53,46,54,51,56,53,56,55,44,52,48,46,54,53,51,49,50,57,93,44,91,45,56,53,46,52,52,56,56,50,53,44,52,48,46,54,53,51,54,48,55,93,44,91,45,56,53,46,51,51,52,54,54,55,44,52,48,46,54,53,52,52,49,51,93,44,91,45,56,53,46,51,51,54,48,51,44,52,48,46,57,49,55,48,56,50,93,44,91,45,56,53,46,51,51,53,54,52,51,44,52,49,46,48,48,53,50,53,93,44,91,45,56,53,46,54,52,51,56,52,49,44,52,49,46,48,48,50,51,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,57,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,53,49,55,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,56,48,53,51,57,44,51,56,46,52,55,51,48,51,57,93,44,91,45,56,52,46,55,52,48,53,57,52,44,51,56,46,51,53,50,52,49,53,93,44,91,45,56,52,46,55,50,53,49,54,56,44,51,56,46,49,57,53,52,50,54,93,44,91,45,56,52,46,54,50,53,48,55,57,44,51,56,46,49,49,54,51,57,55,93,44,91,45,56,52,46,52,48,49,56,52,55,44,51,56,46,50,48,55,56,56,57,93,44,91,45,56,52,46,52,52,50,54,54,49,44,51,56,46,50,56,51,50,51,54,93,44,91,45,56,52,46,52,53,57,57,48,54,44,51,56,46,51,55,56,57,57,53,93,44,91,45,56,52,46,53,53,55,51,55,53,44,51,56,46,52,57,50,57,49,55,93,44,91,45,56,52,46,53,56,48,53,51,57,44,51,56,46,52,55,51,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,68,101,99,97,116,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,44,91,45,57,52,46,48,49,52,56,48,51,44,52,48,46,56,57,55,48,51,49,93,44,91,45,57,52,46,48,49,53,52,57,50,44,52,48,46,53,55,51,57,49,52,93,44,91,45,57,51,46,55,55,52,51,52,52,44,52,48,46,53,55,55,53,52,56,93,44,91,45,57,51,46,53,53,54,56,57,57,44,52,48,46,53,56,48,50,51,53,93,44,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,87,97,98,97,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,51,49,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,52,54,52,51,54,44,52,48,46,57,57,57,49,57,53,93,44,91,45,56,53,46,57,51,57,53,50,53,44,52,48,46,54,53,48,57,57,49,93,44,91,45,56,53,46,56,54,52,55,57,49,44,52,48,46,54,53,49,54,57,51,93,44,91,45,56,53,46,54,51,56,53,56,55,44,52,48,46,54,53,51,49,50,57,93,44,91,45,56,53,46,54,52,51,56,52,49,44,52,49,46,48,48,50,51,48,53,93,44,91,45,56,53,46,54,56,52,49,56,49,44,52,49,46,48,52,54,55,49,54,93,44,91,45,56,53,46,57,52,53,53,54,49,44,52,49,46,48,52,50,56,55,54,93,44,91,45,56,53,46,57,52,54,52,51,54,44,52,48,46,57,57,57,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,48,48,49,54,44,34,98,101,100,115,34,58,49,54,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,57,50,48,57,52,44,52,49,46,50,54,52,50,48,57,93,44,91,45,56,53,46,51,48,55,55,56,49,44,52,49,46,50,54,52,49,53,56,93,44,91,45,56,53,46,51,51,53,54,52,51,44,52,49,46,48,48,53,50,53,93,44,91,45,56,53,46,51,51,54,48,51,44,52,48,46,57,49,55,48,56,50,93,44,91,45,56,53,46,48,55,51,56,54,49,44,52,48,46,57,49,55,56,50,51,93,44,91,45,56,52,46,56,48,50,57,50,50,44,52,48,46,57,50,50,53,54,56,93,44,91,45,56,52,46,56,48,51,50,53,49,44,52,48,46,57,56,57,51,57,52,93,44,91,45,56,52,46,56,48,51,53,52,52,44,52,49,46,50,53,50,53,54,50,93,44,91,45,56,52,46,56,48,51,53,56,57,44,52,49,46,50,55,49,50,55,51,93,44,91,45,56,53,46,49,57,50,48,57,52,44,52,49,46,50,54,52,50,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,53,57,53,44,34,98,101,100,115,34,58,49,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,53,57,52,53,49,44,52,49,46,52,55,57,49,53,52,93,44,91,45,56,54,46,52,54,55,49,48,56,44,52,49,46,52,55,54,52,53,57,93,44,91,45,56,54,46,52,54,54,54,48,51,44,52,49,46,52,51,50,57,54,56,93,44,91,45,56,54,46,52,54,55,48,52,54,44,52,49,46,49,55,49,52,52,50,93,44,91,45,56,54,46,48,55,55,53,53,49,44,52,49,46,49,55,50,56,54,56,93,44,91,45,56,54,46,48,53,57,50,51,44,52,49,46,52,51,53,56,49,50,93,44,91,45,56,54,46,48,53,57,52,53,49,44,52,49,46,52,55,57,49,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,84,104,111,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,56,52,54,49,50,57,44,52,50,46,48,56,56,49,54,54,93,44,91,45,49,48,48,46,56,52,50,52,53,57,44,52,49,46,55,52,48,52,48,52,93,44,91,45,49,48,48,46,55,49,49,55,49,49,44,52,49,46,55,51,57,55,54,49,93,44,91,45,49,48,48,46,50,54,53,52,55,52,44,52,49,46,55,51,57,56,53,54,93,44,91,45,49,48,48,46,50,54,55,54,50,50,44,52,50,46,48,56,54,49,52,55,93,44,91,45,49,48,48,46,56,52,54,49,50,57,44,52,50,46,48,56,56,49,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,83,105,111,117,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,49,51,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,50,53,54,57,49,44,52,54,46,50,56,52,52,49,52,93,44,91,45,49,48,49,46,51,48,51,53,49,52,44,52,54,46,49,48,53,53,48,51,93,44,91,45,49,48,49,46,52,57,54,52,50,51,44,52,54,46,48,50,51,55,50,56,93,44,91,45,49,48,49,46,54,55,55,54,49,50,44,52,54,46,48,49,50,56,55,49,93,44,91,45,49,48,49,46,56,54,49,56,50,44,52,54,46,48,54,52,55,57,52,93,44,91,45,49,48,49,46,57,57,56,51,50,55,44,52,54,46,48,53,51,50,55,52,93,44,91,45,49,48,49,46,57,57,56,55,51,51,44,52,53,46,57,52,52,54,53,51,93,44,91,45,49,48,48,46,53,49,49,57,52,57,44,52,53,46,57,52,51,55,49,50,93,44,91,45,49,48,48,46,54,50,57,49,52,53,44,52,54,46,49,52,53,54,48,56,93,44,91,45,49,48,48,46,53,53,56,53,52,57,44,52,54,46,50,52,57,57,57,51,93,44,91,45,49,48,48,46,53,57,48,49,57,57,44,52,54,46,52,50,55,56,57,52,93,44,91,45,49,48,48,46,56,49,52,56,55,51,44,52,54,46,51,56,52,55,48,49,93,44,91,45,49,48,48,46,57,49,56,57,53,44,52,54,46,51,57,52,57,56,51,93,44,91,45,49,48,49,46,48,50,53,54,57,49,44,52,54,46,50,56,52,52,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,68,105,109,109,105,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,48,57,48,50,49,44,50,56,46,54,52,48,53,54,54,93,44,91,45,49,48,48,46,49,49,52,51,51,54,44,50,56,46,54,52,56,49,50,50,93,44,91,45,49,48,48,46,49,49,51,55,49,57,44,50,56,46,49,57,55,56,49,57,93,44,91,45,57,57,46,51,57,52,49,55,55,44,50,56,46,50,48,52,54,50,55,93,44,91,45,57,57,46,51,57,53,55,51,54,44,50,56,46,54,52,48,55,56,52,93,44,91,45,57,57,46,52,48,57,48,50,49,44,50,56,46,54,52,48,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,70,105,108,108,109,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,56,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,51,48,52,50,52,44,52,51,46,56,52,54,57,51,53,93,44,91,45,57,50,46,48,55,57,50,57,50,44,52,51,46,56,52,55,48,56,93,44,91,45,57,50,46,52,52,56,57,54,53,44,52,51,46,56,51,52,49,48,53,93,44,91,45,57,50,46,52,52,56,57,52,56,44,52,51,46,53,48,48,52,53,57,93,44,91,45,57,50,46,48,55,57,56,48,50,44,52,51,46,53,48,48,54,50,49,93,44,91,45,57,49,46,55,51,48,50,49,55,44,52,51,46,53,48,48,56,48,54,93,44,91,45,57,49,46,55,51,48,52,50,52,44,52,51,46,56,52,54,57,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,51,50,54,44,34,98,101,100,115,34,58,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,57,56,50,49,53,44,51,52,46,56,50,48,55,52,54,93,44,91,45,56,49,46,52,55,56,52,53,52,44,51,52,46,56,50,49,53,48,57,93,44,91,45,56,49,46,52,50,50,55,48,54,44,51,52,46,53,55,50,48,50,57,93,44,91,45,56,48,46,56,55,55,52,57,49,44,51,52,46,53,52,51,49,52,54,93,44,91,45,56,48,46,56,54,48,50,55,52,44,51,52,46,54,57,53,56,52,55,93,44,91,45,56,48,46,56,57,56,50,49,53,44,51,52,46,56,50,48,55,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,97,99,32,113,117,105,32,80,97,114,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,55,51,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,53,50,57,52,55,44,52,53,46,50,54,56,57,50,53,93,44,91,45,57,54,46,52,53,50,48,51,53,44,52,52,46,57,55,55,54,53,93,44,91,45,57,54,46,52,53,49,52,54,50,44,52,52,46,56,48,53,53,55,93,44,91,45,57,53,46,56,52,57,48,48,57,44,52,52,46,56,48,53,51,52,55,93,44,91,45,57,53,46,56,52,55,52,53,50,44,52,52,46,56,57,49,55,57,57,93,44,91,45,57,53,46,55,51,54,54,57,54,44,52,52,46,57,51,54,48,52,93,44,91,45,57,54,46,48,51,54,54,57,56,44,52,53,46,49,53,50,50,48,54,93,44,91,45,57,54,46,49,48,51,54,49,52,44,52,53,46,49,55,54,54,55,53,93,44,91,45,57,54,46,50,56,51,49,57,53,44,52,53,46,50,52,54,51,57,49,93,44,91,45,57,54,46,52,53,50,57,52,55,44,52,53,46,50,54,56,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,97,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,51,51,54,44,34,98,101,100,115,34,58,49,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,49,53,57,49,56,52,44,52,49,46,57,57,56,51,56,50,93,44,91,45,49,49,50,46,48,51,48,52,56,51,44,52,49,46,56,49,48,48,52,55,93,44,91,45,49,49,50,46,48,53,49,55,51,55,44,52,49,46,54,57,57,53,53,50,93,44,91,45,49,49,49,46,57,57,54,54,48,54,44,52,49,46,53,53,55,53,55,50,93,44,91,45,49,49,49,46,57,49,54,53,51,52,44,52,49,46,53,51,56,53,53,52,93,44,91,45,49,49,49,46,56,56,53,52,52,51,44,52,49,46,52,50,54,51,55,52,93,44,91,45,49,49,49,46,55,50,54,49,56,49,44,52,49,46,51,55,53,57,56,54,93,44,91,45,49,49,49,46,54,54,54,53,55,54,44,52,49,46,52,50,56,56,51,93,44,91,45,49,49,49,46,53,49,48,56,51,57,44,52,49,46,52,50,51,49,93,44,91,45,49,49,49,46,52,52,50,57,52,57,44,52,49,46,53,51,49,51,54,53,93,44,91,45,49,49,49,46,52,50,54,56,53,53,44,52,49,46,54,55,55,56,54,52,93,44,91,45,49,49,49,46,53,48,55,56,48,54,44,52,49,46,57,57,57,53,53,50,93,44,91,45,49,49,50,46,49,48,57,52,52,52,44,52,49,46,57,57,55,55,57,52,93,44,91,45,49,49,50,46,49,53,57,49,56,52,44,52,49,46,57,57,56,51,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,80,105,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,51,50,48,52,51,44,52,52,46,55,49,52,51,52,53,93,44,91,45,57,50,46,54,50,50,53,51,55,44,52,52,46,54,49,54,48,53,52,93,44,91,45,57,50,46,51,49,54,49,54,57,44,52,52,46,53,52,49,48,48,57,93,44,91,45,57,50,46,49,51,53,51,44,52,52,46,53,51,57,53,56,93,44,91,45,57,50,46,49,51,53,50,48,50,44,52,52,46,54,56,52,51,55,52,93,44,91,45,57,50,46,49,51,54,51,52,56,44,52,52,46,56,53,55,56,52,56,93,44,91,45,57,50,46,55,54,57,53,48,49,44,52,52,46,56,54,50,48,48,49,93,44,91,45,57,50,46,56,48,50,48,49,55,44,52,52,46,55,52,53,54,55,51,93,44,91,45,57,50,46,55,51,50,48,52,51,44,52,52,46,55,49,52,51,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,56,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,51,49,54,57,56,44,51,49,46,48,49,48,55,49,52,93,44,91,45,56,50,46,52,49,53,54,48,51,44,51,49,46,48,49,51,53,57,93,44,91,45,56,50,46,52,50,48,52,52,50,44,51,48,46,55,57,53,50,50,57,93,44,91,45,56,50,46,49,52,57,56,55,50,44,51,48,46,55,56,52,51,51,54,93,44,91,45,56,50,46,50,49,52,54,55,55,44,51,48,46,53,54,56,53,53,54,93,44,91,45,56,50,46,50,49,48,55,51,51,44,51,48,46,52,50,53,54,52,93,44,91,45,56,50,46,49,55,48,49,57,55,44,51,48,46,51,53,56,57,55,50,93,44,91,45,56,50,46,48,52,57,57,53,56,44,51,48,46,51,54,50,52,55,50,93,44,91,45,56,50,46,48,48,53,56,49,44,51,48,46,53,54,53,51,53,56,93,44,91,45,56,50,46,48,51,57,55,57,53,44,51,48,46,55,52,55,50,57,55,93,44,91,45,56,49,46,57,48,52,56,53,53,44,51,48,46,56,50,56,51,52,93,44,91,45,56,49,46,57,51,54,48,48,54,44,51,49,46,48,52,55,57,57,51,93,44,91,45,56,50,46,48,54,48,56,55,44,51,49,46,48,55,53,56,48,57,93,44,91,45,56,50,46,49,51,49,54,57,56,44,51,49,46,48,49,48,55,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,50,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,52,54,56,55,49,44,51,52,46,48,57,54,52,49,50,93,44,91,45,56,53,46,52,50,49,56,53,50,44,51,52,46,48,56,48,56,50,50,93,44,91,45,56,53,46,51,57,56,56,51,55,44,51,51,46,57,54,52,49,50,57,93,44,91,45,56,53,46,51,56,54,53,56,49,44,51,51,46,57,48,49,55,49,57,93,44,91,45,56,53,46,48,53,48,51,49,44,51,51,46,57,48,52,52,56,56,93,44,91,45,56,52,46,57,55,56,54,56,51,44,51,51,46,57,53,49,51,57,51,93,44,91,45,56,52,46,57,50,50,55,52,50,44,51,52,46,48,56,50,52,57,55,93,44,91,45,56,53,46,48,52,54,56,55,49,44,51,52,46,48,57,54,52,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,99,76,101,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,50,49,57,44,34,98,101,100,115,34,58,51,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,54,57,51,57,55,44,52,48,46,53,57,52,51,49,56,93,44,91,45,56,57,46,50,54,51,55,52,44,52,48,46,51,50,53,51,52,52,93,44,91,45,56,57,46,49,52,56,55,54,52,44,52,48,46,50,56,50,48,51,56,93,44,91,45,56,56,46,53,55,52,56,56,53,44,52,48,46,50,56,49,53,48,49,93,44,91,45,56,56,46,52,54,48,52,49,56,44,52,48,46,50,56,49,57,51,53,93,44,91,45,56,56,46,52,53,57,57,53,55,44,52,48,46,51,57,56,56,53,93,44,91,45,56,56,46,52,53,57,52,55,53,44,52,48,46,54,49,55,51,52,53,93,44,91,45,56,56,46,53,55,52,53,48,50,44,52,48,46,54,49,54,53,53,93,44,91,45,56,56,46,53,56,52,50,55,50,44,52,48,46,55,53,55,54,48,56,93,44,91,45,56,56,46,57,50,57,51,51,49,44,52,48,46,55,53,51,51,51,55,93,44,91,45,56,56,46,57,56,52,55,50,50,44,52,48,46,54,54,52,57,53,51,93,44,91,45,56,57,46,49,51,51,55,53,50,44,52,48,46,53,57,54,55,51,52,93,44,91,45,56,57,46,50,54,57,51,57,55,44,52,48,46,53,57,52,51,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,110,100,114,111,115,99,111,103,103,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,52,52,52,44,34,98,101,100,115,34,58,52,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,50,51,56,57,48,52,44,52,52,46,52,53,56,57,52,50,93,44,91,45,55,48,46,51,51,52,48,57,52,44,52,52,46,50,49,48,55,53,51,93,44,91,45,55,48,46,52,56,48,48,55,56,44,52,52,46,48,51,50,48,55,56,93,44,91,45,55,48,46,51,49,53,51,55,52,44,52,52,46,48,51,55,56,48,55,93,44,91,45,55,48,46,49,49,53,56,54,44,52,51,46,57,48,54,55,49,93,44,91,45,55,48,46,48,51,52,50,51,56,44,52,51,46,57,55,53,54,54,49,93,44,91,45,55,48,46,48,48,53,52,55,49,44,52,52,46,49,50,52,53,49,57,93,44,91,45,55,48,46,48,55,53,55,52,55,44,52,52,46,50,48,54,49,54,56,93,44,91,45,55,48,46,49,50,57,51,57,44,52,52,46,52,56,55,50,49,55,93,44,91,45,55,48,46,50,51,56,57,48,52,44,52,52,46,52,53,56,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,75,111,111,116,101,110,97,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,54,48,53,44,34,98,101,100,115,34,58,52,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,52,50,48,56,57,44,52,55,46,57,55,55,52,53,93,44,91,45,49,49,55,46,48,51,57,56,48,56,44,52,55,46,51,54,54,48,51,49,93,44,91,45,49,49,54,46,54,50,57,48,53,57,44,52,55,46,51,55,49,52,51,56,93,44,91,45,49,49,54,46,53,56,54,53,52,57,44,52,55,46,52,49,52,54,57,53,93,44,91,45,49,49,54,46,51,50,57,52,48,54,44,52,55,46,52,49,52,48,49,49,93,44,91,45,49,49,54,46,51,50,57,53,51,56,44,52,55,46,56,57,48,51,57,51,93,44,91,45,49,49,54,46,53,48,53,49,48,52,44,52,55,46,56,57,48,49,52,50,93,44,91,45,49,49,54,46,53,48,52,51,50,57,44,52,55,46,57,57,49,51,56,54,93,44,91,45,49,49,55,46,48,52,50,48,56,57,44,52,55,46,57,55,55,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,49,53,55,52,44,34,98,101,100,115,34,58,54,55,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,56,57,54,57,50,53,44,51,54,46,56,52,50,48,56,53,93,44,91,45,49,49,53,46,56,57,53,55,53,51,44,51,54,46,49,55,50,50,50,55,93,44,91,45,49,49,53,46,56,52,53,55,54,50,44,51,54,46,49,55,48,55,54,52,93,44,91,45,49,49,53,46,56,52,53,57,57,52,44,51,53,46,57,54,51,55,48,55,93,44,91,45,49,49,53,46,54,52,56,51,53,55,44,51,53,46,56,48,57,50,49,49,93,44,91,45,49,49,52,46,54,51,51,52,56,55,44,51,53,46,48,48,49,56,53,55,93,44,91,45,49,49,52,46,53,54,57,53,50,57,44,51,53,46,49,54,50,51,49,55,93,44,91,45,49,49,52,46,53,57,53,49,54,51,44,51,53,46,51,50,49,56,56,51,93,44,91,45,49,49,52,46,54,55,56,56,57,50,44,51,53,46,53,48,49,50,55,54,93,44,91,45,49,49,52,46,55,48,56,49,49,50,44,51,53,46,57,48,57,57,51,51,93,44,91,45,49,49,52,46,55,53,52,53,48,56,44,51,54,46,48,56,54,49,55,49,93,44,91,45,49,49,52,46,54,50,55,48,55,57,44,51,54,46,49,52,48,55,54,49,93,44,91,45,49,49,52,46,51,55,48,49,56,49,44,51,54,46,49,52,50,54,50,52,93,44,91,45,49,49,52,46,50,52,51,56,54,53,44,51,54,46,48,49,53,50,54,54,93,44,91,45,49,49,52,46,49,53,51,52,44,51,54,46,48,50,51,49,55,93,44,91,45,49,49,52,46,48,52,51,57,52,52,44,51,54,46,49,57,51,51,53,93,44,91,45,49,49,52,46,48,53,48,51,53,52,44,51,54,46,56,52,51,49,52,49,93,44,91,45,49,49,52,46,55,54,50,53,48,55,44,51,54,46,56,53,51,52,55,51,93,44,91,45,49,49,53,46,55,52,48,56,52,54,44,51,54,46,56,53,51,48,56,52,93,44,91,45,49,49,53,46,56,57,54,57,50,53,44,51,54,46,56,52,50,48,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,80,104,105,108,108,105,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,48,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,50,53,51,50,52,44,52,48,46,48,48,49,56,53,57,93,44,91,45,57,57,46,54,50,55,57,53,51,44,51,57,46,53,54,55,52,51,55,93,44,91,45,57,57,46,54,48,50,49,55,54,44,51,57,46,53,54,55,51,50,56,93,44,91,45,57,57,46,48,54,54,50,50,44,51,57,46,53,54,56,49,50,53,93,44,91,45,57,57,46,48,54,55,48,52,54,44,52,48,46,48,48,50,51,52,56,93,44,91,45,57,57,46,49,55,57,49,51,52,44,52,48,46,48,48,50,48,49,51,93,44,91,45,57,57,46,54,50,53,51,50,52,44,52,48,46,48,48,49,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,72,111,108,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,52,53,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,53,55,48,51,57,44,52,50,46,56,48,52,50,57,54,93,44,91,45,57,57,46,50,52,53,56,48,51,44,52,50,46,55,56,50,52,57,57,93,44,91,45,57,57,46,50,51,52,54,50,57,44,52,50,46,48,56,55,57,57,53,93,44,91,45,57,57,46,50,50,50,55,51,51,44,52,50,46,48,56,55,57,49,54,93,44,91,45,57,56,46,55,54,49,49,53,53,44,52,50,46,48,56,56,53,49,56,93,44,91,45,57,56,46,51,48,48,53,57,50,44,52,50,46,48,56,56,56,53,51,93,44,91,45,57,56,46,51,48,48,50,51,53,44,52,50,46,52,51,54,57,49,51,93,44,91,45,57,56,46,51,48,53,49,52,57,44,52,50,46,55,54,49,50,48,55,93,44,91,45,57,56,46,55,49,48,48,52,56,44,52,50,46,56,48,51,52,56,93,44,91,45,57,56,46,57,53,52,54,51,52,44,52,50,46,56,57,52,48,55,55,93,44,91,45,57,57,46,50,53,55,48,51,57,44,52,50,46,56,48,52,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,54,56,57,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,49,49,57,48,57,54,44,51,56,46,56,51,51,49,54,55,93,44,91,45,57,52,46,49,49,57,54,54,52,44,51,56,46,53,54,56,55,49,50,93,44,91,45,57,52,46,48,54,52,51,49,55,44,51,56,46,53,54,55,51,56,93,44,91,45,57,51,46,53,49,49,48,51,44,51,56,46,53,53,54,50,49,93,44,91,45,57,51,46,52,57,55,50,55,56,44,51,56,46,57,50,56,52,51,93,44,91,45,57,51,46,56,51,52,55,49,57,44,51,56,46,57,51,55,57,48,57,93,44,91,45,57,52,46,49,49,52,49,55,53,44,51,56,46,57,49,55,51,48,52,93,44,91,45,57,52,46,49,49,57,48,57,54,44,51,56,46,56,51,51,49,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,76,97,32,67,114,111,115,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,56,53,48,44,34,98,101,100,115,34,58,54,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,50,53,49,56,56,44,52,51,46,57,56,52,51,50,50,93,44,91,45,57,49,46,50,56,52,49,51,56,44,52,51,46,56,52,55,48,54,53,93,44,91,45,57,49,46,50,53,55,56,51,57,44,52,51,46,55,50,53,54,54,49,93,44,91,45,57,48,46,57,49,48,54,53,51,44,52,51,46,55,50,53,51,51,52,93,44,91,45,57,48,46,57,49,50,57,49,56,44,52,52,46,48,55,49,53,50,50,93,44,91,45,57,48,46,57,55,51,49,48,55,44,52,52,46,48,55,48,56,56,50,93,44,91,45,57,49,46,49,53,49,57,51,50,44,52,52,46,48,55,57,54,54,53,93,44,91,45,57,49,46,51,48,55,52,55,56,44,52,52,46,48,54,52,56,55,54,93,44,91,45,57,49,46,52,50,53,49,56,56,44,52,51,46,57,56,52,51,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,97,108,100,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,57,54,44,34,98,101,100,115,34,58,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,49,50,50,49,56,44,51,50,46,49,52,54,49,50,51,93,44,91,45,57,50,46,51,49,50,54,50,51,44,51,49,46,57,50,55,51,56,50,93,44,91,45,57,50,46,48,48,53,52,51,52,44,51,49,46,57,50,55,50,57,54,93,44,91,45,57,49,46,56,56,57,54,56,55,44,51,49,46,57,55,49,52,55,52,93,44,91,45,57,49,46,56,57,52,55,50,57,44,51,50,46,49,53,49,53,53,93,44,91,45,57,49,46,57,55,50,56,56,44,51,50,46,49,54,54,55,52,50,93,44,91,45,57,50,46,48,51,52,51,57,55,44,51,50,46,50,55,55,48,54,56,93,44,91,45,57,50,46,51,49,49,56,53,49,44,51,50,46,50,55,55,52,52,49,93,44,91,45,57,50,46,51,49,50,50,49,56,44,51,50,46,49,52,54,49,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,69,100,109,111,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,57,57,49,54,53,44,51,55,46,49,54,57,56,57,54,93,44,91,45,56,54,46,50,56,49,55,53,44,51,55,46,48,56,48,53,57,55,93,44,91,45,56,54,46,49,49,51,53,49,50,44,51,55,46,48,54,49,48,55,50,93,44,91,45,56,54,46,48,53,54,52,52,51,44,51,55,46,49,54,55,50,48,56,93,44,91,45,56,54,46,49,53,55,53,56,57,44,51,55,46,51,51,53,54,52,57,93,44,91,45,56,54,46,52,54,57,49,50,54,44,51,55,46,51,50,49,48,57,57,93,44,91,45,56,54,46,51,57,57,49,54,53,44,51,55,46,49,54,57,56,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,111,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,49,50,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,53,48,51,48,57,44,51,57,46,48,50,56,49,56,53,93,44,91,45,56,57,46,53,56,54,51,52,52,44,51,57,46,48,50,56,51,50,57,93,44,91,45,56,57,46,54,51,57,50,54,53,44,51,56,46,57,57,57,49,50,57,93,44,91,45,56,57,46,53,57,55,51,50,49,44,51,56,46,55,52,51,50,51,54,93,44,91,45,56,57,46,50,53,52,49,56,53,44,51,56,46,55,52,50,48,49,56,93,44,91,45,56,57,46,50,53,48,51,48,57,44,51,57,46,48,50,56,49,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,51,52,54,57,44,52,48,46,49,48,52,52,53,53,93,44,91,45,57,48,46,57,49,54,54,54,57,44,51,57,46,56,52,52,57,50,55,93,44,91,45,57,48,46,53,55,49,52,50,52,44,51,57,46,56,51,56,57,54,49,93,44,91,45,57,48,46,53,56,51,53,51,52,44,51,57,46,56,55,54,55,53,93,44,91,45,57,48,46,53,49,51,55,52,55,44,51,57,46,57,56,55,56,57,49,93,44,91,45,57,48,46,54,48,55,49,51,52,44,51,57,46,57,56,49,54,53,56,93,44,91,45,57,48,46,54,57,54,51,53,55,44,52,48,46,49,48,51,57,53,93,44,91,45,57,48,46,57,49,51,52,54,57,44,52,48,46,49,48,52,52,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,77,99,76,101,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,56,50,53,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,53,48,50,51,57,53,44,52,52,46,56,57,50,50,57,53,93,44,91,45,57,52,46,52,57,56,48,55,52,44,52,52,46,55,49,55,49,55,49,93,44,91,45,57,52,46,52,57,55,56,51,53,44,52,52,46,54,50,57,57,50,49,93,44,91,45,57,52,46,50,53,52,55,49,57,44,52,52,46,54,51,48,51,49,49,93,44,91,45,57,52,46,50,53,52,48,55,54,44,52,52,46,55,49,55,56,53,53,93,44,91,45,57,52,46,48,49,48,52,57,52,44,52,52,46,55,49,55,52,54,52,93,44,91,45,57,52,46,48,49,50,50,51,54,44,52,52,46,57,55,56,55,49,50,93,44,91,45,57,52,46,50,53,54,48,55,52,44,52,52,46,57,55,57,52,54,53,93,44,91,45,57,52,46,53,48,49,56,56,53,44,52,52,46,57,55,57,54,57,53,93,44,91,45,57,52,46,53,48,50,51,57,53,44,52,52,46,56,57,50,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,68,117,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,52,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,53,54,52,54,53,44,52,53,46,50,48,57,53,53,52,93,44,91,45,57,50,46,49,51,54,51,52,56,44,52,52,46,56,53,55,56,52,56,93,44,91,45,57,50,46,49,51,53,50,48,50,44,52,52,46,54,56,52,51,55,52,93,44,91,45,57,49,46,54,53,48,51,54,49,44,52,52,46,54,56,51,54,51,51,93,44,91,45,57,49,46,54,53,48,52,53,53,44,52,52,46,56,53,53,57,53,49,93,44,91,45,57,49,46,54,54,53,54,52,55,44,52,53,46,50,48,55,57,57,49,93,44,91,45,57,50,46,49,53,54,52,54,53,44,52,53,46,50,48,57,53,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,52,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,55,57,54,56,57,55,44,51,56,46,50,54,53,48,52,55,93,44,91,45,49,48,53,46,54,56,54,56,51,56,44,51,56,46,49,54,54,56,52,53,93,44,91,45,49,48,53,46,53,54,48,51,49,49,44,51,55,46,57,53,49,56,56,54,93,44,91,45,49,48,53,46,52,55,51,50,48,52,44,51,55,46,56,57,53,57,55,93,44,91,45,49,48,53,46,52,49,51,54,51,53,44,51,55,46,56,57,48,53,50,55,93,44,91,45,49,48,53,46,49,54,56,54,53,50,44,51,56,46,48,49,56,57,52,54,93,44,91,45,49,48,53,46,48,52,57,57,49,55,44,51,55,46,57,49,53,52,55,57,93,44,91,45,49,48,53,46,48,52,57,50,49,53,44,51,56,46,50,53,55,57,55,51,93,44,91,45,49,48,53,46,55,57,54,56,57,55,44,51,56,46,50,54,53,48,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,48,53,44,34,98,101,100,115,34,58,49,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,51,53,48,49,54,44,51,55,46,54,52,51,54,52,49,93,44,91,45,57,48,46,53,52,57,55,50,57,44,51,55,46,51,49,55,53,57,52,93,44,91,45,57,48,46,50,49,55,54,53,55,44,51,55,46,51,49,52,57,54,55,93,44,91,45,57,48,46,49,52,53,54,57,57,44,51,55,46,51,49,50,48,57,49,93,44,91,45,57,48,46,49,52,54,55,54,51,44,51,55,46,53,57,55,52,51,52,93,44,91,45,57,48,46,49,52,54,55,55,56,44,51,55,46,54,52,49,54,49,56,93,44,91,45,57,48,46,53,51,53,48,49,54,44,51,55,46,54,52,51,54,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,53,51,34,44,34,78,65,77,69,34,58,34,78,111,108,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,54,54,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,52,54,53,52,51,44,51,50,46,53,50,50,55,57,51,93,44,91,45,49,48,48,46,54,54,48,54,50,54,44,51,50,46,53,50,53,51,49,50,93,44,91,45,49,48,48,46,54,54,53,51,53,51,44,51,50,46,48,56,53,52,48,55,93,44,91,45,49,48,48,46,50,51,53,49,51,55,44,51,50,46,48,56,50,51,55,50,93,44,91,45,49,48,48,46,49,53,49,57,49,49,44,51,50,46,48,56,50,54,51,56,93,44,91,45,49,48,48,46,49,52,54,53,52,51,44,51,50,46,53,50,50,55,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,53,51,54,44,34,98,101,100,115,34,58,49,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,52,54,50,52,49,49,44,52,49,46,54,52,49,53,56,55,93,44,91,45,55,53,46,52,52,49,52,50,49,44,52,49,46,50,54,48,48,53,51,93,44,91,45,55,53,46,53,48,53,54,48,55,44,52,49,46,50,51,50,53,51,57,93,44,91,45,55,53,46,51,53,57,49,56,52,44,52,49,46,50,51,57,50,48,54,93,44,91,45,55,53,46,48,54,57,53,53,57,44,52,49,46,54,48,49,56,55,52,93,44,91,45,55,53,46,48,53,51,50,50,55,44,52,49,46,55,53,49,54,54,50,93,44,91,45,55,53,46,49,52,54,52,52,54,44,52,49,46,56,53,48,56,57,57,93,44,91,45,55,53,46,50,55,49,50,57,51,44,52,49,46,56,56,55,51,53,56,93,44,91,45,55,53,46,51,53,57,53,55,57,44,52,49,46,57,57,57,52,52,53,93,44,91,45,55,53,46,52,56,51,49,52,57,44,52,49,46,57,57,57,50,49,52,93,44,91,45,55,53,46,52,54,50,52,49,49,44,52,49,46,54,52,49,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,83,97,114,97,116,111,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,51,55,55,44,34,98,101,100,115,34,58,50,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,49,52,48,49,52,55,44,52,51,46,50,53,51,57,55,57,93,44,91,45,55,52,46,48,57,55,52,54,55,44,52,50,46,57,56,50,57,51,52,93,44,91,45,55,52,46,48,57,50,57,56,44,52,50,46,57,53,53,56,54,56,93,44,91,45,55,52,46,48,48,53,54,53,54,44,52,50,46,57,51,51,52,56,52,93,44,91,45,55,51,46,56,48,57,51,54,57,44,52,50,46,55,55,56,56,54,57,93,44,91,45,55,51,46,54,55,54,55,54,50,44,52,50,46,55,56,51,50,55,55,93,44,91,45,55,51,46,54,51,53,52,54,51,44,52,50,46,57,52,49,50,57,93,44,91,45,55,51,46,53,55,51,51,52,50,44,52,51,46,49,48,48,53,52,53,93,44,91,45,55,51,46,53,57,52,57,54,44,52,51,46,51,48,54,49,49,56,93,44,91,45,55,51,46,55,56,57,55,51,49,44,52,51,46,50,52,52,52,50,49,93,44,91,45,55,51,46,56,56,52,49,51,57,44,52,51,46,51,57,56,48,52,49,93,44,91,45,55,52,46,49,54,48,49,44,52,51,46,51,55,49,53,51,50,93,44,91,45,55,52,46,49,52,48,49,52,55,44,52,51,46,50,53,51,57,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,66,114,97,122,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,49,57,51,44,34,98,101,100,115,34,58,54,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,54,54,57,56,51,44,51,48,46,54,57,53,54,55,93,44,91,45,57,54,46,50,56,50,53,54,52,44,51,48,46,52,50,54,54,49,52,93,44,91,45,57,54,46,50,57,57,49,55,51,44,51,48,46,51,55,57,49,53,50,93,44,91,45,57,54,46,49,53,52,54,51,44,51,48,46,51,51,48,50,56,56,93,44,91,45,57,54,46,49,48,55,51,54,44,51,48,46,52,49,55,53,56,50,93,44,91,45,57,54,46,49,56,54,52,51,57,44,51,48,46,54,48,54,49,55,53,93,44,91,45,57,54,46,49,54,56,51,55,44,51,48,46,56,50,50,57,57,55,93,44,91,45,57,54,46,50,52,49,48,50,44,51,48,46,57,55,51,55,51,55,93,44,91,45,57,54,46,51,51,56,48,48,49,44,51,48,46,57,50,48,53,51,49,93,44,91,45,57,54,46,52,53,55,54,51,44,51,48,46,55,52,52,52,55,52,93,44,91,45,57,54,46,53,54,54,57,56,51,44,51,48,46,54,57,53,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,51,52,56,52,44,51,51,46,57,53,52,52,53,51,93,44,91,45,57,54,46,56,54,54,52,51,56,44,51,51,46,56,53,51,49,52,57,93,44,91,45,57,54,46,54,57,48,55,48,56,44,51,51,46,56,52,57,57,53,57,93,44,91,45,57,54,46,53,56,56,53,48,50,44,51,51,46,56,57,52,57,56,51,93,44,91,45,57,54,46,54,49,57,57,51,57,44,51,51,46,57,57,57,52,52,57,93,44,91,45,57,54,46,53,56,53,51,53,53,44,51,52,46,49,49,52,52,53,57,93,44,91,45,57,54,46,54,54,57,57,54,51,44,51,52,46,49,55,50,53,50,49,93,44,91,45,57,54,46,57,51,51,53,48,51,44,51,52,46,49,55,50,55,52,56,93,44,91,45,57,54,46,57,54,57,54,50,55,44,51,52,46,48,55,49,48,50,93,44,91,45,57,54,46,57,51,52,56,52,44,51,51,46,57,53,52,52,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,57,55,55,44,34,98,101,100,115,34,58,51,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,50,56,52,49,54,44,51,57,46,55,50,50,55,56,51,93,44,91,45,55,57,46,48,54,55,53,53,57,44,51,57,46,52,55,57,52,52,51,93,44,91,45,55,56,46,57,53,55,51,48,49,44,51,57,46,52,52,48,48,57,53,93,44,91,45,55,56,46,55,57,53,50,54,56,44,51,57,46,54,49,48,55,93,44,91,45,55,56,46,54,53,55,48,55,51,44,51,57,46,53,51,53,49,52,49,93,44,91,45,55,56,46,52,54,56,53,56,49,44,51,57,46,53,49,54,54,49,57,93,44,91,45,55,56,46,51,51,51,56,49,57,44,51,57,46,54,51,54,55,54,50,93,44,91,45,55,56,46,51,52,50,56,51,52,44,51,57,46,55,50,50,50,54,51,93,44,91,45,55,56,46,51,56,48,53,57,57,44,51,57,46,55,50,50,53,57,57,93,44,91,45,55,56,46,56,48,56,51,56,55,44,51,57,46,55,50,50,57,49,49,93,44,91,45,55,56,46,57,50,56,52,49,54,44,51,57,46,55,50,50,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,87,101,116,122,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,51,51,53,49,51,44,51,57,46,55,50,48,56,49,50,93,44,91,45,56,48,46,57,52,51,55,56,50,44,51,57,46,54,48,54,57,50,54,93,44,91,45,56,48,46,56,52,51,55,51,49,44,51,57,46,53,56,51,56,56,53,93,44,91,45,56,48,46,55,49,54,49,50,50,44,51,57,46,52,55,53,53,51,49,93,44,91,45,56,48,46,54,49,56,54,50,57,44,51,57,46,52,53,48,51,55,53,93,44,91,45,56,48,46,53,52,52,53,50,49,44,51,57,46,52,50,57,49,50,93,44,91,45,56,48,46,52,57,52,48,56,53,44,51,57,46,52,54,57,53,57,57,93,44,91,45,56,48,46,52,57,56,49,53,56,44,51,57,46,53,54,50,56,57,57,93,44,91,45,56,48,46,51,57,53,56,49,44,51,57,46,54,51,55,51,52,55,93,44,91,45,56,48,46,52,50,49,51,56,56,44,51,57,46,55,50,49,49,56,57,93,44,91,45,56,48,46,53,49,57,51,52,50,44,51,57,46,55,50,49,52,48,51,93,44,91,45,56,48,46,56,51,51,53,49,51,44,51,57,46,55,50,48,56,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,48,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,54,53,54,49,57,44,52,52,46,53,57,54,57,56,55,93,44,91,45,57,49,46,49,53,49,57,51,50,44,52,52,46,48,55,57,54,54,53,93,44,91,45,57,48,46,57,55,51,49,48,55,44,52,52,46,48,55,48,56,56,50,93,44,91,45,57,48,46,57,48,52,53,55,57,44,52,52,46,49,53,56,50,57,56,93,44,91,45,57,48,46,51,49,50,53,50,50,44,52,52,46,49,53,53,49,57,56,93,44,91,45,57,48,46,51,49,50,54,56,44,52,52,46,50,52,56,55,53,93,44,91,45,57,48,46,51,49,54,48,53,53,44,52,52,46,52,50,52,53,48,50,93,44,91,45,57,48,46,56,48,49,57,49,56,44,52,52,46,52,50,50,52,52,50,93,44,91,45,57,48,46,56,48,49,53,50,53,44,52,52,46,53,48,57,54,56,49,93,44,91,45,57,48,46,57,50,50,51,53,44,52,52,46,53,57,54,50,57,51,93,44,91,45,57,49,46,49,54,53,54,49,57,44,52,52,46,53,57,54,57,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,108,97,116,115,111,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,53,54,50,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,49,53,57,53,52,54,44,52,54,46,50,54,49,49,51,50,93,44,91,45,49,50,52,46,48,54,55,51,49,51,44,52,54,46,49,56,51,56,52,57,93,44,91,45,49,50,52,46,48,48,56,49,50,53,44,52,54,46,48,48,57,57,52,93,44,91,45,49,50,52,46,48,54,53,52,52,56,44,52,53,46,55,56,51,48,53,52,93,44,91,45,49,50,51,46,51,54,49,54,50,50,44,52,53,46,55,55,57,53,55,57,93,44,91,45,49,50,51,46,51,54,51,55,52,51,44,52,54,46,49,52,54,51,51,51,93,44,91,45,49,50,51,46,52,55,57,54,52,52,44,52,54,46,50,54,57,49,51,49,93,44,91,45,49,50,51,46,55,50,56,51,49,54,44,52,54,46,50,54,52,53,52,49,93,44,91,45,49,50,51,46,56,55,49,56,54,57,44,52,54,46,50,51,52,57,52,57,93,44,91,45,49,50,51,46,57,55,54,50,55,53,44,52,54,46,50,54,57,57,48,55,93,44,91,45,49,50,52,46,49,53,57,53,52,54,44,52,54,46,50,54,49,49,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,57,52,55,44,34,98,101,100,115,34,58,49,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,51,55,48,57,53,44,52,54,46,55,57,50,49,50,57,93,44,91,45,49,50,51,46,51,53,56,51,51,52,44,52,54,46,51,56,52,48,50,53,93,44,91,45,49,50,51,46,50,49,55,57,53,44,52,54,46,51,56,53,54,49,55,93,44,91,45,49,50,50,46,50,52,48,57,54,54,44,52,54,46,51,56,53,51,54,49,93,44,91,45,49,50,49,46,53,50,50,51,50,52,44,52,54,46,51,56,56,50,50,52,93,44,91,45,49,50,49,46,51,57,55,48,49,54,44,52,54,46,51,56,56,48,56,51,93,44,91,45,49,50,49,46,52,53,49,50,53,54,44,52,54,46,53,51,51,56,57,52,93,44,91,45,49,50,49,46,51,55,54,55,53,55,44,52,54,46,55,48,52,54,53,56,93,44,91,45,49,50,49,46,52,53,53,50,49,56,44,52,54,46,55,56,51,55,57,55,93,44,91,45,49,50,49,46,55,53,56,53,57,51,44,52,54,46,55,56,51,55,57,49,93,44,91,45,49,50,49,46,56,52,49,56,57,44,52,54,46,55,50,56,52,53,53,93,44,91,45,49,50,50,46,50,48,51,49,49,53,44,52,54,46,55,54,51,48,54,49,93,44,91,45,49,50,51,46,49,54,48,57,48,57,44,52,54,46,55,54,52,51,51,93,44,91,45,49,50,51,46,49,54,48,53,56,56,44,52,54,46,55,57,51,51,56,51,93,44,91,45,49,50,51,46,51,55,48,57,53,44,52,54,46,55,57,50,49,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,48,50,53,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,48,56,56,51,57,44,52,50,46,53,50,49,50,49,55,93,44,91,45,55,56,46,51,48,56,49,50,56,44,52,49,46,57,57,57,52,49,53,93,44,91,45,55,56,46,50,48,54,54,48,52,44,52,49,46,57,57,57,53,57,53,93,44,91,45,55,55,46,55,52,57,57,51,49,44,52,49,46,57,57,56,55,56,50,93,44,91,45,55,55,46,55,50,50,57,54,52,44,52,50,46,52,55,49,50,49,54,93,44,91,45,55,55,46,56,52,48,57,48,49,44,52,50,46,53,49,55,55,54,55,93,44,91,45,55,56,46,48,51,56,50,54,49,44,52,50,46,53,50,49,53,50,50,93,44,91,45,55,56,46,51,48,56,56,51,57,44,52,50,46,53,50,49,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,101,100,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,54,54,50,50,49,44,52,49,46,56,54,48,48,54,57,93,44,91,45,57,49,46,51,54,54,52,52,56,44,52,49,46,53,57,56,51,55,51,93,44,91,45,57,48,46,56,57,57,56,53,51,44,52,49,46,53,57,55,49,51,51,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,49,46,55,55,49,51,57,50,93,44,91,45,57,48,46,56,57,56,52,56,52,44,52,49,46,57,52,54,50,52,53,93,44,91,45,57,49,46,51,54,53,56,55,55,44,52,49,46,57,52,55,52,49,93,44,91,45,57,49,46,51,54,54,50,50,49,44,52,49,46,56,54,48,48,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,52,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,48,56,55,48,49,44,51,56,46,54,56,56,49,48,49,93,44,91,45,56,54,46,54,56,51,49,48,50,44,51,56,46,54,56,54,53,54,49,93,44,91,45,56,54,46,54,56,50,51,53,57,44,51,56,46,53,50,54,51,55,56,93,44,91,45,56,54,46,54,56,49,52,50,52,44,51,56,46,51,57,52,55,54,55,93,44,91,45,56,54,46,51,48,56,56,54,56,44,51,56,46,51,57,52,48,54,57,93,44,91,45,56,54,46,51,48,56,54,55,52,44,51,56,46,52,50,50,56,55,53,93,44,91,45,56,54,46,51,48,56,55,48,49,44,51,56,46,54,56,56,49,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,51,49,56,55,44,34,98,101,100,115,34,58,50,51,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,55,55,48,57,51,44,51,51,46,57,53,55,54,49,52,93,44,91,45,56,52,46,51,52,55,56,49,57,44,51,51,46,57,54,51,50,56,56,93,44,91,45,56,52,46,51,53,48,50,50,52,44,51,51,46,54,52,55,57,48,56,93,44,91,45,56,52,46,50,56,49,50,55,51,44,51,51,46,54,52,55,52,49,49,93,44,91,45,56,52,46,49,56,52,49,52,51,44,51,51,46,54,52,54,49,53,55,93,44,91,45,56,52,46,49,49,48,49,50,52,44,51,51,46,54,50,53,49,49,93,44,91,45,56,52,46,48,50,51,55,49,51,44,51,51,46,55,53,50,56,48,56,93,44,91,45,56,52,46,50,53,57,56,50,50,44,51,51,46,57,49,56,57,48,49,93,44,91,45,56,52,46,50,55,55,48,57,51,44,51,51,46,57,53,55,54,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,55,34,44,34,78,65,77,69,34,58,34,80,105,99,107,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,51,50,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,53,53,53,51,44,51,52,46,53,54,50,55,51,53,93,44,91,45,56,52,46,54,53,52,51,54,54,44,51,52,46,53,52,56,57,52,54,93,44,91,45,56,52,46,54,53,51,50,51,50,44,51,52,46,52,49,50,53,57,93,44,91,45,56,52,46,53,56,50,54,51,44,51,52,46,51,56,49,52,57,50,93,44,91,45,56,52,46,50,53,55,53,56,54,44,51,52,46,51,56,48,57,57,50,93,44,91,45,56,52,46,51,52,53,53,53,51,44,51,52,46,53,54,50,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,104,111,117,116,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,56,57,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,53,51,52,50,57,53,44,52,56,46,49,51,52,53,54,52,93,44,91,45,49,48,57,46,55,50,54,57,49,52,44,52,56,46,49,51,50,56,53,57,93,44,91,45,49,48,57,46,55,50,54,57,52,51,44,52,56,46,50,50,49,53,50,53,93,44,91,45,49,48,57,46,56,52,53,57,51,50,44,52,56,46,51,48,53,57,55,49,93,44,91,45,49,49,48,46,54,50,53,52,48,57,44,52,56,46,51,48,54,52,55,57,93,44,91,45,49,49,48,46,55,53,53,56,55,51,44,52,56,46,50,49,57,54,48,49,93,44,91,45,49,49,48,46,56,50,55,49,54,56,44,52,56,46,49,51,51,50,48,53,93,44,91,45,49,49,49,46,52,48,57,48,57,55,44,52,56,46,49,51,50,50,49,56,93,44,91,45,49,49,49,46,52,48,56,53,49,52,44,52,55,46,57,56,55,49,55,56,93,44,91,45,49,49,49,46,52,48,56,56,53,44,52,55,46,54,57,56,49,50,51,93,44,91,45,49,49,48,46,57,55,54,54,54,56,44,52,55,46,54,57,56,55,51,93,44,91,45,49,49,49,46,48,52,51,56,56,49,44,52,55,46,53,57,49,53,56,51,93,44,91,45,49,49,48,46,56,54,52,54,51,44,52,55,46,53,50,52,55,49,52,93,44,91,45,49,49,48,46,55,54,57,49,50,57,44,52,55,46,52,52,54,48,57,54,93,44,91,45,49,49,48,46,54,51,57,53,53,57,44,52,55,46,52,49,54,52,56,54,93,44,91,45,49,49,48,46,50,49,51,53,57,54,44,52,55,46,52,49,54,54,53,55,93,44,91,45,49,48,57,46,56,52,53,50,50,49,44,52,55,46,53,52,54,55,57,53,93,44,91,45,49,48,57,46,56,50,51,52,48,49,44,52,55,46,55,49,53,53,55,57,93,44,91,45,49,48,57,46,53,51,56,54,55,55,44,52,55,46,55,51,56,56,54,52,93,44,91,45,49,48,57,46,53,51,52,50,57,53,44,52,56,46,49,51,52,53,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,56,56,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,55,55,54,56,52,44,52,50,46,55,51,48,57,48,51,93,44,91,45,49,48,48,46,49,51,51,57,55,56,44,52,50,46,56,48,55,56,49,57,93,44,91,45,49,48,48,46,49,57,56,52,55,56,44,52,50,46,56,52,54,49,48,50,93,44,91,45,49,48,48,46,49,54,55,54,48,53,44,52,50,46,48,56,53,56,52,56,93,44,91,45,57,57,46,54,56,54,57,53,57,44,52,50,46,48,56,54,48,55,53,93,44,91,45,57,57,46,54,54,50,51,55,57,44,52,50,46,48,56,54,48,48,57,93,44,91,45,57,57,46,54,55,55,54,56,52,44,52,50,46,55,51,48,57,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,109,112,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,56,55,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,54,49,51,51,55,44,51,54,46,53,57,49,55,56,52,93,44,91,45,56,52,46,50,53,57,53,57,51,44,51,54,46,53,49,51,57,56,53,93,44,91,45,56,52,46,51,52,57,57,51,57,44,51,54,46,52,54,54,50,57,50,93,44,91,45,56,52,46,51,50,57,57,50,55,44,51,54,46,50,56,53,48,56,54,93,44,91,45,56,52,46,51,55,50,55,51,49,44,51,54,46,50,49,54,55,55,56,93,44,91,45,56,52,46,50,50,55,53,50,55,44,51,54,46,50,52,52,56,55,57,93,44,91,45,56,52,46,48,54,57,54,49,56,44,51,54,46,50,51,48,57,55,56,93,44,91,45,56,52,46,48,48,52,51,49,55,44,51,54,46,50,55,48,51,55,56,93,44,91,45,56,51,46,57,48,53,54,51,56,44,51,54,46,52,49,57,57,55,57,93,44,91,45,56,51,46,57,56,55,54,49,53,44,51,54,46,53,56,57,52,55,49,93,44,91,45,56,52,46,50,50,55,50,57,50,44,51,54,46,53,57,50,48,52,53,93,44,91,45,56,52,46,50,54,49,51,51,55,44,51,54,46,53,57,49,55,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,57,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,48,54,57,54,53,44,51,54,46,50,54,54,49,57,49,93,44,91,45,55,56,46,52,49,50,48,57,53,44,51,54,46,49,54,57,53,57,55,93,44,91,45,55,56,46,52,57,54,54,49,52,44,51,54,46,49,55,53,49,57,57,93,44,91,45,55,56,46,53,52,54,52,49,52,44,51,54,46,48,50,49,56,50,54,93,44,91,45,55,56,46,52,50,54,56,54,52,44,51,53,46,57,55,53,48,49,50,93,44,91,45,55,56,46,50,53,53,57,55,51,44,51,53,46,56,49,56,49,50,93,44,91,45,55,56,46,48,48,54,53,53,49,44,51,54,46,50,48,50,54,51,51,93,44,91,45,55,56,46,51,48,54,57,54,53,44,51,54,46,50,54,54,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,53,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,49,48,34,44,34,78,65,77,69,34,58,34,66,97,108,116,105,109,111,114,101,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,52,55,48,48,44,34,98,101,100,115,34,58,52,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,50,57,52,56,54,44,51,57,46,50,49,56,52,48,56,93,44,91,45,55,54,46,53,50,57,55,57,51,44,51,57,46,51,55,50,48,53,56,93,44,91,45,55,54,46,55,49,49,51,49,51,44,51,57,46,51,55,49,57,51,51,93,44,91,45,55,54,46,55,49,49,48,53,52,44,51,57,46,50,55,55,56,56,57,93,44,91,45,55,54,46,54,49,56,54,49,50,44,51,57,46,50,51,55,51,57,56,93,44,91,45,55,54,46,53,50,57,52,56,54,44,51,57,46,50,49,56,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,76,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,50,57,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,53,51,55,56,44,51,56,46,53,50,49,54,53,55,93,44,91,45,57,54,46,51,53,55,50,55,55,44,51,56,46,49,55,50,54,54,93,44,91,45,57,53,46,57,53,56,56,54,50,44,51,56,46,49,55,48,57,51,57,93,44,91,45,57,53,46,57,53,48,50,56,50,44,51,56,46,52,51,52,49,48,53,93,44,91,45,57,53,46,57,52,53,57,50,52,44,51,56,46,55,51,57,49,49,50,93,44,91,45,57,54,46,51,53,50,54,49,51,44,51,56,46,55,51,57,48,50,49,93,44,91,45,57,54,46,51,53,51,55,56,44,51,56,46,53,50,49,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,52,52,44,34,98,101,100,115,34,58,49,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,57,48,56,53,49,44,52,50,46,50,49,48,52,48,53,93,44,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,44,91,45,57,52,46,55,52,52,56,55,54,44,52,49,46,56,54,50,51,57,52,93,44,91,45,57,52,46,54,50,56,55,50,52,44,52,49,46,56,54,50,55,54,51,93,44,91,45,57,52,46,54,50,56,56,48,54,44,52,50,46,50,48,57,51,57,54,93,44,91,45,57,52,46,56,53,56,52,49,50,44,52,50,46,50,48,57,54,57,50,93,44,91,45,57,53,46,48,57,48,56,53,49,44,52,50,46,50,49,48,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,84,101,110,115,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,57,50,55,49,56,44,51,50,46,50,48,51,51,52,57,93,44,91,45,57,49,46,53,49,49,51,55,52,44,51,49,46,57,51,48,48,50,53,93,44,91,45,57,49,46,53,55,53,55,50,49,44,51,49,46,56,56,50,53,54,93,44,91,45,57,49,46,53,52,52,55,57,49,44,51,49,46,55,53,49,55,51,49,93,44,91,45,57,49,46,51,56,48,50,53,52,44,51,49,46,55,51,51,50,53,53,93,44,91,45,57,49,46,51,49,55,56,54,52,44,51,49,46,55,52,57,55,54,54,93,44,91,45,57,49,46,51,52,53,50,49,52,44,51,49,46,56,52,51,56,54,49,93,44,91,45,57,49,46,50,52,56,49,52,52,44,51,49,46,56,54,57,56,52,56,93,44,91,45,57,49,46,48,51,48,50,48,55,44,51,50,46,49,49,52,51,53,51,93,44,91,45,57,49,46,48,51,48,56,49,44,51,50,46,49,50,48,54,53,93,44,91,45,57,49,46,48,53,51,53,53,53,44,51,50,46,49,50,52,52,49,50,93,44,91,45,57,49,46,49,50,52,48,52,51,44,51,50,46,50,49,49,49,48,52,93,44,91,45,57,49,46,52,57,50,55,49,56,44,51,50,46,50,48,51,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,56,55,54,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,50,50,55,49,44,51,53,46,54,48,55,55,56,51,93,44,91,45,56,52,46,52,48,57,50,50,54,44,51,53,46,51,57,56,51,55,56,93,44,91,45,56,52,46,52,57,53,53,50,57,44,51,53,46,50,56,53,52,55,50,93,44,91,45,56,52,46,50,57,50,51,54,53,44,51,53,46,50,48,54,54,57,52,93,44,91,45,56,52,46,50,49,49,51,57,53,44,51,53,46,50,54,53,54,50,49,93,44,91,45,56,52,46,48,50,57,48,54,55,44,51,53,46,50,57,50,50,52,56,93,44,91,45,56,52,46,48,50,49,52,53,50,44,51,53,46,52,48,52,50,50,51,93,44,91,45,56,51,46,57,54,49,49,48,50,44,51,53,46,52,54,51,55,53,52,93,44,91,45,56,52,46,49,56,56,51,49,57,44,51,53,46,54,49,48,53,52,57,93,44,91,45,56,52,46,50,57,57,53,52,57,44,51,53,46,54,53,55,54,55,51,93,44,91,45,56,52,46,52,56,54,55,53,52,44,51,53,46,54,53,56,51,55,54,93,44,91,45,56,52,46,53,50,53,56,53,44,51,53,46,54,50,52,49,56,54,93,44,91,45,56,52,46,53,50,50,51,55,51,44,51,53,46,54,49,56,54,50,53,93,44,91,45,56,52,46,53,50,50,55,49,44,51,53,46,54,48,55,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,52,52,54,52,44,51,56,46,50,54,50,52,49,50,93,44,91,45,49,48,50,46,48,52,50,49,53,53,44,51,55,46,55,51,56,53,52,49,93,44,91,45,49,48,49,46,53,50,55,48,54,51,44,51,55,46,55,51,54,51,49,52,93,44,91,45,49,48,49,46,53,52,50,55,53,55,44,51,55,46,56,50,55,53,57,52,93,44,91,45,49,48,49,46,53,52,50,51,49,50,44,51,56,46,50,54,51,50,48,55,93,44,91,45,49,48,49,46,53,54,55,52,56,50,44,51,56,46,50,54,51,49,52,53,93,44,91,45,49,48,50,46,48,52,52,52,54,52,44,51,56,46,50,54,50,52,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,80,111,99,97,104,111,110,116,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,44,91,45,57,52,46,57,49,51,56,57,44,52,50,46,57,48,57,55,93,44,91,45,57,52,46,57,49,52,52,56,53,44,52,50,46,53,54,48,51,48,57,93,44,91,45,57,52,46,52,52,51,48,50,52,44,52,50,46,53,53,56,56,52,51,93,44,91,45,57,52,46,52,52,51,48,56,51,44,52,50,46,54,52,53,49,54,52,93,44,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,71,101,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,53,50,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,52,53,50,48,54,56,44,52,52,46,49,53,49,52,54,53,93,44,91,45,49,49,54,46,53,55,50,50,50,52,44,52,51,46,57,56,48,52,56,53,93,44,91,45,49,49,54,46,55,49,50,53,48,49,44,52,51,46,57,56,49,51,50,54,93,44,91,45,49,49,54,46,55,49,50,54,55,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,53,49,50,53,48,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,50,56,50,48,49,57,44,52,51,46,56,48,55,51,54,53,93,44,91,45,49,49,54,46,50,55,51,48,54,57,44,52,52,46,49,53,49,50,50,55,93,44,91,45,49,49,54,46,50,49,51,56,55,49,44,52,52,46,49,53,49,51,56,55,93,44,91,45,49,49,54,46,50,49,50,57,49,44,52,52,46,51,50,52,51,55,51,93,44,91,45,49,49,54,46,49,53,55,48,50,50,44,52,52,46,52,57,56,57,50,56,93,44,91,45,49,49,54,46,50,57,57,56,55,54,44,52,52,46,52,52,52,53,55,54,93,44,91,45,49,49,54,46,51,53,56,52,57,50,44,52,52,46,49,53,49,49,53,56,93,44,91,45,49,49,54,46,52,53,50,48,54,56,44,52,52,46,49,53,49,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,73,110,100,101,112,101,110,100,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,54,52,44,34,98,101,100,115,34,58,50,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,52,57,52,52,56,44,51,53,46,56,54,55,52,49,49,93,44,91,45,57,49,46,56,51,55,49,55,57,44,51,53,46,55,48,52,57,51,50,93,44,91,45,57,49,46,55,57,51,57,53,56,44,51,53,46,53,51,52,49,49,52,93,44,91,45,57,49,46,53,56,49,56,56,44,51,53,46,53,51,48,52,52,55,93,44,91,45,57,49,46,51,54,57,53,55,44,51,53,46,53,50,54,51,54,50,93,44,91,45,57,49,46,51,53,54,50,52,54,44,51,53,46,55,48,49,49,48,55,93,44,91,45,57,49,46,49,57,56,53,53,54,44,51,53,46,56,57,48,48,50,52,93,44,91,45,57,49,46,51,53,55,50,51,44,51,53,46,56,57,48,54,50,49,93,44,91,45,57,49,46,52,54,51,49,57,56,44,51,53,46,57,51,54,56,49,93,44,91,45,57,49,46,55,49,48,52,56,51,44,51,53,46,57,52,49,55,53,56,93,44,91,45,57,49,46,56,52,57,52,52,56,44,51,53,46,56,54,55,52,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,111,110,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,50,49,51,51,54,44,51,53,46,48,49,50,50,49,93,44,91,45,57,50,46,48,55,48,56,48,53,44,51,53,46,48,49,49,56,48,50,93,44,91,45,57,50,46,48,55,56,55,49,49,44,51,52,46,55,50,57,57,56,51,93,44,91,45,57,50,46,48,50,57,53,51,57,44,51,52,46,54,50,49,50,52,56,93,44,91,45,57,50,46,48,50,57,57,57,54,44,51,52,46,52,56,57,51,53,50,93,44,91,45,57,49,46,55,48,53,49,56,53,44,51,52,46,52,56,50,54,55,93,44,91,45,57,49,46,54,55,56,48,51,55,44,51,52,46,52,56,49,57,50,93,44,91,45,57,49,46,54,52,51,48,56,44,51,52,46,54,51,54,56,54,50,93,44,91,45,57,49,46,55,48,48,56,50,56,44,51,52,46,54,55,50,48,50,57,93,44,91,45,57,49,46,54,57,51,55,48,53,44,51,52,46,57,49,57,54,48,53,93,44,91,45,57,49,46,56,48,51,55,48,51,44,51,52,46,57,50,49,53,50,52,93,44,91,45,57,49,46,56,48,50,53,48,53,44,51,53,46,48,51,48,52,50,53,93,44,91,45,57,50,46,49,49,57,55,49,57,44,51,53,46,48,54,54,52,57,51,93,44,91,45,57,50,46,49,50,49,51,51,54,44,51,53,46,48,49,50,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,50,54,53,56,55,44,52,49,46,49,54,54,48,57,93,44,91,45,56,55,46,53,50,54,50,48,56,44,52,49,46,48,49,48,51,52,49,93,44,91,45,56,55,46,53,50,54,48,51,49,44,52,48,46,55,51,54,56,56,53,93,44,91,45,56,55,46,50,54,55,50,57,56,44,52,48,46,55,51,54,53,56,50,93,44,91,45,56,55,46,50,55,53,56,56,50,44,52,49,46,50,49,56,53,57,53,93,44,91,45,56,55,46,52,49,52,52,50,49,44,52,49,46,49,54,50,50,52,56,93,44,91,45,56,55,46,53,50,54,53,56,55,44,52,49,46,49,54,54,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,49,52,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,57,56,51,57,54,44,51,52,46,52,54,48,56,56,51,93,44,91,45,56,51,46,51,53,53,50,53,49,44,51,52,46,50,50,51,55,57,52,93,44,91,45,56,51,46,50,57,55,51,49,55,44,51,52,46,50,54,52,53,56,55,93,44,91,45,56,51,46,49,49,51,51,54,44,51,52,46,50,55,51,53,51,93,44,91,45,56,51,46,48,53,49,54,51,56,44,51,52,46,52,57,51,55,48,50,93,44,91,45,56,51,46,49,48,51,54,55,51,44,51,52,46,53,51,54,54,49,55,93,44,91,45,56,51,46,49,55,55,56,51,56,44,51,52,46,52,55,55,48,49,55,93,44,91,45,56,51,46,51,57,56,51,57,54,44,51,52,46,52,54,48,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,72,101,110,100,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,49,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,54,51,55,54,51,44,50,54,46,53,49,51,51,50,52,93,44,91,45,56,49,46,50,55,49,55,54,56,44,50,54,46,53,49,55,48,54,57,93,44,91,45,56,49,46,50,54,56,53,53,44,50,54,46,50,53,51,48,52,53,93,44,91,45,56,48,46,56,55,57,56,48,57,44,50,54,46,50,53,57,52,53,53,93,44,91,45,56,48,46,56,56,49,50,51,51,44,50,54,46,51,51,51,56,48,54,93,44,91,45,56,48,46,56,56,53,54,51,57,44,50,54,46,57,53,56,57,49,57,93,44,91,45,56,48,46,57,52,53,51,53,52,44,50,54,46,55,54,57,48,52,57,93,44,91,45,56,49,46,53,54,53,57,51,49,44,50,54,46,55,54,57,53,53,50,93,44,91,45,56,49,46,53,54,51,55,54,51,44,50,54,46,53,49,51,51,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,53,34,44,34,78,65,77,69,34,58,34,84,97,108,105,97,102,101,114,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,55,57,57,55,53,44,51,51,46,53,57,57,55,57,50,93,44,91,45,56,50,46,56,49,50,57,53,56,44,51,51,46,54,53,53,56,51,54,93,44,91,45,56,50,46,56,57,48,53,57,57,44,51,51,46,54,51,50,56,55,55,93,44,91,45,56,50,46,57,52,57,48,52,54,44,51,51,46,55,51,51,51,51,51,93,44,91,45,56,50,46,57,57,53,54,48,50,44,51,51,46,54,57,51,53,56,51,93,44,91,45,56,51,46,48,49,50,56,53,51,44,51,51,46,52,54,57,49,55,56,93,44,91,45,56,50,46,56,53,49,57,53,52,44,51,51,46,52,52,51,53,52,51,93,44,91,45,56,50,46,54,55,57,57,55,53,44,51,51,46,53,57,57,55,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,50,49,48,44,34,98,101,100,115,34,58,49,52,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,49,49,53,57,49,55,44,51,48,46,49,54,48,51,52,55,93,44,91,45,57,52,46,50,48,51,55,48,57,44,51,48,46,49,56,56,56,49,57,93,44,91,45,57,52,46,50,57,50,54,50,57,44,51,48,46,49,49,55,54,55,49,93,44,91,45,57,52,46,52,52,52,57,49,44,51,48,46,49,49,51,48,49,53,93,44,91,45,57,52,46,52,52,50,50,51,53,44,50,57,46,56,56,57,53,51,56,93,44,91,45,57,52,46,51,53,55,57,55,54,44,50,57,46,56,56,55,52,54,52,93,44,91,45,57,52,46,51,53,52,56,56,44,50,57,46,53,48,54,51,50,56,93,44,91,45,57,52,46,48,51,51,53,54,53,44,50,57,46,54,50,53,48,48,50,93,44,91,45,57,51,46,56,49,52,51,53,49,44,50,57,46,53,57,54,53,55,54,93,44,91,45,57,51,46,57,50,50,55,52,52,44,50,57,46,56,49,56,56,48,56,93,44,91,45,57,51,46,56,53,52,52,49,50,44,50,57,46,56,54,53,48,53,51,93,44,91,45,57,51,46,56,54,48,49,54,57,44,50,57,46,57,55,55,51,57,55,93,44,91,45,57,52,46,48,51,49,57,55,54,44,51,48,46,48,50,56,48,49,51,93,44,91,45,57,52,46,49,49,53,57,49,55,44,51,48,46,49,54,48,51,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,77,101,97,103,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,52,57,56,48,57,53,44,52,54,46,55,54,50,53,48,50,93,44,91,45,49,49,49,46,51,50,48,49,56,49,44,52,54,46,53,54,57,52,48,49,93,44,91,45,49,49,49,46,50,52,54,53,49,57,44,52,54,46,52,51,56,49,48,57,93,44,91,45,49,49,49,46,48,53,54,57,57,54,44,52,54,46,51,57,56,49,50,50,93,44,91,45,49,49,49,46,49,49,56,49,50,51,44,52,54,46,51,49,54,57,55,93,44,91,45,49,49,49,46,48,54,49,57,53,54,44,52,54,46,49,57,50,56,51,52,93,44,91,45,49,49,48,46,55,56,51,56,51,51,44,52,54,46,49,57,50,54,57,57,93,44,91,45,49,49,48,46,50,56,49,57,49,54,44,52,54,46,49,56,52,51,57,55,93,44,91,45,49,49,48,46,50,56,49,57,55,49,44,52,54,46,50,50,48,54,48,53,93,44,91,45,49,49,48,46,50,55,51,51,51,55,44,52,54,46,55,49,48,53,48,57,93,44,91,45,49,49,48,46,52,53,52,53,54,54,44,52,54,46,54,55,57,53,52,53,93,44,91,45,49,49,48,46,54,53,50,56,55,55,44,52,54,46,56,50,51,54,50,54,93,44,91,45,49,49,48,46,57,49,51,48,51,53,44,52,54,46,57,56,48,53,53,57,93,44,91,45,49,49,49,46,48,56,52,50,56,53,44,52,55,46,48,49,48,54,49,51,93,44,91,45,49,49,49,46,53,51,57,51,55,51,44,52,55,46,48,48,48,53,53,57,93,44,91,45,49,49,49,46,54,53,56,49,51,50,44,52,54,46,57,49,51,52,50,51,93,44,91,45,49,49,49,46,54,48,51,49,53,51,44,52,54,46,56,48,57,57,52,57,93,44,91,45,49,49,49,46,52,57,56,48,57,53,44,52,54,46,55,54,50,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,76,97,32,80,108,97,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,49,48,49,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,44,91,45,49,48,56,46,48,51,51,49,52,54,44,51,55,46,52,54,52,57,52,93,44,91,45,49,48,56,46,50,48,52,56,51,54,44,51,55,46,51,52,52,48,56,93,44,91,45,49,48,56,46,50,57,49,54,55,54,44,51,55,46,50,50,50,48,48,51,93,44,91,45,49,48,56,46,50,57,48,52,53,57,44,51,55,46,49,52,53,57,55,53,93,44,91,45,49,48,56,46,51,55,57,51,48,51,44,51,54,46,57,57,57,54,48,56,93,44,91,45,49,48,55,46,52,56,49,55,51,55,44,51,55,46,48,48,48,49,50,55,93,44,91,45,49,48,55,46,52,56,50,49,51,49,44,51,55,46,52,50,50,54,55,51,93,44,91,45,49,48,55,46,52,56,50,49,55,57,44,51,55,46,54,51,57,53,48,49,93,44,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,66,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,50,50,51,54,44,34,98,101,100,115,34,58,49,49,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,49,56,54,48,54,44,51,49,46,51,50,48,50,48,50,93,44,91,45,57,55,46,57,48,55,49,44,51,49,46,48,54,57,51,55,52,93,44,91,45,57,55,46,57,49,49,54,56,52,44,51,49,46,48,51,52,57,49,57,93,44,91,45,57,55,46,56,50,56,53,49,50,44,51,48,46,57,48,54,49,56,56,93,44,91,45,57,55,46,54,50,53,50,56,56,44,51,48,46,56,55,48,52,51,93,44,91,45,57,55,46,51,49,53,53,48,55,44,51,48,46,55,53,50,51,55,49,93,44,91,45,57,55,46,50,53,57,48,56,50,44,51,48,46,56,56,57,53,57,54,93,44,91,45,57,55,46,48,55,48,49,56,56,44,51,48,46,57,56,54,50,50,93,44,91,45,57,55,46,50,55,56,49,49,51,44,51,49,46,50,55,57,55,57,57,93,44,91,45,57,55,46,52,49,56,54,48,54,44,51,49,46,51,50,48,50,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,75,101,109,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,49,52,52,49,51,44,51,50,46,57,50,54,54,93,44,91,45,56,56,46,57,49,52,53,49,54,44,51,50,46,53,55,54,57,53,53,93,44,91,45,56,56,46,51,56,56,55,57,55,44,51,50,46,53,55,56,49,50,51,93,44,91,45,56,56,46,51,52,55,56,56,55,44,51,50,46,57,50,57,48,56,50,93,44,91,45,56,56,46,56,49,50,55,56,50,44,51,50,46,57,50,53,57,55,51,93,44,91,45,56,56,46,57,49,52,52,49,51,44,51,50,46,57,50,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,56,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,55,56,54,52,54,44,51,52,46,51,52,48,56,53,49,93,44,91,45,57,51,46,52,51,52,56,56,55,44,51,52,46,48,53,50,50,57,56,93,44,91,45,57,51,46,51,55,51,52,48,54,44,51,51,46,57,53,55,48,55,93,44,91,45,57,51,46,50,57,48,53,55,49,44,51,51,46,56,52,53,49,51,51,93,44,91,45,57,51,46,49,48,52,50,57,44,51,51,46,55,55,55,48,49,49,93,44,91,45,57,50,46,56,57,51,53,51,52,44,51,51,46,56,48,57,57,52,51,93,44,91,45,57,50,46,56,56,54,50,56,53,44,51,52,46,49,53,53,56,55,55,93,44,91,45,57,51,46,48,52,50,48,50,53,44,51,52,46,49,53,57,56,53,50,93,44,91,45,57,51,46,48,51,53,48,51,57,44,51,52,46,50,51,54,54,54,52,93,44,91,45,57,51,46,51,53,54,56,52,44,51,52,46,50,56,48,51,48,54,93,44,91,45,57,51,46,52,48,56,49,50,52,44,51,52,46,51,51,57,53,50,55,93,44,91,45,57,51,46,52,55,56,54,52,54,44,51,52,46,51,52,48,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,75,108,97,109,97,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,51,49,48,44,34,98,101,100,115,34,58,49,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,52,52,55,53,51,56,44,52,49,46,57,57,55,52,54,53,93,44,91,45,49,50,48,46,56,55,57,57,50,54,44,52,49,46,57,57,51,55,54,52,93,44,91,45,49,50,48,46,56,56,51,51,50,55,44,52,50,46,55,52,52,50,49,52,93,44,91,45,49,50,49,46,51,52,57,54,55,57,44,52,50,46,55,52,54,54,52,52,93,44,91,45,49,50,49,46,51,52,56,52,55,49,44,52,51,46,51,53,54,55,53,51,93,44,91,45,49,50,49,46,51,51,50,57,54,57,44,52,51,46,54,49,54,54,52,53,93,44,91,45,49,50,50,46,48,48,50,51,54,50,44,52,51,46,54,49,53,52,57,56,93,44,91,45,49,50,50,46,49,51,48,54,56,57,44,52,51,46,53,53,55,49,52,51,93,44,91,45,49,50,50,46,49,51,50,48,51,52,44,52,51,46,52,52,48,50,50,49,93,44,91,45,49,50,50,46,48,50,50,54,54,50,44,52,51,46,51,54,50,51,48,52,93,44,91,45,49,50,49,46,57,56,48,53,53,52,44,52,51,46,50,54,53,49,56,93,44,91,45,49,50,50,46,48,57,51,55,55,54,44,52,51,46,48,55,54,50,53,55,93,44,91,45,49,50,50,46,50,56,50,53,56,53,44,52,51,46,48,54,55,55,49,57,93,44,91,45,49,50,50,46,50,56,50,55,51,44,52,50,46,57,57,54,52,57,57,93,44,91,45,49,50,50,46,50,56,57,55,52,56,44,52,50,46,48,48,56,48,57,56,93,44,91,45,49,50,49,46,52,52,55,53,51,56,44,52,49,46,57,57,55,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,79,115,119,101,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,49,48,52,44,34,98,101,100,115,34,58,49,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,52,52,55,49,50,44,52,51,46,55,48,51,52,54,54,93,44,91,45,55,54,46,54,48,53,48,49,50,44,52,51,46,50,53,51,53,55,93,44,91,45,55,54,46,52,55,57,50,50,52,44,52,51,46,50,50,55,53,49,57,93,44,91,45,55,54,46,49,54,57,48,52,55,44,52,51,46,50,52,54,54,54,56,93,44,91,45,55,53,46,57,57,51,51,57,52,44,52,51,46,49,56,51,51,55,54,93,44,91,45,55,53,46,56,56,52,50,55,53,44,52,51,46,49,53,53,53,54,50,93,44,91,45,55,53,46,56,49,52,54,50,55,44,52,51,46,52,56,51,53,55,56,93,44,91,45,55,53,46,55,53,54,50,49,51,44,52,51,46,52,55,48,51,56,56,93,44,91,45,55,53,46,55,55,52,53,53,51,44,52,51,46,54,56,56,56,56,52,93,44,91,45,55,54,46,48,50,50,48,48,51,44,52,51,46,54,54,56,49,52,51,93,44,91,45,55,54,46,54,52,52,55,49,50,44,52,51,46,55,48,51,52,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,78,97,114,97,110,106,105,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,53,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,50,55,56,48,55,54,44,49,56,46,51,50,57,57,55,53,93,44,91,45,54,54,46,51,49,51,50,57,57,44,49,56,46,50,52,57,51,50,52,93,44,91,45,54,54,46,50,54,54,52,54,54,44,49,56,46,50,52,53,50,55,93,44,91,45,54,54,46,50,48,54,49,51,53,44,49,56,46,50,55,54,54,54,93,44,91,45,54,54,46,50,48,52,55,51,52,44,49,56,46,51,49,54,48,51,53,93,44,91,45,54,54,46,50,55,56,48,55,54,44,49,56,46,51,50,57,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,53,51,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,52,51,54,49,55,44,51,52,46,50,48,48,48,48,54,93,44,91,45,56,53,46,55,51,56,57,55,53,44,51,51,46,57,54,56,52,54,93,44,91,45,56,53,46,53,51,48,48,57,52,44,51,51,46,57,52,49,52,50,51,93,44,91,45,56,53,46,51,57,56,56,51,55,44,51,51,46,57,54,52,49,50,57,93,44,91,45,56,53,46,52,50,49,56,53,50,44,51,52,46,48,56,48,56,50,50,93,44,91,45,56,53,46,52,54,50,50,48,55,44,51,52,46,50,56,54,51,56,54,93,44,91,45,56,53,46,53,49,51,54,49,50,44,51,52,46,53,50,51,56,50,53,93,44,91,45,56,53,46,54,51,54,54,52,53,44,51,52,46,51,54,54,54,50,50,93,44,91,45,56,53,46,56,52,51,54,49,55,44,51,52,46,50,48,48,48,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,97,110,100,101,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,49,49,56,49,55,44,50,57,46,54,50,55,53,49,52,93,44,91,45,57,56,46,57,56,51,55,56,55,44,50,57,46,54,50,51,52,53,93,44,91,45,57,56,46,57,50,55,49,54,49,44,50,57,46,53,54,50,50,53,93,44,91,45,57,56,46,56,48,54,53,53,50,44,50,57,46,54,57,48,55,48,57,93,44,91,45,57,56,46,55,55,56,55,56,50,44,50,57,46,55,50,48,49,54,55,93,44,91,45,57,56,46,57,49,55,55,50,53,44,50,57,46,55,56,49,51,57,56,93,44,91,45,57,57,46,49,55,54,57,56,56,44,50,57,46,56,57,53,48,54,51,93,44,91,45,57,57,46,54,48,50,55,55,54,44,50,57,46,57,48,55,54,55,57,93,44,91,45,57,57,46,54,48,51,49,51,44,50,57,46,54,50,55,49,56,49,93,44,91,45,57,57,46,52,49,49,56,49,55,44,50,57,46,54,50,55,53,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,82,111,115,101,98,117,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,53,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,55,51,56,53,52,56,44,52,54,46,52,56,49,56,48,54,93,44,91,45,49,48,55,46,49,55,52,53,51,49,44,52,54,46,52,56,50,55,49,51,93,44,91,45,49,48,55,46,49,53,51,52,52,52,44,52,54,46,51,57,53,54,49,51,93,44,91,45,49,48,55,46,48,50,56,52,50,50,44,52,54,46,51,57,53,52,54,93,44,91,45,49,48,55,46,48,48,53,53,51,52,44,52,54,46,49,51,54,54,54,57,93,44,91,45,49,48,54,46,57,51,57,48,54,55,44,52,54,46,49,51,54,54,54,55,93,44,91,45,49,48,54,46,57,51,57,48,57,53,44,52,53,46,56,55,48,48,52,49,93,44,91,45,49,48,54,46,57,49,50,57,53,57,44,52,53,46,54,56,51,57,49,53,93,44,91,45,49,48,54,46,55,50,57,53,55,49,44,52,53,46,54,55,50,56,53,93,44,91,45,49,48,54,46,55,50,57,53,52,51,44,52,53,46,51,53,49,52,56,93,44,91,45,49,48,54,46,55,54,56,48,49,52,44,52,53,46,49,55,57,55,50,56,93,44,91,45,49,48,54,46,50,55,57,55,48,57,44,52,53,46,49,55,57,55,50,56,93,44,91,45,49,48,54,46,50,51,53,55,49,54,44,52,53,46,51,53,49,55,57,54,93,44,91,45,49,48,54,46,50,51,52,53,48,50,44,52,53,46,55,56,56,53,55,56,93,44,91,45,49,48,54,46,49,57,49,55,51,52,44,52,53,46,55,56,56,54,93,44,91,45,49,48,54,46,49,57,49,54,50,57,44,52,54,46,49,51,55,49,56,51,93,44,91,45,49,48,54,46,49,53,51,52,51,51,44,52,54,46,49,51,55,50,54,93,44,91,45,49,48,54,46,49,53,53,49,52,51,44,52,54,46,52,56,51,54,51,52,93,44,91,45,49,48,54,46,49,50,48,51,54,54,44,52,54,46,52,56,51,54,52,56,93,44,91,45,49,48,54,46,49,50,48,54,51,44,52,54,46,56,51,49,52,51,56,93,44,91,45,49,48,54,46,48,56,54,52,54,51,44,52,54,46,56,52,53,56,56,49,93,44,91,45,49,48,54,46,55,50,48,49,53,55,44,52,54,46,56,53,57,54,48,51,93,44,91,45,49,48,55,46,56,57,50,50,51,51,44,52,54,46,56,53,49,50,49,53,93,44,91,45,49,48,55,46,56,50,55,54,56,55,44,52,54,46,55,53,53,56,55,53,93,44,91,45,49,48,55,46,55,56,49,50,49,52,44,52,54,46,52,57,54,48,49,52,93,44,91,45,49,48,55,46,55,51,56,53,52,56,44,52,54,46,52,56,49,56,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,48,55,56,53,49,44,51,54,46,57,57,54,49,51,52,93,44,91,45,49,48,52,46,48,48,56,56,50,51,44,51,54,46,50,49,56,49,49,53,93,44,91,45,49,48,51,46,55,57,51,57,57,49,44,51,54,46,49,55,51,57,55,50,93,44,91,45,49,48,51,46,55,57,52,53,50,53,44,51,54,46,48,56,53,55,51,56,93,44,91,45,49,48,51,46,51,54,52,57,55,55,44,51,54,46,48,56,54,48,53,93,44,91,45,49,48,51,46,51,55,53,49,49,55,44,51,53,46,55,51,57,53,49,54,93,44,91,45,49,48,51,46,48,52,49,51,52,57,44,51,53,46,55,51,57,52,51,51,93,44,91,45,49,48,51,46,48,52,49,48,54,50,44,51,54,46,48,53,53,50,50,54,93,44,91,45,49,48,51,46,48,52,49,55,49,51,44,51,54,46,53,48,48,52,51,57,93,44,91,45,49,48,51,46,48,48,50,51,53,57,44,51,54,46,53,48,48,53,53,49,93,44,91,45,49,48,51,46,48,48,50,51,50,57,44,51,55,46,48,48,48,49,53,93,44,91,45,49,48,51,46,48,56,54,49,48,50,44,51,55,46,48,48,48,49,56,56,93,44,91,45,49,48,52,46,48,48,55,56,53,49,44,51,54,46,57,57,54,49,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,83,99,104,111,111,108,99,114,97,102,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,54,57,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,52,57,51,50,44,52,54,46,53,48,52,55,53,56,93,44,91,45,56,54,46,51,54,52,57,53,51,44,52,54,46,53,48,53,56,53,50,93,44,91,45,56,54,46,51,54,52,57,56,57,44,52,54,46,51,51,49,57,50,55,93,44,91,45,56,54,46,54,49,53,51,57,55,44,52,54,46,51,51,51,50,54,51,93,44,91,45,56,54,46,54,49,53,54,48,49,44,52,54,46,49,53,56,54,57,49,93,44,91,45,56,54,46,52,57,48,49,52,50,44,52,54,46,49,53,56,49,55,56,93,44,91,45,56,54,46,52,53,57,49,49,52,44,52,53,46,56,57,54,51,54,51,93,44,91,45,56,54,46,52,54,48,55,57,55,44,52,53,46,53,56,52,52,51,51,93,44,91,45,56,53,46,56,53,53,55,54,56,44,52,53,46,53,55,56,51,56,54,93,44,91,45,56,53,46,56,54,56,50,52,49,44,52,53,46,56,49,57,55,57,53,93,44,91,45,56,53,46,56,54,53,48,50,53,44,52,54,46,50,52,52,54,51,49,93,44,91,45,56,53,46,56,54,52,57,51,50,44,52,54,46,53,48,52,55,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,85,108,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,51,48,51,44,34,98,101,100,115,34,58,51,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,56,48,54,57,51,44,52,50,46,48,49,54,51,55,53,93,44,91,45,55,52,46,52,53,51,54,56,53,44,52,49,46,56,55,53,53,57,53,93,44,91,45,55,52,46,53,55,53,48,56,54,44,52,49,46,55,52,53,50,53,56,93,44,91,45,55,52,46,51,57,53,48,55,49,44,52,49,46,54,52,52,56,55,54,93,44,91,45,55,52,46,51,54,55,48,53,53,44,52,49,46,53,57,48,57,55,55,93,44,91,45,55,51,46,57,53,51,51,48,55,44,52,49,46,53,56,57,57,55,55,93,44,91,45,55,51,46,57,54,50,50,50,49,44,52,49,46,57,48,49,48,50,93,44,91,45,55,51,46,57,50,57,54,50,54,44,52,50,46,48,55,56,55,55,56,93,44,91,45,55,51,46,57,49,48,54,55,53,44,52,50,46,49,50,55,50,57,51,93,44,91,45,55,52,46,48,48,50,52,53,44,52,50,46,49,55,54,57,57,50,93,44,91,45,55,52,46,48,55,52,55,57,55,44,52,50,46,48,57,54,53,56,57,93,44,91,45,55,52,46,51,48,55,53,55,49,44,52,50,46,49,49,52,51,52,54,93,44,91,45,55,52,46,52,53,49,55,49,51,44,52,50,46,49,54,57,50,50,53,93,44,91,45,55,52,46,55,56,48,54,57,51,44,52,50,46,48,49,54,51,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,97,109,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,55,51,54,55,44,34,98,101,100,115,34,58,49,57,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,48,53,57,57,49,51,44,51,57,46,57,57,49,53,50,57,93,44,91,45,55,53,46,49,51,57,56,51,50,44,51,57,46,56,56,56,51,49,55,93,44,91,45,55,52,46,56,55,55,50,54,44,51,57,46,54,48,56,51,53,50,93,44,91,45,55,52,46,55,51,54,50,49,54,44,51,57,46,55,50,57,55,55,53,93,44,91,45,55,52,46,57,48,50,57,54,51,44,51,57,46,55,57,49,49,48,56,93,44,91,45,55,52,46,57,51,48,55,52,53,44,51,57,46,56,56,53,57,48,56,93,44,91,45,55,53,46,48,53,57,57,49,51,44,51,57,46,57,57,49,53,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,54,57,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,48,51,53,54,57,44,51,57,46,49,49,55,53,57,50,93,44,91,45,57,48,46,53,55,48,49,54,57,44,51,56,46,57,57,51,50,57,93,44,91,45,57,48,46,52,53,48,56,49,51,44,51,56,46,57,54,55,55,54,57,93,44,91,45,57,48,46,50,55,53,55,48,50,44,51,56,46,57,50,51,53,50,57,93,44,91,45,57,48,46,49,52,53,57,56,52,44,51,56,46,57,57,57,51,48,51,93,44,91,45,57,48,46,49,52,56,49,50,49,44,51,57,46,50,54,49,57,52,55,93,44,91,45,57,48,46,51,49,51,50,56,57,44,51,57,46,49,55,52,50,56,57,93,44,91,45,57,48,46,53,54,48,48,55,49,44,51,57,46,49,56,55,52,51,93,44,91,45,57,48,46,54,48,51,53,54,57,44,51,57,46,49,49,55,53,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,97,110,111,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,52,52,57,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,51,48,54,55,44,51,55,46,55,48,53,54,55,51,93,44,91,45,55,55,46,52,57,51,57,57,44,51,55,46,55,48,49,48,48,56,93,44,91,45,55,55,46,51,56,49,55,53,53,44,51,55,46,53,57,52,53,49,51,93,44,91,45,55,55,46,50,52,48,57,56,56,44,51,55,46,53,51,56,48,56,56,93,44,91,45,55,55,46,49,50,51,54,55,53,44,51,55,46,54,50,54,56,56,49,93,44,91,45,55,55,46,51,52,53,50,49,53,44,51,55,46,55,56,57,49,55,53,93,44,91,45,55,55,46,54,52,50,53,49,56,44,51,55,46,57,57,48,54,56,56,93,44,91,45,55,55,46,54,56,55,52,54,57,44,51,56,46,48,48,55,56,48,54,93,44,91,45,55,55,46,55,57,55,51,48,54,44,51,55,46,55,50,57,51,53,56,93,44,91,45,55,55,46,54,51,48,54,55,44,51,55,46,55,48,53,54,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,87,97,108,108,97,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,55,56,49,57,53,44,51,57,46,49,51,52,55,54,49,93,44,91,45,49,48,50,46,48,52,55,49,54,49,44,51,57,46,49,51,51,49,52,55,93,44,91,45,49,48,50,46,48,52,54,53,55,49,44,51,57,46,48,52,55,48,51,56,93,44,91,45,49,48,50,46,48,52,53,50,49,50,44,51,56,46,54,57,55,53,54,55,93,44,91,45,49,48,49,46,53,54,55,48,57,52,44,51,56,46,54,57,57,54,54,57,93,44,91,45,49,48,49,46,52,56,52,51,56,51,44,51,56,46,55,48,48,49,54,54,93,44,91,45,49,48,49,46,52,55,56,49,57,53,44,51,57,46,49,51,52,55,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,103,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,57,52,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,49,50,49,49,52,44,52,55,46,50,50,51,50,54,57,93,44,91,45,56,55,46,49,49,54,49,51,56,44,52,54,46,49,53,57,48,53,93,44,91,45,56,54,46,54,49,53,54,48,49,44,52,54,46,49,53,56,54,57,49,93,44,91,45,56,54,46,54,49,53,51,57,55,44,52,54,46,51,51,51,50,54,51,93,44,91,45,56,54,46,51,54,52,57,56,57,44,52,54,46,51,51,49,57,50,55,93,44,91,45,56,54,46,51,54,52,57,53,51,44,52,54,46,53,48,53,56,53,50,93,44,91,45,56,53,46,56,54,52,57,51,50,44,52,54,46,53,48,52,55,53,56,93,44,91,45,56,53,46,56,53,52,56,54,50,44,52,55,46,51,48,53,52,56,50,93,44,91,45,56,55,46,49,49,50,54,57,53,44,52,55,46,56,49,55,57,57,56,93,44,91,45,56,55,46,49,49,50,49,49,52,44,52,55,46,50,50,51,50,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,53,48,50,57,53,44,51,54,46,52,57,56,54,49,93,44,91,45,57,50,46,49,53,54,57,57,44,51,54,46,50,54,49,50,52,56,93,44,91,45,57,49,46,54,57,49,52,51,53,44,51,54,46,50,53,51,51,48,49,93,44,91,45,57,49,46,53,54,54,48,55,56,44,51,54,46,50,52,57,57,52,53,93,44,91,45,57,49,46,53,54,53,56,54,54,44,51,54,46,51,51,55,52,93,44,91,45,57,49,46,52,53,52,52,51,55,44,51,54,46,51,51,53,52,54,53,93,44,91,45,57,49,46,52,53,48,48,48,50,44,51,54,46,52,57,55,54,53,93,44,91,45,57,49,46,54,55,50,51,52,51,44,51,54,46,52,57,57,52,54,51,93,44,91,45,57,50,46,49,50,48,52,51,44,51,54,46,52,57,56,55,93,44,91,45,57,50,46,49,53,48,50,57,53,44,51,54,46,52,57,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,53,34,44,34,78,65,77,69,34,58,34,72,105,100,97,108,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,57,51,56,57,44,34,98,101,100,115,34,58,49,52,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,56,54,55,49,53,44,50,54,46,50,53,55,53,52,50,93,44,91,45,57,56,46,52,54,50,55,49,52,44,50,54,46,50,50,53,56,48,50,93,44,91,45,57,56,46,49,57,56,52,54,54,44,50,54,46,48,53,53,51,57,55,93,44,91,45,57,56,46,48,51,56,51,54,55,44,50,54,46,48,52,50,49,48,55,93,44,91,45,57,55,46,56,54,49,56,50,50,44,50,54,46,48,54,57,57,50,49,93,44,91,45,57,55,46,56,54,49,56,55,53,44,50,54,46,51,52,56,49,53,54,93,44,91,45,57,55,46,56,54,49,57,50,44,50,54,46,52,51,51,53,55,57,93,44,91,45,57,56,46,48,48,52,49,56,57,44,50,54,46,52,52,56,55,56,52,93,44,91,45,57,55,46,57,53,55,52,48,53,44,50,54,46,54,49,49,55,54,57,93,44,91,45,57,55,46,57,56,53,52,57,52,44,50,54,46,55,56,48,57,49,55,93,44,91,45,57,56,46,51,50,48,54,55,44,50,54,46,55,56,51,48,56,49,93,44,91,45,57,56,46,53,56,54,55,49,53,44,50,54,46,50,53,55,53,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,82,111,98,101,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,52,52,50,44,34,98,101,100,115,34,58,52,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,53,48,48,50,52,44,51,52,46,54,50,49,48,53,51,93,44,91,45,55,57,46,48,55,49,50,49,49,44,51,52,46,50,57,57,51,52,50,93,44,91,45,55,56,46,57,53,49,56,48,56,44,51,52,46,52,52,56,55,53,54,93,44,91,45,55,56,46,56,54,56,57,54,49,44,51,52,46,52,56,52,55,55,56,93,44,91,45,55,56,46,56,48,53,56,51,52,44,51,52,46,54,56,57,53,54,93,44,91,45,55,56,46,57,48,49,57,57,56,44,51,52,46,56,51,53,50,54,56,93,44,91,45,55,57,46,48,51,56,55,52,55,44,51,52,46,57,53,50,55,49,53,93,44,91,45,55,57,46,49,57,49,51,57,49,44,51,52,46,56,51,51,55,49,55,93,44,91,45,55,57,46,51,52,55,56,54,56,44,51,52,46,56,51,56,53,53,51,93,44,91,45,55,57,46,51,51,48,57,52,57,44,51,52,46,55,55,51,56,50,49,93,44,91,45,55,57,46,52,54,49,53,48,54,44,51,52,46,54,51,48,51,55,57,93,44,91,45,55,57,46,52,53,48,48,50,52,44,51,52,46,54,50,49,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,78,101,119,97,121,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,49,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,44,91,45,56,54,46,48,51,55,56,56,52,44,52,51,46,56,49,53,54,49,49,93,44,91,45,56,54,46,48,51,57,52,57,49,44,52,51,46,52,54,55,52,52,55,93,44,91,45,56,54,46,48,51,56,57,53,51,44,52,51,46,50,57,51,53,49,57,93,44,91,45,56,53,46,55,57,48,52,52,56,44,52,51,46,50,57,51,48,48,51,93,44,91,45,56,53,46,53,54,50,53,51,56,44,52,51,46,50,57,52,50,55,49,93,44,91,45,56,53,46,53,54,50,51,52,56,44,52,51,46,52,54,56,49,51,93,44,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,77,111,114,114,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,49,53,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,57,57,57,53,48,49,44,52,53,46,56,49,50,53,49,55,93,44,91,45,49,50,48,46,48,48,54,53,53,53,44,52,53,46,50,53,55,55,48,54,93,44,91,45,49,49,57,46,55,57,48,54,57,57,44,52,53,46,48,54,55,56,50,51,93,44,91,45,49,49,57,46,54,55,50,50,50,56,44,52,52,46,57,57,53,49,49,55,93,44,91,45,49,49,57,46,49,54,50,57,54,54,44,52,52,46,57,57,54,50,52,49,93,44,91,45,49,49,57,46,49,52,54,52,50,52,44,52,53,46,48,56,50,57,52,93,44,91,45,49,49,57,46,49,52,53,49,52,52,44,52,53,46,53,49,53,57,48,57,93,44,91,45,49,49,57,46,50,52,56,53,52,55,44,52,53,46,54,48,49,57,51,53,93,44,91,45,49,49,57,46,52,51,52,54,52,44,52,53,46,54,48,50,57,56,53,93,44,91,45,49,49,57,46,52,51,50,49,53,44,52,53,46,57,49,56,50,55,49,93,44,91,45,49,49,57,46,53,55,49,54,48,50,44,52,53,46,57,50,53,52,55,56,93,44,91,45,49,49,57,46,54,54,57,57,55,52,44,52,53,46,56,53,54,57,48,56,93,44,91,45,49,49,57,46,56,54,56,51,49,50,44,52,53,46,56,51,54,49,57,56,93,44,91,45,49,49,57,46,57,57,57,53,48,49,44,52,53,46,56,49,50,53,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,84,111,100,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,52,48,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,53,53,53,55,44,52,54,46,51,54,56,56,56,93,44,91,45,57,53,46,49,52,53,56,56,44,52,54,46,49,48,54,55,54,49,93,44,91,45,57,53,46,49,51,57,55,51,49,44,52,53,46,55,55,51,52,49,54,93,44,91,45,57,52,46,54,52,51,57,57,44,52,53,46,55,55,51,57,53,93,44,91,45,57,52,46,54,53,51,52,54,50,44,52,54,46,51,52,56,54,55,56,93,44,91,45,57,52,46,55,51,49,52,52,50,44,52,54,46,51,54,56,54,48,53,93,44,91,45,57,53,46,49,53,53,53,55,44,52,54,46,51,54,56,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,53,55,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,49,48,48,55,54,44,51,53,46,51,55,53,50,52,50,93,44,91,45,57,51,46,57,50,48,49,53,55,44,51,53,46,50,50,57,53,56,53,93,44,91,45,57,52,46,48,50,56,56,56,54,44,51,53,46,50,49,51,56,52,49,93,44,91,45,57,52,46,48,51,49,50,51,54,44,51,53,46,49,52,48,57,48,56,93,44,91,45,57,52,46,49,52,48,53,55,49,44,51,53,46,48,57,57,54,55,56,93,44,91,45,57,52,46,48,55,52,52,52,57,44,51,53,46,48,50,54,52,51,50,93,44,91,45,57,51,46,55,48,52,56,56,53,44,51,53,46,48,49,57,55,49,53,93,44,91,45,57,51,46,55,48,54,56,52,50,44,51,53,46,49,51,52,57,52,51,93,44,91,45,57,51,46,53,50,57,55,51,57,44,51,53,46,49,52,53,52,51,51,93,44,91,45,57,51,46,52,53,55,48,50,50,44,51,53,46,50,49,53,55,56,50,93,44,91,45,57,51,46,50,55,57,57,50,57,44,51,53,46,50,49,50,53,53,54,93,44,91,45,57,51,46,50,55,56,49,51,54,44,51,53,46,51,49,55,53,48,51,93,44,91,45,57,51,46,50,57,57,48,49,44,51,53,46,51,50,55,54,52,52,93,44,91,45,57,51,46,52,51,48,52,49,44,51,53,46,52,50,51,55,51,55,93,44,91,45,57,51,46,55,49,48,48,55,54,44,51,53,46,51,55,53,50,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,52,52,49,44,34,98,101,100,115,34,58,49,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,53,53,54,44,51,53,46,52,49,57,56,49,49,93,44,91,45,56,48,46,57,53,52,56,54,44,51,53,46,52,48,48,48,55,56,93,44,91,45,56,48,46,57,52,55,51,52,52,44,51,53,46,52,56,56,52,55,51,93,44,91,45,56,48,46,57,54,48,48,50,53,44,51,53,46,53,52,55,48,50,93,44,91,45,56,49,46,53,51,53,52,48,51,44,51,53,46,53,54,56,49,51,55,93,44,91,45,56,49,46,53,51,55,53,57,57,44,51,53,46,53,54,52,50,50,56,93,44,91,45,56,49,46,52,53,53,54,44,51,53,46,52,49,57,56,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,105,108,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,55,53,57,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,52,51,52,53,44,51,51,46,53,53,50,50,53,51,93,44,91,45,57,52,46,48,52,50,57,56,55,44,51,51,46,50,55,49,50,52,50,93,44,91,45,57,52,46,48,52,50,57,54,52,44,51,51,46,48,49,57,50,49,57,93,44,91,45,57,51,46,56,49,52,53,53,51,44,51,51,46,48,49,57,51,55,49,93,44,91,45,57,51,46,56,48,52,57,51,44,51,51,46,48,49,57,51,53,55,93,44,91,45,57,51,46,56,53,57,48,56,55,44,51,51,46,48,56,57,53,51,55,93,44,91,45,57,51,46,54,56,51,55,49,53,44,51,51,46,50,56,49,48,57,50,93,44,91,45,57,51,46,55,50,50,56,54,55,44,51,51,46,52,56,49,57,54,51,93,44,91,45,57,51,46,56,50,53,56,56,52,44,51,51,46,54,48,57,56,53,51,93,44,91,45,57,51,46,57,51,53,54,48,54,44,51,51,46,53,53,48,49,55,54,93,44,91,45,57,52,46,48,52,51,52,53,44,51,51,46,53,53,50,50,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,49,49,57,52,44,34,98,101,100,115,34,58,52,51,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,49,52,52,52,54,44,50,56,46,55,56,52,57,53,53,93,44,91,45,56,49,46,54,53,56,53,57,55,44,50,56,46,55,54,54,56,55,93,44,91,45,56,49,46,54,53,55,50,54,56,44,50,56,46,51,52,55,48,57,56,93,44,91,45,56,48,46,56,54,50,57,48,56,44,50,56,46,51,52,55,52,56,55,93,44,91,45,56,48,46,56,56,53,57,48,50,44,50,56,46,53,49,48,50,51,56,93,44,91,45,56,48,46,57,56,55,50,53,44,50,56,46,54,49,50,57,57,55,93,44,91,45,56,49,46,51,50,55,56,57,44,50,56,46,54,49,48,50,55,55,93,44,91,45,56,49,46,52,53,57,55,50,56,44,50,56,46,54,52,48,49,57,54,93,44,91,45,56,49,46,52,49,52,52,52,54,44,50,56,46,55,56,52,57,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,117,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,56,54,48,56,52,53,44,51,55,46,55,55,53,53,49,55,93,44,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,44,91,45,49,48,55,46,52,56,50,49,55,57,44,51,55,46,54,51,57,53,48,49,93,44,91,45,49,48,55,46,52,56,50,50,52,53,44,51,55,46,55,54,56,51,53,51,93,44,91,45,49,48,55,46,53,54,56,56,55,53,44,51,55,46,57,54,53,48,49,53,93,44,91,45,49,48,55,46,55,51,56,50,56,51,44,51,55,46,57,48,53,52,51,50,93,44,91,45,49,48,55,46,56,54,48,56,52,53,44,51,55,46,55,55,53,53,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,55,57,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,55,53,54,51,54,44,52,50,46,52,49,54,49,53,56,93,44,91,45,49,49,49,46,56,57,54,55,50,56,44,52,50,46,50,53,54,50,55,54,93,44,91,45,49,49,50,46,49,50,54,49,57,52,44,52,50,46,50,56,53,50,50,57,93,44,91,45,49,49,50,46,49,48,57,52,52,52,44,52,49,46,57,57,55,55,57,52,93,44,91,45,49,49,49,46,53,48,55,56,48,54,44,52,49,46,57,57,57,53,53,50,93,44,91,45,49,49,49,46,53,57,53,55,52,51,44,52,50,46,48,57,52,50,49,93,44,91,45,49,49,49,46,54,50,54,49,48,52,44,52,50,46,50,48,55,53,52,50,93,44,91,45,49,49,49,46,53,54,54,54,50,56,44,52,50,46,50,55,51,53,55,52,93,44,91,45,49,49,49,46,53,57,57,50,50,55,44,52,50,46,52,49,53,51,57,53,93,44,91,45,49,49,49,46,56,55,53,54,51,54,44,52,50,46,52,49,54,49,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,48,50,50,44,34,98,101,100,115,34,58,51,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,51,55,57,50,54,44,51,51,46,56,49,49,57,52,50,93,44,91,45,56,53,46,48,53,48,56,56,57,44,51,51,46,55,49,52,54,51,50,93,44,91,45,56,53,46,51,51,56,50,51,44,51,51,46,54,53,51,49,49,55,93,44,91,45,56,53,46,51,48,52,52,51,57,44,51,51,46,52,56,50,56,56,52,93,44,91,45,56,53,46,50,57,51,56,48,53,44,51,51,46,52,50,56,48,57,56,93,44,91,45,56,53,46,48,49,53,51,53,56,44,51,51,46,52,50,53,53,48,54,93,44,91,45,56,52,46,56,53,48,55,49,51,44,51,51,46,53,49,49,52,53,55,93,44,91,45,56,52,46,56,48,56,57,51,52,44,51,51,46,53,55,52,48,56,53,93,44,91,45,56,52,46,57,48,53,55,56,56,44,51,51,46,53,55,51,51,55,56,93,44,91,45,56,52,46,57,48,49,54,56,56,44,51,51,46,55,56,48,55,48,51,93,44,91,45,56,53,46,48,51,55,57,50,54,44,51,51,46,56,49,49,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,82,105,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,50,57,54,44,34,98,101,100,115,34,58,49,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,53,56,55,49,57,44,51,57,46,53,54,54,52,48,49,93,44,91,45,57,54,46,57,54,49,54,57,51,44,51,57,46,50,50,48,48,55,54,93,44,91,45,57,54,46,56,52,57,56,55,57,44,51,57,46,50,49,57,48,49,50,93,44,91,45,57,54,46,56,53,49,52,48,57,44,51,57,46,48,56,56,49,55,54,93,44,91,45,57,54,46,53,48,48,57,54,50,44,51,57,46,48,55,50,54,56,49,93,44,91,45,57,54,46,53,48,49,49,54,54,44,51,57,46,48,52,51,54,54,54,93,44,91,45,57,54,46,51,57,48,55,57,54,44,51,57,46,48,52,51,50,53,55,93,44,91,45,57,54,46,51,56,57,48,52,54,44,51,57,46,49,55,50,56,55,56,93,44,91,45,57,54,46,53,49,54,55,44,51,57,46,49,55,49,49,51,93,44,91,45,57,54,46,55,49,57,49,53,56,44,51,57,46,51,57,52,51,51,56,93,44,91,45,57,54,46,53,56,48,51,54,50,44,51,57,46,53,54,54,51,51,50,93,44,91,45,57,54,46,56,48,54,53,52,52,44,51,57,46,53,54,54,52,50,51,93,44,91,45,57,54,46,57,53,56,55,49,57,44,51,57,46,53,54,54,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,49,51,34,44,34,78,65,77,69,34,58,34,83,99,104,108,101,105,99,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,54,49,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,53,50,49,54,44,51,49,46,48,56,55,57,57,52,93,44,91,45,49,48,48,46,54,56,56,55,54,52,44,51,49,46,48,56,54,53,55,54,93,44,91,45,49,48,48,46,57,54,50,49,55,54,44,51,49,46,48,56,50,52,57,93,44,91,45,49,48,48,46,57,54,48,53,56,55,44,51,48,46,55,48,54,48,55,49,93,44,91,45,49,48,48,46,49,49,54,50,51,52,44,51,48,46,55,49,48,51,54,54,93,44,91,45,49,48,48,46,49,49,53,50,49,54,44,51,49,46,48,56,55,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,82,117,115,115,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,48,56,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,48,48,56,57,50,44,51,55,46,49,52,50,53,53,51,93,44,91,45,56,50,46,49,52,57,51,55,53,44,51,55,46,48,52,49,54,52,49,93,44,91,45,56,50,46,51,50,55,56,51,44,51,54,46,57,55,48,57,56,50,93,44,91,45,56,50,46,52,48,54,54,51,51,44,51,54,46,56,55,54,51,53,54,93,44,91,45,56,50,46,51,51,50,48,55,56,44,51,54,46,55,48,56,57,54,57,93,44,91,45,56,49,46,57,52,57,50,55,54,44,51,54,46,56,54,52,52,55,51,93,44,91,45,56,49,46,56,51,55,48,57,54,44,51,54,46,57,50,57,48,51,57,93,44,91,45,56,49,46,55,56,48,53,52,53,44,51,54,46,57,53,56,54,50,57,93,44,91,45,56,49,46,57,48,48,56,57,50,44,51,55,46,49,52,50,53,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,108,100,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,55,55,57,44,34,98,101,100,115,34,58,49,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,49,48,53,49,54,44,51,54,46,49,49,49,53,49,49,93,44,91,45,56,49,46,55,51,53,54,55,51,44,51,54,46,48,54,55,53,56,52,93,44,91,45,56,49,46,56,48,55,49,54,50,44,51,53,46,57,54,49,57,53,53,93,44,91,45,56,49,46,53,53,53,57,57,52,44,51,53,46,55,55,55,53,51,56,93,44,91,45,56,49,46,51,54,51,55,57,54,44,51,53,46,55,54,55,56,48,50,93,44,91,45,56,49,46,51,51,52,50,55,50,44,51,53,46,55,57,54,50,56,49,93,44,91,45,56,49,46,51,50,56,51,50,52,44,51,53,46,57,57,54,53,56,51,93,44,91,45,56,49,46,53,52,53,52,56,56,44,51,54,46,49,49,55,52,55,53,93,44,91,45,56,49,46,56,49,48,53,49,54,44,51,54,46,49,49,49,53,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,55,48,53,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,57,55,54,56,52,57,44,52,51,46,57,50,55,51,56,53,93,44,91,45,49,49,49,46,57,51,52,51,53,55,44,52,51,46,55,54,54,49,54,93,44,91,45,49,49,49,46,54,50,54,48,52,51,44,52,51,46,54,50,54,55,53,54,93,44,91,45,49,49,49,46,51,57,57,55,54,53,44,52,51,46,54,50,49,57,55,54,93,44,91,45,49,49,49,46,51,57,56,55,56,49,44,52,51,46,57,50,50,56,57,93,44,91,45,49,49,49,46,53,53,56,56,51,51,44,52,51,46,56,56,51,51,48,53,93,44,91,45,49,49,49,46,57,55,54,56,52,57,44,52,51,46,57,50,55,51,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,87,97,114,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,57,50,56,44,34,98,101,100,115,34,58,51,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,49,54,56,57,51,44,51,56,46,50,52,54,48,55,55,93,44,91,45,56,55,46,52,54,55,50,56,52,44,51,56,46,49,54,53,52,48,51,93,44,91,45,56,55,46,52,53,49,49,57,57,44,51,55,46,57,52,48,57,53,52,93,44,91,45,56,55,46,51,48,50,57,51,50,44,51,55,46,56,57,55,55,53,93,44,91,45,56,55,46,50,54,56,57,57,53,44,51,55,46,56,55,56,48,50,54,93,44,91,45,56,55,46,50,50,53,55,48,49,44,51,55,46,57,55,49,54,54,55,93,44,91,45,56,55,46,48,49,55,52,53,51,44,51,56,46,49,49,56,51,48,49,93,44,91,45,56,55,46,48,49,55,52,57,44,51,56,46,50,48,51,53,56,93,44,91,45,56,55,46,48,55,51,48,54,55,44,51,56,46,50,51,50,53,57,54,93,44,91,45,56,55,46,51,49,54,56,57,51,44,51,56,46,50,52,54,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,53,50,55,55,49,44,51,55,46,49,57,50,52,51,50,93,44,91,45,56,53,46,53,50,54,56,56,49,44,51,55,46,49,48,57,52,53,93,44,91,45,56,53,46,52,53,49,56,51,44,51,54,46,57,51,56,49,51,56,93,44,91,45,56,53,46,50,51,50,48,50,54,44,51,54,46,57,50,53,48,54,57,93,44,91,45,56,53,46,50,48,53,56,51,49,44,51,54,46,57,57,54,56,54,50,93,44,91,45,56,53,46,48,52,51,51,49,54,44,51,55,46,49,56,54,48,50,56,93,44,91,45,56,53,46,48,53,54,56,57,56,44,51,55,46,50,53,55,48,52,49,93,44,91,45,56,53,46,49,54,53,49,55,52,44,51,55,46,51,49,48,51,57,54,93,44,91,45,56,53,46,51,53,50,55,55,49,44,51,55,46,49,57,50,52,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,97,108,108,97,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,50,51,53,49,57,44,51,56,46,55,54,49,56,55,93,44,91,45,56,52,46,57,51,52,53,51,54,44,51,56,46,54,54,50,49,51,93,44,91,45,56,52,46,55,56,53,55,56,56,44,51,56,46,55,50,48,52,53,57,93,44,91,45,56,52,46,54,54,48,49,48,55,44,51,56,46,55,55,55,50,57,51,93,44,91,45,56,52,46,55,57,53,48,51,57,44,51,56,46,56,53,55,50,55,93,44,91,45,56,53,46,48,50,51,53,49,57,44,51,56,46,55,54,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,54,56,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,48,53,51,52,54,44,51,56,46,53,56,50,48,51,57,93,44,91,45,56,52,46,52,55,54,50,57,57,44,51,56,46,53,52,50,55,50,51,93,44,91,45,56,52,46,53,53,55,51,55,53,44,51,56,46,52,57,50,57,49,55,93,44,91,45,56,52,46,52,53,57,57,48,54,44,51,56,46,51,55,56,57,57,53,93,44,91,45,56,52,46,52,52,50,54,54,49,44,51,56,46,50,56,51,50,51,54,93,44,91,45,56,52,46,51,52,53,52,55,54,44,51,56,46,50,56,53,48,57,57,93,44,91,45,56,52,46,49,57,52,48,53,44,51,56,46,51,55,49,55,53,93,44,91,45,56,52,46,49,48,50,49,44,51,56,46,52,53,57,51,55,57,93,44,91,45,56,52,46,49,54,50,48,51,49,44,51,56,46,53,53,52,49,50,53,93,44,91,45,56,52,46,50,48,53,51,52,54,44,51,56,46,53,56,50,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,83,97,103,97,100,97,104,111,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,50,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,48,48,53,52,55,49,44,52,52,46,49,50,52,53,49,57,93,44,91,45,55,48,46,48,51,52,50,51,56,44,52,51,46,57,55,53,54,54,49,93,44,91,45,54,57,46,56,57,51,50,51,50,44,52,51,46,56,55,56,53,49,56,93,44,91,45,54,57,46,56,56,49,56,57,53,44,52,51,46,54,51,54,52,54,54,93,44,91,45,54,57,46,54,54,52,55,52,53,44,52,51,46,55,49,49,55,52,56,93,44,91,45,54,57,46,55,48,48,48,57,55,44,52,52,46,48,48,54,54,56,53,93,44,91,45,54,57,46,56,49,51,53,52,57,44,52,52,46,48,50,54,48,49,49,93,44,91,45,54,57,46,55,53,56,50,48,56,44,52,52,46,49,51,57,51,51,52,93,44,91,45,55,48,46,48,48,53,52,55,49,44,52,52,46,49,50,52,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,83,119,101,101,116,32,71,114,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,50,56,49,57,49,54,44,52,54,46,49,56,52,51,57,55,93,44,91,45,49,49,48,46,50,57,50,54,54,50,44,52,53,46,55,56,53,48,53,55,93,44,91,45,49,49,48,46,50,50,48,57,48,56,44,52,53,46,55,56,52,57,55,51,93,44,91,45,49,49,48,46,50,50,56,48,53,50,44,52,53,46,49,55,50,49,50,57,93,44,91,45,49,49,48,46,48,54,52,53,49,56,44,52,53,46,49,55,50,49,50,57,93,44,91,45,49,49,48,46,48,54,52,53,56,49,44,52,53,46,51,52,56,55,53,53,93,44,91,45,49,48,57,46,57,51,49,57,56,52,44,52,53,46,51,52,56,55,53,53,93,44,91,45,49,48,57,46,57,51,50,48,50,53,44,52,53,46,53,50,50,52,53,54,93,44,91,45,49,48,57,46,54,56,53,51,56,53,44,52,53,46,54,48,57,48,50,50,93,44,91,45,49,48,57,46,53,54,50,48,55,44,52,53,46,54,48,57,49,49,57,93,44,91,45,49,48,57,46,53,54,51,57,48,55,44,52,53,46,55,56,51,52,55,49,93,44,91,45,49,48,57,46,53,48,54,54,48,52,44,52,53,46,57,53,57,49,49,50,93,44,91,45,49,48,57,46,52,49,55,49,53,56,44,52,54,46,48,52,52,55,53,57,93,44,91,45,49,48,57,46,54,48,53,49,53,51,44,52,54,46,48,52,52,57,57,52,93,44,91,45,49,48,57,46,54,53,51,56,55,49,44,52,54,46,50,49,57,52,48,52,93,44,91,45,49,49,48,46,50,56,49,57,55,49,44,52,54,46,50,50,48,54,48,53,93,44,91,45,49,49,48,46,50,56,49,57,49,54,44,52,54,46,49,56,52,51,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,71,114,97,121,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,53,54,48,44,34,98,101,100,115,34,58,54,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,52,52,54,49,49,44,51,51,46,57,52,57,50,49,55,93,44,91,45,57,54,46,57,52,51,56,54,44,51,51,46,52,49,54,52,49,93,44,91,45,57,54,46,56,51,52,49,49,44,51,51,46,52,48,53,52,57,56,93,44,91,45,57,54,46,51,56,52,54,48,50,44,51,51,46,51,57,55,56,50,54,93,44,91,45,57,54,46,51,55,57,52,53,50,44,51,51,46,55,50,53,55,54,52,93,44,91,45,57,54,46,53,48,48,57,56,52,44,51,51,46,55,55,50,56,48,49,93,44,91,45,57,54,46,53,56,56,53,48,50,44,51,51,46,56,57,52,57,56,51,93,44,91,45,57,54,46,54,57,48,55,48,56,44,51,51,46,56,52,57,57,53,57,93,44,91,45,57,54,46,56,54,54,52,51,56,44,51,51,46,56,53,51,49,52,57,93,44,91,45,57,54,46,57,51,52,56,52,44,51,51,46,57,53,52,52,53,51,93,44,91,45,57,54,46,57,52,52,54,49,49,44,51,51,46,57,52,57,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,49,52,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,48,57,49,44,51,57,46,57,54,50,50,93,44,91,45,56,48,46,53,49,57,51,52,50,44,51,57,46,55,50,49,52,48,51,93,44,91,45,56,48,46,52,50,49,51,56,56,44,51,57,46,55,50,49,49,56,57,93,44,91,45,55,57,46,57,49,54,50,56,44,51,57,46,55,50,48,55,55,55,93,44,91,45,55,57,46,57,50,53,53,57,55,44,51,57,46,57,50,52,55,57,53,93,44,91,45,55,57,46,57,57,56,48,49,52,44,51,57,46,57,56,51,51,50,50,93,44,91,45,56,48,46,50,56,55,52,50,49,44,52,48,46,48,49,57,50,48,54,93,44,91,45,56,48,46,53,49,57,48,57,49,44,51,57,46,57,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,56,56,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,56,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,119,101,115,116,32,65,114,99,116,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,51,52,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,53,46,51,49,56,55,52,52,44,54,56,46,48,48,48,48,51,50,93,44,91,45,49,53,53,46,51,49,56,55,52,56,44,54,56,46,48,51,52,57,52,50,93,44,91,45,49,53,54,46,50,51,54,56,49,55,44,54,56,46,48,51,52,57,50,54,93,44,91,45,49,53,54,46,50,51,54,56,51,49,44,54,56,46,49,50,49,52,57,56,93,44,91,45,49,53,55,46,49,53,52,57,49,44,54,56,46,49,50,49,52,56,51,93,44,91,45,49,53,55,46,49,53,52,57,50,52,44,54,56,46,50,48,56,48,53,52,93,44,91,45,49,53,56,46,52,53,55,56,51,54,44,54,56,46,50,48,56,48,49,54,93,44,91,45,49,53,57,46,54,57,51,52,55,55,44,54,56,46,50,48,55,57,57,50,93,44,91,45,49,53,57,46,54,57,51,52,56,55,44,54,56,46,50,57,52,53,54,52,93,44,91,45,49,54,48,46,49,53,57,52,53,50,44,54,56,46,50,57,52,53,53,51,93,44,91,45,49,54,48,46,49,53,57,52,52,44,54,56,46,50,48,55,57,56,50,93,44,91,45,49,54,49,46,48,57,49,51,53,49,44,54,56,46,50,48,55,57,54,49,93,44,91,45,49,54,49,46,48,57,49,51,54,52,44,54,56,46,50,57,52,53,51,50,93,44,91,45,49,54,49,46,53,53,55,51,50,44,54,56,46,50,57,52,53,50,49,93,44,91,45,49,54,49,46,53,53,55,51,50,56,44,54,56,46,50,48,55,57,52,57,93,44,91,45,49,54,50,46,48,50,51,50,54,49,44,54,56,46,50,48,55,57,52,93,44,91,45,49,54,50,46,48,50,51,50,55,51,44,54,56,46,50,57,52,53,49,49,93,44,91,45,49,54,50,46,55,50,50,50,48,50,44,54,56,46,50,57,52,52,57,54,93,44,91,45,49,54,50,46,55,50,50,49,57,44,54,56,46,50,48,55,57,50,54,93,44,91,45,49,54,52,46,52,57,57,52,54,51,44,54,56,46,50,48,55,56,57,93,44,91,45,49,54,52,46,52,57,57,52,51,55,44,54,56,46,48,51,52,55,52,56,93,44,91,45,49,54,53,46,53,57,54,48,52,54,44,54,56,46,48,51,52,55,50,55,93,44,91,45,49,54,53,46,52,57,57,52,53,51,44,54,56,46,48,49,56,55,56,50,93,44,91,45,49,54,52,46,54,54,52,57,50,49,44,54,55,46,54,57,56,50,49,54,93,44,91,45,49,54,52,46,49,55,53,52,50,57,44,54,55,46,53,52,55,53,57,57,93,44,91,45,49,54,52,46,48,48,52,53,49,44,54,55,46,51,57,55,56,48,56,93,44,91,45,49,54,51,46,56,56,50,53,51,52,44,54,55,46,50,49,52,57,55,54,93,44,91,45,49,54,51,46,57,57,49,50,51,44,54,55,46,49,52,55,56,56,51,93,44,91,45,49,54,51,46,55,56,49,53,50,52,44,54,55,46,48,54,57,55,54,93,44,91,45,49,54,51,46,48,52,57,52,55,49,44,54,54,46,57,56,54,54,49,49,93,44,91,45,49,54,50,46,56,51,50,48,51,50,44,54,54,46,57,50,54,56,49,51,93,44,91,45,49,54,51,46,54,50,54,50,49,53,44,54,54,46,54,50,52,49,55,52,93,44,91,45,49,54,51,46,56,48,53,48,57,51,44,54,54,46,54,52,49,50,56,54,93,44,91,45,49,54,52,46,52,54,49,52,52,57,44,54,54,46,54,50,54,53,48,57,93,44,91,45,49,54,52,46,51,49,56,57,51,54,44,54,54,46,52,55,54,51,49,57,93,44,91,45,49,54,52,46,51,49,56,57,49,51,44,54,54,46,49,50,57,57,52,52,93,44,91,45,49,54,52,46,50,52,52,49,57,49,44,54,54,46,49,50,57,57,52,54,93,44,91,45,49,54,52,46,50,52,52,49,50,55,44,54,53,46,55,56,51,53,53,51,93,44,91,45,49,54,51,46,57,54,51,53,49,54,44,54,53,46,55,56,51,53,54,49,93,44,91,45,49,54,51,46,57,54,51,52,57,56,44,54,53,46,54,49,48,51,54,51,93,44,91,45,49,54,51,46,55,53,53,52,48,55,44,54,53,46,54,49,48,51,54,55,93,44,91,45,49,54,51,46,55,53,53,51,57,49,44,54,53,46,52,51,55,49,54,53,93,44,91,45,49,54,49,46,53,52,54,56,57,50,44,54,53,46,52,51,55,50,48,51,93,44,91,45,49,53,57,46,56,48,49,54,57,50,44,54,53,46,52,51,55,50,51,49,93,44,91,45,49,53,57,46,53,57,51,53,48,54,44,54,53,46,53,50,51,56,51,53,93,44,91,45,49,53,57,46,54,48,52,56,49,51,44,54,53,46,57,53,54,56,51,93,44,91,45,49,53,56,46,57,55,50,49,55,53,44,54,53,46,57,53,54,56,52,57,93,44,91,45,49,53,56,46,57,55,50,49,56,53,44,54,54,46,49,51,48,48,50,55,93,44,91,45,49,53,55,46,57,48,54,50,57,53,44,54,54,46,49,51,48,48,52,57,93,44,91,45,49,53,55,46,57,48,54,51,49,44,54,54,46,52,55,54,52,50,52,93,44,91,45,49,53,55,46,48,53,49,50,56,52,44,54,54,46,52,55,54,52,51,56,93,44,91,45,49,53,55,46,48,53,49,50,54,54,44,54,54,46,51,48,51,50,53,52,93,44,91,45,49,53,54,46,54,50,51,55,53,55,44,54,54,46,51,48,51,50,53,57,93,44,91,45,49,53,54,46,54,50,51,55,55,44,54,54,46,52,55,54,52,52,50,93,44,91,45,49,53,54,46,49,57,54,50,50,52,44,54,54,46,52,55,54,53,56,50,93,44,91,45,49,53,53,46,57,56,50,53,48,52,44,54,54,46,51,56,57,56,54,93,44,91,45,49,53,53,46,57,56,50,52,57,57,44,54,54,46,51,48,51,50,54,56,93,44,91,45,49,53,53,46,53,53,52,57,57,51,44,54,54,46,51,48,51,50,55,52,93,44,91,45,49,53,53,46,53,49,48,53,56,53,44,54,54,46,53,54,51,48,53,49,93,44,91,45,49,53,52,46,56,54,48,52,51,49,44,54,54,46,53,54,51,48,54,52,93,44,91,45,49,53,52,46,56,54,48,52,52,54,44,54,54,46,55,51,54,50,52,50,93,44,91,45,49,53,52,46,50,49,48,51,48,50,44,54,54,46,55,51,54,50,53,53,93,44,91,45,49,53,52,46,49,52,54,50,50,49,44,54,54,46,56,50,50,56,52,51,93,44,91,45,49,53,52,46,49,52,54,51,49,52,44,54,55,46,49,54,57,49,55,56,93,44,91,45,49,53,52,46,51,48,51,49,49,44,54,55,46,50,53,53,55,53,57,93,44,91,45,49,53,52,46,55,52,56,57,48,52,44,54,55,46,50,53,53,55,53,51,93,44,91,45,49,53,52,46,55,52,56,57,51,57,44,54,55,46,53,49,53,52,57,53,93,44,91,45,49,53,53,46,51,54,56,57,57,57,44,54,55,46,55,55,53,50,49,54,93,44,91,45,49,53,53,46,51,49,56,55,52,52,44,54,56,46,48,48,48,48,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,69,108,108,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,56,55,56,44,34,98,101,100,115,34,58,49,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,57,49,55,55,54,44,51,57,46,49,51,50,51,53,55,93,44,91,45,57,57,46,53,57,56,51,50,51,44,51,56,46,54,57,54,53,49,52,93,44,91,45,57,57,46,53,56,53,48,56,55,44,51,56,46,54,57,54,53,51,55,93,44,91,45,57,57,46,48,52,50,54,50,54,44,51,56,46,54,57,54,56,48,55,93,44,91,45,57,57,46,48,51,55,53,44,51,57,46,49,51,51,49,50,49,93,44,91,45,57,57,46,48,52,55,54,56,55,44,51,57,46,49,51,51,48,49,52,93,44,91,45,57,57,46,53,57,49,55,55,54,44,51,57,46,49,51,50,51,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,56,55,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,49,53,55,48,57,44,51,51,46,48,48,54,56,50,52,93,44,91,45,56,55,46,56,51,49,53,56,54,44,51,50,46,56,54,52,56,54,54,93,44,91,45,56,55,46,55,56,54,53,55,49,44,51,50,46,54,56,50,52,56,49,93,44,91,45,56,55,46,56,49,50,53,53,57,44,51,50,46,53,50,52,53,54,93,44,91,45,56,55,46,55,50,56,55,52,52,44,51,50,46,52,56,48,57,49,56,93,44,91,45,56,55,46,53,50,52,52,56,53,44,51,50,46,52,56,50,48,50,56,93,44,91,45,56,55,46,52,55,51,57,49,53,44,51,50,46,54,53,53,56,54,55,93,44,91,45,56,55,46,52,55,50,49,55,52,44,51,50,46,56,51,48,54,50,93,44,91,45,56,55,46,52,50,49,50,44,51,50,46,56,55,52,53,48,56,93,44,91,45,56,55,46,52,50,49,57,51,54,44,51,51,46,48,48,51,51,55,57,93,44,91,45,56,55,46,55,49,53,55,48,57,44,51,51,46,48,48,54,56,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,50,49,50,44,51,50,46,56,55,52,53,48,56,93,44,91,45,56,55,46,52,55,50,49,55,52,44,51,50,46,56,51,48,54,50,93,44,91,45,56,55,46,52,55,51,57,49,53,44,51,50,46,54,53,53,56,54,55,93,44,91,45,56,55,46,53,50,52,52,56,53,44,51,50,46,52,56,50,48,50,56,93,44,91,45,56,55,46,52,55,51,48,56,44,51,50,46,51,48,55,54,49,52,93,44,91,45,56,55,46,52,50,51,49,53,51,44,51,50,46,52,56,50,57,54,53,93,44,91,45,56,55,46,49,49,50,51,54,50,44,51,50,46,52,56,56,54,53,93,44,91,45,56,55,46,48,49,55,55,54,50,44,51,50,46,55,50,57,53,51,50,93,44,91,45,56,55,46,48,49,57,49,53,55,44,51,50,46,56,51,55,48,51,52,93,44,91,45,56,55,46,51,49,57,49,56,52,44,51,50,46,56,51,49,53,50,50,93,44,91,45,56,55,46,52,50,49,50,44,51,50,46,56,55,52,53,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,111,108,98,101,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,52,57,53,44,34,98,101,100,115,34,58,51,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,50,54,53,49,44,51,52,46,56,48,48,48,50,50,93,44,91,45,56,55,46,53,50,52,51,54,51,44,51,52,46,56,51,50,51,56,52,93,44,91,45,56,55,46,56,51,53,56,51,51,44,51,52,46,55,52,49,50,51,57,93,44,91,45,56,55,46,57,55,51,50,50,50,44,51,52,46,56,56,50,53,53,93,44,91,45,56,56,46,48,57,55,56,56,56,44,51,52,46,56,57,50,50,48,50,93,44,91,45,56,56,46,49,51,57,57,56,56,44,51,52,46,53,56,49,55,48,51,93,44,91,45,56,55,46,53,50,57,54,54,55,44,51,52,46,53,54,55,48,56,49,93,44,91,45,56,55,46,52,51,51,48,54,44,51,52,46,55,49,55,52,56,53,93,44,91,45,56,55,46,52,50,54,53,49,44,51,52,46,56,48,48,48,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,80,114,97,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,56,50,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,49,51,53,53,44,51,55,46,55,51,50,57,55,93,44,91,45,57,57,46,48,49,50,53,57,56,44,51,55,46,52,55,48,52,50,49,93,44,91,45,57,56,46,52,54,52,54,54,51,44,51,55,46,52,55,49,48,49,51,93,44,91,45,57,56,46,52,54,52,56,48,52,44,51,55,46,55,51,50,54,55,53,93,44,91,45,57,56,46,52,55,50,50,53,55,44,51,55,46,56,50,52,52,57,55,93,44,91,45,57,57,46,48,49,51,51,49,56,44,51,55,46,56,50,53,51,51,54,93,44,91,45,57,57,46,48,49,51,53,53,44,51,55,46,55,51,50,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,111,117,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,52,52,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,57,52,48,53,44,51,56,46,51,55,49,55,53,93,44,91,45,56,52,46,51,52,53,52,55,54,44,51,56,46,50,56,53,48,57,57,93,44,91,45,56,52,46,52,52,50,54,54,49,44,51,56,46,50,56,51,50,51,54,93,44,91,45,56,52,46,52,48,49,56,52,55,44,51,56,46,50,48,55,56,56,57,93,44,91,45,56,52,46,51,56,48,55,56,56,44,51,56,46,49,49,51,57,54,93,44,91,45,56,52,46,50,56,54,52,54,49,44,51,56,46,48,54,55,48,50,56,93,44,91,45,56,52,46,48,56,48,53,50,55,44,51,56,46,49,49,53,49,49,56,93,44,91,45,56,51,46,57,55,55,57,50,52,44,51,56,46,49,57,50,49,49,56,93,44,91,45,56,52,46,48,54,50,54,57,49,44,51,56,46,50,51,53,50,48,51,93,44,91,45,56,52,46,49,57,52,48,53,44,51,56,46,51,55,49,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,82,117,116,104,101,114,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,55,49,50,56,44,34,98,101,100,115,34,58,56,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,49,56,56,57,50,44,51,53,46,57,54,56,50,50,52,93,44,91,45,56,54,46,54,49,51,51,50,56,44,51,53,46,55,57,48,51,51,49,93,44,91,45,56,54,46,54,56,54,49,57,51,44,51,53,46,55,49,48,48,53,49,93,44,91,45,56,54,46,54,51,57,52,51,54,44,51,53,46,54,56,53,57,93,44,91,45,56,54,46,53,52,51,49,49,54,44,51,53,46,54,57,55,54,49,55,93,44,91,45,56,54,46,52,49,51,54,55,56,44,51,53,46,54,50,51,49,55,55,93,44,91,45,56,54,46,50,52,53,49,54,53,44,51,53,46,54,51,49,57,49,51,93,44,91,45,56,54,46,50,48,55,49,52,55,44,51,53,46,55,48,51,55,57,93,44,91,45,56,54,46,49,53,51,50,49,52,44,51,53,46,57,53,52,51,57,57,93,44,91,45,56,54,46,51,50,54,50,53,50,44,51,53,46,57,56,53,48,48,56,93,44,91,45,56,54,46,53,49,53,53,56,57,44,51,54,46,49,48,48,54,49,93,44,91,45,56,54,46,54,49,56,56,57,50,44,51,53,46,57,54,56,50,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,67,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,56,52,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,49,50,54,48,55,44,51,49,46,51,50,55,52,48,53,93,44,91,45,56,51,46,53,48,57,56,49,44,51,49,46,50,48,54,49,56,49,93,44,91,45,56,51,46,53,55,52,56,53,55,44,51,49,46,48,55,56,49,51,53,93,44,91,45,56,51,46,52,55,53,54,49,55,44,51,49,46,48,51,49,57,54,52,93,44,91,45,56,51,46,50,57,53,48,53,50,44,51,49,46,48,50,55,50,55,56,93,44,91,45,56,51,46,51,51,53,57,52,57,44,51,49,46,50,52,52,53,55,57,93,44,91,45,56,51,46,52,51,52,52,57,50,44,51,49,46,51,53,48,51,54,49,93,44,91,45,56,51,46,53,49,50,54,48,55,44,51,49,46,51,50,55,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,76,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,52,55,50,44,51,56,46,54,57,56,49,54,53,93,44,91,45,49,48,48,46,54,56,56,48,48,54,44,51,56,46,55,48,48,48,50,49,93,44,91,45,49,48,48,46,54,56,52,54,57,57,44,51,56,46,50,54,52,49,51,55,93,44,91,45,49,48,48,46,50,52,52,51,57,51,44,51,56,46,50,54,50,50,57,93,44,91,45,49,48,48,46,50,52,55,50,44,51,56,46,54,57,56,49,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,97,114,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,52,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,52,49,49,49,54,44,51,54,46,57,57,57,54,49,93,44,91,45,49,48,48,46,48,48,50,53,54,51,44,51,55,46,48,48,49,55,48,54,93,44,91,45,49,48,48,46,48,48,51,49,54,44,51,54,46,53,57,51,50,53,93,44,91,45,57,57,46,54,48,53,54,51,52,44,51,54,46,53,57,50,55,53,52,93,44,91,45,57,57,46,50,57,53,49,57,51,44,51,54,46,53,57,53,48,51,49,93,44,91,45,57,57,46,50,57,53,49,56,54,44,51,54,46,56,49,57,53,54,54,93,44,91,45,57,57,46,52,53,54,50,48,51,44,51,54,46,57,57,57,52,55,49,93,44,91,45,57,57,46,53,52,49,49,49,54,44,51,54,46,57,57,57,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,80,105,97,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,50,55,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,52,53,49,54,52,44,52,48,46,48,53,53,49,57,49,93,44,91,45,56,56,46,55,52,53,54,55,49,44,51,57,46,55,57,50,49,52,54,93,44,91,45,56,56,46,52,55,51,49,56,50,44,51,57,46,55,57,49,56,51,55,93,44,91,45,56,56,46,52,54,50,50,48,55,44,51,57,46,56,55,57,48,57,50,93,44,91,45,56,56,46,52,54,48,52,49,56,44,52,48,46,50,56,49,57,51,53,93,44,91,45,56,56,46,53,55,52,56,56,53,44,52,48,46,50,56,49,53,48,49,93,44,91,45,56,56,46,55,52,53,49,54,52,44,52,48,46,48,53,53,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,67,114,111,115,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,54,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,44,91,45,49,48,49,46,53,54,51,53,56,44,51,51,46,56,51,48,52,53,49,93,44,91,45,49,48,49,46,53,53,54,56,56,52,44,51,51,46,51,57,52,55,54,93,44,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,44,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,70,97,106,97,114,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,48,48,49,44,34,98,101,100,115,34,58,50,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,54,52,54,48,56,51,44,49,56,46,52,52,50,50,50,93,44,91,45,54,53,46,54,56,53,57,50,44,49,56,46,51,50,57,57,57,49,93,44,91,45,54,53,46,55,53,51,53,57,49,44,49,56,46,50,57,54,55,53,53,93,44,91,45,54,53,46,54,50,52,54,48,53,44,49,56,46,50,56,55,55,52,53,93,44,91,45,54,53,46,52,54,57,49,51,50,44,49,56,46,51,57,54,52,49,93,44,91,45,54,53,46,54,52,54,48,56,51,44,49,56,46,52,52,50,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,50,54,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,55,49,56,53,50,44,51,50,46,57,57,53,56,54,93,44,91,45,56,56,46,50,48,55,51,49,54,44,51,50,46,57,50,52,55,56,50,93,44,91,45,56,56,46,49,51,50,54,56,53,44,51,50,46,56,51,50,56,53,51,93,44,91,45,56,56,46,48,53,53,48,48,52,44,51,50,46,54,52,54,52,56,50,93,44,91,45,56,55,46,57,50,56,54,56,57,44,51,50,46,54,51,50,50,56,52,93,44,91,45,56,55,46,56,53,51,52,50,44,51,50,46,53,51,50,48,56,54,93,44,91,45,56,55,46,56,49,50,53,53,57,44,51,50,46,53,50,52,53,54,93,44,91,45,56,55,46,55,56,54,53,55,49,44,51,50,46,54,56,50,52,56,49,93,44,91,45,56,55,46,56,51,49,53,56,54,44,51,50,46,56,54,52,56,54,54,93,44,91,45,56,55,46,55,49,53,55,48,57,44,51,51,46,48,48,54,56,50,52,93,44,91,45,56,55,46,56,51,50,50,51,51,44,51,51,46,48,49,55,50,53,56,93,44,91,45,56,55,46,56,51,55,53,50,49,44,51,51,46,49,53,51,54,51,55,93,44,91,45,56,56,46,49,55,49,56,53,50,44,51,50,46,57,57,53,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,54,49,55,51,52,53,44,52,52,46,53,53,48,51,57,50,93,44,91,45,49,49,49,46,56,54,51,54,53,55,44,52,52,46,53,53,49,50,52,52,93,44,91,45,49,49,50,46,48,57,54,52,56,52,44,52,52,46,53,50,50,57,57,50,93,44,91,45,49,49,50,46,50,56,56,54,55,51,44,52,52,46,53,54,55,57,49,93,44,91,45,49,49,50,46,52,55,51,52,49,57,44,52,52,46,52,55,57,51,53,57,93,44,91,45,49,49,50,46,55,49,55,57,51,44,52,52,46,53,48,52,50,55,51,93,44,91,45,49,49,50,46,56,49,51,56,48,53,44,52,52,46,51,55,54,52,53,53,93,44,91,45,49,49,50,46,56,49,51,55,57,50,44,52,52,46,50,51,48,50,56,49,93,44,91,45,49,49,50,46,57,57,53,48,57,49,44,52,52,46,50,51,52,49,50,54,93,44,91,45,49,49,50,46,57,57,52,51,50,51,44,52,51,46,57,55,50,51,54,50,93,44,91,45,49,49,50,46,54,57,53,50,52,50,44,52,51,46,57,55,49,57,52,49,93,44,91,45,49,49,50,46,54,57,52,55,52,52,44,52,52,46,48,53,56,52,54,52,93,44,91,45,49,49,50,46,49,53,53,57,51,53,44,52,52,46,48,53,55,55,56,93,44,91,45,49,49,50,46,48,51,51,54,54,52,44,52,52,46,49,52,52,48,52,57,93,44,91,45,49,49,49,46,56,53,55,56,53,49,44,52,52,46,49,56,55,55,53,57,93,44,91,45,49,49,49,46,56,53,50,50,55,54,44,52,52,46,51,49,54,57,57,54,93,44,91,45,49,49,49,46,55,57,49,54,50,52,44,52,52,46,52,48,49,54,49,93,44,91,45,49,49,49,46,54,49,55,52,51,55,44,52,52,46,52,48,49,50,53,52,93,44,91,45,49,49,49,46,54,49,55,51,52,53,44,52,52,46,53,53,48,51,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,75,111,115,115,117,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,52,51,49,51,55,44,52,51,46,50,53,53,48,49,52,93,44,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,44,91,45,57,51,46,57,55,49,50,51,56,44,52,50,46,57,48,55,55,54,50,93,44,91,45,57,51,46,57,55,48,52,49,53,44,52,51,46,50,53,53,51,53,56,93,44,91,45,57,51,46,57,55,48,55,54,50,44,52,51,46,52,57,57,56,56,54,93,44,91,45,57,52,46,50,52,55,57,54,56,44,52,51,46,53,48,48,49,51,51,93,44,91,45,57,52,46,52,52,50,56,53,44,52,51,46,53,48,48,52,50,50,93,44,91,45,57,52,46,52,52,51,49,51,55,44,52,51,46,50,53,53,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,89,97,98,117,99,111,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,49,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,50,54,50,50,55,44,49,56,46,49,49,57,57,54,51,93,44,91,45,54,54,46,48,49,48,50,52,53,44,49,56,46,48,55,53,53,54,53,93,44,91,45,54,53,46,57,56,56,53,50,51,44,49,56,46,48,53,56,57,52,49,93,44,91,45,54,53,46,56,54,55,56,48,50,44,49,56,46,48,50,54,48,48,55,93,44,91,45,54,53,46,56,49,54,52,52,57,44,49,55,46,57,54,53,53,48,52,93,44,91,45,54,53,46,55,51,57,49,49,50,44,49,56,46,48,55,48,55,55,56,93,44,91,45,54,53,46,56,55,55,54,49,53,44,49,56,46,49,49,56,49,54,55,93,44,91,45,54,53,46,57,50,54,50,50,55,44,49,56,46,49,49,57,57,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,117,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,57,51,56,57,53,55,44,52,56,46,57,57,57,51,51,93,44,91,45,49,48,50,46,57,51,57,57,51,50,44,52,56,46,55,50,48,52,54,57,93,44,91,45,49,48,50,46,56,56,53,55,55,53,44,52,56,46,54,51,51,50,57,56,93,44,91,45,49,48,50,46,56,56,53,55,54,51,44,52,56,46,53,52,54,51,57,93,44,91,45,49,48,50,46,50,51,51,56,57,50,44,52,56,46,53,52,54,51,51,57,93,44,91,45,49,48,50,46,50,51,51,54,44,52,56,46,55,50,48,50,57,93,44,91,45,49,48,50,46,49,53,50,49,54,52,44,52,56,46,56,48,55,50,93,44,91,45,49,48,50,46,48,50,49,54,52,51,44,52,56,46,56,48,55,49,48,56,93,44,91,45,49,48,50,46,48,50,49,49,52,52,44,52,56,46,57,57,57,48,49,53,93,44,91,45,49,48,50,46,57,51,56,57,53,55,44,52,56,46,57,57,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,68,117,114,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,54,52,53,55,44,34,98,101,100,115,34,58,49,52,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,53,48,53,57,55,44,51,54,46,50,51,57,51,50,93,44,91,45,55,57,46,48,49,54,51,48,53,44,51,53,46,56,54,51,50,49,93,44,91,45,55,56,46,57,48,54,48,55,49,44,51,53,46,56,54,56,48,57,54,93,44,91,45,55,56,46,56,50,57,57,54,53,44,51,53,46,56,54,54,57,55,56,93,44,91,45,55,56,46,54,57,57,51,49,54,44,51,54,46,48,49,49,52,52,56,93,44,91,45,55,56,46,55,53,49,50,55,51,44,51,54,46,48,55,48,56,51,52,93,44,91,45,55,56,46,56,48,52,54,57,44,51,54,46,48,57,52,53,53,49,93,44,91,45,55,56,46,56,48,50,51,51,53,44,51,54,46,50,51,53,55,57,52,93,44,91,45,55,56,46,57,53,48,53,57,55,44,51,54,46,50,51,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,49,51,57,48,48,56,44,52,49,46,56,54,54,50,55,55,93,44,91,45,57,54,46,48,54,52,56,57,55,44,52,49,46,55,57,49,54,55,51,93,44,91,45,57,54,46,49,50,50,54,48,52,44,52,49,46,54,56,51,48,52,93,44,91,45,57,54,46,48,53,55,51,51,49,44,52,49,46,53,49,49,48,53,49,93,44,91,45,57,53,46,57,57,54,49,57,52,44,52,49,46,53,48,54,57,54,93,44,91,45,57,53,46,52,57,55,57,57,55,44,52,49,46,53,48,54,48,55,52,93,44,91,45,57,53,46,53,53,56,49,52,51,44,52,49,46,54,48,50,51,56,51,93,44,91,45,57,53,46,53,53,55,50,55,55,44,52,49,46,56,54,51,52,52,57,93,44,91,45,57,53,46,54,55,50,55,55,49,44,52,49,46,56,54,51,49,52,55,93,44,91,45,57,54,46,49,51,57,48,48,56,44,52,49,46,56,54,54,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,75,101,121,97,32,80,97,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,57,56,52,55,56,44,52,50,46,56,52,54,49,48,50,93,44,91,45,49,48,48,46,49,51,51,57,55,56,44,52,50,46,56,48,55,56,49,57,93,44,91,45,57,57,46,54,55,55,54,56,52,44,52,50,46,55,51,48,57,48,51,93,44,91,45,57,57,46,53,51,55,52,57,49,44,52,50,46,55,49,55,54,50,54,93,44,91,45,57,57,46,50,53,55,48,51,57,44,52,50,46,56,48,52,50,57,54,93,44,91,45,57,57,46,50,53,52,52,53,53,44,52,50,46,57,57,56,48,55,52,93,44,91,45,57,57,46,53,51,52,48,52,57,44,52,50,46,57,57,56,48,51,51,93,44,91,45,49,48,48,46,49,57,56,52,49,51,44,52,50,46,57,57,56,54,55,52,93,44,91,45,49,48,48,46,49,57,56,52,55,56,44,52,50,46,56,52,54,49,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,55,53,55,44,34,98,101,100,115,34,58,50,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,52,51,48,50,52,44,52,50,46,53,53,56,56,52,51,93,44,91,45,57,52,46,51,57,55,54,55,49,44,52,50,46,52,55,51,51,93,44,91,45,57,52,46,51,57,55,53,50,54,44,52,50,46,50,48,57,49,54,49,93,44,91,45,57,52,46,49,54,52,55,48,52,44,52,50,46,50,48,57,57,50,93,44,91,45,57,51,46,57,51,49,53,56,44,52,50,46,50,48,57,57,48,56,93,44,91,45,57,51,46,57,51,49,54,56,52,44,52,50,46,52,55,50,48,49,49,93,44,91,45,57,51,46,57,55,49,53,56,51,44,52,50,46,53,53,56,49,51,57,93,44,91,45,57,51,46,57,55,49,55,49,52,44,52,50,46,54,52,52,55,48,55,93,44,91,45,57,52,46,52,52,51,48,56,51,44,52,50,46,54,52,53,49,54,52,93,44,91,45,57,52,46,52,52,51,48,50,52,44,52,50,46,53,53,56,56,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,80,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,49,48,55,51,56,44,51,55,46,51,51,55,48,56,49,93,44,91,45,56,56,46,52,57,48,51,51,44,51,55,46,49,53,57,52,54,50,93,44,91,45,56,56,46,52,57,48,52,49,49,44,51,55,46,48,54,56,53,55,57,93,44,91,45,56,56,46,52,50,52,54,48,51,44,51,55,46,49,53,49,55,54,52,93,44,91,45,56,56,46,53,48,55,48,54,50,44,51,55,46,50,53,57,54,56,57,93,44,91,45,56,56,46,52,55,52,48,57,44,51,55,46,51,57,49,56,54,51,93,44,91,45,56,56,46,52,49,53,52,48,54,44,51,55,46,52,50,51,57,55,50,93,44,91,45,56,56,46,52,49,50,54,57,55,44,51,55,46,53,57,57,54,50,53,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,48,53,57,93,44,91,45,56,56,46,55,49,48,55,51,56,44,51,55,46,51,51,55,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,83,109,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,51,54,56,48,51,44,51,54,46,50,57,53,56,53,57,93,44,91,45,56,54,46,48,53,57,55,48,54,44,51,54,46,48,56,54,48,50,52,93,44,91,45,56,53,46,56,48,55,52,49,53,44,51,54,46,49,51,49,53,56,50,93,44,91,45,56,53,46,55,56,48,49,52,56,44,51,54,46,50,51,56,48,49,49,93,44,91,45,56,53,46,56,52,54,52,56,51,44,51,54,46,50,56,56,49,54,55,93,44,91,45,56,53,46,56,50,56,48,50,54,44,51,54,46,52,49,49,56,51,54,93,44,91,45,56,53,46,57,55,56,56,57,51,44,51,54,46,52,50,54,48,55,51,93,44,91,45,56,54,46,49,51,54,56,48,51,44,51,54,46,50,57,53,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,53,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,52,49,52,57,51,44,51,54,46,55,57,52,51,54,53,93,44,91,45,56,48,46,48,57,52,51,56,57,44,51,54,46,55,55,57,53,53,50,93,44,91,45,56,48,46,48,53,51,52,53,57,44,51,54,46,53,52,50,53,50,51,93,44,91,45,56,48,46,48,50,55,51,51,57,44,51,54,46,53,52,50,52,56,93,44,91,45,55,57,46,55,49,52,56,52,57,44,51,54,46,53,52,49,57,54,53,93,44,91,45,55,57,46,54,52,48,54,53,50,44,51,54,46,56,53,54,49,51,57,93,44,91,45,55,57,46,56,48,50,48,53,54,44,51,54,46,55,57,50,49,51,55,93,44,91,45,55,57,46,57,57,57,55,55,49,44,51,54,46,56,51,48,55,51,56,93,44,91,45,56,48,46,48,52,49,52,57,51,44,51,54,46,55,57,52,51,54,53,93,93,44,91,91,45,55,57,46,57,48,52,48,55,55,44,51,54,46,54,56,52,49,50,55,93,44,91,45,55,57,46,56,55,52,55,54,44,51,54,46,55,49,53,50,51,55,93,44,91,45,55,57,46,56,51,55,51,53,57,44,51,54,46,55,48,52,49,51,55,93,44,91,45,55,57,46,56,53,57,50,54,44,51,54,46,54,54,49,55,51,55,93,44,91,45,55,57,46,57,48,52,48,55,55,44,51,54,46,54,56,52,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,49,48,34,44,34,78,65,77,69,34,58,34,65,108,101,120,97,110,100,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,53,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,49,48,55,57,57,44,51,56,46,56,52,51,52,52,54,93,44,91,45,55,55,46,48,52,49,51,54,50,44,51,56,46,55,56,53,52,49,53,93,44,91,45,55,55,46,48,51,57,48,48,54,44,51,56,46,55,57,49,54,52,53,93,44,91,45,55,55,46,48,52,56,48,50,44,51,56,46,56,52,49,50,54,49,93,44,91,45,55,55,46,49,49,48,55,57,57,44,51,56,46,56,52,51,52,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,55,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,55,57,57,55,52,44,52,49,46,49,54,50,54,54,50,93,44,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,44,91,45,57,49,46,55,49,56,49,56,44,52,48,46,57,48,49,48,56,55,93,44,91,45,57,49,46,55,49,54,48,52,50,44,52,49,46,49,54,50,56,48,56,93,44,91,45,57,49,46,57,52,53,53,55,49,44,52,49,46,49,54,51,53,55,56,93,44,91,45,57,50,46,49,55,57,57,55,52,44,52,49,46,49,54,50,54,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,32,97,110,100,32,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,48,55,55,44,34,98,101,100,115,34,58,49,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,49,52,52,51,54,56,44,52,55,46,53,57,53,53,48,55,93,44,91,45,49,49,51,46,48,53,57,49,57,57,44,52,55,46,52,56,56,53,57,57,93,44,91,45,49,49,51,46,48,53,57,48,53,51,44,52,55,46,49,55,57,53,55,93,44,91,45,49,49,50,46,55,57,53,56,48,56,44,52,55,46,49,55,55,48,48,52,93,44,91,45,49,49,50,46,55,57,53,54,52,50,44,52,54,46,56,51,49,54,54,53,93,44,91,45,49,49,50,46,53,51,53,55,52,56,44,52,54,46,56,51,52,50,51,52,93,44,91,45,49,49,50,46,53,51,53,53,57,55,44,52,54,46,54,57,57,52,56,50,93,44,91,45,49,49,50,46,51,50,48,56,55,49,44,52,54,46,54,53,53,57,50,55,93,44,91,45,49,49,50,46,51,49,48,53,55,51,44,52,54,46,52,50,49,49,55,49,93,44,91,45,49,49,50,46,49,55,54,50,51,53,44,52,54,46,52,53,54,51,52,50,93,44,91,45,49,49,50,46,48,50,57,50,51,49,44,52,54,46,53,54,56,56,48,53,93,44,91,45,49,49,49,46,55,56,55,57,52,57,44,52,54,46,53,54,57,52,54,53,93,44,91,45,49,49,49,46,54,52,48,48,57,53,44,52,54,46,53,56,50,52,54,51,93,44,91,45,49,49,49,46,54,51,57,50,54,49,44,52,54,46,55,51,56,49,56,93,44,91,45,49,49,49,46,52,57,56,48,57,53,44,52,54,46,55,54,50,53,48,50,93,44,91,45,49,49,49,46,54,48,51,49,53,51,44,52,54,46,56,48,57,57,52,57,93,44,91,45,49,49,49,46,54,53,56,49,51,50,44,52,54,46,57,49,51,52,50,51,93,44,91,45,49,49,49,46,55,57,48,50,51,54,44,52,54,46,57,49,51,55,54,52,93,44,91,45,49,49,49,46,55,56,57,50,55,56,44,52,55,46,49,50,56,57,50,50,93,44,91,45,49,49,50,46,48,52,52,56,50,57,44,52,55,46,49,57,50,55,49,49,93,44,91,45,49,49,50,46,48,52,55,55,56,49,44,52,55,46,53,49,54,48,51,52,93,44,91,45,49,49,50,46,50,55,56,44,52,55,46,53,48,53,54,50,51,93,44,91,45,49,49,50,46,52,51,50,55,49,49,44,52,55,46,54,48,54,49,48,52,93,44,91,45,49,49,50,46,53,54,56,54,54,44,52,55,46,54,51,54,48,49,56,93,44,91,45,49,49,50,46,56,53,52,55,48,49,44,52,55,46,54,50,57,50,51,52,93,44,91,45,49,49,50,46,57,49,51,56,55,52,44,52,55,46,54,57,55,49,57,57,93,44,91,45,49,49,50,46,57,49,51,50,53,54,44,52,55,46,56,50,54,50,49,54,93,44,91,45,49,49,50,46,57,56,52,55,51,52,44,52,55,46,57,53,51,57,49,56,93,44,91,45,49,49,51,46,48,54,50,56,55,54,44,52,55,46,56,56,53,53,54,51,93,44,91,45,49,49,51,46,48,56,48,57,57,55,44,52,55,46,55,52,57,57,49,55,93,44,91,45,49,49,51,46,49,54,53,56,49,49,44,52,55,46,55,49,57,55,54,52,93,44,91,45,49,49,51,46,49,52,52,51,54,56,44,52,55,46,53,57,53,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,68,117,99,104,101,115,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,49,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,56,53,55,55,56,44,51,57,46,56,49,51,50,56,53,93,44,91,45,49,48,57,46,57,55,54,56,49,52,44,51,57,46,56,48,54,50,51,93,44,91,45,49,48,57,46,57,55,54,52,48,50,44,52,48,46,56,48,57,54,56,54,93,44,91,45,49,49,48,46,48,48,48,55,49,49,44,52,48,46,56,49,51,54,55,56,93,44,91,45,49,49,48,46,50,54,48,57,54,55,44,52,48,46,56,51,52,56,50,52,93,44,91,45,49,49,48,46,51,55,56,57,54,50,44,52,48,46,55,56,55,49,56,93,44,91,45,49,49,48,46,54,53,54,52,56,50,44,52,48,46,55,52,48,50,55,53,93,44,91,45,49,49,48,46,55,53,48,55,51,51,44,52,48,46,55,52,55,55,48,54,93,44,91,45,49,49,48,46,57,48,49,57,55,52,44,52,48,46,54,55,56,49,54,50,93,44,91,45,49,49,48,46,56,57,49,54,53,53,44,51,57,46,56,57,57,54,53,52,93,44,91,45,49,49,48,46,56,53,55,55,56,44,51,57,46,56,49,51,50,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,102,97,108,102,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,52,52,54,54,49,44,51,54,46,57,57,56,55,53,57,93,44,91,45,57,56,46,53,51,51,54,49,55,44,51,54,46,52,54,51,50,51,93,44,91,45,57,56,46,49,48,52,52,50,55,44,51,54,46,52,54,51,49,48,53,93,44,91,45,57,56,46,49,48,52,50,56,54,44,51,54,46,53,57,51,53,55,56,93,44,91,45,57,56,46,49,49,49,57,56,53,44,51,54,46,57,57,56,48,57,51,93,44,91,45,57,56,46,51,52,55,49,52,57,44,51,54,46,57,57,56,49,53,53,93,44,91,45,57,56,46,53,52,52,54,54,49,44,51,54,46,57,57,56,55,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,68,101,108,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,48,56,54,51,55,44,51,51,46,51,56,48,54,54,50,93,44,91,45,57,53,46,54,50,49,48,50,55,44,51,51,46,52,56,55,48,54,93,44,91,45,57,53,46,56,53,55,55,51,56,44,51,51,46,52,54,49,55,50,50,93,44,91,45,57,53,46,56,53,56,55,50,51,44,51,51,46,52,48,57,53,51,93,44,91,45,57,53,46,56,54,49,55,55,56,44,51,51,46,50,49,57,51,51,93,44,91,45,57,53,46,55,50,57,48,57,52,44,51,51,46,51,48,53,52,50,56,93,44,91,45,57,53,46,53,56,49,49,55,53,44,51,51,46,51,53,56,57,55,55,93,44,91,45,57,53,46,51,48,56,53,57,51,44,51,51,46,51,55,55,49,57,93,44,91,45,57,53,46,51,48,54,54,52,44,51,51,46,51,55,56,48,50,55,93,44,91,45,57,53,46,51,48,56,54,51,55,44,51,51,46,51,56,48,54,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,84,114,111,117,115,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,50,56,52,51,52,44,51,54,46,52,56,55,52,55,50,93,44,91,45,56,54,46,50,56,51,50,53,54,44,51,54,46,51,52,55,53,93,44,91,45,56,54,46,49,51,54,56,48,51,44,51,54,46,50,57,53,56,53,57,93,44,91,45,56,53,46,57,55,56,56,57,51,44,51,54,46,52,50,54,48,55,51,93,44,91,45,56,54,46,49,54,56,50,54,49,44,51,54,46,52,52,52,50,57,51,93,44,91,45,56,54,46,50,50,56,52,51,52,44,51,54,46,52,56,55,52,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,49,55,44,34,98,101,100,115,34,58,51,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,48,55,56,56,54,44,51,55,46,50,51,53,56,55,55,93,44,91,45,56,51,46,52,54,48,57,57,50,44,51,55,46,50,57,51,56,52,56,93,44,91,45,56,51,46,50,48,56,49,50,49,44,51,55,46,49,55,52,54,53,57,93,44,91,45,56,51,46,49,56,50,49,48,52,44,51,55,46,48,50,49,49,49,53,93,44,91,45,56,51,46,49,50,50,48,57,44,51,55,46,48,48,48,57,57,55,93,44,91,45,56,51,46,48,48,48,49,52,50,44,51,55,46,49,57,53,55,49,93,44,91,45,56,51,46,49,48,49,53,54,51,44,51,55,46,50,51,53,52,51,55,93,44,91,45,56,51,46,49,50,52,51,52,56,44,51,55,46,52,48,52,57,55,51,93,44,91,45,56,51,46,49,57,57,55,51,52,44,51,55,46,52,49,52,54,54,93,44,91,45,56,51,46,52,48,51,57,56,56,44,51,55,46,51,51,56,51,51,50,93,44,91,45,56,51,46,53,52,55,54,50,56,44,51,55,46,51,51,52,52,49,56,93,44,91,45,56,51,46,53,50,54,57,48,55,44,51,55,46,50,53,56,53,50,57,93,44,91,45,56,51,46,53,48,55,56,56,54,44,51,55,46,50,51,53,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,101,117,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,48,54,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,56,52,53,55,44,52,52,46,56,48,52,52,51,54,93,44,91,45,57,54,46,56,56,53,53,48,52,44,52,52,46,53,52,51,55,55,51,93,44,91,45,57,54,46,52,53,49,56,50,44,52,52,46,53,52,51,54,53,50,93,44,91,45,57,54,46,52,53,49,53,54,54,44,52,52,46,54,51,49,51,52,57,93,44,91,45,57,54,46,52,53,49,52,54,50,44,52,52,46,56,48,53,53,55,93,44,91,45,57,54,46,52,53,50,48,51,53,44,52,52,46,57,55,55,54,53,93,44,91,45,57,54,46,56,56,50,51,52,53,44,52,52,46,57,55,54,56,55,93,44,91,45,57,54,46,56,56,52,53,55,44,52,52,46,56,48,52,52,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,50,54,55,44,34,98,101,100,115,34,58,53,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,50,56,50,55,51,44,52,50,46,57,57,54,52,57,57,93,44,91,45,49,50,50,46,52,48,49,48,50,53,44,52,50,46,57,57,54,54,51,50,93,44,91,45,49,50,50,46,53,54,48,50,55,51,44,52,50,46,57,51,57,49,56,53,93,44,91,45,49,50,50,46,55,57,52,55,55,54,44,52,50,46,55,55,56,50,50,49,93,44,91,45,49,50,51,46,49,53,50,50,51,51,44,52,50,46,55,53,53,56,51,53,93,44,91,45,49,50,51,46,50,50,57,54,49,57,44,52,50,46,55,48,50,54,49,93,44,91,45,49,50,51,46,50,51,49,49,49,51,44,52,50,46,48,48,51,57,52,51,93,44,91,45,49,50,50,46,50,56,57,55,52,56,44,52,50,46,48,48,56,48,57,56,93,44,91,45,49,50,50,46,50,56,50,55,51,44,52,50,46,57,57,54,52,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,111,114,109,105,103,117,101,114,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,53,57,55,51,51,44,49,56,46,49,53,51,50,50,55,93,44,91,45,54,55,46,49,48,48,52,57,50,44,49,56,46,49,48,54,51,57,53,93,44,91,45,54,55,46,48,56,54,51,53,57,44,49,56,46,49,52,57,56,50,57,93,44,91,45,54,55,46,49,53,57,55,51,51,44,49,56,46,49,53,51,50,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,53,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,48,55,34,44,34,78,65,77,69,34,58,34,90,97,118,97,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,49,52,48,54,44,50,57,46,48,56,54,51,49,56,93,44,91,45,49,48,48,46,49,49,52,51,51,54,44,50,56,46,54,52,56,49,50,50,93,44,91,45,57,57,46,52,48,57,48,50,49,44,50,56,46,54,52,48,53,54,54,93,44,91,45,57,57,46,52,49,51,56,56,44,50,57,46,48,57,49,51,51,53,93,44,91,45,49,48,48,46,49,49,49,52,48,54,44,50,57,46,48,56,54,51,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,97,110,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,50,54,56,56,44,52,49,46,54,57,55,57,53,52,93,44,91,45,49,48,52,46,48,53,50,53,52,44,52,49,46,53,54,52,50,55,52,93,44,91,45,49,48,52,46,48,53,50,50,56,55,44,52,49,46,51,57,51,50,49,52,93,44,91,45,49,48,51,46,51,55,55,54,50,44,52,49,46,51,57,52,54,51,51,93,44,91,45,49,48,51,46,51,54,57,48,50,52,44,52,49,46,52,51,55,54,53,53,93,44,91,45,49,48,51,46,51,55,48,51,57,49,44,52,49,46,54,57,57,50,49,93,44,91,45,49,48,52,46,48,53,50,54,56,56,44,52,49,46,54,57,55,57,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,57,48,54,49,50,44,52,49,46,53,49,49,57,49,54,93,44,91,45,57,52,46,50,52,49,53,57,51,44,52,49,46,53,48,51,54,55,57,93,44,91,45,57,52,46,50,52,49,54,51,55,44,52,49,46,49,53,55,49,51,52,93,44,91,45,57,52,46,48,49,52,49,56,57,44,52,49,46,49,53,54,55,54,50,93,44,91,45,57,51,46,55,56,57,49,57,54,44,52,49,46,49,54,50,48,51,53,93,44,91,45,57,51,46,55,57,48,54,49,50,44,52,49,46,53,49,49,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,114,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,57,49,53,49,44,34,98,101,100,115,34,58,53,56,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,49,53,50,55,54,44,50,54,46,51,50,48,57,53,54,93,44,91,45,56,48,46,50,57,54,57,56,54,44,50,54,46,51,51,52,51,53,54,93,44,91,45,56,48,46,56,56,49,50,51,51,44,50,54,46,51,51,51,56,48,54,93,44,91,45,56,48,46,56,55,57,56,48,57,44,50,54,46,50,53,57,52,53,53,93,44,91,45,56,48,46,56,55,50,57,51,50,44,50,53,46,57,55,57,52,51,52,93,44,91,45,56,48,46,54,56,48,48,49,54,44,50,53,46,57,53,54,56,53,55,93,44,91,45,56,48,46,50,57,52,57,55,50,44,50,53,46,57,53,54,55,55,93,44,91,45,56,48,46,48,53,50,50,53,55,44,50,53,46,57,55,52,57,53,54,93,44,91,45,56,48,46,48,49,53,50,55,54,44,50,54,46,51,50,48,57,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,57,34,44,34,78,65,77,69,34,58,34,84,111,111,109,98,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,48,52,56,44,34,98,101,100,115,34,58,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,48,57,49,51,44,51,50,46,51,53,51,55,51,56,93,44,91,45,56,50,46,52,56,51,49,51,49,44,51,49,46,57,54,56,57,54,49,93,44,91,45,56,50,46,52,51,49,53,51,49,44,51,49,46,57,54,54,49,56,50,93,44,91,45,56,50,46,50,50,53,48,52,50,44,51,49,46,57,49,51,48,55,52,93,44,91,45,56,50,46,49,56,50,55,50,55,44,51,50,46,49,54,48,52,52,50,93,44,91,45,56,50,46,50,51,50,55,56,56,44,51,50,46,51,49,56,56,51,56,93,44,91,45,56,50,46,51,53,52,53,52,54,44,51,50,46,50,57,50,49,57,52,93,44,91,45,56,50,46,52,48,57,49,49,56,44,51,50,46,51,53,51,56,51,93,44,91,45,56,50,46,52,48,57,49,51,44,51,50,46,51,53,51,55,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,97,110,105,108,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,51,55,54,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,49,55,56,52,52,44,52,51,46,54,55,53,52,57,51,93,44,91,45,56,51,46,49,50,48,51,57,54,44,52,51,46,51,50,55,48,52,57,93,44,91,45,56,51,46,48,48,48,52,51,44,52,51,46,50,56,52,57,49,51,93,44,91,45,56,50,46,57,57,54,50,53,55,44,52,51,46,49,53,52,48,57,57,93,44,91,45,56,50,46,51,51,52,48,55,51,44,52,51,46,49,55,48,52,49,51,93,44,91,45,56,50,46,49,50,50,57,55,49,44,52,51,46,53,57,48,56,50,55,93,44,91,45,56,50,46,49,52,53,53,48,49,44,52,51,46,54,57,53,53,56,55,93,44,91,45,56,51,46,49,49,55,56,52,52,44,52,51,46,54,55,53,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,57,55,34,44,34,78,65,77,69,34,58,34,82,111,99,107,119,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,54,52,50,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,57,55,50,50,55,44,51,50,46,57,56,49,55,53,50,93,44,91,45,57,54,46,53,49,54,56,54,54,44,51,50,46,57,56,50,51,48,56,93,44,91,45,57,54,46,53,49,56,57,55,44,51,50,46,56,49,51,54,49,54,93,44,91,45,57,54,46,50,57,55,51,50,50,44,51,50,46,56,52,49,55,50,51,93,44,91,45,57,54,46,50,57,55,50,50,55,44,51,50,46,57,56,49,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,49,51,56,50,44,34,98,101,100,115,34,58,54,50,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,48,56,51,51,57,51,44,52,50,46,52,52,55,49,53,51,93,44,91,45,56,51,46,53,53,49,57,48,55,44,52,50,46,52,51,53,49,54,54,93,44,91,45,56,51,46,53,51,57,51,57,54,44,52,50,46,48,56,53,53,57,56,93,44,91,45,56,51,46,50,57,53,48,54,51,44,52,50,46,48,57,52,50,51,55,93,44,91,45,56,51,46,49,52,51,57,53,54,44,52,50,46,48,50,55,57,51,93,44,91,45,56,51,46,49,50,54,51,54,49,44,52,50,46,50,51,56,52,49,50,93,44,91,45,56,51,46,48,54,51,54,51,55,44,52,50,46,51,49,54,56,53,55,93,44,91,45,56,50,46,56,51,48,50,53,44,52,50,46,51,55,51,52,57,50,93,44,91,45,56,50,46,55,52,57,57,48,56,44,52,50,46,52,53,49,48,57,50,93,44,91,45,56,51,46,48,56,51,51,57,51,44,52,50,46,52,52,55,49,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,78,111,98,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,51,57,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,54,50,52,50,55,44,52,51,46,56,52,55,57,49,49,93,44,91,45,57,54,46,48,53,50,51,50,44,52,51,46,56,52,57,48,55,93,44,91,45,57,54,46,48,53,51,49,54,50,44,52,51,46,53,48,48,49,53,53,93,44,91,45,57,53,46,56,54,48,57,52,55,44,52,51,46,53,48,48,48,51,54,93,44,91,45,57,53,46,52,53,52,52,51,51,44,52,51,46,53,48,48,54,52,54,93,44,91,45,57,53,46,52,53,50,53,48,50,44,52,51,46,56,52,55,57,53,51,93,44,91,45,57,53,46,52,54,50,52,50,55,44,52,51,46,56,52,55,57,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,105,116,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,51,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,55,54,48,50,52,44,52,54,46,56,48,50,56,57,49,93,44,91,45,57,51,46,56,49,49,52,54,52,44,52,54,46,53,56,52,50,51,56,93,44,91,45,57,51,46,55,57,54,50,56,49,44,52,54,46,50,52,51,49,57,57,93,44,91,45,57,51,46,52,51,48,54,52,56,44,52,54,46,50,52,54,52,49,50,93,44,91,45,57,51,46,52,51,49,56,51,49,44,52,54,46,49,53,51,57,57,49,93,44,91,45,57,51,46,48,53,51,56,55,49,44,52,54,46,49,53,56,49,50,93,44,91,45,57,51,46,48,53,52,56,52,55,44,52,54,46,52,49,57,50,54,57,93,44,91,45,57,51,46,48,54,49,53,50,57,44,52,54,46,55,54,54,53,53,93,44,91,45,57,51,46,48,53,53,57,52,51,44,52,55,46,48,50,54,52,49,53,93,44,91,45,57,51,46,55,55,53,50,53,55,44,52,55,46,48,51,48,52,49,56,93,44,91,45,57,51,46,55,55,54,48,50,52,44,52,54,46,56,48,50,56,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,82,97,109,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,53,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,55,48,51,57,50,44,52,56,46,53,52,52,50,51,50,93,44,91,45,57,56,46,57,55,48,56,52,50,44,52,56,46,51,55,48,52,49,52,93,44,91,45,57,57,46,50,48,48,51,48,54,44,52,56,46,51,55,48,54,53,56,93,44,91,45,57,57,46,49,57,57,57,49,49,44,52,56,46,49,53,53,51,48,57,93,44,91,45,57,57,46,48,55,48,52,52,51,44,52,56,46,49,48,55,56,53,55,93,44,91,45,57,56,46,57,56,54,57,48,49,44,52,56,46,48,48,55,52,57,56,93,44,91,45,57,56,46,56,48,55,53,57,51,44,52,56,46,48,53,57,56,48,49,93,44,91,45,57,56,46,54,50,53,51,56,52,44,52,55,46,57,49,54,51,57,57,93,44,91,45,57,56,46,53,50,53,53,53,53,44,52,55,46,57,49,53,48,53,54,93,44,91,45,57,56,46,52,50,50,52,55,52,44,52,56,46,48,50,49,48,56,93,44,91,45,57,56,46,52,50,50,48,53,55,44,52,56,46,49,57,52,55,56,50,93,44,91,45,57,56,46,50,57,50,49,56,52,44,52,56,46,49,57,53,49,55,55,93,44,91,45,57,56,46,51,49,56,48,51,54,44,52,56,46,53,52,51,55,55,51,93,44,91,45,57,56,46,57,55,48,51,57,50,44,52,56,46,53,52,52,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,80,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,51,48,53,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,49,51,56,51,50,44,51,54,46,53,52,49,57,55,53,93,44,91,45,55,57,46,49,53,51,57,57,55,44,51,54,46,50,52,49,56,55,53,93,44,91,45,55,56,46,57,53,48,53,57,55,44,51,54,46,50,51,57,51,50,93,44,91,45,55,56,46,56,48,50,51,51,53,44,51,54,46,50,51,53,55,57,52,93,44,91,45,55,56,46,55,57,54,50,55,52,44,51,54,46,53,52,49,55,52,49,93,44,91,45,55,57,46,49,51,56,51,50,44,51,54,46,53,52,49,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,84,114,101,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,52,55,57,52,44,51,57,46,49,51,50,49,55,57,93,44,91,45,49,48,48,46,49,53,51,56,50,51,44,51,56,46,54,57,55,51,52,49,93,44,91,45,57,57,46,53,57,56,51,50,51,44,51,56,46,54,57,54,53,49,52,93,44,91,45,57,57,46,53,57,49,55,55,54,44,51,57,46,49,51,50,51,53,55,93,44,91,45,57,57,46,54,48,53,49,56,55,44,51,57,46,49,51,50,52,56,49,93,44,91,45,49,48,48,46,49,52,55,57,52,44,51,57,46,49,51,50,49,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,48,56,54,44,34,98,101,100,115,34,58,50,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,54,51,53,48,57,44,51,51,46,53,50,57,51,56,57,93,44,91,45,57,49,46,50,49,53,54,55,49,44,51,51,46,53,50,57,52,50,51,93,44,91,45,57,49,46,49,54,57,52,53,57,44,51,51,46,52,53,50,49,51,55,93,44,91,45,57,49,46,48,56,55,53,56,57,44,51,51,46,49,52,53,49,55,54,93,44,91,45,57,49,46,49,54,54,50,56,50,44,51,51,46,48,49,49,51,51,49,93,44,91,45,57,48,46,57,49,52,51,51,55,44,51,51,46,48,48,55,54,57,55,93,44,91,45,57,48,46,57,49,52,52,54,53,44,51,51,46,48,57,55,52,49,55,93,44,91,45,57,48,46,55,48,49,56,52,53,44,51,51,46,48,57,54,50,57,52,93,44,91,45,57,48,46,55,49,54,50,55,55,44,51,51,46,50,55,48,48,51,50,93,44,91,45,57,48,46,55,54,51,55,55,51,44,51,51,46,50,55,48,51,53,57,93,44,91,45,57,48,46,55,54,51,53,48,57,44,51,51,46,53,50,57,51,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,69,97,115,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,55,48,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,55,54,50,53,54,44,51,50,46,53,49,53,49,54,51,93,44,91,45,57,57,46,48,57,54,48,53,44,51,50,46,53,49,52,55,54,56,93,44,91,45,57,57,46,49,49,52,50,57,51,44,51,50,46,53,49,52,56,49,49,93,44,91,45,57,57,46,49,49,56,54,54,53,44,51,50,46,48,55,57,53,56,53,93,44,91,45,57,56,46,57,50,52,52,48,49,44,51,50,46,48,55,56,48,49,56,93,44,91,45,57,56,46,53,53,49,49,53,56,44,51,50,46,50,54,49,52,51,54,93,44,91,45,57,56,46,52,55,52,54,56,53,44,51,50,46,50,57,57,48,56,52,93,44,91,45,57,56,46,52,55,53,49,55,55,44,51,50,46,53,49,51,48,51,57,93,44,91,45,57,56,46,53,55,54,50,53,54,44,51,50,46,53,49,53,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,73,115,115,97,113,117,101,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,52,51,51,55,44,51,51,46,48,48,55,54,57,55,93,44,91,45,57,49,46,49,54,54,50,56,50,44,51,51,46,48,49,49,51,51,49,93,44,91,45,57,49,46,49,54,54,48,55,51,44,51,51,46,48,48,52,49,48,54,93,44,91,45,57,49,46,50,49,50,56,51,55,44,51,50,46,57,50,50,49,48,51,93,44,91,45,57,49,46,49,52,51,53,53,57,44,51,50,46,56,52,52,55,51,56,93,44,91,45,57,49,46,49,53,50,54,57,57,44,51,50,46,54,52,48,55,53,55,93,44,91,45,57,49,46,48,52,51,53,53,50,44,51,50,46,53,55,54,50,55,49,93,44,91,45,57,48,46,57,54,52,48,52,51,44,51,50,46,53,55,53,54,48,53,93,44,91,45,57,48,46,57,53,49,50,52,44,51,50,46,52,52,52,51,56,57,93,44,91,45,57,48,46,56,54,49,51,54,52,44,51,50,46,52,52,50,49,49,53,93,44,91,45,57,48,46,56,54,48,53,54,54,44,51,50,46,53,55,53,49,55,51,93,44,91,45,57,48,46,55,50,48,49,48,50,44,51,50,46,54,49,56,56,53,56,93,44,91,45,57,48,46,55,50,51,49,53,57,44,51,50,46,54,54,50,49,50,56,93,44,91,45,57,48,46,57,54,52,56,54,52,44,51,50,46,54,54,50,55,57,56,93,44,91,45,57,48,46,57,54,51,55,53,51,44,51,50,46,56,51,56,49,51,51,93,44,91,45,57,48,46,57,49,52,51,51,55,44,51,51,46,48,48,55,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,68,101,87,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,51,53,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,48,53,57,49,54,44,50,56,46,56,54,52,48,51,55,93,44,91,45,57,54,46,57,55,54,51,55,56,44,50,57,46,49,48,52,48,52,54,93,44,91,45,57,55,46,50,52,48,49,48,56,44,50,57,46,51,56,52,52,56,56,93,44,91,45,57,55,46,54,49,51,49,51,50,44,50,57,46,49,48,57,55,54,53,93,44,91,45,57,55,46,55,53,53,49,49,44,50,57,46,48,48,55,49,49,51,93,44,91,45,57,55,46,53,55,52,54,51,57,44,50,56,46,56,49,51,51,93,44,91,45,57,55,46,52,49,55,51,52,44,50,56,46,57,50,53,50,50,56,93,44,91,45,57,55,46,51,48,53,57,49,54,44,50,56,46,56,54,52,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,110,103,101,108,105,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,54,48,55,44,34,98,101,100,115,34,58,52,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,53,56,49,49,44,51,49,46,51,56,54,57,51,93,44,91,45,57,52,46,56,57,57,48,49,55,44,51,49,46,51,50,54,57,55,50,93,44,91,45,57,52,46,56,52,50,57,52,55,44,51,49,46,49,52,54,53,55,56,93,44,91,45,57,52,46,53,54,49,57,52,51,44,51,49,46,48,53,56,57,53,50,93,44,91,45,57,52,46,52,53,55,56,49,54,44,51,49,46,48,51,51,51,50,53,93,44,91,45,57,52,46,49,50,57,54,51,50,44,51,49,46,48,57,57,50,56,93,44,91,45,57,52,46,51,50,54,54,49,54,44,51,49,46,50,50,52,55,53,52,93,44,91,45,57,52,46,52,54,54,54,55,54,44,51,49,46,51,55,56,48,48,57,93,44,91,45,57,52,46,53,53,52,56,51,56,44,51,49,46,52,51,53,49,50,51,93,44,91,45,57,52,46,55,50,56,52,53,54,44,51,49,46,52,53,55,49,52,55,93,44,91,45,57,52,46,56,54,53,56,53,55,44,51,49,46,53,50,54,57,49,54,93,44,91,45,57,53,46,48,48,51,51,52,53,44,51,49,46,52,50,53,55,49,93,44,91,45,57,52,46,57,53,56,49,49,44,51,49,46,51,56,54,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,83,97,108,117,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,55,48,48,56,52,44,51,52,46,49,51,53,51,53,55,93,44,91,45,56,50,46,48,48,56,50,57,56,44,51,51,46,57,54,49,54,52,54,93,44,91,45,56,49,46,56,57,52,53,57,53,44,51,51,46,57,55,53,52,49,53,93,44,91,45,56,49,46,56,51,54,56,48,51,44,51,51,46,56,54,54,53,48,49,93,44,91,45,56,49,46,54,53,49,55,53,57,44,51,51,46,56,49,52,53,49,93,44,91,45,56,49,46,53,55,49,52,56,55,44,51,51,46,56,55,55,51,49,56,93,44,91,45,56,49,46,52,55,49,57,55,50,44,51,52,46,48,55,54,53,53,50,93,44,91,45,56,49,46,53,51,56,56,57,57,44,51,52,46,48,56,49,55,52,52,93,44,91,45,56,49,46,55,51,49,54,49,52,44,51,52,46,49,56,55,54,49,51,93,44,91,45,56,49,46,56,55,48,48,56,52,44,51,52,46,49,51,53,51,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,57,53,54,55,53,44,51,56,46,50,57,50,50,51,55,93,44,91,45,57,50,46,49,56,53,51,55,44,51,56,46,48,49,54,51,51,56,93,44,91,45,57,50,46,48,50,49,49,54,53,44,51,56,46,48,49,48,54,51,57,93,44,91,45,57,49,46,56,57,53,51,52,55,44,51,56,46,48,53,49,49,57,57,93,44,91,45,57,49,46,54,51,50,52,51,49,44,51,56,46,48,53,48,57,53,49,93,44,91,45,57,49,46,54,51,48,53,53,52,44,51,56,46,49,53,51,53,49,57,93,44,91,45,57,49,46,54,52,52,55,50,57,44,51,56,46,50,56,56,53,49,93,44,91,45,57,50,46,49,57,53,54,55,53,44,51,56,46,50,57,50,50,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,50,52,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,55,55,56,50,44,51,52,46,53,54,51,52,56,93,44,91,45,57,49,46,53,57,52,52,50,57,44,51,52,46,53,54,56,48,53,93,44,91,45,57,49,46,54,55,56,48,51,55,44,51,52,46,52,56,49,57,50,93,44,91,45,57,49,46,55,48,53,49,56,53,44,51,52,46,52,56,50,54,55,93,44,91,45,57,49,46,55,49,49,55,57,53,44,51,52,46,50,51,51,57,49,57,93,44,91,45,57,49,46,53,52,48,49,55,56,44,51,52,46,50,50,52,53,57,57,93,44,91,45,57,49,46,52,52,53,54,49,52,44,51,52,46,48,56,48,49,52,55,93,44,91,45,57,49,46,52,50,49,55,49,53,44,51,52,46,48,49,52,52,55,50,93,44,91,45,57,49,46,50,49,52,51,51,56,44,51,51,46,57,55,50,52,48,51,93,44,91,45,57,49,46,49,57,52,50,55,56,44,51,52,46,48,55,48,57,51,56,93,44,91,45,57,49,46,49,49,55,57,48,53,44,51,52,46,49,49,57,49,48,53,93,44,91,45,57,49,46,48,53,54,50,55,54,44,51,52,46,51,51,54,54,48,53,93,44,91,45,57,49,46,50,54,51,54,48,54,44,51,52,46,53,48,49,56,54,55,93,44,91,45,57,49,46,51,55,55,56,50,44,51,52,46,53,54,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,49,51,51,44,34,98,101,100,115,34,58,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,53,50,51,49,51,44,51,55,46,50,57,48,48,55,56,93,44,91,45,57,52,46,48,53,57,50,49,49,44,51,55,46,48,52,56,49,50,55,93,44,91,45,57,52,46,48,54,50,55,52,44,51,54,46,57,51,49,55,55,53,93,44,91,45,57,51,46,54,49,49,48,48,51,44,51,54,46,57,50,50,56,51,49,93,44,91,45,57,51,46,54,49,48,49,50,54,44,51,54,46,57,57,53,56,49,93,44,91,45,57,51,46,54,48,56,56,57,57,44,51,55,46,48,57,56,49,53,51,93,44,91,45,57,51,46,54,50,53,56,52,52,44,51,55,46,50,56,50,48,49,49,93,44,91,45,57,52,46,48,53,50,51,49,51,44,51,55,46,50,57,48,48,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,52,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,52,48,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,111,116,116,101,115,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,48,52,50,44,34,98,101,100,115,34,58,53,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,53,50,51,54,56,44,51,56,46,48,50,50,51,50,55,93,44,91,45,55,56,46,52,54,57,53,48,52,44,51,56,46,48,49,49,55,52,53,93,44,91,45,55,56,46,52,53,52,55,51,50,44,51,56,46,48,52,53,50,55,56,93,44,91,45,55,56,46,52,56,53,50,48,50,44,51,56,46,48,54,56,57,55,52,93,44,91,45,55,56,46,53,50,51,54,56,44,51,56,46,48,50,50,51,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,117,114,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,51,56,49,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,54,50,51,53,49,44,52,49,46,53,56,52,48,48,53,93,44,91,45,56,57,46,56,53,55,54,49,54,44,52,49,46,50,51,52,52,55,57,93,44,91,45,56,57,46,54,51,56,55,48,56,44,52,49,46,50,51,51,56,54,50,93,44,91,45,56,57,46,54,51,56,53,51,54,44,52,49,46,49,52,56,53,52,53,93,44,91,45,56,57,46,52,54,54,49,48,49,44,52,49,46,49,52,56,53,50,52,93,44,91,45,56,57,46,52,54,54,51,56,57,44,52,49,46,50,51,51,56,55,50,93,44,91,45,56,57,46,51,51,52,57,48,49,44,52,49,46,51,48,48,56,55,55,93,44,91,45,56,57,46,49,54,51,55,48,53,44,52,49,46,51,49,48,49,56,55,93,44,91,45,56,57,46,49,54,54,53,54,49,44,52,49,46,53,56,53,50,56,57,93,44,91,45,56,57,46,54,51,49,52,57,52,44,52,49,46,53,56,52,57,52,57,93,44,91,45,56,57,46,56,54,50,51,53,49,44,52,49,46,53,56,52,48,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,83,99,105,111,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,51,55,55,44,34,98,101,100,115,34,58,52,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,48,55,48,57,44,51,56,46,57,52,56,48,55,51,93,44,91,45,56,51,46,50,49,50,49,48,55,44,51,56,46,57,54,48,49,52,56,93,44,91,45,56,51,46,50,55,48,56,49,55,44,51,57,46,48,49,53,55,57,49,93,44,91,45,56,51,46,50,54,55,54,49,51,44,51,56,46,54,49,56,52,50,93,44,91,45,56,51,46,49,51,52,55,53,52,44,51,56,46,54,51,50,48,49,51,93,44,91,45,56,51,46,48,51,48,56,53,56,44,51,56,46,55,50,53,53,50,52,93,44,91,45,56,50,46,56,57,55,49,56,57,44,51,56,46,55,53,54,50,49,52,93,44,91,45,56,50,46,56,49,53,57,55,57,44,51,56,46,53,55,48,56,48,50,93,44,91,45,56,50,46,55,52,48,51,56,51,44,51,56,46,53,57,55,49,54,55,93,44,91,45,56,50,46,54,54,50,56,56,54,44,51,56,46,55,52,55,57,55,55,93,44,91,45,56,50,46,54,53,48,48,51,57,44,51,56,46,56,52,57,48,55,51,93,44,91,45,56,50,46,55,54,48,54,57,44,51,56,46,56,53,52,56,55,53,93,44,91,45,56,50,46,56,48,55,48,57,44,51,56,46,57,52,56,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,57,56,51,49,55,44,51,53,46,57,52,52,57,54,55,93,44,91,45,56,50,46,57,54,49,55,53,52,44,51,53,46,55,57,48,57,53,57,93,44,91,45,56,50,46,56,56,51,57,48,57,44,51,53,46,54,55,56,50,51,53,93,44,91,45,56,50,46,56,48,55,48,53,54,44,51,53,46,54,56,53,56,55,52,93,44,91,45,56,50,46,53,49,51,49,54,49,44,51,53,46,56,48,51,51,56,93,44,91,45,56,50,46,52,48,56,54,48,50,44,51,53,46,56,49,56,49,55,56,93,44,91,45,56,50,46,53,48,53,52,50,53,44,51,53,46,57,55,55,52,51,50,93,44,91,45,56,50,46,54,48,50,57,56,44,51,54,46,48,51,57,54,55,55,93,44,91,45,56,50,46,54,51,55,50,51,44,51,54,46,48,54,53,56,50,93,44,91,45,56,50,46,56,57,56,51,49,55,44,51,53,46,57,52,52,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,74,101,114,111,109,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,52,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,57,51,49,54,56,55,44,52,50,46,55,54,53,48,50,54,93,44,91,45,49,49,52,46,48,52,57,56,52,57,44,52,50,46,56,48,56,52,52,52,93,44,91,45,49,49,52,46,51,52,53,54,53,57,44,52,50,46,56,48,57,48,53,53,93,44,91,45,49,49,52,46,51,54,53,51,54,54,44,52,50,46,56,53,48,55,57,93,44,91,45,49,49,52,46,53,57,52,51,55,53,44,52,50,46,56,53,48,57,48,49,93,44,91,45,49,49,52,46,54,49,54,52,56,55,44,52,50,46,54,52,57,50,57,56,93,44,91,45,49,49,52,46,50,52,52,55,48,51,44,52,50,46,53,53,57,50,52,52,93,44,91,45,49,49,52,46,49,50,52,57,51,52,44,52,50,46,52,57,54,49,51,93,44,91,45,49,49,52,46,48,48,48,51,56,56,44,52,50,46,53,50,54,51,55,51,93,44,91,45,49,49,51,46,57,51,49,55,57,57,44,52,50,46,53,51,53,50,52,51,93,44,91,45,49,49,51,46,57,51,49,54,56,55,44,52,50,46,55,54,53,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,86,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,52,56,53,57,49,44,51,57,46,51,54,56,49,54,53,93,44,91,45,56,50,46,55,54,50,56,57,50,44,51,57,46,50,48,55,57,54,55,93,44,91,45,56,50,46,53,51,54,51,48,54,44,51,57,46,49,56,48,55,53,55,93,44,91,45,56,50,46,52,50,52,54,55,55,44,51,57,46,49,51,55,57,55,50,93,44,91,45,56,50,46,52,51,53,51,48,57,44,51,57,46,48,51,53,48,55,57,93,44,91,45,56,50,46,51,50,50,56,55,52,44,51,57,46,48,50,55,54,55,52,93,44,91,45,56,50,46,50,54,56,53,56,51,44,51,57,46,50,48,51,55,54,93,44,91,45,56,50,46,50,56,57,54,54,51,44,51,57,46,51,56,52,49,57,53,93,44,91,45,56,50,46,55,52,56,53,57,49,44,51,57,46,51,54,56,49,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,57,34,44,34,78,65,77,69,34,58,34,77,99,76,101,110,110,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,52,50,57,44,34,98,101,100,115,34,58,52,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,55,55,50,54,53,44,51,49,46,55,52,53,52,57,50,93,44,91,45,57,55,46,54,48,53,50,51,44,51,49,46,53,56,55,55,54,50,93,44,91,45,57,55,46,52,49,56,54,48,54,44,51,49,46,51,50,48,50,48,50,93,44,91,45,57,55,46,50,55,56,49,49,51,44,51,49,46,50,55,57,55,57,57,93,44,91,45,57,54,46,56,48,49,49,50,51,44,51,49,46,53,50,50,50,54,57,93,44,91,45,57,54,46,57,51,50,50,49,53,44,51,49,46,55,48,56,56,56,55,93,44,91,45,57,55,46,48,51,55,50,54,54,44,51,49,46,56,54,51,48,55,57,93,44,91,45,57,55,46,50,55,55,50,54,53,44,51,49,46,55,52,53,52,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,57,55,49,51,53,49,44,52,51,46,57,51,56,51,48,56,93,44,91,45,49,49,52,46,50,57,50,52,56,52,44,52,51,46,56,56,55,48,54,50,93,44,91,45,49,49,52,46,49,51,50,55,51,50,44,52,51,46,55,53,48,55,53,55,93,44,91,45,49,49,51,46,57,56,54,52,57,52,44,52,51,46,55,50,53,51,57,93,44,91,45,49,49,51,46,55,57,56,52,52,49,44,52,51,46,53,54,57,50,49,55,93,44,91,45,49,49,51,46,55,54,49,49,55,44,52,51,46,54,50,49,49,57,52,93,44,91,45,49,49,51,46,53,50,55,56,48,52,44,52,51,46,55,49,57,49,51,53,93,44,91,45,49,49,51,46,51,55,55,56,55,55,44,52,51,46,56,48,57,55,93,44,91,45,49,49,51,46,52,52,52,56,57,49,44,52,51,46,57,49,56,53,52,50,93,44,91,45,49,49,51,46,52,49,54,53,50,53,44,52,52,46,50,51,51,51,54,52,93,44,91,45,49,49,51,46,51,50,48,54,48,57,44,52,52,46,50,51,51,49,54,52,93,44,91,45,49,49,51,46,51,51,57,54,49,55,44,52,52,46,51,49,54,51,49,51,93,44,91,45,49,49,51,46,53,48,49,53,49,57,44,52,52,46,52,50,50,51,48,51,93,44,91,45,49,49,51,46,56,49,54,50,49,53,44,52,52,46,52,57,51,57,54,51,93,44,91,45,49,49,52,46,48,49,57,50,48,52,44,52,52,46,54,53,49,53,52,49,93,44,91,45,49,49,52,46,48,55,53,57,51,55,44,52,52,46,55,52,53,53,55,56,93,44,91,45,49,49,52,46,51,51,57,49,57,54,44,52,52,46,55,57,51,53,57,52,93,44,91,45,49,49,52,46,52,53,49,56,52,44,52,52,46,54,49,49,55,52,49,93,44,91,45,49,49,52,46,54,48,50,51,54,50,44,52,52,46,53,57,52,56,53,54,93,44,91,45,49,49,52,46,56,49,57,56,56,57,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,49,52,46,56,49,50,52,48,55,44,52,52,46,56,48,56,51,52,54,93,44,91,45,49,49,52,46,57,53,54,49,49,54,44,52,52,46,55,50,48,57,56,50,93,44,91,45,49,49,53,46,48,57,49,57,50,50,44,52,52,46,55,54,54,55,50,54,93,44,91,45,49,49,53,46,49,54,53,54,48,53,44,52,52,46,54,53,48,51,48,54,93,44,91,45,49,49,53,46,51,48,52,57,57,52,44,52,52,46,53,55,57,56,53,55,93,44,91,45,49,49,53,46,50,50,56,50,50,50,44,52,52,46,52,50,51,53,50,49,93,44,91,45,49,49,53,46,50,57,52,54,49,52,44,52,52,46,51,51,57,52,52,53,93,44,91,45,49,49,53,46,49,54,55,54,56,52,44,52,52,46,50,48,50,56,52,93,44,91,45,49,49,53,46,48,50,52,49,56,49,44,52,52,46,49,53,53,52,55,56,93,44,91,45,49,49,53,46,48,52,55,55,50,44,52,52,46,48,53,48,54,53,53,93,44,91,45,49,49,52,46,57,57,48,55,55,55,44,52,51,46,57,52,57,55,50,51,93,44,91,45,49,49,52,46,57,55,49,51,53,49,44,52,51,46,57,51,56,51,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,54,52,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,51,49,50,56,44,52,51,46,53,48,48,50,49,56,93,44,91,45,57,50,46,53,53,52,51,56,49,44,52,51,46,50,49,50,56,49,51,93,44,91,45,57,50,46,48,56,48,57,55,54,44,52,51,46,50,49,50,57,52,55,93,44,91,45,57,50,46,48,55,57,56,48,50,44,52,51,46,53,48,48,54,50,49,93,44,91,45,57,50,46,52,52,56,57,52,56,44,52,51,46,53,48,48,52,53,57,93,44,91,45,57,50,46,53,53,51,49,50,56,44,52,51,46,53,48,48,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,80,97,108,109,32,66,101,97,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,54,50,55,55,44,34,98,101,100,115,34,58,52,51,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,50,50,55,53,52,44,50,54,46,57,55,48,51,57,50,93,44,91,45,56,48,46,49,52,50,48,48,55,44,50,54,46,57,53,54,54,52,93,44,91,45,56,48,46,56,56,53,54,51,57,44,50,54,46,57,53,56,57,49,57,93,44,91,45,56,48,46,56,56,49,50,51,51,44,50,54,46,51,51,51,56,48,54,93,44,91,45,56,48,46,50,57,54,57,56,54,44,50,54,46,51,51,52,51,53,54,93,44,91,45,56,48,46,48,49,53,50,55,54,44,50,54,46,51,50,48,57,53,54,93,44,91,45,55,57,46,57,56,48,54,52,56,44,50,54,46,53,57,53,52,52,55,93,44,91,45,55,57,46,57,55,53,52,50,53,44,50,54,46,56,48,48,50,53,93,44,91,45,56,48,46,48,50,50,55,53,52,44,50,54,46,57,55,48,51,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,52,53,52,53,49,44,51,51,46,57,56,52,49,57,53,93,44,91,45,56,50,46,53,55,51,54,53,50,44,51,51,46,55,56,54,49,49,54,93,44,91,45,56,50,46,52,55,57,53,49,56,44,51,51,46,54,51,57,53,51,53,93,44,91,45,56,50,46,52,50,53,51,50,56,44,51,51,46,54,53,48,54,50,57,93,44,91,45,56,50,46,51,50,57,48,52,57,44,51,51,46,54,57,55,54,55,54,93,44,91,45,56,50,46,50,49,56,54,52,57,44,51,51,46,54,56,54,50,57,57,93,44,91,45,56,50,46,51,52,54,57,51,51,44,51,51,46,56,51,52,50,57,56,93,44,91,45,56,50,46,53,54,52,52,57,49,44,51,51,46,57,53,53,55,51,51,93,44,91,45,56,50,46,54,52,53,52,53,49,44,51,51,46,57,56,52,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,50,53,44,34,98,101,100,115,34,58,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,48,53,56,57,57,44,51,49,46,55,53,51,48,51,53,93,44,91,45,56,54,46,57,48,54,55,54,57,44,51,49,46,54,51,50,54,55,49,93,44,91,45,56,54,46,56,51,57,51,56,54,44,51,49,46,53,50,53,50,48,52,93,44,91,45,56,54,46,55,48,49,53,53,52,44,51,49,46,53,50,51,57,52,54,93,44,91,45,56,54,46,52,57,57,50,49,51,44,51,49,46,53,50,53,51,51,49,93,44,91,45,56,54,46,52,52,56,54,51,53,44,51,49,46,54,53,53,54,49,55,93,44,91,45,56,54,46,52,52,56,49,57,56,44,51,49,46,57,54,52,54,50,57,93,44,91,45,56,54,46,56,53,55,53,56,51,44,51,49,46,57,54,50,49,54,55,93,44,91,45,56,54,46,57,48,54,56,57,57,44,51,49,46,56,51,48,54,50,56,93,44,91,45,56,54,46,57,48,53,56,57,57,44,51,49,46,55,53,51,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,83,117,109,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,52,55,51,44,34,98,101,100,115,34,58,50,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,54,51,57,48,57,44,51,54,46,54,51,51,53,54,50,93,44,91,45,56,54,46,54,57,53,48,54,52,44,51,54,46,52,50,49,51,49,57,93,44,91,45,56,54,46,55,53,52,55,57,53,44,51,54,46,52,48,53,52,57,54,93,44,91,45,56,54,46,53,57,52,50,56,54,44,51,54,46,50,52,53,49,48,53,93,44,91,45,56,54,46,52,53,49,55,50,49,44,51,54,46,51,51,53,54,50,57,93,44,91,45,56,54,46,50,56,51,50,53,54,44,51,54,46,51,52,55,53,93,44,91,45,56,54,46,50,50,56,52,51,52,44,51,54,46,52,56,55,52,55,50,93,44,91,45,56,54,46,50,48,53,51,56,56,44,51,54,46,54,52,48,49,56,52,93,44,91,45,56,54,46,52,49,49,51,55,57,44,51,54,46,54,53,48,57,50,52,93,44,91,45,56,54,46,53,54,51,57,48,57,44,51,54,46,54,51,51,53,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,75,105,110,103,32,97,110,100,32,81,117,101,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,53,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,56,49,52,49,56,44,51,55,46,56,57,49,54,53,52,93,44,91,45,55,55,46,48,51,51,50,55,51,44,51,55,46,55,50,48,56,48,57,93,44,91,45,55,54,46,57,50,55,53,44,51,55,46,54,57,48,52,56,53,93,44,91,45,55,54,46,55,55,55,55,50,57,44,51,55,46,53,53,52,52,52,54,93,44,91,45,55,54,46,55,57,50,49,56,52,44,51,55,46,53,49,55,53,57,52,93,44,91,45,55,54,46,55,52,49,57,56,52,44,51,55,46,52,54,55,48,55,54,93,44,91,45,55,54,46,55,49,50,51,48,53,44,51,55,46,52,51,49,51,48,57,93,44,91,45,55,54,46,54,53,52,48,55,54,44,51,55,46,54,48,51,49,55,52,93,44,91,45,55,54,46,55,53,49,48,55,50,44,51,55,46,55,50,56,54,48,53,93,44,91,45,55,55,46,48,51,53,53,49,50,44,51,55,46,56,54,53,56,49,56,93,44,91,45,55,55,46,48,55,48,49,49,53,44,51,55,46,57,54,52,55,55,93,44,91,45,55,55,46,49,56,49,52,49,56,44,51,55,46,56,57,49,54,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,56,55,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,54,54,54,56,57,44,51,54,46,52,57,56,55,51,53,93,44,91,45,57,51,46,56,54,54,57,54,49,44,51,54,46,51,52,56,53,55,57,93,44,91,45,57,51,46,56,49,53,48,55,56,44,51,54,46,51,48,54,53,53,49,93,44,91,45,57,51,46,54,53,55,54,56,57,44,51,54,46,51,48,51,48,56,50,93,44,91,45,57,51,46,53,53,49,49,51,53,44,51,54,46,49,50,54,50,55,49,93,44,91,45,57,51,46,52,55,57,53,50,56,44,51,54,46,49,50,53,48,55,50,93,44,91,45,57,51,46,51,48,48,56,50,44,51,54,46,49,50,49,53,53,93,44,91,45,57,51,46,50,57,51,52,54,55,44,51,54,46,52,57,56,50,55,54,93,44,91,45,57,51,46,51,49,53,51,51,50,44,51,54,46,52,57,56,49,52,93,44,91,45,57,51,46,53,56,52,50,54,50,44,51,54,46,52,57,57,49,54,55,93,44,91,45,57,51,46,56,54,54,54,56,57,44,51,54,46,52,57,56,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,56,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,56,50,48,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,115,98,111,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,52,56,53,48,57,44,51,56,46,48,54,56,49,48,52,93,44,91,45,55,56,46,56,57,49,55,55,50,44,51,56,46,48,51,57,52,51,56,93,44,91,45,55,56,46,56,54,50,54,55,55,44,51,56,46,48,56,57,57,55,50,93,44,91,45,55,56,46,57,48,51,55,57,53,44,51,56,46,48,57,57,56,48,50,93,44,91,45,55,56,46,57,52,56,53,48,57,44,51,56,46,48,54,56,49,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,48,34,44,34,78,65,77,69,34,58,34,83,105,116,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,51,56,44,34,98,101,100,115,34,58,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,54,46,52,53,52,52,50,55,44,53,55,46,56,51,48,54,55,54,93,44,91,45,49,51,53,46,56,54,52,49,44,53,54,46,57,57,54,55,93,44,91,45,49,51,52,46,56,53,57,50,50,50,44,53,54,46,50,52,52,57,52,50,93,44,91,45,49,51,52,46,54,54,54,51,57,54,44,53,54,46,49,52,55,53,56,54,93,44,91,45,49,51,52,46,54,54,54,54,54,56,44,53,54,46,50,56,51,51,51,52,93,44,91,45,49,51,52,46,52,50,57,50,52,55,44,53,54,46,50,56,50,55,51,55,93,44,91,45,49,51,52,46,52,57,54,50,49,54,44,53,54,46,54,57,57,54,51,49,93,44,91,45,49,51,52,46,53,54,57,50,56,57,44,53,54,46,56,54,51,48,53,50,93,44,91,45,49,51,52,46,54,55,55,50,44,53,54,46,57,57,57,93,44,91,45,49,51,52,46,55,51,56,53,53,54,44,53,55,46,50,50,54,51,48,51,93,44,91,45,49,51,52,46,55,48,49,49,52,49,44,53,55,46,52,53,52,54,49,51,93,44,91,45,49,51,52,46,56,51,54,50,44,53,55,46,55,56,55,55,93,44,91,45,49,51,53,46,50,51,56,49,50,57,44,53,55,46,55,54,49,55,49,49,93,44,91,45,49,51,53,46,53,50,56,53,51,52,44,53,55,46,56,56,48,52,55,93,44,91,45,49,51,53,46,57,48,49,57,54,52,44,53,56,46,48,48,49,51,52,51,93,44,91,45,49,51,54,46,48,50,52,51,50,56,44,53,55,46,56,51,56,55,57,53,93,44,91,45,49,51,54,46,52,53,52,52,50,55,44,53,55,46,56,51,48,54,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,77,117,108,116,110,111,109,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,56,54,52,55,44,34,98,101,100,115,34,58,50,57,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,57,50,57,49,52,54,44,52,53,46,55,50,49,52,56,50,93,44,91,45,49,50,50,46,57,50,57,49,50,56,44,52,53,46,54,51,53,51,49,51,93,44,91,45,49,50,50,46,55,52,51,56,54,50,44,52,53,46,53,49,57,53,48,57,93,44,91,45,49,50,50,46,55,52,51,55,50,49,44,52,53,46,52,51,51,50,57,52,93,44,91,45,49,50,50,46,54,52,49,53,56,44,52,53,46,52,54,49,52,56,50,93,44,91,45,49,50,49,46,56,49,57,53,56,55,44,52,53,46,52,54,49,54,55,53,93,44,91,45,49,50,49,46,57,48,54,54,50,56,44,52,53,46,53,50,49,49,52,55,93,44,91,45,49,50,49,46,57,50,50,48,50,56,44,52,53,46,54,52,57,50,48,53,93,44,91,45,49,50,50,46,50,52,57,50,49,55,44,52,53,46,53,52,56,54,53,51,93,44,91,45,49,50,50,46,52,51,56,54,55,52,44,52,53,46,53,54,51,53,56,53,93,44,91,45,49,50,50,46,55,54,51,56,49,44,52,53,46,54,53,55,49,51,56,93,44,91,45,49,50,50,46,55,54,50,52,51,55,44,52,53,46,55,50,56,54,54,53,93,44,91,45,49,50,50,46,57,50,57,49,52,54,44,52,53,46,55,50,49,52,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,71,114,117,110,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,49,51,53,57,51,44,51,53,46,50,56,57,49,56,57,93,44,91,45,56,53,46,56,55,51,48,50,53,44,51,53,46,50,50,51,51,54,50,93,44,91,45,56,53,46,55,52,48,49,49,51,44,51,53,46,50,49,53,50,57,53,93,44,91,45,56,53,46,54,57,48,52,49,53,44,51,53,46,50,56,54,48,55,53,93,44,91,45,56,53,46,53,53,56,53,53,49,44,51,53,46,51,49,57,50,57,50,93,44,91,45,56,53,46,52,56,53,54,51,53,44,51,53,46,52,48,54,52,51,51,93,44,91,45,56,53,46,54,48,55,51,50,54,44,51,53,46,53,51,49,54,53,49,93,44,91,45,56,53,46,56,55,54,57,54,50,44,51,53,46,53,50,52,48,57,53,93,44,91,45,56,53,46,57,49,51,53,57,51,44,51,53,46,50,56,57,49,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,117,98,98,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,56,54,50,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,56,51,50,49,54,44,52,55,46,52,49,50,55,55,51,93,44,91,45,57,53,46,49,54,57,49,55,50,44,52,55,46,49,53,50,53,49,53,93,44,91,45,57,53,46,49,54,51,48,49,44,52,54,46,56,48,52,55,50,93,44,91,45,57,52,46,55,56,55,49,50,54,44,52,54,46,56,48,51,57,52,51,93,44,91,45,57,52,46,54,53,57,57,52,50,44,52,54,46,56,48,51,55,49,54,93,44,91,45,57,52,46,54,55,48,50,49,52,44,52,55,46,52,49,48,49,53,49,93,44,91,45,57,53,46,49,56,51,50,49,54,44,52,55,46,52,49,50,55,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,83,97,114,103,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,48,54,55,49,53,44,52,54,46,50,56,50,54,50,54,93,44,91,45,57,56,46,48,48,56,49,48,50,44,52,53,46,57,51,53,56,57,54,93,44,91,45,57,55,46,57,55,56,55,55,56,44,52,53,46,57,51,53,56,54,51,93,44,91,45,57,55,46,50,50,56,50,57,49,44,52,53,46,57,51,53,51,56,51,93,44,91,45,57,55,46,50,53,57,54,51,50,44,52,53,46,57,57,55,49,56,53,93,44,91,45,57,55,46,50,56,48,53,54,54,44,52,54,46,50,56,50,51,57,51,93,44,91,45,57,56,46,48,48,54,55,49,53,44,52,54,46,50,56,50,54,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,53,53,56,44,34,98,101,100,115,34,58,52,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,50,54,50,50,56,44,52,52,46,57,57,52,56,54,51,93,44,91,45,55,52,46,57,55,50,52,57,49,44,52,52,46,57,56,51,52,48,53,93,44,91,45,55,53,46,50,55,51,53,52,53,44,52,52,46,56,53,51,48,56,52,93,44,91,45,55,53,46,55,54,54,50,50,54,44,52,52,46,53,49,53,56,52,55,93,44,91,45,55,53,46,56,54,48,48,52,54,44,52,52,46,52,48,51,50,54,51,93,44,91,45,55,53,46,52,52,54,49,50,52,44,52,52,46,50,49,55,54,53,53,93,44,91,45,55,53,46,49,55,48,49,53,57,44,52,52,46,48,57,54,57,53,57,93,44,91,45,55,53,46,48,54,50,55,55,57,44,52,52,46,48,53,48,52,93,44,91,45,55,52,46,56,53,52,49,55,49,44,52,52,46,48,55,48,48,56,57,93,44,91,45,55,52,46,53,51,53,49,53,54,44,52,52,46,48,57,57,50,53,93,44,91,45,55,52,46,53,50,53,54,56,51,44,52,52,46,49,55,48,54,51,54,93,44,91,45,55,52,46,54,52,49,56,55,50,44,52,52,46,57,53,50,54,50,49,93,44,91,45,55,52,46,55,50,54,50,50,56,44,52,52,46,57,57,52,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,82,101,121,110,111,108,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,49,49,56,54,51,44,51,55,46,52,49,53,50,55,55,93,44,91,45,57,49,46,49,50,54,48,50,56,44,51,55,46,49,57,57,52,56,93,44,91,45,57,49,46,48,49,55,55,54,54,44,51,55,46,48,57,53,54,55,55,93,44,91,45,57,48,46,57,54,52,52,54,54,44,51,55,46,48,53,51,53,56,52,93,44,91,45,57,48,46,55,55,57,53,53,51,44,51,55,46,48,53,48,51,50,52,93,44,91,45,57,48,46,55,51,53,52,53,51,44,51,55,46,50,55,49,48,52,93,44,91,45,57,48,46,55,55,50,57,52,57,44,51,55,46,51,55,51,54,53,57,93,44,91,45,57,48,46,55,54,56,54,57,53,44,51,55,46,54,48,51,48,49,49,93,44,91,45,57,49,46,49,53,53,48,55,51,44,51,55,46,53,56,56,48,57,50,93,44,91,45,57,49,46,51,49,50,52,53,56,44,51,55,46,53,57,50,56,50,52,93,44,91,45,57,49,46,51,49,52,50,51,54,44,51,55,46,53,48,53,49,51,50,93,44,91,45,57,49,46,50,49,49,56,54,51,44,51,55,46,52,49,53,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,83,97,99,114,97,109,101,110,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,48,48,50,51,44,34,98,101,100,115,34,58,51,50,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,49,52,49,53,57,53,44,51,56,46,55,49,49,57,51,57,93,44,91,45,49,50,49,46,52,56,52,51,57,54,44,51,56,46,55,51,52,53,57,56,93,44,91,45,49,50,49,46,54,48,50,56,57,52,44,51,56,46,55,51,53,56,51,56,93,44,91,45,49,50,49,46,53,48,50,57,56,50,44,51,56,46,52,52,48,55,49,56,93,44,91,45,49,50,49,46,53,57,51,50,55,51,44,51,56,46,51,49,51,48,56,57,93,44,91,45,49,50,49,46,54,49,53,52,49,51,44,51,56,46,49,57,53,54,57,54,93,44,91,45,49,50,49,46,55,49,51,57,50,54,44,51,56,46,48,56,52,53,52,50,93,44,91,45,49,50,49,46,56,54,50,52,54,50,44,51,56,46,48,54,54,48,51,93,44,91,45,49,50,49,46,55,51,55,56,50,52,44,51,56,46,48,50,54,54,51,93,44,91,45,49,50,49,46,53,56,48,48,50,50,44,51,56,46,48,57,52,52,49,52,93,44,91,45,49,50,49,46,52,55,48,57,53,56,44,51,56,46,50,53,57,57,48,50,93,44,91,45,49,50,49,46,51,52,52,48,50,52,44,51,56,46,50,50,56,50,54,93,44,91,45,49,50,49,46,48,50,55,48,56,52,44,51,56,46,51,48,48,50,53,50,93,44,91,45,49,50,49,46,48,50,55,53,48,55,44,51,56,46,53,48,56,50,57,50,93,44,91,45,49,50,49,46,49,52,49,53,57,53,44,51,56,46,55,49,49,57,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,80,97,117,108,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,55,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,48,51,53,52,52,44,52,49,46,50,53,50,53,54,50,93,44,91,45,56,52,46,56,48,51,50,53,49,44,52,48,46,57,56,57,51,57,52,93,44,91,45,56,52,46,51,57,57,52,56,54,44,52,48,46,57,57,48,51,49,53,93,44,91,45,56,52,46,51,52,49,54,48,50,44,52,49,46,49,54,53,53,50,52,93,44,91,45,56,52,46,52,53,55,50,49,55,44,52,49,46,50,53,51,52,56,53,93,44,91,45,56,52,46,56,48,51,53,52,52,44,52,49,46,50,53,50,53,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,87,101,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,52,55,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,55,51,56,54,49,44,52,48,46,57,49,55,56,50,51,93,44,91,45,56,53,46,51,51,54,48,51,44,52,48,46,57,49,55,48,56,50,93,44,91,45,56,53,46,51,51,52,54,54,55,44,52,48,46,54,53,52,52,49,51,93,44,91,45,56,53,46,52,52,56,56,50,53,44,52,48,46,54,53,51,54,48,55,93,44,91,45,56,53,46,52,52,55,48,49,52,44,52,48,46,53,54,54,57,50,57,93,44,91,45,56,53,46,50,48,49,49,52,54,44,52,48,46,53,54,55,50,52,50,93,44,91,45,56,53,46,48,54,56,52,55,57,44,52,48,46,53,54,56,50,52,93,44,91,45,56,53,46,48,55,51,56,54,49,44,52,48,46,57,49,55,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,49,55,56,49,50,53,44,51,55,46,49,49,51,52,93,44,91,45,56,48,46,51,52,53,51,54,50,44,51,55,46,48,50,54,56,49,56,93,44,91,45,56,48,46,53,52,51,57,51,51,44,51,54,46,57,56,52,54,51,57,93,44,91,45,56,48,46,54,51,51,57,56,55,44,51,54,46,57,51,49,55,56,93,44,91,45,56,48,46,52,54,52,49,56,44,51,54,46,55,48,56,55,49,56,93,44,91,45,56,48,46,51,56,53,51,55,51,44,51,54,46,55,57,56,54,53,56,93,44,91,45,56,48,46,50,51,53,52,53,53,44,51,54,46,56,55,50,49,51,93,44,91,45,56,48,46,49,52,53,56,52,52,44,51,54,46,57,52,57,53,55,56,93,44,91,45,56,48,46,49,50,56,54,55,52,44,51,55,46,49,50,50,57,48,49,93,44,91,45,56,48,46,49,55,56,49,50,53,44,51,55,46,49,49,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,66,97,114,98,97,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,51,55,51,56,44,34,98,101,100,115,34,58,56,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,50,48,46,55,48,50,55,57,53,44,51,52,46,57,57,57,57,55,53,93,44,91,45,49,50,48,46,55,51,51,56,50,44,51,52,46,56,57,54,48,52,49,93,44,91,45,49,50,48,46,54,55,51,50,56,49,44,51,52,46,56,51,56,54,50,52,93,44,91,45,49,50,48,46,54,54,52,54,57,49,44,51,52,46,54,57,54,51,52,52,93,44,91,45,49,50,48,46,55,49,50,55,53,55,44,51,52,46,53,54,56,50,57,55,93,44,91,45,49,50,48,46,53,53,57,52,51,57,44,51,52,46,52,56,56,52,54,54,93,44,91,45,49,50,48,46,52,53,48,57,57,56,44,51,52,46,51,57,49,49,56,52,93,44,91,45,49,50,48,46,50,56,55,49,50,53,44,51,52,46,52,49,55,54,48,57,93,44,91,45,49,50,48,46,48,52,52,56,49,52,44,51,52,46,52,49,50,52,53,52,93,44,91,45,49,49,57,46,56,57,56,53,48,50,44,51,52,46,51,54,48,51,53,56,93,44,91,45,49,49,57,46,55,48,55,53,57,51,44,51,52,46,51,51,55,51,50,52,93,44,91,45,49,49,57,46,54,53,49,51,53,55,44,51,52,46,51,54,54,55,48,56,93,44,91,45,49,49,57,46,53,48,48,57,53,51,44,51,52,46,51,50,54,57,50,50,93,44,91,45,49,49,57,46,52,52,50,50,50,50,44,51,52,46,52,53,53,57,49,93,44,91,45,49,49,57,46,52,52,50,51,53,50,44,51,52,46,57,48,49,50,55,52,93,44,91,45,49,49,57,46,52,55,50,55,53,52,44,51,52,46,57,48,49,49,55,52,93,44,91,45,49,49,57,46,55,52,53,53,54,54,44,51,52,46,57,55,51,54,55,54,93,44,91,45,49,50,48,46,48,57,54,57,51,44,51,53,46,49,48,57,53,57,53,93,44,91,45,49,50,48,46,51,50,55,49,49,53,44,51,52,46,57,56,54,53,50,53,93,44,91,45,49,50,48,46,52,57,54,50,50,50,44,51,52,46,57,57,51,49,53,53,93,44,91,45,49,50,48,46,54,51,52,49,52,52,44,51,52,46,57,53,57,53,54,50,93,44,91,45,49,50,48,46,55,48,50,55,57,53,44,51,52,46,57,57,57,57,55,53,93,93,93,44,91,91,91,45,49,49,57,46,52,54,56,48,54,52,44,51,52,46,48,54,51,49,51,57,93,44,91,45,49,49,57,46,53,54,53,53,50,50,44,51,52,46,49,48,56,56,48,57,93,44,91,45,49,49,57,46,54,53,52,57,51,49,44,51,52,46,48,55,49,50,49,56,93,44,91,45,49,49,57,46,57,50,56,55,57,53,44,51,52,46,49,50,57,57,48,50,93,44,91,45,49,50,48,46,48,48,48,57,54,51,44,51,52,46,48,55,54,56,49,57,93,44,91,45,49,50,48,46,50,53,50,56,52,54,44,51,52,46,48,53,56,48,51,49,93,44,91,45,49,50,48,46,51,54,49,57,55,56,44,51,52,46,49,52,56,55,56,93,44,91,45,49,50,48,46,53,54,48,57,57,56,44,51,52,46,49,52,48,54,54,52,93,44,91,45,49,50,48,46,53,55,51,56,48,56,44,51,52,46,48,55,53,57,54,54,93,44,91,45,49,50,48,46,52,54,54,55,55,55,44,51,51,46,57,55,54,49,49,54,93,44,91,45,49,50,48,46,50,57,56,57,55,51,44,51,51,46,57,54,56,52,53,55,93,44,91,45,49,50,48,46,50,50,49,49,50,56,44,51,51,46,56,56,52,49,56,55,93,44,91,45,49,50,48,46,49,48,52,48,56,56,44,51,51,46,56,52,50,51,57,54,93,44,91,45,49,49,57,46,57,50,56,55,57,57,44,51,51,46,57,48,53,52,55,49,93,44,91,45,49,49,57,46,55,48,55,52,57,49,44,51,51,46,57,49,48,51,56,56,93,44,91,45,49,49,57,46,52,57,50,50,57,44,51,51,46,57,56,51,50,49,53,93,44,91,45,49,49,57,46,52,54,56,48,54,52,44,51,52,46,48,54,51,49,51,57,93,93,93,44,91,91,91,45,49,49,57,46,49,49,55,49,55,52,44,51,51,46,53,48,53,54,93,44,91,45,49,49,57,46,48,55,49,56,57,51,44,51,51,46,52,49,51,55,57,57,93,44,91,45,49,49,56,46,57,56,48,53,49,50,44,51,51,46,52,50,56,53,57,51,93,44,91,45,49,49,56,46,57,56,50,49,52,57,44,51,51,46,53,50,52,50,54,93,44,91,45,49,49,57,46,49,49,55,49,55,52,44,51,51,46,53,48,53,54,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,51,51,52,55,44,51,56,46,50,48,57,53,55,93,44,91,45,56,49,46,57,51,50,52,52,52,44,51,56,46,49,53,48,48,56,53,93,44,91,45,56,49,46,57,51,50,53,48,55,44,51,56,46,48,50,53,51,53,54,93,44,91,45,56,49,46,55,56,53,54,52,49,44,51,55,46,57,51,54,52,48,52,93,44,91,45,56,49,46,55,50,50,49,51,54,44,51,55,46,56,48,57,53,48,55,93,44,91,45,56,49,46,54,48,55,53,51,50,44,51,55,46,55,56,56,55,48,57,93,44,91,45,56,49,46,53,49,52,50,50,56,44,51,55,46,55,57,49,50,49,49,93,44,91,45,56,49,46,53,55,49,51,51,52,44,51,55,46,57,50,56,49,48,55,93,44,91,45,56,49,46,52,53,54,54,51,50,44,51,55,46,57,56,55,51,48,55,93,44,91,45,56,49,46,52,55,56,49,50,50,44,51,56,46,48,54,48,49,51,56,93,44,91,45,56,49,46,54,52,56,53,51,55,44,51,56,46,49,56,53,48,51,54,93,44,91,45,56,49,46,56,51,51,52,55,44,51,56,46,50,48,57,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,53,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,53,50,54,55,57,44,51,52,46,57,57,51,56,54,51,93,44,91,45,56,57,46,50,57,57,50,50,55,44,51,52,46,56,52,52,52,49,53,93,44,91,45,56,57,46,50,57,56,51,51,52,44,51,52,46,53,56,50,57,50,54,93,44,91,45,56,57,46,50,52,53,54,52,53,44,51,52,46,53,56,51,50,51,52,93,44,91,45,56,57,46,48,56,56,52,56,56,44,51,52,46,53,57,56,50,52,55,93,44,91,45,56,57,46,48,56,56,48,54,53,44,51,52,46,56,49,53,51,48,55,93,44,91,45,56,57,46,48,49,55,53,53,49,44,51,52,46,56,53,56,55,50,51,93,44,91,45,56,57,46,48,49,55,49,50,55,44,51,52,46,57,57,52,57,55,49,93,44,91,45,56,57,46,49,57,56,50,56,56,44,51,52,46,57,57,52,52,56,52,93,44,91,45,56,57,46,51,53,50,54,55,57,44,51,52,46,57,57,51,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,67,114,105,116,116,101,110,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,56,51,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,53,56,52,54,54,44,51,55,46,52,48,52,55,53,50,93,44,91,45,56,56,46,50,49,56,57,56,44,51,55,46,50,55,51,49,52,53,93,44,91,45,56,56,46,49,57,51,53,49,57,44,51,55,46,49,52,55,50,53,54,93,44,91,45,56,56,46,48,57,53,55,56,49,44,51,55,46,49,55,57,54,56,52,93,44,91,45,56,56,46,48,56,49,48,53,56,44,51,55,46,50,50,51,51,52,55,93,44,91,45,56,55,46,56,48,49,48,52,54,44,51,55,46,51,55,57,52,52,53,93,44,91,45,56,55,46,57,51,50,57,53,50,44,51,55,46,52,56,48,48,53,50,93,44,91,45,56,56,46,48,54,49,51,51,50,44,51,55,46,53,48,53,51,51,50,93,44,91,45,56,56,46,50,55,57,50,48,55,44,51,55,46,52,53,51,50,57,50,93,44,91,45,56,56,46,51,53,56,52,54,54,44,51,55,46,52,48,52,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,80,97,108,111,32,65,108,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,53,53,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,44,91,45,57,52,46,57,49,51,56,57,44,52,50,46,57,48,57,55,93,44,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,44,91,45,57,52,46,52,52,51,49,51,55,44,52,51,46,50,53,53,48,49,52,93,44,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,82,105,110,103,103,111,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,56,52,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,55,48,55,55,57,44,52,48,46,56,57,57,53,48,50,93,44,91,45,57,52,46,52,55,49,50,49,51,44,52,48,46,53,55,48,56,50,53,93,44,91,45,57,52,46,50,51,50,50,52,44,52,48,46,53,55,49,57,48,49,93,44,91,45,57,52,46,48,49,53,52,57,50,44,52,48,46,53,55,51,57,49,52,93,44,91,45,57,52,46,48,49,52,56,48,51,44,52,48,46,56,57,55,48,51,49,93,44,91,45,57,52,46,52,55,48,55,55,57,44,52,48,46,56,57,57,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,57,53,56,44,34,98,101,100,115,34,58,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,53,52,49,55,50,56,44,51,53,46,56,57,57,56,53,49,93,44,91,45,56,48,46,48,52,54,56,54,57,44,51,53,46,57,50,48,54,57,51,93,44,91,45,56,48,46,48,54,54,56,52,50,44,51,53,46,53,48,53,54,54,49,93,44,91,45,55,57,46,55,54,55,57,53,55,44,51,53,46,53,49,49,52,56,52,93,44,91,45,55,57,46,53,53,53,56,48,52,44,51,53,46,53,49,53,48,51,57,93,44,91,45,55,57,46,53,52,50,52,50,56,44,51,53,46,56,52,51,51,48,51,93,44,91,45,55,57,46,53,52,49,55,50,56,44,51,53,46,56,57,57,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,101,99,105,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,53,49,55,44,34,98,101,100,115,34,58,49,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,56,56,53,57,54,44,51,57,46,55,50,50,49,57,57,93,44,91,45,55,54,46,49,51,53,52,56,52,44,51,57,46,55,50,49,49,52,55,93,44,91,45,55,54,46,50,51,51,50,55,57,44,51,57,46,55,50,49,51,54,55,93,44,91,45,55,54,46,48,52,49,57,55,54,44,51,57,46,52,57,52,50,50,56,93,44,91,45,55,54,46,48,55,57,57,50,53,44,51,57,46,52,48,53,53,48,54,93,44,91,45,55,53,46,57,48,56,48,51,53,44,51,57,46,51,54,52,53,48,49,93,44,91,45,55,53,46,55,54,54,53,57,52,44,51,57,46,51,55,55,53,54,51,93,44,91,45,55,53,46,55,56,56,53,57,54,44,51,57,46,55,50,50,49,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,52,55,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,50,54,53,56,57,44,52,48,46,52,55,54,56,55,54,93,44,91,45,56,55,46,53,51,49,52,52,57,44,52,48,46,49,52,56,49,50,55,93,44,91,45,56,55,46,52,48,54,54,54,55,44,52,48,46,49,50,55,53,48,56,93,44,91,45,56,55,46,50,52,52,56,57,56,44,52,48,46,51,48,57,50,53,50,93,44,91,45,56,55,46,48,57,50,49,52,56,44,52,48,46,51,54,54,54,49,50,93,44,91,45,56,55,46,48,57,51,54,55,54,44,52,48,46,52,55,53,55,52,53,93,44,91,45,56,55,46,53,50,54,53,56,57,44,52,48,46,52,55,54,56,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,53,50,50,50,53,44,52,49,46,55,52,48,51,55,50,93,44,91,45,57,56,46,55,53,49,53,53,56,44,52,49,46,51,57,52,48,56,52,93,44,91,45,57,56,46,55,52,52,51,51,44,52,49,46,51,57,52,49,55,56,93,44,91,45,57,56,46,50,57,49,52,49,57,44,52,49,46,51,57,51,56,57,52,93,44,91,45,57,56,46,50,57,49,51,52,52,44,52,49,46,52,56,48,55,50,55,93,44,91,45,57,56,46,50,57,53,55,54,44,52,49,46,55,52,49,49,55,56,93,44,91,45,57,56,46,55,53,50,50,50,53,44,52,49,46,55,52,48,51,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,56,56,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,44,91,45,57,55,46,51,54,57,49,57,57,44,52,48,46,48,48,49,57,54,54,93,44,91,45,57,54,46,57,49,54,52,48,55,44,52,48,46,48,48,49,53,49,49,93,44,91,45,57,54,46,57,49,54,48,53,53,44,52,48,46,51,52,57,55,50,55,93,44,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,56,56,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,52,48,49,44,52,48,46,54,57,56,54,50,53,93,44,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,44,91,45,57,54,46,57,49,54,48,53,53,44,52,48,46,51,52,57,55,50,55,93,44,91,45,57,54,46,57,49,50,54,51,55,44,52,48,46,53,50,51,54,50,53,93,44,91,45,57,54,46,57,49,51,52,57,51,44,52,48,46,54,57,55,57,52,56,93,44,91,45,57,55,46,51,54,56,52,48,49,44,52,48,46,54,57,56,54,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,75,110,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,52,56,53,52,52,44,51,55,46,53,48,51,49,54,55,93,44,91,45,56,51,46,48,53,48,50,48,49,44,51,55,46,53,50,53,51,49,52,93,44,91,45,56,51,46,49,50,52,51,52,56,44,51,55,46,52,48,52,57,55,51,93,44,91,45,56,51,46,49,48,49,53,54,51,44,51,55,46,50,51,53,52,51,55,93,44,91,45,56,51,46,48,48,48,49,52,50,44,51,55,46,49,57,53,55,49,93,44,91,45,56,50,46,55,51,50,54,57,51,44,51,55,46,50,55,49,53,48,50,93,44,91,45,56,50,46,55,49,48,56,48,53,44,51,55,46,50,56,53,51,50,51,93,44,91,45,56,50,46,56,51,49,52,55,51,44,51,55,46,52,54,54,57,57,93,44,91,45,56,50,46,57,50,53,52,54,44,51,55,46,52,56,54,53,50,53,93,44,91,45,56,50,46,57,52,56,53,52,52,44,51,55,46,53,48,51,49,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,50,49,56,44,34,98,101,100,115,34,58,50,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,53,52,50,50,49,44,52,50,46,48,51,51,48,55,51,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,50,46,48,51,51,53,52,56,93,44,91,45,57,48,46,56,57,56,52,56,52,44,52,49,46,57,52,54,50,52,53,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,49,46,55,55,49,51,57,50,93,44,91,45,57,48,46,55,48,50,49,52,50,44,52,49,46,55,51,55,55,50,56,93,44,91,45,57,48,46,53,51,55,54,49,54,44,52,49,46,55,55,54,51,57,53,93,44,91,45,57,48,46,51,49,54,53,54,50,44,52,49,46,55,50,56,57,50,56,93,44,91,45,57,48,46,50,52,50,51,56,44,52,49,46,55,56,50,57,54,52,93,44,91,45,57,48,46,49,53,49,57,56,44,52,49,46,57,50,56,57,49,55,93,44,91,45,57,48,46,49,53,52,50,50,49,44,52,50,46,48,51,51,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,52,55,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,53,50,53,48,50,44,52,51,46,56,52,55,57,53,51,93,44,91,45,57,53,46,52,53,52,52,51,51,44,52,51,46,53,48,48,54,52,54,93,44,91,45,57,53,46,51,56,55,55,56,55,44,52,51,46,53,48,48,50,50,54,93,44,91,45,57,52,46,57,49,52,53,56,50,44,52,51,46,53,48,48,56,53,51,93,44,91,45,57,52,46,56,53,52,53,53,53,44,52,51,46,53,48,48,57,50,53,93,44,91,45,57,52,46,56,53,52,52,52,52,44,52,51,46,56,52,56,48,57,57,93,44,91,45,57,52,46,56,53,57,51,56,56,44,52,51,46,56,52,56,48,57,51,93,44,91,45,57,53,46,52,53,50,53,48,50,44,52,51,46,56,52,55,57,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,111,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,52,53,57,49,44,52,52,46,49,57,54,55,49,54,93,44,91,45,57,51,46,48,52,53,57,54,54,44,52,51,46,56,52,56,52,54,55,93,44,91,45,57,50,46,54,56,57,51,57,49,44,52,51,46,56,52,56,53,55,93,44,91,45,57,50,46,54,55,56,55,49,55,44,52,52,46,49,57,53,53,49,54,93,44,91,45,57,51,46,48,52,49,49,53,57,44,52,52,46,49,57,54,55,50,54,93,44,91,45,57,51,46,48,52,53,57,49,44,52,52,46,49,57,54,55,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,114,101,101,98,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,50,54,44,34,98,101,100,115,34,58,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,52,56,50,57,44,52,51,46,56,52,56,49,51,57,93,44,91,45,57,51,46,54,52,56,53,51,51,44,52,51,46,52,57,57,54,56,93,44,91,45,57,51,46,52,57,55,51,53,51,44,52,51,46,52,57,57,54,50,50,93,44,91,45,57,51,46,48,52,57,49,57,50,44,52,51,46,52,57,57,55,48,53,93,44,91,45,57,51,46,48,52,57,53,50,52,44,52,51,46,56,52,56,52,52,51,93,44,91,45,57,51,46,52,48,54,54,52,50,44,52,51,46,56,52,56,49,50,93,44,91,45,57,51,46,54,52,56,50,57,44,52,51,46,56,52,56,49,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,97,108,97,118,101,114,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,50,51,53,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,55,50,52,56,52,44,51,56,46,53,48,57,56,54,57,93,44,91,45,49,50,48,46,53,48,52,54,52,44,51,56,46,52,51,57,51,55,56,93,44,91,45,49,50,48,46,54,52,54,54,49,51,44,51,56,46,51,51,52,53,56,54,93,44,91,45,49,50,48,46,57,57,53,52,57,55,44,51,56,46,50,50,53,52,48,50,93,44,91,45,49,50,48,46,57,50,54,52,52,57,44,51,56,46,48,55,55,52,50,49,93,44,91,45,49,50,48,46,54,53,51,50,55,52,44,51,55,46,56,51,49,56,53,56,93,44,91,45,49,50,48,46,53,49,52,57,53,50,44,51,55,46,57,53,51,51,57,93,44,91,45,49,50,48,46,49,55,54,54,49,51,44,51,56,46,51,55,51,53,49,93,44,91,45,49,50,48,46,48,49,57,57,53,49,44,51,56,46,52,51,51,53,50,49,93,44,91,45,49,50,48,46,48,55,50,52,56,52,44,51,56,46,53,48,57,56,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,97,114,110,115,116,97,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,54,57,48,44,34,98,101,100,115,34,58,52,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,55,53,56,52,54,52,44,52,49,46,53,54,48,57,51,49,93,44,91,45,55,48,46,53,48,50,56,51,50,44,52,49,46,53,48,48,54,51,53,93,44,91,45,55,48,46,51,57,53,49,54,52,44,52,49,46,53,53,54,55,50,50,93,44,91,45,55,48,46,49,54,48,51,53,55,44,52,49,46,53,57,57,51,55,93,44,91,45,55,48,46,49,49,52,51,57,52,44,52,49,46,52,56,52,48,56,51,93,44,91,45,54,57,46,57,52,54,54,49,51,44,52,49,46,53,49,50,49,53,50,93,44,91,45,54,57,46,56,54,50,56,55,54,44,52,49,46,54,55,51,49,53,51,93,44,91,45,54,57,46,56,54,54,53,50,53,44,52,49,46,56,49,55,48,49,49,93,44,91,45,54,57,46,57,50,57,49,48,57,44,52,49,46,57,55,56,52,55,54,93,44,91,45,55,48,46,48,49,49,53,57,49,44,52,50,46,48,55,51,51,55,56,93,44,91,45,55,48,46,49,55,50,53,52,50,44,52,50,46,49,51,52,53,49,53,93,44,91,45,55,48,46,51,50,50,53,50,50,44,52,50,46,49,49,55,57,49,53,93,44,91,45,55,48,46,51,53,53,48,48,52,44,52,50,46,48,48,48,49,48,52,93,44,91,45,55,48,46,54,50,49,54,50,50,44,52,49,46,55,52,56,57,55,50,93,44,91,45,55,48,46,55,53,50,52,50,52,44,52,49,46,53,54,53,56,53,49,93,44,91,45,55,48,46,55,53,56,52,54,52,44,52,49,46,53,54,48,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,105,100,100,108,101,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,53,52,48,55,54,44,51,55,46,54,48,51,49,55,52,93,44,91,45,55,54,46,52,51,55,53,54,49,44,51,55,46,53,49,52,51,54,93,44,91,45,55,54,46,49,52,48,56,51,53,44,51,55,46,53,52,50,50,50,93,44,91,45,55,54,46,49,53,49,55,49,49,44,51,55,46,53,56,53,57,54,56,93,44,91,45,55,54,46,51,54,56,50,49,51,44,51,55,46,53,57,52,51,51,49,93,44,91,45,55,54,46,53,51,54,53,56,57,44,51,55,46,54,51,57,49,57,52,93,44,91,45,55,54,46,54,54,56,49,56,50,44,51,55,46,55,55,56,51,56,54,93,44,91,45,55,54,46,55,53,49,48,55,50,44,51,55,46,55,50,56,54,48,53,93,44,91,45,55,54,46,54,53,52,48,55,54,44,51,55,46,54,48,51,49,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,48,56,52,44,34,98,101,100,115,34,58,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,48,56,56,55,56,44,52,49,46,51,51,49,56,54,49,93,44,91,45,55,57,46,50,49,53,50,49,52,44,52,49,46,48,53,48,53,49,53,93,44,91,45,55,57,46,50,49,53,51,49,44,52,48,46,57,49,49,51,52,54,93,44,91,45,55,56,46,56,48,53,49,54,55,44,52,48,46,57,48,53,57,56,93,44,91,45,55,56,46,56,48,52,53,51,50,44,52,49,46,49,51,50,49,56,54,93,44,91,45,55,56,46,55,49,48,50,52,56,44,52,49,46,50,48,49,56,53,57,93,44,91,45,55,56,46,55,51,53,50,56,44,52,49,46,50,54,50,57,49,53,93,44,91,45,55,56,46,57,53,57,49,53,55,44,52,49,46,51,54,50,49,54,49,93,44,91,45,55,57,46,48,57,53,48,57,54,44,52,49,46,51,52,48,54,53,56,93,44,91,45,55,57,46,50,48,56,56,55,56,44,52,49,46,51,51,49,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,54,56,52,57,44,34,98,101,100,115,34,58,49,55,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,50,49,44,52,49,46,55,54,48,56,56,57,93,44,91,45,56,55,46,53,50,51,54,54,49,44,52,49,46,55,53,57,57,48,55,93,44,91,45,56,55,46,53,50,53,55,48,53,44,52,49,46,52,55,48,50,56,51,93,44,91,45,56,55,46,53,50,54,55,51,49,44,52,49,46,50,57,56,48,53,50,93,44,91,45,56,55,46,53,50,54,53,56,55,44,52,49,46,49,54,54,48,57,93,44,91,45,56,55,46,52,49,52,52,50,49,44,52,49,46,49,54,50,50,52,56,93,44,91,45,56,55,46,50,55,53,56,56,50,44,52,49,46,50,49,56,53,57,53,93,44,91,45,56,55,46,50,49,56,56,54,50,44,52,49,46,50,52,50,48,50,55,93,44,91,45,56,55,46,50,50,49,44,52,49,46,55,54,48,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,53,53,56,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,51,57,52,51,54,44,51,53,46,54,56,53,57,93,44,91,45,56,54,46,54,53,56,50,52,55,44,51,53,46,52,51,53,50,56,49,93,44,91,45,56,54,46,53,57,57,52,55,56,44,51,53,46,51,54,52,57,53,93,44,91,45,56,54,46,53,50,53,51,48,54,44,51,53,46,51,53,52,55,49,56,93,44,91,45,56,54,46,52,50,49,54,55,50,44,51,53,46,51,49,57,50,54,55,93,44,91,45,56,54,46,50,53,55,53,57,44,51,53,46,52,49,50,52,55,54,93,44,91,45,56,54,46,50,52,53,49,54,53,44,51,53,46,54,51,49,57,49,51,93,44,91,45,56,54,46,52,49,51,54,55,56,44,51,53,46,54,50,51,49,55,55,93,44,91,45,56,54,46,53,52,51,49,49,54,44,51,53,46,54,57,55,54,49,55,93,44,91,45,56,54,46,54,51,57,52,51,54,44,51,53,46,54,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,49,51,56,56,53,44,51,54,46,52,57,57,52,55,51,93,44,91,45,56,53,46,55,48,52,48,55,53,44,51,54,46,53,50,50,51,57,53,93,44,91,45,56,53,46,52,57,53,52,50,50,44,51,54,46,52,48,51,48,55,52,93,44,91,45,56,53,46,52,51,56,56,48,56,44,51,54,46,53,48,49,49,48,50,93,44,91,45,56,53,46,50,56,52,56,55,56,44,51,54,46,53,51,49,50,57,51,93,44,91,45,56,53,46,50,55,54,50,56,49,44,51,54,46,54,50,54,56,49,54,93,44,91,45,56,53,46,50,57,54,48,48,50,44,51,54,46,54,50,53,55,49,56,93,44,91,45,56,53,46,52,51,54,52,52,50,44,51,54,46,54,49,56,54,53,53,93,44,91,45,56,53,46,55,56,56,55,50,54,44,51,54,46,54,50,50,48,52,56,93,44,91,45,56,53,46,56,49,51,56,56,53,44,51,54,46,52,57,57,52,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,51,54,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,54,54,51,52,55,44,51,57,46,54,56,53,57,55,51,93,44,91,45,56,56,46,48,54,51,53,49,56,44,51,57,46,54,53,50,54,53,55,93,44,91,45,56,56,46,52,55,50,48,55,51,44,51,57,46,54,53,49,53,56,56,93,44,91,45,56,56,46,52,55,48,53,48,53,44,51,57,46,52,52,55,48,52,49,93,44,91,45,56,56,46,52,55,48,56,51,44,51,57,46,51,55,52,53,49,53,93,44,91,45,56,56,46,48,49,50,49,50,49,44,51,57,46,51,55,56,57,54,56,93,44,91,45,56,55,46,57,54,48,49,55,57,44,51,57,46,52,56,49,51,48,57,93,44,91,45,56,55,46,57,54,54,51,52,55,44,51,57,46,54,56,53,57,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,76,97,117,100,101,114,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,57,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,52,52,56,51,56,44,51,53,46,57,48,52,51,53,49,93,44,91,45,56,57,46,55,52,50,54,48,54,44,51,53,46,57,48,54,54,53,51,93,44,91,45,56,57,46,56,50,48,56,55,54,44,51,53,46,55,53,54,56,54,56,93,44,91,45,56,57,46,57,53,48,50,55,55,44,51,53,46,55,51,56,52,57,52,93,44,91,45,56,57,46,57,48,57,55,57,55,44,51,53,46,53,51,55,57,49,52,93,44,91,45,56,57,46,55,57,51,49,52,53,44,51,53,46,54,51,55,51,53,54,93,44,91,45,56,57,46,54,49,50,57,55,54,44,51,53,46,54,52,51,50,51,54,93,44,91,45,56,57,46,53,48,50,49,49,56,44,51,53,46,53,56,48,54,50,49,93,44,91,45,56,57,46,52,48,49,56,48,53,44,51,53,46,56,50,50,54,53,55,93,44,91,45,56,57,46,51,53,54,48,51,51,44,51,53,46,56,49,55,54,51,53,93,44,91,45,56,57,46,51,52,50,56,50,57,44,51,53,46,56,56,48,57,51,52,93,44,91,45,56,57,46,52,48,54,57,54,53,44,51,53,46,57,52,54,53,57,57,93,44,91,45,56,57,46,54,52,52,56,51,56,44,51,53,46,57,48,52,51,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,97,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,56,52,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,50,54,54,48,48,53,44,52,53,46,48,56,48,53,55,93,44,91,45,49,49,55,46,53,54,51,52,56,54,44,52,53,46,48,55,57,52,52,54,93,44,91,45,49,49,55,46,53,54,52,48,51,51,44,52,52,46,57,57,50,56,54,54,93,44,91,45,49,49,55,46,55,55,55,53,48,52,44,52,52,46,57,57,50,49,54,49,93,44,91,45,49,49,55,46,56,52,51,52,51,44,52,53,46,48,53,56,52,55,55,93,44,91,45,49,49,55,46,57,54,56,51,57,52,44,52,52,46,57,57,54,48,48,50,93,44,91,45,49,49,56,46,49,51,49,51,55,49,44,52,53,46,48,52,52,54,57,93,44,91,45,49,49,56,46,50,52,52,54,54,50,44,52,52,46,57,53,56,51,57,54,93,44,91,45,49,49,56,46,51,49,56,55,50,53,44,52,52,46,56,51,54,50,55,57,93,44,91,45,49,49,56,46,50,56,53,52,51,57,44,52,52,46,55,53,48,57,55,53,93,44,91,45,49,49,56,46,53,49,54,52,53,50,44,52,52,46,55,48,50,52,54,50,93,44,91,45,49,49,56,46,51,48,53,55,55,56,44,52,52,46,53,56,56,56,49,93,44,91,45,49,49,56,46,52,50,50,49,55,51,44,52,52,46,52,52,56,57,56,52,93,44,91,45,49,49,56,46,52,48,57,55,55,52,44,52,52,46,51,55,56,54,49,57,93,44,91,45,49,49,56,46,52,57,55,52,57,57,44,52,52,46,50,53,53,50,52,56,93,44,91,45,49,49,56,46,50,51,50,50,49,52,44,52,52,46,50,53,54,49,50,57,93,44,91,45,49,49,56,46,49,53,50,57,52,53,44,52,52,46,50,55,48,54,56,52,93,44,91,45,49,49,55,46,57,55,49,55,56,55,44,52,52,46,52,52,51,56,52,57,93,44,91,45,49,49,55,46,53,57,48,56,52,57,44,52,52,46,52,52,52,53,55,51,93,44,91,45,49,49,55,46,52,56,54,55,52,52,44,52,52,46,51,56,55,50,52,54,93,44,91,45,49,49,55,46,52,56,55,48,49,52,44,52,52,46,51,48,48,51,49,55,93,44,91,45,49,49,55,46,50,50,48,48,52,56,44,52,52,46,51,48,49,52,48,52,93,44,91,45,49,49,55,46,50,50,52,49,48,52,44,52,52,46,52,56,51,55,51,52,93,44,91,45,49,49,55,46,49,52,52,49,54,49,44,52,52,46,53,52,53,54,52,55,93,44,91,45,49,49,55,46,48,52,52,50,49,55,44,52,52,46,55,52,53,49,52,93,44,91,45,49,49,54,46,56,57,57,55,49,49,44,52,52,46,56,52,48,54,48,57,93,44,91,45,49,49,54,46,55,56,51,56,50,57,44,52,53,46,48,55,56,50,54,51,93,44,91,45,49,49,55,46,50,54,54,48,48,53,44,52,53,46,48,56,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,83,99,104,117,121,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,57,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,54,53,48,50,56,44,52,50,46,50,55,56,52,57,53,93,44,91,45,55,54,46,54,49,57,51,48,51,44,52,50,46,50,56,50,56,53,51,93,44,91,45,55,54,46,54,57,49,52,48,54,44,52,50,46,50,56,52,51,48,55,93,44,91,45,55,54,46,54,57,54,54,53,53,44,52,50,46,53,52,54,55,57,93,44,91,45,55,54,46,56,57,53,53,57,54,44,52,50,46,53,52,49,53,51,55,93,44,91,45,55,54,46,56,56,57,56,48,53,44,52,50,46,52,54,51,48,53,52,93,44,91,45,55,55,46,49,48,55,50,48,51,44,52,50,46,52,56,51,55,55,49,93,44,91,45,55,55,46,48,57,57,54,53,55,44,52,50,46,50,55,50,51,53,54,93,44,91,45,55,54,46,57,54,53,48,50,56,44,52,50,46,50,55,56,52,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,86,97,110,32,66,117,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,50,55,50,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,54,52,54,57,55,44,52,50,46,52,50,48,55,49,53,93,44,91,45,56,55,46,48,52,48,48,52,54,44,52,50,46,52,49,54,57,57,51,93,44,91,45,56,55,46,48,56,56,51,51,56,44,52,50,46,50,51,53,51,51,52,93,44,91,45,56,54,46,50,50,51,53,54,51,44,52,50,46,50,52,51,51,55,57,93,44,91,45,56,54,46,50,50,50,57,52,44,52,50,46,48,55,49,52,56,52,93,44,91,45,56,53,46,55,54,50,57,52,51,44,52,50,46,48,54,57,51,50,55,93,44,91,45,56,53,46,55,54,52,54,57,55,44,52,50,46,52,50,48,55,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,57,51,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,55,50,48,55,44,52,49,46,51,51,51,51,54,49,93,44,91,45,57,49,46,49,49,52,49,56,54,44,52,49,46,50,53,48,48,50,57,93,44,91,45,57,48,46,57,56,57,54,54,50,44,52,49,46,49,53,53,55,48,55,93,44,91,45,57,48,46,57,52,57,51,56,49,44,52,49,46,48,55,50,55,49,93,44,91,45,57,48,46,57,52,56,57,56,57,44,52,49,46,48,55,48,50,53,93,44,91,45,57,48,46,55,56,53,49,57,52,44,52,49,46,48,54,56,55,52,57,93,44,91,45,57,48,46,52,51,57,52,50,51,44,52,49,46,48,54,51,57,57,53,93,44,91,45,57,48,46,52,51,55,54,53,50,44,52,49,46,49,53,49,52,54,51,93,44,91,45,57,48,46,52,51,51,55,51,55,44,52,49,46,51,50,54,57,56,57,93,44,91,45,57,49,46,48,55,50,48,55,44,52,49,46,51,51,51,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,56,51,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,48,52,54,50,53,44,51,56,46,50,52,55,54,54,50,93,44,91,45,56,50,46,55,57,52,50,48,54,44,51,56,46,50,52,51,55,55,50,93,44,91,45,56,50,46,57,50,52,56,48,53,44,51,56,46,49,55,53,49,49,52,93,44,91,45,56,50,46,56,56,57,48,53,57,44,51,56,46,49,49,49,53,56,55,93,44,91,45,56,51,46,48,50,50,49,49,53,44,51,56,46,48,48,55,48,52,55,93,44,91,45,56,50,46,57,56,57,48,49,52,44,51,55,46,57,54,51,57,54,56,93,44,91,45,56,50,46,57,52,55,57,51,54,44,51,56,46,48,48,48,52,51,49,93,44,91,45,56,50,46,54,49,50,51,57,51,44,51,55,46,56,55,57,50,55,50,93,44,91,45,56,50,46,52,57,55,55,57,54,44,51,55,46,57,52,53,52,56,56,93,44,91,45,56,50,46,53,52,57,50,52,44,51,56,46,48,54,55,57,53,50,93,44,91,45,56,50,46,54,51,52,55,48,50,44,51,56,46,49,51,54,57,52,49,93,44,91,45,56,50,46,54,48,52,54,50,53,44,51,56,46,50,52,55,54,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,56,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,51,51,57,52,50,44,51,56,46,48,51,51,57,55,52,93,44,91,45,56,51,46,52,57,53,48,56,44,51,55,46,56,54,49,57,48,54,93,44,91,45,56,51,46,50,54,50,49,55,50,44,51,55,46,55,49,50,54,53,55,93,44,91,45,56,51,46,50,55,48,51,56,55,44,51,55,46,55,54,54,56,52,53,93,44,91,45,56,51,46,48,56,57,52,48,57,44,51,55,46,56,57,48,51,52,93,44,91,45,56,51,46,48,48,52,54,52,57,44,51,55,46,56,53,57,50,52,55,93,44,91,45,56,50,46,57,56,57,48,49,52,44,51,55,46,57,54,51,57,54,56,93,44,91,45,56,51,46,48,50,50,49,49,53,44,51,56,46,48,48,55,48,52,55,93,44,91,45,56,51,46,49,57,52,52,52,53,44,51,56,46,48,49,48,54,52,57,93,44,91,45,56,51,46,50,54,51,50,56,57,44,51,56,46,49,49,53,51,56,54,93,44,91,45,56,51,46,52,51,51,57,52,50,44,51,56,46,48,51,51,57,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,77,117,104,108,101,110,98,101,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,48,56,49,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,57,53,57,54,53,44,51,55,46,51,57,49,56,49,57,93,44,91,45,56,55,46,51,56,56,55,48,55,44,51,55,46,50,54,50,49,56,93,44,91,45,56,55,46,51,51,51,55,52,49,44,51,55,46,49,53,55,49,56,54,93,44,91,45,56,55,46,50,53,57,51,55,49,44,51,55,46,48,55,50,52,48,49,93,44,91,45,56,55,46,48,53,51,49,54,52,44,51,55,46,48,54,49,48,49,57,93,44,91,45,56,54,46,57,52,49,51,57,49,44,51,55,46,48,54,56,57,56,49,93,44,91,45,56,54,46,56,57,57,50,54,56,44,51,55,46,50,49,50,51,49,51,93,44,91,45,56,55,46,48,57,57,56,48,51,44,51,55,46,52,49,54,48,52,50,93,44,91,45,56,55,46,50,57,53,57,54,53,44,51,55,46,51,57,49,56,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,69,102,102,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,49,55,52,44,34,98,101,100,115,34,58,49,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,48,53,51,50,53,44,51,57,46,50,49,54,50,54,51,93,44,91,45,56,56,46,56,48,54,55,57,53,44,51,56,46,57,49,49,53,56,53,93,44,91,45,56,56,46,54,57,51,53,51,49,44,51,56,46,57,49,52,54,49,55,93,44,91,45,56,56,46,51,54,49,55,52,53,44,51,56,46,57,49,48,56,52,55,93,44,91,45,56,56,46,51,54,48,54,53,52,44,51,57,46,49,55,49,49,49,56,93,44,91,45,56,56,46,52,55,48,57,48,54,44,51,57,46,50,49,53,48,50,57,93,44,91,45,56,56,46,56,48,53,51,50,53,44,51,57,46,50,49,54,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,111,117,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,54,49,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,54,51,51,56,51,44,51,53,46,56,57,54,57,52,93,44,91,45,56,52,46,53,51,57,57,54,51,44,51,53,46,54,55,48,52,54,53,93,44,91,45,56,52,46,53,56,52,52,55,50,44,51,53,46,54,52,52,52,50,52,93,44,91,45,56,52,46,53,50,53,56,53,44,51,53,46,54,50,52,49,56,54,93,44,91,45,56,52,46,52,56,54,55,53,52,44,51,53,46,54,53,56,51,55,54,93,44,91,45,56,52,46,50,57,57,53,52,57,44,51,53,46,54,53,55,54,55,51,93,44,91,45,56,52,46,49,56,56,51,49,57,44,51,53,46,54,49,48,53,52,57,93,44,91,45,56,52,46,49,54,54,50,54,55,44,51,53,46,56,48,53,49,48,54,93,44,91,45,56,52,46,50,54,51,51,56,51,44,51,53,46,56,57,54,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,55,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,56,49,55,57,50,44,52,53,46,49,53,51,50,57,53,93,44,91,45,57,55,46,57,55,55,55,57,49,44,52,52,46,54,51,49,54,48,50,93,44,91,45,57,55,46,56,53,51,48,50,56,44,52,52,46,53,52,52,51,57,56,93,44,91,45,57,55,46,52,57,50,50,54,54,44,52,52,46,53,52,51,56,56,52,93,44,91,45,57,55,46,52,57,49,51,52,54,44,52,52,46,56,48,52,48,51,53,93,44,91,45,57,55,46,52,57,52,50,53,52,44,52,53,46,49,53,49,54,51,49,93,44,91,45,57,55,46,57,56,49,55,57,50,44,52,53,46,49,53,51,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,72,111,110,111,108,117,108,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,72,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,55,54,51,56,44,34,98,101,100,115,34,58,50,57,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,56,46,51,50,56,54,53,50,44,50,49,46,53,52,54,93,44,91,45,49,53,56,46,49,54,52,51,53,52,44,50,49,46,50,55,50,51,51,53,93,44,91,45,49,53,56,46,49,49,48,48,55,55,44,50,49,46,50,51,55,48,55,49,93,44,91,45,49,53,55,46,56,57,56,54,53,54,44,50,49,46,50,52,57,57,51,57,93,44,91,45,49,53,55,46,56,49,48,50,50,57,44,50,49,46,49,57,57,50,51,56,93,44,91,45,49,53,55,46,54,55,53,55,55,55,44,50,49,46,50,49,51,56,48,49,93,44,91,45,49,53,55,46,54,48,55,54,57,51,44,50,49,46,50,54,57,49,51,52,93,44,91,45,49,53,55,46,54,54,48,57,52,57,44,50,49,46,52,57,54,55,56,57,93,44,91,45,49,53,55,46,55,53,48,57,50,52,44,50,49,46,53,49,54,52,53,56,93,44,91,45,49,53,55,46,57,52,49,55,56,53,44,50,49,46,55,53,52,53,55,57,93,44,91,45,49,53,56,46,48,53,48,49,52,52,44,50,49,46,55,51,57,56,56,49,93,44,91,45,49,53,56,46,49,52,56,56,52,54,44,50,49,46,54,52,49,57,57,57,93,44,91,45,49,53,56,46,51,50,52,50,52,55,44,50,49,46,54,49,53,54,55,53,93,44,91,45,49,53,56,46,51,50,56,54,53,50,44,50,49,46,53,52,54,93,93,93,44,91,91,91,45,49,55,54,46,48,52,51,51,53,52,44,50,55,46,55,57,53,56,57,55,93,44,91,45,49,55,53,46,57,54,57,53,57,56,44,50,55,46,54,57,51,52,48,50,93,44,91,45,49,55,53,46,55,51,52,49,51,52,44,50,55,46,55,51,56,56,53,53,93,44,91,45,49,55,53,46,54,55,48,49,50,56,44,50,55,46,57,52,49,54,48,49,93,44,91,45,49,55,53,46,56,48,54,55,51,51,44,50,56,46,48,48,55,49,57,50,93,44,91,45,49,55,53,46,57,54,54,51,51,53,44,50,55,46,57,50,57,57,49,49,93,44,91,45,49,55,54,46,48,52,51,51,53,52,44,50,55,46,55,57,53,56,57,55,93,93,93,44,91,91,91,45,49,54,54,46,51,56,54,53,51,50,44,50,51,46,56,52,54,51,54,51,93,44,91,45,49,54,54,46,51,49,53,56,50,51,44,50,51,46,55,52,48,49,50,93,44,91,45,49,54,54,46,50,48,53,52,49,53,44,50,51,46,54,57,49,54,48,49,93,44,91,45,49,54,54,46,49,48,54,55,56,44,50,51,46,55,52,50,53,50,50,93,44,91,45,49,54,54,46,49,56,50,51,52,55,44,50,51,46,57,48,50,51,50,53,93,44,91,45,49,54,54,46,51,48,55,48,55,50,44,50,51,46,57,50,52,56,56,51,93,44,91,45,49,54,54,46,51,56,54,53,51,50,44,50,51,46,56,52,54,51,54,51,93,93,93,44,91,91,91,45,49,55,56,46,52,52,51,53,57,51,44,50,56,46,52,49,56,57,56,54,93,44,91,45,49,55,56,46,51,57,53,54,49,44,50,56,46,51,52,49,57,48,49,93,44,91,45,49,55,56,46,50,51,51,48,49,56,44,50,56,46,51,55,53,93,44,91,45,49,55,56,46,50,51,56,52,54,57,44,50,56,46,52,53,54,49,53,93,44,91,45,49,55,56,46,51,49,53,49,50,49,44,50,56,46,53,49,54,51,51,52,93,44,91,45,49,55,56,46,52,52,51,53,57,51,44,50,56,46,52,49,56,57,56,54,93,93,93,44,91,91,91,45,49,55,52,46,48,54,55,51,55,52,44,50,54,46,48,53,57,54,49,52,93,44,91,45,49,55,52,46,48,48,54,52,48,52,44,50,53,46,57,57,48,50,56,57,93,44,91,45,49,55,51,46,57,50,53,57,54,56,44,50,54,46,48,49,57,54,50,55,93,44,91,45,49,55,51,46,57,53,55,57,49,54,44,50,54,46,49,51,53,54,57,93,44,91,45,49,55,52,46,48,54,55,51,55,52,44,50,54,46,48,53,57,54,49,52,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,71,105,108,99,104,114,105,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,50,48,54,48,56,44,50,57,46,56,50,52,49,52,51,93,44,91,45,56,50,46,57,51,55,51,50,57,44,50,57,46,53,57,49,49,57,54,93,44,91,45,56,50,46,54,53,54,51,48,49,44,50,57,46,53,54,52,56,49,49,93,44,91,45,56,50,46,54,53,56,53,53,52,44,50,57,46,56,51,48,49,52,52,93,44,91,45,56,50,46,56,48,48,52,55,55,44,50,57,46,57,51,50,49,50,54,93,44,91,45,56,50,46,56,55,57,56,48,50,44,50,57,46,56,56,54,56,52,55,93,44,91,45,56,50,46,57,48,51,57,53,54,44,50,57,46,56,50,52,50,57,52,93,44,91,45,56,50,46,57,49,56,55,48,56,44,50,57,46,56,50,52,48,56,51,93,44,91,45,56,50,46,57,50,48,54,48,56,44,50,57,46,56,50,52,49,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,84,105,112,112,101,99,97,110,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,57,50,57,52,44,34,98,101,100,115,34,58,52,55,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,57,50,49,52,56,44,52,48,46,51,54,54,54,49,50,93,44,91,45,56,55,46,48,57,50,53,54,51,44,52,48,46,50,49,52,56,48,54,93,44,91,45,56,54,46,54,57,53,54,51,55,44,52,48,46,50,49,52,51,54,55,93,44,91,45,56,54,46,54,57,52,54,54,53,44,52,48,46,52,51,50,49,53,54,93,44,91,45,56,54,46,55,55,49,50,57,51,44,52,48,46,53,54,50,48,56,50,93,44,91,45,56,55,46,48,57,53,51,53,55,44,52,48,46,53,54,50,56,57,53,93,44,91,45,56,55,46,48,57,51,54,55,54,44,52,48,46,52,55,53,55,52,53,93,44,91,45,56,55,46,48,57,50,49,52,56,44,52,48,46,51,54,54,54,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,83,110,121,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,52,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,56,48,48,50,52,50,44,52,48,46,56,56,49,57,57,52,93,44,91,45,55,54,46,57,52,48,55,48,54,44,52,48,46,56,56,56,48,50,51,93,44,91,45,55,55,46,51,53,54,54,50,56,44,52,48,46,56,48,55,51,51,52,93,44,91,45,55,55,46,50,56,55,57,52,49,44,52,48,46,54,57,51,53,57,53,93,44,91,45,55,55,46,48,51,53,53,52,57,44,52,48,46,54,55,54,57,49,56,93,44,91,45,55,54,46,57,51,57,55,52,57,44,52,48,46,54,51,56,51,55,56,93,44,91,45,55,54,46,56,53,53,51,54,50,44,52,48,46,55,50,56,56,50,49,93,44,91,45,55,54,46,56,48,48,50,52,50,44,52,48,46,56,56,49,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,55,34,44,34,78,65,77,69,34,58,34,76,97,109,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,53,51,50,44,34,98,101,100,115,34,58,50,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,52,54,53,51,54,44,51,51,46,56,51,57,56,53,53,93,44,91,45,57,53,46,56,53,55,55,51,56,44,51,51,46,52,54,49,55,50,50,93,44,91,45,57,53,46,54,50,49,48,50,55,44,51,51,46,52,56,55,48,54,93,44,91,45,57,53,46,51,48,56,54,51,55,44,51,51,46,51,56,48,54,54,50,93,44,91,45,57,53,46,51,49,48,52,57,55,44,51,51,46,56,55,55,50,48,52,93,44,91,45,57,53,46,53,51,51,55,57,56,44,51,51,46,56,56,49,49,53,51,93,44,91,45,57,53,46,53,53,50,55,57,57,44,51,51,46,57,50,52,51,49,49,93,44,91,45,57,53,46,55,54,49,53,50,44,51,51,46,56,55,51,49,49,56,93,44,91,45,57,53,46,56,52,54,53,51,54,44,51,51,46,56,51,57,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,54,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,54,34,44,34,78,65,77,69,34,58,34,77,105,97,109,105,45,68,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,49,53,53,49,54,44,34,98,101,100,115,34,58,56,51,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,53,50,50,53,55,44,50,53,46,57,55,52,57,53,54,93,44,91,45,56,48,46,50,57,52,57,55,50,44,50,53,46,57,53,54,55,55,93,44,91,45,56,48,46,54,56,48,48,49,54,44,50,53,46,57,53,54,56,53,55,93,44,91,45,56,48,46,56,55,50,57,51,50,44,50,53,46,57,55,57,52,51,52,93,44,91,45,56,48,46,56,55,51,48,57,54,44,50,53,46,56,48,53,51,55,55,93,44,91,45,56,48,46,56,55,51,49,57,44,50,53,46,51,54,51,57,57,51,93,44,91,45,56,48,46,56,53,56,49,54,55,44,50,53,46,49,55,54,54,48,55,93,44,91,45,56,48,46,55,48,53,51,55,57,44,50,53,46,49,52,57,48,49,55,93,44,91,45,56,48,46,54,53,49,50,55,57,44,50,53,46,49,57,50,53,57,54,93,44,91,45,56,48,46,52,50,57,51,48,54,44,50,53,46,50,51,53,54,54,49,93,44,91,45,56,48,46,51,55,50,49,50,49,44,50,53,46,51,49,48,50,49,53,93,44,91,45,56,48,46,50,54,53,52,55,50,44,50,53,46,51,53,52,50,57,54,93,44,91,45,56,48,46,49,53,48,50,52,55,44,50,53,46,51,49,52,49,52,57,93,44,91,45,56,48,46,48,53,54,48,53,54,44,50,53,46,56,51,55,54,56,56,93,44,91,45,56,48,46,48,53,50,50,53,55,44,50,53,46,57,55,52,57,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,68,117,110,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,51,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,51,52,50,55,56,56,44,52,48,46,51,53,48,52,52,52,93,44,91,45,49,48,50,46,48,53,49,53,56,54,44,52,48,46,51,52,57,50,49,51,93,44,91,45,49,48,50,46,48,53,49,55,52,52,44,52,48,46,48,48,51,48,55,56,93,44,91,45,49,48,49,46,52,49,49,48,50,57,44,52,48,46,48,48,50,53,50,50,93,44,91,45,49,48,49,46,51,50,53,53,49,52,44,52,48,46,48,48,50,55,48,50,93,44,91,45,49,48,49,46,51,50,51,51,53,51,44,52,48,46,51,53,48,53,53,51,93,44,91,45,49,48,49,46,51,52,50,55,56,56,44,52,48,46,51,53,48,52,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,57,34,44,34,78,65,77,69,34,58,34,76,101,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,56,55,51,44,51,49,46,54,49,56,51,56,53,93,44,91,45,57,54,46,50,51,54,54,50,57,44,51,49,46,52,49,51,51,57,50,93,44,91,45,57,54,46,51,49,57,49,54,53,44,51,49,46,51,53,55,49,50,57,93,44,91,45,57,54,46,51,50,55,54,51,44,51,49,46,50,56,52,56,55,54,93,44,91,45,57,54,46,50,52,49,48,50,44,51,48,46,57,55,51,55,51,55,93,44,91,45,57,53,46,57,55,51,56,52,49,44,51,49,46,48,57,50,49,53,93,44,91,45,57,53,46,55,54,52,52,49,44,51,49,46,48,57,52,50,49,49,93,44,91,45,57,53,46,55,50,53,50,50,54,44,51,49,46,50,55,49,48,56,52,93,44,91,45,57,53,46,54,53,53,53,52,53,44,51,49,46,51,50,57,54,52,93,44,91,45,57,53,46,55,51,57,50,55,57,44,51,49,46,53,48,52,48,53,54,93,44,91,45,57,53,46,55,56,55,51,44,51,49,46,54,49,56,51,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,80,105,116,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,51,57,52,52,56,54,44,51,57,46,50,53,54,50,57,57,93,44,91,45,49,48,55,46,50,56,50,52,57,44,51,57,46,49,49,56,55,49,56,93,44,91,45,49,48,55,46,48,54,54,51,50,44,51,57,46,49,49,56,56,48,53,93,44,91,45,49,48,54,46,57,48,56,49,57,54,44,51,56,46,57,57,50,53,55,57,93,44,91,45,49,48,54,46,56,48,49,56,55,52,44,51,56,46,57,55,56,51,48,51,93,44,91,45,49,48,54,46,55,52,48,54,57,53,44,51,57,46,48,52,53,57,48,54,93,44,91,45,49,48,54,46,53,57,57,50,49,52,44,51,56,46,57,57,55,57,57,52,93,44,91,45,49,48,54,46,53,55,55,57,54,54,44,51,57,46,48,53,55,57,48,56,93,44,91,45,49,48,54,46,52,57,51,54,52,57,44,51,57,46,49,57,56,51,50,54,93,44,91,45,49,48,54,46,53,48,50,54,57,44,51,57,46,50,57,56,48,54,55,93,44,91,45,49,48,54,46,52,50,54,52,56,55,44,51,57,46,51,54,49,56,55,49,93,44,91,45,49,48,55,46,49,49,51,52,52,54,44,51,57,46,51,54,54,48,54,54,93,44,91,45,49,48,55,46,52,51,48,57,52,57,44,51,57,46,51,54,54,49,55,56,93,44,91,45,49,48,55,46,51,57,52,52,56,54,44,51,57,46,50,53,54,50,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,71,114,97,110,100,32,70,111,114,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,52,48,48,44,34,98,101,100,115,34,58,52,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,48,51,51,49,51,44,52,56,46,49,57,52,56,52,53,93,44,91,45,57,55,46,56,56,50,48,54,53,44,52,56,46,48,50,48,56,52,52,93,44,91,45,57,55,46,56,56,50,50,55,49,44,52,55,46,54,55,50,49,55,57,93,44,91,45,57,55,46,52,55,50,55,52,53,44,52,55,46,54,55,50,48,53,49,93,44,91,45,57,54,46,56,56,54,56,52,54,44,52,55,46,54,55,50,48,54,51,93,44,91,45,57,55,46,48,53,53,53,57,55,44,52,55,46,57,52,57,49,50,57,93,44,91,45,57,55,46,49,52,54,55,48,51,44,52,56,46,49,55,51,50,50,51,93,44,91,45,57,55,46,49,52,49,50,50,49,44,52,56,46,49,57,51,55,49,50,93,44,91,45,57,55,46,57,48,51,51,49,51,44,52,56,46,49,57,52,56,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,76,97,80,111,114,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,53,53,50,44,34,98,101,100,115,34,58,50,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,51,51,51,51,52,44,52,49,46,55,54,49,48,51,53,93,44,91,45,56,54,46,57,51,48,48,55,57,44,52,49,46,50,51,54,55,57,56,93,44,91,45,56,54,46,55,56,51,52,55,51,44,52,49,46,50,56,53,52,54,53,93,44,91,45,56,54,46,55,48,48,54,51,44,52,49,46,52,48,49,57,56,50,93,44,91,45,56,54,46,53,50,52,55,49,49,44,52,49,46,52,51,50,56,56,54,93,44,91,45,56,54,46,52,56,54,52,51,51,44,52,49,46,53,55,48,53,52,53,93,44,91,45,56,54,46,53,50,52,50,49,55,44,52,49,46,55,53,57,54,53,57,93,44,91,45,56,54,46,57,51,51,51,51,52,44,52,49,46,55,54,49,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,48,57,53,44,34,98,101,100,115,34,58,54,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,49,57,48,51,44,52,48,46,50,49,56,57,51,54,93,44,91,45,56,54,46,50,52,50,55,52,51,44,52,48,46,50,49,53,56,51,52,93,44,91,45,56,54,46,50,52,50,51,54,53,44,52,48,46,49,56,48,55,55,56,93,44,91,45,56,54,46,50,51,57,55,51,57,44,51,57,46,57,50,54,48,53,53,93,44,91,45,56,53,46,57,51,55,53,56,55,44,51,57,46,57,50,55,49,51,55,93,44,91,45,56,53,46,56,54,50,52,56,57,44,51,57,46,57,52,51,54,49,56,93,44,91,45,56,53,46,56,54,49,57,48,51,44,52,48,46,50,49,56,57,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,57,53,34,44,34,78,65,77,69,34,58,34,69,109,112,111,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,56,49,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,53,54,51,56,56,56,44,51,54,46,55,48,51,48,54,55,93,44,91,45,55,55,46,53,53,54,53,50,52,44,51,54,46,54,55,52,56,55,52,93,44,91,45,55,55,46,53,48,57,50,52,54,44,51,54,46,54,56,50,57,57,56,93,44,91,45,55,55,46,53,48,57,51,54,53,44,51,54,46,55,49,54,51,57,56,93,44,91,45,55,55,46,53,54,51,56,56,56,44,51,54,46,55,48,51,48,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,56,53,52,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,52,48,53,56,51,44,51,53,46,57,52,49,57,57,49,93,44,91,45,57,55,46,49,52,49,48,54,54,44,51,53,46,55,50,52,52,48,49,93,44,91,45,57,55,46,49,52,49,52,57,44,51,53,46,52,54,51,57,55,55,93,44,91,45,57,54,46,54,50,52,54,56,49,44,51,53,46,52,54,50,55,48,55,93,44,91,45,57,54,46,54,50,48,56,50,56,44,51,53,46,54,51,57,48,48,53,93,44,91,45,57,54,46,54,49,57,54,53,53,44,51,53,46,57,52,49,53,55,49,93,44,91,45,57,55,46,49,52,48,53,56,51,44,51,53,46,57,52,49,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,71,114,101,101,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,48,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,53,48,56,50,44,51,56,46,54,49,53,49,55,50,93,44,91,45,49,48,50,46,48,52,52,52,55,53,44,51,56,46,50,54,56,55,52,57,93,44,91,45,49,48,50,46,48,52,52,52,54,52,44,51,56,46,50,54,50,52,49,50,93,44,91,45,49,48,49,46,53,54,55,52,56,50,44,51,56,46,50,54,51,49,52,53,93,44,91,45,49,48,49,46,53,54,55,48,57,52,44,51,56,46,54,57,57,54,54,57,93,44,91,45,49,48,50,46,48,52,53,50,49,50,44,51,56,46,54,57,55,53,54,55,93,44,91,45,49,48,50,46,48,52,53,48,56,50,44,51,56,46,54,49,53,49,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,51,53,48,51,56,44,51,50,46,55,52,54,53,51,93,44,91,45,56,53,46,48,56,48,55,56,52,44,51,50,46,54,48,56,48,55,50,93,44,91,45,56,52,46,54,57,52,54,48,51,44,51,50,46,53,56,51,57,52,53,93,44,91,45,56,52,46,55,48,48,53,51,56,44,51,50,46,56,52,52,54,52,93,44,91,45,56,52,46,56,54,49,55,54,56,44,51,50,46,56,55,50,52,57,53,93,44,91,45,56,53,46,49,56,52,49,51,49,44,51,50,46,56,55,48,53,50,53,93,44,91,45,56,53,46,49,51,53,48,51,56,44,51,50,46,55,52,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,49,34,44,34,78,65,77,69,34,58,34,83,99,114,101,118,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,52,49,56,51,49,44,51,51,46,48,52,53,54,53,52,93,44,91,45,56,49,46,55,54,55,53,53,51,44,51,50,46,57,48,57,52,49,49,93,44,91,45,56,49,46,56,54,55,57,51,56,44,51,50,46,54,56,49,49,53,93,44,91,45,56,49,46,56,52,49,48,48,53,44,51,50,46,54,52,57,48,57,51,93,44,91,45,56,49,46,54,56,55,57,50,55,44,51,50,46,53,52,54,48,55,93,44,91,45,56,49,46,53,52,56,48,48,54,44,51,50,46,52,56,57,50,56,54,93,44,91,45,56,49,46,51,56,57,50,48,53,44,51,50,46,53,57,53,52,49,54,93,44,91,45,56,49,46,52,48,53,48,53,52,44,51,50,46,55,52,52,57,53,55,93,44,91,45,56,49,46,52,50,54,52,55,53,44,51,50,46,56,52,48,55,55,51,93,44,91,45,56,49,46,53,52,49,56,51,49,44,51,51,46,48,52,53,54,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,117,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,54,48,54,44,34,98,101,100,115,34,58,50,48,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,50,57,52,48,51,44,49,56,46,52,54,53,54,51,50,93,44,91,45,54,54,46,49,48,56,50,56,49,44,49,56,46,52,51,56,57,48,50,93,44,91,45,54,54,46,48,56,48,52,55,53,44,49,56,46,50,57,55,50,57,53,93,44,91,45,54,54,46,48,54,54,49,48,51,44,49,56,46,51,48,51,51,50,49,93,44,91,45,54,54,46,48,52,49,53,51,53,44,49,56,46,51,49,50,51,52,52,93,44,91,45,54,53,46,57,57,57,53,53,54,44,49,56,46,51,56,48,48,54,53,93,44,91,45,54,54,46,48,51,51,57,55,44,49,56,46,53,49,52,50,54,57,93,44,91,45,54,54,46,49,50,56,57,56,54,44,49,56,46,53,50,52,52,48,51,93,44,91,45,54,54,46,49,50,57,52,48,51,44,49,56,46,52,54,53,54,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,51,51,34,44,34,78,65,77,69,34,58,34,83,116,111,110,101,119,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,53,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,49,55,52,52,57,44,51,51,46,51,57,55,56,54,54,93,44,91,45,49,48,48,46,53,49,57,50,48,56,44,51,50,46,57,54,50,57,50,54,93,44,91,45,49,48,48,46,49,52,52,50,50,52,44,51,50,46,57,53,57,57,55,56,93,44,91,45,57,57,46,57,56,56,56,50,55,44,51,50,46,57,54,48,49,50,49,93,44,91,45,57,57,46,57,57,48,57,56,44,51,51,46,51,57,55,52,48,52,93,44,91,45,49,48,48,46,53,49,55,52,52,57,44,51,51,46,51,57,55,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,51,49,54,44,34,98,101,100,115,34,58,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,49,54,54,52,44,52,49,46,52,50,55,53,54,56,93,44,91,45,56,52,46,50,50,56,52,53,52,44,52,49,46,52,50,55,56,49,93,44,91,45,56,52,46,50,50,56,50,50,50,44,52,49,46,49,54,53,56,54,50,93,44,91,45,56,51,46,56,56,49,49,52,57,44,52,49,46,49,54,55,56,50,52,93,44,91,45,56,51,46,56,56,51,50,51,52,44,52,49,46,52,49,52,53,48,51,93,44,91,45,56,51,46,56,56,50,57,52,51,44,52,49,46,52,56,55,53,52,51,93,44,91,45,56,52,46,51,52,49,57,48,50,44,52,49,46,52,56,53,53,49,57,93,44,91,45,56,52,46,51,52,49,54,54,52,44,52,49,46,52,50,55,53,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,71,114,97,102,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,56,49,49,44,34,98,101,100,115,34,58,53,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,48,51,57,56,50,44,52,52,46,49,53,53,55,51,93,44,91,45,55,50,46,48,51,50,51,50,57,44,52,52,46,48,56,48,56,54,57,93,44,91,45,55,50,46,49,49,54,57,53,54,44,52,51,46,57,57,50,54,51,54,93,44,91,45,55,50,46,50,48,53,50,49,57,44,52,51,46,55,55,48,57,54,52,93,44,91,45,55,50,46,51,48,53,49,51,51,44,52,51,46,54,57,53,51,50,49,93,44,91,45,55,50,46,51,50,57,56,57,57,44,52,51,46,54,48,48,50,49,52,93,44,91,45,55,49,46,57,51,53,51,49,44,52,51,46,53,50,56,56,56,93,44,91,45,55,49,46,55,50,55,53,55,51,44,52,51,46,53,54,51,52,49,49,93,44,91,45,55,49,46,54,52,56,51,52,54,44,52,51,46,54,56,52,53,49,49,93,44,91,45,55,49,46,53,51,49,54,53,56,44,52,51,46,55,54,48,57,55,57,93,44,91,45,55,49,46,53,54,52,54,48,51,44,52,51,46,56,57,51,49,55,50,93,44,91,45,55,49,46,51,54,49,57,54,53,44,52,51,46,57,49,53,57,51,56,93,44,91,45,55,49,46,51,54,54,51,53,53,44,52,52,46,48,54,56,53,50,52,93,44,91,45,55,49,46,52,49,53,56,57,56,44,52,52,46,50,49,50,49,54,57,93,44,91,45,55,49,46,53,55,53,56,49,57,44,52,52,46,50,53,52,53,57,54,93,44,91,45,55,49,46,55,54,53,54,56,52,44,52,52,46,52,48,54,50,57,53,93,44,91,45,55,49,46,56,51,55,56,53,51,44,52,52,46,51,52,55,57,57,51,93,44,91,45,55,49,46,57,56,49,52,50,52,44,52,52,46,51,51,55,51,54,54,93,44,91,45,55,50,46,48,54,56,52,55,56,44,52,52,46,50,55,48,56,48,49,93,44,91,45,55,50,46,48,52,50,57,53,54,44,52,52,46,49,53,54,52,57,55,93,44,91,45,55,50,46,48,51,57,56,50,44,52,52,46,49,53,53,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,50,48,50,44,34,98,101,100,115,34,58,54,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,55,57,54,52,44,51,54,46,57,57,56,57,48,53,93,44,91,45,57,52,46,54,49,56,51,48,55,44,51,54,46,55,54,54,53,54,93,44,91,45,57,52,46,48,54,56,56,57,56,44,51,54,46,55,52,55,56,49,56,93,44,91,45,57,52,46,48,54,50,55,52,44,51,54,46,57,51,49,55,55,53,93,44,91,45,57,52,46,48,53,57,50,49,49,44,51,55,46,48,52,56,49,50,55,93,44,91,45,57,52,46,54,49,55,56,52,57,44,51,55,46,48,53,54,55,57,55,93,44,91,45,57,52,46,54,49,55,57,54,52,44,51,54,46,57,57,56,57,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,80,111,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,56,51,55,51,50,44,51,56,46,50,51,48,51,53,52,93,44,91,45,56,55,46,57,49,48,57,50,52,44,51,56,46,49,54,50,53,53,55,93,44,91,45,56,56,46,48,49,51,49,49,56,44,51,56,46,49,48,51,53,50,55,93,44,91,45,56,56,46,48,49,51,51,53,53,44,51,55,46,56,57,52,56,53,52,93,44,91,45,56,56,46,48,57,51,48,52,57,44,51,55,46,56,57,49,54,48,52,93,44,91,45,56,56,46,48,50,56,48,49,54,44,51,55,46,55,57,57,49,56,56,93,44,91,45,56,55,46,57,48,54,57,51,57,44,51,55,46,56,48,55,53,57,51,93,44,91,45,56,55,46,57,50,55,48,54,56,44,51,55,46,57,48,49,54,56,53,93,44,91,45,56,55,46,55,48,48,55,54,50,44,51,55,46,56,57,55,53,53,54,93,44,91,45,56,55,46,54,56,56,51,55,52,44,51,56,46,49,54,56,52,49,57,93,44,91,45,56,55,46,55,57,57,49,54,57,44,51,56,46,50,50,56,53,56,93,44,91,45,56,55,46,57,56,51,55,51,50,44,51,56,46,50,51,48,51,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,49,34,44,34,78,65,77,69,34,58,34,77,99,77,117,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,48,56,52,56,44,50,56,46,54,52,55,51,48,54,93,44,91,45,57,56,46,56,48,51,51,50,53,44,50,56,46,48,53,55,52,56,93,44,91,45,57,56,46,51,51,52,51,50,51,44,50,56,46,48,53,55,56,93,44,91,45,57,56,46,51,51,53,48,51,49,44,50,56,46,54,49,50,54,53,56,93,44,91,45,57,56,46,51,51,53,48,52,55,44,50,56,46,54,52,56,50,55,53,93,44,91,45,57,56,46,56,48,48,56,52,56,44,50,56,46,54,52,55,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,55,48,56,51,44,51,57,46,51,55,52,53,49,53,93,44,91,45,56,56,46,52,55,48,57,48,54,44,51,57,46,50,49,53,48,50,57,93,44,91,45,56,56,46,51,54,48,54,53,52,44,51,57,46,49,55,49,49,49,56,93,44,91,45,56,56,46,48,48,55,55,54,54,44,51,57,46,49,55,51,57,50,53,93,44,91,45,56,56,46,48,49,50,49,50,49,44,51,57,46,51,55,56,57,54,56,93,44,91,45,56,56,46,52,55,48,56,51,44,51,57,46,51,55,52,53,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,55,34,44,34,78,65,77,69,34,58,34,87,97,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,49,51,50,44,34,98,101,100,115,34,58,49,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,56,50,48,51,51,44,51,51,46,55,56,54,48,53,52,93,44,91,45,56,51,46,57,49,52,56,50,51,44,51,51,46,55,52,52,50,48,51,93,44,91,45,56,51,46,54,56,48,56,57,54,44,51,51,46,53,57,54,57,49,57,93,44,91,45,56,51,46,53,48,53,57,50,56,44,51,51,46,56,49,55,55,54,93,44,91,45,56,51,46,54,52,55,48,51,49,44,51,51,46,57,48,54,49,57,56,93,44,91,45,56,51,46,55,57,57,49,48,52,44,51,51,46,57,50,57,56,52,52,93,44,91,45,56,51,46,57,56,50,48,51,51,44,51,51,46,55,56,54,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,80,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,56,48,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,53,56,53,48,56,44,52,53,46,55,53,57,57,51,50,93,44,91,45,57,53,46,55,52,55,52,48,50,44,52,53,46,52,49,50,51,49,51,93,44,91,45,57,53,46,50,53,53,50,49,51,44,52,53,46,52,49,50,55,51,57,93,44,91,45,57,53,46,49,51,49,55,51,44,52,53,46,52,49,50,52,48,50,93,44,91,45,57,53,46,49,51,57,54,55,44,52,53,46,55,53,56,56,57,49,93,44,91,45,57,53,46,55,53,56,53,48,56,44,52,53,46,55,53,57,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,82,97,112,112,97,104,97,110,110,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,51,48,53,55,52,44,51,56,46,56,54,52,56,54,53,93,44,91,45,55,56,46,50,56,52,56,48,53,44,51,56,46,55,53,57,51,49,53,93,44,91,45,55,56,46,51,51,56,49,55,54,44,51,56,46,54,50,55,51,49,50,93,44,91,45,55,56,46,50,51,49,56,48,51,44,51,56,46,53,51,50,53,51,57,93,44,91,45,55,56,46,49,54,56,55,57,50,44,51,56,46,53,50,51,56,48,57,93,44,91,45,55,55,46,57,51,53,51,53,53,44,51,56,46,54,57,53,56,52,93,44,91,45,55,56,46,49,51,48,53,55,52,44,51,56,46,56,54,52,56,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,109,104,101,114,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,56,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,49,55,50,49,51,49,44,51,55,46,56,48,51,48,57,55,93,44,91,45,55,57,46,50,54,52,54,55,52,44,51,55,46,55,57,52,54,57,52,93,44,91,45,55,57,46,51,52,53,50,51,53,44,51,55,46,54,54,48,54,50,53,93,44,91,45,55,57,46,52,51,54,57,52,55,44,51,55,46,54,49,55,48,53,55,93,44,91,45,55,57,46,51,52,49,54,55,44,51,55,46,53,49,56,48,49,53,93,44,91,45,55,57,46,49,56,53,55,48,50,44,51,55,46,52,54,53,56,50,93,44,91,45,55,57,46,48,56,53,49,50,51,44,51,55,46,51,57,52,56,55,53,93,44,91,45,55,57,46,48,50,49,54,56,55,44,51,55,46,52,50,57,50,52,51,93,44,91,45,55,56,46,56,54,57,50,52,53,44,51,55,46,53,52,50,48,57,50,93,44,91,45,55,56,46,57,54,54,57,50,54,44,51,55,46,54,55,55,48,48,52,93,44,91,45,55,57,46,49,55,50,49,51,49,44,51,55,46,56,48,51,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,86,101,110,116,117,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,56,49,49,50,44,34,98,101,100,115,34,58,49,52,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,49,57,46,53,48,48,57,53,51,44,51,52,46,51,50,54,57,50,50,93,44,91,45,49,49,57,46,51,51,53,57,50,54,44,51,52,46,50,51,55,53,50,51,93,44,91,45,49,49,57,46,50,49,55,57,57,51,44,51,52,46,48,54,50,52,57,49,93,44,91,45,49,49,56,46,57,53,49,55,50,49,44,51,51,46,57,57,50,56,53,56,93,44,91,45,49,49,56,46,57,52,48,57,54,53,44,51,52,46,48,55,52,56,51,93,44,91,45,49,49,56,46,55,56,56,56,56,57,44,51,52,46,49,54,56,50,49,52,93,44,91,45,49,49,56,46,54,54,56,49,53,50,44,51,52,46,49,54,56,49,57,53,93,44,91,45,49,49,56,46,54,51,54,55,56,57,44,51,52,46,50,57,49,56,48,52,93,44,91,45,49,49,56,46,56,56,49,51,54,52,44,51,52,46,55,57,48,54,50,57,93,44,91,45,49,49,57,46,50,52,51,54,52,53,44,51,52,46,56,49,52,49,55,56,93,44,91,45,49,49,57,46,50,55,54,57,52,54,44,51,52,46,56,55,57,54,55,53,93,44,91,45,49,49,57,46,52,52,50,51,53,50,44,51,52,46,57,48,49,50,55,52,93,44,91,45,49,49,57,46,52,52,50,50,50,50,44,51,52,46,52,53,53,57,49,93,44,91,45,49,49,57,46,53,48,48,57,53,51,44,51,52,46,51,50,54,57,50,50,93,93,93,44,91,91,91,45,49,49,57,46,54,51,54,48,54,56,44,51,51,46,50,56,48,55,49,51,93,44,91,45,49,49,57,46,53,55,52,49,57,50,44,51,51,46,49,56,54,52,56,52,93,44,91,45,49,49,57,46,52,51,51,55,49,55,44,51,51,46,49,54,54,57,56,55,93,44,91,45,49,49,57,46,51,54,48,57,50,54,44,51,51,46,50,52,50,48,54,93,44,91,45,49,49,57,46,53,50,53,51,49,51,44,51,51,46,51,51,52,56,54,50,93,44,91,45,49,49,57,46,54,51,54,48,54,56,44,51,51,46,50,56,48,55,49,51,93,93,93,44,91,91,91,45,49,49,57,46,52,54,56,48,54,52,44,51,52,46,48,54,51,49,51,57,93,44,91,45,49,49,57,46,52,57,50,50,57,44,51,51,46,57,56,51,50,49,53,93,44,91,45,49,49,57,46,51,56,48,52,53,54,44,51,51,46,57,53,51,54,49,49,93,44,91,45,49,49,57,46,51,52,50,52,54,50,44,51,52,46,48,54,56,57,54,52,93,44,91,45,49,49,57,46,52,54,56,48,54,52,44,51,52,46,48,54,51,49,51,57,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,56,56,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,53,48,51,56,53,44,51,57,46,49,55,52,56,56,50,93,44,91,45,56,55,46,57,52,53,57,49,57,44,51,56,46,56,53,48,49,52,56,93,44,91,45,56,55,46,57,48,56,49,49,51,44,51,56,46,56,53,48,49,48,55,93,44,91,45,56,55,46,53,51,49,49,52,53,44,51,56,46,56,53,50,53,48,55,93,44,91,45,56,55,46,53,50,50,57,51,57,44,51,56,46,57,48,50,51,57,93,44,91,45,56,55,46,54,50,56,55,57,56,44,51,57,46,49,53,55,53,49,51,93,44,91,45,56,55,46,57,53,48,51,56,53,44,51,57,46,49,55,52,56,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,80,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,57,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,49,57,49,48,48,54,44,51,57,46,48,53,54,48,55,51,93,44,91,45,49,48,54,46,49,48,53,55,53,56,44,51,56,46,57,52,48,51,54,52,93,44,91,45,49,48,54,46,48,50,56,49,51,56,44,51,56,46,57,52,50,56,52,57,93,44,91,45,49,48,53,46,57,48,54,53,56,55,44,51,56,46,56,48,54,57,54,50,93,44,91,45,49,48,53,46,57,54,57,55,53,44,51,56,46,54,57,51,53,53,49,93,44,91,45,49,48,53,46,51,50,57,49,51,52,44,51,56,46,54,57,55,50,48,53,93,44,91,45,49,48,53,46,51,51,48,52,52,52,44,51,57,46,49,50,57,54,56,53,93,44,91,45,49,48,53,46,51,57,55,56,55,53,44,51,57,46,49,50,57,53,54,52,93,44,91,45,49,48,53,46,51,57,56,57,52,57,44,51,57,46,53,54,54,48,53,54,93,44,91,45,49,48,53,46,56,50,57,54,54,50,44,51,57,46,53,54,52,56,54,53,93,44,91,45,49,48,53,46,57,53,49,54,57,56,44,51,57,46,52,49,52,54,49,57,93,44,91,45,49,48,54,46,49,51,53,53,50,57,44,51,57,46,51,55,57,53,52,54,93,44,91,45,49,48,54,46,49,56,51,57,55,50,44,51,57,46,51,48,57,51,53,52,93,44,91,45,49,48,54,46,49,57,49,48,48,54,44,51,57,46,48,53,54,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,76,111,115,32,65,110,103,101,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,57,56,48,53,50,44,34,98,101,100,115,34,58,50,52,48,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,49,56,46,56,56,49,51,54,52,44,51,52,46,55,57,48,54,50,57,93,44,91,45,49,49,56,46,54,51,54,55,56,57,44,51,52,46,50,57,49,56,48,52,93,44,91,45,49,49,56,46,54,54,56,49,53,50,44,51,52,46,49,54,56,49,57,53,93,44,91,45,49,49,56,46,55,56,56,56,56,57,44,51,52,46,49,54,56,50,49,52,93,44,91,45,49,49,56,46,57,52,48,57,54,53,44,51,52,46,48,55,52,56,51,93,44,91,45,49,49,56,46,57,53,49,55,50,49,44,51,51,46,57,57,50,56,53,56,93,44,91,45,49,49,56,46,56,50,52,56,57,51,44,51,51,46,57,52,57,48,52,50,93,44,91,45,49,49,56,46,53,53,55,51,53,54,44,51,51,46,57,56,55,54,55,51,93,44,91,45,49,49,56,46,52,52,51,57,54,56,44,51,51,46,56,51,57,48,53,55,93,44,91,45,49,49,56,46,52,54,54,57,54,50,44,51,51,46,55,50,53,53,50,52,93,44,91,45,49,49,56,46,51,52,53,52,49,53,44,51,51,46,54,54,51,52,50,55,93,44,91,45,49,49,56,46,49,50,53,57,44,51,51,46,54,57,55,49,53,49,93,44,91,45,49,49,56,46,48,53,56,57,49,56,44,51,51,46,56,52,54,49,50,49,93,44,91,45,49,49,55,46,57,55,54,52,57,56,44,51,51,46,57,52,54,48,53,93,44,91,45,49,49,55,46,55,56,51,50,56,55,44,51,51,46,57,52,54,52,49,49,93,44,91,45,49,49,55,46,54,55,56,53,48,49,44,51,52,46,49,54,49,57,57,51,93,44,91,45,49,49,55,46,54,52,54,51,55,52,44,51,52,46,50,56,57,49,55,93,44,91,45,49,49,55,46,54,54,55,50,57,50,44,51,52,46,56,50,50,53,50,54,93,44,91,45,49,49,56,46,56,53,52,48,49,44,51,52,46,56,49,55,51,51,57,93,44,91,45,49,49,56,46,56,56,49,51,54,52,44,51,52,46,55,57,48,54,50,57,93,93,93,44,91,91,91,45,49,49,56,46,54,54,56,50,48,51,44,51,51,46,52,56,53,57,51,55,93,44,91,45,49,49,56,46,53,53,51,51,55,54,44,51,51,46,51,56,48,50,50,54,93,44,91,45,49,49,56,46,53,49,56,48,51,55,44,51,51,46,50,57,54,54,53,93,44,91,45,49,49,56,46,51,50,55,57,57,51,44,51,51,46,50,52,56,48,56,51,93,44,91,45,49,49,56,46,50,54,50,55,52,56,44,51,51,46,51,55,48,52,52,93,44,91,45,49,49,56,46,51,53,57,51,57,51,44,51,51,46,52,54,52,57,50,50,93,44,91,45,49,49,56,46,53,50,51,50,51,54,44,51,51,46,53,51,48,49,53,51,93,44,91,45,49,49,56,46,54,54,56,50,48,51,44,51,51,46,52,56,53,57,51,55,93,93,93,44,91,91,91,45,49,49,56,46,54,55,56,50,48,52,44,51,51,46,48,51,57,55,50,54,93,44,91,45,49,49,56,46,53,51,56,49,57,55,44,51,50,46,56,49,50,55,55,93,44,91,45,49,49,56,46,52,51,54,53,51,56,44,51,50,46,55,53,48,48,52,93,44,91,45,49,49,56,46,51,50,51,56,49,57,44,51,50,46,55,55,51,53,49,52,93,44,91,45,49,49,56,46,50,57,55,50,53,44,51,50,46,56,52,53,48,57,52,93,44,91,45,49,49,56,46,52,52,56,56,54,51,44,51,50,46,57,54,49,55,53,93,44,91,45,49,49,56,46,53,52,50,49,48,51,44,51,51,46,48,55,51,55,56,56,93,44,91,45,49,49,56,46,54,55,56,50,48,52,44,51,51,46,48,51,57,55,50,54,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,89,117,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,56,50,57,44,34,98,101,100,115,34,58,52,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,55,49,57,52,57,55,44,51,50,46,55,49,56,55,51,57,93,44,91,45,49,49,52,46,56,48,57,52,51,55,44,51,50,46,54,49,53,57,56,54,93,44,91,45,49,49,52,46,56,49,51,54,57,50,44,51,50,46,52,57,52,48,54,57,93,44,91,45,49,49,51,46,56,51,54,50,50,54,44,51,50,46,49,57,54,48,55,54,93,44,91,45,49,49,51,46,51,51,51,55,54,55,44,51,50,46,48,51,56,57,50,55,93,44,91,45,49,49,51,46,51,51,51,56,57,52,44,51,50,46,53,48,53,49,56,56,93,44,91,45,49,49,51,46,51,51,53,48,52,56,44,51,51,46,51,55,55,52,54,57,93,44,91,45,49,49,51,46,57,53,55,52,56,57,44,51,51,46,51,55,55,51,54,50,93,44,91,45,49,49,51,46,57,53,55,53,49,52,44,51,51,46,52,54,52,52,49,51,93,44,91,45,49,49,52,46,50,54,56,56,48,56,44,51,51,46,52,54,52,52,48,50,93,44,91,45,49,49,52,46,50,54,56,56,44,51,51,46,48,50,57,57,54,49,93,44,91,45,49,49,52,46,53,49,54,56,52,50,44,51,51,46,48,50,55,56,56,54,93,44,91,45,49,49,52,46,52,54,50,57,50,57,44,51,50,46,57,48,55,57,52,52,93,44,91,45,49,49,52,46,53,50,54,56,53,54,44,51,50,46,55,53,55,48,57,52,93,44,91,45,49,49,52,46,55,49,57,52,57,55,44,51,50,46,55,49,56,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,71,111,114,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,55,57,48,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,54,57,49,53,57,44,51,52,46,53,56,55,49,56,52,93,44,91,45,56,53,46,48,56,54,55,54,49,44,51,52,46,52,48,49,50,54,52,93,44,91,45,56,53,46,48,48,53,55,55,53,44,51,52,46,51,57,50,52,52,54,93,44,91,45,56,52,46,54,53,51,50,51,50,44,51,52,46,52,49,50,53,57,93,44,91,45,56,52,46,54,53,52,51,54,54,44,51,52,46,53,52,56,57,52,54,93,44,91,45,56,52,46,54,53,52,53,50,51,44,51,52,46,53,56,51,49,56,55,93,44,91,45,56,52,46,57,49,51,52,53,54,44,51,52,46,54,51,52,49,50,56,93,44,91,45,56,53,46,48,53,48,52,52,54,44,51,52,46,54,50,50,52,56,50,93,44,91,45,56,53,46,48,54,57,49,53,57,44,51,52,46,53,56,55,49,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,49,52,52,56,53,44,52,50,46,53,54,48,51,48,57,93,44,91,45,57,52,46,56,53,54,54,56,57,44,52,50,46,52,55,51,57,57,54,93,44,91,45,57,52,46,56,53,56,52,49,50,44,52,50,46,50,48,57,54,57,50,93,44,91,45,57,52,46,54,50,56,56,48,54,44,52,50,46,50,48,57,51,57,54,93,44,91,45,57,52,46,51,57,55,53,50,54,44,52,50,46,50,48,57,49,54,49,93,44,91,45,57,52,46,51,57,55,54,55,49,44,52,50,46,52,55,51,51,93,44,91,45,57,52,46,52,52,51,48,50,52,44,52,50,46,53,53,56,56,52,51,93,44,91,45,57,52,46,57,49,52,52,56,53,44,52,50,46,53,54,48,51,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,72,105,103,104,108,97,110,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,48,49,44,34,98,101,100,115,34,58,50,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,54,51,53,51,51,44,50,55,46,54,52,54,54,52,53,93,44,91,45,56,49,46,53,54,52,48,54,50,44,50,55,46,51,52,48,54,52,49,93,44,91,45,56,49,46,53,54,50,54,50,52,44,50,55,46,48,51,51,56,51,53,93,44,91,45,56,49,46,53,54,50,53,51,49,44,50,55,46,48,51,51,54,56,55,93,44,91,45,56,49,46,50,54,55,50,49,54,44,50,55,46,48,51,50,52,55,52,93,44,91,45,56,49,46,50,54,55,54,55,55,44,50,55,46,49,50,49,48,57,55,93,44,91,45,56,49,46,49,54,56,50,56,49,44,50,55,46,49,50,49,55,51,52,93,44,91,45,56,49,46,49,54,57,49,51,56,44,50,55,46,50,48,57,53,56,53,93,44,91,45,56,48,46,57,52,48,54,55,54,44,50,55,46,50,48,53,57,51,57,93,44,91,45,56,49,46,50,48,53,51,56,56,44,50,55,46,52,57,48,50,53,52,93,44,91,45,56,49,46,49,52,50,49,54,52,44,50,55,46,54,52,51,50,51,56,93,44,91,45,56,49,46,53,54,51,53,51,51,44,50,55,46,54,52,54,54,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,56,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,56,48,34,44,34,78,65,77,69,34,58,34,67,111,118,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,48,56,57,57,52,44,51,55,46,55,54,50,53,56,55,93,44,91,45,55,57,46,57,55,56,50,49,52,44,51,55,46,55,54,52,57,55,53,93,44,91,45,55,57,46,57,54,55,48,55,49,44,51,55,46,56,48,51,52,48,53,93,44,91,45,55,57,46,57,57,50,48,53,53,44,51,55,46,55,57,57,56,49,93,44,91,45,56,48,46,48,48,56,57,57,52,44,51,55,46,55,54,50,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,51,55,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,51,54,56,51,53,51,44,52,52,46,50,48,52,48,53,55,93,44,91,45,55,50,46,52,52,51,48,51,50,44,52,52,46,49,50,56,54,54,57,93,44,91,45,55,50,46,53,56,57,56,53,53,44,52,52,46,49,53,57,51,52,51,93,44,91,45,55,50,46,55,52,50,51,48,51,44,52,52,46,48,50,57,54,53,53,93,44,91,45,55,50,46,55,57,49,51,51,54,44,52,51,46,57,54,49,56,53,53,93,44,91,45,55,50,46,55,56,51,50,48,56,44,52,51,46,57,50,56,57,54,55,93,44,91,45,55,50,46,50,48,53,50,49,57,44,52,51,46,55,55,48,57,54,52,93,44,91,45,55,50,46,49,49,54,57,53,54,44,52,51,46,57,57,50,54,51,54,93,44,91,45,55,50,46,48,51,50,51,50,57,44,52,52,46,48,56,48,56,54,57,93,44,91,45,55,50,46,48,51,57,56,50,44,52,52,46,49,53,53,55,51,93,44,91,45,55,50,46,48,52,50,57,53,54,44,52,52,46,49,53,54,52,57,55,93,44,91,45,55,50,46,51,54,56,51,53,51,44,52,52,46,50,48,52,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,99,80,104,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,51,48,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,50,52,50,54,57,44,51,56,46,53,50,50,55,53,53,93,44,91,45,57,55,46,57,50,50,49,51,54,44,51,56,46,49,55,51,55,49,51,93,44,91,45,57,55,46,55,48,49,56,52,49,44,51,56,46,49,55,51,56,49,52,93,44,91,45,57,55,46,51,55,49,55,53,44,51,56,46,49,55,51,54,55,51,93,44,91,45,57,55,46,51,55,49,57,49,49,44,51,56,46,54,48,57,51,53,51,93,44,91,45,57,55,46,57,50,52,55,57,53,44,51,56,46,54,48,57,56,56,93,44,91,45,57,55,46,57,50,52,50,54,57,44,51,56,46,53,50,50,55,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,80,105,110,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,57,55,50,49,44,34,98,101,100,115,34,58,52,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,48,51,57,57,55,54,44,51,51,46,52,54,54,48,49,57,93,44,91,45,49,49,49,46,53,56,48,54,51,52,44,51,51,46,52,54,53,56,93,44,91,45,49,49,49,46,53,56,50,54,51,49,44,51,51,46,50,48,53,52,48,56,93,44,91,45,49,49,50,46,48,56,49,57,52,54,44,51,51,46,50,48,52,54,56,54,93,44,91,45,49,49,50,46,49,57,49,54,48,56,44,51,51,46,50,54,52,54,57,56,93,44,91,45,49,49,50,46,50,48,51,54,50,52,44,51,50,46,53,48,54,55,50,49,93,44,91,45,49,49,49,46,53,54,57,50,53,54,44,51,50,46,53,48,54,55,54,57,93,44,91,45,49,49,48,46,52,53,49,53,50,50,44,51,50,46,53,49,51,57,57,53,93,44,91,45,49,49,48,46,52,52,57,48,50,49,44,51,51,46,49,57,52,53,50,54,93,44,91,45,49,49,48,46,54,51,52,52,49,50,44,51,51,46,49,52,50,51,54,54,93,44,91,45,49,49,48,46,55,56,51,49,51,54,44,51,50,46,57,56,52,54,54,93,44,91,45,49,49,48,46,57,52,54,54,56,52,44,51,51,46,50,53,48,48,53,51,93,44,91,45,49,49,49,46,48,51,57,57,55,54,44,51,51,46,52,54,54,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,51,48,53,44,34,98,101,100,115,34,58,49,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,57,57,53,52,54,44,52,49,46,55,48,53,56,49,54,93,44,91,45,56,52,46,51,56,48,55,51,53,44,52,49,46,53,49,51,57,52,50,93,44,91,45,56,52,46,51,52,49,57,48,50,44,52,49,46,52,56,53,53,49,57,93,44,91,45,56,51,46,56,56,50,57,52,51,44,52,49,46,52,56,55,53,52,51,93,44,91,45,56,51,46,56,56,48,51,57,49,44,52,49,46,55,50,48,50,49,50,93,44,91,45,56,52,46,51,54,48,52,49,54,44,52,49,46,55,48,54,53,56,57,93,44,91,45,56,52,46,51,57,57,53,52,54,44,52,49,46,55,48,53,56,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,97,109,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,52,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,51,56,52,49,51,44,51,55,46,55,52,56,51,53,51,93,44,91,45,49,48,54,46,48,51,57,51,51,49,44,51,55,46,52,48,48,56,53,50,93,44,91,45,49,48,54,46,48,51,56,57,49,50,44,51,55,46,51,53,54,57,53,51,93,44,91,45,49,48,53,46,55,52,51,51,51,57,44,51,55,46,51,53,54,55,57,56,93,44,91,45,49,48,53,46,52,56,53,53,49,54,44,51,55,46,53,55,55,56,57,57,93,44,91,45,49,48,53,46,52,53,55,50,53,53,44,51,55,46,55,53,49,52,54,52,93,44,91,45,49,48,54,46,48,51,56,52,49,51,44,51,55,46,55,52,56,51,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,105,116,114,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,48,56,55,44,34,98,101,100,115,34,58,51,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,55,56,52,51,55,44,50,56,46,54,57,52,50,48,54,93,44,91,45,56,50,46,52,49,56,51,53,51,44,50,56,46,54,57,52,56,53,57,93,44,91,45,56,50,46,50,54,51,48,53,50,44,50,56,46,54,54,55,54,51,52,93,44,91,45,56,50,46,49,55,49,52,48,50,44,50,56,46,55,56,57,56,52,56,93,44,91,45,56,50,46,51,49,49,54,57,55,44,50,56,46,57,54,48,51,57,49,93,44,91,45,56,50,46,52,55,55,54,51,57,44,50,57,46,48,53,50,52,56,52,93,44,91,45,56,50,46,53,51,53,53,57,49,44,50,57,46,48,52,52,56,53,53,93,44,91,45,56,50,46,55,49,49,53,51,44,50,57,46,48,51,48,57,56,56,93,44,91,45,56,50,46,56,52,56,50,52,56,44,50,56,46,57,49,52,53,50,57,93,44,91,45,56,50,46,55,55,56,52,51,55,44,50,56,46,54,57,52,50,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,117,108,101,98,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,52,50,50,55,48,54,44,49,56,46,50,57,48,55,50,56,93,44,91,45,54,53,46,50,56,54,54,56,44,49,56,46,50,50,53,57,57,93,44,91,45,54,53,46,49,57,49,49,51,52,44,49,56,46,50,53,56,56,56,52,93,44,91,45,54,53,46,49,56,49,55,54,50,44,49,56,46,51,53,55,55,50,55,93,44,91,45,54,53,46,51,54,50,53,54,54,44,49,56,46,52,49,57,52,55,50,93,44,91,45,54,53,46,52,50,52,52,51,49,44,49,56,46,51,57,48,56,56,93,44,91,45,54,53,46,52,50,50,55,48,54,44,49,56,46,50,57,48,55,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,68,111,114,97,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,48,56,51,49,51,44,49,56,46,53,50,57,55,56,56,93,44,91,45,54,54,46,51,48,51,54,54,51,44,49,56,46,51,56,52,48,55,55,93,44,91,45,54,54,46,50,53,50,53,53,52,44,49,56,46,51,57,52,49,56,55,93,44,91,45,54,54,46,49,56,55,50,55,49,44,49,56,46,53,50,54,50,55,49,93,44,91,45,54,54,46,51,48,56,51,49,51,44,49,56,46,53,50,57,55,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,54,48,49,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,53,57,55,48,54,44,51,54,46,48,56,54,48,50,52,93,44,91,45,56,54,46,48,49,52,56,52,57,44,51,53,46,57,54,49,48,54,93,44,91,45,56,53,46,56,56,53,49,53,54,44,51,53,46,56,51,57,54,53,56,93,44,91,45,56,53,46,54,56,50,48,57,53,44,51,53,46,56,51,49,50,53,52,93,44,91,45,56,53,46,54,52,52,54,48,52,44,51,54,46,48,49,53,48,53,51,93,44,91,45,56,53,46,56,48,55,52,49,53,44,51,54,46,49,51,49,53,56,50,93,44,91,45,56,54,46,48,53,57,55,48,54,44,51,54,46,48,56,54,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,108,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,50,55,44,34,98,101,100,115,34,58,49,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,55,55,56,50,50,44,52,49,46,51,56,54,52,55,57,93,44,91,45,55,57,46,54,57,52,57,56,52,44,52,49,46,49,55,50,56,54,53,93,44,91,45,55,57,46,54,57,48,55,49,49,44,52,49,46,49,55,48,54,57,49,93,44,91,45,55,57,46,54,54,53,55,54,50,44,52,49,46,48,52,57,49,50,51,93,44,91,45,55,57,46,53,57,55,48,49,51,44,52,48,46,57,57,52,51,56,56,93,44,91,45,55,57,46,51,56,53,53,51,55,44,52,48,46,57,56,57,55,54,54,93,44,91,45,55,57,46,50,49,53,50,49,52,44,52,49,46,48,53,48,53,49,53,93,44,91,45,55,57,46,50,48,56,56,55,56,44,52,49,46,51,51,49,56,54,49,93,44,91,45,55,57,46,50,48,55,49,57,54,44,52,49,46,52,51,48,57,50,50,93,44,91,45,55,57,46,52,48,48,50,54,57,44,52,49,46,52,51,54,49,52,53,93,44,91,45,55,57,46,52,55,55,56,50,50,44,52,49,46,51,56,54,52,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,105,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,50,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,52,57,52,57,50,44,52,52,46,49,57,53,50,51,53,93,44,91,45,57,55,46,56,53,49,49,49,44,52,51,46,56,52,57,56,53,55,93,44,91,45,57,55,46,54,48,56,53,49,55,44,52,51,46,56,52,57,48,53,57,93,44,91,45,57,55,46,51,54,57,52,54,51,44,52,51,46,56,52,56,53,50,54,93,44,91,45,57,55,46,51,55,48,49,49,53,44,52,52,46,49,57,52,57,55,49,93,44,91,45,57,55,46,56,52,57,52,57,50,44,52,52,46,49,57,53,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,74,101,114,97,117,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,57,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,51,49,57,49,44,52,52,46,49,57,54,54,56,55,93,44,91,45,57,56,46,55,48,48,52,53,51,44,52,52,46,49,57,54,55,50,55,93,44,91,45,57,56,46,57,50,53,57,53,51,44,52,52,46,49,57,54,53,55,53,93,44,91,45,57,56,46,57,50,54,57,57,55,44,52,51,46,57,51,53,49,52,51,93,44,91,45,57,56,46,56,48,55,55,55,49,44,52,51,46,57,51,53,50,50,51,93,44,91,45,57,56,46,51,51,49,53,48,56,44,52,51,46,57,51,55,55,48,56,93,44,91,45,57,56,46,51,51,49,57,49,44,52,52,46,49,57,54,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,101,99,97,116,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,53,53,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,57,55,53,55,53,44,51,57,46,52,53,51,50,55,53,93,44,91,45,56,53,46,54,50,57,51,50,55,44,51,57,46,52,53,50,55,53,93,44,91,45,56,53,46,54,56,52,53,49,53,44,51,57,46,51,53,48,48,52,57,93,44,91,45,56,53,46,54,56,54,55,56,51,44,51,57,46,49,51,48,56,53,57,93,44,91,45,56,53,46,53,54,54,51,50,44,51,57,46,49,51,50,55,54,49,93,44,91,45,56,53,46,52,52,48,48,53,52,44,51,57,46,49,57,53,54,49,55,93,44,91,45,56,53,46,50,57,54,53,52,44,51,57,46,50,54,56,50,57,49,93,44,91,45,56,53,46,50,57,55,53,55,53,44,51,57,46,52,53,51,50,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,117,98,111,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,52,49,56,44,34,98,101,100,115,34,58,49,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,55,50,51,54,57,44,51,56,46,53,49,52,55,93,44,91,45,56,55,46,48,55,51,48,54,55,44,51,56,46,50,51,50,53,57,54,93,44,91,45,56,55,46,48,49,55,52,57,44,51,56,46,50,48,51,53,56,93,44,91,45,56,54,46,55,57,49,52,57,55,44,51,56,46,50,48,53,49,51,93,44,91,45,56,54,46,54,55,57,53,49,49,44,51,56,46,50,54,51,48,56,54,93,44,91,45,56,54,46,54,56,49,52,50,52,44,51,56,46,51,57,52,55,54,55,93,44,91,45,56,54,46,54,56,50,51,53,57,44,51,56,46,53,50,54,51,55,56,93,44,91,45,56,54,46,57,50,52,49,56,54,44,51,56,46,53,48,53,51,53,56,93,44,91,45,56,55,46,48,55,50,51,54,57,44,51,56,46,53,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,69,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,51,54,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,48,55,48,49,49,53,44,51,55,46,57,54,52,55,55,93,44,91,45,55,55,46,48,51,53,53,49,50,44,51,55,46,56,54,53,56,49,56,93,44,91,45,55,54,46,55,53,49,48,55,50,44,51,55,46,55,50,56,54,48,53,93,44,91,45,55,54,46,54,54,56,49,56,50,44,51,55,46,55,55,56,51,56,54,93,44,91,45,55,54,46,57,48,48,52,57,44,51,55,46,57,56,50,49,52,50,93,44,91,45,55,54,46,57,51,54,57,53,57,44,51,56,46,48,55,55,48,55,52,93,44,91,45,55,55,46,48,54,49,54,57,53,44,51,56,46,49,54,49,54,51,49,93,44,91,45,55,55,46,49,49,53,57,57,55,44,51,56,46,49,52,57,57,51,49,93,44,91,45,55,55,46,49,55,48,49,44,51,56,46,48,55,57,53,52,51,93,44,91,45,55,55,46,48,55,48,49,49,53,44,51,55,46,57,54,52,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,55,57,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,55,53,54,50,44,51,51,46,56,56,53,50,52,53,93,44,91,45,55,57,46,57,57,53,54,51,56,44,51,51,46,55,54,55,57,48,54,93,44,91,45,55,57,46,57,55,52,51,56,50,44,51,51,46,55,50,49,53,57,93,44,91,45,56,48,46,49,48,49,54,57,55,44,51,51,46,52,57,54,56,57,49,93,44,91,45,55,57,46,57,55,49,57,54,51,44,51,51,46,53,48,48,57,51,55,93,44,91,45,55,57,46,54,55,55,48,49,52,44,51,51,46,51,48,52,57,52,52,93,44,91,45,55,57,46,53,57,48,49,49,44,51,51,46,52,52,51,53,52,93,44,91,45,55,57,46,52,51,53,55,51,51,44,51,51,46,53,55,50,55,48,50,93,44,91,45,55,57,46,52,48,57,51,51,50,44,51,51,46,54,56,56,56,57,93,44,91,45,55,57,46,51,49,55,48,52,49,44,51,51,46,55,55,57,56,55,56,93,44,91,45,55,57,46,51,50,52,51,49,55,44,51,51,46,55,57,57,49,50,51,93,44,91,45,55,57,46,52,57,54,52,56,54,44,51,51,46,55,55,53,51,53,55,93,44,91,45,55,57,46,55,57,56,51,55,44,51,51,46,56,51,53,53,54,50,93,44,91,45,55,57,46,56,55,53,54,50,44,51,51,46,56,56,53,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,69,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,55,53,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,51,56,54,51,54,44,52,52,46,53,52,54,56,52,52,93,44,91,45,55,51,46,52,57,55,53,54,55,44,52,52,46,52,56,54,50,51,93,44,91,45,55,51,46,57,48,57,54,56,55,44,52,52,46,52,50,57,54,57,57,93,44,91,45,55,52,46,49,52,49,52,50,52,44,52,52,46,52,48,55,50,54,56,93,44,91,45,55,52,46,48,57,51,52,57,44,52,52,46,49,51,55,54,49,53,93,44,91,45,55,52,46,50,56,49,56,55,44,52,52,46,49,50,48,53,53,50,93,44,91,45,55,52,46,50,53,53,57,57,56,44,52,51,46,57,54,57,55,57,55,93,44,91,45,55,52,46,51,51,54,56,50,54,44,52,51,46,57,50,53,50,50,51,93,44,91,45,55,52,46,50,49,51,55,51,52,44,52,51,46,56,49,48,56,55,53,93,44,91,45,55,52,46,48,53,55,48,48,53,44,52,51,46,55,52,52,53,49,51,93,44,91,45,55,51,46,52,51,56,49,50,44,52,51,46,56,48,51,54,56,55,93,44,91,45,55,51,46,51,55,57,50,56,49,44,52,51,46,56,48,56,52,56,49,93,44,91,45,55,51,46,52,51,55,57,48,53,44,52,52,46,48,52,53,49,50,53,93,44,91,45,55,51,46,51,57,48,54,50,53,44,52,52,46,49,57,49,48,54,56,93,44,91,45,55,51,46,51,49,51,50,56,51,44,52,52,46,50,54,52,49,51,93,44,91,45,55,51,46,50,57,54,48,53,50,44,52,52,46,52,50,56,51,51,52,93,44,91,45,55,51,46,51,51,56,54,51,54,44,52,52,46,53,52,54,56,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,87,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,57,55,51,53,51,44,52,51,46,52,57,57,54,50,50,93,44,91,45,57,51,46,52,57,55,54,51,53,44,52,51,46,50,53,53,52,54,56,93,44,91,45,57,51,46,48,50,52,49,52,51,44,52,51,46,50,53,53,53,51,56,93,44,91,45,57,51,46,48,50,52,51,52,53,44,52,51,46,52,57,57,55,51,51,93,44,91,45,57,51,46,48,52,57,49,57,50,44,52,51,46,52,57,57,55,48,53,93,44,91,45,57,51,46,52,57,55,51,53,51,44,52,51,46,52,57,57,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,117,103,104,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,52,49,51,54,56,44,51,53,46,50,57,48,49,50,50,93,44,91,45,57,54,46,52,57,48,52,51,52,44,51,53,46,49,49,53,56,53,55,93,44,91,45,57,54,46,52,57,48,55,56,54,44,51,52,46,57,49,48,53,56,53,93,44,91,45,57,54,46,52,49,51,55,56,49,44,51,52,46,57,49,53,54,49,57,93,44,91,45,57,54,46,52,48,54,52,56,51,44,51,52,46,55,54,55,51,50,56,93,44,91,45,57,54,46,48,57,50,48,48,49,44,51,52,46,55,54,55,52,55,57,93,44,91,45,57,54,46,48,56,56,55,57,50,44,51,53,46,48,52,57,56,55,53,93,44,91,45,57,53,46,57,56,51,48,55,55,44,51,53,46,49,53,49,54,57,53,93,44,91,45,57,53,46,57,56,49,53,49,49,44,51,53,46,50,56,57,55,56,93,44,91,45,57,54,46,52,52,49,51,54,56,44,51,53,46,50,57,48,49,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,66,117,99,104,97,110,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,51,56,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,49,52,49,57,53,44,51,55,46,50,57,54,48,55,53,93,44,91,45,56,50,46,49,52,57,51,55,53,44,51,55,46,48,52,49,54,52,49,93,44,91,45,56,49,46,57,48,48,56,57,50,44,51,55,46,49,52,50,53,53,51,93,44,91,45,56,49,46,55,52,48,49,50,52,44,51,55,46,50,51,55,55,53,50,93,44,91,45,56,49,46,56,53,51,53,53,51,44,51,55,46,50,56,55,55,48,54,93,44,91,45,56,49,46,57,57,54,53,55,56,44,51,55,46,52,55,54,55,48,53,93,44,91,45,56,49,46,57,50,55,54,56,49,44,51,55,46,53,49,50,49,49,51,93,44,91,45,56,49,46,57,54,56,48,49,50,44,51,55,46,53,51,56,48,51,53,93,44,91,45,56,50,46,51,49,52,49,57,53,44,51,55,46,50,57,54,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,104,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,56,54,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,53,54,48,53,54,44,51,55,46,57,53,49,57,53,57,93,44,91,45,56,48,46,49,54,50,50,48,50,44,51,55,46,56,55,53,49,50,50,93,44,91,45,56,48,46,50,57,54,49,51,56,44,51,55,46,54,57,49,55,56,51,93,44,91,45,56,48,46,50,50,48,57,56,52,44,51,55,46,54,50,55,55,54,55,93,44,91,45,56,48,46,49,52,52,51,57,52,44,51,55,46,53,57,54,54,50,55,93,44,91,45,56,48,46,48,50,48,53,53,52,44,51,55,46,54,52,55,52,52,50,93,44,91,45,55,57,46,56,49,54,54,56,53,44,51,55,46,56,48,48,57,54,52,93,44,91,45,55,57,46,54,55,52,49,54,50,44,51,55,46,55,54,51,48,57,51,93,44,91,45,55,57,46,54,52,55,53,56,57,44,51,55,46,56,55,52,53,51,56,93,44,91,45,55,57,46,56,56,55,51,50,57,44,51,55,46,56,57,50,57,55,49,93,44,91,45,55,57,46,57,51,53,51,54,52,44,51,55,46,57,53,52,51,54,53,93,44,91,45,56,48,46,48,53,54,48,53,54,44,51,55,46,57,53,49,57,53,57,93,93,44,91,91,45,56,48,46,48,48,56,57,57,52,44,51,55,46,55,54,50,53,56,55,93,44,91,45,55,57,46,57,57,50,48,53,53,44,51,55,46,55,57,57,56,49,93,44,91,45,55,57,46,57,54,55,48,55,49,44,51,55,46,56,48,51,52,48,53,93,44,91,45,55,57,46,57,55,56,50,49,52,44,51,55,46,55,54,52,57,55,53,93,44,91,45,56,48,46,48,48,56,57,57,52,44,51,55,46,55,54,50,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,76,111,119,110,100,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,52,51,55,44,34,98,101,100,115,34,58,51,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,52,56,57,49,54,44,51,51,46,55,52,52,57,55,55,93,44,91,45,56,56,46,53,49,51,57,49,55,44,51,51,46,54,53,48,50,48,57,93,44,91,45,56,56,46,52,57,50,53,48,52,44,51,51,46,53,52,51,49,53,52,93,44,91,45,56,56,46,54,55,49,50,53,44,51,51,46,53,48,54,49,54,56,93,44,91,45,56,56,46,54,54,57,48,55,54,44,51,51,46,50,56,54,57,50,50,93,44,91,45,56,56,46,51,48,52,52,51,52,44,51,51,46,50,56,56,51,50,93,44,91,45,56,56,46,50,55,52,54,49,57,44,51,51,46,53,51,52,48,48,56,93,44,91,45,56,56,46,50,52,56,57,49,54,44,51,51,46,55,52,52,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,55,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,56,51,56,51,57,44,51,56,46,56,49,53,52,48,54,93,44,91,45,56,53,46,55,57,53,51,53,55,44,51,56,46,56,48,55,53,48,56,93,44,91,45,56,53,46,56,56,56,51,51,52,44,51,56,46,55,51,52,52,52,51,93,44,91,45,56,53,46,56,52,55,56,57,51,44,51,56,46,53,54,49,50,54,57,93,44,91,45,56,53,46,55,57,51,53,56,52,44,51,56,46,54,48,52,56,49,52,93,44,91,45,56,53,46,53,54,57,57,56,44,51,56,46,54,48,54,49,53,53,93,44,91,45,56,53,46,53,55,48,57,51,44,51,56,46,54,55,56,55,48,54,93,44,91,45,56,53,46,54,56,51,51,51,56,44,51,56,46,55,51,54,55,51,49,93,44,91,45,56,53,46,54,56,51,56,51,57,44,51,56,46,56,49,53,52,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,80,114,111,119,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,53,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,52,52,55,53,44,51,56,46,50,54,56,55,52,57,93,44,91,45,49,48,50,46,55,52,50,51,51,44,51,56,46,50,54,54,57,55,49,93,44,91,45,49,48,50,46,55,52,55,54,49,53,44,51,55,46,54,52,51,54,52,50,93,44,91,45,49,48,50,46,48,52,49,53,56,53,44,51,55,46,54,52,52,50,56,50,93,44,91,45,49,48,50,46,48,52,50,49,53,53,44,51,55,46,55,51,56,53,52,49,93,44,91,45,49,48,50,46,48,52,52,52,54,52,44,51,56,46,50,54,50,52,49,50,93,44,91,45,49,48,50,46,48,52,52,52,55,53,44,51,56,46,50,54,56,55,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,51,53,34,44,34,78,65,77,69,34,58,34,83,117,116,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,54,53,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,54,50,51,52,44,51,48,46,55,49,48,51,54,54,93,44,91,45,49,48,48,46,57,54,48,53,56,55,44,51,48,46,55,48,54,48,55,49,93,44,91,45,49,48,48,46,57,54,48,54,52,51,44,51,48,46,50,56,55,55,55,54,93,44,91,45,49,48,48,46,55,48,48,51,57,51,44,51,48,46,50,56,56,50,55,54,93,44,91,45,49,48,48,46,49,49,54,52,54,49,44,51,48,46,50,57,48,50,57,54,93,44,91,45,49,48,48,46,49,49,54,50,51,52,44,51,48,46,55,49,48,51,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,83,97,98,97,110,97,32,71,114,97,110,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,57,55,55,56,53,53,44,49,56,46,49,52,51,55,57,57,93,44,91,45,54,54,46,57,56,51,51,51,55,44,49,56,46,48,53,50,53,49,56,93,44,91,45,54,54,46,57,53,56,55,52,56,44,49,56,46,48,51,50,52,55,55,93,44,91,45,54,54,46,56,56,52,54,53,51,44,49,56,46,48,50,52,56,49,54,93,44,91,45,54,54,46,57,50,54,53,49,55,44,49,56,46,49,53,49,50,54,55,93,44,91,45,54,54,46,57,55,55,56,53,53,44,49,56,46,49,52,51,55,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,117,115,107,111,103,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,48,56,52,44,34,98,101,100,115,34,58,51,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,49,50,57,53,51,44,51,53,46,53,53,49,55,51,56,93,44,91,45,57,53,46,51,52,52,55,57,57,44,51,53,46,53,53,49,55,53,49,93,44,91,45,57,53,46,51,52,52,55,54,54,44,51,53,46,50,57,51,48,51,53,93,44,91,45,57,53,46,49,55,49,55,54,51,44,51,53,46,51,48,53,53,53,51,93,44,91,45,57,53,46,48,52,57,57,51,51,44,51,53,46,52,53,56,56,57,52,93,44,91,45,57,53,46,49,51,50,50,55,49,44,51,53,46,53,50,54,48,53,53,93,44,91,45,57,53,46,49,50,55,50,49,51,44,51,53,46,54,51,56,56,56,56,93,44,91,45,57,53,46,49,50,55,49,54,51,44,51,53,46,56,49,50,55,53,53,93,44,91,45,57,53,46,50,54,53,54,55,57,44,51,53,46,56,49,51,50,54,54,93,44,91,45,57,53,46,54,51,57,55,55,57,44,51,53,46,55,57,49,56,48,55,93,44,91,45,57,53,46,55,54,54,49,49,52,44,51,53,46,56,53,54,50,56,52,93,44,91,45,57,53,46,55,49,51,48,56,49,44,51,53,46,55,50,53,56,48,55,93,44,91,45,57,53,46,55,49,50,57,53,51,44,51,53,46,53,53,49,55,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,104,114,105,115,116,105,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,50,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,49,48,49,50,54,44,51,54,46,57,57,53,56,49,93,44,91,45,57,51,46,51,51,55,52,53,49,44,51,54,46,57,57,50,52,57,52,93,44,91,45,57,51,46,51,48,52,51,53,57,44,51,54,46,56,49,54,56,54,54,93,44,91,45,57,50,46,57,48,57,51,51,54,44,51,54,46,56,48,57,49,55,56,93,44,91,45,57,50,46,57,48,51,50,55,51,44,51,55,46,48,55,48,54,53,49,93,44,91,45,57,51,46,48,54,53,50,55,52,44,51,55,46,48,56,56,54,57,52,93,44,91,45,57,51,46,54,48,56,56,57,57,44,51,55,46,48,57,56,49,53,51,93,44,91,45,57,51,46,54,49,48,49,50,54,44,51,54,46,57,57,53,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,105,97,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,51,51,54,50,51,44,49,56,46,51,53,49,51,51,51,93,44,91,45,54,54,46,53,57,48,55,56,53,44,49,56,46,51,51,56,48,54,93,44,91,45,54,54,46,54,48,54,57,56,57,44,49,56,46,51,50,56,49,56,54,93,44,91,45,54,54,46,53,54,54,54,50,44,49,56,46,50,57,56,53,52,57,93,44,91,45,54,54,46,53,52,51,49,51,51,44,49,56,46,49,54,51,48,57,56,93,44,91,45,54,54,46,52,53,53,55,48,51,44,49,56,46,50,53,55,55,50,54,93,44,91,45,54,54,46,52,54,51,50,49,49,44,49,56,46,51,55,49,52,55,51,93,44,91,45,54,54,46,53,51,51,54,50,51,44,49,56,46,51,53,49,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,97,109,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,50,50,51,44,34,98,101,100,115,34,58,50,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,53,52,50,49,50,44,51,49,46,52,51,51,56,48,53,93,44,91,45,56,57,46,54,53,52,48,51,56,44,51,49,46,48,48,50,53,48,50,93,44,91,45,56,57,46,52,55,54,48,50,50,44,51,48,46,57,56,50,57,48,49,93,44,91,45,56,57,46,51,52,56,57,53,44,51,49,46,48,49,48,51,55,93,44,91,45,56,57,46,51,52,55,56,54,51,44,51,49,46,51,52,54,55,93,44,91,45,56,57,46,52,53,49,48,55,51,44,51,49,46,51,52,54,51,56,51,93,44,91,45,56,57,46,52,53,49,54,49,54,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,53,56,54,56,49,57,44,51,49,46,52,51,51,54,56,56,93,44,91,45,56,57,46,54,53,52,50,49,50,44,51,49,46,52,51,51,56,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,82,105,112,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,52,48,48,53,52,44,51,57,46,49,57,53,54,49,55,93,44,91,45,56,53,46,52,52,52,56,57,55,44,51,56,46,57,49,50,57,57,56,93,44,91,45,56,53,46,50,48,51,49,54,54,44,51,56,46,57,49,51,56,48,51,93,44,91,45,56,53,46,49,51,53,56,51,50,44,51,56,46,57,50,57,53,55,56,93,44,91,45,56,53,46,49,51,50,53,48,56,44,51,56,46,57,52,56,48,53,53,93,44,91,45,56,53,46,48,54,53,53,55,52,44,51,57,46,51,48,55,50,51,50,93,44,91,45,56,53,46,50,57,54,53,52,44,51,57,46,50,54,56,50,57,49,93,44,91,45,56,53,46,52,52,48,48,53,52,44,51,57,46,49,57,53,54,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,55,48,44,34,98,101,100,115,34,58,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,53,55,48,51,49,44,52,55,46,50,54,52,56,57,53,93,44,91,45,49,48,49,46,51,52,53,55,51,53,44,52,55,46,50,57,49,56,57,55,93,44,91,45,49,48,49,46,52,52,48,49,51,57,44,52,55,46,52,55,55,50,57,57,93,44,91,45,49,48,49,46,52,51,54,53,50,49,44,52,55,46,53,54,52,49,53,55,93,44,91,45,49,48,49,46,56,57,50,48,49,55,44,52,55,46,53,48,53,49,51,51,93,44,91,45,49,48,50,46,48,51,54,54,52,56,44,52,55,46,53,55,50,55,48,53,93,44,91,45,49,48,50,46,50,48,53,51,53,44,52,55,46,53,55,52,53,48,54,93,44,91,45,49,48,50,46,50,48,53,53,53,54,44,52,55,46,51,50,56,48,55,49,93,44,91,45,49,48,50,46,49,52,52,52,53,51,44,52,55,46,51,50,56,48,55,57,93,44,91,45,49,48,50,46,49,52,52,55,55,49,44,52,55,46,48,49,48,51,48,55,93,44,91,45,49,48,50,46,48,57,53,57,48,52,44,52,54,46,57,56,49,51,50,57,93,44,91,45,49,48,49,46,55,54,52,51,57,50,44,52,54,46,57,56,49,51,48,54,93,44,91,45,49,48,49,46,55,54,52,54,52,55,44,52,55,46,50,52,49,53,49,56,93,44,91,45,49,48,49,46,50,53,55,54,51,51,44,52,55,46,50,52,49,51,52,51,93,44,91,45,49,48,49,46,50,53,55,48,51,49,44,52,55,46,50,54,52,56,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,72,97,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,48,53,49,54,51,56,44,51,52,46,52,57,51,55,48,50,93,44,91,45,56,51,46,49,49,51,51,54,44,51,52,46,50,55,51,53,51,93,44,91,45,56,51,46,48,55,56,48,48,52,44,51,52,46,50,50,51,54,48,54,93,44,91,45,56,50,46,57,56,48,57,48,53,44,51,52,46,50,49,49,53,48,53,93,44,91,45,56,50,46,55,55,51,52,49,44,51,52,46,50,56,56,56,54,52,93,44,91,45,56,50,46,56,54,52,52,44,51,52,46,52,53,57,55,56,53,93,44,91,45,56,50,46,57,57,50,50,51,50,44,51,52,46,52,55,57,50,53,56,93,44,91,45,56,51,46,48,53,49,54,51,56,44,51,52,46,52,57,51,55,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,50,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,55,55,49,57,55,44,51,50,46,52,53,51,52,53,53,93,44,91,45,57,50,46,55,55,52,57,51,54,44,51,50,46,50,51,55,48,53,53,93,44,91,45,57,50,46,56,49,52,55,51,55,44,51,50,46,49,52,54,57,48,55,93,44,91,45,57,50,46,51,49,50,50,49,56,44,51,50,46,49,52,54,49,50,51,93,44,91,45,57,50,46,51,49,49,56,53,49,44,51,50,46,50,55,55,52,52,49,93,44,91,45,57,50,46,52,49,53,52,49,56,44,51,50,46,52,48,55,56,49,50,93,44,91,45,57,50,46,52,49,53,51,53,44,51,50,46,52,57,53,52,56,54,93,44,91,45,57,50,46,54,50,50,51,51,53,44,51,50,46,52,57,54,52,48,54,93,44,91,45,57,50,46,55,55,55,49,57,55,44,51,50,46,52,53,51,52,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,51,52,50,51,44,51,55,46,57,54,54,54,51,93,44,91,45,55,54,46,53,48,55,56,50,56,44,51,55,46,56,51,56,56,49,52,93,44,91,45,55,54,46,52,50,48,48,55,49,44,51,55,46,56,50,51,55,54,54,93,44,91,45,55,54,46,51,48,56,51,54,55,44,51,55,46,54,54,57,55,55,51,93,44,91,45,55,54,46,49,55,53,54,56,55,44,51,55,46,54,55,49,54,50,54,93,44,91,45,55,54,46,50,51,54,52,53,56,44,51,55,46,56,56,54,54,48,53,93,44,91,45,55,54,46,50,51,54,49,52,49,44,51,55,46,56,56,56,52,54,56,93,44,91,45,55,54,46,53,49,54,51,54,57,44,51,56,46,48,51,52,55,50,52,93,44,91,45,55,54,46,54,51,52,50,51,44,51,55,46,57,54,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,70,111,114,116,32,66,101,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,57,51,52,50,44,34,98,101,100,115,34,58,49,49,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,51,50,55,49,49,44,50,57,46,55,50,55,57,52,52,93,44,91,45,57,54,46,48,56,56,57,49,50,44,50,57,46,54,48,49,54,53,56,93,44,91,45,57,54,46,48,54,48,54,55,54,44,50,57,46,52,55,54,52,55,51,93,44,91,45,57,53,46,57,53,48,54,52,51,44,50,57,46,51,51,54,53,55,55,93,44,91,45,57,53,46,56,52,55,54,53,54,44,50,57,46,50,54,50,53,57,93,44,91,45,57,53,46,55,53,50,56,54,54,44,50,57,46,51,50,52,53,48,51,93,44,91,45,57,53,46,53,57,48,55,57,51,44,50,57,46,51,50,55,52,56,53,93,44,91,45,57,53,46,53,52,57,57,57,52,44,50,57,46,52,51,56,52,51,57,93,44,91,45,57,53,46,52,54,50,53,48,51,44,50,57,46,52,51,57,50,52,93,44,91,45,57,53,46,52,50,52,49,49,56,44,50,57,46,53,56,48,50,51,51,93,44,91,45,57,53,46,56,50,54,50,50,44,50,57,46,55,56,56,50,56,93,44,91,45,57,54,46,48,51,50,55,49,49,44,50,57,46,55,50,55,57,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,32,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,55,53,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,54,56,54,49,50,44,52,51,46,57,56,50,56,51,52,93,44,91,45,56,57,46,49,54,56,49,50,49,44,52,51,46,56,55,54,52,55,93,44,91,45,56,57,46,50,52,53,51,55,53,44,52,51,46,55,53,57,56,49,51,93,44,91,45,56,57,46,50,52,53,52,51,55,44,52,51,46,54,52,51,48,56,51,93,44,91,45,56,57,46,48,48,54,56,52,56,44,52,51,46,54,51,51,48,52,53,93,44,91,45,56,56,46,56,56,54,48,53,50,44,52,51,46,54,51,51,53,52,93,44,91,45,56,56,46,56,56,53,54,57,55,44,52,51,46,56,57,53,49,56,52,93,44,91,45,56,56,46,56,56,54,49,57,51,44,52,51,46,57,56,51,50,51,51,93,44,91,45,56,57,46,49,54,56,54,49,50,44,52,51,46,57,56,50,56,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,80,111,110,100,101,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,52,52,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,49,56,52,55,56,52,44,52,56,46,52,55,55,53,55,56,93,44,91,45,49,49,50,46,53,55,54,57,56,50,44,52,56,46,52,56,51,51,52,56,93,44,91,45,49,49,50,46,53,56,48,52,56,52,44,52,56,46,51,48,57,57,51,50,93,44,91,45,49,49,51,46,51,52,57,48,52,54,44,52,56,46,51,49,48,50,54,51,93,44,91,45,49,49,51,46,50,51,48,55,50,51,44,52,56,46,49,56,50,48,48,50,93,44,91,45,49,49,51,46,48,49,52,56,49,49,44,52,56,46,49,51,49,48,51,93,44,91,45,49,49,50,46,49,55,55,56,51,51,44,52,56,46,49,51,48,55,49,50,93,44,91,45,49,49,50,46,48,52,55,57,57,57,44,52,56,46,48,56,54,54,49,50,93,44,91,45,49,49,49,46,57,56,52,50,54,51,44,52,55,46,57,56,52,53,57,50,93,44,91,45,49,49,49,46,52,48,56,53,49,52,44,52,55,46,57,56,55,49,55,56,93,44,91,45,49,49,49,46,52,48,57,48,57,55,44,52,56,46,49,51,50,50,49,56,93,44,91,45,49,49,49,46,52,48,57,48,49,56,44,52,56,46,50,49,57,53,52,50,93,44,91,45,49,49,49,46,54,54,53,53,57,57,44,52,56,46,50,49,57,53,52,57,93,44,91,45,49,49,49,46,54,54,53,55,53,54,44,52,56,46,51,52,57,52,53,54,93,44,91,45,49,49,49,46,55,57,53,57,49,44,52,56,46,51,57,51,48,56,49,93,44,91,45,49,49,49,46,57,57,48,56,56,57,44,52,56,46,51,57,52,50,54,53,93,44,91,45,49,49,50,46,48,48,52,52,51,54,44,52,56,46,52,52,56,56,56,54,93,44,91,45,49,49,50,46,49,56,52,55,56,52,44,52,56,46,52,55,55,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,87,97,108,119,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,48,49,51,44,34,98,101,100,115,34,58,49,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,52,49,53,51,53,44,52,50,46,56,52,50,57,57,54,93,44,91,45,56,56,46,55,55,55,48,55,54,44,52,50,46,56,52,50,54,57,52,93,44,91,45,56,56,46,55,55,54,52,57,51,44,52,50,46,52,57,49,57,49,50,93,44,91,45,56,56,46,55,48,55,52,50,49,44,52,50,46,52,57,51,53,57,54,93,44,91,45,56,56,46,51,48,52,54,57,50,44,52,50,46,52,57,52,54,49,56,93,44,91,45,56,56,46,51,48,53,56,57,49,44,52,50,46,54,49,48,56,49,55,93,44,91,45,56,56,46,51,48,54,51,56,52,44,52,50,46,56,52,50,48,57,53,93,44,91,45,56,56,46,53,52,49,53,51,53,44,52,50,46,56,52,50,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,77,105,110,101,114,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,52,56,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,55,53,51,56,51,53,44,51,57,46,48,55,52,54,51,93,44,91,45,49,49,56,46,57,50,57,55,51,55,44,51,57,46,48,55,51,54,57,56,93,44,91,45,49,49,57,46,48,49,52,56,51,55,44,51,56,46,57,52,51,51,50,51,93,44,91,45,49,49,57,46,48,49,52,53,50,56,44,51,56,46,56,53,49,51,93,44,91,45,49,49,56,46,57,48,50,49,50,52,44,51,56,46,56,53,50,49,53,56,93,44,91,45,49,49,56,46,57,48,54,56,54,49,44,51,56,46,52,49,52,54,55,55,93,44,91,45,49,49,57,46,49,53,54,57,55,56,44,51,56,46,52,49,52,55,52,54,93,44,91,45,49,49,56,46,52,50,56,49,52,52,44,51,55,46,56,57,54,50,50,93,44,91,45,49,49,56,46,51,53,49,52,56,52,44,51,55,46,56,57,51,55,48,53,93,44,91,45,49,49,55,46,54,57,49,48,50,49,44,51,56,46,52,55,51,55,57,55,93,44,91,45,49,49,56,46,49,57,54,50,51,53,44,51,56,46,57,49,57,48,53,56,93,44,91,45,49,49,56,46,49,57,54,50,55,52,44,51,56,46,57,57,57,57,50,54,93,44,91,45,49,49,55,46,56,54,53,49,49,54,44,51,57,46,48,55,51,54,53,52,93,44,91,45,49,49,56,46,55,53,51,56,51,53,44,51,57,46,48,55,52,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,52,49,56,44,34,98,101,100,115,34,58,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,52,53,54,50,55,44,52,48,46,54,50,55,54,51,56,93,44,91,45,57,48,46,52,53,48,50,50,55,44,52,48,46,50,55,54,51,51,53,93,44,91,45,57,48,46,52,53,49,57,49,54,44,52,48,46,49,56,56,56,48,51,93,44,91,45,57,48,46,49,57,57,54,51,53,44,52,48,46,49,56,51,56,49,50,93,44,91,45,57,48,46,49,49,56,57,54,54,44,52,48,46,50,51,53,50,54,51,93,44,91,45,57,48,46,48,51,51,48,50,54,44,52,48,46,51,55,55,56,48,54,93,44,91,45,56,57,46,57,50,52,54,56,44,52,48,46,52,51,53,57,50,49,93,44,91,45,56,57,46,56,55,50,52,54,51,44,52,48,46,53,49,51,49,50,55,93,44,91,45,56,57,46,56,55,51,54,56,44,52,48,46,54,50,52,57,55,53,93,44,91,45,56,57,46,57,56,54,48,54,52,44,52,48,46,55,49,50,51,54,49,93,44,91,45,57,48,46,52,52,52,51,51,57,44,52,48,46,55,49,52,56,54,56,93,44,91,45,57,48,46,52,52,53,54,50,55,44,52,48,46,54,50,55,54,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,83,117,102,102,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,55,57,48,49,44,34,98,101,100,115,34,58,51,57,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,53,50,55,57,48,49,44,52,49,46,49,55,55,55,55,52,93,44,91,45,55,50,46,57,57,57,53,52,55,44,52,49,46,48,56,55,49,48,56,93,44,91,45,55,51,46,52,51,49,57,49,57,44,52,48,46,57,56,57,48,48,57,93,44,91,45,55,51,46,52,57,55,52,48,53,44,52,48,46,57,50,51,55,54,54,93,44,91,45,55,51,46,52,50,51,50,54,57,44,52,48,46,54,55,48,56,57,51,93,44,91,45,55,51,46,52,50,53,51,49,44,52,48,46,53,51,52,50,54,53,93,44,91,45,55,51,46,50,55,52,48,50,53,44,52,48,46,53,53,49,51,49,52,93,44,91,45,55,50,46,51,55,52,53,50,57,44,52,48,46,56,49,56,53,57,53,93,44,91,45,55,49,46,56,51,55,48,56,56,44,52,49,46,48,49,48,56,57,50,93,44,91,45,55,49,46,55,55,55,52,57,49,44,52,49,46,48,54,55,50,57,50,93,44,91,45,55,49,46,55,57,48,57,55,50,44,52,49,46,49,56,52,49,48,49,93,44,91,45,55,49,46,57,48,55,50,53,56,44,52,49,46,51,48,52,52,56,51,93,44,91,45,55,50,46,51,51,49,52,53,51,44,52,49,46,50,49,53,48,48,52,93,44,91,45,55,50,46,53,50,55,57,48,49,44,52,49,46,49,55,55,55,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,53,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,51,52,53,55,53,44,51,57,46,55,49,52,55,54,52,93,44,91,45,56,53,46,48,51,54,48,56,55,44,51,57,46,53,50,54,50,49,51,93,44,91,45,56,52,46,56,49,53,51,53,51,44,51,57,46,53,50,49,57,53,93,44,91,45,56,52,46,56,49,52,57,51,52,44,51,57,46,53,54,55,55,49,52,93,44,91,45,56,52,46,56,49,52,51,55,51,44,51,57,46,55,50,54,54,50,93,44,91,45,56,53,46,48,51,52,53,55,53,44,51,57,46,55,49,52,55,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,99,68,111,110,97,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,56,51,48,55,44,51,54,46,55,54,54,53,54,93,44,91,45,57,52,46,54,49,56,48,55,55,44,51,54,46,54,54,55,57,50,49,93,44,91,45,57,52,46,54,49,55,57,49,57,44,51,54,46,52,57,57,52,49,52,93,44,91,45,57,52,46,48,55,55,48,56,57,44,51,54,46,52,57,56,55,51,93,44,91,45,57,52,46,48,54,56,56,57,56,44,51,54,46,55,52,55,56,49,56,93,44,91,45,57,52,46,54,49,56,51,48,55,44,51,54,46,55,54,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,115,32,66,108,117,102,102,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,50,53,53,44,34,98,101,100,115,34,58,49,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,50,54,52,53,44,52,50,46,48,48,49,55,49,56,93,44,91,45,49,48,52,46,48,53,50,54,56,56,44,52,49,46,54,57,55,57,53,52,93,44,91,45,49,48,51,46,51,55,48,51,57,49,44,52,49,46,54,57,57,50,49,93,44,91,45,49,48,51,46,51,54,51,51,51,55,44,52,50,46,48,48,50,57,51,93,44,91,45,49,48,51,46,52,48,49,54,51,57,44,52,50,46,48,48,51,53,52,93,44,91,45,49,48,52,46,48,53,50,54,52,53,44,52,50,46,48,48,49,55,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,83,97,110,32,77,105,103,117,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,48,51,52,44,34,98,101,100,115,34,58,50,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,55,50,48,53,50,57,44,51,53,46,56,55,49,49,56,53,93,44,91,45,49,48,53,46,55,49,52,52,49,57,44,51,53,46,48,52,49,54,48,53,93,44,91,45,49,48,53,46,50,57,48,55,57,49,44,51,53,46,48,52,50,48,51,93,44,91,45,49,48,53,46,50,57,49,49,54,57,44,51,53,46,50,49,54,52,56,57,93,44,91,45,49,48,52,46,49,50,53,49,51,54,44,51,53,46,50,49,53,54,57,54,93,44,91,45,49,48,52,46,49,50,53,49,50,49,44,51,53,46,49,52,50,48,53,56,93,44,91,45,49,48,51,46,56,53,55,53,51,44,51,53,46,50,52,50,52,48,53,93,44,91,45,49,48,51,46,54,51,55,49,51,44,51,53,46,50,52,48,56,49,57,93,44,91,45,49,48,51,46,54,51,55,48,53,51,44,51,53,46,51,56,57,54,54,50,93,44,91,45,49,48,51,46,55,50,51,54,48,57,44,51,53,46,52,50,50,55,56,53,93,44,91,45,49,48,51,46,57,55,54,57,48,49,44,51,53,46,56,48,49,55,52,55,93,44,91,45,49,48,52,46,48,50,49,55,48,50,44,51,53,46,55,56,49,52,57,52,93,44,91,45,49,48,52,46,51,55,48,49,50,44,51,53,46,55,55,57,51,48,50,93,44,91,45,49,48,53,46,48,48,54,52,49,55,44,51,53,46,55,55,49,50,53,54,93,44,91,45,49,48,53,46,51,52,55,56,51,44,51,53,46,56,55,48,54,57,53,93,44,91,45,49,48,53,46,55,50,48,53,50,57,44,51,53,46,56,55,49,49,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,50,56,55,44,34,98,101,100,115,34,58,53,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,51,53,48,51,56,44,51,50,46,55,52,54,53,51,93,44,91,45,56,53,46,53,57,51,49,53,49,44,51,50,46,55,50,56,53,51,93,44,91,45,56,53,46,54,57,54,55,53,53,44,51,50,46,54,57,55,52,50,57,93,44,91,45,56,53,46,54,57,53,56,53,52,44,51,50,46,53,57,53,57,51,51,93,44,91,45,56,53,46,52,56,57,51,52,56,44,51,50,46,52,57,54,57,51,55,93,44,91,45,56,53,46,52,51,52,48,52,53,44,51,50,46,52,48,57,56,52,93,44,91,45,56,53,46,51,51,51,56,52,51,44,51,50,46,52,54,56,54,51,57,93,44,91,45,56,53,46,48,53,57,50,57,52,44,51,50,46,52,55,50,57,48,57,93,44,91,45,56,53,46,48,48,49,48,50,44,51,50,46,53,49,48,49,53,55,93,44,91,45,56,53,46,48,56,48,55,56,52,44,51,50,46,54,48,56,48,55,50,93,44,91,45,56,53,46,49,51,53,48,51,56,44,51,50,46,55,52,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,54,55,34,44,34,78,65,77,69,34,58,34,80,97,114,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,56,48,50,44,34,98,101,100,115,34,58,49,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,53,54,48,57,52,44,51,51,46,48,48,51,51,51,50,93,44,91,45,57,56,46,48,54,54,56,51,54,44,51,50,46,53,53,56,56,50,50,93,44,91,45,57,55,46,54,49,55,48,54,54,44,51,50,46,53,53,53,52,56,52,93,44,91,45,57,55,46,53,53,48,53,56,50,44,51,50,46,53,53,53,51,57,49,93,44,91,45,57,55,46,53,52,52,49,56,49,44,51,50,46,57,57,52,49,55,55,93,44,91,45,57,55,46,57,50,49,54,52,50,44,51,51,46,48,48,49,50,56,52,93,44,91,45,57,56,46,48,53,54,48,57,52,44,51,51,46,48,48,51,51,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,68,105,99,107,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,55,48,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,51,52,53,53,54,44,52,54,46,50,56,50,54,53,55,93,44,91,45,57,57,46,48,48,51,49,49,56,44,52,54,46,50,56,50,56,57,56,93,44,91,45,57,57,46,48,48,53,55,53,56,44,52,53,46,57,51,57,55,51,49,93,44,91,45,57,56,46,55,50,52,51,55,53,44,52,53,46,57,51,56,55,51,49,93,44,91,45,57,56,46,48,48,56,49,48,50,44,52,53,46,57,51,53,56,57,54,93,44,91,45,57,56,46,48,48,54,55,49,53,44,52,54,46,50,56,50,54,50,54,93,44,91,45,57,56,46,48,51,52,53,53,54,44,52,54,46,50,56,50,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,97,114,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,51,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,54,55,48,54,54,44,52,55,46,50,52,48,52,48,52,93,44,91,45,57,56,46,52,51,57,55,51,52,44,52,54,46,57,55,57,54,51,49,93,44,91,45,57,56,46,52,51,57,48,53,54,44,52,54,46,54,51,49,49,50,93,44,91,45,57,56,46,48,51,51,56,54,50,44,52,54,46,54,51,48,55,50,55,93,44,91,45,57,55,46,54,56,50,48,48,54,44,52,54,46,54,50,57,57,50,56,93,44,91,45,57,55,46,54,56,49,53,48,56,44,52,54,46,57,55,56,52,56,49,93,44,91,45,57,55,46,55,48,53,57,51,53,44,52,55,46,50,51,57,57,55,55,93,44,91,45,57,55,46,57,54,49,50,49,49,44,52,55,46,50,52,48,51,50,53,93,44,91,45,57,56,46,52,54,55,48,54,54,44,52,55,46,50,52,48,52,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,83,105,98,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,49,50,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,49,48,52,57,52,44,52,52,46,55,49,55,52,54,52,93,44,91,45,57,52,46,50,53,52,48,55,54,44,52,52,46,55,49,55,56,53,53,93,44,91,45,57,52,46,50,53,52,55,49,57,44,52,52,46,54,51,48,51,49,49,93,44,91,45,57,52,46,52,57,55,56,51,53,44,52,52,46,54,50,57,57,50,49,93,44,91,45,57,52,46,52,57,56,48,55,52,44,52,52,46,55,49,55,49,55,49,93,44,91,45,57,52,46,54,50,57,52,56,57,44,52,52,46,55,49,54,54,54,51,93,44,91,45,57,52,46,54,50,52,50,44,52,52,46,52,53,54,48,51,93,44,91,45,57,51,46,57,50,57,53,53,44,52,52,46,52,53,54,55,49,54,93,44,91,45,57,51,46,57,49,48,52,48,53,44,52,52,46,53,52,51,49,54,51,93,44,91,45,57,51,46,55,54,56,48,51,57,44,52,52,46,54,52,48,51,48,51,93,44,91,45,57,52,46,48,49,48,52,57,52,44,52,52,46,55,49,55,52,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,51,34,44,34,78,65,77,69,34,58,34,85,112,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,49,54,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,57,56,54,54,53,44,51,50,46,57,57,57,54,55,49,93,44,91,45,56,52,46,53,50,55,48,50,44,51,50,46,57,55,48,53,52,56,93,44,91,45,56,52,46,53,48,54,56,56,56,44,51,50,46,56,56,49,55,56,56,93,44,91,45,56,52,46,50,56,54,50,52,54,44,51,50,46,55,52,55,54,50,54,93,44,91,45,56,52,46,50,48,50,54,50,56,44,51,50,46,54,57,48,48,49,56,93,44,91,45,56,52,46,49,50,52,50,55,53,44,51,50,46,56,52,57,53,54,50,93,44,91,45,56,52,46,49,50,51,51,52,44,51,50,46,57,51,50,49,56,52,93,44,91,45,56,52,46,50,55,48,49,52,44,51,50,46,57,57,49,48,49,49,93,44,91,45,56,52,46,50,57,56,54,54,53,44,51,50,46,57,57,57,54,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,83,111,110,111,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,49,51,49,55,44,34,98,101,100,115,34,58,56,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,49,51,52,53,50,51,44,51,56,46,50,57,54,50,54,51,93,44,91,45,49,50,50,46,57,48,49,55,50,54,44,51,56,46,51,49,54,57,52,51,93,44,91,45,49,50,50,46,55,51,57,57,44,51,56,46,50,48,55,48,49,56,93,44,91,45,49,50,50,46,53,55,56,50,48,49,44,51,56,46,49,56,51,53,56,51,93,44,91,45,49,50,50,46,53,48,50,56,50,44,51,56,46,49,49,51,48,48,50,93,44,91,45,49,50,50,46,51,52,55,52,53,52,44,51,56,46,48,55,51,50,54,93,44,91,45,49,50,50,46,52,48,54,55,56,54,44,51,56,46,49,53,53,54,51,50,93,44,91,45,49,50,50,46,51,53,57,57,50,52,44,51,56,46,50,51,48,53,48,49,93,44,91,45,49,50,50,46,53,52,51,56,57,51,44,51,56,46,53,49,57,57,54,54,93,44,91,45,49,50,50,46,54,52,54,50,54,56,44,51,56,46,53,57,57,49,50,93,44,91,45,49,50,50,46,54,50,55,51,57,54,44,51,56,46,54,54,55,53,48,54,93,44,91,45,49,50,50,46,56,50,49,53,57,50,44,51,56,46,56,53,48,49,52,93,44,91,45,49,50,51,46,48,56,48,57,57,55,44,51,56,46,56,53,50,52,51,56,93,44,91,45,49,50,51,46,49,51,54,50,53,51,44,51,56,46,56,48,57,49,51,54,93,44,91,45,49,50,51,46,51,54,56,51,57,52,44,51,56,46,56,48,54,54,52,93,44,91,45,49,50,51,46,54,51,50,52,57,55,44,51,56,46,55,53,56,49,49,57,93,44,91,45,49,50,51,46,53,49,48,53,56,44,51,56,46,54,56,48,56,57,93,44,91,45,49,50,51,46,51,54,48,57,50,57,44,51,56,46,53,49,48,50,48,50,93,44,91,45,49,50,51,46,50,50,48,50,50,44,51,56,46,52,52,49,57,53,52,93,44,91,45,49,50,51,46,49,51,52,53,50,51,44,51,56,46,50,57,54,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,104,105,112,112,101,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,51,52,44,34,98,101,100,115,34,58,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,51,54,56,54,55,44,52,53,46,55,55,51,57,52,52,93,44,91,45,56,51,46,52,51,51,53,53,56,44,52,53,46,57,57,56,56,57,53,93,44,91,45,56,51,46,53,55,49,52,54,55,44,52,54,46,49,48,53,57,57,56,93,44,91,45,56,51,46,56,50,54,50,52,51,44,52,54,46,49,49,57,50,56,56,93,44,91,45,56,51,46,57,53,53,52,50,52,44,52,54,46,48,53,55,49,56,56,93,44,91,45,56,52,46,49,48,56,48,56,57,44,52,54,46,50,52,49,50,51,56,93,44,91,45,56,52,46,49,52,54,49,55,50,44,52,54,46,52,49,56,53,50,93,44,91,45,56,52,46,49,49,49,50,50,53,44,52,54,46,53,48,52,49,49,57,93,44,91,45,56,52,46,52,50,48,50,55,52,44,52,54,46,53,48,49,48,55,55,93,44,91,45,56,52,46,53,53,54,57,55,54,44,52,54,46,52,54,48,54,53,93,44,91,45,56,52,46,55,54,50,57,53,55,44,52,54,46,54,51,52,51,50,52,93,44,91,45,56,52,46,56,53,57,51,51,53,44,52,54,46,56,56,56,56,52,51,93,44,91,45,56,53,46,50,51,52,51,51,44,52,55,46,48,52,55,54,49,93,44,91,45,56,53,46,50,51,55,56,51,57,44,52,54,46,50,52,53,52,51,93,44,91,45,56,53,46,49,49,50,53,49,51,44,52,54,46,49,53,56,50,54,51,93,44,91,45,56,52,46,51,54,51,53,48,51,44,52,54,46,49,53,55,57,56,52,93,44,91,45,56,52,46,51,54,51,48,57,44,52,54,46,48,55,49,53,55,52,93,44,91,45,56,52,46,50,51,57,51,51,50,44,52,53,46,57,56,52,57,49,52,93,44,91,45,56,52,46,49,49,52,49,56,54,44,52,53,46,57,56,53,49,53,50,93,44,91,45,56,52,46,49,50,51,48,57,56,44,52,53,46,55,55,55,54,54,56,93,44,91,45,56,51,46,54,51,54,56,54,55,44,52,53,46,55,55,51,57,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,111,110,110,101,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,51,57,55,44,34,98,101,100,115,34,58,51,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,53,49,57,56,54,49,44,52,51,46,54,50,54,54,50,51,93,44,91,45,49,49,50,46,53,50,48,48,50,52,44,52,51,46,52,50,53,49,55,93,44,91,45,49,49,50,46,49,48,51,50,57,56,44,52,51,46,52,50,53,48,53,55,93,44,91,45,49,49,50,46,48,52,51,56,50,49,44,52,51,46,51,54,54,55,48,56,93,44,91,45,49,49,49,46,56,50,50,52,55,53,44,52,51,46,51,54,54,48,51,53,93,44,91,45,49,49,49,46,56,50,50,52,57,52,44,52,51,46,50,56,50,50,56,54,93,44,91,45,49,49,49,46,53,56,56,48,52,57,44,52,51,46,50,56,49,56,52,49,93,44,91,45,49,49,49,46,53,56,57,52,56,57,44,52,51,46,48,50,48,48,53,50,93,44,91,45,49,49,49,46,48,52,52,48,55,50,44,52,51,46,48,49,57,52,48,55,93,44,91,45,49,49,49,46,48,52,52,56,57,51,44,52,51,46,51,49,53,55,49,57,93,44,91,45,49,49,49,46,48,52,53,52,55,51,44,52,51,46,53,48,49,48,53,49,93,44,91,45,49,49,49,46,50,48,55,53,54,49,44,52,51,46,53,52,51,56,53,55,93,44,91,45,49,49,49,46,50,52,51,56,51,57,44,52,51,46,54,50,49,56,53,51,93,44,91,45,49,49,49,46,51,57,57,55,54,53,44,52,51,46,54,50,49,57,55,54,93,44,91,45,49,49,49,46,54,50,54,48,52,51,44,52,51,46,54,50,54,55,53,54,93,44,91,45,49,49,50,46,53,49,57,56,54,49,44,52,51,46,54,50,54,54,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,97,114,114,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,56,56,55,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,49,55,54,56,50,44,51,52,46,49,50,55,52,57,51,93,44,91,45,56,51,46,56,54,56,57,51,49,44,51,52,46,48,48,52,55,56,54,93,44,91,45,56,51,46,55,57,57,49,48,52,44,51,51,46,57,50,57,56,52,52,93,44,91,45,56,51,46,54,52,55,48,51,49,44,51,51,46,57,48,54,49,57,56,93,44,91,45,56,51,46,53,51,55,51,56,53,44,51,51,46,57,54,53,57,49,50,93,44,91,45,56,51,46,53,54,51,50,49,53,44,51,52,46,48,51,49,55,53,55,93,44,91,45,56,51,46,55,53,49,51,56,49,44,51,52,46,48,54,52,50,48,49,93,44,91,45,56,51,46,56,49,55,54,56,50,44,51,52,46,49,50,55,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,76,111,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,54,57,48,53,50,44,51,49,46,55,56,57,51,50,52,93,44,91,45,56,49,46,56,50,51,57,50,49,44,51,49,46,54,53,49,56,48,57,93,44,91,45,56,49,46,54,54,51,50,48,54,44,51,49,46,53,51,56,54,54,55,93,44,91,45,56,49,46,53,54,54,48,48,57,44,51,49,46,53,55,54,52,54,55,93,44,91,45,56,49,46,52,57,49,55,57,56,44,51,49,46,54,57,57,53,55,53,93,44,91,45,56,49,46,54,52,49,55,54,49,44,51,49,46,55,54,53,52,53,49,93,44,91,45,56,49,46,55,54,53,51,53,55,44,51,49,46,56,55,52,53,52,93,44,91,45,56,49,46,55,53,48,50,53,55,44,51,49,46,57,55,51,50,48,55,93,44,91,45,56,49,46,56,50,52,52,48,53,44,51,50,46,48,49,52,56,56,50,93,44,91,45,56,49,46,57,54,57,48,53,50,44,51,49,46,55,56,57,51,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,49,34,44,34,78,65,77,69,34,58,34,75,105,110,110,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,57,52,54,50,55,44,50,57,46,50,52,49,54,49,50,93,44,91,45,49,48,48,46,54,54,55,53,52,56,44,50,57,46,48,56,52,50,57,50,93,44,91,45,49,48,48,46,49,49,49,52,48,54,44,50,57,46,48,56,54,51,49,56,93,44,91,45,49,48,48,46,49,49,50,48,57,56,44,50,57,46,54,50,51,50,54,51,93,44,91,45,49,48,48,46,54,57,57,57,51,50,44,50,57,46,54,50,51,56,57,55,93,44,91,45,49,48,48,46,54,57,57,49,52,49,44,50,57,46,52,49,57,55,52,55,93,44,91,45,49,48,48,46,55,52,53,51,48,56,44,50,57,46,50,54,52,56,57,56,93,44,91,45,49,48,48,46,55,57,52,54,50,55,44,50,57,46,50,52,49,54,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,79,116,116,97,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,54,54,44,34,98,101,100,115,34,58,49,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,48,55,54,50,44,51,54,46,57,57,57,53,49,52,93,44,91,45,57,52,46,57,57,57,52,48,51,44,51,54,46,54,55,48,54,51,49,93,44,91,45,57,52,46,54,49,56,48,55,55,44,51,54,46,54,54,55,57,50,49,93,44,91,45,57,52,46,54,49,56,51,48,55,44,51,54,46,55,54,54,53,54,93,44,91,45,57,52,46,54,49,55,57,54,52,44,51,54,46,57,57,56,57,48,53,93,44,91,45,57,53,46,48,48,55,54,50,44,51,54,46,57,57,57,53,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,108,101,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,50,49,54,44,34,98,101,100,115,34,58,51,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,55,49,48,50,52,56,44,52,49,46,50,48,49,56,53,57,93,44,91,45,55,56,46,56,48,52,53,51,50,44,52,49,46,49,51,50,49,56,54,93,44,91,45,55,56,46,56,48,53,49,54,55,44,52,48,46,57,48,53,57,56,93,44,91,45,55,56,46,56,48,49,54,57,55,44,52,48,46,55,50,52,53,51,57,93,44,91,45,55,56,46,51,53,48,52,51,44,52,48,46,55,50,52,56,50,55,93,44,91,45,55,56,46,51,53,57,57,49,50,44,52,48,46,55,51,50,53,57,50,93,44,91,45,55,56,46,50,49,57,56,49,51,44,52,48,46,57,49,50,55,52,49,93,44,91,45,55,56,46,48,55,55,55,52,44,52,48,46,57,53,56,56,50,52,93,44,91,45,55,56,46,48,51,56,50,48,51,44,52,49,46,49,53,51,54,51,51,93,44,91,45,55,56,46,48,57,51,51,56,49,44,52,49,46,50,49,54,57,51,49,93,44,91,45,55,56,46,50,51,54,56,49,55,44,52,49,46,50,51,48,52,55,53,93,44,91,45,55,56,46,54,52,54,54,54,54,44,52,49,46,50,53,51,55,55,56,93,44,91,45,55,56,46,55,49,48,50,52,56,44,52,49,46,50,48,49,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,56,57,54,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,44,91,45,56,52,46,56,51,55,48,56,53,44,52,50,46,55,55,48,52,55,57,93,44,91,45,56,52,46,54,48,50,55,54,49,44,52,50,46,55,54,57,56,56,93,44,91,45,56,52,46,51,54,51,54,53,57,44,52,50,46,55,55,53,55,55,56,93,44,91,45,56,52,46,51,54,55,55,54,44,52,51,46,49,49,55,57,52,50,93,44,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,73,115,97,98,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,52,50,54,57,56,57,44,49,56,46,48,52,50,54,50,55,93,44,91,45,54,54,46,52,50,52,53,55,53,44,49,55,46,56,56,49,57,51,56,93,44,91,45,54,54,46,51,50,51,50,50,44,49,55,46,56,55,55,54,54,55,93,44,91,45,54,54,46,51,51,49,50,52,52,44,49,56,46,48,49,53,56,57,49,93,44,91,45,54,54,46,52,50,54,57,56,57,44,49,56,46,48,52,50,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,48,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,48,49,54,54,49,44,51,57,46,53,50,51,51,49,54,93,44,91,45,56,57,46,54,57,56,53,53,53,44,51,56,46,57,57,56,57,55,57,93,44,91,45,56,57,46,54,51,57,50,54,53,44,51,56,46,57,57,57,49,50,57,93,44,91,45,56,57,46,53,56,54,51,52,52,44,51,57,46,48,50,56,51,50,57,93,44,91,45,56,57,46,50,53,48,51,48,57,44,51,57,46,48,50,56,49,56,53,93,44,91,45,56,57,46,50,53,48,53,49,51,44,51,57,46,50,49,55,53,49,50,93,44,91,45,56,57,46,49,51,57,52,54,52,44,51,57,46,50,49,55,55,55,51,93,44,91,45,56,57,46,49,51,57,56,48,55,44,51,57,46,51,52,56,56,56,56,93,44,91,45,56,57,46,53,51,48,56,51,54,44,51,57,46,51,52,56,56,54,52,93,44,91,45,56,57,46,53,51,51,54,53,53,44,51,57,46,53,50,52,53,57,50,93,44,91,45,56,57,46,55,48,49,54,54,49,44,51,57,46,53,50,51,51,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,99,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,49,56,48,44,34,98,101,100,115,34,58,50,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,56,48,53,48,56,44,51,52,46,57,57,53,54,49,93,44,91,45,56,56,46,55,56,54,54,49,50,44,51,52,46,57,57,53,50,53,50,93,44,91,45,56,56,46,56,50,51,48,53,49,44,51,52,46,57,57,53,50,50,49,93,44,91,45,56,56,46,56,50,51,52,55,51,44,51,52,46,56,53,56,54,50,57,93,44,91,45,56,56,46,55,49,56,53,48,56,44,51,52,46,55,53,54,55,56,49,93,44,91,45,56,56,46,51,54,53,52,55,50,44,51,52,46,55,53,53,54,48,52,93,44,91,45,56,56,46,51,54,51,53,51,49,44,51,52,46,57,57,53,52,55,53,93,44,91,45,56,56,46,51,56,48,53,48,56,44,51,52,46,57,57,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,52,53,57,44,34,98,101,100,115,34,58,50,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,52,54,49,51,51,44,51,52,46,52,57,53,54,51,51,93,44,91,45,56,57,46,52,55,54,54,52,50,44,51,52,46,53,53,52,49,54,56,93,44,91,45,56,57,46,54,54,56,52,52,56,44,51,52,46,53,53,52,51,54,55,93,44,91,45,56,57,46,55,50,49,51,52,49,44,51,52,46,53,53,52,50,55,52,93,44,91,45,56,57,46,55,50,49,48,53,44,51,52,46,49,57,50,53,52,53,93,44,91,45,56,57,46,53,48,57,55,52,56,44,51,52,46,49,54,50,48,56,50,93,44,91,45,56,57,46,50,52,53,52,56,53,44,51,52,46,49,54,49,49,56,54,93,44,91,45,56,57,46,50,52,54,51,51,57,44,51,52,46,51,55,57,51,52,52,93,44,91,45,56,57,46,50,52,54,49,51,51,44,51,52,46,52,57,53,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,55,51,53,50,57,44,51,49,46,55,48,56,57,50,50,93,44,91,45,57,50,46,57,48,56,51,49,51,44,51,49,46,54,50,53,49,54,57,93,44,91,45,57,50,46,56,48,54,50,48,54,44,51,49,46,53,57,56,53,52,56,93,44,91,45,57,50,46,55,49,56,57,56,51,44,51,49,46,53,49,55,53,57,52,93,44,91,45,57,50,46,54,51,49,57,52,52,44,51,49,46,51,57,48,52,55,56,93,44,91,45,57,50,46,49,57,54,49,51,49,44,51,49,46,52,55,55,56,55,55,93,44,91,45,57,50,46,50,56,50,48,56,49,44,51,49,46,53,48,51,52,56,54,93,44,91,45,57,50,46,51,55,50,52,55,54,44,51,49,46,55,48,49,53,49,57,93,44,91,45,57,50,46,51,54,50,54,48,56,44,51,49,46,55,57,54,54,51,51,93,44,91,45,57,50,46,54,49,57,50,50,52,44,51,49,46,55,57,55,49,52,57,93,44,91,45,57,50,46,54,49,57,57,55,54,44,51,49,46,55,48,57,53,55,50,93,44,91,45,57,50,46,57,55,51,53,50,57,44,51,49,46,55,48,56,57,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,116,99,104,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,48,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,48,57,57,55,52,44,52,48,46,53,50,51,55,57,56,93,44,91,45,57,53,46,53,53,52,56,49,55,44,52,48,46,50,54,52,52,54,93,44,91,45,57,53,46,49,56,48,54,49,52,44,52,48,46,50,54,49,55,48,54,93,44,91,45,57,53,46,50,48,50,50,54,53,44,52,48,46,53,55,56,52,56,56,93,44,91,45,57,53,46,51,55,51,57,50,51,44,52,48,46,53,56,48,53,48,51,93,44,91,45,57,53,46,55,54,53,54,52,53,44,52,48,46,53,56,53,50,48,56,93,44,91,45,57,53,46,55,48,57,57,55,52,44,52,48,46,53,50,51,55,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,53,49,50,44,34,98,101,100,115,34,58,53,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,49,55,52,55,51,44,51,57,46,56,49,51,54,54,54,93,44,91,45,56,57,46,49,52,49,57,54,55,44,51,57,46,56,48,49,50,55,51,93,44,91,45,56,57,46,49,51,57,49,50,53,44,51,57,46,54,53,53,49,51,49,93,44,91,45,56,57,46,48,50,53,54,56,44,51,57,46,54,53,52,49,56,51,93,44,91,45,56,56,46,56,49,48,53,55,53,44,51,57,46,54,53,51,50,50,50,93,44,91,45,56,56,46,55,52,53,54,55,49,44,51,57,46,55,57,50,49,52,54,93,44,91,45,56,56,46,55,52,53,49,54,52,44,52,48,46,48,53,53,49,57,49,93,44,91,45,56,57,46,49,52,52,55,54,52,44,52,48,46,48,52,56,56,53,51,93,44,91,45,56,57,46,50,49,55,56,52,54,44,51,57,46,57,49,54,57,57,93,44,91,45,56,57,46,50,49,55,52,55,51,44,51,57,46,56,49,51,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,74,111,115,101,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,56,57,55,44,34,98,101,100,115,34,58,49,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,54,50,57,52,51,44,52,50,46,48,54,57,51,50,55,93,44,91,45,56,53,46,55,54,48,49,56,54,44,52,49,46,55,57,56,56,49,52,93,44,91,45,56,53,46,55,57,49,51,51,53,44,52,49,46,55,53,57,48,55,56,93,44,91,45,56,53,46,54,53,57,55,53,44,52,49,46,55,53,57,48,54,56,93,44,91,45,56,53,46,50,57,50,49,55,57,44,52,49,46,55,53,57,56,56,57,93,44,91,45,56,53,46,50,57,51,54,50,54,44,52,50,46,48,55,49,53,53,51,93,44,91,45,56,53,46,55,54,50,57,52,51,44,52,50,46,48,54,57,51,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,49,50,55,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,50,57,54,51,50,44,51,56,46,49,50,52,55,54,55,93,44,91,45,56,57,46,49,55,55,53,57,55,44,51,55,46,57,53,48,51,49,49,93,44,91,45,56,57,46,49,53,49,49,55,54,44,51,55,46,56,54,49,57,57,57,93,44,91,45,56,56,46,55,48,54,55,53,57,44,51,55,46,56,54,51,52,53,55,93,44,91,45,56,56,46,55,48,54,54,50,50,44,51,55,46,57,48,54,55,57,55,93,44,91,45,56,56,46,55,48,52,54,48,54,44,51,56,46,49,50,53,49,57,53,93,44,91,45,56,57,46,49,50,57,54,51,50,44,51,56,46,49,50,52,55,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,49,44,34,98,101,100,115,34,58,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,57,48,57,49,50,44,52,55,46,52,53,48,54,57,50,93,44,91,45,49,48,55,46,57,53,54,54,50,52,44,52,55,46,51,54,48,57,52,51,93,44,91,45,49,48,55,46,57,53,52,51,52,55,44,52,55,46,49,50,48,54,53,50,93,44,91,45,49,48,55,46,56,56,52,55,49,56,44,52,54,46,57,56,52,50,52,57,93,44,91,45,49,48,55,46,56,57,50,50,51,51,44,52,54,46,56,53,49,50,49,53,93,44,91,45,49,48,54,46,55,50,48,49,53,55,44,52,54,46,56,53,57,54,48,51,93,44,91,45,49,48,54,46,48,56,54,52,54,51,44,52,54,46,56,52,53,56,56,49,93,44,91,45,49,48,54,46,48,56,54,53,56,53,44,52,54,46,56,54,48,50,57,93,44,91,45,49,48,54,46,48,56,54,55,55,55,44,52,55,46,49,56,48,57,51,56,93,44,91,45,49,48,54,46,49,55,48,52,50,44,52,55,46,49,56,48,56,50,54,93,44,91,45,49,48,54,46,49,55,48,54,55,53,44,52,55,46,51,53,52,52,57,53,93,44,91,45,49,48,54,46,50,57,56,49,53,56,44,52,55,46,51,53,52,50,57,56,93,44,91,45,49,48,54,46,50,54,49,49,50,49,44,52,55,46,53,50,57,48,53,50,93,44,91,45,49,48,54,46,50,54,48,57,51,50,44,52,55,46,56,54,56,52,51,49,93,44,91,45,49,48,54,46,52,49,56,54,50,44,52,55,46,57,53,55,52,53,55,93,44,91,45,49,48,54,46,53,55,49,48,48,51,44,52,55,46,56,49,50,57,51,51,93,44,91,45,49,48,54,46,56,54,49,54,54,56,44,52,55,46,55,51,55,51,55,50,93,44,91,45,49,48,54,46,56,56,49,49,54,50,44,52,55,46,54,55,56,49,50,56,93,44,91,45,49,48,55,46,50,52,57,44,52,55,46,54,54,49,53,54,54,93,44,91,45,49,48,55,46,52,49,52,56,56,54,44,52,55,46,54,57,49,55,51,52,93,44,91,45,49,48,55,46,53,57,52,50,53,44,52,55,46,54,52,57,55,51,49,93,44,91,45,49,48,55,46,56,54,52,57,50,50,44,52,55,46,53,49,51,55,52,93,44,91,45,49,48,55,46,57,48,57,49,50,44,52,55,46,52,53,48,54,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,56,51,44,34,98,101,100,115,34,58,49,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,50,52,51,56,55,44,52,48,46,54,56,57,55,55,50,93,44,91,45,57,56,46,55,50,51,57,52,56,44,52,48,46,51,53,48,51,57,49,93,44,91,45,57,56,46,50,55,56,48,57,44,52,48,46,51,53,48,51,52,55,93,44,91,45,57,56,46,50,55,56,49,48,51,44,52,48,46,54,57,56,50,57,49,93,44,91,45,57,56,46,50,56,50,56,53,49,44,52,48,46,54,57,56,50,56,52,93,44,91,45,57,56,46,55,50,49,52,51,44,52,48,46,54,57,56,57,48,51,93,44,91,45,57,56,46,55,50,52,51,56,55,44,52,48,46,54,56,57,55,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,79,108,109,115,116,101,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,48,54,53,44,34,98,101,100,115,34,58,50,49,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,48,56,55,49,44,52,52,46,49,57,52,57,49,54,93,44,91,45,57,50,46,54,55,56,55,49,55,44,52,52,46,49,57,53,53,49,54,93,44,91,45,57,50,46,54,56,57,51,57,49,44,52,51,46,56,52,56,53,55,93,44,91,45,57,50,46,52,52,56,57,54,53,44,52,51,46,56,51,52,49,48,53,93,44,91,45,57,50,46,48,55,57,50,57,50,44,52,51,46,56,52,55,48,56,93,44,91,45,57,50,46,48,55,57,52,57,49,44,52,52,46,49,48,54,57,56,56,93,44,91,45,57,50,46,51,49,56,57,55,49,44,52,52,46,49,48,55,55,51,52,93,44,91,45,57,50,46,51,49,56,57,56,54,44,52,52,46,49,57,52,48,53,55,93,44,91,45,57,50,46,53,53,48,56,55,49,44,52,52,46,49,57,52,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,51,48,54,54,44,34,98,101,100,115,34,58,49,51,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,51,55,49,55,51,56,44,52,48,46,55,51,57,54,52,93,44,91,45,55,52,46,52,54,49,48,51,53,44,52,48,46,54,55,51,53,48,52,93,44,91,45,55,52,46,52,54,51,50,57,49,44,52,48,46,53,57,57,49,56,55,93,44,91,45,55,52,46,50,48,51,54,56,56,44,52,48,46,53,57,50,54,57,49,93,44,91,45,55,52,46,49,54,49,52,50,56,44,52,48,46,54,52,52,49,52,56,93,44,91,45,55,52,46,49,51,54,55,48,51,44,52,48,46,54,55,52,52,52,52,93,44,91,45,55,52,46,51,55,49,55,51,56,44,52,48,46,55,51,57,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,84,114,117,106,105,108,108,111,32,65,108,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,55,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,57,57,53,53,54,44,49,56,46,51,56,48,48,54,53,93,44,91,45,54,54,46,48,52,49,53,51,53,44,49,56,46,51,49,50,51,52,52,93,44,91,45,54,54,46,48,50,49,55,52,55,44,49,56,46,51,48,53,48,51,52,93,44,91,45,54,53,46,57,52,50,52,50,57,44,49,56,46,50,57,51,52,54,57,93,44,91,45,54,53,46,57,57,57,53,53,54,44,49,56,46,51,56,48,48,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,111,98,105,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,52,54,53,57,44,34,98,101,100,115,34,58,49,57,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,50,53,52,51,50,44,51,48,46,57,57,56,51,50,51,93,44,91,45,56,56,46,52,49,50,54,49,50,44,51,48,46,55,51,53,53,57,93,44,91,45,56,56,46,51,56,52,52,51,49,44,51,48,46,49,53,56,53,52,51,93,44,91,45,56,56,46,49,54,50,48,50,50,44,51,48,46,50,48,48,48,57,51,93,44,91,45,56,56,46,48,51,55,51,48,57,44,51,48,46,49,52,54,53,54,49,93,44,91,45,56,55,46,57,56,55,56,51,57,44,51,48,46,54,51,55,49,52,57,93,44,91,45,56,56,46,48,50,54,51,49,57,44,51,48,46,55,53,51,51,53,56,93,44,91,45,56,55,46,57,52,49,53,54,49,44,51,49,46,48,54,49,51,52,50,93,44,91,45,56,55,46,57,55,50,56,54,57,44,51,49,46,49,54,50,54,57,52,93,44,91,45,56,56,46,48,50,50,54,52,57,44,51,49,46,49,52,52,50,54,55,93,44,91,45,56,56,46,51,50,57,55,56,50,44,51,49,46,49,52,51,56,50,49,93,44,91,45,56,56,46,52,51,50,48,48,55,44,51,49,46,49,49,52,50,57,56,93,44,91,45,56,56,46,52,50,53,52,51,50,44,51,48,46,57,57,56,51,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,99,67,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,48,56,53,49,55,44,52,51,46,56,52,57,48,53,57,93,44,91,45,57,55,46,54,48,55,48,49,50,44,52,51,46,52,57,57,56,50,54,93,44,91,45,57,55,46,52,48,49,52,53,44,52,51,46,52,57,57,55,56,51,93,44,91,45,57,55,46,49,50,57,52,55,56,44,52,51,46,52,57,57,54,56,51,93,44,91,45,57,55,46,49,50,57,48,56,57,44,52,51,46,56,52,55,57,55,51,93,44,91,45,57,55,46,51,54,57,52,54,51,44,52,51,46,56,52,56,53,50,54,93,44,91,45,57,55,46,54,48,56,53,49,55,44,52,51,46,56,52,57,48,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,53,56,53,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,53,49,55,56,53,44,51,51,46,57,49,57,57,51,93,44,91,45,56,55,46,57,52,54,53,49,57,44,51,51,46,53,50,52,48,54,53,93,44,91,45,56,55,46,56,52,48,54,56,51,44,51,51,46,53,50,52,56,51,57,93,44,91,45,56,55,46,54,54,54,54,54,49,44,51,51,46,53,50,49,54,54,55,93,44,91,45,56,55,46,54,51,49,55,49,56,44,51,51,46,54,48,57,56,51,51,93,44,91,45,56,55,46,52,50,51,55,48,49,44,51,51,46,54,48,50,48,57,54,93,44,91,45,56,55,46,52,50,51,56,52,51,44,51,51,46,54,56,57,49,49,50,93,44,91,45,56,55,46,53,50,56,51,51,56,44,51,51,46,54,57,50,48,52,57,93,44,91,45,56,55,46,53,51,49,54,48,50,44,51,51,46,56,54,55,54,49,56,93,44,91,45,56,55,46,54,51,53,57,51,50,44,51,51,46,57,49,53,50,53,49,93,44,91,45,56,55,46,57,53,49,55,56,53,44,51,51,46,57,49,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,97,109,98,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,50,54,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,57,51,49,55,55,44,51,51,46,49,48,55,51,52,93,44,91,45,56,53,46,53,57,51,49,53,49,44,51,50,46,55,50,56,53,51,93,44,91,45,56,53,46,49,51,53,48,51,56,44,51,50,46,55,52,54,53,51,93,44,91,45,56,53,46,49,56,52,49,51,49,44,51,50,46,56,55,48,53,50,53,93,44,91,45,56,53,46,50,51,50,51,55,56,44,51,51,46,49,48,56,48,55,55,93,44,91,45,56,53,46,53,57,51,49,55,55,44,51,51,46,49,48,55,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,50,57,54,56,55,53,44,51,54,46,53,52,52,56,53,53,93,44,91,45,55,55,46,55,54,55,49,53,44,51,54,46,53,52,53,51,55,52,93,44,91,45,55,55,46,56,57,57,55,55,51,44,51,54,46,53,52,52,53,57,54,93,44,91,45,55,55,46,56,57,57,53,50,52,44,51,54,46,53,48,52,50,53,57,93,44,91,45,55,55,46,54,52,57,56,51,53,44,51,54,46,52,56,49,52,52,51,93,44,91,45,55,55,46,52,52,53,56,56,54,44,51,54,46,51,50,52,56,56,56,93,44,91,45,55,55,46,51,56,54,53,57,53,44,51,54,46,50,49,51,53,52,56,93,44,91,45,55,55,46,50,57,49,53,49,57,44,51,54,46,49,54,56,51,52,50,93,44,91,45,55,55,46,50,48,56,52,54,56,44,51,54,46,50,52,54,53,55,56,93,44,91,45,55,55,46,48,57,51,50,50,52,44,51,54,46,53,49,56,50,49,54,93,44,91,45,55,55,46,49,54,52,51,55,55,44,51,54,46,53,52,54,51,50,57,93,44,91,45,55,55,46,50,57,54,56,55,53,44,51,54,46,53,52,52,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,77,111,102,102,97,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,48,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,56,57,52,52,44,52,48,46,54,54,50,54,48,49,93,44,91,45,49,48,57,46,48,53,48,57,52,57,44,52,48,46,50,50,50,54,52,55,93,44,91,45,49,48,56,46,49,49,51,49,55,57,44,52,48,46,50,50,49,54,55,93,44,91,45,49,48,55,46,52,51,57,51,56,54,44,52,48,46,50,50,51,51,55,57,93,44,91,45,49,48,55,46,52,50,56,56,49,51,44,52,48,46,53,52,50,50,48,55,93,44,91,45,49,48,55,46,51,49,52,49,53,51,44,52,48,46,54,48,48,50,56,49,93,44,91,45,49,48,55,46,51,49,55,55,57,52,44,52,49,46,48,48,50,57,50,93,44,91,45,49,48,55,46,57,49,56,52,50,49,44,52,49,46,48,48,50,48,51,54,93,44,91,45,49,48,57,46,48,53,48,48,50,54,44,52,49,46,48,48,48,54,57,49,93,44,91,45,49,48,57,46,48,52,56,57,52,52,44,52,48,46,54,54,50,54,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,50,51,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,55,51,51,50,44,51,55,46,52,50,49,57,57,54,93,44,91,45,56,53,46,54,57,55,51,50,53,44,51,55,46,51,48,49,56,51,56,93,44,91,45,56,53,46,54,56,54,52,56,50,44,51,55,46,49,56,50,52,50,55,93,44,91,45,56,53,46,53,50,54,56,56,49,44,51,55,46,49,48,57,52,53,93,44,91,45,56,53,46,51,53,50,55,55,49,44,51,55,46,49,57,50,52,51,50,93,44,91,45,56,53,46,53,56,51,52,57,55,44,51,55,46,52,54,57,57,49,55,93,44,91,45,56,53,46,54,53,55,51,51,50,44,51,55,46,52,50,49,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,52,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,57,55,53,55,53,44,51,57,46,52,53,51,50,55,53,93,44,91,45,56,53,46,50,57,54,53,52,44,51,57,46,50,54,56,50,57,49,93,44,91,45,56,53,46,48,54,53,53,55,52,44,51,57,46,51,48,55,50,51,50,93,44,91,45,56,52,46,56,49,57,52,53,44,51,57,46,51,48,53,49,53,51,93,44,91,45,56,52,46,56,49,53,51,53,51,44,51,57,46,53,50,49,57,53,93,44,91,45,56,53,46,48,51,54,48,56,55,44,51,57,46,53,50,54,50,49,51,93,44,91,45,56,53,46,50,57,56,49,49,44,51,57,46,53,50,53,52,55,54,93,44,91,45,56,53,46,50,57,55,53,55,53,44,51,57,46,52,53,51,50,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,101,97,117,102,111,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,50,52,51,44,34,98,101,100,115,34,58,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,55,52,44,51,53,46,55,51,50,56,51,49,93,44,91,45,55,55,46,49,56,57,49,49,53,44,51,53,46,52,49,56,51,54,50,93,44,91,45,55,54,46,56,57,53,57,49,57,44,51,53,46,50,53,51,56,56,57,93,44,91,45,55,54,46,56,52,53,53,48,53,44,51,53,46,50,49,54,48,53,57,93,44,91,45,55,54,46,54,51,50,53,54,49,44,51,53,46,50,51,53,51,50,52,93,44,91,45,55,54,46,54,49,55,52,57,54,44,51,53,46,51,50,56,56,57,51,93,44,91,45,55,54,46,53,50,50,49,51,49,44,51,53,46,51,53,51,54,50,51,93,44,91,45,55,54,46,53,56,53,51,50,44,51,53,46,52,53,53,48,55,53,93,44,91,45,55,54,46,53,56,56,49,57,49,44,51,53,46,54,50,48,54,53,52,93,44,91,45,55,54,46,54,51,55,53,49,51,44,51,53,46,55,48,53,50,49,53,93,44,91,45,55,54,46,56,52,55,50,54,52,44,51,53,46,55,49,57,57,56,50,93,44,91,45,55,54,46,57,56,53,56,52,50,44,51,53,46,54,53,56,56,52,56,93,44,91,45,55,55,46,49,55,52,44,51,53,46,55,51,50,56,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,74,97,121,117,121,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,54,54,54,50,44,49,56,46,50,57,56,53,52,57,93,44,91,45,54,54,46,54,52,57,52,54,55,44,49,56,46,49,53,56,56,53,55,93,44,91,45,54,54,46,53,53,50,55,54,54,44,49,56,46,49,53,50,48,53,55,93,44,91,45,54,54,46,53,52,55,50,50,44,49,56,46,49,53,51,49,51,93,44,91,45,54,54,46,53,52,51,49,51,51,44,49,56,46,49,54,51,48,57,56,93,44,91,45,54,54,46,53,54,54,54,50,44,49,56,46,50,57,56,53,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,117,114,108,101,105,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,55,51,55,44,34,98,101,100,115,34,58,53,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,54,55,51,50,49,44,52,55,46,51,50,55,54,52,54,93,44,91,45,49,48,48,46,55,52,57,51,51,52,44,52,55,46,51,50,55,54,56,53,93,44,91,45,49,48,48,46,55,52,57,51,55,44,52,55,46,49,53,55,50,52,53,93,44,91,45,49,48,48,46,57,54,53,52,52,44,52,55,46,49,53,55,49,51,52,93,44,91,45,49,48,48,46,56,56,50,49,55,50,44,52,55,46,48,49,53,49,49,53,93,44,91,45,49,48,48,46,57,51,53,57,56,51,44,52,54,46,57,56,50,56,52,93,44,91,45,49,48,48,46,55,56,56,55,54,56,44,52,54,46,54,57,49,55,48,49,93,44,91,45,49,48,48,46,54,54,50,48,49,53,44,52,54,46,54,51,52,54,93,44,91,45,49,48,48,46,48,56,49,49,57,56,44,52,54,46,54,51,51,51,57,54,93,44,91,45,49,48,48,46,48,55,53,50,50,57,44,52,54,46,57,56,49,50,56,50,93,44,91,45,49,48,48,46,49,49,52,54,51,55,44,52,54,46,57,56,49,54,54,54,93,44,91,45,49,48,48,46,49,49,51,50,54,49,44,52,55,46,51,50,55,50,54,50,93,44,91,45,49,48,48,46,54,55,51,50,49,44,52,55,46,51,50,55,54,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,82,111,119,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,54,48,53,44,34,98,101,100,115,34,58,50,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,48,55,56,50,54,44,51,53,46,56,53,50,57,50,57,93,44,91,45,56,48,46,55,55,49,53,56,50,44,51,53,46,54,55,50,49,54,51,93,44,91,45,56,48,46,55,51,55,51,55,57,44,51,53,46,53,48,53,56,48,52,93,44,91,45,56,48,46,50,57,53,52,50,49,44,51,53,46,53,48,50,57,50,93,44,91,45,56,48,46,49,56,50,53,53,57,44,51,53,46,53,48,52,49,53,49,93,44,91,45,56,48,46,50,48,57,53,48,57,44,51,53,46,53,56,49,57,53,49,93,44,91,45,56,48,46,52,53,56,56,56,52,44,51,53,46,55,52,51,48,51,49,93,44,91,45,56,48,46,54,51,50,55,50,52,44,51,53,46,56,52,53,56,53,52,93,44,91,45,56,48,46,55,48,55,56,50,54,44,51,53,46,56,53,50,57,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,73,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,49,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,57,49,50,51,54,44,52,54,46,52,49,57,55,48,52,93,44,91,45,56,56,46,57,57,49,48,49,50,44,52,54,46,51,51,50,51,48,56,93,44,91,45,56,56,46,57,57,48,56,54,52,44,52,54,46,48,57,55,51,56,49,93,44,91,45,56,56,46,57,51,50,55,53,55,44,52,54,46,48,55,51,54,54,56,93,44,91,45,56,56,46,54,56,51,51,49,50,44,52,54,46,48,49,52,49,49,51,93,44,91,45,56,56,46,53,48,55,52,56,44,52,54,46,48,49,56,53,49,54,93,44,91,45,56,56,46,49,49,54,56,52,53,44,52,53,46,57,50,49,54,50,55,93,44,91,45,56,56,46,49,49,55,52,48,55,44,52,54,46,50,52,54,54,49,56,93,44,91,45,56,56,46,49,49,54,53,55,49,44,52,54,46,52,49,57,57,53,49,93,44,91,45,56,56,46,54,55,57,51,57,50,44,52,54,46,52,50,48,49,51,57,93,44,91,45,56,56,46,57,57,49,50,51,54,44,52,54,46,52,49,57,55,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,75,97,110,100,105,121,111,104,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,54,53,56,44,34,98,101,100,115,34,58,49,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,50,53,53,50,49,51,44,52,53,46,52,49,50,55,51,57,93,44,91,45,57,53,46,50,52,54,52,56,57,44,52,53,46,49,53,50,52,51,49,93,44,91,45,57,53,46,50,52,56,53,50,44,52,52,46,56,57,49,51,49,93,44,91,45,57,52,46,55,53,56,49,56,57,44,52,52,46,56,57,50,48,57,55,93,44,91,45,57,52,46,55,54,51,48,56,44,52,53,46,51,50,54,49,93,44,91,45,57,52,46,55,54,50,57,51,52,44,52,53,46,52,49,50,56,54,49,93,44,91,45,57,53,46,49,51,49,55,51,44,52,53,46,52,49,50,52,48,50,93,44,91,45,57,53,46,50,53,53,50,49,51,44,52,53,46,52,49,50,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,55,34,44,34,78,65,77,69,34,58,34,87,111,108,102,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,57,53,48,56,44,51,55,46,56,54,49,57,48,54,93,44,91,45,56,51,46,54,51,49,48,54,44,51,55,46,56,50,53,51,55,50,93,44,91,45,56,51,46,55,48,55,57,55,52,44,51,55,46,55,49,54,52,54,51,93,44,91,45,56,51,46,53,50,50,51,48,56,44,51,55,46,54,51,56,53,49,54,93,44,91,45,56,51,46,52,49,56,52,55,52,44,51,55,46,54,57,48,55,50,57,93,44,91,45,56,51,46,50,52,56,54,57,50,44,51,55,46,54,54,57,54,49,54,93,44,91,45,56,51,46,50,54,50,49,55,50,44,51,55,46,55,49,50,54,53,55,93,44,91,45,56,51,46,52,57,53,48,56,44,51,55,46,56,54,49,57,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,54,54,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,50,52,52,54,49,44,51,48,46,48,53,49,52,51,53,93,44,91,45,57,55,46,51,49,53,56,50,51,44,50,57,46,55,56,54,53,52,49,93,44,91,45,57,55,46,51,49,55,56,57,51,44,50,57,46,55,56,52,54,53,56,93,44,91,45,57,55,46,49,52,50,54,52,51,44,50,57,46,54,50,56,49,48,49,93,44,91,45,57,54,46,56,55,52,50,50,50,44,50,57,46,54,51,50,55,48,54,93,44,91,45,57,54,46,53,54,57,56,52,52,44,50,57,46,57,54,49,53,49,54,93,44,91,45,57,54,46,54,50,49,57,56,44,51,48,46,48,52,52,50,56,51,93,44,91,45,57,54,46,54,56,51,51,57,52,44,51,48,46,49,53,49,48,51,56,93,44,91,45,57,54,46,55,57,52,53,53,50,44,51,48,46,49,54,48,53,52,53,93,44,91,45,57,55,46,48,50,52,52,54,49,44,51,48,46,48,53,49,52,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,51,52,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,53,57,52,51,44,52,52,46,53,55,49,48,50,53,93,44,91,45,49,48,52,46,48,53,52,52,56,55,44,52,52,46,49,56,48,51,56,49,93,44,91,45,49,48,52,46,48,53,52,53,56,56,44,52,52,46,49,52,49,48,56,49,93,44,91,45,49,48,51,46,52,53,50,52,53,51,44,52,52,46,49,52,48,55,55,50,93,44,91,45,49,48,51,46,52,53,51,48,49,54,44,52,52,46,50,53,54,54,48,57,93,44,91,45,49,48,51,46,53,55,52,51,57,54,44,52,52,46,50,53,54,48,55,55,93,44,91,45,49,48,51,46,53,54,55,54,53,51,44,52,52,46,54,48,52,48,57,56,93,44,91,45,49,48,51,46,56,50,48,54,51,57,44,52,52,46,54,48,52,55,55,55,93,44,91,45,49,48,52,46,48,53,53,57,52,51,44,52,52,46,53,55,49,48,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,57,52,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,56,46,48,53,52,57,56,53,44,52,53,46,50,53,50,53,55,55,93,44,91,45,54,55,46,57,56,49,56,53,49,44,52,52,46,57,53,53,56,56,53,93,44,91,45,54,56,46,49,48,53,48,49,55,44,52,52,46,57,51,57,48,56,56,93,44,91,45,54,55,46,57,56,49,57,56,56,44,52,52,46,52,55,51,55,53,54,93,44,91,45,54,55,46,57,50,53,49,55,56,44,52,52,46,51,52,49,52,51,52,93,44,91,45,54,55,46,56,48,53,53,54,57,44,52,52,46,51,57,49,48,49,53,93,44,91,45,54,55,46,53,54,55,53,56,53,44,52,52,46,51,57,55,50,48,57,93,44,91,45,54,55,46,52,51,57,54,57,53,44,52,52,46,53,48,53,51,56,52,93,44,91,45,54,55,46,50,52,56,48,53,50,44,52,52,46,53,53,52,56,57,56,93,44,91,45,54,54,46,56,56,53,52,52,52,44,52,52,46,55,57,52,50,48,56,93,44,91,45,54,54,46,57,54,53,51,49,55,44,52,52,46,56,50,56,57,48,53,93,44,91,45,54,55,46,49,53,56,56,55,49,44,52,53,46,49,54,50,48,51,53,93,44,91,45,54,55,46,51,52,48,57,50,52,44,52,53,46,49,50,53,48,57,50,93,44,91,45,54,55,46,52,55,54,51,55,50,44,52,53,46,50,55,53,51,55,49,93,44,91,45,54,55,46,52,50,55,51,50,53,44,52,53,46,51,57,48,55,50,49,93,44,91,45,54,55,46,53,48,48,48,55,50,44,52,53,46,52,57,48,56,52,57,93,44,91,45,54,55,46,52,50,48,55,51,50,44,52,53,46,53,52,57,54,57,53,93,44,91,45,54,55,46,56,48,53,54,56,57,44,52,53,46,54,56,48,48,53,49,93,44,91,45,54,56,46,48,52,56,48,49,50,44,52,53,46,54,51,57,56,57,55,93,44,91,45,54,55,46,57,51,57,55,54,44,52,53,46,50,54,55,56,52,53,93,44,91,45,54,56,46,48,53,52,57,56,53,44,52,53,46,50,53,50,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,66,114,105,115,99,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,57,48,55,52,57,44,51,52,46,55,52,56,50,52,54,93,44,91,45,49,48,49,46,52,55,49,53,54,50,44,51,52,46,55,52,55,52,54,50,93,44,91,45,49,48,49,46,52,55,49,53,56,44,51,52,46,51,49,50,50,57,93,44,91,45,49,48,49,46,48,52,49,52,56,52,44,51,52,46,51,49,50,52,52,52,93,44,91,45,49,48,48,46,57,52,54,49,51,50,44,51,52,46,51,49,50,55,53,57,93,44,91,45,49,48,48,46,57,52,52,57,51,57,44,51,52,46,55,52,56,50,56,49,93,44,91,45,49,48,49,46,48,57,48,55,52,57,44,51,52,46,55,52,56,50,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,79,110,116,111,110,97,103,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,57,49,50,51,54,44,52,54,46,52,49,57,55,48,52,93,44,91,45,56,56,46,57,56,57,53,50,57,44,52,54,46,54,56,48,49,49,57,93,44,91,45,56,56,46,57,51,50,52,56,44,52,54,46,55,54,52,55,56,55,93,44,91,45,56,56,46,57,52,56,56,54,57,44,52,55,46,52,55,55,49,52,53,93,44,91,45,56,57,46,54,56,48,55,51,44,52,55,46,55,49,52,53,53,50,93,44,91,45,56,57,46,57,53,55,49,48,50,44,52,55,46,50,57,49,49,48,51,93,44,91,45,57,48,46,49,49,49,54,56,57,44,52,55,46,48,52,49,57,54,52,93,44,91,45,57,48,46,48,48,48,49,54,49,44,52,54,46,57,57,57,57,51,55,93,44,91,45,57,48,46,48,48,48,49,55,49,44,52,54,46,55,54,53,53,50,57,93,44,91,45,56,57,46,56,54,51,55,57,51,44,52,54,46,55,54,53,52,48,53,93,44,91,45,56,57,46,56,54,52,52,50,44,52,54,46,53,57,50,54,52,51,93,44,91,45,56,57,46,55,52,48,53,54,56,44,52,54,46,53,48,53,54,52,50,93,44,91,45,56,57,46,51,54,53,48,57,52,44,52,54,46,53,48,53,57,52,57,93,44,91,45,56,57,46,51,54,53,53,48,55,44,52,54,46,51,51,51,48,55,56,93,44,91,45,56,56,46,57,57,49,48,49,50,44,52,54,46,51,51,50,51,48,56,93,44,91,45,56,56,46,57,57,49,50,51,54,44,52,54,46,52,49,57,55,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,50,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,56,54,56,57,44,51,51,46,54,55,54,55,50,55,93,44,91,45,57,48,46,49,50,55,55,55,53,44,51,51,46,54,55,54,57,53,54,93,44,91,45,57,48,46,49,48,49,52,48,49,44,51,51,46,52,53,56,57,52,93,44,91,45,57,48,46,49,55,52,54,49,52,44,51,51,46,51,51,51,51,55,56,93,44,91,45,56,57,46,55,52,57,52,52,49,44,51,51,46,50,49,52,52,55,56,93,44,91,45,56,57,46,54,52,53,50,56,44,51,51,46,50,56,53,53,49,53,93,44,91,45,56,57,46,54,52,54,51,49,52,44,51,51,46,52,48,50,53,52,52,93,44,91,45,56,57,46,55,56,53,50,50,55,44,51,51,46,52,49,54,50,55,53,93,44,91,45,56,57,46,55,56,54,56,57,44,51,51,46,54,55,54,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,55,56,48,44,34,98,101,100,115,34,58,49,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,49,52,57,48,50,53,44,52,52,46,55,50,48,50,50,53,93,44,91,45,49,50,51,46,54,48,50,54,48,57,44,52,52,46,55,50,49,49,53,52,93,44,91,45,49,50,51,46,53,57,55,54,55,55,44,52,52,46,52,51,51,49,48,57,93,44,91,45,49,50,51,46,55,50,48,48,55,49,44,52,52,46,52,51,51,51,55,52,93,44,91,45,49,50,51,46,55,55,53,53,57,56,44,52,52,46,50,56,51,53,52,55,93,44,91,45,49,50,51,46,49,56,48,51,56,56,44,52,52,46,50,56,51,55,50,53,93,44,91,45,49,50,51,46,50,52,48,55,52,52,44,52,52,46,51,51,55,55,56,57,93,44,91,45,49,50,51,46,50,49,49,57,54,55,44,52,52,46,53,48,49,50,49,56,93,44,91,45,49,50,51,46,50,54,48,49,53,49,44,52,52,46,53,53,53,49,52,56,93,44,91,45,49,50,51,46,49,52,57,48,50,53,44,52,52,46,55,50,48,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,82,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,49,51,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,53,50,57,56,56,44,52,51,46,56,52,57,53,48,55,93,44,91,45,57,54,46,52,53,51,50,54,44,52,51,46,53,48,48,51,57,93,44,91,45,57,54,46,48,53,51,49,54,50,44,52,51,46,53,48,48,49,53,53,93,44,91,45,57,54,46,48,53,50,51,50,44,52,51,46,56,52,57,48,55,93,44,91,45,57,54,46,48,54,52,54,50,44,52,51,46,56,52,57,48,51,57,93,44,91,45,57,54,46,52,53,50,57,56,56,44,52,51,46,56,52,57,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,55,53,53,44,34,98,101,100,115,34,58,49,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,49,53,51,49,44,52,48,46,57,49,49,51,52,54,93,44,91,45,55,57,46,50,49,53,50,49,53,44,52,48,46,55,55,53,57,52,50,93,44,91,45,55,57,46,52,53,48,49,55,54,44,52,48,46,53,51,48,49,52,57,93,44,91,45,55,57,46,49,50,49,54,51,52,44,52,48,46,51,55,48,53,55,54,93,44,91,45,55,56,46,57,55,52,54,52,57,44,52,48,46,51,57,53,57,55,50,93,44,91,45,55,56,46,56,48,49,54,57,55,44,52,48,46,55,50,52,53,51,57,93,44,91,45,55,56,46,56,48,53,49,54,55,44,52,48,46,57,48,53,57,56,93,44,91,45,55,57,46,50,49,53,51,49,44,52,48,46,57,49,49,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,51,53,54,44,34,98,101,100,115,34,58,50,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,55,55,49,57,55,44,51,50,46,52,53,51,52,53,53,93,44,91,45,57,50,46,54,50,50,51,51,53,44,51,50,46,52,57,54,52,48,54,93,44,91,45,57,50,46,52,49,53,51,53,44,51,50,46,52,57,53,52,56,54,93,44,91,45,57,50,46,52,49,53,48,55,49,44,51,50,46,53,56,50,56,52,53,93,44,91,45,57,50,46,52,49,53,48,53,44,51,50,46,54,55,48,48,53,54,93,44,91,45,57,50,46,54,50,56,50,56,56,44,51,50,46,55,53,57,54,54,57,93,44,91,45,57,50,46,55,50,53,52,51,57,44,51,50,46,55,53,57,53,52,93,44,91,45,57,50,46,56,50,56,53,51,53,44,51,50,46,55,53,56,56,49,52,93,44,91,45,57,50,46,56,56,48,56,48,53,44,51,50,46,53,56,53,50,55,55,93,44,91,45,57,50,46,56,55,57,50,54,56,44,51,50,46,52,53,52,49,49,56,93,44,91,45,57,50,46,55,55,55,49,57,55,44,51,50,46,52,53,51,52,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,57,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,44,91,45,55,55,46,50,56,57,53,57,50,44,52,48,46,53,49,56,52,53,55,93,44,91,45,55,55,46,53,52,48,49,52,49,44,52,48,46,51,57,57,50,50,49,93,44,91,45,55,55,46,54,55,49,55,54,49,44,52,48,46,50,56,57,56,50,53,93,44,91,45,55,55,46,54,49,52,54,54,53,44,52,48,46,49,57,56,53,52,57,93,44,91,45,55,55,46,52,50,54,53,57,53,44,52,48,46,50,56,54,54,49,93,44,91,45,55,55,46,50,55,48,48,53,55,44,52,48,46,50,55,56,54,53,50,93,44,91,45,55,54,46,57,49,52,57,55,44,52,48,46,51,50,56,52,56,52,93,44,91,45,55,55,46,48,50,56,54,52,53,44,52,48,46,51,57,49,49,57,55,93,44,91,45,55,54,46,57,52,57,51,57,55,44,52,48,46,52,54,57,48,51,55,93,44,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,90,105,101,98,97,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,49,52,44,34,98,101,100,115,34,58,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,57,57,57,57,57,44,52,53,46,48,51,56,50,55,52,93,44,91,45,49,48,50,46,48,48,48,52,51,50,44,52,52,46,53,49,49,54,54,51,93,44,91,45,49,48,49,46,55,56,48,55,51,51,44,52,52,46,53,51,54,52,51,54,93,44,91,45,49,48,49,46,55,49,53,48,51,56,44,52,52,46,53,55,57,52,56,51,93,44,91,45,49,48,49,46,53,51,49,48,51,53,44,52,52,46,53,54,55,56,55,53,93,44,91,45,49,48,49,46,51,50,56,50,52,53,44,52,52,46,54,57,48,57,53,54,93,44,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,48,49,46,49,51,54,49,54,50,44,52,52,46,57,57,52,48,55,52,93,44,91,45,49,48,49,46,53,48,49,48,53,51,44,52,52,46,57,57,51,55,57,53,93,44,91,45,49,48,49,46,52,55,48,49,57,44,52,53,46,52,55,50,52,49,54,93,44,91,45,49,48,49,46,57,57,57,55,57,44,52,53,46,52,55,50,52,49,52,93,44,91,45,49,48,49,46,57,57,57,57,57,44,52,53,46,48,51,56,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,51,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,54,52,53,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,48,49,55,57,44,51,50,46,54,53,50,50,48,57,93,44,91,45,57,52,46,55,48,49,57,56,54,44,51,50,46,52,50,49,55,56,50,93,44,91,45,57,52,46,53,55,57,50,49,57,44,51,50,46,51,57,52,57,49,54,93,44,91,45,57,52,46,52,57,49,56,49,56,44,51,50,46,51,57,52,49,51,55,93,44,91,45,57,52,46,51,53,52,50,57,52,44,51,50,46,51,50,57,50,48,57,93,44,91,45,57,52,46,48,52,50,57,48,49,44,51,50,46,51,57,50,50,56,51,93,44,91,45,57,52,46,48,52,51,49,52,55,44,51,50,46,54,57,51,48,51,93,44,91,45,57,52,46,49,55,50,49,51,54,44,51,50,46,54,57,54,57,93,44,91,45,57,52,46,50,56,51,48,50,56,44,51,50,46,55,52,54,55,50,57,93,44,91,45,57,52,46,51,57,48,55,56,51,44,51,50,46,54,57,52,51,55,55,93,44,91,45,57,52,46,53,48,55,51,50,51,44,51,50,46,54,57,51,55,51,56,93,44,91,45,57,52,46,55,48,50,49,52,44,51,50,46,55,57,51,48,56,56,93,44,91,45,57,52,46,55,48,49,55,57,44,51,50,46,54,53,50,50,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,97,114,97,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,48,55,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,52,51,55,51,49,44,52,55,46,48,52,51,57,53,56,93,44,91,45,56,56,46,52,53,49,50,44,52,54,46,57,51,56,57,55,54,93,44,91,45,56,56,46,53,53,49,57,52,51,44,52,54,46,56,53,49,55,57,53,93,44,91,45,56,56,46,54,55,56,57,56,51,44,52,54,46,56,53,49,56,50,50,93,44,91,45,56,56,46,54,55,57,51,57,50,44,52,54,46,52,50,48,49,51,57,93,44,91,45,56,56,46,49,49,54,53,55,49,44,52,54,46,52,49,57,57,53,49,93,44,91,45,56,56,46,49,49,53,56,52,51,44,52,54,46,54,55,56,51,56,49,93,44,91,45,56,56,46,48,52,52,55,48,57,44,52,54,46,55,54,53,51,53,51,93,44,91,45,56,56,46,48,52,51,55,51,49,44,52,55,46,48,52,51,57,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,82,111,103,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,56,49,52,44,34,98,101,100,115,34,58,49,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,51,49,53,55,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,56,48,57,53,52,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,56,49,50,51,52,50,44,51,54,46,52,50,51,53,56,93,44,91,45,57,53,46,56,49,53,52,44,51,54,46,49,54,50,54,51,93,44,91,45,57,53,46,55,54,49,54,53,44,51,54,46,49,54,50,55,53,93,44,91,45,57,53,46,54,49,56,53,50,44,51,54,46,49,54,50,53,49,50,93,44,91,45,57,53,46,53,53,50,53,56,55,44,51,54,46,48,57,49,52,56,54,93,44,91,45,57,53,46,52,51,57,57,55,44,51,54,46,48,55,53,50,93,44,91,45,57,53,46,52,51,53,54,49,44,51,54,46,53,49,48,49,54,93,44,91,45,57,53,46,51,50,56,49,55,44,51,54,46,53,49,48,50,52,93,44,91,45,57,53,46,52,51,49,53,55,44,51,54,46,53,57,55,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,53,49,53,44,34,98,101,100,115,34,58,49,50,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,52,51,48,50,50,57,44,51,57,46,50,52,56,55,57,53,93,44,91,45,57,50,46,53,53,56,48,56,54,44,51,56,46,57,55,48,54,57,50,93,44,91,45,57,50,46,52,57,56,51,55,55,44,51,56,46,57,50,50,48,56,52,93,44,91,45,57,50,46,51,55,57,54,49,52,44,51,56,46,56,48,48,48,55,54,93,44,91,45,57,50,46,51,57,52,56,54,54,44,51,56,46,55,51,57,49,51,93,44,91,45,57,50,46,51,53,55,56,49,51,44,51,56,46,54,55,57,53,49,55,93,44,91,45,57,50,46,50,50,48,54,54,49,44,51,56,46,54,52,51,49,54,55,93,44,91,45,57,50,46,49,51,53,51,57,55,44,51,56,46,56,49,53,53,56,49,93,44,91,45,57,50,46,49,54,53,49,49,55,44,51,56,46,57,48,48,57,52,56,93,44,91,45,57,50,46,49,49,48,51,56,55,44,51,57,46,48,54,52,50,48,52,93,44,91,45,57,50,46,49,48,52,51,55,52,44,51,57,46,50,51,57,56,48,57,93,44,91,45,57,50,46,51,49,52,52,55,49,44,51,57,46,50,52,54,52,53,52,93,44,91,45,57,50,46,52,51,48,50,50,57,44,51,57,46,50,52,56,55,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,97,121,97,103,195,188,101,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,50,53,53,44,34,98,101,100,115,34,58,49,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,54,55,46,57,57,56,54,57,49,44,49,56,46,49,55,48,55,54,93,44,91,45,54,55,46,57,55,54,49,51,54,44,49,56,46,48,51,57,53,57,51,93,44,91,45,54,55,46,56,50,50,52,52,49,44,49,56,46,48,50,54,52,51,49,93,44,91,45,54,55,46,55,57,49,57,56,54,44,49,56,46,49,48,55,52,53,56,93,44,91,45,54,55,46,56,53,50,52,52,51,44,49,56,46,49,55,48,49,49,49,93,44,91,45,54,55,46,57,57,56,54,57,49,44,49,56,46,49,55,48,55,54,93,93,93,44,91,91,91,45,54,55,46,50,50,53,54,54,52,44,49,56,46,49,57,54,49,53,51,93,44,91,45,54,55,46,49,53,57,55,51,51,44,49,56,46,49,53,51,50,50,55,93,44,91,45,54,55,46,48,56,54,51,53,57,44,49,56,46,49,52,57,56,50,57,93,44,91,45,54,55,46,48,53,49,52,54,49,44,49,56,46,49,55,52,48,53,51,93,44,91,45,54,55,46,48,49,57,56,51,54,44,49,56,46,49,57,53,52,55,49,93,44,91,45,54,55,46,48,56,50,48,48,50,44,49,56,46,50,53,52,57,52,54,93,44,91,45,54,55,46,50,52,51,53,53,57,44,49,56,46,50,54,56,57,50,50,93,44,91,45,54,55,46,50,53,52,50,44,49,56,46,50,53,50,54,51,56,93,44,91,45,54,55,46,50,50,53,54,54,52,44,49,56,46,49,57,54,49,53,51,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,100,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,52,50,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,50,51,51,51,54,44,51,53,46,52,54,52,50,50,53,93,44,91,45,57,56,46,54,50,48,54,57,50,44,51,53,46,48,57,55,55,54,53,93,44,91,45,57,56,46,54,49,57,56,49,54,44,51,52,46,56,53,53,51,52,93,44,91,45,57,56,46,48,57,51,49,50,55,44,51,52,46,56,53,52,57,56,56,93,44,91,45,57,56,46,48,57,54,48,49,52,44,51,53,46,51,55,55,55,53,51,93,44,91,45,57,56,46,51,48,54,51,50,54,44,51,53,46,51,55,55,50,51,57,93,44,91,45,57,56,46,51,49,51,50,53,49,44,51,53,46,53,53,49,53,50,51,93,44,91,45,57,56,46,54,50,51,50,52,52,44,51,53,46,53,53,49,53,50,50,93,44,91,45,57,56,46,54,50,51,51,51,54,44,51,53,46,52,54,52,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,48,52,50,55,44,34,98,101,100,115,34,58,54,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,51,57,55,57,52,57,44,51,57,46,55,52,54,48,52,93,44,91,45,49,48,53,46,51,57,56,57,52,57,44,51,57,46,53,54,54,48,53,54,93,44,91,45,49,48,53,46,51,57,55,56,55,53,44,51,57,46,49,50,57,53,54,52,93,44,91,45,49,48,53,46,51,51,48,52,52,52,44,51,57,46,49,50,57,54,56,53,93,44,91,45,49,48,53,46,51,50,57,50,50,44,51,57,46,49,50,57,54,56,57,93,44,91,45,49,48,53,46,50,51,51,57,51,56,44,51,57,46,50,52,54,56,54,56,93,44,91,45,49,48,53,46,48,52,56,55,52,44,51,57,46,53,54,54,48,56,56,93,44,91,45,49,48,53,46,48,53,51,52,51,55,44,51,57,46,54,50,48,57,56,52,93,44,91,45,49,48,53,46,48,57,54,57,48,57,44,51,57,46,54,49,52,52,50,51,93,44,91,45,49,48,53,46,48,53,51,50,53,54,44,51,57,46,54,54,55,55,56,53,93,44,91,45,49,48,53,46,48,53,51,50,52,54,44,51,57,46,55,57,49,48,54,51,93,44,91,45,49,48,53,46,48,53,50,56,57,50,44,51,57,46,57,49,52,50,50,52,93,44,91,45,49,48,53,46,49,52,55,49,52,51,44,51,57,46,57,49,51,56,56,57,93,44,91,45,49,48,53,46,51,57,55,56,52,57,44,51,57,46,57,49,50,56,56,54,93,44,91,45,49,48,53,46,51,57,55,57,52,57,44,51,57,46,55,52,54,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,97,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,51,49,56,44,34,98,101,100,115,34,58,49,48,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,56,55,50,55,44,51,56,46,53,56,50,55,56,51,93,44,91,45,56,50,46,51,50,51,57,57,57,44,51,56,46,52,52,57,50,54,56,93,44,91,45,56,50,46,53,48,56,50,56,44,51,56,46,52,49,49,49,57,56,93,44,91,45,56,50,46,50,54,52,56,52,57,44,51,56,46,50,50,57,49,57,57,93,44,91,45,56,50,46,49,57,53,55,53,49,44,51,56,46,51,50,51,52,57,57,93,44,91,45,56,50,46,48,52,55,49,50,56,44,51,56,46,51,55,52,52,51,50,93,44,91,45,56,50,46,48,53,53,49,50,55,44,51,56,46,52,55,52,53,52,55,93,44,91,45,56,50,46,50,49,56,57,54,55,44,51,56,46,53,57,49,54,56,51,93,44,91,45,56,50,46,50,56,55,50,55,44,51,56,46,53,56,50,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,56,51,34,44,34,78,65,77,69,34,58,34,82,101,97,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,53,50,44,34,98,101,100,115,34,58,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,55,55,53,56,48,50,44,51,49,46,54,53,49,51,49,57,93,44,91,45,49,48,49,46,55,55,54,49,57,49,44,51,49,46,48,55,57,55,56,52,93,44,91,45,49,48,49,46,50,55,52,55,57,57,44,51,49,46,48,55,57,51,55,57,93,44,91,45,49,48,49,46,50,54,55,57,52,55,44,51,49,46,53,50,56,54,56,56,93,44,91,45,49,48,49,46,50,54,55,54,51,44,51,49,46,53,53,54,52,54,50,93,44,91,45,49,48,49,46,50,54,55,49,50,50,44,51,49,46,54,53,48,56,53,52,93,44,91,45,49,48,49,46,55,55,53,56,48,50,44,51,49,46,54,53,49,51,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,86,97,110,32,66,117,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,56,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,48,57,55,54,51,44,51,53,46,55,50,50,52,48,49,93,44,91,45,57,50,46,56,49,51,52,49,55,44,51,53,46,53,52,57,93,44,91,45,57,50,46,56,53,48,54,50,52,44,51,53,46,52,54,50,57,53,93,44,91,45,57,50,46,52,55,57,50,54,56,44,51,53,46,52,53,53,51,53,55,93,44,91,45,57,50,46,52,56,49,52,54,57,44,51,53,46,51,54,56,51,57,50,93,44,91,45,57,50,46,50,53,50,55,53,57,44,51,53,46,51,54,51,55,49,56,93,44,91,45,57,50,46,50,52,48,53,50,44,51,53,46,55,49,50,49,57,93,44,91,45,57,50,46,52,49,56,52,48,56,44,51,53,46,55,49,54,48,52,54,93,44,91,45,57,50,46,52,49,54,56,52,55,44,51,53,46,55,56,56,53,57,49,93,44,91,45,57,50,46,54,50,57,56,51,55,44,51,53,46,55,57,48,56,50,51,93,44,91,45,57,50,46,54,51,49,50,48,55,44,51,53,46,55,49,56,51,54,53,93,44,91,45,57,50,46,56,48,57,55,54,51,44,51,53,46,55,50,50,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,83,117,109,109,105,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,52,50,57,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,51,52,53,48,56,44,51,57,46,57,50,52,57,49,52,93,44,91,45,49,48,54,46,51,56,53,52,55,56,44,51,57,46,55,54,55,49,54,52,93,44,91,45,49,48,54,46,49,55,54,49,49,53,44,51,57,46,54,49,52,50,50,49,93,44,91,45,49,48,54,46,50,52,56,50,57,53,44,51,57,46,53,52,52,50,53,49,93,44,91,45,49,48,54,46,50,48,54,55,51,50,44,51,57,46,51,55,57,54,51,54,93,44,91,45,49,48,54,46,49,51,53,53,50,57,44,51,57,46,51,55,57,53,52,54,93,44,91,45,49,48,53,46,57,53,49,54,57,56,44,51,57,46,52,49,52,54,49,57,93,44,91,45,49,48,53,46,56,50,57,54,54,50,44,51,57,46,53,54,52,56,54,53,93,44,91,45,49,48,53,46,55,56,50,54,55,52,44,51,57,46,54,50,57,48,50,52,93,44,91,45,49,48,53,46,57,50,52,54,49,56,44,51,57,46,54,57,56,57,55,50,93,44,91,45,49,48,54,46,48,50,51,55,56,51,44,51,57,46,54,56,56,52,50,93,44,91,45,49,48,54,46,48,56,51,55,49,49,44,51,57,46,56,48,53,57,54,52,93,44,91,45,49,48,54,46,50,53,50,48,50,55,44,51,57,46,57,49,52,55,49,50,93,44,91,45,49,48,54,46,52,51,52,53,48,56,44,51,57,46,57,50,52,57,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,111,119,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,57,49,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,44,91,45,57,55,46,49,52,55,55,50,49,44,51,54,46,57,57,57,48,51,51,93,44,91,45,57,54,46,55,52,57,56,51,56,44,51,54,46,57,57,56,57,56,56,93,44,91,45,57,54,46,53,50,53,53,56,50,44,51,54,46,57,57,56,55,49,93,44,91,45,57,54,46,53,50,52,56,55,51,44,51,55,46,51,48,50,55,51,93,44,91,45,57,54,46,53,50,53,54,57,44,51,55,46,52,55,54,52,48,53,93,44,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,57,49,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,57,53,57,56,49,44,51,53,46,55,54,56,54,52,57,93,44,91,45,57,51,46,55,49,48,48,55,54,44,51,53,46,51,55,53,50,52,50,93,44,91,45,57,51,46,52,51,48,52,49,44,51,53,46,52,50,51,55,51,55,93,44,91,45,57,51,46,50,57,57,48,49,44,51,53,46,51,50,55,54,52,52,93,44,91,45,57,51,46,50,57,53,57,49,44,51,53,46,52,54,57,57,49,53,93,44,91,45,57,51,46,50,50,51,54,51,51,44,51,53,46,52,54,56,53,57,51,93,44,91,45,57,51,46,49,54,55,56,44,51,53,46,53,57,55,54,57,53,93,44,91,45,57,51,46,49,54,52,52,53,50,44,51,53,46,55,50,56,56,51,49,93,44,91,45,57,51,46,53,49,57,53,55,53,44,51,53,46,55,51,52,52,50,50,93,44,91,45,57,51,46,53,49,57,50,48,52,44,51,53,46,55,54,51,53,50,49,93,44,91,45,57,51,46,54,57,53,57,56,49,44,51,53,46,55,54,56,54,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,56,53,52,49,55,49,44,52,52,46,48,55,48,48,56,57,93,44,91,45,55,52,46,55,55,53,54,49,55,44,52,51,46,52,56,54,54,55,55,93,44,91,45,55,52,46,56,54,55,55,49,50,44,52,51,46,51,51,57,56,50,54,93,44,91,45,55,52,46,55,49,50,54,49,53,44,52,51,46,50,56,54,49,52,51,93,44,91,45,55,52,46,53,51,52,54,53,55,44,52,51,46,50,50,56,49,49,53,93,44,91,45,55,52,46,49,52,48,49,52,55,44,52,51,46,50,53,51,57,55,57,93,44,91,45,55,52,46,49,54,48,49,44,52,51,46,51,55,49,53,51,50,93,44,91,45,55,52,46,50,49,52,54,50,53,44,52,51,46,55,50,56,55,48,51,93,44,91,45,55,52,46,48,53,55,48,48,53,44,52,51,46,55,52,52,53,49,51,93,44,91,45,55,52,46,50,49,51,55,51,52,44,52,51,46,56,49,48,56,55,53,93,44,91,45,55,52,46,51,51,54,56,50,54,44,52,51,46,57,50,53,50,50,51,93,44,91,45,55,52,46,50,53,53,57,57,56,44,52,51,46,57,54,57,55,57,55,93,44,91,45,55,52,46,50,56,49,56,55,44,52,52,46,49,50,48,53,53,50,93,44,91,45,55,52,46,53,51,53,49,53,54,44,52,52,46,48,57,57,50,53,93,44,91,45,55,52,46,56,53,52,49,55,49,44,52,52,46,48,55,48,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,114,97,105,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,52,55,50,55,56,50,44,51,55,46,52,50,51,55,51,93,44,91,45,56,48,46,52,51,48,57,52,51,44,51,55,46,51,49,54,51,55,56,93,44,91,45,56,48,46,50,54,50,49,56,52,44,51,55,46,51,52,49,53,50,54,93,44,91,45,56,48,46,48,55,52,49,49,57,44,51,55,46,52,50,50,52,54,57,93,44,91,45,55,57,46,57,54,57,48,55,49,44,51,55,46,53,52,52,52,48,56,93,44,91,45,56,48,46,48,50,48,53,53,52,44,51,55,46,54,52,55,52,52,50,93,44,91,45,56,48,46,49,52,52,51,57,52,44,51,55,46,53,57,54,54,50,55,93,44,91,45,56,48,46,50,50,48,57,56,52,44,51,55,46,54,50,55,55,54,55,93,44,91,45,56,48,46,50,57,57,55,56,57,44,51,55,46,53,48,56,50,55,49,93,44,91,45,56,48,46,52,55,50,55,56,50,44,51,55,46,52,50,51,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,67,111,108,101,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,57,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,55,49,51,57,55,49,44,51,50,46,48,56,50,48,56,57,93,44,91,45,57,57,46,55,50,49,54,57,56,44,51,49,46,53,55,54,55,53,57,93,44,91,45,57,57,46,54,48,49,56,53,44,51,49,46,52,57,49,57,53,93,44,91,45,57,57,46,51,48,50,54,48,53,44,51,49,46,52,51,50,53,48,52,93,44,91,45,57,57,46,50,48,50,55,54,56,44,51,49,46,52,54,55,50,51,52,93,44,91,45,57,57,46,49,57,53,56,55,49,44,51,50,46,48,55,57,50,51,53,93,44,91,45,57,57,46,54,51,49,52,49,51,44,51,50,46,48,56,49,50,55,52,93,44,91,45,57,57,46,55,49,51,57,55,49,44,51,50,46,48,56,50,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,57,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,48,34,44,34,78,65,77,69,34,58,34,89,117,107,111,110,45,75,111,121,117,107,117,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,49,46,48,48,50,54,57,52,44,54,56,46,52,57,56,51,54,52,93,44,91,45,49,52,51,46,53,50,56,56,50,51,44,54,56,46,53,48,48,48,50,49,93,44,91,45,49,52,54,44,54,56,46,53,93,44,91,45,49,52,54,44,54,56,93,44,91,45,49,52,55,46,55,53,51,49,49,55,44,54,55,46,57,57,57,57,56,56,93,44,91,45,49,52,57,46,51,50,53,52,51,44,54,55,46,57,57,57,57,57,57,93,44,91,45,49,53,48,46,56,57,48,48,50,56,44,54,56,46,48,48,48,48,48,52,93,44,91,45,49,53,49,46,57,48,48,50,55,54,44,54,56,46,48,48,48,48,48,55,93,44,91,45,49,53,51,46,52,48,52,49,53,50,44,54,56,93,44,91,45,49,53,53,46,51,49,56,55,52,52,44,54,56,46,48,48,48,48,51,50,93,44,91,45,49,53,53,46,51,54,56,57,57,57,44,54,55,46,55,55,53,50,49,54,93,44,91,45,49,53,52,46,55,52,56,57,51,57,44,54,55,46,53,49,53,52,57,53,93,44,91,45,49,53,52,46,55,52,56,57,48,52,44,54,55,46,50,53,53,55,53,51,93,44,91,45,49,53,52,46,51,48,51,49,49,44,54,55,46,50,53,53,55,53,57,93,44,91,45,49,53,52,46,49,52,54,51,49,52,44,54,55,46,49,54,57,49,55,56,93,44,91,45,49,53,52,46,49,52,54,50,50,49,44,54,54,46,56,50,50,56,52,51,93,44,91,45,49,53,52,46,50,49,48,51,48,50,44,54,54,46,55,51,54,50,53,53,93,44,91,45,49,53,52,46,56,54,48,52,52,54,44,54,54,46,55,51,54,50,52,50,93,44,91,45,49,53,52,46,56,54,48,52,51,49,44,54,54,46,53,54,51,48,54,52,93,44,91,45,49,53,53,46,53,49,48,53,56,53,44,54,54,46,53,54,51,48,53,49,93,44,91,45,49,53,53,46,53,53,52,57,57,51,44,54,54,46,51,48,51,50,55,52,93,44,91,45,49,53,53,46,57,56,50,52,57,57,44,54,54,46,51,48,51,50,54,56,93,44,91,45,49,53,53,46,57,56,50,53,48,52,44,54,54,46,51,56,57,56,54,93,44,91,45,49,53,54,46,49,57,54,50,50,52,44,54,54,46,52,55,54,53,56,50,93,44,91,45,49,53,54,46,54,50,51,55,55,44,54,54,46,52,55,54,52,52,50,93,44,91,45,49,53,54,46,54,50,51,55,53,55,44,54,54,46,51,48,51,50,53,57,93,44,91,45,49,53,55,46,48,53,49,50,54,54,44,54,54,46,51,48,51,50,53,52,93,44,91,45,49,53,55,46,48,53,49,50,56,52,44,54,54,46,52,55,54,52,51,56,93,44,91,45,49,53,55,46,57,48,54,51,49,44,54,54,46,52,55,54,52,50,52,93,44,91,45,49,53,55,46,57,48,54,50,57,53,44,54,54,46,49,51,48,48,52,57,93,44,91,45,49,53,56,46,57,55,50,49,56,53,44,54,54,46,49,51,48,48,50,55,93,44,91,45,49,53,56,46,57,55,50,49,55,53,44,54,53,46,57,53,54,56,52,57,93,44,91,45,49,53,57,46,54,48,52,56,49,51,44,54,53,46,57,53,54,56,51,93,44,91,45,49,53,57,46,53,57,51,53,48,54,44,54,53,46,53,50,51,56,51,53,93,44,91,45,49,53,57,46,51,56,53,53,55,56,44,54,53,46,53,50,51,56,51,53,93,44,91,45,49,53,57,46,51,55,55,51,54,53,44,54,53,46,50,54,52,48,51,51,93,44,91,45,49,53,57,46,53,56,50,55,51,54,44,54,53,46,50,54,52,48,50,54,93,44,91,45,49,53,57,46,53,55,50,49,55,51,44,54,52,46,57,49,55,53,57,55,93,44,91,45,49,53,57,46,55,55,52,57,50,49,44,54,52,46,57,49,55,53,54,53,93,44,91,45,49,53,57,46,55,55,52,56,57,55,44,54,52,46,55,52,52,51,56,50,93,44,91,45,49,53,57,46,57,54,50,50,57,44,54,52,46,55,52,52,51,55,55,93,44,91,45,49,53,57,46,57,52,55,50,56,56,44,54,52,46,48,53,49,52,53,57,93,44,91,45,49,53,57,46,55,51,55,52,55,53,44,54,52,46,48,53,49,52,53,57,93,44,91,45,49,53,57,46,55,51,55,52,53,49,44,54,51,46,55,57,49,53,57,49,93,44,91,45,49,53,57,46,57,51,50,55,51,49,44,54,51,46,55,57,49,53,56,57,93,44,91,45,49,54,48,46,49,49,49,52,57,56,44,54,51,46,55,48,52,57,55,50,93,44,91,45,49,54,48,46,49,49,49,53,50,50,44,54,51,46,54,49,56,51,53,49,93,44,91,45,49,54,48,46,52,57,55,51,56,49,44,54,51,46,54,49,56,51,52,51,93,44,91,45,49,54,48,46,54,57,48,50,57,52,44,54,51,46,53,51,49,54,56,57,93,44,91,45,49,54,48,46,54,54,55,51,54,49,44,54,51,46,50,55,49,56,52,53,93,44,91,45,49,54,48,46,56,53,56,48,48,52,44,54,51,46,50,55,49,56,51,56,93,44,91,45,49,54,48,46,56,53,55,57,57,44,54,51,46,48,49,49,57,53,51,93,44,91,45,49,54,48,46,57,57,54,50,49,53,44,54,50,46,56,57,56,57,51,54,93,44,91,45,49,54,48,46,57,57,54,50,48,49,44,54,50,46,53,53,50,52,50,52,93,44,91,45,49,54,49,46,48,52,56,49,55,54,44,54,50,46,53,53,50,52,49,93,44,91,45,49,54,49,46,48,52,56,49,54,53,44,54,50,46,50,48,53,56,54,57,93,44,91,45,49,54,48,46,57,49,53,57,54,52,44,54,50,46,50,48,53,56,54,54,93,44,91,45,49,54,48,46,57,49,53,57,53,51,44,54,49,46,57,52,53,57,52,51,93,44,91,45,49,54,48,46,53,51,52,54,55,49,44,54,49,46,57,52,53,57,52,93,44,91,45,49,53,57,46,50,54,53,48,51,55,44,54,49,46,57,52,53,57,53,55,93,44,91,45,49,53,57,46,50,54,53,48,51,53,44,54,50,46,48,51,50,53,57,56,93,44,91,45,49,53,56,46,53,51,49,51,53,49,44,54,50,46,48,51,50,54,50,93,44,91,45,49,53,56,46,53,51,49,51,54,49,44,54,50,46,49,49,57,50,54,52,93,44,91,45,49,53,55,46,48,54,51,56,54,52,44,54,50,46,49,49,57,50,55,49,93,44,91,45,49,53,55,46,48,54,51,56,53,50,44,54,50,46,48,51,50,54,51,52,93,44,91,45,49,53,53,46,52,57,55,54,52,53,44,54,50,46,48,51,50,54,53,57,93,44,91,45,49,53,51,46,55,54,49,56,55,53,44,54,50,46,48,51,50,54,56,57,93,44,91,45,49,53,51,46,55,54,49,56,55,49,44,54,50,46,49,49,57,51,51,53,93,44,91,45,49,53,51,46,51,57,53,48,48,57,44,54,50,46,49,49,57,51,52,55,93,44,91,45,49,53,51,46,51,57,53,48,48,57,44,54,50,46,50,48,53,57,57,93,44,91,45,49,53,51,46,48,55,48,49,50,51,44,54,50,46,50,48,54,48,49,53,93,44,91,45,49,53,50,46,57,57,57,56,51,57,44,54,50,46,50,57,50,54,50,49,93,44,91,45,49,53,50,46,57,57,55,54,52,55,44,54,50,46,55,50,55,52,48,49,93,44,91,45,49,53,50,46,52,50,56,48,56,52,44,54,51,46,49,56,51,49,55,49,93,44,91,45,49,53,50,46,52,50,56,48,57,56,44,54,51,46,51,48,52,50,53,57,93,44,91,45,49,53,50,46,56,49,48,57,51,49,44,54,51,46,51,52,55,53,54,51,93,44,91,45,49,53,50,46,56,55,51,51,57,50,44,54,51,46,52,55,55,53,93,44,91,45,49,53,50,46,56,55,51,52,49,44,54,51,46,54,53,48,55,52,53,93,44,91,45,49,53,50,46,50,50,56,52,51,57,44,54,51,46,54,53,48,55,54,93,44,91,45,49,53,50,46,50,50,57,50,53,54,44,54,51,46,56,50,52,48,48,49,93,44,91,45,49,53,50,46,48,53,53,49,51,50,44,54,51,46,56,50,52,48,48,54,93,44,91,45,49,53,50,46,48,53,53,55,53,56,44,54,51,46,57,57,55,50,52,50,93,44,91,45,49,53,49,46,55,57,51,57,55,54,44,54,52,46,48,54,57,52,51,93,44,91,45,49,53,49,46,50,56,49,57,57,53,44,54,51,46,57,57,55,50,54,53,93,44,91,45,49,53,48,46,55,50,57,51,56,53,44,54,52,46,51,53,56,49,55,51,93,44,91,45,49,52,57,46,49,51,50,54,53,51,44,54,52,46,51,53,56,50,49,52,93,44,91,45,49,52,56,46,48,52,54,54,57,54,44,54,52,46,51,52,51,56,48,50,93,44,91,45,49,52,56,46,53,53,48,55,52,50,44,54,52,46,54,49,55,50,48,56,93,44,91,45,49,52,56,46,54,52,56,50,48,55,44,54,52,46,53,56,53,51,55,49,93,44,91,45,49,52,56,46,54,54,49,49,57,57,44,54,53,46,50,48,57,56,55,53,93,44,91,45,49,52,55,46,53,53,55,55,55,49,44,54,53,46,50,48,57,56,57,53,93,44,91,45,49,52,55,46,51,49,54,56,48,57,44,54,53,46,50,55,53,50,51,50,93,44,91,45,49,52,54,46,57,48,51,49,52,50,44,54,53,46,50,56,51,51,55,53,93,44,91,45,49,52,54,46,53,52,56,54,53,52,44,54,53,46,51,52,53,48,48,51,93,44,91,45,49,52,54,46,50,48,53,55,48,52,44,54,53,46,52,53,50,57,57,54,93,44,91,45,49,52,54,46,48,48,55,56,57,57,44,54,53,46,51,53,57,52,51,52,93,44,91,45,49,52,54,46,48,56,49,48,50,56,44,54,53,46,50,52,57,57,52,50,93,44,91,45,49,52,53,46,54,51,51,55,56,57,44,54,53,46,49,53,51,55,57,49,93,44,91,45,49,52,53,46,53,49,57,52,51,54,44,54,53,46,48,54,50,54,56,50,93,44,91,45,49,52,53,46,50,50,53,57,52,52,44,54,53,46,48,54,57,50,49,54,93,44,91,45,49,52,52,46,57,56,51,53,49,52,44,54,53,46,49,51,54,57,56,56,93,44,91,45,49,52,52,46,52,54,48,48,50,44,54,53,46,48,54,48,55,49,49,93,44,91,45,49,52,52,46,51,51,49,51,55,55,44,54,53,46,49,48,55,55,48,55,93,44,91,45,49,52,51,46,57,55,51,54,51,57,44,54,53,46,49,49,57,51,48,52,93,44,91,45,49,52,51,46,57,50,49,48,57,52,44,54,53,46,48,53,56,55,56,93,44,91,45,49,52,52,46,49,48,52,55,52,52,44,54,52,46,56,52,57,50,51,49,93,44,91,45,49,52,52,46,48,54,57,48,50,57,44,54,52,46,54,56,51,53,54,50,93,44,91,45,49,52,51,46,55,53,50,48,57,49,44,54,52,46,54,52,55,54,49,56,93,44,91,45,49,52,51,46,53,51,51,55,52,56,44,54,52,46,55,55,56,55,53,53,93,44,91,45,49,52,51,46,52,54,57,54,54,55,44,54,52,46,57,56,50,49,56,57,93,44,91,45,49,52,51,46,48,52,52,48,53,53,44,54,53,46,49,51,50,51,50,55,93,44,91,45,49,52,50,46,56,54,52,51,52,52,44,54,53,46,49,52,48,51,56,55,93,44,91,45,49,52,50,46,55,51,49,57,44,54,53,46,50,51,51,54,51,57,93,44,91,45,49,52,50,46,54,54,51,55,55,50,44,54,53,46,51,55,49,56,55,54,93,44,91,45,49,52,50,46,52,56,55,51,48,49,44,54,53,46,51,55,49,56,57,56,93,44,91,45,49,52,50,46,49,52,50,57,50,50,44,54,53,46,52,54,51,49,55,52,93,44,91,45,49,52,49,46,56,53,53,55,54,49,44,54,53,46,52,52,53,55,56,54,93,44,91,45,49,52,49,46,55,56,57,48,53,44,54,53,46,53,48,49,53,52,54,93,44,91,45,49,52,49,46,51,56,55,56,52,50,44,54,53,46,54,49,52,51,57,53,93,44,91,45,49,52,49,46,51,51,54,50,50,52,44,54,53,46,55,49,49,54,49,52,93,44,91,45,49,52,49,46,48,48,50,52,55,50,44,54,53,46,56,51,57,52,50,49,93,44,91,45,49,52,49,46,48,48,50,53,57,54,44,54,54,46,53,49,52,50,55,93,44,91,45,49,52,49,46,48,48,50,54,57,51,44,54,55,46,54,55,49,57,50,57,93,44,91,45,49,52,49,46,48,48,50,54,57,52,44,54,56,46,52,57,56,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,78,97,118,97,106,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,55,48,53,44,34,98,101,100,115,34,58,49,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,55,53,48,54,57,44,51,55,46,48,48,51,48,48,55,93,44,91,45,49,49,48,46,55,53,48,54,57,55,44,51,53,46,56,50,48,53,56,57,93,44,91,45,49,49,48,46,55,53,48,54,57,51,44,51,53,46,49,52,48,51,48,57,93,44,91,45,49,49,48,46,55,53,48,54,55,56,44,51,52,46,50,54,51,51,49,52,93,44,91,45,49,49,48,46,55,53,48,54,55,50,44,51,52,46,48,48,48,48,52,56,93,44,91,45,49,49,48,46,48,48,48,54,54,44,51,52,46,48,48,48,48,52,54,93,44,91,45,49,49,48,46,48,48,48,54,52,57,44,51,51,46,53,55,54,57,51,93,44,91,45,49,48,57,46,56,57,49,54,55,54,44,51,51,46,53,54,55,56,55,52,93,44,91,45,49,48,57,46,56,53,57,50,55,52,44,51,51,46,55,55,55,54,56,51,93,44,91,45,49,48,57,46,56,52,56,50,52,54,44,51,52,46,52,55,51,52,48,49,93,44,91,45,49,48,57,46,56,54,52,57,56,57,44,51,52,46,53,54,54,56,57,51,93,44,91,45,49,48,57,46,56,52,52,54,50,52,44,51,52,46,56,50,50,53,54,50,93,44,91,45,49,48,57,46,56,52,51,55,54,52,44,51,53,46,53,49,55,56,55,53,93,44,91,45,49,48,57,46,56,50,54,57,54,52,44,51,53,46,54,54,50,56,56,55,93,44,91,45,49,49,48,46,48,48,48,54,55,52,44,51,53,46,54,54,51,48,56,55,93,44,91,45,49,49,48,46,48,48,48,54,55,54,44,51,54,46,52,52,53,50,56,52,93,44,91,45,49,49,48,46,48,48,48,54,56,56,44,51,54,46,57,57,56,51,52,57,93,44,91,45,49,49,48,46,55,53,48,54,57,44,51,55,46,48,48,51,48,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,51,50,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,52,53,49,57,49,44,51,49,46,55,49,55,53,50,52,93,44,91,45,57,48,46,50,55,57,57,53,51,44,51,49,46,54,57,57,56,54,53,93,44,91,45,57,48,46,55,51,54,56,50,52,44,51,49,46,54,57,56,52,57,49,93,44,91,45,57,48,46,55,51,55,51,51,44,51,49,46,54,49,49,49,50,52,93,44,91,45,57,48,46,54,51,51,50,51,49,44,51,49,46,54,49,49,52,48,57,93,44,91,45,57,48,46,54,51,51,51,48,50,44,51,49,46,51,52,57,51,48,54,93,44,91,45,57,48,46,53,52,56,49,57,57,44,51,49,46,51,52,57,53,55,52,93,44,91,45,57,48,46,50,54,48,51,57,49,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,50,52,51,56,57,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,50,52,53,49,57,49,44,51,49,46,55,49,55,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,53,55,34,44,34,78,65,77,69,34,58,34,79,99,104,105,108,116,114,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,52,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,56,53,55,49,54,44,51,54,46,48,53,55,53,55,50,93,44,91,45,49,48,48,46,53,52,54,55,50,52,44,51,54,46,48,53,54,53,51,54,93,44,91,45,49,48,48,46,53,52,54,49,52,53,44,51,54,46,52,57,57,51,52,51,93,44,91,45,49,48,48,46,57,53,52,49,53,51,44,51,54,46,52,57,57,57,49,54,93,44,91,45,49,48,49,46,48,56,53,49,53,54,44,51,54,46,52,57,57,50,52,52,93,44,91,45,49,48,49,46,48,56,53,55,49,54,44,51,54,46,48,53,55,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,67,114,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,55,54,55,50,52,54,44,51,49,46,54,53,49,55,49,52,93,44,91,45,49,48,50,46,55,54,55,51,54,53,44,51,49,46,50,57,51,56,48,51,93,44,91,45,49,48,50,46,54,55,51,50,52,52,44,51,49,46,51,50,56,49,48,53,93,44,91,45,49,48,50,46,52,51,48,49,50,51,44,51,49,46,49,57,51,57,49,56,93,44,91,45,49,48,50,46,51,56,56,56,48,52,44,51,49,46,48,56,55,49,53,54,93,44,91,45,49,48,50,46,51,48,49,50,49,50,44,51,49,46,48,56,54,50,49,50,93,44,91,45,49,48,50,46,51,49,56,48,53,44,51,49,46,54,53,49,51,50,55,93,44,91,45,49,48,50,46,55,54,55,50,52,54,44,51,49,46,54,53,49,55,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,105,103,32,72,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,54,50,49,51,49,53,44,52,53,46,48,48,48,51,54,49,93,44,91,45,49,48,56,46,53,57,50,50,57,54,44,52,52,46,56,55,49,52,52,52,93,44,91,45,49,48,56,46,53,53,48,53,54,50,44,52,52,46,49,54,56,52,53,53,93,44,91,45,49,48,55,46,49,52,54,56,48,56,44,52,52,46,49,54,53,54,54,54,93,44,91,45,49,48,55,46,49,52,53,48,48,49,44,52,52,46,51,50,52,48,48,52,93,44,91,45,49,48,55,46,50,48,50,48,51,56,44,52,52,46,52,52,54,51,48,53,93,44,91,45,49,48,55,46,51,54,57,54,50,49,44,52,52,46,53,53,57,56,51,55,93,44,91,45,49,48,55,46,53,50,56,50,55,57,44,52,52,46,54,54,53,53,56,52,93,44,91,45,49,48,55,46,55,52,49,53,52,51,44,52,52,46,55,49,52,51,53,50,93,44,91,45,49,48,55,46,56,51,49,54,50,50,44,52,52,46,55,57,57,55,56,55,93,44,91,45,49,48,55,46,57,49,49,53,50,51,44,52,53,46,48,48,48,54,55,56,93,44,91,45,49,48,56,46,50,52,57,52,49,50,44,52,52,46,57,57,57,57,48,52,93,44,91,45,49,48,56,46,54,50,49,51,49,53,44,52,53,46,48,48,48,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,72,105,99,107,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,54,55,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,49,54,55,54,44,51,53,46,56,51,56,55,53,93,44,91,45,56,55,46,55,52,51,55,53,44,51,53,46,54,54,51,57,53,50,93,44,91,45,56,55,46,54,53,56,49,56,57,44,51,53,46,54,48,57,51,52,57,93,44,91,45,56,55,46,53,54,56,56,51,49,44,51,53,46,54,53,50,50,57,54,93,44,91,45,56,55,46,52,53,57,53,56,55,44,51,53,46,54,49,53,49,50,52,93,44,91,45,56,55,46,51,51,57,50,51,50,44,51,53,46,54,53,57,49,49,93,44,91,45,56,55,46,50,51,52,49,52,51,44,51,53,46,55,50,52,54,57,49,93,44,91,45,56,55,46,50,49,53,48,57,57,44,51,53,46,56,53,48,54,53,49,93,44,91,45,56,55,46,50,48,52,50,52,50,44,51,53,46,57,53,57,49,56,54,93,44,91,45,56,55,46,53,51,52,53,51,44,51,53,46,57,57,51,48,55,52,93,44,91,45,56,55,46,55,48,54,57,54,44,51,53,46,57,48,53,56,56,52,93,44,91,45,56,55,46,55,49,54,55,54,44,51,53,46,56,51,56,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,84,117,110,105,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,55,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,48,55,57,57,49,44,51,52,46,56,51,50,57,55,93,44,91,45,57,48,46,53,49,55,49,54,56,44,51,52,46,54,51,48,57,50,56,93,44,91,45,57,48,46,53,56,51,50,50,52,44,51,52,46,54,52,49,51,56,57,93,44,91,45,57,48,46,53,54,57,51,52,55,44,51,52,46,53,50,52,56,54,55,93,44,91,45,57,48,46,51,57,57,52,57,56,44,51,52,46,52,50,51,56,48,55,93,44,91,45,57,48,46,51,48,52,51,49,55,44,51,52,46,53,48,57,54,50,49,93,44,91,45,57,48,46,49,57,56,53,51,54,44,51,52,46,53,49,49,48,56,56,93,44,91,45,57,48,46,49,57,56,54,51,49,44,51,52,46,53,53,52,52,50,53,93,44,91,45,57,48,46,50,52,51,57,50,52,44,51,52,46,54,48,50,49,53,93,44,91,45,57,48,46,50,48,48,49,57,57,44,51,52,46,55,50,52,52,49,56,93,44,91,45,57,48,46,50,48,50,49,50,54,44,51,52,46,56,54,48,51,55,52,93,44,91,45,57,48,46,51,48,52,53,51,50,44,51,52,46,56,54,48,53,56,56,93,44,91,45,57,48,46,52,48,55,57,57,49,44,51,52,46,56,51,50,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,53,52,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,51,50,50,52,44,52,48,46,53,55,49,57,48,49,93,44,91,45,57,52,46,50,49,52,50,55,56,44,52,48,46,51,56,52,50,53,52,93,44,91,45,57,52,46,50,49,54,54,57,54,44,52,48,46,49,51,54,54,50,54,93,44,91,45,57,51,46,55,54,52,48,50,49,44,52,48,46,49,51,50,57,48,57,93,44,91,45,57,51,46,55,54,51,51,50,52,44,52,48,46,50,54,51,57,56,56,93,44,91,45,57,51,46,55,55,52,51,52,52,44,52,48,46,53,55,55,53,52,56,93,44,91,45,57,52,46,48,49,53,52,57,50,44,52,48,46,53,55,51,57,49,52,93,44,91,45,57,52,46,50,51,50,50,52,44,52,48,46,53,55,49,57,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,97,110,195,179,118,97,110,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,49,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,49,57,50,55,56,44,49,56,46,52,48,50,57,57,51,93,44,91,45,54,53,46,57,49,56,53,51,53,44,49,56,46,50,55,48,49,51,93,44,91,45,54,53,46,56,53,50,54,49,54,44,49,56,46,50,53,52,57,55,50,93,44,91,45,54,53,46,56,51,54,51,56,55,44,49,56,46,50,55,53,50,52,54,93,44,91,45,54,53,46,56,54,55,52,52,55,44,49,56,46,51,55,56,49,57,56,93,44,91,45,54,53,46,57,49,57,50,55,56,44,49,56,46,52,48,50,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,114,116,104,111,108,111,109,101,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,56,57,51,44,34,98,101,100,115,34,58,50,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,56,53,54,48,49,44,51,57,46,51,52,52,49,56,57,93,44,91,45,56,54,46,48,56,48,50,55,50,44,51,57,46,48,53,48,50,55,93,44,91,45,56,53,46,56,54,48,53,55,51,44,51,57,46,48,52,48,57,49,93,44,91,45,56,53,46,55,57,56,56,48,52,44,51,57,46,48,54,56,53,51,54,93,44,91,45,56,53,46,54,56,54,55,56,51,44,51,57,46,49,51,48,56,53,57,93,44,91,45,56,53,46,54,56,52,53,49,53,44,51,57,46,51,53,48,48,52,57,93,44,91,45,56,53,46,57,53,50,48,48,53,44,51,57,46,51,52,55,51,55,51,93,44,91,45,56,54,46,48,56,53,54,48,49,44,51,57,46,51,52,52,49,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,51,34,44,34,78,65,77,69,34,58,34,80,97,117,108,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,56,52,48,44,34,98,101,100,115,34,58,49,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,50,50,55,52,50,44,51,52,46,48,56,50,52,57,55,93,44,91,45,56,52,46,57,55,56,54,56,51,44,51,51,46,57,53,49,51,57,51,93,44,91,45,56,53,46,48,53,48,51,49,44,51,51,46,57,48,52,52,56,56,93,44,91,45,56,53,46,48,51,55,57,50,54,44,51,51,46,56,49,49,57,52,50,93,44,91,45,56,52,46,57,48,49,54,56,56,44,51,51,46,55,56,48,55,48,51,93,44,91,45,56,52,46,55,50,52,49,51,57,44,51,51,46,56,48,54,49,55,93,44,91,45,56,52,46,55,51,55,56,51,54,44,51,52,46,48,55,57,51,57,57,93,44,91,45,56,52,46,57,50,50,55,52,50,44,51,52,46,48,56,50,52,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,54,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,57,51,49,50,44,51,57,46,50,53,52,50,51,53,93,44,91,45,56,52,46,48,53,50,55,48,57,44,51,56,46,55,55,49,50,50,54,93,44,91,45,56,51,46,57,48,51,57,48,49,44,51,56,46,55,54,56,49,56,50,93,44,91,45,56,51,46,55,48,53,51,49,49,44,51,56,46,54,51,57,56,53,51,93,44,91,45,56,51,46,54,55,51,48,49,56,44,51,57,46,48,50,48,52,51,93,44,91,45,56,51,46,56,55,50,50,49,52,44,51,57,46,48,50,49,51,48,52,93,44,91,45,56,51,46,56,54,53,54,55,57,44,51,57,46,50,52,55,51,51,51,93,44,91,45,56,51,46,57,57,51,49,50,44,51,57,46,50,53,52,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,52,52,48,44,34,98,101,100,115,34,58,50,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,57,53,49,50,52,44,51,54,46,51,48,50,50,55,56,93,44,91,45,56,53,46,54,51,52,49,53,56,44,51,54,46,50,49,51,51,52,54,93,44,91,45,56,53,46,55,56,48,49,52,56,44,51,54,46,50,51,56,48,49,49,93,44,91,45,56,53,46,56,48,55,52,49,53,44,51,54,46,49,51,49,53,56,50,93,44,91,45,56,53,46,54,52,52,54,48,52,44,51,54,46,48,49,53,48,53,51,93,44,91,45,56,53,46,53,48,55,54,55,55,44,51,54,46,48,56,50,48,49,50,93,44,91,45,56,53,46,51,53,54,54,49,57,44,51,54,46,48,52,53,56,57,51,93,44,91,45,56,53,46,50,54,52,50,48,54,44,51,53,46,57,55,57,49,53,52,93,44,91,45,56,53,46,50,51,53,55,53,55,44,51,54,46,49,48,53,55,53,50,93,44,91,45,56,53,46,49,48,48,50,49,51,44,51,54,46,49,51,56,53,54,49,93,44,91,45,56,53,46,49,49,57,53,56,51,44,51,54,46,49,52,52,55,49,57,93,44,91,45,56,53,46,52,49,57,52,51,50,44,51,54,46,50,51,54,49,52,53,93,44,91,45,56,53,46,52,57,53,49,50,52,44,51,54,46,51,48,50,50,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,87,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,48,51,52,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,50,51,51,56,57,50,44,52,56,46,53,52,54,51,51,57,93,44,91,45,49,48,49,46,57,55,51,50,56,50,44,52,56,46,53,52,54,52,56,53,93,44,91,45,49,48,49,46,57,50,50,50,51,55,44,52,56,46,51,55,50,51,51,93,44,91,45,49,48,49,46,57,50,50,49,50,51,44,52,56,46,48,50,51,49,55,51,93,44,91,45,49,48,49,46,56,55,49,56,54,50,44,52,55,46,56,52,55,53,56,57,93,44,91,45,49,48,48,46,57,55,49,49,53,56,44,52,55,46,56,52,56,54,57,54,93,44,91,45,49,48,49,46,48,49,53,48,50,52,44,52,56,46,48,50,50,55,51,57,93,44,91,45,49,48,49,46,48,49,52,50,51,50,44,52,56,46,51,55,49,52,51,50,93,44,91,45,49,48,49,46,48,53,57,56,51,51,44,52,56,46,52,53,56,52,52,56,93,44,91,45,49,48,49,46,56,52,50,56,52,49,44,52,56,46,52,53,57,52,51,57,93,44,91,45,49,48,49,46,56,52,50,50,52,52,44,52,56,46,55,50,48,48,54,52,93,44,91,45,49,48,50,46,48,50,49,52,50,56,44,52,56,46,55,50,48,50,56,51,93,44,91,45,49,48,50,46,48,50,49,54,52,51,44,52,56,46,56,48,55,49,48,56,93,44,91,45,49,48,50,46,49,53,50,49,54,52,44,52,56,46,56,48,55,50,93,44,91,45,49,48,50,46,50,51,51,54,44,52,56,46,55,50,48,50,57,93,44,91,45,49,48,50,46,50,51,51,56,57,50,44,52,56,46,53,52,54,51,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,87,111,114,99,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,50,50,56,48,44,34,98,101,100,115,34,58,50,52,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,51,49,52,50,53,51,44,52,50,46,51,52,51,54,56,56,93,44,91,45,55,50,46,50,50,49,50,49,56,44,52,50,46,50,52,53,50,53,50,93,44,91,45,55,50,46,49,51,53,48,49,49,44,52,50,46,49,54,49,55,56,52,93,44,91,45,55,50,46,49,51,53,55,49,53,44,52,50,46,48,51,48,50,50,50,93,44,91,45,55,50,46,49,48,50,49,55,44,52,50,46,48,50,56,56,54,57,93,44,91,45,55,49,46,55,57,57,49,56,56,44,52,50,46,48,48,56,48,53,51,93,44,91,45,55,49,46,52,57,56,50,53,57,44,52,50,46,48,49,55,50,55,50,93,44,91,45,55,49,46,52,55,56,49,49,57,44,52,50,46,49,53,54,55,56,50,93,44,91,45,55,49,46,53,56,50,57,49,44,52,50,46,49,57,53,53,53,57,93,44,91,45,55,49,46,53,56,53,50,49,44,52,50,46,51,49,48,57,53,50,93,44,91,45,55,49,46,53,51,49,51,55,55,44,52,50,46,53,50,48,51,53,50,93,44,91,45,55,49,46,54,54,52,54,48,49,44,52,50,46,54,49,49,53,57,56,93,44,91,45,55,49,46,56,52,52,56,52,51,44,52,50,46,54,51,55,57,56,53,93,44,91,45,55,49,46,56,57,56,55,55,51,44,52,50,46,55,49,49,51,49,50,93,44,91,45,55,49,46,57,50,56,57,57,51,44,52,50,46,55,49,50,49,48,50,93,44,91,45,55,50,46,50,56,51,48,52,53,44,52,50,46,55,50,49,54,49,53,93,44,91,45,55,50,46,50,55,54,52,51,52,44,52,50,46,53,55,55,51,55,52,93,44,91,45,55,50,46,51,49,52,50,53,51,44,52,50,46,51,52,51,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,51,48,55,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,50,48,50,50,55,44,52,48,46,53,48,52,48,55,55,93,44,91,45,56,51,46,56,56,48,48,51,57,44,52,48,46,53,51,56,54,57,52,93,44,91,45,56,52,46,48,48,50,51,55,50,44,52,48,46,52,56,51,49,49,53,93,44,91,45,56,52,46,48,49,52,55,54,51,44,52,48,46,50,55,51,52,53,57,93,44,91,45,56,51,46,53,53,49,51,51,56,44,52,48,46,50,50,57,51,55,93,44,91,45,56,51,46,53,50,48,50,50,55,44,52,48,46,53,48,52,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,75,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,48,55,53,44,34,98,101,100,115,34,58,49,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,53,55,51,49,57,52,44,51,54,46,52,56,56,56,51,53,93,44,91,45,49,49,57,46,54,54,54,50,57,44,51,54,46,52,49,56,57,54,93,44,91,45,49,49,57,46,57,53,57,50,50,55,44,51,54,46,52,48,48,57,55,53,93,44,91,45,49,49,57,46,57,53,57,50,49,44,51,54,46,49,56,49,52,48,51,93,44,91,45,49,50,48,46,51,49,53,48,54,56,44,51,53,46,57,48,55,49,56,54,93,44,91,45,49,50,48,46,50,49,51,57,55,57,44,51,53,46,55,56,57,50,55,54,93,44,91,45,49,50,48,46,49,57,52,49,52,54,44,51,53,46,55,56,57,50,48,52,93,44,91,45,49,49,57,46,53,51,56,49,49,54,44,51,53,46,55,56,57,53,54,55,93,44,91,45,49,49,57,46,53,50,57,51,53,56,44,51,54,46,50,54,57,56,53,93,44,91,45,49,49,57,46,52,55,52,56,57,50,44,51,54,46,52,48,48,57,53,51,93,44,91,45,49,49,57,46,53,55,51,49,57,52,44,51,54,46,52,56,56,56,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,83,97,110,32,68,105,101,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,48,50,56,51,51,44,34,98,101,100,115,34,58,54,56,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,54,49,49,48,56,49,44,51,51,46,51,51,51,57,57,50,93,44,91,45,49,49,55,46,52,51,53,53,54,51,44,51,51,46,49,55,55,53,49,50,93,44,91,45,49,49,55,46,51,50,51,50,55,57,44,51,50,46,57,48,51,48,54,52,93,44,91,45,49,49,55,46,51,50,48,57,51,57,44,51,50,46,54,56,57,56,52,55,93,44,91,45,49,49,55,46,50,50,51,51,48,50,44,51,50,46,54,50,49,50,51,56,93,44,91,45,49,49,55,46,50,48,52,57,49,55,44,51,50,46,53,50,56,56,51,50,93,44,91,45,49,49,54,46,49,48,54,49,54,56,44,51,50,46,54,49,56,52,56,93,44,91,45,49,49,54,46,49,48,51,50,53,50,44,51,51,46,48,55,52,54,55,93,44,91,45,49,49,54,46,48,56,53,49,54,53,44,51,51,46,52,50,53,57,51,50,93,44,91,45,49,49,55,46,48,51,48,56,54,49,44,51,51,46,52,50,54,57,51,49,93,44,91,45,49,49,55,46,50,52,49,50,55,49,44,51,51,46,52,51,49,57,57,51,93,44,91,45,49,49,55,46,51,55,48,57,50,53,44,51,51,46,52,57,48,53,52,57,93,44,91,45,49,49,55,46,53,48,57,55,50,50,44,51,51,46,53,48,53,48,49,57,93,44,91,45,49,49,55,46,53,55,56,52,56,44,51,51,46,52,53,51,57,50,55,93,44,91,45,49,49,55,46,54,49,49,48,56,49,44,51,51,46,51,51,51,57,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,51,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,50,53,55,53,50,55,44,49,56,46,48,55,53,56,56,52,93,44,91,45,54,54,46,51,51,49,50,52,52,44,49,56,46,48,49,53,56,57,49,93,44,91,45,54,54,46,51,50,51,50,50,44,49,55,46,56,55,55,54,54,55,93,44,91,45,54,54,46,49,56,55,51,52,50,44,49,55,46,56,55,55,48,51,54,93,44,91,45,54,54,46,50,50,53,50,55,53,44,49,55,46,57,50,52,54,53,50,93,44,91,45,54,54,46,49,54,54,49,52,53,44,49,56,46,48,53,48,48,54,51,93,44,91,45,54,54,46,50,50,52,52,57,44,49,56,46,48,57,53,51,51,57,93,44,91,45,54,54,46,50,53,55,53,50,55,44,49,56,46,48,55,53,56,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,52,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,48,50,54,50,56,44,51,50,46,54,57,48,48,49,56,93,44,91,45,56,52,46,49,48,52,57,54,54,44,51,50,46,54,55,51,51,56,53,93,44,91,45,56,52,46,48,48,51,51,54,51,44,51,50,46,53,50,57,57,50,55,93,44,91,45,56,51,46,55,54,54,57,54,51,44,51,50,46,54,57,50,52,57,53,93,44,91,45,56,51,46,55,48,49,48,57,44,51,50,46,54,57,49,53,57,56,93,44,91,45,56,51,46,55,48,49,49,53,50,44,51,50,46,54,57,50,49,54,57,93,44,91,45,56,51,46,56,48,56,50,54,55,44,51,50,46,55,50,56,54,56,50,93,44,91,45,56,51,46,56,57,49,57,50,50,44,51,50,46,56,52,56,51,53,49,93,44,91,45,56,52,46,49,50,52,50,55,53,44,51,50,46,56,52,57,53,54,50,93,44,91,45,56,52,46,50,48,50,54,50,56,44,51,50,46,54,57,48,48,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,78,97,103,117,97,98,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,56,50,54,48,54,51,44,49,56,46,50,48,48,52,48,56,93,44,91,45,54,53,46,54,57,57,51,51,53,44,49,56,46,49,49,54,49,49,51,93,44,91,45,54,53,46,54,53,52,55,50,56,44,49,56,46,49,51,51,51,51,53,93,44,91,45,54,53,46,54,55,49,44,49,56,46,50,50,51,48,53,50,93,44,91,45,54,53,46,55,54,54,56,51,49,44,49,56,46,50,56,48,48,48,52,93,44,91,45,54,53,46,56,50,52,50,50,44,49,56,46,50,55,51,48,53,52,93,44,91,45,54,53,46,56,50,54,48,54,51,44,49,56,46,50,48,48,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,54,55,56,44,34,98,101,100,115,34,58,49,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,56,48,51,51,44,51,56,46,56,52,55,50,48,55,93,44,91,45,57,52,46,54,48,57,48,56,44,51,56,46,55,51,56,48,57,57,93,44,91,45,57,52,46,54,49,50,56,56,50,44,51,56,46,52,55,55,53,57,55,93,44,91,45,57,52,46,48,54,53,55,49,51,44,51,56,46,52,52,55,48,56,55,93,44,91,45,57,52,46,48,54,52,51,49,55,44,51,56,46,53,54,55,51,56,93,44,91,45,57,52,46,49,49,57,54,54,52,44,51,56,46,53,54,56,55,49,50,93,44,91,45,57,52,46,49,49,57,48,57,54,44,51,56,46,56,51,51,49,54,55,93,44,91,45,57,52,46,54,48,56,48,51,51,44,51,56,46,56,52,55,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,68,117,116,99,104,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,56,57,52,44,34,98,101,100,115,34,58,57,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,50,57,54,50,54,44,52,50,46,48,55,56,55,55,56,93,44,91,45,55,51,46,57,54,50,50,50,49,44,52,49,46,57,48,49,48,50,93,44,91,45,55,51,46,57,53,51,51,48,55,44,52,49,46,53,56,57,57,55,55,93,44,91,45,55,51,46,57,56,49,52,56,54,44,52,49,46,52,51,56,57,48,53,93,44,91,45,55,51,46,57,51,51,55,55,53,44,52,49,46,52,56,56,50,55,57,93,44,91,45,55,51,46,53,51,48,48,54,55,44,52,49,46,53,50,55,49,57,52,93,44,91,45,55,51,46,53,49,56,48,56,44,52,49,46,54,54,54,55,50,51,93,44,91,45,55,51,46,52,56,55,51,49,57,44,52,50,46,48,52,57,53,50,53,93,44,91,45,55,51,46,52,57,55,48,49,56,44,52,50,46,48,52,57,54,50,52,93,44,91,45,55,51,46,53,50,55,48,55,50,44,52,49,46,57,55,55,57,56,93,44,91,45,55,51,46,55,49,48,57,51,44,52,50,46,48,48,53,52,56,56,93,44,91,45,55,51,46,57,50,57,54,50,54,44,52,50,46,48,55,56,55,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,55,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,55,57,54,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,57,57,49,55,51,44,51,48,46,51,55,57,49,53,50,93,44,91,45,57,54,46,54,52,48,56,56,51,44,51,48,46,50,57,54,55,56,54,93,44,91,45,57,54,46,55,57,52,53,53,50,44,51,48,46,49,54,48,53,52,53,93,44,91,45,57,54,46,54,56,51,51,57,52,44,51,48,46,49,53,49,48,51,56,93,44,91,45,57,54,46,54,50,49,57,56,44,51,48,46,48,52,52,50,56,51,93,44,91,45,57,54,46,50,57,50,56,52,57,44,51,48,46,48,57,54,49,53,93,44,91,45,57,54,46,49,52,54,48,53,50,44,51,48,46,48,55,48,50,50,52,93,44,91,45,57,54,46,49,57,49,52,49,56,44,51,48,46,49,51,52,54,54,57,93,44,91,45,57,54,46,48,57,51,49,54,53,44,51,48,46,50,50,53,49,56,55,93,44,91,45,57,54,46,49,53,52,54,51,44,51,48,46,51,51,48,50,56,56,93,44,91,45,57,54,46,50,57,57,49,55,51,44,51,48,46,51,55,57,49,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,80,117,101,98,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,54,56,53,44,34,98,101,100,115,34,58,49,50,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,52,49,53,51,51,44,51,56,46,53,49,57,53,54,57,93,44,91,45,49,48,52,46,57,52,48,51,54,54,44,51,56,46,50,53,56,50,55,53,93,44,91,45,49,48,53,46,48,52,57,50,49,53,44,51,56,46,50,53,55,57,55,51,93,44,91,45,49,48,53,46,48,52,57,57,49,55,44,51,55,46,57,49,53,52,55,57,93,44,91,45,49,48,53,46,48,49,51,55,50,57,44,51,55,46,56,56,49,50,55,49,93,44,91,45,49,48,52,46,54,52,54,51,56,51,44,51,55,46,57,48,48,53,50,55,93,44,91,45,49,48,52,46,51,53,49,49,48,57,44,51,55,46,56,49,55,52,56,56,93,44,91,45,49,48,52,46,48,54,49,49,51,50,44,51,55,46,55,51,52,55,48,52,93,44,91,45,49,48,52,46,48,53,56,50,52,50,44,51,56,46,49,52,54,52,57,50,93,44,91,45,49,48,52,46,48,53,51,57,50,49,44,51,56,46,53,50,50,51,57,51,93,44,91,45,49,48,52,46,57,52,49,53,51,51,44,51,56,46,53,49,57,53,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,55,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,56,53,56,54,55,44,51,55,46,48,54,55,48,53,49,93,44,91,45,57,50,46,57,48,51,50,55,51,44,51,55,46,48,55,48,54,53,49,93,44,91,45,57,50,46,57,48,57,51,51,54,44,51,54,46,56,48,57,49,55,56,93,44,91,45,57,50,46,55,54,52,56,54,57,44,51,54,46,56,48,54,48,57,55,93,44,91,45,57,50,46,49,49,50,51,52,54,44,51,54,46,55,57,52,50,51,49,93,44,91,45,57,50,46,48,56,56,55,48,56,44,51,55,46,48,53,54,50,52,56,93,44,91,45,57,50,46,50,53,49,51,53,57,44,51,55,46,48,53,57,54,53,51,93,44,91,45,57,50,46,54,56,53,56,54,55,44,51,55,46,48,54,55,48,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,111,116,116,105,110,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,57,54,53,53,50,44,52,56,46,57,57,57,52,50,49,93,44,91,45,49,48,49,46,52,57,54,54,56,52,44,52,56,46,55,50,48,48,55,56,93,44,91,45,49,48,49,46,52,53,49,50,55,53,44,52,56,46,53,52,54,48,55,57,93,44,91,45,49,48,49,46,48,53,57,54,54,51,44,52,56,46,53,52,53,52,49,57,93,44,91,45,49,48,49,46,48,53,57,54,50,52,44,52,56,46,54,51,50,51,54,49,93,44,91,45,49,48,48,46,52,48,54,55,56,44,52,56,46,54,51,49,56,55,56,93,44,91,45,49,48,48,46,50,55,54,54,49,57,44,52,56,46,53,52,52,56,49,51,93,44,91,45,49,48,48,46,49,52,53,56,53,56,44,52,56,46,53,52,53,50,49,49,93,44,91,45,49,48,48,46,49,56,51,48,51,52,44,52,56,46,55,49,56,57,48,57,93,44,91,45,49,48,48,46,49,56,50,54,48,56,44,52,56,46,57,57,57,50,48,52,93,44,91,45,49,48,49,46,52,57,54,53,53,50,44,52,56,46,57,57,57,52,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,50,49,48,54,44,34,98,101,100,115,34,58,56,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,49,55,49,50,55,44,51,53,46,50,52,53,53,55,56,93,44,91,45,55,56,46,55,57,51,52,52,55,44,51,53,46,50,54,53,57,55,54,93,44,91,45,55,57,46,48,57,53,56,48,56,44,51,53,46,49,57,50,48,54,56,93,44,91,45,55,57,46,48,57,55,53,57,49,44,51,53,46,49,55,52,50,50,53,93,44,91,45,55,57,46,48,57,48,50,57,49,44,51,53,46,48,52,50,48,51,49,93,44,91,45,55,57,46,48,51,56,55,52,55,44,51,52,46,57,53,50,55,49,53,93,44,91,45,55,56,46,57,48,49,57,57,56,44,51,52,46,56,51,53,50,54,56,93,44,91,45,55,56,46,52,57,52,55,48,53,44,51,52,46,56,53,54,49,56,50,93,44,91,45,55,56,46,54,52,55,55,51,52,44,51,52,46,57,57,52,55,52,93,44,91,45,55,56,46,54,55,48,54,53,44,51,53,46,48,57,50,53,57,50,93,44,91,45,55,56,46,54,49,55,49,50,55,44,51,53,46,50,52,53,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,72,111,116,32,83,112,114,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,51,49,50,57,52,57,44,52,51,46,56,49,51,50,57,51,93,44,91,45,49,48,57,46,49,55,49,52,52,56,44,52,51,46,54,57,57,49,57,56,93,44,91,45,49,48,57,46,49,55,49,54,51,56,44,52,51,46,54,49,57,55,54,52,93,44,91,45,49,48,56,46,57,51,52,49,52,49,44,52,51,46,54,49,57,49,54,51,93,44,91,45,49,48,56,46,54,57,52,54,55,50,44,52,51,46,53,55,53,55,53,53,93,44,91,45,49,48,56,46,54,57,53,48,55,50,44,52,51,46,53,51,50,50,53,53,93,44,91,45,49,48,56,46,51,51,55,56,54,49,44,52,51,46,52,53,57,55,54,53,93,44,91,45,49,48,55,46,53,57,53,49,51,55,44,52,51,46,52,55,50,50,55,57,93,44,91,45,49,48,55,46,53,57,53,49,48,53,44,52,51,46,53,48,49,51,57,55,93,44,91,45,49,48,55,46,53,57,53,49,53,55,44,52,51,46,54,52,54,52,50,55,93,44,91,45,49,48,55,46,55,49,53,56,55,54,44,52,51,46,55,51,51,51,52,51,93,44,91,45,49,48,55,46,57,53,54,53,55,55,44,52,51,46,55,51,51,52,52,54,93,44,91,45,49,48,55,46,57,53,54,52,52,56,44,52,51,46,56,49,56,54,54,54,93,44,91,45,49,48,56,46,49,55,51,54,49,55,44,52,51,46,56,49,56,57,53,51,93,44,91,45,49,48,56,46,52,50,57,53,54,51,44,52,51,46,57,48,51,51,53,53,93,44,91,45,49,48,56,46,53,53,48,55,53,56,44,52,52,46,48,55,57,52,48,51,93,44,91,45,49,48,56,46,55,57,50,50,55,55,44,52,52,46,48,55,57,54,49,54,93,44,91,45,49,48,56,46,55,57,49,55,55,57,44,52,51,46,57,57,49,48,53,51,93,44,91,45,49,48,56,46,57,49,50,55,56,51,44,52,51,46,57,48,52,55,53,52,93,44,91,45,49,48,57,46,48,57,50,56,55,56,44,52,51,46,57,48,52,52,55,52,93,44,91,45,49,48,57,46,48,57,51,54,48,51,44,52,51,46,56,49,55,54,49,57,93,44,91,45,49,48,57,46,51,49,50,57,52,57,44,52,51,46,56,49,51,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,99,111,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,56,52,56,52,44,52,52,46,56,53,54,52,53,56,93,44,91,45,56,51,46,56,56,54,54,51,52,44,52,52,46,53,48,56,57,55,54,93,44,91,45,56,50,46,51,50,57,53,49,57,44,52,52,46,53,49,50,56,51,52,93,44,91,45,56,50,46,52,48,56,55,49,55,44,52,52,46,56,53,56,49,52,55,93,44,91,45,56,51,46,56,56,56,52,56,52,44,52,52,46,56,53,54,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,80,108,97,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,48,55,55,44,34,98,101,100,115,34,58,55,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,48,54,51,50,51,44,51,57,46,51,49,54,52,57,54,93,44,91,45,49,50,48,46,54,52,53,55,57,53,44,51,57,46,51,49,53,49,53,53,93,44,91,45,49,50,48,46,55,50,55,56,57,51,44,51,57,46,50,56,56,48,56,49,93,44,91,45,49,50,48,46,57,54,54,48,56,44,51,57,46,49,50,55,57,50,56,93,44,91,45,49,50,49,46,48,52,49,54,48,56,44,51,57,46,48,49,51,55,57,49,93,44,91,45,49,50,49,46,50,55,57,53,51,51,44,51,57,46,48,51,52,54,49,56,93,44,91,45,49,50,49,46,52,49,52,55,55,57,44,51,56,46,57,57,54,52,53,50,93,44,91,45,49,50,49,46,52,54,57,51,53,54,44,51,56,46,57,50,53,57,57,50,93,44,91,45,49,50,49,46,52,56,52,51,57,54,44,51,56,46,55,51,52,53,57,56,93,44,91,45,49,50,49,46,49,52,49,53,57,53,44,51,56,46,55,49,49,57,51,57,93,44,91,45,49,50,49,46,48,53,50,57,49,49,44,51,56,46,57,48,48,49,52,52,93,44,91,45,49,50,48,46,57,51,52,54,53,51,44,51,56,46,57,54,51,55,57,49,93,44,91,45,49,50,48,46,55,51,48,49,55,52,44,51,57,46,48,48,51,57,53,56,93,44,91,45,49,50,48,46,53,55,50,51,53,50,44,51,56,46,57,49,52,52,93,44,91,45,49,50,48,46,52,51,53,50,52,44,51,57,46,48,50,56,51,57,55,93,44,91,45,49,50,48,46,49,56,52,48,57,56,44,51,57,46,48,51,49,48,49,52,93,44,91,45,49,50,48,46,48,48,50,52,54,49,44,51,57,46,48,54,55,52,56,57,93,44,91,45,49,50,48,46,48,48,51,52,50,57,44,51,57,46,49,49,50,54,56,55,93,44,91,45,49,50,48,46,48,48,52,50,57,55,44,51,57,46,49,54,53,54,48,51,93,44,91,45,49,50,48,46,48,48,54,51,50,51,44,51,57,46,51,49,54,52,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,83,101,97,114,99,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,52,52,54,54,54,44,51,54,46,49,49,53,49,50,51,93,44,91,45,57,50,46,57,53,49,51,49,53,44,51,53,46,55,50,52,54,54,51,93,44,91,45,57,50,46,56,48,57,55,54,51,44,51,53,46,55,50,50,52,48,49,93,44,91,45,57,50,46,54,51,49,50,48,55,44,51,53,46,55,49,56,51,54,53,93,44,91,45,57,50,46,54,50,57,56,51,55,44,51,53,46,55,57,48,56,50,51,93,44,91,45,57,50,46,52,49,54,56,52,55,44,51,53,46,55,56,56,53,57,49,93,44,91,45,57,50,46,52,49,52,51,57,54,44,51,53,46,57,55,53,55,57,56,93,44,91,45,57,50,46,52,49,49,53,48,50,44,51,54,46,48,54,50,55,53,54,93,44,91,45,57,50,46,56,51,55,55,55,54,44,51,54,46,48,55,48,49,50,52,93,44,91,45,57,50,46,56,57,48,54,57,53,44,51,54,46,49,49,52,49,51,50,93,44,91,45,57,50,46,57,52,52,54,54,54,44,51,54,46,49,49,53,49,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,53,34,44,34,78,65,77,69,34,58,34,76,121,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,48,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,53,54,56,56,52,44,51,51,46,51,57,52,55,54,93,44,91,45,49,48,50,46,48,55,53,57,50,57,44,51,51,46,51,56,57,53,56,54,93,44,91,45,49,48,50,46,48,55,54,50,49,52,44,51,50,46,57,53,57,55,48,50,93,44,91,45,49,48,49,46,54,57,49,50,56,52,44,51,50,46,57,54,49,56,51,56,93,44,91,45,49,48,49,46,53,53,55,52,51,52,44,51,50,46,57,54,49,48,50,53,93,44,91,45,49,48,49,46,53,53,54,56,56,52,44,51,51,46,51,57,52,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,79,116,115,101,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,50,52,52,44,34,98,101,100,115,34,58,50,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,50,57,53,56,55,55,44,52,50,46,55,52,52,49,48,54,93,44,91,45,55,53,46,51,51,50,57,52,57,44,52,50,46,53,54,54,51,49,50,93,44,91,45,55,53,46,52,48,52,52,54,52,44,52,50,46,52,55,57,49,49,55,93,44,91,45,55,53,46,52,49,53,51,49,57,44,52,50,46,51,49,52,49,53,49,93,44,91,45,55,53,46,48,49,57,56,49,56,44,52,50,46,52,50,57,48,52,53,93,44,91,45,55,52,46,56,52,52,49,50,49,44,52,50,46,53,49,50,53,57,49,93,44,91,45,55,52,46,55,49,49,53,56,44,52,50,46,53,49,55,55,57,57,93,44,91,45,55,52,46,54,51,48,54,51,49,44,52,50,46,54,50,54,54,55,52,93,44,91,45,55,52,46,54,52,56,50,57,56,44,52,50,46,56,50,57,53,53,56,93,44,91,45,55,52,46,55,54,51,51,48,51,44,52,50,46,56,54,51,50,51,55,93,44,91,45,55,52,46,57,48,54,55,51,56,44,52,50,46,56,50,52,57,52,51,93,44,91,45,55,53,46,49,48,48,57,57,57,44,52,50,46,57,48,56,51,54,51,93,44,91,45,55,53,46,50,49,50,49,53,56,44,52,50,46,56,55,57,57,55,51,93,44,91,45,55,53,46,50,52,55,57,54,51,44,52,50,46,56,55,49,54,48,52,93,44,91,45,55,53,46,50,57,53,56,55,55,44,52,50,46,55,52,52,49,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,82,105,99,104,109,111,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,49,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,55,53,51,54,53,44,51,53,46,49,52,51,48,56,49,93,44,91,45,55,57,46,57,52,54,49,50,50,44,51,53,46,49,49,56,53,57,51,93,44,91,45,55,57,46,56,52,57,53,51,54,44,51,52,46,57,48,48,48,48,54,93,44,91,45,55,57,46,57,50,55,52,49,50,44,51,52,46,56,48,54,55,51,52,93,44,91,45,55,57,46,54,57,50,57,52,52,44,51,52,46,56,48,53,49,53,53,93,44,91,45,55,57,46,53,54,49,56,53,54,44,51,52,46,57,49,48,51,53,93,44,91,45,55,57,46,53,55,51,52,50,51,44,51,52,46,57,57,50,50,49,93,44,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,44,91,45,55,57,46,53,54,54,52,57,55,44,51,53,46,48,54,52,48,49,49,93,44,91,45,55,57,46,54,49,52,51,48,52,44,51,53,46,49,54,51,54,55,57,93,44,91,45,55,57,46,56,53,49,50,54,56,44,51,53,46,49,56,51,56,53,53,93,44,91,45,56,48,46,48,55,53,51,54,53,44,51,53,46,49,52,51,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,72,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,50,51,57,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,44,91,45,55,57,46,51,53,51,51,49,50,44,51,52,46,57,52,50,53,54,49,93,44,91,45,55,57,46,51,52,55,56,54,56,44,51,52,46,56,51,56,53,53,51,93,44,91,45,55,57,46,49,57,49,51,57,49,44,51,52,46,56,51,51,55,49,55,93,44,91,45,55,57,46,48,51,56,55,52,55,44,51,52,46,57,53,50,55,49,53,93,44,91,45,55,57,46,48,57,48,50,57,49,44,51,53,46,48,52,50,48,51,49,93,44,91,45,55,57,46,48,57,55,53,57,49,44,51,53,46,49,55,52,50,50,53,93,44,91,45,55,57,46,50,50,57,55,49,50,44,51,53,46,50,49,48,54,48,50,93,44,91,45,55,57,46,51,51,53,52,55,55,44,51,53,46,49,54,49,53,56,56,93,44,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,79,116,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,57,54,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,54,51,55,54,52,44,52,48,46,55,56,51,57,54,93,44,91,45,57,54,46,52,54,51,54,51,50,44,52,48,46,53,50,51,48,49,51,93,44,91,45,57,54,46,48,54,55,48,49,50,44,52,48,46,53,50,51,49,52,56,93,44,91,45,57,53,46,55,48,57,57,55,52,44,52,48,46,53,50,51,55,57,56,93,44,91,45,57,53,46,55,54,53,54,52,53,44,52,48,46,53,56,53,50,48,56,93,44,91,45,57,53,46,56,56,49,53,50,57,44,52,48,46,55,53,48,54,49,49,93,44,91,45,57,53,46,56,51,52,49,50,44,52,48,46,55,56,51,55,56,51,93,44,91,45,57,54,46,52,54,51,55,54,52,44,52,48,46,55,56,51,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,97,109,101,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,49,57,49,49,56,44,52,49,46,54,48,50,49,56,56,93,44,91,45,55,56,46,52,50,48,48,50,56,44,52,49,46,52,48,53,48,52,54,93,44,91,45,55,56,46,50,53,51,57,53,57,44,52,49,46,52,48,52,55,50,49,93,44,91,45,55,56,46,50,51,54,56,49,55,44,52,49,46,50,51,48,52,55,53,93,44,91,45,55,56,46,48,57,51,51,56,49,44,52,49,46,50,49,54,57,51,49,93,44,91,45,55,55,46,57,56,56,55,56,54,44,52,49,46,51,54,55,52,53,51,93,44,91,45,55,55,46,57,56,57,49,57,52,44,52,49,46,52,55,52,56,50,50,93,44,91,45,55,56,46,48,53,48,52,52,50,44,52,49,46,52,55,53,52,54,50,93,44,91,45,55,56,46,50,48,51,52,50,50,44,52,49,46,54,49,56,49,53,55,93,44,91,45,55,56,46,52,49,57,49,49,56,44,52,49,46,54,48,50,49,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,68,111,114,99,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,52,55,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,51,54,49,56,53,49,44,51,51,46,50,53,55,52,52,51,93,44,91,45,56,48,46,53,48,50,55,57,44,51,51,46,51,51,52,52,57,54,93,44,91,45,56,48,46,55,57,48,50,57,54,44,51,51,46,49,56,48,56,52,93,44,91,45,56,48,46,54,50,51,56,49,53,44,51,51,46,48,54,54,57,50,55,93,44,91,45,56,48,46,52,48,50,50,50,54,44,51,51,46,48,53,51,50,51,56,93,44,91,45,56,48,46,52,48,49,51,52,44,51,50,46,56,53,56,52,54,54,93,44,91,45,56,48,46,49,53,55,50,54,53,44,51,50,46,56,49,56,49,56,55,93,44,91,45,56,48,46,48,55,57,48,50,56,44,51,50,46,57,50,55,56,49,49,93,44,91,45,56,48,46,49,52,57,50,52,54,44,51,51,46,48,50,49,54,48,49,93,44,91,45,56,48,46,51,51,53,57,52,44,51,51,46,49,52,53,52,54,51,93,44,91,45,56,48,46,51,54,49,56,53,49,44,51,51,46,50,53,55,52,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,87,97,115,101,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,48,57,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,54,55,57,55,49,44,52,52,46,49,57,53,56,51,54,93,44,91,45,57,51,46,55,54,55,55,54,49,44,52,51,46,56,52,55,57,53,54,93,44,91,45,57,51,46,54,52,56,50,57,44,52,51,46,56,52,56,49,51,57,93,44,91,45,57,51,46,52,48,54,54,52,50,44,52,51,46,56,52,56,49,50,93,44,91,45,57,51,46,52,48,54,53,54,53,44,52,52,46,49,57,54,51,55,55,93,44,91,45,57,51,46,53,50,53,50,51,49,44,52,52,46,49,57,54,49,51,52,93,44,91,45,57,51,46,55,54,55,57,55,49,44,52,52,46,49,57,53,56,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,114,117,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,53,53,56,54,52,44,52,51,46,57,51,52,51,55,49,93,44,91,45,57,57,46,51,49,48,56,50,54,44,52,51,46,56,53,53,50,49,54,93,44,91,45,57,57,46,52,49,48,49,53,44,52,51,46,55,55,52,54,49,57,93,44,91,45,57,57,46,52,48,54,57,54,49,44,52,51,46,55,48,53,50,55,55,93,44,91,45,57,57,46,50,57,55,56,56,50,44,52,51,46,52,57,57,56,53,54,93,44,91,45,57,56,46,55,57,52,53,56,56,44,52,51,46,52,57,57,49,56,55,93,44,91,45,57,56,46,56,48,55,55,55,49,44,52,51,46,57,51,53,50,50,51,93,44,91,45,57,56,46,57,50,54,57,57,55,44,52,51,46,57,51,53,49,52,51,93,44,91,45,57,57,46,51,53,53,56,54,52,44,52,51,46,57,51,52,51,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,52,53,52,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,56,53,48,54,50,44,51,53,46,54,54,48,49,48,56,93,44,91,45,56,53,46,56,55,54,57,54,50,44,51,53,46,53,50,52,48,57,53,93,44,91,45,56,53,46,54,48,55,51,50,54,44,51,53,46,53,51,49,54,53,49,93,44,91,45,56,53,46,53,53,55,53,51,53,44,51,53,46,53,51,50,57,55,55,93,44,91,45,56,53,46,53,57,52,54,51,50,44,51,53,46,54,49,55,56,57,56,93,44,91,45,56,53,46,54,48,50,56,55,54,44,51,53,46,55,57,52,57,57,54,93,44,91,45,56,53,46,54,56,50,48,57,53,44,51,53,46,56,51,49,50,53,52,93,44,91,45,56,53,46,56,56,53,49,53,54,44,51,53,46,56,51,57,54,53,56,93,44,91,45,56,53,46,57,56,52,56,57,49,44,51,53,46,55,51,52,53,53,51,93,44,91,45,56,53,46,57,56,53,48,54,50,44,51,53,46,54,54,48,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,49,50,49,50,49,44,51,57,46,51,55,56,57,54,56,93,44,91,45,56,56,46,48,48,55,55,54,54,44,51,57,46,49,55,51,57,50,53,93,44,91,45,56,55,46,57,53,48,51,56,53,44,51,57,46,49,55,52,56,56,50,93,44,91,45,56,55,46,54,50,56,55,57,56,44,51,57,46,49,53,55,53,49,51,93,44,91,45,56,55,46,54,48,52,49,52,49,44,51,57,46,50,53,57,52,53,56,93,44,91,45,56,55,46,53,51,49,54,52,54,44,51,57,46,51,52,55,56,56,56,93,44,91,45,56,55,46,53,51,49,54,52,44,51,57,46,52,55,55,49,48,53,93,44,91,45,56,55,46,57,54,48,49,55,57,44,51,57,46,52,56,49,51,48,57,93,44,91,45,56,56,46,48,49,50,49,50,49,44,51,57,46,51,55,56,57,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,82,111,98,101,114,116,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,54,50,48,51,49,44,51,56,46,53,53,52,49,50,53,93,44,91,45,56,52,46,49,48,50,49,44,51,56,46,52,53,57,51,55,57,93,44,91,45,56,51,46,57,56,48,48,54,56,44,51,56,46,52,51,57,52,52,56,93,44,91,45,56,51,46,57,51,48,51,52,56,44,51,56,46,52,57,50,50,55,56,93,44,91,45,56,51,46,57,57,49,54,48,53,44,51,56,46,53,57,51,55,48,49,93,44,91,45,56,52,46,49,54,50,48,51,49,44,51,56,46,53,53,52,49,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,51,57,50,51,50,44,51,54,46,52,57,55,57,51,52,93,44,91,45,56,57,46,53,52,53,48,48,54,44,51,54,46,51,51,54,56,48,57,93,44,91,45,56,57,46,53,51,54,52,52,49,44,51,54,46,50,55,50,56,50,55,93,44,91,45,56,57,46,54,50,57,52,53,51,44,51,54,46,49,56,53,51,56,50,93,44,91,45,56,57,46,52,56,50,57,55,49,44,51,54,46,50,49,50,54,53,57,93,44,91,45,56,57,46,51,54,48,49,50,44,51,54,46,52,48,57,50,55,55,93,44,91,45,56,57,46,51,52,54,48,54,54,44,51,54,46,53,48,51,50,51,50,93,44,91,45,56,57,46,52,49,55,50,55,53,44,51,54,46,52,57,57,48,49,49,93,44,91,45,56,57,46,52,56,53,52,50,55,44,51,54,46,52,57,55,52,57,49,93,44,91,45,56,57,46,53,51,57,50,51,50,44,51,54,46,52,57,55,57,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,101,114,107,101,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,48,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,51,54,49,56,53,49,44,51,51,46,50,53,55,52,52,51,93,44,91,45,56,48,46,51,51,53,57,52,44,51,51,46,49,52,53,52,54,51,93,44,91,45,56,48,46,49,52,57,50,52,54,44,51,51,46,48,50,49,54,48,49,93,44,91,45,56,48,46,48,53,53,53,57,53,44,51,50,46,57,57,56,55,49,93,44,91,45,55,57,46,57,53,54,52,51,51,44,51,50,46,56,53,57,55,57,49,93,44,91,45,55,57,46,56,52,49,48,54,55,44,51,50,46,57,49,50,52,54,57,93,44,91,45,55,57,46,54,52,51,51,48,49,44,51,51,46,49,50,51,52,53,51,93,44,91,45,55,57,46,53,49,56,56,52,52,44,51,51,46,49,52,56,50,57,55,93,44,91,45,55,57,46,52,52,54,54,57,57,44,51,51,46,50,49,51,52,53,56,93,44,91,45,55,57,46,54,55,55,48,49,52,44,51,51,46,51,48,52,57,52,52,93,44,91,45,55,57,46,57,55,49,57,54,51,44,51,51,46,53,48,48,57,51,55,93,44,91,45,56,48,46,49,48,49,54,57,55,44,51,51,46,52,57,54,56,57,49,93,44,91,45,56,48,46,50,50,50,50,54,55,44,51,51,46,52,52,51,55,49,54,93,44,91,45,56,48,46,50,53,53,54,52,50,44,51,51,46,51,48,48,48,48,50,93,44,91,45,56,48,46,51,54,49,56,53,49,44,51,51,46,50,53,55,52,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,97,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,50,57,54,44,34,98,101,100,115,34,58,53,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,48,55,50,50,49,44,51,52,46,51,57,55,52,52,55,93,44,91,45,57,50,46,57,52,56,48,55,49,44,51,52,46,51,56,57,50,53,53,93,44,91,45,57,50,46,57,49,53,48,55,57,44,51,52,46,53,48,54,49,49,52,93,44,91,45,57,50,46,55,57,51,49,57,55,44,51,52,46,53,48,51,54,48,54,93,44,91,45,57,50,46,56,48,56,48,50,56,44,51,52,46,53,57,48,52,48,54,93,44,91,45,57,50,46,57,55,57,57,48,50,44,51,52,46,54,51,55,50,50,50,93,44,91,45,57,50,46,57,54,57,50,53,44,51,52,46,55,55,50,50,54,54,93,44,91,45,57,51,46,48,55,53,49,55,56,44,51,52,46,55,55,49,56,57,50,93,44,91,45,57,51,46,50,56,55,55,56,53,44,51,52,46,55,55,51,49,57,51,93,44,91,45,57,51,46,51,57,52,50,56,57,44,51,52,46,55,52,51,51,57,51,93,44,91,45,57,51,46,52,48,55,50,50,49,44,51,52,46,51,57,55,52,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,79,115,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,52,53,57,50,52,44,51,56,46,55,51,57,49,49,50,93,44,91,45,57,53,46,57,53,48,50,56,50,44,51,56,46,52,51,52,49,48,53,93,44,91,45,57,53,46,53,48,56,50,54,55,44,51,56,46,52,51,51,57,51,51,93,44,91,45,57,53,46,53,48,48,55,51,56,44,51,56,46,55,51,56,56,48,56,93,44,91,45,57,53,46,53,48,48,55,50,52,44,51,56,46,56,54,57,56,49,53,93,44,91,45,57,53,46,57,52,54,53,56,55,44,51,56,46,56,54,57,57,55,51,93,44,91,45,57,53,46,57,52,53,57,50,52,44,51,56,46,55,51,57,49,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,84,114,117,109,98,117,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,55,57,52,44,34,98,101,100,115,34,58,55,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,48,51,51,49,57,44,52,49,46,51,52,55,56,54,93,44,91,45,56,49,46,48,48,50,50,57,44,52,49,46,49,51,52,49,56,57,93,44,91,45,56,48,46,53,49,57,48,52,56,44,52,49,46,49,51,51,51,57,52,93,44,91,45,56,48,46,53,49,57,50,49,55,44,52,49,46,52,56,57,48,49,51,93,44,91,45,56,48,46,53,49,57,50,50,53,44,52,49,46,52,57,57,57,50,52,93,44,91,45,56,49,46,48,48,51,49,50,53,44,52,49,46,53,48,49,54,56,53,93,44,91,45,56,49,46,48,48,51,51,49,57,44,52,49,46,51,52,55,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,51,51,34,44,34,78,65,77,69,34,58,34,77,105,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,57,49,54,48,56,44,51,49,46,52,56,52,48,55,49,93,44,91,45,57,56,46,57,54,51,53,57,51,44,51,49,46,52,52,54,50,53,49,93,44,91,45,57,56,46,54,57,54,54,51,52,44,51,49,46,52,48,55,50,56,55,93,44,91,45,57,56,46,54,50,53,54,50,56,44,51,49,46,50,54,57,55,57,56,93,44,91,45,57,56,46,53,54,50,55,51,57,44,51,49,46,50,51,48,53,56,50,93,44,91,45,57,56,46,50,55,49,48,55,44,51,49,46,52,49,54,51,57,56,93,44,91,45,57,56,46,52,54,51,55,51,54,44,51,49,46,54,56,51,57,56,57,93,44,91,45,57,56,46,52,57,50,56,48,50,44,51,49,46,55,50,51,54,48,56,93,44,91,45,57,56,46,54,54,56,52,52,49,44,51,49,46,55,48,48,53,49,52,93,44,91,45,57,56,46,57,57,49,54,48,56,44,51,49,46,52,56,52,48,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,53,57,34,44,34,78,65,77,69,34,58,34,79,108,100,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,49,54,50,56,48,57,44,51,53,46,54,50,55,53,49,53,93,44,91,45,49,48,51,46,48,52,49,55,48,54,44,51,53,46,54,50,50,52,56,56,93,44,91,45,49,48,51,46,48,52,50,53,49,49,44,51,53,46,49,56,51,49,53,55,93,44,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,44,91,45,49,48,50,46,49,54,50,55,53,50,44,51,53,46,54,50,48,48,51,53,93,44,91,45,49,48,50,46,49,54,50,56,48,57,44,51,53,46,54,50,55,53,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,53,54,54,44,34,98,101,100,115,34,58,50,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,57,56,50,57,52,44,52,49,46,48,55,49,48,53,52,93,44,91,45,56,48,46,49,54,54,52,55,50,44,52,49,46,48,48,48,57,50,56,93,44,91,45,56,48,46,49,53,56,53,51,44,52,48,46,56,53,53,48,57,54,93,44,91,45,56,48,46,49,52,56,54,56,50,44,52,48,46,54,55,52,50,56,49,93,44,91,45,55,57,46,54,57,50,57,51,44,52,48,46,54,54,57,55,52,52,93,44,91,45,55,57,46,54,57,48,55,49,49,44,52,49,46,49,55,48,54,57,49,93,44,91,45,55,57,46,54,57,52,57,56,52,44,52,49,46,49,55,50,56,54,53,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,49,55,49,56,54,49,93,44,91,45,56,48,46,48,57,56,50,57,52,44,52,49,46,48,55,49,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,51,55,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,44,91,45,49,49,54,46,49,51,51,53,55,44,52,54,46,50,49,53,50,51,49,93,44,91,45,49,49,54,46,51,48,51,55,49,51,44,52,54,46,49,54,54,55,55,56,93,44,91,45,49,49,54,46,52,53,52,49,49,55,44,52,54,46,49,57,50,48,51,50,93,44,91,45,49,49,54,46,53,49,52,55,48,55,44,52,54,46,48,51,56,55,53,55,93,44,91,45,49,49,54,46,55,48,49,56,49,57,44,52,53,46,57,57,54,51,56,49,93,44,91,45,49,49,54,46,55,57,52,53,54,50,44,52,53,46,56,53,54,48,52,57,93,44,91,45,49,49,54,46,53,57,52,50,49,44,52,53,46,55,55,57,48,56,93,44,91,45,49,49,54,46,52,54,51,54,51,53,44,52,53,46,54,48,50,55,56,53,93,44,91,45,49,49,54,46,53,53,55,54,50,49,44,52,53,46,53,48,51,52,57,53,93,44,91,45,49,49,54,46,54,56,55,49,55,55,44,52,53,46,50,54,55,54,52,51,93,44,91,45,49,49,54,46,51,52,50,56,55,54,44,52,53,46,50,54,55,56,55,50,93,44,91,45,49,49,54,46,50,56,53,57,54,57,44,52,53,46,49,50,56,55,51,50,93,44,91,45,49,49,54,46,49,52,52,51,56,54,44,52,53,46,49,48,55,54,53,49,93,44,91,45,49,49,53,46,57,55,53,55,56,55,44,52,53,46,49,57,53,50,56,50,93,44,91,45,49,49,52,46,54,57,52,48,48,49,44,52,53,46,49,57,55,49,56,50,93,44,91,45,49,49,52,46,54,48,51,57,52,44,52,53,46,50,57,53,56,50,54,93,44,91,45,49,49,52,46,55,57,51,50,48,55,44,52,53,46,52,51,54,51,51,52,93,44,91,45,49,49,52,46,54,54,54,50,50,51,44,52,53,46,52,55,49,51,50,53,93,44,91,45,49,49,52,46,53,54,52,57,57,57,44,52,53,46,53,53,55,56,48,51,93,44,91,45,49,49,52,46,52,57,57,54,54,55,44,52,53,46,54,54,56,53,49,51,93,44,91,45,49,49,52,46,53,54,54,51,52,56,44,52,53,46,55,55,50,55,51,57,93,44,91,45,49,49,52,46,52,48,53,57,49,55,44,52,53,46,56,55,48,52,93,44,91,45,49,49,52,46,52,56,48,53,51,55,44,52,54,46,48,51,48,52,51,57,93,44,91,45,49,49,52,46,52,52,53,50,51,52,44,52,54,46,49,54,55,57,52,54,93,44,91,45,49,49,52,46,52,55,48,55,57,53,44,52,54,46,50,54,53,51,55,55,93,44,91,45,49,49,52,46,51,52,50,57,56,53,44,52,54,46,53,49,56,48,52,93,44,91,45,49,49,52,46,51,51,50,55,57,54,44,52,54,46,54,54,48,53,56,49,93,44,91,45,49,49,52,46,53,57,52,54,51,52,44,52,54,46,54,51,51,52,52,56,93,44,91,45,49,49,53,46,54,50,56,57,53,55,44,52,54,46,52,55,51,54,49,56,93,44,91,45,49,49,53,46,55,56,48,56,49,56,44,52,54,46,50,54,55,50,53,93,44,91,45,49,49,53,46,57,53,55,50,54,56,44,52,54,46,50,56,56,57,51,49,93,44,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,55,49,57,49,49,44,51,56,46,54,48,57,51,53,51,93,44,91,45,57,55,46,51,55,49,55,53,44,51,56,46,49,55,51,54,55,51,93,44,91,45,57,55,46,49,53,51,48,57,51,44,51,56,46,49,55,52,54,51,52,93,44,91,45,57,55,46,49,53,50,57,49,51,44,51,56,46,48,56,55,55,48,52,93,44,91,45,57,54,46,56,52,48,55,55,50,44,51,56,46,48,56,53,54,50,50,93,44,91,45,57,54,46,56,49,57,53,48,57,44,51,56,46,53,50,50,52,52,57,93,44,91,45,57,54,46,57,51,48,50,56,54,44,51,56,46,54,48,57,51,54,50,93,44,91,45,57,55,46,51,55,49,57,49,49,44,51,56,46,54,48,57,51,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,66,117,99,107,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,56,50,53,50,51,56,44,51,55,46,53,53,50,53,52,50,93,44,91,45,55,56,46,54,56,51,50,50,52,44,51,55,46,52,50,56,57,55,52,93,44,91,45,55,56,46,53,57,52,52,51,54,44,51,55,46,51,57,55,57,55,52,93,44,91,45,55,56,46,52,54,53,48,56,57,44,51,55,46,51,51,57,54,55,55,93,44,91,45,55,56,46,50,52,57,48,50,49,44,51,55,46,54,51,53,53,52,54,93,44,91,45,55,56,46,50,51,57,55,52,56,44,51,55,46,54,57,48,52,57,53,93,44,91,45,55,56,46,52,48,53,53,57,54,44,51,55,46,55,51,53,50,54,51,93,44,91,45,55,56,46,52,57,49,51,52,53,44,51,55,46,55,57,54,57,53,54,93,44,91,45,55,56,46,54,52,51,57,49,56,44,51,55,46,55,51,51,48,56,52,93,44,91,45,55,56,46,56,50,53,50,51,56,44,51,55,46,53,53,50,53,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,98,97,114,114,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,52,52,56,44,34,98,101,100,115,34,58,52,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,56,52,49,54,55,44,51,53,46,53,48,54,48,49,55,93,44,91,45,56,48,46,54,54,54,52,56,44,51,53,46,50,54,55,57,51,52,93,44,91,45,56,48,46,53,53,48,51,52,57,44,51,53,46,50,48,56,52,49,50,93,44,91,45,56,48,46,53,48,52,57,56,53,44,51,53,46,49,56,52,57,57,56,93,44,91,45,56,48,46,50,57,53,52,50,49,44,51,53,46,53,48,50,57,50,93,44,91,45,56,48,46,55,51,55,51,55,57,44,51,53,46,53,48,53,56,48,52,93,44,91,45,56,48,46,55,56,52,49,54,55,44,51,53,46,53,48,54,48,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,53,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,55,51,51,56,44,51,55,46,52,49,52,57,56,57,93,44,91,45,57,51,46,48,54,53,50,55,52,44,51,55,46,48,56,56,54,57,52,93,44,91,45,57,50,46,57,48,51,50,55,51,44,51,55,46,48,55,48,54,53,49,93,44,91,45,57,50,46,54,56,53,56,54,55,44,51,55,46,48,54,55,48,53,49,93,44,91,45,57,50,46,54,56,54,54,55,49,44,51,55,46,52,56,49,53,52,53,93,44,91,45,57,50,46,56,53,51,52,56,49,44,51,55,46,52,56,51,57,55,93,44,91,45,57,51,46,48,55,49,53,56,52,44,51,55,46,52,56,55,52,52,52,93,44,91,45,57,51,46,48,55,51,51,56,44,51,55,46,52,49,52,57,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,48,54,50,49,44,34,98,101,100,115,34,58,52,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,55,51,56,55,52,52,44,52,48,46,56,54,48,57,57,56,93,44,91,45,49,49,49,46,56,49,53,52,49,52,44,52,48,46,57,53,55,52,51,93,44,91,45,49,49,49,46,56,53,54,50,52,55,44,52,49,46,49,51,57,48,56,51,93,44,91,45,49,49,50,46,49,56,54,54,57,51,44,52,49,46,49,53,51,48,50,56,93,44,91,45,49,49,50,46,52,57,51,53,49,53,44,52,49,46,48,55,54,56,56,56,93,44,91,45,49,49,50,46,50,54,48,50,49,54,44,52,48,46,55,54,57,48,57,51,93,44,91,45,49,49,50,46,48,48,54,53,54,54,44,52,48,46,57,50,49,56,52,54,93,44,91,45,49,49,49,46,57,52,54,50,56,57,44,52,48,46,56,50,49,55,57,93,44,91,45,49,49,49,46,55,51,56,55,52,52,44,52,48,46,56,54,48,57,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,111,116,116,111,110,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,55,50,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,54,50,53,52,55,44,52,52,46,49,57,53,57,52,50,93,44,91,45,57,53,46,52,54,50,52,50,55,44,52,51,46,56,52,55,57,49,49,93,44,91,45,57,53,46,52,53,50,53,48,50,44,52,51,46,56,52,55,57,53,51,93,44,91,45,57,52,46,56,53,57,51,56,56,44,52,51,46,56,52,56,48,57,51,93,44,91,45,57,52,46,56,53,57,56,48,51,44,52,52,46,49,48,56,48,49,54,93,44,91,45,57,53,46,49,48,48,50,50,49,44,52,52,46,49,48,56,48,51,52,93,44,91,45,57,53,46,49,48,56,55,55,55,44,52,52,46,49,57,53,48,52,52,93,44,91,45,57,53,46,52,54,50,53,52,55,44,52,52,46,49,57,53,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,79,107,101,101,99,104,111,98,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,55,50,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,52,50,49,54,52,44,50,55,46,54,52,51,50,51,56,93,44,91,45,56,49,46,50,48,53,51,56,56,44,50,55,46,52,57,48,50,53,52,93,44,91,45,56,48,46,57,52,48,54,55,54,44,50,55,46,50,48,53,57,51,57,93,44,91,45,56,48,46,56,55,49,49,54,57,44,50,55,46,49,53,52,57,53,49,93,44,91,45,56,48,46,56,56,53,54,51,57,44,50,54,46,57,53,56,57,49,57,93,44,91,45,56,48,46,54,55,55,52,50,55,44,50,55,46,49,50,49,54,49,57,93,44,91,45,56,48,46,54,55,55,56,54,50,44,50,55,46,50,48,53,57,56,56,93,44,91,45,56,48,46,54,55,57,56,50,49,44,50,55,46,53,53,56,52,55,93,44,91,45,56,48,46,55,55,55,49,54,54,44,50,55,46,53,53,56,55,51,51,93,44,91,45,56,48,46,56,55,51,49,53,44,50,55,46,54,52,50,50,56,56,93,44,91,45,56,49,46,49,52,50,49,54,52,44,50,55,46,54,52,51,50,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,49,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,55,53,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,50,57,52,52,56,44,51,52,46,57,56,55,53,49,52,93,44,91,45,56,52,46,49,48,51,54,51,44,51,52,46,55,50,55,56,51,55,93,44,91,45,56,52,46,49,53,56,48,51,53,44,51,52,46,54,52,56,50,52,51,93,44,91,45,56,52,46,48,51,54,50,55,54,44,51,52,46,54,52,50,48,56,55,93,44,91,45,56,51,46,57,51,57,48,48,55,44,51,52,46,55,52,48,56,53,57,93,44,91,45,56,51,46,56,53,54,53,48,54,44,51,52,46,55,50,50,49,57,49,93,44,91,45,56,51,46,55,56,48,51,52,54,44,51,52,46,55,57,50,57,48,53,93,44,91,45,56,51,46,56,48,52,57,54,50,44,51,52,46,56,57,53,57,51,52,93,44,91,45,56,51,46,57,51,54,51,57,53,44,51,52,46,57,56,55,53,54,52,93,44,91,45,56,52,46,48,48,53,49,51,50,44,51,52,46,57,56,55,49,55,53,93,44,91,45,56,52,46,49,50,57,52,52,56,44,51,52,46,57,56,55,53,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,108,97,99,107,32,72,97,119,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,48,48,57,44,34,98,101,100,115,34,58,54,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,52,51,44,52,50,46,53,53,53,56,53,52,93,44,91,45,57,50,46,53,51,51,53,49,44,52,50,46,50,57,55,48,48,49,93,44,91,45,57,50,46,50,57,56,55,57,50,44,52,50,46,50,57,55,53,50,55,93,44,91,45,57,50,46,48,54,52,55,54,54,44,52,50,46,50,57,55,50,53,57,93,44,91,45,57,50,46,48,56,49,54,54,49,44,52,50,46,54,52,50,48,53,54,93,44,91,45,57,50,46,53,53,52,52,57,50,44,52,50,46,54,52,50,51,49,52,93,44,91,45,57,50,46,53,53,52,51,44,52,50,46,53,53,53,56,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,48,51,34,44,34,78,65,77,69,34,58,34,83,97,98,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,56,52,52,54,49,44,51,49,46,53,54,57,52,49,57,93,44,91,45,57,51,46,57,56,51,50,51,57,44,51,49,46,52,54,54,49,49,52,93,44,91,45,57,52,46,48,52,52,49,53,52,44,51,49,46,52,48,57,57,55,57,93,44,91,45,57,52,46,48,51,57,48,51,52,44,51,49,46,49,51,52,50,55,49,93,44,91,45,57,51,46,57,49,49,49,50,54,44,51,49,46,49,53,56,48,55,49,93,44,91,45,57,51,46,54,48,48,51,48,56,44,51,49,46,49,55,54,49,53,56,93,44,91,45,57,51,46,54,56,55,53,49,49,44,51,49,46,51,49,48,56,49,51,93,44,91,45,57,51,46,54,57,50,54,51,49,44,51,49,46,52,51,55,49,57,50,93,44,91,45,57,51,46,56,51,52,57,49,56,44,51,49,46,53,56,54,50,49,50,93,44,91,45,57,51,46,57,56,52,52,54,49,44,51,49,46,53,54,57,52,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,50,49,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,56,53,54,51,55,44,51,57,46,48,53,53,49,57,55,93,44,91,45,56,51,46,50,55,48,56,49,55,44,51,57,46,48,49,53,55,57,49,93,44,91,45,56,51,46,50,49,50,49,48,55,44,51,56,46,57,54,48,49,52,56,93,44,91,45,56,50,46,56,48,55,48,57,44,51,56,46,57,52,56,48,55,51,93,44,91,45,56,50,46,55,56,53,56,57,49,44,51,57,46,49,54,56,55,54,57,93,44,91,45,56,51,46,51,53,51,53,51,49,44,51,57,46,49,57,55,53,56,53,93,44,91,45,56,51,46,51,56,53,54,51,55,44,51,57,46,48,53,53,49,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,84,117,115,99,97,108,111,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,50,49,51,44,34,98,101,100,115,34,58,49,48,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,56,51,55,53,50,49,44,51,51,46,49,53,51,54,51,55,93,44,91,45,56,55,46,56,51,50,50,51,51,44,51,51,46,48,49,55,50,53,56,93,44,91,45,56,55,46,55,49,53,55,48,57,44,51,51,46,48,48,54,56,50,52,93,44,91,45,56,55,46,52,50,49,57,51,54,44,51,51,46,48,48,51,51,55,57,93,44,91,45,56,55,46,51,49,56,53,51,57,44,51,51,46,48,48,54,49,55,57,93,44,91,45,56,55,46,50,56,49,57,52,53,44,51,51,46,49,51,51,48,54,93,44,91,45,56,55,46,48,54,53,55,51,56,44,51,51,46,50,52,54,57,48,55,93,44,91,45,56,55,46,49,55,57,54,51,56,44,51,51,46,51,50,49,49,49,50,93,44,91,45,56,55,46,50,56,52,51,54,51,44,51,51,46,52,52,48,53,55,56,93,44,91,45,56,55,46,50,54,54,57,50,51,44,51,51,46,53,49,50,57,50,57,93,44,91,45,56,55,46,51,49,56,53,51,50,44,51,51,46,53,56,55,51,57,51,93,44,91,45,56,55,46,52,50,51,55,48,49,44,51,51,46,54,48,50,48,57,54,93,44,91,45,56,55,46,54,51,49,55,49,56,44,51,51,46,54,48,57,56,51,51,93,44,91,45,56,55,46,54,54,54,54,54,49,44,51,51,46,53,50,49,54,54,55,93,44,91,45,56,55,46,56,52,48,54,56,51,44,51,51,46,53,50,52,56,51,57,93,44,91,45,56,55,46,56,51,55,53,50,49,44,51,51,46,49,53,51,54,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,87,105,108,99,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,57,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,55,50,50,48,54,44,51,50,46,50,54,52,57,49,57,93,44,91,45,56,55,46,53,50,49,57,52,54,44,51,50,46,49,51,50,56,49,54,93,44,91,45,56,55,46,54,50,52,48,48,53,44,51,50,46,49,51,50,51,52,53,93,44,91,45,56,55,46,54,54,55,55,54,57,44,51,49,46,57,57,49,51,53,53,93,44,91,45,56,55,46,54,50,48,49,49,50,44,51,49,46,56,50,55,49,50,51,93,44,91,45,56,55,46,53,48,48,57,51,44,51,49,46,56,50,57,50,53,49,93,44,91,45,56,54,46,57,48,54,56,57,57,44,51,49,46,56,51,48,54,50,56,93,44,91,45,56,54,46,56,53,55,53,56,51,44,51,49,46,57,54,50,49,54,55,93,44,91,45,56,54,46,57,48,54,57,53,54,44,51,50,46,48,52,55,57,55,93,44,91,45,56,55,46,49,55,55,56,54,44,51,50,46,48,52,55,53,49,52,93,44,91,45,56,55,46,51,50,53,54,52,52,44,51,50,46,49,57,54,50,55,50,93,44,91,45,56,55,46,52,55,50,50,48,54,44,51,50,46,50,54,52,57,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,48,54,56,55,50,44,51,51,46,54,55,55,54,48,53,93,44,91,45,56,57,46,55,56,54,56,57,44,51,51,46,54,55,54,55,50,55,93,44,91,45,56,57,46,55,56,53,50,50,55,44,51,51,46,52,49,54,50,55,53,93,44,91,45,56,57,46,54,52,54,51,49,52,44,51,51,46,52,48,50,53,52,52,93,44,91,45,56,57,46,54,52,53,50,56,44,51,51,46,50,56,53,53,49,53,93,44,91,45,56,57,46,52,53,51,56,48,56,44,51,51,46,50,56,53,57,52,50,93,44,91,45,56,57,46,52,53,52,48,53,44,51,51,46,52,51,51,50,93,44,91,45,56,57,46,51,56,49,48,57,50,44,51,51,46,52,54,48,51,48,55,93,44,91,45,56,57,46,53,48,54,52,57,54,44,51,51,46,52,53,57,56,48,54,93,44,91,45,56,57,46,53,48,54,56,55,50,44,51,51,46,54,55,55,54,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,75,101,97,114,110,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,53,50,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,55,57,50,52,56,44,52,48,46,54,54,48,53,52,49,93,44,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,44,91,45,57,56,46,55,50,54,56,50,55,44,52,48,46,51,53,48,51,57,56,93,44,91,45,57,56,46,55,50,51,57,52,56,44,52,48,46,51,53,48,51,57,49,93,44,91,45,57,56,46,55,50,52,51,56,55,44,52,48,46,54,56,57,55,55,50,93,44,91,45,57,56,46,57,48,54,48,57,54,44,52,48,46,54,53,50,55,50,50,93,44,91,45,57,57,46,49,55,57,50,52,56,44,52,48,46,54,54,48,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,72,105,116,99,104,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,51,50,51,51,53,51,44,52,48,46,51,53,48,53,53,51,93,44,91,45,49,48,49,46,51,50,53,53,49,52,44,52,48,46,48,48,50,55,48,50,93,44,91,45,49,48,48,46,55,53,56,56,51,44,52,48,46,48,48,50,51,48,50,93,44,91,45,49,48,48,46,55,53,56,52,51,53,44,52,48,46,51,52,57,53,48,55,93,44,91,45,49,48,48,46,55,55,55,51,55,54,44,52,48,46,51,52,57,52,54,54,93,44,91,45,49,48,49,46,51,50,51,51,53,51,44,52,48,46,51,53,48,53,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,78,101,119,32,67,97,115,116,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,68,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,53,49,51,51,44,34,98,101,100,115,34,58,50,48,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,53,57,52,56,56,44,51,57,46,56,51,55,53,50,53,93,44,91,45,55,53,46,55,56,56,53,57,54,44,51,57,46,55,50,50,49,57,57,93,44,91,45,55,53,46,55,54,54,53,57,52,44,51,57,46,51,55,55,53,54,51,93,44,91,45,55,53,46,55,54,48,48,55,52,44,51,57,46,50,57,54,56,49,57,93,44,91,45,55,53,46,53,55,52,52,50,57,44,51,57,46,51,49,51,54,49,49,93,44,91,45,55,53,46,52,56,49,51,54,44,51,57,46,51,56,55,53,53,53,93,44,91,45,55,53,46,53,54,48,53,51,56,44,51,57,46,52,53,53,54,52,53,93,44,91,45,55,53,46,53,49,50,55,55,44,51,57,46,53,55,56,50,57,93,44,91,45,55,53,46,53,53,56,55,55,51,44,51,57,46,54,50,57,57,56,55,93,44,91,45,55,53,46,52,48,53,52,56,57,44,51,57,46,55,57,54,51,54,56,93,44,91,45,55,53,46,52,49,53,48,54,50,44,51,57,46,56,48,49,57,49,57,93,44,91,45,55,53,46,53,55,57,57,50,54,44,51,57,46,56,51,56,56,54,50,93,44,91,45,55,53,46,53,57,51,48,57,57,44,51,57,46,56,51,55,55,50,51,93,44,91,45,55,53,46,53,57,52,56,56,44,51,57,46,56,51,55,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,84,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,56,48,44,34,98,101,100,115,34,58,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,51,57,56,55,56,49,44,52,51,46,57,50,50,56,57,93,44,91,45,49,49,49,46,51,57,57,55,54,53,44,52,51,46,54,50,49,57,55,54,93,44,91,45,49,49,49,46,50,52,51,56,51,57,44,52,51,46,54,50,49,56,53,51,93,44,91,45,49,49,49,46,50,48,55,53,54,49,44,52,51,46,53,52,51,56,53,55,93,44,91,45,49,49,49,46,48,52,53,52,55,51,44,52,51,46,53,48,49,48,53,49,93,44,91,45,49,49,49,46,48,52,55,49,53,55,44,52,51,46,57,56,51,52,53,57,93,44,91,45,49,49,49,46,49,56,55,50,53,54,44,52,51,46,57,51,50,49,49,52,93,44,91,45,49,49,49,46,51,57,56,55,56,49,44,52,51,46,57,50,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,82,111,99,107,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,50,55,53,44,34,98,101,100,115,34,58,52,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,54,53,54,50,44,52,49,46,55,50,56,57,50,56,93,44,91,45,57,48,46,51,52,51,50,50,56,44,52,49,46,53,56,55,56,51,51,93,44,91,45,57,48,46,52,54,49,52,51,50,44,52,49,46,53,50,51,53,51,51,93,44,91,45,57,48,46,55,56,54,50,56,50,44,52,49,46,52,53,50,56,56,56,93,44,91,45,57,49,46,48,52,56,50,53,57,44,52,49,46,52,48,57,55,52,56,93,44,91,45,57,49,46,48,55,50,48,52,53,44,52,49,46,51,51,51,53,57,57,93,44,91,45,57,49,46,48,55,50,48,55,44,52,49,46,51,51,51,51,54,49,93,44,91,45,57,48,46,52,51,51,55,51,55,44,52,49,46,51,50,54,57,56,57,93,44,91,45,57,48,46,52,51,49,57,51,44,52,49,46,52,53,54,56,51,52,93,44,91,45,57,48,46,49,56,53,53,51,54,44,52,49,46,53,56,52,53,55,52,93,44,91,45,57,48,46,50,52,50,51,56,44,52,49,46,55,56,50,57,54,52,93,44,91,45,57,48,46,51,49,54,53,54,50,44,52,49,46,55,50,56,57,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,108,111,117,99,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,49,54,49,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,49,50,51,48,53,44,51,55,46,52,51,49,51,48,57,93,44,91,45,55,54,46,54,53,56,54,53,49,44,51,55,46,51,56,48,49,51,57,93,44,91,45,55,54,46,53,49,54,48,53,55,44,51,55,46,50,52,56,55,53,50,93,44,91,45,55,54,46,51,48,52,53,44,51,55,46,50,55,56,51,54,49,93,44,91,45,55,54,46,52,52,52,55,51,54,44,51,55,46,52,49,56,53,51,57,93,44,91,45,55,54,46,52,51,55,53,54,49,44,51,55,46,53,49,52,51,54,93,44,91,45,55,54,46,54,53,52,48,55,54,44,51,55,46,54,48,51,49,55,52,93,44,91,45,55,54,46,55,49,50,51,48,53,44,51,55,46,52,51,49,51,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,83,101,118,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,55,48,51,51,49,44,51,52,46,49,57,48,49,56,51,93,44,91,45,57,52,46,52,55,55,50,57,57,44,51,51,46,57,52,48,57,51,50,93,44,91,45,57,52,46,49,56,49,56,49,44,51,51,46,55,56,56,56,53,50,93,44,91,45,57,51,46,57,53,56,56,50,56,44,51,51,46,55,53,48,57,57,52,93,44,91,45,57,52,46,48,53,50,57,52,51,44,51,51,46,56,56,54,48,56,50,93,44,91,45,57,52,46,48,57,56,53,48,49,44,51,52,46,49,57,49,50,48,51,93,44,91,45,57,52,46,50,52,51,55,51,57,44,51,52,46,49,57,50,53,48,49,93,44,91,45,57,52,46,52,55,48,51,51,49,44,51,52,46,49,57,48,49,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,56,52,44,34,98,101,100,115,34,58,49,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,56,49,53,51,50,44,52,48,46,57,49,48,57,50,53,93,44,91,45,56,54,46,53,56,49,55,51,57,44,52,48,46,55,51,53,55,54,53,93,44,91,45,56,54,46,51,55,51,53,50,49,44,52,48,46,54,57,50,52,54,93,44,91,45,56,54,46,51,55,52,52,49,55,44,52,48,46,53,54,49,51,54,49,93,44,91,45,56,54,46,49,54,53,48,50,52,44,52,48,46,53,54,50,54,52,57,93,44,91,45,56,54,46,49,54,57,48,49,50,44,52,48,46,57,48,57,56,51,54,93,44,91,45,56,54,46,52,54,56,53,48,57,44,52,48,46,57,48,57,56,56,57,93,44,91,45,56,54,46,53,56,49,53,51,50,44,52,48,46,57,49,48,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,80,111,119,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,49,51,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,50,51,54,57,54,56,44,52,50,46,54,50,53,50,53,52,93,44,91,45,49,49,51,46,48,48,50,55,57,50,44,52,50,46,53,56,56,48,48,51,93,44,91,45,49,49,50,46,57,57,57,57,54,53,44,52,50,46,51,50,55,52,50,55,93,44,91,45,49,49,50,46,54,53,52,48,50,56,44,52,50,46,51,50,56,56,55,50,93,44,91,45,49,49,50,46,54,53,51,57,56,57,44,52,50,46,52,49,54,49,54,57,93,44,91,45,49,49,50,46,52,57,55,56,52,57,44,52,50,46,52,49,53,57,57,56,93,44,91,45,49,49,50,46,52,49,57,56,50,53,44,52,50,46,53,48,51,48,51,56,93,44,91,45,49,49,50,46,51,56,57,52,49,56,44,52,50,46,54,50,52,51,56,50,93,44,91,45,49,49,50,46,52,57,54,57,49,44,52,50,46,55,51,51,48,49,51,93,44,91,45,49,49,50,46,53,49,53,53,49,57,44,52,50,46,57,48,57,57,55,53,93,44,91,45,49,49,50,46,53,55,57,50,56,55,44,52,50,46,57,55,50,52,53,49,93,44,91,45,49,49,50,46,55,53,48,53,54,50,44,52,50,46,57,53,49,53,50,56,93,44,91,45,49,49,50,46,56,49,54,53,55,56,44,52,50,46,56,54,51,50,51,49,93,44,91,45,49,49,51,46,48,48,55,55,54,44,52,50,46,56,54,51,48,53,49,93,44,91,45,49,49,51,46,48,48,55,55,49,50,44,52,51,46,49,49,48,57,51,51,93,44,91,45,49,49,51,46,50,52,51,52,55,56,44,52,51,46,49,49,48,57,52,54,93,44,91,45,49,49,51,46,50,51,54,57,54,56,44,52,50,46,54,50,53,50,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,55,55,49,50,57,51,44,52,48,46,53,54,50,48,56,50,93,44,91,45,56,54,46,54,57,52,54,54,53,44,52,48,46,52,51,50,49,53,54,93,44,91,45,56,54,46,51,55,53,55,54,50,44,52,48,46,52,51,49,56,53,49,93,44,91,45,56,54,46,51,55,52,52,49,55,44,52,48,46,53,54,49,51,54,49,93,44,91,45,56,54,46,51,55,51,53,50,49,44,52,48,46,54,57,50,52,54,93,44,91,45,56,54,46,53,56,49,55,51,57,44,52,48,46,55,51,53,55,54,53,93,44,91,45,56,54,46,55,52,55,55,54,52,44,52,48,46,55,51,55,53,52,93,44,91,45,56,54,46,55,55,49,50,57,51,44,52,48,46,53,54,50,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,80,104,105,108,97,100,101,108,112,104,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,53,53,50,50,44,34,98,101,100,115,34,58,55,53,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,50,55,54,52,56,50,44,51,57,46,57,55,54,57,53,57,93,44,91,45,55,53,46,50,49,49,52,54,51,44,51,57,46,56,54,55,48,48,52,93,44,91,45,55,53,46,49,51,57,56,51,50,44,51,57,46,56,56,56,51,49,55,93,44,91,45,55,53,46,48,53,57,57,49,51,44,51,57,46,57,57,49,53,50,57,93,44,91,45,55,52,46,57,55,51,57,56,49,44,52,48,46,48,52,56,53,57,53,93,44,91,45,55,53,46,48,49,53,48,54,54,44,52,48,46,49,51,55,57,57,50,93,44,91,45,55,53,46,49,48,57,52,51,49,44,52,48,46,48,52,53,56,55,52,93,44,91,45,55,53,46,50,50,51,54,49,44,52,48,46,48,57,50,57,48,55,93,44,91,45,55,53,46,50,55,54,52,56,50,44,51,57,46,57,55,54,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,97,107,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,50,57,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,53,53,48,55,53,56,44,52,52,46,48,55,57,52,48,51,93,44,91,45,49,48,56,46,52,50,57,53,54,51,44,52,51,46,57,48,51,51,53,53,93,44,91,45,49,48,56,46,49,55,51,54,49,55,44,52,51,46,56,49,56,57,53,51,93,44,91,45,49,48,55,46,57,53,54,52,52,56,44,52,51,46,56,49,56,54,54,54,93,44,91,45,49,48,55,46,57,53,54,53,55,55,44,52,51,46,55,51,51,52,52,54,93,44,91,45,49,48,55,46,55,49,53,56,55,54,44,52,51,46,55,51,51,51,52,51,93,44,91,45,49,48,55,46,53,57,53,49,53,55,44,52,51,46,54,52,54,52,50,55,93,44,91,45,49,48,55,46,53,57,53,49,48,53,44,52,51,46,53,48,49,51,57,55,93,44,91,45,49,48,55,46,53,51,52,56,57,55,44,52,51,46,53,48,49,51,54,50,93,44,91,45,49,48,55,46,49,49,48,55,51,52,44,52,51,46,53,48,48,50,56,54,93,44,91,45,49,48,55,46,49,52,54,56,48,56,44,52,52,46,49,54,53,54,54,54,93,44,91,45,49,48,56,46,53,53,48,53,54,50,44,52,52,46,49,54,56,52,53,53,93,44,91,45,49,48,56,46,53,53,48,55,53,56,44,52,52,46,48,55,57,52,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,97,109,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,52,55,44,34,98,101,100,115,34,58,49,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,57,49,51,51,54,44,51,54,46,53,49,48,54,55,55,93,44,91,45,55,54,46,50,51,56,50,52,52,44,51,54,46,51,55,49,53,56,56,93,44,91,45,55,54,46,48,54,56,54,48,53,44,51,54,46,50,49,54,53,57,93,44,91,45,55,54,46,48,50,50,54,48,55,44,51,54,46,48,57,54,55,50,53,93,44,91,45,55,53,46,57,48,54,50,57,53,44,51,54,46,48,56,53,56,55,55,93,44,91,45,55,53,46,56,56,55,57,56,52,44,51,54,46,49,54,51,51,49,49,93,44,91,45,55,53,46,57,54,57,54,50,53,44,51,54,46,51,48,54,51,49,50,93,44,91,45,55,54,46,49,49,52,48,54,57,44,51,54,46,51,53,55,52,57,56,93,44,91,45,55,54,46,51,49,51,51,48,51,44,51,54,46,53,53,48,53,50,93,44,91,45,55,54,46,52,57,49,52,57,54,44,51,54,46,53,53,48,54,52,56,93,44,91,45,55,54,46,53,52,49,57,54,54,44,51,54,46,53,53,48,54,53,51,93,44,91,45,55,54,46,52,57,49,51,51,54,44,51,54,46,53,49,48,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,84,111,109,112,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,57,54,50,44,34,98,101,100,115,34,58,50,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,54,54,53,52,51,44,52,50,46,54,50,51,52,53,55,93,44,91,45,55,54,46,54,57,54,54,53,53,44,52,50,46,53,52,54,55,57,93,44,91,45,55,54,46,54,57,49,52,48,54,44,52,50,46,50,56,52,51,48,55,93,44,91,45,55,54,46,54,49,57,51,48,51,44,52,50,46,50,56,50,56,53,51,93,44,91,45,55,54,46,53,51,56,51,52,57,44,52,50,46,50,56,49,55,53,53,93,44,91,45,55,54,46,52,49,53,51,48,53,44,52,50,46,51,49,56,51,54,56,93,44,91,45,55,54,46,50,53,48,49,52,57,44,52,50,46,50,57,54,54,55,54,93,44,91,45,55,54,46,50,53,51,51,53,57,44,52,50,46,52,48,55,53,54,56,93,44,91,45,55,54,46,50,54,53,53,56,52,44,52,50,46,54,50,51,53,56,56,93,44,91,45,55,54,46,54,54,54,53,52,51,44,52,50,46,54,50,51,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,52,50,52,44,34,98,101,100,115,34,58,52,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,48,56,48,52,49,44,51,52,46,52,57,50,55,54,53,93,44,91,45,57,50,46,50,51,51,51,55,54,44,51,52,46,48,54,50,51,49,50,93,44,91,45,57,49,46,57,53,51,55,57,57,44,51,52,46,48,54,52,49,52,49,93,44,91,45,57,49,46,55,52,52,57,57,44,51,52,46,48,57,52,48,50,49,93,44,91,45,57,49,46,55,50,55,50,55,54,44,51,52,46,49,55,52,48,57,51,93,44,91,45,57,49,46,52,52,53,54,49,52,44,51,52,46,48,56,48,49,52,55,93,44,91,45,57,49,46,53,52,48,49,55,56,44,51,52,46,50,50,52,53,57,57,93,44,91,45,57,49,46,55,49,49,55,57,53,44,51,52,46,50,51,51,57,49,57,93,44,91,45,57,49,46,55,48,53,49,56,53,44,51,52,46,52,56,50,54,55,93,44,91,45,57,50,46,48,50,57,57,57,54,44,51,52,46,52,56,57,51,53,50,93,44,91,45,57,50,46,50,48,56,48,52,49,44,51,52,46,52,57,50,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,52,53,54,49,52,44,51,52,46,48,56,48,49,52,55,93,44,91,45,57,49,46,55,50,55,50,55,54,44,51,52,46,49,55,52,48,57,51,93,44,91,45,57,49,46,55,52,52,57,57,44,51,52,46,48,57,52,48,50,49,93,44,91,45,57,49,46,57,53,51,55,57,57,44,51,52,46,48,54,52,49,52,49,93,44,91,45,57,49,46,57,55,53,57,55,52,44,51,51,46,55,57,49,55,56,55,93,44,91,45,57,49,46,53,53,55,54,52,56,44,51,51,46,55,56,51,51,56,52,93,44,91,45,57,49,46,53,52,56,54,54,56,44,51,51,46,57,55,54,55,57,57,93,44,91,45,57,49,46,52,50,49,55,49,53,44,51,52,46,48,49,52,52,55,50,93,44,91,45,57,49,46,52,52,53,54,49,52,44,51,52,46,48,56,48,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,86,101,114,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,49,54,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,48,54,53,51,44,52,51,46,55,50,53,51,51,52,93,44,91,45,57,49,46,50,53,55,56,51,57,44,52,51,46,55,50,53,54,54,49,93,44,91,45,57,49,46,50,54,56,55,52,56,44,52,51,46,54,49,53,51,52,56,93,44,91,45,57,49,46,50,49,55,55,48,54,44,52,51,46,53,48,48,53,53,93,44,91,45,57,49,46,50,48,53,53,53,44,52,51,46,52,50,50,57,52,57,93,44,91,45,57,48,46,54,54,56,53,54,49,44,52,51,46,52,50,50,57,57,52,93,44,91,45,57,48,46,54,55,49,54,53,50,44,52,51,46,53,53,50,56,53,54,93,44,91,45,57,48,46,51,49,49,48,54,57,44,52,51,46,53,53,51,57,57,49,93,44,91,45,57,48,46,51,49,50,52,48,52,44,52,51,46,54,52,48,57,56,56,93,44,91,45,57,48,46,51,49,50,49,57,52,44,52,51,46,55,51,49,52,55,57,93,44,91,45,57,48,46,57,49,48,54,53,51,44,52,51,46,55,50,53,51,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,73,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,50,49,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,53,53,48,55,51,44,51,55,46,53,56,56,48,57,50,93,44,91,45,57,48,46,55,54,56,54,57,53,44,51,55,46,54,48,51,48,49,49,93,44,91,45,57,48,46,55,55,50,57,52,57,44,51,55,46,51,55,51,54,53,57,93,44,91,45,57,48,46,55,51,53,52,53,51,44,51,55,46,50,55,49,48,52,93,44,91,45,57,48,46,53,52,57,55,50,57,44,51,55,46,51,49,55,53,57,52,93,44,91,45,57,48,46,53,51,53,48,49,54,44,51,55,46,54,52,51,54,52,49,93,44,91,45,57,48,46,54,52,55,56,55,52,44,51,55,46,54,52,50,56,48,57,93,44,91,45,57,48,46,54,52,53,49,51,53,44,51,55,46,55,51,52,56,49,51,93,44,91,45,57,49,46,49,48,48,48,49,55,44,51,55,46,55,52,48,48,49,50,93,44,91,45,57,49,46,49,53,51,51,52,53,44,51,55,46,54,57,55,51,52,93,44,91,45,57,49,46,49,53,53,48,55,51,44,51,55,46,53,56,56,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,51,34,44,34,78,65,77,69,34,58,34,72,111,112,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,50,52,48,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,48,56,53,57,51,44,51,51,46,51,55,55,49,57,93,44,91,45,57,53,46,53,56,49,49,55,53,44,51,51,46,51,53,56,57,55,55,93,44,91,45,57,53,46,55,50,57,48,57,52,44,51,51,46,51,48,53,52,50,56,93,44,91,45,57,53,46,56,54,49,55,55,56,44,51,51,46,50,49,57,51,51,93,44,91,45,57,53,46,56,54,50,53,50,49,44,51,50,46,57,55,57,53,55,49,93,44,91,45,57,53,46,54,54,53,51,56,57,44,51,50,46,57,54,48,52,51,52,93,44,91,45,57,53,46,51,48,56,57,53,55,44,51,50,46,57,54,50,53,55,50,93,44,91,45,57,53,46,51,48,56,53,57,51,44,51,51,46,51,55,55,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,98,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,55,52,50,54,44,34,98,101,100,115,34,58,49,53,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,56,48,57,51,54,57,44,52,50,46,55,55,56,56,54,57,93,44,91,45,55,52,46,49,56,48,50,55,52,44,52,50,46,55,50,57,57,55,57,93,44,91,45,55,52,46,50,53,52,51,48,51,44,52,50,46,52,48,56,50,48,55,93,44,91,45,55,51,46,55,56,51,55,50,49,44,52,50,46,52,54,52,50,51,49,93,44,91,45,55,51,46,55,54,49,50,54,53,44,52,50,46,54,49,48,51,55,57,93,44,91,45,55,51,46,54,55,54,55,54,50,44,52,50,46,55,56,51,50,55,55,93,44,91,45,55,51,46,56,48,57,51,54,57,44,52,50,46,55,55,56,56,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,53,34,44,34,78,65,77,69,34,58,34,72,111,117,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,57,53,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,51,57,50,55,57,44,51,49,46,53,48,52,48,53,54,93,44,91,45,57,53,46,54,53,53,53,52,53,44,51,49,46,51,50,57,54,52,93,44,91,45,57,53,46,55,50,53,50,50,54,44,51,49,46,50,55,49,48,56,52,93,44,91,45,57,53,46,55,54,52,52,49,44,51,49,46,48,57,52,50,49,49,93,44,91,45,57,53,46,54,53,54,52,56,55,44,51,49,46,48,55,57,51,51,57,93,44,91,45,57,53,46,54,55,50,53,57,55,44,51,48,46,57,55,54,50,55,56,93,44,91,45,57,53,46,54,49,55,56,55,50,44,51,48,46,57,51,48,52,49,56,93,44,91,45,57,53,46,52,51,52,55,56,49,44,51,49,46,48,53,56,48,57,56,93,44,91,45,57,52,46,57,53,56,49,49,44,51,49,46,51,56,54,57,51,93,44,91,45,57,53,46,48,48,51,51,52,53,44,51,49,46,52,50,53,55,49,93,44,91,45,57,53,46,49,52,57,49,57,56,44,51,49,46,53,54,56,56,48,55,93,44,91,45,57,53,46,50,55,51,50,48,51,44,51,49,46,53,57,50,56,56,54,93,44,91,45,57,53,46,54,53,49,55,54,52,44,51,49,46,53,52,49,55,57,49,93,44,91,45,57,53,46,55,51,57,50,55,57,44,51,49,46,53,48,52,48,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,57,48,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,50,49,50,55,57,44,51,57,46,56,52,57,57,56,50,93,44,91,45,56,49,46,50,51,55,51,49,54,44,51,57,46,56,54,55,56,50,56,93,44,91,45,56,49,46,51,49,51,53,57,49,44,51,57,46,56,54,57,52,55,49,93,44,91,45,56,49,46,51,49,57,49,50,53,44,51,57,46,55,48,55,51,54,93,44,91,45,56,49,46,50,56,51,48,55,53,44,51,57,46,54,48,53,55,57,54,93,44,91,45,56,49,46,48,51,56,55,49,50,44,51,57,46,53,51,57,56,56,54,93,44,91,45,56,48,46,57,52,51,55,56,50,44,51,57,46,54,48,54,57,50,54,93,44,91,45,56,48,46,56,51,51,53,49,51,44,51,57,46,55,50,48,56,49,50,93,44,91,45,56,48,46,56,50,49,50,55,57,44,51,57,46,56,52,57,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,82,117,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,48,50,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,56,53,48,56,55,44,51,56,46,54,57,54,53,51,55,93,44,91,45,57,57,46,53,56,52,55,57,52,44,51,56,46,51,52,57,51,56,54,93,44,91,45,57,57,46,48,51,50,52,48,56,44,51,56,46,51,52,56,51,51,52,93,44,91,45,57,57,46,48,51,50,57,55,49,44,51,56,46,54,57,54,55,53,57,93,44,91,45,57,57,46,48,52,50,54,50,54,44,51,56,46,54,57,54,56,48,55,93,44,91,45,57,57,46,53,56,53,48,56,55,44,51,56,46,54,57,54,53,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,50,55,54,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,57,50,53,54,51,44,52,48,46,50,49,52,56,48,54,93,44,91,45,56,55,46,48,57,49,48,48,54,44,51,57,46,57,53,51,48,48,57,93,44,91,45,56,55,46,48,48,57,52,55,55,44,51,57,46,56,54,54,55,48,53,93,44,91,45,56,54,46,54,57,53,49,50,55,44,51,57,46,56,54,52,56,52,53,93,44,91,45,56,54,46,54,57,53,48,55,49,44,51,57,46,57,50,50,55,55,93,44,91,45,56,54,46,54,57,53,56,48,52,44,52,48,46,49,55,56,54,53,55,93,44,91,45,56,54,46,54,57,53,54,51,55,44,52,48,46,50,49,52,51,54,55,93,44,91,45,56,55,46,48,57,50,53,54,51,44,52,48,46,50,49,52,56,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,83,116,97,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,51,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,49,54,52,50,44,51,55,46,51,56,57,49,57,93,44,91,45,49,48,49,46,53,53,54,54,48,54,44,51,55,46,51,56,56,52,56,53,93,44,91,45,49,48,49,46,53,50,53,56,49,44,51,55,46,51,56,56,51,57,50,93,44,91,45,49,48,49,46,53,50,55,48,54,51,44,51,55,46,55,51,54,51,49,52,93,44,91,45,49,48,50,46,48,52,50,49,53,53,44,51,55,46,55,51,56,53,52,49,93,44,91,45,49,48,50,46,48,52,49,53,56,53,44,51,55,46,54,52,52,50,56,50,93,44,91,45,49,48,50,46,48,52,49,54,52,50,44,51,55,46,51,56,57,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,50,50,49,44,51,55,46,55,49,54,52,50,93,44,91,45,56,51,46,56,50,51,48,51,44,51,55,46,54,53,57,56,55,50,93,44,91,45,56,51,46,57,48,53,53,55,44,51,55,46,53,52,50,56,53,54,93,44,91,45,56,51,46,56,56,53,50,54,50,44,51,55,46,53,49,55,54,56,56,93,44,91,45,56,51,46,53,55,57,49,56,54,44,51,55,46,53,48,54,50,52,57,93,44,91,45,56,51,46,53,50,50,51,48,56,44,51,55,46,54,51,56,53,49,54,93,44,91,45,56,51,46,55,48,55,57,55,52,44,51,55,46,55,49,54,52,54,51,93,44,91,45,56,51,46,55,50,50,49,44,51,55,46,55,49,54,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,75,111,111,99,104,105,99,104,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,56,56,52,51,56,44,52,56,46,54,50,55,53,57,55,93,44,91,45,57,51,46,50,48,55,52,50,54,44,52,56,46,54,52,50,52,49,57,93,44,91,45,57,51,46,52,54,53,57,56,50,44,52,56,46,53,56,55,50,56,55,93,44,91,45,57,51,46,52,54,55,53,48,50,44,52,56,46,53,52,53,54,54,49,93,44,91,45,57,51,46,55,57,52,52,53,53,44,52,56,46,53,49,53,57,56,54,93,44,91,45,57,51,46,56,52,52,48,49,51,44,52,56,46,54,50,57,51,56,52,93,44,91,45,57,52,46,50,52,52,51,57,56,44,52,56,46,54,53,51,52,50,49,93,44,91,45,57,52,46,52,51,48,50,55,51,44,52,56,46,55,48,48,57,48,57,93,44,91,45,57,52,46,52,50,56,55,48,50,44,52,56,46,51,54,55,51,51,51,93,44,91,45,57,52,46,52,49,56,53,52,51,44,52,55,46,56,52,53,56,49,54,93,44,91,45,57,51,46,55,55,54,49,55,51,44,52,55,46,56,52,54,52,48,52,93,44,91,45,57,51,46,55,55,53,55,55,50,44,52,55,46,56,57,56,57,53,93,44,91,45,57,51,46,48,56,49,49,53,56,44,52,55,46,56,57,49,56,55,93,44,91,45,57,51,46,48,57,54,52,56,56,44,52,56,46,48,54,55,56,50,54,93,44,91,45,57,51,46,48,56,56,52,51,56,44,52,56,46,54,50,55,53,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,66,101,120,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,53,56,54,53,44,34,98,101,100,115,34,58,55,52,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,54,53,53,50,44,50,57,46,54,57,48,55,48,57,93,44,91,45,57,56,46,56,48,52,55,54,51,44,50,57,46,50,53,48,54,57,51,93,44,91,45,57,56,46,52,48,55,51,51,54,44,50,57,46,49,49,52,52,51,53,93,44,91,45,57,56,46,49,51,52,49,55,49,44,50,57,46,52,52,49,55,53,49,93,44,91,45,57,56,46,51,49,48,57,50,56,44,50,57,46,53,57,52,52,55,51,93,44,91,45,57,56,46,51,56,48,49,54,49,44,50,57,46,55,48,51,57,50,57,93,44,91,45,57,56,46,53,52,51,55,49,56,44,50,57,46,55,53,50,48,53,50,93,44,91,45,57,56,46,54,52,54,49,50,52,44,50,57,46,55,52,53,49,56,49,93,44,91,45,57,56,46,55,55,56,55,56,50,44,50,57,46,55,50,48,49,54,55,93,44,91,45,57,56,46,56,48,54,53,53,50,44,50,57,46,54,57,48,55,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,111,117,108,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,49,48,51,48,44,34,98,101,100,115,34,58,56,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,54,53,51,51,50,49,44,52,48,46,50,54,48,52,53,55,93,44,91,45,49,48,53,46,54,51,56,50,57,50,44,52,48,46,48,52,52,51,50,54,93,44,91,45,49,48,53,46,54,55,53,55,57,56,44,51,57,46,57,51,50,52,52,53,93,44,91,45,49,48,53,46,51,57,55,56,52,57,44,51,57,46,57,49,50,56,56,54,93,44,91,45,49,48,53,46,49,52,55,49,52,51,44,51,57,46,57,49,51,56,56,57,93,44,91,45,49,48,53,46,48,53,50,56,50,51,44,52,48,46,48,48,48,50,54,93,44,91,45,49,48,53,46,48,53,53,48,56,57,44,52,48,46,50,54,49,55,57,51,93,44,91,45,49,48,53,46,54,53,51,51,50,49,44,52,48,46,50,54,48,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,50,52,55,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,54,55,48,57,55,44,51,54,46,49,55,52,54,56,56,93,44,91,45,56,51,46,53,57,55,55,54,54,44,51,54,46,49,54,52,49,56,50,93,44,91,45,56,51,46,54,54,55,52,54,44,51,54,46,48,56,48,53,56,55,93,44,91,45,56,51,46,54,55,51,50,57,55,44,51,54,46,48,51,56,52,56,54,93,44,91,45,56,51,46,52,55,52,57,48,49,44,51,53,46,57,50,50,56,57,51,93,44,91,45,56,51,46,51,49,48,55,56,50,44,51,53,46,56,57,53,56,52,54,93,44,91,45,56,51,46,50,51,52,53,56,53,44,51,54,46,48,56,53,48,57,52,93,44,91,45,56,51,46,50,57,51,54,56,57,44,51,54,46,49,51,56,49,57,51,93,44,91,45,56,51,46,52,54,55,48,57,55,44,51,54,46,49,55,52,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,97,121,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,57,56,48,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,50,56,49,55,44,51,54,46,53,49,48,50,52,93,44,91,45,57,53,46,52,51,53,54,49,44,51,54,46,53,49,48,49,54,93,44,91,45,57,53,46,52,51,57,57,55,44,51,54,46,48,55,53,50,93,44,91,45,57,53,46,50,48,55,57,52,54,44,51,54,46,48,55,52,55,48,56,93,44,91,45,57,53,46,49,49,56,53,44,51,54,46,49,54,49,54,51,93,44,91,45,57,53,46,48,49,49,51,48,57,44,51,54,46,49,54,49,55,54,51,93,44,91,45,57,53,46,48,48,53,55,51,44,51,54,46,53,48,57,56,57,93,44,91,45,57,53,46,51,50,56,49,55,44,51,54,46,53,49,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,87,97,116,111,110,119,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,55,51,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,53,57,56,48,51,44,52,52,46,49,48,56,48,49,54,93,44,91,45,57,52,46,56,53,57,51,56,56,44,52,51,46,56,52,56,48,57,51,93,44,91,45,57,52,46,56,53,52,52,52,52,44,52,51,46,56,52,56,48,57,57,93,44,91,45,57,52,46,51,54,56,57,55,52,44,52,51,46,56,52,56,48,52,55,93,44,91,45,57,52,46,51,54,56,56,53,44,52,52,46,49,48,56,54,57,56,93,44,91,45,57,52,46,56,53,57,56,48,51,44,52,52,46,49,48,56,48,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,108,97,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,57,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,57,56,57,50,53,56,44,52,51,46,56,53,56,53,54,51,93,44,91,45,49,49,52,46,55,48,50,48,53,44,52,51,46,56,48,53,52,49,51,93,44,91,45,49,49,52,46,54,56,51,49,52,44,52,51,46,53,57,51,51,54,55,93,44,91,45,49,49,52,46,53,49,50,52,51,56,44,52,51,46,52,54,48,52,53,52,93,44,91,45,49,49,52,46,53,51,52,52,56,56,44,52,51,46,51,51,51,51,56,51,93,44,91,45,49,49,52,46,51,57,52,54,48,54,44,52,51,46,51,50,54,52,54,55,93,44,91,45,49,49,52,46,51,55,52,57,54,50,44,52,51,46,49,57,57,54,52,93,44,91,45,49,49,51,46,55,49,52,54,52,50,44,52,51,46,49,57,57,55,56,51,93,44,91,45,49,49,51,46,52,49,51,56,54,55,44,52,51,46,49,57,57,56,53,57,93,44,91,45,49,49,51,46,52,49,51,49,51,56,44,52,50,46,56,52,57,49,54,57,93,44,91,45,49,49,51,46,52,55,50,49,53,53,44,52,50,46,56,52,57,50,48,49,93,44,91,45,49,49,51,46,52,55,50,49,55,55,44,52,50,46,54,54,57,51,53,50,93,44,91,45,49,49,51,46,51,55,53,48,54,50,44,52,50,46,54,56,55,56,51,50,93,44,91,45,49,49,51,46,50,51,54,57,54,56,44,52,50,46,54,50,53,50,53,52,93,44,91,45,49,49,51,46,50,52,51,52,55,56,44,52,51,46,49,49,48,57,52,54,93,44,91,45,49,49,51,46,48,48,55,55,49,50,44,52,51,46,49,49,48,57,51,51,93,44,91,45,49,49,51,46,48,48,55,51,49,56,44,52,51,46,50,56,52,55,55,56,93,44,91,45,49,49,51,46,51,54,49,57,53,56,44,52,51,46,50,56,52,54,55,56,93,44,91,45,49,49,51,46,51,54,49,57,49,44,52,51,46,51,54,55,49,54,93,44,91,45,49,49,51,46,54,51,53,50,51,44,52,51,46,51,54,55,53,52,54,93,44,91,45,49,49,51,46,54,51,52,51,51,53,44,52,51,46,52,57,55,51,48,56,93,44,91,45,49,49,51,46,55,48,49,49,53,51,44,52,51,46,53,56,52,53,53,51,93,44,91,45,49,49,51,46,55,57,56,52,52,49,44,52,51,46,53,54,57,50,49,55,93,44,91,45,49,49,51,46,57,56,54,52,57,52,44,52,51,46,55,50,53,51,57,93,44,91,45,49,49,52,46,49,51,50,55,51,50,44,52,51,46,55,53,48,55,53,55,93,44,91,45,49,49,52,46,50,57,50,52,56,52,44,52,51,46,56,56,55,48,54,50,93,44,91,45,49,49,52,46,57,55,49,51,53,49,44,52,51,46,57,51,56,51,48,56,93,44,91,45,49,49,52,46,57,56,57,50,53,56,44,52,51,46,56,53,56,53,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,32,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,52,54,55,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,49,51,49,49,48,57,44,51,48,46,52,48,51,48,53,55,93,44,91,45,57,51,46,48,51,48,57,53,53,44,51,48,46,51,55,57,51,57,93,44,91,45,57,50,46,57,57,54,51,55,49,44,51,48,46,48,51,56,52,55,57,93,44,91,45,57,50,46,55,51,56,54,48,52,44,51,48,46,48,51,55,51,50,51,93,44,91,45,57,50,46,54,50,53,52,56,52,44,51,48,46,48,57,50,51,51,93,44,91,45,57,50,46,54,51,49,57,56,55,44,51,48,46,52,56,49,49,52,55,93,44,91,45,57,50,46,54,51,48,51,52,55,44,51,48,46,52,56,55,56,55,51,93,44,91,45,57,50,46,55,55,53,53,53,52,44,51,48,46,52,51,55,54,53,54,93,44,91,45,57,51,46,49,51,49,49,53,53,44,51,48,46,52,50,51,54,49,50,93,44,91,45,57,51,46,49,51,49,49,48,57,44,51,48,46,52,48,51,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,83,117,108,108,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,55,52,50,53,50,44,52,52,46,56,57,55,53,48,51,93,44,91,45,49,48,48,46,52,48,52,55,53,51,44,52,52,46,56,57,55,54,57,53,93,44,91,45,49,48,48,46,53,52,51,52,56,52,44,52,52,46,55,54,49,48,56,55,93,44,91,45,49,48,48,46,55,49,55,54,52,52,44,52,52,46,55,55,48,57,51,93,44,91,45,49,48,48,46,54,49,51,56,48,53,44,52,52,46,55,48,55,49,51,53,93,44,91,45,49,48,48,46,54,52,48,48,54,49,44,52,52,46,53,56,51,55,50,51,93,44,91,45,49,48,48,46,53,50,54,52,57,56,44,52,52,46,53,52,55,52,50,50,93,44,91,45,57,57,46,54,55,54,51,57,56,44,52,52,46,53,52,56,49,49,49,93,44,91,45,57,57,46,54,55,52,50,53,50,44,52,52,46,56,57,55,53,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,101,110,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,51,52,49,55,44,34,98,101,100,115,34,58,50,54,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,53,51,50,52,54,44,51,57,46,55,57,49,48,54,51,93,44,91,45,49,48,53,46,48,53,51,50,53,54,44,51,57,46,54,54,55,55,56,53,93,44,91,45,49,48,53,46,48,57,54,57,48,57,44,51,57,46,54,49,52,52,50,51,93,44,91,45,49,48,53,46,48,53,51,52,51,55,44,51,57,46,54,50,48,57,56,52,93,44,91,45,49,48,53,46,48,53,51,52,51,57,44,51,57,46,54,50,52,51,56,55,93,44,91,45,49,48,53,46,48,53,51,51,51,44,51,57,46,54,50,55,57,56,57,93,44,91,45,49,48,53,46,48,53,51,52,53,55,44,51,57,46,54,50,57,53,50,54,93,44,91,45,49,48,53,46,48,53,51,52,49,49,44,51,57,46,54,51,49,53,56,54,93,44,91,45,49,48,52,46,56,56,52,54,52,54,44,51,57,46,55,52,48,49,53,54,93,44,91,45,49,48,53,46,48,53,51,50,52,54,44,51,57,46,55,57,49,48,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,49,56,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,48,55,48,55,52,44,51,52,46,52,49,56,51,57,93,44,91,45,57,54,46,49,52,53,52,50,51,44,51,52,46,52,49,56,51,49,51,93,44,91,45,57,54,46,48,57,50,48,49,50,44,51,52,46,53,48,54,48,53,57,93,44,91,45,57,54,46,48,57,50,48,52,51,44,51,52,46,54,56,48,53,53,54,93,44,91,45,57,54,46,48,57,50,48,48,49,44,51,52,46,55,54,55,52,55,57,93,44,91,45,57,54,46,52,48,54,52,56,51,44,51,52,46,55,54,55,51,50,56,93,44,91,45,57,54,46,53,49,50,49,55,49,44,51,52,46,54,56,48,48,54,53,93,44,91,45,57,54,46,53,49,51,55,56,55,44,51,52,46,53,48,53,51,57,54,93,44,91,45,57,54,46,52,48,55,48,55,52,44,51,52,46,52,49,56,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,56,49,57,52,44,52,53,46,55,56,54,57,56,50,93,44,91,45,49,48,52,46,57,56,55,51,49,56,44,52,53,46,51,53,50,48,52,93,44,91,45,49,48,53,46,48,51,56,50,48,53,44,52,53,46,51,53,50,48,51,53,93,44,91,45,49,48,53,46,48,51,56,50,52,57,44,52,53,46,48,48,48,49,48,54,93,44,91,45,49,48,52,46,48,53,55,56,55,57,44,52,52,46,57,57,55,54,48,53,93,44,91,45,49,48,52,46,48,52,48,48,48,52,44,52,53,46,50,49,50,56,57,49,93,44,91,45,49,48,52,46,48,52,52,49,57,52,44,52,53,46,56,56,49,57,55,53,93,44,91,45,49,48,52,46,49,51,52,56,52,50,44,52,53,46,57,54,56,56,51,51,93,44,91,45,49,48,52,46,51,57,48,56,55,54,44,52,53,46,57,55,48,51,54,51,93,44,91,45,49,48,52,46,51,57,48,55,52,52,44,52,54,46,48,53,52,56,50,54,93,44,91,45,49,48,52,46,53,49,54,49,50,54,44,52,54,46,49,51,54,49,57,54,93,44,91,45,49,48,52,46,56,56,53,52,57,53,44,52,54,46,49,51,54,53,57,53,93,44,91,45,49,48,52,46,57,51,57,50,48,53,44,52,54,46,49,51,54,53,55,53,93,44,91,45,49,48,52,46,57,51,57,50,56,57,44,52,53,46,55,56,54,57,54,52,93,44,91,45,49,48,52,46,57,56,49,57,52,44,52,53,46,55,56,54,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,54,49,34,44,34,78,65,77,69,34,58,34,85,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,52,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,51,48,49,50,49,50,44,51,49,46,48,56,54,50,49,50,93,44,91,45,49,48,49,46,55,55,54,49,57,49,44,51,49,46,48,55,57,55,56,52,93,44,91,45,49,48,49,46,55,55,53,56,48,50,44,51,49,46,54,53,49,51,49,57,93,44,91,45,49,48,50,46,50,56,55,51,52,53,44,51,49,46,54,53,49,50,55,54,93,44,91,45,49,48,50,46,51,49,56,48,53,44,51,49,46,54,53,49,51,50,55,93,44,91,45,49,48,50,46,51,48,49,50,49,50,44,51,49,46,48,56,54,50,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,105,98,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,57,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,52,51,54,57,49,44,51,56,46,52,49,52,51,56,55,93,44,91,45,56,55,46,56,53,49,49,51,44,51,56,46,50,55,53,49,50,93,44,91,45,56,55,46,57,56,55,57,49,49,44,51,56,46,50,53,54,57,53,55,93,44,91,45,56,55,46,57,56,51,55,51,50,44,51,56,46,50,51,48,51,53,52,93,44,91,45,56,55,46,55,57,57,49,54,57,44,51,56,46,50,50,56,53,56,93,44,91,45,56,55,46,54,56,56,51,55,52,44,51,56,46,49,54,56,52,49,57,93,44,91,45,56,55,46,52,54,55,50,56,52,44,51,56,46,49,54,53,52,48,51,93,44,91,45,56,55,46,51,49,54,56,57,51,44,51,56,46,50,52,54,48,55,55,93,44,91,45,56,55,46,51,49,53,57,51,44,51,56,46,51,55,53,48,52,56,93,44,91,45,56,55,46,52,48,55,53,56,51,44,51,56,46,51,55,53,53,48,49,93,44,91,45,56,55,46,52,54,50,56,57,50,44,51,56,46,53,51,51,53,49,57,93,44,91,45,56,55,46,55,52,51,54,57,49,44,51,56,46,52,49,52,51,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,75,105,109,98,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,55,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,51,55,55,54,50,44,52,49,46,51,57,52,54,51,51,93,44,91,45,49,48,52,46,48,53,50,50,56,55,44,52,49,46,51,57,51,50,49,52,93,44,91,45,49,48,52,46,48,53,51,50,52,57,44,52,49,46,48,48,49,52,48,54,93,44,91,45,49,48,51,46,53,55,51,55,55,52,44,52,49,46,48,48,49,55,49,54,93,44,91,45,49,48,51,46,51,56,50,52,57,50,44,52,49,46,48,48,50,50,53,50,93,44,91,45,49,48,51,46,51,55,55,54,50,44,52,49,46,51,57,52,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,75,101,110,100,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,54,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,54,49,57,53,50,44,52,49,46,55,50,52,54,53,50,93,44,91,45,56,56,46,54,48,49,57,51,51,44,52,49,46,55,49,57,53,54,51,93,44,91,45,56,56,46,54,48,50,50,52,44,52,49,46,54,51,49,51,56,57,93,44,91,45,56,56,46,53,57,53,57,54,49,44,52,49,46,52,53,55,49,50,57,93,44,91,45,56,56,46,50,53,50,50,51,49,44,52,49,46,52,54,51,48,54,54,93,44,91,45,56,56,46,50,54,49,50,55,53,44,52,49,46,55,50,52,54,53,54,93,44,91,45,56,56,46,50,54,49,57,53,50,44,52,49,46,55,50,52,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,68,105,115,116,114,105,99,116,32,111,102,32,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,68,105,115,116,114,105,99,116,32,111,102,32,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,68,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,52,57,56,44,34,98,101,100,115,34,58,52,49,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,48,48,50,52,51,54,44,51,56,46,57,54,53,54,55,51,93,44,91,45,55,55,46,49,49,57,55,53,57,44,51,56,46,57,51,52,51,52,51,93,44,91,45,55,55,46,48,52,56,48,50,44,51,56,46,56,52,49,50,54,49,93,44,91,45,55,55,46,48,51,57,48,48,54,44,51,56,46,55,57,49,54,52,53,93,44,91,45,55,54,46,57,48,57,51,57,51,44,51,56,46,56,57,50,56,53,50,93,44,91,45,55,55,46,48,48,50,52,51,54,44,51,56,46,57,54,53,54,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,77,111,110,116,114,111,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,54,56,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,51,55,56,54,57,56,44,51,56,46,54,54,56,48,57,55,93,44,91,45,49,48,56,46,51,55,57,49,51,54,44,51,56,46,52,57,57,57,56,55,93,44,91,45,49,48,57,46,48,54,48,49,49,57,44,51,56,46,52,57,57,57,56,57,93,44,91,45,49,48,57,46,48,52,50,53,56,51,44,51,56,46,49,53,51,48,50,56,93,44,91,45,49,48,55,46,57,54,53,55,56,57,44,51,56,46,49,53,50,51,50,56,93,44,91,45,49,48,55,46,57,51,55,53,56,56,44,51,56,46,50,49,56,57,57,50,93,44,91,45,49,48,56,46,48,56,54,54,48,52,44,51,56,46,50,53,53,50,48,50,93,44,91,45,49,48,56,46,49,51,50,51,56,44,51,56,46,51,51,49,53,55,51,93,44,91,45,49,48,55,46,54,51,53,54,57,55,44,51,56,46,51,51,50,49,52,56,93,44,91,45,49,48,55,46,54,51,53,48,52,44,51,56,46,51,48,49,56,57,54,93,44,91,45,49,48,55,46,53,48,48,48,50,44,51,56,46,51,48,49,57,50,54,93,44,91,45,49,48,55,46,53,48,48,54,53,53,44,51,56,46,54,54,56,53,53,51,93,44,91,45,49,48,56,46,51,55,56,54,57,56,44,51,56,46,54,54,56,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,87,114,105,103,104,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,55,52,53,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,54,48,56,50,49,44,52,53,46,50,56,51,57,52,49,93,44,91,45,57,52,46,50,53,54,48,55,52,44,52,52,46,57,55,57,52,54,53,93,44,91,45,57,52,46,48,49,50,50,51,54,44,52,52,46,57,55,56,55,49,50,93,44,91,45,57,51,46,55,54,55,51,54,55,44,52,52,46,57,55,55,57,54,52,93,44,91,45,57,51,46,55,54,54,56,48,56,44,52,53,46,48,53,55,51,49,50,93,44,91,45,57,51,46,54,53,56,57,49,55,44,52,53,46,49,57,51,53,53,49,93,44,91,45,57,51,46,53,50,49,54,53,51,44,52,53,46,50,52,54,54,49,56,93,44,91,45,57,51,46,53,55,57,51,57,44,52,53,46,50,57,50,49,50,50,93,44,91,45,57,51,46,55,53,54,54,49,44,52,53,46,50,57,52,55,50,49,93,44,91,45,57,52,46,48,52,55,51,50,55,44,52,53,46,52,50,50,56,54,49,93,44,91,45,57,52,46,49,49,54,55,54,53,44,52,53,46,51,50,56,48,49,57,93,44,91,45,57,52,46,50,54,48,56,50,49,44,52,53,46,50,56,51,57,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,75,101,110,111,115,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,51,51,48,44,34,98,101,100,115,34,58,51,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,52,51,56,57,57,44,52,50,46,54,54,51,55,50,57,93,44,91,45,56,56,46,49,56,56,51,48,54,44,52,50,46,54,54,57,55,48,57,93,44,91,45,56,56,46,51,48,53,56,57,49,44,52,50,46,54,49,48,56,49,55,93,44,91,45,56,56,46,51,48,52,54,57,50,44,52,50,46,52,57,52,54,49,56,93,44,91,45,56,56,46,49,57,57,51,56,57,44,52,50,46,52,57,53,49,51,51,93,44,91,45,56,55,46,48,49,57,57,51,53,44,52,50,46,52,57,51,52,57,56,93,44,91,45,56,55,46,48,52,51,56,57,57,44,52,50,46,54,54,51,55,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,69,97,103,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,51,53,55,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,48,51,51,57,54,56,44,51,57,46,57,49,56,57,49,51,93,44,91,45,49,48,55,46,49,49,51,54,55,50,44,51,57,46,57,49,57,49,49,50,93,44,91,45,49,48,55,46,49,49,51,52,52,54,44,51,57,46,51,54,54,48,54,54,93,44,91,45,49,48,54,46,52,50,54,52,56,55,44,51,57,46,51,54,49,56,55,49,93,44,91,45,49,48,54,46,50,48,54,55,51,50,44,51,57,46,51,55,57,54,51,54,93,44,91,45,49,48,54,46,50,52,56,50,57,53,44,51,57,46,53,52,52,50,53,49,93,44,91,45,49,48,54,46,49,55,54,49,49,53,44,51,57,46,54,49,52,50,50,49,93,44,91,45,49,48,54,46,51,56,53,52,55,56,44,51,57,46,55,54,55,49,54,52,93,44,91,45,49,48,54,46,52,51,52,53,48,56,44,51,57,46,57,50,52,57,49,52,93,44,91,45,49,48,54,46,54,50,54,53,54,57,44,51,57,46,57,50,52,55,56,53,93,44,91,45,49,48,55,46,48,51,51,57,54,56,44,51,57,46,57,49,56,57,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,83,97,110,32,70,114,97,110,99,105,115,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,48,48,52,52,44,34,98,101,100,115,34,58,51,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,50,50,46,54,49,50,50,56,53,44,51,55,46,56,49,53,50,50,52,93,44,91,45,49,50,50,46,53,55,53,49,56,57,44,51,55,46,55,48,54,55,50,49,93,44,91,45,49,50,50,46,50,56,49,55,56,44,51,55,46,55,48,56,50,51,93,44,91,45,49,50,50,46,51,55,51,55,56,50,44,51,55,46,56,56,51,55,50,53,93,44,91,45,49,50,50,46,52,51,50,50,56,51,44,51,55,46,57,50,57,56,50,52,93,44,91,45,49,50,50,46,52,49,56,54,55,51,44,51,55,46,56,53,50,53,48,53,93,44,91,45,49,50,50,46,54,49,50,50,56,53,44,51,55,46,56,49,53,50,50,52,93,93,93,44,91,91,91,45,49,50,51,46,49,55,51,56,50,53,44,51,55,46,55,55,53,55,50,55,93,44,91,45,49,50,51,46,48,48,48,57,49,50,44,51,55,46,54,51,57,57,51,93,44,91,45,49,50,50,46,57,52,57,57,56,53,44,51,55,46,55,51,50,49,56,55,93,44,91,45,49,50,51,46,48,55,48,52,57,52,44,51,55,46,56,49,51,56,51,93,44,91,45,49,50,51,46,49,55,51,56,50,53,44,51,55,46,55,55,53,55,50,55,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,83,97,110,32,77,105,103,117,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,49,57,57,50,44,51,55,46,56,56,49,48,56,51,93,44,91,45,49,48,56,46,56,49,54,55,49,44,51,55,46,56,57,53,53,51,56,93,44,91,45,49,48,56,46,50,53,54,52,57,56,44,51,55,46,56,57,52,54,48,55,93,44,91,45,49,48,56,46,50,48,57,48,57,51,44,51,55,46,56,50,48,57,51,54,93,44,91,45,49,48,55,46,57,56,57,50,48,56,44,51,55,46,56,53,54,54,52,93,44,91,45,49,48,55,46,56,54,48,56,52,53,44,51,55,46,55,55,53,53,49,55,93,44,91,45,49,48,55,46,55,51,56,50,56,51,44,51,55,46,57,48,53,52,51,50,93,44,91,45,49,48,55,46,55,57,53,52,54,57,44,51,55,46,57,56,56,53,50,93,44,91,45,49,48,55,46,57,48,48,49,57,51,44,51,56,46,48,50,54,50,52,57,93,44,91,45,49,48,55,46,57,54,53,55,56,57,44,51,56,46,49,53,50,51,50,56,93,44,91,45,49,48,57,46,48,52,50,53,56,51,44,51,56,46,49,53,51,48,50,56,93,44,91,45,49,48,57,46,48,52,49,57,57,50,44,51,55,46,56,56,49,48,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,48,34,44,34,78,65,77,69,34,58,34,65,110,99,104,111,114,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,54,49,49,50,44,34,98,101,100,115,34,58,49,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,56,46,52,54,50,52,55,49,44,54,49,46,52,50,54,50,54,55,93,44,91,45,49,52,57,46,49,56,48,48,54,50,44,54,49,46,52,50,54,50,53,93,44,91,45,49,52,57,46,51,53,57,52,52,44,54,49,46,52,56,52,48,50,53,93,44,91,45,49,52,57,46,55,52,56,51,54,57,44,54,49,46,51,57,55,51,55,49,93,44,91,45,49,52,57,46,57,56,55,52,57,53,44,54,49,46,50,50,52,48,54,52,93,44,91,45,49,53,48,46,52,50,52,49,52,56,44,54,49,46,49,54,54,51,48,56,93,44,91,45,49,53,48,46,50,52,55,55,52,54,44,54,49,46,48,55,57,54,51,55,93,44,91,45,49,53,48,46,48,54,57,50,51,56,44,54,49,46,48,55,57,54,51,54,93,44,91,45,49,52,57,46,51,53,57,51,57,57,44,54,48,46,57,48,54,51,51,93,44,91,45,49,52,57,46,48,51,52,48,56,44,54,48,46,56,52,56,53,51,52,93,44,91,45,49,52,57,46,48,51,55,55,52,49,44,54,48,46,55,51,50,57,56,55,93,44,91,45,49,52,56,46,55,52,53,54,49,56,44,54,48,46,55,51,51,48,48,55,93,44,91,45,49,52,56,46,55,51,56,51,54,51,44,54,48,46,56,52,56,53,52,54,93,44,91,45,49,52,56,46,52,55,50,48,54,53,44,54,48,46,56,52,56,53,50,93,44,91,45,49,52,56,46,52,54,50,52,55,49,44,54,49,46,52,50,54,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,74,111,104,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,53,48,51,44,34,98,101,100,115,34,58,51,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,50,48,49,56,53,44,51,48,46,50,53,50,57,50,93,44,91,45,56,49,46,52,51,54,57,50,57,44,51,48,46,50,53,50,51,51,53,93,44,91,45,56,49,46,52,51,51,55,51,55,44,51,48,46,49,48,54,48,50,56,93,44,91,45,56,49,46,54,56,48,50,49,53,44,51,48,46,49,50,49,50,52,93,44,91,45,56,49,46,54,56,56,56,55,54,44,51,48,46,48,50,56,53,54,54,93,44,91,45,56,49,46,54,49,48,49,52,54,44,50,57,46,57,55,48,50,51,53,93,44,91,45,56,49,46,53,56,49,50,48,55,44,50,57,46,56,52,48,49,55,54,93,44,91,45,56,49,46,53,50,53,50,51,44,50,57,46,55,53,57,52,57,55,93,44,91,45,56,49,46,53,50,51,54,54,44,50,57,46,54,50,50,52,51,50,93,44,91,45,56,49,46,51,50,52,48,53,57,44,50,57,46,54,50,53,54,49,93,44,91,45,56,49,46,49,53,48,56,49,55,44,50,57,46,54,55,49,48,56,55,93,44,91,45,56,49,46,50,48,53,49,55,55,44,50,57,46,56,50,50,52,51,51,93,44,91,45,56,49,46,51,50,48,49,56,53,44,51,48,46,50,53,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,104,111,99,116,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,50,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,56,49,48,57,50,44,51,51,46,52,54,48,51,48,55,93,44,91,45,56,57,46,52,53,52,48,53,44,51,51,46,52,51,51,50,93,44,91,45,56,57,46,52,53,51,56,48,56,44,51,51,46,50,56,53,57,52,50,93,44,91,45,56,57,46,51,49,54,52,48,56,44,51,51,46,50,56,53,53,53,54,93,44,91,45,56,57,46,51,49,55,56,53,53,44,51,51,46,49,48,56,56,55,49,93,44,91,45,56,57,46,50,49,51,57,50,49,44,51,51,46,49,48,57,52,48,50,93,44,91,45,56,57,46,50,49,51,52,50,50,44,51,51,46,49,57,55,53,52,51,93,44,91,45,56,57,46,49,48,56,57,44,51,51,46,49,57,56,48,53,57,93,44,91,45,56,57,46,48,56,56,50,53,53,44,51,51,46,50,56,54,48,48,51,93,44,91,45,56,57,46,48,56,56,52,52,54,44,51,51,46,53,51,51,50,48,50,93,44,91,45,56,57,46,50,50,50,48,51,57,44,51,51,46,53,50,55,50,52,53,93,44,91,45,56,57,46,51,56,49,48,57,50,44,51,51,46,52,54,48,51,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,71,114,117,110,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,54,52,48,50,49,44,52,48,46,49,51,50,57,48,57,93,44,91,45,57,51,46,55,54,49,57,55,51,44,51,57,46,57,53,57,53,53,50,93,44,91,45,57,51,46,51,54,49,57,53,55,44,51,57,46,57,54,55,54,48,54,93,44,91,45,57,51,46,51,54,49,57,53,49,44,52,48,46,48,51,51,48,57,56,93,44,91,45,57,51,46,51,54,55,50,49,52,44,52,48,46,50,54,54,51,49,52,93,44,91,45,57,51,46,55,54,51,51,50,52,44,52,48,46,50,54,51,57,56,56,93,44,91,45,57,51,46,55,54,52,48,50,49,44,52,48,46,49,51,50,57,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,52,51,53,48,55,44,52,52,46,49,54,55,48,56,56,93,44,91,45,56,54,46,48,51,55,56,56,52,44,52,51,46,56,49,53,54,49,49,93,44,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,44,91,45,56,53,46,53,54,52,53,53,52,44,52,52,46,49,54,52,56,54,49,93,44,91,45,56,53,46,56,50,49,49,56,54,44,52,52,46,49,54,52,49,57,55,93,44,91,45,56,54,46,48,52,51,53,48,55,44,52,52,46,49,54,55,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,79,116,116,97,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,48,51,52,44,34,98,101,100,115,34,58,51,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,48,54,54,50,44,52,51,46,50,48,53,49,54,55,93,44,91,45,56,53,46,57,48,55,52,51,53,44,52,51,46,49,49,56,57,49,49,93,44,91,45,56,55,46,49,48,55,54,54,57,44,52,51,46,49,49,56,50,52,51,93,44,91,45,56,55,46,48,54,57,52,49,57,44,52,50,46,56,52,50,49,52,54,93,44,91,45,56,55,46,48,53,56,55,49,54,44,52,50,46,55,54,53,50,48,50,93,44,91,45,56,53,46,55,56,50,52,57,56,44,52,50,46,55,54,56,50,93,44,91,45,56,53,46,55,57,48,54,54,50,44,52,51,46,50,48,53,49,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,50,51,55,49,57,44,34,98,101,100,115,34,58,49,56,54,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,51,56,52,52,57,44,52,50,46,49,53,52,50,52,57,93,44,91,45,56,56,46,50,54,50,56,55,53,44,52,49,46,57,56,54,51,55,56,93,44,91,45,56,55,46,57,50,48,52,55,54,44,52,49,46,57,57,51,56,56,54,93,44,91,45,56,55,46,57,49,52,50,54,52,44,52,49,46,55,49,54,53,57,56,93,44,91,45,56,56,46,48,50,56,57,55,51,44,52,49,46,54,56,53,50,52,50,93,44,91,45,56,55,46,55,57,50,55,57,51,44,52,49,46,53,53,56,53,52,93,44,91,45,56,55,46,55,57,48,51,48,51,44,52,49,46,52,54,57,56,52,54,93,44,91,45,56,55,46,53,50,53,55,48,53,44,52,49,46,52,55,48,50,56,51,93,44,91,45,56,55,46,53,50,51,54,54,49,44,52,49,46,55,53,57,57,48,55,93,44,91,45,56,55,46,50,50,49,44,52,49,46,55,54,48,56,56,57,93,44,91,45,56,55,46,50,48,55,55,55,52,44,52,49,46,55,54,48,57,53,54,93,44,91,45,56,55,46,49,49,49,49,54,50,44,52,50,46,49,52,57,52,48,57,93,44,91,45,56,56,46,49,57,57,53,56,52,44,52,50,46,49,53,52,50,54,93,44,91,45,56,56,46,50,51,56,52,52,57,44,52,50,46,49,53,52,50,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,71,97,108,108,97,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,55,52,53,51,44,51,55,46,57,48,55,54,55,56,93,44,91,45,56,56,46,51,55,53,52,51,52,44,51,55,46,53,57,57,53,57,53,93,44,91,45,56,56,46,49,51,51,52,51,52,44,51,55,46,53,55,52,51,51,56,93,44,91,45,56,56,46,49,54,48,51,56,57,44,51,55,46,54,53,54,49,51,49,93,44,91,45,56,56,46,48,50,56,48,49,54,44,51,55,46,55,57,57,49,56,56,93,44,91,45,56,56,46,48,57,51,48,52,57,44,51,55,46,56,57,49,54,48,52,93,44,91,45,56,56,46,51,55,52,53,50,49,44,51,55,46,57,48,56,51,57,49,93,44,91,45,56,56,46,51,55,52,53,51,44,51,55,46,57,48,55,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,50,54,52,44,34,98,101,100,115,34,58,52,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,52,54,51,51,55,44,51,52,46,52,48,57,54,55,54,93,44,91,45,56,50,46,51,51,52,50,51,52,44,51,52,46,51,52,50,54,51,93,44,91,45,56,50,46,50,52,55,55,52,55,44,51,52,46,50,49,57,54,49,57,93,44,91,45,56,50,46,51,50,54,57,52,55,44,51,52,46,48,54,52,49,50,93,44,91,45,56,50,46,50,48,48,50,56,54,44,51,51,46,57,55,56,53,57,55,93,44,91,45,56,50,46,48,52,54,57,55,52,44,51,51,46,57,53,51,50,49,93,44,91,45,56,50,46,48,48,56,50,57,56,44,51,51,46,57,54,49,54,52,54,93,44,91,45,56,49,46,56,55,48,48,56,52,44,51,52,46,49,51,53,51,53,55,93,44,91,45,56,49,46,57,52,53,48,49,57,44,51,52,46,50,48,51,49,52,56,93,44,91,45,56,50,46,49,54,57,50,57,55,44,51,52,46,51,51,48,55,52,54,93,44,91,45,56,50,46,50,52,54,51,51,55,44,51,52,46,52,48,57,54,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,54,51,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,48,48,55,51,56,44,51,56,46,55,51,56,56,48,56,93,44,91,45,57,53,46,53,48,56,50,54,55,44,51,56,46,52,51,51,57,51,51,93,44,91,45,57,53,46,53,48,56,51,50,56,44,51,56,46,51,57,48,50,55,56,93,44,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,44,91,45,57,53,46,48,53,54,52,49,50,44,51,56,46,55,51,56,53,56,55,93,44,91,45,57,53,46,53,48,48,55,51,56,44,51,56,46,55,51,56,56,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,56,48,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,52,48,49,50,50,44,52,55,46,49,53,48,52,55,53,93,44,91,45,57,54,46,56,51,52,56,51,57,44,52,55,46,48,48,55,50,53,52,93,44,91,45,57,54,46,55,54,49,54,57,51,44,52,54,46,57,51,52,53,53,56,93,44,91,45,57,54,46,55,57,56,49,50,56,44,52,54,46,54,51,48,51,50,54,93,44,91,45,57,54,46,55,56,52,51,56,49,44,52,54,46,54,51,48,53,48,52,93,44,91,45,57,54,46,50,56,48,57,55,55,44,52,54,46,54,51,48,55,54,53,93,44,91,45,57,54,46,49,55,52,53,56,55,44,52,54,46,55,49,55,56,53,52,93,44,91,45,57,54,46,49,57,52,54,55,49,44,52,55,46,49,53,49,49,52,57,93,44,91,45,57,54,46,56,52,48,49,50,50,44,52,55,46,49,53,48,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,72,97,121,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,53,54,48,51,51,44,51,53,46,56,49,55,54,51,53,93,44,91,45,56,57,46,52,48,49,56,48,53,44,51,53,46,56,50,50,54,53,55,93,44,91,45,56,57,46,53,48,50,49,49,56,44,51,53,46,53,56,48,54,50,49,93,44,91,45,56,57,46,52,55,52,49,55,49,44,51,53,46,52,48,51,48,51,57,93,44,91,45,56,57,46,49,56,51,57,52,52,44,51,53,46,51,57,55,49,50,54,93,44,91,45,56,57,46,48,55,56,56,55,54,44,51,53,46,52,51,49,52,50,56,93,44,91,45,56,57,46,48,54,57,53,52,52,44,51,53,46,54,57,50,54,55,57,93,44,91,45,56,57,46,50,55,49,50,50,52,44,51,53,46,55,53,52,57,50,50,93,44,91,45,56,57,46,51,53,54,48,51,51,44,51,53,46,56,49,55,54,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,111,120,32,69,108,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,48,48,49,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,56,53,52,52,51,44,52,49,46,52,50,54,51,55,52,93,44,91,45,49,49,49,46,57,49,54,53,51,52,44,52,49,46,53,51,56,53,53,52,93,44,91,45,49,49,49,46,57,57,54,54,48,54,44,52,49,46,53,53,55,53,55,50,93,44,91,45,49,49,50,46,48,53,49,55,51,55,44,52,49,46,54,57,57,53,53,50,93,44,91,45,49,49,50,46,48,51,48,52,56,51,44,52,49,46,56,49,48,48,52,55,93,44,91,45,49,49,50,46,49,53,57,49,56,52,44,52,49,46,57,57,56,51,56,50,93,44,91,45,49,49,51,46,48,48,48,48,52,49,44,52,49,46,57,57,56,50,48,52,93,44,91,45,49,49,51,46,56,49,52,56,56,52,44,52,49,46,57,56,56,54,53,52,93,44,91,45,49,49,52,46,48,52,49,52,55,55,44,52,49,46,57,57,51,56,55,51,93,44,91,45,49,49,52,46,48,52,50,48,50,57,44,52,48,46,57,57,57,56,57,54,93,44,91,45,49,49,50,46,55,57,57,51,53,57,44,52,48,46,57,57,57,57,51,57,93,44,91,45,49,49,50,46,52,57,51,53,49,53,44,52,49,46,48,55,54,56,56,56,93,44,91,45,49,49,50,46,50,51,56,48,54,53,44,52,49,46,51,51,54,53,53,50,93,44,91,45,49,49,50,46,48,50,56,54,55,50,44,52,49,46,51,51,54,53,49,50,93,44,91,45,49,49,49,46,56,56,53,52,52,51,44,52,49,46,52,50,54,51,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,84,105,112,112,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,49,55,49,50,55,44,51,52,46,57,57,52,57,55,49,93,44,91,45,56,57,46,48,49,55,53,53,49,44,51,52,46,56,53,56,55,50,51,93,44,91,45,56,57,46,48,56,56,48,54,53,44,51,52,46,56,49,53,51,48,55,93,44,91,45,56,57,46,48,56,56,52,56,56,44,51,52,46,53,57,56,50,52,55,93,44,91,45,56,56,46,55,51,53,52,52,44,51,52,46,53,57,54,52,56,51,93,44,91,45,56,56,46,55,49,56,53,48,56,44,51,52,46,55,53,54,55,56,49,93,44,91,45,56,56,46,56,50,51,52,55,51,44,51,52,46,56,53,56,54,50,57,93,44,91,45,56,56,46,56,50,51,48,53,49,44,51,52,46,57,57,53,50,50,49,93,44,91,45,56,57,46,48,49,55,49,50,55,44,51,52,46,57,57,52,57,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,52,53,44,34,98,101,100,115,34,58,49,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,51,51,56,48,51,44,52,48,46,48,51,51,52,48,57,93,44,91,45,56,48,46,55,53,54,49,49,51,44,51,57,46,57,49,51,52,48,50,93,44,91,45,56,48,46,56,50,49,50,55,57,44,51,57,46,56,52,57,57,56,50,93,44,91,45,56,48,46,56,51,51,53,49,51,44,51,57,46,55,50,48,56,49,50,93,44,91,45,56,48,46,53,49,57,51,52,50,44,51,57,46,55,50,49,52,48,51,93,44,91,45,56,48,46,53,49,57,48,57,49,44,51,57,46,57,54,50,50,93,44,91,45,56,48,46,53,49,57,49,50,44,52,48,46,48,49,54,52,49,93,44,91,45,56,48,46,55,51,51,56,48,51,44,52,48,46,48,51,51,52,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,49,56,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,52,55,50,53,52,44,51,57,46,48,57,53,51,55,57,93,44,91,45,56,49,46,55,56,49,56,50,44,51,56,46,57,54,52,57,51,53,93,44,91,45,56,49,46,57,48,56,54,52,53,44,51,56,46,56,55,56,52,54,93,44,91,45,56,49,46,55,55,50,56,52,51,44,51,56,46,54,56,48,56,52,51,93,44,91,45,56,49,46,54,57,54,51,52,56,44,51,56,46,54,50,54,52,50,55,93,44,91,45,56,49,46,54,51,50,56,51,54,44,51,56,46,53,53,52,51,55,93,44,91,45,56,49,46,53,50,50,49,54,54,44,51,56,46,54,49,50,55,52,54,93,44,91,45,56,49,46,53,52,54,54,51,49,44,51,56,46,54,55,50,51,56,55,93,44,91,45,56,49,46,53,48,50,54,50,56,44,51,56,46,57,49,55,57,50,50,93,44,91,45,56,49,46,53,56,49,52,52,55,44,51,57,46,48,50,54,49,55,57,93,44,91,45,56,49,46,55,52,55,50,53,52,44,51,57,46,48,57,53,51,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,69,108,109,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,51,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,57,57,48,55,55,55,44,52,51,46,57,52,57,55,50,51,93,44,91,45,49,49,53,46,49,51,54,50,48,57,44,52,51,46,57,56,51,56,53,57,93,44,91,45,49,49,53,46,53,48,56,55,50,50,44,52,51,46,56,56,52,56,53,53,93,44,91,45,49,49,53,46,54,52,53,56,48,50,44,52,51,46,55,48,48,50,54,93,44,91,45,49,49,53,46,56,50,55,57,50,44,52,51,46,54,48,55,54,54,55,93,44,91,45,49,49,53,46,57,55,53,55,49,57,44,52,51,46,53,57,49,52,51,56,93,44,91,45,49,49,53,46,57,55,56,54,53,49,44,52,51,46,49,49,51,52,51,50,93,44,91,45,49,49,54,46,50,54,54,50,48,55,44,52,51,46,49,49,50,50,54,57,93,44,91,45,49,49,54,46,50,48,49,55,52,44,52,51,46,48,52,56,57,51,93,44,91,45,49,49,53,46,57,54,48,57,57,57,44,52,50,46,57,56,57,48,56,52,93,44,91,45,49,49,53,46,52,52,49,53,50,50,44,52,50,46,57,51,49,49,50,55,93,44,91,45,49,49,53,46,52,53,52,50,50,52,44,52,50,46,55,54,55,57,51,54,93,44,91,45,49,49,53,46,48,51,55,54,57,55,44,52,50,46,55,54,56,52,49,52,93,44,91,45,49,49,53,46,48,51,55,55,55,52,44,52,50,46,57,49,49,56,54,52,93,44,91,45,49,49,53,46,48,56,54,56,53,50,44,52,50,46,57,49,52,53,54,93,44,91,45,49,49,53,46,48,56,54,49,53,53,44,52,51,46,49,57,56,48,54,52,93,44,91,45,49,49,53,46,48,56,51,48,56,57,44,52,51,46,54,48,52,50,57,50,93,44,91,45,49,49,52,46,57,56,57,50,53,56,44,52,51,46,56,53,56,53,54,51,93,44,91,45,49,49,52,46,57,55,49,51,53,49,44,52,51,46,57,51,56,51,48,56,93,44,91,45,49,49,52,46,57,57,48,55,55,55,44,52,51,46,57,52,57,55,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,108,116,105,109,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,55,54,50,53,44,34,98,101,100,115,34,58,49,57,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,56,55,48,57,54,44,51,57,46,55,50,48,56,93,44,91,45,55,54,46,56,56,51,50,57,52,44,51,57,46,52,55,52,55,53,49,93,44,91,45,55,54,46,56,56,50,50,55,52,44,51,57,46,51,53,48,49,56,53,93,44,91,45,55,54,46,54,57,55,48,56,53,44,51,57,46,50,49,52,48,57,50,93,44,91,45,55,54,46,54,49,56,54,49,50,44,51,57,46,50,51,55,51,57,56,93,44,91,45,55,54,46,55,49,49,48,53,52,44,51,57,46,50,55,55,56,56,57,93,44,91,45,55,54,46,55,49,49,51,49,51,44,51,57,46,51,55,49,57,51,51,93,44,91,45,55,54,46,53,50,57,55,57,51,44,51,57,46,51,55,50,48,53,56,93,44,91,45,55,54,46,53,50,57,52,56,54,44,51,57,46,50,49,56,52,48,56,93,44,91,45,55,54,46,51,52,57,52,55,57,44,51,57,46,49,53,54,54,50,51,93,44,91,45,55,54,46,50,56,55,54,56,57,44,51,57,46,50,53,52,49,48,52,93,44,91,45,55,54,46,51,57,49,54,56,56,44,51,57,46,52,54,52,53,51,50,93,44,91,45,55,54,46,53,51,50,49,55,52,44,51,57,46,53,52,51,57,55,55,93,44,91,45,55,54,46,53,54,57,52,52,57,44,51,57,46,55,50,49,49,55,56,93,44,91,45,55,54,46,55,56,55,48,57,54,44,51,57,46,55,50,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,101,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,57,50,57,49,57,44,52,56,46,51,55,48,57,52,54,93,44,91,45,57,57,46,56,52,55,48,52,54,44,52,56,46,51,55,49,50,93,44,91,45,57,57,46,56,52,56,50,50,50,44,52,56,46,48,50,49,52,50,52,93,44,91,45,57,57,46,56,49,50,49,54,55,44,52,55,46,56,52,55,50,53,55,93,44,91,45,57,57,46,50,57,55,50,48,50,44,52,55,46,56,52,54,56,51,52,93,44,91,45,57,56,46,53,50,53,53,49,54,44,52,55,46,56,52,54,50,55,54,93,44,91,45,57,56,46,53,50,53,53,53,53,44,52,55,46,57,49,53,48,53,54,93,44,91,45,57,56,46,54,50,53,51,56,52,44,52,55,46,57,49,54,51,57,57,93,44,91,45,57,56,46,56,48,55,53,57,51,44,52,56,46,48,53,57,56,48,49,93,44,91,45,57,56,46,57,56,54,57,48,49,44,52,56,46,48,48,55,52,57,56,93,44,91,45,57,57,46,48,55,48,52,52,51,44,52,56,46,49,48,55,56,53,55,93,44,91,45,57,57,46,49,57,57,57,49,49,44,52,56,46,49,53,53,51,48,57,93,44,91,45,57,57,46,50,48,48,51,48,54,44,52,56,46,51,55,48,54,53,56,93,44,91,45,57,57,46,52,57,50,57,49,57,44,52,56,46,51,55,48,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,55,56,48,49,50,44,51,57,46,53,57,56,49,57,54,93,44,91,45,57,49,46,52,54,48,52,52,50,44,51,57,46,52,53,48,55,50,50,93,44,91,45,57,49,46,52,51,56,50,51,53,44,51,57,46,51,49,56,55,49,54,93,44,91,45,57,49,46,52,48,57,48,51,51,44,51,57,46,49,52,50,53,52,50,93,44,91,45,57,49,46,50,54,48,50,51,50,44,51,57,46,49,51,57,56,52,53,93,44,91,45,57,49,46,49,56,50,57,52,50,44,51,57,46,50,50,55,50,51,51,93,44,91,45,57,48,46,55,50,49,56,51,53,44,51,57,46,50,50,52,49,48,56,93,44,91,45,57,48,46,57,51,54,55,50,56,44,51,57,46,51,57,57,53,49,49,93,44,91,45,57,49,46,48,51,56,50,55,44,51,57,46,52,52,56,52,51,53,93,44,91,45,57,49,46,49,55,56,48,49,50,44,51,57,46,53,57,56,49,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,54,50,50,44,34,98,101,100,115,34,58,52,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,53,48,48,51,57,44,51,56,46,56,52,57,48,55,51,93,44,91,45,56,50,46,54,54,50,56,56,54,44,51,56,46,55,52,55,57,55,55,93,44,91,45,56,50,46,55,52,48,51,56,51,44,51,56,46,53,57,55,49,54,55,93,44,91,45,56,50,46,56,49,53,57,55,57,44,51,56,46,53,55,48,56,48,50,93,44,91,45,56,50,46,54,54,53,52,49,49,44,51,56,46,53,48,53,55,56,55,93,44,91,45,56,50,46,53,57,51,52,56,44,51,56,46,52,50,49,56,50,49,93,44,91,45,56,50,46,53,48,56,50,56,44,51,56,46,52,49,49,49,57,56,93,44,91,45,56,50,46,51,50,51,57,57,57,44,51,56,46,52,52,57,50,54,56,93,44,91,45,56,50,46,50,56,55,50,55,44,51,56,46,53,56,50,55,56,51,93,44,91,45,56,50,46,51,53,52,52,54,56,44,51,56,46,54,55,54,48,55,93,44,91,45,56,50,46,52,55,50,52,55,56,44,51,56,46,54,56,50,50,55,57,93,44,91,45,56,50,46,52,56,51,53,55,57,44,51,56,46,55,55,50,50,55,56,93,44,91,45,56,50,46,53,55,53,53,56,51,44,51,56,46,56,52,52,52,55,56,93,44,91,45,56,50,46,54,53,48,48,51,57,44,51,56,46,56,52,57,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,55,50,57,44,34,98,101,100,115,34,58,49,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,56,56,55,50,44,51,55,46,50,53,49,52,53,55,93,44,91,45,56,57,46,54,50,48,50,53,54,44,51,55,46,50,51,51,48,48,56,93,44,91,45,56,57,46,55,54,53,50,49,49,44,51,55,46,49,50,54,48,54,54,93,44,91,45,56,57,46,55,56,54,56,49,57,44,51,55,46,48,56,55,56,50,52,93,44,91,45,56,57,46,54,56,54,54,50,44,51,54,46,57,50,56,50,57,51,93,44,91,45,56,57,46,54,57,49,54,48,51,44,51,54,46,56,53,57,53,49,55,93,44,91,45,56,57,46,53,49,57,56,48,57,44,51,54,46,56,54,57,54,49,55,93,44,91,45,56,57,46,51,49,50,55,48,52,44,51,55,46,48,48,56,57,55,49,93,44,91,45,56,57,46,51,55,54,54,51,50,44,51,55,46,48,51,56,52,56,50,93,44,91,45,56,57,46,52,56,56,55,50,44,51,55,46,50,53,49,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,55,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,55,51,48,49,56,44,51,57,46,48,50,48,52,51,93,44,91,45,56,51,46,55,48,53,51,49,49,44,51,56,46,54,51,57,56,53,51,93,44,91,45,56,51,46,54,52,52,57,49,51,44,51,56,46,54,51,54,51,52,51,93,44,91,45,56,51,46,53,50,48,55,53,53,44,51,56,46,55,48,51,48,57,52,93,44,91,45,56,51,46,50,54,55,54,49,51,44,51,56,46,54,49,56,52,50,93,44,91,45,56,51,46,50,55,48,56,49,55,44,51,57,46,48,49,53,55,57,49,93,44,91,45,56,51,46,51,56,53,54,51,55,44,51,57,46,48,53,53,49,57,55,93,44,91,45,56,51,46,54,55,51,48,49,56,44,51,57,46,48,50,48,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,69,114,97,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,52,56,50,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,55,53,49,55,55,44,51,50,46,53,49,51,48,51,57,93,44,91,45,57,56,46,52,55,52,54,56,53,44,51,50,46,50,57,57,48,56,52,93,44,91,45,57,56,46,53,53,49,49,53,56,44,51,50,46,50,54,49,52,51,54,93,44,91,45,57,56,46,51,50,55,52,57,57,44,51,49,46,57,52,49,50,54,49,93,44,91,45,57,56,46,50,48,56,51,56,54,44,51,49,46,57,49,55,53,49,49,93,44,91,45,57,56,46,48,48,53,52,54,50,44,51,50,46,48,49,55,56,57,55,93,44,91,45,57,55,46,56,54,52,56,54,52,44,51,50,46,48,56,55,51,50,56,93,44,91,45,57,55,46,57,52,53,54,50,53,44,51,50,46,50,51,51,52,54,56,93,44,91,45,57,56,46,48,54,56,53,52,53,44,51,50,46,53,49,49,54,50,54,93,44,91,45,57,56,46,52,55,53,49,55,55,44,51,50,46,53,49,51,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,72,97,98,101,114,115,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,50,56,57,44,34,98,101,100,115,34,58,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,56,49,53,57,54,44,51,52,46,56,48,48,56,56,50,93,44,91,45,56,51,46,54,50,51,50,57,54,44,51,52,46,55,51,50,49,57,52,93,44,91,45,56,51,46,54,51,50,51,49,55,44,51,52,46,53,50,56,53,56,55,93,44,91,45,56,51,46,54,54,54,52,49,53,44,51,52,46,53,48,51,54,48,50,93,44,91,45,56,51,46,54,49,53,50,53,49,44,51,52,46,52,51,49,55,52,56,93,44,91,45,56,51,46,52,53,57,55,55,44,51,52,46,52,56,49,49,52,50,93,44,91,45,56,51,46,51,51,56,50,51,52,44,51,52,46,54,56,55,49,56,55,93,44,91,45,56,51,46,51,53,50,52,52,56,44,51,52,46,55,49,54,49,50,53,93,44,91,45,56,51,46,53,52,56,57,56,56,44,51,52,46,55,52,57,52,53,49,93,44,91,45,56,51,46,54,53,50,49,57,52,44,51,52,46,56,50,50,57,57,51,93,44,91,45,56,51,46,54,56,49,53,57,54,44,51,52,46,56,48,48,56,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,57,34,44,34,78,65,77,69,34,58,34,87,105,108,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,48,54,57,57,44,51,50,46,56,57,56,50,50,93,44,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,44,91,45,56,50,46,57,53,55,48,54,54,44,51,50,46,55,48,56,51,49,56,93,44,91,45,56,50,46,57,52,54,57,54,54,44,51,50,46,55,53,57,51,53,56,93,44,91,45,56,51,46,48,55,51,54,52,56,44,51,50,46,57,52,54,53,54,50,93,44,91,45,56,51,46,49,51,51,56,52,55,44,51,51,46,48,48,55,50,52,56,93,44,91,45,56,51,46,51,53,55,54,56,53,44,51,50,46,57,50,54,49,52,49,93,44,91,45,56,51,46,52,48,54,57,57,44,51,50,46,56,57,56,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,77,111,110,111,110,103,97,108,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,50,53,50,44,34,98,101,100,115,34,58,57,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,49,54,50,56,44,51,57,46,55,50,48,55,55,55,93,44,91,45,56,48,46,52,50,49,51,56,56,44,51,57,46,55,50,49,49,56,57,93,44,91,45,56,48,46,51,57,53,56,49,44,51,57,46,54,51,55,51,52,55,93,44,91,45,56,48,46,49,53,51,53,51,50,44,51,57,46,54,49,48,52,50,54,93,44,91,45,55,57,46,57,51,56,56,55,56,44,51,57,46,52,53,50,52,54,53,93,44,91,45,55,57,46,56,57,52,54,56,56,44,51,57,46,52,51,53,53,56,56,93,44,91,45,55,57,46,55,54,51,55,55,52,44,51,57,46,55,50,48,55,55,54,93,44,91,45,55,57,46,57,49,54,50,56,44,51,57,46,55,50,48,55,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,48,50,49,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,50,57,53,49,50,44,52,48,46,57,57,54,54,50,52,93,44,91,45,56,51,46,49,49,50,55,51,55,44,52,48,46,57,57,51,52,52,55,93,44,91,45,56,51,46,49,49,49,51,54,44,52,48,46,55,48,50,57,49,53,93,44,91,45,56,50,46,56,53,56,51,48,50,44,52,48,46,55,48,53,48,49,57,93,44,91,45,56,50,46,55,50,55,49,54,52,44,52,48,46,55,49,49,50,48,51,93,44,91,45,56,50,46,55,50,52,55,57,50,44,52,48,46,57,57,53,54,51,56,93,44,91,45,56,50,46,56,50,57,53,49,50,44,52,48,46,57,57,54,54,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,68,101,83,111,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,57,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,54,52,48,54,50,44,50,55,46,51,52,48,54,52,49,93,44,91,45,56,50,46,48,53,53,55,53,51,44,50,55,46,51,51,56,50,54,52,93,44,91,45,56,50,46,48,53,54,52,57,55,44,50,55,46,50,48,55,55,54,57,93,44,91,45,56,50,46,48,53,55,52,54,57,44,50,55,46,48,51,50,49,49,57,93,44,91,45,56,49,46,53,54,50,54,50,52,44,50,55,46,48,51,51,56,51,53,93,44,91,45,56,49,46,53,54,52,48,54,50,44,50,55,46,51,52,48,54,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,78,101,119,32,76,111,110,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,56,56,56,49,44,34,98,101,100,115,34,58,52,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,50,51,57,53,53,57,44,52,49,46,55,49,52,49,57,49,93,44,91,45,55,50,46,52,49,48,51,54,55,44,52,49,46,54,48,50,53,56,49,93,44,91,45,55,50,46,52,54,54,55,51,44,52,49,46,53,56,51,56,57,57,93,44,91,45,55,50,46,51,50,51,51,57,52,44,52,49,46,53,51,52,50,53,93,44,91,45,55,50,46,51,48,53,53,51,49,44,52,49,46,52,51,54,50,56,50,93,44,91,45,55,50,46,51,56,52,56,51,51,44,52,49,46,51,56,53,49,57,93,44,91,45,55,50,46,51,51,49,52,53,51,44,52,49,46,50,49,53,48,48,52,93,44,91,45,55,49,46,57,48,55,50,53,56,44,52,49,46,51,48,52,52,56,51,93,44,91,45,55,49,46,55,57,55,55,52,55,44,52,49,46,52,49,54,56,51,52,93,44,91,45,55,49,46,55,56,57,50,52,55,44,52,49,46,53,57,54,56,52,55,93,44,91,45,55,49,46,55,56,55,54,53,56,44,52,49,46,54,51,57,57,49,56,93,44,91,45,55,49,46,57,53,49,57,51,54,44,52,49,46,54,51,52,51,50,56,93,44,91,45,55,50,46,49,53,49,55,52,55,44,52,49,46,54,54,55,53,49,54,93,44,91,45,55,50,46,50,51,57,53,53,57,44,52,49,46,55,49,52,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,71,117,101,114,110,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,50,55,52,44,34,98,101,100,115,34,58,50,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,50,50,54,56,51,44,52,48,46,50,50,49,51,48,56,93,44,91,45,56,49,46,55,49,54,50,55,54,44,52,48,46,49,53,50,49,54,54,93,44,91,45,56,49,46,55,50,56,54,49,49,44,51,57,46,57,51,49,55,50,56,93,44,91,45,56,49,46,54,57,52,49,52,54,44,51,57,46,56,52,50,54,51,54,93,44,91,45,56,49,46,51,56,54,48,48,54,44,51,57,46,57,53,48,54,57,52,93,44,91,45,56,49,46,50,51,52,48,53,51,44,51,57,46,57,53,49,50,55,93,44,91,45,56,49,46,50,50,53,57,50,52,44,52,48,46,49,55,48,48,55,53,93,44,91,45,56,49,46,51,51,56,48,53,55,44,52,48,46,50,49,52,50,53,51,93,44,91,45,56,49,46,54,50,50,54,56,51,44,52,48,46,50,50,49,51,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,97,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,48,53,55,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,48,57,54,50,54,44,52,50,46,55,54,57,56,55,56,93,44,91,45,56,53,46,53,52,53,53,54,52,44,52,50,46,55,54,56,49,51,57,93,44,91,45,56,53,46,53,52,51,49,57,49,44,52,50,46,52,50,49,52,51,51,93,44,91,45,56,53,46,50,57,56,56,55,57,44,52,50,46,52,49,57,56,52,57,93,44,91,45,56,53,46,48,55,49,54,48,57,44,52,50,46,52,50,49,52,50,56,93,44,91,45,56,53,46,48,55,52,50,52,53,44,52,50,46,55,55,48,55,56,52,93,44,91,45,56,53,46,51,48,57,54,50,54,44,52,50,46,55,54,57,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,57,34,44,34,78,65,77,69,34,58,34,83,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,49,49,48,48,51,44,51,54,46,57,50,50,56,51,49,93,44,91,45,57,51,46,53,55,51,56,44,51,54,46,56,50,48,48,51,50,93,44,91,45,57,51,46,53,56,52,50,54,50,44,51,54,46,52,57,57,49,54,55,93,44,91,45,57,51,46,51,49,53,51,51,50,44,51,54,46,52,57,56,49,52,93,44,91,45,57,51,46,51,48,52,51,53,57,44,51,54,46,56,49,54,56,54,54,93,44,91,45,57,51,46,51,51,55,52,53,49,44,51,54,46,57,57,50,52,57,52,93,44,91,45,57,51,46,54,49,48,49,50,54,44,51,54,46,57,57,53,56,49,93,44,91,45,57,51,46,54,49,49,48,48,51,44,51,54,46,57,50,50,56,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,54,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,54,48,34,44,34,78,65,77,69,34,58,34,82,105,99,104,109,111,110,100,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,55,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,53,57,53,52,54,50,44,51,55,46,53,53,53,55,53,93,44,91,45,55,55,46,52,50,48,56,55,53,44,51,55,46,52,52,55,49,48,49,93,44,91,45,55,55,46,51,57,49,51,48,54,44,51,55,46,53,51,48,49,50,50,93,44,91,45,55,55,46,52,52,55,53,56,49,44,51,55,46,54,48,50,56,49,93,44,91,45,55,55,46,53,57,53,52,54,50,44,51,55,46,53,53,53,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,83,116,111,107,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,57,48,53,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,52,52,48,48,57,56,44,51,54,46,53,53,48,54,53,53,93,44,91,45,56,48,46,52,53,49,54,57,54,44,51,54,46,50,54,49,53,48,50,93,44,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,44,91,45,56,48,46,48,50,55,51,51,57,44,51,54,46,53,52,50,52,56,93,44,91,45,56,48,46,48,53,51,52,53,57,44,51,54,46,53,52,50,53,50,51,93,44,91,45,56,48,46,52,52,48,48,57,56,44,51,54,46,53,53,48,54,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,56,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,49,52,49,56,57,44,52,49,46,49,53,54,55,54,50,93,44,91,45,57,52,46,48,49,52,56,48,51,44,52,48,46,56,57,55,48,51,49,93,44,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,44,91,45,57,51,46,53,53,55,53,53,54,44,52,49,46,49,54,49,50,55,49,93,44,91,45,57,51,46,55,56,57,49,57,54,44,52,49,46,49,54,50,48,51,53,93,44,91,45,57,52,46,48,49,52,49,56,57,44,52,49,46,49,53,54,55,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,50,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,56,49,53,54,56,44,52,50,46,57,48,55,48,49,51,93,44,91,45,57,50,46,48,56,49,54,54,49,44,52,50,46,54,52,50,48,53,54,93,44,91,45,57,49,46,54,48,55,48,53,57,44,52,50,46,54,52,51,57,55,51,93,44,91,45,57,49,46,54,48,53,51,48,55,44,52,51,46,48,56,49,54,53,51,93,44,91,45,57,50,46,48,56,49,49,52,54,44,52,51,46,48,56,50,55,57,52,93,44,91,45,57,50,46,48,56,49,53,54,56,44,52,50,46,57,48,55,48,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,77,97,114,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,50,57,53,44,34,98,101,100,115,34,58,52,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,49,51,52,53,50,51,44,51,56,46,50,57,54,50,54,51,93,44,91,45,49,50,51,46,48,49,52,56,49,55,44,51,56,46,49,52,57,49,51,50,93,44,91,45,49,50,51,46,48,56,51,56,56,44,51,55,46,57,56,51,51,54,54,93,44,91,45,49,50,51,46,48,50,50,53,48,55,44,51,55,46,57,52,50,48,54,53,93,44,91,45,49,50,50,46,56,56,57,50,57,49,44,51,55,46,57,55,52,49,48,57,93,44,91,45,49,50,50,46,55,53,50,52,54,54,44,51,55,46,56,53,55,54,57,57,93,44,91,45,49,50,50,46,54,49,50,50,56,53,44,51,55,46,56,49,53,50,50,52,93,44,91,45,49,50,50,46,52,49,56,54,55,51,44,51,55,46,56,53,50,53,48,53,93,44,91,45,49,50,50,46,52,51,50,50,56,51,44,51,55,46,57,50,57,56,50,52,93,44,91,45,49,50,50,46,51,52,55,52,53,52,44,51,56,46,48,55,51,50,54,93,44,91,45,49,50,50,46,53,48,50,56,50,44,51,56,46,49,49,51,48,48,50,93,44,91,45,49,50,50,46,53,55,56,50,48,49,44,51,56,46,49,56,51,53,56,51,93,44,91,45,49,50,50,46,55,51,57,57,44,51,56,46,50,48,55,48,49,56,93,44,91,45,49,50,50,46,57,48,49,55,50,54,44,51,56,46,51,49,54,57,52,51,93,44,91,45,49,50,51,46,49,51,52,53,50,51,44,51,56,46,50,57,54,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,56,49,34,44,34,78,65,77,69,34,58,34,82,97,110,100,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,52,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,44,91,45,49,48,50,46,49,54,56,56,51,57,44,51,52,46,55,52,55,52,49,55,93,44,91,45,49,48,49,46,57,57,56,52,57,51,44,51,52,46,55,52,56,49,57,93,44,91,45,49,48,49,46,54,50,57,50,53,55,44,51,52,46,55,52,55,54,52,57,93,44,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,44,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,48,49,34,44,34,78,65,77,69,34,58,34,82,117,115,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,53,57,53,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,56,53,52,49,49,44,51,50,46,51,55,48,56,50,93,44,91,45,57,52,46,57,56,53,50,55,50,44,51,50,46,49,51,55,57,56,57,93,44,91,45,57,52,46,57,56,53,48,51,55,44,51,49,46,56,52,54,49,57,51,93,44,91,45,57,52,46,57,51,55,53,51,50,44,51,49,46,56,52,53,53,53,53,93,44,91,45,57,52,46,52,53,50,52,49,54,44,51,49,46,56,52,52,50,56,49,93,44,91,45,57,52,46,53,49,49,52,51,49,44,51,49,46,57,55,51,57,56,52,93,44,91,45,57,52,46,53,57,57,57,55,56,44,51,49,46,57,55,51,49,57,51,93,44,91,45,57,52,46,53,56,48,53,44,51,50,46,50,48,49,51,54,51,93,44,91,45,57,52,46,52,57,49,56,49,56,44,51,50,46,51,57,52,49,51,55,93,44,91,45,57,52,46,53,55,57,50,49,57,44,51,50,46,51,57,52,57,49,54,93,44,91,45,57,52,46,54,51,56,51,52,55,44,51,50,46,51,55,48,53,51,57,93,44,91,45,57,52,46,57,56,53,52,49,49,44,51,50,46,51,55,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,51,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,50,56,52,48,55,44,52,49,46,52,57,48,57,50,49,93,44,91,45,57,51,46,52,50,50,56,53,52,44,52,49,46,53,49,49,52,52,52,93,44,91,45,57,51,46,55,57,48,54,49,50,44,52,49,46,53,49,49,57,49,54,93,44,91,45,57,51,46,55,56,57,49,57,54,44,52,49,46,49,54,50,48,51,53,93,44,91,45,57,51,46,53,53,55,53,53,54,44,52,49,46,49,54,49,50,55,49,93,44,91,45,57,51,46,51,50,55,56,56,54,44,52,49,46,49,54,48,54,53,57,93,44,91,45,57,51,46,51,50,56,52,48,55,44,52,49,46,52,57,48,57,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,86,97,110,32,87,101,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,50,56,49,44,34,98,101,100,115,34,58,49,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,48,50,57,50,50,44,52,48,46,57,50,50,53,54,56,93,44,91,45,56,52,46,56,48,50,50,55,51,44,52,48,46,55,50,56,49,52,54,93,44,91,45,56,52,46,52,53,54,49,55,50,44,52,48,46,55,50,56,51,48,54,93,44,91,45,56,52,46,52,53,54,49,56,44,52,48,46,54,56,52,56,54,50,93,44,91,45,56,52,46,51,57,54,55,55,56,44,52,48,46,54,56,52,57,50,54,93,44,91,45,56,52,46,51,57,55,51,55,52,44,52,48,46,56,49,53,57,52,49,93,44,91,45,56,52,46,51,52,48,53,51,49,44,52,48,46,56,53,57,48,57,57,93,44,91,45,56,52,46,51,57,57,52,56,54,44,52,48,46,57,57,48,51,49,53,93,44,91,45,56,52,46,56,48,51,50,53,49,44,52,48,46,57,56,57,51,57,52,93,44,91,45,56,52,46,56,48,50,57,50,50,44,52,48,46,57,50,50,53,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,71,108,97,100,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,52,48,54,55,54,44,50,55,46,50,48,53,57,51,57,93,44,91,45,56,49,46,49,54,57,49,51,56,44,50,55,46,50,48,57,53,56,53,93,44,91,45,56,49,46,49,54,56,50,56,49,44,50,55,46,49,50,49,55,51,52,93,44,91,45,56,49,46,50,54,55,54,55,55,44,50,55,46,49,50,49,48,57,55,93,44,91,45,56,49,46,50,54,55,50,49,54,44,50,55,46,48,51,50,52,55,52,93,44,91,45,56,49,46,53,54,50,53,51,49,44,50,55,46,48,51,51,54,56,55,93,44,91,45,56,49,46,53,54,53,57,51,49,44,50,54,46,55,54,57,53,53,50,93,44,91,45,56,48,46,57,52,53,51,53,52,44,50,54,46,55,54,57,48,52,57,93,44,91,45,56,48,46,56,56,53,54,51,57,44,50,54,46,57,53,56,57,49,57,93,44,91,45,56,48,46,56,55,49,49,54,57,44,50,55,46,49,53,52,57,53,49,93,44,91,45,56,48,46,57,52,48,54,55,54,44,50,55,46,50,48,53,57,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,77,101,114,105,119,101,116,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,49,51,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,54,50,51,53,57,44,51,51,46,49,57,49,49,55,51,93,44,91,45,56,52,46,56,54,49,55,54,56,44,51,50,46,56,55,50,52,57,53,93,44,91,45,56,52,46,55,48,48,53,51,56,44,51,50,46,56,52,52,54,52,93,44,91,45,56,52,46,53,48,54,56,56,56,44,51,50,46,56,56,49,55,56,56,93,44,91,45,56,52,46,53,50,55,48,50,44,51,50,46,57,55,48,53,52,56,93,44,91,45,56,52,46,52,57,54,55,56,51,44,51,51,46,49,56,51,56,54,54,93,44,91,45,56,52,46,53,48,50,51,53,50,44,51,51,46,50,50,49,48,53,53,93,44,91,45,56,52,46,56,53,50,51,54,44,51,51,46,50,50,51,53,57,93,44,91,45,56,52,46,56,54,50,51,53,57,44,51,51,46,49,57,49,49,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,111,115,116,105,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,55,52,51,51,51,57,44,51,55,46,51,53,54,55,57,56,93,44,91,45,49,48,53,46,55,49,56,52,54,51,44,51,54,46,57,57,53,56,52,49,93,44,91,45,49,48,53,46,50,50,48,53,48,54,44,51,54,46,57,57,52,57,55,52,93,44,91,45,49,48,53,46,49,53,53,48,52,50,44,51,54,46,57,57,53,50,54,50,93,44,91,45,49,48,53,46,49,53,52,49,55,54,44,51,55,46,50,57,51,49,50,57,93,44,91,45,49,48,53,46,49,57,51,50,51,55,44,51,55,46,53,57,50,49,54,56,93,44,91,45,49,48,53,46,50,57,53,53,56,55,44,51,55,46,54,53,52,52,49,54,93,44,91,45,49,48,53,46,52,56,53,53,49,54,44,51,55,46,53,55,55,56,57,57,93,44,91,45,49,48,53,46,55,52,51,51,51,57,44,51,55,46,51,53,54,55,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,67,111,114,121,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,51,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,54,54,52,51,49,44,51,49,46,54,55,50,52,54,49,93,44,91,45,57,56,46,49,56,48,48,48,54,44,51,49,46,52,54,51,55,49,55,93,44,91,45,57,55,46,57,48,55,49,44,51,49,46,48,54,57,51,55,52,93,44,91,45,57,55,46,52,49,56,54,48,54,44,51,49,46,51,50,48,50,48,50,93,44,91,45,57,55,46,54,48,53,50,51,44,51,49,46,53,56,55,55,54,50,93,44,91,45,57,55,46,54,56,57,56,51,52,44,51,49,46,55,49,49,48,49,57,93,44,91,45,57,55,46,55,54,54,52,51,49,44,51,49,46,54,55,50,52,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,48,48,54,50,57,44,52,49,46,53,48,52,49,52,56,93,44,91,45,57,52,46,55,48,48,53,56,57,44,52,49,46,49,53,56,48,56,53,93,44,91,45,57,52,46,52,55,48,54,48,51,44,52,49,46,49,53,55,53,54,54,93,44,91,45,57,52,46,50,52,49,54,51,55,44,52,49,46,49,53,55,49,51,52,93,44,91,45,57,52,46,50,52,49,53,57,51,44,52,49,46,53,48,51,54,55,57,93,44,91,45,57,52,46,55,48,48,54,50,57,44,52,49,46,53,48,52,49,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,67,104,97,116,116,97,104,111,111,99,104,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,54,55,44,34,98,101,100,115,34,58,50,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,55,49,57,54,50,44,51,50,46,51,55,55,54,57,56,93,44,91,45,56,52,46,57,50,51,48,50,55,44,51,50,46,50,51,48,56,53,49,93,44,91,45,56,52,46,54,53,56,57,50,44,51,50,46,50,51,50,56,53,50,93,44,91,45,56,52,46,54,51,55,51,50,51,44,51,50,46,53,51,52,56,53,53,93,44,91,45,56,52,46,54,57,52,53,49,44,51,50,46,53,49,56,55,51,50,93,44,91,45,56,52,46,55,57,50,57,53,49,44,51,50,46,52,49,51,56,52,93,44,91,45,56,52,46,57,55,49,57,54,50,44,51,50,46,51,55,55,54,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,77,97,114,105,112,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,52,48,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,51,56,55,54,55,44,51,55,46,54,51,51,51,54,52,93,44,91,45,49,50,48,46,50,54,54,48,49,44,51,55,46,52,48,48,54,48,55,93,44,91,45,49,50,48,46,49,52,51,56,50,54,44,51,55,46,50,51,57,49,57,50,93,44,91,45,49,50,48,46,48,53,50,48,53,53,44,51,55,46,49,56,51,49,48,56,93,44,91,45,49,49,57,46,55,54,49,56,48,57,44,51,55,46,52,49,55,49,49,52,93,44,91,45,49,49,57,46,54,53,49,49,57,49,44,51,55,46,52,49,55,56,51,50,93,44,91,45,49,49,57,46,53,56,51,53,56,53,44,51,55,46,53,54,48,51,51,53,93,44,91,45,49,49,57,46,51,48,56,57,57,53,44,51,55,46,55,55,55,57,56,54,93,44,91,45,49,49,57,46,53,51,51,57,57,57,44,51,55,46,57,48,50,57,50,50,93,44,91,45,49,49,57,46,54,54,55,50,48,51,44,51,55,46,56,48,49,50,50,52,93,44,91,45,49,49,57,46,56,48,53,52,57,56,44,51,55,46,55,53,57,54,49,56,93,44,91,45,49,49,57,46,57,51,56,52,49,52,44,51,55,46,55,54,51,48,50,54,93,44,91,45,49,50,48,46,48,50,54,53,57,51,44,51,55,46,56,49,49,56,55,55,93,44,91,45,49,50,48,46,51,52,53,52,51,55,44,51,55,46,55,50,52,55,56,55,93,44,91,45,49,50,48,46,51,56,55,54,49,51,44,51,55,46,54,51,51,55,48,52,93,44,91,45,49,50,48,46,51,56,55,54,55,44,51,55,46,54,51,51,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,52,57,50,50,52,44,51,57,46,50,50,54,50,49,56,93,44,91,45,57,50,46,57,51,52,53,54,57,44,51,57,46,48,54,52,53,52,55,93,44,91,45,57,50,46,56,52,49,54,49,55,44,51,56,46,57,55,57,56,50,49,93,44,91,45,57,50,46,53,53,56,48,56,54,44,51,56,46,57,55,48,54,57,50,93,44,91,45,57,50,46,52,51,48,50,50,57,44,51,57,46,50,52,56,55,57,53,93,44,91,45,57,50,46,55,48,55,51,54,55,44,51,57,46,51,50,49,54,49,52,93,44,91,45,57,50,46,55,57,48,51,54,57,44,51,57,46,51,52,51,53,56,54,93,44,91,45,57,50,46,56,52,57,50,50,52,44,51,57,46,50,50,54,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,53,53,51,44,34,98,101,100,115,34,58,49,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,56,52,57,57,50,53,44,52,53,46,50,53,57,54,57,55,93,44,91,45,49,50,51,46,48,48,48,55,56,56,44,52,53,46,50,53,57,51,52,55,93,44,91,45,49,50,51,46,48,54,56,54,54,55,44,52,53,46,48,55,52,56,54,93,44,91,45,49,50,51,46,48,52,52,57,48,51,44,52,52,46,57,52,52,48,50,56,93,44,91,45,49,50,51,46,49,55,57,51,56,55,44,52,52,46,56,51,53,55,50,57,93,44,91,45,49,50,51,46,49,52,51,56,52,51,44,52,52,46,55,52,56,57,49,52,93,44,91,45,49,50,51,46,48,48,55,55,52,51,44,52,52,46,54,56,56,48,55,49,93,44,91,45,49,50,50,46,56,48,50,52,53,55,44,52,52,46,55,57,48,56,54,52,93,44,91,45,49,50,50,46,50,55,54,54,55,53,44,52,52,46,55,52,54,49,51,53,93,44,91,45,49,50,50,46,48,51,51,48,48,54,44,52,52,46,54,56,53,54,57,49,93,44,91,45,49,50,49,46,56,48,48,48,49,53,44,52,52,46,54,56,51,52,50,53,93,44,91,45,49,50,49,46,55,53,50,57,57,52,44,52,52,46,56,50,57,57,49,57,93,44,91,45,49,50,49,46,55,51,52,50,50,51,44,52,52,46,56,56,53,55,50,93,44,91,45,49,50,50,46,52,48,49,48,50,49,44,52,52,46,56,56,53,55,50,93,44,91,45,49,50,50,46,53,48,56,49,48,54,44,52,52,46,57,49,57,53,57,57,93,44,91,45,49,50,50,46,53,57,53,53,50,51,44,52,53,46,48,49,57,54,55,57,93,44,91,45,49,50,50,46,55,56,56,53,53,52,44,52,53,46,49,51,48,49,55,54,93,44,91,45,49,50,50,46,55,52,57,55,57,51,44,52,53,46,49,57,53,50,52,50,93,44,91,45,49,50,50,46,56,52,57,57,50,53,44,52,53,46,50,53,57,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,77,105,108,119,97,117,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,52,50,48,57,44,34,98,101,100,115,34,58,51,56,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,49,57,48,48,56,44,52,51,46,49,57,48,56,49,54,93,44,91,45,56,56,46,48,54,51,51,53,51,44,52,51,46,49,57,50,49,49,55,93,44,91,45,56,56,46,48,54,57,57,50,52,44,52,50,46,56,52,51,51,50,51,93,44,91,45,56,55,46,48,54,57,52,49,57,44,52,50,46,56,52,50,49,52,54,93,44,91,45,56,55,46,49,48,55,54,54,57,44,52,51,46,49,49,56,50,52,51,93,44,91,45,56,55,46,49,49,57,48,48,56,44,52,51,46,49,57,48,56,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,51,55,50,44,34,98,101,100,115,34,58,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,50,48,52,51,49,44,52,52,46,56,48,52,50,54,51,93,44,91,45,57,51,46,55,54,56,48,51,57,44,52,52,46,54,52,48,51,48,51,93,44,91,45,57,51,46,57,49,48,52,48,53,44,52,52,46,53,52,51,49,54,51,93,44,91,45,57,51,46,53,50,52,51,50,55,44,52,52,46,53,52,51,54,49,56,93,44,91,45,57,51,46,50,56,49,53,50,49,44,52,52,46,53,52,51,57,53,55,93,44,91,45,57,51,46,51,50,57,54,49,53,44,52,52,46,55,57,49,48,56,54,93,44,91,45,57,51,46,53,50,48,52,51,49,44,52,52,46,56,48,52,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,80,105,99,107,97,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,52,50,48,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,50,52,50,53,52,44,51,57,46,55,57,52,57,57,54,93,44,91,45,56,51,46,50,52,51,55,48,50,44,51,57,46,56,49,50,53,48,51,93,44,91,45,56,51,46,50,53,50,52,51,53,44,51,57,46,54,57,53,52,51,56,93,44,91,45,56,51,46,50,54,54,55,51,55,44,51,57,46,53,49,54,50,52,57,93,44,91,45,56,50,46,57,56,52,53,54,44,51,57,46,53,48,54,55,53,52,93,44,91,45,56,50,46,55,52,48,55,50,57,44,51,57,46,52,54,56,51,53,93,44,91,45,56,50,46,55,51,49,53,49,56,44,51,57,46,53,53,52,52,52,53,93,44,91,45,56,50,46,56,52,50,57,53,51,44,51,57,46,53,54,49,52,56,93,44,91,45,56,50,46,56,50,52,50,53,52,44,51,57,46,55,57,52,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,80,111,119,104,97,116,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,53,55,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,44,91,45,55,55,46,56,57,55,50,57,50,44,51,55,46,54,54,56,49,56,49,93,44,91,45,55,56,46,48,55,50,49,55,52,44,51,55,46,54,53,55,51,56,53,93,44,91,45,55,56,46,49,51,50,48,52,56,44,51,55,46,52,53,52,54,56,54,93,44,91,45,55,55,46,57,56,54,49,57,44,51,55,46,52,56,54,50,54,57,93,44,91,45,55,55,46,56,53,53,49,52,56,44,51,55,46,52,49,56,51,54,51,93,44,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,52,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,52,34,44,34,78,65,77,69,34,58,34,66,114,111,111,109,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,49,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,49,52,55,49,52,51,44,51,57,46,57,49,51,56,56,57,93,44,91,45,49,48,53,46,48,53,50,56,57,50,44,51,57,46,57,49,52,50,50,52,93,44,91,45,49,48,52,46,57,54,49,52,48,53,44,52,48,46,48,48,48,51,51,55,93,44,91,45,49,48,53,46,48,53,50,56,50,51,44,52,48,46,48,48,48,50,54,93,44,91,45,49,48,53,46,49,52,55,49,52,51,44,51,57,46,57,49,51,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,57,51,55,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,57,52,53,51,52,44,51,53,46,52,52,52,54,55,54,93,44,91,45,56,55,46,53,55,53,51,53,50,44,51,53,46,51,57,56,52,53,52,93,44,91,45,56,55,46,53,55,55,55,57,54,44,51,53,46,49,53,57,52,93,44,91,45,56,55,46,54,48,54,48,51,49,44,51,53,46,48,48,51,52,50,53,93,44,91,45,56,55,46,50,50,52,48,53,50,44,51,52,46,57,57,57,51,55,55,93,44,91,45,56,55,46,50,48,54,53,55,56,44,51,53,46,52,51,51,50,48,55,93,44,91,45,56,55,46,50,57,52,53,51,52,44,51,53,46,52,52,52,54,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,110,116,114,105,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,53,55,52,53,50,44,52,53,46,49,49,54,55,48,55,93,44,91,45,56,53,46,50,50,51,54,56,49,44,52,53,46,49,49,55,56,54,49,93,44,91,45,56,53,46,50,50,50,55,48,55,44,52,53,46,50,48,53,53,54,93,44,91,45,56,53,46,52,53,56,56,57,54,44,52,53,46,50,48,54,53,55,52,93,44,91,45,56,53,46,52,56,48,54,55,52,44,52,53,46,49,50,48,51,50,54,93,44,91,45,56,53,46,52,50,55,54,56,56,44,52,52,46,57,54,53,50,55,51,93,44,91,45,56,53,46,52,55,51,56,52,49,44,52,52,46,56,53,57,52,52,57,93,44,91,45,56,53,46,51,51,50,56,51,54,44,52,52,46,56,49,50,51,55,50,93,44,91,45,56,53,46,50,57,49,55,49,54,44,52,52,46,56,53,57,54,48,56,93,44,91,45,56,52,46,56,52,55,51,48,57,44,52,52,46,56,53,56,48,51,55,93,44,91,45,56,52,46,56,53,55,52,53,50,44,52,53,46,49,49,54,55,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,77,97,114,108,98,111,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,49,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,50,55,52,49,50,44,51,52,46,56,48,54,55,51,52,93,44,91,45,55,57,46,56,48,51,56,55,55,44,51,52,46,54,48,57,48,53,51,93,44,91,45,55,57,46,56,50,57,57,56,49,44,51,52,46,53,51,49,57,50,53,93,44,91,45,55,57,46,54,56,53,50,50,55,44,51,52,46,52,48,48,54,54,57,93,44,91,45,55,57,46,54,53,55,55,54,52,44,51,52,46,51,48,53,49,57,93,44,91,45,55,57,46,54,51,51,52,49,51,44,51,52,46,50,57,55,57,57,52,93,44,91,45,55,57,46,52,53,48,48,50,52,44,51,52,46,54,50,49,48,53,51,93,44,91,45,55,57,46,52,54,49,53,48,54,44,51,52,46,54,51,48,51,55,57,93,44,91,45,55,57,46,54,57,50,57,52,52,44,51,52,46,56,48,53,49,53,53,93,44,91,45,55,57,46,57,50,55,52,49,50,44,51,52,46,56,48,54,55,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,101,110,101,119,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,56,54,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,51,57,56,55,56,44,52,55,46,50,53,57,50,55,50,93,44,91,45,49,49,55,46,48,51,57,55,53,50,44,52,55,46,49,50,55,50,54,57,93,44,91,45,49,49,54,46,56,51,53,50,54,57,44,52,55,46,48,51,50,52,53,50,93,44,91,45,49,49,54,46,51,50,57,52,49,56,44,52,55,46,48,50,49,57,49,53,93,44,91,45,49,49,54,46,51,50,57,52,48,54,44,52,55,46,52,49,52,48,49,49,93,44,91,45,49,49,54,46,53,56,54,53,52,57,44,52,55,46,52,49,52,54,57,53,93,44,91,45,49,49,54,46,54,50,57,48,53,57,44,52,55,46,51,55,49,52,51,56,93,44,91,45,49,49,55,46,48,51,57,56,48,56,44,52,55,46,51,54,54,48,51,49,93,44,91,45,49,49,55,46,48,51,57,56,55,56,44,52,55,46,50,53,57,50,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,53,50,55,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,50,57,51,51,44,52,49,46,57,48,49,54,49,55,93,44,91,45,56,57,46,54,51,49,52,57,52,44,52,49,46,53,56,52,57,52,57,93,44,91,45,56,57,46,49,54,54,53,54,49,44,52,49,46,53,56,53,50,56,57,93,44,91,45,56,56,46,57,51,56,54,55,57,44,52,49,46,54,50,56,51,49,54,93,44,91,45,56,56,46,57,52,49,50,55,57,44,52,49,46,56,57,49,55,53,50,93,44,91,45,56,57,46,51,54,48,53,55,56,44,52,49,46,56,56,56,48,49,56,93,44,91,45,56,57,46,54,50,57,51,51,44,52,49,46,57,48,49,54,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,78,101,109,97,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,48,52,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,54,55,48,49,50,44,52,48,46,53,50,51,49,52,56,93,44,91,45,57,54,46,48,54,54,55,51,54,44,52,48,46,50,54,50,48,51,56,93,44,91,45,57,54,46,48,49,48,49,55,54,44,52,48,46,50,54,49,52,56,50,93,44,91,45,57,53,46,53,53,50,52,55,51,44,52,48,46,50,54,49,57,48,52,93,44,91,45,57,53,46,53,53,52,56,49,55,44,52,48,46,50,54,52,52,54,93,44,91,45,57,53,46,55,48,57,57,55,52,44,52,48,46,53,50,51,55,57,56,93,44,91,45,57,54,46,48,54,55,48,49,50,44,52,48,46,53,50,51,49,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,57,50,48,44,34,98,101,100,115,34,58,49,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,49,49,53,56,44,51,52,46,57,56,49,55,54,56,93,44,91,45,55,54,46,54,57,51,48,49,56,44,51,52,46,56,54,57,49,56,93,44,91,45,55,55,46,48,55,56,50,54,51,44,51,52,46,56,49,49,51,50,50,93,44,91,45,55,55,46,49,54,53,57,56,54,44,51,52,46,55,56,53,48,51,50,93,44,91,45,55,55,46,48,57,54,57,55,50,44,51,52,46,54,55,50,52,48,49,93,44,91,45,55,55,46,49,49,55,49,57,56,44,51,52,46,53,56,52,51,54,55,93,44,91,45,55,54,46,56,49,56,57,51,55,44,51,52,46,54,52,51,50,53,51,93,44,91,45,55,54,46,54,49,52,55,50,50,44,51,52,46,54,49,56,50,55,56,93,44,91,45,55,54,46,52,57,49,57,57,49,44,51,52,46,53,52,54,53,51,50,93,44,91,45,55,54,46,51,55,52,54,51,56,44,51,52,46,55,49,53,57,57,49,93,44,91,45,55,54,46,50,52,57,54,51,50,44,51,52,46,56,51,52,54,51,49,93,44,91,45,55,54,46,48,48,54,57,51,54,44,51,53,46,48,48,54,48,51,49,93,44,91,45,55,54,46,48,54,53,55,55,52,44,51,53,46,49,50,52,57,51,55,93,44,91,45,55,54,46,51,48,52,49,51,54,44,51,53,46,50,48,49,52,53,51,93,44,91,45,55,54,46,55,49,49,53,56,44,51,52,46,57,56,49,55,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,80,111,116,116,97,119,97,116,111,109,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,52,53,44,34,98,101,100,115,34,58,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,56,48,51,54,50,44,51,57,46,53,54,54,51,51,50,93,44,91,45,57,54,46,55,49,57,49,53,56,44,51,57,46,51,57,52,51,51,56,93,44,91,45,57,54,46,53,49,54,55,44,51,57,46,49,55,49,49,51,93,44,91,45,57,54,46,51,56,57,48,52,54,44,51,57,46,49,55,50,56,55,56,93,44,91,45,57,54,46,50,51,51,54,55,49,44,51,57,46,50,49,50,50,55,57,93,44,91,45,57,54,46,48,56,51,53,53,55,44,51,57,46,49,57,51,53,48,52,93,44,91,45,57,54,46,48,51,57,48,54,44,51,57,46,49,50,54,53,50,55,93,44,91,45,57,54,46,48,51,53,53,55,51,44,51,57,46,50,49,54,53,50,93,44,91,45,57,54,46,48,51,53,57,53,50,44,51,57,46,53,54,54,49,93,44,91,45,57,54,46,50,51,56,57,54,57,44,51,57,46,53,54,54,50,50,93,44,91,45,57,54,46,53,56,48,51,54,50,44,51,57,46,53,54,54,51,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,57,49,51,44,34,98,101,100,115,34,58,53,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,49,56,52,57,51,44,52,50,46,52,50,49,53,50,93,44,91,45,56,52,46,55,48,57,53,53,54,44,52,50,46,48,55,48,51,54,54,93,44,91,45,56,52,46,51,54,51,50,57,55,44,52,50,46,48,55,51,52,53,54,93,44,91,45,56,52,46,49,51,49,57,54,51,44,52,50,46,48,55,49,53,55,55,93,44,91,45,56,52,46,49,51,49,49,51,54,44,52,50,46,52,50,52,53,54,55,93,44,91,45,56,52,46,49,52,48,55,49,51,44,52,50,46,52,50,52,54,49,49,93,44,91,45,56,52,46,54,48,48,52,48,51,44,52,50,46,52,50,49,57,56,52,93,44,91,45,56,52,46,55,49,56,52,57,51,44,52,50,46,52,50,49,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,67,111,109,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,48,57,55,44,34,98,101,100,115,34,58,50,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,52,54,49,50,52,44,50,57,46,55,52,53,49,56,49,93,44,91,45,57,56,46,53,52,51,55,49,56,44,50,57,46,55,53,50,48,53,50,93,44,91,45,57,56,46,51,56,48,49,54,49,44,50,57,46,55,48,51,57,50,57,93,44,91,45,57,56,46,51,49,48,57,50,56,44,50,57,46,53,57,52,52,55,51,93,44,91,45,57,56,46,48,56,57,50,55,55,44,50,57,46,54,56,51,57,51,49,93,44,91,45,57,55,46,57,57,57,50,55,49,44,50,57,46,55,53,50,52,52,52,93,44,91,45,57,56,46,48,51,48,53,50,51,44,50,57,46,56,52,56,53,51,57,93,44,91,45,57,56,46,50,57,55,54,44,51,48,46,48,51,55,57,57,52,93,44,91,45,57,56,46,52,49,52,48,49,56,44,50,57,46,57,51,55,53,53,55,93,44,91,45,57,56,46,54,52,54,49,50,52,44,50,57,46,55,52,53,49,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,78,97,110,116,117,99,107,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,48,49,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,52,57,51,51,48,56,44,52,49,46,50,55,57,57,55,53,93,44,91,45,55,48,46,51,52,52,48,56,51,44,52,49,46,50,55,54,49,52,54,93,44,91,45,55,48,46,49,48,57,54,56,52,44,52,49,46,49,56,57,56,48,51,93,44,91,45,54,57,46,57,49,48,51,49,57,44,52,49,46,50,50,54,56,52,57,93,44,91,45,54,57,46,57,49,48,48,57,51,44,52,49,46,51,49,55,50,54,51,93,44,91,45,55,48,46,48,48,54,52,54,55,44,52,49,46,52,51,51,56,57,56,93,44,91,45,55,48,46,50,51,52,51,51,44,52,49,46,51,56,51,50,50,57,93,44,91,45,55,48,46,51,50,56,49,56,50,44,52,49,46,51,56,48,49,53,57,93,44,91,45,55,48,46,52,57,51,51,48,56,44,52,49,46,50,55,57,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,109,98,101,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,54,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,50,50,54,55,51,44,51,51,46,52,52,93,44,91,45,56,49,46,50,50,55,55,55,56,44,51,51,46,49,54,50,54,50,50,93,44,91,45,56,49,46,49,57,51,48,57,57,44,51,51,46,49,49,56,54,54,56,93,44,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,44,91,45,56,48,46,55,57,55,57,49,50,44,51,51,46,49,55,54,57,52,52,93,44,91,45,56,48,46,57,52,56,55,53,54,44,51,51,46,51,48,56,48,52,55,93,44,91,45,56,49,46,50,50,50,54,55,51,44,51,51,46,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,114,97,110,115,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,55,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,55,57,48,53,49,50,44,50,56,46,51,49,57,50,51,56,93,44,91,45,57,55,46,49,50,51,48,55,50,44,50,56,46,50,55,50,56,49,55,93,44,91,45,57,55,46,48,50,51,53,56,54,44,50,56,46,49,56,55,54,53,55,93,44,91,45,57,55,46,49,52,52,57,49,54,44,50,56,46,49,48,50,54,50,50,93,44,91,45,57,55,46,50,54,48,56,49,56,44,50,56,46,48,55,53,55,53,57,93,44,91,45,57,55,46,49,51,54,51,49,50,44,50,55,46,57,48,52,51,57,93,44,91,45,57,54,46,57,56,52,50,56,49,44,50,55,46,56,48,51,55,56,51,93,44,91,45,57,54,46,57,53,57,52,57,53,44,50,55,46,56,55,53,51,48,50,93,44,91,45,57,54,46,56,49,53,57,48,53,44,50,56,46,48,50,50,56,51,53,93,44,91,45,57,54,46,56,51,48,56,54,49,44,50,56,46,49,48,56,93,44,91,45,57,54,46,55,57,48,53,49,50,44,50,56,46,51,49,57,50,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,101,114,114,105,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,50,53,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,51,52,52,57,50,44,51,49,46,51,53,48,51,54,49,93,44,91,45,56,51,46,51,51,53,57,52,57,44,51,49,46,50,52,52,53,55,57,93,44,91,45,56,51,46,50,57,53,48,53,50,44,51,49,46,48,50,55,50,55,56,93,44,91,45,56,51,46,49,57,55,57,55,49,44,51,49,46,48,50,53,52,48,53,93,44,91,45,56,51,46,49,54,53,48,55,50,44,51,49,46,49,52,55,49,57,56,93,44,91,45,56,51,46,48,52,54,56,56,53,44,51,49,46,49,56,51,54,56,93,44,91,45,56,51,46,48,52,54,57,56,56,44,51,49,46,50,56,50,57,54,54,93,44,91,45,56,51,46,49,52,48,52,56,51,44,51,49,46,52,50,48,51,57,53,93,44,91,45,56,51,46,49,52,53,53,56,55,44,51,49,46,52,55,50,50,55,54,93,44,91,45,56,51,46,51,51,56,55,50,56,44,51,49,46,52,55,53,57,57,49,93,44,91,45,56,51,46,52,51,52,52,57,50,44,51,49,46,51,53,48,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,86,101,114,109,105,108,108,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,51,49,52,52,57,44,52,48,46,49,52,56,49,50,55,93,44,91,45,56,55,46,53,51,51,50,50,56,44,51,57,46,56,56,51,93,44,91,45,56,55,46,53,51,50,49,57,52,44,51,57,46,54,48,55,51,48,54,93,44,91,45,56,55,46,51,56,50,52,49,56,44,51,57,46,54,48,55,57,51,55,93,44,91,45,56,55,46,51,54,56,56,54,51,44,51,57,46,56,57,48,52,55,49,93,44,91,45,56,55,46,52,50,48,50,50,49,44,51,57,46,57,53,50,52,53,50,93,44,91,45,56,55,46,52,48,54,54,54,55,44,52,48,46,49,50,55,53,48,56,93,44,91,45,56,55,46,53,51,49,52,52,57,44,52,48,46,49,52,56,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,82,111,115,99,111,109,109,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,55,48,54,52,51,44,52,52,46,53,48,55,50,50,51,93,44,91,45,56,52,46,56,53,48,57,50,57,44,52,52,46,53,49,49,48,54,57,93,44,91,45,56,52,46,56,53,49,55,48,53,44,52,52,46,49,54,49,51,55,53,93,44,91,45,56,52,46,54,48,56,49,48,52,44,52,52,46,49,54,48,52,56,50,93,44,91,45,56,52,46,51,54,56,48,51,57,44,52,52,46,49,54,48,53,51,56,93,44,91,45,56,52,46,51,55,48,54,52,51,44,52,52,46,53,48,55,50,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,104,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,55,51,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,53,51,50,53,57,44,51,54,46,53,55,52,54,57,50,93,44,91,45,56,49,46,50,53,51,54,52,57,44,51,54,46,51,54,54,54,48,49,93,44,91,45,56,49,46,48,57,53,49,49,50,44,51,54,46,52,52,48,55,55,51,93,44,91,45,56,48,46,57,54,55,49,53,51,44,51,54,46,52,48,50,48,50,93,44,91,45,56,48,46,57,48,49,54,52,49,44,51,54,46,53,54,49,55,54,54,93,44,91,45,56,49,46,51,53,51,50,53,57,44,51,54,46,53,55,52,54,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,76,97,115,115,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,49,56,53,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,51,51,49,55,56,54,44,52,49,46,49,56,51,56,56,54,93,44,91,45,49,50,49,46,51,50,49,49,56,54,44,52,48,46,56,56,56,55,48,50,93,44,91,45,49,50,49,46,51,50,55,56,50,54,44,52,48,46,52,52,53,51,54,55,93,44,91,45,49,50,49,46,48,54,49,52,49,55,44,52,48,46,52,52,54,53,51,54,93,44,91,45,49,50,49,46,48,54,49,52,57,51,44,52,48,46,50,53,54,52,49,55,93,44,91,45,49,50,48,46,56,55,49,55,56,50,44,52,48,46,50,52,49,54,52,93,44,91,45,49,50,48,46,55,54,52,52,48,51,44,52,48,46,51,49,54,48,49,93,44,91,45,49,50,48,46,53,55,54,56,50,53,44,52,48,46,50,56,53,52,51,93,44,91,45,49,50,48,46,51,52,49,51,56,53,44,52,48,46,49,49,53,50,52,51,93,44,91,45,49,50,48,46,50,48,57,54,52,49,44,52,48,46,48,56,54,48,48,56,93,44,91,45,49,50,48,46,49,48,56,55,54,49,44,51,57,46,57,51,57,53,49,93,44,91,45,49,50,48,46,49,49,48,54,50,55,44,51,57,46,55,54,53,55,55,57,93,44,91,45,49,50,48,46,49,52,55,49,52,57,44,51,57,46,55,48,55,54,53,56,93,44,91,45,49,50,48,46,48,48,49,48,54,50,44,51,57,46,55,50,50,52,49,56,93,44,91,45,49,49,57,46,57,57,53,55,48,53,44,52,48,46,51,55,53,56,51,93,44,91,45,49,49,57,46,57,57,57,56,54,54,44,52,49,46,49,56,51,57,55,52,93,44,91,45,49,50,49,46,51,51,49,55,56,54,44,52,49,46,49,56,51,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,49,48,34,44,34,78,65,77,69,34,58,34,70,97,108,108,115,32,67,104,117,114,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,55,50,50,55,54,44,51,56,46,56,57,51,50,52,53,93,44,91,45,55,55,46,49,56,57,55,53,52,44,51,56,46,56,55,56,49,51,54,93,44,91,45,55,55,46,49,52,57,55,48,49,44,51,56,46,56,55,53,54,55,93,44,91,45,55,55,46,49,55,50,50,55,54,44,51,56,46,56,57,51,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,77,97,110,97,116,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,56,53,51,44,34,98,101,100,115,34,58,56,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,44,91,45,56,50,46,53,53,51,54,54,54,44,50,55,46,54,52,53,52,54,53,93,44,91,45,56,50,46,55,52,53,49,51,55,44,50,55,46,53,55,48,53,53,93,44,91,45,56,50,46,56,50,51,48,50,57,44,50,55,46,53,55,48,53,53,93,44,91,45,56,50,46,55,48,53,52,51,56,44,50,55,46,51,56,57,54,54,56,93,44,91,45,56,50,46,50,53,50,50,54,52,44,50,55,46,51,56,54,50,52,51,93,44,91,45,56,50,46,50,53,51,53,57,54,44,50,55,46,50,48,56,57,49,54,93,44,91,45,56,50,46,48,53,54,52,57,55,44,50,55,46,50,48,55,55,54,57,93,44,91,45,56,50,46,48,53,53,55,53,51,44,50,55,46,51,51,56,50,54,52,93,44,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,117,115,107,105,110,103,117,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,48,55,54,44,34,98,101,100,115,34,58,51,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,56,55,49,48,53,44,52,48,46,49,54,54,56,56,93,44,91,45,56,50,46,49,57,56,55,55,50,44,51,57,46,57,53,48,49,52,93,44,91,45,56,50,46,50,51,51,57,55,52,44,51,57,46,57,49,51,50,54,93,44,91,45,56,50,46,48,55,54,54,51,57,44,51,57,46,55,55,48,57,54,93,44,91,45,56,49,46,54,57,55,52,52,50,44,51,57,46,55,53,53,53,55,50,93,44,91,45,56,49,46,54,57,52,49,52,54,44,51,57,46,56,52,50,54,51,54,93,44,91,45,56,49,46,55,50,56,54,49,49,44,51,57,46,57,51,49,55,50,56,93,44,91,45,56,49,46,55,49,54,50,55,54,44,52,48,46,49,53,50,49,54,54,93,44,91,45,56,50,46,49,56,55,49,48,53,44,52,48,46,49,54,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,104,97,102,102,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,53,57,57,50,49,52,44,51,56,46,57,57,55,57,57,52,93,44,91,45,49,48,54,46,52,54,53,48,51,50,44,51,56,46,57,49,48,51,53,52,93,44,91,45,49,48,54,46,52,49,54,50,54,51,44,51,56,46,56,50,51,56,53,93,44,91,45,49,48,54,46,52,51,48,49,53,57,44,51,56,46,54,53,51,52,54,56,93,44,91,45,49,48,54,46,51,52,56,49,48,56,44,51,56,46,53,49,50,52,57,57,93,44,91,45,49,48,54,46,50,52,54,57,52,44,51,56,46,52,50,50,55,54,56,93,44,91,45,49,48,54,46,48,49,48,55,53,49,44,51,56,46,52,52,54,53,54,54,93,44,91,45,49,48,53,46,57,48,56,55,49,55,44,51,56,46,53,48,53,54,51,49,93,44,91,45,49,48,53,46,56,55,57,49,55,54,44,51,56,46,54,48,55,51,49,50,93,44,91,45,49,48,53,46,57,54,57,55,53,44,51,56,46,54,57,51,53,53,49,93,44,91,45,49,48,53,46,57,48,54,53,56,55,44,51,56,46,56,48,54,57,54,50,93,44,91,45,49,48,54,46,48,50,56,49,51,56,44,51,56,46,57,52,50,56,52,57,93,44,91,45,49,48,54,46,49,48,53,55,53,56,44,51,56,46,57,52,48,51,54,52,93,44,91,45,49,48,54,46,49,57,49,48,48,54,44,51,57,46,48,53,54,48,55,51,93,44,91,45,49,48,54,46,53,55,55,57,54,54,44,51,57,46,48,53,55,57,48,56,93,44,91,45,49,48,54,46,53,57,57,50,49,52,44,51,56,46,57,57,55,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,114,111,119,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,48,52,54,54,54,44,51,56,46,53,49,54,52,48,57,93,44,91,45,49,48,52,46,48,53,51,57,50,49,44,51,56,46,53,50,50,51,57,51,93,44,91,45,49,48,52,46,48,53,56,50,52,50,44,51,56,46,49,52,54,52,57,50,93,44,91,45,49,48,51,46,56,51,53,54,49,54,44,51,56,46,49,49,51,51,52,93,44,91,45,49,48,51,46,54,49,57,49,55,50,44,51,56,46,49,49,51,51,53,53,93,44,91,45,49,48,51,46,53,48,57,51,54,52,44,51,56,46,49,55,50,53,49,52,93,44,91,45,49,48,51,46,53,48,49,55,54,52,44,51,56,46,50,54,53,48,49,54,93,44,91,45,49,48,51,46,53,48,52,54,54,54,44,51,56,46,53,49,54,52,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,70,114,101,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,48,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,52,50,52,50,54,44,51,56,46,54,52,57,56,56,50,93,44,91,45,49,48,53,46,50,52,48,51,54,50,44,51,56,46,54,52,55,53,57,53,93,44,91,45,49,48,53,46,51,50,57,49,51,52,44,51,56,46,54,57,55,50,48,53,93,44,91,45,49,48,53,46,57,54,57,55,53,44,51,56,46,54,57,51,53,53,49,93,44,91,45,49,48,53,46,56,55,57,49,55,54,44,51,56,46,54,48,55,51,49,50,93,44,91,45,49,48,53,46,57,48,56,55,49,55,44,51,56,46,53,48,53,54,51,49,93,44,91,45,49,48,54,46,48,49,48,55,53,49,44,51,56,46,52,52,54,53,54,54,93,44,91,45,49,48,53,46,55,57,54,56,57,55,44,51,56,46,50,54,53,48,52,55,93,44,91,45,49,48,53,46,48,52,57,50,49,53,44,51,56,46,50,53,55,57,55,51,93,44,91,45,49,48,52,46,57,52,48,51,54,54,44,51,56,46,50,53,56,50,55,53,93,44,91,45,49,48,52,46,57,52,49,53,51,51,44,51,56,46,53,49,57,53,54,57,93,44,91,45,49,48,52,46,57,52,50,52,50,54,44,51,56,46,54,52,57,56,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,80,101,97,114,108,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,49,52,57,44,34,98,101,100,115,34,58,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,52,56,57,53,44,51,49,46,48,49,48,51,55,93,44,91,45,56,57,46,52,55,54,48,50,50,44,51,48,46,57,56,50,57,48,49,93,44,91,45,56,57,46,54,53,52,48,51,56,44,51,49,46,48,48,50,53,48,50,93,44,91,45,56,57,46,55,50,56,49,49,57,44,51,49,46,48,48,50,51,93,44,91,45,56,57,46,56,52,50,51,51,44,51,48,46,54,54,54,48,49,53,93,44,91,45,56,57,46,55,53,50,56,48,55,44,51,48,46,53,48,50,57,54,50,93,44,91,45,56,57,46,54,57,48,48,51,53,44,51,48,46,52,53,57,51,51,51,93,44,91,45,56,57,46,53,52,52,53,49,44,51,48,46,53,49,54,56,54,50,93,44,91,45,56,57,46,53,52,52,50,51,50,44,51,48,46,54,52,56,51,54,56,93,44,91,45,56,57,46,51,52,49,52,52,54,44,51,48,46,54,52,55,55,50,93,44,91,45,56,57,46,51,52,48,56,48,54,44,51,48,46,57,48,57,57,49,50,93,44,91,45,56,57,46,51,52,56,57,53,44,51,49,46,48,49,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,50,56,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,52,51,52,54,56,44,51,49,46,52,51,51,52,53,56,93,44,91,45,56,57,46,49,52,54,48,57,50,44,51,49,46,52,51,52,48,53,50,93,44,91,45,56,57,46,49,51,55,57,54,55,44,51,48,46,57,48,57,56,55,55,93,44,91,45,56,56,46,56,56,53,48,51,56,44,51,48,46,57,49,48,55,56,56,93,44,91,45,56,56,46,56,51,52,51,51,57,44,51,48,46,57,57,55,57,56,51,93,44,91,45,56,56,46,56,52,49,55,48,55,44,51,49,46,52,51,51,55,48,51,93,44,91,45,56,56,46,57,52,51,52,54,56,44,51,49,46,52,51,51,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,51,48,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,56,54,56,51,52,44,52,49,46,55,52,48,51,50,54,93,44,91,45,49,48,48,46,50,53,49,50,50,52,44,52,49,46,55,51,57,56,49,55,93,44,91,45,49,48,48,46,50,53,49,48,57,56,44,52,49,46,51,57,51,50,57,56,93,44,91,45,49,48,48,46,50,50,52,50,51,53,44,52,49,46,48,52,54,53,57,55,93,44,91,45,57,57,46,52,50,53,57,56,54,44,52,49,46,48,52,54,52,55,49,93,44,91,45,57,57,46,50,48,55,53,54,52,44,52,49,46,48,52,55,48,48,51,93,44,91,45,57,57,46,50,48,51,50,54,49,44,52,49,46,51,57,52,49,52,93,44,91,45,57,57,46,50,49,50,48,49,54,44,52,49,46,55,52,48,54,49,51,93,44,91,45,57,57,46,50,50,49,56,51,44,52,49,46,55,52,48,55,57,50,93,44,91,45,57,57,46,54,56,54,56,51,52,44,52,49,46,55,52,48,51,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,44,91,45,56,53,46,49,54,52,55,52,52,44,51,48,46,54,48,56,48,55,57,93,44,91,45,56,53,46,49,55,49,56,57,49,44,51,48,46,53,54,52,51,51,54,93,44,91,45,56,53,46,51,56,51,57,52,56,44,51,48,46,53,54,54,56,53,54,93,44,91,45,56,53,46,51,56,57,54,55,57,44,51,48,46,50,48,48,57,55,51,93,44,91,45,56,53,46,49,49,53,54,54,44,51,48,46,49,57,57,57,55,54,93,44,91,45,56,53,46,48,53,50,55,55,55,44,51,48,46,50,56,55,52,48,54,93,44,91,45,56,53,46,48,51,50,57,51,49,44,51,48,46,52,50,48,50,57,57,93,44,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,75,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,54,56,56,44,34,98,101,100,115,34,58,55,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,50,51,52,56,56,44,51,57,46,48,55,52,50,56,50,93,44,91,45,56,52,46,54,49,53,54,54,52,44,51,56,46,56,48,50,50,55,55,93,44,91,45,56,52,46,53,51,50,50,56,56,44,51,56,46,55,57,49,57,51,55,93,44,91,45,56,52,46,52,49,56,49,48,55,44,51,56,46,56,48,54,53,57,54,93,44,91,45,56,52,46,52,50,55,50,56,53,44,51,56,46,57,56,48,56,54,51,93,44,91,45,56,52,46,53,48,54,49,54,49,44,51,57,46,48,57,53,49,55,55,93,44,91,45,56,52,46,54,50,51,52,56,56,44,51,57,46,48,55,52,50,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,104,105,99,107,97,115,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,57,57,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,52,51,56,49,44,52,51,46,50,49,50,56,49,51,93,44,91,45,57,50,46,53,53,52,50,49,49,44,52,50,46,57,48,55,49,49,50,93,44,91,45,57,50,46,48,56,49,53,54,56,44,52,50,46,57,48,55,48,49,51,93,44,91,45,57,50,46,48,56,49,49,52,54,44,52,51,46,48,56,50,55,57,52,93,44,91,45,57,50,46,48,56,48,57,55,54,44,52,51,46,50,49,50,57,52,55,93,44,91,45,57,50,46,53,53,52,51,56,49,44,52,51,46,50,49,50,56,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,50,48,48,44,34,98,101,100,115,34,58,49,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,51,57,55,51,50,44,52,50,46,49,53,50,51,50,93,44,91,45,56,56,46,57,52,49,50,55,57,44,52,49,46,56,57,49,55,53,50,93,44,91,45,56,56,46,57,51,56,54,55,57,44,52,49,46,54,50,56,51,49,54,93,44,91,45,56,56,46,54,48,50,50,52,44,52,49,46,54,51,49,51,56,57,93,44,91,45,56,56,46,54,48,49,57,51,51,44,52,49,46,55,49,57,53,54,51,93,44,91,45,56,56,46,53,56,56,54,53,55,44,52,50,46,49,53,51,53,57,93,44,91,45,56,56,46,55,48,53,53,56,53,44,52,50,46,49,53,51,53,51,55,93,44,91,45,56,56,46,57,51,57,55,51,50,44,52,50,46,49,53,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,56,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,55,48,52,49,53,44,52,51,46,50,53,53,51,53,56,93,44,91,45,57,51,46,57,55,49,50,51,56,44,52,50,46,57,48,55,55,54,50,93,44,91,45,57,51,46,52,57,56,54,49,55,44,52,50,46,57,48,56,53,49,50,93,44,91,45,57,51,46,52,57,55,54,51,53,44,52,51,46,50,53,53,52,54,56,93,44,91,45,57,51,46,57,55,48,52,49,53,44,52,51,46,50,53,53,51,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,116,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,49,52,52,55,55,49,44,52,55,46,48,49,48,51,48,55,93,44,91,45,49,48,50,46,53,50,53,51,54,52,44,52,54,46,57,56,49,50,56,56,93,44,91,45,49,48,51,46,48,51,50,54,56,49,44,52,54,46,57,56,48,53,56,93,44,91,45,49,48,51,46,50,51,49,48,53,54,44,52,54,46,57,56,48,50,57,54,93,44,91,45,49,48,51,46,50,51,49,54,53,54,44,52,54,46,54,50,57,55,54,52,93,44,91,45,49,48,50,46,57,50,55,52,53,49,44,52,54,46,54,51,48,48,50,93,44,91,45,49,48,50,46,48,57,54,55,52,52,44,52,54,46,54,51,49,48,50,54,93,44,91,45,49,48,50,46,48,57,54,50,52,44,52,54,46,55,49,55,55,55,50,93,44,91,45,49,48,50,46,48,57,53,57,48,52,44,52,54,46,57,56,49,51,50,57,93,44,91,45,49,48,50,46,49,52,52,55,55,49,44,52,55,46,48,49,48,51,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,76,117,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,53,52,56,54,50,44,52,55,46,51,48,53,52,56,50,93,44,91,45,56,53,46,56,54,52,57,51,50,44,52,54,46,53,48,52,55,53,56,93,44,91,45,56,53,46,56,54,53,48,50,53,44,52,54,46,50,52,52,54,51,49,93,44,91,45,56,53,46,50,51,55,56,51,57,44,52,54,46,50,52,53,52,51,93,44,91,45,56,53,46,50,51,52,51,51,44,52,55,46,48,52,55,54,49,93,44,91,45,56,53,46,56,53,52,56,54,50,44,52,55,46,51,48,53,52,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,48,54,44,34,98,101,100,115,34,58,50,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,53,54,50,53,49,50,44,51,52,46,50,56,57,49,56,51,93,44,91,45,57,55,46,53,54,48,55,54,49,44,51,52,46,48,55,49,49,53,93,44,91,45,57,54,46,57,54,57,54,50,55,44,51,52,46,48,55,49,48,50,93,44,91,45,57,54,46,57,51,51,53,48,51,44,51,52,46,49,55,50,55,52,56,93,44,91,45,57,54,46,57,51,51,51,48,53,44,51,52,46,51,51,50,53,54,49,93,44,91,45,57,55,46,48,51,56,50,51,57,44,51,52,46,51,55,53,55,48,55,93,44,91,45,57,55,46,51,53,50,49,49,53,44,51,52,46,51,55,54,49,56,56,93,44,91,45,57,55,46,51,53,50,49,56,51,44,51,52,46,53,48,54,55,57,54,93,44,91,45,57,55,46,53,54,50,51,50,51,44,51,52,46,53,48,55,48,51,54,93,44,91,45,57,55,46,53,54,50,53,49,50,44,51,52,46,50,56,57,49,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,80,97,115,113,117,111,116,97,110,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,53,51,55,49,49,44,51,54,46,51,55,56,48,57,50,93,44,91,45,55,54,46,49,53,55,57,53,51,44,51,54,46,48,53,57,53,49,55,93,44,91,45,55,54,46,48,50,50,54,48,55,44,51,54,46,48,57,54,55,50,53,93,44,91,45,55,54,46,48,54,56,54,48,53,44,51,54,46,50,49,54,53,57,93,44,91,45,55,54,46,50,51,56,50,52,52,44,51,54,46,51,55,49,53,56,56,93,44,91,45,55,54,46,52,57,49,51,51,54,44,51,54,46,53,49,48,54,55,55,93,44,91,45,55,54,46,52,53,51,55,49,49,44,51,54,46,51,55,56,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,84,97,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,56,56,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,48,54,51,49,54,44,51,54,46,57,57,53,50,54,55,93,44,91,45,49,48,53,46,57,55,49,56,56,57,44,51,54,46,56,56,54,50,52,55,93,44,91,45,49,48,53,46,57,55,49,56,51,54,44,51,54,46,54,51,50,52,52,52,93,44,91,45,49,48,53,46,57,51,56,55,53,52,44,51,54,46,52,54,50,52,48,50,93,44,91,45,49,48,53,46,57,54,49,52,49,52,44,51,54,46,51,53,51,48,54,54,93,44,91,45,49,48,54,46,48,53,56,51,54,52,44,51,54,46,50,57,54,57,55,56,93,44,91,45,49,48,53,46,56,53,54,57,52,55,44,51,54,46,50,51,48,52,51,52,93,44,91,45,49,48,53,46,55,51,53,56,56,51,44,51,54,46,49,48,48,49,51,51,93,44,91,45,49,48,53,46,53,51,48,51,56,44,51,54,46,48,49,51,48,49,52,93,44,91,45,49,48,53,46,51,52,49,50,54,52,44,51,54,46,50,54,49,56,54,51,93,44,91,45,49,48,53,46,51,50,54,54,55,52,44,51,54,46,53,48,48,48,51,49,93,44,91,45,49,48,53,46,51,55,48,54,51,56,44,51,54,46,54,56,49,48,51,50,93,44,91,45,49,48,53,46,50,51,48,54,51,50,44,51,54,46,55,50,51,55,56,52,93,44,91,45,49,48,53,46,50,48,48,49,49,55,44,51,54,46,57,49,53,54,50,56,93,44,91,45,49,48,53,46,50,50,48,53,48,54,44,51,54,46,57,57,52,57,55,52,93,44,91,45,49,48,53,46,55,49,56,52,54,51,44,51,54,46,57,57,53,56,52,49,93,44,91,45,49,48,54,46,48,48,54,51,49,54,44,51,54,46,57,57,53,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,111,108,105,118,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,57,50,44,34,98,101,100,115,34,58,49,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,53,55,48,48,50,44,51,51,46,57,56,55,53,56,54,93,44,91,45,57,48,46,54,53,57,52,53,55,44,51,52,46,49,49,56,56,54,55,93,44,91,45,57,48,46,57,53,53,57,55,52,44,51,52,46,49,50,48,49,50,53,93,44,91,45,57,48,46,57,53,53,49,55,44,51,52,46,49,49,56,56,51,51,93,44,91,45,57,49,46,48,49,49,53,49,44,51,51,46,57,50,52,55,51,51,93,44,91,45,57,49,46,48,55,51,48,49,49,44,51,51,46,56,53,55,52,52,57,93,44,91,45,57,49,46,48,54,56,50,57,44,51,51,46,55,49,54,52,55,55,93,44,91,45,57,49,46,49,51,48,52,52,53,44,51,51,46,54,48,54,48,51,52,93,44,91,45,57,49,46,50,51,48,56,57,55,44,51,51,46,53,54,49,52,93,44,91,45,57,49,46,50,49,53,54,55,49,44,51,51,46,53,50,57,52,50,51,93,44,91,45,57,48,46,55,54,51,53,48,57,44,51,51,46,53,50,57,51,56,57,93,44,91,45,57,48,46,54,53,56,54,44,51,51,46,54,49,54,50,55,50,93,44,91,45,57,48,46,54,53,55,48,48,50,44,51,51,46,57,56,55,53,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,78,121,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,55,48,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,54,48,48,57,52,54,44,51,57,46,49,54,49,52,54,51,93,44,91,45,49,49,55,46,51,51,49,56,53,55,44,51,57,46,49,54,51,52,51,93,44,91,45,49,49,55,46,55,55,53,52,54,56,44,51,57,46,48,57,51,52,50,53,93,44,91,45,49,49,55,46,56,54,53,49,49,54,44,51,57,46,48,55,51,54,53,52,93,44,91,45,49,49,56,46,49,57,54,50,55,52,44,51,56,46,57,57,57,57,50,54,93,44,91,45,49,49,56,46,49,57,54,50,51,53,44,51,56,46,57,49,57,48,53,56,93,44,91,45,49,49,55,46,54,57,49,48,50,49,44,51,56,46,52,55,51,55,57,55,93,44,91,45,49,49,55,46,49,54,53,54,49,50,44,51,56,46,48,48,49,54,57,50,93,44,91,45,49,49,55,46,49,54,54,48,48,49,44,51,54,46,57,55,49,49,49,49,93,44,91,45,49,49,54,46,51,56,48,51,52,55,44,51,54,46,51,55,52,57,54,49,93,44,91,45,49,49,53,46,56,52,53,57,57,52,44,51,53,46,57,54,51,55,48,55,93,44,91,45,49,49,53,46,56,52,53,55,54,50,44,51,54,46,49,55,48,55,54,52,93,44,91,45,49,49,53,46,56,57,53,55,53,51,44,51,54,46,49,55,50,50,50,55,93,44,91,45,49,49,53,46,56,57,54,57,50,53,44,51,54,46,56,52,50,48,56,53,93,44,91,45,49,49,53,46,56,57,51,56,53,55,44,51,56,46,48,53,48,53,51,49,93,44,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,48,53,48,55,53,55,93,44,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,54,55,55,51,50,50,93,44,91,45,49,49,53,46,57,48,55,48,55,49,44,51,57,46,49,54,49,56,52,56,93,44,91,45,49,49,54,46,54,48,48,57,52,54,44,51,57,46,49,54,49,52,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,72,97,119,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,52,48,50,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,51,48,52,51,51,44,51,54,46,53,57,51,55,54,49,93,44,91,45,56,51,46,49,49,57,51,57,51,44,51,54,46,53,49,52,50,57,93,44,91,45,56,51,46,50,56,48,53,57,53,44,51,54,46,51,57,52,54,56,57,93,44,91,45,56,51,46,50,53,53,50,57,50,44,51,54,46,50,56,57,48,57,50,93,44,91,45,56,51,46,49,53,49,54,56,57,44,51,54,46,51,49,56,49,57,50,93,44,91,45,56,51,46,48,56,50,51,49,50,44,51,54,46,50,52,50,50,57,54,93,44,91,45,56,50,46,56,52,48,52,56,49,44,51,54,46,51,55,48,54,57,56,93,44,91,45,56,50,46,55,48,50,53,54,54,44,51,54,46,52,49,48,52,49,50,93,44,91,45,56,50,46,54,56,48,54,55,55,44,51,54,46,52,51,49,56,93,44,91,45,56,50,46,54,48,57,49,55,54,44,51,54,46,53,57,52,48,57,57,93,44,91,45,56,50,46,56,51,48,52,51,51,44,51,54,46,53,57,51,55,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,111,119,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,57,53,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,53,53,53,57,44,52,54,46,50,56,48,48,56,49,93,44,91,45,49,48,52,46,48,52,53,53,52,55,44,52,53,46,57,52,53,51,48,56,93,44,91,45,49,48,50,46,57,57,53,50,52,56,44,52,53,46,57,52,53,49,54,55,93,44,91,45,49,48,50,46,57,57,53,50,52,53,44,52,54,46,50,56,48,54,53,49,93,44,91,45,49,48,52,46,48,52,53,53,53,57,44,52,54,46,50,56,48,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,48,54,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,51,52,56,54,51,44,52,48,46,49,54,53,49,51,49,93,44,91,45,55,56,46,50,57,57,48,48,51,44,51,57,46,56,50,53,53,93,44,91,45,55,56,46,51,56,48,53,57,57,44,51,57,46,55,50,50,53,57,57,93,44,91,45,55,56,46,51,52,50,56,51,52,44,51,57,46,55,50,50,50,54,51,93,44,91,45,55,56,46,48,57,57,52,48,51,44,51,57,46,55,50,50,48,57,57,93,44,91,45,55,56,46,48,48,50,55,44,51,57,46,56,50,54,53,57,57,93,44,91,45,55,55,46,56,54,52,52,56,57,44,52,48,46,48,54,49,53,54,56,93,44,91,45,55,56,46,49,51,52,56,54,51,44,52,48,46,49,54,53,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,48,57,49,44,34,98,101,100,115,34,58,49,52,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,56,52,54,55,53,44,51,48,46,49,52,55,52,52,51,93,44,91,45,57,50,46,50,48,50,55,50,50,44,51,48,46,49,52,50,56,54,93,44,91,45,57,49,46,57,54,52,52,53,56,44,51,48,46,48,51,54,57,49,56,93,44,91,45,57,49,46,57,53,48,57,57,56,44,51,48,46,48,55,51,50,49,51,93,44,91,45,57,49,46,57,55,57,57,51,50,44,51,48,46,49,56,50,53,56,53,93,44,91,45,57,49,46,57,52,57,48,52,55,44,51,48,46,50,55,54,55,55,49,93,44,91,45,57,49,46,57,56,56,55,49,56,44,51,48,46,51,54,56,53,57,56,93,44,91,45,57,50,46,49,52,50,49,56,52,44,51,48,46,50,57,56,56,49,55,93,44,91,45,57,50,46,50,56,52,54,55,53,44,51,48,46,49,52,55,52,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,52,50,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,50,48,54,54,54,44,51,51,46,51,57,54,49,57,53,93,44,91,45,57,56,46,52,50,54,53,53,51,44,51,51,46,48,48,55,57,49,51,93,44,91,45,57,56,46,48,53,54,48,57,52,44,51,51,46,48,48,51,51,51,50,93,44,91,45,57,55,46,57,50,49,54,52,50,44,51,51,46,48,48,49,50,56,52,93,44,91,45,57,55,46,57,49,56,49,56,57,44,51,51,46,52,51,51,56,55,51,93,44,91,45,57,55,46,57,55,56,57,49,57,44,51,51,46,52,54,55,49,50,57,93,44,91,45,57,56,46,52,50,49,52,49,57,44,51,51,46,52,54,54,55,57,55,93,44,91,45,57,56,46,52,50,48,54,54,54,44,51,51,46,51,57,54,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,83,116,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,56,52,53,53,57,44,52,49,46,49,52,57,51,57,52,93,44,91,45,56,57,46,57,56,53,52,55,57,44,52,48,46,57,55,52,52,57,53,93,44,91,45,56,57,46,54,51,56,55,50,55,44,52,48,46,57,55,51,55,48,55,93,44,91,45,56,57,46,54,51,56,53,51,54,44,52,49,46,49,52,56,53,52,53,93,44,91,45,56,57,46,54,51,56,55,48,56,44,52,49,46,50,51,51,56,54,50,93,44,91,45,56,57,46,56,53,55,54,49,54,44,52,49,46,50,51,52,52,55,57,93,44,91,45,56,57,46,56,54,56,49,53,50,44,52,49,46,49,52,57,52,57,51,93,44,91,45,56,57,46,57,56,52,53,53,57,44,52,49,46,49,52,57,51,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,52,51,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,56,56,56,52,52,52,44,51,53,46,48,50,57,56,56,57,93,44,91,45,57,57,46,56,56,56,50,50,50,44,51,52,46,57,52,51,56,57,55,93,44,91,45,57,57,46,55,51,49,48,57,50,44,51,52,46,57,52,52,48,53,56,93,44,91,45,57,57,46,55,49,57,55,57,55,44,51,52,46,55,54,56,52,53,49,93,44,91,45,57,57,46,54,54,54,56,52,57,44,51,52,46,55,50,52,53,53,53,93,44,91,45,57,57,46,52,50,51,50,48,49,44,51,52,46,55,50,53,48,50,93,44,91,45,57,57,46,52,48,53,56,50,49,44,51,52,46,56,49,51,48,51,56,93,44,91,45,57,57,46,50,52,54,52,54,50,44,51,52,46,56,50,50,49,49,52,93,44,91,45,57,57,46,51,48,54,50,50,44,51,52,46,56,53,55,54,51,50,93,44,91,45,57,57,46,51,50,54,55,53,55,44,51,53,46,48,49,56,57,49,50,93,44,91,45,57,57,46,52,48,57,50,57,49,44,51,53,46,49,49,52,53,48,57,93,44,91,45,57,57,46,55,56,50,55,50,55,44,51,53,46,49,49,54,57,52,93,44,91,45,57,57,46,56,56,56,52,52,52,44,51,53,46,48,50,57,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,49,34,44,34,78,65,77,69,34,58,34,72,101,109,112,104,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,54,49,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,52,48,50,50,49,44,51,54,46,48,53,54,52,57,49,93,44,91,45,49,48,48,46,53,52,48,49,53,56,44,51,53,46,54,49,57,50,57,54,93,44,91,45,49,48,48,46,48,48,48,51,57,50,44,51,53,46,54,49,57,49,49,53,93,44,91,45,49,48,48,46,48,48,48,51,57,54,44,51,53,46,56,56,49,50,51,51,93,44,91,45,49,48,48,46,48,48,48,51,57,57,44,51,54,46,48,53,53,54,55,55,93,44,91,45,49,48,48,46,53,52,48,50,50,49,44,51,54,46,48,53,54,52,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,78,101,122,32,80,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,49,53,53,44,34,98,101,100,115,34,58,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,52,53,54,48,57,56,44,52,54,46,54,50,57,48,57,55,93,44,91,45,49,49,54,46,54,49,49,55,52,44,52,54,46,54,51,49,50,52,53,93,44,91,45,49,49,54,46,55,49,57,48,56,53,44,52,54,46,53,52,50,56,55,52,93,44,91,45,49,49,55,46,48,51,57,54,57,52,44,52,54,46,53,52,49,55,48,57,93,44,91,45,49,49,55,46,48,51,57,55,54,54,44,52,54,46,52,50,53,56,56,55,93,44,91,45,49,49,54,46,57,50,49,51,53,44,52,54,46,49,54,52,53,49,52,93,44,91,45,49,49,54,46,57,49,54,48,55,49,44,52,53,46,57,57,53,51,53,55,93,44,91,45,49,49,54,46,55,57,52,53,54,50,44,52,53,46,56,53,54,48,52,57,93,44,91,45,49,49,54,46,55,48,49,56,49,57,44,52,53,46,57,57,54,51,56,49,93,44,91,45,49,49,54,46,55,49,51,52,57,54,44,52,54,46,51,50,53,53,50,55,93,44,91,45,49,49,54,46,51,54,56,56,48,49,44,52,54,46,51,52,51,50,49,55,93,44,91,45,49,49,54,46,51,54,57,49,50,50,44,52,54,46,52,54,54,57,50,51,93,44,91,45,49,49,54,46,52,53,49,55,57,50,44,52,54,46,53,48,48,54,57,56,93,44,91,45,49,49,54,46,52,53,54,48,57,56,44,52,54,46,54,50,57,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,87,97,108,119,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,54,48,50,50,51,44,52,53,46,50,52,54,56,49,93,44,91,45,57,57,46,55,48,56,57,56,55,44,52,53,46,50,52,53,56,54,54,93,44,91,45,57,57,46,55,48,55,55,48,53,44,52,53,46,53,57,51,51,57,49,93,44,91,45,57,57,46,55,49,55,52,54,54,44,52,53,46,53,57,51,52,50,56,93,44,91,45,49,48,48,46,52,51,48,48,55,57,44,52,53,46,53,57,52,56,50,51,93,44,91,45,49,48,48,46,52,56,54,53,54,49,44,52,53,46,53,51,54,53,50,49,93,44,91,45,49,48,48,46,51,52,49,57,50,52,44,52,53,46,52,55,50,57,48,52,93,44,91,45,49,48,48,46,50,55,52,49,55,54,44,52,53,46,51,56,49,56,52,53,93,44,91,45,49,48,48,46,50,54,48,50,50,51,44,52,53,46,50,52,54,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,78,97,112,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,53,51,48,44,34,98,101,100,115,34,58,52,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,51,57,53,48,53,54,44,51,56,46,56,54,52,50,52,53,93,44,91,45,49,50,50,46,52,54,51,56,57,44,51,56,46,55,48,53,50,48,51,93,44,91,45,49,50,50,46,54,50,55,51,57,54,44,51,56,46,54,54,55,53,48,54,93,44,91,45,49,50,50,46,54,52,54,50,54,56,44,51,56,46,53,57,57,49,50,93,44,91,45,49,50,50,46,53,52,51,56,57,51,44,51,56,46,53,49,57,57,54,54,93,44,91,45,49,50,50,46,51,53,57,57,50,52,44,51,56,46,50,51,48,53,48,49,93,44,91,45,49,50,50,46,52,48,54,55,56,54,44,51,56,46,49,53,53,54,51,50,93,44,91,45,49,50,50,46,49,57,53,51,56,44,51,56,46,49,53,53,48,49,55,93,44,91,45,49,50,50,46,50,48,53,57,56,50,44,51,56,46,51,49,53,55,49,51,93,44,91,45,49,50,50,46,48,54,52,55,55,57,44,51,56,46,51,49,53,57,49,50,93,44,91,45,49,50,50,46,49,50,54,51,56,57,44,51,56,46,52,50,56,57,49,56,93,44,91,45,49,50,50,46,49,48,51,50,56,49,44,51,56,46,53,49,51,51,52,56,93,44,91,45,49,50,50,46,50,56,55,57,57,56,44,51,56,46,56,51,57,57,51,49,93,44,91,45,49,50,50,46,51,57,53,48,53,54,44,51,56,46,56,54,52,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,111,116,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,50,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,54,49,57,53,54,44,51,52,46,52,48,53,57,52,56,93,44,91,45,57,56,46,54,48,57,54,54,44,51,52,46,51,51,51,55,50,93,44,91,45,57,56,46,54,48,57,57,56,55,44,51,52,46,49,53,55,49,53,52,93,44,91,45,57,56,46,52,56,54,51,50,56,44,51,52,46,48,54,50,53,57,56,93,44,91,45,57,56,46,52,50,51,53,51,51,44,51,52,46,48,56,50,56,52,51,93,44,91,45,57,56,46,51,54,52,48,50,51,44,51,52,46,49,53,55,49,48,57,93,44,91,45,57,56,46,49,51,57,48,55,50,44,51,52,46,49,52,49,56,55,93,44,91,45,57,56,46,49,51,57,50,50,55,44,51,52,46,50,56,57,56,50,52,93,44,91,45,57,56,46,49,52,50,49,52,56,44,51,52,46,53,48,54,57,57,52,93,44,91,45,57,56,46,50,57,53,57,50,56,44,51,52,46,52,52,57,48,52,51,93,44,91,45,57,56,46,53,48,52,57,53,56,44,51,52,46,52,52,57,52,49,52,93,44,91,45,57,56,46,54,54,49,57,53,54,44,51,52,46,52,48,53,57,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,57,53,55,54,53,44,51,56,46,50,48,52,48,56,51,93,44,91,45,57,49,46,49,48,48,48,49,55,44,51,55,46,55,52,48,48,49,50,93,44,91,45,57,48,46,54,52,53,49,51,53,44,51,55,46,55,51,52,56,49,51,93,44,91,45,57,48,46,54,51,57,57,56,44,51,56,46,48,55,54,53,52,56,93,44,91,45,57,48,46,55,56,48,49,56,53,44,51,56,46,50,48,52,49,49,50,93,44,91,45,57,49,46,48,57,53,55,54,53,44,51,56,46,50,48,52,48,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,97,121,117,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,56,54,56,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,49,51,56,48,54,44,52,51,46,48,50,52,48,51,53,93,44,91,45,55,54,46,55,51,51,52,53,52,44,52,50,46,55,50,55,56,57,53,93,44,91,45,55,54,46,54,54,54,53,52,51,44,52,50,46,54,50,51,52,53,55,93,44,91,45,55,54,46,50,54,53,53,56,52,44,52,50,46,54,50,51,53,56,56,93,44,91,45,55,54,46,50,55,52,54,55,51,44,52,50,46,55,55,49,50,53,55,93,44,91,45,55,54,46,51,53,54,57,55,52,44,52,50,46,56,52,57,52,53,93,44,91,45,55,54,46,52,53,48,55,51,56,44,52,50,46,56,52,53,55,54,93,44,91,45,55,54,46,52,55,57,50,50,52,44,52,51,46,50,50,55,53,49,57,93,44,91,45,55,54,46,54,48,53,48,49,50,44,52,51,46,50,53,51,53,55,93,44,91,45,55,54,46,54,52,52,55,49,50,44,52,51,46,55,48,51,52,54,54,93,44,91,45,55,54,46,55,51,52,55,50,53,44,52,51,46,55,48,56,49,50,49,93,44,91,45,55,54,46,55,53,51,53,51,56,44,52,51,46,54,56,52,50,55,53,93,44,91,45,55,54,46,55,48,50,51,50,53,44,52,51,46,48,56,48,51,57,51,93,44,91,45,55,54,46,55,49,51,56,48,54,44,52,51,46,48,50,52,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,49,55,34,44,34,78,65,77,69,34,58,34,83,104,97,99,107,101,108,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,57,54,48,53,44,51,50,46,53,49,52,55,54,56,93,44,91,45,57,57,46,48,57,54,48,49,54,44,51,50,46,57,53,55,48,51,55,93,44,91,45,57,57,46,52,55,49,50,53,56,44,51,50,46,57,53,55,48,50,53,93,44,91,45,57,57,46,54,49,50,48,48,49,44,51,50,46,57,53,54,57,54,50,93,44,91,45,57,57,46,54,49,50,48,50,54,44,51,50,46,53,49,52,54,53,52,93,44,91,45,57,57,46,49,49,52,50,57,51,44,51,50,46,53,49,52,56,49,49,93,44,91,45,57,57,46,48,57,54,48,53,44,51,50,46,53,49,52,55,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,48,55,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,97,99,105,110,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,50,55,52,56,44,51,48,46,56,53,57,53,52,55,93,44,91,45,57,53,46,51,53,57,49,53,54,44,51,48,46,53,48,52,51,54,57,93,44,91,45,57,53,46,51,48,56,51,57,53,44,51,48,46,52,48,53,55,53,93,44,91,45,57,53,46,49,54,53,56,57,55,44,51,48,46,51,52,52,57,55,54,93,44,91,45,57,52,46,56,52,57,52,49,52,44,51,48,46,52,57,51,53,53,51,93,44,91,45,57,53,46,48,50,52,52,52,51,44,51,48,46,54,54,48,53,48,51,93,44,91,45,57,53,46,49,52,53,52,50,54,44,51,48,46,55,49,51,55,57,57,93,44,91,45,57,53,46,50,48,48,49,56,44,51,48,46,56,50,52,53,54,54,93,44,91,45,57,53,46,51,50,55,52,56,44,51,48,46,56,53,57,53,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,68,117,98,117,113,117,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,56,48,50,44,34,98,101,100,115,34,58,52,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,51,50,55,54,54,44,52,50,46,54,52,53,56,52,52,93,44,91,45,57,49,46,49,51,48,48,55,57,44,52,50,46,50,57,53,55,54,49,93,44,91,45,57,48,46,56,57,56,48,50,44,52,50,46,50,57,53,50,51,54,93,44,91,45,57,48,46,54,54,53,53,53,49,44,52,50,46,50,57,52,54,57,57,93,44,91,45,57,48,46,54,54,53,48,50,57,44,52,50,46,51,56,50,49,53,53,93,44,91,45,57,48,46,52,55,51,55,57,56,44,52,50,46,51,56,49,52,53,56,93,44,91,45,57,48,46,54,52,50,56,52,51,44,52,50,46,53,48,56,52,56,49,93,44,91,45,57,48,46,55,50,48,50,48,57,44,52,50,46,54,52,48,55,53,56,93,44,91,45,57,48,46,56,57,54,57,53,49,44,52,50,46,54,55,53,48,56,50,93,44,91,45,57,49,46,49,51,50,55,54,54,44,52,50,46,54,52,53,56,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,71,111,111,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,53,57,51,50,54,44,51,55,46,55,52,56,53,50,56,93,44,91,45,55,56,46,48,55,50,49,55,52,44,51,55,46,54,53,55,51,56,53,93,44,91,45,55,55,46,56,57,55,50,57,50,44,51,55,46,54,54,56,49,56,49,93,44,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,44,91,45,55,55,46,54,51,48,54,55,44,51,55,46,55,48,53,54,55,51,93,44,91,45,55,55,46,55,57,55,51,48,54,44,51,55,46,55,50,57,51,53,56,93,44,91,45,55,56,46,48,54,50,52,56,49,44,51,55,46,57,48,52,54,56,53,93,44,91,45,55,56,46,49,53,57,51,50,54,44,51,55,46,55,52,56,53,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,83,104,101,114,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,54,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,57,55,54,52,44,51,57,46,53,54,56,49,56,93,44,91,45,49,48,50,46,48,52,55,49,54,49,44,51,57,46,49,51,51,49,52,55,93,44,91,45,49,48,49,46,52,55,56,49,57,53,44,51,57,46,49,51,52,55,54,49,93,44,91,45,49,48,49,46,51,57,49,55,49,55,44,51,57,46,49,51,53,49,49,55,93,44,91,45,49,48,49,46,51,56,57,48,54,56,44,51,57,46,53,54,56,51,54,57,93,44,91,45,49,48,49,46,52,49,51,57,49,51,44,51,57,46,53,54,56,51,54,49,93,44,91,45,49,48,50,46,48,52,57,55,54,52,44,51,57,46,53,54,56,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,51,50,52,44,34,98,101,100,115,34,58,52,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,50,52,55,57,50,44,52,48,46,57,57,53,54,51,56,93,44,91,45,56,50,46,55,50,55,49,54,52,44,52,48,46,55,49,49,50,48,51,93,44,91,45,56,50,46,54,50,55,55,54,55,44,52,48,46,55,48,57,51,53,50,93,44,91,45,56,50,46,54,50,51,54,48,57,44,52,48,46,53,52,57,56,55,57,93,44,91,45,56,50,46,51,51,54,57,54,50,44,52,48,46,53,53,53,48,48,49,93,44,91,45,56,50,46,51,51,57,50,49,49,44,52,48,46,55,50,54,54,56,51,93,44,91,45,56,50,46,52,49,54,56,52,55,44,52,48,46,56,49,52,53,54,55,93,44,91,45,56,50,46,52,51,50,56,53,50,44,52,48,46,57,57,50,57,52,52,93,44,91,45,56,50,46,55,50,52,55,57,50,44,52,48,46,57,57,53,54,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,52,50,55,44,34,98,101,100,115,34,58,51,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,51,53,53,49,55,44,51,57,46,57,52,53,50,50,50,93,44,91,45,57,49,46,52,51,51,55,57,56,44,51,57,46,56,52,49,56,54,53,93,44,91,45,57,49,46,51,54,53,49,50,53,44,51,57,46,55,53,56,55,50,51,93,44,91,45,57,48,46,57,49,53,57,54,49,44,51,57,46,55,53,55,50,93,44,91,45,57,48,46,57,49,54,54,54,57,44,51,57,46,56,52,52,57,50,55,93,44,91,45,57,48,46,57,49,51,52,54,57,44,52,48,46,49,48,52,52,53,53,93,44,91,45,57,48,46,57,49,49,57,54,57,44,52,48,46,49,57,51,48,56,56,93,44,91,45,57,49,46,53,48,53,48,54,49,44,52,48,46,49,57,57,57,50,53,93,44,91,45,57,49,46,52,57,52,56,55,56,44,52,48,46,48,51,54,52,53,51,93,44,91,45,57,49,46,52,51,53,53,49,55,44,51,57,46,57,52,53,50,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,97,109,112,97,105,103,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,49,52,55,54,51,44,52,48,46,50,55,51,52,53,57,93,44,91,45,56,52,46,48,50,50,57,49,57,44,52,48,46,49,56,51,57,52,53,93,44,91,45,56,52,46,48,51,54,48,54,57,44,52,48,46,48,52,48,49,56,50,93,44,91,45,56,51,46,53,49,54,49,53,53,44,52,48,46,48,49,48,49,56,56,93,44,91,45,56,51,46,53,48,51,55,49,52,44,52,48,46,49,49,49,52,54,56,93,44,91,45,56,51,46,53,53,49,51,51,56,44,52,48,46,50,50,57,51,55,93,44,91,45,56,52,46,48,49,52,55,54,51,44,52,48,46,50,55,51,52,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,49,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,51,50,57,56,57,57,44,52,51,46,54,48,48,50,49,52,93,44,91,45,55,50,46,51,55,51,56,44,52,51,46,53,55,57,49,49,57,93,44,91,45,55,50,46,52,51,52,54,52,53,44,52,51,46,50,51,51,51,49,49,93,44,91,45,55,50,46,52,53,50,50,53,49,44,52,51,46,49,54,49,51,53,52,93,44,91,45,55,50,46,49,53,54,54,54,49,44,52,51,46,49,56,49,57,54,56,93,44,91,45,55,50,46,48,51,56,49,52,57,44,52,51,46,49,50,56,56,48,55,93,44,91,45,55,50,46,48,48,57,48,55,52,44,52,51,46,49,56,55,56,56,50,93,44,91,45,55,50,46,48,57,48,49,52,54,44,52,51,46,51,50,50,53,53,51,93,44,91,45,55,49,46,57,51,53,51,49,44,52,51,46,53,50,56,56,56,93,44,91,45,55,50,46,51,50,57,56,57,57,44,52,51,46,54,48,48,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,73,114,111,113,117,111,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,49,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,51,49,57,51,53,44,52,48,46,57,57,55,55,55,55,93,44,91,45,56,56,46,49,49,55,55,56,57,44,52,48,46,52,56,55,56,54,93,44,91,45,56,55,46,57,51,53,51,48,57,44,52,48,46,52,56,53,57,50,51,93,44,91,45,56,55,46,53,50,54,51,54,54,44,52,48,46,52,57,49,50,51,55,93,44,91,45,56,55,46,53,50,54,48,51,49,44,52,48,46,55,51,54,56,56,53,93,44,91,45,56,55,46,53,50,54,50,48,56,44,52,49,46,48,49,48,51,52,49,93,44,91,45,56,56,46,49,51,49,57,51,53,44,52,48,46,57,57,55,55,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,80,111,119,101,115,104,105,101,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,48,53,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,54,53,57,57,57,44,52,49,46,56,54,50,51,55,51,93,44,91,45,57,50,46,55,53,54,53,48,56,44,52,49,46,53,48,56,55,57,52,93,44,91,45,57,50,46,52,49,49,57,57,53,44,52,49,46,53,48,57,53,52,56,93,44,91,45,57,50,46,50,57,55,52,57,52,44,52,49,46,53,48,57,55,57,93,44,91,45,57,50,46,50,57,56,49,54,52,44,52,49,46,56,54,50,55,55,57,93,44,91,45,57,50,46,55,54,53,57,57,57,44,52,49,46,56,54,50,51,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,50,48,56,44,34,98,101,100,115,34,58,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,52,55,55,51,53,44,52,48,46,57,49,52,48,49,54,93,44,91,45,56,49,46,54,56,56,52,57,49,44,52,48,46,57,56,56,53,57,93,44,91,45,56,50,46,49,50,57,51,51,52,44,52,48,46,57,57,49,56,48,55,93,44,91,45,56,50,46,49,50,54,49,57,57,44,52,48,46,54,54,56,50,50,57,93,44,91,45,56,49,46,54,53,48,48,52,53,44,52,48,46,54,54,56,49,49,55,93,44,91,45,56,49,46,54,52,55,55,51,53,44,52,48,46,57,49,52,48,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,51,54,57,44,34,98,101,100,115,34,58,50,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,53,56,54,54,53,44,51,51,46,53,53,48,57,51,51,93,44,91,45,56,52,46,54,48,57,53,52,44,51,51,46,53,48,50,53,49,49,93,44,91,45,56,52,46,53,56,54,48,52,55,44,51,51,46,51,53,55,56,56,53,93,44,91,45,56,52,46,52,57,55,53,50,55,44,51,51,46,50,53,55,52,50,50,93,44,91,45,56,52,46,51,56,56,49,49,56,44,51,51,46,51,53,50,52,54,53,93,44,91,45,56,52,46,51,56,55,55,48,56,44,51,51,46,52,55,55,49,51,57,93,44,91,45,56,52,46,52,53,56,54,54,53,44,51,51,46,53,53,48,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,54,52,50,48,55,44,51,51,46,51,53,53,48,51,93,44,91,45,56,51,46,50,55,52,49,48,56,44,51,51,46,49,56,55,50,51,56,93,44,91,45,56,51,46,48,57,55,54,52,57,44,51,51,46,49,53,49,53,51,54,93,44,91,45,56,51,46,48,53,50,49,57,55,44,51,51,46,48,56,48,54,56,50,93,44,91,45,56,50,46,56,56,56,56,54,54,44,51,51,46,49,51,56,54,48,51,93,44,91,45,56,50,46,55,52,56,51,49,49,44,51,51,46,50,51,56,51,52,56,93,44,91,45,56,50,46,55,53,53,56,52,54,44,51,51,46,50,53,51,52,52,93,44,91,45,56,50,46,56,53,49,57,53,52,44,51,51,46,52,52,51,53,52,51,93,44,91,45,56,51,46,48,49,50,56,53,51,44,51,51,46,52,54,57,49,55,56,93,44,91,45,56,51,46,49,54,52,50,48,55,44,51,51,46,51,53,53,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,57,34,44,34,78,65,77,69,34,58,34,75,101,110,100,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,57,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,50,48,49,52,55,44,51,48,46,49,51,56,50,57,93,44,91,45,57,56,46,57,49,55,55,50,53,44,50,57,46,55,56,49,51,57,56,93,44,91,45,57,56,46,55,55,56,55,56,50,44,50,57,46,55,50,48,49,54,55,93,44,91,45,57,56,46,54,52,54,49,50,52,44,50,57,46,55,52,53,49,56,49,93,44,91,45,57,56,46,52,49,52,48,49,56,44,50,57,46,57,51,55,53,53,55,93,44,91,45,57,56,46,53,56,55,56,57,55,44,51,48,46,49,51,56,57,53,52,93,44,91,45,57,56,46,57,50,48,49,52,55,44,51,48,46,49,51,56,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,54,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,52,52,51,53,48,54,44,52,50,46,51,53,53,48,49,55,93,44,91,45,55,52,46,53,51,55,51,49,44,52,50,46,50,48,49,52,50,52,93,44,91,45,55,52,46,52,53,49,55,49,51,44,52,50,46,49,54,57,50,50,53,93,44,91,45,55,52,46,51,48,55,53,55,49,44,52,50,46,49,49,52,51,52,54,93,44,91,45,55,52,46,48,55,52,55,57,55,44,52,50,46,48,57,54,53,56,57,93,44,91,45,55,52,46,48,48,50,52,53,44,52,50,46,49,55,54,57,57,50,93,44,91,45,55,51,46,57,49,48,54,55,53,44,52,50,46,49,50,55,50,57,51,93,44,91,45,55,51,46,55,56,57,53,48,50,44,52,50,46,50,54,55,55,51,56,93,44,91,45,55,51,46,55,56,51,55,50,49,44,52,50,46,52,54,52,50,51,49,93,44,91,45,55,52,46,50,53,52,51,48,51,44,52,50,46,52,48,56,50,48,55,93,44,91,45,55,52,46,52,52,51,53,48,54,44,52,50,46,51,53,53,48,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,54,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,57,52,52,57,56,44,51,56,46,51,49,49,50,52,50,93,44,91,45,55,56,46,50,50,49,49,48,52,44,51,56,46,50,51,48,48,56,57,93,44,91,45,55,56,46,50,56,56,56,51,55,44,51,56,46,50,55,50,54,53,54,93,44,91,45,55,56,46,51,54,56,55,52,51,44,51,56,46,49,56,52,48,55,52,93,44,91,45,55,56,46,50,48,57,51,56,52,44,51,56,46,49,51,49,49,50,56,93,44,91,45,55,56,46,49,48,49,55,52,56,44,51,56,46,49,53,50,53,54,55,93,44,91,45,55,55,46,57,53,51,54,51,57,44,51,56,46,49,49,56,53,48,49,93,44,91,45,55,55,46,55,48,50,56,52,51,44,51,56,46,51,54,48,56,52,93,44,91,45,55,55,46,57,48,56,57,55,57,44,51,56,46,51,56,49,53,48,51,93,44,91,45,55,56,46,48,57,52,52,57,56,44,51,56,46,51,49,49,50,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,99,67,117,114,116,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,54,54,44,34,98,101,100,115,34,58,55,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,51,55,54,48,52,44,51,52,46,53,48,55,50,57,54,93,44,91,45,57,53,46,48,52,54,55,52,54,44,51,52,46,53,48,55,50,55,54,93,44,91,45,57,53,46,48,52,54,53,56,53,44,51,52,46,50,52,51,55,55,54,93,44,91,45,57,53,46,49,53,49,51,50,51,44,51,52,46,50,52,51,55,51,55,93,44,91,45,57,53,46,49,53,54,53,50,49,44,51,52,46,49,53,54,57,54,53,93,44,91,45,57,53,46,49,53,53,56,56,50,44,51,51,46,57,51,54,53,55,50,93,44,91,45,57,52,46,57,57,56,48,49,57,44,51,51,46,56,54,48,53,48,52,93,44,91,45,57,52,46,56,54,48,54,56,55,44,51,51,46,55,52,49,57,52,53,93,44,91,45,57,52,46,55,52,54,48,57,54,44,51,51,46,55,48,51,48,49,54,93,44,91,45,57,52,46,53,54,52,48,55,54,44,51,51,46,54,50,54,50,54,53,93,44,91,45,57,52,46,52,56,53,56,55,56,44,51,51,46,54,51,55,56,54,53,93,44,91,45,57,52,46,52,55,55,50,57,57,44,51,51,46,57,52,48,57,51,50,93,44,91,45,57,52,46,52,55,48,51,51,49,44,51,52,46,49,57,48,49,56,51,93,44,91,45,57,52,46,52,54,49,49,52,57,44,51,52,46,53,48,55,52,53,55,93,44,91,45,57,52,46,57,51,55,54,48,52,44,51,52,46,53,48,55,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,55,34,44,34,78,65,77,69,34,58,34,84,105,102,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,49,48,44,34,98,101,100,115,34,58,49,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,52,57,51,56,52,44,51,49,46,53,54,55,57,55,55,93,44,91,45,56,51,46,54,53,52,48,57,44,51,49,46,51,51,48,54,54,49,93,44,91,45,56,51,46,53,49,50,54,48,55,44,51,49,46,51,50,55,52,48,53,93,44,91,45,56,51,46,52,51,52,52,57,50,44,51,49,46,51,53,48,51,54,49,93,44,91,45,56,51,46,51,51,56,55,50,56,44,51,49,46,52,55,53,57,57,49,93,44,91,45,56,51,46,53,48,48,55,48,50,44,51,49,46,53,57,51,57,57,93,44,91,45,56,51,46,54,52,57,51,56,52,44,51,49,46,53,54,55,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,55,57,52,56,55,44,52,49,46,48,53,51,50,57,57,93,44,91,45,57,54,46,48,53,54,50,53,54,44,52,49,46,48,54,53,51,53,54,93,44,91,45,57,54,46,50,48,55,54,52,56,44,52,48,46,57,57,53,54,50,56,93,44,91,45,57,54,46,51,49,57,49,57,49,44,52,49,46,48,52,52,57,57,56,93,44,91,45,57,54,46,52,54,51,56,54,49,44,52,49,46,48,49,54,48,54,57,93,44,91,45,57,54,46,52,54,51,55,54,52,44,52,48,46,55,56,51,57,54,93,44,91,45,57,53,46,56,51,52,49,50,44,52,48,46,55,56,51,55,56,51,93,44,91,45,57,53,46,56,49,51,52,54,53,44,52,48,46,57,48,49,54,57,51,93,44,91,45,57,53,46,56,55,57,52,56,55,44,52,49,46,48,53,51,50,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,75,105,110,103,115,98,117,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,54,55,44,34,98,101,100,115,34,58,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,53,51,48,50,56,44,52,52,46,53,52,52,51,57,56,93,44,91,45,57,55,46,56,53,51,54,54,44,52,52,46,49,57,53,50,51,51,93,44,91,45,57,55,46,56,52,57,52,57,50,44,52,52,46,49,57,53,50,51,53,93,44,91,45,57,55,46,51,55,48,49,49,53,44,52,52,46,49,57,52,57,55,49,93,44,91,45,57,55,46,49,50,57,54,55,49,44,52,52,46,49,57,53,57,51,51,93,44,91,45,57,55,46,49,50,56,48,50,52,44,52,52,46,53,52,51,49,50,54,93,44,91,45,57,55,46,52,57,50,50,54,54,44,52,52,46,53,52,51,56,56,52,93,44,91,45,57,55,46,56,53,51,48,50,56,44,52,52,46,53,52,52,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,111,110,118,101,114,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,57,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,55,51,52,48,51,44,52,50,46,52,51,51,50,51,54,93,44,91,45,49,48,53,46,53,53,54,48,52,50,44,52,50,46,52,51,48,53,56,51,93,44,91,45,49,48,53,46,54,49,51,56,54,53,44,52,50,46,51,48,52,52,53,53,93,44,91,45,49,48,53,46,51,55,53,53,52,49,44,52,50,46,50,57,48,49,51,57,93,44,91,45,49,48,53,46,50,56,51,57,49,44,52,50,46,52,51,49,52,48,50,93,44,91,45,49,48,53,46,50,56,54,53,49,49,44,52,50,46,54,48,53,56,50,54,93,44,91,45,49,48,52,46,56,57,50,52,51,55,44,52,50,46,54,48,56,57,51,57,93,44,91,45,49,48,52,46,56,57,57,57,52,49,44,52,51,46,52,57,57,54,52,93,44,91,45,49,48,53,46,48,55,57,55,57,55,44,52,51,46,52,57,56,52,52,53,93,44,91,45,49,48,54,46,48,49,55,51,54,54,44,52,51,46,52,57,52,57,54,57,93,44,91,45,49,48,54,46,48,55,56,48,54,56,44,52,51,46,52,57,52,52,55,49,93,44,91,45,49,48,54,46,48,55,53,56,53,50,44,52,50,46,52,51,51,50,49,56,93,44,91,45,49,48,54,46,48,55,51,52,48,51,44,52,50,46,52,51,51,50,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,72,101,114,107,105,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,53,48,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,49,49,48,49,54,44,52,51,46,54,49,53,50,50,57,93,44,91,45,55,53,46,48,54,57,49,54,53,44,52,51,46,50,50,55,51,51,51,93,44,91,45,55,53,46,50,49,57,49,48,54,44,52,51,46,48,53,50,52,54,57,93,44,91,45,55,53,46,50,49,50,49,53,56,44,52,50,46,56,55,57,57,55,51,93,44,91,45,55,53,46,49,48,48,57,57,57,44,52,50,46,57,48,56,51,54,51,93,44,91,45,55,52,46,57,48,54,55,51,56,44,52,50,46,56,50,52,57,52,51,93,44,91,45,55,52,46,55,54,51,51,48,51,44,52,50,46,56,54,51,50,51,55,93,44,91,45,55,52,46,55,53,57,56,57,53,44,52,51,46,48,52,55,52,50,51,93,44,91,45,55,52,46,54,57,54,55,56,55,44,52,51,46,49,56,51,49,49,54,93,44,91,45,55,52,46,55,49,50,54,49,53,44,52,51,46,50,56,54,49,52,51,93,44,91,45,55,52,46,56,54,55,55,49,50,44,52,51,46,51,51,57,56,50,54,93,44,91,45,55,52,46,55,55,53,54,49,55,44,52,51,46,52,56,54,54,55,55,93,44,91,45,55,52,46,56,53,52,49,55,49,44,52,52,46,48,55,48,48,56,57,93,44,91,45,55,53,46,48,54,50,55,55,57,44,52,52,46,48,53,48,52,93,44,91,45,55,53,46,49,55,48,49,53,57,44,52,52,46,48,57,54,57,53,57,93,44,91,45,55,53,46,49,49,48,49,54,44,52,51,46,54,49,53,50,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,52,57,55,50,44,52,54,46,54,51,49,54,51,93,44,91,45,57,57,46,57,49,53,53,56,54,44,52,54,46,54,51,50,57,50,54,93,44,91,45,57,57,46,57,49,54,55,53,56,44,52,54,46,50,56,51,49,55,49,93,44,91,45,57,57,46,56,55,56,51,53,52,44,52,54,46,50,56,50,56,50,57,93,44,91,45,57,57,46,48,51,55,50,56,57,44,52,54,46,50,56,50,56,55,49,93,44,91,45,57,57,46,48,51,54,54,50,53,44,52,54,46,54,51,48,50,49,49,93,44,91,45,57,57,46,52,52,57,55,50,44,52,54,46,54,51,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,111,103,101,98,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,49,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,54,57,54,50,50,44,52,54,46,55,57,56,49,56,50,93,44,91,45,57,48,46,52,49,56,51,57,50,44,52,54,46,53,54,54,48,57,57,93,44,91,45,57,48,46,50,49,54,49,55,50,44,52,54,46,53,48,49,50,55,50,93,44,91,45,57,48,46,49,50,48,53,55,50,44,52,54,46,51,51,55,48,51,57,93,44,91,45,56,57,46,57,50,57,49,53,56,44,52,54,46,50,57,57,55,52,56,93,44,91,45,56,57,46,48,57,49,54,51,56,44,52,54,46,49,51,56,52,52,55,93,44,91,45,56,56,46,57,57,48,56,54,52,44,52,54,46,48,57,55,51,56,49,93,44,91,45,56,56,46,57,57,49,48,49,50,44,52,54,46,51,51,50,51,48,56,93,44,91,45,56,57,46,51,54,53,53,48,55,44,52,54,46,51,51,51,48,55,56,93,44,91,45,56,57,46,51,54,53,48,57,52,44,52,54,46,53,48,53,57,52,57,93,44,91,45,56,57,46,55,52,48,53,54,56,44,52,54,46,53,48,53,54,52,50,93,44,91,45,56,57,46,56,54,52,52,50,44,52,54,46,53,57,50,54,52,51,93,44,91,45,56,57,46,56,54,51,55,57,51,44,52,54,46,55,54,53,52,48,53,93,44,91,45,57,48,46,48,48,48,49,55,49,44,52,54,46,55,54,53,53,50,57,93,44,91,45,57,48,46,48,48,48,49,54,49,44,52,54,46,57,57,57,57,51,55,93,44,91,45,57,48,46,49,49,49,54,56,57,44,52,55,46,48,52,49,57,54,52,93,44,91,45,57,48,46,50,54,57,54,50,50,44,52,54,46,55,57,56,49,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,101,99,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,55,55,51,44,34,98,101,100,115,34,58,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,49,57,52,54,55,49,44,52,55,46,49,53,49,49,52,57,93,44,91,45,57,54,46,49,55,52,53,56,55,44,52,54,46,55,49,55,56,53,52,93,44,91,45,57,53,46,49,54,51,55,49,44,52,54,46,55,49,55,54,52,93,44,91,45,57,53,46,49,54,51,48,49,44,52,54,46,56,48,52,55,50,93,44,91,45,57,53,46,49,54,57,49,55,50,44,52,55,46,49,53,50,53,49,53,93,44,91,45,57,53,46,53,53,49,49,56,54,44,52,55,46,49,53,49,52,53,51,93,44,91,45,57,54,46,48,54,55,48,54,57,44,52,55,46,49,53,49,56,49,51,93,44,91,45,57,54,46,49,57,52,54,55,49,44,52,55,46,49,53,49,49,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,49,52,53,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,53,48,49,54,54,44,51,52,46,53,52,53,57,54,51,93,44,91,45,56,54,46,53,56,49,57,51,54,44,51,52,46,51,48,52,54,57,52,93,44,91,45,56,54,46,52,53,51,48,50,44,51,52,46,50,53,57,51,49,55,93,44,91,45,56,54,46,51,48,51,53,49,54,44,51,52,46,48,57,57,48,55,51,93,44,91,45,56,54,46,49,48,54,48,56,54,44,51,52,46,50,48,48,55,53,54,93,44,91,45,56,54,46,49,49,48,51,54,50,44,51,52,46,52,50,55,55,57,55,93,44,91,45,56,54,46,48,53,55,55,49,50,44,51,52,46,52,55,53,57,57,52,93,44,91,45,56,54,46,49,52,57,56,48,54,44,51,52,46,53,51,51,54,51,51,93,44,91,45,56,54,46,49,52,56,52,54,52,44,51,52,46,53,57,57,48,54,57,93,44,91,45,56,54,46,51,50,54,56,53,51,44,51,52,46,53,57,57,52,48,51,93,44,91,45,56,54,46,51,49,49,49,56,55,44,51,52,46,53,51,57,50,55,55,93,44,91,45,56,54,46,52,50,53,52,56,50,44,51,52,46,52,55,57,50,55,55,93,44,91,45,56,54,46,53,53,48,49,54,54,44,51,52,46,53,52,53,57,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,48,52,51,49,55,44,51,54,46,50,55,48,51,55,56,93,44,91,45,56,51,46,57,52,49,55,49,49,44,51,54,46,49,56,54,51,55,56,93,44,91,45,56,51,46,55,51,50,55,48,52,44,51,54,46,49,54,52,53,56,51,93,44,91,45,56,51,46,54,54,55,52,48,56,44,51,54,46,51,52,52,51,56,49,93,44,91,45,56,51,46,57,48,53,54,51,56,44,51,54,46,52,49,57,57,55,57,93,44,91,45,56,52,46,48,48,52,51,49,55,44,51,54,46,50,55,48,51,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,77,105,110,101,114,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,55,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,53,55,48,55,51,44,51,57,46,53,51,53,49,52,49,93,44,91,45,55,56,46,55,57,53,50,54,56,44,51,57,46,54,49,48,55,93,44,91,45,55,56,46,57,53,55,51,48,49,44,51,57,46,52,52,48,48,57,53,93,44,91,45,55,57,46,48,54,55,53,53,57,44,51,57,46,52,55,57,52,52,51,93,44,91,45,55,57,46,50,55,49,54,57,53,44,51,57,46,51,50,55,57,57,57,93,44,91,45,55,57,46,49,51,52,52,53,54,44,51,57,46,51,49,50,53,48,49,93,44,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,44,91,45,55,56,46,56,53,48,55,50,51,44,51,57,46,51,51,49,48,57,51,93,44,91,45,55,56,46,54,53,55,48,55,51,44,51,57,46,53,51,53,49,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,115,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,49,50,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,56,54,55,51,49,56,44,52,55,46,50,49,48,57,54,50,93,44,91,45,57,48,46,55,51,51,55,53,54,44,52,54,46,56,56,54,56,57,53,93,44,91,45,57,48,46,56,51,56,50,55,54,44,52,54,46,55,51,57,57,57,50,93,44,91,45,57,48,46,56,51,48,50,49,54,44,52,54,46,54,54,51,52,55,50,93,44,91,45,57,48,46,57,50,55,48,53,55,44,52,54,46,53,56,53,52,49,53,93,44,91,45,57,48,46,57,50,52,53,56,51,44,52,54,46,49,53,52,54,49,54,93,44,91,45,57,48,46,57,50,53,49,55,52,44,52,53,46,57,56,49,48,53,53,93,44,91,45,57,48,46,54,55,54,57,54,56,44,52,53,46,57,56,49,53,53,52,93,44,91,45,57,48,46,51,48,50,48,54,51,44,52,53,46,57,56,49,51,52,57,93,44,91,45,57,48,46,51,48,51,48,55,50,44,52,54,46,49,53,52,56,52,57,93,44,91,45,57,48,46,52,50,53,57,55,56,44,52,54,46,50,52,48,52,53,93,44,91,45,57,48,46,53,53,50,50,50,55,44,52,54,46,50,52,48,56,53,49,93,44,91,45,57,48,46,53,52,57,56,56,44,52,54,46,53,56,51,53,53,50,93,44,91,45,57,48,46,52,52,56,57,53,54,44,52,54,46,55,57,55,52,48,49,93,44,91,45,57,48,46,50,54,57,54,50,50,44,52,54,46,55,57,56,49,56,50,93,44,91,45,57,48,46,49,49,49,54,56,57,44,52,55,46,48,52,49,57,54,52,93,44,91,45,56,57,46,57,53,55,49,48,50,44,52,55,46,50,57,49,49,48,51,93,44,91,45,57,48,46,54,53,52,54,54,44,52,55,46,51,48,57,56,50,50,93,44,91,45,57,48,46,55,57,53,49,56,57,44,52,55,46,50,52,52,50,57,57,93,44,91,45,57,48,46,56,54,55,51,49,56,44,52,55,46,50,49,48,57,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,70,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,57,56,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,52,55,51,44,52,48,46,57,57,52,53,54,93,44,91,45,56,56,46,50,51,52,57,53,44,52,48,46,54,49,56,50,48,56,93,44,91,45,56,56,46,52,53,57,52,55,53,44,52,48,46,54,49,55,51,52,53,93,44,91,45,56,56,46,52,53,57,57,53,55,44,52,48,46,51,57,56,56,53,93,44,91,45,56,55,46,57,51,50,51,56,55,44,52,48,46,51,57,57,52,93,44,91,45,56,55,46,57,51,53,51,48,57,44,52,48,46,52,56,53,57,50,51,93,44,91,45,56,56,46,49,49,55,55,56,57,44,52,48,46,52,56,55,56,54,93,44,91,45,56,56,46,49,51,49,57,51,53,44,52,48,46,57,57,55,55,55,55,93,44,91,45,56,56,46,50,52,55,51,44,52,48,46,57,57,52,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,69,109,109,111,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,50,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,57,48,49,57,57,44,52,54,46,52,50,55,56,57,52,93,44,91,45,49,48,48,46,53,53,56,53,52,57,44,52,54,46,50,52,57,57,57,51,93,44,91,45,49,48,48,46,54,50,57,49,52,53,44,52,54,46,49,52,53,54,48,56,93,44,91,45,49,48,48,46,53,49,49,57,52,57,44,52,53,46,57,52,51,55,49,50,93,44,91,45,49,48,48,46,52,57,57,51,55,49,44,52,53,46,57,52,51,54,53,51,93,44,91,45,57,57,46,56,56,48,48,54,44,52,53,46,57,52,49,52,50,51,93,44,91,45,57,57,46,56,55,56,51,53,52,44,52,54,46,50,56,50,56,50,57,93,44,91,45,57,57,46,57,49,54,55,53,56,44,52,54,46,50,56,51,49,55,49,93,44,91,45,57,57,46,57,49,53,53,56,54,44,52,54,46,54,51,50,57,50,54,93,44,91,45,49,48,48,46,48,56,49,49,57,56,44,52,54,46,54,51,51,51,57,54,93,44,91,45,49,48,48,46,54,54,50,48,49,53,44,52,54,46,54,51,52,54,93,44,91,45,49,48,48,46,53,52,52,53,53,53,44,52,54,46,53,51,51,55,54,54,93,44,91,45,49,48,48,46,53,57,48,49,57,57,44,52,54,46,52,50,55,56,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,104,97,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,48,56,53,44,34,98,101,100,115,34,58,53,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,52,57,56,51,55,54,44,52,49,46,49,56,50,54,55,53,93,44,91,45,49,50,50,46,53,50,55,55,53,51,44,52,49,46,48,49,52,51,57,53,93,44,91,45,49,50,50,46,53,57,56,53,50,56,44,52,48,46,57,55,53,56,52,55,93,44,91,45,49,50,50,46,54,54,57,56,51,57,44,52,48,46,55,55,51,53,54,55,93,44,91,45,49,50,50,46,55,53,50,48,50,51,44,52,48,46,54,56,57,56,56,50,93,44,91,45,49,50,50,46,54,57,51,48,57,57,44,52,48,46,53,56,48,55,52,55,93,44,91,45,49,50,50,46,57,51,49,50,54,55,44,52,48,46,52,52,53,53,53,55,93,44,91,45,49,50,51,46,48,54,53,52,50,54,44,52,48,46,50,56,54,57,55,49,93,44,91,45,49,50,50,46,55,52,56,54,48,56,44,52,48,46,51,54,53,54,57,52,93,44,91,45,49,50,50,46,54,53,48,50,54,51,44,52,48,46,51,50,56,54,51,93,44,91,45,49,50,50,46,53,49,57,57,56,56,44,52,48,46,51,57,51,54,55,53,93,44,91,45,49,50,50,46,51,49,48,52,49,50,44,52,48,46,51,55,49,48,54,52,93,44,91,45,49,50,50,46,48,49,48,51,49,54,44,52,48,46,52,50,54,53,53,56,93,44,91,45,49,50,49,46,54,56,53,54,55,57,44,52,48,46,52,53,51,49,50,49,93,44,91,45,49,50,49,46,52,57,55,54,51,53,44,52,48,46,52,52,53,53,57,49,93,44,91,45,49,50,49,46,51,50,55,56,50,54,44,52,48,46,52,52,53,51,54,55,93,44,91,45,49,50,49,46,51,50,49,49,56,54,44,52,48,46,56,56,56,55,48,50,93,44,91,45,49,50,49,46,51,51,49,55,56,54,44,52,49,46,49,56,51,56,56,54,93,44,91,45,49,50,49,46,52,52,54,52,57,53,44,52,49,46,49,56,51,52,56,52,93,44,91,45,49,50,50,46,52,57,56,51,55,54,44,52,49,46,49,56,50,54,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,86,101,114,109,105,108,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,56,54,55,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,56,52,54,55,53,44,51,48,46,49,52,55,52,52,51,93,44,91,45,57,50,46,52,50,54,48,51,57,44,51,48,46,48,52,57,51,54,57,93,44,91,45,57,50,46,53,51,52,54,51,56,44,51,48,46,49,48,55,56,53,50,93,44,91,45,57,50,46,54,50,53,52,56,52,44,51,48,46,48,57,50,51,51,93,44,91,45,57,50,46,55,51,56,54,48,52,44,51,48,46,48,51,55,51,50,51,93,44,91,45,57,50,46,54,49,53,54,49,44,51,48,46,48,51,56,49,54,56,93,44,91,45,57,50,46,54,49,55,51,48,54,44,50,57,46,53,50,55,49,50,57,93,44,91,45,57,50,46,50,57,51,54,55,44,50,57,46,52,56,49,52,57,54,93,44,91,45,57,50,46,49,52,54,54,54,54,44,50,57,46,53,51,50,48,51,55,93,44,91,45,57,50,46,48,52,53,54,49,54,44,50,57,46,53,48,53,56,48,54,93,44,91,45,57,49,46,57,55,57,57,48,56,44,50,57,46,54,53,48,49,50,56,93,44,91,45,57,49,46,57,57,48,51,57,54,44,50,57,46,57,55,48,51,50,54,93,44,91,45,57,49,46,57,54,52,52,53,56,44,51,48,46,48,51,54,57,49,56,93,44,91,45,57,50,46,50,48,50,55,50,50,44,51,48,46,49,52,50,56,54,93,44,91,45,57,50,46,50,56,52,54,55,53,44,51,48,46,49,52,55,52,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,48,51,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,48,55,49,51,56,44,51,54,46,52,57,55,48,56,49,93,44,91,45,57,49,46,50,55,52,57,52,44,51,54,46,51,55,52,49,50,93,44,91,45,57,49,46,50,53,56,57,50,44,51,54,46,50,53,55,56,56,93,44,91,45,57,49,46,49,49,57,54,50,53,44,51,54,46,49,53,51,54,55,49,93,44,91,45,57,48,46,56,48,57,56,49,54,44,51,54,46,49,52,57,53,54,55,93,44,91,45,57,48,46,56,48,54,54,49,53,44,51,54,46,50,54,54,56,54,53,93,44,91,45,57,48,46,55,53,49,56,49,44,51,54,46,50,56,51,56,51,54,93,44,91,45,57,48,46,55,56,52,52,50,52,44,51,54,46,52,57,56,53,51,52,93,44,91,45,57,49,46,49,50,54,53,50,57,44,51,54,46,52,57,55,55,49,50,93,44,91,45,57,49,46,52,48,55,49,51,56,44,51,54,46,52,57,55,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,79,110,101,105,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,52,53,44,34,98,101,100,115,34,58,49,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,52,51,52,49,52,44,52,53,46,53,53,53,48,56,50,93,44,91,45,56,57,46,52,50,56,50,53,56,44,52,53,46,53,53,53,51,53,51,93,44,91,45,56,57,46,52,50,52,56,50,52,44,52,53,46,52,54,55,49,54,54,93,44,91,45,56,57,46,48,52,54,52,57,44,52,53,46,52,54,52,52,51,57,93,44,91,45,56,57,46,48,52,55,54,48,49,44,52,53,46,56,57,53,51,53,53,93,44,91,45,57,48,46,48,52,50,56,53,55,44,52,53,46,56,57,55,50,54,51,93,44,91,45,57,48,46,48,52,51,52,49,52,44,52,53,46,53,53,53,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,69,97,115,116,32,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,53,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,54,53,48,49,56,44,51,51,46,48,48,53,48,56,51,93,44,91,45,57,49,46,51,51,53,52,54,51,44,51,50,46,56,54,54,49,48,52,93,44,91,45,57,49,46,51,52,52,56,52,53,44,51,50,46,55,53,54,54,53,57,93,44,91,45,57,49,46,52,52,53,50,57,57,44,51,50,46,53,56,49,57,53,54,93,44,91,45,57,49,46,52,53,55,54,52,51,44,51,50,46,53,51,55,56,48,55,93,44,91,45,57,49,46,49,51,51,55,49,51,44,51,50,46,53,51,55,57,49,50,93,44,91,45,57,49,46,48,54,57,55,57,50,44,51,50,46,53,54,50,56,48,51,93,44,91,45,57,49,46,48,52,51,53,53,50,44,51,50,46,53,55,54,50,55,49,93,44,91,45,57,49,46,49,53,50,54,57,57,44,51,50,46,54,52,48,55,53,55,93,44,91,45,57,49,46,49,52,51,53,53,57,44,51,50,46,56,52,52,55,51,56,93,44,91,45,57,49,46,50,49,50,56,51,55,44,51,50,46,57,50,50,49,48,51,93,44,91,45,57,49,46,49,54,54,48,55,51,44,51,51,46,48,48,52,49,48,54,93,44,91,45,57,49,46,50,54,53,48,49,56,44,51,51,46,48,48,53,48,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,69,97,115,116,32,70,101,108,105,99,105,97,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,57,57,44,34,98,101,100,115,34,58,54,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,55,54,49,52,44,51,48,46,57,57,57,48,56,93,44,91,45,57,49,46,50,52,48,52,57,52,44,51,48,46,55,56,55,49,54,51,93,44,91,45,57,49,46,51,49,48,48,54,49,44,51,48,46,54,53,51,57,54,49,93,44,91,45,57,49,46,50,57,55,54,53,56,44,51,48,46,54,52,57,53,52,56,93,44,91,45,57,49,46,50,53,52,52,49,57,44,51,48,46,55,48,53,50,57,52,93,44,91,45,57,48,46,56,52,57,48,52,49,44,51,48,46,55,49,57,51,49,49,93,44,91,45,57,48,46,56,54,49,48,49,57,44,51,48,46,57,51,53,51,55,51,93,44,91,45,57,48,46,56,50,53,56,50,57,44,51,48,46,57,57,57,51,54,49,93,44,91,45,57,49,46,48,54,48,50,49,57,44,51,48,46,57,57,56,57,50,55,93,44,91,45,57,49,46,49,55,54,49,52,44,51,48,46,57,57,57,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,66,101,114,110,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,57,52,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,50,53,48,53,52,44,51,48,46,49,53,51,52,57,51,93,44,91,45,56,57,46,54,56,51,50,51,44,51,48,46,48,55,54,52,48,54,93,44,91,45,56,57,46,56,56,49,53,57,57,44,50,57,46,57,56,54,50,93,44,91,45,56,57,46,57,49,48,55,48,56,44,50,57,46,56,54,55,56,54,53,93,44,91,45,56,57,46,56,54,57,55,50,44,50,57,46,55,57,53,52,53,49,93,44,91,45,56,57,46,55,50,49,48,52,53,44,50,57,46,55,53,55,54,53,50,93,44,91,45,56,57,46,52,56,52,53,57,49,44,50,57,46,54,49,55,53,53,49,93,44,91,45,56,56,46,56,55,57,50,51,53,44,50,57,46,54,52,55,52,48,57,93,44,91,45,56,56,46,56,48,49,56,49,55,44,50,57,46,55,53,48,49,57,55,93,44,91,45,56,56,46,55,53,56,51,56,56,44,50,57,46,57,49,56,50,55,49,93,44,91,45,56,56,46,55,56,51,54,54,54,44,51,48,46,48,50,54,54,56,53,93,44,91,45,56,56,46,56,56,57,48,51,44,51,48,46,49,51,57,56,52,53,93,44,91,45,56,57,46,48,57,54,52,55,54,44,51,48,46,49,54,53,56,50,57,93,44,91,45,56,57,46,49,56,51,54,54,57,44,51,48,46,50,49,50,49,53,53,93,44,91,45,56,57,46,51,48,54,49,51,53,44,51,48,46,49,55,55,57,52,49,93,44,91,45,56,57,46,52,57,52,57,55,51,44,51,48,46,49,54,48,55,53,93,44,91,45,56,57,46,54,50,53,48,53,52,44,51,48,46,49,53,51,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,56,49,34,44,34,78,65,77,69,34,58,34,87,104,97,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,53,53,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,49,55,53,52,50,50,44,50,57,46,54,51,51,56,48,54,93,44,91,45,57,54,46,51,48,55,54,55,50,44,50,57,46,53,49,52,53,50,51,93,44,91,45,57,54,46,51,52,57,50,49,55,44,50,57,46,52,48,54,48,53,50,93,44,91,45,57,54,46,54,52,48,51,49,53,44,50,57,46,50,52,55,56,48,52,93,44,91,45,57,54,46,51,48,57,49,55,56,44,50,56,46,57,54,51,50,57,49,93,44,91,45,57,53,46,57,54,53,49,57,54,44,50,57,46,49,52,54,56,54,53,93,44,91,45,57,53,46,56,55,52,48,50,56,44,50,57,46,50,50,57,55,48,50,93,44,91,45,57,53,46,56,52,55,54,53,54,44,50,57,46,50,54,50,53,57,93,44,91,45,57,53,46,57,53,48,54,52,51,44,50,57,46,51,51,54,53,55,55,93,44,91,45,57,54,46,48,54,48,54,55,54,44,50,57,46,52,55,54,52,55,51,93,44,91,45,57,54,46,48,56,56,57,49,50,44,50,57,46,54,48,49,54,53,56,93,44,91,45,57,54,46,49,55,53,52,50,50,44,50,57,46,54,51,51,56,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,57,56,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,56,34,44,34,78,65,77,69,34,58,34,80,114,105,110,99,101,32,111,102,32,87,97,108,101,115,45,72,121,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,55,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,51,49,46,55,54,50,51,51,57,44,53,52,46,54,56,54,56,52,93,44,91,45,49,51,49,46,55,57,52,50,56,55,44,53,52,46,57,52,52,48,49,55,93,44,91,45,49,51,49,46,53,49,48,54,54,44,53,53,46,48,49,54,51,54,54,93,44,91,45,49,51,49,46,51,51,54,57,56,51,44,53,52,46,57,57,53,53,51,52,93,44,91,45,49,51,49,46,50,51,57,53,53,52,44,53,53,46,49,54,57,54,56,51,93,44,91,45,49,51,49,46,52,56,54,55,53,54,44,53,53,46,50,55,54,49,56,51,93,44,91,45,49,51,49,46,54,48,57,50,53,51,44,53,53,46,50,56,50,48,49,51,93,44,91,45,49,51,49,46,54,56,53,51,55,55,44,53,53,46,49,49,52,52,53,56,93,44,91,45,49,51,49,46,56,53,53,48,48,51,44,53,53,46,48,56,56,54,49,53,93,44,91,45,49,51,49,46,57,52,49,51,54,52,44,53,53,46,51,49,50,56,50,54,93,44,91,45,49,51,50,46,48,51,55,48,48,54,44,53,53,46,52,54,53,50,52,54,93,44,91,45,49,51,50,46,50,50,53,57,55,57,44,53,53,46,53,54,53,56,49,50,93,44,91,45,49,51,50,46,49,57,57,55,52,57,44,53,53,46,54,51,51,56,51,52,93,44,91,45,49,51,50,46,51,53,53,56,54,52,44,53,53,46,55,57,53,55,56,49,93,44,91,45,49,51,51,46,48,48,55,55,50,55,44,53,54,46,49,51,52,56,55,51,93,44,91,45,49,51,51,46,48,52,50,54,57,44,53,54,46,50,52,57,54,54,93,44,91,45,49,51,51,46,49,54,57,48,55,57,44,53,54,46,51,53,53,48,57,51,93,44,91,45,49,51,51,46,52,49,55,52,54,49,44,53,54,46,51,57,52,54,48,54,93,44,91,45,49,51,51,46,52,50,54,56,57,44,53,54,46,54,49,56,53,51,56,93,44,91,45,49,51,51,46,52,56,51,56,54,54,44,53,54,46,54,53,49,54,48,50,93,44,91,45,49,51,51,46,52,56,54,54,49,53,44,53,54,46,56,54,54,51,57,56,93,44,91,45,49,51,51,46,50,55,52,48,49,50,44,53,54,46,57,50,49,56,49,53,93,44,91,45,49,51,51,46,51,50,52,57,57,57,44,53,55,46,48,54,51,54,49,49,93,44,91,45,49,51,51,46,54,53,56,50,50,50,44,53,55,46,49,54,50,52,57,51,93,44,91,45,49,51,52,46,48,54,51,49,52,53,44,53,55,46,49,53,54,50,56,54,93,44,91,45,49,51,52,46,51,51,53,51,49,57,44,53,54,46,57,54,55,53,51,57,93,44,91,45,49,51,52,46,53,54,57,50,56,57,44,53,54,46,56,54,51,48,53,50,93,44,91,45,49,51,52,46,52,57,54,50,49,54,44,53,54,46,54,57,57,54,51,49,93,44,91,45,49,51,52,46,52,50,57,50,52,55,44,53,54,46,50,56,50,55,51,55,93,44,91,45,49,51,52,46,54,54,54,54,54,56,44,53,54,46,50,56,51,51,51,52,93,44,91,45,49,51,52,46,54,54,54,51,57,54,44,53,54,46,49,52,55,53,56,54,93,44,91,45,49,51,52,46,52,57,52,49,55,51,44,53,53,46,57,57,57,54,51,56,93,44,91,45,49,51,52,46,54,52,53,54,56,53,44,53,53,46,56,55,49,52,55,50,93,44,91,45,49,51,52,46,53,54,57,51,55,44,53,53,46,56,48,52,48,49,93,44,91,45,49,51,52,46,49,57,50,48,50,55,44,53,53,46,54,57,51,48,53,51,93,44,91,45,49,51,52,46,48,52,54,54,48,57,44,53,53,46,56,53,48,52,55,55,93,44,91,45,49,51,51,46,56,56,53,57,44,53,53,46,55,56,48,50,51,53,93,44,91,45,49,51,51,46,55,57,56,50,52,54,44,53,53,46,54,51,51,50,51,49,93,44,91,45,49,51,51,46,56,55,51,57,49,55,44,53,53,46,51,57,56,56,52,93,44,91,45,49,51,51,46,54,49,51,54,54,44,53,53,46,49,55,48,50,54,53,93,44,91,45,49,51,51,46,55,57,48,53,50,56,44,53,53,46,48,48,48,53,56,49,93,44,91,45,49,51,51,46,54,52,56,57,48,51,44,53,52,46,54,51,50,48,52,53,93,44,91,45,49,51,49,46,55,54,50,51,51,57,44,53,52,46,54,56,54,56,52,93,93,93,44,91,91,91,45,49,51,48,46,50,52,54,55,54,55,44,53,54,46,48,57,54,53,56,49,93,44,91,45,49,51,48,46,51,56,56,54,48,54,44,53,53,46,57,52,51,49,55,57,93,44,91,45,49,51,48,46,49,53,49,53,55,55,44,53,53,46,55,54,55,52,50,56,93,44,91,45,49,51,48,46,48,49,55,54,55,57,44,53,53,46,57,49,49,57,52,53,93,44,91,45,49,51,48,46,48,48,51,52,56,53,44,53,54,46,48,48,56,48,55,53,93,44,91,45,49,51,48,46,49,48,51,55,57,56,44,53,54,46,49,50,50,55,57,56,93,44,91,45,49,51,48,46,50,52,54,55,54,55,44,53,54,46,48,57,54,53,56,49,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,80,101,116,101,114,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,53,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,44,91,45,49,51,51,46,55,51,56,54,49,49,44,53,55,46,49,56,54,51,52,56,93,44,91,45,49,51,51,46,54,53,56,50,50,50,44,53,55,46,49,54,50,52,57,51,93,44,91,45,49,51,51,46,51,50,52,57,57,57,44,53,55,46,48,54,51,54,49,49,93,44,91,45,49,51,51,46,50,55,52,48,49,50,44,53,54,46,57,50,49,56,49,53,93,44,91,45,49,51,51,46,52,56,54,54,49,53,44,53,54,46,56,54,54,51,57,56,93,44,91,45,49,51,51,46,52,56,51,56,54,54,44,53,54,46,54,53,49,54,48,50,93,44,91,45,49,51,51,46,52,50,54,56,57,44,53,54,46,54,49,56,53,51,56,93,44,91,45,49,51,51,46,52,49,55,52,54,49,44,53,54,46,51,57,52,54,48,54,93,44,91,45,49,51,51,46,49,54,57,48,55,57,44,53,54,46,51,53,53,48,57,51,93,44,91,45,49,51,50,46,57,56,48,57,51,44,53,54,46,52,54,55,54,54,55,93,44,91,45,49,51,50,46,55,53,54,54,53,57,44,53,54,46,52,56,52,51,56,56,93,44,91,45,49,51,50,46,53,49,56,50,55,52,44,53,54,46,53,56,54,50,49,51,93,44,91,45,49,51,50,46,53,57,49,55,52,56,44,53,54,46,54,54,54,50,53,51,93,44,91,45,49,51,50,46,52,51,57,53,57,57,44,53,54,46,55,55,48,52,48,57,93,44,91,45,49,51,50,46,49,49,53,57,51,53,44,53,54,46,56,57,48,51,52,93,44,91,45,49,51,50,46,48,52,53,49,57,49,44,53,55,46,48,52,53,48,53,57,93,44,91,45,49,51,50,46,51,54,56,57,56,51,44,53,55,46,48,57,49,53,49,51,93,44,91,45,49,51,50,46,50,52,55,57,50,49,44,53,55,46,50,49,49,50,53,51,93,44,91,45,49,51,50,46,54,53,50,52,53,54,44,53,55,46,54,48,55,51,53,55,93,44,91,45,49,51,50,46,56,56,55,56,53,44,53,55,46,54,49,51,55,51,57,93,44,91,45,49,51,50,46,56,55,49,56,57,56,44,53,55,46,55,49,50,55,57,54,93,44,91,45,49,51,51,46,52,53,50,50,52,50,44,53,55,46,56,49,52,48,54,50,93,44,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,55,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,54,52,56,53,54,44,51,52,46,51,49,50,52,57,51,93,44,91,45,49,48,49,46,53,54,51,53,56,44,51,51,46,56,51,48,52,53,49,93,44,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,44,91,45,49,48,49,46,48,52,49,52,56,52,44,51,52,46,51,49,50,52,52,52,93,44,91,45,49,48,49,46,52,55,49,53,56,44,51,52,46,51,49,50,50,57,93,44,91,45,49,48,49,46,53,54,52,56,53,54,44,51,52,46,51,49,50,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,53,34,44,34,78,65,77,69,34,58,34,87,114,97,110,103,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,52,44,34,98,101,100,115,34,58,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,50,46,49,49,53,57,51,53,44,53,54,46,56,57,48,51,52,93,44,91,45,49,51,50,46,52,51,57,53,57,57,44,53,54,46,55,55,48,52,48,57,93,44,91,45,49,51,50,46,53,57,49,55,52,56,44,53,54,46,54,54,54,50,53,51,93,44,91,45,49,51,50,46,53,49,56,50,55,52,44,53,54,46,53,56,54,50,49,51,93,44,91,45,49,51,50,46,55,53,54,54,53,57,44,53,54,46,52,56,52,51,56,56,93,44,91,45,49,51,50,46,57,56,48,57,51,44,53,54,46,52,54,55,54,54,55,93,44,91,45,49,51,51,46,49,54,57,48,55,57,44,53,54,46,51,53,53,48,57,51,93,44,91,45,49,51,51,46,48,52,50,54,57,44,53,54,46,50,52,57,54,54,93,44,91,45,49,51,51,46,48,48,55,55,50,55,44,53,54,46,49,51,52,56,55,51,93,44,91,45,49,51,50,46,51,53,53,56,54,52,44,53,53,46,55,57,53,55,56,49,93,44,91,45,49,51,50,46,49,57,57,55,52,57,44,53,53,46,54,51,51,56,51,52,93,44,91,45,49,51,50,46,48,57,49,49,55,56,44,53,53,46,54,54,48,55,48,51,93,44,91,45,49,51,49,46,57,51,53,54,51,53,44,53,53,46,55,57,56,52,51,49,93,44,91,45,49,51,49,46,56,51,51,49,56,50,44,53,54,46,48,53,51,53,49,50,93,44,91,45,49,51,49,46,51,55,57,57,56,55,44,53,54,46,48,49,51,52,49,57,93,44,91,45,49,51,49,46,52,51,57,57,53,55,44,53,54,46,49,51,49,48,56,51,93,44,91,45,49,51,49,46,50,53,51,51,53,56,44,53,54,46,50,48,54,56,53,93,44,91,45,49,51,49,46,48,49,53,57,55,49,44,53,54,46,50,52,57,56,54,49,93,44,91,45,49,51,49,46,48,56,55,51,52,57,44,53,54,46,52,48,54,48,48,53,93,44,91,45,49,51,49,46,53,56,49,48,54,55,44,53,54,46,54,49,50,50,51,50,93,44,91,45,49,51,49,46,56,51,53,51,50,55,44,53,54,46,53,57,57,50,48,51,93,44,91,45,49,51,49,46,56,55,50,56,55,54,44,53,54,46,56,48,53,57,57,53,93,44,91,45,49,51,50,46,49,49,53,57,51,53,44,53,54,46,56,57,48,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,55,48,48,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,50,53,54,52,51,44,51,55,46,55,54,57,52,57,55,93,44,91,45,56,52,46,51,52,55,56,48,53,44,51,55,46,53,51,57,48,54,52,93,44,91,45,56,52,46,49,57,57,52,56,57,44,51,55,46,53,50,50,56,53,56,93,44,91,45,56,52,46,48,57,48,51,54,52,44,51,55,46,53,54,54,50,50,55,93,44,91,45,56,52,46,49,50,54,57,52,56,44,51,55,46,54,52,50,52,50,49,93,44,91,45,56,52,46,48,56,48,51,51,55,44,51,55,46,56,53,51,48,54,54,93,44,91,45,56,52,46,51,51,55,51,57,51,44,51,55,46,56,57,50,48,48,55,93,44,91,45,56,52,46,52,51,53,55,50,44,51,55,46,56,52,55,50,48,50,93,44,91,45,56,52,46,53,50,53,54,52,51,44,51,55,46,55,54,57,52,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,108,111,117,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,52,52,51,44,34,98,101,100,115,34,58,51,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,57,52,50,55,53,44,51,53,46,56,56,55,49,50,53,93,44,91,45,56,51,46,57,53,48,52,56,49,44,51,53,46,56,55,53,51,54,50,93,44,91,45,56,52,46,49,54,54,50,54,55,44,51,53,46,56,48,53,49,48,54,93,44,91,45,56,52,46,49,56,56,51,49,57,44,51,53,46,54,49,48,53,52,57,93,44,91,45,56,51,46,57,54,49,49,48,50,44,51,53,46,52,54,51,55,53,52,93,44,91,45,56,51,46,57,53,50,57,55,50,44,51,53,46,52,54,48,53,53,50,93,44,91,45,56,51,46,55,55,48,53,56,55,44,51,53,46,53,54,49,55,52,51,93,44,91,45,56,51,46,54,54,50,57,57,57,44,51,53,46,53,54,57,52,54,56,93,44,91,45,56,51,46,55,57,52,50,55,53,44,51,53,46,56,56,55,49,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,71,97,108,108,97,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,55,50,57,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,48,53,50,53,57,44,52,53,46,55,57,56,51,48,54,93,44,91,45,49,49,49,46,54,53,57,55,51,56,44,52,53,46,55,52,51,51,52,52,93,44,91,45,49,49,49,46,53,51,54,50,52,49,44,52,53,46,54,52,50,50,53,55,93,44,91,45,49,49,49,46,51,53,49,51,56,44,52,53,46,54,52,49,57,51,56,93,44,91,45,49,49,49,46,51,55,51,48,51,44,52,53,46,51,53,48,53,50,49,93,44,91,45,49,49,49,46,51,55,55,48,49,53,44,52,52,46,55,53,49,52,52,51,93,44,91,45,49,49,49,46,50,49,57,51,49,57,44,52,52,46,54,50,50,53,50,49,93,44,91,45,49,49,49,46,49,51,48,54,53,57,44,52,52,46,53,48,48,49,51,49,93,44,91,45,49,49,49,46,48,53,50,52,51,52,44,52,52,46,52,55,56,52,49,49,93,44,91,45,49,49,49,46,48,53,51,52,52,55,44,52,52,46,54,54,54,50,54,56,93,44,91,45,49,49,49,46,48,52,53,48,54,54,44,52,53,46,48,48,48,57,53,93,44,91,45,49,49,49,46,48,51,56,49,54,57,44,52,53,46,51,53,49,51,57,49,93,44,91,45,49,49,48,46,57,49,55,56,57,57,44,52,53,46,51,53,49,50,55,51,93,44,91,45,49,49,48,46,57,49,57,50,50,50,44,52,53,46,53,50,52,56,54,49,93,44,91,45,49,49,48,46,55,57,52,55,55,52,44,52,53,46,53,57,48,54,56,50,93,44,91,45,49,49,48,46,55,56,51,56,51,51,44,52,54,46,49,57,50,54,57,57,93,44,91,45,49,49,49,46,48,54,49,57,53,54,44,52,54,46,49,57,50,56,51,52,93,44,91,45,49,49,49,46,51,52,54,54,53,50,44,52,54,46,49,56,55,55,56,53,93,44,91,45,49,49,49,46,52,49,57,54,49,56,44,52,53,46,57,57,54,51,50,50,93,44,91,45,49,49,49,46,54,54,48,48,53,55,44,52,53,46,56,51,51,53,93,44,91,45,49,49,49,46,56,48,53,50,53,57,44,52,53,46,55,57,56,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,97,114,108,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,50,53,51,44,34,98,101,100,115,34,58,49,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,50,57,57,56,49,44,51,52,46,53,51,49,57,50,53,93,44,91,45,55,57,46,56,56,52,53,52,50,44,51,52,46,52,57,49,50,49,56,93,44,91,45,56,48,46,48,52,53,52,51,57,44,51,52,46,52,57,50,54,51,49,93,44,91,45,56,48,46,50,56,56,53,57,54,44,51,52,46,51,54,54,50,48,55,93,44,91,45,56,48,46,50,56,56,54,57,50,44,51,52,46,51,54,52,49,51,57,93,44,91,45,56,48,46,49,51,53,52,49,51,44,51,52,46,50,56,52,53,53,50,93,44,91,45,56,48,46,48,54,57,56,55,56,44,51,52,46,48,56,54,49,57,49,93,44,91,45,55,57,46,55,50,57,53,54,54,44,51,52,46,50,57,53,49,57,93,44,91,45,55,57,46,54,53,55,55,54,52,44,51,52,46,51,48,53,49,57,93,44,91,45,55,57,46,54,56,53,50,50,55,44,51,52,46,52,48,48,54,54,57,93,44,91,45,55,57,46,56,50,57,57,56,49,44,51,52,46,53,51,49,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,69,115,99,97,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,50,56,44,34,98,101,100,115,34,58,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,49,53,56,57,44,51,49,46,50,52,52,52,53,56,93,44,91,45,56,55,46,53,57,56,56,50,57,44,51,48,46,57,57,55,52,53,53,93,44,91,45,56,55,46,49,54,51,54,53,51,44,51,48,46,57,57,57,48,50,57,93,44,91,45,56,54,46,55,56,53,54,57,50,44,51,48,46,57,57,54,57,56,93,44,91,45,56,54,46,54,56,56,51,49,55,44,51,48,46,57,57,52,53,48,55,93,44,91,45,56,54,46,55,48,48,50,56,50,44,51,49,46,49,57,50,50,49,55,93,44,91,45,56,54,46,55,54,51,57,54,49,44,51,49,46,50,54,49,50,57,51,93,44,91,45,56,55,46,52,50,55,52,53,53,44,51,49,46,50,54,48,51,56,54,93,44,91,45,56,55,46,54,49,53,56,57,44,51,49,46,50,52,52,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,72,97,114,97,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,53,48,51,49,44,51,51,46,57,48,52,52,56,56,93,44,91,45,56,53,46,51,56,54,53,56,49,44,51,51,46,57,48,49,55,49,57,93,44,91,45,56,53,46,51,51,56,50,51,44,51,51,46,54,53,51,49,49,55,93,44,91,45,56,53,46,48,53,48,56,56,57,44,51,51,46,55,49,52,54,51,50,93,44,91,45,56,53,46,48,51,55,57,50,54,44,51,51,46,56,49,49,57,52,50,93,44,91,45,56,53,46,48,53,48,51,49,44,51,51,46,57,48,52,52,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,49,56,57,55,44,51,56,46,48,51,56,50,51,93,44,91,45,57,53,46,53,50,53,52,57,57,44,51,55,46,55,51,50,55,53,57,93,44,91,45,57,53,46,48,56,56,48,56,50,44,51,55,46,55,51,50,52,55,54,93,44,91,45,57,53,46,48,55,55,56,55,54,44,51,56,46,48,51,55,55,48,54,93,44,91,45,57,53,46,53,49,56,57,55,44,51,56,46,48,51,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,44,91,45,56,56,46,52,54,50,50,48,55,44,51,57,46,56,55,57,48,57,50,93,44,91,45,56,56,46,52,55,51,49,56,50,44,51,57,46,55,57,49,56,51,55,93,44,91,45,56,56,46,52,55,50,48,55,51,44,51,57,46,54,53,49,53,56,56,93,44,91,45,56,56,46,48,54,51,53,49,56,44,51,57,46,54,53,50,54,53,55,93,44,91,45,56,55,46,57,54,54,51,52,55,44,51,57,46,54,56,53,57,55,51,93,44,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,54,51,49,52,53,44,51,56,46,50,55,55,57,51,51,93,44,91,45,55,56,46,51,54,56,55,52,51,44,51,56,46,49,56,52,48,55,52,93,44,91,45,55,56,46,50,56,56,56,51,55,44,51,56,46,50,55,50,54,53,54,93,44,91,45,55,56,46,52,50,57,54,50,54,44,51,56,46,51,54,54,55,48,52,93,44,91,45,55,56,46,52,53,50,56,48,49,44,51,56,46,52,55,53,53,50,55,93,44,91,45,55,56,46,52,56,53,55,52,44,51,56,46,52,50,49,53,55,57,93,44,91,45,55,56,46,54,54,51,49,52,53,44,51,56,46,50,55,55,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,87,97,117,115,104,97,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,57,55,57,56,44,52,52,46,50,52,53,55,50,53,93,44,91,45,56,57,46,53,57,55,57,53,44,52,51,46,57,56,50,49,93,44,91,45,56,57,46,49,54,56,54,49,50,44,52,51,46,57,56,50,56,51,52,93,44,91,45,56,56,46,56,56,54,49,57,51,44,52,51,46,57,56,51,50,51,51,93,44,91,45,56,56,46,56,56,54,54,55,51,44,52,52,46,50,52,50,54,50,50,93,44,91,45,56,57,46,50,50,52,56,49,51,44,52,52,46,50,52,51,51,57,51,93,44,91,45,56,57,46,53,57,55,57,56,44,52,52,46,50,52,53,55,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,73,122,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,53,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,57,53,52,51,44,51,54,46,49,51,50,55,57,56,93,44,91,45,57,50,46,49,51,57,49,48,52,44,51,54,46,49,49,50,50,50,49,93,44,91,45,57,50,46,48,56,53,52,56,53,44,51,53,46,57,54,53,57,52,51,93,44,91,45,57,49,46,56,52,57,52,52,56,44,51,53,46,56,54,55,52,49,49,93,44,91,45,57,49,46,55,49,48,52,56,51,44,51,53,46,57,52,49,55,53,56,93,44,91,45,57,49,46,54,56,50,50,55,55,44,51,54,46,48,48,48,53,51,53,93,44,91,45,57,49,46,54,57,49,52,51,53,44,51,54,46,50,53,51,51,48,49,93,44,91,45,57,50,46,49,53,54,57,57,44,51,54,46,50,54,49,50,52,56,93,44,91,45,57,50,46,49,57,53,52,51,44,51,54,46,49,51,50,55,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,101,114,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,51,50,49,50,44,34,98,101,100,115,34,58,55,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,48,53,49,56,55,56,44,51,54,46,56,49,57,54,93,44,91,45,49,50,50,46,48,48,49,49,50,52,44,51,54,46,54,52,55,55,48,52,93,44,91,45,49,50,50,46,48,52,50,55,52,56,44,51,54,46,53,57,54,54,50,55,93,44,91,45,49,50,49,46,57,53,57,48,53,51,44,51,54,46,50,56,55,49,48,56,93,44,91,45,49,50,49,46,55,55,48,54,57,51,44,51,54,46,49,54,50,48,49,52,93,44,91,45,49,50,49,46,54,52,56,49,56,44,51,53,46,57,57,56,54,49,55,93,44,91,45,49,50,49,46,53,54,49,52,54,49,44,51,53,46,57,52,51,56,49,56,93,44,91,45,49,50,49,46,52,51,56,49,55,54,44,51,53,46,55,57,54,54,53,53,93,44,91,45,49,50,48,46,50,49,51,57,55,57,44,51,53,46,55,56,57,50,55,54,93,44,91,45,49,50,48,46,51,49,53,48,54,56,44,51,53,46,57,48,55,49,56,54,93,44,91,45,49,50,48,46,54,52,56,55,56,52,44,51,54,46,49,48,55,57,57,93,44,91,45,49,50,48,46,54,55,56,53,56,50,44,51,54,46,50,54,55,51,49,57,93,44,91,45,49,50,48,46,55,54,49,52,56,51,44,51,54,46,50,48,51,53,56,93,44,91,45,49,50,48,46,56,54,51,57,56,55,44,51,54,46,50,57,49,57,51,49,93,44,91,45,49,50,49,46,48,52,48,55,57,55,44,51,54,46,51,50,51,57,54,57,93,44,91,45,49,50,49,46,51,50,56,54,57,55,44,51,54,46,53,53,52,55,52,93,44,91,45,49,50,49,46,51,49,56,54,56,57,44,51,54,46,54,49,48,51,50,56,93,44,91,45,49,50,49,46,54,52,52,48,48,49,44,51,54,46,56,57,51,57,57,54,93,44,91,45,49,50,50,46,48,53,49,56,55,56,44,51,54,46,56,49,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,48,54,49,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,55,54,52,51,44,51,50,46,55,55,55,56,48,50,93,44,91,45,49,48,56,46,56,53,52,53,56,49,44,51,50,46,55,55,55,50,55,54,93,44,91,45,49,48,56,46,56,53,50,57,49,57,44,51,50,46,54,48,51,51,55,52,93,44,91,45,49,48,56,46,54,52,54,53,50,51,44,51,50,46,54,48,51,55,51,93,44,91,45,49,48,56,46,54,52,54,55,55,44,51,50,46,53,49,54,53,50,49,93,44,91,45,49,48,56,46,53,51,55,48,49,49,44,51,50,46,53,49,54,54,49,56,93,44,91,45,49,48,56,46,53,51,55,54,55,54,44,51,50,46,48,55,57,56,51,50,93,44,91,45,49,48,56,46,53,50,52,53,51,56,44,51,49,46,56,54,51,54,49,52,93,44,91,45,49,48,56,46,50,49,55,49,52,51,44,51,49,46,56,54,52,49,51,57,93,44,91,45,49,48,56,46,50,50,57,57,53,49,44,51,50,46,48,55,57,56,55,93,44,91,45,49,48,56,46,50,50,57,51,52,51,44,51,50,46,53,49,54,56,51,55,93,44,91,45,49,48,55,46,57,50,51,55,54,54,44,51,50,46,53,49,55,52,49,54,93,44,91,45,49,48,55,46,57,50,51,57,57,55,44,51,50,46,54,48,52,51,55,57,93,44,91,45,49,48,55,46,54,48,56,52,56,53,44,51,50,46,54,48,53,52,52,57,93,44,91,45,49,48,55,46,55,51,50,50,56,50,44,51,50,46,54,50,55,51,53,51,93,44,91,45,49,48,55,46,55,50,49,51,56,55,44,51,50,46,55,55,56,48,55,55,93,44,91,45,49,48,55,46,55,56,48,53,52,56,44,51,50,46,57,53,50,55,55,54,93,44,91,45,49,48,55,46,56,53,54,54,55,50,44,51,51,46,48,48,50,53,51,57,93,44,91,45,49,48,55,46,56,54,53,48,48,57,44,51,51,46,49,57,57,57,55,52,93,44,91,45,49,48,56,46,48,48,48,53,57,56,44,51,51,46,50,48,49,50,53,51,93,44,91,45,49,48,57,46,48,52,55,53,55,56,44,51,51,46,50,48,56,56,57,56,93,44,91,45,49,48,57,46,48,52,55,54,52,51,44,51,50,46,55,55,55,56,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,77,105,108,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,50,53,49,56,57,44,51,56,46,52,51,48,55,55,56,93,44,91,45,57,50,46,54,56,57,56,51,52,44,51,56,46,51,52,56,52,55,50,93,44,91,45,57,50,46,54,57,53,56,56,54,44,51,56,46,50,50,50,48,51,49,93,44,91,45,57,50,46,54,52,48,48,56,53,44,51,56,46,50,49,51,48,51,50,93,44,91,45,57,50,46,53,55,48,50,56,49,44,51,56,46,48,54,54,54,51,53,93,44,91,45,57,50,46,52,48,54,50,55,53,44,51,56,46,48,50,49,49,55,57,93,44,91,45,57,50,46,49,56,53,51,55,44,51,56,46,48,49,54,51,51,56,93,44,91,45,57,50,46,49,57,53,54,55,53,44,51,56,46,50,57,50,50,51,55,93,44,91,45,57,50,46,49,57,52,52,55,54,44,51,56,46,51,51,53,53,51,54,93,44,91,45,57,50,46,52,48,56,52,48,55,44,51,56,46,51,52,49,51,52,52,93,44,91,45,57,50,46,52,57,53,49,56,53,44,51,56,46,52,50,55,56,50,57,93,44,91,45,57,50,46,54,50,53,49,56,57,44,51,56,46,52,51,48,55,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,87,105,108,107,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,54,48,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,53,51,54,52,57,44,51,54,46,51,54,54,54,48,49,93,44,91,45,56,49,46,52,55,55,53,49,54,44,51,54,46,50,52,48,50,53,93,44,91,45,56,49,46,53,52,53,52,56,56,44,51,54,46,49,49,55,52,55,53,93,44,91,45,56,49,46,51,50,56,51,50,52,44,51,53,46,57,57,54,53,56,51,93,44,91,45,56,49,46,48,50,56,56,51,51,44,51,54,46,48,52,53,54,53,50,93,44,91,45,56,48,46,56,56,49,53,57,49,44,51,54,46,48,53,53,55,49,56,93,44,91,45,56,48,46,56,55,51,50,48,53,44,51,54,46,50,51,54,51,48,53,93,44,91,45,56,48,46,56,54,56,55,52,54,44,51,54,46,51,50,54,52,52,55,93,44,91,45,56,48,46,57,54,55,49,53,51,44,51,54,46,52,48,50,48,50,93,44,91,45,56,49,46,48,57,53,49,49,50,44,51,54,46,52,52,48,55,55,51,93,44,91,45,56,49,46,50,53,51,54,52,57,44,51,54,46,51,54,54,54,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,48,34,44,34,78,65,77,69,34,58,34,74,117,110,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,51,51,48,44,34,98,101,100,115,34,58,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,52,46,51,50,49,52,52,54,44,53,56,46,57,54,51,54,50,57,93,44,91,45,49,51,53,46,50,49,57,49,50,56,44,53,56,46,57,55,52,57,55,50,93,44,91,45,49,51,53,46,48,55,48,52,53,44,53,56,46,52,57,57,56,57,55,93,44,91,45,49,51,52,46,54,57,52,56,51,54,44,53,56,46,50,55,54,53,50,50,93,44,91,45,49,51,52,46,55,55,54,56,54,50,44,53,56,46,48,57,57,48,52,53,93,44,91,45,49,51,52,46,54,57,55,55,54,54,44,53,56,46,48,51,50,48,51,54,93,44,91,45,49,51,52,46,53,51,56,52,49,51,44,53,56,46,48,57,56,49,55,50,93,44,91,45,49,51,52,46,49,55,54,57,57,44,53,56,46,49,53,56,51,50,93,44,91,45,49,51,51,46,56,49,51,48,53,49,44,53,55,46,56,51,55,54,50,52,93,44,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,44,91,45,49,51,51,46,49,55,54,57,51,55,44,53,56,46,49,53,48,53,54,55,93,44,91,45,49,51,51,46,52,54,49,53,48,52,44,53,56,46,51,56,55,55,50,51,93,44,91,45,49,51,51,46,51,55,55,51,48,51,44,53,56,46,52,51,48,53,52,56,93,44,91,45,49,51,51,46,55,48,55,49,49,56,44,53,56,46,54,49,50,50,55,52,93,44,91,45,49,51,51,46,56,52,48,53,48,55,44,53,56,46,55,50,57,52,52,52,93,44,91,45,49,51,52,46,50,53,56,48,55,52,44,53,56,46,56,54,49,48,51,54,93,44,91,45,49,51,52,46,51,50,49,52,52,54,44,53,56,46,57,54,51,54,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,80,108,97,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,56,50,52,44,34,98,101,100,115,34,58,49,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,54,56,57,55,51,44,51,57,46,52,49,56,56,55,57,93,44,91,45,57,52,46,56,57,56,53,49,54,44,51,57,46,50,57,56,52,53,93,44,91,45,57,52,46,55,55,53,53,51,50,44,51,57,46,50,48,48,54,48,54,93,44,91,45,57,52,46,54,48,49,55,51,51,44,51,57,46,49,53,57,54,48,51,93,44,91,45,57,52,46,54,48,48,56,49,57,44,51,57,46,52,53,54,49,53,53,93,44,91,45,57,52,46,54,48,49,50,49,53,44,51,57,46,53,51,48,49,55,93,44,91,45,57,53,46,49,48,50,56,56,56,44,51,57,46,53,51,51,51,52,55,93,44,91,45,57,52,46,57,54,56,57,55,51,44,51,57,46,52,49,56,56,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,117,99,104,97,110,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,48,55,54,44,34,98,101,100,115,34,58,53,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,55,54,53,53,56,44,51,57,46,56,50,48,56,56,51,93,44,91,45,57,53,46,48,53,51,53,56,54,44,51,57,46,54,49,53,50,54,57,93,44,91,45,57,53,46,49,48,50,56,56,56,44,51,57,46,53,51,51,51,52,55,93,44,91,45,57,52,46,54,48,49,50,49,53,44,51,57,46,53,51,48,49,55,93,44,91,45,57,52,46,54,48,50,50,53,55,44,51,57,46,55,52,55,49,57,53,93,44,91,45,57,52,46,54,48,50,56,51,44,51,57,46,56,49,57,57,48,54,93,44,91,45,57,52,46,56,55,54,53,53,56,44,51,57,46,56,50,48,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,105,109,101,115,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,48,53,50,44,34,98,101,100,115,34,58,49,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,49,48,55,53,57,44,51,52,46,57,57,57,48,50,52,93,44,91,45,56,55,46,50,49,52,57,49,52,44,51,52,46,56,49,54,48,49,49,93,44,91,45,56,55,46,50,54,48,54,55,54,44,51,52,46,55,53,56,54,50,54,93,44,91,45,56,55,46,49,48,53,48,55,51,44,51,52,46,54,56,54,48,51,55,93,44,91,45,56,54,46,57,48,55,50,48,53,44,51,52,46,53,55,57,55,57,50,93,44,91,45,56,54,46,55,57,48,48,53,54,44,51,52,46,53,53,48,55,57,93,44,91,45,56,54,46,55,56,51,54,50,56,44,51,52,46,57,57,49,57,52,56,93,44,91,45,56,54,46,56,51,54,51,48,54,44,51,52,46,57,57,49,56,57,57,93,44,91,45,56,55,46,50,49,48,55,53,57,44,51,52,46,57,57,57,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,56,51,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,55,54,49,57,55,44,52,48,46,48,55,55,49,52,51,93,44,91,45,56,53,46,53,55,54,49,57,50,44,51,57,46,57,52,53,55,53,54,93,44,91,45,56,53,46,53,57,54,57,49,54,44,51,57,46,55,56,54,53,49,57,93,44,91,45,56,53,46,51,48,49,53,56,52,44,51,57,46,55,56,55,53,55,57,93,44,91,45,56,53,46,50,50,49,49,49,56,44,51,57,46,55,56,56,52,52,57,93,44,91,45,56,53,46,50,48,49,52,55,51,44,52,48,46,48,48,52,53,50,49,93,44,91,45,56,53,46,50,49,52,51,56,54,44,52,48,46,48,55,54,56,56,57,93,44,91,45,56,53,46,53,55,54,49,57,55,44,52,48,46,48,55,55,49,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,53,53,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,53,57,56,50,53,51,44,52,49,46,51,51,51,49,49,57,93,44,91,45,57,55,46,56,50,56,50,53,54,44,52,49,46,49,55,51,52,51,57,93,44,91,45,57,55,46,56,50,54,50,56,55,44,52,49,46,48,52,54,53,56,49,93,44,91,45,57,55,46,51,54,56,49,49,56,44,52,49,46,48,52,54,57,52,55,93,44,91,45,57,55,46,51,54,56,49,56,54,44,52,49,46,51,57,54,52,49,54,93,44,91,45,57,55,46,53,57,56,50,53,51,44,52,49,46,51,51,51,49,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,79,116,116,97,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,55,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,49,53,57,52,49,44,52,49,46,54,49,57,49,49,93,44,91,45,56,51,46,52,49,52,54,50,54,44,52,49,46,53,48,48,50,50,56,93,44,91,45,56,51,46,51,51,56,49,57,54,44,52,49,46,52,53,55,53,48,56,93,44,91,45,56,50,46,57,53,50,50,50,52,44,52,49,46,52,53,56,50,51,57,93,44,91,45,56,50,46,55,49,57,50,51,54,44,52,49,46,52,56,50,52,50,51,93,44,91,45,56,50,46,55,56,55,52,48,50,44,52,49,46,53,56,55,55,51,56,93,44,91,45,56,50,46,55,50,54,52,50,55,44,52,49,46,54,57,56,51,48,56,93,44,91,45,56,50,46,57,57,53,53,55,50,44,52,49,46,56,50,56,57,54,57,93,44,91,45,56,51,46,49,54,52,53,49,49,44,52,49,46,54,50,51,50,52,55,93,44,91,45,56,51,46,52,49,53,57,52,49,44,52,49,46,54,49,57,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,78,111,114,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,53,57,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,52,56,57,50,51,44,52,55,46,52,57,56,57,57,49,93,44,91,45,57,54,46,56,51,51,51,57,51,44,52,55,46,50,51,56,48,52,49,93,44,91,45,57,54,46,56,52,48,49,50,50,44,52,55,46,49,53,48,52,55,53,93,44,91,45,57,54,46,49,57,52,54,55,49,44,52,55,46,49,53,49,49,52,57,93,44,91,45,57,54,46,48,54,55,48,54,57,44,52,55,46,49,53,49,56,49,51,93,44,91,45,57,54,46,48,54,55,54,50,49,44,52,55,46,52,57,57,49,51,54,93,44,91,45,57,54,46,56,52,56,57,50,51,44,52,55,46,52,57,56,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,57,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,44,91,45,57,53,46,53,53,55,50,55,55,44,52,49,46,56,54,51,52,52,57,93,44,91,45,57,53,46,53,53,56,49,52,51,44,52,49,46,54,48,50,51,56,51,93,44,91,45,57,53,46,52,57,55,57,57,55,44,52,49,46,53,48,54,48,55,52,93,44,91,45,57,53,46,49,53,52,55,50,50,44,52,49,46,53,48,53,50,49,49,93,44,91,45,57,53,46,48,52,48,55,55,44,52,49,46,53,48,52,54,57,93,44,91,45,57,53,46,48,57,50,53,50,44,52,49,46,54,48,50,48,53,53,93,44,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,53,50,50,44,34,98,101,100,115,34,58,54,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,50,49,55,48,50,52,44,51,57,46,55,49,57,56,54,49,93,44,91,45,55,55,46,50,57,57,55,55,44,51,57,46,54,49,50,50,56,52,93,44,91,45,55,55,46,49,48,54,56,51,57,44,51,57,46,52,57,49,54,54,49,93,44,91,45,55,55,46,49,54,56,48,56,44,51,57,46,51,53,51,57,53,55,93,44,91,45,55,54,46,56,56,50,50,55,52,44,51,57,46,51,53,48,49,56,53,93,44,91,45,55,54,46,56,56,51,50,57,52,44,51,57,46,52,55,52,55,53,49,93,44,91,45,55,54,46,55,56,55,48,57,54,44,51,57,46,55,50,48,56,93,44,91,45,55,54,46,57,57,57,51,49,56,44,51,57,46,55,50,48,49,48,54,93,44,91,45,55,55,46,50,49,55,48,50,52,44,51,57,46,55,49,57,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,50,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,57,56,55,57,50,44,52,50,46,50,57,55,53,50,55,93,44,91,45,57,50,46,50,57,56,49,54,52,44,52,49,46,56,54,50,55,55,57,93,44,91,45,57,49,46,56,51,49,51,55,57,44,52,49,46,56,54,49,56,53,49,93,44,91,45,57,49,46,56,51,49,48,56,57,44,52,50,46,50,57,57,48,54,51,93,44,91,45,57,50,46,48,54,52,55,54,54,44,52,50,46,50,57,55,50,53,57,93,44,91,45,57,50,46,50,57,56,55,57,50,44,52,50,46,50,57,55,53,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,49,52,55,53,55,44,51,55,46,56,53,53,53,48,57,93,44,91,45,56,50,46,52,57,55,55,57,54,44,51,55,46,57,52,53,52,56,56,93,44,91,45,56,50,46,54,49,50,51,57,51,44,51,55,46,56,55,57,50,55,50,93,44,91,45,56,50,46,54,52,48,55,53,44,51,55,46,55,50,48,49,56,50,93,44,91,45,56,50,46,53,54,51,53,54,49,44,51,55,46,54,56,52,56,52,52,93,44,91,45,56,50,46,52,53,54,49,51,52,44,51,55,46,54,54,56,55,57,53,93,44,91,45,56,50,46,51,51,51,49,51,54,44,51,55,46,55,52,48,56,52,56,93,44,91,45,56,50,46,52,49,52,55,53,55,44,51,55,46,56,53,53,53,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,104,105,115,97,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,55,50,55,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,49,52,49,55,57,51,44,52,53,46,55,51,48,54,53,55,93,44,91,45,57,51,46,49,52,49,57,55,52,44,52,53,46,53,53,56,49,48,57,93,44,91,45,57,51,46,48,50,50,50,55,52,44,52,53,46,53,53,55,49,53,52,93,44,91,45,57,51,46,48,49,57,53,54,51,44,52,53,46,52,49,49,55,55,93,44,91,45,57,51,46,48,49,57,52,52,44,52,53,46,50,57,54,57,50,57,93,44,91,45,57,50,46,55,52,53,54,56,51,44,52,53,46,50,57,54,48,52,50,93,44,91,45,57,50,46,54,52,54,54,48,50,44,52,53,46,52,52,49,54,51,53,93,44,91,45,57,50,46,56,56,55,48,54,55,44,52,53,46,54,52,52,49,52,56,93,44,91,45,57,50,46,56,52,49,48,53,49,44,52,53,46,55,51,48,48,50,52,93,44,91,45,57,51,46,49,52,49,55,57,51,44,52,53,46,55,51,48,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,79,119,115,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,55,57,49,56,54,44,51,55,46,53,48,54,50,52,57,93,44,91,45,56,51,46,56,56,53,50,54,50,44,51,55,46,53,49,55,54,56,56,93,44,91,45,56,51,46,55,56,52,57,55,53,44,51,55,46,51,52,56,55,49,55,93,44,91,45,56,51,46,54,51,56,53,55,50,44,51,55,46,51,52,52,49,54,54,93,44,91,45,56,51,46,53,50,54,57,48,55,44,51,55,46,50,53,56,53,50,57,93,44,91,45,56,51,46,53,52,55,54,50,56,44,51,55,46,51,51,52,52,49,56,93,44,91,45,56,51,46,53,55,57,49,56,54,44,51,55,46,53,48,54,50,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,114,97,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,51,48,52,44,34,98,101,100,115,34,58,51,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,50,55,48,56,52,44,52,50,46,48,48,49,54,55,52,93,44,91,45,55,54,46,56,55,52,55,49,52,44,52,49,46,53,57,54,57,49,57,93,44,91,45,55,54,46,56,49,51,55,51,49,44,52,49,46,53,57,48,48,51,52,93,44,91,45,55,54,46,50,50,48,49,51,57,44,52,49,46,53,52,49,50,56,53,93,44,91,45,55,54,46,49,49,53,49,55,50,44,52,49,46,54,53,49,56,50,53,93,44,91,45,55,54,46,49,52,53,53,49,57,44,52,49,46,57,57,56,56,52,50,93,44,91,45,55,54,46,53,53,55,54,50,52,44,52,50,46,48,48,48,49,54,93,44,91,45,55,54,46,57,50,55,48,56,52,44,52,50,46,48,48,49,54,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,54,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,54,55,57,53,55,44,52,48,46,53,56,50,52,57,54,93,44,91,45,56,48,46,53,57,52,54,54,52,44,52,48,46,52,55,49,51,56,57,93,44,91,45,56,48,46,54,50,57,54,56,52,44,52,48,46,51,57,52,57,55,56,93,44,91,45,56,48,46,53,49,55,57,57,49,44,52,48,46,51,57,57,54,52,52,93,44,91,45,56,48,46,53,49,57,48,51,56,44,52,48,46,52,55,55,51,54,51,93,44,91,45,56,48,46,53,49,56,57,57,49,44,52,48,46,54,51,56,56,48,49,93,44,91,45,56,48,46,54,54,55,57,53,55,44,52,48,46,53,56,50,52,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,67,111,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,55,52,48,44,34,98,101,100,115,34,58,50,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,57,52,56,54,54,44,51,56,46,55,51,57,49,51,93,44,91,45,57,50,46,52,57,53,49,56,53,44,51,56,46,52,50,55,56,50,57,93,44,91,45,57,50,46,52,48,56,52,48,55,44,51,56,46,51,52,49,51,52,52,93,44,91,45,57,50,46,49,57,52,52,55,54,44,51,56,46,51,51,53,53,51,54,93,44,91,45,57,50,46,49,52,57,50,57,49,44,51,56,46,52,51,49,49,53,50,93,44,91,45,57,50,46,48,48,56,55,44,51,56,46,53,48,48,48,51,56,93,44,91,45,57,50,46,48,48,56,57,56,51,44,51,56,46,53,55,48,57,93,44,91,45,57,50,46,49,48,57,50,56,50,44,51,56,46,53,54,49,52,51,93,44,91,45,57,50,46,50,50,48,54,54,49,44,51,56,46,54,52,51,49,54,55,93,44,91,45,57,50,46,51,53,55,56,49,51,44,51,56,46,54,55,57,53,49,55,93,44,91,45,57,50,46,51,57,52,56,54,54,44,51,56,46,55,51,57,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,101,114,114,105,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,56,48,55,44,34,98,101,100,115,34,58,50,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,50,50,57,52,44,52,50,46,48,55,49,52,56,52,93,44,91,45,56,54,46,50,50,51,53,54,51,44,52,50,46,50,52,51,51,55,57,93,44,91,45,56,55,46,48,56,56,51,51,56,44,52,50,46,50,51,53,51,51,52,93,44,91,45,56,55,46,49,49,49,49,54,50,44,52,50,46,49,52,57,52,48,57,93,44,91,45,56,55,46,50,48,55,55,55,52,44,52,49,46,55,54,48,57,53,54,93,44,91,45,56,54,46,57,51,51,51,51,52,44,52,49,46,55,54,49,48,51,53,93,44,91,45,56,54,46,53,50,52,50,49,55,44,52,49,46,55,53,57,54,53,57,93,44,91,45,56,54,46,50,50,54,48,57,53,44,52,49,46,55,54,48,52,48,54,93,44,91,45,56,54,46,50,50,50,57,52,44,52,50,46,48,55,49,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,117,110,116,105,110,103,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,52,50,49,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,49,54,53,50,49,44,52,48,46,55,51,57,49,50,55,93,44,91,45,55,56,46,50,50,49,57,55,44,52,48,46,54,55,52,53,51,57,93,44,91,45,55,56,46,49,51,48,48,56,49,44,52,48,46,52,56,49,57,57,93,44,91,45,55,56,46,50,53,55,51,48,53,44,52,48,46,50,57,55,56,56,51,93,44,91,45,55,56,46,49,51,52,56,54,51,44,52,48,46,49,54,53,49,51,49,93,44,91,45,55,55,46,56,54,52,52,56,57,44,52,48,46,48,54,49,53,54,56,93,44,91,45,55,55,46,55,48,51,48,51,44,52,48,46,50,54,51,53,55,54,93,44,91,45,55,55,46,55,53,50,49,50,44,52,48,46,51,55,56,53,52,53,93,44,91,45,55,55,46,57,49,51,56,52,52,44,52,48,46,51,57,56,54,55,57,93,44,91,45,55,55,46,56,49,54,53,49,51,44,52,48,46,53,48,48,48,55,52,93,44,91,45,55,55,46,56,52,49,56,50,55,44,52,48,46,53,53,48,48,51,53,93,44,91,45,55,55,46,54,56,55,48,56,44,52,48,46,54,55,54,55,53,93,44,91,45,55,55,46,54,56,49,51,51,52,44,52,48,46,55,50,57,55,53,56,93,44,91,45,55,55,46,56,50,52,53,48,54,44,52,48,46,55,52,51,54,56,49,93,44,91,45,55,55,46,57,52,52,50,53,44,52,48,46,54,57,49,53,53,55,93,44,91,45,55,56,46,49,49,54,53,50,49,44,52,48,46,55,51,57,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,68,97,119,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,57,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,48,53,49,44,52,51,46,48,48,48,55,55,93,44,91,45,49,48,51,46,52,56,48,52,48,51,44,52,50,46,55,56,52,57,54,54,93,44,91,45,49,48,51,46,52,56,48,48,56,50,44,52,50,46,52,51,55,50,54,55,93,44,91,45,49,48,51,46,52,52,52,53,51,50,44,52,50,46,52,51,55,51,53,52,93,44,91,45,49,48,50,46,55,55,51,51,54,54,44,52,50,46,52,51,57,57,50,50,93,44,91,45,49,48,50,46,55,55,51,51,54,57,44,52,50,46,55,56,53,50,54,53,93,44,91,45,49,48,50,46,55,57,50,49,49,49,44,52,50,46,57,57,57,57,56,93,44,91,45,49,48,51,46,48,48,48,54,48,57,44,52,51,46,48,48,48,55,53,49,93,44,91,45,49,48,51,46,53,48,53,49,44,52,51,46,48,48,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,80,97,116,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,50,51,53,52,53,53,44,51,54,46,56,55,50,49,51,93,44,91,45,56,48,46,51,56,53,51,55,51,44,51,54,46,55,57,56,54,53,56,93,44,91,45,56,48,46,52,54,52,49,56,44,51,54,46,55,48,56,55,49,56,93,44,91,45,56,48,46,54,49,50,48,53,55,44,51,54,46,53,53,55,56,57,56,93,44,91,45,56,48,46,52,52,48,48,57,56,44,51,54,46,53,53,48,54,53,53,93,44,91,45,56,48,46,48,53,51,52,53,57,44,51,54,46,53,52,50,53,50,51,93,44,91,45,56,48,46,48,57,52,51,56,57,44,51,54,46,55,55,57,53,53,50,93,44,91,45,56,48,46,48,52,49,52,57,51,44,51,54,46,55,57,52,51,54,53,93,44,91,45,56,48,46,48,54,54,52,52,57,44,51,54,46,56,52,49,48,53,55,93,44,91,45,56,48,46,50,51,53,52,53,53,44,51,54,46,56,55,50,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,111,110,116,109,111,114,101,110,99,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,54,54,49,52,44,52,53,46,49,57,56,55,51,55,93,44,91,45,56,52,46,51,55,49,55,51,55,44,52,52,46,56,53,53,48,51,57,93,44,91,45,56,51,46,56,56,56,52,56,50,44,52,52,46,56,53,54,54,51,53,93,44,91,45,56,51,46,56,56,49,50,50,51,44,52,53,46,50,48,50,48,55,49,93,44,91,45,56,52,46,50,52,54,54,51,52,44,52,53,46,49,57,56,55,50,55,93,44,91,45,56,52,46,51,54,54,54,49,52,44,52,53,46,49,57,56,55,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,79,115,99,111,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,56,52,56,50,44,52,52,46,56,53,54,54,51,53,93,44,91,45,56,52,46,51,55,49,55,51,55,44,52,52,46,56,53,53,48,51,57,93,44,91,45,56,52,46,51,55,48,54,52,51,44,52,52,46,53,48,55,50,50,51,93,44,91,45,56,51,46,56,56,54,54,51,52,44,52,52,46,53,48,56,57,55,54,93,44,91,45,56,51,46,56,56,56,52,56,52,44,52,52,46,56,53,54,52,53,56,93,44,91,45,56,51,46,56,56,56,52,56,50,44,52,52,46,56,53,54,54,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,111,108,102,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,48,55,56,53,49,44,51,54,46,57,57,54,49,51,52,93,44,91,45,49,48,53,46,49,53,53,48,52,50,44,51,54,46,57,57,53,50,54,50,93,44,91,45,49,48,53,46,50,50,48,53,48,54,44,51,54,46,57,57,52,57,55,52,93,44,91,45,49,48,53,46,50,48,48,49,49,55,44,51,54,46,57,49,53,54,50,56,93,44,91,45,49,48,53,46,50,51,48,54,51,50,44,51,54,46,55,50,51,55,56,52,93,44,91,45,49,48,53,46,51,55,48,54,51,56,44,51,54,46,54,56,49,48,51,50,93,44,91,45,49,48,53,46,51,50,54,54,55,52,44,51,54,46,53,48,48,48,51,49,93,44,91,45,49,48,53,46,51,52,49,50,54,52,44,51,54,46,50,54,49,56,54,51,93,44,91,45,49,48,52,46,56,54,53,50,52,52,44,51,54,46,50,54,49,52,49,57,93,44,91,45,49,48,52,46,56,54,53,52,48,50,44,51,54,46,50,49,55,56,54,57,93,44,91,45,49,48,52,46,52,51,54,48,53,54,44,51,54,46,50,49,56,53,51,52,93,44,91,45,49,48,52,46,48,48,56,56,50,51,44,51,54,46,50,49,56,49,49,53,93,44,91,45,49,48,52,46,48,48,55,56,53,49,44,51,54,46,57,57,54,49,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,108,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,51,52,54,51,44,34,98,101,100,115,34,58,55,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,56,49,53,52,51,44,51,56,46,54,54,48,48,54,50,93,44,91,45,57,48,46,50,53,55,52,49,51,44,51,56,46,53,51,49,56,53,50,93,44,91,45,57,48,46,50,54,52,49,50,51,44,51,56,46,53,50,48,55,50,56,93,44,91,45,57,48,46,48,51,54,49,49,51,44,51,56,46,51,50,51,51,55,55,93,44,91,45,56,57,46,57,49,51,50,50,55,44,51,56,46,51,48,56,50,54,57,93,44,91,45,56,57,46,56,57,57,48,52,51,44,51,56,46,50,50,48,55,53,53,93,44,91,45,56,57,46,55,48,51,50,53,54,44,51,56,46,50,49,57,52,48,52,93,44,91,45,56,57,46,55,48,52,50,52,53,44,51,56,46,52,49,53,55,55,57,93,44,91,45,56,57,46,55,48,54,57,52,57,44,51,56,46,54,53,53,48,49,57,93,44,91,45,57,48,46,49,56,49,53,52,51,44,51,56,46,54,54,48,48,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,53,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,48,52,50,52,53,44,51,56,46,52,49,53,55,55,57,93,44,91,45,56,57,46,55,48,51,50,53,54,44,51,56,46,50,49,57,52,48,52,93,44,91,45,56,57,46,53,57,50,55,57,55,44,51,56,46,50,49,57,50,55,49,93,44,91,45,56,57,46,49,52,55,53,57,55,44,51,56,46,50,49,50,56,57,53,93,44,91,45,56,57,46,49,52,52,51,56,56,44,51,56,46,52,55,51,56,55,56,93,44,91,45,56,57,46,49,52,51,56,54,54,44,51,56,46,53,48,51,48,56,57,93,44,91,45,56,57,46,51,50,57,52,54,57,44,51,56,46,53,49,48,50,49,51,93,44,91,45,56,57,46,53,55,57,51,50,53,44,51,56,46,52,56,48,49,56,52,93,44,91,45,56,57,46,55,48,52,50,52,53,44,51,56,46,52,49,53,55,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,101,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,54,49,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,53,56,52,48,57,44,52,48,46,50,52,50,57,51,51,93,44,91,45,55,56,46,55,54,51,50,48,54,44,52,48,46,48,53,55,48,48,53,93,44,91,45,55,56,46,55,53,55,50,52,49,44,51,57,46,56,50,51,52,56,52,93,44,91,45,55,56,46,56,48,56,51,56,55,44,51,57,46,55,50,50,57,49,49,93,44,91,45,55,56,46,51,56,48,53,57,57,44,51,57,46,55,50,50,53,57,57,93,44,91,45,55,56,46,50,57,57,48,48,51,44,51,57,46,56,50,53,53,93,44,91,45,55,56,46,49,51,52,56,54,51,44,52,48,46,49,54,53,49,51,49,93,44,91,45,55,56,46,50,53,55,51,48,53,44,52,48,46,50,57,55,56,56,51,93,44,91,45,55,56,46,54,50,48,51,56,51,44,52,48,46,51,50,55,48,50,53,93,44,91,45,55,56,46,54,53,56,52,48,57,44,52,48,46,50,52,50,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,52,50,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,49,52,48,53,55,49,44,51,53,46,48,57,57,54,55,56,93,44,91,45,57,52,46,50,50,56,50,50,54,44,51,53,46,48,55,49,57,53,53,93,44,91,45,57,52,46,50,51,48,53,50,52,44,51,52,46,57,54,56,53,50,55,93,44,91,45,57,52,46,52,52,55,55,55,52,44,51,52,46,57,51,51,57,51,55,93,44,91,45,57,52,46,52,53,52,53,54,52,44,51,52,46,55,50,56,57,54,50,93,44,91,45,57,52,46,51,49,55,54,53,57,44,51,52,46,54,57,55,52,48,56,93,44,91,45,57,52,46,48,49,56,49,54,56,44,51,52,46,54,57,50,52,54,57,93,44,91,45,57,51,46,57,51,48,53,48,57,44,51,52,46,54,54,53,54,48,56,93,44,91,45,57,51,46,55,49,48,50,57,55,44,51,52,46,55,52,53,50,57,54,93,44,91,45,57,51,46,55,48,52,56,56,53,44,51,53,46,48,49,57,55,49,53,93,44,91,45,57,52,46,48,55,52,52,52,57,44,51,53,46,48,50,54,52,51,50,93,44,91,45,57,52,46,49,52,48,53,55,49,44,51,53,46,48,57,57,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,76,97,98,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,54,55,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,50,49,49,51,44,51,55,46,51,56,51,57,57,93,44,91,45,57,53,46,53,50,50,52,49,53,44,51,54,46,57,57,57,50,56,93,44,91,45,57,53,46,52,48,55,55,51,51,44,51,54,46,57,57,57,51,49,49,93,44,91,45,57,53,46,48,55,51,53,48,52,44,51,54,46,57,57,57,53,53,50,93,44,91,45,57,53,46,48,55,53,49,54,54,44,51,55,46,51,51,57,57,51,55,93,44,91,45,57,53,46,48,56,56,49,56,57,44,51,55,46,51,56,51,56,51,55,93,44,91,45,57,53,46,53,50,49,49,51,44,51,55,46,51,56,51,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,51,56,50,44,34,98,101,100,115,34,58,50,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,48,51,55,44,52,49,46,49,50,53,48,57,51,93,44,91,45,56,48,46,53,49,57,49,53,44,52,48,46,57,48,48,51,50,54,93,44,91,45,56,48,46,53,49,57,48,52,52,44,52,48,46,56,53,49,51,51,57,93,44,91,45,56,48,46,49,53,56,53,51,44,52,48,46,56,53,53,48,57,54,93,44,91,45,56,48,46,49,54,54,52,55,50,44,52,49,46,48,48,48,57,50,56,93,44,91,45,56,48,46,48,57,56,50,57,52,44,52,49,46,48,55,49,48,53,52,93,44,91,45,56,48,46,50,53,55,57,51,51,44,52,49,46,49,50,56,49,54,53,93,44,91,45,56,48,46,53,49,57,48,51,55,44,52,49,46,49,50,53,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,54,57,57,53,49,44,52,48,46,52,51,51,52,56,54,93,44,91,45,56,49,46,50,55,53,51,49,57,44,52,48,46,51,48,51,52,51,52,93,44,91,45,56,49,46,51,51,56,48,53,55,44,52,48,46,50,49,52,50,53,51,93,44,91,45,56,49,46,50,50,53,57,50,52,44,52,48,46,49,55,48,48,55,53,93,44,91,45,56,48,46,56,56,50,56,57,50,44,52,48,46,49,53,57,52,57,53,93,44,91,45,56,48,46,56,54,53,53,48,52,44,52,48,46,52,50,50,57,50,57,93,44,91,45,56,48,46,57,52,49,57,49,49,44,52,48,46,52,50,52,55,93,44,91,45,56,49,46,50,54,57,57,53,49,44,52,48,46,52,51,51,52,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,101,120,97,110,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,49,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,50,56,51,50,52,44,51,53,46,57,57,54,53,56,51,93,44,91,45,56,49,46,51,51,52,50,55,50,44,51,53,46,55,57,54,50,56,49,93,44,91,45,56,49,46,49,52,50,51,51,56,44,51,53,46,56,50,55,52,51,52,93,44,91,45,56,49,46,49,48,57,53,48,55,44,51,53,46,55,55,54,53,57,52,93,44,91,45,56,49,46,48,48,53,53,52,49,44,51,53,46,57,53,56,50,56,55,93,44,91,45,56,49,46,48,50,56,56,51,51,44,51,54,46,48,52,53,54,53,50,93,44,91,45,56,49,46,51,50,56,51,50,52,44,51,53,46,57,57,54,53,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,97,112,101,32,77,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,55,48,53,44,34,98,101,100,115,34,58,50,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,52,54,52,57,51,44,51,57,46,50,57,56,50,51,93,44,91,45,55,52,46,55,53,50,49,54,53,44,51,57,46,50,57,53,48,48,53,93,44,91,45,55,52,46,56,54,49,50,57,52,44,51,57,46,51,50,51,56,49,53,93,44,91,45,55,52,46,57,49,53,54,56,57,44,51,57,46,49,55,53,55,53,53,93,44,91,45,55,53,46,49,54,56,52,54,50,44,51,57,46,48,53,54,49,55,57,93,44,91,45,55,53,46,49,51,56,52,54,49,44,51,57,46,48,48,50,54,57,55,93,44,91,45,55,53,46,48,49,53,49,50,51,44,51,56,46,55,56,56,54,53,55,93,44,91,45,55,52,46,55,50,56,52,48,50,44,51,56,46,57,55,52,50,52,57,93,44,91,45,55,52,46,54,52,52,50,55,57,44,51,57,46,49,49,52,56,50,52,93,44,91,45,55,52,46,52,54,52,57,51,44,51,57,46,50,57,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,104,101,115,104,105,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,50,54,51,44,34,98,101,100,115,34,58,49,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,52,53,50,50,53,49,44,52,51,46,49,54,49,51,53,52,93,44,91,45,55,50,46,52,55,51,48,55,54,44,52,50,46,57,55,50,53,50,56,93,44,91,45,55,50,46,53,51,50,48,50,50,44,52,50,46,57,53,52,57,52,51,93,44,91,45,55,50,46,53,52,49,53,49,51,44,52,50,46,56,48,55,48,57,52,93,44,91,45,55,50,46,52,53,56,52,49,50,44,52,50,46,55,50,54,57,51,51,93,44,91,45,55,50,46,50,56,51,48,52,53,44,52,50,46,55,50,49,54,49,53,93,44,91,45,55,49,46,57,50,56,57,57,51,44,52,50,46,55,49,50,49,48,50,93,44,91,45,55,50,46,48,48,54,49,57,44,52,50,46,57,52,51,55,56,57,93,44,91,45,55,50,46,48,51,56,49,52,57,44,52,51,46,49,50,56,56,48,55,93,44,91,45,55,50,46,49,53,54,54,54,49,44,52,51,46,49,56,49,57,54,56,93,44,91,45,55,50,46,52,53,50,50,53,49,44,52,51,46,49,54,49,51,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,57,50,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,54,49,51,57,51,44,52,56,46,53,52,50,51,52,56,93,44,91,45,57,55,46,49,49,54,53,55,44,52,56,46,50,55,57,54,54,49,93,44,91,45,57,55,46,49,52,49,50,50,49,44,52,56,46,49,57,51,55,49,50,93,44,91,45,57,55,46,49,52,54,55,48,51,44,52,56,46,49,55,51,50,50,51,93,44,91,45,57,54,46,53,48,48,56,52,51,44,52,56,46,49,55,52,49,48,56,93,44,91,45,57,53,46,53,57,51,55,56,56,44,52,56,46,49,55,50,57,49,54,93,44,91,45,57,53,46,54,48,50,51,49,53,44,52,56,46,53,51,56,56,56,55,93,44,91,45,57,54,46,51,56,55,56,51,53,44,52,56,46,53,52,52,51,48,56,93,44,91,45,57,55,46,49,54,51,51,53,53,44,52,56,46,53,52,51,57,54,55,93,44,91,45,57,55,46,49,54,49,51,57,51,44,52,56,46,53,52,50,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,75,105,110,103,32,87,105,108,108,105,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,52,53,50,49,53,44,51,55,46,55,56,57,49,55,53,93,44,91,45,55,55,46,49,50,51,54,55,53,44,51,55,46,54,50,54,56,56,49,93,44,91,45,55,54,46,55,57,50,49,56,52,44,51,55,46,53,49,55,53,57,52,93,44,91,45,55,54,46,55,55,55,55,50,57,44,51,55,46,53,53,52,52,52,54,93,44,91,45,55,54,46,57,50,55,53,44,51,55,46,54,57,48,52,56,53,93,44,91,45,55,55,46,48,51,51,50,55,51,44,51,55,46,55,50,48,56,48,57,93,44,91,45,55,55,46,49,56,49,52,49,56,44,51,55,46,56,57,49,54,53,52,93,44,91,45,55,55,46,51,52,53,50,49,53,44,51,55,46,55,56,57,49,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,72,117,101,114,102,97,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,56,51,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,52,56,53,53,49,54,44,51,55,46,53,55,55,56,57,57,93,44,91,45,49,48,53,46,50,57,53,53,56,55,44,51,55,46,54,53,52,52,49,54,93,44,91,45,49,48,53,46,49,57,51,50,51,55,44,51,55,46,53,57,50,49,54,56,93,44,91,45,49,48,53,46,49,53,52,49,55,54,44,51,55,46,50,57,51,49,50,57,93,44,91,45,49,48,52,46,57,57,53,53,48,53,44,51,55,46,51,55,53,53,53,49,93,44,91,45,49,48,52,46,55,52,56,52,52,55,44,51,55,46,52,48,55,52,51,55,93,44,91,45,49,48,52,46,53,52,56,54,53,50,44,51,55,46,53,55,52,55,93,44,91,45,49,48,52,46,52,53,52,57,51,44,51,55,46,55,52,48,56,51,57,93,44,91,45,49,48,52,46,51,53,49,49,48,57,44,51,55,46,56,49,55,52,56,56,93,44,91,45,49,48,52,46,54,52,54,51,56,51,44,51,55,46,57,48,48,53,50,55,93,44,91,45,49,48,53,46,48,49,51,55,50,57,44,51,55,46,56,56,49,50,55,49,93,44,91,45,49,48,53,46,48,52,57,57,49,55,44,51,55,46,57,49,53,52,55,57,93,44,91,45,49,48,53,46,49,54,56,54,53,50,44,51,56,46,48,49,56,57,52,54,93,44,91,45,49,48,53,46,52,49,51,54,51,53,44,51,55,46,56,57,48,53,50,55,93,44,91,45,49,48,53,46,52,55,51,50,48,52,44,51,55,46,56,57,53,57,55,93,44,91,45,49,48,53,46,52,53,55,50,53,53,44,51,55,46,55,53,49,52,54,52,93,44,91,45,49,48,53,46,52,56,53,53,49,54,44,51,55,46,53,55,55,56,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,53,34,44,34,78,65,77,69,34,58,34,75,97,114,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,56,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,50,56,52,52,51,44,50,57,46,50,50,49,55,52,56,93,44,91,45,57,56,46,49,57,48,57,57,49,44,50,56,46,56,56,50,51,51,51,93,44,91,45,57,56,46,48,57,56,51,49,53,44,50,56,46,55,56,54,57,52,57,93,44,91,45,57,56,46,48,48,53,50,53,50,44,50,56,46,54,57,48,50,51,57,93,44,91,45,57,55,46,57,49,53,49,48,54,44,50,56,46,55,49,57,54,52,56,93,44,91,45,57,55,46,55,55,56,53,51,44,50,56,46,54,54,56,48,50,55,93,44,91,45,57,55,46,53,55,52,54,51,57,44,50,56,46,56,49,51,51,93,44,91,45,57,55,46,55,53,53,49,49,44,50,57,46,48,48,55,49,49,51,93,44,91,45,57,55,46,54,49,51,49,51,50,44,50,57,46,49,48,57,55,54,53,93,44,91,45,57,55,46,55,50,56,52,52,51,44,50,57,46,50,50,49,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,53,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,49,51,54,49,49,44,51,53,46,53,56,56,48,56,57,93,44,91,45,56,56,46,54,55,53,56,54,55,44,51,53,46,52,56,57,49,54,51,93,44,91,45,56,56,46,56,52,49,54,48,55,44,51,53,46,52,50,55,56,50,54,93,44,91,45,56,56,46,55,56,49,55,54,56,44,51,53,46,50,52,55,53,56,55,93,44,91,45,56,56,46,55,49,57,55,54,49,44,51,53,46,50,52,55,53,53,93,44,91,45,56,56,46,54,52,48,57,51,52,44,51,53,46,51,54,49,48,49,55,93,44,91,45,56,56,46,51,54,50,53,55,50,44,51,53,46,51,56,48,57,57,52,93,44,91,45,56,56,46,51,54,48,56,50,57,44,51,53,46,52,49,56,57,55,50,93,44,91,45,56,56,46,52,49,52,53,56,50,44,51,53,46,52,56,50,51,51,57,93,44,91,45,56,56,46,54,49,51,54,49,49,44,51,53,46,53,56,56,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,52,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,57,57,49,48,53,44,51,57,46,55,57,48,48,54,93,44,91,45,57,48,46,54,52,53,57,57,44,51,57,46,55,48,51,51,54,56,93,44,91,45,57,48,46,53,56,49,48,53,53,44,51,57,46,53,50,49,55,50,56,93,44,91,45,57,48,46,51,48,49,56,51,49,44,51,57,46,53,50,48,51,52,52,93,44,91,45,57,48,46,51,48,48,54,54,54,44,51,57,46,54,51,54,53,52,49,93,44,91,45,57,48,46,51,55,49,50,53,54,44,51,57,46,55,53,51,49,50,50,93,44,91,45,57,48,46,53,57,57,49,48,53,44,51,57,46,55,57,48,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,77,105,108,108,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,51,51,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,48,49,54,48,48,51,44,51,57,46,51,49,52,53,54,49,93,44,91,45,49,49,50,46,49,56,56,57,50,50,44,51,57,46,51,50,57,51,57,50,93,44,91,45,49,49,50,46,50,49,50,48,52,53,44,51,57,46,53,53,51,57,56,55,93,44,91,45,49,49,51,46,49,48,55,52,55,53,44,51,57,46,53,53,50,53,49,51,93,44,91,45,49,49,51,46,56,49,53,55,52,51,44,51,57,46,53,53,50,54,52,52,93,44,91,45,49,49,52,46,48,52,55,54,52,57,44,51,57,46,53,52,50,55,52,50,93,44,91,45,49,49,52,46,48,52,57,56,48,55,44,51,56,46,54,55,55,51,54,53,93,44,91,45,49,49,52,46,48,52,57,57,55,55,44,51,56,46,53,55,50,57,55,52,93,44,91,45,49,49,50,46,53,49,53,51,57,52,44,51,56,46,53,55,50,56,52,53,93,44,91,45,49,49,50,46,52,52,55,53,49,55,44,51,56,46,54,56,49,50,55,93,44,91,45,49,49,50,46,51,48,57,57,53,51,44,51,56,46,54,55,54,50,57,93,44,91,45,49,49,50,46,50,49,56,51,53,54,44,51,56,46,55,50,55,51,54,49,93,44,91,45,49,49,50,46,50,50,52,52,54,49,44,51,56,46,56,54,52,56,48,51,93,44,91,45,49,49,50,46,48,49,52,48,56,51,44,51,57,46,48,52,53,53,49,56,93,44,91,45,49,49,50,46,48,49,54,48,48,51,44,51,57,46,51,49,52,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,57,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,53,54,50,52,55,44,52,49,46,49,51,57,48,56,51,93,44,91,45,49,49,49,46,56,49,53,52,49,52,44,52,48,46,57,53,55,52,51,93,44,91,45,49,49,49,46,55,51,56,55,52,52,44,52,48,46,56,54,48,57,57,56,93,44,91,45,49,49,49,46,54,52,49,48,53,50,44,52,48,46,55,57,56,57,50,53,93,44,91,45,49,49,49,46,53,50,55,52,54,53,44,52,48,46,55,56,53,55,53,50,93,44,91,45,49,49,49,46,52,56,54,49,53,57,44,52,48,46,56,55,51,49,50,52,93,44,91,45,49,49,49,46,53,48,55,53,49,44,52,49,46,48,54,51,50,51,52,93,44,91,45,49,49,49,46,50,54,52,57,55,52,44,52,49,46,49,52,52,48,52,52,93,44,91,45,49,49,49,46,50,50,53,56,50,51,44,52,49,46,49,57,49,48,49,55,93,44,91,45,49,49,49,46,50,57,52,56,56,54,44,52,49,46,51,50,57,57,54,57,93,44,91,45,49,49,49,46,52,50,48,55,50,56,44,52,49,46,51,54,49,51,48,56,93,44,91,45,49,49,49,46,52,57,54,56,49,53,44,52,49,46,50,51,48,54,49,93,44,91,45,49,49,49,46,54,53,56,54,51,54,44,52,49,46,49,56,53,55,49,56,93,44,91,45,49,49,49,46,56,53,55,55,57,57,44,52,49,46,49,57,55,55,53,51,93,44,91,45,49,49,49,46,56,53,54,50,52,55,44,52,49,46,49,51,57,48,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,55,34,44,34,78,65,77,69,34,58,34,75,97,117,102,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,57,49,48,44,34,98,101,100,115,34,58,51,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,49,56,57,55,44,51,50,46,56,49,51,54,49,54,93,44,91,45,57,54,46,53,50,57,57,56,55,44,51,50,46,53,52,53,50,56,50,93,44,91,45,57,54,46,52,51,53,50,51,51,44,51,50,46,52,48,56,57,56,54,93,44,91,45,57,54,46,52,53,50,49,51,56,44,51,50,46,51,53,56,54,51,49,93,44,91,45,57,54,46,48,55,53,56,57,57,44,51,50,46,51,53,55,53,48,53,93,44,91,45,57,54,46,48,55,54,56,48,49,44,51,50,46,56,51,56,52,56,57,93,44,91,45,57,54,46,50,57,55,51,50,50,44,51,50,46,56,52,49,55,50,51,93,44,91,45,57,54,46,53,49,56,57,55,44,51,50,46,56,49,51,54,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,108,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,52,57,53,52,52,44,51,51,46,54,53,50,54,57,55,93,44,91,45,49,48,57,46,52,57,53,55,52,44,51,51,46,48,55,56,52,48,57,93,44,91,45,49,48,57,46,50,52,53,48,48,53,44,51,50,46,55,52,49,57,56,53,93,44,91,45,49,48,57,46,50,48,54,50,52,57,44,51,50,46,54,51,53,56,48,51,93,44,91,45,49,48,57,46,50,50,54,48,55,44,51,50,46,53,50,57,48,57,54,93,44,91,45,49,48,57,46,49,49,52,49,56,44,51,50,46,52,50,54,51,53,51,93,44,91,45,49,48,57,46,48,52,55,57,49,56,44,51,50,46,52,50,54,51,55,54,93,44,91,45,49,48,57,46,48,52,55,54,52,51,44,51,50,46,55,55,55,56,48,50,93,44,91,45,49,48,57,46,48,52,55,53,55,56,44,51,51,46,50,48,56,56,57,56,93,44,91,45,49,48,57,46,48,52,54,55,49,55,44,51,51,46,55,55,55,52,48,55,93,44,91,45,49,48,57,46,51,52,56,53,56,49,44,51,51,46,55,55,56,49,50,51,93,44,91,45,49,48,57,46,52,57,53,52,52,44,51,51,46,54,53,50,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,77,97,114,105,99,111,112,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,53,51,57,49,51,44,34,98,101,100,115,34,58,49,48,57,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,52,57,52,55,55,56,44,51,51,46,57,57,57,56,49,55,93,44,91,45,49,49,49,46,55,50,53,51,49,44,51,51,46,57,57,57,56,52,57,93,44,91,45,49,49,50,46,49,54,51,50,53,51,44,51,52,46,48,52,55,52,55,49,93,44,91,45,49,49,50,46,50,55,54,48,52,44,51,51,46,56,56,50,51,49,50,93,44,91,45,49,49,50,46,55,52,51,57,53,49,44,51,51,46,57,57,57,56,57,56,93,44,91,45,49,49,51,46,51,51,51,55,53,51,44,51,51,46,57,57,57,50,50,55,93,44,91,45,49,49,51,46,51,51,53,48,52,56,44,51,51,46,51,55,55,52,54,57,93,44,91,45,49,49,51,46,51,51,51,56,57,52,44,51,50,46,53,48,53,49,56,56,93,44,91,45,49,49,50,46,50,48,51,54,50,52,44,51,50,46,53,48,54,55,50,49,93,44,91,45,49,49,50,46,49,57,49,54,48,56,44,51,51,46,50,54,52,54,57,56,93,44,91,45,49,49,50,46,48,56,49,57,52,54,44,51,51,46,50,48,52,54,56,54,93,44,91,45,49,49,49,46,53,56,50,54,51,49,44,51,51,46,50,48,53,52,48,56,93,44,91,45,49,49,49,46,53,56,48,54,51,52,44,51,51,46,52,54,53,56,93,44,91,45,49,49,49,46,48,51,57,57,55,54,44,51,51,46,52,54,54,48,49,57,93,44,91,45,49,49,49,46,49,53,51,51,53,52,44,51,51,46,54,55,55,54,48,54,93,44,91,45,49,49,49,46,50,54,49,55,51,44,51,51,46,54,50,50,53,55,49,93,44,91,45,49,49,49,46,51,56,54,56,49,50,44,51,51,46,55,53,48,48,52,52,93,44,91,45,49,49,49,46,51,55,50,51,49,55,44,51,51,46,56,50,51,57,50,52,93,44,91,45,49,49,49,46,52,57,52,55,55,56,44,51,51,46,57,57,57,56,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,79,103,101,109,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,50,56,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,54,54,51,52,44,52,52,46,53,48,56,57,55,54,93,44,91,45,56,52,46,51,55,48,54,52,51,44,52,52,46,53,48,55,50,50,51,93,44,91,45,56,52,46,51,54,56,48,51,57,44,52,52,46,49,54,48,53,51,56,93,44,91,45,56,52,46,49,54,54,49,48,55,44,52,52,46,49,54,49,55,56,56,93,44,91,45,56,51,46,56,56,51,57,55,55,44,52,52,46,49,54,49,55,56,54,93,44,91,45,56,51,46,56,56,54,54,51,52,44,52,52,46,53,48,56,57,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,50,56,48,50,54,44,51,54,46,52,49,49,56,51,54,93,44,91,45,56,53,46,56,52,54,52,56,51,44,51,54,46,50,56,56,49,54,55,93,44,91,45,56,53,46,55,56,48,49,52,56,44,51,54,46,50,51,56,48,49,49,93,44,91,45,56,53,46,54,51,52,49,53,56,44,51,54,46,50,49,51,51,52,54,93,44,91,45,56,53,46,52,57,53,49,50,52,44,51,54,46,51,48,50,50,55,56,93,44,91,45,56,53,46,52,57,53,52,50,50,44,51,54,46,52,48,51,48,55,52,93,44,91,45,56,53,46,55,48,52,48,55,53,44,51,54,46,53,50,50,51,57,53,93,44,91,45,56,53,46,56,49,51,56,56,53,44,51,54,46,52,57,57,52,55,51,93,44,91,45,56,53,46,56,50,56,48,50,54,44,51,54,46,52,49,49,56,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,56,49,44,34,98,101,100,115,34,58,49,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,52,53,57,49,57,44,51,56,46,56,53,48,49,52,56,93,44,91,45,56,56,46,50,53,56,53,56,51,44,51,56,46,56,52,55,53,50,57,93,44,91,45,56,56,46,50,53,51,57,55,56,44,51,56,46,53,57,57,53,48,50,93,44,91,45,56,56,46,49,52,55,56,48,51,44,51,56,46,53,54,57,48,51,55,93,44,91,45,56,55,46,57,53,52,54,55,53,44,51,56,46,53,55,48,50,51,93,44,91,45,56,55,46,57,49,50,50,56,54,44,51,56,46,53,55,48,49,48,52,93,44,91,45,56,55,46,57,48,56,49,49,51,44,51,56,46,56,53,48,49,48,55,93,44,91,45,56,55,46,57,52,53,57,49,57,44,51,56,46,56,53,48,49,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,108,111,117,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,54,52,53,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,53,51,48,50,44,51,52,46,50,53,57,51,49,55,93,44,91,45,56,54,46,53,49,57,54,48,51,44,51,52,46,50,53,49,55,54,54,93,44,91,45,56,54,46,53,57,57,55,56,53,44,51,52,46,49,50,49,55,50,93,44,91,45,56,54,46,54,56,55,54,57,55,44,51,52,46,48,56,48,55,51,53,93,44,91,45,56,54,46,55,54,51,57,57,57,44,51,51,46,57,55,52,49,56,55,93,44,91,45,56,54,46,57,54,51,51,53,56,44,51,51,46,56,53,56,50,50,49,93,44,91,45,56,54,46,57,53,51,54,54,52,44,51,51,46,56,49,53,50,57,55,93,44,91,45,56,54,46,55,53,57,49,52,52,44,51,51,46,56,52,48,54,49,55,93,44,91,45,56,54,46,53,55,55,55,57,57,44,51,51,46,55,54,53,51,49,54,93,44,91,45,56,54,46,52,48,53,57,56,49,44,51,51,46,56,51,53,56,57,54,93,44,91,45,56,54,46,51,50,53,54,50,50,44,51,51,46,57,52,48,49,52,55,93,44,91,45,56,54,46,51,48,51,53,49,54,44,51,52,46,48,57,57,48,55,51,93,44,91,45,56,54,46,52,53,51,48,50,44,51,52,46,50,53,57,51,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,76,105,98,101,114,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,55,52,51,48,54,52,44,52,56,46,57,57,56,54,48,54,93,44,91,45,49,49,49,46,50,54,57,56,54,50,44,52,56,46,57,57,55,50,51,93,44,91,45,49,49,49,46,50,55,53,51,48,54,44,52,56,46,50,49,57,53,51,49,93,44,91,45,49,49,49,46,52,48,57,48,49,56,44,52,56,46,50,49,57,53,52,50,93,44,91,45,49,49,49,46,52,48,57,48,57,55,44,52,56,46,49,51,50,50,49,56,93,44,91,45,49,49,48,46,56,50,55,49,54,56,44,52,56,46,49,51,51,50,48,53,93,44,91,45,49,49,48,46,55,53,53,56,55,51,44,52,56,46,50,49,57,54,48,49,93,44,91,45,49,49,48,46,55,52,51,48,54,52,44,52,56,46,57,57,56,54,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,68,117,118,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,51,51,50,53,44,50,56,46,48,53,55,52,56,93,44,91,45,57,56,46,55,57,56,51,50,51,44,50,55,46,51,53,52,48,50,57,93,44,91,45,57,56,46,53,53,50,54,49,55,44,50,55,46,51,53,57,49,48,49,93,44,91,45,57,56,46,53,50,51,50,56,52,44,50,55,46,50,54,53,49,53,93,44,91,45,57,56,46,50,51,50,52,54,52,44,50,55,46,50,54,50,52,56,55,93,44,91,45,57,56,46,50,51,53,52,57,55,44,50,56,46,48,53,55,57,54,54,93,44,91,45,57,56,46,51,51,52,51,50,51,44,50,56,46,48,53,55,56,93,44,91,45,57,56,46,56,48,51,51,50,53,44,50,56,46,48,53,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,82,97,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,49,53,50,52,55,44,51,57,46,54,53,55,54,52,52,93,44,91,45,57,49,46,55,49,55,57,54,56,44,51,57,46,51,51,57,49,50,50,93,44,91,45,57,49,46,52,51,56,50,51,53,44,51,57,46,51,49,56,55,49,54,93,44,91,45,57,49,46,52,54,48,52,52,50,44,51,57,46,52,53,48,55,50,50,93,44,91,45,57,49,46,49,55,56,48,49,50,44,51,57,46,53,57,56,49,57,54,93,44,91,45,57,49,46,51,48,54,54,57,51,44,51,57,46,54,56,52,56,54,53,93,44,91,45,57,49,46,55,49,53,52,57,55,44,51,57,46,54,56,54,52,57,50,93,44,91,45,57,49,46,55,49,53,50,52,55,44,51,57,46,54,53,55,54,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,52,55,53,44,34,98,101,100,115,34,58,49,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,56,54,56,51,52,44,51,50,46,53,52,57,52,50,56,93,44,91,45,57,55,46,53,53,48,53,56,50,44,51,50,46,53,53,53,51,57,49,93,44,91,45,57,55,46,54,49,55,48,54,54,44,51,50,46,53,53,53,52,56,52,93,44,91,45,57,55,46,54,49,53,50,56,54,44,51,50,46,51,49,56,54,49,56,93,44,91,45,57,55,46,54,49,53,48,53,53,44,51,50,46,50,48,51,53,56,49,93,44,91,45,57,55,46,52,55,54,48,56,54,44,51,50,46,49,55,51,52,54,93,44,91,45,57,55,46,48,56,54,49,57,49,44,51,50,46,50,54,53,52,53,49,93,44,91,45,57,55,46,48,56,54,56,51,52,44,51,50,46,53,52,57,52,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,50,55,51,50,57,44,51,49,46,55,54,50,53,54,51,93,44,91,45,56,53,46,48,52,53,52,57,53,44,51,49,46,53,49,55,49,50,57,93,44,91,45,56,52,46,56,49,57,56,48,55,44,51,49,46,53,48,49,49,57,50,93,44,91,45,56,52,46,56,49,55,56,52,51,44,51,49,46,54,49,57,55,55,49,93,44,91,45,56,52,46,57,52,50,51,53,51,44,51,49,46,54,49,56,54,54,57,93,44,91,45,56,52,46,57,53,56,54,52,44,51,49,46,55,55,55,56,53,52,93,44,91,45,56,53,46,49,52,49,49,51,44,51,49,46,55,56,48,52,54,51,93,44,91,45,56,53,46,49,50,55,51,50,57,44,51,49,46,55,54,50,53,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,56,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,54,55,50,50,50,56,44,52,52,46,57,57,53,49,49,55,93,44,91,45,49,49,57,46,54,53,50,52,51,49,44,52,52,46,56,50,51,50,57,57,93,44,91,45,49,49,57,46,54,53,53,53,49,55,44,52,52,46,51,48,55,48,52,53,93,44,91,45,49,49,57,46,54,53,55,49,56,51,44,52,51,46,57,53,56,57,50,93,44,91,45,49,49,56,46,56,49,54,57,51,49,44,52,51,46,57,54,48,55,51,51,93,44,91,45,49,49,56,46,56,49,54,56,57,44,52,52,46,48,52,55,56,50,56,93,44,91,45,49,49,56,46,50,50,55,54,52,53,44,52,52,46,48,51,57,56,54,50,93,44,91,45,49,49,56,46,50,51,50,50,49,52,44,52,52,46,50,53,54,49,50,57,93,44,91,45,49,49,56,46,52,57,55,52,57,57,44,52,52,46,50,53,53,50,52,56,93,44,91,45,49,49,56,46,52,48,57,55,55,52,44,52,52,46,51,55,56,54,49,57,93,44,91,45,49,49,56,46,52,50,50,49,55,51,44,52,52,46,52,52,56,57,56,52,93,44,91,45,49,49,56,46,51,48,53,55,55,56,44,52,52,46,53,56,56,56,49,93,44,91,45,49,49,56,46,53,49,54,52,53,50,44,52,52,46,55,48,50,52,54,50,93,44,91,45,49,49,56,46,50,56,53,52,51,57,44,52,52,46,55,53,48,57,55,53,93,44,91,45,49,49,56,46,51,49,56,55,50,53,44,52,52,46,56,51,54,50,55,57,93,44,91,45,49,49,56,46,50,52,52,54,54,50,44,52,52,46,57,53,56,51,57,54,93,44,91,45,49,49,56,46,53,49,56,54,56,57,44,52,52,46,57,57,53,56,55,55,93,44,91,45,49,49,57,46,49,54,50,57,54,54,44,52,52,46,57,57,54,50,52,49,93,44,91,45,49,49,57,46,54,55,50,50,50,56,44,52,52,46,57,57,53,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,111,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,51,48,56,44,34,98,101,100,115,34,58,50,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,50,57,48,50,51,54,44,52,51,46,54,49,48,57,53,57,93,44,91,45,49,50,52,46,51,56,48,50,55,52,44,52,51,46,52,48,50,56,52,54,93,44,91,45,49,50,52,46,52,55,54,57,52,56,44,52,51,46,51,50,57,51,55,49,93,44,91,45,49,50,52,46,52,54,53,50,51,53,44,52,51,46,50,48,48,51,48,56,93,44,91,45,49,50,52,46,53,53,50,51,55,51,44,52,50,46,57,53,52,51,49,49,93,44,91,45,49,50,52,46,50,53,56,51,56,56,44,52,50,46,57,53,52,57,52,54,93,44,91,45,49,50,52,46,49,54,49,51,48,56,44,52,50,46,56,56,51,52,57,57,93,44,91,45,49,50,52,46,49,51,56,55,52,56,44,52,50,46,54,55,49,49,49,53,93,44,91,45,49,50,51,46,57,57,54,50,57,49,44,52,50,46,54,56,53,54,53,49,93,44,91,45,49,50,51,46,57,50,53,55,49,55,44,52,50,46,55,55,52,53,49,52,93,44,91,45,49,50,51,46,56,49,49,53,53,51,44,52,50,46,55,56,56,56,51,55,93,44,91,45,49,50,51,46,56,50,49,49,49,56,44,52,50,46,57,57,54,50,57,49,93,44,91,45,49,50,51,46,55,48,50,49,52,52,44,52,51,46,48,56,55,48,56,51,93,44,91,45,49,50,51,46,55,48,52,55,53,50,44,52,51,46,50,53,55,55,52,49,93,44,91,45,49,50,51,46,55,54,49,53,50,56,44,52,51,46,52,50,50,50,57,52,93,44,91,45,49,50,51,46,56,55,53,54,50,56,44,52,51,46,53,49,53,57,52,55,93,44,91,45,49,50,51,46,56,55,53,54,57,56,44,52,51,46,54,48,56,52,48,55,93,44,91,45,49,50,52,46,50,57,48,50,51,54,44,52,51,46,54,49,48,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,48,56,53,57,51,44,51,51,46,51,55,55,49,57,93,44,91,45,57,53,46,51,48,56,57,53,55,44,51,50,46,57,54,50,53,55,50,93,44,91,45,57,53,46,49,53,50,50,48,54,44,51,51,46,48,49,51,52,53,93,44,91,45,57,53,46,49,50,54,49,51,44,51,51,46,48,51,52,53,56,49,93,44,91,45,57,53,46,49,50,53,52,53,49,44,51,51,46,51,56,57,52,53,52,93,44,91,45,57,53,46,51,48,54,54,52,44,51,51,46,51,55,56,48,50,55,93,44,91,45,57,53,46,51,48,56,53,57,51,44,51,51,46,51,55,55,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,52,56,48,44,34,98,101,100,115,34,58,52,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,48,53,55,48,48,53,44,52,51,46,55,52,52,53,49,51,93,44,91,45,55,52,46,50,49,52,54,50,53,44,52,51,46,55,50,56,55,48,51,93,44,91,45,55,52,46,49,54,48,49,44,52,51,46,51,55,49,53,51,50,93,44,91,45,55,51,46,56,56,52,49,51,57,44,52,51,46,51,57,56,48,52,49,93,44,91,45,55,51,46,55,56,57,55,51,49,44,52,51,46,50,52,52,52,50,49,93,44,91,45,55,51,46,53,57,52,57,54,44,52,51,46,51,48,54,49,49,56,93,44,91,45,55,51,46,54,50,56,57,52,44,52,51,46,52,56,54,51,57,49,93,44,91,45,55,51,46,52,57,52,51,49,52,44,52,51,46,54,53,51,57,54,54,93,44,91,45,55,51,46,52,51,56,49,50,44,52,51,46,56,48,51,54,56,55,93,44,91,45,55,52,46,48,53,55,48,48,53,44,52,51,46,55,52,52,53,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,51,56,49,55,54,44,51,56,46,54,50,55,51,49,50,93,44,91,45,55,56,46,52,53,50,56,48,49,44,51,56,46,52,55,53,53,50,55,93,44,91,45,55,56,46,52,50,57,54,50,54,44,51,56,46,51,54,54,55,48,52,93,44,91,45,55,56,46,50,56,56,56,51,55,44,51,56,46,50,55,50,54,53,54,93,44,91,45,55,56,46,50,50,49,49,48,52,44,51,56,46,50,51,48,48,56,57,93,44,91,45,55,56,46,48,57,52,52,57,56,44,51,56,46,51,49,49,50,52,50,93,44,91,45,55,56,46,48,57,54,48,56,51,44,51,56,46,52,48,52,51,52,51,93,44,91,45,55,56,46,50,51,49,56,48,51,44,51,56,46,53,51,50,53,51,57,93,44,91,45,55,56,46,51,51,56,49,55,54,44,51,56,46,54,50,55,51,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,116,111,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,57,50,48,52,51,44,51,52,46,54,56,48,53,53,54,93,44,91,45,57,54,46,48,57,50,48,49,50,44,51,52,46,53,48,54,48,53,57,93,44,91,45,57,54,46,49,52,53,52,50,51,44,51,52,46,52,49,56,51,49,51,93,44,91,45,57,54,46,52,48,55,48,55,52,44,51,52,46,52,49,56,51,57,93,44,91,45,57,54,46,52,48,55,53,49,55,44,51,52,46,49,53,55,51,49,55,93,44,91,45,57,53,46,57,57,49,53,55,56,44,51,52,46,49,53,54,56,48,53,93,44,91,45,57,53,46,55,55,57,51,55,54,44,51,52,46,49,53,54,54,57,57,93,44,91,45,57,53,46,55,55,57,49,51,52,44,51,52,46,53,48,54,54,52,52,93,44,91,45,57,53,46,54,55,49,55,53,44,51,52,46,53,48,54,55,57,52,93,44,91,45,57,53,46,54,55,49,56,49,44,51,52,46,53,57,51,55,51,50,93,44,91,45,57,53,46,56,56,49,57,56,55,44,51,52,46,53,57,51,53,50,56,93,44,91,45,57,53,46,56,56,50,49,57,54,44,51,52,46,54,56,48,53,51,52,93,44,91,45,57,54,46,48,57,50,48,52,51,44,51,52,46,54,56,48,53,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,77,101,110,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,57,53,48,57,44,52,48,46,49,48,56,57,48,56,93,44,91,45,56,57,46,57,57,52,53,48,54,44,51,57,46,57,48,49,57,50,53,93,44,91,45,56,57,46,55,54,57,49,54,56,44,51,57,46,57,48,50,51,53,93,44,91,45,56,57,46,54,57,56,50,53,57,44,51,57,46,57,55,53,51,48,57,93,44,91,45,56,57,46,53,55,56,50,56,57,44,51,57,46,57,55,54,49,50,55,93,44,91,45,56,57,46,54,48,49,54,56,56,44,52,48,46,49,50,50,51,55,56,93,44,91,45,56,57,46,57,55,52,54,48,52,44,52,48,46,49,51,53,55,48,53,93,44,91,45,56,57,46,57,57,53,48,57,44,52,48,46,49,48,56,57,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,97,114,116,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,54,50,48,44,34,98,101,100,115,34,58,49,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,48,53,55,55,53,44,51,52,46,51,57,50,52,52,54,93,44,91,45,56,53,46,48,52,54,56,55,49,44,51,52,46,48,57,54,52,49,50,93,44,91,45,56,52,46,57,50,50,55,52,50,44,51,52,46,48,56,50,52,57,55,93,44,91,45,56,52,46,55,51,55,56,51,54,44,51,52,46,48,55,57,51,57,57,93,44,91,45,56,52,46,54,53,57,50,52,49,44,51,52,46,48,55,56,50,52,93,44,91,45,56,52,46,54,53,51,50,51,50,44,51,52,46,52,49,50,53,57,93,44,91,45,56,53,46,48,48,53,55,55,53,44,51,52,46,51,57,50,52,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,51,54,50,44,34,98,101,100,115,34,58,56,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,53,52,49,57,44,50,56,46,57,54,48,48,53,51,93,44,91,45,56,49,46,57,53,55,54,52,49,44,50,56,46,51,52,53,49,56,93,44,91,45,56,49,46,54,53,55,50,54,56,44,50,56,46,51,52,55,48,57,56,93,44,91,45,56,49,46,54,53,56,53,57,55,44,50,56,46,55,54,54,56,55,93,44,91,45,56,49,46,52,49,52,52,52,54,44,50,56,46,55,56,52,57,53,53,93,44,91,45,56,49,46,51,54,54,57,52,44,50,56,46,56,55,57,50,50,55,93,44,91,45,56,49,46,51,53,52,53,53,52,44,50,56,46,57,56,52,51,55,53,93,44,91,45,56,49,46,53,48,50,48,53,53,44,50,57,46,48,57,55,56,48,50,93,44,91,45,56,49,46,53,51,50,53,55,54,44,50,57,46,49,55,55,54,49,53,93,44,91,45,56,49,46,54,52,49,57,49,54,44,50,57,46,50,55,54,55,54,54,93,44,91,45,56,49,46,54,53,56,54,57,56,44,50,56,46,57,54,48,51,52,53,93,44,91,45,56,49,46,57,53,52,49,57,44,50,56,46,57,54,48,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,79,107,109,117,108,103,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,56,57,44,34,98,101,100,115,34,58,49,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,51,51,49,49,56,44,51,53,46,56,53,54,56,50,52,93,44,91,45,57,54,46,49,57,50,52,48,51,44,51,53,46,56,53,54,57,57,51,93,44,91,45,57,54,46,49,57,50,53,54,51,44,51,53,46,54,51,57,48,56,55,93,44,91,45,57,54,46,48,56,55,55,55,55,44,51,53,46,53,53,50,48,48,51,93,44,91,45,57,54,46,48,56,55,53,51,44,51,53,46,51,55,54,56,55,55,93,44,91,45,57,53,46,57,56,49,52,54,53,44,51,53,46,51,55,54,55,56,56,93,44,91,45,57,53,46,56,55,53,52,48,53,44,51,53,46,51,55,54,54,57,93,44,91,45,57,53,46,56,50,50,51,54,49,44,51,53,46,53,53,49,54,57,51,93,44,91,45,57,53,46,55,49,50,57,53,51,44,51,53,46,53,53,49,55,51,56,93,44,91,45,57,53,46,55,49,51,48,56,49,44,51,53,46,55,50,53,56,48,55,93,44,91,45,57,53,46,55,54,54,49,49,52,44,51,53,46,56,53,54,50,56,52,93,44,91,45,57,53,46,56,49,57,52,53,57,44,51,53,46,56,53,54,50,53,53,93,44,91,45,57,54,46,48,51,51,49,49,56,44,51,53,46,56,53,54,56,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,83,104,101,114,105,100,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,56,53,49,55,57,44,52,55,46,56,52,55,55,54,49,93,44,91,45,49,48,48,46,53,56,53,48,54,50,44,52,55,46,54,55,52,48,56,56,93,44,91,45,49,48,48,46,54,55,50,50,54,50,44,52,55,46,54,55,52,49,50,56,93,44,91,45,49,48,48,46,54,55,51,50,49,44,52,55,46,51,50,55,54,52,54,93,44,91,45,49,48,48,46,49,49,51,50,54,49,44,52,55,46,51,50,55,50,54,50,93,44,91,45,49,48,48,46,48,51,51,50,57,50,44,52,55,46,51,50,55,49,54,53,93,44,91,45,49,48,48,46,48,51,50,56,48,55,44,52,55,46,54,55,51,54,54,57,93,44,91,45,49,48,48,46,48,54,57,51,49,49,44,52,55,46,56,52,55,52,51,49,93,44,91,45,49,48,48,46,49,57,55,57,57,54,44,52,55,46,56,52,55,54,53,50,93,44,91,45,49,48,48,46,53,56,53,49,55,57,44,52,55,46,56,52,55,55,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,49,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,52,53,53,54,49,44,52,49,46,48,52,50,56,55,54,93,44,91,45,56,54,46,48,55,53,57,51,57,44,52,49,46,48,56,52,56,55,56,93,44,91,45,56,54,46,48,55,55,53,53,49,44,52,49,46,49,55,50,56,54,56,93,44,91,45,56,54,46,52,54,55,48,52,54,44,52,49,46,49,55,49,52,52,50,93,44,91,45,56,54,46,52,54,56,53,48,57,44,52,48,46,57,48,57,56,56,57,93,44,91,45,56,54,46,49,54,57,48,49,50,44,52,48,46,57,48,57,56,51,54,93,44,91,45,56,54,46,49,54,56,52,53,57,44,52,48,46,57,57,54,48,57,55,93,44,91,45,56,53,46,57,52,54,52,51,54,44,52,48,46,57,57,57,49,57,53,93,44,91,45,56,53,46,57,52,53,53,54,49,44,52,49,46,48,52,50,56,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,53,53,48,50,44,34,98,101,100,115,34,58,49,56,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,55,51,56,50,44,51,57,46,48,52,52,48,56,54,93,44,91,45,57,52,46,56,55,50,52,52,50,44,51,57,46,48,53,57,48,56,56,93,44,91,45,57,52,46,57,48,56,55,54,53,44,51,56,46,57,57,49,52,48,49,93,44,91,45,57,53,46,48,53,54,50,53,56,44,51,56,46,57,56,50,49,50,93,44,91,45,57,53,46,48,53,54,52,49,50,44,51,56,46,55,51,56,53,56,55,93,44,91,45,57,52,46,54,48,57,48,56,44,51,56,46,55,51,56,48,57,57,93,44,91,45,57,52,46,54,48,56,48,51,51,44,51,56,46,56,52,55,50,48,55,93,44,91,45,57,52,46,54,48,55,51,56,50,44,51,57,46,48,52,52,48,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,97,108,118,101,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,48,56,50,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,56,54,51,53,56,44,51,56,46,55,52,56,52,55,53,93,44,91,45,55,54,46,54,55,53,52,53,55,44,51,56,46,53,51,53,56,55,54,93,44,91,45,55,54,46,54,55,52,49,49,56,44,51,56,46,52,57,57,54,50,50,93,44,91,45,55,54,46,52,52,53,51,51,52,44,51,56,46,51,48,53,50,49,93,44,91,45,55,54,46,51,50,49,57,48,56,44,51,56,46,51,50,55,50,56,52,93,44,91,45,55,54,46,52,51,56,56,49,52,44,51,56,46,53,55,53,51,51,54,93,44,91,45,55,54,46,52,54,51,54,51,54,44,51,56,46,55,49,49,48,57,57,93,44,91,45,55,54,46,54,56,54,51,53,56,44,51,56,46,55,52,56,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,98,117,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,56,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,52,57,54,51,54,44,52,54,46,49,53,55,53,57,55,93,44,91,45,57,50,46,48,51,49,52,49,55,44,52,53,46,54,51,57,57,50,56,93,44,91,45,57,49,46,53,52,48,50,57,52,44,52,53,46,54,51,55,54,48,53,93,44,91,45,57,49,46,53,53,49,50,56,50,44,52,54,46,49,53,55,48,52,53,93,44,91,45,57,50,46,48,52,57,54,51,54,44,52,54,46,49,53,55,53,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,57,53,50,51,56,54,44,52,56,46,51,52,57,55,48,54,93,44,91,45,49,50,50,46,57,52,57,49,54,55,44,52,55,46,56,54,54,56,50,50,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,56,56,49,48,56,93,44,91,45,49,50,52,46,55,49,53,48,49,54,44,52,55,46,56,55,57,56,53,57,93,44,91,45,49,50,52,46,52,54,49,52,48,50,44,52,55,46,54,50,52,57,54,93,44,91,45,49,50,52,46,52,50,57,53,53,51,44,52,55,46,53,51,50,57,52,57,93,44,91,45,49,50,52,46,48,52,54,55,52,44,52,55,46,53,49,56,53,50,53,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,53,49,55,55,49,54,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,54,48,52,54,49,53,93,44,91,45,49,50,50,46,57,53,48,54,50,49,44,52,55,46,54,48,54,51,48,56,93,44,91,45,49,50,50,46,55,56,51,50,51,55,44,52,55,46,54,55,50,55,53,52,93,44,91,45,49,50,50,46,55,50,49,57,55,49,44,52,55,46,55,56,55,54,54,53,93,44,91,45,49,50,50,46,53,57,57,51,54,52,44,52,55,46,56,55,52,56,49,53,93,44,91,45,49,50,50,46,54,48,54,55,54,44,52,55,46,57,55,50,57,53,51,93,44,91,45,49,50,50,46,54,52,50,50,53,54,44,52,56,46,48,57,51,55,55,93,44,91,45,49,50,50,46,56,54,50,54,56,52,44,52,56,46,50,52,51,54,53,56,93,44,91,45,49,50,50,46,56,54,51,48,55,56,44,52,56,46,51,55,48,51,54,49,93,44,91,45,49,50,50,46,57,53,50,51,56,54,44,52,56,46,51,52,57,55,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,103,117,97,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,54,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,50,52,57,51,56,52,44,49,56,46,52,49,56,57,50,52,93,44,91,45,54,55,46,49,56,50,56,53,50,44,49,56,46,51,49,51,48,50,54,93,44,91,45,54,55,46,49,51,48,49,54,55,44,49,56,46,51,49,55,57,50,55,93,44,91,45,54,55,46,49,51,50,50,49,44,49,56,46,51,56,57,51,57,49,93,44,91,45,54,55,46,50,48,55,57,51,55,44,49,56,46,52,52,50,50,56,93,44,91,45,54,55,46,50,52,57,51,56,52,44,49,56,46,52,49,56,57,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,87,105,110,111,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,56,52,55,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,55,57,52,57,49,44,52,52,46,49,48,54,57,56,56,93,44,91,45,57,50,46,48,55,57,50,57,50,44,52,51,46,56,52,55,48,56,93,44,91,45,57,49,46,55,51,48,52,50,52,44,52,51,46,56,52,54,57,51,53,93,44,91,45,57,49,46,50,56,52,49,51,56,44,52,51,46,56,52,55,48,54,53,93,44,91,45,57,49,46,52,50,53,49,56,56,44,52,51,46,57,56,52,51,50,50,93,44,91,45,57,49,46,53,53,57,48,48,52,44,52,52,46,48,50,53,51,49,53,93,44,91,45,57,49,46,56,53,56,50,52,53,44,52,52,46,49,57,51,48,48,52,93,44,91,45,57,50,46,48,55,56,53,51,50,44,52,52,46,49,57,50,57,55,57,93,44,91,45,57,50,46,48,55,57,52,57,49,44,52,52,46,49,48,54,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,48,55,53,44,34,98,101,100,115,34,58,51,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,54,57,55,57,50,44,51,50,46,53,54,50,56,48,51,93,44,91,45,57,49,46,49,49,54,55,48,56,44,51,50,46,53,48,48,49,51,56,93,44,91,45,57,48,46,57,56,54,54,55,50,44,51,50,46,51,53,49,55,54,93,44,91,45,57,48,46,57,56,51,51,56,49,44,51,50,46,50,49,49,55,54,55,93,44,91,45,57,49,46,49,50,52,48,52,51,44,51,50,46,50,49,49,49,48,52,93,44,91,45,57,49,46,48,53,51,53,53,53,44,51,50,46,49,50,52,52,49,50,93,44,91,45,57,49,46,48,51,48,56,49,44,51,50,46,49,50,48,54,53,93,44,91,45,57,49,46,48,51,48,50,48,55,44,51,50,46,49,49,52,51,53,51,93,44,91,45,57,48,46,57,53,54,55,56,55,44,51,50,46,48,56,51,53,57,55,93,44,91,45,57,48,46,55,55,52,56,50,44,51,50,46,49,53,51,57,57,51,93,44,91,45,57,48,46,55,50,56,54,50,50,44,51,50,46,50,50,53,49,49,57,93,44,91,45,57,48,46,54,56,51,53,55,49,44,51,50,46,51,53,50,55,56,52,93,44,91,45,57,48,46,53,53,51,56,50,49,44,51,50,46,53,48,55,53,55,52,93,44,91,45,57,48,46,55,50,48,49,48,50,44,51,50,46,54,49,56,56,53,56,93,44,91,45,57,48,46,56,54,48,53,54,54,44,51,50,46,53,55,53,49,55,51,93,44,91,45,57,48,46,56,54,49,51,54,52,44,51,50,46,52,52,50,49,49,53,93,44,91,45,57,48,46,57,53,49,50,52,44,51,50,46,52,52,52,51,56,57,93,44,91,45,57,48,46,57,54,52,48,52,51,44,51,50,46,53,55,53,54,48,53,93,44,91,45,57,49,46,48,52,51,53,53,50,44,51,50,46,53,55,54,50,55,49,93,44,91,45,57,49,46,48,54,57,55,57,50,44,51,50,46,53,54,50,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,100,114,101,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,52,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,53,57,52,50,44,52,48,46,49,50,54,49,50,55,93,44,91,45,57,53,46,48,52,51,48,56,44,52,48,46,49,51,48,48,57,54,93,44,91,45,57,52,46,57,57,51,51,56,50,44,51,57,46,56,57,55,57,48,54,93,44,91,45,57,52,46,56,55,54,53,53,56,44,51,57,46,56,50,48,56,56,51,93,44,91,45,57,52,46,54,48,50,56,51,44,51,57,46,56,49,57,57,48,54,93,44,91,45,57,52,46,54,48,53,51,55,55,44,52,48,46,48,51,57,50,49,55,93,44,91,45,57,52,46,54,48,53,57,52,50,44,52,48,46,49,50,54,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,51,51,57,57,56,44,51,57,46,48,53,57,48,53,55,93,44,91,45,57,49,46,54,52,55,49,55,49,44,51,56,46,55,48,51,51,57,54,93,44,91,45,57,49,46,54,52,48,51,55,50,44,51,56,46,55,48,51,55,57,50,93,44,91,45,57,49,46,53,52,53,51,49,51,44,51,56,46,54,55,54,56,56,50,93,44,91,45,57,49,46,52,49,56,54,51,55,44,51,56,46,55,48,57,55,55,56,93,44,91,45,57,49,46,52,49,53,56,51,50,44,51,56,46,56,52,53,51,93,44,91,45,57,49,46,50,54,52,57,50,55,44,51,56,46,56,52,51,56,51,51,93,44,91,45,57,49,46,50,54,52,50,56,55,44,51,56,46,57,57,50,55,54,50,93,44,91,45,57,49,46,50,54,48,50,51,50,44,51,57,46,49,51,57,56,52,53,93,44,91,45,57,49,46,52,48,57,48,51,51,44,51,57,46,49,52,50,53,52,50,93,44,91,45,57,49,46,54,50,57,53,57,56,44,51,57,46,49,52,55,56,53,51,93,44,91,45,57,49,46,54,51,51,57,57,56,44,51,57,46,48,53,57,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,51,49,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,55,53,49,54,54,44,51,55,46,51,51,57,57,51,55,93,44,91,45,57,53,46,48,55,51,53,48,52,44,51,54,46,57,57,57,53,53,50,93,44,91,45,57,53,46,48,48,55,54,50,44,51,54,46,57,57,57,53,49,52,93,44,91,45,57,52,46,54,49,55,57,54,52,44,51,54,46,57,57,56,57,48,53,93,44,91,45,57,52,46,54,49,55,56,52,57,44,51,55,46,48,53,54,55,57,55,93,44,91,45,57,52,46,54,49,55,55,50,50,44,51,55,46,51,51,56,52,49,56,93,44,91,45,57,53,46,48,55,53,49,54,54,44,51,55,46,51,51,57,57,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,97,108,105,102,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,51,55,44,34,98,101,100,115,34,58,50,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,57,57,53,50,52,44,51,54,46,53,48,52,50,53,57,93,44,91,45,55,55,46,57,49,49,57,54,51,44,51,54,46,51,56,50,52,52,54,93,44,91,45,55,56,46,48,48,54,53,53,49,44,51,54,46,50,48,50,54,51,51,93,44,91,45,55,55,46,56,56,55,50,52,44,51,54,46,49,52,51,56,52,93,44,91,45,55,55,46,54,57,55,57,53,54,44,51,54,46,49,53,51,49,53,93,44,91,45,55,55,46,53,51,51,49,54,49,44,51,54,46,48,57,48,54,53,57,93,44,91,45,55,55,46,52,48,50,54,49,52,44,51,54,46,48,48,52,57,54,54,93,44,91,45,55,55,46,51,50,55,53,54,57,44,51,54,46,48,55,49,51,54,49,93,44,91,45,55,55,46,50,57,49,53,49,57,44,51,54,46,49,54,56,51,52,50,93,44,91,45,55,55,46,51,56,54,53,57,53,44,51,54,46,50,49,51,53,52,56,93,44,91,45,55,55,46,52,52,53,56,56,54,44,51,54,46,51,50,52,56,56,56,93,44,91,45,55,55,46,54,52,57,56,51,53,44,51,54,46,52,56,49,52,52,51,93,44,91,45,55,55,46,56,57,57,53,50,52,44,51,54,46,53,48,52,50,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,83,97,110,100,111,118,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,55,54,57,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,49,57,55,50,52,52,44,51,53,46,50,49,57,52,53,57,93,44,91,45,49,48,54,46,50,52,52,50,49,54,44,51,53,46,50,49,53,54,53,55,93,44,91,45,49,48,54,46,50,53,48,52,57,57,44,51,53,46,55,53,53,56,49,56,93,44,91,45,49,48,54,46,52,48,48,55,44,51,53,46,56,48,55,53,54,55,93,44,91,45,49,48,54,46,51,57,57,55,49,51,44,51,53,46,57,54,48,48,57,53,93,44,91,45,49,48,54,46,50,52,56,49,54,49,44,51,53,46,57,54,54,51,50,55,93,44,91,45,49,48,54,46,50,52,55,49,54,52,44,51,54,46,48,48,49,52,51,52,93,44,91,45,49,48,54,46,56,56,53,51,49,55,44,51,53,46,57,57,56,57,54,57,93,44,91,45,49,48,54,46,56,56,53,48,53,51,44,51,54,46,50,49,54,53,55,93,44,91,45,49,48,55,46,54,50,52,50,56,51,44,51,54,46,50,49,57,56,48,57,93,44,91,45,49,48,55,46,54,50,54,53,49,49,44,51,54,46,48,48,48,50,56,56,93,44,91,45,49,48,55,46,51,48,56,54,54,55,44,51,53,46,57,57,56,53,53,54,93,44,91,45,49,48,55,46,51,48,57,51,56,54,44,51,53,46,51,48,53,54,56,55,93,44,91,45,49,48,55,46,49,57,55,50,52,52,44,51,53,46,50,49,57,52,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,50,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,52,51,55,49,56,44,51,55,46,50,53,48,53,53,49,93,44,91,45,56,51,46,57,54,56,57,57,44,51,55,46,49,55,52,55,57,52,93,44,91,45,56,51,46,56,55,49,51,49,53,44,51,55,46,48,53,52,57,49,57,93,44,91,45,56,51,46,53,56,57,53,50,49,44,51,54,46,57,53,53,55,56,54,93,44,91,45,56,51,46,53,48,57,48,56,51,44,51,54,46,57,51,56,53,48,57,93,44,91,45,56,51,46,53,53,49,51,48,51,44,51,55,46,49,54,55,53,49,93,44,91,45,56,51,46,53,48,55,56,56,54,44,51,55,46,50,51,53,56,55,55,93,44,91,45,56,51,46,53,50,54,57,48,55,44,51,55,46,50,53,56,53,50,57,93,44,91,45,56,51,46,54,51,56,53,55,50,44,51,55,46,51,52,52,49,54,54,93,44,91,45,56,51,46,55,56,52,57,55,53,44,51,55,46,51,52,56,55,49,55,93,44,91,45,56,51,46,57,52,51,55,49,56,44,51,55,46,50,53,48,53,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,48,55,52,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,51,56,50,48,51,44,52,49,46,49,53,51,54,51,51,93,44,91,45,55,55,46,55,57,56,53,54,44,52,49,46,49,56,49,57,53,93,44,91,45,55,55,46,55,52,49,57,49,49,44,52,49,46,49,48,55,54,49,52,93,44,91,45,55,55,46,54,50,49,55,53,57,44,52,49,46,48,57,49,49,56,53,93,44,91,45,55,55,46,53,48,56,53,57,54,44,52,48,46,57,54,50,57,51,56,93,44,91,45,55,55,46,49,52,52,49,54,44,52,49,46,48,52,52,51,51,56,93,44,91,45,55,55,46,49,52,52,49,49,49,44,52,49,46,48,54,56,56,52,93,44,91,45,55,55,46,53,50,54,53,51,55,44,52,49,46,51,53,56,53,50,56,93,44,91,45,55,55,46,53,57,56,49,50,57,44,52,49,46,52,55,56,53,55,54,93,44,91,45,55,55,46,57,56,57,49,57,52,44,52,49,46,52,55,52,56,50,50,93,44,91,45,55,55,46,57,56,56,55,56,54,44,52,49,46,51,54,55,52,53,51,93,44,91,45,55,56,46,48,57,51,51,56,49,44,52,49,46,50,49,54,57,51,49,93,44,91,45,55,56,46,48,51,56,50,48,51,44,52,49,46,49,53,51,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,76,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,56,55,48,44,34,98,101,100,115,34,58,49,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,49,52,57,48,50,53,44,52,52,46,55,50,48,50,50,53,93,44,91,45,49,50,51,46,50,54,48,49,53,49,44,52,52,46,53,53,53,49,52,56,93,44,91,45,49,50,51,46,50,49,49,57,54,55,44,52,52,46,53,48,49,50,49,56,93,44,91,45,49,50,51,46,50,52,48,55,52,52,44,52,52,46,51,51,55,55,56,57,93,44,91,45,49,50,51,46,49,56,48,51,56,56,44,52,52,46,50,56,51,55,50,53,93,44,91,45,49,50,51,46,49,54,53,52,50,56,44,52,52,46,50,48,48,48,55,49,93,44,91,45,49,50,50,46,57,48,53,55,53,53,44,52,52,46,50,48,48,55,51,54,93,44,91,45,49,50,50,46,56,54,53,52,55,56,44,52,52,46,50,56,55,49,51,52,93,44,91,45,49,50,50,46,55,54,50,55,51,53,44,52,52,46,50,57,48,53,51,55,93,44,91,45,49,50,50,46,53,48,55,50,48,51,44,52,52,46,50,50,51,52,52,56,93,44,91,45,49,50,50,46,51,50,55,49,53,44,52,52,46,50,53,50,56,52,49,93,44,91,45,49,50,49,46,56,49,57,52,50,57,44,52,52,46,50,54,50,51,57,52,93,44,91,45,49,50,49,46,56,52,51,49,51,56,44,52,52,46,51,57,50,54,51,93,44,91,45,49,50,49,46,56,48,48,48,49,53,44,52,52,46,54,56,51,52,50,53,93,44,91,45,49,50,50,46,48,51,51,48,48,54,44,52,52,46,54,56,53,54,57,49,93,44,91,45,49,50,50,46,50,55,54,54,55,53,44,52,52,46,55,52,54,49,51,53,93,44,91,45,49,50,50,46,56,48,50,52,53,55,44,52,52,46,55,57,48,56,54,52,93,44,91,45,49,50,51,46,48,48,55,55,52,51,44,52,52,46,54,56,56,48,55,49,93,44,91,45,49,50,51,46,49,52,51,56,52,51,44,52,52,46,55,52,56,57,49,52,93,44,91,45,49,50,51,46,49,52,57,48,50,53,44,52,52,46,55,50,48,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,51,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,50,54,57,48,50,44,52,50,46,56,49,50,56,54,50,93,44,91,45,57,48,46,52,50,54,51,55,55,44,52,50,46,53,48,55,49,55,51,93,44,91,45,56,57,46,57,50,54,52,54,54,44,52,50,46,53,48,53,55,55,50,93,44,91,45,56,57,46,56,51,55,53,56,55,44,52,50,46,53,48,53,55,49,93,44,91,45,56,57,46,56,51,56,52,49,44,52,50,46,56,49,51,55,57,57,93,44,91,45,57,48,46,52,50,54,57,48,50,44,52,50,46,56,49,50,56,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,48,48,49,44,34,98,101,100,115,34,58,49,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,48,48,56,49,44,51,54,46,57,57,56,56,54,93,44,91,45,57,54,46,48,48,49,49,55,49,44,51,54,46,52,50,51,54,56,54,93,44,91,45,57,53,46,56,49,50,51,52,50,44,51,54,46,52,50,51,53,56,93,44,91,45,57,53,46,56,48,57,53,52,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,56,48,57,56,50,44,51,54,46,57,52,49,57,51,93,44,91,45,57,53,46,55,56,54,55,54,50,44,51,54,46,57,57,57,51,49,93,44,91,45,57,53,46,57,54,52,50,55,44,51,54,46,57,57,57,49,48,52,93,44,91,45,57,54,46,48,48,48,56,49,44,51,54,46,57,57,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,80,114,101,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,51,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,55,54,51,55,55,52,44,51,57,46,55,50,48,55,55,54,93,44,91,45,55,57,46,56,57,52,54,56,56,44,51,57,46,52,51,53,53,56,56,93,44,91,45,55,57,46,56,57,53,53,51,54,44,51,57,46,50,57,57,53,56,52,93,44,91,45,55,57,46,56,48,57,55,50,57,44,51,57,46,50,51,48,53,50,54,93,44,91,45,55,57,46,54,56,55,50,56,51,44,51,57,46,50,55,49,51,57,56,93,44,91,45,55,57,46,52,56,55,49,55,53,44,51,57,46,49,57,52,57,48,54,93,44,91,45,55,57,46,52,56,54,56,55,53,44,51,57,46,50,48,53,56,57,54,93,44,91,45,55,57,46,52,55,54,54,54,50,44,51,57,46,55,50,49,48,55,56,93,44,91,45,55,57,46,55,54,51,55,55,52,44,51,57,46,55,50,48,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,87,97,117,112,97,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,52,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,50,51,55,52,53,44,52,52,46,54,56,49,51,54,53,93,44,91,45,56,57,46,50,50,52,56,49,51,44,52,52,46,50,52,51,51,57,51,93,44,91,45,56,56,46,56,56,54,54,55,51,44,52,52,46,50,52,50,54,50,50,93,44,91,45,56,56,46,55,51,57,55,55,44,52,52,46,50,52,51,51,48,51,93,44,91,45,56,56,46,55,51,54,56,48,50,44,52,52,46,53,57,48,54,48,53,93,44,91,45,56,56,46,54,48,54,48,56,51,44,52,52,46,53,57,48,53,49,53,93,44,91,45,56,56,46,54,48,53,49,53,57,44,52,52,46,54,55,56,51,51,49,93,44,91,45,56,57,46,50,50,51,55,52,53,44,52,52,46,54,56,49,51,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,69,100,119,97,114,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,54,52,54,49,44,51,48,46,50,57,48,50,57,54,93,44,91,45,49,48,48,46,55,48,48,51,57,51,44,51,48,46,50,56,56,50,55,54,93,44,91,45,49,48,48,46,54,57,57,57,51,50,44,50,57,46,54,50,51,56,57,55,93,44,91,45,49,48,48,46,49,49,50,48,57,56,44,50,57,46,54,50,51,50,54,51,93,44,91,45,49,48,48,46,48,49,52,49,56,56,44,50,57,46,54,50,51,52,57,53,93,44,91,45,49,48,48,46,48,52,53,55,57,49,44,50,57,46,54,57,52,57,50,52,93,44,91,45,57,57,46,57,54,55,54,50,54,44,51,48,46,48,56,50,51,53,54,93,44,91,45,57,57,46,55,53,55,54,50,49,44,51,48,46,48,55,52,49,51,50,93,44,91,45,57,57,46,55,53,52,49,52,50,44,51,48,46,50,57,48,54,57,56,93,44,91,45,49,48,48,46,49,49,54,52,54,49,44,51,48,46,50,57,48,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,52,51,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,51,51,50,57,54,57,44,52,51,46,54,49,54,54,52,53,93,44,91,45,49,50,49,46,51,52,56,52,55,49,44,52,51,46,51,53,54,55,53,51,93,44,91,45,49,50,49,46,51,52,57,54,55,57,44,52,50,46,55,52,54,54,52,52,93,44,91,45,49,50,48,46,56,56,51,51,50,55,44,52,50,46,55,52,52,50,49,52,93,44,91,45,49,50,48,46,56,55,57,57,50,54,44,52,49,46,57,57,51,55,54,52,93,44,91,45,49,49,57,46,57,57,57,50,51,52,44,52,49,46,57,57,52,57,52,52,93,44,91,45,49,49,57,46,51,54,48,49,50,50,44,52,49,46,57,57,52,50,55,56,93,44,91,45,49,49,57,46,51,54,53,51,51,55,44,52,50,46,55,52,56,57,53,56,93,44,91,45,49,49,57,46,57,52,51,55,55,57,44,52,50,46,55,52,54,51,55,49,93,44,91,45,49,49,57,46,57,51,50,54,49,49,44,52,51,46,49,55,56,57,54,51,93,44,91,45,49,49,57,46,56,57,54,57,54,57,44,52,51,46,49,55,57,48,49,55,93,44,91,45,49,49,57,46,56,57,54,53,56,49,44,52,51,46,54,49,49,49,54,52,93,44,91,45,49,50,49,46,51,51,50,57,54,57,44,52,51,46,54,49,54,54,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,79,122,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,49,50,51,52,54,44,51,54,46,55,57,52,50,51,49,93,44,91,45,57,50,46,55,54,52,56,54,57,44,51,54,46,56,48,54,48,57,55,93,44,91,45,57,50,46,55,55,50,51,52,51,44,51,54,46,52,57,55,54,54,50,93,44,91,45,57,50,46,53,50,57,49,50,56,44,51,54,46,52,57,56,53,57,57,93,44,91,45,57,50,46,49,53,48,50,57,53,44,51,54,46,52,57,56,54,49,93,44,91,45,57,50,46,49,50,48,52,51,44,51,54,46,52,57,56,55,93,44,91,45,57,50,46,49,49,50,51,52,54,44,51,54,46,55,57,52,50,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,55,51,34,44,34,78,65,77,69,34,58,34,87,97,108,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,57,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,48,52,51,48,54,44,51,48,46,50,52,53,53,55,93,44,91,45,57,54,46,48,57,51,49,54,53,44,51,48,46,50,50,53,49,56,55,93,44,91,45,57,54,46,49,57,49,52,49,56,44,51,48,46,49,51,52,54,54,57,93,44,91,45,57,54,46,49,52,54,48,53,50,44,51,48,46,48,55,48,50,50,52,93,44,91,45,57,54,46,48,56,52,53,52,49,44,51,48,46,48,48,53,49,51,55,93,44,91,45,57,54,46,49,51,49,54,53,44,50,57,46,57,51,55,53,48,52,93,44,91,45,57,54,46,49,48,50,52,57,54,44,50,57,46,56,48,57,54,54,53,93,44,91,45,57,54,46,48,51,50,55,49,49,44,50,57,46,55,50,55,57,52,52,93,44,91,45,57,53,46,56,50,54,50,50,44,50,57,46,55,56,56,50,56,93,44,91,45,57,53,46,57,54,48,55,51,51,44,51,48,46,49,54,51,52,49,53,93,44,91,45,57,53,46,56,48,51,51,51,44,51,48,46,48,57,48,48,57,54,93,44,91,45,57,53,46,56,48,52,51,48,54,44,51,48,46,50,52,53,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,49,50,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,48,48,57,51,44,51,49,46,56,50,57,50,53,49,93,44,91,45,56,55,46,53,54,54,56,52,49,44,51,49,46,54,57,55,49,49,53,93,44,91,45,56,55,46,53,54,53,55,48,56,44,51,49,46,52,56,49,54,56,51,93,44,91,45,56,55,46,54,48,51,49,51,55,44,51,49,46,52,48,57,53,53,54,93,44,91,45,56,55,46,55,48,54,48,52,53,44,51,49,46,52,48,48,57,53,55,93,44,91,45,56,55,46,55,54,53,49,53,50,44,51,49,46,50,57,55,51,52,54,93,44,91,45,56,55,46,54,49,53,56,57,44,51,49,46,50,52,52,52,53,56,93,44,91,45,56,55,46,52,50,55,52,53,53,44,51,49,46,50,54,48,51,56,54,93,44,91,45,56,55,46,49,54,54,53,56,49,44,51,49,46,53,49,57,53,54,49,93,44,91,45,56,55,46,49,51,53,48,53,49,44,51,49,46,54,52,50,52,49,55,93,44,91,45,56,54,46,57,48,53,56,57,57,44,51,49,46,55,53,51,48,51,53,93,44,91,45,56,54,46,57,48,54,56,57,57,44,51,49,46,56,51,48,54,50,56,93,44,91,45,56,55,46,53,48,48,57,51,44,51,49,46,56,50,57,50,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,69,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,56,57,55,54,48,56,44,52,53,46,48,48,56,51,53,93,44,91,45,55,49,46,56,55,52,52,51,51,44,52,52,46,56,55,54,51,56,50,93,44,91,45,55,49,46,57,51,57,57,51,54,44,52,52,46,55,54,57,48,51,50,93,44,91,45,55,49,46,57,49,48,48,56,53,44,52,52,46,54,52,55,49,56,93,44,91,45,55,49,46,57,51,51,50,56,56,44,52,52,46,52,52,49,49,55,52,93,44,91,45,55,49,46,56,51,55,56,53,51,44,52,52,46,51,52,55,57,57,51,93,44,91,45,55,49,46,55,54,53,54,56,52,44,52,52,46,52,48,54,50,57,53,93,44,91,45,55,49,46,54,48,48,49,53,55,44,52,52,46,52,56,53,56,51,51,93,44,91,45,55,49,46,53,53,51,55,53,54,44,52,52,46,54,51,48,52,50,54,93,44,91,45,55,49,46,54,50,57,57,49,57,44,52,52,46,55,53,51,53,55,56,93,44,91,45,55,49,46,52,57,54,48,57,51,44,52,52,46,57,48,55,56,52,57,93,44,91,45,55,49,46,53,48,49,48,56,50,44,52,53,46,48,49,51,51,53,53,93,44,91,45,55,49,46,56,57,55,54,48,56,44,52,53,46,48,48,56,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,76,117,110,101,110,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,51,57,51,53,52,44,51,55,46,49,50,48,48,56,57,93,44,91,45,55,56,46,52,52,51,54,52,52,44,51,55,46,48,55,57,51,55,49,93,44,91,45,55,56,46,52,57,51,48,50,56,44,51,54,46,56,57,49,50,50,93,44,91,45,55,56,46,50,52,49,53,48,57,44,51,54,46,56,48,55,57,53,56,93,44,91,45,55,56,46,48,50,55,52,49,49,44,51,54,46,55,55,55,56,53,56,93,44,91,45,55,56,46,48,48,51,54,51,57,44,51,55,46,48,50,50,55,53,54,93,44,91,45,55,56,46,49,55,48,56,57,53,44,51,55,46,48,53,51,57,52,57,93,44,91,45,55,56,46,50,51,57,51,53,52,44,51,55,46,49,50,48,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,84,114,97,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,49,57,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,55,50,55,52,53,44,52,55,46,54,55,50,48,53,49,93,44,91,45,57,55,46,52,55,52,50,50,56,44,52,55,46,51,50,52,54,50,49,93,44,91,45,57,55,46,52,53,49,53,49,50,44,52,55,46,50,51,57,48,54,49,93,44,91,45,57,54,46,56,51,51,51,57,51,44,52,55,46,50,51,56,48,52,49,93,44,91,45,57,54,46,56,52,56,57,50,51,44,52,55,46,52,57,56,57,57,49,93,44,91,45,57,54,46,56,56,54,56,52,54,44,52,55,46,54,55,50,48,54,51,93,44,91,45,57,55,46,52,55,50,55,52,53,44,52,55,46,54,55,50,48,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,72,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,57,54,49,44,34,98,101,100,115,34,58,54,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,52,51,52,48,53,44,51,52,46,53,48,53,52,57,52,93,44,91,45,56,51,46,57,56,48,54,52,57,44,51,52,46,52,49,56,51,56,57,93,44,91,45,56,51,46,57,53,55,48,55,55,44,51,52,46,51,51,52,48,49,49,93,44,91,45,56,51,46,57,50,55,50,56,52,44,51,52,46,50,55,57,51,57,57,93,44,91,45,56,52,46,48,54,50,56,52,49,44,51,52,46,49,54,55,56,55,51,93,44,91,45,56,51,46,56,54,56,48,51,44,51,52,46,48,57,56,50,56,49,93,44,91,45,56,51,46,56,49,55,54,56,50,44,51,52,46,49,50,55,52,57,51,93,44,91,45,56,51,46,54,50,48,49,49,53,44,51,52,46,50,57,53,50,55,54,93,44,91,45,56,51,46,54,49,53,50,53,49,44,51,52,46,52,51,49,55,52,56,93,44,91,45,56,51,46,54,54,54,52,49,53,44,51,52,46,53,48,51,54,48,50,93,44,91,45,56,51,46,56,52,51,52,48,53,44,51,52,46,53,48,53,52,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,51,34,44,34,78,65,77,69,34,58,34,84,114,101,117,116,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,52,55,55,51,51,44,51,50,46,53,49,50,53,48,55,93,44,91,45,56,50,46,55,50,49,57,54,52,44,51,50,46,51,48,57,50,56,51,93,44,91,45,56,50,46,54,53,53,52,56,54,44,51,50,46,50,57,55,53,54,49,93,44,91,45,56,50,46,52,48,57,49,51,44,51,50,46,51,53,51,55,51,56,93,44,91,45,56,50,46,52,48,57,49,49,56,44,51,50,46,51,53,51,56,51,93,44,91,45,56,50,46,51,56,54,49,48,54,44,51,50,46,52,52,48,51,55,93,44,91,45,56,50,46,52,57,57,57,55,49,44,51,50,46,52,57,56,51,55,56,93,44,91,45,56,50,46,54,52,55,55,51,51,44,51,50,46,53,49,50,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,49,55,56,52,51,44,51,49,46,54,49,57,55,55,49,93,44,91,45,56,52,46,56,49,57,56,48,55,44,51,49,46,53,48,49,49,57,50,93,44,91,45,56,52,46,55,56,57,48,51,50,44,51,49,46,52,51,54,51,53,54,93,44,91,45,56,52,46,54,51,55,53,55,57,44,51,49,46,52,51,51,57,50,54,93,44,91,45,56,52,46,52,50,57,56,55,54,44,51,49,46,52,51,54,54,54,49,93,44,91,45,56,52,46,52,53,48,51,57,56,44,51,49,46,54,50,49,56,54,56,93,44,91,45,56,52,46,53,52,54,56,53,52,44,51,49,46,54,50,49,49,57,57,93,44,91,45,56,52,46,56,49,55,56,52,51,44,51,49,46,54,49,57,55,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,86,105,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,57,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,50,57,49,53,56,44,52,54,46,50,57,57,55,52,56,93,44,91,45,56,57,46,57,50,56,56,51,55,44,52,53,46,57,56,49,57,54,55,93,44,91,45,57,48,46,48,52,51,57,53,56,44,52,53,46,57,56,49,57,52,56,93,44,91,45,57,48,46,48,52,50,56,53,55,44,52,53,46,56,57,55,50,54,51,93,44,91,45,56,57,46,48,52,55,54,48,49,44,52,53,46,56,57,53,51,53,53,93,44,91,45,56,56,46,57,51,51,50,50,50,44,52,53,46,57,56,50,50,55,54,93,44,91,45,56,56,46,57,51,50,55,53,55,44,52,54,46,48,55,51,54,54,56,93,44,91,45,56,56,46,57,57,48,56,54,52,44,52,54,46,48,57,55,51,56,49,93,44,91,45,56,57,46,48,57,49,54,51,56,44,52,54,46,49,51,56,52,52,55,93,44,91,45,56,57,46,57,50,57,49,53,56,44,52,54,46,50,57,57,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,108,116,114,97,109,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,49,49,55,44,34,98,101,100,115,34,58,49,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,54,48,50,51,49,53,44,52,56,46,53,51,56,56,56,55,93,44,91,45,57,53,46,53,57,51,55,56,56,44,52,56,46,49,55,50,57,49,54,93,44,91,45,57,53,46,53,56,50,56,56,55,44,52,56,46,48,50,48,53,53,55,93,44,91,45,57,53,46,50,50,57,49,51,51,44,52,56,46,48,49,57,57,53,56,93,44,91,45,57,53,46,50,55,55,56,51,52,44,52,55,46,57,50,53,51,52,54,93,44,91,45,57,53,46,49,57,51,55,48,53,44,52,55,46,56,55,50,53,52,52,93,44,91,45,57,53,46,49,56,51,50,49,54,44,52,55,46,52,49,50,55,55,51,93,44,91,45,57,52,46,54,55,48,50,49,52,44,52,55,46,52,49,48,49,53,49,93,44,91,45,57,52,46,52,49,54,50,55,57,44,52,55,46,52,52,52,56,50,56,93,44,91,45,57,52,46,52,49,56,53,52,51,44,52,55,46,56,52,53,56,49,54,93,44,91,45,57,52,46,52,50,56,55,48,50,44,52,56,46,51,54,55,51,51,51,93,44,91,45,57,53,46,50,49,48,57,53,51,44,52,56,46,51,54,53,57,55,49,93,44,91,45,57,53,46,50,49,49,57,54,54,44,52,56,46,53,51,57,57,54,49,93,44,91,45,57,53,46,51,52,50,53,52,44,52,56,46,53,52,48,50,49,49,93,44,91,45,57,53,46,54,48,50,51,49,53,44,52,56,46,53,51,56,56,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,111,97,109,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,50,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,52,52,52,53,54,44,49,56,46,49,55,54,54,55,52,93,44,91,45,54,54,46,52,51,48,51,49,52,44,49,56,46,48,56,50,48,53,51,93,44,91,45,54,54,46,52,50,54,57,56,57,44,49,56,46,48,52,50,54,50,55,93,44,91,45,54,54,46,51,51,49,50,52,52,44,49,56,46,48,49,53,56,57,49,93,44,91,45,54,54,46,50,53,55,53,50,55,44,49,56,46,48,55,53,56,56,52,93,44,91,45,54,54,46,51,49,52,56,52,56,44,49,56,46,49,53,50,48,56,56,93,44,91,45,54,54,46,51,55,51,55,54,56,44,49,56,46,49,55,51,54,57,52,93,44,91,45,54,54,46,52,52,52,53,54,44,49,56,46,49,55,54,54,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,117,195,161,110,105,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,56,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,57,53,56,55,52,56,44,49,56,46,48,51,50,52,55,55,93,44,91,45,54,54,46,57,57,57,54,49,57,44,49,55,46,56,56,51,57,93,44,91,45,54,54,46,56,51,57,57,50,57,44,49,55,46,56,57,56,57,57,51,93,44,91,45,54,54,46,56,53,56,50,51,51,44,49,55,46,57,53,48,56,50,53,93,44,91,45,54,54,46,56,56,52,54,53,51,44,49,56,46,48,50,52,56,49,54,93,44,91,45,54,54,46,57,53,56,55,52,56,44,49,56,46,48,51,50,52,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,68,111,114,99,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,54,49,44,34,98,101,100,115,34,58,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,57,52,53,50,52,56,44,51,56,46,54,55,52,49,48,57,93,44,91,45,55,54,46,48,50,51,52,52,53,44,51,56,46,53,55,51,56,55,53,93,44,91,45,55,54,46,50,52,48,49,53,44,51,56,46,54,54,51,50,48,52,93,44,91,45,55,54,46,52,51,56,56,49,52,44,51,56,46,53,55,53,51,51,54,93,44,91,45,55,54,46,51,50,49,57,48,56,44,51,56,46,51,50,55,50,56,52,93,44,91,45,55,54,46,50,48,52,55,49,57,44,51,56,46,48,53,56,52,49,93,44,91,45,55,54,46,48,55,56,53,55,53,44,51,56,46,48,54,48,57,50,93,44,91,45,55,53,46,57,52,56,52,53,52,44,51,56,46,50,49,53,57,54,93,44,91,45,55,53,46,56,50,51,55,48,54,44,51,56,46,52,56,49,48,50,50,93,44,91,45,55,53,46,55,48,49,53,54,57,44,51,56,46,53,54,48,55,51,54,93,44,91,45,55,53,46,55,48,55,52,52,55,44,51,56,46,54,51,53,51,57,54,93,44,91,45,55,53,46,56,51,55,57,55,52,44,51,56,46,55,48,51,57,57,93,44,91,45,55,53,46,57,52,53,50,52,56,44,51,56,46,54,55,52,49,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,50,50,48,44,34,98,101,100,115,34,58,49,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,52,55,53,57,55,44,52,49,46,50,55,53,54,50,57,93,44,91,45,55,54,46,54,52,48,55,54,55,44,52,49,46,49,53,53,55,49,56,93,44,91,45,55,54,46,54,49,56,57,55,49,44,52,49,46,48,54,51,55,53,57,93,44,91,45,55,54,46,53,49,50,52,50,49,44,52,48,46,57,52,54,49,48,50,93,44,91,45,55,54,46,53,50,56,48,51,52,44,52,48,46,56,56,50,53,49,53,93,44,91,45,55,54,46,51,56,48,49,53,50,44,52,48,46,55,55,53,53,49,49,93,44,91,45,55,54,46,50,48,55,56,50,55,44,52,48,46,57,52,57,55,52,93,44,91,45,55,54,46,51,49,57,50,51,54,44,52,49,46,50,48,56,48,57,50,93,44,91,45,55,54,46,51,49,48,49,51,51,44,52,49,46,51,49,48,49,57,57,93,44,91,45,55,54,46,52,52,55,53,57,55,44,52,49,46,50,55,53,54,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,49,57,56,44,34,98,101,100,115,34,58,50,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,51,54,48,54,57,44,52,48,46,48,52,48,49,56,50,93,44,91,45,56,52,46,48,53,49,48,49,50,44,51,57,46,56,55,57,56,49,93,44,91,45,56,52,46,48,53,51,55,51,54,44,51,57,46,56,53,48,52,53,56,93,44,91,45,56,51,46,56,50,55,52,50,53,44,51,57,46,56,50,50,54,53,49,93,44,91,45,56,51,46,54,52,55,49,54,57,44,51,57,46,55,55,51,48,50,57,93,44,91,45,56,51,46,53,56,56,48,52,49,44,51,57,46,55,54,56,55,55,56,93,44,91,45,56,51,46,53,49,54,49,53,53,44,52,48,46,48,49,48,49,56,56,93,44,91,45,56,52,46,48,51,54,48,54,57,44,52,48,46,48,52,48,49,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,51,34,44,34,78,65,77,69,34,58,34,77,97,118,101,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,57,55,48,44,34,98,101,100,115,34,58,49,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,54,54,55,53,52,56,44,50,57,46,48,56,52,50,57,50,93,44,91,45,49,48,48,46,54,51,49,54,49,49,44,50,56,46,57,48,50,56,51,57,93,44,91,45,49,48,48,46,53,52,54,53,55,54,44,50,56,46,56,50,52,57,50,51,93,44,91,45,49,48,48,46,53,48,48,51,53,52,44,50,56,46,54,54,49,57,54,93,44,91,45,49,48,48,46,51,51,54,49,56,55,44,50,56,46,52,51,48,49,56,49,93,44,91,45,49,48,48,46,50,57,52,50,57,54,44,50,56,46,50,56,52,51,56,93,44,91,45,49,48,48,46,50,49,50,49,56,57,44,50,56,46,49,57,54,56,51,55,93,44,91,45,49,48,48,46,49,49,51,55,49,57,44,50,56,46,49,57,55,56,49,57,93,44,91,45,49,48,48,46,49,49,52,51,51,54,44,50,56,46,54,52,56,49,50,50,93,44,91,45,49,48,48,46,49,49,49,52,48,54,44,50,57,46,48,56,54,51,49,56,93,44,91,45,49,48,48,46,54,54,55,53,52,56,44,50,57,46,48,56,52,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,80,105,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,57,55,50,50,44,34,98,101,100,115,34,58,51,50,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,52,53,49,53,50,50,44,51,50,46,53,49,51,57,57,53,93,44,91,45,49,49,49,46,53,54,57,50,53,54,44,51,50,46,53,48,54,55,54,57,93,44,91,45,49,49,50,46,50,48,51,54,50,52,44,51,50,46,53,48,54,55,50,49,93,44,91,45,49,49,51,46,51,51,51,56,57,52,44,51,50,46,53,48,53,49,56,56,93,44,91,45,49,49,51,46,51,51,51,55,54,55,44,51,50,46,48,51,56,57,50,55,93,44,91,45,49,49,50,46,49,52,57,55,49,50,44,51,49,46,54,55,51,56,55,49,93,44,91,45,49,49,49,46,51,54,54,51,55,50,44,51,49,46,52,50,54,48,54,49,93,44,91,45,49,49,49,46,51,54,54,57,50,50,44,51,49,46,53,50,49,51,54,49,93,44,91,45,49,49,49,46,49,54,51,55,49,55,44,51,49,46,53,50,49,55,50,52,93,44,91,45,49,49,49,46,49,54,52,49,56,51,44,51,49,46,55,50,53,56,57,93,44,91,45,49,49,48,46,52,53,50,51,44,51,49,46,55,51,49,50,49,57,93,44,91,45,49,49,48,46,52,53,49,48,48,50,44,51,50,46,52,50,55,53,52,54,93,44,91,45,49,49,48,46,52,53,49,53,50,50,44,51,50,46,53,49,51,57,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,54,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,54,34,44,34,78,65,77,69,34,58,34,67,105,98,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,55,56,44,34,98,101,100,115,34,58,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,51,48,57,51,56,54,44,51,53,46,51,48,53,54,56,55,93,44,91,45,49,48,56,46,52,54,56,55,49,53,44,51,53,46,51,48,54,54,53,56,93,44,91,45,49,48,56,46,52,54,57,52,48,50,44,51,52,46,57,53,57,48,56,49,93,44,91,45,49,48,57,46,48,52,53,57,57,54,44,51,52,46,57,53,57,56,49,57,93,44,91,45,49,48,57,46,48,52,54,49,50,50,44,51,52,46,53,55,57,50,57,49,93,44,91,45,49,48,55,46,55,50,52,55,57,52,44,51,52,46,53,55,56,49,51,50,93,44,91,45,49,48,55,46,50,48,49,55,52,51,44,51,52,46,53,55,56,55,53,55,93,44,91,45,49,48,55,46,50,48,50,56,56,50,44,51,52,46,57,53,55,53,55,50,93,44,91,45,49,48,55,46,48,54,54,53,54,50,44,51,52,46,57,53,55,49,57,93,44,91,45,49,48,55,46,49,57,55,50,52,52,44,51,53,46,50,49,57,52,53,57,93,44,91,45,49,48,55,46,51,48,57,51,56,54,44,51,53,46,51,48,53,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,117,114,108,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,54,51,54,55,44,34,98,101,100,115,34,58,57,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,50,50,48,52,56,44,52,48,46,49,53,48,51,49,49,93,44,91,45,55,52,46,57,55,51,57,56,49,44,52,48,46,48,52,56,53,57,53,93,44,91,45,55,53,46,48,53,57,57,49,51,44,51,57,46,57,57,49,53,50,57,93,44,91,45,55,52,46,57,51,48,55,52,53,44,51,57,46,56,56,53,57,48,56,93,44,91,45,55,52,46,57,48,50,57,54,51,44,51,57,46,55,57,49,49,48,56,93,44,91,45,55,52,46,55,51,54,50,49,54,44,51,57,46,55,50,57,55,55,53,93,44,91,45,55,52,46,54,53,57,50,57,53,44,51,57,46,54,51,49,50,51,51,93,44,91,45,55,52,46,52,49,55,51,57,51,44,51,57,46,53,53,55,50,53,53,93,44,91,45,55,52,46,51,56,57,55,48,56,44,51,57,46,55,55,51,50,56,51,93,44,91,45,55,52,46,53,53,51,49,48,53,44,52,48,46,48,55,57,49,51,93,44,91,45,55,52,46,53,56,55,56,51,53,44,52,48,46,49,51,56,50,53,52,93,44,91,45,55,52,46,55,50,50,48,52,56,44,52,48,46,49,53,48,51,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,82,117,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,50,55,51,44,34,98,101,100,115,34,58,49,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,54,50,56,50,51,44,52,51,46,55,53,51,48,56,52,93,44,91,45,55,51,46,52,50,55,57,49,44,52,51,46,54,51,52,52,50,56,93,44,91,45,55,51,46,51,48,50,53,53,51,44,52,51,46,54,50,53,55,48,57,93,44,91,45,55,51,46,50,52,54,56,52,52,44,52,51,46,53,49,55,50,53,50,93,44,91,45,55,51,46,50,53,52,54,51,51,44,52,51,46,51,49,52,54,55,53,93,44,91,45,55,50,46,56,54,55,57,48,50,44,52,51,46,51,48,48,55,52,50,93,44,91,45,55,50,46,55,53,57,55,57,57,44,52,51,46,51,53,52,49,52,52,93,44,91,45,55,50,46,55,56,56,57,56,55,44,52,51,46,53,48,48,48,55,93,44,91,45,55,50,46,55,48,48,57,52,53,44,52,51,46,54,56,50,56,51,49,93,44,91,45,55,50,46,56,50,48,48,52,51,44,52,51,46,55,49,54,56,51,52,93,44,91,45,55,50,46,55,56,50,56,49,50,44,52,51,46,56,48,52,51,51,56,93,44,91,45,55,50,46,57,53,56,56,53,51,44,52,51,46,56,50,54,53,52,50,93,44,91,45,55,51,46,50,49,56,57,53,54,44,52,51,46,56,51,55,50,57,49,93,44,91,45,55,51,46,50,48,54,51,50,50,44,52,51,46,55,54,54,55,55,53,93,44,91,45,55,51,46,51,54,50,56,50,51,44,52,51,46,55,53,51,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,69,97,114,108,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,52,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,51,55,53,55,57,44,51,49,46,52,51,51,57,50,54,93,44,91,45,56,52,46,55,56,57,48,51,50,44,51,49,46,52,51,54,51,53,54,93,44,91,45,56,52,46,56,49,57,56,48,55,44,51,49,46,53,48,49,49,57,50,93,44,91,45,56,53,46,48,52,53,52,57,53,44,51,49,46,53,49,55,49,50,57,93,44,91,45,56,53,46,48,56,55,54,53,49,44,51,49,46,51,48,56,54,55,55,93,44,91,45,56,53,46,48,57,57,54,52,55,44,51,49,46,49,54,52,57,52,50,93,44,91,45,56,53,46,48,50,56,53,54,52,44,51,49,46,48,55,53,53,50,51,93,44,91,45,56,52,46,57,50,50,52,50,51,44,51,49,46,48,55,50,53,57,93,44,91,45,56,52,46,57,49,55,52,50,49,44,51,49,46,50,53,53,57,57,93,44,91,45,56,52,46,54,52,49,54,55,51,44,51,49,46,50,53,56,57,54,55,93,44,91,45,56,52,46,54,51,55,53,55,57,44,51,49,46,52,51,51,57,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,68,117,107,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,48,53,49,56,53,52,44,52,49,46,52,49,54,55,50,57,93,44,91,45,55,48,46,57,48,49,56,54,54,44,52,49,46,51,54,49,55,55,93,44,91,45,55,48,46,56,55,55,51,50,55,44,52,49,46,50,50,52,49,52,52,93,44,91,45,55,48,46,56,48,53,57,53,44,52,49,46,49,57,56,55,52,50,93,44,91,45,55,48,46,54,56,53,48,50,44,52,49,46,50,57,51,49,55,54,93,44,91,45,55,48,46,52,57,51,51,48,56,44,52,49,46,50,55,57,57,55,53,93,44,91,45,55,48,46,51,50,56,49,56,50,44,52,49,46,51,56,48,49,53,57,93,44,91,45,55,48,46,50,51,52,51,51,44,52,49,46,51,56,51,50,50,57,93,44,91,45,55,48,46,51,50,51,53,57,51,44,52,49,46,51,57,49,54,48,55,93,44,91,45,55,48,46,53,48,50,56,51,50,44,52,49,46,53,48,48,54,51,53,93,44,91,45,55,48,46,55,53,56,52,54,52,44,52,49,46,53,54,48,57,51,49,93,44,91,45,55,49,46,48,53,49,56,53,52,44,52,49,46,52,49,54,55,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,77,99,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,53,57,56,51,51,44,52,56,46,52,53,56,52,52,56,93,44,91,45,49,48,49,46,48,49,52,50,51,50,44,52,56,46,51,55,49,52,51,50,93,44,91,45,49,48,49,46,48,49,53,48,50,52,44,52,56,46,48,50,50,55,51,57,93,44,91,45,49,48,48,46,57,55,49,49,53,56,44,52,55,46,56,52,56,54,57,54,93,44,91,45,49,48,48,46,53,56,53,49,55,57,44,52,55,46,56,52,55,55,54,49,93,44,91,45,49,48,48,46,49,57,55,57,57,54,44,52,55,46,56,52,55,54,53,50,93,44,91,45,49,48,48,46,50,51,55,48,50,50,44,52,56,46,48,50,49,56,54,54,93,44,91,45,49,48,48,46,50,51,55,48,57,57,44,52,56,46,51,55,49,50,52,52,93,44,91,45,49,48,48,46,50,55,54,54,49,57,44,52,56,46,53,52,52,56,49,51,93,44,91,45,49,48,48,46,52,48,54,55,56,44,52,56,46,54,51,49,56,55,56,93,44,91,45,49,48,49,46,48,53,57,54,50,52,44,52,56,46,54,51,50,51,54,49,93,44,91,45,49,48,49,46,48,53,57,54,54,51,44,52,56,46,53,52,53,52,49,57,93,44,91,45,49,48,49,46,48,53,57,56,51,51,44,52,56,46,52,53,56,52,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,54,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,55,55,50,52,44,52,50,46,51,53,49,56,54,49,93,44,91,45,57,55,46,51,54,56,52,48,52,44,52,50,46,48,57,48,57,50,50,93,44,91,45,57,55,46,48,49,57,51,53,57,44,52,50,46,48,57,48,53,55,55,93,44,91,45,57,54,46,56,50,51,54,55,44,52,50,46,48,57,48,52,49,49,93,44,91,45,57,54,46,56,50,50,52,57,55,44,52,50,46,50,54,52,50,57,50,93,44,91,45,57,55,46,48,49,55,55,51,44,52,50,46,50,54,52,52,53,51,93,44,91,45,57,55,46,48,49,55,55,56,57,44,52,50,46,51,53,49,51,52,55,93,44,91,45,57,55,46,51,54,55,55,50,52,44,52,50,46,51,53,49,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,76,97,77,111,117,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,51,54,54,50,53,44,52,54,46,54,51,48,50,49,49,93,44,91,45,57,57,46,48,51,55,50,56,57,44,52,54,46,50,56,50,56,55,49,93,44,91,45,57,57,46,48,48,51,49,49,56,44,52,54,46,50,56,50,56,57,56,93,44,91,45,57,56,46,48,51,52,53,53,54,44,52,54,46,50,56,50,54,53,55,93,44,91,45,57,56,46,48,51,51,56,54,50,44,52,54,46,54,51,48,55,50,55,93,44,91,45,57,56,46,52,51,57,48,53,54,44,52,54,46,54,51,49,49,50,93,44,91,45,57,57,46,48,51,54,54,50,53,44,52,54,46,54,51,48,50,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,117,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,50,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,51,50,48,54,48,57,44,52,52,46,50,51,51,49,54,52,93,44,91,45,49,49,51,46,52,49,54,53,50,53,44,52,52,46,50,51,51,51,54,52,93,44,91,45,49,49,51,46,52,52,52,56,57,49,44,52,51,46,57,49,56,53,52,50,93,44,91,45,49,49,51,46,51,55,55,56,55,55,44,52,51,46,56,48,57,55,93,44,91,45,49,49,51,46,53,50,55,56,48,52,44,52,51,46,55,49,57,49,51,53,93,44,91,45,49,49,51,46,55,54,49,49,55,44,52,51,46,54,50,49,49,57,52,93,44,91,45,49,49,51,46,55,57,56,52,52,49,44,52,51,46,53,54,57,50,49,55,93,44,91,45,49,49,51,46,55,48,49,49,53,51,44,52,51,46,53,56,52,53,53,51,93,44,91,45,49,49,51,46,54,51,52,51,51,53,44,52,51,46,52,57,55,51,48,56,93,44,91,45,49,49,51,46,54,51,53,50,51,44,52,51,46,51,54,55,53,52,54,93,44,91,45,49,49,51,46,51,54,49,57,49,44,52,51,46,51,54,55,49,54,93,44,91,45,49,49,51,46,51,54,49,57,53,56,44,52,51,46,50,56,52,54,55,56,93,44,91,45,49,49,51,46,48,48,55,51,49,56,44,52,51,46,50,56,52,55,55,56,93,44,91,45,49,49,50,46,57,51,54,56,51,53,44,52,51,46,52,52,57,51,56,54,93,44,91,45,49,49,50,46,54,57,55,49,50,50,44,52,51,46,54,50,51,49,52,93,44,91,45,49,49,50,46,54,57,53,50,52,50,44,52,51,46,57,55,49,57,52,49,93,44,91,45,49,49,50,46,57,57,52,51,50,51,44,52,51,46,57,55,50,51,54,50,93,44,91,45,49,49,50,46,57,57,53,48,57,49,44,52,52,46,50,51,52,49,50,54,93,44,91,45,49,49,51,46,51,50,48,54,48,57,44,52,52,46,50,51,51,49,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,111,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,48,51,56,44,34,98,101,100,115,34,58,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,53,48,49,48,56,50,44,52,53,46,48,49,51,51,53,53,93,44,91,45,55,49,46,52,57,54,48,57,51,44,52,52,46,57,48,55,56,52,57,93,44,91,45,55,49,46,54,50,57,57,49,57,44,52,52,46,55,53,51,53,55,56,93,44,91,45,55,49,46,53,53,51,55,53,54,44,52,52,46,54,51,48,52,50,54,93,44,91,45,55,49,46,54,48,48,49,53,55,44,52,52,46,52,56,53,56,51,51,93,44,91,45,55,49,46,55,54,53,54,56,52,44,52,52,46,52,48,54,50,57,53,93,44,91,45,55,49,46,53,55,53,56,49,57,44,52,52,46,50,53,52,53,57,54,93,44,91,45,55,49,46,52,49,53,56,57,56,44,52,52,46,50,49,50,49,54,57,93,44,91,45,55,49,46,51,48,54,48,51,54,44,52,52,46,49,51,55,50,55,50,93,44,91,45,55,49,46,50,53,49,57,53,55,44,52,52,46,50,52,52,50,54,54,93,44,91,45,55,49,46,48,52,50,50,56,44,52,52,46,50,51,55,53,49,52,93,44,91,45,55,49,46,48,48,57,57,55,54,44,52,52,46,50,56,52,56,57,57,93,44,91,45,55,49,46,48,51,51,53,50,52,44,52,52,46,54,57,55,54,51,55,93,44,91,45,55,49,46,48,56,51,57,50,56,44,52,53,46,51,48,53,52,56,52,93,44,91,45,55,49,46,49,51,50,57,49,44,52,53,46,50,52,52,53,49,50,93,44,91,45,55,49,46,50,56,55,57,49,51,44,52,53,46,51,48,48,57,48,56,93,44,91,45,55,49,46,51,57,55,54,54,44,52,53,46,50,48,53,51,50,55,93,44,91,45,55,49,46,53,48,49,48,56,50,44,52,53,46,48,49,51,51,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,75,105,100,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,51,50,54,49,44,52,55,46,51,50,55,50,54,50,93,44,91,45,49,48,48,46,49,49,52,54,51,55,44,52,54,46,57,56,49,54,54,54,93,44,91,45,49,48,48,46,48,55,53,50,50,57,44,52,54,46,57,56,49,50,56,50,93,44,91,45,49,48,48,46,48,56,49,49,57,56,44,52,54,46,54,51,51,51,57,54,93,44,91,45,57,57,46,57,49,53,53,56,54,44,52,54,46,54,51,50,57,50,54,93,44,91,45,57,57,46,52,52,57,55,50,44,52,54,46,54,51,49,54,51,93,44,91,45,57,57,46,52,52,53,56,57,49,44,52,54,46,57,56,48,49,56,57,93,44,91,45,57,57,46,52,56,49,48,50,44,52,54,46,57,56,48,51,54,57,93,44,91,45,57,57,46,52,56,49,48,57,53,44,52,55,46,51,50,55,48,50,55,93,44,91,45,49,48,48,46,48,51,51,50,57,50,44,52,55,46,51,50,55,49,54,53,93,44,91,45,49,48,48,46,49,49,51,50,54,49,44,52,55,46,51,50,55,50,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,51,34,44,34,78,65,77,69,34,58,34,75,108,101,98,101,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,52,50,53,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,52,50,49,52,54,44,50,55,46,54,51,53,57,51,50,93,44,91,45,57,56,46,48,53,57,56,44,50,55,46,54,51,53,56,54,57,93,44,91,45,57,56,46,48,53,56,48,55,56,44,50,55,46,50,54,48,57,56,49,93,44,91,45,57,55,46,57,56,53,56,56,55,44,50,55,46,50,48,57,51,48,56,93,44,91,45,57,55,46,56,49,52,57,51,52,44,50,55,46,50,55,49,56,57,51,93,44,91,45,57,55,46,50,56,56,51,51,55,44,50,55,46,50,55,55,53,56,52,93,44,91,45,57,55,46,49,54,53,48,57,55,44,50,55,46,53,54,56,51,93,44,91,45,57,55,46,56,52,48,54,55,56,44,50,55,46,53,53,56,51,53,56,93,44,91,45,57,55,46,57,52,50,49,52,54,44,50,55,46,54,51,53,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,80,111,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,48,52,49,44,34,98,101,100,115,34,58,50,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,50,49,44,52,49,46,55,54,48,56,56,57,93,44,91,45,56,55,46,50,49,56,56,54,50,44,52,49,46,50,52,50,48,50,55,93,44,91,45,56,55,46,49,51,49,54,53,51,44,52,49,46,50,56,54,49,53,53,93,44,91,45,56,54,46,57,51,48,48,55,57,44,52,49,46,50,51,54,55,57,56,93,44,91,45,56,54,46,57,51,51,51,51,52,44,52,49,46,55,54,49,48,51,53,93,44,91,45,56,55,46,50,48,55,55,55,52,44,52,49,46,55,54,48,57,53,54,93,44,91,45,56,55,46,50,50,49,44,52,49,46,55,54,48,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,50,50,53,57,56,44,51,50,46,53,55,54,52,51,51,93,44,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,44,91,45,56,56,46,57,49,51,56,52,55,44,51,50,46,50,50,52,49,56,54,93,44,91,45,56,56,46,57,49,52,53,49,54,44,51,50,46,53,55,54,57,53,53,93,44,91,45,56,57,46,51,49,55,53,56,56,44,51,50,46,53,55,54,52,53,56,93,44,91,45,56,57,46,51,50,50,53,57,56,44,51,50,46,53,55,54,52,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,83,97,109,112,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,53,54,49,44,34,98,101,100,115,34,58,49,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,49,55,49,50,55,44,51,53,46,50,52,53,53,55,56,93,44,91,45,55,56,46,54,55,48,54,53,44,51,53,46,48,57,50,53,57,50,93,44,91,45,55,56,46,54,52,55,55,51,52,44,51,52,46,57,57,52,55,52,93,44,91,45,55,56,46,52,57,52,55,48,53,44,51,52,46,56,53,54,49,56,50,93,44,91,45,55,56,46,51,50,52,53,50,44,51,52,46,54,54,54,48,57,53,93,44,91,45,55,56,46,50,53,52,52,52,49,44,51,52,46,53,53,51,53,57,53,93,44,91,45,55,56,46,49,49,52,48,48,55,44,51,52,46,55,50,49,55,57,53,93,44,91,45,55,56,46,49,57,56,54,52,50,44,51,52,46,55,52,49,54,51,55,93,44,91,45,55,56,46,49,52,55,49,50,57,44,51,52,46,57,48,50,53,48,54,93,44,91,45,55,56,46,49,54,51,52,50,44,51,53,46,49,56,57,55,49,54,93,44,91,45,55,56,46,51,48,54,53,56,44,51,53,46,50,56,55,54,48,52,93,44,91,45,55,56,46,52,49,49,55,51,52,44,51,53,46,50,53,52,54,54,51,93,44,91,45,55,56,46,53,51,56,51,52,57,44,51,53,46,51,49,54,52,49,93,44,91,45,55,56,46,54,49,55,49,50,55,44,51,53,46,50,52,53,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,77,111,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,53,55,53,57,44,51,53,46,52,49,50,52,55,54,93,44,91,45,56,54,46,52,50,49,54,55,50,44,51,53,46,51,49,57,50,54,55,93,44,91,45,56,54,46,53,50,53,51,48,54,44,51,53,46,51,53,52,55,49,56,93,44,91,45,56,54,46,51,49,56,49,54,56,44,51,53,46,49,50,54,57,56,54,93,44,91,45,56,54,46,50,54,49,52,56,57,44,51,53,46,51,51,51,53,55,57,93,44,91,45,56,54,46,50,53,55,53,57,44,51,53,46,52,49,50,52,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,80,105,110,101,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,55,56,55,53,44,34,98,101,100,115,34,58,51,56,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,48,52,54,49,53,44,50,56,46,49,55,49,56,55,50,93,44,91,45,56,50,46,56,55,56,49,48,53,44,50,56,46,48,52,50,56,50,93,44,91,45,56,50,46,57,48,49,51,51,55,44,50,55,46,56,51,57,49,48,55,93,44,91,45,56,50,46,56,48,53,55,44,50,55,46,55,48,57,51,56,52,93,44,91,45,56,50,46,56,49,51,51,54,50,44,50,55,46,54,52,53,55,52,56,93,44,91,45,56,50,46,54,48,54,49,51,57,44,50,55,46,54,52,51,54,51,56,93,44,91,45,56,50,46,53,52,49,53,49,56,44,50,55,46,55,56,50,50,48,52,93,44,91,45,56,50,46,53,57,55,50,49,57,44,50,55,46,57,51,53,49,57,57,93,44,91,45,56,50,46,54,52,56,51,50,44,50,55,46,57,52,55,51,57,56,93,44,91,45,56,50,46,54,53,49,49,54,53,44,50,56,46,49,55,51,50,54,54,93,44,91,45,56,50,46,57,48,52,54,49,53,44,50,56,46,49,55,49,56,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,97,114,114,97,110,113,117,105,116,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,55,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,53,48,55,57,51,44,49,56,46,50,52,49,50,51,53,93,44,91,45,54,54,46,51,55,51,55,54,56,44,49,56,46,49,55,51,54,57,52,93,44,91,45,54,54,46,51,49,52,56,52,56,44,49,56,46,49,53,50,48,56,56,93,44,91,45,54,54,46,50,52,50,55,51,53,44,49,56,46,49,56,48,50,52,56,93,44,91,45,54,54,46,50,52,48,52,54,44,49,56,46,49,56,52,55,57,52,93,44,91,45,54,54,46,50,54,54,52,54,54,44,49,56,46,50,52,53,50,55,93,44,91,45,54,54,46,51,49,51,50,57,57,44,49,56,46,50,52,57,51,50,52,93,44,91,45,54,54,46,51,53,48,55,57,51,44,49,56,46,50,52,49,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,50,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,48,52,54,48,54,44,51,56,46,49,50,53,49,57,53,93,44,91,45,56,56,46,55,48,54,54,50,50,44,51,55,46,57,48,54,55,57,55,93,44,91,45,56,56,46,51,55,52,53,51,44,51,55,46,57,48,55,54,55,56,93,44,91,45,56,56,46,51,55,52,53,50,49,44,51,55,46,57,48,56,51,57,49,93,44,91,45,56,56,46,51,55,48,51,55,53,44,51,56,46,50,53,53,51,49,57,93,44,91,45,56,56,46,55,48,50,51,57,49,44,51,56,46,50,53,54,54,54,49,93,44,91,45,56,56,46,55,48,52,54,48,54,44,51,56,46,49,50,53,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,52,54,56,53,44,51,53,46,49,49,51,50,55,55,93,44,91,45,57,50,46,55,49,54,51,51,49,44,51,53,46,48,55,49,55,52,50,93,44,91,45,57,51,46,48,52,48,53,50,53,44,51,53,46,48,55,54,57,50,51,93,44,91,45,57,51,46,50,56,56,50,56,52,44,51,52,46,56,54,48,57,57,50,93,44,91,45,57,51,46,50,56,55,55,56,53,44,51,52,46,55,55,51,49,57,51,93,44,91,45,57,51,46,48,55,53,49,55,56,44,51,52,46,55,55,49,56,57,50,93,44,91,45,57,51,46,48,55,51,56,55,55,44,51,52,46,56,53,56,48,57,49,93,44,91,45,57,50,46,55,51,57,55,55,57,44,51,52,46,56,53,51,52,53,57,93,44,91,45,57,50,46,55,53,51,54,50,54,44,51,52,46,57,49,49,50,52,56,93,44,91,45,57,50,46,53,52,52,51,52,49,44,51,52,46,57,53,51,51,49,57,93,44,91,45,57,50,46,53,57,51,53,56,53,44,51,53,46,48,49,49,55,54,49,93,44,91,45,57,50,46,53,53,52,54,56,53,44,51,53,46,49,49,51,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,101,121,101,110,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,55,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,53,49,55,52,52,44,52,48,46,48,48,51,48,55,56,93,44,91,45,49,48,50,46,48,52,57,56,48,54,44,51,57,46,53,55,52,48,53,56,93,44,91,45,49,48,50,46,48,52,57,55,54,52,44,51,57,46,53,54,56,49,56,93,44,91,45,49,48,49,46,52,49,51,57,49,51,44,51,57,46,53,54,56,51,54,49,93,44,91,45,49,48,49,46,52,49,49,48,50,57,44,52,48,46,48,48,50,53,50,50,93,44,91,45,49,48,50,46,48,53,49,55,52,52,44,52,48,46,48,48,51,48,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,68,101,108,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,51,52,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,53,48,48,54,48,54,44,51,57,46,50,49,55,57,49,54,93,44,91,45,49,48,55,46,55,54,53,48,53,57,44,51,57,46,48,52,52,54,56,51,93,44,91,45,49,48,55,46,57,56,50,49,55,51,44,51,57,46,48,53,57,56,55,56,93,44,91,45,49,48,56,46,49,53,50,52,55,56,44,51,56,46,57,48,49,50,54,56,93,44,91,45,49,48,56,46,51,55,56,57,53,51,44,51,56,46,56,50,57,49,48,56,93,44,91,45,49,48,56,46,51,55,56,54,57,56,44,51,56,46,54,54,56,48,57,55,93,44,91,45,49,48,55,46,53,48,48,54,53,53,44,51,56,46,54,54,56,53,53,51,93,44,91,45,49,48,55,46,53,48,48,54,48,54,44,51,57,46,50,49,55,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,44,91,45,57,51,46,53,53,54,56,57,57,44,52,48,46,53,56,48,50,51,53,93,44,91,45,57,51,46,51,55,52,51,56,54,44,52,48,46,53,56,48,51,51,51,93,44,91,45,57,51,46,48,57,55,50,57,54,44,52,48,46,53,56,52,48,49,52,93,44,91,45,57,51,46,48,57,55,53,57,53,44,52,48,46,56,57,56,52,53,49,93,44,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,71,97,105,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,50,49,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,53,57,53,48,50,51,44,51,50,46,57,53,56,56,51,49,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,57,53,57,48,57,57,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,53,50,50,49,57,51,93,44,91,45,49,48,50,46,50,49,49,48,51,55,44,51,50,46,53,50,51,50,52,52,93,44,91,45,49,48,50,46,50,48,50,55,48,51,44,51,50,46,53,50,51,50,55,49,93,44,91,45,49,48,50,46,50,48,56,53,50,44,51,50,46,57,53,56,57,53,54,93,44,91,45,49,48,50,46,53,57,53,48,50,51,44,51,50,46,57,53,56,56,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,57,54,53,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,48,51,56,54,52,44,51,52,46,48,56,54,53,54,52,93,44,91,45,56,56,46,50,48,55,50,50,57,44,51,52,46,48,53,56,51,51,51,93,44,91,45,56,55,46,57,56,54,57,51,44,51,52,46,48,53,50,49,48,50,93,44,91,45,56,55,46,57,53,49,55,56,53,44,51,51,46,57,49,57,57,51,93,44,91,45,56,55,46,54,51,53,57,51,50,44,51,51,46,57,49,53,50,53,49,93,44,91,45,56,55,46,54,51,54,49,49,56,44,51,52,46,48,48,50,50,48,51,93,44,91,45,56,55,46,54,51,52,55,50,53,44,51,52,46,51,48,54,57,57,55,93,44,91,45,56,56,46,49,55,51,54,51,50,44,51,52,46,51,50,49,48,53,52,93,44,91,45,56,56,46,50,48,51,56,54,52,44,51,52,46,48,56,54,53,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,87,97,116,97,117,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,49,55,44,34,98,101,100,115,34,58,49,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,49,56,49,49,57,44,51,54,46,50,56,55,49,50,57,93,44,91,45,56,49,46,56,49,48,53,49,54,44,51,54,46,49,49,49,53,49,49,93,44,91,45,56,49,46,53,52,53,52,56,56,44,51,54,46,49,49,55,52,55,53,93,44,91,45,56,49,46,52,55,55,53,49,54,44,51,54,46,50,52,48,50,53,93,44,91,45,56,49,46,55,50,56,55,56,49,44,51,54,46,51,57,49,51,48,57,93,44,91,45,56,49,46,57,49,56,49,49,57,44,51,54,46,50,56,55,49,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,55,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,55,48,34,44,34,78,65,77,69,34,58,34,82,111,97,110,111,107,101,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,54,50,49,44,34,98,101,100,115,34,58,54,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,51,51,52,54,52,44,51,55,46,50,54,50,56,57,93,44,91,45,55,57,46,57,52,54,56,49,55,44,51,55,46,50,49,51,48,51,55,93,44,91,45,55,57,46,57,48,53,52,54,44,51,55,46,51,50,49,56,51,53,93,44,91,45,56,48,46,48,50,50,50,50,54,44,51,55,46,51,48,56,51,51,56,93,44,91,45,56,48,46,48,51,51,52,54,52,44,51,55,46,50,54,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,55,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,49,52,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,57,53,48,49,49,44,51,50,46,48,56,55,53,51,50,93,44,91,45,49,48,49,46,54,56,56,55,52,44,51,50,46,53,50,53,50,50,50,93,44,91,45,49,48,50,46,50,48,50,55,48,51,44,51,50,46,53,50,51,50,55,49,93,44,91,45,49,48,50,46,50,49,49,48,51,55,44,51,50,46,53,50,51,50,52,52,93,44,91,45,49,48,50,46,50,49,49,50,52,57,44,51,50,46,48,56,54,56,93,44,91,45,49,48,49,46,55,55,54,48,56,53,44,51,50,46,48,56,54,57,50,53,93,44,91,45,49,48,49,46,54,57,53,48,49,49,44,51,50,46,48,56,55,53,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,66,111,119,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,56,53,56,44,34,98,101,100,115,34,58,56,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,52,54,48,57,54,44,51,51,46,55,48,51,48,49,54,93,44,91,45,57,52,46,55,52,54,57,50,53,44,51,51,46,51,50,56,57,51,56,93,44,91,45,57,52,46,54,53,50,50,54,44,51,51,46,50,54,56,56,54,49,93,44,91,45,57,52,46,52,54,56,52,52,50,44,51,51,46,50,57,52,51,49,51,93,44,91,45,57,52,46,50,51,49,51,51,51,44,51,51,46,50,52,49,48,55,51,93,44,91,45,57,52,46,50,49,56,55,55,55,44,51,51,46,50,57,54,52,48,50,93,44,91,45,57,52,46,48,52,50,57,56,55,44,51,51,46,50,55,49,50,52,50,93,44,91,45,57,52,46,48,52,51,52,53,44,51,51,46,53,53,50,50,53,51,93,44,91,45,57,52,46,50,57,49,50,49,50,44,51,51,46,53,56,49,52,55,56,93,44,91,45,57,52,46,51,56,57,53,51,44,51,51,46,53,52,54,55,51,57,93,44,91,45,57,52,46,52,56,53,56,55,56,44,51,51,46,54,51,55,56,54,53,93,44,91,45,57,52,46,53,54,52,48,55,54,44,51,51,46,54,50,54,50,54,53,93,44,91,45,57,52,46,55,52,54,48,57,54,44,51,51,46,55,48,51,48,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,87,101,98,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,55,55,51,49,44,34,98,101,100,115,34,58,53,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,56,53,52,52,51,44,52,49,46,52,50,54,51,55,52,93,44,91,45,49,49,50,46,48,50,56,54,55,50,44,52,49,46,51,51,54,53,49,50,93,44,91,45,49,49,50,46,50,51,56,48,54,53,44,52,49,46,51,51,54,53,53,50,93,44,91,45,49,49,50,46,52,57,51,53,49,53,44,52,49,46,48,55,54,56,56,56,93,44,91,45,49,49,50,46,49,56,54,54,57,51,44,52,49,46,49,53,51,48,50,56,93,44,91,45,49,49,49,46,56,53,54,50,52,55,44,52,49,46,49,51,57,48,56,51,93,44,91,45,49,49,49,46,56,53,55,55,57,57,44,52,49,46,49,57,55,55,53,51,93,44,91,45,49,49,49,46,54,53,56,54,51,54,44,52,49,46,49,56,53,55,49,56,93,44,91,45,49,49,49,46,52,57,54,56,49,53,44,52,49,46,50,51,48,54,49,93,44,91,45,49,49,49,46,52,50,48,55,50,56,44,52,49,46,51,54,49,51,48,56,93,44,91,45,49,49,49,46,53,49,48,56,51,57,44,52,49,46,52,50,51,49,93,44,91,45,49,49,49,46,54,54,54,53,55,54,44,52,49,46,52,50,56,56,51,93,44,91,45,49,49,49,46,55,50,54,49,56,49,44,52,49,46,51,55,53,57,56,54,93,44,91,45,49,49,49,46,56,56,53,52,52,51,44,52,49,46,52,50,54,51,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,55,50,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,52,48,51,53,51,44,51,57,46,57,52,56,50,51,53,93,44,91,45,57,49,46,56,52,54,55,52,51,44,51,57,46,54,53,56,53,49,51,93,44,91,45,57,49,46,55,49,53,50,52,55,44,51,57,46,54,53,55,54,52,52,93,44,91,45,57,49,46,55,49,53,52,57,55,44,51,57,46,54,56,54,52,57,50,93,44,91,45,57,49,46,51,48,54,54,57,51,44,51,57,46,54,56,52,56,54,53,93,44,91,45,57,49,46,51,54,53,49,50,53,44,51,57,46,55,53,56,55,50,51,93,44,91,45,57,49,46,52,51,51,55,57,56,44,51,57,46,56,52,49,56,54,53,93,44,91,45,57,49,46,52,51,53,53,49,55,44,51,57,46,57,52,53,50,50,50,93,44,91,45,57,49,46,56,52,48,51,53,51,44,51,57,46,57,52,56,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,52,52,56,44,34,98,101,100,115,34,58,51,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,54,48,48,52,54,44,52,52,46,52,48,51,50,54,51,93,44,91,45,55,54,46,49,54,49,56,50,53,44,52,52,46,50,56,48,55,55,54,93,44,91,45,55,54,46,52,51,56,50,56,55,44,52,52,46,48,57,52,49,55,50,93,44,91,45,55,54,46,55,51,52,55,50,53,44,52,51,46,55,48,56,49,50,49,93,44,91,45,55,54,46,54,52,52,55,49,50,44,52,51,46,55,48,51,52,54,54,93,44,91,45,55,54,46,48,50,50,48,48,51,44,52,51,46,54,54,56,49,52,51,93,44,91,45,55,53,46,55,55,52,53,53,51,44,52,51,46,54,56,56,56,56,52,93,44,91,45,55,53,46,55,53,56,49,53,55,44,52,51,46,56,55,56,55,56,53,93,44,91,45,55,53,46,52,56,52,53,50,56,44,52,52,46,48,55,52,49,55,50,93,44,91,45,55,53,46,52,52,54,49,50,52,44,52,52,46,50,49,55,54,53,53,93,44,91,45,55,53,46,56,54,48,48,52,54,44,52,52,46,52,48,51,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,51,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,55,51,55,57,56,44,52,50,46,51,56,49,52,53,56,93,44,91,45,57,48,46,54,54,53,48,50,57,44,52,50,46,51,56,50,49,53,53,93,44,91,45,57,48,46,54,54,53,53,53,49,44,52,50,46,50,57,52,54,57,57,93,44,91,45,57,48,46,56,57,56,48,50,44,52,50,46,50,57,53,50,51,54,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,50,46,48,51,51,53,52,56,93,44,91,45,57,48,46,49,53,52,50,50,49,44,52,50,46,48,51,51,48,55,51,93,44,91,45,57,48,46,49,54,50,56,57,53,44,52,50,46,49,49,54,55,49,56,93,44,91,45,57,48,46,51,49,55,51,57,53,44,52,50,46,49,57,51,54,52,53,93,44,91,45,57,48,46,51,57,49,49,48,56,44,52,50,46,50,50,53,52,55,51,93,44,91,45,57,48,46,52,55,51,55,57,56,44,52,50,46,51,56,49,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,78,101,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,50,48,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,57,50,49,56,52,44,52,56,46,49,57,53,49,55,55,93,44,91,45,57,56,46,52,50,50,48,53,55,44,52,56,46,49,57,52,55,56,50,93,44,91,45,57,56,46,52,50,50,52,55,52,44,52,56,46,48,50,49,48,56,93,44,91,45,57,56,46,53,50,53,53,53,53,44,52,55,46,57,49,53,48,53,54,93,44,91,45,57,56,46,53,50,53,53,49,54,44,52,55,46,56,52,54,50,55,54,93,44,91,45,57,56,46,53,48,48,49,56,49,44,52,55,46,54,55,50,52,49,51,93,44,91,45,57,55,46,57,56,52,50,52,56,44,52,55,46,54,55,50,51,48,51,93,44,91,45,57,55,46,56,56,50,50,55,49,44,52,55,46,54,55,50,49,55,57,93,44,91,45,57,55,46,56,56,50,48,54,53,44,52,56,46,48,50,48,56,52,52,93,44,91,45,57,55,46,57,48,51,51,49,51,44,52,56,46,49,57,52,56,52,53,93,44,91,45,57,56,46,50,57,50,49,56,52,44,52,56,46,49,57,53,49,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,55,57,52,44,34,98,101,100,115,34,58,51,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,48,50,55,51,56,57,44,52,52,46,57,57,53,54,56,53,93,44,91,45,55,51,46,57,56,54,51,56,50,44,52,52,46,55,48,55,55,55,51,93,44,91,45,55,51,46,57,48,57,54,56,55,44,52,52,46,52,50,57,54,57,57,93,44,91,45,55,51,46,52,57,55,53,54,55,44,52,52,46,52,56,54,50,51,93,44,91,45,55,51,46,51,51,56,54,51,54,44,52,52,46,53,52,54,56,52,52,93,44,91,45,55,51,46,51,54,49,52,53,53,44,52,52,46,53,54,51,53,54,51,93,44,91,45,55,51,46,51,56,57,56,50,44,52,52,46,54,49,55,50,49,49,93,44,91,45,55,51,46,51,51,53,48,52,52,44,52,52,46,56,48,52,49,48,57,93,44,91,45,55,51,46,51,52,51,49,50,52,44,52,53,46,48,49,48,56,52,93,44,91,45,55,52,46,48,50,55,51,56,57,44,52,52,46,57,57,53,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,53,51,56,44,34,98,101,100,115,34,58,49,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,48,51,55,51,54,51,44,52,48,46,48,57,49,53,51,56,93,44,91,45,49,48,55,46,51,49,54,57,57,51,44,52,48,46,48,57,48,55,54,53,93,44,91,45,49,48,55,46,51,49,56,55,53,49,44,51,57,46,57,49,52,57,54,56,93,44,91,45,49,48,55,46,52,51,49,55,55,44,51,57,46,56,50,56,51,55,55,93,44,91,45,49,48,55,46,57,51,56,53,48,50,44,51,57,46,56,50,52,57,57,54,93,44,91,45,49,48,55,46,57,51,56,53,52,54,44,51,57,46,54,57,52,52,54,52,93,44,91,45,49,48,56,46,53,53,52,55,50,50,44,51,57,46,54,57,51,54,52,93,44,91,45,49,48,56,46,53,53,52,54,50,55,44,51,57,46,54,53,48,49,54,52,93,44,91,45,49,48,57,46,48,53,49,50,50,55,44,51,57,46,54,54,48,52,54,54,93,44,91,45,49,48,57,46,48,53,49,50,50,54,44,51,57,46,52,57,55,55,51,57,93,44,91,45,49,48,57,46,48,53,48,55,54,53,44,51,57,46,51,54,54,54,55,55,93,44,91,45,49,48,56,46,52,48,57,54,48,55,44,51,57,46,51,54,53,57,56,51,93,44,91,45,49,48,55,46,52,51,48,57,52,57,44,51,57,46,51,54,54,49,55,56,93,44,91,45,49,48,55,46,49,49,51,52,52,54,44,51,57,46,51,54,54,48,54,54,93,44,91,45,49,48,55,46,49,49,51,54,55,50,44,51,57,46,57,49,57,49,49,50,93,44,91,45,49,48,55,46,48,51,51,57,54,56,44,51,57,46,57,49,56,57,49,51,93,44,91,45,49,48,55,46,48,51,55,51,54,51,44,52,48,46,48,57,49,53,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,82,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,50,53,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,49,48,54,52,50,44,51,57,46,52,53,52,54,56,50,93,44,91,45,57,52,46,50,49,50,53,49,53,44,51,57,46,50,48,55,48,56,54,93,44,91,45,57,52,46,49,48,52,56,50,51,44,51,57,46,49,52,51,53,48,55,93,44,91,45,57,52,46,48,50,56,56,50,50,44,51,57,46,49,57,49,53,57,53,93,44,91,45,57,51,46,55,53,56,52,54,51,44,51,57,46,50,48,55,48,50,49,93,44,91,45,57,51,46,55,53,57,49,56,51,44,51,57,46,53,50,52,53,53,56,93,44,91,45,57,52,46,50,48,56,52,50,51,44,51,57,46,53,50,55,50,93,44,91,45,57,52,46,50,49,48,54,52,50,44,51,57,46,52,53,52,54,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,72,111,99,107,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,55,52,53,51,49,44,51,57,46,54,53,52,57,53,57,93,44,91,45,56,50,46,52,57,54,49,50,51,44,51,57,46,54,48,50,56,52,57,93,44,91,45,56,50,46,55,51,49,53,49,56,44,51,57,46,53,53,52,52,52,53,93,44,91,45,56,50,46,55,52,48,55,50,57,44,51,57,46,52,54,56,51,53,93,44,91,45,56,50,46,55,52,56,53,57,49,44,51,57,46,51,54,56,49,54,53,93,44,91,45,56,50,46,50,56,57,54,54,51,44,51,57,46,51,56,52,49,57,53,93,44,91,45,56,50,46,50,56,48,52,49,44,51,57,46,52,55,50,57,48,54,93,44,91,45,56,50,46,49,54,55,51,55,57,44,51,57,46,52,54,54,51,48,55,93,44,91,45,56,50,46,49,53,57,49,54,49,44,51,57,46,53,53,54,53,55,52,93,44,91,45,56,50,46,51,55,57,56,57,44,51,57,46,53,57,54,55,51,56,93,44,91,45,56,50,46,51,55,52,53,51,49,44,51,57,46,54,53,52,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,111,119,110,100,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,57,54,55,55,52,44,51,50,46,51,52,52,52,51,55,93,44,91,45,56,54,46,54,53,51,52,49,57,44,51,50,46,51,57,55,50,52,55,93,44,91,45,56,54,46,56,49,52,57,49,50,44,51,50,46,51,52,48,56,48,51,93,44,91,45,56,54,46,57,48,56,51,48,50,44,51,50,46,50,50,53,48,50,56,93,44,91,45,56,54,46,57,48,54,57,53,54,44,51,50,46,48,52,55,57,55,93,44,91,45,56,54,46,56,53,55,53,56,51,44,51,49,46,57,54,50,49,54,55,93,44,91,45,56,54,46,52,52,56,49,57,56,44,51,49,46,57,54,52,54,50,57,93,44,91,45,56,54,46,52,48,54,50,55,54,44,51,50,46,48,53,48,55,51,49,93,44,91,45,56,54,46,52,48,56,55,55,49,44,51,50,46,50,52,52,51,48,57,93,44,91,45,56,54,46,52,57,54,55,55,52,44,51,50,46,51,52,52,52,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,97,110,100,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,51,48,50,51,51,44,51,50,46,53,51,56,55,55,93,44,91,45,56,50,46,49,52,56,51,51,56,44,51,50,46,53,50,48,52,50,57,93,44,91,45,56,50,46,50,53,50,55,53,55,44,51,50,46,51,53,51,51,49,93,44,91,45,56,50,46,50,51,50,55,56,56,44,51,50,46,51,49,56,56,51,56,93,44,91,45,56,50,46,48,50,53,51,51,57,44,51,50,46,50,55,56,56,56,51,93,44,91,45,56,49,46,57,54,57,48,54,57,44,51,50,46,50,54,56,55,56,51,93,44,91,45,56,49,46,57,49,56,54,53,50,44,51,50,46,52,49,53,48,55,51,93,44,91,45,56,50,46,48,51,48,50,51,51,44,51,50,46,53,51,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,76,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,50,49,50,49,44,34,98,101,100,115,34,58,57,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,51,49,48,56,57,44,52,50,46,50,57,57,48,54,51,93,44,91,45,57,49,46,56,51,49,51,55,57,44,52,49,46,56,54,49,56,53,49,93,44,91,45,57,49,46,51,54,54,50,50,49,44,52,49,46,56,54,48,48,54,57,93,44,91,45,57,49,46,51,54,53,56,55,55,44,52,49,46,57,52,55,52,49,93,44,91,45,57,49,46,51,54,51,50,54,51,44,52,50,46,50,57,54,52,52,53,93,44,91,45,57,49,46,53,57,54,57,56,49,44,52,50,46,50,57,54,52,48,56,93,44,91,45,57,49,46,56,51,49,48,56,57,44,52,50,46,50,57,57,48,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,84,114,105,110,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,54,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,52,48,56,50,57,49,44,52,49,46,49,55,57,57,52,52,93,44,91,45,49,50,51,46,52,52,55,57,53,54,44,52,48,46,57,52,51,55,53,56,93,44,91,45,49,50,51,46,54,49,53,56,50,55,44,52,48,46,57,49,52,48,54,56,93,44,91,45,49,50,51,46,53,52,51,55,52,57,44,52,48,46,55,51,57,48,49,53,93,44,91,45,49,50,51,46,53,52,52,52,53,56,44,52,48,46,48,48,49,57,50,51,93,44,91,45,49,50,51,46,53,52,52,53,54,51,44,51,57,46,57,55,55,48,49,53,93,44,91,45,49,50,50,46,57,51,52,48,49,51,44,51,57,46,57,55,56,49,51,49,93,44,91,45,49,50,50,46,57,56,57,48,49,53,44,52,48,46,50,53,48,49,52,53,93,44,91,45,49,50,51,46,48,54,53,52,50,54,44,52,48,46,50,56,54,57,55,49,93,44,91,45,49,50,50,46,57,51,49,50,54,55,44,52,48,46,52,52,53,53,53,55,93,44,91,45,49,50,50,46,54,57,51,48,57,57,44,52,48,46,53,56,48,55,52,55,93,44,91,45,49,50,50,46,55,53,50,48,50,51,44,52,48,46,54,56,57,56,56,50,93,44,91,45,49,50,50,46,54,54,57,56,51,57,44,52,48,46,55,55,51,53,54,55,93,44,91,45,49,50,50,46,53,57,56,53,50,56,44,52,48,46,57,55,53,56,52,55,93,44,91,45,49,50,50,46,53,50,55,55,53,51,44,52,49,46,48,49,52,51,57,53,93,44,91,45,49,50,50,46,52,57,56,51,55,54,44,52,49,46,49,56,50,54,55,53,93,44,91,45,49,50,50,46,53,48,52,50,53,52,44,52,49,46,51,51,52,55,49,93,44,91,45,49,50,50,46,53,57,48,56,48,56,44,52,49,46,51,50,53,57,49,93,44,91,45,49,50,50,46,56,49,49,51,52,50,44,52,49,46,50,48,50,52,53,49,93,44,91,45,49,50,50,46,56,57,55,48,54,54,44,52,49,46,50,48,49,48,48,54,93,44,91,45,49,50,51,46,48,51,54,56,48,56,44,52,49,46,48,48,52,48,53,56,93,44,91,45,49,50,51,46,49,48,57,48,55,55,44,52,49,46,48,55,53,52,50,57,93,44,91,45,49,50,51,46,50,52,53,50,50,50,44,52,49,46,48,55,55,57,56,55,93,44,91,45,49,50,51,46,52,48,56,50,57,49,44,52,49,46,49,55,57,57,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,53,34,44,34,78,65,77,69,34,58,34,77,117,115,99,111,103,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,54,54,55,48,44,34,98,101,100,115,34,58,49,49,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,56,48,55,56,52,44,51,50,46,54,48,56,48,55,50,93,44,91,45,56,53,46,48,48,49,48,50,44,51,50,46,53,49,48,49,53,55,93,44,91,45,56,52,46,57,55,49,57,54,50,44,51,50,46,51,55,55,54,57,56,93,44,91,45,56,52,46,55,57,50,57,53,49,44,51,50,46,52,49,51,56,52,93,44,91,45,56,52,46,54,57,52,53,49,44,51,50,46,53,49,56,55,51,50,93,44,91,45,56,52,46,54,57,52,54,48,51,44,51,50,46,53,56,51,57,52,53,93,44,91,45,56,53,46,48,56,48,55,56,52,44,51,50,46,54,48,56,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,84,97,108,108,97,104,97,116,99,104,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,54,49,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,51,53,52,53,54,44,51,52,46,49,54,48,48,55,52,93,44,91,45,57,48,46,49,51,53,54,57,53,44,51,52,46,48,55,50,57,93,44,91,45,57,48,46,52,53,48,57,56,49,44,51,52,46,48,55,50,57,51,50,93,44,91,45,57,48,46,52,53,49,48,49,50,44,51,51,46,57,56,53,54,56,57,93,44,91,45,57,48,46,52,53,49,54,52,51,44,51,51,46,56,49,49,51,57,93,44,91,45,57,48,46,49,56,50,53,56,52,44,51,51,46,56,48,57,51,50,50,93,44,91,45,57,48,46,49,51,54,55,56,55,44,51,51,46,55,50,49,54,52,56,93,44,91,45,57,48,46,49,51,54,52,57,49,44,51,51,46,56,48,57,51,49,57,93,44,91,45,56,57,46,57,50,54,50,57,52,44,51,51,46,56,50,51,56,53,52,93,44,91,45,56,57,46,57,50,54,48,57,57,44,51,51,46,56,57,55,57,53,55,93,44,91,45,56,57,46,57,51,49,52,56,53,44,51,52,46,49,54,52,51,48,51,93,44,91,45,57,48,46,49,51,53,52,53,54,44,51,52,46,49,54,48,48,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,116,99,104,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,54,52,49,50,54,44,51,57,46,54,53,50,56,55,50,93,44,91,45,57,53,46,53,55,48,51,53,49,44,51,57,46,52,49,57,48,53,93,44,91,45,57,53,46,49,56,48,56,57,49,44,51,57,46,52,49,57,50,49,56,93,44,91,45,57,52,46,57,54,56,57,55,51,44,51,57,46,52,49,56,56,55,57,93,44,91,45,57,53,46,49,48,50,56,56,56,44,51,57,46,53,51,51,51,52,55,93,44,91,45,57,53,46,48,53,51,53,56,54,44,51,57,46,54,49,53,50,54,57,93,44,91,45,57,53,46,49,49,53,49,56,57,44,51,57,46,54,53,50,53,52,57,93,44,91,45,57,53,46,51,51,57,55,52,44,51,57,46,54,53,50,57,56,93,44,91,45,57,53,46,53,54,52,49,50,54,44,51,57,46,54,53,50,56,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,97,114,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,56,57,51,51,51,57,44,49,56,46,51,54,55,48,56,57,93,44,91,45,54,54,46,57,48,55,50,51,54,44,49,56,46,50,53,51,48,57,93,44,91,45,54,54,46,56,57,55,57,54,52,44,49,56,46,49,56,55,55,52,52,93,44,91,45,54,54,46,56,51,54,55,54,44,49,56,46,49,55,48,53,53,51,93,44,91,45,54,54,46,56,50,55,51,50,55,44,49,56,46,49,55,49,50,52,50,93,44,91,45,54,54,46,56,49,55,50,55,49,44,49,56,46,50,51,48,51,51,54,93,44,91,45,54,54,46,56,50,54,49,50,56,44,49,56,46,51,50,51,51,56,50,93,44,91,45,54,54,46,56,50,52,50,50,51,44,49,56,46,51,52,50,57,57,56,93,44,91,45,54,54,46,56,57,51,51,51,57,44,49,56,46,51,54,55,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,100,114,101,119,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,49,56,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,54,52,53,49,54,44,51,50,46,48,56,55,48,53,49,93,44,91,45,49,48,50,46,55,57,57,48,56,54,44,51,50,46,48,56,53,55,57,53,93,44,91,45,49,48,50,46,50,56,55,48,52,56,44,51,50,46,48,56,54,57,57,49,93,44,91,45,49,48,50,46,50,49,49,50,52,57,44,51,50,46,48,56,54,56,93,44,91,45,49,48,50,46,50,49,49,48,51,55,44,51,50,46,53,50,51,50,52,52,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,53,50,50,49,57,51,93,44,91,45,49,48,51,46,48,54,52,53,49,54,44,51,50,46,48,56,55,48,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,77,105,97,109,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,56,48,48,44,34,98,101,100,115,34,58,49,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,51,50,53,55,53,44,52,48,46,49,57,55,48,51,55,93,44,91,45,56,52,46,52,50,53,57,48,50,44,51,57,46,57,49,57,54,50,50,93,44,91,45,56,52,46,49,53,55,54,55,49,44,51,57,46,57,50,50,57,55,93,44,91,45,56,52,46,48,53,49,48,49,50,44,51,57,46,56,55,57,56,49,93,44,91,45,56,52,46,48,51,54,48,54,57,44,52,48,46,48,52,48,49,56,50,93,44,91,45,56,52,46,48,50,50,57,49,57,44,52,48,46,49,56,51,57,52,53,93,44,91,45,56,52,46,52,51,50,53,55,53,44,52,48,46,49,57,55,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,55,53,34,44,34,78,65,77,69,34,58,34,80,111,116,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,56,57,57,44,34,98,101,100,115,34,58,57,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,44,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,44,91,45,49,48,49,46,54,50,50,56,44,51,53,46,54,50,48,49,57,54,93,44,91,45,49,48,50,46,49,54,50,55,53,50,44,51,53,46,54,50,48,48,51,53,93,44,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,83,101,109,105,110,111,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,55,49,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,50,51,54,57,57,44,51,53,46,52,48,48,55,50,50,93,44,91,45,57,54,46,55,55,54,54,57,52,44,51,53,46,52,48,53,52,49,55,93,44,91,45,57,54,46,55,55,53,54,56,49,44,51,52,46,56,57,57,57,53,56,93,44,91,45,57,54,46,54,54,55,54,57,50,44,51,52,46,57,50,57,53,56,51,93,44,91,45,57,54,46,52,57,48,55,56,54,44,51,52,46,57,49,48,53,56,53,93,44,91,45,57,54,46,52,57,48,52,51,52,44,51,53,46,49,49,53,56,53,55,93,44,91,45,57,54,46,52,52,49,51,54,56,44,51,53,46,50,57,48,49,50,50,93,44,91,45,57,54,46,52,52,53,53,56,52,44,51,53,46,52,53,56,55,55,49,93,44,91,45,57,54,46,54,50,51,54,57,57,44,51,53,46,52,48,48,55,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,105,107,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,57,50,54,44,34,98,101,100,115,34,58,50,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,53,49,55,53,57,44,51,51,46,56,49,52,53,49,93,44,91,45,56,50,46,48,49,50,52,55,44,51,51,46,53,51,50,49,49,54,93,44,91,45,56,49,46,57,51,52,49,51,54,44,51,51,46,52,54,56,51,51,55,93,44,91,45,56,49,46,57,49,56,51,51,55,44,51,51,46,51,51,50,56,52,50,93,44,91,45,56,49,46,56,53,50,48,55,54,44,51,51,46,50,52,55,50,56,56,93,44,91,45,56,49,46,55,53,55,48,51,53,44,51,51,46,49,57,56,49,52,56,93,44,91,45,56,49,46,51,55,50,57,51,49,44,51,51,46,52,57,48,52,49,55,93,44,91,45,56,49,46,49,56,55,50,55,49,44,51,51,46,54,53,50,57,51,55,93,44,91,45,56,49,46,52,49,53,51,48,56,44,51,51,46,55,51,50,49,54,49,93,44,91,45,56,49,46,53,55,49,52,56,55,44,51,51,46,56,55,55,51,49,56,93,44,91,45,56,49,46,54,53,49,55,53,57,44,51,51,46,56,49,52,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,77,101,110,100,111,99,105,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,52,50,50,44,34,98,101,100,115,34,58,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,49,51,52,56,56,57,44,52,48,46,48,48,50,52,55,93,44,91,45,49,50,51,46,57,51,56,53,57,49,44,51,57,46,56,49,52,57,52,52,93,44,91,45,49,50,51,46,56,53,55,49,56,51,44,51,57,46,54,55,52,54,57,51,93,44,91,45,49,50,51,46,56,51,52,54,52,57,44,51,57,46,53,52,57,49,57,52,93,44,91,45,49,50,51,46,56,57,51,48,56,53,44,51,57,46,51,51,55,52,57,52,93,44,91,45,49,50,51,46,55,54,49,57,54,53,44,51,57,46,48,52,49,48,57,49,93,44,91,45,49,50,51,46,55,56,52,54,55,54,44,51,56,46,56,57,51,55,50,56,93,44,91,45,49,50,51,46,54,51,50,52,57,55,44,51,56,46,55,53,56,49,49,57,93,44,91,45,49,50,51,46,51,54,56,51,57,52,44,51,56,46,56,48,54,54,52,93,44,91,45,49,50,51,46,49,51,54,50,53,51,44,51,56,46,56,48,57,49,51,54,93,44,91,45,49,50,51,46,48,56,48,57,57,55,44,51,56,46,56,53,50,52,51,56,93,44,91,45,49,50,50,46,56,50,49,53,57,50,44,51,56,46,56,53,48,49,52,93,44,91,45,49,50,50,46,57,52,56,56,54,53,44,51,56,46,57,48,48,50,50,93,44,91,45,49,50,50,46,57,56,54,54,52,44,51,56,46,57,57,55,50,56,51,93,44,91,45,49,50,51,46,48,57,51,48,49,51,44,51,57,46,48,55,49,57,57,52,93,44,91,45,49,50,51,46,48,49,50,55,49,44,51,57,46,50,51,54,49,56,56,93,44,91,45,49,50,51,46,48,55,53,49,49,52,44,51,57,46,52,48,55,54,56,51,93,44,91,45,49,50,51,46,48,54,51,49,56,49,44,51,57,46,53,48,51,53,51,57,93,44,91,45,49,50,50,46,56,57,48,51,49,44,51,57,46,53,50,57,48,49,52,93,44,91,45,49,50,50,46,56,56,53,51,53,50,44,51,57,46,53,56,48,49,48,56,93,44,91,45,49,50,50,46,57,51,55,54,53,52,44,51,57,46,55,57,56,49,53,54,93,44,91,45,49,50,50,46,57,51,52,48,49,51,44,51,57,46,57,55,56,49,51,49,93,44,91,45,49,50,51,46,53,52,52,53,54,51,44,51,57,46,57,55,55,48,49,53,93,44,91,45,49,50,51,46,53,52,52,52,53,56,44,52,48,46,48,48,49,57,50,51,93,44,91,45,49,50,52,46,49,51,52,56,56,57,44,52,48,46,48,48,50,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,53,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,53,48,34,44,34,78,65,77,69,34,58,34,67,104,101,115,97,112,101,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,55,56,50,48,44,34,98,101,100,115,34,58,51,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,50,48,51,54,56,44,51,54,46,56,54,54,51,52,56,93,44,91,45,55,54,46,52,53,55,52,54,57,44,51,54,46,56,49,52,56,52,49,93,44,91,45,55,54,46,52,57,49,52,57,54,44,51,54,46,53,53,48,54,52,56,93,44,91,45,55,54,46,51,49,51,51,48,51,44,51,54,46,53,53,48,53,50,93,44,91,45,55,54,46,49,50,50,51,52,57,44,51,54,46,53,53,48,53,50,51,93,44,91,45,55,54,46,49,50,49,57,53,53,44,51,54,46,54,54,53,55,53,93,44,91,45,55,54,46,50,50,54,48,54,44,51,54,46,56,51,57,57,52,55,93,44,91,45,55,54,46,50,56,57,57,54,50,44,51,54,46,56,50,50,48,52,56,93,44,91,45,55,54,46,52,50,48,51,54,56,44,51,54,46,56,54,54,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,89,97,117,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,52,51,57,44,34,98,101,100,115,34,58,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,57,50,54,53,49,55,44,49,56,46,49,53,49,50,54,55,93,44,91,45,54,54,46,56,56,52,54,53,51,44,49,56,46,48,50,52,56,49,54,93,44,91,45,54,54,46,56,53,56,50,51,51,44,49,55,46,57,53,48,56,50,53,93,44,91,45,54,54,46,55,57,55,53,53,55,44,49,56,46,49,51,51,52,52,53,93,44,91,45,54,54,46,56,50,55,51,50,55,44,49,56,46,49,55,49,50,52,50,93,44,91,45,54,54,46,56,51,54,55,54,44,49,56,46,49,55,48,53,53,51,93,44,91,45,54,54,46,57,50,54,53,49,55,44,49,56,46,49,53,49,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,83,119,101,101,116,119,97,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,49,49,55,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,51,56,54,52,44,52,50,46,50,54,51,54,56,52,93,44,91,45,49,49,48,46,48,53,51,55,48,56,44,52,50,46,50,55,48,55,52,52,93,44,91,45,49,49,48,46,48,52,56,44,52,49,46,53,55,56,48,49,53,93,44,91,45,49,49,48,46,48,52,56,52,56,51,44,52,48,46,57,57,55,50,57,53,93,44,91,45,49,49,48,46,48,48,48,55,49,55,44,52,48,46,57,57,55,52,53,93,44,91,45,49,48,57,46,48,53,48,48,50,54,44,52,49,46,48,48,48,54,57,49,93,44,91,45,49,48,55,46,57,49,56,52,50,49,44,52,49,46,48,48,50,48,51,54,93,44,91,45,49,48,55,46,57,50,57,55,51,54,44,52,49,46,54,53,57,53,57,54,93,44,91,45,49,48,55,46,53,48,57,55,50,44,52,49,46,54,53,55,52,53,50,93,44,91,45,49,48,55,46,53,48,51,56,50,49,44,52,50,46,48,56,55,57,53,55,93,44,91,45,49,48,55,46,53,50,50,55,50,50,44,52,50,46,50,54,49,55,53,54,93,44,91,45,49,48,57,46,48,52,51,56,54,52,44,52,50,46,50,54,51,54,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,71,97,114,122,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,44,91,45,49,48,49,46,53,53,54,56,56,52,44,51,51,46,51,57,52,55,54,93,44,91,45,49,48,49,46,53,53,55,52,51,52,44,51,50,46,57,54,49,48,50,53,93,44,91,45,49,48,49,46,49,55,51,51,55,56,44,51,50,46,57,54,51,53,57,55,93,44,91,45,49,48,49,46,48,51,56,54,54,44,51,50,46,57,55,48,50,50,53,93,44,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,72,97,114,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,52,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,44,91,45,55,57,46,48,56,57,54,53,53,44,51,57,46,48,51,56,50,48,56,93,44,91,45,55,57,46,48,52,53,57,53,51,44,51,56,46,57,50,56,55,49,93,44,91,45,55,57,46,49,51,52,50,57,54,44,51,56,46,56,49,51,51,52,93,44,91,45,55,57,46,48,53,55,50,53,51,44,51,56,46,55,54,49,52,49,51,93,44,91,45,55,56,46,57,57,51,55,54,49,44,51,56,46,56,53,48,48,50,49,93,44,91,45,55,56,46,56,54,57,50,54,49,44,51,56,46,55,54,50,57,56,93,44,91,45,55,56,46,55,56,56,48,51,49,44,51,56,46,56,56,53,49,50,51,93,44,91,45,55,56,46,54,56,48,52,53,54,44,51,56,46,57,50,53,51,49,51,93,44,91,45,55,56,46,53,52,52,49,56,50,44,51,57,46,48,53,54,53,53,57,93,44,91,45,55,56,46,53,48,56,49,51,50,44,51,57,46,48,56,56,54,51,93,44,91,45,55,56,46,56,57,57,54,57,53,44,51,57,46,49,57,57,49,51,55,93,44,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,106,117,110,116,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,56,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,56,49,55,50,55,49,44,49,56,46,50,51,48,51,51,54,93,44,91,45,54,54,46,56,50,55,51,50,55,44,49,56,46,49,55,49,50,52,50,93,44,91,45,54,54,46,55,57,55,53,53,55,44,49,56,46,49,51,51,52,52,53,93,44,91,45,54,54,46,55,54,57,48,52,57,44,49,56,46,49,51,52,57,56,51,93,44,91,45,54,54,46,54,57,52,48,55,44,49,56,46,49,51,48,53,51,52,93,44,91,45,54,54,46,54,55,48,52,57,52,44,49,56,46,49,53,50,56,51,49,93,44,91,45,54,54,46,54,57,50,53,55,50,44,49,56,46,50,49,53,56,56,51,93,44,91,45,54,54,46,56,49,55,50,55,49,44,49,56,46,50,51,48,51,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,79,122,97,117,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,50,56,52,44,34,98,101,100,115,34,58,51,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,52,48,53,50,56,44,52,51,46,53,52,50,51,54,49,93,44,91,45,56,56,46,48,54,51,51,53,51,44,52,51,46,49,57,50,49,49,55,93,44,91,45,56,55,46,49,49,57,48,48,56,44,52,51,46,49,57,48,56,49,54,93,44,91,45,56,55,46,49,52,48,51,51,49,44,52,51,46,52,55,49,52,51,54,93,44,91,45,56,55,46,49,51,52,55,55,56,44,52,51,46,53,52,49,52,51,51,93,44,91,45,56,56,46,48,52,48,53,50,56,44,52,51,46,53,52,50,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,55,51,52,44,34,98,101,100,115,34,58,49,50,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,57,52,49,51,52,44,51,54,46,53,57,53,54,57,55,93,44,91,45,56,50,46,54,48,57,49,55,54,44,51,54,46,53,57,52,48,57,57,93,44,91,45,56,50,46,54,56,48,54,55,55,44,51,54,46,52,51,49,56,93,44,91,45,56,50,46,52,51,56,51,53,53,44,51,54,46,52,52,53,54,51,57,93,44,91,45,56,50,46,50,57,57,56,53,57,44,51,54,46,51,57,54,53,48,53,93,44,91,45,56,50,46,49,56,56,48,53,51,44,51,54,46,52,48,48,54,48,56,93,44,91,45,56,49,46,57,56,51,56,52,51,44,51,54,46,53,48,56,51,49,52,93,44,91,45,56,49,46,56,50,54,55,52,50,44,51,54,46,54,49,52,50,49,53,93,44,91,45,56,50,46,49,52,53,53,55,51,44,51,54,46,53,57,52,55,50,53,93,44,91,45,56,50,46,50,52,51,51,56,50,44,51,54,46,53,57,53,54,53,49,93,44,91,45,56,50,46,50,57,52,49,51,52,44,51,54,46,53,57,53,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,76,97,117,114,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,55,49,48,44,34,98,101,100,115,34,58,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,52,54,55,57,50,44,51,52,46,55,56,53,53,53,52,93,44,91,45,56,50,46,50,51,56,48,53,52,44,51,52,46,53,56,54,57,53,54,93,44,91,45,56,50,46,51,49,51,57,57,54,44,51,52,46,52,56,52,48,48,50,93,44,91,45,56,50,46,50,52,54,51,51,55,44,51,52,46,52,48,57,54,55,54,93,44,91,45,56,50,46,49,54,57,50,57,55,44,51,52,46,51,51,48,55,52,54,93,44,91,45,56,49,46,57,52,53,48,49,57,44,51,52,46,50,48,51,49,52,56,93,44,91,45,56,49,46,56,56,51,48,55,54,44,51,52,46,51,49,49,57,54,52,93,44,91,45,56,49,46,55,56,50,54,50,55,44,51,52,46,51,54,53,48,56,57,93,44,91,45,56,49,46,54,52,51,53,53,50,44,51,52,46,53,51,51,54,53,50,93,44,91,45,56,49,46,56,53,52,48,48,50,44,51,52,46,53,57,52,53,52,57,93,44,91,45,56,50,46,48,55,49,51,49,53,44,51,52,46,55,48,51,55,93,44,91,45,56,50,46,49,52,54,55,57,50,44,51,52,46,55,56,53,53,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,114,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,49,48,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,55,54,54,48,49,44,52,52,46,57,57,57,57,50,54,93,44,91,45,49,48,53,46,48,56,53,52,53,49,44,52,52,46,55,56,54,56,48,49,93,44,91,45,49,48,53,46,48,55,57,50,56,49,44,52,52,46,49,55,54,49,56,50,93,44,91,45,49,48,52,46,48,53,52,52,56,55,44,52,52,46,49,56,48,51,56,49,93,44,91,45,49,48,52,46,48,53,53,57,52,51,44,52,52,46,53,55,49,48,50,53,93,44,91,45,49,48,52,46,48,53,55,56,55,57,44,52,52,46,57,57,55,54,48,53,93,44,91,45,49,48,53,46,48,51,56,50,52,57,44,52,53,46,48,48,48,49,48,54,93,44,91,45,49,48,53,46,48,55,54,54,48,49,44,52,52,46,57,57,57,57,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,83,104,101,98,111,121,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,50,48,53,44,34,98,101,100,115,34,58,51,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,54,50,50,55,52,44,52,51,46,56,57,49,53,49,49,93,44,91,45,56,56,46,49,54,48,56,55,51,44,52,51,46,53,52,50,57,52,51,93,44,91,45,56,56,46,48,52,48,53,50,56,44,52,51,46,53,52,50,51,54,49,93,44,91,45,56,55,46,49,51,52,55,55,56,44,52,51,46,53,52,49,52,51,51,93,44,91,45,56,55,46,48,57,51,49,48,57,44,52,51,46,56,50,48,49,49,51,93,44,91,45,56,55,46,48,55,53,51,51,53,44,52,51,46,56,57,52,55,55,52,93,44,91,45,56,56,46,48,52,49,55,57,52,44,52,51,46,56,57,49,54,57,50,93,44,91,45,56,56,46,49,54,50,50,55,52,44,52,51,46,56,57,49,53,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,72,97,109,112,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,57,49,49,54,44,34,98,101,100,115,34,58,49,53,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,48,48,48,49,55,51,44,52,50,46,51,49,50,54,55,56,93,44,91,45,55,51,46,48,53,51,50,56,56,44,52,50,46,48,51,57,56,54,53,93,44,91,45,55,51,46,48,48,56,55,54,54,44,52,50,46,48,51,56,55,56,53,93,44,91,45,55,50,46,53,48,57,50,51,51,44,52,50,46,48,51,52,51,55,54,93,44,91,45,55,50,46,49,51,53,55,49,53,44,52,50,46,48,51,48,50,50,50,93,44,91,45,55,50,46,49,51,53,48,49,49,44,52,50,46,49,54,49,55,56,52,93,44,91,45,55,50,46,50,50,49,50,49,56,44,52,50,46,50,52,53,50,53,50,93,44,91,45,55,50,46,55,56,49,48,51,57,44,52,50,46,49,57,57,55,52,57,93,44,91,45,55,51,46,48,48,48,49,55,51,44,52,50,46,51,49,50,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,67,97,108,100,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,52,48,49,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,49,48,50,49,53,44,51,48,46,48,50,52,52,57,57,93,44,91,45,57,55,46,56,55,53,50,53,57,44,50,57,46,56,53,56,50,48,56,93,44,91,45,57,55,46,55,51,53,55,50,44,50,57,46,54,57,49,49,57,56,93,44,91,45,57,55,46,54,51,51,49,55,54,44,50,57,46,54,52,57,56,54,51,93,44,91,45,57,55,46,53,57,55,55,52,51,44,50,57,46,54,51,48,55,49,56,93,44,91,45,57,55,46,51,49,55,56,57,51,44,50,57,46,55,56,52,54,53,56,93,44,91,45,57,55,46,51,49,53,56,50,51,44,50,57,46,55,56,54,53,52,49,93,44,91,45,57,55,46,54,52,57,51,55,44,51,48,46,48,54,55,57,52,52,93,44,91,45,57,55,46,55,49,48,50,49,53,44,51,48,46,48,50,52,52,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,108,111,117,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,51,49,56,52,52,44,51,57,46,53,54,54,57,50,49,93,44,91,45,57,55,46,57,50,57,48,57,55,44,51,57,46,51,48,54,51,57,55,93,44,91,45,57,55,46,51,54,57,56,51,57,44,51,57,46,51,48,54,48,49,49,93,44,91,45,57,55,46,51,54,56,53,55,52,44,51,57,46,53,54,55,48,49,56,93,44,91,45,57,55,46,51,54,56,54,55,44,51,57,46,54,53,52,48,52,51,93,44,91,45,57,55,46,57,51,49,52,56,50,44,51,57,46,54,53,51,55,54,55,93,44,91,45,57,55,46,57,51,49,56,52,52,44,51,57,46,53,54,54,57,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,73,110,121,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,56,53,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,51,54,48,53,56,54,44,51,54,46,55,52,52,55,55,51,93,44,91,45,49,49,56,46,50,52,56,57,50,44,51,54,46,52,56,54,53,51,53,93,44,91,45,49,49,56,46,49,48,48,49,49,54,44,51,54,46,51,50,56,56,50,51,93,44,91,45,49,49,56,46,49,50,55,54,48,49,44,51,54,46,50,56,48,51,52,56,93,44,91,45,49,49,55,46,57,56,50,52,55,51,44,51,53,46,56,57,53,55,57,54,93,44,91,45,49,49,56,46,48,48,56,48,52,51,44,51,53,46,55,56,57,49,54,49,93,44,91,45,49,49,55,46,54,51,50,57,57,54,44,51,53,46,55,57,55,50,53,49,93,44,91,45,49,49,54,46,56,55,48,54,51,50,44,51,53,46,55,57,53,51,55,54,93,44,91,45,49,49,53,46,55,51,53,56,57,49,44,51,53,46,55,57,51,54,50,93,44,91,45,49,49,53,46,54,52,56,51,53,55,44,51,53,46,56,48,57,50,49,49,93,44,91,45,49,49,53,46,56,52,53,57,57,52,44,51,53,46,57,54,51,55,48,55,93,44,91,45,49,49,54,46,51,56,48,51,52,55,44,51,54,46,51,55,52,57,54,49,93,44,91,45,49,49,55,46,49,54,54,48,48,49,44,51,54,46,57,55,49,49,49,49,93,44,91,45,49,49,55,46,56,51,50,55,50,54,44,51,55,46,52,54,52,57,50,57,93,44,91,45,49,49,56,46,55,55,53,48,49,52,44,51,55,46,52,54,51,48,53,50,93,44,91,45,49,49,56,46,55,56,54,55,51,54,44,51,55,46,51,52,51,51,56,93,44,91,45,49,49,56,46,55,49,54,48,49,54,44,51,55,46,51,50,56,50,48,56,93,44,91,45,49,49,56,46,54,53,52,53,57,51,44,51,55,46,49,52,49,56,50,54,93,44,91,45,49,49,56,46,53,48,51,49,48,51,44,51,55,46,48,57,53,50,50,49,93,44,91,45,49,49,56,46,52,50,50,53,57,53,44,51,55,46,48,50,52,51,54,93,44,91,45,49,49,56,46,51,54,48,56,51,49,44,51,54,46,56,56,55,55,51,52,93,44,91,45,49,49,56,46,51,54,48,53,56,54,44,51,54,46,55,52,52,55,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,111,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,48,57,49,55,44,51,51,46,48,57,48,50,54,93,44,91,45,56,54,46,49,55,52,51,55,44,51,51,46,49,48,52,51,57,52,93,44,91,45,56,54,46,52,57,49,48,50,57,44,51,51,46,49,48,50,57,52,52,93,44,91,45,56,54,46,53,49,55,51,52,52,44,51,51,46,48,50,48,53,54,54,93,44,91,45,56,54,46,52,53,55,48,49,53,44,51,50,46,56,49,51,56,57,57,93,44,91,45,56,54,46,51,55,52,57,55,52,44,51,50,46,55,53,51,53,56,93,44,91,45,56,54,46,48,48,55,49,56,55,44,51,50,46,55,53,52,57,56,52,93,44,91,45,56,54,46,48,48,57,49,55,44,51,51,46,48,57,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,68,105,99,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,53,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,56,55,55,56,55,44,52,51,46,53,48,48,50,50,54,93,44,91,45,57,53,46,51,56,56,48,55,56,44,52,51,46,50,53,53,50,50,49,93,44,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,44,91,45,57,52,46,57,49,52,53,56,50,44,52,51,46,53,48,48,56,53,51,93,44,91,45,57,53,46,51,56,55,55,56,55,44,52,51,46,53,48,48,50,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,72,97,114,108,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,49,51,52,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,56,57,56,49,51,44,51,54,46,56,57,53,52,49,51,93,44,91,45,56,51,46,53,48,48,56,57,49,44,51,54,46,55,51,51,50,53,52,93,44,91,45,56,51,46,52,54,49,48,49,54,44,51,54,46,54,54,52,56,54,93,44,91,45,56,51,46,49,57,52,50,53,50,44,51,54,46,55,51,57,53,49,57,93,44,91,45,56,51,46,48,55,50,56,51,54,44,51,54,46,56,53,52,52,53,55,93,44,91,45,56,50,46,56,55,56,52,44,51,54,46,56,57,50,57,53,51,93,44,91,45,56,50,46,56,54,57,49,57,50,44,51,54,46,57,55,52,49,56,54,93,44,91,45,56,50,46,57,51,57,52,54,54,44,51,55,46,48,49,53,53,50,93,44,91,45,56,51,46,49,50,50,48,57,44,51,55,46,48,48,48,57,57,55,93,44,91,45,56,51,46,49,56,50,49,48,52,44,51,55,46,48,50,49,49,49,53,93,44,91,45,56,51,46,50,54,48,48,50,44,51,54,46,57,54,56,57,53,49,93,44,91,45,56,51,46,52,56,57,56,49,51,44,51,54,46,56,57,53,52,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,71,101,97,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,56,57,53,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,54,51,49,55,55,44,51,57,46,49,51,50,51,93,44,91,45,57,54,46,57,54,51,52,55,44,51,56,46,57,54,52,57,48,49,93,44,91,45,57,54,46,56,57,48,50,52,53,44,51,56,46,56,55,48,48,54,55,93,44,91,45,57,54,46,53,48,49,53,53,54,44,51,56,46,56,54,57,55,48,52,93,44,91,45,57,54,46,53,48,49,49,54,54,44,51,57,46,48,52,51,54,54,54,93,44,91,45,57,54,46,53,48,48,57,54,50,44,51,57,46,48,55,50,54,56,49,93,44,91,45,57,54,46,56,53,49,52,48,57,44,51,57,46,48,56,56,49,55,54,93,44,91,45,57,54,46,56,52,57,56,55,57,44,51,57,46,50,49,57,48,49,50,93,44,91,45,57,54,46,57,54,49,54,57,51,44,51,57,46,50,50,48,48,55,54,93,44,91,45,57,54,46,57,54,51,49,55,55,44,51,57,46,49,51,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,101,114,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,54,52,50,44,34,98,101,100,115,34,58,49,51,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,57,49,52,55,51,44,52,48,46,54,55,55,50,55,93,44,91,45,55,54,46,49,55,49,54,50,52,44,52,48,46,53,51,52,57,52,55,93,44,91,45,55,54,46,52,52,48,49,56,49,44,52,48,46,52,57,53,57,53,50,93,44,91,45,55,54,46,49,53,49,50,49,53,44,52,48,46,51,49,53,57,55,49,93,44,91,45,55,53,46,56,55,51,51,55,53,44,52,48,46,49,51,55,49,48,55,93,44,91,45,55,53,46,54,57,54,55,56,50,44,52,48,46,50,52,49,56,54,51,93,44,91,45,55,53,46,53,50,57,54,57,52,44,52,48,46,52,52,54,57,57,53,93,44,91,45,55,53,46,56,57,49,52,55,51,44,52,48,46,54,55,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,57,49,44,34,98,101,100,115,34,58,49,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,57,57,56,53,57,44,51,54,46,51,57,54,53,48,53,93,44,91,45,56,50,46,51,52,48,52,54,44,51,54,46,50,53,50,56,48,55,93,44,91,45,56,50,46,50,50,50,48,54,52,44,51,54,46,49,53,54,57,54,93,44,91,45,56,50,46,48,56,49,48,55,57,44,51,54,46,49,48,51,49,55,93,44,91,45,56,49,46,57,51,51,48,54,53,44,51,54,46,50,54,52,56,55,51,93,44,91,45,56,50,46,48,52,52,49,52,53,44,51,54,46,51,54,51,55,49,54,93,44,91,45,56,49,46,57,56,51,56,52,51,44,51,54,46,53,48,56,51,49,52,93,44,91,45,56,50,46,49,56,56,48,53,51,44,51,54,46,52,48,48,54,48,56,93,44,91,45,56,50,46,50,57,57,56,53,57,44,51,54,46,51,57,54,53,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,51,57,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,57,52,56,49,55,44,52,52,46,53,52,50,51,48,53,93,44,91,45,57,53,46,54,48,52,48,48,49,44,52,52,46,54,50,57,57,52,53,93,44,91,45,57,54,46,48,57,50,57,53,44,52,52,46,54,51,48,52,56,54,93,44,91,45,57,54,46,48,55,56,53,56,44,52,52,46,49,57,54,54,50,93,44,91,45,57,54,46,48,54,51,55,55,56,44,52,52,46,49,57,54,52,50,53,93,44,91,45,57,53,46,53,57,51,53,55,44,52,52,46,49,57,53,53,51,93,44,91,45,57,53,46,53,57,52,56,49,55,44,52,52,46,53,52,50,51,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,111,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,56,50,52,50,48,57,44,51,55,46,50,48,53,51,54,49,93,44,91,45,55,56,46,57,48,52,53,56,55,44,51,55,46,48,50,50,50,56,56,93,44,91,45,55,56,46,55,55,52,55,49,53,44,51,54,46,57,56,48,57,55,54,93,44,91,45,55,56,46,54,55,49,52,54,51,44,51,54,46,56,53,55,57,53,49,93,44,91,45,55,56,46,54,52,56,53,52,49,44,51,54,46,54,57,55,57,48,57,93,44,91,45,55,56,46,52,57,51,48,50,56,44,51,54,46,56,57,49,50,50,93,44,91,45,55,56,46,52,52,51,54,52,52,44,51,55,46,48,55,57,51,55,49,93,44,91,45,55,56,46,54,57,50,52,55,50,44,51,55,46,50,48,52,55,56,54,93,44,91,45,55,56,46,54,56,49,53,55,51,44,51,55,46,50,52,56,55,53,57,93,44,91,45,55,56,46,56,50,52,50,48,57,44,51,55,46,50,48,53,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,48,53,53,44,34,98,101,100,115,34,58,54,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,57,57,56,53,57,44,51,54,46,51,57,54,53,48,53,93,44,91,45,56,50,46,52,51,56,51,53,53,44,51,54,46,52,52,53,54,51,57,93,44,91,45,56,50,46,54,56,48,54,55,55,44,51,54,46,52,51,49,56,93,44,91,45,56,50,46,55,48,50,53,54,54,44,51,54,46,52,49,48,52,49,50,93,44,91,45,56,50,46,54,50,57,54,52,49,44,51,54,46,52,49,49,53,52,93,44,91,45,56,50,46,54,52,55,55,54,57,44,51,54,46,49,52,54,52,48,52,93,44,91,45,56,50,46,53,57,53,48,54,53,44,51,54,46,48,57,54,50,48,53,93,44,91,45,56,50,46,52,51,55,50,53,49,44,51,54,46,49,53,52,55,48,57,93,44,91,45,56,50,46,51,52,48,52,54,44,51,54,46,50,53,50,56,48,55,93,44,91,45,56,50,46,50,57,57,56,53,57,44,51,54,46,51,57,54,53,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,78,101,119,98,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,54,56,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,52,51,53,53,50,44,51,52,46,53,51,51,54,53,50,93,44,91,45,56,49,46,55,56,50,54,50,55,44,51,52,46,51,54,53,48,56,57,93,44,91,45,56,49,46,56,56,51,48,55,54,44,51,52,46,51,49,49,57,54,52,93,44,91,45,56,49,46,57,52,53,48,49,57,44,51,52,46,50,48,51,49,52,56,93,44,91,45,56,49,46,56,55,48,48,56,52,44,51,52,46,49,51,53,51,53,55,93,44,91,45,56,49,46,55,51,49,54,49,52,44,51,52,46,49,56,55,54,49,51,93,44,91,45,56,49,46,53,51,56,56,57,57,44,51,52,46,48,56,49,55,52,52,93,44,91,45,56,49,46,52,55,49,57,55,50,44,51,52,46,48,55,54,53,53,50,93,44,91,45,56,49,46,51,51,56,57,54,49,44,51,52,46,49,57,55,53,56,55,93,44,91,45,56,49,46,51,49,54,57,49,49,44,51,52,46,50,51,57,52,53,56,93,44,91,45,56,49,46,52,50,51,50,52,49,44,51,52,46,52,57,52,51,55,57,93,44,91,45,56,49,46,53,53,51,50,48,52,44,51,52,46,52,55,55,49,49,52,93,44,91,45,56,49,46,54,52,51,53,53,50,44,51,52,46,53,51,51,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,73,115,108,101,32,111,102,32,87,105,103,104,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,55,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,44,91,45,55,54,46,55,49,49,55,55,53,44,51,55,46,48,53,53,51,56,93,44,91,45,55,54,46,56,52,57,54,56,52,44,51,54,46,57,57,54,50,49,49,93,44,91,45,55,54,46,56,49,52,57,52,49,44,51,54,46,57,48,48,52,54,53,93,44,91,45,55,54,46,57,50,52,54,50,57,44,51,54,46,55,48,55,55,50,57,93,44,91,45,55,54,46,57,48,57,54,55,50,44,51,54,46,54,52,56,49,55,53,93,44,91,45,55,54,46,56,57,55,53,57,50,44,51,54,46,54,52,52,48,53,93,44,91,45,55,54,46,53,51,51,53,50,44,51,54,46,57,49,53,53,54,51,93,44,91,45,55,54,46,52,52,53,51,48,49,44,51,54,46,57,52,49,56,57,49,93,44,91,45,55,54,46,54,50,56,50,48,53,44,51,55,46,48,57,50,55,53,53,93,44,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,87,104,101,101,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,51,55,49,52,52,49,44,52,52,46,56,50,49,55,54,57,93,44,91,45,49,50,48,46,51,56,54,53,54,49,44,52,52,46,53,54,52,48,48,57,93,44,91,45,49,50,48,46,51,56,54,48,55,52,44,52,52,46,52,51,54,48,56,51,93,44,91,45,49,50,48,46,48,50,49,54,50,49,44,52,52,46,52,51,56,55,57,51,93,44,91,45,49,49,57,46,56,57,57,50,56,51,44,52,52,46,51,56,57,53,55,53,93,44,91,45,49,49,57,46,56,57,57,48,48,50,44,52,52,46,51,48,54,54,50,93,44,91,45,49,49,57,46,54,53,53,53,49,55,44,52,52,46,51,48,55,48,52,53,93,44,91,45,49,49,57,46,54,53,50,52,51,49,44,52,52,46,56,50,51,50,57,57,93,44,91,45,49,49,57,46,54,55,50,50,50,56,44,52,52,46,57,57,53,49,49,55,93,44,91,45,49,49,57,46,55,57,48,54,57,57,44,52,53,46,48,54,55,56,50,51,93,44,91,45,49,50,48,46,52,57,53,49,54,44,52,53,46,48,54,56,50,55,57,93,44,91,45,49,50,48,46,52,53,53,51,56,57,44,52,52,46,56,54,54,48,52,54,93,44,91,45,49,50,48,46,51,55,49,52,52,49,44,52,52,46,56,50,49,55,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,55,51,51,44,34,98,101,100,115,34,58,52,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,55,56,53,54,50,44,51,54,46,57,50,54,52,57,93,44,91,45,57,48,46,54,54,50,54,49,55,44,51,54,46,56,49,49,52,53,51,93,44,91,45,57,48,46,53,57,50,49,54,54,44,51,54,46,54,55,57,51,54,56,93,44,91,45,57,48,46,53,55,54,49,55,57,44,51,54,46,52,57,56,53,52,55,93,44,91,45,57,48,46,50,50,48,55,51,50,44,51,54,46,52,57,55,56,53,57,93,44,91,45,57,48,46,49,52,56,51,57,56,44,51,54,46,54,51,48,54,53,54,93,44,91,45,57,48,46,49,53,56,48,53,44,51,54,46,55,50,50,57,55,54,93,44,91,45,57,48,46,50,53,56,53,54,51,44,51,54,46,57,50,50,48,52,51,93,44,91,45,57,48,46,54,55,56,53,54,50,44,51,54,46,57,50,54,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,73,98,101,114,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,53,54,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,48,48,57,51,51,44,51,48,46,52,57,55,52,51,51,93,44,91,45,57,49,46,54,52,48,48,57,57,44,51,48,46,52,52,50,55,50,56,93,44,91,45,57,49,46,54,50,49,48,53,53,44,51,48,46,51,48,57,57,51,56,93,44,91,45,57,49,46,53,48,56,50,54,56,44,51,48,46,50,52,48,50,57,55,93,44,91,45,57,49,46,52,54,51,56,51,51,44,51,48,46,49,48,50,52,57,51,93,44,91,45,57,49,46,51,54,56,56,51,53,44,51,48,46,48,53,56,56,50,52,93,44,91,45,57,49,46,50,50,52,51,53,54,44,51,48,46,48,50,53,51,51,54,93,44,91,45,57,49,46,49,48,53,57,53,49,44,51,48,46,48,54,50,52,55,56,93,44,91,45,57,49,46,48,50,49,48,49,52,44,51,48,46,51,50,49,52,56,57,93,44,91,45,57,49,46,49,52,50,49,48,53,44,51,48,46,51,50,51,50,57,51,93,44,91,45,57,49,46,51,49,49,54,54,44,51,48,46,51,50,50,52,55,49,93,44,91,45,57,49,46,52,56,53,48,56,57,44,51,48,46,52,57,55,49,51,56,93,44,91,45,57,49,46,55,48,48,57,51,51,44,51,48,46,52,57,55,52,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,83,104,97,114,107,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,49,49,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,52,51,51,55,44,51,51,46,48,48,55,54,57,55,93,44,91,45,57,48,46,57,54,51,55,53,51,44,51,50,46,56,51,56,49,51,51,93,44,91,45,57,48,46,57,54,52,56,54,52,44,51,50,46,54,54,50,55,57,56,93,44,91,45,57,48,46,55,50,51,49,53,57,44,51,50,46,54,54,50,49,50,56,93,44,91,45,57,48,46,54,57,51,48,54,49,44,51,50,46,55,53,52,50,57,55,93,44,91,45,57,48,46,55,53,57,55,53,51,44,51,50,46,56,51,53,55,54,51,93,44,91,45,57,48,46,54,53,54,54,51,50,44,51,50,46,57,50,50,53,49,93,44,91,45,57,48,46,55,48,49,56,52,53,44,51,51,46,48,57,54,50,57,52,93,44,91,45,57,48,46,57,49,52,52,54,53,44,51,51,46,48,57,55,52,49,55,93,44,91,45,57,48,46,57,49,52,51,51,55,44,51,51,46,48,48,55,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,70,97,117,113,117,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,49,53,44,34,98,101,100,115,34,58,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,53,53,49,54,57,44,51,56,46,57,52,50,54,53,54,93,44,91,45,55,55,46,57,54,50,50,48,51,44,51,57,46,48,49,51,55,51,51,93,44,91,45,55,56,46,48,48,52,51,49,51,44,51,56,46,57,55,57,52,51,56,93,44,91,45,55,56,46,49,51,48,53,55,52,44,51,56,46,56,54,52,56,54,53,93,44,91,45,55,55,46,57,51,53,51,53,53,44,51,56,46,54,57,53,56,52,93,44,91,45,55,55,46,55,51,53,57,48,49,44,51,56,46,52,49,51,52,53,56,93,44,91,45,55,55,46,54,51,52,57,52,44,51,56,46,52,49,48,50,49,56,93,44,91,45,55,55,46,53,51,49,51,50,56,44,51,56,46,53,53,54,53,53,93,44,91,45,55,55,46,55,49,53,55,49,53,44,51,56,46,56,51,50,49,51,54,93,44,91,45,55,55,46,54,53,53,49,54,57,44,51,56,46,57,52,50,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,53,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,53,48,34,44,34,78,65,77,69,34,58,34,82,97,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,50,57,55,54,50,44,51,55,46,49,51,51,56,52,50,93,44,91,45,56,48,46,53,57,54,52,48,57,44,51,55,46,49,49,56,56,56,57,93,44,91,45,56,48,46,53,56,48,52,54,57,44,51,55,46,48,56,57,54,54,50,93,44,91,45,56,48,46,53,50,57,55,54,50,44,51,55,46,49,51,51,56,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,56,50,56,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,57,48,52,51,49,53,44,51,56,46,57,51,51,51,50,52,93,44,91,45,49,49,57,46,53,56,53,52,51,55,44,51,56,46,55,49,51,50,49,50,93,44,91,45,49,49,57,46,51,50,56,51,57,56,44,51,56,46,53,51,52,55,57,50,93,44,91,45,49,49,57,46,51,52,57,56,56,52,44,51,56,46,55,50,57,49,57,51,93,44,91,45,49,49,57,46,52,48,54,50,55,57,44,51,56,46,55,51,51,51,54,50,93,44,91,45,49,49,57,46,52,50,48,56,51,55,44,51,56,46,57,53,52,55,49,53,93,44,91,45,49,49,57,46,51,49,48,55,48,50,44,51,56,46,57,57,48,55,49,57,93,44,91,45,49,49,57,46,51,49,49,55,49,52,44,51,57,46,48,56,51,54,49,53,93,44,91,45,49,49,57,46,53,53,49,48,50,44,51,57,46,48,56,53,55,57,49,93,44,91,45,49,49,57,46,55,54,49,50,49,51,44,51,57,46,49,49,52,48,48,57,93,44,91,45,49,50,48,46,48,48,51,52,50,57,44,51,57,46,49,49,50,54,56,55,93,44,91,45,49,50,48,46,48,48,50,52,54,49,44,51,57,46,48,54,55,52,56,57,93,44,91,45,49,49,57,46,57,48,52,51,49,53,44,51,56,46,57,51,51,51,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,51,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,52,52,52,53,44,51,48,46,48,49,49,48,51,93,44,91,45,56,53,46,48,48,55,54,50,54,44,51,48,46,48,49,51,56,56,51,93,44,91,45,56,53,46,48,50,53,52,51,57,44,50,57,46,57,55,49,51,57,57,93,44,91,45,56,53,46,48,50,48,53,51,52,44,50,57,46,56,48,55,51,55,51,93,44,91,45,56,53,46,50,48,54,50,50,54,44,50,57,46,55,49,49,49,56,56,93,44,91,45,56,53,46,50,52,54,51,49,54,44,50,57,46,54,50,53,48,48,50,93,44,91,45,56,53,46,48,51,49,49,54,56,44,50,57,46,53,51,57,48,56,56,93,44,91,45,56,52,46,55,51,53,55,53,44,50,57,46,54,53,54,51,55,53,93,44,91,45,56,52,46,53,52,50,50,56,54,44,50,57,46,55,54,57,55,57,55,93,44,91,45,56,52,46,52,52,54,56,54,44,50,57,46,56,53,56,55,51,50,93,44,91,45,56,52,46,50,57,56,55,57,54,44,50,57,46,56,54,55,49,50,54,93,44,91,45,56,52,46,50,54,52,55,51,53,44,50,57,46,57,55,56,48,54,49,93,44,91,45,56,52,46,51,50,53,49,57,56,44,50,57,46,57,53,56,48,53,93,44,91,45,56,52,46,53,52,52,52,53,44,51,48,46,48,49,49,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,52,48,55,51,55,44,51,57,46,49,55,49,55,55,51,93,44,91,45,56,55,46,50,52,49,48,50,55,44,51,56,46,57,48,55,56,55,52,93,44,91,45,56,55,46,48,57,56,55,55,49,44,51,56,46,57,48,51,57,55,52,93,44,91,45,56,54,46,57,48,52,50,53,50,44,51,56,46,57,48,52,50,48,52,93,44,91,45,56,54,46,54,56,50,56,53,51,44,51,56,46,57,48,52,54,57,55,93,44,91,45,56,54,46,54,56,50,50,55,55,44,51,56,46,57,57,50,52,48,52,93,44,91,45,56,54,46,54,56,51,48,48,50,44,51,57,46,49,54,53,55,52,54,93,44,91,45,56,55,46,48,53,52,53,55,56,44,51,57,46,49,54,56,48,56,54,93,44,91,45,56,55,46,50,52,48,55,51,55,44,51,57,46,49,55,49,55,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,82,117,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,48,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,51,51,50,50,56,44,51,57,46,54,57,56,52,54,50,93,44,91,45,56,53,46,54,50,57,51,50,55,44,51,57,46,52,53,50,55,53,93,44,91,45,56,53,46,50,57,55,53,55,53,44,51,57,46,52,53,51,50,55,53,93,44,91,45,56,53,46,50,57,56,49,49,44,51,57,46,53,50,53,52,55,54,93,44,91,45,56,53,46,51,48,49,53,56,52,44,51,57,46,55,56,55,53,55,57,93,44,91,45,56,53,46,53,57,54,57,49,54,44,51,57,46,55,56,54,53,49,57,93,44,91,45,56,53,46,54,51,51,50,50,56,44,51,57,46,54,57,56,52,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,53,51,53,44,34,98,101,100,115,34,58,49,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,54,51,51,53,51,44,52,51,46,49,57,50,49,49,55,93,44,91,45,56,56,46,48,52,48,53,50,56,44,52,51,46,53,52,50,51,54,49,93,44,91,45,56,56,46,49,54,48,56,55,51,44,52,51,46,53,52,50,57,52,51,93,44,91,45,56,56,46,52,48,48,52,50,54,44,52,51,46,53,52,51,53,51,50,93,44,91,45,56,56,46,52,49,55,57,56,55,44,52,51,46,49,57,52,54,57,55,93,44,91,45,56,56,46,48,54,51,51,53,51,44,52,51,46,49,57,50,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,97,99,108,101,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,48,55,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,53,53,51,56,52,44,51,55,46,56,57,53,55,51,54,93,44,91,45,57,50,46,56,53,51,52,56,49,44,51,55,46,52,56,51,57,55,93,44,91,45,57,50,46,54,56,54,54,55,49,44,51,55,46,52,56,49,53,52,53,93,44,91,45,57,50,46,50,53,50,50,54,49,44,51,55,46,52,55,50,57,52,52,93,44,91,45,57,50,46,50,52,57,52,54,51,44,51,55,46,54,48,52,53,52,51,93,44,91,45,57,50,46,52,49,51,54,54,57,44,51,55,46,55,49,51,57,52,49,93,44,91,45,57,50,46,52,48,57,50,51,49,44,51,55,46,56,53,57,49,56,93,44,91,45,57,50,46,53,52,56,57,51,52,44,51,55,46,56,48,48,52,55,93,44,91,45,57,50,46,54,50,48,49,56,49,44,51,55,46,56,57,50,53,50,49,93,44,91,45,57,50,46,56,53,53,51,56,52,44,51,55,46,56,57,53,55,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,54,51,48,44,34,98,101,100,115,34,58,52,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,50,49,55,44,52,49,46,52,56,57,48,49,51,93,44,91,45,56,48,46,53,49,57,48,52,56,44,52,49,46,49,51,51,51,57,52,93,44,91,45,56,48,46,53,49,57,48,51,55,44,52,49,46,49,50,53,48,57,51,93,44,91,45,56,48,46,50,53,55,57,51,51,44,52,49,46,49,50,56,49,54,53,93,44,91,45,56,48,46,48,57,56,50,57,52,44,52,49,46,48,55,49,48,53,52,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,49,55,49,56,54,49,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,52,57,48,48,52,57,93,44,91,45,56,48,46,53,49,57,50,49,55,44,52,49,46,52,56,57,48,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,114,97,105,103,104,101,97,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,55,48,49,44,34,98,101,100,115,34,58,55,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,55,55,56,57,44,51,53,46,57,57,53,54,56,51,93,44,91,45,57,48,46,51,56,55,51,55,56,44,51,53,46,57,54,52,55,48,56,93,44,91,45,57,48,46,56,53,50,48,54,52,44,51,53,46,57,54,56,48,57,50,93,44,91,45,57,48,46,56,55,50,55,56,53,44,51,53,46,56,56,48,56,55,93,44,91,45,57,49,46,48,51,50,52,57,57,44,51,53,46,56,56,53,48,55,93,44,91,45,57,49,46,48,51,54,57,54,55,44,51,53,46,55,48,56,52,49,56,93,44,91,45,57,48,46,50,56,54,55,51,54,44,51,53,46,54,57,57,57,49,52,93,44,91,45,57,48,46,50,56,56,57,52,55,44,51,53,46,57,57,54,52,49,93,44,91,45,57,48,46,51,55,55,56,57,44,51,53,46,57,57,53,54,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,48,50,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,55,55,50,51,51,44,51,57,46,50,57,50,55,57,54,93,44,91,45,57,51,46,52,57,54,51,55,55,44,51,56,46,57,52,50,56,51,55,93,44,91,45,57,51,46,48,53,48,52,53,51,44,51,56,46,57,50,56,50,52,52,93,44,91,45,57,50,46,57,51,52,53,54,57,44,51,57,46,48,54,52,53,52,55,93,44,91,45,57,50,46,56,52,57,50,50,52,44,51,57,46,50,50,54,50,49,56,93,44,91,45,57,51,46,48,55,50,57,49,53,44,51,57,46,51,51,53,53,50,93,44,91,45,57,51,46,49,48,52,52,56,53,44,51,57,46,51,56,51,54,53,54,93,44,91,45,57,51,46,50,50,49,50,48,52,44,51,57,46,51,51,49,54,53,54,93,44,91,45,57,51,46,52,55,55,50,51,51,44,51,57,46,50,57,50,55,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,50,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,53,48,56,57,49,44,51,56,46,50,53,54,49,53,54,93,44,91,45,56,56,46,51,55,48,51,55,53,44,51,56,46,50,53,53,51,49,57,93,44,91,45,56,56,46,51,55,52,53,50,49,44,51,55,46,57,48,56,51,57,49,93,44,91,45,56,56,46,48,57,51,48,52,57,44,51,55,46,56,57,49,54,48,52,93,44,91,45,56,56,46,48,49,51,51,53,53,44,51,55,46,56,57,52,56,53,52,93,44,91,45,56,56,46,48,49,51,49,49,56,44,51,56,46,49,48,51,53,50,55,93,44,91,45,56,55,46,57,49,48,57,50,52,44,51,56,46,49,54,50,53,53,55,93,44,91,45,56,55,46,57,56,51,55,51,50,44,51,56,46,50,51,48,51,53,52,93,44,91,45,56,55,46,57,56,55,57,49,49,44,51,56,46,50,53,54,57,53,55,93,44,91,45,56,55,46,57,57,48,54,50,56,44,51,56,46,50,53,57,54,50,57,93,44,91,45,56,56,46,49,53,48,56,57,49,44,51,56,46,50,53,54,49,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,101,32,87,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,52,56,55,54,52,44,52,48,46,50,56,50,48,51,56,93,44,91,45,56,57,46,49,52,52,55,54,52,44,52,48,46,48,52,56,56,53,51,93,44,91,45,56,56,46,55,52,53,49,54,52,44,52,48,46,48,53,53,49,57,49,93,44,91,45,56,56,46,53,55,52,56,56,53,44,52,48,46,50,56,49,53,48,49,93,44,91,45,56,57,46,49,52,56,55,54,52,44,52,48,46,50,56,50,48,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,32,80,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,51,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,56,51,52,57,54,57,44,52,48,46,49,50,55,56,52,50,93,44,91,45,49,49,53,46,55,57,52,56,54,52,44,51,57,46,56,53,51,49,48,52,93,44,91,45,49,49,53,46,56,51,51,49,48,49,44,51,57,46,55,50,57,52,49,50,93,44,91,45,49,49,53,46,56,49,51,52,55,54,44,51,57,46,53,57,51,53,50,49,93,44,91,45,49,49,53,46,57,48,55,54,53,57,44,51,57,46,52,54,52,52,51,50,93,44,91,45,49,49,53,46,57,48,55,48,55,49,44,51,57,46,49,54,49,56,52,56,93,44,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,54,55,55,51,50,50,93,44,91,45,49,49,52,46,48,52,57,56,48,55,44,51,56,46,54,55,55,51,54,53,93,44,91,45,49,49,52,46,48,52,55,54,52,57,44,51,57,46,53,52,50,55,52,50,93,44,91,45,49,49,52,46,48,52,55,48,50,54,44,51,57,46,57,48,54,48,57,55,93,44,91,45,49,49,52,46,48,52,54,54,49,52,44,52,48,46,49,49,54,57,51,54,93,44,91,45,49,49,52,46,57,48,49,56,50,53,44,52,48,46,49,50,50,48,56,50,93,44,91,45,49,49,53,46,56,51,52,57,54,57,44,52,48,46,49,50,55,56,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,71,111,111,100,104,117,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,50,49,55,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,51,50,48,52,51,44,52,52,46,55,49,52,51,52,53,93,44,91,45,57,50,46,55,57,50,55,49,53,44,52,52,46,53,52,51,50,52,93,44,91,45,57,50,46,57,49,56,57,55,55,44,52,52,46,53,52,51,50,53,93,44,91,45,57,51,46,48,51,57,52,56,53,44,52,52,46,52,55,49,56,55,49,93,44,91,45,57,51,46,48,52,49,49,53,57,44,52,52,46,49,57,54,55,50,54,93,44,91,45,57,50,46,54,55,56,55,49,55,44,52,52,46,49,57,53,53,49,54,93,44,91,45,57,50,46,53,53,48,56,55,49,44,52,52,46,49,57,52,57,49,54,93,44,91,45,57,50,46,53,53,48,55,51,51,44,52,52,46,51,54,56,53,50,49,93,44,91,45,57,50,46,52,51,48,50,55,55,44,52,52,46,52,53,53,51,50,49,93,44,91,45,57,50,46,50,52,50,48,49,44,52,52,46,52,53,52,50,53,52,93,44,91,45,57,50,46,51,49,54,49,54,57,44,52,52,46,53,52,49,48,48,57,93,44,91,45,57,50,46,54,50,50,53,51,55,44,52,52,46,54,49,54,48,53,52,93,44,91,45,57,50,46,55,51,50,48,52,51,44,52,52,46,55,49,52,51,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,83,119,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,53,52,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,53,52,50,53,55,44,51,53,46,54,57,53,53,57,51,93,44,91,45,56,51,46,52,56,53,56,51,52,44,51,53,46,53,54,56,49,57,93,44,91,45,56,51,46,54,54,50,57,57,57,44,51,53,46,53,54,57,52,54,56,93,44,91,45,56,51,46,55,55,48,53,56,55,44,51,53,46,53,54,49,55,52,51,93,44,91,45,56,51,46,57,53,50,57,55,50,44,51,53,46,52,54,48,53,53,50,93,44,91,45,56,51,46,53,56,50,53,53,56,44,51,53,46,52,49,48,52,56,57,93,44,91,45,56,51,46,54,56,48,49,49,52,44,51,53,46,50,55,57,53,93,44,91,45,56,51,46,51,51,57,54,48,57,44,51,53,46,51,51,48,57,57,51,93,44,91,45,56,51,46,51,54,51,55,54,54,44,51,53,46,52,50,54,57,50,51,93,44,91,45,56,51,46,49,56,54,51,50,50,44,51,53,46,53,49,52,51,54,56,93,44,91,45,56,51,46,49,56,50,57,57,57,44,51,53,46,54,55,48,54,50,53,93,44,91,45,56,51,46,50,53,52,50,53,55,44,51,53,46,54,57,53,53,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,80,97,115,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,48,53,57,51,44,34,98,101,100,115,34,58,49,51,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,52,54,57,52,44,50,56,46,52,55,56,51,57,55,93,44,91,45,56,50,46,50,53,51,52,51,57,44,50,56,46,52,51,52,56,50,52,93,44,91,45,56,50,46,55,53,51,57,55,55,44,50,56,46,52,51,51,50,57,93,44,91,45,56,50,46,55,57,53,50,55,54,44,50,56,46,50,57,57,55,54,52,93,44,91,45,56,50,46,56,55,56,57,50,53,44,50,56,46,50,53,53,53,50,56,93,44,91,45,56,50,46,57,48,52,54,49,53,44,50,56,46,49,55,49,56,55,50,93,44,91,45,56,50,46,54,53,49,49,54,53,44,50,56,46,49,55,51,50,54,54,93,44,91,45,56,50,46,49,48,53,56,53,51,44,50,56,46,49,55,49,54,53,93,44,91,45,56,50,46,48,53,53,56,49,57,44,50,56,46,51,49,50,55,57,52,93,44,91,45,56,50,46,48,53,52,54,57,52,44,50,56,46,52,55,56,51,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,83,117,109,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,57,57,57,44,34,98,101,100,115,34,58,51,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,49,49,54,57,55,44,50,56,46,57,54,48,51,57,49,93,44,91,45,56,50,46,49,55,49,52,48,50,44,50,56,46,55,56,57,56,52,56,93,44,91,45,56,50,46,50,54,51,48,53,50,44,50,56,46,54,54,55,54,51,52,93,44,91,45,56,50,46,48,53,52,54,57,52,44,50,56,46,52,55,56,51,57,55,93,44,91,45,56,50,46,48,53,53,56,49,57,44,50,56,46,51,49,50,55,57,52,93,44,91,45,56,49,46,57,53,55,54,52,49,44,50,56,46,51,52,53,49,56,93,44,91,45,56,49,46,57,53,52,49,57,44,50,56,46,57,54,48,48,53,51,93,44,91,45,56,50,46,51,49,49,54,57,55,44,50,56,46,57,54,48,51,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,78,97,115,115,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,54,53,54,52,44,34,98,101,100,115,34,58,52,55,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,54,49,50,56,56,53,44,52,48,46,57,53,48,57,52,51,93,44,91,45,55,51,46,55,52,56,48,54,44,52,48,46,56,55,49,55,50,49,93,44,91,45,55,51,46,55,55,56,57,53,56,44,52,48,46,56,49,49,55,49,51,93,44,91,45,55,51,46,55,48,49,54,51,51,44,52,48,46,55,53,50,52,57,51,93,44,91,45,55,51,46,55,54,56,55,56,49,44,52,48,46,53,51,51,55,52,55,93,44,91,45,55,51,46,52,50,53,51,49,44,52,48,46,53,51,52,50,54,53,93,44,91,45,55,51,46,52,50,51,50,54,57,44,52,48,46,54,55,48,56,57,51,93,44,91,45,55,51,46,52,57,55,52,48,53,44,52,48,46,57,50,51,55,54,54,93,44,91,45,55,51,46,52,51,49,57,49,57,44,52,48,46,57,56,57,48,48,57,93,44,91,45,55,51,46,54,49,50,56,56,53,44,52,48,46,57,53,48,57,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,83,116,101,101,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,56,52,50,52,56,44,52,55,46,54,55,50,51,48,51,93,44,91,45,57,55,46,57,56,54,52,50,56,44,52,55,46,51,50,54,50,48,49,93,44,91,45,57,55,46,57,54,49,50,49,49,44,52,55,46,50,52,48,51,50,53,93,44,91,45,57,55,46,55,48,53,57,51,53,44,52,55,46,50,51,57,57,55,55,93,44,91,45,57,55,46,52,53,49,53,49,50,44,52,55,46,50,51,57,48,54,49,93,44,91,45,57,55,46,52,55,52,50,50,56,44,52,55,46,51,50,52,54,50,49,93,44,91,45,57,55,46,52,55,50,55,52,53,44,52,55,46,54,55,50,48,53,49,93,44,91,45,57,55,46,56,56,50,50,55,49,44,52,55,46,54,55,50,49,55,57,93,44,91,45,57,55,46,57,56,52,50,52,56,44,52,55,46,54,55,50,51,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,86,97,110,100,101,114,98,117,114,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,51,49,51,44,34,98,101,100,115,34,58,57,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,56,56,51,55,52,44,51,56,46,49,54,56,52,49,57,93,44,91,45,56,55,46,55,48,48,55,54,50,44,51,55,46,56,57,55,53,53,54,93,44,91,45,56,55,46,52,53,49,49,57,57,44,51,55,46,57,52,48,57,53,52,93,44,91,45,56,55,46,52,54,55,50,56,52,44,51,56,46,49,54,53,52,48,51,93,44,91,45,56,55,46,54,56,56,51,55,52,44,51,56,46,49,54,56,52,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,55,56,49,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,54,57,49,57,50,44,51,56,46,54,57,57,51,50,52,93,44,91,45,57,49,46,51,54,55,52,56,50,44,51,56,46,50,48,57,55,52,49,93,44,91,45,57,49,46,48,57,53,55,54,53,44,51,56,46,50,48,52,48,56,51,93,44,91,45,57,48,46,55,56,48,49,56,53,44,51,56,46,50,48,52,49,49,50,93,44,91,45,57,48,46,55,51,54,51,49,49,44,51,56,46,52,54,54,54,52,51,93,44,91,45,57,48,46,55,51,50,51,50,56,44,51,56,46,54,51,57,51,48,50,93,44,91,45,57,48,46,57,49,54,53,53,52,44,51,56,46,53,51,52,55,50,53,93,44,91,45,57,48,46,57,54,52,52,54,49,44,51,56,46,53,52,55,53,52,53,93,44,91,45,57,49,46,49,51,50,53,51,53,44,51,56,46,53,57,56,50,55,57,93,44,91,45,57,49,46,51,49,51,48,57,51,44,51,56,46,55,48,54,55,49,53,93,44,91,45,57,49,46,51,54,57,49,57,50,44,51,56,46,54,57,57,51,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,118,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,48,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,51,51,48,54,53,44,51,54,46,50,54,52,56,55,51,93,44,91,45,56,50,46,48,56,49,48,55,57,44,51,54,46,49,48,51,49,55,93,44,91,45,56,50,46,48,51,52,49,48,52,44,51,53,46,57,52,50,48,53,55,93,44,91,45,56,49,46,57,56,49,57,53,52,44,51,53,46,57,49,49,51,54,49,93,44,91,45,56,49,46,57,52,51,49,56,56,44,51,53,46,57,54,48,48,53,93,44,91,45,56,49,46,56,48,55,49,54,50,44,51,53,46,57,54,49,57,53,53,93,44,91,45,56,49,46,55,51,53,54,55,51,44,51,54,46,48,54,55,53,56,52,93,44,91,45,56,49,46,56,49,48,53,49,54,44,51,54,46,49,49,49,53,49,49,93,44,91,45,56,49,46,57,49,56,49,49,57,44,51,54,46,50,56,55,49,50,57,93,44,91,45,56,49,46,57,51,51,48,54,53,44,51,54,46,50,54,52,56,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,87,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,53,53,54,44,34,98,101,100,115,34,58,51,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,55,49,50,54,44,51,57,46,51,52,49,57,50,52,93,44,91,45,56,49,46,52,53,54,49,52,51,44,51,57,46,52,48,57,50,55,52,93,44,91,45,56,49,46,54,55,55,53,57,53,44,51,57,46,50,55,52,49,55,49,93,44,91,45,56,49,46,55,50,53,54,50,50,44,51,57,46,50,49,53,57,48,53,93,44,91,45,56,49,46,55,53,54,48,56,44,51,57,46,49,56,48,53,54,93,44,91,45,56,49,46,55,52,55,50,53,52,44,51,57,46,48,57,53,51,55,57,93,44,91,45,56,49,46,53,56,49,52,52,55,44,51,57,46,48,50,54,49,55,57,93,44,91,45,56,49,46,52,50,52,57,48,54,44,51,57,46,49,51,53,54,55,57,93,44,91,45,56,49,46,50,57,56,48,49,55,44,51,57,46,49,56,53,53,55,50,93,44,91,45,56,49,46,50,51,57,52,55,55,44,51,57,46,50,54,56,51,50,56,93,44,91,45,56,49,46,51,55,49,50,54,44,51,57,46,51,52,49,57,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,97,121,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,57,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,50,52,53,56,51,44,52,54,46,49,53,52,54,49,54,93,44,91,45,57,48,46,57,50,55,48,53,55,44,52,54,46,53,56,53,52,49,53,93,44,91,45,57,48,46,56,51,48,50,49,54,44,52,54,46,54,54,51,52,55,50,93,44,91,45,57,48,46,56,51,56,50,55,54,44,52,54,46,55,51,57,57,57,50,93,44,91,45,57,48,46,55,51,51,55,53,54,44,52,54,46,56,56,54,56,57,53,93,44,91,45,57,48,46,56,54,55,51,49,56,44,52,55,46,50,49,48,57,54,50,93,44,91,45,57,49,46,53,52,57,51,56,53,44,52,54,46,56,57,51,50,49,51,93,44,91,45,57,49,46,53,53,49,50,56,50,44,52,54,46,49,53,55,48,52,53,93,44,91,45,57,48,46,57,50,52,53,56,51,44,52,54,46,49,53,52,54,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,83,116,101,119,97,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,48,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,53,51,50,57,51,44,51,54,46,52,57,55,48,53,56,93,44,91,45,56,55,46,57,57,48,57,50,44,51,54,46,51,54,48,49,51,51,93,44,91,45,56,55,46,57,56,48,55,52,44,51,54,46,51,53,51,51,48,55,93,44,91,45,56,55,46,56,50,49,56,49,54,44,51,54,46,51,50,56,55,50,52,93,44,91,45,56,55,46,53,57,50,51,53,56,44,51,54,46,51,54,55,54,54,51,93,44,91,45,56,55,46,54,52,49,49,53,55,44,51,54,46,54,51,56,49,48,57,93,44,91,45,56,55,46,54,57,52,49,57,50,44,51,54,46,54,51,55,49,48,56,93,44,91,45,56,56,46,48,55,48,53,52,49,44,51,54,46,54,55,56,50,53,53,93,44,91,45,56,56,46,48,53,51,50,57,51,44,51,54,46,52,57,55,48,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,80,111,114,116,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,53,57,57,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,52,52,57,51,49,44,52,52,46,54,56,52,57,52,53,93,44,91,45,56,57,46,56,52,52,53,52,54,44,52,52,46,53,49,49,53,48,51,93,44,91,45,56,57,46,55,50,54,55,50,53,44,52,52,46,53,49,49,49,57,50,93,44,91,45,56,57,46,55,50,52,55,52,54,44,52,52,46,50,52,55,54,55,56,93,44,91,45,56,57,46,53,57,55,57,56,44,52,52,46,50,52,53,55,50,53,93,44,91,45,56,57,46,50,50,52,56,49,51,44,52,52,46,50,52,51,51,57,51,93,44,91,45,56,57,46,50,50,51,55,52,53,44,52,52,46,54,56,49,51,54,53,93,44,91,45,56,57,46,56,52,52,57,51,49,44,52,52,46,54,56,52,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,76,101,120,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,51,49,54,44,34,98,101,100,115,34,58,53,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,51,56,57,54,49,44,51,52,46,49,57,55,53,56,55,93,44,91,45,56,49,46,52,55,49,57,55,50,44,51,52,46,48,55,54,53,53,50,93,44,91,45,56,49,46,53,55,49,52,56,55,44,51,51,46,56,55,55,51,49,56,93,44,91,45,56,49,46,52,49,53,51,48,56,44,51,51,46,55,51,50,49,54,49,93,44,91,45,56,49,46,49,56,55,50,55,49,44,51,51,46,54,53,50,57,51,55,93,44,91,45,56,49,46,48,52,50,56,53,52,44,51,51,46,55,48,55,49,51,49,93,44,91,45,56,49,46,48,49,50,51,51,44,51,51,46,56,56,48,48,56,93,44,91,45,56,49,46,48,54,55,54,49,53,44,51,52,46,48,48,56,57,53,51,93,44,91,45,56,49,46,50,48,49,56,51,57,44,51,52,46,48,57,55,49,54,56,93,44,91,45,56,49,46,50,55,53,56,52,53,44,51,52,46,48,57,55,51,56,49,93,44,91,45,56,49,46,51,51,56,57,54,49,44,51,52,46,49,57,55,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,110,101,32,65,114,117,110,100,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,55,54,57,54,44,34,98,101,100,115,34,58,54,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,57,55,48,56,53,44,51,57,46,50,49,52,48,57,50,93,44,91,45,55,54,46,56,52,48,51,54,50,44,51,57,46,49,48,51,49,52,50,93,44,91,45,55,54,46,54,57,56,50,54,56,44,51,56,46,57,56,51,54,52,55,93,44,91,45,55,54,46,54,56,54,51,53,56,44,51,56,46,55,52,56,52,55,53,93,44,91,45,55,54,46,52,54,51,54,51,54,44,51,56,46,55,49,49,48,57,57,93,44,91,45,55,54,46,52,51,54,52,57,50,44,51,56,46,56,48,55,51,57,55,93,44,91,45,55,54,46,51,53,49,55,51,44,51,57,46,48,53,54,50,51,50,93,44,91,45,55,54,46,51,52,57,52,55,57,44,51,57,46,49,53,54,54,50,51,93,44,91,45,55,54,46,53,50,57,52,56,54,44,51,57,46,50,49,56,52,48,56,93,44,91,45,55,54,46,54,49,56,54,49,50,44,51,57,46,50,51,55,51,57,56,93,44,91,45,55,54,46,54,57,55,48,56,53,44,51,57,46,50,49,52,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,70,111,110,100,32,100,117,32,76,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,51,49,53,44,34,98,101,100,115,34,58,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,56,53,54,57,55,44,52,51,46,56,57,53,49,56,52,93,44,91,45,56,56,46,56,56,54,48,53,50,44,52,51,46,54,51,51,53,52,93,44,91,45,56,56,46,52,48,49,48,52,49,44,52,51,46,54,51,48,57,51,51,93,44,91,45,56,56,46,52,48,48,52,50,54,44,52,51,46,53,52,51,53,51,50,93,44,91,45,56,56,46,49,54,48,56,55,51,44,52,51,46,53,52,50,57,52,51,93,44,91,45,56,56,46,49,54,50,50,55,52,44,52,51,46,56,57,49,53,49,49,93,44,91,45,56,56,46,49,54,49,54,53,52,44,52,51,46,57,51,55,54,56,51,93,44,91,45,56,56,46,52,48,52,49,56,55,44,52,51,46,57,51,56,50,93,44,91,45,56,56,46,52,48,51,49,57,53,44,52,51,46,56,57,50,57,55,55,93,44,91,45,56,56,46,56,56,53,54,57,55,44,52,51,46,56,57,53,49,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,52,53,55,51,51,50,44,51,56,46,55,51,57,49,54,57,93,44,91,45,56,48,46,53,48,56,54,53,53,44,51,56,46,54,52,53,53,53,51,93,44,91,45,56,48,46,54,53,48,55,56,54,44,51,56,46,53,50,54,53,57,93,44,91,45,56,48,46,54,48,57,51,55,56,44,51,56,46,51,53,56,54,48,54,93,44,91,45,56,48,46,52,51,54,53,49,52,44,51,56,46,50,54,55,51,51,52,93,44,91,45,56,48,46,51,54,48,48,52,56,44,51,56,46,50,50,53,56,52,53,93,44,91,45,56,48,46,51,51,48,50,54,55,44,51,56,46,51,51,53,55,53,56,93,44,91,45,56,48,46,50,52,53,53,49,56,44,51,56,46,51,56,56,52,53,55,93,44,91,45,56,48,46,49,56,51,57,51,49,44,51,56,46,53,50,53,51,56,54,93,44,91,45,56,48,46,50,56,48,48,53,57,44,51,56,46,54,57,52,56,54,55,93,44,91,45,56,48,46,51,57,51,48,54,51,44,51,56,46,55,50,55,53,55,49,93,44,91,45,56,48,46,52,53,55,51,51,50,44,51,56,46,55,51,57,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,75,101,119,97,117,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,53,56,48,52,56,44,52,52,46,54,55,55,48,53,52,93,44,91,45,56,55,46,55,54,54,48,50,54,44,52,52,46,51,50,55,49,56,52,93,44,91,45,56,54,46,57,50,51,52,48,51,44,52,52,46,51,50,56,56,50,53,93,44,91,45,56,54,46,56,52,54,57,50,56,44,52,52,46,53,49,57,52,50,57,93,44,91,45,56,54,46,55,55,56,51,57,56,44,52,52,46,54,55,53,50,49,57,93,44,91,45,56,55,46,55,53,56,48,52,56,44,52,52,46,54,55,55,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,54,57,34,44,34,78,65,77,69,34,58,34,80,97,114,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,53,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,52,50,57,56,50,44,51,52,46,55,52,55,51,54,49,93,44,91,45,49,48,51,46,48,52,51,55,54,50,44,51,52,46,51,49,50,55,53,93,44,91,45,49,48,50,46,54,49,53,49,53,44,51,52,46,51,49,50,56,57,49,93,44,91,45,49,48,50,46,53,50,53,54,51,49,44,51,52,46,51,49,51,48,51,52,93,44,91,45,49,48,50,46,53,50,53,49,56,52,44,51,52,46,55,52,54,57,51,49,93,44,91,45,49,48,51,46,48,52,50,57,56,50,44,51,52,46,55,52,55,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,87,111,111,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,48,48,51,48,49,44,51,54,46,57,57,57,52,54,55,93,44,91,45,57,57,46,52,53,54,50,48,51,44,51,54,46,57,57,57,52,55,49,93,44,91,45,57,57,46,50,57,53,49,56,54,44,51,54,46,56,49,57,53,54,54,93,44,91,45,57,57,46,49,51,57,56,53,53,44,51,54,46,55,56,51,48,52,93,44,91,45,57,56,46,57,53,57,57,55,51,44,51,54,46,53,57,56,57,57,49,93,44,91,45,57,56,46,57,54,48,51,51,52,44,51,54,46,53,48,54,57,49,52,93,44,91,45,57,56,46,54,50,53,51,54,49,44,51,54,46,51,57,50,53,57,53,93,44,91,45,57,56,46,53,51,51,54,49,55,44,51,54,46,52,54,51,50,51,93,44,91,45,57,56,46,53,52,52,54,54,49,44,51,54,46,57,57,56,55,53,57,93,44,91,45,57,57,46,48,48,48,51,48,49,44,51,54,46,57,57,57,52,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,69,108,108,105,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,50,52,56,48,53,44,51,56,46,49,55,53,49,49,52,93,44,91,45,56,51,46,49,51,53,48,48,56,44,51,56,46,50,52,50,48,51,55,93,44,91,45,56,51,46,50,52,52,51,48,54,44,51,56,46,49,57,50,51,56,93,44,91,45,56,51,46,50,54,51,50,56,57,44,51,56,46,49,49,53,51,56,54,93,44,91,45,56,51,46,49,57,52,52,52,53,44,51,56,46,48,49,48,54,52,57,93,44,91,45,56,51,46,48,50,50,49,49,53,44,51,56,46,48,48,55,48,52,55,93,44,91,45,56,50,46,56,56,57,48,53,57,44,51,56,46,49,49,49,53,56,55,93,44,91,45,56,50,46,57,50,52,56,48,53,44,51,56,46,49,55,53,49,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,114,107,115,104,105,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,51,50,56,44,34,98,101,100,115,34,58,51,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,53,50,52,50,57,44,52,50,46,53,49,48,48,49,55,93,44,91,45,55,51,46,53,48,56,50,49,44,52,50,46,48,56,54,49,51,52,93,44,91,45,55,51,46,52,57,55,48,49,56,44,52,50,46,48,52,57,54,50,52,93,44,91,45,55,51,46,52,56,55,51,49,57,44,52,50,46,48,52,57,53,50,53,93,44,91,45,55,51,46,48,53,51,50,56,56,44,52,50,46,48,51,57,56,54,53,93,44,91,45,55,51,46,48,48,48,49,55,51,44,52,50,46,51,49,50,54,55,56,93,44,91,45,55,50,46,57,55,53,52,48,57,44,52,50,46,53,53,54,48,51,55,93,44,91,45,55,50,46,57,53,49,48,51,57,44,52,50,46,54,52,49,48,48,54,93,44,91,45,55,51,46,48,50,51,48,49,53,44,52,50,46,55,52,49,49,51,53,93,44,91,45,55,51,46,50,54,52,56,50,55,44,52,50,46,55,52,53,56,53,49,93,44,91,45,55,51,46,51,53,50,52,50,57,44,52,50,46,53,49,48,48,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,104,97,114,105,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,55,56,48,57,56,44,51,57,46,54,49,53,54,51,50,93,44,91,45,57,51,46,50,55,53,57,51,50,44,51,57,46,52,56,52,51,55,49,93,44,91,45,57,51,46,49,48,52,52,56,53,44,51,57,46,51,56,51,54,53,54,93,44,91,45,57,51,46,48,55,50,57,49,53,44,51,57,46,51,51,53,53,50,93,44,91,45,57,50,46,56,52,57,50,50,52,44,51,57,46,50,50,54,50,49,56,93,44,91,45,57,50,46,55,57,48,51,54,57,44,51,57,46,51,52,51,53,56,54,93,44,91,45,57,50,46,55,48,55,51,54,55,44,51,57,46,51,50,49,54,49,52,93,44,91,45,57,50,46,54,57,50,49,52,57,44,51,57,46,54,49,48,50,54,53,93,44,91,45,57,50,46,54,56,57,51,51,49,44,51,57,46,54,57,56,48,57,52,93,44,91,45,57,50,46,56,53,55,57,50,44,51,57,46,54,57,57,57,56,53,93,44,91,45,57,51,46,50,54,54,57,54,56,44,51,57,46,55,48,51,53,54,50,93,44,91,45,57,51,46,50,55,56,48,57,56,44,51,57,46,54,49,53,54,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,82,105,111,32,66,108,97,110,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,54,53,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,52,51,57,51,56,54,44,52,48,46,50,50,51,51,55,57,93,44,91,45,49,48,56,46,49,49,51,49,55,57,44,52,48,46,50,50,49,54,55,93,44,91,45,49,48,57,46,48,53,48,57,52,57,44,52,48,46,50,50,50,54,52,55,93,44,91,45,49,48,57,46,48,53,49,50,50,55,44,51,57,46,54,54,48,52,54,54,93,44,91,45,49,48,56,46,53,53,52,54,50,55,44,51,57,46,54,53,48,49,54,52,93,44,91,45,49,48,56,46,53,53,52,55,50,50,44,51,57,46,54,57,51,54,52,93,44,91,45,49,48,55,46,57,51,56,53,52,54,44,51,57,46,54,57,52,52,54,52,93,44,91,45,49,48,55,46,57,51,56,53,48,50,44,51,57,46,56,50,52,57,57,54,93,44,91,45,49,48,55,46,52,51,49,55,55,44,51,57,46,56,50,56,51,55,55,93,44,91,45,49,48,55,46,51,49,56,55,53,49,44,51,57,46,57,49,52,57,54,56,93,44,91,45,49,48,55,46,51,49,54,57,57,51,44,52,48,46,48,57,48,55,54,53,93,44,91,45,49,48,55,46,48,51,55,51,54,51,44,52,48,46,48,57,49,53,51,56,93,44,91,45,49,48,55,46,48,51,55,57,50,56,44,52,48,46,50,50,53,51,55,50,93,44,91,45,49,48,55,46,52,51,57,51,56,54,44,52,48,46,50,50,51,51,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,50,53,55,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,56,49,56,52,52,44,52,48,46,53,50,51,51,56,51,93,44,91,45,49,48,52,46,49,52,55,55,49,52,44,52,48,46,53,50,52,51,56,57,93,44,91,45,49,48,52,46,49,53,48,51,51,50,44,52,48,46,48,48,48,56,53,54,93,44,91,45,49,48,51,46,55,48,53,55,48,49,44,52,48,46,48,48,49,51,54,54,93,44,91,45,49,48,51,46,52,55,49,57,57,44,52,48,46,48,48,49,53,48,50,93,44,91,45,49,48,51,46,52,54,53,51,55,55,44,52,48,46,52,51,54,51,52,54,93,44,91,45,49,48,51,46,53,56,49,56,52,52,44,52,48,46,53,50,51,51,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,77,97,108,104,101,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,52,51,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,50,50,55,54,52,53,44,52,52,46,48,51,57,56,54,50,93,44,91,45,49,49,56,46,50,50,56,55,57,51,44,52,50,46,57,49,52,54,50,53,93,44,91,45,49,49,56,46,50,49,52,54,57,56,44,52,50,46,50,55,53,56,57,49,93,44,91,45,49,49,56,46,49,57,55,51,55,49,44,52,49,46,57,57,55,51,52,52,93,44,91,45,49,49,55,46,48,50,54,50,44,52,50,46,48,48,48,49,57,53,93,44,91,45,49,49,55,46,48,50,54,56,55,52,44,52,51,46,49,50,55,48,48,53,93,44,91,45,49,49,55,46,48,50,54,53,51,56,44,52,51,46,54,56,48,56,48,50,93,44,91,45,49,49,55,46,48,51,50,50,56,57,44,52,51,46,56,50,56,55,54,55,93,44,91,45,49,49,54,46,57,56,51,56,50,55,44,52,51,46,56,56,48,48,52,54,93,44,91,45,49,49,54,46,56,57,55,55,57,44,52,52,46,49,53,50,53,57,93,44,91,45,49,49,55,46,49,49,57,56,54,49,44,52,52,46,50,55,56,50,55,50,93,44,91,45,49,49,55,46,50,50,48,48,52,56,44,52,52,46,51,48,49,52,48,52,93,44,91,45,49,49,55,46,52,56,55,48,49,52,44,52,52,46,51,48,48,51,49,55,93,44,91,45,49,49,55,46,52,56,54,55,52,52,44,52,52,46,51,56,55,50,52,54,93,44,91,45,49,49,55,46,53,57,48,56,52,57,44,52,52,46,52,52,52,53,55,51,93,44,91,45,49,49,55,46,57,55,49,55,56,55,44,52,52,46,52,52,51,56,52,57,93,44,91,45,49,49,56,46,49,53,50,57,52,53,44,52,52,46,50,55,48,54,56,52,93,44,91,45,49,49,56,46,50,51,50,50,49,52,44,52,52,46,50,53,54,49,50,57,93,44,91,45,49,49,56,46,50,50,55,54,52,53,44,52,52,46,48,51,57,56,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,77,105,100,100,108,101,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,54,54,57,56,44,34,98,101,100,115,34,58,50,49,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,52,54,51,50,57,49,44,52,48,46,53,57,57,49,56,55,93,44,91,45,55,52,46,52,53,57,56,54,51,44,52,48,46,52,57,49,48,52,54,93,44,91,45,55,52,46,54,50,48,50,52,44,52,48,46,51,55,51,55,52,57,93,44,91,45,55,52,46,52,56,52,57,54,50,44,52,48,46,50,53,51,51,50,53,93,44,91,45,55,52,46,51,57,51,52,51,56,44,52,48,46,50,55,57,53,52,56,93,44,91,45,55,52,46,50,52,55,56,57,52,44,52,48,46,52,48,54,54,48,53,93,44,91,45,55,52,46,50,50,56,49,53,51,44,52,48,46,52,55,55,51,57,57,93,44,91,45,55,52,46,50,48,51,54,56,56,44,52,48,46,53,57,50,54,57,49,93,44,91,45,55,52,46,52,54,51,50,57,49,44,52,48,46,53,57,57,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,82,117,115,115,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,55,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,51,55,53,44,51,57,46,49,51,51,49,50,49,93,44,91,45,57,57,46,48,52,50,54,50,54,44,51,56,46,54,57,54,56,48,55,93,44,91,45,57,57,46,48,51,50,57,55,49,44,51,56,46,54,57,54,55,53,57,93,44,91,45,57,56,46,52,56,54,49,48,56,44,51,56,46,54,57,54,56,55,56,93,44,91,45,57,56,46,52,56,52,56,54,49,44,51,56,46,56,55,48,55,57,49,93,44,91,45,57,56,46,52,56,57,57,57,55,44,51,57,46,49,51,50,54,57,55,93,44,91,45,57,57,46,48,51,55,53,44,51,57,46,49,51,51,49,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,54,54,49,48,49,44,52,49,46,49,52,56,53,50,52,93,44,91,45,56,57,46,51,53,56,52,51,55,44,52,49,46,49,48,51,56,52,57,93,44,91,45,56,57,46,49,54,50,50,51,55,44,52,49,46,49,48,52,48,48,56,93,44,91,45,56,57,46,49,54,51,55,48,53,44,52,49,46,51,49,48,49,56,55,93,44,91,45,56,57,46,51,51,52,57,48,49,44,52,49,46,51,48,48,56,55,55,93,44,91,45,56,57,46,52,54,54,51,56,57,44,52,49,46,50,51,51,56,55,50,93,44,91,45,56,57,46,52,54,54,49,48,49,44,52,49,46,49,52,56,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,72,97,97,107,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,56,50,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,48,49,46,51,50,56,50,52,53,44,52,52,46,54,57,48,57,53,54,93,44,91,45,49,48,49,46,53,51,49,48,51,53,44,52,52,46,53,54,55,56,55,53,93,44,91,45,49,48,49,46,55,49,53,48,51,56,44,52,52,46,53,55,57,52,56,51,93,44,91,45,49,48,49,46,55,56,48,55,51,51,44,52,52,46,53,51,54,52,51,54,93,44,91,45,49,48,50,46,48,48,48,52,51,50,44,52,52,46,53,49,49,54,54,51,93,44,91,45,49,48,50,46,48,48,49,48,54,56,44,52,52,46,53,49,48,57,50,54,93,44,91,45,49,48,50,46,48,48,55,51,51,54,44,52,51,46,57,57,52,53,51,93,44,91,45,49,48,49,46,48,54,52,48,54,56,44,52,51,46,57,57,52,57,50,57,93,44,91,45,49,48,49,46,48,52,54,57,49,54,44,52,52,46,49,54,56,52,56,52,93,44,91,45,49,48,49,46,49,54,54,55,53,51,44,52,52,46,49,54,56,48,56,53,93,44,91,45,49,48,49,46,49,53,52,53,49,54,44,52,52,46,54,56,57,57,52,55,93,44,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,52,56,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,48,53,51,56,56,44,51,54,46,54,52,48,49,56,52,93,44,91,45,56,54,46,50,50,56,52,51,52,44,51,54,46,52,56,55,52,55,50,93,44,91,45,56,54,46,49,54,56,50,54,49,44,51,54,46,52,52,52,50,57,51,93,44,91,45,56,53,46,57,55,56,56,57,51,44,51,54,46,52,50,54,48,55,51,93,44,91,45,56,53,46,56,50,56,48,50,54,44,51,54,46,52,49,49,56,51,54,93,44,91,45,56,53,46,56,49,51,56,56,53,44,51,54,46,52,57,57,52,55,51,93,44,91,45,56,53,46,55,56,56,55,50,54,44,51,54,46,54,50,50,48,52,56,93,44,91,45,56,53,46,57,55,54,52,49,56,44,51,54,46,54,50,56,52,57,51,93,44,91,45,56,54,46,50,48,53,51,56,56,44,51,54,46,54,52,48,49,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,108,101,98,117,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,52,48,53,50,44,51,53,46,55,49,50,49,57,93,44,91,45,57,50,46,50,53,50,55,53,57,44,51,53,46,51,54,51,55,49,56,93,44,91,45,57,50,46,49,49,49,52,54,51,44,51,53,46,51,54,50,55,50,53,93,44,91,45,57,49,46,56,53,49,57,53,56,44,51,53,46,51,53,56,50,56,55,93,44,91,45,57,49,46,55,57,51,57,53,56,44,51,53,46,53,51,52,49,49,52,93,44,91,45,57,49,46,56,51,55,49,55,57,44,51,53,46,55,48,52,57,51,50,93,44,91,45,57,50,46,50,52,48,53,50,44,51,53,46,55,49,50,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,52,48,51,44,34,98,101,100,115,34,58,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,57,54,56,53,51,44,51,50,46,48,53,49,48,52,57,93,44,91,45,56,53,46,57,57,53,53,54,51,44,51,49,46,57,54,55,53,53,52,93,44,91,45,56,54,46,49,57,49,51,55,57,44,51,49,46,57,54,54,52,53,51,93,44,91,45,56,54,46,49,52,56,51,51,57,44,51,49,46,55,57,48,57,53,49,93,44,91,45,56,54,46,49,52,53,56,57,53,44,51,49,46,54,49,55,55,52,49,93,44,91,45,56,53,46,55,56,57,49,52,50,44,51,49,46,54,49,55,57,54,52,93,44,91,45,56,53,46,55,52,56,50,53,49,44,51,49,46,54,49,56,48,52,56,93,44,91,45,56,53,46,54,54,50,54,57,50,44,51,49,46,55,56,51,51,49,57,93,44,91,45,56,53,46,54,53,55,54,54,56,44,51,49,46,56,56,48,50,55,53,93,44,91,45,56,53,46,55,57,49,48,52,55,44,51,49,46,56,56,48,51,53,55,93,44,91,45,56,53,46,55,57,48,48,52,56,44,51,49,46,57,54,55,50,53,52,93,44,91,45,56,53,46,56,57,51,54,53,50,44,51,50,46,48,52,55,51,53,49,93,44,91,45,56,53,46,57,57,54,56,53,51,44,51,50,46,48,53,49,48,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,52,52,51,56,54,44,52,53,46,49,48,55,54,53,49,93,44,91,45,49,49,54,46,50,56,53,57,54,57,44,52,53,46,49,50,56,55,51,50,93,44,91,45,49,49,54,46,51,52,50,56,55,54,44,52,53,46,50,54,55,56,55,50,93,44,91,45,49,49,54,46,54,56,55,49,55,55,44,52,53,46,50,54,55,54,52,51,93,44,91,45,49,49,54,46,55,56,51,56,50,57,44,52,53,46,48,55,56,50,54,51,93,44,91,45,49,49,54,46,56,57,57,55,49,49,44,52,52,46,56,52,48,54,48,57,93,44,91,45,49,49,54,46,54,50,53,48,51,52,44,52,52,46,56,51,56,57,53,50,93,44,91,45,49,49,54,46,54,50,52,49,53,51,44,52,52,46,54,54,51,50,54,57,93,44,91,45,49,49,54,46,53,50,57,49,54,55,44,52,52,46,54,49,53,49,53,52,93,44,91,45,49,49,54,46,53,50,56,56,57,56,44,52,52,46,52,57,49,53,52,53,93,44,91,45,49,49,54,46,50,57,57,56,55,54,44,52,52,46,52,52,52,53,55,54,93,44,91,45,49,49,54,46,49,53,55,48,50,50,44,52,52,46,52,57,56,57,50,56,93,44,91,45,49,49,54,46,49,53,55,54,48,50,44,52,52,46,55,48,51,55,52,51,93,44,91,45,49,49,54,46,49,57,55,48,49,49,44,52,52,46,56,54,52,50,49,54,93,44,91,45,49,49,54,46,48,57,48,49,52,51,44,52,53,46,48,54,52,48,49,51,93,44,91,45,49,49,54,46,49,52,52,51,56,54,44,52,53,46,49,48,55,54,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,114,105,115,116,111,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,56,57,48,53,44,34,98,101,100,115,34,58,49,49,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,51,56,49,50,57,57,44,52,49,46,57,56,53,48,56,52,93,44,91,45,55,49,46,51,49,55,56,55,51,44,52,49,46,55,55,54,49,57,57,93,44,91,45,55,49,46,50,48,56,51,55,49,44,52,49,46,54,57,48,53,57,56,93,44,91,45,55,49,46,49,51,50,53,53,55,44,52,49,46,54,54,48,51,54,51,93,44,91,45,55,49,46,48,56,56,53,55,49,44,52,49,46,52,51,49,51,49,53,93,44,91,45,55,49,46,48,53,49,56,53,52,44,52,49,46,52,49,54,55,50,57,93,44,91,45,55,48,46,55,53,56,52,54,52,44,52,49,46,53,54,48,57,51,49,93,44,91,45,55,48,46,55,53,50,52,50,52,44,52,49,46,53,54,53,56,53,49,93,44,91,45,55,48,46,56,51,57,49,55,53,44,52,49,46,54,49,52,55,54,49,93,44,91,45,55,48,46,56,56,54,52,51,57,44,52,49,46,55,54,48,50,51,50,93,44,91,45,55,49,46,48,52,57,52,56,53,44,52,49,46,57,54,51,48,57,52,93,44,91,45,55,49,46,48,56,48,52,56,51,44,52,50,46,48,57,53,53,51,57,93,44,91,45,55,49,46,51,56,49,50,57,57,44,52,49,46,57,56,53,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,83,99,104,117,121,108,107,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,53,53,53,44,34,98,101,100,115,34,58,51,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,50,48,55,56,50,55,44,52,48,46,57,52,57,55,52,93,44,91,45,55,54,46,51,56,48,49,53,50,44,52,48,46,55,55,53,53,49,49,93,44,91,45,55,54,46,55,48,49,54,50,52,44,52,48,46,54,53,56,48,56,50,93,44,91,45,55,54,46,53,51,53,52,49,52,44,52,48,46,53,53,53,49,53,55,93,44,91,45,55,54,46,52,52,48,49,56,49,44,52,48,46,52,57,53,57,53,50,93,44,91,45,55,54,46,49,55,49,54,50,52,44,52,48,46,53,51,52,57,52,55,93,44,91,45,55,53,46,56,57,49,52,55,51,44,52,48,46,54,55,55,50,55,93,44,91,45,55,53,46,55,53,55,56,48,55,44,52,48,46,55,51,53,52,49,52,93,44,91,45,55,53,46,57,57,55,51,52,56,44,52,48,46,57,49,50,57,56,53,93,44,91,45,55,54,46,50,48,55,56,50,55,44,52,48,46,57,52,57,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,87,101,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,48,54,57,51,49,49,44,52,55,46,56,52,55,52,51,49,93,44,91,45,49,48,48,46,48,51,50,56,48,55,44,52,55,46,54,55,51,54,54,57,93,44,91,45,49,48,48,46,48,51,51,50,57,50,44,52,55,46,51,50,55,49,54,53,93,44,91,45,57,57,46,52,56,49,48,57,53,44,52,55,46,51,50,55,48,50,55,93,44,91,45,57,57,46,50,54,54,50,49,53,44,52,55,46,51,50,54,57,57,57,93,44,91,45,57,57,46,50,54,53,55,57,56,44,52,55,46,53,56,55,54,93,44,91,45,57,57,46,50,57,55,50,48,50,44,52,55,46,56,52,54,56,51,52,93,44,91,45,57,57,46,56,49,50,49,54,55,44,52,55,46,56,52,55,50,53,55,93,44,91,45,49,48,48,46,48,54,57,51,49,49,44,52,55,46,56,52,55,52,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,108,101,118,101,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,49,53,57,44,34,98,101,100,115,34,58,51,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,54,56,49,48,50,44,51,53,46,49,56,48,54,49,49,93,44,91,45,56,49,46,51,54,54,54,44,51,53,46,49,54,52,56,56,51,93,44,91,45,56,49,46,51,50,56,48,51,55,44,51,53,46,49,54,51,52,54,55,93,44,91,45,56,49,46,51,53,54,54,56,50,44,51,53,46,51,51,48,54,48,52,93,44,91,45,56,49,46,52,53,53,54,44,51,53,46,52,49,57,56,49,49,93,44,91,45,56,49,46,53,51,55,53,57,57,44,51,53,46,53,54,52,50,50,56,93,44,91,45,56,49,46,54,57,49,57,56,57,44,51,53,46,53,56,48,48,52,49,93,44,91,45,56,49,46,55,48,50,56,53,51,44,51,53,46,51,53,55,51,48,52,93,44,91,45,56,49,46,55,54,56,49,48,50,44,51,53,46,49,56,48,54,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,111,116,32,83,112,114,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,50,48,44,34,98,101,100,115,34,58,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,57,51,49,57,55,44,51,52,46,53,48,51,54,48,54,93,44,91,45,57,50,46,57,49,53,48,55,57,44,51,52,46,53,48,54,49,49,52,93,44,91,45,57,50,46,57,52,56,48,55,49,44,51,52,46,51,56,57,50,53,53,93,44,91,45,57,51,46,52,48,55,50,50,49,44,51,52,46,51,57,55,52,52,55,93,44,91,45,57,51,46,52,48,56,49,50,52,44,51,52,46,51,51,57,53,50,55,93,44,91,45,57,51,46,51,53,54,56,52,44,51,52,46,50,56,48,51,48,54,93,44,91,45,57,51,46,48,51,53,48,51,57,44,51,52,46,50,51,54,54,54,52,93,44,91,45,57,51,46,48,52,50,48,50,53,44,51,52,46,49,53,57,56,53,50,93,44,91,45,57,50,46,56,56,54,50,56,53,44,51,52,46,49,53,53,56,55,55,93,44,91,45,57,50,46,54,55,56,51,56,51,44,51,52,46,49,52,57,54,50,50,93,44,91,45,57,50,46,54,54,56,55,49,49,44,51,52,46,52,49,52,50,51,55,93,44,91,45,57,50,46,55,57,51,49,57,55,44,51,52,46,53,48,51,54,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,70,114,101,100,101,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,52,55,50,44,34,98,101,100,115,34,58,50,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,54,57,49,52,53,44,51,57,46,55,50,48,48,49,56,93,44,91,45,55,55,46,53,55,48,49,56,50,44,51,57,46,54,49,57,57,57,56,93,44,91,45,55,55,46,54,55,55,49,54,52,44,51,57,46,51,50,52,53,51,52,93,44,91,45,55,55,46,53,54,56,55,53,51,44,51,57,46,51,48,54,52,52,55,93,44,91,45,55,55,46,52,53,56,56,48,56,44,51,57,46,50,50,48,50,55,93,44,91,45,55,55,46,49,54,56,56,48,49,44,51,57,46,51,53,51,53,48,50,93,44,91,45,55,55,46,49,54,56,48,56,44,51,57,46,51,53,51,57,53,55,93,44,91,45,55,55,46,49,48,54,56,51,57,44,51,57,46,52,57,49,54,54,49,93,44,91,45,55,55,46,50,57,57,55,55,44,51,57,46,54,49,50,50,56,52,93,44,91,45,55,55,46,50,49,55,48,50,52,44,51,57,46,55,49,57,56,54,49,93,44,91,45,55,55,46,52,53,57,49,51,52,44,51,57,46,55,49,57,57,56,52,93,44,91,45,55,55,46,52,54,57,49,52,53,44,51,57,46,55,50,48,48,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,83,99,104,117,121,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,54,52,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,57,57,54,51,53,44,52,48,46,49,56,51,56,49,50,93,44,91,45,57,48,46,52,53,49,57,49,54,44,52,48,46,49,56,56,56,48,51,93,44,91,45,57,48,46,52,53,48,50,50,55,44,52,48,46,50,55,54,51,51,53,93,44,91,45,57,48,46,57,48,57,55,53,54,44,52,48,46,50,56,52,51,57,52,93,44,91,45,57,48,46,57,49,49,57,54,57,44,52,48,46,49,57,51,48,56,56,93,44,91,45,57,48,46,57,49,51,52,54,57,44,52,48,46,49,48,52,52,53,53,93,44,91,45,57,48,46,54,57,54,51,53,55,44,52,48,46,49,48,51,57,53,93,44,91,45,57,48,46,54,48,55,49,51,52,44,51,57,46,57,56,49,54,53,56,93,44,91,45,57,48,46,53,49,51,55,52,55,44,51,57,46,57,56,55,56,57,49,93,44,91,45,57,48,46,51,53,52,53,50,52,44,52,48,46,49,50,52,50,49,55,93,44,91,45,57,48,46,49,57,57,54,51,53,44,52,48,46,49,56,51,56,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,77,111,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,55,52,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,54,51,57,50,48,53,44,51,56,46,51,50,54,56,56,93,44,91,45,49,49,57,46,53,55,54,52,57,54,44,51,56,46,49,53,55,54,54,49,93,44,91,45,49,49,57,46,51,52,57,56,52,53,44,51,56,46,48,56,53,53,54,54,93,44,91,45,49,49,57,46,51,48,56,51,56,57,44,51,55,46,57,52,54,56,50,52,93,44,91,45,49,49,57,46,50,48,48,48,56,51,44,51,55,46,56,56,52,53,50,55,93,44,91,45,49,49,57,46,50,54,56,57,55,57,44,51,55,46,55,51,57,50,51,93,44,91,45,49,49,57,46,49,50,52,51,49,50,44,51,55,46,55,51,51,57,52,52,93,44,91,45,49,49,57,46,48,50,50,51,54,51,44,51,55,46,53,56,53,55,51,55,93,44,91,45,49,49,56,46,55,55,53,48,49,52,44,51,55,46,52,54,51,48,53,50,93,44,91,45,49,49,55,46,56,51,50,55,50,54,44,51,55,46,52,54,52,57,50,57,93,44,91,45,49,49,56,46,52,50,56,49,52,52,44,51,55,46,56,57,54,50,50,93,44,91,45,49,49,57,46,49,53,54,57,55,56,44,51,56,46,52,49,52,55,52,54,93,44,91,45,49,49,57,46,51,50,56,51,57,56,44,51,56,46,53,51,52,55,57,50,93,44,91,45,49,49,57,46,53,56,53,52,51,55,44,51,56,46,55,49,51,50,49,50,93,44,91,45,49,49,57,46,54,49,57,48,54,54,44,51,56,46,54,48,51,53,50,57,93,44,91,45,49,49,57,46,53,52,54,48,57,50,44,51,56,46,52,57,57,51,53,93,44,91,45,49,49,57,46,54,51,57,50,48,53,44,51,56,46,51,50,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,84,117,111,108,117,109,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,57,51,50,44,34,98,101,100,115,34,58,49,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,49,57,57,53,49,44,51,56,46,52,51,51,53,50,49,93,44,91,45,49,50,48,46,49,55,54,54,49,51,44,51,56,46,51,55,51,53,49,93,44,91,45,49,50,48,46,53,49,52,57,53,50,44,51,55,46,57,53,51,51,57,93,44,91,45,49,50,48,46,54,53,51,50,55,52,44,51,55,46,56,51,49,56,53,56,93,44,91,45,49,50,48,46,51,56,55,54,49,51,44,51,55,46,54,51,51,55,48,52,93,44,91,45,49,50,48,46,51,52,53,52,51,55,44,51,55,46,55,50,52,55,56,55,93,44,91,45,49,50,48,46,48,50,54,53,57,51,44,51,55,46,56,49,49,56,55,55,93,44,91,45,49,49,57,46,57,51,56,52,49,52,44,51,55,46,55,54,51,48,50,54,93,44,91,45,49,49,57,46,56,48,53,52,57,56,44,51,55,46,55,53,57,54,49,56,93,44,91,45,49,49,57,46,54,54,55,50,48,51,44,51,55,46,56,48,49,50,50,52,93,44,91,45,49,49,57,46,53,51,51,57,57,57,44,51,55,46,57,48,50,57,50,50,93,44,91,45,49,49,57,46,51,48,56,57,57,53,44,51,55,46,55,55,55,57,56,54,93,44,91,45,49,49,57,46,50,54,56,57,55,57,44,51,55,46,55,51,57,50,51,93,44,91,45,49,49,57,46,50,48,48,48,56,51,44,51,55,46,56,56,52,53,50,55,93,44,91,45,49,49,57,46,51,48,56,51,56,57,44,51,55,46,57,52,54,56,50,52,93,44,91,45,49,49,57,46,51,52,57,56,52,53,44,51,56,46,48,56,53,53,54,54,93,44,91,45,49,49,57,46,53,55,54,52,57,54,44,51,56,46,49,53,55,54,54,49,93,44,91,45,49,49,57,46,54,51,57,50,48,53,44,51,56,46,51,50,54,56,56,93,44,91,45,49,49,57,46,55,53,51,52,56,49,44,51,56,46,52,49,54,55,53,57,93,44,91,45,49,49,57,46,56,56,52,55,52,57,44,51,56,46,51,53,54,49,56,53,93,44,91,45,49,50,48,46,48,49,57,57,53,49,44,51,56,46,52,51,51,53,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,68,111,195,177,97,32,65,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,51,51,56,44,34,98,101,100,115,34,58,54,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,50,57,57,54,51,49,44,51,50,46,54,48,53,51,55,93,44,91,45,49,48,55,46,50,57,54,55,57,51,44,51,49,46,55,56,51,54,52,49,93,44,91,45,49,48,54,46,53,50,56,48,52,55,44,51,49,46,55,56,51,56,57,49,93,44,91,45,49,48,54,46,54,51,53,57,50,44,51,49,46,56,54,54,50,51,51,93,44,91,45,49,48,54,46,54,49,56,52,56,54,44,51,50,46,48,48,48,52,57,53,93,44,91,45,49,48,54,46,51,55,55,49,55,52,44,51,50,46,48,48,49,53,48,51,93,44,91,45,49,48,54,46,51,55,54,53,56,53,44,51,50,46,57,53,56,48,53,93,44,91,45,49,48,54,46,51,52,48,53,49,53,44,51,51,46,48,53,50,55,55,55,93,44,91,45,49,48,54,46,56,56,55,56,57,49,44,51,50,46,56,50,50,55,56,49,93,44,91,45,49,48,54,46,56,56,55,55,51,51,44,51,50,46,55,55,57,50,55,51,93,44,91,45,49,48,55,46,50,57,57,52,55,53,44,51,50,46,55,56,48,49,54,54,93,44,91,45,49,48,55,46,50,57,57,54,51,49,44,51,50,46,54,48,53,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,67,114,105,115,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,52,54,44,34,98,101,100,115,34,58,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,48,50,55,50,51,44,51,49,46,56,48,51,53,55,57,93,44,91,45,56,51,46,54,49,50,54,52,50,44,51,49,46,56,48,52,49,50,56,93,44,91,45,56,51,46,54,49,50,50,53,54,44,51,49,46,56,53,52,48,56,57,93,44,91,45,56,51,46,54,48,57,54,54,51,44,51,50,46,48,50,55,57,51,56,93,44,91,45,56,51,46,57,54,49,50,55,56,44,51,50,46,48,51,48,53,57,53,93,44,91,45,56,51,46,57,50,50,52,57,52,44,51,49,46,57,48,57,54,53,51,93,44,91,45,56,51,46,57,51,57,52,51,55,44,51,49,46,56,52,55,57,50,57,93,44,91,45,56,51,46,56,48,50,55,50,51,44,51,49,46,56,48,51,53,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,57,50,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,54,53,53,56,53,44,51,51,46,52,52,52,52,53,57,93,44,91,45,57,51,46,52,56,49,55,54,44,51,51,46,50,53,57,57,57,49,93,44,91,45,57,51,46,52,57,48,53,50,44,51,51,46,48,49,56,52,52,50,93,44,91,45,57,51,46,50,51,56,54,48,55,44,51,51,46,48,49,55,57,57,50,93,44,91,45,57,50,46,57,56,56,55,48,55,44,51,51,46,48,49,55,52,51,51,93,44,91,45,57,50,46,57,55,56,52,54,57,44,51,51,46,51,55,55,50,56,93,44,91,45,57,51,46,49,49,57,48,49,52,44,51,51,46,51,56,48,50,57,51,93,44,91,45,57,51,46,49,49,54,51,54,49,44,51,51,46,52,53,50,57,48,57,93,44,91,45,57,51,46,51,54,53,53,56,53,44,51,51,46,52,52,52,52,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,71,114,105,103,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,54,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,48,48,48,56,53,44,52,55,46,53,56,55,50,50,56,93,44,91,45,57,56,46,52,57,57,50,52,54,44,52,55,46,51,50,54,53,51,56,93,44,91,45,57,56,46,52,54,55,48,54,54,44,52,55,46,50,52,48,52,48,52,93,44,91,45,57,55,46,57,54,49,50,49,49,44,52,55,46,50,52,48,51,50,53,93,44,91,45,57,55,46,57,56,54,52,50,56,44,52,55,46,51,50,54,50,48,49,93,44,91,45,57,55,46,57,56,52,50,52,56,44,52,55,46,54,55,50,51,48,51,93,44,91,45,57,56,46,53,48,48,49,56,49,44,52,55,46,54,55,50,52,49,51,93,44,91,45,57,56,46,53,48,48,48,56,53,44,52,55,46,53,56,55,50,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,83,111,108,97,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,56,53,51,48,44,34,98,101,100,115,34,58,49,48,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,49,48,51,50,56,49,44,51,56,46,53,49,51,51,52,56,93,44,91,45,49,50,50,46,49,50,54,51,56,57,44,51,56,46,52,50,56,57,49,56,93,44,91,45,49,50,50,46,48,54,52,55,55,57,44,51,56,46,51,49,53,57,49,50,93,44,91,45,49,50,50,46,50,48,53,57,56,50,44,51,56,46,51,49,53,55,49,51,93,44,91,45,49,50,50,46,49,57,53,51,56,44,51,56,46,49,53,53,48,49,55,93,44,91,45,49,50,50,46,52,48,54,55,56,54,44,51,56,46,49,53,53,54,51,50,93,44,91,45,49,50,50,46,51,52,55,52,53,52,44,51,56,46,48,55,51,50,54,93,44,91,45,49,50,50,46,49,50,51,57,55,51,44,51,56,46,48,51,53,55,49,55,93,44,91,45,49,50,49,46,56,54,50,52,54,50,44,51,56,46,48,54,54,48,51,93,44,91,45,49,50,49,46,55,49,51,57,50,54,44,51,56,46,48,56,52,53,52,50,93,44,91,45,49,50,49,46,54,49,53,52,49,51,44,51,56,46,49,57,53,54,57,54,93,44,91,45,49,50,49,46,53,57,51,50,55,51,44,51,56,46,51,49,51,48,56,57,93,44,91,45,49,50,49,46,54,57,52,48,49,52,44,51,56,46,51,49,52,56,53,54,93,44,91,45,49,50,49,46,54,57,53,49,52,55,44,51,56,46,53,50,51,49,53,54,93,44,91,45,49,50,49,46,57,52,48,50,56,53,44,51,56,46,53,51,51,51,56,52,93,44,91,45,49,50,50,46,49,48,51,50,56,49,44,51,56,46,53,49,51,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,108,97,121,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,55,50,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,48,53,51,48,55,44,52,51,46,48,56,49,54,53,51,93,44,91,45,57,49,46,54,48,55,48,53,57,44,52,50,46,54,52,51,57,55,51,93,44,91,45,57,49,46,49,51,50,55,54,54,44,52,50,46,54,52,53,56,52,52,93,44,91,45,57,48,46,56,57,54,57,53,49,44,52,50,46,54,55,53,48,56,50,93,44,91,45,57,49,46,48,53,49,50,55,53,44,52,50,46,55,51,55,48,48,49,93,44,91,45,57,49,46,49,53,54,56,49,50,44,52,50,46,57,56,56,49,55,93,44,91,45,57,49,46,49,55,55,50,50,50,44,52,51,46,48,56,48,50,52,55,93,44,91,45,57,49,46,54,48,53,51,48,55,44,52,51,46,48,56,49,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,52,57,34,44,34,78,65,77,69,34,58,34,84,105,116,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,55,51,48,44,34,98,101,100,115,34,58,49,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,50,54,49,51,44,51,51,46,48,51,52,53,56,49,93,44,91,45,57,52,46,57,50,55,55,50,55,44,51,51,46,48,55,48,51,48,52,93,44,91,45,57,52,46,56,49,57,56,50,56,44,51,50,46,57,56,50,56,56,54,93,44,91,45,57,52,46,56,48,56,55,56,51,44,51,51,46,51,54,51,54,51,54,93,44,91,45,57,53,46,49,50,53,52,53,49,44,51,51,46,51,56,57,52,53,52,93,44,91,45,57,53,46,49,50,54,49,51,44,51,51,46,48,51,52,53,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,51,54,51,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,54,53,55,48,55,51,44,51,57,46,53,51,53,49,52,49,93,44,91,45,55,56,46,56,53,48,55,50,51,44,51,57,46,51,51,49,48,57,51,93,44,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,44,91,45,55,56,46,56,57,57,54,57,53,44,51,57,46,49,57,57,49,51,55,93,44,91,45,55,56,46,53,48,56,49,51,50,44,51,57,46,48,56,56,54,51,93,44,91,45,55,56,46,52,48,51,57,48,55,44,51,57,46,49,54,55,55,51,56,93,44,91,45,55,56,46,52,49,57,52,50,50,44,51,57,46,50,53,55,52,55,54,93,44,91,45,55,56,46,51,52,48,52,49,53,44,51,57,46,51,53,51,54,50,56,93,44,91,45,55,56,46,51,52,55,48,56,55,44,51,57,46,52,54,54,48,49,50,93,44,91,45,55,56,46,52,54,56,53,56,49,44,51,57,46,53,49,54,54,49,57,93,44,91,45,55,56,46,54,53,55,48,55,51,44,51,57,46,53,51,53,49,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,111,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,54,50,57,44,34,98,101,100,115,34,58,52,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,53,53,53,56,48,52,44,51,53,46,53,49,53,48,51,57,93,44,91,45,55,57,46,55,54,55,57,53,55,44,51,53,46,53,49,49,52,56,52,93,44,91,45,55,57,46,54,57,55,55,55,51,44,51,53,46,50,53,49,51,55,57,93,44,91,45,55,57,46,54,49,52,51,48,52,44,51,53,46,49,54,51,54,55,57,93,44,91,45,55,57,46,53,54,54,52,57,55,44,51,53,46,48,54,52,48,49,49,93,44,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,44,91,45,55,57,46,51,51,53,52,55,55,44,51,53,46,49,54,49,53,56,56,93,44,91,45,55,57,46,50,50,57,55,49,50,44,51,53,46,50,49,48,54,48,50,93,44,91,45,55,57,46,48,57,55,53,57,49,44,51,53,46,49,55,52,50,50,53,93,44,91,45,55,57,46,48,57,53,56,48,56,44,51,53,46,49,57,50,48,54,56,93,44,91,45,55,57,46,49,56,51,53,53,54,44,51,53,46,51,48,55,49,54,49,93,44,91,45,55,57,46,50,54,53,55,49,51,44,51,53,46,51,52,53,50,55,57,93,44,91,45,55,57,46,51,53,48,48,55,51,44,51,53,46,53,49,56,48,48,50,93,44,91,45,55,57,46,53,53,53,56,48,52,44,51,53,46,53,49,53,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,57,49,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,51,50,57,55,49,44,51,56,46,54,57,54,55,53,57,93,44,91,45,57,57,46,48,51,50,52,48,56,44,51,56,46,51,52,56,51,51,52,93,44,91,45,57,57,46,48,51,50,51,48,57,44,51,56,46,50,54,49,50,50,55,93,44,91,45,57,56,46,57,49,50,53,56,51,44,51,56,46,50,54,49,48,56,56,93,44,91,45,57,56,46,52,55,57,56,52,49,44,51,56,46,50,54,48,55,57,93,44,91,45,57,56,46,52,56,48,51,55,55,44,51,56,46,53,50,49,56,52,49,93,44,91,45,57,56,46,52,56,54,49,48,56,44,51,56,46,54,57,54,56,55,56,93,44,91,45,57,57,46,48,51,50,57,55,49,44,51,56,46,54,57,54,55,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,83,108,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,53,50,49,49,44,52,54,46,53,52,48,56,54,49,93,44,91,45,49,48,52,46,48,52,53,53,53,57,44,52,54,46,50,56,48,48,56,49,93,44,91,45,49,48,50,46,57,57,53,50,52,53,44,52,54,46,50,56,48,54,53,49,93,44,91,45,49,48,50,46,57,50,52,53,52,55,44,52,54,46,50,56,49,53,49,56,93,44,91,45,49,48,50,46,57,50,55,52,53,49,44,52,54,46,54,51,48,48,50,93,44,91,45,49,48,51,46,50,51,49,54,53,54,44,52,54,46,54,50,57,55,54,52,93,44,91,45,49,48,51,46,54,48,57,50,55,51,44,52,54,46,54,50,57,56,50,50,93,44,91,45,49,48,51,46,56,48,48,56,55,51,44,52,54,46,54,50,57,55,51,49,93,44,91,45,49,48,51,46,56,48,48,56,56,44,52,54,46,53,52,48,54,55,49,93,44,91,45,49,48,52,46,48,52,53,50,49,49,44,52,54,46,53,52,48,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,55,52,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,51,55,53,56,55,44,51,50,46,54,54,55,51,52,49,93,44,91,45,57,49,46,55,51,57,54,53,49,44,51,50,46,53,54,49,50,57,57,93,44,91,45,57,49,46,57,49,51,48,53,55,44,51,50,46,53,48,53,57,48,50,93,44,91,45,57,50,46,48,48,52,51,52,44,51,50,46,51,56,48,52,57,57,93,44,91,45,57,50,46,48,51,52,51,57,55,44,51,50,46,50,55,55,48,54,56,93,44,91,45,57,49,46,57,55,50,56,56,44,51,50,46,49,54,54,55,52,50,93,44,91,45,57,49,46,56,57,52,55,50,57,44,51,50,46,49,53,49,53,53,93,44,91,45,57,49,46,55,55,54,53,56,55,44,51,50,46,50,51,57,49,48,54,93,44,91,45,57,49,46,55,53,57,48,57,56,44,51,50,46,51,49,55,55,49,52,93,44,91,45,57,49,46,54,50,53,49,50,49,44,51,50,46,52,48,53,51,52,52,93,44,91,45,57,49,46,52,55,54,55,51,57,44,51,50,46,52,48,53,56,48,56,93,44,91,45,57,49,46,52,53,55,54,52,51,44,51,50,46,53,51,55,56,48,55,93,44,91,45,57,49,46,52,52,53,50,57,57,44,51,50,46,53,56,49,57,53,54,93,44,91,45,57,49,46,53,57,54,48,50,55,44,51,50,46,53,56,50,49,57,50,93,44,91,45,57,49,46,54,51,55,53,56,55,44,51,50,46,54,54,55,51,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,50,50,55,51,51,44,52,50,46,48,56,55,57,49,54,93,44,91,45,57,57,46,50,50,49,56,51,44,52,49,46,55,52,48,55,57,50,93,44,91,45,57,57,46,50,49,50,48,49,54,44,52,49,46,55,52,48,54,49,51,93,44,91,45,57,56,46,55,53,57,49,51,51,44,52,49,46,55,52,48,51,56,50,93,44,91,45,57,56,46,55,54,49,49,53,53,44,52,50,46,48,56,56,53,49,56,93,44,91,45,57,57,46,50,50,50,55,51,51,44,52,50,46,48,56,55,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,55,53,50,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,57,49,46,57,56,56,55,49,56,44,51,48,46,51,54,56,53,57,56,93,44,91,45,57,49,46,57,52,57,48,52,55,44,51,48,46,50,55,54,55,55,49,93,44,91,45,57,49,46,57,55,57,57,51,50,44,51,48,46,49,56,50,53,56,53,93,44,91,45,57,49,46,57,53,48,57,57,56,44,51,48,46,48,55,51,50,49,51,93,44,91,45,57,49,46,56,49,57,50,49,54,44,51,48,46,48,52,52,48,49,51,93,44,91,45,57,49,46,55,54,53,49,54,56,44,51,48,46,49,48,56,52,57,53,93,44,91,45,57,49,46,54,53,56,56,56,54,44,51,48,46,49,48,56,50,50,54,93,44,91,45,57,49,46,54,48,48,51,53,52,44,51,48,46,48,51,51,49,54,57,93,44,91,45,57,49,46,51,54,56,56,51,53,44,51,48,46,48,53,56,56,50,52,93,44,91,45,57,49,46,52,54,51,56,51,51,44,51,48,46,49,48,50,52,57,51,93,44,91,45,57,49,46,53,48,56,50,54,56,44,51,48,46,50,52,48,50,57,55,93,44,91,45,57,49,46,54,50,49,48,53,53,44,51,48,46,51,48,57,57,51,56,93,44,91,45,57,49,46,54,52,48,48,57,57,44,51,48,46,52,52,50,55,50,56,93,44,91,45,57,49,46,55,48,48,57,51,51,44,51,48,46,52,57,55,52,51,51,93,44,91,45,57,49,46,55,53,54,49,57,51,44,51,48,46,52,57,55,55,51,56,93,44,91,45,57,49,46,54,57,52,51,44,51,48,46,52,48,49,55,52,56,93,44,91,45,57,49,46,56,54,57,50,55,51,44,51,48,46,52,49,55,50,51,53,93,44,91,45,57,49,46,57,56,56,55,49,56,44,51,48,46,51,54,56,53,57,56,93,93,93,44,91,91,91,45,57,49,46,52,55,49,57,53,49,44,50,57,46,57,53,53,57,56,57,93,44,91,45,57,49,46,51,55,51,54,52,50,44,50,57,46,56,51,52,52,48,49,93,44,91,45,57,49,46,51,56,54,52,57,49,44,50,57,46,55,56,51,54,56,49,93,44,91,45,57,49,46,49,48,48,48,49,44,50,57,46,54,57,57,52,48,50,93,44,91,45,57,49,46,48,57,50,55,52,56,44,50,57,46,56,48,49,53,55,52,93,44,91,45,57,49,46,49,56,50,56,49,55,44,50,57,46,56,52,54,49,55,50,93,44,91,45,57,49,46,50,53,53,50,50,57,44,50,57,46,57,55,49,52,53,55,93,44,91,45,57,49,46,52,55,49,57,53,49,44,50,57,46,57,53,53,57,56,57,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,83,117,109,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,56,53,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,52,55,56,56,55,44,51,50,46,57,50,57,48,56,50,93,44,91,45,56,56,46,51,56,56,55,57,55,44,51,50,46,53,55,56,49,50,51,93,44,91,45,56,56,46,52,50,49,52,53,51,44,51,50,46,51,48,56,54,56,93,44,91,45,56,55,46,57,51,48,54,54,49,44,51,50,46,51,49,48,53,55,52,93,44,91,45,56,56,46,48,52,54,51,51,53,44,51,50,46,51,55,55,48,56,55,93,44,91,45,56,56,46,48,51,49,54,50,51,44,51,50,46,52,51,51,54,49,93,44,91,45,56,55,46,56,53,51,52,50,44,51,50,46,53,51,50,48,56,54,93,44,91,45,56,55,46,57,50,56,54,56,57,44,51,50,46,54,51,50,50,56,52,93,44,91,45,56,56,46,48,53,53,48,48,52,44,51,50,46,54,52,54,52,56,50,93,44,91,45,56,56,46,49,51,50,54,56,53,44,51,50,46,56,51,50,56,53,51,93,44,91,45,56,56,46,50,48,55,51,49,54,44,51,50,46,57,50,52,55,56,50,93,44,91,45,56,56,46,49,55,49,56,53,50,44,51,50,46,57,57,53,56,54,93,44,91,45,56,56,46,51,52,48,52,51,50,44,51,50,46,57,57,49,49,57,57,93,44,91,45,56,56,46,51,52,55,56,56,55,44,51,50,46,57,50,57,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,87,105,110,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,55,53,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,51,52,55,50,53,44,51,52,46,51,48,54,57,57,55,93,44,91,45,56,55,46,54,51,54,49,49,56,44,51,52,46,48,48,50,50,48,51,93,44,91,45,56,55,46,49,53,49,48,51,54,44,51,51,46,57,57,51,50,50,53,93,44,91,45,56,55,46,49,49,49,57,57,50,44,51,51,46,57,57,50,51,56,53,93,44,91,45,56,55,46,49,48,57,57,49,49,44,51,52,46,50,57,57,50,57,57,93,44,91,45,56,55,46,53,50,57,55,50,50,44,51,52,46,51,48,52,53,57,56,93,44,91,45,56,55,46,54,51,52,55,50,53,44,51,52,46,51,48,54,57,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,83,101,109,105,110,111,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,53,48,56,54,44,34,98,101,100,115,34,58,51,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,49,52,52,52,54,44,50,56,46,55,56,52,57,53,53,93,44,91,45,56,49,46,52,53,57,55,50,56,44,50,56,46,54,52,48,49,57,54,93,44,91,45,56,49,46,51,50,55,56,57,44,50,56,46,54,49,48,50,55,55,93,44,91,45,56,48,46,57,56,55,50,53,44,50,56,46,54,49,50,57,57,55,93,44,91,45,56,49,46,49,48,53,55,53,44,50,56,46,56,50,56,53,52,49,93,44,91,45,56,49,46,51,50,48,52,55,51,44,50,56,46,56,51,52,53,51,93,44,91,45,56,49,46,51,54,54,57,52,44,50,56,46,56,55,57,50,50,55,93,44,91,45,56,49,46,52,49,52,52,52,54,44,50,56,46,55,56,52,57,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,70,111,114,114,101,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,53,49,55,44,34,98,101,100,115,34,58,53,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,53,49,54,49,54,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,52,53,49,48,55,51,44,51,49,46,51,52,54,51,56,51,93,44,91,45,56,57,46,51,52,55,56,54,51,44,51,49,46,51,52,54,55,93,44,91,45,56,57,46,51,52,56,57,53,44,51,49,46,48,49,48,51,55,93,44,91,45,56,57,46,51,52,48,56,48,54,44,51,48,46,57,48,57,57,49,50,93,44,91,45,56,57,46,49,51,55,57,54,55,44,51,48,46,57,48,57,56,55,55,93,44,91,45,56,57,46,49,52,54,48,57,50,44,51,49,46,52,51,52,48,53,50,93,44,91,45,56,57,46,51,57,57,49,55,56,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,52,53,49,54,49,54,44,51,49,46,52,51,52,48,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,73,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,53,54,52,44,34,98,101,100,115,34,58,57,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,48,50,55,54,49,44,52,50,46,55,54,57,56,56,93,44,91,45,56,52,46,54,48,48,52,48,51,44,52,50,46,52,50,49,57,56,52,93,44,91,45,56,52,46,49,52,48,55,49,51,44,52,50,46,52,50,52,54,49,49,93,44,91,45,56,52,46,49,53,56,49,56,57,44,52,50,46,55,55,54,54,51,57,93,44,91,45,56,52,46,51,54,51,54,53,57,44,52,50,46,55,55,53,55,55,56,93,44,91,45,56,52,46,54,48,50,55,54,49,44,52,50,46,55,54,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,83,104,97,119,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,50,56,52,44,34,98,101,100,115,34,58,49,48,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,51,57,48,54,44,51,57,46,49,50,54,53,50,55,93,44,91,45,57,53,46,57,52,54,55,53,52,44,51,57,46,48,57,56,54,56,53,93,44,91,45,57,53,46,57,52,54,53,56,55,44,51,56,46,56,54,57,57,55,51,93,44,91,45,57,53,46,53,48,48,55,50,52,44,51,56,46,56,54,57,56,49,53,93,44,91,45,57,53,46,53,48,48,50,53,52,44,51,57,46,48,53,54,54,53,54,93,44,91,45,57,53,46,53,57,54,55,53,57,44,51,57,46,48,54,52,54,55,50,93,44,91,45,57,53,46,53,56,57,52,55,50,44,51,57,46,50,49,54,48,56,49,93,44,91,45,57,54,46,48,51,53,53,55,51,44,51,57,46,50,49,54,53,50,93,44,91,45,57,54,46,48,51,57,48,54,44,51,57,46,49,50,54,53,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,97,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,54,55,50,55,57,44,52,51,46,56,53,48,54,56,54,93,44,91,45,57,55,46,57,54,52,53,56,54,44,52,51,46,52,57,57,48,52,49,93,44,91,45,57,55,46,54,48,55,48,49,50,44,52,51,46,52,57,57,56,50,54,93,44,91,45,57,55,46,54,48,56,53,49,55,44,52,51,46,56,52,57,48,53,57,93,44,91,45,57,55,46,56,53,49,49,49,44,52,51,46,56,52,57,56,53,55,93,44,91,45,57,55,46,57,54,55,50,55,57,44,52,51,46,56,53,48,54,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,73,116,97,115,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,50,48,51,44,34,98,101,100,115,34,58,49,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,49,54,50,55,57,44,52,55,46,52,52,52,56,50,56,93,44,91,45,57,52,46,51,50,55,53,51,49,44,52,55,46,52,49,53,56,52,52,93,44,91,45,57,52,46,49,49,55,57,57,57,44,52,55,46,52,56,48,55,52,52,93,44,91,45,57,52,46,48,50,53,57,56,49,44,52,55,46,51,53,49,51,56,56,93,44,91,45,57,51,46,55,55,54,48,55,52,44,52,55,46,50,55,55,57,56,54,93,44,91,45,57,51,46,55,55,53,50,53,55,44,52,55,46,48,51,48,52,49,56,93,44,91,45,57,51,46,48,53,53,57,52,51,44,52,55,46,48,50,54,52,49,53,93,44,91,45,57,51,46,48,54,57,53,44,52,55,46,51,57,51,57,49,53,93,44,91,45,57,51,46,48,54,49,50,53,51,44,52,55,46,55,50,48,49,56,55,93,44,91,45,57,51,46,48,56,49,49,53,56,44,52,55,46,56,57,49,56,55,93,44,91,45,57,51,46,55,55,53,55,55,50,44,52,55,46,56,57,56,57,53,93,44,91,45,57,51,46,55,55,54,49,55,51,44,52,55,46,56,52,54,52,48,52,93,44,91,45,57,52,46,52,49,56,53,52,51,44,52,55,46,56,52,53,56,49,54,93,44,91,45,57,52,46,52,49,54,50,55,57,44,52,55,46,52,52,52,56,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,56,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,55,49,52,51,53,53,44,51,57,46,53,54,54,51,51,49,93,44,91,45,49,48,51,46,55,49,57,54,54,52,44,51,56,46,56,54,54,56,50,55,93,44,91,45,49,48,52,46,48,53,53,53,50,56,44,51,56,46,56,54,56,56,54,56,93,44,91,45,49,48,52,46,48,53,51,57,50,49,44,51,56,46,53,50,50,51,57,51,93,44,91,45,49,48,51,46,53,48,52,54,54,54,44,51,56,46,53,49,54,52,48,57,93,44,91,45,49,48,51,46,49,55,50,56,55,56,44,51,56,46,53,50,53,51,49,53,93,44,91,45,49,48,51,46,49,55,50,57,52,51,44,51,56,46,54,49,50,52,53,93,44,91,45,49,48,51,46,49,54,51,48,50,53,44,51,57,46,48,51,55,54,49,93,44,91,45,49,48,51,46,49,53,52,51,55,54,44,51,57,46,53,54,53,54,53,52,93,44,91,45,49,48,51,46,55,48,55,48,55,50,44,51,57,46,53,54,54,50,57,53,93,44,91,45,49,48,51,46,55,49,52,51,53,53,44,51,57,46,53,54,54,51,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,51,53,57,44,34,98,101,100,115,34,58,49,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,57,57,51,51,57,52,44,52,51,46,49,56,51,51,55,54,93,44,91,45,55,53,46,57,49,55,49,56,57,44,52,51,46,48,56,53,55,55,57,93,44,91,45,55,53,46,56,57,54,48,55,57,44,52,50,46,55,57,48,57,54,52,93,44,91,45,55,53,46,56,56,57,56,51,50,44,52,50,46,55,50,51,56,52,52,93,44,91,45,55,53,46,50,57,53,56,55,55,44,52,50,46,55,52,52,49,48,54,93,44,91,45,55,53,46,50,52,55,57,54,51,44,52,50,46,56,55,49,54,48,52,93,44,91,45,55,53,46,52,51,55,49,54,55,44,52,50,46,56,54,51,51,49,57,93,44,91,45,55,53,46,53,52,50,56,48,51,44,52,50,46,57,51,49,55,55,52,93,44,91,45,55,53,46,53,53,50,55,55,52,44,52,51,46,48,51,55,53,53,52,93,44,91,45,55,53,46,55,51,56,51,57,54,44,52,51,46,49,54,52,55,54,54,93,44,91,45,55,53,46,56,56,52,50,55,53,44,52,51,46,49,53,53,53,54,50,93,44,91,45,55,53,46,57,57,51,51,57,52,44,52,51,46,49,56,51,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,56,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,52,51,56,49,50,44,52,51,46,56,48,51,54,56,55,93,44,91,45,55,51,46,52,57,52,51,49,52,44,52,51,46,54,53,51,57,54,54,93,44,91,45,55,51,46,54,50,56,57,52,44,52,51,46,52,56,54,51,57,49,93,44,91,45,55,51,46,53,57,52,57,54,44,52,51,46,51,48,54,49,49,56,93,44,91,45,55,51,46,53,55,51,51,52,50,44,52,51,46,49,48,48,53,52,53,93,44,91,45,55,51,46,54,51,53,52,54,51,44,52,50,46,57,52,49,50,57,93,44,91,45,55,51,46,50,55,52,50,57,52,44,52,50,46,57,52,51,54,53,50,93,44,91,45,55,51,46,50,53,52,54,51,51,44,52,51,46,51,49,52,54,55,53,93,44,91,45,55,51,46,50,52,54,56,52,52,44,52,51,46,53,49,55,50,53,50,93,44,91,45,55,51,46,51,48,50,53,53,51,44,52,51,46,54,50,53,55,48,57,93,44,91,45,55,51,46,52,50,55,57,49,44,52,51,46,54,51,52,52,50,56,93,44,91,45,55,51,46,51,54,50,56,50,51,44,52,51,46,55,53,51,48,56,52,93,44,91,45,55,51,46,51,55,57,50,56,49,44,52,51,46,56,48,56,52,56,49,93,44,91,45,55,51,46,52,51,56,49,50,44,52,51,46,56,48,51,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,53,54,52,44,34,98,101,100,115,34,58,49,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,53,50,48,56,44,51,57,46,54,51,56,51,52,53,93,44,91,45,56,54,46,50,52,57,56,56,53,44,51,57,46,54,51,51,54,52,53,93,44,91,45,56,54,46,50,53,49,54,56,52,44,51,57,46,51,52,49,54,55,50,93,44,91,45,56,54,46,48,56,53,54,48,49,44,51,57,46,51,52,52,49,56,57,93,44,91,45,56,53,46,57,53,50,48,48,53,44,51,57,46,51,52,55,51,55,51,93,44,91,45,56,53,46,57,53,50,48,56,44,51,57,46,54,51,56,51,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,52,53,34,44,34,78,65,77,69,34,58,34,84,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,49,53,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,53,57,52,56,51,54,44,51,51,46,51,56,56,52,56,57,93,44,91,45,49,48,50,46,53,57,53,48,50,51,44,51,50,46,57,53,56,56,51,49,93,44,91,45,49,48,50,46,50,48,56,53,50,44,51,50,46,57,53,56,57,53,54,93,44,91,45,49,48,50,46,48,55,54,50,49,52,44,51,50,46,57,53,57,55,48,50,93,44,91,45,49,48,50,46,48,55,53,57,50,57,44,51,51,46,51,56,57,53,56,54,93,44,91,45,49,48,50,46,53,57,52,56,51,54,44,51,51,46,51,56,56,52,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,51,55,48,49,50,44,51,53,46,55,55,57,51,48,50,93,44,91,45,49,48,52,46,48,50,49,55,48,50,44,51,53,46,55,56,49,52,57,52,93,44,91,45,49,48,51,46,57,55,54,57,48,49,44,51,53,46,56,48,49,55,52,55,93,44,91,45,49,48,51,46,55,50,51,54,48,57,44,51,53,46,52,50,50,55,56,53,93,44,91,45,49,48,51,46,54,51,55,48,53,51,44,51,53,46,51,56,57,54,54,50,93,44,91,45,49,48,51,46,51,55,57,55,51,44,51,53,46,51,57,54,55,57,54,93,44,91,45,49,48,51,46,51,55,53,49,49,55,44,51,53,46,55,51,57,53,49,54,93,44,91,45,49,48,51,46,51,54,52,57,55,55,44,51,54,46,48,56,54,48,53,93,44,91,45,49,48,51,46,55,57,52,53,50,53,44,51,54,46,48,56,53,55,51,56,93,44,91,45,49,48,51,46,55,57,51,57,57,49,44,51,54,46,49,55,51,57,55,50,93,44,91,45,49,48,52,46,48,48,56,56,50,51,44,51,54,46,50,49,56,49,49,53,93,44,91,45,49,48,52,46,52,51,54,48,53,54,44,51,54,46,50,49,56,53,51,52,93,44,91,45,49,48,52,46,51,54,53,55,50,52,44,51,54,46,48,52,52,50,57,93,44,91,45,49,48,52,46,51,55,48,49,50,44,51,53,46,55,55,57,51,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,84,97,108,108,97,100,101,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,53,54,53,44,34,98,101,100,115,34,58,50,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,52,53,53,54,50,44,51,51,46,54,55,57,48,57,56,93,44,91,45,56,54,46,49,56,57,56,49,50,44,51,51,46,53,52,55,50,51,56,93,44,91,45,56,54,46,51,55,56,54,54,53,44,51,51,46,51,57,48,57,56,51,93,44,91,45,56,54,46,51,53,55,51,52,44,51,51,46,50,57,54,57,49,55,93,44,91,45,56,54,46,53,48,51,49,50,55,44,51,51,46,49,55,57,49,52,52,93,44,91,45,56,54,46,52,57,49,48,50,57,44,51,51,46,49,48,50,57,52,52,93,44,91,45,56,54,46,49,55,52,51,55,44,51,51,46,49,48,52,51,57,52,93,44,91,45,56,54,46,49,49,56,49,57,56,44,51,51,46,50,57,54,51,50,93,44,91,45,56,53,46,57,56,48,50,57,51,44,51,51,46,50,57,52,49,57,93,44,91,45,56,53,46,56,53,49,56,57,44,51,51,46,52,57,56,55,52,50,93,44,91,45,56,53,46,55,57,54,48,53,52,44,51,51,46,53,53,54,50,50,93,44,91,45,56,53,46,57,57,52,57,51,53,44,51,51,46,53,56,54,52,55,53,93,44,91,45,56,54,46,48,53,48,54,54,57,44,51,51,46,54,55,52,53,57,93,44,91,45,56,54,46,49,52,53,53,54,50,44,51,51,46,54,55,57,48,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,76,97,110,103,108,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,50,52,56,50,52,44,52,53,46,52,54,55,49,54,54,93,44,91,45,56,57,46,52,50,53,57,55,49,44,52,53,46,49,49,57,48,57,56,93,44,91,45,56,57,46,50,50,52,50,49,52,44,52,53,46,49,49,56,53,54,55,93,44,91,45,56,57,46,50,50,51,56,49,52,44,52,53,46,48,50,57,50,52,54,93,44,91,45,56,56,46,57,56,49,54,56,44,52,53,46,48,50,56,57,49,55,93,44,91,45,56,56,46,57,56,50,49,53,57,44,52,53,46,49,49,56,48,50,54,93,44,91,45,56,56,46,54,52,49,49,53,57,44,52,53,46,49,49,55,51,52,54,93,44,91,45,56,56,46,54,56,48,48,54,54,44,52,53,46,50,48,52,57,57,52,93,44,91,45,56,56,46,54,55,55,57,57,54,44,52,53,46,51,55,56,54,56,51,93,44,91,45,56,56,46,57,50,54,48,50,53,44,52,53,46,51,55,56,54,51,55,93,44,91,45,56,57,46,48,52,54,52,57,44,52,53,46,52,54,52,52,51,57,93,44,91,45,56,57,46,52,50,52,56,50,52,44,52,53,46,52,54,55,49,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,70,111,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,57,54,52,51,52,44,51,51,46,56,51,53,57,54,55,93,44,91,45,57,57,46,54,57,52,55,56,49,44,51,51,46,56,50,55,49,53,56,93,44,91,45,57,57,46,53,52,50,48,48,56,44,51,51,46,55,57,51,50,52,52,93,44,91,45,57,57,46,52,55,52,52,57,56,44,51,51,46,55,51,51,56,52,57,93,44,91,45,57,57,46,52,55,53,54,53,44,51,51,46,56,51,52,48,48,53,93,44,91,45,57,57,46,52,55,53,50,57,52,44,51,52,46,48,56,53,54,49,56,93,44,91,45,57,57,46,53,55,51,49,54,49,44,51,52,46,48,54,51,54,48,56,93,44,91,45,57,57,46,55,55,50,48,52,51,44,51,52,46,48,57,51,50,56,54,93,44,91,45,57,57,46,57,57,55,54,50,49,44,51,52,46,50,50,52,51,53,53,93,44,91,45,49,48,48,46,48,52,55,48,50,56,44,51,52,46,50,50,57,55,56,93,44,91,45,49,48,48,46,48,52,56,52,56,44,51,51,46,56,51,53,57,55,52,93,44,91,45,57,57,46,57,57,54,52,51,52,44,51,51,46,56,51,53,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,117,101,110,97,32,86,105,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,54,48,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,56,56,49,56,50,44,52,50,46,57,48,57,56,57,55,93,44,91,45,57,53,46,51,56,56,48,49,44,52,50,46,53,54,49,55,52,50,93,44,91,45,57,52,46,57,49,52,52,56,53,44,52,50,46,53,54,48,51,48,57,93,44,91,45,57,52,46,57,49,51,56,57,44,52,50,46,57,48,57,55,93,44,91,45,57,53,46,51,56,56,49,56,50,44,52,50,46,57,48,57,56,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,77,105,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,55,57,52,56,55,44,52,49,46,48,53,51,50,57,57,93,44,91,45,57,53,46,56,49,51,52,54,53,44,52,48,46,57,48,49,54,57,51,93,44,91,45,57,53,46,51,56,52,57,54,52,44,52,48,46,57,48,49,53,53,93,44,91,45,57,53,46,51,56,52,51,52,57,44,52,49,46,49,54,48,48,49,49,93,44,91,45,57,53,46,56,56,48,53,50,49,44,52,49,46,49,53,57,56,55,52,93,44,91,45,57,53,46,56,55,57,52,56,55,44,52,49,46,48,53,51,50,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,56,53,34,44,34,78,65,77,69,34,58,34,82,101,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,55,53,55,54,50,49,44,51,48,46,48,55,52,49,51,50,93,44,91,45,57,57,46,57,54,55,54,50,54,44,51,48,46,48,56,50,51,53,54,93,44,91,45,49,48,48,46,48,52,53,55,57,49,44,50,57,46,54,57,52,57,50,52,93,44,91,45,49,48,48,46,48,49,52,49,56,56,44,50,57,46,54,50,51,52,57,53,93,44,91,45,57,57,46,54,48,51,49,51,44,50,57,46,54,50,55,49,56,49,93,44,91,45,57,57,46,54,48,50,55,55,54,44,50,57,46,57,48,55,54,55,57,93,44,91,45,57,57,46,54,57,49,50,49,53,44,50,57,46,57,48,56,53,56,50,93,44,91,45,57,57,46,54,56,57,56,55,57,44,51,48,46,48,55,51,57,52,56,93,44,91,45,57,57,46,55,53,55,54,50,49,44,51,48,46,48,55,52,49,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,48,48,56,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,52,56,53,57,53,44,52,48,46,52,52,51,57,56,57,93,44,91,45,56,51,46,50,52,56,52,50,56,44,52,48,46,50,52,52,52,54,54,93,44,91,45,56,51,46,49,54,57,57,56,49,44,52,48,46,49,52,51,48,56,55,93,44,91,45,56,50,46,55,54,49,56,50,55,44,52,48,46,49,50,53,56,53,53,93,44,91,45,56,50,46,55,53,48,55,52,55,44,52,48,46,50,55,54,57,57,54,93,44,91,45,56,50,46,55,52,52,57,51,49,44,52,48,46,51,52,57,54,48,51,93,44,91,45,56,50,46,57,50,57,53,56,56,44,52,48,46,51,53,56,49,50,51,93,44,91,45,56,51,46,48,50,48,55,57,56,44,52,48,46,52,51,51,55,57,53,93,44,91,45,56,51,46,50,52,56,53,57,53,44,52,48,46,52,52,51,57,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,70,111,114,115,121,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,49,53,55,51,44,34,98,101,100,115,34,58,50,49,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,44,91,45,56,48,46,52,53,49,54,57,54,44,51,54,46,50,54,49,53,48,50,93,44,91,45,56,48,46,52,53,50,51,50,50,44,51,54,46,50,52,49,52,49,57,93,44,91,45,56,48,46,52,51,57,49,48,52,44,51,54,46,49,51,57,57,52,57,93,44,91,45,56,48,46,52,57,54,50,56,51,44,51,54,46,48,52,54,53,52,53,93,44,91,45,56,48,46,51,57,52,51,48,55,44,51,53,46,57,55,50,55,54,50,93,44,91,45,56,48,46,50,49,51,55,51,44,51,54,46,48,50,54,56,48,56,93,44,91,45,56,48,46,48,52,51,50,51,56,44,51,54,46,48,49,48,55,53,56,93,44,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,53,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,49,48,34,44,34,78,65,77,69,34,58,34,67,97,114,115,111,110,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,52,54,55,44,34,98,101,100,115,34,58,50,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,48,52,50,57,55,44,51,57,46,49,54,53,54,48,51,93,44,91,45,49,50,48,46,48,48,51,52,50,57,44,51,57,46,49,49,50,54,56,55,93,44,91,45,49,49,57,46,55,54,49,50,49,51,44,51,57,46,49,49,52,48,48,57,93,44,91,45,49,49,57,46,53,53,49,48,50,44,51,57,46,48,56,53,55,57,49,93,44,91,45,49,49,57,46,53,54,51,54,56,44,51,57,46,49,57,53,52,49,53,93,44,91,45,49,49,57,46,55,49,50,54,52,53,44,51,57,46,50,53,48,56,55,49,93,44,91,45,49,49,57,46,56,56,48,55,56,55,44,51,57,46,49,54,53,53,48,57,93,44,91,45,49,50,48,46,48,48,52,50,57,55,44,51,57,46,49,54,53,54,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,48,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,56,48,51,52,44,52,49,46,56,54,50,57,57,57,93,44,91,45,57,52,46,50,56,48,48,53,55,44,52,49,46,54,48,49,51,49,50,93,44,91,45,57,52,46,50,52,49,53,57,51,44,52,49,46,53,48,51,54,55,57,93,44,91,45,57,51,46,55,57,48,54,49,50,44,52,49,46,53,49,49,57,49,54,93,44,91,45,57,51,46,56,49,52,50,56,50,44,52,49,46,54,48,48,52,53,54,93,44,91,45,57,51,46,56,49,53,55,50,49,44,52,49,46,56,54,51,52,49,57,93,44,91,45,57,52,46,49,54,52,49,51,56,44,52,49,46,56,54,51,50,52,52,93,44,91,45,57,52,46,50,56,48,51,52,44,52,49,46,56,54,50,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,67,97,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,44,91,45,49,48,49,46,48,56,54,50,56,49,44,51,53,46,49,56,50,49,52,93,44,91,45,49,48,49,46,48,56,53,57,51,53,44,51,53,46,54,49,57,49,48,50,93,44,91,45,49,48,49,46,48,56,54,48,54,56,44,51,53,46,54,50,53,50,54,55,93,44,91,45,49,48,49,46,54,50,50,56,51,49,44,51,53,46,54,50,52,48,53,55,93,44,91,45,49,48,49,46,54,50,50,56,44,51,53,46,54,50,48,49,57,54,93,44,91,45,49,48,49,46,54,50,50,57,52,49,44,51,53,46,49,56,51,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,49,34,44,34,78,65,77,69,34,58,34,83,117,109,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,51,53,50,44,34,98,101,100,115,34,58,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,56,49,54,53,55,44,51,50,46,50,50,57,55,48,51,93,44,91,45,56,52,46,49,56,51,53,54,57,44,51,50,46,49,53,56,52,57,51,93,44,91,45,56,52,46,52,51,48,50,49,56,44,51,50,46,49,54,54,50,53,55,93,44,91,45,56,52,46,52,51,49,50,49,52,44,51,50,46,49,51,52,48,53,56,93,44,91,45,56,52,46,52,52,51,56,48,55,44,51,49,46,57,54,55,52,53,54,93,44,91,45,56,52,46,51,51,56,50,52,53,44,51,49,46,56,55,51,53,57,49,93,44,91,45,56,52,46,51,51,56,49,52,51,44,51,49,46,57,49,54,49,57,93,44,91,45,56,51,46,57,50,50,52,57,52,44,51,49,46,57,48,57,54,53,51,93,44,91,45,56,51,46,57,54,49,50,55,56,44,51,50,46,48,51,48,53,57,53,93,44,91,45,56,52,46,48,50,55,54,44,51,50,46,49,55,49,49,54,53,93,44,91,45,56,52,46,49,56,49,54,53,55,44,51,50,46,50,50,57,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,51,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,52,57,55,50,57,44,51,55,46,51,49,55,53,57,52,93,44,91,45,57,48,46,55,51,53,52,53,51,44,51,55,46,50,55,49,48,52,93,44,91,45,57,48,46,55,55,57,53,53,51,44,51,55,46,48,53,48,51,50,52,93,44,91,45,57,48,46,54,55,56,53,54,50,44,51,54,46,57,50,54,52,57,93,44,91,45,57,48,46,50,53,56,53,54,51,44,51,54,46,57,50,50,48,52,51,93,44,91,45,57,48,46,49,49,49,50,52,55,44,51,55,46,48,52,49,50,48,53,93,44,91,45,57,48,46,50,50,51,50,51,44,51,55,46,48,56,54,53,51,52,93,44,91,45,57,48,46,50,49,55,54,53,55,44,51,55,46,51,49,52,57,54,55,93,44,91,45,57,48,46,53,52,57,55,50,57,44,51,55,46,51,49,55,53,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,57,57,53,44,34,98,101,100,115,34,58,55,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,56,55,50,48,51,44,51,52,46,56,49,56,56,49,49,93,44,91,45,56,50,46,55,56,55,55,53,49,44,51,52,46,54,55,50,53,57,52,93,44,91,45,56,50,46,56,52,48,49,53,53,44,51,52,46,54,50,51,49,50,93,44,91,45,56,50,46,56,52,52,56,49,55,44,51,52,46,54,49,56,55,49,57,93,44,91,45,56,50,46,56,53,53,49,48,51,44,51,52,46,54,48,57,48,48,55,93,44,91,45,56,50,46,57,57,50,50,51,50,44,51,52,46,52,55,57,50,53,56,93,44,91,45,56,50,46,56,54,52,52,44,51,52,46,52,53,57,55,56,53,93,44,91,45,56,50,46,55,55,51,52,49,44,51,52,46,50,56,56,56,54,52,93,44,91,45,56,50,46,55,52,50,49,48,51,44,51,52,46,50,49,49,57,48,51,93,44,91,45,56,50,46,51,49,51,57,57,54,44,51,52,46,52,56,52,48,48,50,93,44,91,45,56,50,46,52,54,54,53,48,51,44,51,52,46,54,54,53,49,56,52,93,44,91,45,56,50,46,52,56,55,50,48,51,44,51,52,46,56,49,56,56,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,97,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,55,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,55,53,56,53,50,44,52,50,46,52,51,51,50,49,56,93,44,91,45,49,48,54,46,54,53,52,55,56,49,44,52,50,46,52,51,49,48,57,52,93,44,91,45,49,48,55,46,53,50,50,57,50,51,44,52,50,46,52,51,52,51,53,54,93,44,91,45,49,48,55,46,53,50,50,55,50,50,44,52,50,46,50,54,49,55,53,54,93,44,91,45,49,48,55,46,53,48,51,56,50,49,44,52,50,46,48,56,55,57,53,55,93,44,91,45,49,48,55,46,53,48,57,55,50,44,52,49,46,54,53,55,52,53,50,93,44,91,45,49,48,55,46,57,50,57,55,51,54,44,52,49,46,54,53,57,53,57,54,93,44,91,45,49,48,55,46,57,49,56,52,50,49,44,52,49,46,48,48,50,48,51,54,93,44,91,45,49,48,55,46,51,49,55,55,57,52,44,52,49,46,48,48,50,57,50,93,44,91,45,49,48,54,46,56,53,55,55,55,51,44,52,49,46,48,48,50,54,54,51,93,44,91,45,49,48,54,46,51,50,49,49,54,53,44,52,48,46,57,57,57,49,50,51,93,44,91,45,49,48,54,46,51,50,50,56,56,53,44,52,49,46,51,57,53,49,52,49,93,44,91,45,49,48,54,46,48,54,56,52,48,54,44,52,49,46,51,57,53,48,50,56,93,44,91,45,49,48,54,46,48,55,51,52,48,51,44,52,50,46,52,51,51,50,51,54,93,44,91,45,49,48,54,46,48,55,53,56,53,50,44,52,50,46,52,51,51,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,83,105,108,118,101,114,32,66,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,56,49,52,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,53,55,55,49,48,54,44,52,54,46,49,55,56,57,56,49,93,44,91,45,49,49,50,46,55,55,55,49,50,44,52,54,46,49,51,53,56,50,54,93,44,91,45,49,49,50,46,57,50,52,53,53,50,44,52,53,46,57,51,54,52,52,51,93,44,91,45,49,49,51,46,48,56,53,53,49,55,44,52,53,46,56,54,48,54,52,56,93,44,91,45,49,49,51,46,48,48,48,49,53,53,44,52,53,46,56,48,55,55,52,55,93,44,91,45,49,49,50,46,55,53,57,51,51,57,44,52,53,46,55,52,56,50,48,57,93,44,91,45,49,49,50,46,54,56,55,48,53,52,44,52,53,46,54,50,52,56,53,52,93,44,91,45,49,49,50,46,53,49,53,52,53,51,44,52,53,46,55,52,54,55,48,50,93,44,91,45,49,49,50,46,49,57,48,50,54,57,44,52,53,46,55,52,56,53,48,51,93,44,91,45,49,49,50,46,52,48,49,52,52,49,44,52,53,46,56,51,49,56,53,49,93,44,91,45,49,49,50,46,52,54,54,51,50,57,44,52,54,46,48,57,50,57,55,57,93,44,91,45,49,49,50,46,53,55,55,49,48,54,44,52,54,46,49,55,56,57,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,83,116,101,112,104,101,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,52,51,51,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,50,54,52,54,54,44,52,50,46,53,48,53,55,55,50,93,44,91,45,56,57,46,57,49,57,55,55,50,44,52,50,46,49,57,54,56,56,49,93,44,91,45,56,57,46,54,56,56,52,56,54,44,52,50,46,49,57,57,49,49,50,93,44,91,45,56,57,46,51,57,54,49,57,50,44,52,50,46,50,48,49,57,49,54,93,44,91,45,56,57,46,52,48,49,52,50,51,44,52,50,46,53,48,48,53,53,52,93,44,91,45,56,57,46,56,51,55,53,56,55,44,52,50,46,53,48,53,55,49,93,44,91,45,56,57,46,57,50,54,52,54,54,44,52,50,46,53,48,53,55,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,76,97,112,101,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,50,48,50,44,34,98,101,100,115,34,58,49,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,54,48,55,51,51,44,52,51,46,50,50,51,49,51,49,93,44,91,45,56,51,46,52,53,51,51,54,52,44,52,50,46,56,56,48,52,51,50,93,44,91,45,56,51,46,49,48,50,56,57,49,44,52,50,46,56,56,56,54,52,55,93,44,91,45,56,50,46,57,56,51,54,52,55,44,52,50,46,56,57,51,55,52,49,93,44,91,45,56,50,46,57,57,54,50,53,55,44,52,51,46,49,53,52,48,57,57,93,44,91,45,56,51,46,48,48,48,52,51,44,52,51,46,50,56,52,57,49,51,93,44,91,45,56,51,46,49,50,48,51,57,54,44,52,51,46,51,50,55,48,52,57,93,44,91,45,56,51,46,51,53,52,52,49,56,44,52,51,46,51,50,50,50,53,55,93,44,91,45,56,51,46,52,54,48,55,51,51,44,52,51,46,50,50,51,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,105,98,111,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,53,51,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,56,56,55,48,55,44,51,51,46,48,49,55,52,51,51,93,44,91,45,57,51,46,50,51,56,54,48,55,44,51,51,46,48,49,55,57,57,50,93,44,91,45,57,51,46,50,51,55,51,56,49,44,51,50,46,55,49,54,50,53,93,44,91,45,57,51,46,49,55,56,55,54,55,44,51,50,46,53,56,52,57,49,54,93,44,91,45,57,50,46,56,56,48,56,48,53,44,51,50,46,53,56,53,50,55,55,93,44,91,45,57,50,46,56,50,56,53,51,53,44,51,50,46,55,53,56,56,49,52,93,44,91,45,57,50,46,55,50,53,52,51,57,44,51,50,46,55,53,57,53,52,93,44,91,45,57,50,46,55,50,52,55,52,44,51,51,46,48,49,52,51,57,93,44,91,45,57,50,46,57,56,56,55,48,55,44,51,51,46,48,49,55,52,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,89,97,108,111,98,117,115,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,50,49,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,50,49,48,53,44,51,52,46,49,57,50,53,52,53,93,44,91,45,56,57,46,57,51,49,52,56,53,44,51,52,46,49,54,52,51,48,51,93,44,91,45,56,57,46,57,50,54,48,57,57,44,51,51,46,56,57,55,57,53,55,93,44,91,45,56,57,46,55,54,57,48,53,44,51,51,46,56,54,55,51,51,52,93,44,91,45,56,57,46,53,48,55,51,53,51,44,51,51,46,56,54,55,52,54,57,93,44,91,45,56,57,46,53,48,57,55,52,56,44,51,52,46,49,54,50,48,56,50,93,44,91,45,56,57,46,55,50,49,48,53,44,51,52,46,49,57,50,53,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,97,114,105,99,97,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,48,53,49,52,54,49,44,49,56,46,49,55,52,48,53,51,93,44,91,45,54,54,46,57,55,55,56,53,53,44,49,56,46,49,52,51,55,57,57,93,44,91,45,54,54,46,57,50,54,53,49,55,44,49,56,46,49,53,49,50,54,55,93,44,91,45,54,54,46,56,51,54,55,54,44,49,56,46,49,55,48,53,53,51,93,44,91,45,54,54,46,56,57,55,57,54,52,44,49,56,46,49,56,55,55,52,52,93,44,91,45,54,55,46,48,49,57,56,51,54,44,49,56,46,49,57,53,52,55,49,93,44,91,45,54,55,46,48,53,49,52,54,49,44,49,56,46,49,55,52,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,75,97,108,107,97,115,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,52,54,51,44,34,98,101,100,115,34,58,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,51,50,56,51,54,44,52,52,46,56,49,50,51,55,50,93,44,91,45,56,53,46,51,51,52,44,52,52,46,53,49,50,51,48,51,93,44,91,45,56,52,46,56,53,48,57,50,57,44,52,52,46,53,49,49,48,54,57,93,44,91,45,56,52,46,56,52,55,51,48,57,44,52,52,46,56,53,56,48,51,55,93,44,91,45,56,53,46,50,57,49,55,49,54,44,52,52,46,56,53,57,54,48,56,93,44,91,45,56,53,46,51,51,50,56,51,54,44,52,52,46,56,49,50,51,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,103,117,97,100,105,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,54,54,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,50,48,55,57,51,55,44,49,56,46,52,52,50,50,56,93,44,91,45,54,55,46,49,51,50,50,49,44,49,56,46,51,56,57,51,57,49,93,44,91,45,54,55,46,48,53,54,53,48,55,44,49,56,46,52,54,48,57,53,52,93,44,91,45,54,55,46,49,48,52,57,54,53,44,49,56,46,53,54,54,53,54,93,44,91,45,54,55,46,50,48,53,55,52,52,44,49,56,46,53,49,55,49,50,56,93,44,91,45,54,55,46,50,48,55,57,51,55,44,49,56,46,52,52,50,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,69,118,97,110,103,101,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,54,51,54,44,34,98,101,100,115,34,58,50,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,57,55,55,52,49,44,51,48,46,56,57,54,49,48,49,93,44,91,45,57,50,46,53,57,55,51,53,51,44,51,48,46,53,56,49,54,50,51,93,44,91,45,57,50,46,54,51,48,51,52,55,44,51,48,46,52,56,55,56,55,51,93,44,91,45,57,50,46,54,51,49,57,56,55,44,51,48,46,52,56,49,49,52,55,93,44,91,45,57,50,46,52,57,51,50,53,57,44,51,48,46,52,56,48,52,57,57,93,44,91,45,57,50,46,52,50,48,55,56,44,51,48,46,53,51,56,56,50,93,44,91,45,57,50,46,50,49,49,50,52,51,44,51,48,46,53,54,56,49,50,53,93,44,91,45,57,50,46,49,55,50,52,49,53,44,51,48,46,55,54,55,57,51,53,93,44,91,45,57,50,46,50,49,50,55,49,49,44,51,48,46,56,52,56,54,48,55,93,44,91,45,57,50,46,50,56,48,55,51,56,44,51,48,46,57,54,53,48,55,49,93,44,91,45,57,50,46,51,56,48,56,52,51,44,51,49,46,48,48,48,57,50,57,93,44,91,45,57,50,46,53,50,52,54,52,54,44,51,48,46,56,57,51,51,50,56,93,44,91,45,57,50,46,53,57,55,55,52,49,44,51,48,46,56,57,54,49,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,97,114,100,101,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,54,50,44,34,98,101,100,115,34,58,50,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,56,51,57,52,52,44,51,53,46,51,57,55,49,50,54,93,44,91,45,56,57,46,49,57,56,50,56,56,44,51,52,46,57,57,52,52,56,52,93,44,91,45,56,57,46,48,49,55,49,50,55,44,51,52,46,57,57,52,57,55,49,93,44,91,45,56,56,46,56,50,51,48,53,49,44,51,52,46,57,57,53,50,50,49,93,44,91,45,56,56,46,55,56,54,54,49,50,44,51,52,46,57,57,53,50,53,50,93,44,91,45,56,56,46,55,56,49,55,54,56,44,51,53,46,50,52,55,53,56,55,93,44,91,45,56,56,46,56,52,49,54,48,55,44,51,53,46,52,50,55,56,50,54,93,44,91,45,56,57,46,48,55,56,56,55,54,44,51,53,46,52,51,49,52,50,56,93,44,91,45,56,57,46,49,56,51,57,52,52,44,51,53,46,51,57,55,49,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,67,111,99,104,105,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,50,55,57,44,34,98,101,100,115,34,58,49,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,52,53,49,48,48,50,44,51,50,46,52,50,55,53,52,54,93,44,91,45,49,49,48,46,52,53,50,51,44,51,49,46,55,51,49,50,49,57,93,44,91,45,49,49,48,46,52,53,57,55,53,49,44,51,49,46,51,51,50,57,49,52,93,44,91,45,49,48,57,46,48,53,48,48,51,51,44,51,49,46,51,51,50,51,52,56,93,44,91,45,49,48,57,46,48,52,55,57,49,56,44,51,50,46,52,50,54,51,55,54,93,44,91,45,49,48,57,46,49,49,52,49,56,44,51,50,46,52,50,54,51,53,51,93,44,91,45,49,49,48,46,52,53,49,48,48,50,44,51,50,46,52,50,55,53,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,72,105,100,97,108,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,55,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,55,57,49,56,44,51,50,46,52,50,54,51,55,54,93,44,91,45,49,48,57,46,48,53,48,48,51,51,44,51,49,46,51,51,50,51,52,56,93,44,91,45,49,48,56,46,50,48,56,52,55,44,51,49,46,51,51,51,51,55,51,93,44,91,45,49,48,56,46,50,48,56,52,56,52,44,51,49,46,55,56,51,54,57,56,93,44,91,45,49,48,56,46,50,49,55,49,52,51,44,51,49,46,56,54,52,49,51,57,93,44,91,45,49,48,56,46,53,50,52,53,51,56,44,51,49,46,56,54,51,54,49,52,93,44,91,45,49,48,56,46,53,51,55,54,55,54,44,51,50,46,48,55,57,56,51,50,93,44,91,45,49,48,56,46,53,51,55,48,49,49,44,51,50,46,53,49,54,54,49,56,93,44,91,45,49,48,56,46,54,52,54,55,55,44,51,50,46,53,49,54,53,50,49,93,44,91,45,49,48,56,46,54,52,54,53,50,51,44,51,50,46,54,48,51,55,51,93,44,91,45,49,48,56,46,56,53,50,57,49,57,44,51,50,46,54,48,51,51,55,52,93,44,91,45,49,48,56,46,56,53,52,53,56,49,44,51,50,46,55,55,55,50,55,54,93,44,91,45,49,48,57,46,48,52,55,54,52,51,44,51,50,46,55,55,55,56,48,50,93,44,91,45,49,48,57,46,48,52,55,57,49,56,44,51,50,46,52,50,54,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,68,105,118,105,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,54,57,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,56,54,56,57,44,52,56,46,57,57,57,53,57,51,93,44,91,45,49,48,52,46,48,52,55,57,50,52,44,52,56,46,54,51,51,57,49,49,93,44,91,45,49,48,50,46,56,56,53,55,55,53,44,52,56,46,54,51,51,50,57,56,93,44,91,45,49,48,50,46,57,51,57,57,51,50,44,52,56,46,55,50,48,52,54,57,93,44,91,45,49,48,50,46,57,51,56,57,53,55,44,52,56,46,57,57,57,51,51,93,44,91,45,49,48,52,46,48,52,56,54,56,57,44,52,56,46,57,57,57,53,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,83,97,110,32,66,101,114,110,97,114,100,105,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,53,52,49,51,44,34,98,101,100,115,34,58,54,50,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,54,54,55,50,57,50,44,51,52,46,56,50,50,53,50,54,93,44,91,45,49,49,55,46,54,52,54,51,55,52,44,51,52,46,50,56,57,49,55,93,44,91,45,49,49,55,46,54,55,56,53,48,49,44,51,52,46,49,54,49,57,57,51,93,44,91,45,49,49,55,46,55,56,51,50,56,55,44,51,51,46,57,52,54,52,49,49,93,44,91,45,49,49,55,46,54,55,51,49,51,52,44,51,51,46,56,55,49,48,48,53,93,44,91,45,49,49,55,46,53,53,56,51,49,50,44,51,52,46,48,51,51,52,53,49,93,44,91,45,49,49,55,46,50,50,53,51,55,50,44,51,52,46,48,48,52,51,49,52,93,44,91,45,49,49,54,46,57,50,57,53,53,56,44,51,52,46,48,51,52,49,49,51,93,44,91,45,49,49,54,46,51,48,48,54,51,49,44,51,52,46,48,51,50,53,52,52,93,44,91,45,49,49,53,46,51,49,54,50,49,50,44,51,52,46,48,51,52,49,49,93,44,91,45,49,49,53,46,51,49,54,48,54,53,44,51,52,46,48,55,55,56,52,51,93,44,91,45,49,49,52,46,52,51,53,52,50,57,44,51,52,46,48,55,57,55,50,55,93,44,91,45,49,49,52,46,50,53,52,49,52,49,44,51,52,46,49,55,51,56,51,93,44,91,45,49,49,52,46,49,51,56,50,56,50,44,51,52,46,51,48,51,50,51,93,44,91,45,49,49,52,46,51,51,57,54,50,55,44,51,52,46,52,53,49,52,51,53,93,44,91,45,49,49,52,46,52,51,53,54,55,49,44,51,52,46,53,57,51,56,52,49,93,44,91,45,49,49,52,46,52,55,49,54,50,44,51,52,46,55,49,50,57,54,54,93,44,91,45,49,49,52,46,54,50,56,50,55,54,44,51,52,46,56,54,51,53,57,54,93,44,91,45,49,49,52,46,54,51,51,52,56,55,44,51,53,46,48,48,49,56,53,55,93,44,91,45,49,49,53,46,54,52,56,51,53,55,44,51,53,46,56,48,57,50,49,49,93,44,91,45,49,49,53,46,55,51,53,56,57,49,44,51,53,46,55,57,51,54,50,93,44,91,45,49,49,54,46,56,55,48,54,51,50,44,51,53,46,55,57,53,51,55,54,93,44,91,45,49,49,55,46,54,51,50,57,57,54,44,51,53,46,55,57,55,50,53,49,93,44,91,45,49,49,55,46,54,51,50,48,49,49,44,51,52,46,56,50,50,50,55,93,44,91,45,49,49,55,46,54,54,55,50,57,50,44,51,52,46,56,50,50,53,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,101,122,117,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,57,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,44,91,45,49,48,56,46,57,49,55,48,56,49,44,51,55,46,54,51,49,57,48,50,93,44,91,45,49,48,57,46,48,52,51,51,54,54,44,51,55,46,52,56,52,56,49,56,93,44,91,45,49,48,57,46,48,52,53,49,55,50,44,51,54,46,57,57,56,57,55,55,93,44,91,45,49,48,56,46,51,55,57,51,48,51,44,51,54,46,57,57,57,54,48,56,93,44,91,45,49,48,56,46,50,57,48,52,53,57,44,51,55,46,49,52,53,57,55,53,93,44,91,45,49,48,56,46,50,57,49,54,55,54,44,51,55,46,50,50,50,48,48,51,93,44,91,45,49,48,56,46,50,48,52,56,51,54,44,51,55,46,51,52,52,48,56,93,44,91,45,49,48,56,46,48,51,51,49,52,54,44,51,55,46,52,54,52,57,52,93,44,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,51,49,51,55,57,44,51,50,46,50,50,55,54,54,54,93,44,91,45,56,56,46,57,49,51,56,52,55,44,51,50,46,50,50,52,49,56,54,93,44,91,45,56,56,46,57,49,48,52,53,57,44,51,49,46,56,50,54,54,52,57,93,44,91,45,56,56,46,54,50,50,51,57,52,44,51,49,46,56,53,55,49,57,51,93,44,91,45,56,56,46,52,55,51,50,50,55,44,51,49,46,56,57,51,56,53,54,93,44,91,45,56,56,46,52,51,49,51,55,57,44,51,50,46,50,50,55,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,50,48,55,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,50,56,52,48,55,44,52,49,46,52,57,48,57,50,49,93,44,91,45,57,51,46,51,50,55,56,56,54,44,52,49,46,49,54,48,54,53,57,93,44,91,45,57,51,46,48,57,57,50,49,55,44,52,49,46,49,54,48,56,54,55,93,44,91,45,57,50,46,56,54,57,55,55,49,44,52,49,46,49,54,49,48,54,54,93,44,91,45,57,50,46,56,55,49,52,50,49,44,52,49,46,53,48,56,53,50,50,93,44,91,45,57,51,46,51,50,56,54,49,52,44,52,49,46,53,48,55,56,50,52,93,44,91,45,57,51,46,51,50,56,52,48,55,44,52,49,46,52,57,48,57,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,57,57,50,44,34,98,101,100,115,34,58,50,54,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,55,48,55,50,44,52,49,46,51,57,51,50,51,57,93,44,91,45,57,54,46,51,50,55,51,57,57,44,52,49,46,49,56,57,57,57,57,93,44,91,45,57,53,46,57,50,51,53,52,56,44,52,49,46,49,57,48,56,53,93,44,91,45,57,53,46,57,51,55,55,57,49,44,52,49,46,51,57,48,55,53,50,93,44,91,45,57,54,46,51,50,57,48,49,50,44,52,49,46,51,57,51,49,51,54,93,44,91,45,57,54,46,52,55,48,55,50,44,52,49,46,51,57,51,50,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,48,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,48,48,34,44,34,78,65,77,69,34,58,34,70,97,105,114,102,97,120,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,51,52,56,53,50,44,51,56,46,56,53,51,55,51,55,93,44,91,45,55,55,46,51,49,54,50,50,52,44,51,56,46,56,51,54,52,48,56,93,44,91,45,55,55,46,50,55,48,53,50,44,51,56,46,56,52,48,57,48,50,93,44,91,45,55,55,46,50,55,48,53,57,55,44,51,56,46,56,54,54,48,55,53,93,44,91,45,55,55,46,51,48,51,49,51,57,44,51,56,46,56,54,57,50,48,56,93,44,91,45,55,55,46,51,51,52,56,53,50,44,51,56,46,56,53,51,55,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,97,114,109,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,57,55,53,48,49,44,51,52,46,53,54,48,53,55,52,93,44,91,45,57,57,46,56,52,52,53,56,53,44,51,52,46,53,48,54,57,49,53,93,44,91,45,57,57,46,54,54,54,53,49,50,44,51,52,46,53,48,55,49,50,49,93,44,91,45,57,57,46,54,54,54,56,52,57,44,51,52,46,55,50,52,53,53,53,93,44,91,45,57,57,46,55,49,57,55,57,55,44,51,52,46,55,54,56,52,53,49,93,44,91,45,57,57,46,55,51,49,48,57,50,44,51,52,46,57,52,52,48,53,56,93,44,91,45,57,57,46,56,56,56,50,50,50,44,51,52,46,57,52,51,56,57,55,93,44,91,45,57,57,46,56,56,56,52,52,52,44,51,53,46,48,50,57,56,56,57,93,44,91,45,49,48,48,46,48,48,48,51,56,52,44,51,53,46,48,50,57,57,51,93,44,91,45,49,48,48,46,48,48,48,51,56,49,44,51,52,46,55,52,54,51,53,56,93,44,91,45,57,57,46,57,57,55,53,48,49,44,51,52,46,53,54,48,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,101,100,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,51,56,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,54,53,54,55,53,44,51,55,46,57,48,48,57,56,55,93,44,91,45,57,52,46,48,55,51,53,50,52,44,51,55,46,54,51,57,55,50,50,93,44,91,45,57,52,46,48,55,53,51,56,53,44,51,55,46,53,56,49,53,55,93,44,91,45,57,51,46,54,49,54,48,51,51,44,51,55,46,53,55,50,54,56,57,93,44,91,45,57,51,46,54,50,56,52,48,52,44,51,55,46,56,50,57,52,51,53,93,44,91,45,57,51,46,56,49,49,52,48,50,44,51,55,46,56,51,52,53,55,49,93,44,91,45,57,51,46,56,48,56,54,52,56,44,51,55,46,56,57,50,55,55,53,93,44,91,45,57,52,46,48,54,53,54,55,53,44,51,55,46,57,48,48,57,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,54,48,50,44,34,98,101,100,115,34,58,53,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,54,48,48,50,56,44,51,52,46,48,52,48,53,55,50,93,44,91,45,56,51,46,53,51,55,51,56,53,44,51,51,46,57,54,53,57,49,50,93,44,91,45,56,51,46,50,55,53,57,51,51,44,51,51,46,56,52,55,57,55,55,93,44,91,45,56,51,46,50,53,56,52,49,51,44,51,51,46,57,57,57,48,57,56,93,44,91,45,56,51,46,51,54,48,48,50,56,44,51,52,46,48,52,48,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,86,97,108,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,52,52,51,56,54,44,52,53,46,49,48,55,54,53,49,93,44,91,45,49,49,54,46,48,57,48,49,52,51,44,52,53,46,48,54,52,48,49,51,93,44,91,45,49,49,54,46,49,57,55,48,49,49,44,52,52,46,56,54,52,50,49,54,93,44,91,45,49,49,54,46,49,53,55,54,48,50,44,52,52,46,55,48,51,55,52,51,93,44,91,45,49,49,54,46,49,53,55,48,50,50,44,52,52,46,52,57,56,57,50,56,93,44,91,45,49,49,54,46,50,49,50,57,49,44,52,52,46,51,50,52,51,55,51,93,44,91,45,49,49,54,46,50,49,51,56,55,49,44,52,52,46,49,53,49,51,56,55,93,44,91,45,49,49,54,46,49,48,51,48,55,50,44,52,52,46,50,51,54,52,48,57,93,44,91,45,49,49,53,46,52,53,55,51,48,53,44,52,52,46,50,52,50,57,53,51,93,44,91,45,49,49,53,46,50,57,52,54,49,52,44,52,52,46,51,51,57,52,52,53,93,44,91,45,49,49,53,46,50,50,56,50,50,50,44,52,52,46,52,50,51,53,50,49,93,44,91,45,49,49,53,46,51,48,52,57,57,52,44,52,52,46,53,55,57,56,53,55,93,44,91,45,49,49,53,46,49,54,53,54,48,53,44,52,52,46,54,53,48,51,48,54,93,44,91,45,49,49,53,46,48,57,49,57,50,50,44,52,52,46,55,54,54,55,50,54,93,44,91,45,49,49,52,46,57,53,54,49,49,54,44,52,52,46,55,50,48,57,56,50,93,44,91,45,49,49,52,46,56,49,50,52,48,55,44,52,52,46,56,48,56,51,52,54,93,44,91,45,49,49,52,46,55,51,49,57,54,44,52,52,46,56,56,48,57,52,54,93,44,91,45,49,49,52,46,55,51,50,50,55,44,52,53,46,49,53,49,49,53,53,93,44,91,45,49,49,52,46,54,57,52,48,48,49,44,52,53,46,49,57,55,49,56,50,93,44,91,45,49,49,53,46,57,55,53,55,56,55,44,52,53,46,49,57,53,50,56,50,93,44,91,45,49,49,54,46,49,52,52,51,56,54,44,52,53,46,49,48,55,54,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,53,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,51,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,57,54,52,51,52,44,51,51,46,56,51,53,57,54,55,93,44,91,45,57,57,46,57,57,48,57,56,44,51,51,46,51,57,55,52,48,52,93,44,91,45,57,57,46,52,55,50,52,52,52,44,51,51,46,51,57,57,48,50,51,93,44,91,45,57,57,46,52,55,52,52,57,56,44,51,51,46,55,51,51,56,52,57,93,44,91,45,57,57,46,53,52,50,48,48,56,44,51,51,46,55,57,51,50,52,52,93,44,91,45,57,57,46,54,57,52,55,56,49,44,51,51,46,56,50,55,49,53,56,93,44,91,45,57,57,46,57,57,54,52,51,52,44,51,51,46,56,51,53,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,79,117,97,99,104,105,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,48,54,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,56,51,48,53,52,44,51,51,46,56,48,50,49,57,56,93,44,91,45,57,50,46,56,57,51,53,51,52,44,51,51,46,56,48,57,57,52,51,93,44,91,45,57,51,46,49,48,52,50,57,44,51,51,46,55,55,55,48,49,49,93,44,91,45,57,51,46,49,49,54,51,54,49,44,51,51,46,52,53,50,57,48,57,93,44,91,45,57,51,46,49,49,57,48,49,52,44,51,51,46,51,56,48,50,57,51,93,44,91,45,57,50,46,57,55,56,52,54,57,44,51,51,46,51,55,55,50,56,93,44,91,45,57,50,46,53,54,55,49,53,54,44,51,51,46,51,54,55,50,93,44,91,45,57,50,46,55,48,53,48,57,51,44,51,51,46,52,51,49,50,49,53,93,44,91,45,57,50,46,55,53,57,48,51,53,44,51,51,46,53,51,48,57,53,52,93,44,91,45,57,50,46,53,56,54,56,56,54,44,51,51,46,55,51,49,50,51,52,93,44,91,45,57,50,46,53,56,51,48,53,52,44,51,51,46,56,48,50,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,51,52,44,34,98,101,100,115,34,58,49,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,48,51,54,55,50,44,52,48,46,51,49,48,48,57,51,93,44,91,45,56,52,46,56,49,48,56,50,53,44,52,48,46,48,48,53,48,55,55,93,44,91,45,56,52,46,56,49,50,52,49,44,51,57,46,57,49,54,57,49,53,93,44,91,45,56,52,46,52,56,53,51,54,55,44,51,57,46,57,49,56,52,57,49,93,44,91,45,56,52,46,52,50,53,57,48,50,44,51,57,46,57,49,57,54,50,50,93,44,91,45,56,52,46,52,51,50,53,55,53,44,52,48,46,49,57,55,48,51,55,93,44,91,45,56,52,46,52,51,52,54,51,49,44,52,48,46,51,53,52,50,53,57,93,44,91,45,56,52,46,56,48,51,56,57,52,44,52,48,46,51,53,50,55,53,56,93,44,91,45,56,52,46,56,48,51,54,55,50,44,52,48,46,51,49,48,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,75,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,56,56,48,44,34,98,101,100,115,34,58,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,54,50,51,52,54,44,51,54,46,57,57,56,55,48,49,93,44,91,45,57,55,46,52,54,50,52,53,57,44,51,54,46,53,57,51,54,50,55,93,44,91,45,57,55,46,52,54,49,54,48,51,44,51,54,46,53,57,51,54,51,55,93,44,91,45,57,55,46,48,53,55,53,53,54,44,51,54,46,53,57,51,56,55,50,93,44,91,45,57,55,46,48,54,52,49,48,55,44,51,54,46,54,56,52,50,48,55,93,44,91,45,57,54,46,57,51,49,57,52,51,44,51,54,46,54,56,54,48,57,55,93,44,91,45,57,54,46,56,56,57,52,55,53,44,51,54,46,55,53,49,50,51,93,44,91,45,57,54,46,55,53,50,51,55,53,44,51,54,46,55,56,50,48,57,50,93,44,91,45,57,54,46,55,52,57,56,51,56,44,51,54,46,57,57,56,57,56,56,93,44,91,45,57,55,46,49,52,55,55,50,49,44,51,54,46,57,57,57,48,51,51,93,44,91,45,57,55,46,52,54,50,51,52,54,44,51,54,46,57,57,56,55,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,119,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,55,48,49,57,44,52,53,46,52,55,50,52,49,54,93,44,91,45,49,48,49,46,53,48,49,48,53,51,44,52,52,46,57,57,51,55,57,53,93,44,91,45,49,48,49,46,49,51,54,49,54,50,44,52,52,46,57,57,52,48,55,52,93,44,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,48,49,46,48,50,50,54,49,49,44,52,52,46,55,50,52,49,53,51,93,44,91,45,49,48,48,46,56,50,57,55,57,53,44,52,52,46,55,56,51,50,52,56,93,44,91,45,49,48,48,46,55,49,55,54,52,52,44,52,52,46,55,55,48,57,51,93,44,91,45,49,48,48,46,53,52,51,52,56,52,44,52,52,46,55,54,49,48,56,55,93,44,91,45,49,48,48,46,52,48,52,55,53,51,44,52,52,46,56,57,55,54,57,53,93,44,91,45,49,48,48,46,52,50,51,57,49,56,44,52,52,46,57,57,48,48,48,54,93,44,91,45,49,48,48,46,51,50,53,52,53,49,44,52,53,46,48,57,57,51,51,55,93,44,91,45,49,48,48,46,50,54,48,50,50,51,44,52,53,46,50,52,54,56,49,93,44,91,45,49,48,48,46,50,55,52,49,55,54,44,52,53,46,51,56,49,56,52,53,93,44,91,45,49,48,48,46,51,52,49,57,50,52,44,52,53,46,52,55,50,57,48,52,93,44,91,45,49,48,49,46,52,55,48,49,57,44,52,53,46,52,55,50,52,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,84,105,108,108,97,109,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,55,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,48,54,53,52,52,56,44,52,53,46,55,56,51,48,53,52,93,44,91,45,49,50,52,46,48,49,48,56,48,53,44,52,53,46,55,48,56,50,56,53,93,44,91,45,49,50,52,46,48,55,54,57,55,55,44,52,53,46,51,52,49,56,52,54,93,44,91,45,49,50,52,46,48,52,48,50,53,55,44,52,53,46,50,54,56,56,50,56,93,44,91,45,49,50,52,46,48,57,53,56,51,51,44,52,53,46,48,52,51,57,56,54,93,44,91,45,49,50,51,46,55,50,52,54,54,51,44,52,53,46,48,52,52,52,51,50,93,44,91,45,49,50,51,46,55,50,52,51,54,56,44,52,53,46,48,55,54,50,50,54,93,44,91,45,49,50,51,46,55,56,52,53,52,44,52,53,46,50,49,54,50,57,52,93,44,91,45,49,50,51,46,52,54,51,53,49,56,44,52,53,46,50,49,54,51,49,50,93,44,91,45,49,50,51,46,52,54,52,56,56,44,52,53,46,52,51,51,51,51,50,93,44,91,45,49,50,51,46,51,54,49,49,51,49,44,52,53,46,53,55,56,55,55,57,93,44,91,45,49,50,51,46,52,56,52,55,50,54,44,52,53,46,55,48,56,55,54,52,93,44,91,45,49,50,51,46,51,54,49,54,50,50,44,52,53,46,55,55,57,53,55,57,93,44,91,45,49,50,52,46,48,54,53,52,52,56,44,52,53,46,55,56,51,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,67,111,119,101,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,53,49,54,44,34,98,101,100,115,34,58,50,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,49,53,51,53,56,44,51,51,46,52,50,53,53,48,54,93,44,91,45,56,52,46,57,51,57,48,49,53,44,51,51,46,50,50,52,54,57,51,93,44,91,45,56,52,46,56,54,50,51,53,57,44,51,51,46,49,57,49,49,55,51,93,44,91,45,56,52,46,56,53,50,51,54,44,51,51,46,50,50,51,53,57,93,44,91,45,56,52,46,53,48,50,51,53,50,44,51,51,46,50,50,49,48,53,53,93,44,91,45,56,52,46,52,57,55,53,50,55,44,51,51,46,50,53,55,52,50,50,93,44,91,45,56,52,46,53,56,54,48,52,55,44,51,51,46,51,53,55,56,56,53,93,44,91,45,56,52,46,54,48,57,53,52,44,51,51,46,53,48,50,53,49,49,93,44,91,45,56,52,46,56,53,48,55,49,51,44,51,51,46,53,49,49,52,53,55,93,44,91,45,56,53,46,48,49,53,51,53,56,44,51,51,46,52,50,53,53,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,83,105,109,112,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,48,55,51,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,51,48,48,54,54,44,51,50,46,48,52,55,48,55,50,93,44,91,45,57,48,46,50,51,48,51,51,49,44,51,50,46,48,52,57,55,50,56,93,44,91,45,57,48,46,49,51,50,53,53,50,44,51,49,46,56,53,54,57,50,51,93,44,91,45,57,48,46,49,50,50,53,54,53,44,51,49,46,55,53,50,54,56,93,44,91,45,56,57,46,57,55,52,53,56,54,44,51,49,46,55,54,49,54,53,53,93,44,91,45,56,57,46,55,53,53,49,48,51,44,51,49,46,55,55,52,54,53,52,93,44,91,45,56,57,46,54,53,51,48,50,53,44,51,49,46,55,56,48,54,53,51,93,44,91,45,56,57,46,54,53,52,52,50,54,44,51,50,46,48,49,51,54,55,56,93,44,91,45,56,57,46,55,51,48,48,54,54,44,51,50,46,48,52,55,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,83,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,51,55,57,54,55,44,51,48,46,57,48,57,56,55,55,93,44,91,45,56,57,46,51,52,48,56,48,54,44,51,48,46,57,48,57,57,49,50,93,44,91,45,56,57,46,51,52,49,52,52,54,44,51,48,46,54,52,55,55,50,93,44,91,45,56,57,46,50,52,48,48,55,51,44,51,48,46,54,55,55,49,54,93,44,91,45,56,56,46,56,56,52,53,51,51,44,51,48,46,54,55,55,50,57,50,93,44,91,45,56,56,46,56,56,52,53,51,52,44,51,48,46,55,51,53,53,57,49,93,44,91,45,56,56,46,56,56,53,48,51,56,44,51,48,46,57,49,48,55,56,56,93,44,91,45,56,57,46,49,51,55,57,54,55,44,51,48,46,57,48,57,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,111,110,116,114,97,32,67,111,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,51,50,52,55,44,34,98,101,100,115,34,58,49,54,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,51,55,51,55,56,50,44,51,55,46,56,56,51,55,50,53,93,44,91,45,49,50,50,46,50,54,52,48,50,55,44,51,55,46,57,48,51,55,55,53,93,44,91,45,49,50,50,46,49,52,48,53,53,49,44,51,55,46,56,48,52,53,57,52,93,44,91,45,49,50,50,46,48,52,53,52,55,51,44,51,55,46,55,57,56,49,50,54,93,44,91,45,49,50,49,46,57,54,48,55,55,44,51,55,46,55,49,56,54,50,57,93,44,91,45,49,50,49,46,53,53,54,57,57,55,44,51,55,46,56,49,54,52,56,56,93,44,91,45,49,50,49,46,53,56,48,48,50,50,44,51,56,46,48,57,52,52,49,52,93,44,91,45,49,50,49,46,55,51,55,56,50,52,44,51,56,46,48,50,54,54,51,93,44,91,45,49,50,49,46,56,54,50,52,54,50,44,51,56,46,48,54,54,48,51,93,44,91,45,49,50,50,46,49,50,51,57,55,51,44,51,56,46,48,51,53,55,49,55,93,44,91,45,49,50,50,46,51,52,55,52,53,52,44,51,56,46,48,55,51,50,54,93,44,91,45,49,50,50,46,52,51,50,50,56,51,44,51,55,46,57,50,57,56,50,52,93,44,91,45,49,50,50,46,51,55,51,55,56,50,44,51,55,46,56,56,51,55,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,48,49,56,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,51,48,51,50,50,44,51,54,46,49,53,50,48,50,51,93,44,91,45,56,56,46,54,57,50,55,48,57,44,51,54,46,48,54,50,55,52,54,93,44,91,45,56,56,46,55,48,54,56,49,49,44,51,53,46,55,57,49,48,55,53,93,44,91,45,56,56,46,54,48,54,56,54,50,44,51,53,46,55,56,57,51,53,52,93,44,91,45,56,56,46,53,54,57,48,52,55,44,51,53,46,56,50,52,56,50,57,93,44,91,45,56,56,46,49,55,57,49,55,55,44,51,53,46,56,49,54,55,56,53,93,44,91,45,56,56,46,49,55,55,56,53,57,44,51,53,46,56,52,53,56,52,49,93,44,91,45,56,56,46,50,49,55,52,51,54,44,51,53,46,56,52,54,53,56,50,93,44,91,45,56,56,46,50,49,50,53,53,57,44,51,54,46,49,50,48,50,57,93,44,91,45,56,56,46,53,51,48,51,50,50,44,51,54,46,49,53,50,48,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,72,101,110,114,105,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,54,52,50,44,34,98,101,100,115,34,58,49,49,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,51,48,54,55,44,51,55,46,55,48,53,54,55,51,93,44,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,44,91,45,55,55,46,53,57,53,52,54,50,44,51,55,46,53,53,53,55,53,93,44,91,45,55,55,46,52,52,55,53,56,49,44,51,55,46,54,48,50,56,49,93,44,91,45,55,55,46,51,57,49,51,48,54,44,51,55,46,53,51,48,49,50,50,93,44,91,45,55,55,46,52,50,48,56,55,53,44,51,55,46,52,52,55,49,48,49,93,44,91,45,55,55,46,51,52,57,50,51,53,44,51,55,46,51,55,56,52,54,54,93,44,91,45,55,55,46,50,52,57,54,54,53,44,51,55,46,51,56,50,93,44,91,45,55,55,46,49,55,55,51,50,52,44,51,55,46,52,57,48,54,93,44,91,45,55,55,46,50,52,48,57,56,56,44,51,55,46,53,51,56,48,56,56,93,44,91,45,55,55,46,51,56,49,55,53,53,44,51,55,46,53,57,52,53,49,51,93,44,91,45,55,55,46,52,57,51,57,57,44,51,55,46,55,48,49,48,48,56,93,44,91,45,55,55,46,54,51,48,54,55,44,51,55,46,55,48,53,54,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,79,119,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,56,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,51,57,57,56,49,44,51,57,46,52,55,51,51,52,53,93,44,91,45,56,54,46,57,52,50,52,55,51,44,51,57,46,51,52,50,48,52,51,93,44,91,45,56,55,46,48,53,51,54,52,54,44,51,57,46,51,52,50,54,50,49,93,44,91,45,56,55,46,48,53,52,53,55,56,44,51,57,46,49,54,56,48,56,54,93,44,91,45,56,54,46,54,56,51,48,48,50,44,51,57,46,49,54,53,55,52,54,93,44,91,45,56,54,46,54,56,53,54,49,44,51,57,46,51,51,54,48,52,51,93,44,91,45,56,54,46,54,51,48,56,49,56,44,51,57,46,51,52,54,57,52,56,93,44,91,45,56,54,46,54,56,53,55,49,44,51,57,46,52,55,48,48,54,51,93,44,91,45,56,54,46,57,51,57,57,56,49,44,51,57,46,52,55,51,51,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,87,101,115,116,99,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,56,56,49,53,44,34,98,101,100,115,34,58,51,49,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,56,50,53,56,52,44,52,49,46,51,50,49,54,57,51,93,44,91,45,55,51,46,56,56,57,52,56,44,52,49,46,49,52,53,48,57,53,93,44,91,45,55,51,46,56,57,51,57,55,57,44,52,48,46,57,57,55,50,48,53,93,44,91,45,55,51,46,57,49,55,57,48,53,44,52,48,46,57,49,55,53,55,55,93,44,91,45,55,51,46,55,52,56,48,54,44,52,48,46,56,55,49,55,50,49,93,44,91,45,55,51,46,54,49,50,56,56,53,44,52,48,46,57,53,48,57,52,51,93,44,91,45,55,51,46,55,50,55,55,55,53,44,52,49,46,49,48,48,54,57,54,93,44,91,45,55,51,46,52,56,50,54,57,53,44,52,49,46,50,49,50,55,55,50,93,44,91,45,55,51,46,53,52,52,55,50,56,44,52,49,46,51,54,54,51,55,53,93,44,91,45,55,51,46,57,56,50,53,56,52,44,52,49,46,51,50,49,54,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,111,108,108,105,110,103,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,56,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,52,54,55,54,51,44,51,55,46,53,57,55,52,51,52,93,44,91,45,57,48,46,49,52,53,54,57,57,44,51,55,46,51,49,50,48,57,49,93,44,91,45,57,48,46,50,49,55,54,53,55,44,51,55,46,51,49,52,57,54,55,93,44,91,45,57,48,46,50,50,51,50,51,44,51,55,46,48,56,54,53,51,52,93,44,91,45,57,48,46,49,49,49,50,52,55,44,51,55,46,48,52,49,50,48,53,93,44,91,45,56,57,46,57,53,57,49,57,54,44,51,55,46,48,53,52,51,56,93,44,91,45,56,57,46,56,54,54,54,50,55,44,51,55,46,49,50,54,50,50,55,93,44,91,45,56,57,46,56,54,49,49,50,51,44,51,55,46,53,57,57,50,56,54,93,44,91,45,57,48,46,49,52,54,55,54,51,44,51,55,46,53,57,55,52,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,77,99,68,111,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,49,55,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,49,49,50,48,49,44,51,55,46,52,50,52,53,48,57,93,44,91,45,56,49,46,54,53,52,52,51,49,44,51,55,46,53,50,51,51,49,50,93,44,91,45,56,49,46,55,50,57,52,51,51,44,51,55,46,52,57,52,53,56,53,93,44,91,45,56,49,46,56,53,53,57,51,57,44,51,55,46,53,52,56,57,49,93,44,91,45,56,49,46,57,50,55,54,56,49,44,51,55,46,53,49,50,49,49,51,93,44,91,45,56,49,46,57,57,54,53,55,56,44,51,55,46,52,55,54,55,48,53,93,44,91,45,56,49,46,56,53,51,53,53,51,44,51,55,46,50,56,55,55,48,54,93,44,91,45,56,49,46,55,52,48,49,50,52,44,51,55,46,50,51,55,55,53,50,93,44,91,45,56,49,46,53,54,48,54,51,49,44,51,55,46,50,48,54,54,54,51,93,44,91,45,56,49,46,51,54,50,49,53,54,44,51,55,46,51,51,55,54,56,55,93,44,91,45,56,49,46,51,49,49,50,48,49,44,51,55,46,52,50,52,53,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,50,48,57,44,34,98,101,100,115,34,58,52,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,52,52,53,50,49,44,51,57,46,52,50,57,49,50,93,44,91,45,56,48,46,54,48,52,51,48,49,44,51,57,46,50,56,54,48,52,55,93,44,91,45,56,48,46,53,57,54,49,50,54,44,51,57,46,49,54,55,48,54,57,93,44,91,45,56,48,46,51,48,48,50,48,57,44,51,57,46,49,48,51,56,53,55,93,44,91,45,56,48,46,50,50,55,49,55,51,44,51,57,46,49,49,50,55,57,50,93,44,91,45,56,48,46,49,54,54,51,56,55,44,51,57,46,50,52,50,50,56,51,93,44,91,45,56,48,46,49,57,55,50,56,54,44,51,57,46,51,57,51,49,56,54,93,44,91,45,56,48,46,52,57,52,48,56,53,44,51,57,46,52,54,57,53,57,57,93,44,91,45,56,48,46,53,52,52,53,50,49,44,51,57,46,52,50,57,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,114,97,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,56,55,52,44,34,98,101,100,115,34,58,49,52,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,55,57,54,50,55,52,44,51,54,46,53,52,49,55,52,49,93,44,91,45,55,56,46,56,48,50,51,51,53,44,51,54,46,50,51,53,55,57,52,93,44,91,45,55,56,46,56,48,52,54,57,44,51,54,46,48,57,52,53,53,49,93,44,91,45,55,56,46,55,53,49,50,55,51,44,51,54,46,48,55,48,56,51,52,93,44,91,45,55,56,46,53,52,54,52,49,52,44,51,54,46,48,50,49,56,50,54,93,44,91,45,55,56,46,52,57,54,54,49,52,44,51,54,46,49,55,53,49,57,57,93,44,91,45,55,56,46,53,49,49,50,50,52,44,51,54,46,52,53,52,56,48,56,93,44,91,45,55,56,46,52,53,54,57,49,51,44,51,54,46,53,52,50,53,52,49,93,44,91,45,55,56,46,55,51,52,49,50,50,44,51,54,46,53,52,49,57,51,57,93,44,91,45,55,56,46,55,57,54,50,55,52,44,51,54,46,53,52,49,55,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,78,101,119,32,72,97,118,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,57,51,51,57,44,34,98,101,100,115,34,58,49,54,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,49,48,52,55,51,44,52,49,46,52,54,56,56,49,53,93,44,91,45,55,51,46,48,54,55,56,53,49,44,52,49,46,51,48,48,57,57,54,93,44,91,45,55,51,46,49,48,55,52,53,50,44,52,49,46,49,54,56,51,57,55,93,44,91,45,55,50,46,57,57,57,53,52,55,44,52,49,46,48,56,55,49,48,56,93,44,91,45,55,50,46,53,50,55,57,48,49,44,52,49,46,49,55,55,55,55,52,93,44,91,45,55,50,46,53,50,55,57,48,50,44,52,49,46,50,53,48,49,49,53,93,44,91,45,55,50,46,54,53,52,49,57,51,44,52,49,46,52,51,56,50,53,54,93,44,91,45,55,50,46,55,51,57,49,50,44,52,49,46,52,51,56,50,57,52,93,44,91,45,55,50,46,55,53,50,49,56,49,44,52,49,46,53,55,56,56,57,52,93,44,91,45,55,50,46,57,52,54,51,53,44,52,49,46,53,53,54,55,57,55,93,44,91,45,55,50,46,57,56,51,50,53,44,52,49,46,54,51,57,53,57,56,93,44,91,45,55,51,46,49,53,53,52,57,50,44,52,49,46,53,49,52,51,48,52,93,44,91,45,55,51,46,51,49,48,52,55,51,44,52,49,46,52,54,56,56,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,80,105,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,53,55,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,55,55,50,52,44,52,50,46,51,53,49,56,54,49,93,44,91,45,57,55,46,52,56,53,50,57,56,44,52,50,46,52,51,56,53,55,56,93,44,91,45,57,55,46,56,51,52,52,51,49,44,52,50,46,52,51,55,54,56,52,93,44,91,45,57,55,46,56,51,52,53,51,54,44,52,50,46,48,56,57,55,53,93,44,91,45,57,55,46,51,54,56,52,48,52,44,52,50,46,48,57,48,57,50,50,93,44,91,45,57,55,46,51,54,55,55,50,52,44,52,50,46,51,53,49,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,108,101,99,107,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,44,91,45,56,51,46,52,57,55,57,50,51,44,51,50,46,52,53,50,49,57,56,93,44,91,45,56,51,46,52,57,56,48,51,57,44,51,50,46,52,48,49,55,49,53,93,44,91,45,56,51,46,51,52,54,53,50,56,44,51,50,46,50,55,50,52,56,57,93,44,91,45,56,51,46,49,55,51,50,53,50,44,51,50,46,52,53,50,53,51,51,93,44,91,45,56,51,46,49,51,56,57,57,49,44,51,50,46,52,50,51,48,54,57,93,44,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,66,117,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,53,48,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,54,55,53,56,44,51,51,46,50,54,55,51,57,55,93,44,91,45,56,50,46,50,51,51,48,54,50,44,51,51,46,50,50,55,55,52,93,44,91,45,56,50,46,50,57,49,49,56,44,51,51,46,48,54,50,56,50,55,93,44,91,45,56,50,46,50,55,50,51,53,51,44,51,50,46,57,51,55,55,57,54,93,44,91,45,56,50,46,51,49,54,53,49,50,44,51,50,46,56,51,53,55,55,50,93,44,91,45,56,50,46,49,52,52,57,55,55,44,51,50,46,56,49,50,55,52,49,93,44,91,45,56,50,46,48,56,49,51,51,55,44,51,50,46,57,49,54,55,55,54,93,44,91,45,56,49,46,56,53,55,57,56,53,44,51,50,46,57,53,51,56,56,50,93,44,91,45,56,49,46,55,54,55,53,53,51,44,51,50,46,57,48,57,52,49,49,93,44,91,45,56,49,46,53,52,49,56,51,49,44,51,51,46,48,52,53,54,53,52,93,44,91,45,56,49,46,54,49,52,48,51,51,44,51,51,46,48,57,53,50,53,49,93,44,91,45,56,49,46,55,48,52,54,51,52,44,51,51,46,49,49,54,52,53,93,44,91,45,56,49,46,55,53,55,48,51,53,44,51,51,46,49,57,56,49,52,56,93,44,91,45,56,49,46,56,53,50,48,55,54,44,51,51,46,50,52,55,50,56,56,93,44,91,45,56,50,46,48,57,50,53,57,50,44,51,51,46,50,51,48,48,56,52,93,44,91,45,56,50,46,49,55,52,50,52,44,51,51,46,50,57,54,55,55,49,93,44,91,45,56,50,46,50,54,55,53,56,44,51,51,46,50,54,55,51,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,50,55,44,34,98,101,100,115,34,58,49,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,53,51,54,49,55,44,51,55,46,54,48,48,50,51,55,93,44,91,45,56,57,46,52,52,56,53,57,56,44,51,55,46,53,57,56,56,50,49,93,44,91,45,56,57,46,53,50,49,53,54,52,44,51,55,46,53,55,50,49,53,54,93,44,91,45,56,57,46,53,50,49,56,53,53,44,51,55,46,53,54,54,50,49,52,93,44,91,45,56,57,46,52,50,48,57,51,57,44,51,55,46,51,57,51,57,53,50,93,44,91,45,56,57,46,52,56,54,54,56,57,44,51,55,46,51,51,52,53,53,52,93,44,91,45,56,57,46,50,52,56,53,54,54,44,51,55,46,51,51,53,50,57,56,93,44,91,45,56,57,46,48,52,52,55,57,57,44,51,55,46,51,50,57,55,49,55,93,44,91,45,56,57,46,48,52,49,52,48,49,44,51,55,46,53,57,54,53,55,54,93,44,91,45,56,57,46,49,53,51,54,49,55,44,51,55,46,54,48,48,50,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,75,97,110,107,97,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,48,54,49,44,34,98,101,100,115,34,58,53,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,50,54,55,51,49,44,52,49,46,50,57,56,48,53,50,93,44,91,45,56,56,46,48,49,51,57,49,57,44,52,49,46,50,57,50,52,52,55,93,44,91,45,56,56,46,48,49,49,56,49,44,52,49,46,50,48,53,53,48,56,93,44,91,45,56,56,46,50,52,52,49,52,52,44,52,49,46,50,48,49,53,54,54,93,44,91,45,56,56,46,50,53,49,53,48,49,44,52,49,46,49,49,52,50,49,56,93,44,91,45,56,56,46,50,52,55,51,44,52,48,46,57,57,52,53,54,93,44,91,45,56,56,46,49,51,49,57,51,53,44,52,48,46,57,57,55,55,55,55,93,44,91,45,56,55,46,53,50,54,50,48,56,44,52,49,46,48,49,48,51,52,49,93,44,91,45,56,55,46,53,50,54,53,56,55,44,52,49,46,49,54,54,48,57,93,44,91,45,56,55,46,53,50,54,55,51,49,44,52,49,46,50,57,56,48,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,77,99,73,110,116,111,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,53,52,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,51,55,50,56,57,44,52,54,46,50,56,50,56,55,49,93,44,91,45,57,57,46,56,55,56,51,53,52,44,52,54,46,50,56,50,56,50,57,93,44,91,45,57,57,46,56,56,48,48,54,44,52,53,46,57,52,49,52,50,51,93,44,91,45,57,57,46,55,49,56,48,55,49,44,52,53,46,57,52,48,56,56,51,93,44,91,45,57,57,46,48,48,53,55,53,56,44,52,53,46,57,51,57,55,51,49,93,44,91,45,57,57,46,48,48,51,49,49,56,44,52,54,46,50,56,50,56,57,56,93,44,91,45,57,57,46,48,51,55,50,56,57,44,52,54,46,50,56,50,56,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,80,108,97,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,48,54,51,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,48,55,44,52,49,46,55,52,51,50,48,55,93,44,91,45,57,55,46,56,51,48,52,57,51,44,52,49,46,55,52,50,50,51,56,93,44,91,45,57,55,46,56,50,57,56,52,54,44,52,49,46,53,50,54,49,55,52,93,44,91,45,57,55,46,55,48,51,54,50,55,44,52,49,46,53,50,54,55,57,54,93,44,91,45,57,55,46,55,48,51,55,54,53,44,52,49,46,51,57,52,56,55,54,93,44,91,45,57,55,46,53,57,56,50,53,51,44,52,49,46,51,51,51,49,49,57,93,44,91,45,57,55,46,51,54,56,49,56,54,44,52,49,46,51,57,54,52,49,54,93,44,91,45,57,55,46,50,53,51,53,49,57,44,52,49,46,51,56,52,50,49,50,93,44,91,45,57,55,46,50,53,50,52,50,53,44,52,49,46,55,52,51,48,56,53,93,44,91,45,57,55,46,51,54,56,48,55,44,52,49,46,55,52,51,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,51,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,52,54,50,55,49,44,51,54,46,53,52,51,53,53,49,93,44,91,45,55,56,46,51,50,51,57,57,49,44,51,54,46,53,52,51,56,50,50,93,44,91,45,55,56,46,50,55,55,49,54,53,44,51,54,46,51,48,54,49,51,50,93,44,91,45,55,56,46,51,48,54,57,54,53,44,51,54,46,50,54,54,49,57,49,93,44,91,45,55,56,46,48,48,54,53,53,49,44,51,54,46,50,48,50,54,51,51,93,44,91,45,55,55,46,57,49,49,57,54,51,44,51,54,46,51,56,50,52,52,54,93,44,91,45,55,55,46,56,57,57,53,50,52,44,51,54,46,53,48,52,50,53,57,93,44,91,45,55,55,46,56,57,57,55,55,51,44,51,54,46,53,52,52,53,57,54,93,44,91,45,55,56,46,48,52,54,50,55,49,44,51,54,46,53,52,51,53,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,105,98,111,110,105,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,52,53,55,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,50,52,50,55,51,53,44,49,56,46,49,56,48,50,52,56,93,44,91,45,54,54,46,51,49,52,56,52,56,44,49,56,46,49,53,50,48,56,56,93,44,91,45,54,54,46,50,53,55,53,50,55,44,49,56,46,48,55,53,56,56,52,93,44,91,45,54,54,46,50,50,52,52,57,44,49,56,46,48,57,53,51,51,57,93,44,91,45,54,54,46,50,49,54,56,57,57,44,49,56,46,49,52,51,50,50,93,44,91,45,54,54,46,50,52,50,55,51,53,44,49,56,46,49,56,48,50,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,51,55,51,50,51,44,51,50,46,53,51,52,56,53,53,93,44,91,45,56,52,46,54,53,56,57,50,44,51,50,46,50,51,50,56,53,50,93,44,91,45,56,52,46,54,52,57,51,49,57,44,51,50,46,50,51,50,57,53,51,93,44,91,45,56,52,46,53,50,55,49,49,55,44,51,50,46,49,51,52,53,53,54,93,44,91,45,56,52,46,52,51,49,50,49,52,44,51,50,46,49,51,52,48,53,56,93,44,91,45,56,52,46,52,51,48,50,49,56,44,51,50,46,49,54,54,50,53,55,93,44,91,45,56,52,46,51,57,50,51,49,54,44,51,50,46,52,49,52,48,52,54,93,44,91,45,56,52,46,52,52,52,51,53,51,44,51,50,46,53,54,50,48,56,51,93,44,91,45,56,52,46,54,51,55,51,50,51,44,51,50,46,53,51,52,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,54,48,53,52,51,44,52,51,46,48,56,51,49,52,53,93,44,91,45,57,55,46,49,54,48,51,53,51,44,52,50,46,55,57,57,55,48,49,93,44,91,45,57,55,46,48,49,53,56,52,57,44,52,50,46,55,54,49,51,51,56,93,44,91,45,57,54,46,56,48,54,50,49,51,44,52,50,46,55,48,52,49,53,52,93,44,91,45,57,54,46,56,48,53,54,56,50,44,52,51,46,48,56,51,54,55,93,44,91,45,57,54,46,57,50,52,49,52,50,44,52,51,46,48,56,51,55,51,51,93,44,91,45,57,55,46,49,54,48,53,52,51,44,52,51,46,48,56,51,49,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,83,117,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,68,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,53,52,48,44,34,98,101,100,115,34,58,53,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,49,51,56,52,54,49,44,51,57,46,48,48,50,54,57,55,93,44,91,45,55,53,46,51,55,50,49,51,49,44,51,56,46,57,54,49,52,51,54,93,44,91,45,55,53,46,53,53,53,48,49,51,44,51,56,46,56,51,53,54,52,57,93,44,91,45,55,53,46,55,50,50,55,57,55,44,51,56,46,56,50,57,56,53,49,93,44,91,45,55,53,46,55,48,55,52,52,55,44,51,56,46,54,51,53,51,57,54,93,44,91,45,55,53,46,55,48,49,53,54,57,44,51,56,46,53,54,48,55,51,54,93,44,91,45,55,53,46,54,57,51,54,55,44,51,56,46,52,54,48,48,56,93,44,91,45,55,53,46,51,52,49,50,57,49,44,51,56,46,52,53,50,48,51,52,93,44,91,45,55,52,46,57,56,54,50,56,50,44,51,56,46,52,53,49,54,51,50,93,44,91,45,55,53,46,48,49,53,49,50,51,44,51,56,46,55,56,56,54,53,55,93,44,91,45,55,53,46,49,51,56,52,54,49,44,51,57,46,48,48,50,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,56,52,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,56,50,49,57,54,44,51,51,46,53,50,54,50,50,93,44,91,45,56,51,46,56,54,51,48,53,56,44,51,51,46,51,54,56,50,55,56,93,44,91,45,56,51,46,56,50,50,50,54,49,44,51,51,46,49,56,48,50,51,56,93,44,91,45,56,51,46,56,49,54,48,52,56,44,51,51,46,49,51,49,56,49,54,93,44,91,45,56,51,46,53,52,53,56,55,54,44,51,51,46,49,55,49,57,52,52,93,44,91,45,56,51,46,53,51,51,55,51,54,44,51,51,46,52,51,52,52,55,50,93,44,91,45,56,51,46,54,56,50,49,57,54,44,51,51,46,53,50,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,52,53,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,57,50,49,52,57,44,51,57,46,54,49,48,50,54,53,93,44,91,45,57,50,46,55,48,55,51,54,55,44,51,57,46,51,50,49,54,49,52,93,44,91,45,57,50,46,52,51,48,50,50,57,44,51,57,46,50,52,56,55,57,53,93,44,91,45,57,50,46,51,49,52,52,55,49,44,51,57,46,50,52,54,52,53,52,93,44,91,45,57,50,46,51,49,48,48,50,56,44,51,57,46,51,52,55,55,57,53,93,44,91,45,57,50,46,51,48,48,56,55,49,44,51,57,46,54,48,53,51,52,56,93,44,91,45,57,50,46,54,57,50,49,52,57,44,51,57,46,54,49,48,50,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,52,54,56,44,34,98,101,100,115,34,58,49,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,53,50,52,55,54,44,51,55,46,57,49,50,55,51,51,93,44,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,44,91,45,57,54,46,53,50,53,54,57,44,51,55,46,52,55,54,52,48,53,93,44,91,45,57,54,46,53,50,53,51,44,51,55,46,54,48,55,48,49,53,93,44,91,45,57,54,46,53,50,50,55,56,50,44,51,56,46,48,56,54,51,55,93,44,91,45,57,54,46,56,52,48,55,55,50,44,51,56,46,48,56,53,54,50,50,93,44,91,45,57,55,46,49,53,50,57,49,51,44,51,56,46,48,56,55,55,48,52,93,44,91,45,57,55,46,49,53,50,52,55,54,44,51,55,46,57,49,50,55,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,57,34,44,34,78,65,77,69,34,58,34,72,97,121,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,49,53,48,44,34,98,101,100,115,34,58,52,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,57,55,54,44,51,48,46,48,51,55,57,57,52,93,44,91,45,57,56,46,48,51,48,53,50,51,44,50,57,46,56,52,56,53,51,57,93,44,91,45,57,55,46,57,57,57,50,55,49,44,50,57,46,55,53,50,52,52,52,93,44,91,45,57,55,46,56,55,53,50,53,57,44,50,57,46,56,53,56,50,48,56,93,44,91,45,57,55,46,55,49,48,50,49,53,44,51,48,46,48,50,52,52,57,57,93,44,91,45,57,56,46,49,55,50,57,55,55,44,51,48,46,51,53,54,51,49,50,93,44,91,45,57,56,46,50,57,55,54,44,51,48,46,48,51,55,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,53,34,44,34,78,65,77,69,34,58,34,77,101,100,105,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,51,51,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,49,51,56,56,44,50,57,46,48,57,49,51,51,53,93,44,91,45,57,56,46,56,48,52,57,44,50,57,46,48,57,48,52,51,52,93,44,91,45,57,56,46,56,48,52,55,54,51,44,50,57,46,50,53,48,54,57,51,93,44,91,45,57,56,46,56,48,54,53,53,50,44,50,57,46,54,57,48,55,48,57,93,44,91,45,57,56,46,57,50,55,49,54,49,44,50,57,46,53,54,50,50,53,93,44,91,45,57,56,46,57,56,51,55,56,55,44,50,57,46,54,50,51,52,53,93,44,91,45,57,57,46,52,49,49,56,49,55,44,50,57,46,54,50,55,53,49,52,93,44,91,45,57,57,46,52,49,51,56,56,44,50,57,46,48,57,49,51,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,56,56,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,52,51,53,48,55,44,52,52,46,49,54,55,48,56,56,93,44,91,45,56,54,46,57,56,55,57,57,56,44,52,52,46,49,56,50,54,52,57,93,44,91,45,56,55,46,48,55,53,51,51,53,44,52,51,46,56,57,52,55,55,52,93,44,91,45,56,55,46,48,57,51,49,48,57,44,52,51,46,56,50,48,49,49,51,93,44,91,45,56,54,46,48,51,55,56,56,52,44,52,51,46,56,49,53,54,49,49,93,44,91,45,56,54,46,48,52,51,53,48,55,44,52,52,46,49,54,55,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,101,97,117,102,111,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,54,53,56,44,34,98,101,100,115,34,58,51,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,54,57,55,48,53,44,51,50,46,54,54,48,57,51,53,93,44,91,45,56,48,46,56,50,48,50,50,56,44,51,50,46,52,57,48,55,56,56,93,44,91,45,56,48,46,56,52,49,52,53,56,44,51,50,46,51,56,53,48,54,52,93,44,91,45,56,48,46,57,50,49,56,56,51,44,51,50,46,51,53,49,56,51,52,93,44,91,45,56,49,46,48,48,56,53,52,44,51,50,46,50,49,50,49,50,56,93,44,91,45,56,48,46,57,48,48,53,55,51,44,51,50,46,49,49,49,54,49,55,93,44,91,45,56,48,46,55,52,53,53,51,54,44,51,50,46,48,55,56,54,54,55,93,44,91,45,56,48,46,53,56,52,57,56,53,44,51,50,46,49,54,50,53,56,57,93,44,91,45,56,48,46,53,50,51,56,50,52,44,51,50,46,50,51,52,53,57,50,93,44,91,45,56,48,46,51,57,50,51,50,55,44,51,50,46,50,56,48,51,49,55,93,44,91,45,56,48,46,51,48,53,55,49,49,44,51,50,46,51,57,55,53,56,57,93,44,91,45,56,48,46,53,48,50,57,52,52,44,51,50,46,52,57,53,54,53,50,93,44,91,45,56,48,46,54,56,52,56,53,51,44,51,50,46,54,53,54,48,57,55,93,44,91,45,56,48,46,56,50,54,51,48,57,44,51,50,46,55,48,52,51,50,49,93,44,91,45,56,48,46,56,54,57,55,48,53,44,51,50,46,54,54,48,57,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,89,97,110,107,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,49,55,44,34,98,101,100,115,34,58,50,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,57,57,49,57,49,44,52,51,46,49,54,57,52,49,57,93,44,91,45,57,55,46,54,51,55,52,57,54,44,52,51,46,49,54,56,55,55,93,44,91,45,57,55,46,54,51,53,52,52,44,52,50,46,56,53,49,53,51,50,93,44,91,45,57,55,46,52,56,52,57,50,49,44,52,50,46,56,53,48,51,54,56,93,44,91,45,57,55,46,50,49,56,48,52,54,44,52,50,46,56,52,53,49,49,51,93,44,91,45,57,55,46,49,54,48,51,53,51,44,52,50,46,55,57,57,55,48,49,93,44,91,45,57,55,46,49,54,48,53,52,51,44,52,51,46,48,56,51,49,52,53,93,44,91,45,57,55,46,49,54,48,53,52,52,44,52,51,46,49,54,57,57,55,56,93,44,91,45,57,55,46,51,57,57,49,57,49,44,52,51,46,49,54,57,52,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,82,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,55,54,57,44,34,98,101,100,115,34,58,53,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,54,57,49,50,56,44,52,50,46,56,52,53,48,51,54,93,44,91,45,56,57,46,51,54,53,55,57,56,44,52,50,46,53,48,48,48,55,56,93,44,91,45,56,56,46,57,52,48,51,56,56,44,52,50,46,52,57,53,48,52,53,93,44,91,45,56,56,46,55,55,54,52,57,51,44,52,50,46,52,57,49,57,49,50,93,44,91,45,56,56,46,55,55,55,48,55,54,44,52,50,46,56,52,50,54,57,52,93,44,91,45,56,57,46,48,49,51,53,56,50,44,52,50,46,56,52,55,54,51,93,44,91,45,56,57,46,51,54,57,49,50,56,44,52,50,46,56,52,53,48,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,80,105,99,107,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,55,52,54,44,34,98,101,100,115,34,58,49,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,57,55,51,55,51,44,51,53,46,48,53,54,50,49,52,93,44,91,45,56,50,46,56,57,54,48,50,53,44,51,52,46,55,51,54,53,52,55,93,44,91,45,56,50,46,56,52,48,49,53,53,44,51,52,46,54,50,51,49,50,93,44,91,45,56,50,46,55,56,55,55,53,49,44,51,52,46,54,55,50,53,57,52,93,44,91,45,56,50,46,52,56,55,50,48,51,44,51,52,46,56,49,56,56,49,49,93,44,91,45,56,50,46,52,57,52,48,48,55,44,51,52,46,56,57,54,50,49,53,93,44,91,45,56,50,46,54,50,53,53,57,57,44,51,53,46,48,54,52,54,56,54,93,44,91,45,56,50,46,55,54,52,53,55,53,44,51,53,46,48,54,56,51,56,93,44,91,45,56,50,46,56,57,55,51,55,51,44,51,53,46,48,53,54,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,50,50,56,54,51,53,44,52,54,46,53,57,51,51,54,50,93,44,91,45,49,49,56,46,50,52,49,56,55,50,44,52,54,46,50,57,53,48,54,52,93,44,91,45,49,49,56,46,49,49,54,54,50,52,44,52,54,46,50,48,56,48,53,93,44,91,45,49,49,55,46,57,57,49,52,56,49,44,52,54,46,50,48,55,55,48,50,93,44,91,45,49,49,55,46,57,57,54,57,55,44,52,54,46,48,48,48,53,54,93,44,91,45,49,49,55,46,57,55,55,54,54,52,44,52,54,46,48,48,48,53,50,50,93,44,91,45,49,49,55,46,54,48,51,52,50,52,44,52,53,46,57,57,56,57,53,93,44,91,45,49,49,55,46,54,49,49,57,48,51,44,52,54,46,51,51,56,52,55,56,93,44,91,45,49,49,55,46,55,51,55,51,48,51,44,52,54,46,52,55,49,52,53,52,93,44,91,45,49,49,55,46,56,54,51,51,52,55,44,52,54,46,52,55,48,54,54,55,93,44,91,45,49,49,55,46,56,53,49,56,53,44,52,54,46,54,50,52,54,55,93,44,91,45,49,49,56,46,49,55,50,53,53,50,44,52,54,46,53,53,54,57,52,55,93,44,91,45,49,49,56,46,50,49,53,54,54,44,52,54,46,53,56,56,57,50,52,93,44,91,45,49,49,56,46,50,50,56,54,51,53,44,52,54,46,53,57,51,51,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,51,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,57,52,54,54,53,44,52,48,46,52,51,50,49,53,54,93,44,91,45,56,54,46,54,57,53,54,51,55,44,52,48,46,50,49,52,51,54,55,93,44,91,45,56,54,46,54,57,53,56,48,52,44,52,48,46,49,55,56,54,53,55,93,44,91,45,56,54,46,50,52,50,51,54,53,44,52,48,46,49,56,48,55,55,56,93,44,91,45,56,54,46,50,52,50,55,52,51,44,52,48,46,50,49,53,56,51,52,93,44,91,45,56,54,46,50,52,50,57,57,50,44,52,48,46,51,55,51,54,54,49,93,44,91,45,56,54,46,51,55,53,55,54,50,44,52,48,46,52,51,49,56,53,49,93,44,91,45,56,54,46,54,57,52,54,54,53,44,52,48,46,52,51,50,49,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,54,50,56,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,48,54,57,52,57,44,51,56,46,54,53,53,48,49,57,93,44,91,45,56,57,46,55,48,52,50,52,53,44,51,56,46,52,49,53,55,55,57,93,44,91,45,56,57,46,53,55,57,51,50,53,44,51,56,46,52,56,48,49,56,52,93,44,91,45,56,57,46,51,50,57,52,54,57,44,51,56,46,53,49,48,50,49,51,93,44,91,45,56,57,46,49,52,51,56,54,54,44,51,56,46,53,48,51,48,56,57,93,44,91,45,56,57,46,49,51,56,51,57,51,44,51,56,46,55,51,54,51,51,49,93,44,91,45,56,57,46,50,53,52,49,56,53,44,51,56,46,55,52,50,48,49,56,93,44,91,45,56,57,46,53,57,55,51,50,49,44,51,56,46,55,52,51,50,51,54,93,44,91,45,56,57,46,55,48,54,57,52,57,44,51,56,46,54,53,53,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,77,105,110,105,100,111,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,57,51,49,54,56,55,44,52,50,46,55,54,53,48,50,54,93,44,91,45,49,49,51,46,57,51,49,55,57,57,44,52,50,46,53,51,53,50,52,51,93,44,91,45,49,49,51,46,54,53,52,49,52,57,44,52,50,46,53,51,54,49,53,53,93,44,91,45,49,49,51,46,53,53,55,49,57,51,44,52,50,46,54,53,54,55,57,57,93,44,91,45,49,49,51,46,52,55,50,49,55,55,44,52,50,46,54,54,57,51,53,50,93,44,91,45,49,49,51,46,52,55,50,49,53,53,44,52,50,46,56,52,57,50,48,49,93,44,91,45,49,49,51,46,52,49,51,49,51,56,44,52,50,46,56,52,57,49,54,57,93,44,91,45,49,49,51,46,52,49,51,56,54,55,44,52,51,46,49,57,57,56,53,57,93,44,91,45,49,49,51,46,55,49,52,54,52,50,44,52,51,46,49,57,57,55,56,51,93,44,91,45,49,49,51,46,55,49,52,48,52,52,44,52,50,46,56,52,57,55,51,52,93,44,91,45,49,49,51,46,55,54,51,56,54,50,44,52,50,46,55,54,52,53,48,56,93,44,91,45,49,49,51,46,57,51,49,54,56,55,44,52,50,46,55,54,53,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,56,49,51,55,51,49,44,52,49,46,53,57,48,48,51,52,93,44,91,45,55,54,46,55,52,57,52,57,55,44,52,49,46,52,48,53,53,55,50,93,44,91,45,55,54,46,53,57,50,53,51,50,44,52,49,46,51,48,52,51,51,50,93,44,91,45,55,54,46,52,52,55,53,57,55,44,52,49,46,50,55,53,54,50,57,93,44,91,45,55,54,46,51,49,48,49,51,51,44,52,49,46,51,49,48,49,57,57,93,44,91,45,55,54,46,50,56,51,49,44,52,49,46,51,55,54,53,49,55,93,44,91,45,55,54,46,50,50,48,49,51,57,44,52,49,46,53,52,49,50,56,53,93,44,91,45,55,54,46,56,49,51,55,51,49,44,52,49,46,53,57,48,48,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,82,97,110,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,50,52,48,44,34,98,101,100,115,34,58,50,48,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,54,53,54,57,55,44,51,50,46,51,57,57,53,50,57,93,44,91,45,57,48,46,50,52,53,51,56,44,51,50,46,49,55,49,51,57,54,93,44,91,45,57,48,46,50,51,48,51,51,49,44,51,50,46,48,52,57,55,50,56,93,44,91,45,56,57,46,55,51,48,48,54,54,44,51,50,46,48,52,55,48,55,50,93,44,91,45,56,57,46,55,51,48,52,50,52,44,51,50,46,50,50,50,48,51,57,93,44,91,45,56,57,46,55,51,48,48,54,51,44,51,50,46,51,53,50,55,51,51,93,44,91,45,56,57,46,55,56,52,49,50,51,44,51,50,46,53,56,54,56,57,49,93,44,91,45,56,57,46,56,54,49,49,53,57,44,51,50,46,53,56,51,49,54,50,93,44,91,45,57,48,46,48,54,53,54,57,55,44,51,50,46,51,57,57,53,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,52,53,34,44,34,78,65,77,69,34,58,34,77,111,116,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,52,49,52,56,52,44,51,52,46,51,49,50,52,52,52,93,44,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,44,91,45,49,48,48,46,53,49,56,54,57,49,44,51,51,46,56,51,53,54,53,93,44,91,45,49,48,48,46,53,49,55,51,52,44,51,52,46,51,49,52,49,48,50,93,44,91,45,49,48,48,46,57,52,54,49,51,50,44,51,52,46,51,49,50,55,53,57,93,44,91,45,49,48,49,46,48,52,49,52,56,52,44,51,52,46,51,49,50,52,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,76,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,56,56,50,44,34,98,101,100,115,34,58,55,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,50,51,48,49,55,56,44,52,51,46,56,54,51,55,50,51,93,44,91,45,49,50,51,46,57,52,54,50,57,49,44,52,51,46,56,54,50,54,56,50,93,44,91,45,49,50,51,46,56,50,55,48,48,52,44,52,51,46,57,52,52,56,51,55,93,44,91,45,49,50,51,46,54,49,57,48,49,50,44,52,51,46,57,50,49,49,49,55,93,44,91,45,49,50,51,46,53,50,57,49,53,51,44,52,51,46,56,51,48,48,54,49,93,44,91,45,49,50,51,46,51,52,56,50,52,54,44,52,51,46,55,56,48,49,55,93,44,91,45,49,50,51,46,49,51,55,51,49,57,44,52,51,46,55,55,57,54,55,93,44,91,45,49,50,51,46,49,48,55,54,56,54,44,52,51,46,53,52,48,48,49,93,44,91,45,49,50,50,46,55,52,49,56,52,53,44,52,51,46,53,52,52,54,53,52,93,44,91,45,49,50,50,46,55,52,49,55,49,54,44,52,51,46,52,51,55,51,57,53,93,44,91,45,49,50,50,46,49,51,50,48,51,52,44,52,51,46,52,52,48,50,50,49,93,44,91,45,49,50,50,46,49,51,48,54,56,57,44,52,51,46,53,53,55,49,52,51,93,44,91,45,49,50,50,46,48,48,50,51,54,50,44,52,51,46,54,49,53,52,57,56,93,44,91,45,49,50,49,46,57,55,50,57,51,49,44,52,51,46,56,54,49,49,53,54,93,44,91,45,49,50,49,46,56,53,55,48,54,51,44,52,51,46,57,54,53,50,52,56,93,44,91,45,49,50,49,46,55,54,56,48,55,44,52,52,46,49,49,53,50,52,53,93,44,91,45,49,50,49,46,56,49,57,52,50,57,44,52,52,46,50,54,50,51,57,52,93,44,91,45,49,50,50,46,51,50,55,49,53,44,52,52,46,50,53,50,56,52,49,93,44,91,45,49,50,50,46,53,48,55,50,48,51,44,52,52,46,50,50,51,52,52,56,93,44,91,45,49,50,50,46,55,54,50,55,51,53,44,52,52,46,50,57,48,53,51,55,93,44,91,45,49,50,50,46,56,54,53,52,55,56,44,52,52,46,50,56,55,49,51,52,93,44,91,45,49,50,50,46,57,48,53,55,53,53,44,52,52,46,50,48,48,55,51,54,93,44,91,45,49,50,51,46,49,54,53,52,50,56,44,52,52,46,50,48,48,48,55,49,93,44,91,45,49,50,51,46,49,56,48,51,56,56,44,52,52,46,50,56,51,55,50,53,93,44,91,45,49,50,51,46,55,55,53,53,57,56,44,52,52,46,50,56,51,53,52,55,93,44,91,45,49,50,52,46,49,56,55,52,48,57,44,52,52,46,50,55,54,56,55,49,93,44,91,45,49,50,52,46,50,51,48,49,55,56,44,52,51,46,56,54,51,55,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,56,53,34,44,34,78,65,77,69,34,58,34,87,105,99,104,105,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,56,49,56,44,34,98,101,100,115,34,58,56,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,50,51,53,55,55,44,51,51,46,56,51,54,48,52,55,93,44,91,45,57,56,46,52,50,51,53,51,51,44,51,52,46,48,56,50,56,52,51,93,44,91,45,57,56,46,52,56,54,51,50,56,44,51,52,46,48,54,50,53,57,56,93,44,91,45,57,56,46,54,48,57,57,56,55,44,51,52,46,49,53,55,49,53,52,93,44,91,45,57,56,46,54,57,48,48,55,50,44,51,52,46,49,51,51,49,53,53,93,44,91,45,57,56,46,56,56,55,49,49,50,44,51,52,46,49,54,56,50,54,93,44,91,45,57,56,46,57,53,50,51,57,53,44,51,52,46,50,49,50,52,57,55,93,44,91,45,57,56,46,57,53,51,50,48,50,44,51,51,46,56,51,52,48,50,53,93,44,91,45,57,56,46,52,50,51,53,55,55,44,51,51,46,56,51,54,48,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,83,104,105,97,119,97,115,115,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,57,51,44,34,98,101,100,115,34,58,49,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,55,55,54,44,52,51,46,49,49,55,57,52,50,93,44,91,45,56,52,46,51,54,51,54,53,57,44,52,50,46,55,55,53,55,55,56,93,44,91,45,56,52,46,49,53,56,49,56,57,44,52,50,46,55,55,54,54,51,57,93,44,91,45,56,51,46,57,50,50,53,49,54,44,52,50,46,55,56,48,56,50,49,93,44,91,45,56,51,46,57,50,57,48,55,57,44,52,51,46,49,51,50,55,56,50,93,44,91,45,56,52,46,51,54,55,56,57,49,44,52,51,46,49,50,56,52,53,50,93,44,91,45,56,52,46,51,54,55,55,54,44,52,51,46,49,49,55,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,74,101,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,48,52,52,53,53,44,52,48,46,48,48,50,50,57,49,93,44,91,45,57,56,46,53,48,53,50,54,54,44,51,57,46,53,54,55,54,48,51,93,44,91,45,57,56,46,52,56,55,51,56,52,44,51,57,46,53,54,55,52,57,50,93,44,91,45,57,55,46,57,51,49,56,52,52,44,51,57,46,53,54,54,57,50,49,93,44,91,45,57,55,46,57,51,49,52,56,50,44,51,57,46,54,53,51,55,54,55,93,44,91,45,57,55,46,57,51,49,56,50,53,44,52,48,46,48,48,50,48,55,50,93,44,91,45,57,56,46,50,55,52,48,49,55,44,52,48,46,48,48,50,54,54,50,93,44,91,45,57,56,46,53,48,52,52,53,53,44,52,48,46,48,48,50,50,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,105,116,99,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,50,50,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,56,55,51,56,52,44,51,57,46,53,54,55,52,57,50,93,44,91,45,57,56,46,52,57,48,49,52,57,44,51,57,46,50,49,57,55,56,93,44,91,45,57,55,46,57,50,57,55,52,54,44,51,57,46,50,49,57,50,55,51,93,44,91,45,57,55,46,57,50,57,48,57,55,44,51,57,46,51,48,54,51,57,55,93,44,91,45,57,55,46,57,51,49,56,52,52,44,51,57,46,53,54,54,57,50,49,93,44,91,45,57,56,46,52,56,55,51,56,52,44,51,57,46,53,54,55,52,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,114,97,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,55,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,52,50,53,55,56,44,51,48,46,49,52,51,49,49,55,93,44,91,45,56,50,46,51,49,51,51,56,53,44,50,57,46,57,53,52,55,48,52,93,44,91,45,56,50,46,52,49,56,55,50,56,44,50,57,46,57,50,51,48,57,51,93,44,91,45,56,50,46,50,56,49,56,51,55,44,50,57,46,56,52,52,52,52,56,93,44,91,45,56,50,46,49,51,51,49,50,54,44,50,57,46,56,51,53,57,52,57,93,44,91,45,56,50,46,48,53,53,54,50,53,44,50,57,46,55,49,56,50,51,50,93,44,91,45,56,50,46,48,52,57,50,52,52,44,50,57,46,55,49,56,54,55,93,44,91,45,56,50,46,48,52,57,52,50,53,44,51,48,46,49,52,51,49,51,54,93,44,91,45,56,50,46,49,52,50,53,55,56,44,51,48,46,49,52,51,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,48,50,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,52,48,52,54,54,44,51,49,46,51,51,54,48,49,52,93,44,91,45,57,48,46,48,51,49,56,57,54,44,51,49,46,49,55,53,55,50,55,93,44,91,45,56,57,46,56,51,53,56,55,51,44,51,49,46,48,55,52,57,50,54,93,44,91,45,56,57,46,56,51,53,57,48,56,44,51,49,46,48,48,50,48,52,55,93,44,91,45,56,57,46,55,50,56,49,49,57,44,51,49,46,48,48,50,51,93,44,91,45,56,57,46,54,53,52,48,51,56,44,51,49,46,48,48,50,53,48,50,93,44,91,45,56,57,46,54,53,52,50,49,50,44,51,49,46,52,51,51,56,48,53,93,44,91,45,56,57,46,56,50,52,50,51,54,44,51,49,46,52,51,52,48,57,51,93,44,91,45,56,57,46,57,53,56,57,52,44,51,49,46,51,57,48,52,56,57,93,44,91,45,57,48,46,48,52,48,52,54,54,44,51,49,46,51,51,54,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,71,101,111,114,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,55,49,48,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,51,52,51,51,57,44,51,48,46,57,57,55,57,56,51,93,44,91,45,56,56,46,56,56,53,48,51,56,44,51,48,46,57,49,48,55,56,56,93,44,91,45,56,56,46,56,56,52,53,51,52,44,51,48,46,55,51,53,53,57,49,93,44,91,45,56,56,46,52,49,50,54,49,50,44,51,48,46,55,51,53,53,57,93,44,91,45,56,56,46,52,50,53,52,51,50,44,51,48,46,57,57,56,51,50,51,93,44,91,45,56,56,46,56,51,52,51,51,57,44,51,48,46,57,57,55,57,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,74,111,32,68,97,118,105,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,51,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,52,50,56,52,51,44,52,50,46,53,48,56,52,56,49,93,44,91,45,57,48,46,52,55,51,55,57,56,44,52,50,46,51,56,49,52,53,56,93,44,91,45,57,48,46,51,57,49,49,48,56,44,52,50,46,50,50,53,52,55,51,93,44,91,45,57,48,46,51,49,55,51,57,53,44,52,50,46,49,57,51,54,52,53,93,44,91,45,56,57,46,57,49,57,55,55,50,44,52,50,46,49,57,54,56,56,49,93,44,91,45,56,57,46,57,50,54,52,54,54,44,52,50,46,53,48,53,55,55,50,93,44,91,45,57,48,46,52,50,54,51,55,55,44,52,50,46,53,48,55,49,55,51,93,44,91,45,57,48,46,54,52,50,56,52,51,44,52,50,46,53,48,56,52,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,56,51,48,44,34,98,101,100,115,34,58,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,55,54,49,57,50,44,51,57,46,57,52,53,55,53,54,93,44,91,45,56,53,46,56,54,50,52,56,57,44,51,57,46,57,52,51,54,49,56,93,44,91,45,56,53,46,57,51,55,53,56,55,44,51,57,46,57,50,55,49,51,55,93,44,91,45,56,53,46,57,53,49,55,50,49,44,51,57,46,54,57,55,49,51,54,93,44,91,45,56,53,46,54,51,51,50,50,56,44,51,57,46,54,57,56,52,54,50,93,44,91,45,56,53,46,53,57,54,57,49,54,44,51,57,46,55,56,54,53,49,57,93,44,91,45,56,53,46,53,55,54,49,57,50,44,51,57,46,57,52,53,55,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,50,48,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,49,49,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,50,52,54,50,57,44,51,54,46,55,48,55,55,50,57,93,44,91,45,55,54,46,57,53,53,52,50,52,44,51,54,46,54,54,52,53,56,55,93,44,91,45,55,54,46,57,48,57,54,55,50,44,51,54,46,54,52,56,49,55,53,93,44,91,45,55,54,46,57,50,52,54,50,57,44,51,54,46,55,48,55,55,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,57,34,44,34,78,65,77,69,34,58,34,77,105,100,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,49,57,52,44,34,98,101,100,115,34,58,54,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,50,56,55,48,52,56,44,51,50,46,48,56,54,57,57,49,93,44,91,45,49,48,50,46,50,56,55,51,52,53,44,51,49,46,54,53,49,50,55,54,93,44,91,45,49,48,49,46,55,55,53,56,48,50,44,51,49,46,54,53,49,51,49,57,93,44,91,45,49,48,49,46,55,55,54,48,56,53,44,51,50,46,48,56,54,57,50,53,93,44,91,45,49,48,50,46,50,49,49,50,52,57,44,51,50,46,48,56,54,56,93,44,91,45,49,48,50,46,50,56,55,48,52,56,44,51,50,46,48,56,54,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,49,50,56,51,55,57,44,51,56,46,55,48,48,54,48,51,93,44,91,45,49,48,49,46,49,50,53,52,51,56,44,51,56,46,50,54,52,53,48,57,93,44,91,45,49,48,49,46,49,48,51,50,54,56,44,51,56,46,50,54,52,53,53,55,93,44,91,45,49,48,48,46,54,56,52,54,57,57,44,51,56,46,50,54,52,49,51,55,93,44,91,45,49,48,48,46,54,56,56,48,48,54,44,51,56,46,55,48,48,48,50,49,93,44,91,45,49,48,48,46,56,49,56,54,57,56,44,51,56,46,54,57,57,56,54,49,93,44,91,45,49,48,49,46,49,50,56,51,55,57,44,51,56,46,55,48,48,54,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,115,99,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,55,52,54,44,34,98,101,100,115,34,58,53,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,48,52,55,55,56,49,44,52,55,46,53,49,54,48,51,52,93,44,91,45,49,49,50,46,48,52,52,56,50,57,44,52,55,46,49,57,50,55,49,49,93,44,91,45,49,49,49,46,55,56,57,50,55,56,44,52,55,46,49,50,56,57,50,50,93,44,91,45,49,49,49,46,55,57,48,50,51,54,44,52,54,46,57,49,51,55,54,52,93,44,91,45,49,49,49,46,54,53,56,49,51,50,44,52,54,46,57,49,51,52,50,51,93,44,91,45,49,49,49,46,53,51,57,51,55,51,44,52,55,46,48,48,48,53,53,57,93,44,91,45,49,49,49,46,48,56,52,50,56,53,44,52,55,46,48,49,48,54,49,51,93,44,91,45,49,49,48,46,57,49,51,48,51,53,44,52,54,46,57,56,48,53,53,57,93,44,91,45,49,49,48,46,54,53,50,56,55,55,44,52,54,46,56,50,51,54,50,54,93,44,91,45,49,49,48,46,54,52,53,50,49,50,44,52,55,46,48,57,53,56,55,93,44,91,45,49,49,48,46,55,55,48,54,57,56,44,52,55,46,48,57,54,53,52,54,93,44,91,45,49,49,48,46,55,54,55,49,50,53,44,52,55,46,51,53,57,49,50,56,93,44,91,45,49,49,48,46,54,51,57,53,53,57,44,52,55,46,52,49,54,52,56,54,93,44,91,45,49,49,48,46,55,54,57,49,50,57,44,52,55,46,52,52,54,48,57,54,93,44,91,45,49,49,48,46,56,54,52,54,51,44,52,55,46,53,50,52,55,49,52,93,44,91,45,49,49,49,46,48,52,51,56,56,49,44,52,55,46,53,57,49,53,56,51,93,44,91,45,49,49,48,46,57,55,54,54,54,56,44,52,55,46,54,57,56,55,51,93,44,91,45,49,49,49,46,52,48,56,56,53,44,52,55,46,54,57,56,49,50,51,93,44,91,45,49,49,49,46,54,54,54,52,56,50,44,52,55,46,54,57,55,55,54,49,93,44,91,45,49,49,49,46,54,54,54,50,54,44,52,55,46,54,49,49,50,53,51,93,44,91,45,49,49,49,46,57,50,50,57,51,54,44,52,55,46,54,49,49,50,51,49,93,44,91,45,49,49,49,46,57,50,50,55,57,53,44,52,55,46,53,48,53,48,54,52,93,44,91,45,49,49,50,46,48,52,55,55,56,49,44,52,55,46,53,49,54,48,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,54,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,54,48,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,51,57,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,49,55,56,55,49,44,51,56,46,51,57,52,49,53,51,93,44,91,45,55,56,46,56,50,52,51,50,44,51,56,46,52,51,53,48,55,57,93,44,91,45,55,56,46,57,48,48,53,56,57,44,51,56,46,52,53,57,50,49,55,93,44,91,45,55,56,46,57,49,55,56,55,49,44,51,56,46,51,57,52,49,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,50,57,57,44,34,98,101,100,115,34,58,51,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,53,49,49,55,54,44,51,55,46,56,54,49,57,57,57,93,44,91,45,56,57,46,49,53,51,54,49,55,44,51,55,46,54,48,48,50,51,55,93,44,91,45,56,57,46,48,52,49,52,48,49,44,51,55,46,53,57,54,53,55,54,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,50,55,55,93,44,91,45,56,56,46,55,48,54,55,53,57,44,51,55,46,56,54,51,52,53,55,93,44,91,45,56,57,46,49,53,49,49,55,54,44,51,55,46,56,54,49,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,70,108,97,116,104,101,97,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,48,56,50,44,34,98,101,100,115,34,58,50,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,55,50,55,48,52,53,44,52,57,46,48,48,48,53,48,56,93,44,91,45,49,49,52,46,54,52,56,49,51,52,44,52,56,46,55,55,57,51,51,50,93,44,91,45,49,49,52,46,54,57,50,52,53,44,52,56,46,54,56,48,49,51,54,93,44,91,45,49,49,52,46,56,56,56,53,57,44,52,56,46,54,53,56,55,54,53,93,44,91,45,49,49,52,46,56,52,57,56,48,51,44,52,56,46,53,55,51,53,48,50,93,44,91,45,49,49,52,46,56,52,56,48,57,56,44,52,56,46,50,50,54,49,50,53,93,44,91,45,49,49,53,46,48,50,48,48,55,57,44,52,56,46,50,50,53,57,53,52,93,44,91,45,49,49,53,46,48,49,48,54,55,50,44,52,56,46,48,49,55,54,50,49,93,44,91,45,49,49,52,46,57,56,57,51,52,52,44,52,55,46,56,55,50,56,48,55,93,44,91,45,49,49,52,46,54,48,52,53,56,52,44,52,55,46,56,55,53,54,48,53,93,44,91,45,49,49,52,46,54,48,52,52,54,50,44,52,55,46,55,56,57,56,55,49,93,44,91,45,49,49,52,46,52,55,55,50,57,44,52,55,46,55,56,57,57,52,49,93,44,91,45,49,49,52,46,52,57,50,49,57,44,52,55,46,57,54,49,57,56,57,93,44,91,45,49,49,52,46,48,51,56,53,52,53,44,52,55,46,57,54,50,53,53,93,44,91,45,49,49,52,46,48,50,57,48,52,50,44,52,56,46,48,53,49,54,53,51,93,44,91,45,49,49,51,46,56,56,52,53,52,49,44,52,56,46,48,53,49,57,93,44,91,45,49,49,51,46,56,51,50,53,53,54,44,52,55,46,57,55,54,52,51,52,93,44,91,45,49,49,51,46,54,55,50,51,51,53,44,52,55,46,56,57,54,52,57,49,93,44,91,45,49,49,51,46,54,51,52,48,55,57,44,52,55,46,54,48,48,48,50,55,93,44,91,45,49,49,51,46,52,54,54,52,56,53,44,52,55,46,54,48,48,48,53,55,93,44,91,45,49,49,51,46,49,52,52,51,54,56,44,52,55,46,53,57,53,53,48,55,93,44,91,45,49,49,51,46,49,54,53,56,49,49,44,52,55,46,55,49,57,55,54,52,93,44,91,45,49,49,51,46,48,56,48,57,57,55,44,52,55,46,55,52,57,57,49,55,93,44,91,45,49,49,51,46,48,54,50,56,55,54,44,52,55,46,56,56,53,53,54,51,93,44,91,45,49,49,50,46,57,56,52,55,51,52,44,52,55,46,57,53,51,57,49,56,93,44,91,45,49,49,50,46,56,56,52,56,56,51,44,52,55,46,57,56,53,52,49,52,93,44,91,45,49,49,51,46,48,49,52,56,49,49,44,52,56,46,49,51,49,48,51,93,44,91,45,49,49,51,46,50,51,48,55,50,51,44,52,56,46,49,56,50,48,48,50,93,44,91,45,49,49,51,46,51,52,57,48,52,54,44,52,56,46,51,49,48,50,54,51,93,44,91,45,49,49,51,46,51,53,53,57,55,54,44,52,56,46,52,50,51,57,49,50,93,44,91,45,49,49,51,46,52,56,48,56,51,57,44,52,56,46,52,53,57,54,54,50,93,44,91,45,49,49,51,46,52,54,55,51,55,50,44,52,56,46,53,52,55,53,53,53,93,44,91,45,49,49,51,46,55,53,48,52,53,52,44,52,56,46,54,49,52,51,51,53,93,44,91,45,49,49,51,46,55,48,50,57,51,56,44,52,56,46,55,49,57,56,54,53,93,44,91,45,49,49,51,46,56,49,56,51,55,51,44,52,56,46,56,52,56,50,49,56,93,44,91,45,49,49,51,46,57,53,54,56,54,52,44,52,56,46,56,49,55,52,55,52,93,44,91,45,49,49,52,46,48,54,56,49,56,44,52,56,46,57,57,56,56,53,55,93,44,91,45,49,49,52,46,55,50,55,48,52,53,44,52,57,46,48,48,48,53,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,80,101,195,177,117,101,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,55,54,57,48,52,57,44,49,56,46,49,51,52,57,56,51,93,44,91,45,54,54,46,55,55,52,49,50,51,44,49,55,46,57,49,52,55,57,54,93,44,91,45,54,54,46,55,49,53,50,52,52,44,49,55,46,57,49,50,54,56,50,93,44,91,45,54,54,46,54,57,52,48,55,44,49,56,46,49,51,48,53,51,52,93,44,91,45,54,54,46,55,54,57,48,52,57,44,49,56,46,49,51,52,57,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,83,116,101,118,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,56,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,53,54,54,48,54,44,51,55,46,51,56,56,52,56,53,93,44,91,45,49,48,49,46,53,53,53,50,53,57,44,51,54,46,57,57,53,51,50,52,93,44,91,45,49,48,49,46,48,54,54,52,53,49,44,51,54,46,57,57,55,57,50,50,93,44,91,45,49,48,49,46,48,54,56,49,48,54,44,51,55,46,51,56,55,55,55,57,93,44,91,45,49,48,49,46,48,56,57,54,53,51,44,51,55,46,51,56,55,55,50,49,93,44,91,45,49,48,49,46,53,50,53,56,49,44,51,55,46,51,56,56,51,57,50,93,44,91,45,49,48,49,46,53,53,54,54,48,54,44,51,55,46,51,56,56,52,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,56,55,51,52,44,34,98,101,100,115,34,58,50,49,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,48,49,56,52,55,44,51,56,46,50,48,55,56,56,57,93,44,91,45,56,52,46,54,50,53,48,55,57,44,51,56,46,49,49,54,51,57,55,93,44,91,45,56,52,46,54,54,48,51,52,44,51,56,46,48,48,51,56,51,54,93,44,91,45,56,52,46,52,55,57,54,50,57,44,51,55,46,57,52,48,50,49,57,93,44,91,45,56,52,46,52,51,53,55,50,44,51,55,46,56,52,55,50,48,50,93,44,91,45,56,52,46,51,51,55,51,57,51,44,51,55,46,56,57,50,48,48,55,93,44,91,45,56,52,46,50,56,54,52,54,49,44,51,56,46,48,54,55,48,50,56,93,44,91,45,56,52,46,51,56,48,55,56,56,44,51,56,46,49,49,51,57,54,93,44,91,45,56,52,46,52,48,49,56,52,55,44,51,56,46,50,48,55,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,55,56,56,51,55,44,51,55,46,57,51,48,50,52,52,93,44,91,45,56,54,46,56,49,55,49,44,51,55,46,55,57,49,53,56,57,93,44,91,45,56,54,46,56,50,51,52,50,57,44,51,55,46,55,51,55,55,53,52,93,44,91,45,56,54,46,54,51,56,57,51,53,44,51,55,46,54,54,49,56,55,55,93,44,91,45,56,54,46,54,53,53,50,55,50,44,51,55,46,56,52,50,53,50,49,93,44,91,45,56,54,46,56,49,52,55,52,52,44,51,55,46,57,57,56,55,48,52,93,44,91,45,56,54,46,57,55,56,56,51,55,44,51,55,46,57,51,48,50,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,52,48,44,34,98,101,100,115,34,58,49,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,50,53,48,48,50,44,52,53,46,53,57,49,50,53,50,93,44,91,45,57,56,46,55,50,50,52,56,49,44,52,53,46,50,52,51,55,54,52,93,44,91,45,57,56,46,55,49,55,55,53,57,44,52,53,46,50,52,51,55,51,50,93,44,91,45,57,55,46,57,56,49,52,53,55,44,52,53,46,50,52,48,52,49,53,93,44,91,45,57,55,46,57,55,57,53,57,50,44,52,53,46,53,56,56,52,56,51,93,44,91,45,57,55,46,57,55,56,55,55,56,44,52,53,46,57,51,53,56,54,51,93,44,91,45,57,56,46,48,48,56,49,48,50,44,52,53,46,57,51,53,56,57,54,93,44,91,45,57,56,46,55,50,52,51,55,53,44,52,53,46,57,51,56,55,51,49,93,44,91,45,57,56,46,55,50,53,48,48,50,44,52,53,46,53,57,49,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,97,114,98,111,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,51,48,44,34,98,101,100,115,34,58,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,57,53,53,51,54,44,51,57,46,50,57,57,53,56,52,93,44,91,45,56,48,46,48,50,51,52,49,49,44,51,57,46,50,52,55,56,57,50,93,44,91,45,56,48,46,49,54,54,51,56,55,44,51,57,46,50,52,50,50,56,51,93,44,91,45,56,48,46,50,50,55,49,55,51,44,51,57,46,49,49,50,55,57,50,93,44,91,45,56,48,46,48,52,52,54,57,53,44,51,57,46,48,49,48,49,56,54,93,44,91,45,56,48,46,48,56,53,48,54,50,44,51,56,46,57,52,55,50,51,54,93,44,91,45,55,57,46,56,57,54,48,57,52,44,51,56,46,57,55,51,52,48,52,93,44,91,45,55,57,46,56,50,53,48,57,50,44,51,57,46,49,49,53,56,48,51,93,44,91,45,55,57,46,56,48,57,55,50,57,44,51,57,46,50,51,48,53,50,54,93,44,91,45,55,57,46,56,57,53,53,51,54,44,51,57,46,50,57,57,53,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,52,57,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,50,52,55,52,49,44,51,53,46,51,57,50,51,48,55,93,44,91,45,56,55,46,57,56,49,53,56,53,44,51,53,46,50,57,53,54,55,56,93,44,91,45,56,55,46,57,56,52,57,49,54,44,51,53,46,48,48,53,57,51,51,93,44,91,45,56,55,46,54,48,54,48,51,49,44,51,53,46,48,48,51,52,50,53,93,44,91,45,56,55,46,53,55,55,55,57,54,44,51,53,46,49,53,57,52,93,44,91,45,56,55,46,53,55,53,51,53,50,44,51,53,46,51,57,56,52,53,52,93,44,91,45,56,55,46,55,49,55,53,53,57,44,51,53,46,52,56,51,51,52,55,93,44,91,45,56,55,46,57,55,51,49,56,44,51,53,46,52,53,57,57,54,56,93,44,91,45,56,56,46,48,48,55,55,48,57,44,51,53,46,52,50,51,51,56,49,93,44,91,45,56,56,46,48,50,52,55,52,49,44,51,53,46,51,57,50,51,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,111,120,32,66,117,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,52,52,52,53,51,50,44,52,50,46,52,51,55,51,53,52,93,44,91,45,49,48,51,46,52,52,52,49,48,56,44,52,50,46,48,57,48,55,48,56,93,44,91,45,49,48,51,46,52,48,49,54,51,57,44,52,50,46,48,48,51,53,52,93,44,91,45,49,48,51,46,51,54,51,51,51,55,44,52,50,46,48,48,50,57,51,93,44,91,45,49,48,50,46,54,57,55,56,51,53,44,52,50,46,48,48,52,56,52,51,93,44,91,45,49,48,50,46,55,52,50,50,54,57,44,52,50,46,48,57,50,51,56,56,93,44,91,45,49,48,50,46,55,55,51,51,54,54,44,52,50,46,52,51,57,57,50,50,93,44,91,45,49,48,51,46,52,52,52,53,51,50,44,52,50,46,52,51,55,51,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,51,50,53,44,34,98,101,100,115,34,58,49,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,56,57,54,49,49,52,44,52,49,46,49,51,57,48,55,93,44,91,45,55,54,46,56,56,50,50,56,44,52,48,46,57,55,49,51,51,52,93,44,91,45,55,54,46,56,48,48,50,52,50,44,52,48,46,56,56,49,57,57,52,93,44,91,45,55,54,46,56,53,53,51,54,50,44,52,48,46,55,50,56,56,50,49,93,44,91,45,55,54,46,57,51,57,55,52,57,44,52,48,46,54,51,56,51,55,56,93,44,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,44,91,45,55,54,46,55,48,49,54,50,52,44,52,48,46,54,53,56,48,56,50,93,44,91,45,55,54,46,51,56,48,49,53,50,44,52,48,46,55,55,53,53,49,49,93,44,91,45,55,54,46,53,50,56,48,51,52,44,52,48,46,56,56,50,53,49,53,93,44,91,45,55,54,46,54,54,49,51,52,56,44,52,48,46,57,54,55,57,57,54,93,44,91,45,55,54,46,55,57,50,54,49,44,52,48,46,57,52,54,54,52,55,93,44,91,45,55,54,46,55,51,50,54,55,50,44,52,49,46,49,55,50,48,52,93,44,91,45,55,54,46,56,57,54,49,49,52,44,52,49,46,49,51,57,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,54,57,34,44,34,78,65,77,69,34,58,34,86,105,99,116,111,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,57,55,48,44,34,98,101,100,115,34,58,54,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,55,54,51,55,56,44,50,57,46,49,48,52,48,52,54,93,44,91,45,57,55,46,51,48,53,57,49,54,44,50,56,46,56,54,52,48,51,55,93,44,91,45,57,55,46,50,48,52,57,57,56,44,50,56,46,56,53,53,48,52,93,44,91,45,57,55,46,49,53,56,57,51,51,44,50,56,46,55,55,54,49,53,54,93,44,91,45,57,55,46,49,54,48,55,53,49,44,50,56,46,53,53,51,52,55,53,93,44,91,45,57,54,46,56,57,48,57,53,49,44,50,56,46,53,48,55,49,55,56,93,44,91,45,57,54,46,56,53,51,55,53,55,44,50,56,46,54,51,53,49,57,57,93,44,91,45,57,54,46,54,52,51,52,52,50,44,50,56,46,55,49,50,49,48,53,93,44,91,45,57,54,46,55,57,50,49,51,51,44,50,56,46,57,49,56,56,48,51,93,44,91,45,57,54,46,56,51,56,55,57,53,44,50,57,46,48,50,53,51,50,55,93,44,91,45,57,54,46,57,51,56,53,56,55,44,50,57,46,48,54,51,50,52,52,93,44,91,45,57,54,46,57,55,54,51,55,56,44,50,57,46,49,48,52,48,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,51,48,34,44,34,78,65,77,69,34,58,34,66,117,101,110,97,32,86,105,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,51,56,49,53,48,57,44,51,55,46,55,52,50,49,52,57,93,44,91,45,55,57,46,51,54,48,55,54,50,44,51,55,46,55,48,50,54,54,54,93,44,91,45,55,57,46,51,51,49,50,53,50,44,51,55,46,55,52,52,51,51,54,93,44,91,45,55,57,46,51,56,49,53,48,57,44,51,55,46,55,52,50,49,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,108,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,53,54,54,44,34,98,101,100,115,34,58,50,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,51,52,48,55,51,44,52,51,46,49,55,48,52,49,51,93,44,91,45,56,50,46,57,57,54,50,53,55,44,52,51,46,49,53,52,48,57,57,93,44,91,45,56,50,46,57,56,51,54,52,55,44,52,50,46,56,57,51,55,52,49,93,44,91,45,56,50,46,55,51,57,48,49,44,52,50,46,56,57,55,53,52,49,93,44,91,45,56,50,46,55,50,51,49,55,44,52,50,46,52,55,55,55,55,56,93,44,91,45,56,50,46,53,50,52,56,51,51,44,52,50,46,54,48,53,57,55,54,93,44,91,45,56,50,46,52,54,55,54,54,55,44,52,50,46,55,54,49,57,48,54,93,44,91,45,56,50,46,52,53,54,50,52,57,44,52,50,46,57,50,53,49,55,55,93,44,91,45,56,50,46,51,51,52,48,55,51,44,52,51,46,49,55,48,52,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,84,104,117,114,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,52,48,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,50,50,52,57,55,44,52,50,46,50,54,52,50,57,50,93,44,91,45,57,54,46,56,50,51,54,55,44,52,50,46,48,57,48,52,49,49,93,44,91,45,57,54,46,53,53,53,53,49,49,44,52,50,46,48,56,57,57,53,55,93,44,91,45,57,54,46,53,53,52,56,54,54,44,52,50,46,48,49,53,56,55,53,93,44,91,45,57,54,46,51,48,57,54,52,53,44,52,50,46,48,49,53,49,56,55,93,44,91,45,57,54,46,50,55,51,49,50,44,52,50,46,48,52,55,49,53,56,93,44,91,45,57,54,46,51,53,54,53,54,44,52,50,46,50,49,53,48,48,50,93,44,91,45,57,54,46,51,53,54,51,57,53,44,52,50,46,50,55,54,52,57,52,93,44,91,45,57,54,46,55,50,54,54,54,49,44,52,50,46,50,55,56,48,48,53,93,44,91,45,57,54,46,56,50,50,52,57,55,44,52,50,46,50,54,52,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,76,97,109,111,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,54,56,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,53,55,56,49,54,49,44,52,52,46,55,56,49,53,55,56,93,44,91,45,55,50,46,55,52,55,51,54,44,52,52,46,55,56,54,49,55,93,44,91,45,55,50,46,57,50,52,49,49,50,44,52,52,46,54,51,51,48,53,49,93,44,91,45,55,50,46,56,50,57,48,55,51,44,52,52,46,53,53,50,50,55,51,93,44,91,45,55,50,46,56,48,52,57,57,53,44,52,52,46,52,53,49,54,55,54,93,44,91,45,55,50,46,54,53,52,51,57,56,44,52,52,46,51,57,56,50,50,52,93,44,91,45,55,50,46,52,57,50,57,49,52,44,52,52,46,52,50,51,48,51,93,44,91,45,55,50,46,52,51,52,51,49,53,44,52,52,46,53,48,54,48,57,56,93,44,91,45,55,50,46,51,55,52,55,56,54,44,52,52,46,53,56,52,49,50,53,93,44,91,45,55,50,46,52,56,50,51,48,50,44,52,52,46,54,51,51,57,50,56,93,44,91,45,55,50,46,52,49,55,51,49,53,44,52,52,46,55,50,50,56,57,51,93,44,91,45,55,50,46,53,55,56,49,54,49,44,52,52,46,55,56,49,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,50,51,51,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,49,50,56,54,55,52,44,51,55,46,49,50,50,57,48,49,93,44,91,45,56,48,46,49,52,53,56,52,52,44,51,54,46,57,52,57,53,55,56,93,44,91,45,56,48,46,50,51,53,52,53,53,44,51,54,46,56,55,50,49,51,93,44,91,45,56,48,46,48,54,54,52,52,57,44,51,54,46,56,52,49,48,53,55,93,44,91,45,56,48,46,48,52,49,52,57,51,44,51,54,46,55,57,52,51,54,53,93,44,91,45,55,57,46,57,57,57,55,55,49,44,51,54,46,56,51,48,55,51,56,93,44,91,45,55,57,46,56,48,50,48,53,54,44,51,54,46,55,57,50,49,51,55,93,44,91,45,55,57,46,54,52,48,54,53,50,44,51,54,46,56,53,54,49,51,57,93,44,91,45,55,57,46,53,57,52,48,54,57,44,51,55,46,48,52,50,50,48,54,93,44,91,45,55,57,46,54,55,56,48,50,56,44,51,55,46,49,53,53,49,54,53,93,44,91,45,55,57,46,56,52,55,50,49,55,44,51,55,46,50,50,53,52,48,54,93,44,91,45,55,57,46,57,54,49,56,57,44,51,55,46,49,51,55,51,52,57,93,44,91,45,56,48,46,49,50,56,54,55,52,44,51,55,46,49,50,50,57,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,108,97,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,51,52,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,51,54,56,57,57,44,51,54,46,49,54,52,56,57,52,93,44,91,45,57,56,46,54,51,49,57,56,53,44,51,53,46,56,49,50,52,48,50,93,44,91,45,57,56,46,54,50,51,50,52,52,44,51,53,46,53,53,49,53,50,50,93,44,91,45,57,56,46,51,49,51,50,53,49,44,51,53,46,53,53,49,53,50,51,93,44,91,45,57,56,46,51,49,51,49,53,51,44,51,53,46,55,50,53,49,54,49,93,44,91,45,57,56,46,50,48,55,49,48,52,44,51,53,46,55,50,53,49,56,55,93,44,91,45,57,56,46,50,49,48,52,48,53,44,51,54,46,49,54,52,56,56,57,93,44,91,45,57,56,46,54,51,54,56,57,57,44,51,54,46,49,54,52,56,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,75,105,116,116,105,116,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,56,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,49,49,51,53,54,57,44,52,55,46,53,57,55,50,56,56,93,44,91,45,49,50,49,46,49,55,50,49,57,50,44,52,55,46,53,57,48,50,51,51,93,44,91,45,49,50,49,46,52,54,51,57,53,49,44,52,55,46,51,55,48,53,55,56,93,44,91,45,49,50,49,46,51,52,49,50,48,51,44,52,55,46,50,56,49,50,54,49,93,44,91,45,49,50,49,46,51,49,53,53,51,52,44,52,55,46,49,51,51,56,52,52,93,44,91,45,49,50,49,46,51,55,57,54,56,50,44,52,55,46,48,56,55,52,57,53,93,44,91,45,49,50,49,46,50,53,54,52,52,44,52,55,46,48,56,49,55,55,50,93,44,91,45,49,50,49,46,48,57,48,48,53,52,44,52,54,46,57,57,49,48,48,55,93,44,91,45,49,50,49,46,48,50,54,54,50,44,52,54,46,57,49,49,51,48,56,93,44,91,45,49,50,48,46,54,51,52,53,54,50,44,52,54,46,57,49,50,49,51,93,44,91,45,49,50,48,46,54,51,51,57,56,49,44,52,54,46,56,50,53,55,55,54,93,44,91,45,49,50,48,46,53,49,44,52,54,46,55,51,55,57,52,54,93,44,91,45,49,49,57,46,57,55,51,48,51,54,44,52,54,46,55,51,55,49,50,54,93,44,91,45,49,49,57,46,57,50,55,53,51,55,44,52,54,46,56,49,55,48,57,50,93,44,91,45,49,50,48,46,48,52,50,56,54,54,44,52,55,46,48,55,51,52,53,51,93,44,91,45,49,50,48,46,48,48,55,48,55,52,44,52,55,46,50,50,48,49,51,51,93,44,91,45,49,50,48,46,48,57,52,52,54,44,52,55,46,50,54,50,49,53,57,93,44,91,45,49,50,48,46,51,56,57,49,57,55,44,52,55,46,50,54,48,57,51,53,93,44,91,45,49,50,48,46,57,50,52,50,48,55,44,52,55,46,52,51,51,53,56,50,93,44,91,45,49,50,49,46,49,49,51,53,54,57,44,52,55,46,53,57,55,50,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,48,51,54,55,50,44,52,48,46,51,49,48,48,57,51,93,44,91,45,56,53,46,50,49,56,55,53,56,44,52,48,46,51,48,54,55,48,54,93,44,91,45,56,53,46,50,49,52,51,56,54,44,52,48,46,48,55,54,56,56,57,93,44,91,45,56,53,46,50,48,49,52,55,51,44,52,48,46,48,48,52,53,50,49,93,44,91,45,56,52,46,56,49,48,56,50,53,44,52,48,46,48,48,53,48,55,55,93,44,91,45,56,52,46,56,48,51,54,55,50,44,52,48,46,51,49,48,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,75,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,53,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,57,48,48,57,57,51,44,51,55,46,53,48,48,48,50,49,93,44,91,45,49,49,50,46,56,57,57,49,57,49,44,51,55,46,48,48,48,51,56,53,93,44,91,45,49,49,50,46,53,51,56,53,55,49,44,51,55,46,48,48,48,55,53,56,93,44,91,45,49,49,49,46,52,49,50,55,56,52,44,51,55,46,48,48,49,53,48,51,93,44,91,45,49,49,49,46,49,55,56,51,52,57,44,51,55,46,49,48,50,54,49,51,93,44,91,45,49,49,48,46,57,57,50,52,48,52,44,51,55,46,49,49,49,48,57,51,93,44,91,45,49,49,48,46,56,57,57,53,49,55,44,51,55,46,49,55,54,49,53,51,93,44,91,45,49,49,48,46,56,49,50,53,48,49,44,51,55,46,51,50,52,57,57,50,93,44,91,45,49,49,48,46,55,52,50,49,57,56,44,51,55,46,51,52,52,51,57,50,93,44,91,45,49,49,48,46,54,52,54,51,57,52,44,51,55,46,53,52,49,48,54,51,93,44,91,45,49,49,49,46,56,52,48,56,48,57,44,51,55,46,53,51,53,55,56,57,93,44,91,45,49,49,50,46,54,56,51,55,53,44,51,55,46,53,52,51,54,57,50,93,44,91,45,49,49,50,46,57,48,48,57,57,51,44,51,55,46,53,48,48,48,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,84,117,99,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,50,53,48,57,50,44,51,57,46,49,49,53,56,48,51,93,44,91,45,55,57,46,55,56,53,54,56,53,44,51,57,46,48,51,55,52,48,52,93,44,91,45,55,57,46,53,48,56,55,54,53,44,51,56,46,57,55,53,49,55,51,93,44,91,45,55,57,46,51,53,55,54,54,54,44,51,56,46,57,54,52,53,48,57,93,44,91,45,55,57,46,50,57,54,54,54,51,44,51,57,46,49,57,56,52,48,54,93,44,91,45,55,57,46,52,56,55,49,55,53,44,51,57,46,49,57,52,57,48,54,93,44,91,45,55,57,46,54,56,55,50,56,51,44,51,57,46,50,55,49,51,57,56,93,44,91,45,55,57,46,56,48,57,55,50,57,44,51,57,46,50,51,48,53,50,54,93,44,91,45,55,57,46,56,50,53,48,57,50,44,51,57,46,49,49,53,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,80,111,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,57,50,54,44,34,98,101,100,115,34,58,55,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,53,50,55,54,54,44,49,56,46,49,53,50,48,53,55,93,44,91,45,54,54,46,54,52,57,52,54,55,44,49,56,46,49,53,56,56,53,55,93,44,91,45,54,54,46,54,55,48,52,57,52,44,49,56,46,49,53,50,56,51,49,93,44,91,45,54,54,46,54,57,52,48,55,44,49,56,46,49,51,48,53,51,52,93,44,91,45,54,54,46,55,49,53,50,52,52,44,49,55,46,57,49,50,54,56,50,93,44,91,45,54,54,46,53,56,48,54,56,44,49,55,46,57,49,48,52,54,53,93,44,91,45,54,54,46,52,57,57,54,49,51,44,49,55,46,56,52,49,53,53,56,93,44,91,45,54,54,46,53,52,57,55,48,55,44,49,55,46,57,52,49,57,51,56,93,44,91,45,54,54,46,53,53,50,55,54,54,44,49,56,46,49,53,50,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,56,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,48,53,53,53,44,52,51,46,52,50,50,57,52,57,93,44,91,45,57,49,46,50,48,49,56,52,55,44,52,51,46,51,52,57,49,48,51,93,44,91,45,57,49,46,48,53,55,57,49,44,52,51,46,50,53,51,57,54,56,93,44,91,45,57,49,46,49,55,55,50,50,50,44,52,51,46,48,56,48,50,52,55,93,44,91,45,57,49,46,49,53,54,56,49,50,44,52,50,46,57,56,56,49,55,93,44,91,45,57,49,46,48,54,53,50,55,44,52,50,46,57,57,50,48,55,52,93,44,91,45,57,48,46,54,54,54,55,56,54,44,52,51,46,49,55,49,55,55,55,93,44,91,45,57,48,46,54,54,56,53,54,49,44,52,51,46,52,50,50,57,57,52,93,44,91,45,57,49,46,50,48,53,53,53,44,52,51,46,52,50,50,57,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,48,57,52,44,34,98,101,100,115,34,58,49,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,48,53,49,54,53,44,51,52,46,57,56,52,54,55,56,93,44,91,45,56,53,46,56,54,51,57,51,53,44,51,52,46,57,56,56,50,53,51,93,44,91,45,56,54,46,51,49,49,50,55,52,44,51,52,46,57,57,49,48,57,56,93,44,91,45,56,54,46,51,53,49,49,50,51,44,51,52,46,56,55,51,50,54,53,93,44,91,45,56,54,46,51,53,57,48,51,52,44,51,52,46,54,51,50,54,49,93,44,91,45,56,54,46,51,50,54,56,53,51,44,51,52,46,53,57,57,52,48,51,93,44,91,45,56,54,46,49,52,56,52,54,52,44,51,52,46,53,57,57,48,54,57,93,44,91,45,56,54,46,49,52,57,56,48,54,44,51,52,46,53,51,51,54,51,51,93,44,91,45,56,54,46,48,53,55,55,49,50,44,51,52,46,52,55,53,57,57,52,93,44,91,45,56,54,46,48,48,51,56,52,44,51,52,46,52,56,48,48,51,49,93,44,91,45,56,53,46,55,56,53,52,55,49,44,51,52,46,54,50,52,53,56,52,93,44,91,45,56,53,46,53,56,51,49,52,53,44,51,52,46,56,54,48,51,55,49,93,44,91,45,56,53,46,54,48,53,49,54,53,44,51,52,46,57,56,52,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,97,104,97,115,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,50,48,56,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,55,49,52,50,49,44,52,49,46,53,48,56,53,50,50,93,44,91,45,57,50,46,56,54,57,55,55,49,44,52,49,46,49,54,49,48,54,54,93,44,91,45,57,50,46,54,52,48,51,54,49,44,52,49,46,49,54,49,50,57,56,93,44,91,45,57,50,46,52,49,48,50,51,51,44,52,49,46,49,54,49,57,52,50,93,44,91,45,57,50,46,52,49,49,57,57,53,44,52,49,46,53,48,57,53,52,56,93,44,91,45,57,50,46,55,53,54,53,48,56,44,52,49,46,53,48,56,55,57,52,93,44,91,45,57,50,46,56,55,49,52,50,49,44,52,49,46,53,48,56,53,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,51,49,57,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,48,48,50,53,52,44,51,57,46,48,53,54,54,53,54,93,44,91,45,57,53,46,53,48,48,55,50,52,44,51,56,46,56,54,57,56,49,53,93,44,91,45,57,53,46,53,48,48,55,51,56,44,51,56,46,55,51,56,56,48,56,93,44,91,45,57,53,46,48,53,54,52,49,50,44,51,56,46,55,51,56,53,56,55,93,44,91,45,57,53,46,48,53,54,50,53,56,44,51,56,46,57,56,50,49,50,93,44,91,45,57,53,46,49,56,55,49,48,51,44,51,57,46,48,52,52,49,48,57,93,44,91,45,57,53,46,53,48,48,50,53,52,44,51,57,46,48,53,54,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,68,97,118,105,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,57,51,55,44,34,98,101,100,115,34,58,53,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,55,56,56,51,55,44,51,55,46,57,51,48,50,52,52,93,44,91,45,56,55,46,48,54,57,54,55,53,44,51,55,46,56,48,49,53,49,51,93,44,91,45,56,55,46,50,54,56,57,57,53,44,51,55,46,56,55,56,48,50,54,93,44,91,45,56,55,46,51,48,50,57,51,50,44,51,55,46,56,57,55,55,53,93,44,91,45,56,55,46,50,56,57,55,56,52,44,51,55,46,55,54,49,48,55,56,93,44,91,45,56,55,46,52,48,56,53,52,55,44,51,55,46,54,56,51,53,54,51,93,44,91,45,56,55,46,48,51,56,50,54,44,51,55,46,53,54,48,56,48,51,93,44,91,45,56,54,46,56,49,55,53,49,52,44,51,55,46,54,55,51,56,49,52,93,44,91,45,56,54,46,56,50,51,52,50,57,44,51,55,46,55,51,55,55,53,52,93,44,91,45,56,54,46,56,49,55,49,44,51,55,46,55,57,49,53,56,57,93,44,91,45,56,54,46,57,55,56,56,51,55,44,51,55,46,57,51,48,50,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,80,111,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,50,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,48,49,57,54,55,44,51,55,46,56,51,55,53,57,50,93,44,91,45,56,51,46,57,48,54,50,53,49,44,51,55,46,55,53,57,51,54,51,93,44,91,45,56,51,46,55,50,50,49,44,51,55,46,55,49,54,52,50,93,44,91,45,56,51,46,55,48,55,57,55,52,44,51,55,46,55,49,54,52,54,51,93,44,91,45,56,51,46,54,51,49,48,54,44,51,55,46,56,50,53,51,55,50,93,44,91,45,56,51,46,55,54,56,55,56,51,44,51,55,46,57,49,56,51,55,49,93,44,91,45,56,51,46,57,54,54,51,49,44,51,55,46,57,51,48,55,54,56,93,44,91,45,56,52,46,48,48,49,57,54,55,44,51,55,46,56,51,55,53,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,50,51,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,55,55,50,50,44,51,55,46,51,51,56,52,49,56,93,44,91,45,57,52,46,54,49,55,56,52,57,44,51,55,46,48,53,54,55,57,55,93,44,91,45,57,52,46,48,53,57,50,49,49,44,51,55,46,48,52,56,49,50,55,93,44,91,45,57,52,46,48,53,50,51,49,51,44,51,55,46,50,57,48,48,55,56,93,44,91,45,57,52,46,48,56,50,48,56,51,44,51,55,46,51,52,57,50,57,49,93,44,91,45,57,52,46,54,49,55,53,55,44,51,55,46,51,54,52,49,55,93,44,91,45,57,52,46,54,49,55,55,50,50,44,51,55,46,51,51,56,52,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,57,55,50,57,56,44,52,53,46,56,54,48,53,57,53,93,44,91,45,49,49,56,46,49,49,55,49,57,52,44,52,53,46,54,56,56,54,48,55,93,44,91,45,49,49,56,46,49,49,54,52,54,49,44,52,53,46,52,55,48,55,51,50,93,44,91,45,49,49,56,46,49,57,55,56,55,54,44,52,53,46,52,50,55,50,48,52,93,44,91,45,49,49,56,46,52,50,56,53,51,57,44,52,53,46,52,50,57,48,55,54,93,44,91,45,49,49,56,46,52,50,56,51,50,57,44,52,53,46,51,53,53,49,57,93,44,91,45,49,49,56,46,54,57,55,55,54,54,44,52,53,46,51,52,53,54,52,55,93,44,91,45,49,49,56,46,54,53,53,57,57,50,44,52,53,46,49,57,54,57,50,56,93,44,91,45,49,49,56,46,53,52,54,54,51,50,44,52,53,46,49,57,54,56,57,56,93,44,91,45,49,49,56,46,53,49,56,54,56,57,44,52,52,46,57,57,53,56,55,55,93,44,91,45,49,49,56,46,50,52,52,54,54,50,44,52,52,46,57,53,56,51,57,54,93,44,91,45,49,49,56,46,49,51,49,51,55,49,44,52,53,46,48,52,52,54,57,93,44,91,45,49,49,55,46,57,54,56,51,57,52,44,52,52,46,57,57,54,48,48,50,93,44,91,45,49,49,55,46,56,52,51,52,51,44,52,53,46,48,53,56,52,55,55,93,44,91,45,49,49,55,46,55,55,55,53,48,52,44,52,52,46,57,57,50,49,54,49,93,44,91,45,49,49,55,46,53,54,52,48,51,51,44,52,52,46,57,57,50,56,54,54,93,44,91,45,49,49,55,46,53,54,51,52,56,54,44,52,53,46,48,55,57,52,52,54,93,44,91,45,49,49,55,46,50,54,54,48,48,53,44,52,53,46,48,56,48,53,55,93,44,91,45,49,49,55,46,50,54,54,48,48,54,44,52,53,46,49,54,54,53,51,57,93,44,91,45,49,49,55,46,52,55,54,54,56,52,44,52,53,46,49,54,54,53,51,57,93,44,91,45,49,49,55,46,53,50,50,50,52,57,44,52,53,46,50,54,55,55,51,49,93,44,91,45,49,49,55,46,54,52,51,52,57,52,44,52,53,46,51,51,54,56,55,93,44,91,45,49,49,55,46,55,56,55,54,50,51,44,52,53,46,54,56,57,53,54,55,93,44,91,45,49,49,55,46,55,52,55,51,50,55,44,52,53,46,56,54,49,48,55,50,93,44,91,45,49,49,55,46,57,55,50,57,56,44,52,53,46,56,54,48,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,51,48,55,44,34,98,101,100,115,34,58,50,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,56,49,50,55,51,44,51,51,46,54,52,55,52,49,49,93,44,91,45,56,52,46,50,57,52,54,56,44,51,51,46,52,51,53,55,49,53,93,44,91,45,56,52,46,51,53,52,52,44,51,51,46,51,53,50,53,49,52,93,44,91,45,56,52,46,49,53,48,53,56,49,44,51,51,46,51,51,53,54,51,57,93,44,91,45,56,52,46,49,48,50,53,56,50,44,51,51,46,50,57,56,49,57,49,93,44,91,45,56,51,46,57,50,51,57,49,51,44,51,51,46,52,52,52,49,57,52,93,44,91,45,56,52,46,48,52,52,52,57,51,44,51,51,46,53,50,53,55,55,54,93,44,91,45,56,52,46,49,56,52,49,52,51,44,51,51,46,54,52,54,49,53,55,93,44,91,45,56,52,46,50,56,49,50,55,51,44,51,51,46,54,52,55,52,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,57,57,53,50,52,53,44,52,54,46,50,56,48,54,53,49,93,44,91,45,49,48,50,46,57,57,53,50,52,56,44,52,53,46,57,52,53,49,54,55,93,44,91,45,49,48,50,46,57,52,50,48,55,44,52,53,46,57,52,53,93,44,91,45,49,48,50,46,48,48,48,54,56,49,44,52,53,46,57,52,52,53,54,51,93,44,91,45,49,48,49,46,57,57,56,55,51,51,44,52,53,46,57,52,52,54,53,51,93,44,91,45,49,48,49,46,57,57,56,51,50,55,44,52,54,46,48,53,51,50,55,52,93,44,91,45,49,48,49,46,57,57,55,57,51,44,52,54,46,50,48,53,51,50,52,93,44,91,45,49,48,50,46,52,57,55,49,51,55,44,52,54,46,50,48,53,57,48,52,93,44,91,45,49,48,50,46,52,57,55,54,52,50,44,52,54,46,50,56,51,49,57,53,93,44,91,45,49,48,50,46,57,50,52,53,52,55,44,52,54,46,50,56,49,53,49,56,93,44,91,45,49,48,50,46,57,57,53,50,52,53,44,52,54,46,50,56,48,54,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,80,97,109,108,105,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,52,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,50,50,49,51,49,44,51,53,46,51,53,51,54,50,51,93,44,91,45,55,54,46,54,49,55,52,57,54,44,51,53,46,51,50,56,56,57,51,93,44,91,45,55,54,46,54,51,50,53,54,49,44,51,53,46,50,51,53,51,50,52,93,44,91,45,55,54,46,56,52,53,53,48,53,44,51,53,46,50,49,54,48,53,57,93,44,91,45,55,54,46,56,57,53,57,49,57,44,51,53,46,50,53,51,56,56,57,93,44,91,45,55,54,46,57,56,55,50,54,54,44,51,53,46,49,53,52,57,53,93,44,91,45,55,54,46,57,54,55,50,57,55,44,51,53,46,48,52,48,54,53,53,93,44,91,45,55,54,46,55,56,48,53,56,54,44,51,52,46,57,53,48,52,51,52,93,44,91,45,55,54,46,55,49,49,53,56,44,51,52,46,57,56,49,55,54,56,93,44,91,45,55,54,46,51,48,52,49,51,54,44,51,53,46,50,48,49,52,53,51,93,44,91,45,55,54,46,52,52,53,52,49,56,44,51,53,46,51,50,57,50,54,52,93,44,91,45,55,54,46,53,50,50,49,51,49,44,51,53,46,51,53,51,54,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,71,114,97,118,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,57,52,44,34,98,101,100,115,34,58,49,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,49,51,50,50,57,44,51,54,46,55,55,51,49,49,53,93,44,91,45,56,56,46,56,49,54,55,54,51,44,51,54,46,53,48,50,54,54,53,93,44,91,45,56,56,46,53,49,54,52,48,51,44,51,54,46,53,48,49,53,56,51,93,44,91,45,56,56,46,52,56,57,48,55,53,44,51,54,46,53,48,49,49,53,55,93,44,91,45,56,56,46,52,56,53,54,57,55,44,51,54,46,55,53,48,51,50,56,93,44,91,45,56,56,46,52,56,52,49,48,51,44,51,54,46,57,52,50,48,57,54,93,44,91,45,56,56,46,56,49,50,56,57,55,44,51,54,46,57,52,54,56,54,52,93,44,91,45,56,56,46,56,49,51,50,50,57,44,51,54,46,55,55,51,49,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,97,109,98,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,53,53,48,44,34,98,101,100,115,34,58,53,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,53,48,52,51,44,52,48,46,55,50,52,56,50,55,93,44,91,45,55,56,46,56,48,49,54,57,55,44,52,48,46,55,50,52,53,51,57,93,44,91,45,55,56,46,57,55,52,54,52,57,44,52,48,46,51,57,53,57,55,50,93,44,91,45,55,57,46,48,53,53,57,56,51,44,52,48,46,50,56,53,48,56,57,93,44,91,45,55,56,46,56,57,48,56,51,54,44,52,48,46,50,52,57,53,51,57,93,44,91,45,55,56,46,54,53,56,52,48,57,44,52,48,46,50,52,50,57,51,51,93,44,91,45,55,56,46,54,50,48,51,56,51,44,52,48,46,51,50,55,48,50,53,93,44,91,45,55,56,46,53,54,52,48,56,53,44,52,48,46,51,55,48,54,48,57,93,44,91,45,55,56,46,53,51,57,56,52,44,52,48,46,53,48,54,49,53,52,93,44,91,45,55,56,46,51,53,48,52,51,44,52,48,46,55,50,52,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,77,99,77,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,55,51,44,34,98,101,100,115,34,58,49,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,49,57,56,54,53,44,51,53,46,54,52,52,54,53,49,93,44,91,45,56,52,46,56,48,53,53,52,52,44,51,53,46,52,52,56,53,55,49,93,44,91,45,56,52,46,56,54,48,49,54,52,44,51,53,46,51,53,48,48,55,52,93,44,91,45,56,52,46,55,48,51,54,48,55,44,51,53,46,50,52,49,48,52,51,93,44,91,45,56,52,46,52,57,53,53,50,57,44,51,53,46,50,56,53,52,55,50,93,44,91,45,56,52,46,52,48,57,50,50,54,44,51,53,46,51,57,56,51,55,56,93,44,91,45,56,52,46,53,50,50,55,49,44,51,53,46,54,48,55,55,56,51,93,44,91,45,56,52,46,53,50,50,51,55,51,44,51,53,46,54,49,56,54,50,53,93,44,91,45,56,52,46,53,50,53,56,53,44,51,53,46,54,50,52,49,56,54,93,44,91,45,56,52,46,53,56,52,52,55,50,44,51,53,46,54,52,52,52,50,52,93,44,91,45,56,52,46,54,49,57,56,54,53,44,51,53,46,54,52,52,54,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,52,56,50,44,34,98,101,100,115,34,58,50,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,53,56,49,56,57,44,52,50,46,55,55,54,54,51,57,93,44,91,45,56,52,46,49,52,48,55,49,51,44,52,50,46,52,50,52,54,49,49,93,44,91,45,56,52,46,49,51,49,49,51,54,44,52,50,46,52,50,52,53,54,55,93,44,91,45,56,51,46,54,54,52,56,48,56,44,52,50,46,52,51,49,49,55,57,93,44,91,45,56,51,46,54,56,54,52,57,51,44,52,50,46,55,56,51,50,54,51,93,44,91,45,56,51,46,57,50,50,53,49,54,44,52,50,46,55,56,48,56,50,49,93,44,91,45,56,52,46,49,53,56,49,56,57,44,52,50,46,55,55,54,54,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,55,49,49,53,44,34,98,101,100,115,34,58,49,53,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,53,51,50,52,54,44,51,57,46,55,57,49,48,54,51,93,44,91,45,49,48,52,46,56,56,52,54,52,54,44,51,57,46,55,52,48,49,53,54,93,44,91,45,49,48,51,46,55,48,54,53,52,55,44,51,57,46,55,51,57,56,57,52,93,44,91,45,49,48,51,46,55,48,53,55,48,49,44,52,48,46,48,48,49,51,54,54,93,44,91,45,49,48,52,46,49,53,48,51,51,50,44,52,48,46,48,48,48,56,53,54,93,44,91,45,49,48,52,46,57,54,49,52,48,53,44,52,48,46,48,48,48,51,51,55,93,44,91,45,49,48,53,46,48,53,50,56,57,50,44,51,57,46,57,49,52,50,50,52,93,44,91,45,49,48,53,46,48,53,51,50,52,54,44,51,57,46,55,57,49,48,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,76,97,99,107,97,119,97,110,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,52,53,52,44,34,98,101,100,115,34,58,57,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,49,57,56,56,55,44,52,49,46,54,52,50,50,54,51,93,44,91,45,55,53,46,56,51,52,54,57,53,44,52,49,46,52,50,55,50,52,54,93,44,91,45,55,53,46,54,56,55,50,52,52,44,52,49,46,51,51,57,50,49,54,93,44,91,45,55,53,46,54,48,48,55,51,54,44,52,49,46,49,54,49,52,57,55,93,44,91,45,55,53,46,53,48,53,54,48,55,44,52,49,46,50,51,50,53,51,57,93,44,91,45,55,53,46,52,52,49,52,50,49,44,52,49,46,50,54,48,48,53,51,93,44,91,45,55,53,46,52,54,50,52,49,49,44,52,49,46,54,52,49,53,56,55,93,44,91,45,55,53,46,55,49,57,56,56,55,44,52,49,46,54,52,50,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,80,111,110,116,111,116,111,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,51,53,56,44,34,98,101,100,115,34,58,50,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,51,50,52,51,54,44,51,52,46,56,53,52,52,57,54,93,44,91,45,57,54,46,57,51,50,52,53,50,44,51,52,46,54,51,54,56,49,50,93,44,91,45,57,54,46,56,50,55,49,52,52,44,51,52,46,53,57,51,50,50,93,44,91,45,57,54,46,56,50,55,51,52,51,44,51,52,46,53,48,54,48,54,50,93,44,91,45,57,54,46,53,49,51,55,56,55,44,51,52,46,53,48,53,51,57,54,93,44,91,45,57,54,46,53,49,50,49,55,49,44,51,52,46,54,56,48,48,54,53,93,44,91,45,57,54,46,52,48,54,52,56,51,44,51,52,46,55,54,55,51,50,56,93,44,91,45,57,54,46,52,49,51,55,56,49,44,51,52,46,57,49,53,54,49,57,93,44,91,45,57,54,46,52,57,48,55,56,54,44,51,52,46,57,49,48,53,56,53,93,44,91,45,57,54,46,54,54,55,54,57,50,44,51,52,46,57,50,57,53,56,51,93,44,91,45,57,54,46,55,55,53,54,56,49,44,51,52,46,56,57,57,57,53,56,93,44,91,45,57,54,46,57,51,48,53,56,54,44,51,52,46,57,54,52,51,54,52,93,44,91,45,57,54,46,57,51,50,52,51,54,44,51,52,46,56,53,52,52,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,114,101,101,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,49,54,48,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,50,50,49,50,44,51,54,46,49,53,57,57,48,51,93,44,91,45,57,54,46,54,49,57,54,53,53,44,51,53,46,57,52,49,53,55,49,93,44,91,45,57,54,46,54,50,48,56,50,56,44,51,53,46,54,51,57,48,48,53,93,44,91,45,57,54,46,49,57,50,53,54,51,44,51,53,46,54,51,57,48,56,55,93,44,91,45,57,54,46,49,57,50,52,48,51,44,51,53,46,56,53,54,57,57,51,93,44,91,45,57,54,46,48,51,51,49,49,56,44,51,53,46,56,53,54,56,50,52,93,44,91,45,57,54,46,48,50,57,53,56,51,44,51,54,46,48,55,53,51,54,54,93,44,91,45,57,54,46,50,57,55,57,48,53,44,51,54,46,48,55,53,55,54,54,93,44,91,45,57,54,46,50,57,55,56,56,56,44,51,54,46,49,54,50,50,55,57,93,44,91,45,57,54,46,54,50,50,49,50,44,51,54,46,49,53,57,57,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,53,55,34,44,34,78,65,77,69,34,58,34,84,121,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,57,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,53,54,49,57,52,51,44,51,49,46,48,53,56,57,53,50,93,44,91,45,57,52,46,54,53,55,57,57,50,44,51,49,46,48,49,50,48,48,55,93,44,91,45,57,52,46,53,52,53,55,49,55,44,51,48,46,53,50,54,57,55,55,93,44,91,45,57,52,46,48,55,49,54,56,57,44,51,48,46,53,50,54,48,51,51,93,44,91,45,57,52,46,48,53,48,57,54,44,51,48,46,54,51,56,53,54,56,93,44,91,45,57,52,46,49,50,53,56,50,52,44,51,48,46,54,56,52,48,53,50,93,44,91,45,57,52,46,50,53,50,50,57,56,44,51,49,46,48,49,56,57,51,49,93,44,91,45,57,52,46,52,53,55,56,49,54,44,51,49,46,48,51,51,51,50,53,93,44,91,45,57,52,46,53,54,49,57,52,51,44,51,49,46,48,53,56,57,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,86,97,110,32,66,117,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,48,50,56,55,54,44,51,53,46,55,57,52,57,57,54,93,44,91,45,56,53,46,53,57,52,54,51,50,44,51,53,46,54,49,55,56,57,56,93,44,91,45,56,53,46,53,53,55,53,51,53,44,51,53,46,53,51,50,57,55,55,93,44,91,45,56,53,46,52,50,51,56,48,52,44,51,53,46,53,54,55,52,50,50,93,44,91,45,56,53,46,50,53,52,48,54,50,44,51,53,46,55,54,53,54,49,49,93,44,91,45,56,53,46,50,53,51,53,49,56,44,51,53,46,55,54,54,57,50,55,93,44,91,45,56,53,46,50,55,50,54,54,52,44,51,53,46,55,56,55,55,49,56,93,44,91,45,56,53,46,50,54,57,51,53,57,44,51,53,46,55,57,51,51,56,56,93,44,91,45,56,53,46,52,52,57,51,54,44,51,53,46,56,50,49,53,53,57,93,44,91,45,56,53,46,54,48,50,56,55,54,44,51,53,46,55,57,52,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,80,111,116,116,97,119,97,116,111,109,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,48,48,48,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,52,50,49,49,52,44,51,53,46,51,55,54,56,54,93,44,91,45,57,55,46,49,52,50,51,52,57,44,51,52,46,57,50,56,49,55,54,93,44,91,45,57,55,46,48,49,53,57,51,44,51,52,46,57,48,55,51,52,56,93,44,91,45,57,54,46,57,51,48,53,56,54,44,51,52,46,57,54,52,51,54,52,93,44,91,45,57,54,46,55,55,53,54,56,49,44,51,52,46,56,57,57,57,53,56,93,44,91,45,57,54,46,55,55,54,54,57,52,44,51,53,46,52,48,53,52,49,55,93,44,91,45,57,54,46,54,50,51,54,57,57,44,51,53,46,52,48,48,55,50,50,93,44,91,45,57,54,46,54,50,52,54,56,49,44,51,53,46,52,54,50,55,48,55,93,44,91,45,57,55,46,49,52,49,52,57,44,51,53,46,52,54,51,57,55,55,93,44,91,45,57,55,46,49,52,50,49,49,52,44,51,53,46,51,55,54,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,84,111,108,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,50,54,57,44,34,98,101,100,115,34,58,50,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,53,48,57,50,51,51,44,52,50,46,48,51,52,51,55,54,93,44,91,45,55,50,46,53,49,56,51,51,44,52,49,46,56,53,54,56,57,57,93,44,91,45,55,50,46,52,49,48,51,54,55,44,52,49,46,54,48,50,53,56,49,93,44,91,45,55,50,46,50,51,57,53,53,57,44,52,49,46,55,49,52,49,57,49,93,44,91,45,55,50,46,50,49,54,57,56,44,52,49,46,57,53,56,49,54,49,93,44,91,45,55,50,46,49,48,50,49,55,44,52,50,46,48,50,56,56,54,57,93,44,91,45,55,50,46,49,51,53,55,49,53,44,52,50,46,48,51,48,50,50,50,93,44,91,45,55,50,46,53,48,57,50,51,51,44,52,50,46,48,51,52,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,83,111,99,111,114,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,48,48,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,55,49,50,55,53,52,44,51,51,46,52,55,54,56,51,50,93,44,91,45,49,48,54,46,52,55,52,50,57,53,44,51,51,46,52,55,53,55,56,54,93,44,91,45,49,48,54,46,51,55,50,55,57,55,44,51,51,46,52,55,57,56,55,53,93,44,91,45,49,48,54,46,51,55,51,54,54,44,51,51,46,54,54,48,53,48,52,93,44,91,45,49,48,54,46,48,53,50,55,49,56,44,51,51,46,54,53,48,50,57,55,93,44,91,45,49,48,54,46,48,53,50,54,54,50,44,51,51,46,56,50,53,54,48,54,93,44,91,45,49,48,53,46,57,50,52,54,56,53,44,51,51,46,56,50,53,54,50,52,93,44,91,45,49,48,53,46,57,50,53,57,54,56,44,51,52,46,50,53,57,57,57,93,44,91,45,49,48,54,46,52,49,53,57,55,50,44,51,52,46,50,53,57,56,50,50,93,44,91,45,49,48,54,46,52,49,54,57,50,52,44,51,52,46,52,51,57,54,56,55,93,44,91,45,49,48,54,46,55,54,56,50,56,49,44,51,52,46,53,51,49,50,54,50,93,44,91,45,49,48,54,46,56,56,50,56,49,51,44,51,52,46,53,55,57,54,50,56,93,44,91,45,49,48,55,46,50,48,49,55,52,51,44,51,52,46,53,55,56,55,53,55,93,44,91,45,49,48,55,46,55,50,52,55,57,52,44,51,52,46,53,55,56,49,51,50,93,44,91,45,49,48,55,46,55,49,54,51,48,49,44,51,52,46,50,53,57,56,53,54,93,44,91,45,49,48,55,46,55,49,50,55,53,52,44,51,51,46,52,55,54,56,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,116,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,55,49,50,52,55,44,51,49,46,49,56,51,57,56,56,93,44,91,45,56,50,46,54,55,49,54,54,57,44,51,49,46,49,56,51,55,51,57,93,44,91,45,56,50,46,54,50,56,57,55,53,44,51,49,46,51,54,51,57,51,93,44,91,45,56,50,46,56,49,55,53,52,52,44,51,49,46,51,54,52,52,56,54,93,44,91,45,56,50,46,56,52,52,48,57,51,44,51,49,46,52,48,51,51,50,56,93,44,91,45,56,51,46,49,52,48,52,56,51,44,51,49,46,52,50,48,51,57,53,93,44,91,45,56,51,46,48,52,54,57,56,56,44,51,49,46,50,56,50,57,54,54,93,44,91,45,56,51,46,48,52,54,56,56,53,44,51,49,46,49,56,51,54,56,93,44,91,45,56,50,46,57,55,49,50,52,55,44,51,49,46,49,56,51,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,117,118,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,52,50,50,57,44,34,98,101,100,115,34,58,51,52,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,53,56,55,57,51,44,51,48,46,53,48,49,53,48,52,93,44,91,45,56,49,46,53,52,51,48,49,56,44,51,48,46,53,50,51,56,56,57,93,44,91,45,56,49,46,54,50,52,53,49,51,44,51,48,46,53,56,54,50,51,50,93,44,91,45,56,49,46,56,51,49,50,50,55,44,51,48,46,52,54,55,52,51,55,93,44,91,45,56,50,46,48,52,57,50,51,54,44,51,48,46,50,55,51,52,51,50,93,44,91,45,56,50,46,48,52,57,52,49,49,44,51,48,46,49,56,54,57,51,51,93,44,91,45,56,49,46,54,55,57,54,50,54,44,51,48,46,49,57,48,52,57,53,93,44,91,45,56,49,46,54,56,48,50,49,53,44,51,48,46,49,50,49,50,52,93,44,91,45,56,49,46,52,51,51,55,51,55,44,51,48,46,49,48,54,48,50,56,93,44,91,45,56,49,46,52,51,54,57,50,57,44,51,48,46,50,53,50,51,51,53,93,44,91,45,56,49,46,51,50,48,49,56,53,44,51,48,46,50,53,50,57,50,93,44,91,45,56,49,46,51,50,52,56,55,55,44,51,48,46,52,50,52,55,51,53,93,44,91,45,56,49,46,51,53,56,55,57,51,44,51,48,46,53,48,49,53,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,70,97,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,57,57,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,48,49,49,50,51,44,51,49,46,53,50,50,50,54,57,93,44,91,45,57,55,46,50,55,56,49,49,51,44,51,49,46,50,55,57,55,57,57,93,44,91,45,57,55,46,48,55,48,49,56,56,44,51,48,46,57,56,54,50,50,93,44,91,45,57,54,46,56,50,57,49,50,49,44,51,49,46,49,48,53,56,55,49,93,44,91,45,57,54,46,53,57,54,56,54,50,44,51,49,46,50,50,48,57,93,44,91,45,57,54,46,56,48,49,49,50,51,44,51,49,46,53,50,50,50,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,89,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,55,51,44,34,98,101,100,115,34,58,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,55,56,49,51,54,44,51,53,46,51,49,55,53,48,51,93,44,91,45,57,51,46,50,55,57,57,50,57,44,51,53,46,50,49,50,53,53,54,93,44,91,45,57,51,46,52,53,55,48,50,50,44,51,53,46,50,49,53,55,56,50,93,44,91,45,57,51,46,53,50,57,55,51,57,44,51,53,46,49,52,53,52,51,51,93,44,91,45,57,51,46,55,48,54,56,52,50,44,51,53,46,49,51,52,57,52,51,93,44,91,45,57,51,46,55,48,52,56,56,53,44,51,53,46,48,49,57,55,49,53,93,44,91,45,57,51,46,55,49,48,50,57,55,44,51,52,46,55,52,53,50,57,54,93,44,91,45,57,51,46,51,57,52,50,56,57,44,51,52,46,55,52,51,51,57,51,93,44,91,45,57,51,46,50,56,55,55,56,53,44,51,52,46,55,55,51,49,57,51,93,44,91,45,57,51,46,50,56,56,50,56,52,44,51,52,46,56,54,48,57,57,50,93,44,91,45,57,51,46,48,52,48,53,50,53,44,51,53,46,48,55,54,57,50,51,93,44,91,45,57,50,46,56,57,54,49,48,57,44,51,53,46,49,55,48,54,55,56,93,44,91,45,57,51,46,48,56,52,54,55,56,44,51,53,46,49,50,55,51,57,93,44,91,45,57,51,46,49,53,54,48,55,56,44,51,53,46,50,51,53,51,48,55,93,44,91,45,57,51,46,50,55,56,49,51,54,44,51,53,46,51,49,55,53,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,111,109,97,110,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,48,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,53,54,50,48,51,44,51,54,46,57,57,57,52,55,49,93,44,91,45,57,57,46,48,48,48,51,48,49,44,51,54,46,57,57,57,52,54,55,93,44,91,45,57,57,46,48,49,49,52,57,57,44,51,55,46,51,56,52,50,54,51,93,44,91,45,57,57,46,53,52,51,49,56,57,44,51,55,46,51,56,49,49,50,52,93,44,91,45,57,57,46,53,52,49,49,49,54,44,51,54,46,57,57,57,54,49,93,44,91,45,57,57,46,52,53,54,50,48,51,44,51,54,46,57,57,57,52,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,74,101,115,115,97,109,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,52,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,54,48,51,52,44,51,56,46,48,48,51,56,51,54,93,44,91,45,56,52,46,55,48,57,57,49,56,44,51,55,46,56,54,49,57,53,50,93,44,91,45,56,52,46,55,49,54,57,50,53,44,51,55,46,56,49,53,51,56,57,93,44,91,45,56,52,46,53,50,53,54,52,51,44,51,55,46,55,54,57,52,57,55,93,44,91,45,56,52,46,52,51,53,55,50,44,51,55,46,56,52,55,50,48,50,93,44,91,45,56,52,46,52,55,57,54,50,57,44,51,55,46,57,52,48,50,49,57,93,44,91,45,56,52,46,54,54,48,51,52,44,51,56,46,48,48,51,56,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,51,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,51,57,50,53,53,44,51,54,46,56,52,49,52,55,54,93,44,91,45,56,53,46,57,55,54,57,49,44,51,54,46,55,50,50,55,50,50,93,44,91,45,56,53,46,57,55,54,52,49,56,44,51,54,46,54,50,56,52,57,51,93,44,91,45,56,53,46,55,56,56,55,50,54,44,51,54,46,54,50,50,48,52,56,93,44,91,45,56,53,46,52,51,54,52,52,50,44,51,54,46,54,49,56,54,53,53,93,44,91,45,56,53,46,53,57,54,50,49,52,44,51,54,46,56,49,56,48,51,57,93,44,91,45,56,53,46,55,51,57,50,53,53,44,51,54,46,56,52,49,52,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,75,105,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,48,49,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,50,48,54,57,50,44,51,53,46,48,57,55,55,54,53,93,44,91,45,57,56,46,55,52,57,49,53,56,44,51,53,46,49,49,54,51,52,54,93,44,91,45,57,57,46,51,54,48,50,50,54,44,51,53,46,49,49,54,55,51,56,93,44,91,45,57,57,46,52,48,57,50,57,49,44,51,53,46,49,49,52,53,48,57,93,44,91,45,57,57,46,51,50,54,55,53,55,44,51,53,46,48,49,56,57,49,50,93,44,91,45,57,57,46,51,48,54,50,50,44,51,52,46,56,53,55,54,51,50,93,44,91,45,57,57,46,50,52,54,52,54,50,44,51,52,46,56,50,50,49,49,52,93,44,91,45,57,57,46,49,48,51,49,53,44,51,52,46,54,51,55,57,53,93,44,91,45,57,57,46,48,48,49,49,48,55,44,51,52,46,53,57,52,51,54,54,93,44,91,45,57,56,46,56,50,54,48,48,56,44,51,52,46,53,57,52,52,49,51,93,44,91,45,57,56,46,56,50,54,48,57,49,44,51,52,46,56,53,53,52,50,56,93,44,91,45,57,56,46,54,49,57,56,49,54,44,51,52,46,56,53,53,51,52,93,44,91,45,57,56,46,54,50,48,54,57,50,44,51,53,46,48,57,55,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,55,52,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,55,48,49,49,53,44,52,52,46,49,57,52,57,55,49,93,44,91,45,57,55,46,51,54,57,52,54,51,44,52,51,46,56,52,56,53,50,54,93,44,91,45,57,55,46,49,50,57,48,56,57,44,52,51,46,56,52,55,57,55,51,93,44,91,45,57,54,46,56,56,56,54,54,52,44,52,51,46,56,52,56,51,56,53,93,44,91,45,57,54,46,56,56,57,50,49,54,44,52,52,46,49,57,53,55,48,53,93,44,91,45,57,55,46,49,50,57,54,55,49,44,52,52,46,49,57,53,57,51,51,93,44,91,45,57,55,46,51,55,48,49,49,53,44,52,52,46,49,57,52,57,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,97,115,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,49,56,52,53,54,44,51,54,46,53,52,49,54,53,51,93,44,91,45,55,57,46,51,52,51,49,49,55,44,51,54,46,53,52,49,53,57,93,44,91,45,55,57,46,52,55,48,48,53,55,44,51,54,46,53,52,48,57,55,49,93,44,91,45,55,57,46,53,49,51,54,51,56,44,51,54,46,53,52,48,57,48,50,93,44,91,45,55,57,46,53,51,49,56,54,53,44,51,54,46,50,52,57,54,55,51,93,44,91,45,55,57,46,50,53,55,57,53,50,44,51,54,46,50,52,51,52,52,53,93,44,91,45,55,57,46,49,53,51,57,57,55,44,51,54,46,50,52,49,56,55,53,93,44,91,45,55,57,46,49,51,56,51,50,44,51,54,46,53,52,49,57,55,53,93,44,91,45,55,57,46,50,49,56,52,53,54,44,51,54,46,53,52,49,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,55,55,34,44,34,78,65,77,69,34,58,34,80,114,101,115,105,100,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,55,57,56,48,49,44,51,48,46,54,50,57,50,53,56,93,44,91,45,49,48,52,46,56,57,57,48,53,50,44,51,48,46,53,55,48,55,54,57,93,44,91,45,49,48,52,46,56,53,57,51,57,55,44,51,48,46,51,57,49,49,50,53,93,44,91,45,49,48,52,46,54,56,55,48,55,54,44,51,48,46,49,55,57,51,52,50,93,44,91,45,49,48,52,46,55,48,55,50,52,57,44,51,48,46,48,53,48,49,51,52,93,44,91,45,49,48,52,46,54,55,53,56,54,49,44,50,57,46,57,49,53,53,51,55,93,44,91,45,49,48,52,46,53,52,57,55,57,54,44,50,57,46,55,52,48,54,52,49,93,44,91,45,49,48,52,46,53,49,52,48,51,49,44,50,57,46,54,51,56,54,51,93,44,91,45,49,48,52,46,51,51,56,50,48,49,44,50,57,46,53,50,48,49,56,50,93,44,91,45,49,48,52,46,50,48,57,49,53,51,44,50,57,46,52,56,49,52,54,56,93,44,91,45,49,48,52,46,49,54,56,51,56,44,50,57,46,51,57,54,49,51,54,93,44,91,45,49,48,51,46,57,55,50,48,53,57,44,50,57,46,50,57,54,48,53,53,93,44,91,45,49,48,51,46,55,57,50,55,48,51,44,50,57,46,50,54,50,52,57,57,93,44,91,45,49,48,51,46,56,48,48,54,56,44,51,48,46,52,49,50,53,50,55,93,44,91,45,49,48,51,46,57,48,49,48,49,44,51,48,46,52,49,50,49,57,93,44,91,45,49,48,52,46,57,55,57,56,48,49,44,51,48,46,54,50,57,50,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,53,56,49,49,44,34,98,101,100,115,34,58,50,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,53,51,55,51,54,44,51,57,46,56,53,48,52,53,56,93,44,91,45,56,52,46,48,57,50,57,51,56,44,51,57,46,56,51,56,51,52,53,93,44,91,45,56,52,46,49,49,52,49,57,53,44,51,57,46,53,55,55,57,56,51,93,44,91,45,56,51,46,57,55,55,48,48,53,44,51,57,46,53,54,57,49,54,57,93,44,91,45,56,51,46,54,55,48,49,57,54,44,51,57,46,53,53,48,50,53,52,93,44,91,45,56,51,46,54,53,51,51,51,44,51,57,46,55,49,54,56,55,54,93,44,91,45,56,51,46,54,52,55,49,54,57,44,51,57,46,55,55,51,48,50,57,93,44,91,45,56,51,46,56,50,55,52,50,53,44,51,57,46,56,50,50,54,53,49,93,44,91,45,56,52,46,48,53,51,55,51,54,44,51,57,46,56,53,48,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,56,57,34,44,34,78,65,77,69,34,58,34,87,105,108,108,97,99,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,53,55,52,48,53,44,50,54,46,54,49,49,55,54,57,93,44,91,45,57,56,46,48,48,52,49,56,57,44,50,54,46,52,52,56,55,56,52,93,44,91,45,57,55,46,56,54,49,57,50,44,50,54,46,52,51,51,53,55,57,93,44,91,45,57,55,46,56,54,49,56,55,53,44,50,54,46,51,52,56,49,53,54,93,44,91,45,57,55,46,53,50,55,53,56,50,44,50,54,46,50,57,57,51,48,52,93,44,91,45,57,55,46,51,56,54,53,48,53,44,50,54,46,52,49,48,52,51,55,93,44,91,45,57,55,46,49,54,55,50,53,53,44,50,54,46,52,49,50,55,49,53,93,44,91,45,57,55,46,50,50,53,51,55,52,44,50,54,46,54,48,48,50,50,55,93,44,91,45,57,55,46,56,54,49,54,56,56,44,50,54,46,53,57,55,57,57,53,93,44,91,45,57,55,46,57,53,55,52,48,53,44,50,54,46,54,49,49,55,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,97,121,97,109,195,179,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,57,53,53,44,34,98,101,100,115,34,58,53,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,57,54,57,56,44,49,56,46,51,56,57,50,56,57,93,44,91,45,54,54,46,50,48,52,55,51,52,44,49,56,46,51,49,54,48,51,53,93,44,91,45,54,54,46,50,48,54,49,51,53,44,49,56,46,50,55,54,54,54,93,44,91,45,54,54,46,49,57,48,54,55,54,44,49,56,46,50,53,56,56,52,93,44,91,45,54,54,46,49,52,51,56,54,49,44,49,56,46,50,55,57,53,57,93,44,91,45,54,54,46,49,51,49,53,56,44,49,56,46,52,50,52,54,53,54,93,44,91,45,54,54,46,49,54,57,53,49,54,44,49,56,46,52,51,48,57,57,56,93,44,91,45,54,54,46,49,57,54,57,56,44,49,56,46,51,56,57,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,56,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,56,34,44,34,78,65,77,69,34,58,34,76,111,115,32,65,108,97,109,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,53,54,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,50,52,56,49,54,49,44,51,53,46,57,54,54,51,50,55,93,44,91,45,49,48,54,46,51,57,57,55,49,51,44,51,53,46,57,54,48,48,57,53,93,44,91,45,49,48,54,46,52,48,48,55,44,51,53,46,56,48,55,53,54,55,93,44,91,45,49,48,54,46,50,53,48,52,57,57,44,51,53,46,55,53,53,56,49,56,93,44,91,45,49,48,54,46,50,52,56,50,53,55,44,51,53,46,56,51,57,49,55,56,93,44,91,45,49,48,54,46,50,52,56,51,52,53,44,51,53,46,56,53,53,54,53,50,93,44,91,45,49,48,54,46,50,52,53,54,52,57,44,51,53,46,57,51,48,55,52,50,93,44,91,45,49,48,54,46,50,52,56,49,54,49,44,51,53,46,57,54,54,51,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,50,34,44,34,78,65,77,69,34,58,34,75,101,110,97,105,32,80,101,110,105,110,115,117,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,50,50,48,44,34,98,101,100,115,34,58,55,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,56,46,55,52,53,54,49,56,44,54,48,46,55,51,51,48,48,55,93,44,91,45,49,52,57,46,48,51,55,55,52,49,44,54,48,46,55,51,50,57,56,55,93,44,91,45,49,52,57,46,48,51,52,48,56,44,54,48,46,56,52,56,53,51,52,93,44,91,45,49,52,57,46,51,53,57,51,57,57,44,54,48,46,57,48,54,51,51,93,44,91,45,49,53,48,46,48,54,57,50,51,56,44,54,49,46,48,55,57,54,51,54,93,44,91,45,49,53,48,46,50,52,55,55,52,54,44,54,49,46,48,55,57,54,51,55,93,44,91,45,49,53,48,46,52,50,52,49,52,56,44,54,49,46,49,54,54,51,48,56,93,44,91,45,49,53,48,46,55,55,53,56,54,51,44,54,49,46,48,55,57,52,54,54,93,44,91,45,49,53,48,46,57,55,52,48,49,55,44,54,49,46,49,54,54,50,56,55,93,44,91,45,49,53,48,46,57,55,52,48,49,52,44,54,49,46,50,53,50,57,52,93,44,91,45,49,53,49,46,51,51,50,56,48,50,44,54,49,46,50,53,50,57,51,54,93,44,91,45,49,53,49,46,51,51,50,55,56,52,44,54,49,46,52,50,54,50,51,57,93,44,91,45,49,53,50,46,57,57,57,56,56,50,44,54,49,46,52,50,54,49,55,50,93,44,91,45,49,53,51,46,52,56,53,53,55,53,44,54,49,46,52,50,54,49,53,51,93,44,91,45,49,53,51,46,52,52,48,56,55,55,44,54,49,46,49,54,54,49,57,54,93,44,91,45,49,53,51,46,52,52,48,56,56,52,44,54,48,46,57,48,54,50,51,54,93,44,91,45,49,53,51,46,51,57,55,50,56,52,44,54,48,46,56,49,57,53,56,49,93,44,91,45,49,53,51,46,51,57,55,50,55,54,44,54,48,46,52,55,50,57,52,56,93,44,91,45,49,53,51,46,53,50,56,52,52,49,44,54,48,46,52,55,50,57,51,57,93,44,91,45,49,53,51,46,53,50,56,51,57,50,44,54,48,46,49,50,54,50,56,49,93,44,91,45,49,53,51,46,54,53,54,57,56,44,54,48,46,49,50,54,50,55,55,93,44,91,45,49,53,51,46,54,53,54,57,55,55,44,53,57,46,55,55,57,54,48,55,93,44,91,45,49,53,51,46,55,56,51,48,54,56,44,53,57,46,54,57,50,57,50,54,93,44,91,45,49,53,51,46,57,53,51,49,57,56,44,53,57,46,54,57,50,57,49,56,93,44,91,45,49,53,51,46,57,53,51,49,56,49,44,53,57,46,53,49,57,53,54,57,93,44,91,45,49,53,52,46,49,50,51,51,50,49,44,53,57,46,52,51,50,56,56,55,93,44,91,45,49,53,52,46,52,49,50,48,50,56,44,53,57,46,52,51,50,56,56,50,93,44,91,45,49,53,52,46,52,49,50,48,49,51,44,53,57,46,50,53,57,53,50,52,93,44,91,45,49,53,52,46,55,52,56,56,54,49,44,53,57,46,50,53,57,53,49,56,93,44,91,45,49,53,52,46,54,57,53,49,48,53,44,53,57,46,48,56,54,49,53,57,93,44,91,45,49,53,52,46,54,57,53,48,51,54,44,53,56,46,55,51,57,52,51,49,93,44,91,45,49,53,52,46,54,52,50,53,52,53,44,53,56,46,54,53,50,55,52,55,93,44,91,45,49,53,52,46,51,48,53,54,57,49,44,53,56,46,54,53,50,55,53,49,93,44,91,45,49,53,51,46,56,49,55,48,55,54,44,53,56,46,54,53,50,55,54,93,44,91,45,49,53,51,46,56,49,55,48,55,54,44,53,56,46,55,51,57,52,52,54,93,44,91,45,49,53,51,46,54,51,57,48,50,55,44,53,56,46,55,51,57,52,53,93,44,91,45,49,53,51,46,54,51,57,52,48,51,44,53,56,46,56,53,53,48,50,57,93,44,91,45,49,53,51,46,50,53,51,54,49,51,44,53,56,46,56,53,53,48,51,54,93,44,91,45,49,53,51,46,49,56,52,48,56,54,44,53,56,46,57,48,53,55,50,57,93,44,91,45,49,53,51,46,48,50,49,49,56,44,53,57,46,48,48,50,52,53,50,93,44,91,45,49,53,49,46,52,52,52,49,55,51,44,53,57,46,48,57,57,54,56,55,93,44,91,45,49,53,48,46,57,57,50,49,57,52,44,53,57,46,49,56,48,56,51,55,93,44,91,45,49,53,48,46,52,53,54,52,53,54,44,53,57,46,51,48,56,54,56,56,93,44,91,45,49,52,57,46,54,50,49,51,44,53,57,46,53,50,55,53,49,54,93,44,91,45,49,52,57,46,52,54,55,53,48,52,44,53,57,46,55,51,51,55,54,55,93,44,91,45,49,52,57,46,50,54,57,54,50,53,44,53,57,46,56,52,53,52,50,93,44,91,45,49,52,56,46,57,52,56,55,54,50,44,53,57,46,56,57,50,55,49,56,93,44,91,45,49,52,56,46,53,56,54,49,56,44,53,57,46,57,51,56,53,56,53,93,44,91,45,49,52,56,46,53,54,51,55,49,53,44,54,48,46,52,49,53,49,55,50,93,44,91,45,49,52,56,46,54,54,52,52,55,44,54,48,46,52,49,53,49,56,51,93,44,91,45,49,52,56,46,54,53,55,49,49,57,44,54,48,46,55,51,50,57,55,54,93,44,91,45,49,52,56,46,55,52,53,54,49,56,44,54,48,46,55,51,51,48,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,97,108,100,119,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,56,49,48,55,44,34,98,101,100,115,34,58,52,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,55,50,56,54,57,44,51,49,46,49,54,50,54,57,52,93,44,91,45,56,55,46,57,52,49,53,54,49,44,51,49,46,48,54,49,51,52,50,93,44,91,45,56,56,46,48,50,54,51,49,57,44,51,48,46,55,53,51,51,53,56,93,44,91,45,56,55,46,57,56,55,56,51,57,44,51,48,46,54,51,55,49,52,57,93,44,91,45,56,56,46,48,51,55,51,48,57,44,51,48,46,49,52,54,53,54,49,93,44,91,45,56,55,46,53,49,56,51,52,54,44,51,48,46,50,50,57,53,48,54,93,44,91,45,56,55,46,52,57,57,57,56,44,51,48,46,51,50,56,57,53,55,93,44,91,45,56,55,46,51,54,57,51,56,51,44,51,48,46,52,51,49,57,52,56,93,44,91,45,56,55,46,52,52,53,49,48,51,44,51,48,46,53,50,56,57,48,57,93,44,91,45,56,55,46,51,57,51,50,57,52,44,51,48,46,54,50,55,50,49,56,93,44,91,45,56,55,46,54,50,54,50,50,52,44,51,48,46,56,52,54,54,54,52,93,44,91,45,56,55,46,53,57,56,56,50,57,44,51,48,46,57,57,55,52,53,53,93,44,91,45,56,55,46,54,49,53,56,57,44,51,49,46,50,52,52,52,53,56,93,44,91,45,56,55,46,55,54,53,49,53,50,44,51,49,46,50,57,55,51,52,54,93,44,91,45,56,55,46,56,55,51,56,56,55,44,51,49,46,50,48,49,52,57,54,93,44,91,45,56,55,46,57,52,54,53,56,56,44,51,49,46,49,57,50,57,51,93,44,91,45,56,55,46,57,55,50,56,54,57,44,51,49,46,49,54,50,54,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,112,112,97,110,111,111,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,49,48,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,51,57,48,57,49,44,52,48,46,56,57,56,56,56,54,93,44,91,45,57,51,46,48,57,55,53,57,53,44,52,48,46,56,57,56,52,53,49,93,44,91,45,57,51,46,48,57,55,50,57,54,44,52,48,46,53,56,52,48,49,52,93,44,91,45,57,50,46,55,49,52,53,57,54,44,52,48,46,53,56,57,52,50,55,93,44,91,45,57,50,46,54,51,55,56,57,56,44,52,48,46,53,57,48,56,53,51,93,44,91,45,57,50,46,54,51,57,48,57,49,44,52,48,46,56,57,56,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,78,101,119,32,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,48,51,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,50,51,54,55,53,44,51,55,46,54,50,54,56,56,49,93,44,91,45,55,55,46,50,52,48,57,56,56,44,51,55,46,53,51,56,48,56,56,93,44,91,45,55,55,46,49,55,55,51,50,52,44,51,55,46,52,57,48,54,93,44,91,45,55,54,46,57,48,52,52,55,49,44,51,55,46,51,55,55,54,54,53,93,44,91,45,55,54,46,55,52,49,57,56,52,44,51,55,46,52,54,55,48,55,54,93,44,91,45,55,54,46,55,57,50,49,56,52,44,51,55,46,53,49,55,53,57,52,93,44,91,45,55,55,46,49,50,51,54,55,53,44,51,55,46,54,50,54,56,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,51,34,44,34,78,65,77,69,34,58,34,84,97,108,98,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,48,48,53,51,56,44,51,50,46,56,52,52,54,52,93,44,91,45,56,52,46,54,57,52,54,48,51,44,51,50,46,53,56,51,57,52,53,93,44,91,45,56,52,46,54,57,52,53,49,44,51,50,46,53,49,56,55,51,50,93,44,91,45,56,52,46,54,51,55,51,50,51,44,51,50,46,53,51,52,56,53,53,93,44,91,45,56,52,46,52,52,52,51,53,51,44,51,50,46,53,54,50,48,56,51,93,44,91,45,56,52,46,50,56,54,50,52,54,44,51,50,46,55,52,55,54,50,54,93,44,91,45,56,52,46,53,48,54,56,56,56,44,51,50,46,56,56,49,55,56,56,93,44,91,45,56,52,46,55,48,48,53,51,56,44,51,50,46,56,52,52,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,49,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,52,52,54,49,50,52,44,52,52,46,50,49,55,54,53,53,93,44,91,45,55,53,46,52,56,52,53,50,56,44,52,52,46,48,55,52,49,55,50,93,44,91,45,55,53,46,55,53,56,49,53,55,44,52,51,46,56,55,56,55,56,53,93,44,91,45,55,53,46,55,55,52,53,53,51,44,52,51,46,54,56,56,56,56,52,93,44,91,45,55,53,46,55,53,54,50,49,51,44,52,51,46,52,55,48,51,56,56,93,44,91,45,55,53,46,53,51,51,53,44,52,51,46,52,49,57,55,53,54,93,44,91,45,55,53,46,49,49,48,49,54,44,52,51,46,54,49,53,50,50,57,93,44,91,45,55,53,46,49,55,48,49,53,57,44,52,52,46,48,57,54,57,53,57,93,44,91,45,55,53,46,52,52,54,49,50,52,44,52,52,46,50,49,55,54,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,56,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,56,51,55,49,44,51,56,46,54,49,49,57,56,50,93,44,91,45,56,49,46,49,57,52,49,49,51,44,51,56,46,53,50,55,54,51,52,93,44,91,45,56,49,46,50,56,51,56,55,50,44,51,56,46,52,55,50,48,50,57,93,44,91,45,56,49,46,50,51,49,52,51,52,44,51,56,46,50,54,51,55,49,54,93,44,91,45,56,48,46,57,49,49,51,54,49,44,51,56,46,52,49,52,55,56,53,93,44,91,45,56,48,46,56,56,49,50,51,50,44,51,56,46,53,48,55,48,52,53,93,44,91,45,56,49,46,48,51,49,54,55,55,44,51,56,46,54,54,55,56,51,57,93,44,91,45,56,49,46,48,56,51,55,49,44,51,56,46,54,49,49,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,51,55,44,34,98,101,100,115,34,58,50,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,52,52,56,57,55,44,51,56,46,57,49,50,57,57,56,93,44,91,45,56,53,46,54,56,51,56,51,57,44,51,56,46,56,49,53,52,48,54,93,44,91,45,56,53,46,54,56,51,51,51,56,44,51,56,46,55,51,54,55,51,49,93,44,91,45,56,53,46,53,55,48,57,51,44,51,56,46,54,55,56,55,48,54,93,44,91,45,56,53,46,53,54,57,57,56,44,51,56,46,54,48,54,49,53,53,93,44,91,45,56,53,46,52,50,56,50,56,51,44,51,56,46,53,56,54,51,50,53,93,44,91,45,56,53,46,52,53,50,48,56,55,44,51,56,46,55,48,57,55,56,53,93,44,91,45,56,53,46,51,51,51,48,57,57,44,51,56,46,55,51,54,50,50,56,93,44,91,45,56,53,46,50,48,49,52,55,52,44,51,56,46,54,57,49,51,49,56,93,44,91,45,56,53,46,50,48,51,49,54,54,44,51,56,46,57,49,51,56,48,51,93,44,91,45,56,53,46,52,52,52,56,57,55,44,51,56,46,57,49,50,57,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,101,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,57,48,56,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,57,56,54,57,57,44,51,55,46,53,51,50,55,57,55,93,44,91,45,55,57,46,53,57,51,55,48,55,44,51,55,46,52,52,56,56,54,52,93,44,91,45,55,57,46,54,57,48,48,54,44,51,55,46,52,55,54,51,55,52,93,44,91,45,55,57,46,56,52,55,52,55,54,44,51,55,46,51,48,57,51,53,50,93,44,91,45,55,57,46,56,52,55,50,49,55,44,51,55,46,50,50,53,52,48,54,93,44,91,45,55,57,46,54,55,56,48,50,56,44,51,55,46,49,53,53,49,54,53,93,44,91,45,55,57,46,53,57,52,48,54,57,44,51,55,46,48,52,50,50,48,54,93,44,91,45,55,57,46,52,52,50,56,53,57,44,51,55,46,48,53,53,56,54,55,93,44,91,45,55,57,46,50,53,55,57,53,53,44,51,55,46,51,53,53,56,49,54,93,44,91,45,55,57,46,49,56,53,55,48,50,44,51,55,46,52,54,53,56,50,93,44,91,45,55,57,46,51,52,49,54,55,44,51,55,46,53,49,56,48,49,53,93,44,91,45,55,57,46,52,51,54,57,52,55,44,51,55,46,54,49,55,48,53,55,93,44,91,45,55,57,46,52,57,56,54,57,57,44,51,55,46,53,51,50,55,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,77,111,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,55,50,48,53,50,57,44,51,53,46,56,55,49,49,56,53,93,44,91,45,49,48,53,46,51,52,55,56,51,44,51,53,46,56,55,48,54,57,53,93,44,91,45,49,48,53,46,48,48,54,52,49,55,44,51,53,46,55,55,49,50,53,54,93,44,91,45,49,48,52,46,51,55,48,49,50,44,51,53,46,55,55,57,51,48,50,93,44,91,45,49,48,52,46,51,54,53,55,50,52,44,51,54,46,48,52,52,50,57,93,44,91,45,49,48,52,46,52,51,54,48,53,54,44,51,54,46,50,49,56,53,51,52,93,44,91,45,49,48,52,46,56,54,53,52,48,50,44,51,54,46,50,49,55,56,54,57,93,44,91,45,49,48,52,46,56,54,53,50,52,52,44,51,54,46,50,54,49,52,49,57,93,44,91,45,49,48,53,46,51,52,49,50,54,52,44,51,54,46,50,54,49,56,54,51,93,44,91,45,49,48,53,46,53,51,48,51,56,44,51,54,46,48,49,51,48,49,52,93,44,91,45,49,48,53,46,55,49,55,52,55,55,44,51,53,46,57,55,56,55,52,49,93,44,91,45,49,48,53,46,55,50,48,53,50,57,44,51,53,46,56,55,49,49,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,51,51,50,56,56,44,52,49,46,57,49,54,50,56,54,93,44,91,45,57,56,46,50,57,53,54,48,50,44,52,49,46,57,49,52,57,53,52,93,44,91,45,57,56,46,50,57,53,55,54,44,52,49,46,55,52,49,49,55,56,93,44,91,45,57,56,46,50,57,49,51,52,52,44,52,49,46,52,56,48,55,50,55,93,44,91,45,57,56,46,48,57,57,53,50,51,44,52,49,46,52,56,48,55,55,55,93,44,91,45,57,55,46,56,50,57,56,52,54,44,52,49,46,53,50,54,49,55,52,93,44,91,45,57,55,46,56,51,48,52,57,51,44,52,49,46,55,52,50,50,51,56,93,44,91,45,57,55,46,56,51,51,50,56,56,44,52,49,46,57,49,54,50,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,50,50,56,51,44,51,54,46,56,56,51,56,53,55,93,44,91,45,57,49,46,54,53,56,49,49,49,44,51,54,46,56,56,56,55,50,52,93,44,91,45,57,49,46,54,55,50,51,52,51,44,51,54,46,52,57,57,52,54,51,93,44,91,45,57,49,46,52,53,48,48,48,50,44,51,54,46,52,57,55,54,53,93,44,91,45,57,49,46,52,48,55,49,51,56,44,51,54,46,52,57,55,48,56,49,93,44,91,45,57,49,46,49,50,54,53,50,57,44,51,54,46,52,57,55,55,49,50,93,44,91,45,57,49,46,49,49,53,57,50,54,44,51,54,46,56,50,51,54,55,50,93,44,91,45,57,49,46,50,50,50,56,51,44,51,54,46,56,56,51,56,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,111,117,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,57,50,51,53,56,44,51,54,46,51,54,55,54,54,51,93,44,91,45,56,55,46,56,50,49,56,49,54,44,51,54,46,51,50,56,55,50,52,93,44,91,45,56,55,46,57,56,48,55,52,44,51,54,46,51,53,51,51,48,55,93,44,91,45,56,55,46,57,52,57,54,48,51,44,51,54,46,50,52,51,49,54,93,44,91,45,56,55,46,55,57,56,53,48,56,44,51,54,46,50,52,52,55,53,52,93,44,91,45,56,55,46,53,54,54,55,57,56,44,51,54,46,49,55,55,56,53,55,93,44,91,45,56,55,46,53,49,51,53,51,51,44,51,54,46,51,51,52,55,49,51,93,44,91,45,56,55,46,53,57,50,51,53,56,44,51,54,46,51,54,55,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,53,56,56,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,49,49,53,49,55,50,44,52,49,46,54,53,49,56,50,53,93,44,91,45,55,54,46,50,50,48,49,51,57,44,52,49,46,53,52,49,50,56,53,93,44,91,45,55,54,46,50,56,51,49,44,52,49,46,51,55,54,53,49,55,93,44,91,45,55,54,46,48,48,53,48,55,44,52,49,46,51,56,52,53,53,49,93,44,91,45,55,53,46,56,51,52,54,57,53,44,52,49,46,52,50,55,50,52,54,93,44,91,45,55,53,46,55,49,57,56,56,55,44,52,49,46,54,52,50,50,54,51,93,44,91,45,55,54,46,49,49,53,49,55,50,44,52,49,46,54,53,49,56,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,76,101,110,111,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,50,50,55,44,34,98,101,100,115,34,58,49,48,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,48,54,50,52,56,44,51,53,46,51,54,56,55,53,52,93,44,91,45,55,55,46,56,51,52,50,52,57,44,51,53,46,49,55,55,56,52,54,93,44,91,45,55,55,46,55,54,57,49,55,55,44,51,53,46,49,52,53,53,55,54,93,44,91,45,55,55,46,55,51,49,48,50,54,44,51,53,46,48,48,56,49,51,56,93,44,91,45,55,55,46,54,48,49,50,56,50,44,51,53,46,48,55,49,51,54,56,93,44,91,45,55,55,46,52,55,51,54,57,50,44,51,53,46,50,50,56,57,56,53,93,44,91,45,55,55,46,51,57,49,48,50,54,44,51,53,46,51,51,57,53,51,51,93,44,91,45,55,55,46,52,55,53,53,49,53,44,51,53,46,52,50,54,54,53,53,93,44,91,45,55,55,46,54,51,57,49,48,49,44,51,53,46,51,53,52,48,56,54,93,44,91,45,55,55,46,56,48,54,50,52,56,44,51,53,46,51,54,56,55,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,86,105,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,54,57,51,44,34,98,101,100,115,34,58,52,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,51,50,49,57,52,44,51,57,46,54,48,55,51,48,54,93,44,91,45,56,55,46,53,51,49,54,52,44,51,57,46,52,55,55,49,48,53,93,44,91,45,56,55,46,53,51,49,54,52,54,44,51,57,46,51,52,55,56,56,56,93,44,91,45,56,55,46,54,48,52,49,52,49,44,51,57,46,50,53,57,52,53,56,93,44,91,45,56,55,46,50,52,48,51,55,57,44,51,57,46,50,53,57,48,54,52,93,44,91,45,56,55,46,50,51,56,57,54,52,44,51,57,46,53,50,48,54,50,93,44,91,45,56,55,46,49,57,57,48,49,50,44,51,57,46,54,48,55,49,51,55,93,44,91,45,56,55,46,51,56,50,52,49,56,44,51,57,46,54,48,55,57,51,55,93,44,91,45,56,55,46,53,51,50,49,57,52,44,51,57,46,54,48,55,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,69,108,107,104,97,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,54,48,52,44,34,98,101,100,115,34,58,51,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,54,50,53,55,53,44,52,49,46,55,54,48,53,49,51,93,44,91,45,56,54,46,48,53,57,52,53,49,44,52,49,46,52,55,57,49,53,52,93,44,91,45,56,54,46,48,53,57,50,51,44,52,49,46,52,51,53,56,49,50,93,44,91,45,56,53,46,54,53,51,53,48,55,44,52,49,46,52,51,54,56,53,54,93,44,91,45,56,53,46,54,53,52,55,52,55,44,52,49,46,53,50,51,51,52,55,93,44,91,45,56,53,46,54,53,57,55,53,44,52,49,46,55,53,57,48,54,56,93,44,91,45,56,53,46,55,57,49,51,51,53,44,52,49,46,55,53,57,48,55,56,93,44,91,45,56,54,46,48,54,50,53,55,53,44,52,49,46,55,54,48,53,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,114,97,121,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,53,51,50,53,57,44,51,54,46,53,55,52,54,57,50,93,44,91,45,56,48,46,57,48,49,54,52,49,44,51,54,46,53,54,49,55,54,54,93,44,91,45,56,48,46,56,51,55,57,53,52,44,51,54,46,53,53,57,49,52,51,93,44,91,45,56,48,46,57,49,52,49,55,51,44,51,54,46,54,53,48,50,52,54,93,44,91,45,56,48,46,57,51,50,50,55,49,44,51,54,46,54,55,49,53,57,51,93,44,91,45,56,49,46,48,52,50,52,50,56,44,51,54,46,56,48,54,52,52,56,93,44,91,45,56,49,46,48,56,56,53,49,44,51,54,46,55,54,55,52,50,50,93,44,91,45,56,49,46,50,54,49,57,56,55,44,51,54,46,55,54,51,48,51,51,93,44,91,45,56,49,46,53,50,52,56,48,56,44,51,54,46,55,48,55,53,52,93,44,91,45,56,49,46,54,48,53,56,54,53,44,51,54,46,54,51,56,48,55,57,93,44,91,45,56,49,46,54,52,54,57,44,51,54,46,54,49,49,57,49,56,93,44,91,45,56,49,46,54,55,55,52,57,44,51,54,46,53,56,56,49,51,55,93,44,91,45,56,49,46,51,53,51,50,53,57,44,51,54,46,53,55,52,54,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,51,34,44,34,78,65,77,69,34,58,34,76,117,98,98,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,49,52,53,52,44,34,98,101,100,115,34,58,50,49,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,54,51,53,56,44,51,51,46,56,51,48,52,53,49,93,44,91,45,49,48,50,46,48,56,53,55,51,51,44,51,51,46,56,50,52,54,55,53,93,44,91,45,49,48,50,46,48,55,53,57,50,57,44,51,51,46,51,56,57,53,56,54,93,44,91,45,49,48,49,46,53,53,54,56,56,52,44,51,51,46,51,57,52,55,54,93,44,91,45,49,48,49,46,53,54,51,53,56,44,51,51,46,56,51,48,52,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,101,101,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,55,57,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,54,51,48,56,44,52,53,46,51,50,54,49,93,44,91,45,57,52,46,55,53,56,49,56,57,44,52,52,46,56,57,50,48,57,55,93,44,91,45,57,52,46,53,48,50,51,57,53,44,52,52,46,56,57,50,50,57,53,93,44,91,45,57,52,46,53,48,49,56,56,53,44,52,52,46,57,55,57,54,57,53,93,44,91,45,57,52,46,50,53,54,48,55,52,44,52,52,46,57,55,57,52,54,53,93,44,91,45,57,52,46,50,54,48,56,50,49,44,52,53,46,50,56,51,57,52,49,93,44,91,45,57,52,46,51,56,51,53,53,54,44,52,53,46,51,50,54,55,48,53,93,44,91,45,57,52,46,55,54,51,48,56,44,52,53,46,51,50,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,115,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,52,55,55,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,50,56,53,50,44,52,48,46,57,57,50,57,52,52,93,44,91,45,56,50,46,52,49,54,56,52,55,44,52,48,46,56,49,52,53,54,55,93,44,91,45,56,50,46,51,51,57,50,49,49,44,52,48,46,55,50,54,54,56,51,93,44,91,45,56,50,46,51,51,54,57,54,50,44,52,48,46,53,53,53,48,48,49,93,44,91,45,56,50,46,50,50,48,49,49,44,52,48,46,53,54,56,50,48,54,93,44,91,45,56,50,46,49,50,54,49,57,57,44,52,48,46,54,54,56,50,50,57,93,44,91,45,56,50,46,49,50,57,51,51,52,44,52,48,46,57,57,49,56,48,55,93,44,91,45,56,50,46,49,55,49,52,57,50,44,52,49,46,48,54,51,53,51,55,93,44,91,45,56,50,46,51,51,54,52,57,54,44,52,49,46,48,54,53,55,54,49,93,44,91,45,56,50,46,52,51,50,56,53,50,44,52,48,46,57,57,50,57,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,49,54,52,44,34,98,101,100,115,34,58,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,51,52,53,51,54,44,52,50,46,48,56,57,55,53,93,44,91,45,57,55,46,56,51,51,50,56,56,44,52,49,46,57,49,54,50,56,54,93,44,91,45,57,55,46,56,51,48,52,57,51,44,52,49,46,55,52,50,50,51,56,93,44,91,45,57,55,46,51,54,56,48,55,44,52,49,46,55,52,51,50,48,55,93,44,91,45,57,55,46,51,54,56,52,48,52,44,52,50,46,48,57,48,57,50,50,93,44,91,45,57,55,46,56,51,52,53,51,54,44,52,50,46,48,56,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,53,56,49,44,34,98,101,100,115,34,58,51,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,49,51,56,48,52,57,44,50,55,46,50,54,50,56,55,57,93,44,91,45,56,48,46,50,56,53,53,49,44,50,55,46,50,48,54,48,50,53,93,44,91,45,56,48,46,54,55,55,56,54,50,44,50,55,46,50,48,53,57,56,56,93,44,91,45,56,48,46,54,55,55,52,50,55,44,50,55,46,49,50,49,54,49,57,93,44,91,45,56,48,46,56,56,53,54,51,57,44,50,54,46,57,53,56,57,49,57,93,44,91,45,56,48,46,49,52,50,48,48,55,44,50,54,46,57,53,54,54,52,93,44,91,45,56,48,46,48,50,50,55,53,52,44,50,54,46,57,55,48,51,57,50,93,44,91,45,56,48,46,49,51,56,48,52,57,44,50,55,46,50,54,50,56,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,77,105,110,101,114,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,48,48,48,54,48,50,44,51,55,46,57,53,54,48,52,49,93,44,91,45,49,48,55,46,49,51,56,49,57,49,44,51,55,46,57,51,56,56,52,56,93,44,91,45,49,48,55,46,49,52,53,49,51,56,44,51,55,46,54,55,53,52,57,55,93,44,91,45,49,48,55,46,49,50,56,54,56,44,51,55,46,52,50,50,57,52,50,93,44,91,45,49,48,55,46,49,50,56,55,51,55,44,51,55,46,51,57,50,52,48,57,93,44,91,45,49,48,54,46,55,49,48,55,55,53,44,51,55,46,52,48,52,50,50,56,93,44,91,45,49,48,54,46,54,57,51,56,52,53,44,51,55,46,56,51,53,50,52,52,93,44,91,45,49,48,54,46,56,57,55,56,51,52,44,51,55,46,57,54,55,56,57,49,93,44,91,45,49,48,55,46,48,48,48,54,48,50,44,51,55,46,57,53,54,48,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,68,97,119,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,53,53,53,51,44,51,52,46,53,54,50,55,51,53,93,44,91,45,56,52,46,50,53,55,53,56,54,44,51,52,46,51,56,48,57,57,50,93,44,91,45,56,52,46,50,53,56,48,55,53,44,51,52,46,51,51,53,49,53,54,93,44,91,45,56,51,46,57,53,55,48,55,55,44,51,52,46,51,51,52,48,49,49,93,44,91,45,56,51,46,57,56,48,54,52,57,44,51,52,46,52,49,56,51,56,57,93,44,91,45,56,52,46,49,57,49,48,52,44,51,52,46,53,51,57,49,56,49,93,44,91,45,56,52,46,49,56,56,53,53,55,44,51,52,46,54,48,50,54,57,50,93,44,91,45,56,52,46,49,57,54,55,53,52,44,51,52,46,54,49,55,57,50,52,93,44,91,45,56,52,46,51,52,53,53,53,51,44,51,52,46,53,54,50,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,53,50,49,48,53,50,44,51,50,46,56,50,50,51,53,54,93,44,91,45,56,50,46,55,54,56,51,54,53,44,51,50,46,55,54,57,49,48,56,93,44,91,45,56,50,46,57,52,54,57,54,54,44,51,50,46,55,53,57,51,53,56,93,44,91,45,56,50,46,57,53,55,48,54,54,44,51,50,46,55,48,56,51,49,56,93,44,91,45,56,50,46,56,54,50,55,54,51,44,51,50,46,55,49,53,55,54,93,44,91,45,56,50,46,54,54,56,53,53,55,44,51,50,46,54,49,50,49,54,52,93,44,91,45,56,50,46,54,52,55,55,51,51,44,51,50,46,53,49,50,53,48,55,93,44,91,45,56,50,46,52,54,57,56,50,51,44,51,50,46,54,53,48,56,56,50,93,44,91,45,56,50,46,52,51,52,49,52,57,44,51,50,46,55,54,50,50,53,56,93,44,91,45,56,50,46,53,50,49,48,53,50,44,51,50,46,56,50,50,51,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,54,56,53,54,44,51,52,46,57,49,50,55,51,53,93,44,91,45,57,49,46,51,55,55,56,50,44,51,52,46,53,54,51,52,56,93,44,91,45,57,49,46,50,54,51,54,48,54,44,51,52,46,53,48,49,56,54,55,93,44,91,45,57,49,46,48,53,54,50,55,54,44,51,52,46,51,51,54,54,48,53,93,44,91,45,57,49,46,48,53,49,57,49,56,44,51,52,46,54,52,53,55,50,49,93,44,91,45,57,49,46,49,48,50,53,52,50,44,51,52,46,55,51,52,56,54,52,93,44,91,45,57,49,46,48,57,57,57,54,49,44,51,52,46,56,54,55,49,50,93,44,91,45,57,49,46,49,52,57,56,52,50,44,51,53,46,48,48,50,52,55,93,44,91,45,57,49,46,50,57,51,49,49,49,44,51,52,46,57,56,53,48,57,49,93,44,91,45,57,49,46,51,54,56,53,54,44,51,52,46,57,49,50,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,55,50,52,52,55,44,51,55,46,57,48,50,54,50,55,93,44,91,45,57,51,46,49,56,50,55,48,54,44,51,55,46,57,48,52,49,52,52,93,44,91,45,57,51,46,49,56,55,57,49,53,44,51,55,46,56,48,50,55,51,55,93,44,91,45,57,51,46,49,56,50,52,56,57,44,51,55,46,52,49,55,50,48,52,93,44,91,45,57,51,46,48,55,51,51,56,44,51,55,46,52,49,52,57,56,57,93,44,91,45,57,51,46,48,55,49,53,56,52,44,51,55,46,52,56,55,52,52,52,93,44,91,45,57,50,46,56,53,51,52,56,49,44,51,55,46,52,56,51,57,55,93,44,91,45,57,50,46,56,53,53,51,56,52,44,51,55,46,56,57,53,55,51,54,93,44,91,45,57,51,46,48,55,50,52,52,55,44,51,55,46,57,48,50,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,80,105,116,116,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,54,55,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,55,48,48,53,55,44,51,54,46,53,52,48,57,55,49,93,44,91,45,55,57,46,51,57,56,48,57,52,44,51,54,46,54,52,52,48,51,55,93,44,91,45,55,57,46,51,52,51,49,49,55,44,51,54,46,53,52,49,53,57,93,44,91,45,55,57,46,50,49,56,52,53,54,44,51,54,46,53,52,49,54,53,51,93,44,91,45,55,57,46,48,57,50,50,54,52,44,51,55,46,48,54,49,52,57,56,93,44,91,45,55,57,46,51,51,50,49,54,49,44,51,55,46,49,50,53,53,54,56,93,44,91,45,55,57,46,52,52,50,56,53,57,44,51,55,46,48,53,53,56,54,55,93,44,91,45,55,57,46,53,57,52,48,54,57,44,51,55,46,48,52,50,50,48,54,93,44,91,45,55,57,46,54,52,48,54,53,50,44,51,54,46,56,53,54,49,51,57,93,44,91,45,55,57,46,55,49,52,56,52,57,44,51,54,46,53,52,49,57,54,53,93,44,91,45,55,57,46,53,49,51,54,51,56,44,51,54,46,53,52,48,57,48,50,93,44,91,45,55,57,46,52,55,48,48,53,55,44,51,54,46,53,52,48,57,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,54,56,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,56,34,44,34,78,65,77,69,34,58,34,68,101,110,97,108,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,50,46,57,57,55,54,52,55,44,54,50,46,55,50,55,52,48,49,93,44,91,45,49,53,49,46,56,57,51,55,56,52,44,54,50,46,55,50,53,56,54,52,93,44,91,45,49,53,49,46,56,57,52,48,49,53,44,54,50,46,55,57,56,48,53,56,93,44,91,45,49,53,48,46,55,50,48,57,49,54,44,54,51,46,48,54,51,49,56,52,93,44,91,45,49,52,57,46,53,50,54,49,52,56,44,54,51,46,51,51,51,50,49,55,93,44,91,45,49,52,56,46,48,50,53,54,49,56,44,54,51,46,51,51,51,50,51,51,93,44,91,45,49,52,56,46,48,50,53,54,50,55,44,54,51,46,52,55,55,54,48,57,93,44,91,45,49,52,54,46,57,57,57,57,54,54,44,54,51,46,52,55,57,54,52,53,93,44,91,45,49,52,54,46,57,57,57,57,48,57,44,54,52,46,50,53,55,49,57,54,93,44,91,45,49,52,55,46,55,53,57,50,44,54,52,46,50,53,55,50,93,44,91,45,49,52,56,46,48,52,54,54,57,54,44,54,52,46,51,52,51,56,48,50,93,44,91,45,49,52,57,46,49,51,50,54,53,51,44,54,52,46,51,53,56,50,49,52,93,44,91,45,49,53,48,46,55,50,57,51,56,53,44,54,52,46,51,53,56,49,55,51,93,44,91,45,49,53,49,46,50,56,49,57,57,53,44,54,51,46,57,57,55,50,54,53,93,44,91,45,49,53,49,46,55,57,51,57,55,54,44,54,52,46,48,54,57,52,51,93,44,91,45,49,53,50,46,48,53,53,55,53,56,44,54,51,46,57,57,55,50,52,50,93,44,91,45,49,53,50,46,48,53,53,49,51,50,44,54,51,46,56,50,52,48,48,54,93,44,91,45,49,53,50,46,50,50,57,50,53,54,44,54,51,46,56,50,52,48,48,49,93,44,91,45,49,53,50,46,50,50,56,52,51,57,44,54,51,46,54,53,48,55,54,93,44,91,45,49,53,50,46,56,55,51,52,49,44,54,51,46,54,53,48,55,52,53,93,44,91,45,49,53,50,46,56,55,51,51,57,50,44,54,51,46,52,55,55,53,93,44,91,45,49,53,50,46,56,49,48,57,51,49,44,54,51,46,51,52,55,53,54,51,93,44,91,45,49,53,50,46,52,50,56,48,57,56,44,54,51,46,51,48,52,50,53,57,93,44,91,45,49,53,50,46,52,50,56,48,56,52,44,54,51,46,49,56,51,49,55,49,93,44,91,45,49,53,50,46,57,57,55,54,52,55,44,54,50,46,55,50,55,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,80,97,119,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,48,57,44,34,98,101,100,115,34,58,54,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,56,52,50,48,55,44,51,56,46,50,54,50,49,55,57,93,44,91,45,57,57,46,53,54,57,53,51,51,44,51,56,46,48,56,55,51,55,50,93,44,91,45,57,57,46,51,53,48,51,53,57,44,51,56,46,48,56,55,53,57,52,93,44,91,45,57,57,46,51,53,48,50,56,57,44,51,56,46,48,48,48,55,52,53,93,44,91,45,57,57,46,48,50,50,49,51,54,44,51,56,46,48,48,48,50,51,54,93,44,91,45,57,56,46,57,49,51,49,51,54,44,51,56,46,48,48,48,52,53,49,93,44,91,45,57,56,46,57,49,50,53,56,51,44,51,56,46,50,54,49,48,56,56,93,44,91,45,57,57,46,48,51,50,51,48,57,44,51,56,46,50,54,49,50,50,55,93,44,91,45,57,57,46,48,51,50,52,48,56,44,51,56,46,51,52,56,51,51,52,93,44,91,45,57,57,46,53,56,52,55,57,52,44,51,56,46,51,52,57,51,56,54,93,44,91,45,57,57,46,53,56,52,50,48,55,44,51,56,46,50,54,50,49,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,57,34,44,34,78,65,77,69,34,58,34,87,121,97,110,100,111,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,51,52,53,44,34,98,101,100,115,34,58,49,51,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,48,56,55,54,53,44,51,56,46,57,57,49,52,48,49,93,44,91,45,57,52,46,56,55,50,52,52,50,44,51,57,46,48,53,57,48,56,56,93,44,91,45,57,52,46,54,48,55,51,56,50,44,51,57,46,48,52,52,48,56,54,93,44,91,45,57,52,46,54,48,55,51,53,52,44,51,57,46,49,49,51,52,52,52,93,44,91,45,57,52,46,54,48,49,55,51,51,44,51,57,46,49,53,57,54,48,51,93,44,91,45,57,52,46,55,55,53,53,51,50,44,51,57,46,50,48,48,54,48,54,93,44,91,45,57,52,46,57,48,48,49,57,49,44,51,57,46,50,48,50,57,49,49,93,44,91,45,57,52,46,57,48,56,55,54,53,44,51,56,46,57,57,49,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,68,105,120,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,49,56,56,53,57,44,50,57,46,56,50,50,54,50,51,93,44,91,45,56,51,46,51,54,54,51,57,56,44,50,57,46,54,54,53,55,48,49,93,44,91,45,56,51,46,52,56,49,50,54,52,44,50,57,46,54,51,48,51,50,57,93,44,91,45,56,51,46,52,52,57,52,53,54,44,50,57,46,52,56,51,51,53,49,93,44,91,45,56,51,46,50,51,56,54,55,57,44,50,57,46,51,48,56,54,49,93,44,91,45,56,51,46,50,51,57,56,53,57,44,50,57,46,50,53,48,57,57,93,44,91,45,56,51,46,48,54,56,53,50,50,44,50,57,46,51,52,51,57,53,51,93,44,91,45,56,50,46,57,51,55,51,50,57,44,50,57,46,53,57,49,49,57,54,93,44,91,45,56,50,46,57,50,48,54,48,56,44,50,57,46,56,50,52,49,52,51,93,44,91,45,56,51,46,51,49,56,56,53,57,44,50,57,46,56,50,50,54,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,84,117,115,99,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,50,53,48,44,34,98,101,100,115,34,58,49,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,57,56,56,49,54,44,52,51,46,52,55,56,57,53,55,93,44,91,45,56,51,46,54,57,53,54,50,49,44,52,51,46,50,50,49,52,50,50,93,44,91,45,56,51,46,52,54,48,55,51,51,44,52,51,46,50,50,51,49,51,49,93,44,91,45,56,51,46,51,53,52,52,49,56,44,52,51,46,51,50,50,50,53,55,93,44,91,45,56,51,46,49,50,48,51,57,54,44,52,51,46,51,50,55,48,52,57,93,44,91,45,56,51,46,49,49,55,56,52,52,44,52,51,46,54,55,53,52,57,51,93,44,91,45,56,51,46,52,54,54,53,57,50,44,52,51,46,54,54,55,54,50,49,93,44,91,45,56,51,46,52,54,55,52,48,51,44,52,51,46,55,50,56,57,48,57,93,44,91,45,56,51,46,55,48,56,51,49,55,44,52,51,46,56,50,56,55,50,49,93,44,91,45,56,51,46,54,57,56,56,49,54,44,52,51,46,52,55,56,57,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,52,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,48,34,44,34,78,65,77,69,34,58,34,83,111,117,116,104,101,97,115,116,32,70,97,105,114,98,97,110,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,55,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,54,46,57,57,57,57,48,57,44,54,52,46,50,53,55,49,57,54,93,44,91,45,49,52,54,46,57,57,57,57,54,54,44,54,51,46,52,55,57,54,52,53,93,44,91,45,49,52,54,46,52,56,57,53,52,49,44,54,51,46,52,56,50,57,49,51,93,44,91,45,49,52,54,46,52,57,52,51,49,49,44,54,51,46,49,54,56,57,55,53,93,44,91,45,49,52,54,46,49,49,49,52,56,54,44,54,51,46,50,49,55,55,54,50,93,44,91,45,49,52,53,46,49,53,52,51,57,53,44,54,51,46,50,49,55,55,56,49,93,44,91,45,49,52,53,46,49,53,52,51,56,53,44,54,51,46,49,51,49,49,52,57,93,44,91,45,49,52,52,46,53,56,48,49,53,57,44,54,51,46,49,49,54,57,51,49,93,44,91,45,49,52,51,46,49,51,50,51,51,55,44,54,51,46,49,49,54,57,55,56,93,44,91,45,49,52,51,46,48,51,50,50,51,56,44,54,50,46,57,51,49,55,57,49,93,44,91,45,49,52,51,46,49,54,52,51,53,44,54,50,46,56,51,52,53,54,57,93,44,91,45,49,52,51,46,48,53,55,56,51,52,44,54,50,46,55,55,48,53,52,93,44,91,45,49,52,51,46,49,48,52,57,57,54,44,54,50,46,54,49,52,57,48,53,93,44,91,45,49,52,50,46,56,52,56,53,55,57,44,54,50,46,54,48,48,53,52,55,93,44,91,45,49,52,50,46,55,51,49,50,51,51,44,54,50,46,55,48,56,50,56,50,93,44,91,45,49,52,50,46,51,49,51,53,54,52,44,54,50,46,54,56,51,56,50,56,93,44,91,45,49,52,49,46,57,55,55,51,53,51,44,54,50,46,53,49,48,53,53,57,93,44,91,45,49,52,49,46,57,55,55,51,51,54,44,54,50,46,49,54,51,57,56,51,93,44,91,45,49,52,49,46,56,51,49,56,49,50,44,54,50,46,49,49,55,49,55,56,93,44,91,45,49,52,49,46,56,51,49,56,48,52,44,54,49,46,57,48,52,48,53,51,93,44,91,45,49,52,49,46,48,48,50,50,54,55,44,54,49,46,57,48,52,48,52,55,93,44,91,45,49,52,49,46,48,48,49,52,55,44,54,50,46,53,53,53,53,53,57,93,44,91,45,49,52,49,46,48,48,49,52,48,54,44,54,51,46,50,54,56,55,48,52,93,44,91,45,49,52,49,46,48,48,49,51,50,54,44,54,52,46,52,50,51,53,50,57,93,44,91,45,49,52,49,46,48,48,49,55,51,51,44,54,53,46,50,57,55,49,49,51,93,44,91,45,49,52,49,46,48,48,50,52,55,50,44,54,53,46,56,51,57,52,50,49,93,44,91,45,49,52,49,46,51,51,54,50,50,52,44,54,53,46,55,49,49,54,49,52,93,44,91,45,49,52,49,46,51,56,55,56,52,50,44,54,53,46,54,49,52,51,57,53,93,44,91,45,49,52,49,46,55,56,57,48,53,44,54,53,46,53,48,49,53,52,54,93,44,91,45,49,52,49,46,56,53,53,55,54,49,44,54,53,46,52,52,53,55,56,54,93,44,91,45,49,52,50,46,49,52,50,57,50,50,44,54,53,46,52,54,51,49,55,52,93,44,91,45,49,52,50,46,52,56,55,51,48,49,44,54,53,46,51,55,49,56,57,56,93,44,91,45,49,52,50,46,54,54,51,55,55,50,44,54,53,46,51,55,49,56,55,54,93,44,91,45,49,52,50,46,55,51,49,57,44,54,53,46,50,51,51,54,51,57,93,44,91,45,49,52,50,46,56,54,52,51,52,52,44,54,53,46,49,52,48,51,56,55,93,44,91,45,49,52,51,46,48,52,52,48,53,53,44,54,53,46,49,51,50,51,50,55,93,44,91,45,49,52,51,46,52,54,57,54,54,55,44,54,52,46,57,56,50,49,56,57,93,44,91,45,49,52,51,46,53,51,51,55,52,56,44,54,52,46,55,55,56,55,53,53,93,44,91,45,49,52,51,46,55,53,50,48,57,49,44,54,52,46,54,52,55,54,49,56,93,44,91,45,49,52,52,46,48,54,57,48,50,57,44,54,52,46,54,56,51,53,54,50,93,44,91,45,49,52,52,46,53,53,50,53,50,54,44,54,52,46,54,48,48,54,52,53,93,44,91,45,49,52,52,46,57,56,53,51,51,49,44,54,52,46,53,54,56,54,48,57,93,44,91,45,49,52,53,46,48,56,50,55,56,55,44,54,52,46,53,48,55,51,52,57,93,44,91,45,49,52,53,46,51,55,51,57,50,57,44,54,52,46,52,56,51,56,51,54,93,44,91,45,49,52,53,46,52,57,56,48,56,57,44,54,52,46,52,50,51,49,53,53,93,44,91,45,49,52,53,46,55,52,48,48,48,50,44,54,52,46,52,54,48,49,51,50,93,44,91,45,49,52,54,46,48,48,51,55,55,50,44,54,52,46,51,56,49,48,57,49,93,44,91,45,49,52,54,46,49,53,55,53,57,50,44,54,52,46,51,56,50,55,51,93,44,91,45,49,52,54,46,51,52,52,54,55,51,44,54,52,46,50,55,54,51,54,52,93,44,91,45,49,52,54,46,57,57,57,57,48,57,44,54,52,46,50,53,55,49,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,71,114,97,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,52,53,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,54,49,54,54,55,44,51,57,46,53,54,55,50,55,55,93,44,91,45,49,48,48,46,49,54,52,50,44,51,57,46,49,51,50,48,55,49,93,44,91,45,49,48,48,46,49,52,55,57,52,44,51,57,46,49,51,50,49,55,57,93,44,91,45,57,57,46,54,48,53,49,56,55,44,51,57,46,49,51,50,52,56,49,93,44,91,45,57,57,46,54,48,50,49,55,54,44,51,57,46,53,54,55,51,50,56,93,44,91,45,57,57,46,54,50,55,57,53,51,44,51,57,46,53,54,55,52,51,55,93,44,91,45,49,48,48,46,49,54,49,54,54,55,44,51,57,46,53,54,55,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,97,110,100,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,52,52,57,44,34,98,101,100,115,34,58,50,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,49,50,55,49,49,44,51,48,46,56,52,56,54,48,55,93,44,91,45,57,50,46,49,55,50,52,49,53,44,51,48,46,55,54,55,57,51,53,93,44,91,45,57,50,46,50,49,49,50,52,51,44,51,48,46,53,54,56,49,50,53,93,44,91,45,57,50,46,52,50,48,55,56,44,51,48,46,53,51,56,56,50,93,44,91,45,57,50,46,52,57,51,50,53,57,44,51,48,46,52,56,48,52,57,57,93,44,91,45,57,50,46,50,52,52,55,57,53,44,51,48,46,52,56,48,49,57,51,93,44,91,45,57,50,46,49,55,54,52,52,52,44,51,48,46,52,51,54,56,53,50,93,44,91,45,57,50,46,49,52,50,49,56,52,44,51,48,46,50,57,56,56,49,55,93,44,91,45,57,49,46,57,56,56,55,49,56,44,51,48,46,51,54,56,53,57,56,93,44,91,45,57,49,46,56,54,57,50,55,51,44,51,48,46,52,49,55,50,51,53,93,44,91,45,57,49,46,54,57,52,51,44,51,48,46,52,48,49,55,52,56,93,44,91,45,57,49,46,55,53,54,49,57,51,44,51,48,46,52,57,55,55,51,56,93,44,91,45,57,49,46,55,51,51,54,55,51,44,51,48,46,55,48,49,55,51,93,44,91,45,57,49,46,56,49,53,50,53,56,44,51,48,46,56,52,56,49,48,55,93,44,91,45,57,50,46,50,49,50,55,49,49,44,51,48,46,56,52,56,54,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,105,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,49,54,55,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,48,54,53,55,56,44,51,53,46,52,51,51,50,48,55,93,44,91,45,56,55,46,50,50,52,48,53,50,44,51,52,46,57,57,57,51,55,55,93,44,91,45,56,55,46,50,49,48,55,53,57,44,51,52,46,57,57,57,48,50,52,93,44,91,45,56,54,46,56,51,54,51,48,54,44,51,52,46,57,57,49,56,57,57,93,44,91,45,56,54,46,56,50,56,51,48,49,44,51,53,46,50,54,51,54,55,55,93,44,91,45,56,54,46,57,54,48,56,48,52,44,51,53,46,52,49,55,48,50,49,93,44,91,45,56,55,46,49,50,48,56,56,51,44,51,53,46,52,53,53,54,54,93,44,91,45,56,55,46,50,48,54,53,55,56,44,51,53,46,52,51,51,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,76,117,99,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,50,51,55,57,44,34,98,101,100,115,34,58,51,52,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,49,50,52,54,44,52,49,46,57,53,57,52,49,93,44,91,45,56,51,46,52,49,53,56,53,49,44,52,49,46,55,51,51,55,57,52,93,44,91,45,56,51,46,55,54,51,49,53,44,52,49,46,55,50,51,53,53,50,93,44,91,45,56,51,46,56,56,48,51,57,49,44,52,49,46,55,50,48,50,49,50,93,44,91,45,56,51,46,56,56,50,57,52,51,44,52,49,46,52,56,55,53,52,51,93,44,91,45,56,51,46,56,56,51,50,51,52,44,52,49,46,52,49,52,53,48,51,93,44,91,45,56,51,46,55,52,55,50,49,55,44,52,49,46,52,54,54,50,49,54,93,44,91,45,56,51,46,53,54,57,57,51,52,44,52,49,46,54,49,55,49,53,93,44,91,45,56,51,46,52,49,53,57,52,49,44,52,49,46,54,49,57,49,49,93,44,91,45,56,51,46,49,54,52,53,49,49,44,52,49,46,54,50,51,50,52,55,93,44,91,45,56,50,46,57,57,53,53,55,50,44,52,49,46,56,50,56,57,54,57,93,44,91,45,56,51,46,49,49,50,52,54,44,52,49,46,57,53,57,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,56,51,49,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,53,57,51,55,54,44,51,53,46,57,57,57,49,51,49,93,44,91,45,57,48,46,50,56,56,57,52,55,44,51,53,46,57,57,54,52,49,93,44,91,45,57,48,46,50,56,54,55,51,54,44,51,53,46,54,57,57,57,49,52,93,44,91,45,57,48,46,50,56,54,56,57,57,44,51,53,46,52,51,56,53,55,51,93,44,91,45,57,48,46,49,52,48,50,53,55,44,51,53,46,52,51,54,54,51,54,93,44,91,45,57,48,46,48,53,52,51,50,50,44,51,53,46,51,56,57,50,55,55,93,44,91,45,57,48,46,48,52,49,53,54,51,44,51,53,46,51,57,54,54,50,93,44,91,45,57,48,46,48,53,48,52,51,55,44,51,53,46,53,49,53,56,57,52,93,44,91,45,56,57,46,57,48,57,55,57,55,44,51,53,46,53,51,55,57,49,52,93,44,91,45,56,57,46,57,53,48,50,55,55,44,51,53,46,55,51,56,52,57,52,93,44,91,45,56,57,46,56,50,48,56,55,54,44,51,53,46,55,53,54,56,54,56,93,44,91,45,56,57,46,55,52,50,54,48,54,44,51,53,46,57,48,54,54,53,51,93,44,91,45,56,57,46,54,52,52,56,51,56,44,51,53,46,57,48,52,51,53,49,93,44,91,45,56,57,46,55,51,51,48,57,53,44,51,54,46,48,48,48,54,48,56,93,44,91,45,56,57,46,57,53,57,51,55,54,44,51,53,46,57,57,57,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,82,105,110,99,195,179,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,56,50,56,53,50,44,49,56,46,51,49,51,48,50,54,93,44,91,45,54,55,46,50,52,57,51,56,52,44,49,56,46,52,49,56,57,50,52,93,44,91,45,54,55,46,51,49,57,57,49,49,44,49,56,46,51,52,51,49,56,55,93,44,91,45,54,55,46,50,53,52,50,44,49,56,46,50,53,50,54,51,56,93,44,91,45,54,55,46,50,52,51,53,53,57,44,49,56,46,50,54,56,57,50,50,93,44,91,45,54,55,46,49,56,50,56,53,50,44,49,56,46,51,49,51,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,56,48,57,44,34,98,101,100,115,34,58,50,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,51,50,56,49,55,44,51,56,46,52,49,55,56,57,56,93,44,91,45,56,54,46,48,51,50,53,53,57,44,51,56,46,51,51,48,54,54,93,44,91,45,56,53,46,56,57,57,55,54,44,51,56,46,49,56,48,52,52,52,93,44,91,45,56,53,46,55,57,50,51,49,54,44,51,56,46,50,56,55,52,51,51,93,44,91,45,56,53,46,56,48,55,55,48,52,44,51,56,46,52,48,52,52,52,51,93,44,91,45,56,53,46,57,57,52,54,50,44,51,56,46,52,49,56,51,52,53,93,44,91,45,56,54,46,48,51,50,56,49,55,44,51,56,46,52,49,55,56,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,77,111,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,56,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,49,54,52,50,44,51,55,46,51,56,57,49,57,93,44,91,45,49,48,50,46,48,52,50,48,56,57,44,51,54,46,57,57,51,48,49,54,93,44,91,45,49,48,50,46,48,50,56,50,48,52,44,51,54,46,57,57,51,49,48,50,93,44,91,45,49,48,49,46,53,53,53,50,53,57,44,51,54,46,57,57,53,51,50,52,93,44,91,45,49,48,49,46,53,53,54,54,48,54,44,51,55,46,51,56,56,52,56,53,93,44,91,45,49,48,50,46,48,52,49,54,52,50,44,51,55,46,51,56,57,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,54,48,49,48,55,44,51,56,46,55,55,55,50,57,51,93,44,91,45,56,52,46,55,56,53,55,56,56,44,51,56,46,55,50,48,52,53,57,93,44,91,45,56,52,46,55,55,52,51,50,50,44,51,56,46,54,49,56,53,57,52,93,44,91,45,56,52,46,53,56,48,53,51,57,44,51,56,46,52,55,51,48,51,57,93,44,91,45,56,52,46,53,53,55,51,55,53,44,51,56,46,52,57,50,57,49,55,93,44,91,45,56,52,46,52,55,54,50,57,57,44,51,56,46,53,52,50,55,50,51,93,44,91,45,56,52,46,53,51,50,50,56,56,44,51,56,46,55,57,49,57,51,55,93,44,91,45,56,52,46,54,49,53,54,54,52,44,51,56,46,56,48,50,50,55,55,93,44,91,45,56,52,46,54,54,48,49,48,55,44,51,56,46,55,55,55,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,55,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,48,48,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,56,51,52,57,55,44,51,55,46,52,54,57,57,49,55,93,44,91,45,56,53,46,51,53,50,55,55,49,44,51,55,46,49,57,50,52,51,50,93,44,91,45,56,53,46,49,54,53,49,55,52,44,51,55,46,51,49,48,51,57,54,93,44,91,45,56,53,46,48,55,51,55,55,50,44,51,55,46,52,49,51,54,54,57,93,44,91,45,56,53,46,49,54,57,53,54,53,44,51,55,46,52,54,52,48,48,52,93,44,91,45,56,53,46,50,52,54,55,53,57,44,51,55,46,52,50,48,50,48,53,93,44,91,45,56,53,46,51,52,49,50,50,44,51,55,46,52,54,57,52,53,56,93,44,91,45,56,53,46,52,54,54,50,53,44,51,55,46,52,54,53,53,57,53,93,44,91,45,56,53,46,53,56,51,52,57,55,44,51,55,46,52,54,57,57,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,71,114,97,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,54,49,49,48,50,44,51,53,46,52,54,51,55,53,52,93,44,91,45,56,52,46,48,50,49,52,53,50,44,51,53,46,52,48,52,50,50,51,93,44,91,45,56,52,46,48,50,57,48,54,55,44,51,53,46,50,57,50,50,52,56,93,44,91,45,56,51,46,57,53,56,54,53,50,44,51,53,46,50,49,55,48,52,93,44,91,45,56,51,46,56,51,49,52,50,57,44,51,53,46,50,53,54,49,49,55,93,44,91,45,56,51,46,55,48,50,55,55,50,44,51,53,46,50,52,56,53,50,93,44,91,45,56,51,46,54,56,48,49,49,52,44,51,53,46,50,55,57,53,93,44,91,45,56,51,46,53,56,50,53,53,56,44,51,53,46,52,49,48,52,56,57,93,44,91,45,56,51,46,57,53,50,57,55,50,44,51,53,46,52,54,48,53,53,50,93,44,91,45,56,51,46,57,54,49,49,48,50,44,51,53,46,52,54,51,55,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,48,49,44,34,98,101,100,115,34,58,49,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,51,50,53,48,55,44,51,56,46,48,50,53,51,53,54,93,44,91,45,56,50,46,49,57,48,54,53,56,44,51,55,46,57,55,52,55,55,56,93,44,91,45,56,50,46,48,55,57,57,52,49,44,51,55,46,55,48,48,49,50,50,93,44,91,45,56,49,46,56,48,50,57,51,55,44,51,55,46,54,54,48,53,48,56,93,44,91,45,56,49,46,55,54,52,55,51,55,44,51,55,46,55,53,50,49,48,56,93,44,91,45,56,49,46,54,48,55,53,51,50,44,51,55,46,55,56,56,55,48,57,93,44,91,45,56,49,46,55,50,50,49,51,54,44,51,55,46,56,48,57,53,48,55,93,44,91,45,56,49,46,55,56,53,54,52,49,44,51,55,46,57,51,54,52,48,52,93,44,91,45,56,49,46,57,51,50,53,48,55,44,51,56,46,48,50,53,51,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,80,108,101,97,115,97,110,116,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,50,49,53,51,51,44,51,57,46,52,53,55,55,55,53,93,44,91,45,56,49,46,51,55,49,50,54,44,51,57,46,51,52,49,57,50,52,93,44,91,45,56,49,46,50,51,57,52,55,55,44,51,57,46,50,54,56,51,50,56,93,44,91,45,56,49,46,50,50,49,51,51,53,44,51,57,46,51,48,55,52,55,53,93,44,91,45,56,49,46,48,48,55,56,51,54,44,51,57,46,51,53,48,57,50,51,93,44,91,45,56,49,46,48,50,53,55,48,52,44,51,57,46,52,54,50,51,49,55,93,44,91,45,56,49,46,49,50,49,53,51,51,44,51,57,46,52,53,55,55,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,71,105,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,49,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,52,55,50,55,56,50,44,51,55,46,52,50,51,55,51,93,44,91,45,56,48,46,53,49,49,51,57,49,44,51,55,46,52,56,49,54,55,50,93,44,91,45,56,48,46,55,55,48,48,56,50,44,51,55,46,51,55,50,51,54,51,93,44,91,45,56,48,46,56,53,56,52,54,54,44,51,55,46,52,50,56,51,48,55,93,44,91,45,56,48,46,56,53,57,52,53,55,44,51,55,46,52,50,57,52,57,49,93,44,91,45,56,48,46,56,52,57,52,53,49,44,51,55,46,51,52,54,57,48,57,93,44,91,45,56,48,46,57,56,48,49,52,54,44,51,55,46,50,57,50,55,52,51,93,44,91,45,56,48,46,56,53,52,54,50,55,44,51,55,46,49,52,55,52,56,50,93,44,91,45,56,48,46,54,48,54,57,54,50,44,51,55,46,50,52,52,56,55,49,93,44,91,45,56,48,46,52,51,48,57,52,51,44,51,55,46,51,49,54,51,55,56,93,44,91,45,56,48,46,52,55,50,55,56,50,44,51,55,46,52,50,51,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,49,50,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,56,48,56,50,57,44,51,55,46,57,54,57,49,48,57,93,44,91,45,56,49,46,50,57,53,49,50,55,44,51,55,46,56,56,57,51,49,49,93,44,91,45,56,49,46,48,55,51,50,52,57,44,51,55,46,56,55,53,56,54,53,93,44,91,45,56,48,46,57,52,53,48,57,44,51,55,46,56,49,57,49,50,49,93,44,91,45,56,48,46,56,48,54,51,49,54,44,51,55,46,56,54,56,57,49,53,93,44,91,45,56,48,46,55,54,57,56,54,54,44,51,55,46,57,56,53,50,55,93,44,91,45,56,48,46,56,56,50,49,56,55,44,51,56,46,49,48,51,52,53,55,93,44,91,45,56,48,46,57,56,51,52,55,50,44,51,56,46,50,50,50,53,52,93,44,91,45,56,49,46,48,55,53,48,51,57,44,51,56,46,49,57,54,49,51,54,93,44,91,45,56,49,46,50,51,49,54,51,54,44,51,56,46,50,54,51,53,49,52,93,44,91,45,56,49,46,51,51,49,53,48,51,44,51,56,46,49,54,55,53,55,56,93,44,91,45,56,49,46,51,56,48,56,50,57,44,51,55,46,57,54,57,49,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,83,110,111,104,111,109,105,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,54,54,50,48,44,34,98,101,100,115,34,58,56,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,52,53,56,53,57,54,44,52,56,46,50,57,55,55,48,51,93,44,91,45,49,50,50,46,51,53,48,50,56,57,44,52,56,46,48,56,48,51,49,50,93,44,91,45,49,50,50,46,51,50,56,52,54,51,44,52,55,46,57,54,51,55,54,51,93,44,91,45,49,50,50,46,52,50,57,54,50,53,44,52,55,46,56,50,56,48,57,56,93,44,91,45,49,50,50,46,52,51,56,48,57,51,44,52,55,46,55,55,55,56,49,52,93,44,91,45,49,50,49,46,57,57,49,55,55,53,44,52,55,46,55,55,53,51,52,57,93,44,91,45,49,50,49,46,49,49,57,49,55,57,44,52,55,46,55,55,57,57,51,51,93,44,91,45,49,50,49,46,49,56,48,55,55,54,44,52,55,46,56,57,56,55,54,57,93,44,91,45,49,50,49,46,49,49,56,49,56,51,44,52,55,46,57,57,55,49,48,51,93,44,91,45,49,50,48,46,57,48,55,52,50,53,44,52,56,46,49,54,51,49,56,52,93,44,91,45,49,50,49,46,48,48,49,54,53,56,44,52,56,46,50,57,54,48,48,57,93,44,91,45,49,50,50,46,52,53,56,53,57,54,44,52,56,46,50,57,55,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,69,100,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,52,51,55,44,34,98,101,100,115,34,58,49,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,56,49,52,53,48,55,44,51,50,46,57,54,53,49,49,52,93,44,91,45,49,48,52,46,56,52,49,53,55,54,44,51,50,46,57,54,51,50,49,51,93,44,91,45,49,48,52,46,56,53,49,53,50,52,44,51,50,46,53,50,48,53,52,49,93,44,91,45,49,48,52,46,56,52,55,55,52,44,51,50,46,48,48,48,52,49,53,93,44,91,45,49,48,52,46,48,50,52,53,49,50,44,51,50,46,48,48,48,49,48,50,93,44,91,45,49,48,51,46,57,56,48,49,55,57,44,51,50,46,48,48,48,49,50,53,93,44,91,45,49,48,51,46,55,50,50,56,56,50,44,51,50,46,48,48,48,50,48,54,93,44,91,45,49,48,51,46,55,50,50,57,51,56,44,51,50,46,53,50,50,51,52,52,93,44,91,45,49,48,51,46,56,49,52,50,49,54,44,51,50,46,53,50,50,51,54,56,93,44,91,45,49,48,51,46,56,49,52,53,48,55,44,51,50,46,57,54,53,49,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,99,80,104,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,48,54,52,54,54,44,52,49,46,55,52,51,50,93,44,91,45,49,48,49,46,52,48,55,50,54,44,52,49,46,51,57,53,52,49,54,93,44,91,45,49,48,49,46,50,54,57,54,57,53,44,52,49,46,51,57,52,57,51,52,93,44,91,45,49,48,48,46,55,49,51,50,52,51,44,52,49,46,51,57,51,53,49,49,93,44,91,45,49,48,48,46,55,49,49,55,49,49,44,52,49,46,55,51,57,55,54,49,93,44,91,45,49,48,48,46,56,52,50,52,53,57,44,52,49,46,55,52,48,52,48,52,93,44,91,45,49,48,49,46,52,48,54,52,54,54,44,52,49,46,55,52,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,82,101,100,32,87,105,108,108,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,53,56,52,51,53,44,52,48,46,51,52,57,53,48,55,93,44,91,45,49,48,48,46,55,53,56,56,51,44,52,48,46,48,48,50,51,48,50,93,44,91,45,49,48,48,46,55,51,56,56,50,53,44,52,48,46,48,48,50,49,49,54,93,44,91,45,49,48,48,46,49,57,51,53,57,57,44,52,48,46,48,48,49,54,54,51,93,44,91,45,49,48,48,46,49,57,55,56,48,55,44,52,48,46,51,53,48,48,50,55,93,44,91,45,49,48,48,46,55,53,56,52,51,53,44,52,48,46,51,52,57,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,82,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,48,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,55,55,54,56,52,44,52,50,46,55,51,48,57,48,51,93,44,91,45,57,57,46,54,54,50,51,55,57,44,52,50,46,48,56,54,48,48,57,93,44,91,45,57,57,46,50,51,52,54,50,57,44,52,50,46,48,56,55,57,57,53,93,44,91,45,57,57,46,50,52,53,56,48,51,44,52,50,46,55,56,50,52,57,57,93,44,91,45,57,57,46,50,53,55,48,51,57,44,52,50,46,56,48,52,50,57,54,93,44,91,45,57,57,46,53,51,55,52,57,49,44,52,50,46,55,49,55,54,50,54,93,44,91,45,57,57,46,54,55,55,54,56,52,44,52,50,46,55,51,48,57,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,117,109,112,104,114,101,121,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,52,57,54,48,51,44,51,54,46,50,52,51,49,54,93,44,91,45,56,55,46,57,49,57,48,52,51,44,51,54,46,49,51,48,48,52,57,93,44,91,45,56,56,46,48,48,48,56,48,57,44,51,54,46,48,50,56,48,56,57,93,44,91,45,56,55,46,57,50,53,56,51,53,44,51,53,46,57,51,48,52,51,50,93,44,91,45,56,55,46,57,54,50,55,52,44,51,53,46,56,52,48,57,50,49,93,44,91,45,56,55,46,56,55,52,49,56,50,44,51,53,46,56,49,51,48,50,49,93,44,91,45,56,55,46,55,49,54,55,54,44,51,53,46,56,51,56,55,53,93,44,91,45,56,55,46,55,48,54,57,54,44,51,53,46,57,48,53,56,56,52,93,44,91,45,56,55,46,53,51,52,53,51,44,51,53,46,57,57,51,48,55,52,93,44,91,45,56,55,46,53,54,54,55,57,56,44,51,54,46,49,55,55,56,53,55,93,44,91,45,56,55,46,55,57,56,53,48,56,44,51,54,46,50,52,52,55,53,52,93,44,91,45,56,55,46,57,52,57,54,48,51,44,51,54,46,50,52,51,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,55,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,50,52,54,56,44,52,48,46,52,51,53,57,50,49,93,44,91,45,57,48,46,48,51,51,48,50,54,44,52,48,46,51,55,55,56,48,54,93,44,91,45,57,48,46,49,49,56,57,54,54,44,52,48,46,50,51,53,50,54,51,93,44,91,45,57,48,46,49,57,57,54,51,53,44,52,48,46,49,56,51,56,49,50,93,44,91,45,57,48,46,51,53,52,53,50,52,44,52,48,46,49,50,52,50,49,55,93,44,91,45,57,48,46,50,56,55,56,51,55,44,52,48,46,48,54,51,55,56,52,93,44,91,45,57,48,46,49,51,52,50,56,49,44,52,48,46,48,54,50,53,50,52,93,44,91,45,56,57,46,57,57,53,48,57,44,52,48,46,49,48,56,57,48,56,93,44,91,45,56,57,46,57,55,52,54,48,52,44,52,48,46,49,51,53,55,48,53,93,44,91,45,56,57,46,54,48,49,54,56,56,44,52,48,46,49,50,50,51,55,56,93,44,91,45,56,57,46,54,48,50,57,55,57,44,52,48,46,51,50,48,49,50,57,93,44,91,45,56,57,46,55,49,52,57,50,55,44,52,48,46,51,49,57,50,49,56,93,44,91,45,56,57,46,55,49,55,49,48,52,44,52,48,46,52,51,53,54,53,53,93,44,91,45,56,57,46,57,50,52,54,56,44,52,48,46,52,51,53,57,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,87,121,116,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,52,48,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,49,50,54,55,52,44,51,55,46,48,55,51,51,52,57,93,44,91,45,56,49,46,49,49,52,51,49,57,44,51,55,46,48,50,50,54,49,50,93,44,91,45,56,49,46,50,50,52,54,50,52,44,51,55,46,48,52,55,56,51,53,93,44,91,45,56,49,46,51,55,57,52,48,50,44,51,54,46,57,53,50,52,52,50,93,44,91,45,56,49,46,50,54,49,57,56,55,44,51,54,46,55,54,51,48,51,51,93,44,91,45,56,49,46,48,56,56,53,49,44,51,54,46,55,54,55,52,50,50,93,44,91,45,56,49,46,48,52,50,52,50,56,44,51,54,46,56,48,54,52,52,56,93,44,91,45,56,48,46,55,52,48,52,56,51,44,51,54,46,56,55,57,48,48,49,93,44,91,45,56,48,46,57,49,50,54,55,52,44,51,55,46,48,55,51,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,54,49,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,52,56,51,49,49,44,51,51,46,50,51,56,51,52,56,93,44,91,45,56,50,46,56,56,56,56,54,54,44,51,51,46,49,51,56,54,48,51,93,44,91,45,56,51,46,48,53,50,49,57,55,44,51,51,46,48,56,48,54,56,50,93,44,91,45,56,51,46,48,55,51,54,52,56,44,51,50,46,57,52,54,53,54,50,93,44,91,45,56,50,46,57,52,54,57,54,54,44,51,50,46,55,53,57,51,53,56,93,44,91,45,56,50,46,55,54,56,51,54,53,44,51,50,46,55,54,57,49,48,56,93,44,91,45,56,50,46,53,50,49,48,53,50,44,51,50,46,56,50,50,51,53,54,93,44,91,45,56,50,46,53,52,55,57,49,51,44,51,51,46,48,48,56,53,51,51,93,44,91,45,56,50,46,54,54,49,57,49,55,44,51,51,46,49,50,54,51,51,49,93,44,91,45,56,50,46,55,52,56,51,49,49,44,51,51,46,50,51,56,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,89,97,107,105,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,51,50,53,44,34,98,101,100,115,34,58,50,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,52,53,53,50,49,56,44,52,54,46,55,56,51,55,57,55,93,44,91,45,49,50,49,46,51,55,54,55,53,55,44,52,54,46,55,48,52,54,53,56,93,44,91,45,49,50,49,46,52,53,49,50,53,54,44,52,54,46,53,51,51,56,57,52,93,44,91,45,49,50,49,46,51,57,55,48,49,54,44,52,54,46,51,56,56,48,56,51,93,44,91,45,49,50,49,46,53,50,50,51,50,52,44,52,54,46,51,56,56,50,50,52,93,44,91,45,49,50,49,46,53,50,50,51,50,49,44,52,54,46,48,52,52,48,48,54,93,44,91,45,49,50,48,46,56,48,49,50,57,53,44,52,54,46,48,52,49,48,49,52,93,44,91,45,49,49,57,46,56,54,53,56,50,57,44,52,54,46,48,52,48,56,53,56,93,44,91,45,49,49,57,46,56,55,52,48,52,50,44,52,54,46,54,50,56,50,56,51,93,44,91,45,49,49,57,46,57,55,51,48,51,54,44,52,54,46,55,51,55,49,50,54,93,44,91,45,49,50,48,46,53,49,44,52,54,46,55,51,55,57,52,54,93,44,91,45,49,50,48,46,54,51,51,57,56,49,44,52,54,46,56,50,53,55,55,54,93,44,91,45,49,50,48,46,54,51,52,53,54,50,44,52,54,46,57,49,50,49,51,93,44,91,45,49,50,49,46,48,50,54,54,50,44,52,54,46,57,49,49,51,48,56,93,44,91,45,49,50,49,46,48,57,48,48,53,52,44,52,54,46,57,57,49,48,48,55,93,44,91,45,49,50,49,46,50,53,54,52,52,44,52,55,46,48,56,49,55,55,50,93,44,91,45,49,50,49,46,51,55,57,54,56,50,44,52,55,46,48,56,55,52,57,53,93,44,91,45,49,50,49,46,51,55,57,57,54,49,44,52,55,46,48,56,55,50,52,56,93,44,91,45,49,50,49,46,52,57,55,51,52,53,44,52,54,46,56,54,50,56,54,54,93,44,91,45,49,50,49,46,52,53,53,50,49,56,44,52,54,46,55,56,51,55,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,53,50,57,44,34,98,101,100,115,34,58,49,48,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,53,53,50,49,55,50,44,51,54,46,49,48,50,49,50,56,93,44,91,45,57,52,46,52,57,51,49,51,44,51,53,46,55,53,57,49,54,55,93,44,91,45,57,51,46,57,54,50,56,57,50,44,51,53,46,55,54,48,57,51,93,44,91,45,57,51,46,57,52,52,49,55,55,44,51,54,46,48,57,49,49,48,51,93,44,91,45,57,51,46,56,56,55,55,55,53,44,51,54,46,50,51,53,48,52,54,93,44,91,45,57,52,46,48,49,55,53,48,57,44,51,54,46,50,48,56,49,52,57,93,44,91,45,57,52,46,51,51,51,53,54,53,44,51,54,46,50,49,52,55,50,55,93,44,91,45,57,52,46,51,57,49,49,50,53,44,51,54,46,48,57,57,51,57,54,93,44,91,45,57,52,46,53,53,50,49,55,50,44,51,54,46,49,48,50,49,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,51,34,44,34,78,65,77,69,34,58,34,72,101,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,52,54,48,44,34,98,101,100,115,34,58,49,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,52,57,49,54,53,44,51,50,46,51,53,53,50,51,51,93,44,91,45,57,54,46,48,55,53,56,57,57,44,51,50,46,51,53,55,53,48,53,93,44,91,45,57,54,46,52,53,50,49,51,56,44,51,50,46,51,53,56,54,51,49,93,44,91,45,57,54,46,51,56,51,48,56,50,44,51,50,46,51,50,56,56,53,49,93,44,91,45,57,54,46,50,51,52,50,53,49,44,51,50,46,50,53,48,51,57,57,93,44,91,45,57,54,46,48,53,52,55,56,44,51,50,46,48,49,50,53,50,54,93,44,91,45,57,54,46,48,53,50,55,56,54,44,51,50,46,48,48,53,56,57,53,93,44,91,45,57,53,46,52,50,56,53,49,50,44,51,50,46,48,56,52,52,55,53,93,44,91,45,57,53,46,52,53,57,57,48,56,44,51,50,46,49,51,53,53,53,57,93,44,91,45,57,53,46,52,56,56,44,51,50,46,50,51,53,52,56,52,93,44,91,45,57,53,46,52,52,57,49,54,53,44,51,50,46,51,53,53,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,69,97,117,32,67,108,97,105,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,57,57,49,44,34,98,101,100,115,34,58,55,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,53,48,52,53,53,44,52,52,46,56,53,53,57,53,49,93,44,91,45,57,49,46,54,53,48,51,54,49,44,52,52,46,54,56,51,54,51,51,93,44,91,45,57,49,46,54,53,48,50,52,56,44,52,52,46,53,57,54,54,52,57,93,44,91,45,57,49,46,53,50,57,49,48,49,44,52,52,46,53,57,54,49,57,55,93,44,91,45,57,49,46,49,54,53,54,49,57,44,52,52,46,53,57,54,57,56,55,93,44,91,45,57,48,46,57,50,50,51,53,44,52,52,46,53,57,54,50,57,51,93,44,91,45,57,48,46,57,50,50,50,52,55,44,52,52,46,56,53,55,51,48,57,93,44,91,45,57,49,46,54,53,48,52,53,53,44,52,52,46,56,53,53,57,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,83,101,113,117,97,116,99,104,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,50,51,56,48,52,44,51,53,46,53,54,55,52,50,50,93,44,91,45,56,53,46,53,53,55,53,51,53,44,51,53,46,53,51,50,57,55,55,93,44,91,45,56,53,46,54,48,55,51,50,54,44,51,53,46,53,51,49,54,53,49,93,44,91,45,56,53,46,52,56,53,54,51,53,44,51,53,46,52,48,54,52,51,51,93,44,91,45,56,53,46,53,53,56,53,53,49,44,51,53,46,51,49,57,50,57,50,93,44,91,45,56,53,46,52,52,52,49,52,52,44,51,53,46,50,54,50,54,52,54,93,44,91,45,56,53,46,51,56,55,48,56,57,44,51,53,46,49,52,55,49,54,57,93,44,91,45,56,53,46,50,50,53,56,55,55,44,51,53,46,51,53,52,50,55,54,93,44,91,45,56,53,46,52,48,51,50,57,56,44,51,53,46,52,57,50,50,56,93,44,91,45,56,53,46,52,50,51,56,48,52,44,51,53,46,53,54,55,52,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,55,49,34,44,34,78,65,77,69,34,58,34,87,97,108,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,53,51,57,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,54,49,55,56,55,50,44,51,48,46,57,51,48,52,49,56,93,44,91,45,57,53,46,56,54,51,48,53,57,44,51,48,46,56,54,52,49,50,53,93,44,91,45,57,53,46,56,51,48,50,52,44,51,48,46,54,51,48,50,56,52,93,44,91,45,57,53,46,53,57,56,57,55,49,44,51,48,46,53,48,57,48,48,50,93,44,91,45,57,53,46,51,53,57,49,53,54,44,51,48,46,53,48,52,51,54,57,93,44,91,45,57,53,46,51,50,55,52,56,44,51,48,46,56,53,57,53,52,55,93,44,91,45,57,53,46,52,51,52,51,51,53,44,51,48,46,57,51,55,52,48,53,93,44,91,45,57,53,46,52,51,52,55,56,49,44,51,49,46,48,53,56,48,57,56,93,44,91,45,57,53,46,54,49,55,56,55,50,44,51,48,46,57,51,48,52,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,111,99,111,110,105,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,50,49,55,44,34,98,101,100,115,34,58,52,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,55,53,48,54,55,56,44,51,52,46,50,54,51,51,49,52,93,44,91,45,49,49,48,46,55,53,48,54,57,51,44,51,53,46,49,52,48,51,48,57,93,44,91,45,49,49,48,46,55,53,48,54,57,55,44,51,53,46,56,50,48,53,56,57,93,44,91,45,49,49,48,46,55,53,48,54,57,44,51,55,46,48,48,51,48,48,55,93,44,91,45,49,49,49,46,52,49,50,55,56,52,44,51,55,46,48,48,49,53,48,51,93,44,91,45,49,49,50,46,53,51,56,53,55,49,44,51,55,46,48,48,48,55,53,56,93,44,91,45,49,49,50,46,54,49,57,55,50,56,44,51,54,46,55,56,50,55,52,52,93,44,91,45,49,49,50,46,54,53,54,51,54,53,44,51,54,46,53,53,51,57,49,53,93,44,91,45,49,49,50,46,54,50,57,52,57,44,51,54,46,51,57,49,54,49,49,93,44,91,45,49,49,50,46,54,56,49,53,55,49,44,51,54,46,51,52,49,54,54,50,93,44,91,45,49,49,50,46,57,48,50,57,52,57,44,51,54,46,50,53,51,55,54,49,93,44,91,45,49,49,51,46,48,48,54,51,52,51,44,51,54,46,50,51,56,55,53,52,93,44,91,45,49,49,51,46,51,49,51,52,50,56,44,51,54,46,49,48,48,48,48,49,93,44,91,45,49,49,51,46,51,51,52,49,54,49,44,51,53,46,53,50,56,48,51,55,93,44,91,45,49,49,51,46,49,55,52,52,53,56,44,51,53,46,53,48,54,52,52,53,93,44,91,45,49,49,50,46,57,52,52,55,56,57,44,51,53,46,51,53,50,54,48,51,93,44,91,45,49,49,50,46,54,57,52,56,52,54,44,51,53,46,51,49,49,53,56,54,93,44,91,45,49,49,50,46,53,55,55,51,57,57,44,51,53,46,50,52,51,51,57,52,93,44,91,45,49,49,50,46,52,55,50,55,44,51,53,46,50,51,56,51,49,50,93,44,91,45,49,49,50,46,52,52,50,51,44,51,53,46,49,52,57,52,48,56,93,44,91,45,49,49,50,46,51,51,53,55,49,54,44,51,53,46,49,52,56,50,55,57,93,44,91,45,49,49,50,46,51,51,52,53,51,54,44,51,52,46,57,55,51,48,50,52,93,44,91,45,49,49,49,46,55,55,56,50,57,55,44,51,52,46,57,56,49,48,48,55,93,44,91,45,49,49,49,46,55,55,56,50,48,52,44,51,52,46,56,48,51,54,56,53,93,44,91,45,49,49,49,46,53,53,49,57,53,57,44,51,52,46,56,48,50,53,50,93,44,91,45,49,49,49,46,53,53,52,54,56,49,44,51,52,46,52,55,49,55,51,51,93,44,91,45,49,49,49,46,52,57,49,56,54,54,44,51,52,46,52,50,50,55,52,51,93,44,91,45,49,49,49,46,50,52,54,54,54,49,44,51,52,46,52,53,48,56,48,56,93,44,91,45,49,49,49,46,48,56,55,53,48,52,44,51,52,46,51,57,52,57,57,54,93,44,91,45,49,49,48,46,56,52,56,48,53,57,44,51,52,46,50,54,55,50,48,53,93,44,91,45,49,49,48,46,55,53,48,54,55,56,44,51,52,46,50,54,51,51,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,83,117,109,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,48,56,44,34,98,101,100,115,34,58,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,48,55,48,53,55,44,51,55,46,51,56,54,50,57,51,93,44,91,45,57,55,46,56,48,50,51,49,51,44,51,54,46,57,57,56,55,49,56,93,44,91,45,57,55,46,52,54,50,51,52,54,44,51,54,46,57,57,56,55,48,49,93,44,91,45,57,55,46,49,52,55,55,50,49,44,51,54,46,57,57,57,48,51,51,93,44,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,44,91,45,57,55,46,56,48,55,54,44,51,55,46,52,55,52,49,56,52,93,44,91,45,57,55,46,56,48,55,48,53,55,44,51,55,46,51,56,54,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,79,99,101,97,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,49,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,51,55,56,56,52,44,52,51,46,56,49,53,54,49,49,93,44,91,45,56,55,46,48,57,51,49,48,57,44,52,51,46,56,50,48,49,49,51,93,44,91,45,56,55,46,49,51,52,55,55,56,44,52,51,46,53,52,49,52,51,51,93,44,91,45,56,55,46,49,52,48,51,51,49,44,52,51,46,52,55,49,52,51,54,93,44,91,45,56,54,46,48,51,57,52,57,49,44,52,51,46,52,54,55,52,52,55,93,44,91,45,56,54,46,48,51,55,56,56,52,44,52,51,46,56,49,53,54,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,75,97,110,97,98,101,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,48,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,51,49,56,51,49,44,52,54,46,49,53,51,57,57,49,93,44,91,45,57,51,46,52,51,50,52,57,50,44,52,53,46,57,56,49,51,57,56,93,44,91,45,57,51,46,53,49,56,48,56,44,52,53,46,57,56,49,55,56,57,93,44,91,45,57,51,46,53,49,51,54,56,51,44,52,53,46,55,51,52,51,49,56,93,44,91,45,57,51,46,49,52,49,55,57,51,44,52,53,46,55,51,48,54,53,55,93,44,91,45,57,51,46,49,52,50,56,54,57,44,52,53,46,57,56,49,48,48,53,93,44,91,45,57,51,46,48,53,53,48,56,49,44,52,53,46,57,56,49,50,51,51,93,44,91,45,57,51,46,48,53,51,56,55,49,44,52,54,46,49,53,56,49,50,93,44,91,45,57,51,46,52,51,49,56,51,49,44,52,54,46,49,53,51,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,115,104,116,97,98,117,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,49,51,54,44,34,98,101,100,115,34,58,52,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,48,51,54,51,49,44,52,49,46,55,49,53,49,51,55,93,44,91,45,56,49,46,48,48,51,49,50,53,44,52,49,46,53,48,49,54,56,53,93,44,91,45,56,48,46,53,49,57,50,50,53,44,52,49,46,52,57,57,57,50,52,93,44,91,45,56,48,46,53,49,57,51,53,52,44,52,49,46,56,52,57,53,54,51,93,44,91,45,56,48,46,53,49,57,56,53,49,44,52,50,46,51,50,55,49,51,50,93,44,91,45,56,49,46,48,48,57,56,50,55,44,52,50,46,50,53,49,54,48,50,93,44,91,45,56,49,46,48,48,51,54,51,49,44,52,49,46,55,49,53,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,112,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,55,50,51,57,50,44,51,56,46,55,48,50,55,54,55,93,44,91,45,49,50,48,46,48,55,50,52,56,52,44,51,56,46,53,48,57,56,54,57,93,44,91,45,49,50,48,46,48,49,57,57,53,49,44,51,56,46,52,51,51,53,50,49,93,44,91,45,49,49,57,46,56,56,52,55,52,57,44,51,56,46,51,53,54,49,56,53,93,44,91,45,49,49,57,46,55,53,51,52,56,49,44,51,56,46,52,49,54,55,53,57,93,44,91,45,49,49,57,46,54,51,57,50,48,53,44,51,56,46,51,50,54,56,56,93,44,91,45,49,49,57,46,53,52,54,48,57,50,44,51,56,46,52,57,57,51,53,93,44,91,45,49,49,57,46,54,49,57,48,54,54,44,51,56,46,54,48,51,53,50,57,93,44,91,45,49,49,57,46,53,56,53,52,51,55,44,51,56,46,55,49,51,50,49,50,93,44,91,45,49,49,57,46,57,48,52,51,49,53,44,51,56,46,57,51,51,51,50,52,93,44,91,45,49,49,57,46,56,55,55,55,53,44,51,56,46,56,54,56,51,49,49,93,44,91,45,49,50,48,46,48,55,50,51,57,50,44,51,56,46,55,48,50,55,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,71,97,108,118,101,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,55,48,56,57,44,34,98,101,100,115,34,58,55,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,50,49,54,52,50,50,44,50,57,46,53,53,54,48,56,93,44,91,45,57,53,46,50,51,51,48,56,49,44,50,57,46,52,54,53,53,54,54,93,44,91,45,57,53,46,48,53,54,53,55,53,44,50,57,46,49,57,57,56,53,54,93,44,91,45,57,53,46,48,57,49,54,50,50,44,50,57,46,48,54,50,55,51,57,93,44,91,45,57,52,46,54,54,54,50,50,44,50,57,46,50,56,49,48,52,55,93,44,91,45,57,52,46,54,53,48,51,49,49,44,50,57,46,51,56,50,56,50,93,44,91,45,57,52,46,51,54,57,51,54,49,44,50,57,46,53,48,48,54,50,93,44,91,45,57,52,46,51,55,49,54,50,44,50,57,46,53,57,55,50,48,57,93,44,91,45,57,52,46,57,49,52,51,57,55,44,50,57,46,52,57,54,53,48,53,93,44,91,45,57,53,46,48,49,56,50,48,53,44,50,57,46,53,53,52,53,57,55,93,44,91,45,57,53,46,49,53,49,53,48,53,44,50,57,46,53,48,48,51,56,56,93,44,91,45,57,53,46,50,49,54,52,50,50,44,50,57,46,53,53,54,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,117,108,108,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,53,50,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,57,54,56,53,51,44,51,50,46,48,53,49,48,52,57,93,44,91,45,56,53,46,56,57,51,54,53,50,44,51,50,46,48,52,55,51,53,49,93,44,91,45,56,53,46,55,57,48,48,52,56,44,51,49,46,57,54,55,50,53,52,93,44,91,45,56,53,46,55,57,49,48,52,55,44,51,49,46,56,56,48,51,53,55,93,44,91,45,56,53,46,54,53,55,54,54,56,44,51,49,46,56,56,48,50,55,53,93,44,91,45,56,53,46,53,56,55,51,52,52,44,51,49,46,57,57,55,51,53,53,93,44,91,45,56,53,46,52,50,56,52,55,54,44,51,50,46,48,49,52,57,53,49,93,44,91,45,56,53,46,52,49,48,50,52,49,44,51,50,46,49,52,54,54,53,49,93,44,91,45,56,53,46,52,51,51,53,52,51,44,51,50,46,50,51,52,54,52,56,93,44,91,45,56,53,46,56,53,54,50,49,56,44,51,50,46,50,51,49,57,55,53,93,44,91,45,56,53,46,57,49,57,50,57,51,44,51,50,46,50,55,52,51,56,50,93,44,91,45,56,53,46,57,57,57,49,53,55,44,51,50,46,50,53,48,53,52,51,93,44,91,45,56,53,46,57,57,54,56,53,51,44,51,50,46,48,53,49,48,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,50,52,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,51,49,51,57,44,52,48,46,57,50,55,55,52,93,44,91,45,56,56,46,57,50,57,51,51,49,44,52,48,46,55,53,51,51,51,55,93,44,91,45,56,56,46,53,56,52,50,55,50,44,52,48,46,55,53,55,54,48,56,93,44,91,45,56,56,46,53,55,52,53,48,50,44,52,48,46,54,49,54,53,53,93,44,91,45,56,56,46,52,53,57,52,55,53,44,52,48,46,54,49,55,51,52,53,93,44,91,45,56,56,46,50,51,52,57,53,44,52,48,46,54,49,56,50,48,56,93,44,91,45,56,56,46,50,52,55,51,44,52,48,46,57,57,52,53,54,93,44,91,45,56,56,46,50,53,49,53,48,49,44,52,49,46,49,49,52,50,49,56,93,44,91,45,56,56,46,53,56,54,50,52,44,52,49,46,49,48,56,50,57,51,93,44,91,45,56,56,46,57,51,48,56,56,49,44,52,49,46,49,48,53,57,93,44,91,45,56,56,46,57,51,49,51,57,44,52,48,46,57,50,55,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,80,114,101,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,49,50,52,49,44,51,57,46,57,49,54,57,49,53,93,44,91,45,56,52,46,56,49,52,51,55,51,44,51,57,46,55,50,54,54,50,93,44,91,45,56,52,46,56,49,52,57,51,52,44,51,57,46,53,54,55,55,49,52,93,44,91,45,56,52,46,52,55,57,50,49,51,44,51,57,46,53,57,49,48,50,52,93,44,91,45,56,52,46,52,56,53,51,54,55,44,51,57,46,57,49,56,52,57,49,93,44,91,45,56,52,46,56,49,50,52,49,44,51,57,46,57,49,54,57,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,56,53,56,57,49,44,51,57,46,49,54,56,55,54,57,93,44,91,45,56,50,46,56,48,55,48,57,44,51,56,46,57,52,56,48,55,51,93,44,91,45,56,50,46,55,54,48,54,57,44,51,56,46,56,53,52,56,55,53,93,44,91,45,56,50,46,54,53,48,48,51,57,44,51,56,46,56,52,57,48,55,51,93,44,91,45,56,50,46,53,55,53,53,56,51,44,51,56,46,56,52,52,52,55,56,93,44,91,45,56,50,46,52,53,53,49,55,57,44,51,56,46,56,52,52,53,55,55,93,44,91,45,56,50,46,52,51,53,51,48,57,44,51,57,46,48,51,53,48,55,57,93,44,91,45,56,50,46,52,50,52,54,55,55,44,51,57,46,49,51,55,57,55,50,93,44,91,45,56,50,46,53,51,54,51,48,54,44,51,57,46,49,56,48,55,53,55,93,44,91,45,56,50,46,55,54,50,56,57,50,44,51,57,46,50,48,55,57,54,55,93,44,91,45,56,50,46,55,56,53,56,57,49,44,51,57,46,49,54,56,55,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,48,50,53,50,51,44,34,98,101,100,115,34,58,49,52,56,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,48,51,51,51,44,51,48,46,48,57,48,48,57,54,93,44,91,45,57,53,46,57,54,48,55,51,51,44,51,48,46,49,54,51,52,49,53,93,44,91,45,57,53,46,56,50,54,50,50,44,50,57,46,55,56,56,50,56,93,44,91,45,57,53,46,52,50,52,49,49,56,44,50,57,46,53,56,48,50,51,51,93,44,91,45,57,53,46,50,54,49,52,54,53,44,50,57,46,53,57,51,48,52,52,93,44,91,45,57,53,46,50,49,54,52,50,50,44,50,57,46,53,53,54,48,56,93,44,91,45,57,53,46,49,53,49,53,48,53,44,50,57,46,53,48,48,51,56,56,93,44,91,45,57,53,46,48,49,56,50,48,53,44,50,57,46,53,53,52,53,57,55,93,44,91,45,57,53,46,48,48,49,54,52,50,44,50,57,46,54,54,52,51,56,56,93,44,91,45,57,52,46,57,49,57,54,55,49,44,50,57,46,54,56,56,52,53,52,93,44,91,45,57,52,46,57,48,56,54,53,52,44,50,57,46,56,50,53,49,56,49,93,44,91,45,57,52,46,57,56,49,52,54,44,50,57,46,56,56,52,50,55,54,93,44,91,45,57,53,46,48,57,54,55,48,56,44,51,48,46,49,54,55,50,49,52,93,44,91,45,57,53,46,50,54,52,49,51,56,44,51,48,46,48,51,50,48,54,57,93,44,91,45,57,53,46,52,50,52,50,49,54,44,51,48,46,49,49,53,52,57,49,93,44,91,45,57,53,46,54,48,49,49,51,50,44,51,48,46,49,51,50,55,56,93,44,91,45,57,53,46,56,48,51,51,51,44,51,48,46,48,57,48,48,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,77,105,100,100,108,101,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,53,49,57,50,44,34,98,101,100,115,34,58,52,48,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,56,57,56,55,55,51,44,52,50,46,55,49,49,51,49,50,93,44,91,45,55,49,46,56,52,52,56,52,51,44,52,50,46,54,51,55,57,56,53,93,44,91,45,55,49,46,54,54,52,54,48,49,44,52,50,46,54,49,49,53,57,56,93,44,91,45,55,49,46,53,51,49,51,55,55,44,52,50,46,53,50,48,51,53,50,93,44,91,45,55,49,46,53,56,53,50,49,44,52,50,46,51,49,48,57,53,50,93,44,91,45,55,49,46,53,56,50,57,49,44,52,50,46,49,57,53,53,53,57,93,44,91,45,55,49,46,52,55,56,49,49,57,44,52,50,46,49,53,54,55,56,50,93,44,91,45,55,49,46,49,57,49,49,53,53,44,52,50,46,50,56,51,48,53,57,93,44,91,45,55,49,46,49,54,52,55,48,50,44,52,50,46,51,48,51,56,51,93,44,91,45,55,49,46,49,53,55,48,51,54,44,52,50,46,51,51,48,51,57,93,44,91,45,55,49,46,48,50,53,56,51,54,44,52,50,46,52,52,52,55,48,57,93,44,91,45,55,49,46,49,51,53,52,48,53,44,52,50,46,53,57,57,48,56,93,44,91,45,55,49,46,50,53,54,49,56,56,44,52,50,46,54,53,55,49,52,53,93,44,91,45,55,49,46,50,53,53,49,52,55,44,52,50,46,55,51,54,53,53,52,93,44,91,45,55,49,46,50,57,52,54,51,55,44,52,50,46,54,57,55,48,52,50,93,44,91,45,55,49,46,56,57,56,55,55,51,44,52,50,46,55,49,49,51,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,86,101,103,97,32,66,97,106,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,51,55,49,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,52,51,54,55,53,50,44,49,56,46,53,52,48,56,48,53,93,44,91,45,54,54,46,52,52,51,56,44,49,56,46,51,55,49,48,50,55,93,44,91,45,54,54,46,51,55,55,48,53,56,44,49,56,46,51,52,52,50,52,54,93,44,91,45,54,54,46,51,53,48,48,57,51,44,49,56,46,53,52,49,48,49,52,93,44,91,45,54,54,46,52,51,54,55,53,50,44,49,56,46,53,52,48,56,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,68,97,119,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,54,52,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,57,49,50,56,52,44,51,50,46,57,54,49,56,51,56,93,44,91,45,49,48,50,46,48,55,54,50,49,52,44,51,50,46,57,53,57,55,48,50,93,44,91,45,49,48,50,46,50,48,56,53,50,44,51,50,46,57,53,56,57,53,54,93,44,91,45,49,48,50,46,50,48,50,55,48,51,44,51,50,46,53,50,51,50,55,49,93,44,91,45,49,48,49,46,54,56,56,55,52,44,51,50,46,53,50,53,50,50,50,93,44,91,45,49,48,49,46,54,57,49,50,56,52,44,51,50,46,57,54,49,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,79,110,116,97,114,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,52,55,50,44,34,98,101,100,115,34,58,51,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,55,49,52,55,56,44,52,51,46,48,51,52,54,57,54,93,44,91,45,55,55,46,52,56,53,52,49,56,44,52,51,46,48,51,52,53,54,52,93,44,91,45,55,55,46,53,56,48,51,55,55,44,52,50,46,57,52,51,57,54,51,93,44,91,45,55,55,46,53,57,56,56,49,53,44,52,50,46,54,55,49,57,54,53,93,44,91,45,55,55,46,52,57,48,56,56,57,44,52,50,46,53,55,55,50,56,56,93,44,91,45,55,55,46,51,54,54,53,48,53,44,52,50,46,53,55,54,51,54,56,93,44,91,45,55,55,46,51,49,51,48,48,52,44,52,50,46,55,54,49,50,54,53,93,44,91,45,55,54,46,57,55,49,51,57,50,44,52,50,46,55,54,52,50,50,51,93,44,91,45,55,54,46,57,54,51,57,50,54,44,52,51,46,48,49,51,49,53,55,93,44,91,45,55,55,46,49,51,52,51,51,53,44,52,51,46,48,51,57,57,50,54,93,44,91,45,55,55,46,51,55,49,52,55,56,44,52,51,46,48,51,52,54,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,49,34,44,34,78,65,77,69,34,58,34,86,97,108,100,101,122,45,67,111,114,100,111,118,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,48,49,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,52,54,46,52,57,52,51,49,49,44,54,51,46,49,54,56,57,55,53,93,44,91,45,49,52,54,46,52,57,52,50,57,54,44,54,50,46,57,53,55,56,54,52,93,44,91,45,49,52,54,46,52,51,54,56,57,57,44,54,50,46,56,53,54,57,57,49,93,44,91,45,49,52,54,46,52,50,51,57,56,52,44,54,50,46,50,53,48,53,49,49,93,44,91,45,49,52,54,46,57,55,57,56,48,55,44,54,50,46,50,53,48,52,57,55,93,44,91,45,49,52,54,46,57,52,50,54,48,49,44,54,49,46,56,49,55,50,55,50,93,44,91,45,49,52,54,46,57,52,50,53,53,57,44,54,49,46,52,55,48,54,55,53,93,44,91,45,49,52,55,46,50,48,54,53,57,55,44,54,49,46,52,50,54,50,54,53,93,44,91,45,49,52,56,46,52,54,50,52,55,49,44,54,49,46,52,50,54,50,54,55,93,44,91,45,49,52,56,46,52,55,50,48,54,53,44,54,48,46,56,52,56,53,50,93,44,91,45,49,52,56,46,55,51,56,51,54,51,44,54,48,46,56,52,56,53,52,54,93,44,91,45,49,52,56,46,55,52,53,54,49,56,44,54,48,46,55,51,51,48,48,55,93,44,91,45,49,52,56,46,54,53,55,49,49,57,44,54,48,46,55,51,50,57,55,54,93,44,91,45,49,52,56,46,54,54,52,52,55,44,54,48,46,52,49,53,49,56,51,93,44,91,45,49,52,56,46,53,54,51,55,49,53,44,54,48,46,52,49,53,49,55,50,93,44,91,45,49,52,56,46,53,56,54,49,56,44,53,57,46,57,51,56,53,56,53,93,44,91,45,49,52,56,46,57,52,56,55,54,50,44,53,57,46,56,57,50,55,49,56,93,44,91,45,49,52,56,46,50,49,56,53,48,54,44,53,57,46,56,55,53,54,52,93,44,91,45,49,52,55,46,57,53,54,52,51,57,44,53,57,46,55,52,52,49,51,49,93,44,91,45,49,52,55,46,54,56,55,50,52,44,53,57,46,55,52,49,54,56,93,44,91,45,49,52,55,46,51,51,52,56,50,55,44,53,57,46,56,51,51,56,55,52,93,44,91,45,49,52,55,46,50,52,49,55,52,44,53,57,46,57,57,56,51,49,55,93,44,91,45,49,52,55,46,49,48,49,57,52,44,54,48,46,48,56,49,51,51,55,93,44,91,45,49,52,54,46,57,51,57,50,55,57,44,54,48,46,49,48,51,56,52,56,93,44,91,45,49,52,54,46,49,55,57,51,48,57,44,54,48,46,50,56,48,48,53,54,93,44,91,45,49,52,53,46,56,50,52,51,50,51,44,54,48,46,51,49,53,49,49,55,93,44,91,45,49,52,53,46,51,49,55,54,56,55,44,54,48,46,49,55,57,54,57,49,93,44,91,45,49,52,52,46,55,55,54,48,49,53,44,54,48,46,49,50,57,53,57,50,93,44,91,45,49,52,52,46,53,51,57,54,56,52,44,54,48,46,48,49,48,49,52,57,93,44,91,45,49,52,52,46,55,55,55,55,57,56,44,53,57,46,56,50,57,57,51,53,93,44,91,45,49,52,52,46,54,55,54,55,55,44,53,57,46,55,50,55,51,57,53,93,44,91,45,49,52,52,46,52,49,48,53,48,57,44,53,57,46,55,52,54,50,55,52,93,44,91,45,49,52,52,46,49,52,52,48,55,56,44,53,57,46,57,49,57,52,53,50,93,44,91,45,49,52,51,46,56,57,53,50,49,44,53,57,46,57,52,50,54,52,55,93,44,91,45,49,52,51,46,56,57,51,51,50,53,44,54,48,46,48,50,52,49,54,54,93,44,91,45,49,52,51,46,49,57,51,53,49,57,44,54,48,46,53,50,49,56,50,56,93,44,91,45,49,52,49,46,55,57,48,54,49,57,44,54,48,46,53,50,49,56,57,57,93,44,91,45,49,52,49,46,55,57,48,54,48,49,44,54,48,46,52,51,53,50,51,56,93,44,91,45,49,52,49,46,50,49,51,52,53,49,44,54,48,46,52,51,53,50,54,56,93,44,91,45,49,52,49,46,48,48,49,57,53,53,44,54,48,46,51,57,49,54,56,56,93,44,91,45,49,52,49,46,48,48,49,57,57,53,44,54,49,46,51,48,51,53,54,56,93,44,91,45,49,52,49,46,48,48,50,50,54,55,44,54,49,46,57,48,52,48,52,55,93,44,91,45,49,52,49,46,56,51,49,56,48,52,44,54,49,46,57,48,52,48,53,51,93,44,91,45,49,52,49,46,56,51,49,56,49,50,44,54,50,46,49,49,55,49,55,56,93,44,91,45,49,52,49,46,57,55,55,51,51,54,44,54,50,46,49,54,51,57,56,51,93,44,91,45,49,52,49,46,57,55,55,51,53,51,44,54,50,46,53,49,48,53,53,57,93,44,91,45,49,52,50,46,51,49,51,53,54,52,44,54,50,46,54,56,51,56,50,56,93,44,91,45,49,52,50,46,55,51,49,50,51,51,44,54,50,46,55,48,56,50,56,50,93,44,91,45,49,52,50,46,56,52,56,53,55,57,44,54,50,46,54,48,48,53,52,55,93,44,91,45,49,52,51,46,49,48,52,57,57,54,44,54,50,46,54,49,52,57,48,53,93,44,91,45,49,52,51,46,48,53,55,56,51,52,44,54,50,46,55,55,48,53,52,93,44,91,45,49,52,51,46,49,54,52,51,53,44,54,50,46,56,51,52,53,54,57,93,44,91,45,49,52,51,46,48,51,50,50,51,56,44,54,50,46,57,51,49,55,57,49,93,44,91,45,49,52,51,46,49,51,50,51,51,55,44,54,51,46,49,49,54,57,55,56,93,44,91,45,49,52,52,46,53,56,48,49,53,57,44,54,51,46,49,49,54,57,51,49,93,44,91,45,49,52,53,46,49,53,52,51,56,53,44,54,51,46,49,51,49,49,52,57,93,44,91,45,49,52,53,46,49,53,52,51,57,53,44,54,51,46,50,49,55,55,56,49,93,44,91,45,49,52,54,46,49,49,49,52,56,54,44,54,51,46,50,49,55,55,54,50,93,44,91,45,49,52,54,46,52,57,52,51,49,49,44,54,51,46,49,54,56,57,55,53,93,93,93,44,91,91,91,45,49,52,54,46,53,48,56,50,56,44,53,57,46,51,57,48,55,50,55,93,44,91,45,49,52,54,46,52,48,50,52,55,57,44,53,57,46,51,51,52,55,54,50,93,44,91,45,49,52,54,46,49,52,57,53,51,53,44,53,57,46,52,49,55,49,55,53,93,44,91,45,49,52,54,46,50,57,55,56,54,51,44,53,57,46,53,56,51,57,48,51,93,44,91,45,49,52,54,46,52,50,51,55,53,57,44,53,57,46,53,53,56,55,49,52,93,44,91,45,49,52,54,46,53,48,56,50,56,44,53,57,46,51,57,48,55,50,55,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,117,116,97,117,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,50,48,48,44,34,98,101,100,115,34,58,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,49,55,53,57,53,44,51,50,46,54,54,52,49,54,57,93,44,91,45,56,54,46,57,48,54,55,52,50,44,51,50,46,53,51,54,57,55,55,93,44,91,45,56,54,46,56,49,52,57,49,50,44,51,50,46,51,52,48,56,48,51,93,44,91,45,56,54,46,54,53,51,52,49,57,44,51,50,46,51,57,55,50,52,55,93,44,91,45,56,54,46,52,57,54,55,55,52,44,51,50,46,51,52,52,52,51,55,93,44,91,45,56,54,46,52,49,49,49,55,50,44,51,50,46,52,48,57,57,51,55,93,44,91,45,56,54,46,52,49,51,49,49,54,44,51,50,46,55,48,55,51,56,54,93,44,91,45,56,54,46,55,49,52,50,49,57,44,51,50,46,55,48,53,54,57,52,93,44,91,45,56,54,46,57,49,55,53,57,53,44,51,50,46,54,54,52,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,105,97,109,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,49,50,55,44,34,98,101,100,115,34,58,50,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,53,54,52,49,50,44,51,56,46,55,51,56,53,56,55,93,44,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,44,91,45,57,52,46,54,49,51,50,51,50,44,51,56,46,51,56,56,55,49,56,93,44,91,45,57,52,46,54,49,50,56,56,50,44,51,56,46,52,55,55,53,57,55,93,44,91,45,57,52,46,54,48,57,48,56,44,51,56,46,55,51,56,48,57,57,93,44,91,45,57,53,46,48,53,54,52,49,50,44,51,56,46,55,51,56,53,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,68,111,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,49,57,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,52,54,53,50,56,44,51,50,46,50,55,50,52,56,57,93,44,91,45,56,51,46,50,57,49,49,48,54,44,51,50,46,49,55,56,56,50,53,93,44,91,45,56,51,46,51,51,55,51,49,51,44,51,50,46,49,48,53,56,56,53,93,44,91,45,56,51,46,50,48,53,55,51,57,44,51,49,46,57,48,48,51,50,53,93,44,91,45,56,50,46,57,50,55,56,54,53,44,51,50,46,49,51,53,50,55,52,93,44,91,45,56,50,46,56,56,52,56,48,51,44,51,50,46,49,57,54,48,55,50,93,44,91,45,56,50,46,57,57,48,57,54,55,44,51,50,46,49,52,55,50,55,52,93,44,91,45,56,51,46,49,51,56,57,57,49,44,51,50,46,52,50,51,48,54,57,93,44,91,45,56,51,46,49,55,51,50,53,50,44,51,50,46,52,53,50,53,51,51,93,44,91,45,56,51,46,51,52,54,53,50,56,44,51,50,46,50,55,50,52,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,111,114,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,49,50,51,44,34,98,101,100,115,34,58,49,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,50,55,52,54,55,51,44,52,50,46,55,55,49,50,53,55,93,44,91,45,55,54,46,50,54,53,53,56,52,44,52,50,46,54,50,51,53,56,56,93,44,91,45,55,54,46,50,53,51,51,53,57,44,52,50,46,52,48,55,53,54,56,93,44,91,45,55,54,46,49,51,48,49,56,49,44,52,50,46,52,49,48,51,51,55,93,44,91,45,55,53,46,56,54,52,48,50,44,52,50,46,52,49,53,55,48,50,93,44,91,45,55,53,46,56,56,57,56,51,50,44,52,50,46,55,50,51,56,52,52,93,44,91,45,55,53,46,56,57,54,48,55,57,44,52,50,46,55,57,48,57,54,52,93,44,91,45,55,54,46,50,55,52,54,55,51,44,52,50,46,55,55,49,50,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,97,109,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,49,52,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,51,54,48,48,54,44,51,49,46,48,52,55,57,57,51,93,44,91,45,56,49,46,57,48,52,56,53,53,44,51,48,46,56,50,56,51,52,93,44,91,45,56,49,46,55,49,56,49,48,57,44,51,48,46,55,52,52,56,48,54,93,44,91,45,56,49,46,51,52,55,48,49,53,44,51,48,46,55,49,50,52,52,52,93,44,91,45,56,49,46,52,48,48,52,56,50,44,51,48,46,55,54,54,52,50,54,93,44,91,45,56,49,46,51,48,54,52,51,53,44,51,48,46,57,57,48,54,52,52,93,44,91,45,56,49,46,52,50,51,55,55,53,44,51,48,46,57,57,48,56,57,50,93,44,91,45,56,49,46,53,54,53,49,49,54,44,51,49,46,48,57,49,57,52,93,44,91,45,56,49,46,55,54,54,51,50,50,44,51,49,46,49,54,57,53,57,53,93,44,91,45,56,49,46,57,51,54,48,48,54,44,51,49,46,48,52,55,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,116,101,110,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,53,57,54,49,44,34,98,101,100,115,34,58,49,57,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,51,49,49,51,54,44,52,50,46,52,50,52,53,54,55,93,44,91,45,56,52,46,49,51,49,57,54,51,44,52,50,46,48,55,49,53,55,55,93,44,91,45,56,51,46,55,55,51,57,50,50,44,52,50,46,48,56,50,52,51,93,44,91,45,56,51,46,53,51,57,51,57,54,44,52,50,46,48,56,53,53,57,56,93,44,91,45,56,51,46,53,53,49,57,48,55,44,52,50,46,52,51,53,49,54,54,93,44,91,45,56,51,46,54,54,52,56,48,56,44,52,50,46,52,51,49,49,55,57,93,44,91,45,56,52,46,49,51,49,49,51,54,44,52,50,46,52,50,52,53,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,76,97,71,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,57,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,57,55,53,44,52,49,46,55,53,57,48,54,56,93,44,91,45,56,53,46,54,53,52,55,52,55,44,52,49,46,53,50,51,51,52,55,93,44,91,45,56,53,46,49,57,52,48,56,52,44,52,49,46,53,50,54,52,51,55,93,44,91,45,56,53,46,49,57,54,55,55,52,44,52,49,46,55,53,57,54,52,52,93,44,91,45,56,53,46,50,57,50,49,55,57,44,52,49,46,55,53,57,56,56,57,93,44,91,45,56,53,46,54,53,57,55,53,44,52,49,46,55,53,57,48,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,55,49,34,44,34,78,65,77,69,34,58,34,80,101,99,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,57,55,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,49,49,48,52,44,51,49,46,51,55,49,51,48,54,93,44,91,45,49,48,51,46,53,56,53,48,56,52,44,51,48,46,55,54,54,52,55,93,44,91,45,49,48,51,46,52,51,57,57,55,54,44,51,48,46,54,54,53,57,51,57,93,44,91,45,49,48,50,46,53,54,55,48,52,57,44,51,48,46,48,53,50,56,48,56,93,44,91,45,49,48,50,46,53,54,54,57,51,55,44,51,48,46,50,56,51,50,54,57,93,44,91,45,49,48,50,46,51,52,51,48,56,53,44,51,48,46,50,56,52,49,49,54,93,44,91,45,49,48,50,46,51,52,50,57,56,54,44,51,48,46,53,57,56,55,53,57,93,44,91,45,49,48,50,46,49,51,56,52,48,54,44,51,48,46,53,57,55,53,50,49,93,44,91,45,49,48,50,46,49,51,55,55,55,56,44,51,48,46,54,53,53,57,56,50,93,44,91,45,49,48,49,46,55,54,56,52,50,44,51,48,46,54,53,51,48,55,55,93,44,91,45,49,48,49,46,56,51,52,53,50,56,44,51,48,46,55,53,55,57,52,57,93,44,91,45,49,48,49,46,56,55,52,50,55,54,44,51,48,46,57,49,50,50,51,54,93,44,91,45,49,48,49,46,57,56,52,53,50,55,44,51,48,46,57,56,55,52,52,53,93,44,91,45,49,48,50,46,50,57,50,54,56,49,44,51,49,46,48,51,54,54,55,55,93,44,91,45,49,48,50,46,51,56,56,56,48,52,44,51,49,46,48,56,55,49,53,54,93,44,91,45,49,48,50,46,52,51,48,49,50,51,44,51,49,46,49,57,51,57,49,56,93,44,91,45,49,48,50,46,54,55,51,50,52,52,44,51,49,46,51,50,56,49,48,53,93,44,91,45,49,48,50,46,55,54,55,51,54,53,44,51,49,46,50,57,51,56,48,51,93,44,91,45,49,48,50,46,56,50,53,49,49,54,44,51,49,46,50,54,54,57,49,52,93,44,91,45,49,48,51,46,48,49,49,48,52,44,51,49,46,51,55,49,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,53,34,44,34,78,65,77,69,34,58,34,80,101,97,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,54,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,48,49,48,57,44,51,50,46,54,57,49,53,57,56,93,44,91,45,56,51,46,55,54,54,57,54,51,44,51,50,46,54,57,50,52,57,53,93,44,91,45,56,52,46,48,48,51,51,54,51,44,51,50,46,53,50,57,57,50,55,93,44,91,45,56,52,46,48,48,56,52,57,44,51,50,46,53,50,49,55,54,57,93,44,91,45,56,52,46,48,49,56,49,52,55,44,51,50,46,53,48,54,52,48,54,93,44,91,45,56,51,46,56,52,54,54,55,54,44,51,50,46,52,54,56,53,49,52,93,44,91,45,56,51,46,55,49,57,56,53,57,44,51,50,46,53,51,49,55,54,93,44,91,45,56,51,46,55,48,49,48,57,44,51,50,46,54,57,49,53,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,49,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,56,48,51,52,54,44,51,52,46,55,57,50,57,48,53,93,44,91,45,56,51,46,56,53,54,53,48,54,44,51,52,46,55,50,50,49,57,49,93,44,91,45,56,51,46,56,52,51,52,48,53,44,51,52,46,53,48,53,52,57,52,93,44,91,45,56,51,46,54,54,54,52,49,53,44,51,52,46,53,48,51,54,48,50,93,44,91,45,56,51,46,54,51,50,51,49,55,44,51,52,46,53,50,56,53,56,55,93,44,91,45,56,51,46,54,50,51,50,57,54,44,51,52,46,55,51,50,49,57,52,93,44,91,45,56,51,46,54,56,49,53,57,54,44,51,52,46,56,48,48,56,56,50,93,44,91,45,56,51,46,55,56,48,51,52,54,44,51,52,46,55,57,50,57,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,55,50,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,49,57,53,55,44,51,51,46,50,55,52,56,51,93,44,91,45,56,50,46,54,54,49,57,49,55,44,51,51,46,49,50,54,51,51,49,93,44,91,45,56,50,46,53,52,55,57,49,51,44,51,51,46,48,48,56,53,51,51,93,44,91,45,56,50,46,53,50,49,48,53,50,44,51,50,46,56,50,50,51,53,54,93,44,91,45,56,50,46,52,51,52,49,52,57,44,51,50,46,55,54,50,50,53,56,93,44,91,45,56,50,46,51,49,54,53,49,50,44,51,50,46,56,51,53,55,55,50,93,44,91,45,56,50,46,50,55,50,51,53,51,44,51,50,46,57,51,55,55,57,54,93,44,91,45,56,50,46,50,57,49,49,56,44,51,51,46,48,54,50,56,50,55,93,44,91,45,56,50,46,50,51,51,48,54,50,44,51,51,46,50,50,55,55,52,93,44,91,45,56,50,46,50,54,55,53,56,44,51,51,46,50,54,55,51,57,55,93,44,91,45,56,50,46,51,53,51,52,57,56,44,51,51,46,51,49,50,51,49,56,93,44,91,45,56,50,46,51,56,51,56,50,57,44,51,51,46,51,49,50,49,48,54,93,44,91,45,56,50,46,52,51,49,57,53,55,44,51,51,46,50,55,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,79,99,111,110,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,53,53,54,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,55,55,57,57,54,44,52,53,46,51,55,56,54,56,51,93,44,91,45,56,56,46,54,56,48,48,54,54,44,52,53,46,50,48,52,57,57,52,93,44,91,45,56,56,46,54,52,49,49,53,57,44,52,53,46,49,49,55,51,52,54,93,44,91,45,56,56,46,52,56,51,55,51,50,44,52,53,46,49,49,54,56,56,55,93,44,91,45,56,56,46,52,56,57,49,52,57,44,52,52,46,56,53,53,52,52,53,93,44,91,45,56,56,46,50,52,56,50,49,51,44,52,52,46,56,53,50,55,51,57,93,44,91,45,56,56,46,50,52,50,54,56,55,44,52,52,46,54,55,57,54,51,49,93,44,91,45,56,55,46,55,54,50,51,51,57,44,52,52,46,54,55,55,48,49,53,93,44,91,45,56,55,46,55,54,50,52,54,52,44,52,52,46,55,54,52,51,54,55,93,44,91,45,56,55,46,55,54,48,48,55,49,44,52,52,46,57,57,48,53,51,93,44,91,45,56,56,46,49,50,49,49,53,50,44,52,53,46,48,50,51,53,56,49,93,44,91,45,56,56,46,49,56,54,51,53,53,44,52,53,46,49,57,55,57,55,52,93,44,91,45,56,56,46,51,48,57,48,54,51,44,52,53,46,50,48,49,53,56,93,44,91,45,56,56,46,51,48,53,56,49,49,44,52,53,46,51,55,52,54,49,93,44,91,45,56,56,46,52,50,56,49,48,50,44,52,53,46,51,55,55,48,49,93,44,91,45,56,56,46,54,55,55,57,57,54,44,52,53,46,51,55,56,54,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,52,55,34,44,34,78,65,77,69,34,58,34,78,97,99,111,103,100,111,99,104,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,53,53,56,44,34,98,101,100,115,34,58,51,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,51,55,53,51,50,44,51,49,46,56,52,53,53,53,53,93,44,91,45,57,52,46,57,54,53,50,50,51,44,51,49,46,54,57,51,56,56,53,93,44,91,45,57,52,46,56,54,53,56,53,55,44,51,49,46,53,50,54,57,49,54,93,44,91,45,57,52,46,55,50,56,52,53,54,44,51,49,46,52,53,55,49,52,55,93,44,91,45,57,52,46,53,53,52,56,51,56,44,51,49,46,52,51,53,49,50,51,93,44,91,45,57,52,46,52,54,54,54,55,54,44,51,49,46,51,55,56,48,48,57,93,44,91,45,57,52,46,51,50,54,54,49,54,44,51,49,46,50,50,52,55,53,52,93,44,91,45,57,52,46,51,49,49,49,44,51,49,46,53,56,56,52,56,50,93,44,91,45,57,52,46,51,57,57,48,57,49,44,51,49,46,54,53,51,53,57,54,93,44,91,45,57,52,46,52,53,50,52,49,54,44,51,49,46,56,52,52,50,56,49,93,44,91,45,57,52,46,57,51,55,53,51,50,44,51,49,46,56,52,53,53,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,52,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,82,104,111,100,101,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,82,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,50,52,50,44,34,98,101,100,115,34,58,50,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,55,49,46,51,56,48,53,52,50,44,52,49,46,54,53,48,51,50,54,93,44,91,45,55,49,46,52,56,52,52,50,55,44,52,49,46,54,48,50,53,57,49,93,44,91,45,55,49,46,55,56,57,50,52,55,44,52,49,46,53,57,54,56,52,55,93,44,91,45,55,49,46,55,57,55,55,52,55,44,52,49,46,52,49,54,56,51,52,93,44,91,45,55,49,46,57,48,55,50,53,56,44,52,49,46,51,48,52,52,56,51,93,44,91,45,55,49,46,55,57,48,57,55,50,44,52,49,46,49,56,52,49,48,49,93,44,91,45,55,49,46,55,57,49,52,56,44,52,49,46,50,55,50,49,54,53,93,44,91,45,55,49,46,53,48,57,52,52,50,44,52,49,46,51,48,55,55,51,50,93,44,91,45,55,49,46,52,48,57,48,57,57,44,52,49,46,52,54,56,50,48,50,93,44,91,45,55,49,46,51,56,48,53,52,50,44,52,49,46,54,53,48,51,50,54,93,93,93,44,91,91,91,45,55,49,46,54,55,56,56,48,55,44,52,49,46,49,53,56,57,49,50,93,44,91,45,55,49,46,54,49,49,54,55,51,44,52,49,46,48,57,55,52,49,51,93,44,91,45,55,49,46,52,55,54,57,50,53,44,52,49,46,49,54,56,49,53,55,93,44,91,45,55,49,46,52,57,50,49,57,54,44,52,49,46,50,52,48,56,55,54,93,44,91,45,55,49,46,54,50,52,53,48,52,44,52,49,46,50,55,52,49,50,57,93,44,91,45,55,49,46,54,55,56,56,48,55,44,52,49,46,49,53,56,57,49,50,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,79,107,97,110,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,51,56,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,55,48,50,48,54,57,44,52,56,46,53,51,49,53,56,57,93,44,91,45,49,50,48,46,54,52,57,57,51,51,44,52,56,46,51,57,56,49,51,57,93,44,91,45,49,50,48,46,51,52,54,50,56,52,44,52,56,46,49,57,57,57,56,54,93,44,91,45,49,50,48,46,51,54,49,50,56,56,44,52,56,46,49,53,55,53,54,57,93,44,91,45,49,50,48,46,49,52,51,57,51,49,44,52,56,46,48,54,53,52,52,52,93,44,91,45,49,50,48,46,48,52,56,54,52,54,44,52,55,46,57,54,48,54,50,56,93,44,91,45,49,49,57,46,56,55,48,53,57,53,44,52,55,46,57,54,48,52,53,53,93,44,91,45,49,49,57,46,56,57,53,51,53,44,52,56,46,48,53,48,48,52,52,93,44,91,45,49,49,57,46,54,56,50,57,56,49,44,52,56,46,48,57,50,53,49,51,93,44,91,45,49,49,57,46,54,53,50,52,54,56,44,52,56,46,48,48,48,50,50,49,93,44,91,45,49,49,57,46,52,51,54,50,53,55,44,52,56,46,48,55,54,54,56,56,93,44,91,45,49,49,57,46,51,52,51,53,50,51,44,52,56,46,48,52,57,52,51,50,93,44,91,45,49,49,57,46,49,53,48,57,56,51,44,52,56,46,49,52,54,48,54,55,93,44,91,45,49,49,57,46,48,53,54,57,55,44,52,56,46,49,51,54,57,55,52,93,44,91,45,49,49,56,46,57,56,50,50,51,52,44,52,55,46,57,54,50,48,50,53,93,44,91,45,49,49,56,46,57,55,51,53,48,52,44,52,55,46,57,52,51,52,49,52,93,44,91,45,49,49,56,46,56,53,49,57,54,44,52,55,46,57,53,55,57,48,54,93,44,91,45,49,49,56,46,56,51,54,54,49,52,44,52,57,46,48,48,48,48,56,51,93,44,91,45,49,50,48,46,48,51,55,53,53,52,44,52,56,46,57,57,57,52,52,52,93,44,91,45,49,50,48,46,56,53,49,53,50,56,44,52,57,46,48,48,48,51,48,49,93,44,91,45,49,50,48,46,55,54,56,53,49,53,44,52,56,46,57,53,52,52,57,93,44,91,45,49,50,48,46,55,51,53,52,50,55,44,52,56,46,55,56,54,52,56,55,93,44,91,45,49,50,48,46,55,53,49,57,48,52,44,52,56,46,54,53,55,48,48,50,93,44,91,45,49,50,48,46,55,48,50,48,54,57,44,52,56,46,53,51,49,53,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,83,112,111,107,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,55,56,55,53,44,34,98,101,100,115,34,58,49,56,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,52,51,54,57,57,51,44,52,56,46,48,52,55,50,48,55,93,44,91,45,49,49,55,46,53,51,53,50,54,50,44,52,56,46,48,52,55,55,55,57,93,44,91,45,49,49,55,46,53,51,53,50,54,50,44,52,55,46,55,57,52,52,53,56,93,44,91,45,49,49,55,46,54,57,55,55,55,52,44,52,55,46,56,53,54,50,55,56,93,44,91,45,49,49,55,46,56,50,48,57,52,55,44,52,55,46,56,50,53,55,55,53,93,44,91,45,49,49,55,46,56,50,51,54,50,57,44,52,55,46,50,54,48,50,50,93,44,91,45,49,49,55,46,48,51,57,56,55,56,44,52,55,46,50,53,57,50,55,50,93,44,91,45,49,49,55,46,48,51,57,56,48,56,44,52,55,46,51,54,54,48,51,49,93,44,91,45,49,49,55,46,48,52,50,48,56,57,44,52,55,46,57,55,55,52,53,93,44,91,45,49,49,55,46,48,52,49,56,55,55,44,52,56,46,48,52,53,52,54,54,93,44,91,45,49,49,55,46,52,51,54,57,57,51,44,52,56,46,48,52,55,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,70,111,114,101,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,52,55,54,48,49,44,52,53,46,56,57,53,51,53,53,93,44,91,45,56,57,46,48,52,54,52,57,44,52,53,46,52,54,52,52,51,57,93,44,91,45,56,56,46,57,50,54,48,50,53,44,52,53,46,51,55,56,54,51,55,93,44,91,45,56,56,46,54,55,55,57,57,54,44,52,53,46,51,55,56,54,56,51,93,44,91,45,56,56,46,52,50,56,49,48,50,44,52,53,46,51,55,55,48,49,93,44,91,45,56,56,46,52,50,53,51,48,50,44,52,53,46,55,50,50,52,50,54,93,44,91,45,56,56,46,54,55,53,56,50,49,44,52,53,46,55,50,50,57,93,44,91,45,56,56,46,54,56,51,51,49,50,44,52,54,46,48,49,52,49,49,51,93,44,91,45,56,56,46,57,51,50,55,53,55,44,52,54,46,48,55,51,54,54,56,93,44,91,45,56,56,46,57,51,51,50,50,50,44,52,53,46,57,56,50,50,55,54,93,44,91,45,56,57,46,48,52,55,54,48,49,44,52,53,46,56,57,53,51,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,83,97,119,121,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,55,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,53,49,50,56,50,44,52,54,46,49,53,55,48,52,53,93,44,91,45,57,49,46,53,52,48,50,57,52,44,52,53,46,54,51,55,54,48,53,93,44,91,45,57,48,46,54,55,56,55,52,57,44,52,53,46,54,51,56,50,54,52,93,44,91,45,57,48,46,54,55,54,57,54,56,44,52,53,46,57,56,49,53,53,52,93,44,91,45,57,48,46,57,50,53,49,55,52,44,52,53,46,57,56,49,48,53,53,93,44,91,45,57,48,46,57,50,52,53,56,51,44,52,54,46,49,53,52,54,49,54,93,44,91,45,57,49,46,53,53,49,50,56,50,44,52,54,46,49,53,55,48,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,72,117,100,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,56,54,51,49,44,34,98,101,100,115,34,58,49,56,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,56,52,55,57,52,44,52,48,46,55,57,55,54,56,55,93,44,91,45,55,52,46,49,52,55,53,50,57,44,52,48,46,55,56,54,52,57,49,93,44,91,45,55,52,46,49,51,54,55,48,51,44,52,48,46,54,55,52,52,52,52,93,44,91,45,55,52,46,49,54,49,52,50,56,44,52,48,46,54,52,52,49,52,56,93,44,91,45,55,52,46,48,53,53,55,51,57,44,52,48,46,54,53,49,55,54,93,44,91,45,55,52,46,48,51,52,53,55,51,44,52,48,46,54,56,52,56,54,54,93,44,91,45,55,51,46,57,56,52,55,57,52,44,52,48,46,55,57,55,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,116,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,52,55,53,44,34,98,101,100,115,34,58,49,54,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,57,51,50,52,57,44,52,48,46,57,56,56,53,51,49,93,44,91,45,56,49,46,52,50,48,51,54,51,44,52,48,46,57,48,54,53,48,50,93,44,91,45,56,49,46,54,52,55,55,51,53,44,52,48,46,57,49,52,48,49,54,93,44,91,45,56,49,46,54,53,48,48,52,53,44,52,48,46,54,54,56,49,49,55,93,44,91,45,56,49,46,54,52,57,49,57,57,44,52,48,46,54,51,53,49,48,54,93,44,91,45,56,49,46,51,49,55,55,51,57,44,52,48,46,54,53,49,53,55,57,93,44,91,45,56,49,46,50,51,55,50,50,55,44,52,48,46,55,50,51,53,52,50,93,44,91,45,56,49,46,48,56,55,50,56,57,44,52,48,46,55,50,55,56,49,54,93,44,91,45,56,49,46,48,56,54,54,55,57,44,52,48,46,57,48,49,54,48,57,93,44,91,45,56,49,46,48,56,54,51,49,50,44,52,48,46,57,56,56,48,51,49,93,44,91,45,56,49,46,51,57,51,50,52,57,44,52,48,46,57,56,56,53,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,71,117,97,100,97,108,117,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,49,51,55,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,55,53,50,53,57,44,50,57,46,56,53,56,50,48,56,93,44,91,45,57,55,46,57,57,57,50,55,49,44,50,57,46,55,53,50,52,52,52,93,44,91,45,57,56,46,48,56,57,50,55,55,44,50,57,46,54,56,51,57,51,49,93,44,91,45,57,56,46,51,49,48,57,50,56,44,50,57,46,53,57,52,52,55,51,93,44,91,45,57,56,46,49,51,52,49,55,49,44,50,57,46,52,52,49,55,53,49,93,44,91,45,57,56,46,49,50,50,53,55,52,44,50,57,46,51,55,56,53,52,57,93,44,91,45,57,55,46,56,52,48,51,56,51,44,50,57,46,51,55,54,55,57,49,93,44,91,45,57,55,46,54,51,51,49,55,54,44,50,57,46,54,52,57,56,54,51,93,44,91,45,57,55,46,55,51,53,55,50,44,50,57,46,54,57,49,49,57,56,93,44,91,45,57,55,46,56,55,53,50,53,57,44,50,57,46,56,53,56,50,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,54,51,54,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,56,54,51,48,55,56,44,52,56,46,51,55,48,51,54,49,93,44,91,45,49,50,50,46,56,54,50,54,56,52,44,52,56,46,50,52,51,54,53,56,93,44,91,45,49,50,50,46,54,52,50,50,53,54,44,52,56,46,48,57,51,55,55,93,44,91,45,49,50,50,46,54,48,54,55,54,44,52,55,46,57,55,50,57,53,51,93,44,91,45,49,50,50,46,52,50,57,54,50,53,44,52,55,46,56,50,56,48,57,56,93,44,91,45,49,50,50,46,51,50,56,52,54,51,44,52,55,46,57,54,51,55,54,51,93,44,91,45,49,50,50,46,51,53,48,50,56,57,44,52,56,46,48,56,48,51,49,50,93,44,91,45,49,50,50,46,52,53,56,53,57,54,44,52,56,46,50,57,55,55,48,51,93,44,91,45,49,50,50,46,53,57,49,57,52,52,44,52,56,46,52,49,55,55,53,56,93,44,91,45,49,50,50,46,55,51,53,50,51,49,44,52,56,46,52,48,53,57,51,50,93,44,91,45,49,50,50,46,56,54,51,48,55,56,44,52,56,46,51,55,48,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,49,55,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,50,53,53,55,50,44,51,57,46,52,57,51,50,56,57,93,44,91,45,55,56,46,48,51,51,49,57,49,44,51,57,46,50,54,52,54,49,50,93,44,91,45,55,55,46,56,50,56,50,57,57,44,51,57,46,49,51,50,52,50,54,93,44,91,45,55,55,46,55,49,57,53,49,57,44,51,57,46,51,50,49,51,49,52,93,44,91,45,55,55,46,56,50,53,53,55,50,44,51,57,46,52,57,51,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,80,114,105,110,99,101,32,87,105,108,108,105,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,55,52,57,44,34,98,101,100,115,34,58,50,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,53,53,49,54,57,44,51,56,46,57,52,50,54,53,54,93,44,91,45,55,55,46,55,49,53,55,49,53,44,51,56,46,56,51,50,49,51,54,93,44,91,45,55,55,46,53,51,49,51,50,56,44,51,56,46,53,53,54,53,53,93,44,91,45,55,55,46,52,55,54,56,52,55,44,51,56,46,53,57,50,50,56,54,93,44,91,45,55,55,46,50,57,53,52,48,54,44,51,56,46,53,48,57,50,51,57,93,44,91,45,55,55,46,50,50,55,51,51,54,44,51,56,46,54,48,52,53,55,93,44,91,45,55,55,46,50,50,51,54,56,51,44,51,56,46,54,53,50,48,54,52,93,44,91,45,55,55,46,53,51,53,57,57,49,44,51,56,46,56,52,55,51,54,56,93,44,91,45,55,55,46,54,53,53,49,54,57,44,51,56,46,57,52,50,54,53,54,93,93,44,91,91,45,55,55,46,52,53,56,54,57,53,44,51,56,46,55,55,50,51,49,57,93,44,91,45,55,55,46,52,53,49,54,52,50,44,51,56,46,55,51,56,51,51,55,93,44,91,45,55,55,46,52,57,57,52,51,44,51,56,46,55,51,55,49,51,55,93,44,91,45,55,55,46,52,55,53,55,54,44,51,56,46,55,56,49,49,55,49,93,44,91,45,55,55,46,52,50,48,53,56,49,44,51,56,46,55,54,50,50,56,55,93,44,91,45,55,55,46,52,50,55,51,51,50,44,51,56,46,55,53,51,53,57,56,93,44,91,45,55,55,46,52,53,56,54,57,53,44,51,56,46,55,55,50,51,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,49,53,54,44,34,98,101,100,115,34,58,49,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,54,57,54,55,56,50,44,52,48,46,50,52,49,56,54,51,93,44,91,45,55,53,46,56,55,51,51,55,53,44,52,48,46,49,51,55,49,48,55,93,44,91,45,55,53,46,57,57,52,54,50,57,44,51,57,46,57,53,50,52,50,57,93,44,91,45,55,53,46,57,56,54,56,50,51,44,51,57,46,56,57,50,49,57,50,93,44,91,45,55,54,46,49,51,53,52,56,52,44,51,57,46,55,50,49,49,52,55,93,44,91,45,55,53,46,55,56,56,53,57,54,44,51,57,46,55,50,50,49,57,57,93,44,91,45,55,53,46,53,57,52,56,56,44,51,57,46,56,51,55,53,50,53,93,44,91,45,55,53,46,53,50,51,56,49,54,44,51,57,46,57,52,52,49,50,52,93,44,91,45,55,53,46,51,54,49,48,54,54,44,52,48,46,48,54,53,53,52,51,93,44,91,45,55,53,46,53,55,51,51,51,56,44,52,48,46,49,57,53,51,48,51,93,44,91,45,55,53,46,54,57,54,55,56,50,44,52,48,46,50,52,49,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,52,56,54,44,34,98,101,100,115,34,58,52,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,49,49,50,48,49,44,51,55,46,52,50,52,53,48,57,93,44,91,45,56,49,46,51,54,50,49,53,54,44,51,55,46,51,51,55,54,56,55,93,44,91,45,56,49,46,50,50,53,49,48,52,44,51,55,46,50,51,52,56,55,52,93,44,91,45,56,48,46,57,56,48,49,52,54,44,51,55,46,50,57,50,55,52,51,93,44,91,45,56,48,46,56,52,57,52,53,49,44,51,55,46,51,52,54,57,48,57,93,44,91,45,56,48,46,56,53,57,52,53,55,44,51,55,46,52,50,57,52,57,49,93,44,91,45,56,49,46,48,57,52,54,51,44,51,55,46,53,56,56,54,53,56,93,44,91,45,56,49,46,50,50,50,49,50,49,44,51,55,46,53,49,48,52,49,54,93,44,91,45,56,49,46,51,49,49,50,48,49,44,51,55,46,52,50,52,53,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,82,111,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,56,57,55,44,34,98,101,100,115,34,58,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,49,56,49,50,44,51,54,46,48,52,56,57,55,55,93,44,91,45,56,52,46,52,52,54,48,53,52,44,51,53,46,57,56,53,57,56,52,93,44,91,45,56,52,46,54,56,48,54,51,51,44,51,53,46,57,48,56,52,53,52,93,44,91,45,56,52,46,55,56,49,57,48,49,44,51,53,46,56,50,53,93,44,91,45,56,52,46,55,50,51,56,53,51,44,51,53,46,55,53,50,56,57,54,93,44,91,45,56,52,46,54,49,57,56,54,53,44,51,53,46,54,52,52,54,53,49,93,44,91,45,56,52,46,53,56,52,52,55,50,44,51,53,46,54,52,52,52,50,52,93,44,91,45,56,52,46,53,51,57,57,54,51,44,51,53,46,54,55,48,52,54,53,93,44,91,45,56,52,46,50,54,51,51,56,51,44,51,53,46,56,57,54,57,52,93,44,91,45,56,52,46,50,55,49,53,56,55,44,51,53,46,57,49,48,49,54,53,93,44,91,45,56,52,46,51,52,49,56,49,50,44,51,54,46,48,52,56,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,108,97,108,108,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,52,56,55,44,34,98,101,100,115,34,58,49,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,55,49,53,48,49,54,44,52,55,46,56,55,57,56,53,57,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,56,56,49,48,56,93,44,91,45,49,50,50,46,57,52,57,49,54,55,44,52,55,46,56,54,54,56,50,50,93,44,91,45,49,50,50,46,57,53,50,51,56,54,44,52,56,46,51,52,57,55,48,54,93,44,91,45,49,50,51,46,50,52,55,57,49,57,44,52,56,46,50,56,52,53,53,56,93,44,91,45,49,50,51,46,53,52,49,50,49,54,44,52,56,46,50,50,52,53,53,51,93,44,91,45,49,50,52,46,48,49,50,48,53,54,44,52,56,46,50,57,54,54,55,49,93,44,91,45,49,50,52,46,55,52,57,55,52,44,52,56,46,52,57,57,55,56,51,93,44,91,45,49,50,52,46,56,49,54,57,57,51,44,52,56,46,51,56,53,52,55,53,93,44,91,45,49,50,52,46,55,54,49,51,56,55,44,52,56,46,50,57,53,54,56,56,93,44,91,45,49,50,52,46,56,52,56,53,51,55,44,52,56,46,49,55,52,48,48,53,93,44,91,45,49,50,52,46,55,56,53,49,56,55,44,52,56,46,48,56,55,49,49,53,93,44,91,45,49,50,52,46,55,57,49,49,54,50,44,52,55,46,57,54,49,55,48,53,93,44,91,45,49,50,52,46,55,49,53,48,49,54,44,52,55,46,56,55,57,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,83,116,101,118,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,50,49,52,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,49,57,55,51,55,53,44,52,57,46,48,48,48,48,54,56,93,44,91,45,49,49,56,46,50,49,52,52,56,51,44,52,56,46,56,56,56,49,54,49,93,44,91,45,49,49,56,46,49,48,52,57,54,44,52,56,46,54,53,51,53,48,51,93,44,91,45,49,49,56,46,50,48,54,53,48,55,44,52,56,46,52,55,48,50,57,54,93,44,91,45,49,49,56,46,49,51,57,55,57,49,44,52,56,46,50,54,55,51,48,56,93,44,91,45,49,49,56,46,50,52,56,54,48,54,44,52,56,46,49,51,52,50,53,53,93,44,91,45,49,49,56,46,50,51,51,52,57,56,44,52,56,46,48,54,51,52,56,53,93,44,91,45,49,49,56,46,52,48,48,56,48,55,44,52,56,46,48,50,56,54,56,50,93,44,91,45,49,49,56,46,51,52,48,57,51,56,44,52,55,46,56,57,52,51,49,54,93,44,91,45,49,49,56,46,50,49,50,51,50,51,44,52,55,46,57,52,53,52,57,51,93,44,91,45,49,49,56,46,48,55,56,49,56,50,44,52,55,46,56,48,48,48,54,50,93,44,91,45,49,49,55,46,56,50,48,57,52,55,44,52,55,46,56,50,53,55,55,53,93,44,91,45,49,49,55,46,54,57,55,55,55,52,44,52,55,46,56,53,54,50,55,56,93,44,91,45,49,49,55,46,53,51,53,50,54,50,44,52,55,46,55,57,52,52,53,56,93,44,91,45,49,49,55,46,53,51,53,50,54,50,44,52,56,46,48,52,55,55,55,57,93,44,91,45,49,49,55,46,52,51,54,57,57,51,44,52,56,46,48,52,55,50,48,55,93,44,91,45,49,49,55,46,53,48,50,51,55,49,44,52,56,46,49,51,52,55,48,56,93,44,91,45,49,49,55,46,52,57,57,57,55,53,44,52,56,46,54,53,54,49,56,55,93,44,91,45,49,49,55,46,53,54,51,56,53,56,44,52,56,46,56,51,54,54,55,49,93,44,91,45,49,49,55,46,52,50,57,57,54,56,44,52,57,46,48,48,48,52,54,54,93,44,91,45,49,49,56,46,49,57,55,51,55,53,44,52,57,46,48,48,48,48,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,86,97,110,32,66,117,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,44,91,45,57,50,46,49,55,57,55,56,44,52,48,46,54,48,48,53,50,57,93,44,91,45,57,49,46,57,52,51,49,49,50,44,52,48,46,54,48,53,56,50,55,93,44,91,45,57,49,46,55,49,54,55,54,57,44,52,48,46,53,57,56,53,51,93,44,91,45,57,49,46,55,49,56,55,56,55,44,52,48,46,56,49,51,53,52,52,93,44,91,45,57,49,46,55,49,56,49,56,44,52,48,46,57,48,49,48,56,55,93,44,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,111,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,56,49,55,52,51,44,52,48,46,55,48,48,48,48,51,93,44,91,45,57,57,46,57,56,49,49,57,51,44,52,48,46,52,51,56,50,57,49,93,44,91,45,49,48,48,46,48,57,52,55,57,56,44,52,48,46,51,53,49,50,52,53,93,44,91,45,57,57,46,54,52,50,50,48,57,44,52,48,46,51,53,49,50,93,44,91,45,57,57,46,54,52,51,52,54,50,44,52,48,46,54,56,52,57,49,49,93,44,91,45,57,57,46,57,56,49,55,52,51,44,52,48,46,55,48,48,48,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,56,52,48,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,52,51,51,53,50,44,51,52,46,48,56,57,48,52,52,93,44,91,45,56,56,46,55,49,56,57,54,52,44,51,52,46,48,55,52,53,50,49,93,44,91,45,56,56,46,55,49,57,57,55,57,44,51,51,46,56,49,49,51,51,93,44,91,45,56,56,46,55,49,57,54,50,54,44,51,51,46,54,56,48,50,53,51,93,44,91,45,56,56,46,53,49,51,57,49,55,44,51,51,46,54,53,48,50,48,57,93,44,91,45,56,56,46,50,52,56,57,49,54,44,51,51,46,55,52,52,57,55,55,93,44,91,45,56,56,46,50,48,55,50,50,57,44,51,52,46,48,53,56,51,51,51,93,44,91,45,56,56,46,50,48,51,56,54,52,44,51,52,46,48,56,54,53,54,52,93,44,91,45,56,56,46,53,52,51,51,53,50,44,51,52,46,48,56,57,48,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,69,115,99,97,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,49,53,50,50,44,34,98,101,100,115,34,58,49,54,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,57,56,56,50,57,44,51,48,46,57,57,55,52,53,53,93,44,91,45,56,55,46,54,50,54,50,50,52,44,51,48,46,56,52,54,54,54,52,93,44,91,45,56,55,46,51,57,51,50,57,52,44,51,48,46,54,50,55,50,49,56,93,44,91,45,56,55,46,52,52,53,49,48,51,44,51,48,46,53,50,56,57,48,57,93,44,91,45,56,55,46,51,54,57,51,56,51,44,51,48,46,52,51,49,57,52,56,93,44,91,45,56,55,46,52,57,57,57,56,44,51,48,46,51,50,56,57,53,55,93,44,91,45,56,55,46,53,49,56,51,52,54,44,51,48,46,50,50,57,53,48,54,93,44,91,45,56,55,46,50,57,54,52,53,55,44,51,48,46,50,55,50,54,57,93,44,91,45,56,54,46,57,49,54,54,48,55,44,51,48,46,51,49,56,55,50,52,93,44,91,45,56,54,46,57,50,48,49,49,51,44,51,48,46,51,56,54,53,54,55,93,44,91,45,56,55,46,49,55,56,57,54,56,44,51,48,46,51,51,52,53,57,57,93,44,91,45,56,55,46,49,50,52,57,54,56,44,51,48,46,53,48,48,49,57,54,93,44,91,45,56,55,46,50,54,48,54,55,55,44,51,48,46,54,50,49,51,54,51,93,44,91,45,56,55,46,51,49,50,52,48,57,44,51,48,46,55,51,52,55,55,93,44,91,45,56,55,46,50,56,50,50,57,44,51,48,46,57,50,52,56,50,57,93,44,91,45,56,55,46,49,54,51,54,53,51,44,51,48,46,57,57,57,48,50,57,93,44,91,45,56,55,46,53,57,56,56,50,57,44,51,48,46,57,57,55,52,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,51,57,34,44,34,78,65,77,69,34,58,34,84,97,114,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,57,57,55,55,44,34,98,101,100,115,34,58,54,57,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,51,50,50,56,55,44,51,50,46,57,56,57,51,50,52,93,44,91,45,57,55,46,51,57,56,52,56,44,51,50,46,57,57,48,56,51,57,93,44,91,45,57,55,46,53,52,52,49,56,49,44,51,50,46,57,57,52,49,55,55,93,44,91,45,57,55,46,53,53,48,53,56,50,44,51,50,46,53,53,53,51,57,49,93,44,91,45,57,55,46,48,56,54,56,51,52,44,51,50,46,53,52,57,52,50,56,93,44,91,45,57,55,46,48,51,56,51,56,53,44,51,50,46,53,52,56,54,54,50,93,44,91,45,57,55,46,48,51,50,50,56,55,44,51,50,46,57,56,57,51,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,80,114,105,110,99,101,32,71,101,111,114,103,101,39,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,54,50,48,50,44,34,98,101,100,115,34,58,54,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,48,48,50,52,51,54,44,51,56,46,57,54,53,54,55,51,93,44,91,45,55,54,46,57,48,57,51,57,51,44,51,56,46,56,57,50,56,53,50,93,44,91,45,55,55,46,48,51,57,48,48,54,44,51,56,46,55,57,49,54,52,53,93,44,91,45,55,55,46,48,52,49,51,54,50,44,51,56,46,55,56,53,52,49,53,93,44,91,45,55,55,46,48,56,54,51,57,49,44,51,56,46,55,48,54,50,50,55,93,44,91,45,55,54,46,55,52,55,53,55,44,51,56,46,54,49,55,51,51,53,93,44,91,45,55,54,46,54,55,53,52,53,55,44,51,56,46,53,51,53,56,55,54,93,44,91,45,55,54,46,54,56,54,51,53,56,44,51,56,46,55,52,56,52,55,53,93,44,91,45,55,54,46,54,57,56,50,54,56,44,51,56,46,57,56,51,54,52,55,93,44,91,45,55,54,46,56,52,48,51,54,50,44,51,57,46,49,48,51,49,52,50,93,44,91,45,55,54,46,56,56,56,53,48,53,44,51,57,46,49,51,48,57,54,55,93,44,91,45,55,55,46,48,48,50,52,51,54,44,51,56,46,57,54,53,54,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,55,49,53,57,53,44,51,54,46,56,48,48,48,51,49,93,44,91,45,56,50,46,57,52,55,54,52,55,44,51,54,46,54,55,53,55,53,49,93,44,91,45,56,50,46,57,56,53,49,50,52,44,51,54,46,53,57,51,55,50,57,93,44,91,45,56,50,46,56,51,48,52,51,51,44,51,54,46,53,57,51,55,54,49,93,44,91,45,56,50,46,54,48,57,49,55,54,44,51,54,46,53,57,52,48,57,57,93,44,91,45,56,50,46,50,57,52,49,51,52,44,51,54,46,53,57,53,54,57,55,93,44,91,45,56,50,46,51,51,50,48,55,56,44,51,54,46,55,48,56,57,54,57,93,44,91,45,56,50,46,52,48,54,54,51,51,44,51,54,46,56,55,54,51,53,54,93,44,91,45,56,50,46,54,49,55,55,52,44,51,54,46,56,56,48,55,55,51,93,44,91,45,56,50,46,55,55,49,53,57,53,44,51,54,46,56,48,48,48,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,50,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,53,56,52,54,54,44,50,57,46,50,54,51,56,55,54,93,44,91,45,57,54,46,57,51,56,53,56,55,44,50,57,46,48,54,51,50,52,52,93,44,91,45,57,54,46,56,51,56,55,57,53,44,50,57,46,48,50,53,51,50,55,93,44,91,45,57,54,46,55,57,50,49,51,51,44,50,56,46,57,49,56,56,48,51,93,44,91,45,57,54,46,54,52,51,52,52,50,44,50,56,46,55,49,50,49,48,53,93,44,91,45,57,54,46,51,50,51,53,50,50,44,50,56,46,54,55,53,53,57,55,93,44,91,45,57,54,46,51,48,57,49,55,56,44,50,56,46,57,54,51,50,57,49,93,44,91,45,57,54,46,54,52,48,51,49,53,44,50,57,46,50,52,55,56,48,52,93,44,91,45,57,54,46,54,53,56,52,54,54,44,50,57,46,50,54,51,56,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,111,118,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,51,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,56,52,49,54,51,44,51,51,46,57,49,53,53,49,93,44,91,45,57,55,46,51,55,52,54,57,44,51,51,46,56,49,56,53,53,50,93,44,91,45,57,55,46,50,53,53,54,51,57,44,51,51,46,56,54,51,55,48,50,93,44,91,45,57,55,46,49,53,52,51,54,55,44,51,51,46,55,50,52,48,57,52,93,44,91,45,57,55,46,48,57,53,54,52,52,44,51,51,46,55,50,57,50,50,50,93,44,91,45,57,54,46,57,52,52,54,49,49,44,51,51,46,57,52,57,50,49,55,93,44,91,45,57,54,46,57,51,52,56,52,44,51,51,46,57,53,52,52,53,51,93,44,91,45,57,54,46,57,54,57,54,50,55,44,51,52,46,48,55,49,48,50,93,44,91,45,57,55,46,53,54,48,55,54,49,44,51,52,46,48,55,49,49,53,93,44,91,45,57,55,46,53,54,48,56,53,56,44,51,51,46,56,57,57,54,52,53,93,44,91,45,57,55,46,52,56,52,49,54,51,44,51,51,46,57,49,53,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,57,34,44,34,78,65,77,69,34,58,34,84,119,105,103,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,49,51,53,49,49,44,51,50,46,56,52,52,56,54,56,93,44,91,45,56,51,46,53,57,55,54,53,54,44,51,50,46,54,54,52,51,51,56,93,44,91,45,56,51,46,52,57,55,57,50,51,44,51,50,46,52,53,50,49,57,56,93,44,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,44,91,45,56,51,46,52,48,54,57,57,44,51,50,46,56,57,56,50,50,93,44,91,45,56,51,46,53,49,51,53,49,49,44,51,50,46,56,52,52,56,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,97,104,111,110,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,48,54,52,44,34,98,101,100,115,34,58,49,48,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,48,50,50,57,44,52,49,46,49,51,52,49,56,57,93,44,91,45,56,49,46,48,48,49,54,57,53,44,52,48,46,57,56,55,55,56,51,93,44,91,45,56,49,46,48,56,54,51,49,50,44,52,48,46,57,56,56,48,51,49,93,44,91,45,56,49,46,48,56,54,54,55,57,44,52,48,46,57,48,49,54,48,57,93,44,91,45,56,48,46,53,49,57,49,53,44,52,48,46,57,48,48,51,50,54,93,44,91,45,56,48,46,53,49,57,48,51,55,44,52,49,46,49,50,53,48,57,51,93,44,91,45,56,48,46,53,49,57,48,52,56,44,52,49,46,49,51,51,51,57,52,93,44,91,45,56,49,46,48,48,50,50,57,44,52,49,46,49,51,52,49,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,53,52,44,34,98,101,100,115,34,58,49,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,56,54,49,52,56,44,51,50,46,52,57,51,48,53,51,93,44,91,45,56,54,46,48,50,51,48,49,50,44,51,50,46,52,49,57,57,55,56,93,44,91,45,56,53,46,57,49,57,50,57,51,44,51,50,46,50,55,52,51,56,50,93,44,91,45,56,53,46,56,53,54,50,49,56,44,51,50,46,50,51,49,57,55,53,93,44,91,45,56,53,46,52,51,51,53,52,51,44,51,50,46,50,51,52,54,52,56,93,44,91,45,56,53,46,52,51,52,48,52,53,44,51,50,46,52,48,57,56,52,93,44,91,45,56,53,46,52,56,57,51,52,56,44,51,50,46,52,57,54,57,51,55,93,44,91,45,56,53,46,54,57,53,56,53,52,44,51,50,46,53,57,53,57,51,51,93,44,91,45,56,53,46,55,57,56,53,56,53,44,51,50,46,53,56,49,48,56,57,93,44,91,45,56,53,46,56,56,54,49,52,56,44,51,50,46,52,57,51,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,56,55,44,34,98,101,100,115,34,58,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,57,56,52,53,57,44,51,56,46,54,48,54,48,54,50,93,44,91,45,56,56,46,54,57,56,57,54,49,44,51,56,46,52,55,52,57,49,52,93,44,91,45,56,56,46,55,48,50,51,57,49,44,51,56,46,50,53,54,54,54,49,93,44,91,45,56,56,46,51,55,48,51,55,53,44,51,56,46,50,53,53,51,49,57,93,44,91,45,56,56,46,49,53,48,56,57,49,44,51,56,46,50,53,54,49,53,54,93,44,91,45,56,56,46,49,52,55,56,48,51,44,51,56,46,53,54,57,48,51,55,93,44,91,45,56,56,46,50,53,51,57,55,56,44,51,56,46,53,57,57,53,48,50,93,44,91,45,56,56,46,54,57,56,52,53,57,44,51,56,46,54,48,54,48,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,51,55,34,44,34,78,65,77,69,34,58,34,83,119,105,115,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,56,52,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,57,57,56,52,57,51,44,51,52,46,55,52,56,49,57,93,44,91,45,49,48,49,46,57,57,56,48,50,44,51,52,46,51,49,51,48,51,57,93,44,91,45,49,48,49,46,53,54,52,56,53,54,44,51,52,46,51,49,50,52,57,51,93,44,91,45,49,48,49,46,52,55,49,53,56,44,51,52,46,51,49,50,50,57,93,44,91,45,49,48,49,46,52,55,49,53,54,50,44,51,52,46,55,52,55,52,54,50,93,44,91,45,49,48,49,46,54,50,57,50,53,55,44,51,52,46,55,52,55,54,52,57,93,44,91,45,49,48,49,46,57,57,56,52,57,51,44,51,52,46,55,52,56,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,79,115,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,48,56,57,56,51,44,51,56,46,53,55,48,57,93,44,91,45,57,50,46,48,48,56,55,44,51,56,46,53,48,48,48,51,56,93,44,91,45,57,50,46,49,52,57,50,57,49,44,51,56,46,52,51,49,49,53,50,93,44,91,45,57,50,46,49,57,52,52,55,54,44,51,56,46,51,51,53,53,51,54,93,44,91,45,57,50,46,49,57,53,54,55,53,44,51,56,46,50,57,50,50,51,55,93,44,91,45,57,49,46,54,52,52,55,50,57,44,51,56,46,50,56,56,53,49,93,44,91,45,57,49,46,54,52,48,51,55,50,44,51,56,46,55,48,51,55,57,50,93,44,91,45,57,49,46,54,52,55,49,55,49,44,51,56,46,55,48,51,51,57,54,93,44,91,45,57,49,46,56,54,57,52,56,57,44,51,56,46,54,54,51,57,52,93,44,91,45,57,50,46,48,48,56,57,56,51,44,51,56,46,53,55,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,75,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,48,56,51,57,44,34,98,101,100,115,34,58,49,52,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,56,56,54,53,55,44,52,50,46,49,53,51,53,57,93,44,91,45,56,56,46,54,48,49,57,51,51,44,52,49,46,55,49,57,53,54,51,93,44,91,45,56,56,46,50,54,49,57,53,50,44,52,49,46,55,50,52,54,53,50,93,44,91,45,56,56,46,50,54,50,56,55,53,44,52,49,46,57,56,54,51,55,56,93,44,91,45,56,56,46,50,51,56,52,52,57,44,52,50,46,49,53,52,50,52,57,93,44,91,45,56,56,46,53,56,56,54,53,55,44,52,50,46,49,53,51,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,69,108,32,68,111,114,97,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,54,54,49,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,49,52,49,53,57,53,44,51,56,46,55,49,49,57,51,57,93,44,91,45,49,50,49,46,48,50,55,53,48,55,44,51,56,46,53,48,56,50,57,50,93,44,91,45,49,50,48,46,56,50,51,50,56,51,44,51,56,46,53,53,57,54,56,55,93,44,91,45,49,50,48,46,54,50,56,52,50,56,44,51,56,46,53,48,51,50,48,52,93,44,91,45,49,50,48,46,50,55,52,53,50,50,44,51,56,46,53,53,57,52,53,50,93,44,91,45,49,50,48,46,48,55,50,51,57,50,44,51,56,46,55,48,50,55,54,55,93,44,91,45,49,49,57,46,56,55,55,55,53,44,51,56,46,56,54,56,51,49,49,93,44,91,45,49,49,57,46,57,48,52,51,49,53,44,51,56,46,57,51,51,51,50,52,93,44,91,45,49,50,48,46,48,48,50,52,54,49,44,51,57,46,48,54,55,52,56,57,93,44,91,45,49,50,48,46,49,56,52,48,57,56,44,51,57,46,48,51,49,48,49,52,93,44,91,45,49,50,48,46,52,51,53,50,52,44,51,57,46,48,50,56,51,57,55,93,44,91,45,49,50,48,46,53,55,50,51,53,50,44,51,56,46,57,49,52,52,93,44,91,45,49,50,48,46,55,51,48,49,55,52,44,51,57,46,48,48,51,57,53,56,93,44,91,45,49,50,48,46,57,51,52,54,53,51,44,51,56,46,57,54,51,55,57,49,93,44,91,45,49,50,49,46,48,53,50,57,49,49,44,51,56,46,57,48,48,49,52,52,93,44,91,45,49,50,49,46,49,52,49,53,57,53,44,51,56,46,55,49,49,57,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,75,101,114,115,104,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,51,54,49,44,34,98,101,100,115,34,58,49,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,55,57,50,50,55,44,51,52,46,52,53,55,55,55,54,93,44,91,45,56,48,46,55,54,57,57,50,54,44,51,52,46,51,55,55,49,49,49,93,44,91,45,56,48,46,56,50,53,57,50,49,44,51,52,46,50,54,56,55,54,93,44,91,45,56,48,46,56,54,57,53,50,52,44,51,52,46,49,56,50,50,55,49,93,44,91,45,56,48,46,55,49,57,51,49,56,44,51,52,46,48,54,56,57,55,50,93,44,91,45,56,48,46,54,49,54,49,56,54,44,51,52,46,48,57,57,54,48,53,93,44,91,45,56,48,46,52,55,57,56,53,55,44,51,52,46,49,54,56,54,57,54,93,44,91,45,56,48,46,52,50,48,52,56,52,44,51,52,46,50,57,51,48,55,52,93,44,91,45,56,48,46,50,56,56,54,57,50,44,51,52,46,51,54,52,49,51,57,93,44,91,45,56,48,46,50,56,56,53,57,54,44,51,52,46,51,54,54,50,48,55,93,44,91,45,56,48,46,51,50,55,53,57,44,51,52,46,52,57,55,55,54,93,44,91,45,56,48,46,52,48,56,51,55,51,44,51,52,46,54,49,52,55,54,53,93,44,91,45,56,48,46,53,53,48,53,53,50,44,51,52,46,53,54,48,49,49,54,93,44,91,45,56,48,46,54,53,56,52,49,55,44,51,52,46,52,55,56,54,49,50,93,44,91,45,56,48,46,55,52,51,51,52,53,44,51,52,46,53,51,57,57,49,54,93,44,91,45,56,48,46,56,55,57,50,50,55,44,51,52,46,52,53,55,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,97,116,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,49,53,57,55,55,44,51,54,46,53,52,51,56,56,52,93,44,91,45,55,54,46,57,51,51,52,55,44,51,54,46,52,48,49,56,55,93,44,91,45,55,54,46,55,55,57,52,54,55,44,51,54,46,51,54,50,52,54,57,93,44,91,45,55,54,46,54,57,54,53,55,49,44,51,54,46,50,57,54,49,51,56,93,44,91,45,55,54,46,53,53,57,54,52,54,44,51,54,46,51,53,49,48,53,54,93,44,91,45,55,54,46,52,53,51,55,49,49,44,51,54,46,51,55,56,48,57,50,93,44,91,45,55,54,46,52,57,49,51,51,54,44,51,54,46,53,49,48,54,55,55,93,44,91,45,55,54,46,53,52,49,57,54,54,44,51,54,46,53,53,48,54,53,51,93,44,91,45,55,54,46,57,49,53,56,57,57,44,51,54,46,53,53,50,49,52,57,93,44,91,45,55,54,46,57,49,53,57,55,55,44,51,54,46,53,52,51,56,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,79,116,101,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,48,49,55,54,52,44,51,56,46,50,54,53,48,49,54,93,44,91,45,49,48,51,46,53,48,57,51,54,52,44,51,56,46,49,55,50,53,49,52,93,44,91,45,49,48,51,46,54,49,57,49,55,50,44,51,56,46,49,49,51,51,53,53,93,44,91,45,49,48,51,46,56,51,53,54,49,54,44,51,56,46,49,49,51,51,52,93,44,91,45,49,48,52,46,48,53,56,50,52,50,44,51,56,46,49,52,54,52,57,50,93,44,91,45,49,48,52,46,48,54,49,49,51,50,44,51,55,46,55,51,52,55,48,52,93,44,91,45,49,48,52,46,48,53,56,49,57,54,44,51,55,46,54,52,52,48,52,57,93,44,91,45,49,48,51,46,52,48,52,51,51,57,44,51,55,46,54,52,51,53,55,54,93,44,91,45,49,48,51,46,51,57,57,57,51,56,44,51,56,46,50,54,53,52,51,53,93,44,91,45,49,48,51,46,53,48,49,55,54,52,44,51,56,46,50,54,53,48,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,51,50,51,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,50,57,48,50,51,54,44,52,51,46,54,49,48,57,53,57,93,44,91,45,49,50,51,46,56,55,53,54,57,56,44,52,51,46,54,48,56,52,48,55,93,44,91,45,49,50,51,46,56,55,53,54,50,56,44,52,51,46,53,49,53,57,52,55,93,44,91,45,49,50,51,46,55,54,49,53,50,56,44,52,51,46,52,50,50,50,57,52,93,44,91,45,49,50,51,46,55,48,52,55,53,50,44,52,51,46,50,53,55,55,52,49,93,44,91,45,49,50,51,46,55,48,50,49,52,52,44,52,51,46,48,56,55,48,56,51,93,44,91,45,49,50,51,46,56,50,49,49,49,56,44,52,50,46,57,57,54,50,57,49,93,44,91,45,49,50,51,46,56,49,49,53,53,51,44,52,50,46,55,56,56,56,51,55,93,44,91,45,49,50,51,46,55,49,54,52,57,50,44,52,50,46,55,56,52,48,54,49,93,44,91,45,49,50,51,46,52,52,53,52,53,54,44,52,50,46,55,48,51,48,50,53,93,44,91,45,49,50,51,46,50,50,57,54,49,57,44,52,50,46,55,48,50,54,49,93,44,91,45,49,50,51,46,49,53,50,50,51,51,44,52,50,46,55,53,53,56,51,53,93,44,91,45,49,50,50,46,55,57,52,55,55,54,44,52,50,46,55,55,56,50,50,49,93,44,91,45,49,50,50,46,53,54,48,50,55,51,44,52,50,46,57,51,57,49,56,53,93,44,91,45,49,50,50,46,52,48,49,48,50,53,44,52,50,46,57,57,54,54,51,50,93,44,91,45,49,50,50,46,50,56,50,55,51,44,52,50,46,57,57,54,52,57,57,93,44,91,45,49,50,50,46,50,56,50,53,56,53,44,52,51,46,48,54,55,55,49,57,93,44,91,45,49,50,50,46,48,57,51,55,55,54,44,52,51,46,48,55,54,50,53,55,93,44,91,45,49,50,49,46,57,56,48,53,53,52,44,52,51,46,50,54,53,49,56,93,44,91,45,49,50,50,46,48,50,50,54,54,50,44,52,51,46,51,54,50,51,48,52,93,44,91,45,49,50,50,46,49,51,50,48,51,52,44,52,51,46,52,52,48,50,50,49,93,44,91,45,49,50,50,46,55,52,49,55,49,54,44,52,51,46,52,51,55,51,57,53,93,44,91,45,49,50,50,46,55,52,49,56,52,53,44,52,51,46,53,52,52,54,53,52,93,44,91,45,49,50,51,46,49,48,55,54,56,54,44,52,51,46,53,52,48,48,49,93,44,91,45,49,50,51,46,49,51,55,51,49,57,44,52,51,46,55,55,57,54,55,93,44,91,45,49,50,51,46,51,52,56,50,52,54,44,52,51,46,55,56,48,49,55,93,44,91,45,49,50,51,46,53,50,57,49,53,51,44,52,51,46,56,51,48,48,54,49,93,44,91,45,49,50,51,46,54,49,57,48,49,50,44,52,51,46,57,50,49,49,49,55,93,44,91,45,49,50,51,46,56,50,55,48,48,52,44,52,51,46,57,52,52,56,51,55,93,44,91,45,49,50,51,46,57,52,54,50,57,49,44,52,51,46,56,54,50,54,56,50,93,44,91,45,49,50,52,46,50,51,48,49,55,56,44,52,51,46,56,54,51,55,50,51,93,44,91,45,49,50,52,46,50,57,48,50,51,54,44,52,51,46,54,49,48,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,53,56,54,44,34,98,101,100,115,34,58,51,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,53,48,53,54,48,55,44,52,49,46,50,51,50,53,51,57,93,44,91,45,55,53,46,54,48,48,55,51,54,44,52,49,46,49,54,49,52,57,55,93,44,91,45,55,53,46,54,52,57,54,51,55,44,52,49,46,49,50,50,51,52,52,93,44,91,45,55,53,46,52,57,53,57,57,44,52,48,46,57,56,55,49,56,49,93,44,91,45,55,53,46,53,55,52,53,57,44,52,48,46,57,53,49,51,50,51,93,44,91,45,55,53,46,52,55,52,49,57,51,44,52,48,46,56,49,52,55,52,54,93,44,91,45,55,53,46,51,48,48,53,57,52,44,52,48,46,56,53,57,53,54,51,93,44,91,45,55,53,46,49,50,48,50,51,50,44,52,48,46,57,54,56,55,48,50,93,44,91,45,55,52,46,57,54,54,57,48,54,44,52,49,46,48,57,52,52,49,93,44,91,45,55,52,46,57,57,49,55,49,56,44,52,49,46,48,57,50,50,56,52,93,44,91,45,55,53,46,49,53,54,53,48,55,44,52,49,46,49,53,48,51,52,49,93,44,91,45,55,53,46,49,50,57,55,50,49,44,52,49,46,50,53,50,49,48,49,93,44,91,45,55,53,46,51,53,57,49,56,52,44,52,49,46,50,51,57,50,48,54,93,44,91,45,55,53,46,53,48,53,54,48,55,44,52,49,46,50,51,50,53,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,55,57,53,50,56,44,51,54,46,49,50,53,48,55,50,93,44,91,45,57,51,46,52,53,48,55,49,53,44,51,53,46,57,54,55,52,57,51,93,44,91,45,57,51,46,53,50,51,54,51,57,44,51,53,46,56,56,49,53,57,50,93,44,91,45,57,51,46,53,49,57,50,48,52,44,51,53,46,55,54,51,53,50,49,93,44,91,45,57,51,46,53,49,57,53,55,53,44,51,53,46,55,51,52,52,50,50,93,44,91,45,57,51,46,49,54,52,52,53,50,44,51,53,46,55,50,56,56,51,49,93,44,91,45,57,50,46,57,53,49,51,49,53,44,51,53,46,55,50,52,54,54,51,93,44,91,45,57,50,46,57,52,52,54,54,54,44,51,54,46,49,49,53,49,50,51,93,44,91,45,57,51,46,51,48,48,56,50,44,51,54,46,49,50,49,53,53,93,44,91,45,57,51,46,52,55,57,53,50,56,44,51,54,46,49,50,53,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,118,97,108,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,50,52,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,57,57,56,48,50,44,52,57,46,48,48,48,48,48,54,93,44,91,45,57,56,46,57,57,57,56,57,44,52,56,46,55,49,56,49,50,57,93,44,91,45,57,56,46,57,55,48,51,57,50,44,52,56,46,53,52,52,50,51,50,93,44,91,45,57,56,46,51,49,56,48,51,54,44,52,56,46,53,52,51,55,55,51,93,44,91,45,57,55,46,57,50,55,48,54,57,44,52,56,46,53,52,51,49,50,52,93,44,91,45,57,55,46,57,53,48,48,49,50,44,52,57,46,48,48,48,52,57,50,93,44,91,45,57,56,46,57,57,57,56,48,50,44,52,57,46,48,48,48,48,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,78,111,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,49,49,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,54,49,54,48,51,44,51,54,46,53,57,51,54,51,55,93,44,91,45,57,55,46,52,54,48,55,57,50,44,51,54,46,49,54,52,52,54,50,93,44,91,45,57,55,46,51,53,52,49,51,50,44,51,54,46,49,53,57,48,55,50,93,44,91,45,57,55,46,49,52,48,54,54,56,44,51,54,46,49,53,57,50,51,49,93,44,91,45,57,55,46,49,52,48,57,54,56,44,51,54,46,50,52,54,52,51,53,93,44,91,45,57,54,46,57,50,53,48,54,57,44,51,54,46,50,52,54,52,55,52,93,44,91,45,57,55,46,48,51,50,49,48,54,44,51,54,46,51,51,51,51,53,52,93,44,91,45,57,55,46,48,48,57,55,56,53,44,51,54,46,53,48,54,57,51,53,93,44,91,45,57,55,46,48,53,55,53,53,54,44,51,54,46,53,57,51,56,55,50,93,44,91,45,57,55,46,52,54,49,54,48,51,44,51,54,46,53,57,51,54,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,71,111,118,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,49,57,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,56,49,49,56,53,56,44,51,57,46,49,51,51,51,54,93,44,91,45,49,48,48,46,56,49,56,54,57,56,44,51,56,46,54,57,57,56,54,49,93,44,91,45,49,48,48,46,54,56,56,48,48,54,44,51,56,46,55,48,48,48,50,49,93,44,91,45,49,48,48,46,50,52,55,50,44,51,56,46,54,57,56,49,54,53,93,44,91,45,49,48,48,46,49,53,51,56,50,51,44,51,56,46,54,57,55,51,52,49,93,44,91,45,49,48,48,46,49,52,55,57,52,44,51,57,46,49,51,50,49,55,57,93,44,91,45,49,48,48,46,49,54,52,50,44,51,57,46,49,51,50,48,55,49,93,44,91,45,49,48,48,46,55,50,49,50,57,54,44,51,57,46,49,51,51,51,56,49,93,44,91,45,49,48,48,46,56,49,49,56,53,56,44,51,57,46,49,51,51,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,80,111,105,110,116,101,32,67,111,117,112,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,53,56,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,51,48,56,55,44,51,48,46,54,53,56,54,55,55,93,44,91,45,57,49,46,51,56,48,54,50,44,51,48,46,55,53,56,56,48,52,93,44,91,45,57,49,46,53,53,51,48,49,57,44,51,48,46,55,51,48,55,57,56,93,44,91,45,57,49,46,53,49,53,54,50,54,44,51,48,46,56,54,49,51,55,56,93,44,91,45,57,49,46,54,54,49,51,55,50,44,51,48,46,56,53,55,48,57,57,93,44,91,45,57,49,46,54,54,50,53,48,54,44,51,48,46,57,55,48,51,54,50,93,44,91,45,57,49,46,54,53,56,51,50,49,44,51,48,46,57,57,52,51,54,53,93,44,91,45,57,49,46,55,53,48,49,49,57,44,51,49,46,48,49,56,56,49,52,93,44,91,45,57,49,46,56,48,53,57,54,51,44,51,48,46,57,55,50,53,53,56,93,44,91,45,57,49,46,56,49,53,50,53,56,44,51,48,46,56,52,56,49,48,55,93,44,91,45,57,49,46,55,51,51,54,55,51,44,51,48,46,55,48,49,55,51,93,44,91,45,57,49,46,55,53,54,49,57,51,44,51,48,46,52,57,55,55,51,56,93,44,91,45,57,49,46,55,48,48,57,51,51,44,51,48,46,52,57,55,52,51,51,93,44,91,45,57,49,46,52,56,53,48,56,57,44,51,48,46,52,57,55,49,51,56,93,44,91,45,57,49,46,52,49,52,55,54,44,51,48,46,53,49,49,53,49,54,93,44,91,45,57,49,46,51,51,48,56,55,44,51,48,46,54,53,56,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,71,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,49,54,48,53,53,44,52,48,46,51,52,57,55,50,55,93,44,91,45,57,54,46,57,49,54,52,48,55,44,52,48,46,48,48,49,53,49,49,93,44,91,45,57,54,46,56,48,53,55,54,56,44,52,48,46,48,48,49,52,57,53,93,44,91,45,57,54,46,52,54,51,55,49,50,44,52,48,46,48,48,49,48,50,51,93,44,91,45,57,54,46,52,54,51,54,54,55,44,52,48,46,50,54,50,49,55,51,93,44,91,45,57,54,46,52,54,51,54,51,50,44,52,48,46,53,50,51,48,49,51,93,44,91,45,57,54,46,57,49,50,54,51,55,44,52,48,46,53,50,51,54,50,53,93,44,91,45,57,54,46,57,49,54,48,53,53,44,52,48,46,51,52,57,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,108,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,51,48,54,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,50,53,54,50,50,44,51,51,46,57,52,48,49,52,55,93,44,91,45,56,54,46,52,48,53,57,56,49,44,51,51,46,56,51,53,56,57,54,93,44,91,45,56,54,46,53,55,55,55,57,57,44,51,51,46,55,54,53,51,49,54,93,44,91,45,56,54,46,53,50,53,48,55,51,44,51,51,46,55,50,49,50,51,54,93,44,91,45,56,54,46,53,49,54,55,56,51,44,51,51,46,53,52,53,56,57,54,93,44,91,45,56,54,46,51,55,56,50,50,50,44,51,51,46,53,48,50,52,49,49,93,44,91,45,56,54,46,51,55,56,54,54,53,44,51,51,46,51,57,48,57,56,51,93,44,91,45,56,54,46,49,56,57,56,49,50,44,51,51,46,53,52,55,50,51,56,93,44,91,45,56,54,46,49,52,53,53,54,50,44,51,51,46,54,55,57,48,57,56,93,44,91,45,56,54,46,48,52,51,57,57,51,44,51,51,46,55,54,51,53,57,53,93,44,91,45,56,54,46,48,54,53,50,55,50,44,51,51,46,56,52,50,49,57,56,93,44,91,45,56,54,46,50,49,53,53,50,53,44,51,51,46,57,56,55,52,50,49,93,44,91,45,56,54,46,51,50,53,54,50,50,44,51,51,46,57,52,48,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,49,53,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,56,52,49,50,51,44,51,50,46,53,56,54,56,57,49,93,44,91,45,56,57,46,55,51,48,48,54,51,44,51,50,46,51,53,50,55,51,51,93,44,91,45,56,57,46,55,51,48,52,50,52,44,51,50,46,50,50,50,48,51,57,93,44,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,44,91,45,56,57,46,51,50,50,53,57,56,44,51,50,46,53,55,54,52,51,51,93,44,91,45,56,57,46,55,51,48,49,53,50,44,51,50,46,53,55,55,50,52,56,93,44,91,45,56,57,46,55,51,48,51,48,52,44,51,50,46,54,51,52,50,50,56,93,44,91,45,56,57,46,55,56,52,49,50,51,44,51,50,46,53,56,54,56,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,68,111,117,103,104,101,114,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,48,52,57,44,34,98,101,100,115,34,58,54,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,49,56,52,48,52,44,51,49,46,54,53,48,50,55,52,93,44,91,45,56,52,46,48,52,51,50,49,51,44,51,49,46,54,50,51,53,55,51,93,44,91,45,56,52,46,50,57,55,56,48,49,44,51,49,46,54,50,49,57,53,49,93,44,91,45,56,52,46,52,53,48,51,57,56,44,51,49,46,54,50,49,56,54,56,93,44,91,45,56,52,46,52,50,57,56,55,54,44,51,49,46,52,51,54,54,54,49,93,44,91,45,56,52,46,49,52,49,49,50,52,44,51,49,46,52,52,48,49,55,57,93,44,91,45,56,51,46,57,57,55,55,57,54,44,51,49,46,52,52,51,55,53,51,93,44,91,45,56,52,46,48,49,56,52,48,52,44,51,49,46,54,53,48,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,55,49,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,53,53,48,52,53,44,51,56,46,52,50,50,54,56,53,93,44,91,45,56,54,46,50,55,54,57,53,54,44,51,56,46,50,50,55,49,50,54,93,44,91,45,56,54,46,51,50,57,54,44,51,56,46,49,56,49,56,48,53,93,44,91,45,56,54,46,50,54,55,55,54,57,44,51,56,46,48,53,55,49,55,49,93,44,91,45,56,54,46,49,55,56,57,51,44,51,56,46,48,49,48,56,49,93,44,91,45,56,53,46,57,57,56,57,53,50,44,51,55,46,57,57,57,54,53,52,93,44,91,45,56,53,46,57,52,55,49,49,52,44,51,56,46,48,48,53,48,56,53,93,44,91,45,56,53,46,56,57,57,55,54,44,51,56,46,49,56,48,52,52,52,93,44,91,45,56,54,46,48,51,50,53,53,57,44,51,56,46,51,51,48,54,54,93,44,91,45,56,54,46,48,51,50,56,49,55,44,51,56,46,52,49,55,56,57,56,93,44,91,45,56,54,46,50,53,53,48,52,53,44,51,56,46,52,50,50,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,111,110,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,55,49,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,51,50,52,52,49,44,52,56,46,56,52,54,54,54,54,93,44,91,45,49,49,55,46,48,52,49,56,55,55,44,52,56,46,48,52,53,52,54,54,93,44,91,45,49,49,55,46,48,52,50,48,56,57,44,52,55,46,57,55,55,52,53,93,44,91,45,49,49,54,46,53,48,52,51,50,57,44,52,55,46,57,57,49,51,56,54,93,44,91,45,49,49,54,46,53,48,53,49,48,52,44,52,55,46,56,57,48,49,52,50,93,44,91,45,49,49,54,46,51,50,57,53,51,56,44,52,55,46,56,57,48,51,57,51,93,44,91,45,49,49,54,46,51,50,57,54,48,49,44,52,56,46,48,49,55,55,50,50,93,44,91,45,49,49,54,46,50,51,51,49,49,51,44,52,56,46,48,54,56,56,57,93,44,91,45,49,49,54,46,48,52,57,49,48,56,44,52,55,46,57,55,55,51,51,52,93,44,91,45,49,49,54,46,48,52,56,54,54,57,44,52,56,46,50,49,54,49,50,56,93,44,91,45,49,49,54,46,48,52,57,48,53,56,44,52,56,46,53,48,50,48,54,50,93,44,91,45,49,49,54,46,55,56,52,56,55,56,44,52,56,46,53,48,48,52,55,50,93,44,91,45,49,49,54,46,55,56,53,49,55,52,44,52,56,46,56,52,55,52,48,50,93,44,91,45,49,49,55,46,48,51,50,52,52,49,44,52,56,46,56,52,54,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,97,116,111,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,50,57,57,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,54,53,48,53,53,44,51,52,46,57,56,53,48,55,53,93,44,91,45,56,53,46,50,54,52,55,54,50,44,51,52,46,56,53,52,50,55,55,93,44,91,45,56,53,46,49,52,52,55,56,57,44,51,52,46,55,54,55,54,51,57,93,44,91,45,56,53,46,48,54,49,54,52,56,44,51,52,46,56,49,57,52,55,56,93,44,91,45,56,52,46,57,55,57,56,54,44,51,52,46,57,56,55,54,52,55,93,44,91,45,56,53,46,50,54,53,48,53,53,44,51,52,46,57,56,53,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,76,97,83,97,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,49,50,54,50,51,44,51,49,46,57,50,55,51,56,50,93,44,91,45,57,50,46,51,54,50,54,48,56,44,51,49,46,55,57,54,54,51,51,93,44,91,45,57,50,46,51,55,50,52,55,54,44,51,49,46,55,48,49,53,49,57,93,44,91,45,57,50,46,50,56,50,48,56,49,44,51,49,46,53,48,51,52,56,54,93,44,91,45,57,50,46,49,57,54,49,51,49,44,51,49,46,52,55,55,56,55,55,93,44,91,45,57,50,46,48,56,54,55,49,56,44,51,49,46,51,51,53,51,55,52,93,44,91,45,57,50,46,48,48,56,49,50,49,44,51,49,46,51,50,53,55,57,55,93,44,91,45,57,50,46,48,48,53,52,51,52,44,51,49,46,57,50,55,50,57,54,93,44,91,45,57,50,46,51,49,50,54,50,51,44,51,49,46,57,50,55,51,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,87,97,108,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,57,46,52,55,49,55,49,50,44,52,52,46,54,57,50,56,57,57,93,44,91,45,54,57,46,51,57,51,49,50,51,44,52,52,46,54,52,48,51,55,53,93,44,91,45,54,57,46,53,48,54,51,56,50,44,52,52,46,51,52,50,56,55,93,44,91,45,54,57,46,52,48,57,54,51,53,44,52,52,46,51,50,55,57,57,56,93,44,91,45,54,57,46,50,54,56,56,56,50,44,52,52,46,51,54,52,54,53,51,93,44,91,45,54,56,46,57,57,57,52,53,53,44,52,52,46,50,48,50,55,50,49,93,44,91,45,54,56,46,56,57,54,51,56,52,44,52,52,46,50,48,57,57,51,53,93,44,91,45,54,56,46,56,48,52,54,49,53,44,52,52,46,52,53,56,52,49,49,93,44,91,45,54,56,46,56,49,53,55,57,51,44,52,52,46,54,56,51,55,53,52,93,44,91,45,54,57,46,49,56,51,55,51,50,44,52,52,46,54,52,52,48,50,51,93,44,91,45,54,57,46,50,54,54,55,56,53,44,52,52,46,55,50,49,57,50,56,93,44,91,45,54,57,46,52,55,49,55,49,50,44,52,52,46,54,57,50,56,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,51,50,55,44,34,98,101,100,115,34,58,50,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,54,56,56,48,49,44,51,57,46,51,53,51,53,48,50,93,44,91,45,55,54,46,57,52,56,53,55,57,44,51,57,46,49,50,57,53,57,55,93,44,91,45,55,54,46,56,56,56,53,48,53,44,51,57,46,49,51,48,57,54,55,93,44,91,45,55,54,46,56,52,48,51,54,50,44,51,57,46,49,48,51,49,52,50,93,44,91,45,55,54,46,54,57,55,48,56,53,44,51,57,46,50,49,52,48,57,50,93,44,91,45,55,54,46,56,56,50,50,55,52,44,51,57,46,51,53,48,49,56,53,93,44,91,45,55,55,46,49,54,56,48,56,44,51,57,46,51,53,51,57,53,55,93,44,91,45,55,55,46,49,54,56,56,48,49,44,51,57,46,51,53,51,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,83,97,108,116,32,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,48,56,48,53,44,34,98,101,100,115,34,58,51,51,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,50,54,48,50,49,54,44,52,48,46,55,54,57,48,57,51,93,44,91,45,49,49,50,46,49,55,53,51,51,55,44,52,48,46,54,48,51,57,56,49,93,44,91,45,49,49,50,46,49,55,50,56,54,50,44,52,48,46,52,54,55,48,54,53,93,44,91,45,49,49,49,46,57,52,54,52,53,52,44,52,48,46,52,50,52,53,57,52,93,44,91,45,49,49,49,46,53,57,51,57,52,50,44,52,48,46,53,55,55,48,54,54,93,44,91,45,49,49,49,46,53,53,51,50,54,54,44,52,48,46,54,48,57,51,49,51,93,44,91,45,49,49,49,46,54,52,49,48,53,50,44,52,48,46,55,57,56,57,50,53,93,44,91,45,49,49,49,46,55,51,56,55,52,52,44,52,48,46,56,54,48,57,57,56,93,44,91,45,49,49,49,46,57,52,54,50,56,57,44,52,48,46,56,50,49,55,57,93,44,91,45,49,49,50,46,48,48,54,53,54,54,44,52,48,46,57,50,49,56,52,54,93,44,91,45,49,49,50,46,50,54,48,50,49,54,44,52,48,46,55,54,57,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,72,97,114,116,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,52,55,51,48,44,34,98,101,100,115,34,58,51,48,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,48,48,56,55,54,54,44,52,50,46,48,51,56,55,56,53,93,44,91,45,55,50,46,56,56,55,48,54,44,52,49,46,57,55,51,49,50,49,93,44,91,45,55,51,46,48,49,54,54,55,53,44,52,49,46,55,57,56,49,56,51,93,44,91,45,55,50,46,57,56,51,50,53,44,52,49,46,54,51,57,53,57,56,93,44,91,45,55,50,46,57,52,54,51,53,44,52,49,46,53,53,54,55,57,55,93,44,91,45,55,50,46,55,53,50,49,56,49,44,52,49,46,53,55,56,56,57,52,93,44,91,45,55,50,46,55,49,51,56,57,55,44,52,49,46,54,50,55,55,48,53,93,44,91,45,55,50,46,53,48,53,52,51,49,44,52,49,46,54,52,54,57,57,57,93,44,91,45,55,50,46,52,54,54,55,51,44,52,49,46,53,56,51,56,57,57,93,44,91,45,55,50,46,52,49,48,51,54,55,44,52,49,46,54,48,50,53,56,49,93,44,91,45,55,50,46,53,49,56,51,51,44,52,49,46,56,53,54,56,57,57,93,44,91,45,55,50,46,53,48,57,50,51,51,44,52,50,46,48,51,52,51,55,54,93,44,91,45,55,51,46,48,48,56,55,54,54,44,52,50,46,48,51,56,55,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,87,105,110,100,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,53,51,56,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,49,48,50,49,55,44,52,50,46,48,50,56,56,54,57,93,44,91,45,55,50,46,50,49,54,57,56,44,52,49,46,57,53,56,49,54,49,93,44,91,45,55,50,46,50,51,57,53,53,57,44,52,49,46,55,49,52,49,57,49,93,44,91,45,55,50,46,49,53,49,55,52,55,44,52,49,46,54,54,55,53,49,54,93,44,91,45,55,49,46,57,53,49,57,51,54,44,52,49,46,54,51,52,51,50,56,93,44,91,45,55,49,46,55,56,55,54,53,56,44,52,49,46,54,51,57,57,49,56,93,44,91,45,55,49,46,55,56,57,55,48,52,44,52,49,46,55,50,53,49,57,56,93,44,91,45,55,49,46,55,57,57,49,56,56,44,52,50,46,48,48,56,48,53,51,93,44,91,45,55,50,46,49,48,50,49,55,44,52,50,46,48,50,56,56,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,51,50,53,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,56,49,46,53,55,48,57,54,55,44,50,53,46,56,48,50,48,51,57,93,44,91,45,56,49,46,52,52,53,49,52,51,44,50,53,46,55,51,55,53,55,54,93,44,91,45,56,49,46,51,52,55,50,51,49,44,50,53,46,54,51,54,55,50,55,93,44,91,45,56,49,46,50,48,53,55,48,57,44,50,53,46,52,49,48,55,53,49,93,44,91,45,56,49,46,50,51,52,48,52,52,44,50,53,46,50,51,52,53,50,50,93,44,91,45,56,49,46,49,56,52,52,48,57,44,50,53,46,49,50,53,48,48,49,93,44,91,45,56,49,46,48,57,56,52,56,57,44,50,53,46,48,54,54,52,55,49,93,44,91,45,56,48,46,57,54,52,50,56,56,44,50,52,46,56,49,57,57,48,55,93,44,91,45,56,49,46,48,54,52,52,55,44,50,52,46,55,57,49,49,49,54,93,44,91,45,56,49,46,50,48,50,51,50,50,44,50,52,46,56,54,56,51,53,50,93,44,91,45,56,49,46,52,48,50,52,55,51,44,50,52,46,56,56,49,56,50,55,93,44,91,45,56,49,46,55,50,51,53,50,56,44,50,52,46,55,50,53,53,50,52,93,44,91,45,56,50,46,48,50,54,54,52,51,44,50,52,46,54,48,55,54,54,54,93,44,91,45,56,50,46,49,54,52,54,57,50,44,50,52,46,54,50,57,52,55,51,93,44,91,45,56,50,46,49,55,53,48,57,56,44,50,52,46,52,57,57,54,49,55,93,44,91,45,56,50,46,48,54,55,49,55,49,44,50,52,46,53,50,51,55,49,53,93,44,91,45,56,49,46,57,52,54,52,52,49,44,50,52,46,51,57,57,51,52,56,93,44,91,45,56,49,46,55,49,49,56,51,49,44,50,52,46,52,50,57,55,51,51,93,44,91,45,56,49,46,53,51,57,57,50,52,44,50,52,46,52,56,54,48,51,52,93,44,91,45,56,49,46,52,55,52,55,51,51,44,50,52,46,53,53,51,52,53,53,93,44,91,45,56,49,46,50,55,49,54,57,44,50,52,46,53,57,55,48,57,54,93,44,91,45,56,49,46,49,52,55,54,56,54,44,50,52,46,54,52,57,48,54,52,93,44,91,45,56,49,46,48,52,55,54,52,56,44,50,52,46,54,52,48,50,52,93,44,91,45,56,48,46,55,56,51,51,55,53,44,50,52,46,55,54,49,50,54,93,44,91,45,56,48,46,52,53,51,51,54,53,44,50,52,46,57,54,51,54,57,56,93,44,91,45,56,48,46,51,57,48,52,51,53,44,50,53,46,48,53,55,49,56,57,93,44,91,45,56,48,46,50,52,57,55,55,51,44,50,53,46,49,55,57,52,55,57,93,44,91,45,56,48,46,50,49,55,56,54,50,44,50,53,46,50,57,53,50,52,55,93,44,91,45,56,48,46,49,53,48,50,52,55,44,50,53,46,51,49,52,49,52,57,93,44,91,45,56,48,46,50,54,53,52,55,50,44,50,53,46,51,53,52,50,57,54,93,44,91,45,56,48,46,51,55,50,49,50,49,44,50,53,46,51,49,48,50,49,53,93,44,91,45,56,48,46,52,50,57,51,48,54,44,50,53,46,50,51,53,54,54,49,93,44,91,45,56,48,46,54,53,49,50,55,57,44,50,53,46,49,57,50,53,57,54,93,44,91,45,56,48,46,55,48,53,51,55,57,44,50,53,46,49,52,57,48,49,55,93,44,91,45,56,48,46,56,53,56,49,54,55,44,50,53,46,49,55,54,54,48,55,93,44,91,45,56,48,46,56,55,51,49,57,44,50,53,46,51,54,51,57,57,51,93,44,91,45,56,48,46,56,55,51,48,57,54,44,50,53,46,56,48,53,51,55,55,93,44,91,45,56,49,46,53,55,48,57,54,55,44,50,53,46,56,48,50,48,51,57,93,93,93,44,91,91,91,45,56,50,46,57,56,55,52,55,55,44,50,52,46,54,50,53,51,55,57,93,44,91,45,56,50,46,56,52,57,48,53,51,44,50,52,46,53,55,54,55,52,56,93,44,91,45,56,50,46,55,54,54,54,56,49,44,50,52,46,54,54,55,57,52,93,44,91,45,56,50,46,56,57,57,57,50,56,44,50,52,46,55,49,55,55,55,56,93,44,91,45,56,50,46,57,56,55,52,55,55,44,50,52,46,54,50,53,51,55,57,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,84,117,115,99,97,114,97,119,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,53,50,54,44,34,98,101,100,115,34,58,49,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,52,57,49,57,57,44,52,48,46,54,51,53,49,48,54,93,44,91,45,56,49,46,55,48,57,49,51,50,44,52,48,46,52,52,52,55,55,53,93,44,91,45,56,49,46,54,49,54,48,51,44,52,48,46,51,54,56,49,49,56,93,44,91,45,56,49,46,54,50,50,54,56,51,44,52,48,46,50,50,49,51,48,56,93,44,91,45,56,49,46,51,51,56,48,53,55,44,52,48,46,50,49,52,50,53,51,93,44,91,45,56,49,46,50,55,53,51,49,57,44,52,48,46,51,48,51,52,51,52,93,44,91,45,56,49,46,50,54,57,57,53,49,44,52,48,46,52,51,51,52,56,54,93,44,91,45,56,49,46,50,54,52,55,52,52,44,52,48,46,53,54,53,48,52,50,93,44,91,45,56,49,46,51,49,55,55,51,57,44,52,48,46,54,53,49,53,55,57,93,44,91,45,56,49,46,54,52,57,49,57,57,44,52,48,46,54,51,53,49,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,82,105,99,104,109,111,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,52,49,48,49,44,34,98,101,100,115,34,58,49,50,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,50,48,51,54,56,56,44,52,48,46,53,57,50,54,57,49,93,44,91,45,55,52,46,50,50,56,49,53,51,44,52,48,46,52,55,55,51,57,57,93,44,91,45,55,52,46,48,52,50,49,49,50,44,52,48,46,53,48,57,50,57,57,93,44,91,45,55,52,46,48,51,54,50,57,51,44,52,48,46,53,53,49,48,52,50,93,44,91,45,55,52,46,48,53,53,55,51,57,44,52,48,46,54,53,49,55,54,93,44,91,45,55,52,46,49,54,49,52,50,56,44,52,48,46,54,52,52,49,52,56,93,44,91,45,55,52,46,50,48,51,54,56,56,44,52,48,46,53,57,50,54,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,72,105,103,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,48,48,55,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,57,48,56,55,56,44,51,57,46,51,55,56,55,51,54,93,44,91,45,56,51,46,55,56,52,55,57,51,44,51,57,46,50,54,50,56,56,56,93,44,91,45,56,51,46,56,54,53,54,55,57,44,51,57,46,50,52,55,51,51,51,93,44,91,45,56,51,46,56,55,50,50,49,52,44,51,57,46,48,50,49,51,48,52,93,44,91,45,56,51,46,54,55,51,48,49,56,44,51,57,46,48,50,48,52,51,93,44,91,45,56,51,46,51,56,53,54,51,55,44,51,57,46,48,53,53,49,57,55,93,44,91,45,56,51,46,51,53,51,53,51,49,44,51,57,46,49,57,55,53,56,53,93,44,91,45,56,51,46,51,55,50,55,49,52,44,51,57,46,51,55,55,52,49,54,93,44,91,45,56,51,46,53,57,48,56,55,56,44,51,57,46,51,55,56,55,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,97,107,101,32,111,102,32,116,104,101,32,87,111,111,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,57,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,49,57,56,57,53,44,52,56,46,57,57,56,55,55,93,44,91,45,57,53,46,50,51,53,54,48,54,44,52,56,46,56,56,49,52,53,93,44,91,45,57,53,46,48,57,49,50,56,50,44,52,56,46,57,49,57,49,55,51,93,44,91,45,57,53,46,48,56,57,56,54,51,44,52,56,46,55,49,51,48,54,50,93,44,91,45,57,53,46,51,52,50,55,51,44,52,56,46,55,49,51,48,50,56,93,44,91,45,57,53,46,51,52,50,53,52,44,52,56,46,53,52,48,50,49,49,93,44,91,45,57,53,46,50,49,49,57,54,54,44,52,56,46,53,51,57,57,54,49,93,44,91,45,57,53,46,50,49,48,57,53,51,44,52,56,46,51,54,53,57,55,49,93,44,91,45,57,52,46,52,50,56,55,48,50,44,52,56,46,51,54,55,51,51,51,93,44,91,45,57,52,46,52,51,48,50,55,51,44,52,56,46,55,48,48,57,48,57,93,44,91,45,57,52,46,53,57,50,48,57,57,44,52,56,46,55,49,57,49,50,93,44,91,45,57,52,46,54,57,48,57,48,50,44,52,56,46,55,55,55,57,57,57,93,44,91,45,57,52,46,54,56,52,51,52,55,44,52,56,46,56,56,51,57,53,56,93,44,91,45,57,52,46,56,50,53,53,51,53,44,52,57,46,50,57,52,51,53,52,93,44,91,45,57,52,46,57,53,50,48,54,57,44,52,57,46,51,54,56,55,51,51,93,44,91,45,57,53,46,49,53,51,51,57,53,44,52,57,46,51,56,52,52,55,57,93,44,91,45,57,53,46,49,53,51,49,57,49,44,52,56,46,57,57,56,56,55,93,44,91,45,57,53,46,51,49,57,56,57,53,44,52,56,46,57,57,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,53,53,49,44,34,98,101,100,115,34,58,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,48,48,55,55,49,50,44,52,51,46,49,49,48,57,51,51,93,44,91,45,49,49,51,46,48,48,55,55,54,44,52,50,46,56,54,51,48,53,49,93,44,91,45,49,49,50,46,56,49,54,53,55,56,44,52,50,46,56,54,51,50,51,49,93,44,91,45,49,49,50,46,55,53,48,53,54,50,44,52,50,46,57,53,49,53,50,56,93,44,91,45,49,49,50,46,54,53,54,53,53,50,44,52,51,46,48,50,49,57,52,52,93,44,91,45,49,49,50,46,48,54,51,48,50,51,44,52,51,46,48,50,50,51,54,52,93,44,91,45,49,49,49,46,53,56,57,52,56,57,44,52,51,46,48,50,48,48,53,50,93,44,91,45,49,49,49,46,53,56,56,48,52,57,44,52,51,46,50,56,49,56,52,49,93,44,91,45,49,49,49,46,56,50,50,52,57,52,44,52,51,46,50,56,50,50,56,54,93,44,91,45,49,49,49,46,56,50,50,52,55,53,44,52,51,46,51,54,54,48,51,53,93,44,91,45,49,49,50,46,48,52,51,56,50,49,44,52,51,46,51,54,54,55,48,56,93,44,91,45,49,49,50,46,49,48,51,50,57,56,44,52,51,46,52,50,53,48,53,55,93,44,91,45,49,49,50,46,53,50,48,48,50,52,44,52,51,46,52,50,53,49,55,93,44,91,45,49,49,50,46,53,49,57,56,54,49,44,52,51,46,54,50,54,54,50,51,93,44,91,45,49,49,50,46,54,57,55,49,50,50,44,52,51,46,54,50,51,49,52,93,44,91,45,49,49,50,46,57,51,54,56,51,53,44,52,51,46,52,52,57,51,56,54,93,44,91,45,49,49,51,46,48,48,55,51,49,56,44,52,51,46,50,56,52,55,55,56,93,44,91,45,49,49,51,46,48,48,55,55,49,50,44,52,51,46,49,49,48,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,97,98,111,32,82,111,106,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,48,53,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,53,57,55,51,51,44,49,56,46,49,53,51,50,50,55,93,44,91,45,54,55,46,50,50,53,54,54,52,44,49,56,46,49,57,54,49,53,51,93,44,91,45,54,55,46,50,54,48,54,56,44,49,55,46,57,50,56,53,52,93,44,91,45,54,55,46,49,48,56,54,51,53,44,49,55,46,56,57,53,52,48,55,93,44,91,45,54,55,46,49,48,57,48,52,52,44,49,56,46,48,53,54,48,56,53,93,44,91,45,54,55,46,49,48,48,52,57,50,44,49,56,46,49,48,54,51,57,53,93,44,91,45,54,55,46,49,53,57,55,51,51,44,49,56,46,49,53,51,50,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,117,109,97,99,97,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,52,54,54,44,34,98,101,100,115,34,58,50,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,56,50,54,48,54,51,44,49,56,46,50,48,48,52,48,56,93,44,91,45,54,53,46,56,55,55,54,49,53,44,49,56,46,49,49,56,49,54,55,93,44,91,45,54,53,46,55,51,57,49,49,50,44,49,56,46,48,55,48,55,55,56,93,44,91,45,54,53,46,54,57,57,51,51,53,44,49,56,46,49,49,54,49,49,51,93,44,91,45,54,53,46,56,50,54,48,54,51,44,49,56,46,50,48,48,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,74,117,110,99,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,49,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,49,56,53,51,53,44,49,56,46,50,55,48,49,51,93,44,91,45,54,53,46,57,53,49,48,49,57,44,49,56,46,50,50,57,50,57,50,93,44,91,45,54,53,46,57,50,56,51,52,49,44,49,56,46,49,52,50,56,52,53,93,44,91,45,54,53,46,56,53,50,54,49,54,44,49,56,46,50,53,52,57,55,50,93,44,91,45,54,53,46,57,49,56,53,51,53,44,49,56,46,50,55,48,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,56,52,48,50,44,34,98,101,100,115,34,58,49,54,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,54,52,53,55,53,44,51,53,46,48,54,56,51,56,93,44,91,45,56,50,46,54,50,53,53,57,57,44,51,53,46,48,54,52,54,56,54,93,44,91,45,56,50,46,52,57,52,48,48,55,44,51,52,46,56,57,54,50,49,53,93,44,91,45,56,50,46,52,56,55,50,48,51,44,51,52,46,56,49,56,56,49,49,93,44,91,45,56,50,46,52,54,54,53,48,51,44,51,52,46,54,54,53,49,56,52,93,44,91,45,56,50,46,51,49,51,57,57,54,44,51,52,46,52,56,52,48,48,50,93,44,91,45,56,50,46,50,51,56,48,53,52,44,51,52,46,53,56,54,57,53,54,93,44,91,45,56,50,46,49,52,54,55,57,50,44,51,52,46,55,56,53,53,53,52,93,44,91,45,56,50,46,50,50,54,51,50,53,44,51,52,46,56,53,50,52,56,56,93,44,91,45,56,50,46,50,49,53,57,52,55,44,51,53,46,49,57,54,50,50,50,93,44,91,45,56,50,46,51,53,51,55,53,52,44,51,53,46,49,57,48,57,54,55,93,44,91,45,56,50,46,53,55,52,56,51,57,44,51,53,46,49,52,53,52,52,57,93,44,91,45,56,50,46,55,54,52,53,55,53,44,51,53,46,48,54,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,76,121,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,51,48,56,52,53,44,52,51,46,55,49,51,56,53,54,93,44,91,45,57,57,46,56,51,55,56,50,53,44,52,51,46,54,56,57,48,55,49,93,44,91,45,57,57,46,54,50,51,53,56,55,44,52,51,46,55,52,50,52,49,52,93,44,91,45,57,57,46,54,50,51,53,55,56,44,52,51,46,52,57,57,56,53,57,93,44,91,45,57,57,46,53,51,52,52,56,49,44,52,51,46,52,57,57,56,48,49,93,44,91,45,57,57,46,50,57,55,57,57,56,44,52,51,46,52,57,57,54,54,57,93,44,91,45,57,57,46,50,57,55,56,56,50,44,52,51,46,52,57,57,56,53,54,93,44,91,45,57,57,46,52,48,54,57,54,49,44,52,51,46,55,48,53,50,55,55,93,44,91,45,57,57,46,52,49,48,49,53,44,52,51,46,55,55,52,54,49,57,93,44,91,45,57,57,46,51,49,48,56,50,54,44,52,51,46,56,53,53,50,49,54,93,44,91,45,57,57,46,51,53,53,56,54,52,44,52,51,46,57,51,52,51,55,49,93,44,91,45,57,57,46,51,53,51,55,50,44,52,51,46,57,57,53,51,50,57,93,44,91,45,57,57,46,53,54,50,53,51,54,44,52,52,46,49,48,49,53,49,57,93,44,91,45,57,57,46,53,55,54,53,55,49,44,52,52,46,49,57,50,52,50,49,93,44,91,45,57,57,46,54,54,51,53,48,56,44,52,52,46,50,49,55,53,49,55,93,44,91,45,57,57,46,54,53,52,53,51,54,44,52,52,46,49,48,49,54,56,57,93,44,91,45,57,57,46,56,56,52,52,56,53,44,52,52,46,49,50,57,53,56,50,93,44,91,45,57,57,46,57,51,56,50,49,55,44,52,52,46,49,57,53,49,57,53,93,44,91,45,49,48,48,46,51,54,55,50,52,55,44,52,52,46,49,57,52,54,50,49,93,44,91,45,49,48,48,46,51,54,55,50,48,55,44,52,52,46,49,54,56,54,57,52,93,44,91,45,49,48,48,46,51,54,54,49,55,52,44,52,51,46,56,52,54,57,55,56,93,44,91,45,49,48,48,46,51,51,56,57,55,44,52,51,46,55,49,54,57,52,50,93,44,91,45,49,48,48,46,50,51,48,56,52,53,44,52,51,46,55,49,51,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,84,114,101,109,112,101,97,108,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,52,51,56,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,50,57,49,48,49,44,52,52,46,53,57,54,49,57,55,93,44,91,45,57,49,46,53,50,57,55,52,49,44,52,52,46,50,52,54,55,55,55,93,44,91,45,57,49,46,54,49,50,51,51,49,44,52,52,46,49,54,56,56,48,57,93,44,91,45,57,49,46,53,53,57,48,48,52,44,52,52,46,48,50,53,51,49,53,93,44,91,45,57,49,46,52,50,53,49,56,56,44,52,51,46,57,56,52,51,50,50,93,44,91,45,57,49,46,51,48,55,52,55,56,44,52,52,46,48,54,52,56,55,54,93,44,91,45,57,49,46,49,53,49,57,51,50,44,52,52,46,48,55,57,54,54,53,93,44,91,45,57,49,46,49,54,53,54,49,57,44,52,52,46,53,57,54,57,56,55,93,44,91,45,57,49,46,53,50,57,49,48,49,44,52,52,46,53,57,54,49,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,89,111,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,57,55,55,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,51,57,53,48,53,54,44,51,56,46,56,54,52,50,52,53,93,44,91,45,49,50,50,46,50,56,55,57,57,56,44,51,56,46,56,51,57,57,51,49,93,44,91,45,49,50,50,46,49,48,51,50,56,49,44,51,56,46,53,49,51,51,52,56,93,44,91,45,49,50,49,46,57,52,48,50,56,53,44,51,56,46,53,51,51,51,56,52,93,44,91,45,49,50,49,46,54,57,53,49,52,55,44,51,56,46,53,50,51,49,53,54,93,44,91,45,49,50,49,46,54,57,52,48,49,52,44,51,56,46,51,49,52,56,53,54,93,44,91,45,49,50,49,46,53,57,51,50,55,51,44,51,56,46,51,49,51,48,56,57,93,44,91,45,49,50,49,46,53,48,50,57,56,50,44,51,56,46,52,52,48,55,49,56,93,44,91,45,49,50,49,46,54,48,50,56,57,52,44,51,56,46,55,51,53,56,51,56,93,44,91,45,49,50,49,46,55,50,51,51,52,54,44,51,56,46,56,48,51,55,53,57,93,44,91,45,49,50,49,46,56,51,53,52,56,56,44,51,56,46,57,50,52,52,56,49,93,44,91,45,49,50,50,46,51,52,48,49,55,50,44,51,56,46,57,50,52,50,52,54,93,44,91,45,49,50,50,46,51,57,53,48,53,54,44,51,56,46,56,54,52,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,51,49,34,44,34,78,65,77,69,34,58,34,83,116,101,114,108,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,54,55,49,50,50,44,51,49,46,54,53,48,56,53,52,93,44,91,45,49,48,49,46,50,54,55,54,51,44,51,49,46,53,53,54,52,54,50,93,44,91,45,49,48,48,46,56,54,53,50,53,54,44,51,49,46,53,54,50,50,57,52,93,44,91,45,49,48,48,46,56,50,53,51,55,44,51,49,46,54,57,54,49,53,53,93,44,91,45,49,48,48,46,56,50,49,53,57,52,44,51,50,46,48,56,54,54,49,93,44,91,45,49,48,49,46,49,56,51,57,57,55,44,51,50,46,48,56,55,50,48,56,93,44,91,45,49,48,49,46,50,54,52,50,49,54,44,51,50,46,48,56,55,49,51,54,93,44,91,45,49,48,49,46,50,54,55,49,50,50,44,51,49,46,54,53,48,56,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,57,53,34,44,34,78,65,77,69,34,58,34,87,105,110,107,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,48,50,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,51,50,55,53,51,56,44,51,49,46,54,53,49,52,50,93,44,91,45,49,48,50,46,55,57,56,57,51,57,44,51,49,46,54,53,49,55,56,51,93,44,91,45,49,48,50,46,55,57,57,48,56,54,44,51,50,46,48,56,53,55,57,53,93,44,91,45,49,48,51,46,48,54,52,53,49,54,44,51,50,46,48,56,55,48,53,49,93,44,91,45,49,48,51,46,48,54,52,53,49,44,51,50,46,48,48,48,52,50,52,93,44,91,45,49,48,51,46,51,50,54,53,48,49,44,51,50,46,48,48,48,51,54,57,93,44,91,45,49,48,51,46,51,50,55,53,51,56,44,51,49,46,54,53,49,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,48,55,51,51,54,44,52,51,46,57,57,52,53,51,93,44,91,45,49,48,50,46,48,49,56,56,56,55,44,52,51,46,55,48,56,54,49,56,93,44,91,45,49,48,50,46,49,51,57,49,53,56,44,52,51,46,55,48,48,57,52,56,93,44,91,45,49,48,50,46,49,51,57,48,53,49,44,52,51,46,52,55,54,54,55,54,93,44,91,45,49,48,50,46,49,49,48,56,49,57,44,52,51,46,51,56,57,57,48,50,93,44,91,45,49,48,49,46,50,50,56,50,51,52,44,52,51,46,51,56,57,49,56,53,93,44,91,45,49,48,49,46,50,50,56,51,51,49,44,52,51,46,55,57,53,48,52,57,93,44,91,45,49,48,49,46,48,54,52,51,50,54,44,52,51,46,56,52,49,48,57,93,44,91,45,49,48,49,46,48,54,52,48,54,56,44,52,51,46,57,57,52,57,50,57,93,44,91,45,49,48,50,46,48,48,55,51,51,54,44,52,51,46,57,57,52,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,83,101,118,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,49,56,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,48,49,52,48,56,51,44,51,57,46,48,52,53,53,49,56,93,44,91,45,49,49,50,46,50,50,52,52,54,49,44,51,56,46,56,54,52,56,48,51,93,44,91,45,49,49,50,46,50,49,56,51,53,54,44,51,56,46,55,50,55,51,54,49,93,44,91,45,49,49,50,46,51,48,57,57,53,51,44,51,56,46,54,55,54,50,57,93,44,91,45,49,49,50,46,52,52,55,53,49,55,44,51,56,46,54,56,49,50,55,93,44,91,45,49,49,50,46,53,49,53,51,57,52,44,51,56,46,53,55,50,56,52,53,93,44,91,45,49,49,50,46,53,49,56,52,57,53,44,51,56,46,53,49,48,52,49,51,93,44,91,45,49,49,49,46,55,54,54,51,57,51,44,51,56,46,53,48,50,50,52,51,93,44,91,45,49,49,49,46,51,48,53,54,54,53,44,51,56,46,53,49,48,49,54,57,93,44,91,45,49,49,49,46,50,57,57,51,54,44,51,57,46,48,51,50,50,54,52,93,44,91,45,49,49,49,46,56,53,51,50,57,55,44,51,57,46,48,51,50,57,56,52,93,44,91,45,49,49,50,46,48,49,52,48,56,51,44,51,57,46,48,52,53,53,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,54,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,54,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,101,115,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,50,55,48,54,55,53,44,51,55,46,51,50,48,55,53,54,93,44,91,45,55,54,46,57,55,50,52,51,57,44,51,55,46,50,52,56,53,48,49,93,44,91,45,55,54,46,56,56,51,49,53,54,44,51,55,46,50,50,51,48,53,55,93,44,91,45,55,54,46,57,48,52,52,55,49,44,51,55,46,51,55,55,54,54,53,93,44,91,45,55,55,46,49,55,55,51,50,52,44,51,55,46,52,57,48,54,93,44,91,45,55,55,46,50,52,57,54,54,53,44,51,55,46,51,56,50,93,44,91,45,55,55,46,50,55,48,54,55,53,44,51,55,46,51,50,48,55,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,111,99,116,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,48,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,51,49,51,55,57,44,51,50,46,50,50,55,54,54,54,93,44,91,45,56,56,46,52,55,51,50,50,55,44,51,49,46,56,57,51,56,53,54,93,44,91,45,56,56,46,52,54,52,52,51,44,51,49,46,54,57,55,57,53,50,93,44,91,45,56,56,46,48,56,56,50,56,56,44,51,49,46,54,57,57,51,48,51,93,44,91,45,56,56,46,49,56,48,51,56,52,44,51,49,46,56,49,52,53,52,54,93,44,91,45,56,56,46,48,55,51,52,57,44,51,49,46,57,57,48,49,56,50,93,44,91,45,56,56,46,48,48,55,48,55,55,44,51,50,46,49,56,53,51,49,51,93,44,91,45,56,56,46,48,49,57,49,52,53,44,51,50,46,50,56,53,50,52,93,44,91,45,56,55,46,57,51,48,54,54,49,44,51,50,46,51,49,48,53,55,52,93,44,91,45,56,56,46,52,50,49,52,53,51,44,51,50,46,51,48,56,54,56,93,44,91,45,56,56,46,52,51,49,51,55,57,44,51,50,46,50,50,55,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,52,48,57,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,51,49,49,52,53,44,51,56,46,56,53,50,53,48,55,93,44,91,45,56,55,46,53,49,57,54,49,44,51,56,46,54,57,55,49,57,56,93,44,91,45,56,55,46,54,53,49,53,50,57,44,51,56,46,53,54,56,49,54,54,93,44,91,45,56,55,46,55,52,51,54,57,49,44,51,56,46,52,49,52,51,56,55,93,44,91,45,56,55,46,52,54,50,56,57,50,44,51,56,46,53,51,51,53,49,57,93,44,91,45,56,55,46,50,52,50,48,57,55,44,51,56,46,53,52,52,57,51,93,44,91,45,56,55,46,50,55,56,53,53,51,44,51,56,46,54,57,49,51,52,51,93,44,91,45,56,55,46,50,52,54,54,44,51,56,46,56,48,55,55,48,49,93,44,91,45,56,55,46,48,57,56,55,55,49,44,51,56,46,57,48,51,57,55,52,93,44,91,45,56,55,46,50,52,49,48,50,55,44,51,56,46,57,48,55,56,55,52,93,44,91,45,56,55,46,53,50,50,57,51,57,44,51,56,46,57,48,50,51,57,93,44,91,45,56,55,46,53,51,49,49,52,53,44,51,56,46,56,53,50,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,68,97,119,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,48,52,44,34,98,101,100,115,34,58,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,50,52,50,51,53,44,52,49,46,48,52,54,53,57,55,93,44,91,45,49,48,48,46,50,50,51,51,49,49,44,52,48,46,55,48,48,50,53,52,93,44,91,45,57,57,46,57,56,49,55,52,51,44,52,48,46,55,48,48,48,48,51,93,44,91,45,57,57,46,54,52,51,52,54,50,44,52,48,46,54,56,52,57,49,49,93,44,91,45,57,57,46,52,49,55,51,49,54,44,52,48,46,54,55,48,56,50,53,93,44,91,45,57,57,46,52,50,53,57,56,54,44,52,49,46,48,52,54,52,55,49,93,44,91,45,49,48,48,46,50,50,52,50,51,53,44,52,49,46,48,52,54,53,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,70,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,56,52,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,50,55,48,57,44,51,55,46,57,49,52,48,49,56,93,44,91,45,49,48,48,46,50,49,54,50,50,57,44,51,55,46,52,55,53,49,57,93,44,91,45,49,48,48,46,49,48,55,50,52,56,44,51,55,46,52,55,52,56,51,54,93,44,91,45,57,57,46,53,53,54,49,49,57,44,51,55,46,52,54,55,55,50,50,93,44,91,45,57,57,46,53,53,57,53,56,44,51,55,46,55,51,52,56,56,56,93,44,91,45,57,57,46,53,54,57,56,55,57,44,51,55,46,57,49,51,48,49,54,93,44,91,45,49,48,48,46,50,50,55,48,57,44,51,55,46,57,49,52,48,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,48,54,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,54,55,54,54,44,52,56,46,51,56,57,50,57,56,93,44,91,45,49,48,52,46,48,52,52,48,52,52,44,52,55,46,57,57,54,48,56,50,93,44,91,45,49,48,51,46,57,49,57,55,56,57,44,52,55,46,57,53,53,57,53,93,44,91,45,49,48,51,46,55,56,52,51,57,52,44,52,56,46,48,53,57,52,57,49,93,44,91,45,49,48,51,46,54,48,56,49,55,52,44,52,56,46,49,49,52,49,50,52,93,44,91,45,49,48,51,46,52,56,53,48,55,50,44,52,56,46,48,48,54,55,50,53,93,44,91,45,49,48,51,46,50,55,55,50,54,54,44,52,56,46,48,53,56,48,50,51,93,44,91,45,49,48,51,46,50,48,49,56,57,44,52,56,46,49,51,53,50,48,56,93,44,91,45,49,48,50,46,56,50,56,52,55,55,44,52,56,46,49,50,51,54,54,52,93,44,91,45,49,48,50,46,56,50,56,49,54,51,44,52,56,46,51,55,50,54,52,49,93,44,91,45,49,48,50,46,56,56,53,55,54,51,44,52,56,46,53,52,54,51,57,93,44,91,45,49,48,50,46,56,56,53,55,55,53,44,52,56,46,54,51,51,50,57,56,93,44,91,45,49,48,52,46,48,52,55,57,50,52,44,52,56,46,54,51,51,57,49,49,93,44,91,45,49,48,52,46,48,52,54,55,54,54,44,52,56,46,51,56,57,50,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,52,50,48,50,44,34,98,101,100,115,34,58,49,51,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,48,53,57,51,53,44,52,55,46,50,51,57,57,55,55,93,44,91,45,57,55,46,54,56,49,53,48,56,44,52,54,46,57,55,56,52,56,49,93,44,91,45,57,55,46,54,56,50,48,48,54,44,52,54,46,54,50,57,57,50,56,93,44,91,45,57,55,46,50,55,57,57,52,56,44,52,54,46,54,50,57,51,52,56,93,44,91,45,57,54,46,55,57,56,49,50,56,44,52,54,46,54,51,48,51,50,54,93,44,91,45,57,54,46,55,54,49,54,57,51,44,52,54,46,57,51,52,53,53,56,93,44,91,45,57,54,46,56,51,52,56,51,57,44,52,55,46,48,48,55,50,53,52,93,44,91,45,57,54,46,56,52,48,49,50,50,44,52,55,46,49,53,48,52,55,53,93,44,91,45,57,54,46,56,51,51,51,57,51,44,52,55,46,50,51,56,48,52,49,93,44,91,45,57,55,46,52,53,49,53,49,50,44,52,55,46,50,51,57,48,54,49,93,44,91,45,57,55,46,55,48,53,57,51,53,44,52,55,46,50,51,57,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,49,50,54,57,55,44,51,55,46,53,57,57,54,50,53,93,44,91,45,56,56,46,52,49,53,52,48,54,44,51,55,46,52,50,51,57,55,50,93,44,91,45,56,56,46,51,53,56,52,54,54,44,51,55,46,52,48,52,55,53,50,93,44,91,45,56,56,46,50,55,57,50,48,55,44,51,55,46,52,53,51,50,57,50,93,44,91,45,56,56,46,48,54,49,51,51,50,44,51,55,46,53,48,53,51,51,50,93,44,91,45,56,56,46,49,51,51,52,51,52,44,51,55,46,53,55,52,51,51,56,93,44,91,45,56,56,46,51,55,53,52,51,52,44,51,55,46,53,57,57,53,57,53,93,44,91,45,56,56,46,52,49,50,54,57,55,44,51,55,46,53,57,57,54,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,114,116,104,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,57,56,53,53,50,51,44,52,49,46,55,52,50,50,57,93,44,91,45,49,48,49,46,57,56,52,54,51,44,52,49,46,51,57,52,55,49,50,93,44,91,45,49,48,49,46,52,48,55,50,54,44,52,49,46,51,57,53,52,49,54,93,44,91,45,49,48,49,46,52,48,54,52,54,54,44,52,49,46,55,52,51,50,93,44,91,45,49,48,49,46,52,50,53,57,50,44,52,49,46,55,52,51,48,53,57,93,44,91,45,49,48,49,46,57,56,53,53,50,51,44,52,49,46,55,52,50,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,70,114,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,51,57,52,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,52,57,44,50,57,46,48,57,48,52,51,52,93,44,91,45,57,57,46,52,49,51,56,56,44,50,57,46,48,57,49,51,51,53,93,44,91,45,57,57,46,52,48,57,48,50,49,44,50,56,46,54,52,48,53,54,54,93,44,91,45,57,57,46,51,57,53,55,51,54,44,50,56,46,54,52,48,55,56,52,93,44,91,45,57,56,46,56,48,48,56,52,49,44,50,56,46,54,52,55,52,56,55,93,44,91,45,57,56,46,56,48,52,57,44,50,57,46,48,57,48,52,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,48,48,49,44,34,98,101,100,115,34,58,49,51,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,51,49,51,55,57,44,52,49,46,56,54,49,56,53,49,93,44,91,45,57,49,46,56,50,57,50,51,49,44,52,49,46,53,49,49,52,53,55,93,44,91,45,57,49,46,53,50,50,52,56,44,52,49,46,53,49,49,48,51,53,93,44,91,45,57,49,46,52,56,51,57,57,53,44,52,49,46,52,50,51,56,52,56,93,44,91,45,57,49,46,51,54,56,53,50,49,44,52,49,46,52,50,51,49,55,56,93,44,91,45,57,49,46,51,54,54,52,52,56,44,52,49,46,53,57,56,51,55,51,93,44,91,45,57,49,46,51,54,54,50,50,49,44,52,49,46,56,54,48,48,54,57,93,44,91,45,57,49,46,56,51,49,51,55,57,44,52,49,46,56,54,49,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,78,101,111,115,104,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,56,56,48,56,50,44,51,55,46,55,51,50,52,55,54,93,44,91,45,57,53,46,53,50,53,52,57,57,44,51,55,46,55,51,50,55,53,57,93,44,91,45,57,53,46,53,50,53,53,54,44,51,55,46,51,56,51,57,55,57,93,44,91,45,57,53,46,53,50,49,49,51,44,51,55,46,51,56,51,57,57,93,44,91,45,57,53,46,48,56,56,49,56,57,44,51,55,46,51,56,51,56,51,55,93,44,91,45,57,53,46,48,56,56,48,49,50,44,51,55,46,54,55,52,53,49,57,93,44,91,45,57,53,46,48,56,56,48,56,50,44,51,55,46,55,51,50,52,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,117,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,54,53,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,48,51,48,56,53,56,44,51,56,46,55,50,53,53,50,52,93,44,91,45,56,51,46,48,55,51,54,51,51,44,51,56,46,53,57,48,52,51,56,93,44,91,45,56,51,46,49,54,54,52,49,57,44,51,56,46,53,48,51,57,54,53,93,44,91,45,56,50,46,57,54,55,54,51,53,44,51,56,46,51,57,52,49,51,56,93,44,91,45,56,50,46,56,49,55,52,53,52,44,51,56,46,51,55,51,57,51,53,93,44,91,45,56,50,46,54,54,53,52,49,49,44,51,56,46,53,48,53,55,56,55,93,44,91,45,56,50,46,56,49,53,57,55,57,44,51,56,46,53,55,48,56,48,50,93,44,91,45,56,50,46,56,57,55,49,56,57,44,51,56,46,55,53,54,50,49,52,93,44,91,45,56,51,46,48,51,48,56,53,56,44,51,56,46,55,50,53,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,76,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,44,91,45,57,53,46,48,55,55,56,55,54,44,51,56,46,48,51,55,55,48,54,93,44,91,45,57,52,46,54,49,52,48,56,57,44,51,56,46,48,51,55,48,53,55,93,44,91,45,57,52,46,54,49,52,48,54,49,44,51,56,46,48,54,48,48,53,54,93,44,91,45,57,52,46,54,49,51,50,51,50,44,51,56,46,51,56,56,55,49,56,93,44,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,49,55,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,52,51,50,49,53,44,51,56,46,49,53,49,50,56,93,44,91,45,49,49,50,46,52,52,52,50,49,52,44,51,56,46,49,53,48,48,48,49,93,44,91,45,49,49,50,46,52,55,56,54,56,44,51,56,46,49,52,55,52,49,57,93,44,91,45,49,49,50,46,52,54,56,49,55,55,44,51,55,46,56,57,48,52,54,52,93,44,91,45,49,49,50,46,53,55,56,51,57,55,44,51,55,46,56,56,50,49,52,55,93,44,91,45,49,49,50,46,54,56,57,50,50,49,44,51,55,46,56,48,53,53,57,93,44,91,45,49,49,50,46,54,56,51,55,53,44,51,55,46,53,52,51,54,57,50,93,44,91,45,49,49,49,46,56,52,48,56,48,57,44,51,55,46,53,51,53,55,56,57,93,44,91,45,49,49,48,46,54,52,54,51,57,52,44,51,55,46,53,52,49,48,54,51,93,44,91,45,49,49,48,46,53,48,49,53,57,52,44,51,55,46,54,53,93,44,91,45,49,49,48,46,52,51,55,53,51,56,44,51,55,46,56,48,54,57,50,93,44,91,45,49,49,48,46,51,54,52,49,52,54,44,51,55,46,56,57,50,49,56,53,93,44,91,45,49,49,48,46,50,49,52,57,52,57,44,51,55,46,56,57,50,53,53,53,93,44,91,45,49,49,48,46,48,48,57,52,57,52,44,51,56,46,49,48,57,54,53,54,93,44,91,45,49,48,57,46,57,50,55,57,57,53,44,51,56,46,49,53,49,56,56,52,93,44,91,45,49,49,48,46,54,56,55,52,48,54,44,51,56,46,49,53,49,51,56,53,93,44,91,45,49,49,49,46,56,52,51,50,49,53,44,51,56,46,49,53,49,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,69,117,114,101,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,53,56,54,55,56,54,44,52,49,46,48,48,48,51,57,56,93,44,91,45,49,49,54,46,53,57,54,56,49,53,44,52,48,46,57,52,54,52,54,93,44,91,45,49,49,54,46,53,57,48,51,57,54,44,52,48,46,48,55,50,50,55,55,93,44,91,45,49,49,54,46,54,48,48,57,52,54,44,51,57,46,49,54,49,52,54,51,93,44,91,45,49,49,53,46,57,48,55,48,55,49,44,51,57,46,49,54,49,56,52,56,93,44,91,45,49,49,53,46,57,48,55,54,53,57,44,51,57,46,52,54,52,52,51,50,93,44,91,45,49,49,53,46,56,49,51,52,55,54,44,51,57,46,53,57,51,53,50,49,93,44,91,45,49,49,53,46,56,51,51,49,48,49,44,51,57,46,55,50,57,52,49,50,93,44,91,45,49,49,53,46,55,57,52,56,54,52,44,51,57,46,56,53,51,49,48,52,93,44,91,45,49,49,53,46,56,51,52,57,54,57,44,52,48,46,49,50,55,56,52,50,93,44,91,45,49,49,54,46,48,48,48,56,57,55,44,52,48,46,49,50,55,51,55,54,93,44,91,45,49,49,54,46,49,53,55,56,51,52,44,52,48,46,54,54,54,51,56,57,93,44,91,45,49,49,54,46,49,53,56,49,53,53,44,52,48,46,57,57,57,57,49,50,93,44,91,45,49,49,54,46,53,56,54,55,56,54,44,52,49,46,48,48,48,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,97,121,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,51,52,53,51,54,53,44,52,48,46,54,57,56,48,57,51,93,44,91,45,49,48,49,46,51,52,50,55,56,56,44,52,48,46,51,53,48,52,52,52,93,44,91,45,49,48,49,46,51,50,51,51,53,51,44,52,48,46,51,53,48,53,53,51,93,44,91,45,49,48,48,46,55,55,55,51,55,54,44,52,48,46,51,52,57,52,54,54,93,44,91,45,49,48,48,46,55,55,55,56,51,51,44,52,48,46,55,48,48,49,51,53,93,44,91,45,49,48,49,46,50,52,55,57,54,51,44,52,48,46,54,57,55,56,48,50,93,44,91,45,49,48,49,46,51,52,53,51,54,53,44,52,48,46,54,57,56,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,80,104,105,108,108,105,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,49,56,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,53,49,52,49,54,44,52,48,46,55,52,57,53,56,54,93,44,91,45,49,48,50,46,54,53,49,51,49,44,52,48,46,55,52,57,52,48,50,93,44,91,45,49,48,50,46,54,54,52,56,48,52,44,52,48,46,52,51,56,52,55,51,93,44,91,45,49,48,50,46,48,53,49,52,54,53,44,52,48,46,52,52,48,48,48,56,93,44,91,45,49,48,50,46,48,53,49,52,53,55,44,52,48,46,54,57,55,53,51,57,93,44,91,45,49,48,50,46,48,53,49,52,49,54,44,52,48,46,55,52,57,53,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,56,51,48,53,52,44,51,51,46,56,48,50,49,57,56,93,44,91,45,57,50,46,53,56,54,56,56,54,44,51,51,46,55,51,49,50,51,52,93,44,91,45,57,50,46,55,53,57,48,51,53,44,51,51,46,53,51,48,57,53,52,93,44,91,45,57,50,46,55,48,53,48,57,51,44,51,51,46,52,51,49,50,49,53,93,44,91,45,57,50,46,53,54,55,49,53,54,44,51,51,46,51,54,55,50,93,44,91,45,57,50,46,52,52,49,54,55,55,44,51,51,46,50,55,51,54,52,55,93,44,91,45,57,50,46,51,53,48,52,51,50,44,51,51,46,50,57,56,57,52,49,93,44,91,45,57,50,46,51,56,50,48,54,44,51,51,46,51,52,53,57,55,49,93,44,91,45,57,50,46,51,49,49,48,55,57,44,51,51,46,52,57,57,55,56,50,93,44,91,45,57,50,46,51,51,48,56,51,57,44,51,51,46,55,48,55,56,48,54,93,44,91,45,57,50,46,51,51,52,50,52,57,44,51,51,46,55,57,53,48,54,53,93,44,91,45,57,50,46,53,56,51,48,53,52,44,51,51,46,56,48,50,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,57,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,48,34,44,34,78,65,77,69,34,58,34,70,97,105,114,98,97,110,107,115,32,78,111,114,116,104,32,83,116,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,54,53,51,44,34,98,101,100,115,34,58,49,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,52,46,48,54,57,48,50,57,44,54,52,46,54,56,51,53,54,50,93,44,91,45,49,52,52,46,49,48,52,55,52,52,44,54,52,46,56,52,57,50,51,49,93,44,91,45,49,52,51,46,57,50,49,48,57,52,44,54,53,46,48,53,56,55,56,93,44,91,45,49,52,51,46,57,55,51,54,51,57,44,54,53,46,49,49,57,51,48,52,93,44,91,45,49,52,52,46,51,51,49,51,55,55,44,54,53,46,49,48,55,55,48,55,93,44,91,45,49,52,52,46,52,54,48,48,50,44,54,53,46,48,54,48,55,49,49,93,44,91,45,49,52,52,46,57,56,51,53,49,52,44,54,53,46,49,51,54,57,56,56,93,44,91,45,49,52,53,46,50,50,53,57,52,52,44,54,53,46,48,54,57,50,49,54,93,44,91,45,49,52,53,46,53,49,57,52,51,54,44,54,53,46,48,54,50,54,56,50,93,44,91,45,49,52,53,46,54,51,51,55,56,57,44,54,53,46,49,53,51,55,57,49,93,44,91,45,49,52,54,46,48,56,49,48,50,56,44,54,53,46,50,52,57,57,52,50,93,44,91,45,49,52,54,46,48,48,55,56,57,57,44,54,53,46,51,53,57,52,51,52,93,44,91,45,49,52,54,46,50,48,53,55,48,52,44,54,53,46,52,53,50,57,57,54,93,44,91,45,49,52,54,46,53,52,56,54,53,52,44,54,53,46,51,52,53,48,48,51,93,44,91,45,49,52,54,46,57,48,51,49,52,50,44,54,53,46,50,56,51,51,55,53,93,44,91,45,49,52,55,46,51,49,54,56,48,57,44,54,53,46,50,55,53,50,51,50,93,44,91,45,49,52,55,46,53,53,55,55,55,49,44,54,53,46,50,48,57,56,57,53,93,44,91,45,49,52,56,46,54,54,49,49,57,57,44,54,53,46,50,48,57,56,55,53,93,44,91,45,49,52,56,46,54,52,56,50,48,55,44,54,52,46,53,56,53,51,55,49,93,44,91,45,49,52,56,46,53,53,48,55,52,50,44,54,52,46,54,49,55,50,48,56,93,44,91,45,49,52,56,46,48,52,54,54,57,54,44,54,52,46,51,52,51,56,48,50,93,44,91,45,49,52,55,46,55,53,57,50,44,54,52,46,50,53,55,50,93,44,91,45,49,52,54,46,57,57,57,57,48,57,44,54,52,46,50,53,55,49,57,54,93,44,91,45,49,52,54,46,51,52,52,54,55,51,44,54,52,46,50,55,54,51,54,52,93,44,91,45,49,52,54,46,49,53,55,53,57,50,44,54,52,46,51,56,50,55,51,93,44,91,45,49,52,54,46,48,48,51,55,55,50,44,54,52,46,51,56,49,48,57,49,93,44,91,45,49,52,53,46,55,52,48,48,48,50,44,54,52,46,52,54,48,49,51,50,93,44,91,45,49,52,53,46,52,57,56,48,56,57,44,54,52,46,52,50,51,49,53,53,93,44,91,45,49,52,53,46,51,55,51,57,50,57,44,54,52,46,52,56,51,56,51,54,93,44,91,45,49,52,53,46,48,56,50,55,56,55,44,54,52,46,53,48,55,51,52,57,93,44,91,45,49,52,52,46,57,56,53,51,51,49,44,54,52,46,53,54,56,54,48,57,93,44,91,45,49,52,52,46,53,53,50,53,50,54,44,54,52,46,54,48,48,54,52,53,93,44,91,45,49,52,52,46,48,54,57,48,50,57,44,54,52,46,54,56,51,53,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,72,101,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,49,51,55,44,34,98,101,100,115,34,58,49,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,53,49,49,57,57,44,51,55,46,57,52,48,57,53,52,93,44,91,45,56,55,46,55,48,48,55,54,50,44,51,55,46,56,57,55,53,53,54,93,44,91,45,56,55,46,57,50,55,48,54,56,44,51,55,46,57,48,49,54,56,53,93,44,91,45,56,55,46,55,51,52,53,52,53,44,51,55,46,54,51,56,51,55,54,93,44,91,45,56,55,46,52,57,53,51,51,49,44,51,55,46,54,52,55,53,52,55,93,44,91,45,56,55,46,52,48,56,53,52,55,44,51,55,46,54,56,51,53,54,51,93,44,91,45,56,55,46,50,56,57,55,56,52,44,51,55,46,55,54,49,48,55,56,93,44,91,45,56,55,46,51,48,50,57,51,50,44,51,55,46,56,57,55,55,53,93,44,91,45,56,55,46,52,53,49,49,57,57,44,51,55,46,57,52,48,57,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,72,111,108,109,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,51,49,53,56,57,44,51,51,46,51,48,50,56,50,53,93,44,91,45,57,48,46,51,51,48,51,49,50,44,51,51,46,49,51,55,56,49,56,93,44,91,45,57,48,46,52,50,56,55,55,52,44,51,51,46,49,48,55,57,51,50,93,44,91,45,57,48,46,51,54,52,48,51,49,44,51,51,46,48,49,48,53,57,54,93,44,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,44,91,45,56,57,46,57,48,50,53,48,49,44,51,50,46,57,50,55,57,52,93,44,91,45,56,57,46,55,52,57,52,52,49,44,51,51,46,50,49,52,52,55,56,93,44,91,45,57,48,46,49,55,52,54,49,52,44,51,51,46,51,51,51,51,55,56,93,44,91,45,57,48,46,50,57,53,48,50,57,44,51,51,46,51,54,49,55,56,52,93,44,91,45,57,48,46,51,51,49,53,56,57,44,51,51,46,51,48,50,56,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,79,107,116,105,98,98,101,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,52,56,49,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,56,56,52,52,54,44,51,51,46,53,51,51,50,48,50,93,44,91,45,56,57,46,48,56,56,50,53,53,44,51,51,46,50,56,54,48,48,51,93,44,91,45,56,56,46,56,49,51,48,53,51,44,51,51,46,50,56,54,52,50,52,93,44,91,45,56,56,46,54,54,57,48,55,54,44,51,51,46,50,56,54,57,50,50,93,44,91,45,56,56,46,54,55,49,50,53,44,51,51,46,53,48,54,49,54,56,93,44,91,45,56,56,46,54,55,49,53,50,54,44,51,51,46,53,54,53,49,51,53,93,44,91,45,56,57,46,48,49,56,54,49,51,44,51,51,46,53,54,50,49,49,52,93,44,91,45,56,57,46,48,56,56,52,52,54,44,51,51,46,53,51,51,50,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,101,105,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,53,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,55,54,54,56,51,49,44,49,56,46,50,56,48,48,48,52,93,44,91,45,54,53,46,54,55,49,44,49,56,46,50,50,51,48,53,50,93,44,91,45,54,53,46,54,53,52,55,50,56,44,49,56,46,49,51,51,51,51,53,93,44,91,45,54,53,46,54,49,56,48,53,44,49,56,46,49,53,52,49,56,93,44,91,45,54,53,46,53,53,52,54,52,51,44,49,56,46,49,56,52,55,54,55,93,44,91,45,54,53,46,52,50,50,55,48,54,44,49,56,46,50,57,48,55,50,56,93,44,91,45,54,53,46,52,50,52,52,51,49,44,49,56,46,51,57,48,56,56,93,44,91,45,54,53,46,52,54,57,49,51,50,44,49,56,46,51,57,54,52,49,93,44,91,45,54,53,46,54,50,52,54,48,53,44,49,56,46,50,56,55,55,52,53,93,44,91,45,54,53,46,55,53,51,53,57,49,44,49,56,46,50,57,54,55,53,53,93,44,91,45,54,53,46,55,53,56,56,54,49,44,49,56,46,50,57,48,54,48,52,93,44,91,45,54,53,46,55,54,54,56,51,49,44,49,56,46,50,56,48,48,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,111,114,111,122,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,49,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,54,53,50,55,50,44,49,56,46,51,51,51,50,50,57,93,44,91,45,54,54,46,51,55,55,55,49,50,44,49,56,46,50,57,51,57,55,54,93,44,91,45,54,54,46,51,53,48,55,57,51,44,49,56,46,50,52,49,50,51,53,93,44,91,45,54,54,46,51,49,51,50,57,57,44,49,56,46,50,52,57,51,50,52,93,44,91,45,54,54,46,50,55,56,48,55,54,44,49,56,46,51,50,57,57,55,53,93,44,91,45,54,54,46,51,49,56,55,54,52,44,49,56,46,51,54,55,52,49,49,93,44,91,45,54,54,46,51,54,53,50,55,50,44,49,56,46,51,51,51,50,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,70,101,114,103,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,55,51,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,50,49,51,53,57,54,44,52,55,46,52,49,54,54,53,55,93,44,91,45,49,49,48,46,49,50,55,54,57,57,44,52,55,46,50,55,49,57,49,93,44,91,45,49,48,57,46,55,53,54,53,54,56,44,52,55,46,49,56,53,54,57,52,93,44,91,45,49,48,57,46,55,53,53,52,50,51,44,52,54,46,56,57,54,48,50,51,93,44,91,45,49,48,57,46,55,57,55,52,54,57,44,52,54,46,56,54,55,48,51,56,93,44,91,45,49,48,57,46,55,52,53,55,52,53,44,52,54,46,54,57,52,48,57,55,93,44,91,45,49,48,57,46,51,56,57,49,54,51,44,52,54,46,54,57,51,54,50,53,93,44,91,45,49,48,57,46,51,56,57,50,48,56,44,52,54,46,55,53,49,51,53,49,93,44,91,45,49,48,57,46,48,48,57,53,55,44,52,54,46,55,53,48,55,48,50,93,44,91,45,49,48,56,46,54,51,49,52,54,50,44,52,54,46,55,52,57,51,57,50,93,44,91,45,49,48,56,46,54,48,56,57,53,52,44,52,55,46,48,57,56,49,50,54,93,44,91,45,49,48,56,46,55,51,54,56,51,56,44,52,55,46,48,57,56,50,49,56,93,44,91,45,49,48,56,46,55,49,57,49,56,57,44,52,55,46,50,55,48,51,52,50,93,44,91,45,49,48,56,46,53,57,48,56,51,53,44,52,55,46,51,48,54,53,49,54,93,44,91,45,49,48,56,46,51,49,53,52,56,49,44,52,55,46,51,49,53,49,53,50,93,44,91,45,49,48,56,46,51,49,51,48,52,56,44,52,55,46,53,56,51,54,53,93,44,91,45,49,48,56,46,54,55,49,52,44,52,55,46,54,49,57,53,53,54,93,44,91,45,49,48,56,46,56,57,49,49,49,53,44,52,55,46,55,51,52,52,53,54,93,44,91,45,49,48,56,46,57,52,50,55,52,53,44,52,55,46,55,57,49,56,50,52,93,44,91,45,49,48,57,46,50,55,55,51,56,50,44,52,55,46,55,57,50,52,51,53,93,44,91,45,49,48,57,46,52,49,49,53,48,54,44,52,55,46,55,50,52,54,49,55,93,44,91,45,49,48,57,46,53,51,56,54,55,55,44,52,55,46,55,51,56,56,54,52,93,44,91,45,49,48,57,46,56,50,51,52,48,49,44,52,55,46,55,49,53,53,55,57,93,44,91,45,49,48,57,46,56,52,53,50,50,49,44,52,55,46,53,52,54,55,57,53,93,44,91,45,49,49,48,46,50,49,51,53,57,54,44,52,55,46,52,49,54,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,71,97,114,114,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,55,54,44,34,98,101,100,115,34,58,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,55,54,54,54,50,44,51,57,46,55,50,49,48,55,56,93,44,91,45,55,57,46,52,56,54,56,55,53,44,51,57,46,50,48,53,56,57,54,93,44,91,45,55,57,46,50,55,49,54,57,53,44,51,57,46,51,50,55,57,57,57,93,44,91,45,55,57,46,48,54,55,53,53,57,44,51,57,46,52,55,57,52,52,51,93,44,91,45,55,56,46,57,50,56,52,49,54,44,51,57,46,55,50,50,55,56,51,93,44,91,45,55,57,46,51,57,50,52,53,57,44,51,57,46,55,50,49,53,55,56,93,44,91,45,55,57,46,52,55,54,54,54,50,44,51,57,46,55,50,49,48,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,51,49,44,34,98,101,100,115,34,58,50,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,50,48,57,57,52,44,51,51,46,48,49,56,54,49,54,93,44,91,45,57,51,46,52,53,51,49,50,49,44,51,50,46,56,53,57,57,51,53,93,44,91,45,57,51,46,52,52,49,50,49,50,44,51,50,46,52,49,48,52,51,49,93,44,91,45,57,51,46,51,55,50,55,56,49,44,51,50,46,52,49,48,49,53,51,93,44,91,45,57,51,46,50,51,54,54,53,54,44,51,50,46,52,49,48,48,55,49,93,44,91,45,57,51,46,49,52,55,49,57,51,44,51,50,46,52,53,53,49,55,51,93,44,91,45,57,51,46,49,55,56,55,54,55,44,51,50,46,53,56,52,57,49,54,93,44,91,45,57,51,46,50,51,55,51,56,49,44,51,50,46,55,49,54,50,53,93,44,91,45,57,51,46,50,51,56,54,48,55,44,51,51,46,48,49,55,57,57,50,93,44,91,45,57,51,46,52,57,48,53,50,44,51,51,46,48,49,56,52,52,50,93,44,91,45,57,51,46,53,50,48,57,57,52,44,51,51,46,48,49,56,54,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,105,108,108,115,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,56,51,48,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,50,54,52,57,49,44,52,50,46,48,55,50,52,54,56,93,44,91,45,56,52,46,56,50,53,49,51,44,52,49,46,55,53,57,57,57,57,93,44,91,45,56,52,46,56,48,53,57,55,50,44,52,49,46,54,57,54,49,49,56,93,44,91,45,56,52,46,51,57,57,53,52,54,44,52,49,46,55,48,53,56,49,54,93,44,91,45,56,52,46,51,54,48,52,49,54,44,52,49,46,55,48,54,53,56,57,93,44,91,45,56,52,46,51,54,51,50,57,55,44,52,50,46,48,55,51,52,53,54,93,44,91,45,56,52,46,55,48,57,53,53,54,44,52,50,46,48,55,48,51,54,54,93,44,91,45,56,52,46,56,50,54,52,57,49,44,52,50,46,48,55,50,52,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,56,52,57,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,53,51,49,54,52,44,51,55,46,48,54,49,48,49,57,93,44,91,45,56,55,46,48,54,48,56,52,57,44,51,54,46,54,52,50,57,54,51,93,44,91,45,56,54,46,55,54,51,50,57,54,44,51,54,46,54,52,56,57,53,52,93,44,91,45,56,54,46,54,57,48,55,49,57,44,51,54,46,56,52,52,51,93,44,91,45,56,54,46,54,49,49,53,56,54,44,51,54,46,56,56,51,48,53,55,93,44,91,45,56,54,46,54,55,52,52,54,50,44,51,54,46,57,57,57,55,54,54,93,44,91,45,56,54,46,57,52,49,51,57,49,44,51,55,46,48,54,56,57,56,49,93,44,91,45,56,55,46,48,53,51,49,54,52,44,51,55,46,48,54,49,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,55,51,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,52,56,48,51,44,52,51,46,52,55,55,56,49,53,93,44,91,45,49,48,51,46,48,48,48,57,49,51,44,52,51,46,52,55,54,56,52,56,93,44,91,45,49,48,51,46,48,48,49,48,49,55,44,52,51,46,54,48,53,56,49,54,93,44,91,45,49,48,50,46,56,48,57,51,57,56,44,52,51,46,54,56,55,53,54,93,44,91,45,49,48,50,46,54,56,55,49,57,49,44,52,51,46,56,53,53,53,57,57,93,44,91,45,49,48,52,46,48,53,53,52,56,55,44,52,51,46,56,53,51,52,55,54,93,44,91,45,49,48,52,46,48,53,52,55,56,54,44,52,51,46,53,48,51,51,50,56,93,44,91,45,49,48,52,46,48,53,52,56,48,51,44,52,51,46,52,55,55,56,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,77,101,114,114,105,109,97,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,52,53,50,44,34,98,101,100,115,34,58,53,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,57,51,53,51,49,44,52,51,46,53,50,56,56,56,93,44,91,45,55,50,46,48,57,48,49,52,54,44,52,51,46,51,50,50,53,53,51,93,44,91,45,55,50,46,48,48,57,48,55,52,44,52,51,46,49,56,55,56,56,50,93,44,91,45,55,49,46,57,49,51,50,49,53,44,52,51,46,50,48,55,48,57,57,93,44,91,45,55,49,46,56,53,54,49,44,52,51,46,49,49,53,49,51,53,93,44,91,45,55,49,46,54,54,55,55,55,49,44,52,51,46,49,53,50,53,51,52,93,44,91,45,55,49,46,54,52,49,50,57,49,44,52,51,46,48,53,52,49,54,56,93,44,91,45,55,49,46,53,49,55,52,54,55,44,52,51,46,48,54,56,57,48,57,93,44,91,45,55,49,46,51,57,50,51,56,56,44,52,51,46,48,48,57,51,48,57,93,44,91,45,55,49,46,50,52,55,51,51,54,44,52,51,46,50,55,53,50,51,50,93,44,91,45,55,49,46,50,51,54,48,49,49,44,52,51,46,50,56,52,57,57,52,93,44,91,45,55,49,46,53,53,48,48,51,44,52,51,46,52,53,50,55,48,49,93,44,91,45,55,49,46,54,49,50,52,50,54,44,52,51,46,52,51,55,56,57,51,93,44,91,45,55,49,46,55,50,55,53,55,51,44,52,51,46,53,54,51,52,49,49,93,44,91,45,55,49,46,57,51,53,51,49,44,52,51,46,53,50,56,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,52,48,49,52,44,34,98,101,100,115,34,58,57,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,51,55,52,50,53,44,52,48,46,48,54,57,57,52,53,93,44,91,45,55,55,46,48,49,56,54,52,56,44,52,48,46,48,49,51,57,52,55,93,44,91,45,55,54,46,57,53,52,57,51,50,44,51,57,46,56,53,54,56,53,93,44,91,45,55,54,46,57,57,57,51,49,56,44,51,57,46,55,50,48,49,48,54,93,44,91,45,55,54,46,55,56,55,48,57,54,44,51,57,46,55,50,48,56,93,44,91,45,55,54,46,53,54,57,52,52,57,44,51,57,46,55,50,49,49,55,56,93,44,91,45,55,54,46,50,51,57,56,48,53,44,51,57,46,55,50,49,51,51,53,93,44,91,45,55,54,46,52,55,51,53,56,44,51,57,46,57,52,55,51,53,50,93,44,91,45,55,54,46,53,51,52,53,50,52,44,52,48,46,48,53,49,51,52,56,93,44,91,45,55,54,46,55,50,49,54,50,44,52,48,46,49,50,48,48,55,93,44,91,45,55,54,46,56,53,57,48,50,51,44,52,48,46,50,50,54,51,50,56,93,44,91,45,55,55,46,49,51,55,52,50,53,44,52,48,46,48,54,57,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,82,117,116,104,101,114,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,53,51,50,44,34,98,101,100,115,34,58,49,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,54,49,51,48,53,44,51,53,46,51,57,51,49,57,56,93,44,91,45,56,50,46,49,53,49,53,51,53,44,51,53,46,52,48,55,53,56,49,93,44,91,45,56,49,46,57,54,56,55,56,56,44,51,53,46,50,53,55,55,54,52,93,44,91,45,56,49,46,57,54,57,51,52,56,44,51,53,46,49,56,55,50,49,55,93,44,91,45,56,49,46,56,55,52,54,56,57,44,51,53,46,49,56,52,48,51,54,93,44,91,45,56,49,46,55,54,56,49,48,50,44,51,53,46,49,56,48,54,49,49,93,44,91,45,56,49,46,55,48,50,56,53,51,44,51,53,46,51,53,55,51,48,52,93,44,91,45,56,49,46,54,57,49,57,56,57,44,51,53,46,53,56,48,48,52,49,93,44,91,45,56,49,46,56,50,52,49,50,50,44,51,53,46,53,55,52,57,56,51,93,44,91,45,56,49,46,57,54,55,54,49,57,44,51,53,46,53,50,54,48,48,55,93,44,91,45,56,50,46,49,54,57,48,52,57,44,51,53,46,53,50,55,56,49,49,93,44,91,45,56,50,46,50,54,53,55,57,53,44,51,53,46,52,54,55,56,49,56,93,44,91,45,56,50,46,50,54,49,51,48,53,44,51,53,46,51,57,51,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,101,97,100,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,48,53,55,54,50,44,52,52,46,54,51,52,49,53,57,93,44,91,45,57,56,46,55,48,48,52,53,51,44,52,52,46,49,57,54,55,50,55,93,44,91,45,57,56,46,51,51,49,57,49,44,52,52,46,49,57,54,54,56,55,93,44,91,45,57,55,46,56,53,51,54,54,44,52,52,46,49,57,53,50,51,51,93,44,91,45,57,55,46,56,53,51,48,50,56,44,52,52,46,53,52,52,51,57,56,93,44,91,45,57,55,46,57,55,55,55,57,49,44,52,52,46,54,51,49,54,48,50,93,44,91,45,57,56,46,55,48,53,55,54,50,44,52,52,46,54,51,52,49,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,117,108,108,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,51,49,51,44,34,98,101,100,115,34,58,49,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,56,49,57,51,54,44,51,52,46,51,48,52,54,57,52,93,44,91,45,56,55,46,49,49,48,49,49,49,44,51,52,46,51,49,51,55,57,57,93,44,91,45,56,55,46,49,48,57,57,49,49,44,51,52,46,50,57,57,50,57,57,93,44,91,45,56,55,46,49,49,49,57,57,50,44,51,51,46,57,57,50,51,56,53,93,44,91,45,56,55,46,49,53,49,48,51,54,44,51,51,46,57,57,51,50,50,53,93,44,91,45,56,54,46,57,54,51,51,53,56,44,51,51,46,56,53,56,50,50,49,93,44,91,45,56,54,46,55,54,51,57,57,57,44,51,51,46,57,55,52,49,56,55,93,44,91,45,56,54,46,54,56,55,54,57,55,44,51,52,46,48,56,48,55,51,53,93,44,91,45,56,54,46,53,57,57,55,56,53,44,51,52,46,49,50,49,55,50,93,44,91,45,56,54,46,53,49,57,54,48,51,44,51,52,46,50,53,49,55,54,54,93,44,91,45,56,54,46,52,53,51,48,50,44,51,52,46,50,53,57,51,49,55,93,44,91,45,56,54,46,53,56,49,57,51,54,44,51,52,46,51,48,52,54,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,56,52,48,44,34,98,101,100,115,34,58,49,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,48,49,54,56,56,44,51,51,46,55,56,48,55,48,51,93,44,91,45,56,52,46,57,48,53,55,56,56,44,51,51,46,53,55,51,51,55,56,93,44,91,45,56,52,46,56,48,56,57,51,52,44,51,51,46,53,55,52,48,56,53,93,44,91,45,56,52,46,54,53,54,52,51,51,44,51,51,46,54,53,57,52,48,57,93,44,91,45,56,52,46,53,55,56,49,51,50,44,51,51,46,55,52,51,53,48,55,93,44,91,45,56,52,46,55,50,52,49,51,57,44,51,51,46,56,48,54,49,55,93,44,91,45,56,52,46,57,48,49,54,56,56,44,51,51,46,55,56,48,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,57,55,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,54,51,54,51,50,44,52,48,46,53,50,51,48,49,51,93,44,91,45,57,54,46,52,54,51,54,54,55,44,52,48,46,50,54,50,49,55,51,93,44,91,45,57,54,46,48,54,54,55,51,54,44,52,48,46,50,54,50,48,51,56,93,44,91,45,57,54,46,48,54,55,48,49,50,44,52,48,46,53,50,51,49,52,56,93,44,91,45,57,54,46,52,54,51,54,51,50,44,52,48,46,53,50,51,48,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,56,52,55,50,54,52,44,51,53,46,55,49,57,57,56,50,93,44,91,45,55,54,46,54,51,55,53,49,51,44,51,53,46,55,48,53,50,49,53,93,44,91,45,55,54,46,52,48,53,57,55,49,44,51,53,46,54,57,55,53,55,57,93,44,91,45,55,54,46,51,53,51,54,54,57,44,51,53,46,56,54,49,51,54,53,93,44,91,45,55,54,46,51,53,56,51,57,51,44,51,54,46,48,50,48,48,49,57,93,44,91,45,55,54,46,51,57,54,55,57,52,44,51,54,46,48,50,54,52,52,51,93,44,91,45,55,54,46,54,48,54,50,49,52,44,51,53,46,57,55,56,48,53,49,93,44,91,45,55,54,46,55,54,48,53,57,56,44,51,53,46,56,54,52,56,56,55,93,44,91,45,55,54,46,56,52,55,50,54,52,44,51,53,46,55,49,57,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,52,54,57,49,54,44,52,52,46,49,54,56,52,56,52,93,44,91,45,49,48,49,46,48,54,52,48,54,56,44,52,51,46,57,57,52,57,50,57,93,44,91,45,49,48,49,46,48,54,52,51,50,54,44,52,51,46,56,52,49,48,57,93,44,91,45,49,48,48,46,57,56,55,48,50,55,44,52,51,46,56,52,57,49,51,50,93,44,91,45,49,48,48,46,54,55,57,51,50,50,44,52,51,46,55,49,49,54,51,54,93,44,91,45,49,48,48,46,53,53,52,54,56,55,44,52,51,46,55,51,55,50,52,55,93,44,91,45,49,48,48,46,51,51,56,57,55,44,52,51,46,55,49,54,57,52,50,93,44,91,45,49,48,48,46,51,54,54,49,55,52,44,52,51,46,56,52,54,57,55,56,93,44,91,45,49,48,48,46,51,54,55,50,48,55,44,52,52,46,49,54,56,54,57,52,93,44,91,45,49,48,49,46,48,52,54,57,49,54,44,52,52,46,49,54,56,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,48,54,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,50,55,54,56,50,57,44,51,53,46,49,57,53,55,50,50,93,44,91,45,56,48,46,51,50,48,56,50,56,44,51,52,46,56,49,51,57,48,54,93,44,91,45,55,57,46,57,50,55,52,49,50,44,51,52,46,56,48,54,55,51,52,93,44,91,45,55,57,46,56,52,57,53,51,54,44,51,52,46,57,48,48,48,48,54,93,44,91,45,55,57,46,57,52,54,49,50,50,44,51,53,46,49,49,56,53,57,51,93,44,91,45,56,48,46,48,55,53,51,54,53,44,51,53,46,49,52,51,48,56,49,93,44,91,45,56,48,46,50,55,54,56,50,57,44,51,53,46,49,57,53,55,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,48,34,44,34,78,65,77,69,34,58,34,72,97,105,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,53,46,55,49,55,51,48,55,44,53,57,46,55,51,48,48,52,51,93,44,91,45,49,51,53,46,57,53,50,54,52,53,44,53,57,46,54,54,50,49,54,54,93,44,91,45,49,51,54,46,49,57,50,57,48,52,44,53,57,46,54,52,48,48,50,55,93,44,91,45,49,51,54,46,51,48,53,48,50,50,44,53,57,46,52,54,52,53,49,56,93,44,91,45,49,51,54,46,52,55,55,49,53,54,44,53,57,46,52,54,53,56,50,52,93,44,91,45,49,51,54,46,52,56,56,52,48,50,44,53,57,46,50,53,57,50,57,93,44,91,45,49,51,53,46,57,54,57,56,52,55,44,53,57,46,49,55,57,55,52,93,44,91,45,49,51,53,46,55,49,48,51,56,51,44,53,57,46,49,48,49,52,57,49,93,44,91,45,49,51,53,46,53,54,54,56,54,53,44,53,56,46,57,54,51,56,50,93,44,91,45,49,51,53,46,55,53,53,51,50,51,44,53,56,46,55,52,53,57,53,52,93,44,91,45,49,51,53,46,52,50,50,54,56,55,44,53,56,46,54,51,49,52,49,54,93,44,91,45,49,51,53,46,52,55,54,49,51,57,44,53,56,46,52,55,53,51,52,55,93,44,91,45,49,51,53,46,52,52,57,54,56,55,44,53,56,46,51,49,55,48,55,51,93,44,91,45,49,51,53,46,50,53,48,48,50,44,53,56,46,49,54,54,55,93,44,91,45,49,51,53,46,48,48,48,52,51,50,44,53,56,46,49,49,56,48,54,52,93,44,91,45,49,51,53,46,48,55,48,52,53,44,53,56,46,52,57,57,56,57,55,93,44,91,45,49,51,53,46,50,49,57,49,50,56,44,53,56,46,57,55,52,57,55,50,93,44,91,45,49,51,52,46,51,50,49,52,52,54,44,53,56,46,57,54,51,54,50,57,93,44,91,45,49,51,52,46,52,56,51,51,57,53,44,53,57,46,49,51,49,54,48,51,93,44,91,45,49,51,52,46,55,48,48,55,49,54,44,53,57,46,50,52,57,48,49,49,93,44,91,45,49,51,52,46,57,53,57,57,48,53,44,53,57,46,50,56,48,57,50,54,93,44,91,45,49,51,53,46,48,51,48,53,50,53,44,53,57,46,51,52,54,51,52,56,93,44,91,45,49,51,53,46,51,55,53,48,50,44,53,57,46,51,53,48,48,51,51,93,44,91,45,49,51,53,46,55,49,55,51,48,55,44,53,57,46,55,51,48,48,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,105,108,108,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,54,54,54,54,55,53,44,52,55,46,51,50,57,50,53,54,93,44,91,45,49,48,51,46,54,54,55,48,55,51,44,52,54,46,57,55,57,55,55,53,93,44,91,45,49,48,51,46,54,48,57,53,57,50,44,52,54,46,57,55,57,56,53,52,93,44,91,45,49,48,51,46,54,48,57,50,55,51,44,52,54,46,54,50,57,56,50,50,93,44,91,45,49,48,51,46,50,51,49,54,53,54,44,52,54,46,54,50,57,55,54,52,93,44,91,45,49,48,51,46,50,51,49,48,53,54,44,52,54,46,57,56,48,50,57,54,93,44,91,45,49,48,51,46,48,51,50,54,56,49,44,52,54,46,57,56,48,53,56,93,44,91,45,49,48,51,46,48,51,50,51,54,54,44,52,55,46,51,50,56,54,56,54,93,44,91,45,49,48,51,46,48,57,57,49,57,55,44,52,55,46,51,50,56,55,49,52,93,44,91,45,49,48,51,46,54,54,54,54,55,53,44,52,55,46,51,50,57,50,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,116,101,108,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,55,50,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,48,48,50,51,53,44,52,50,46,52,51,54,57,49,51,93,44,91,45,57,56,46,51,48,48,53,57,50,44,52,50,46,48,56,56,56,53,51,93,44,91,45,57,56,46,50,57,53,54,48,50,44,52,49,46,57,49,52,57,53,52,93,44,91,45,57,55,46,56,51,51,50,56,56,44,52,49,46,57,49,54,50,56,54,93,44,91,45,57,55,46,56,51,52,53,51,54,44,52,50,46,48,56,57,55,53,93,44,91,45,57,55,46,56,51,52,52,51,49,44,52,50,46,52,51,55,54,56,52,93,44,91,45,57,56,46,51,48,48,50,51,53,44,52,50,46,52,51,54,57,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,97,115,99,111,110,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,52,54,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,49,56,54,51,55,44,51,56,46,55,48,57,55,55,56,93,44,91,45,57,49,46,53,52,53,51,49,51,44,51,56,46,54,55,54,56,56,50,93,44,91,45,57,49,46,54,52,48,51,55,50,44,51,56,46,55,48,51,55,57,50,93,44,91,45,57,49,46,54,52,52,55,50,57,44,51,56,46,50,56,56,53,49,93,44,91,45,57,49,46,54,51,48,53,53,52,44,51,56,46,49,53,51,53,49,57,93,44,91,45,57,49,46,53,51,52,51,56,52,44,51,56,46,49,53,50,53,57,51,93,44,91,45,57,49,46,51,54,55,52,56,50,44,51,56,46,50,48,57,55,52,49,93,44,91,45,57,49,46,51,54,57,49,57,50,44,51,56,46,54,57,57,51,50,52,93,44,91,45,57,49,46,52,49,56,54,51,55,44,51,56,46,55,48,57,55,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,49,50,48,57,53,44,51,55,46,51,57,53,49,50,51,93,44,91,45,56,54,46,56,50,57,51,55,49,44,51,55,46,50,56,49,51,54,53,93,44,91,45,56,54,46,56,57,57,50,54,56,44,51,55,46,50,49,50,51,49,51,93,44,91,45,56,54,46,57,52,49,51,57,49,44,51,55,46,48,54,56,57,56,49,93,44,91,45,56,54,46,54,55,52,52,54,50,44,51,54,46,57,57,57,55,54,54,93,44,91,45,56,54,46,54,49,56,49,53,56,44,51,55,46,49,56,51,57,48,54,93,44,91,45,56,54,46,51,57,57,49,54,53,44,51,55,46,49,54,57,56,57,54,93,44,91,45,56,54,46,52,54,57,49,50,54,44,51,55,46,51,50,49,48,57,57,93,44,91,45,56,54,46,54,49,50,48,57,53,44,51,55,46,51,57,53,49,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,97,109,112,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,55,48,56,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,48,57,54,55,54,44,52,52,46,53,54,51,57,56,49,93,44,91,45,49,48,54,46,48,49,55,51,54,54,44,52,51,46,52,57,52,57,54,57,93,44,91,45,49,48,53,46,48,55,57,55,57,55,44,52,51,46,52,57,56,52,52,53,93,44,91,45,49,48,53,46,48,55,57,50,56,49,44,52,52,46,49,55,54,49,56,50,93,44,91,45,49,48,53,46,48,56,53,52,53,49,44,52,52,46,55,56,54,56,48,49,93,44,91,45,49,48,53,46,48,55,54,54,48,49,44,52,52,46,57,57,57,57,50,54,93,44,91,45,49,48,54,46,48,50,52,56,49,53,44,52,52,46,57,57,51,52,57,53,93,44,91,45,49,48,54,46,48,48,57,54,55,54,44,52,52,46,53,54,51,57,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,49,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,51,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,48,53,57,50,56,44,51,51,46,56,49,55,55,54,93,44,91,45,56,51,46,54,56,48,56,57,54,44,51,51,46,53,57,54,57,49,57,93,44,91,45,56,51,46,54,56,50,49,57,54,44,51,51,46,53,50,54,50,50,93,44,91,45,56,51,46,53,51,51,55,51,54,44,51,51,46,52,51,52,52,55,50,93,44,91,45,56,51,46,50,55,57,57,51,49,44,51,51,46,52,56,51,52,51,56,93,44,91,45,56,51,46,50,55,55,54,49,49,44,51,51,46,53,50,55,54,51,93,44,91,45,56,51,46,52,48,54,49,56,57,44,51,51,46,54,57,56,51,48,55,93,44,91,45,56,51,46,53,48,53,57,50,56,44,51,51,46,56,49,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,114,111,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,48,50,52,50,57,44,51,53,46,52,52,49,55,50,54,93,44,91,45,57,49,46,48,51,57,50,51,44,51,53,46,52,52,52,55,49,55,93,44,91,45,57,49,46,48,51,57,55,56,51,44,51,53,46,51,53,52,50,53,54,93,44,91,45,57,49,46,48,52,50,54,55,44,51,53,46,49,52,56,49,56,57,93,44,91,45,57,48,46,53,48,50,57,57,51,44,51,53,46,49,52,52,50,49,52,93,44,91,45,57,48,46,53,48,50,52,50,57,44,51,53,46,52,52,49,55,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,80,104,105,108,108,105,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,51,52,44,34,98,101,100,115,34,58,49,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,53,49,57,49,56,44,51,52,46,54,52,53,55,50,49,93,44,91,45,57,49,46,48,53,54,50,55,54,44,51,52,46,51,51,54,54,48,53,93,44,91,45,57,49,46,49,49,55,57,48,53,44,51,52,46,49,49,57,49,48,53,93,44,91,45,57,48,46,57,53,53,49,55,44,51,52,46,49,49,56,56,51,51,93,44,91,45,57,48,46,57,53,53,57,55,52,44,51,52,46,49,50,48,49,50,53,93,44,91,45,57,48,46,56,51,51,51,51,53,44,51,52,46,50,54,52,50,54,52,93,44,91,45,57,48,46,53,56,48,54,56,49,44,51,52,46,52,49,48,53,53,49,93,44,91,45,57,48,46,53,54,57,51,52,55,44,51,52,46,53,50,52,56,54,55,93,44,91,45,57,48,46,53,56,51,50,50,52,44,51,52,46,54,52,49,51,56,57,93,44,91,45,57,49,46,48,53,49,57,49,56,44,51,52,46,54,52,53,55,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,83,116,46,32,74,97,109,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,53,55,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,52,49,57,57,56,44,51,48,46,49,54,54,52,51,93,44,91,45,57,48,46,57,49,53,53,54,53,44,51,48,46,49,49,51,50,56,53,93,44,91,45,57,48,46,57,54,51,54,57,51,44,51,48,46,48,54,54,52,53,93,44,91,45,57,48,46,57,53,57,56,54,57,44,50,57,46,57,55,55,57,50,52,93,44,91,45,57,48,46,56,56,53,53,56,57,44,50,57,46,57,48,53,51,53,51,93,44,91,45,57,48,46,54,53,54,51,49,50,44,50,57,46,56,56,57,50,52,54,93,44,91,45,57,48,46,54,52,49,57,57,56,44,51,48,46,49,54,54,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,89,117,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,52,57,51,44,34,98,101,100,115,34,58,50,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,54,50,51,55,54,44,51,57,46,50,57,53,54,50,49,93,44,91,45,49,50,49,46,54,50,57,48,56,57,44,51,57,46,50,48,52,54,55,56,93,44,91,45,49,50,49,46,53,52,51,51,48,54,44,51,56,46,57,55,50,52,48,52,93,44,91,45,49,50,49,46,52,49,52,55,55,57,44,51,56,46,57,57,54,52,53,50,93,44,91,45,49,50,49,46,50,55,57,53,51,51,44,51,57,46,48,51,52,54,49,56,93,44,91,45,49,50,49,46,50,54,54,57,49,49,44,51,57,46,50,55,49,54,48,57,93,44,91,45,49,50,49,46,49,50,50,51,49,53,44,51,57,46,51,55,56,56,50,54,93,44,91,45,49,50,49,46,48,50,50,48,56,53,44,51,57,46,51,57,49,53,53,56,93,44,91,45,49,50,49,46,48,48,57,52,55,55,44,51,57,46,54,51,57,52,53,57,93,44,91,45,49,50,49,46,48,55,54,54,57,53,44,51,57,46,53,57,55,50,54,52,93,44,91,45,49,50,49,46,49,52,57,57,48,55,44,51,57,46,53,50,54,52,52,54,93,44,91,45,49,50,49,46,51,48,53,49,50,50,44,51,57,46,53,49,57,53,56,53,93,44,91,45,49,50,49,46,52,48,55,53,50,55,44,51,57,46,51,51,57,55,53,52,93,44,91,45,49,50,49,46,54,50,51,55,54,44,51,57,46,50,57,53,54,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,50,54,49,44,34,98,101,100,115,34,58,50,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,50,54,56,52,54,44,51,51,46,50,52,54,52,53,57,93,44,91,45,56,55,46,48,50,53,53,57,54,44,51,51,46,49,54,53,55,57,53,93,44,91,45,56,54,46,56,56,49,49,56,50,44,51,51,46,48,52,57,57,48,49,93,44,91,45,56,54,46,54,49,48,48,48,51,44,51,51,46,48,55,48,48,48,51,93,44,91,45,56,54,46,53,49,55,51,52,52,44,51,51,46,48,50,48,53,54,54,93,44,91,45,56,54,46,52,57,49,48,50,57,44,51,51,46,49,48,50,57,52,52,93,44,91,45,56,54,46,53,48,51,49,50,55,44,51,51,46,49,55,57,49,52,52,93,44,91,45,56,54,46,51,53,55,51,52,44,51,51,46,50,57,54,57,49,55,93,44,91,45,56,54,46,51,55,56,54,54,53,44,51,51,46,51,57,48,57,56,51,93,44,91,45,56,54,46,51,55,56,50,50,50,44,51,51,46,53,48,50,52,49,49,93,44,91,45,56,54,46,53,49,54,55,56,51,44,51,51,46,53,52,53,56,57,54,93,44,91,45,56,54,46,54,55,52,52,49,56,44,51,51,46,52,54,54,53,50,49,93,44,91,45,56,55,46,48,50,54,56,52,54,44,51,51,46,50,52,54,52,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,79,117,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,54,51,53,48,52,44,51,56,46,51,48,49,56,57,54,93,44,91,45,49,48,55,46,54,51,53,54,57,55,44,51,56,46,51,51,50,49,52,56,93,44,91,45,49,48,56,46,49,51,50,51,56,44,51,56,46,51,51,49,53,55,51,93,44,91,45,49,48,56,46,48,56,54,54,48,52,44,51,56,46,50,53,53,50,48,50,93,44,91,45,49,48,55,46,57,51,55,53,56,56,44,51,56,46,50,49,56,57,57,50,93,44,91,45,49,48,55,46,57,54,53,55,56,57,44,51,56,46,49,53,50,51,50,56,93,44,91,45,49,48,55,46,57,48,48,49,57,51,44,51,56,46,48,50,54,50,52,57,93,44,91,45,49,48,55,46,55,57,53,52,54,57,44,51,55,46,57,56,56,53,50,93,44,91,45,49,48,55,46,55,51,56,50,56,51,44,51,55,46,57,48,53,52,51,50,93,44,91,45,49,48,55,46,53,54,56,56,55,53,44,51,55,46,57,54,53,48,49,53,93,44,91,45,49,48,55,46,53,49,54,56,51,44,51,56,46,48,54,57,55,52,49,93,44,91,45,49,48,55,46,53,54,56,54,50,44,51,56,46,49,52,55,50,54,55,93,44,91,45,49,48,55,46,54,51,53,48,52,44,51,56,46,51,48,49,56,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,117,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,49,57,57,44,34,98,101,100,115,34,58,49,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,52,50,55,48,49,44,51,52,46,57,53,52,49,52,50,93,44,91,45,49,48,51,46,50,56,52,49,52,57,44,51,52,46,57,53,52,49,55,50,93,44,91,45,49,48,51,46,50,56,52,51,49,55,44,51,52,46,56,54,52,57,57,93,44,91,45,49,48,51,46,52,57,53,54,53,51,44,51,52,46,54,57,49,51,57,51,93,44,91,45,49,48,51,46,55,48,53,55,56,56,44,51,52,46,54,57,50,52,52,54,93,44,91,45,49,48,51,46,55,51,56,49,54,54,44,51,52,46,54,48,52,54,55,93,44,91,45,49,48,51,46,55,52,48,48,54,54,44,51,52,46,51,48,51,48,53,54,93,44,91,45,49,48,51,46,48,52,51,55,54,55,44,51,52,46,51,48,50,54,52,56,93,44,91,45,49,48,51,46,48,52,51,55,54,50,44,51,52,46,51,49,50,55,53,93,44,91,45,49,48,51,46,48,52,50,57,56,50,44,51,52,46,55,52,55,51,54,49,93,44,91,45,49,48,51,46,48,52,50,55,48,49,44,51,52,46,57,53,52,49,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,51,50,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,54,52,50,49,55,44,51,53,46,52,54,53,51,50,56,93,44,91,45,57,57,46,51,54,48,50,50,54,44,51,53,46,49,49,54,55,51,56,93,44,91,45,57,56,46,55,52,57,49,53,56,44,51,53,46,49,49,54,51,52,54,93,44,91,45,57,56,46,54,50,48,54,57,50,44,51,53,46,48,57,55,55,54,53,93,44,91,45,57,56,46,54,50,51,51,51,54,44,51,53,46,52,54,52,50,50,53,93,44,91,45,57,57,46,51,54,52,50,49,55,44,51,53,46,52,54,53,51,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,57,51,56,44,34,98,101,100,115,34,58,57,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,53,55,57,53,50,44,51,54,46,50,52,51,52,52,53,93,44,91,45,55,57,46,50,52,57,53,51,56,44,51,53,46,56,55,54,56,49,93,44,91,45,55,57,46,48,49,54,51,48,53,44,51,53,46,56,54,51,50,49,93,44,91,45,55,56,46,57,53,48,53,57,55,44,51,54,46,50,51,57,51,50,93,44,91,45,55,57,46,49,53,51,57,57,55,44,51,54,46,50,52,49,56,55,53,93,44,91,45,55,57,46,50,53,55,57,53,50,44,51,54,46,50,52,51,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,51,48,49,55,44,52,49,46,49,55,50,51,49,56,93,44,91,45,56,54,46,57,51,48,55,53,57,44,52,48,46,57,49,50,52,49,56,93,44,91,45,56,54,46,53,56,49,53,51,50,44,52,48,46,57,49,48,57,50,53,93,44,91,45,56,54,46,52,54,56,53,48,57,44,52,48,46,57,48,57,56,56,57,93,44,91,45,56,54,46,52,54,55,48,52,54,44,52,49,46,49,55,49,52,52,50,93,44,91,45,56,54,46,57,51,48,49,55,44,52,49,46,49,55,50,51,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,101,110,122,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,53,50,44,34,98,101,100,115,34,58,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,56,52,54,57,50,56,44,52,52,46,53,49,57,52,50,57,93,44,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,44,91,45,56,53,46,56,49,53,49,49,57,44,52,52,46,55,55,52,53,51,52,93,44,91,45,56,54,46,55,51,52,53,50,57,44,52,52,46,55,55,51,48,55,52,93,44,91,45,56,54,46,55,55,56,51,57,56,44,52,52,46,54,55,53,50,49,57,93,44,91,45,56,54,46,56,52,54,57,50,56,44,52,52,46,53,49,57,52,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,69,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,57,56,54,54,44,34,98,101,100,115,34,58,50,54,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,49,57,50,50,56,44,52,51,46,48,54,55,57,53,56,93,44,91,45,55,57,46,48,49,49,53,54,51,44,52,50,46,57,56,53,50,53,54,93,44,91,45,55,56,46,57,48,53,54,53,57,44,52,50,46,57,50,51,51,53,55,93,44,91,45,55,56,46,57,57,57,55,54,44,52,50,46,56,48,52,51,54,56,93,44,91,45,55,57,46,51,49,50,49,51,54,44,52,50,46,54,56,54,56,48,53,93,44,91,45,55,57,46,48,54,48,55,55,55,44,52,50,46,53,51,55,56,53,51,93,44,91,45,55,56,46,56,57,53,57,57,57,44,52,50,46,52,52,48,56,48,55,93,44,91,45,55,56,46,52,54,51,57,52,44,52,50,46,53,51,54,51,51,50,93,44,91,45,55,56,46,52,54,52,51,56,49,44,52,50,46,56,54,55,52,54,49,93,44,91,45,55,56,46,52,54,52,52,52,57,44,52,51,46,48,56,56,55,48,51,93,44,91,45,55,56,46,56,48,50,48,53,49,44,52,51,46,48,54,53,55,56,49,93,44,91,45,55,56,46,56,51,57,51,53,44,52,51,46,48,49,57,52,53,51,93,44,91,45,55,57,46,48,49,57,50,50,56,44,52,51,46,48,54,55,57,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,48,49,51,51,44,34,98,101,100,115,34,58,50,48,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,54,56,56,48,49,44,51,57,46,51,53,51,53,48,50,93,44,91,45,55,55,46,52,53,56,56,48,56,44,51,57,46,50,50,48,50,55,93,44,91,45,55,55,46,53,50,55,51,50,50,44,51,57,46,49,52,54,57,54,49,93,44,91,45,55,55,46,52,54,48,54,48,50,44,51,57,46,48,55,52,56,52,51,93,44,91,45,55,55,46,51,50,56,51,49,56,44,51,57,46,48,53,55,54,55,56,93,44,91,45,55,55,46,49,49,57,55,57,50,44,51,56,46,57,51,52,51,55,52,93,44,91,45,55,55,46,49,49,57,55,53,57,44,51,56,46,57,51,52,51,52,51,93,44,91,45,55,55,46,48,48,50,52,51,54,44,51,56,46,57,54,53,54,55,51,93,44,91,45,55,54,46,56,56,56,53,48,53,44,51,57,46,49,51,48,57,54,55,93,44,91,45,55,54,46,57,52,56,53,55,57,44,51,57,46,49,50,57,53,57,55,93,44,91,45,55,55,46,49,54,56,56,48,49,44,51,57,46,51,53,51,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,56,53,34,44,34,78,65,77,69,34,58,34,77,97,110,97,115,115,97,115,32,80,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,53,56,54,57,53,44,51,56,46,55,55,50,51,49,57,93,44,91,45,55,55,46,52,50,55,51,51,50,44,51,56,46,55,53,51,53,57,56,93,44,91,45,55,55,46,52,50,48,53,56,49,44,51,56,46,55,54,50,50,56,55,93,44,91,45,55,55,46,52,55,53,55,54,44,51,56,46,55,56,49,49,55,49,93,44,91,45,55,55,46,52,53,56,54,57,53,44,51,56,46,55,55,50,51,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,65,114,108,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,56,48,51,44,34,98,101,100,115,34,58,51,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,55,50,50,55,54,44,51,56,46,56,57,51,50,52,53,93,44,91,45,55,55,46,49,52,57,55,48,49,44,51,56,46,56,55,53,54,55,93,44,91,45,55,55,46,49,49,48,55,57,57,44,51,56,46,56,52,51,52,52,54,93,44,91,45,55,55,46,48,52,56,48,50,44,51,56,46,56,52,49,50,54,49,93,44,91,45,55,55,46,49,49,57,55,53,57,44,51,56,46,57,51,52,51,52,51,93,44,91,45,55,55,46,49,49,57,55,57,50,44,51,56,46,57,51,52,51,55,52,93,44,91,45,55,55,46,49,55,50,50,55,54,44,51,56,46,56,57,51,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,55,51,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,52,48,52,56,51,44,51,54,46,56,55,57,48,48,49,93,44,91,45,56,49,46,48,52,50,52,50,56,44,51,54,46,56,48,54,52,52,56,93,44,91,45,56,48,46,57,51,50,50,55,49,44,51,54,46,54,55,49,53,57,51,93,44,91,45,56,48,46,57,49,54,49,54,54,44,51,54,46,54,57,52,54,52,93,44,91,45,56,48,46,56,55,55,50,55,52,44,51,54,46,54,57,50,50,49,53,93,44,91,45,56,48,46,57,49,52,49,55,51,44,51,54,46,54,53,48,50,52,54,93,44,91,45,56,48,46,56,51,55,57,53,52,44,51,54,46,53,53,57,49,52,51,93,44,91,45,56,48,46,54,49,50,48,53,55,44,51,54,46,53,53,55,56,57,56,93,44,91,45,56,48,46,52,54,52,49,56,44,51,54,46,55,48,56,55,49,56,93,44,91,45,56,48,46,54,51,51,57,56,55,44,51,54,46,57,51,49,55,56,93,44,91,45,56,48,46,55,52,48,52,56,51,44,51,54,46,56,55,57,48,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,104,97,114,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,57,57,56,53,44,34,98,101,100,115,34,58,57,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,53,56,53,51,54,44,51,56,46,56,55,48,56,54,53,93,44,91,45,57,48,46,57,54,52,52,54,49,44,51,56,46,53,52,55,53,52,53,93,44,91,45,57,48,46,57,49,54,53,53,52,44,51,56,46,53,51,52,55,50,53,93,44,91,45,57,48,46,55,51,50,51,50,56,44,51,56,46,54,51,57,51,48,50,93,44,91,45,57,48,46,53,52,49,54,49,50,44,51,56,46,54,56,53,50,54,55,93,44,91,45,57,48,46,52,52,48,54,49,55,44,51,56,46,56,50,55,54,53,93,44,91,45,57,48,46,50,57,56,55,52,51,44,51,56,46,56,56,55,55,53,57,93,44,91,45,57,48,46,49,49,55,55,48,55,44,51,56,46,56,48,53,55,52,56,93,44,91,45,57,48,46,50,55,53,55,48,50,44,51,56,46,57,50,51,53,50,57,93,44,91,45,57,48,46,52,53,48,56,49,51,44,51,56,46,57,54,55,55,54,57,93,44,91,45,57,48,46,53,52,54,56,51,49,44,51,56,46,56,55,52,48,48,57,93,44,91,45,57,48,46,54,54,51,49,56,49,44,51,56,46,57,51,52,50,50,52,93,44,91,45,57,48,46,56,50,50,55,50,52,44,51,56,46,56,55,54,51,57,50,93,44,91,45,57,48,46,57,53,56,53,51,54,44,51,56,46,56,55,48,56,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,83,97,110,32,66,101,110,105,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,52,49,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,54,52,52,48,48,49,44,51,54,46,56,57,51,57,57,54,93,44,91,45,49,50,49,46,51,49,56,54,56,57,44,51,54,46,54,49,48,51,50,56,93,44,91,45,49,50,49,46,51,50,56,54,57,55,44,51,54,46,53,53,52,55,52,93,44,91,45,49,50,49,46,48,52,48,55,57,55,44,51,54,46,51,50,51,57,54,57,93,44,91,45,49,50,48,46,56,54,51,57,56,55,44,51,54,46,50,57,49,57,51,49,93,44,91,45,49,50,48,46,55,54,49,52,56,51,44,51,54,46,50,48,51,53,56,93,44,91,45,49,50,48,46,54,55,56,53,56,50,44,51,54,46,50,54,55,51,49,57,93,44,91,45,49,50,48,46,53,57,54,53,54,50,44,51,54,46,51,50,56,52,56,56,93,44,91,45,49,50,48,46,54,48,51,55,48,54,44,51,54,46,52,56,56,50,52,50,93,44,91,45,49,50,48,46,57,49,56,55,51,49,44,51,54,46,55,52,48,51,56,49,93,44,91,45,49,50,49,46,49,52,49,53,50,51,44,51,54,46,56,51,54,54,53,54,93,44,91,45,49,50,49,46,50,49,53,52,48,54,44,51,54,46,57,54,49,50,52,56,93,44,91,45,49,50,49,46,52,56,56,57,52,57,44,51,54,46,57,56,51,49,52,56,93,44,91,45,49,50,49,46,53,56,49,51,53,52,44,51,54,46,56,57,57,49,53,50,93,44,91,45,49,50,49,46,54,52,52,48,48,49,44,51,54,46,56,57,51,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,81,117,101,101,110,32,65,110,110,101,39,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,51,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,53,54,48,48,52,44,51,57,46,50,52,54,48,54,54,93,44,91,45,55,54,46,48,49,48,50,57,50,44,51,57,46,50,51,57,53,49,55,93,44,91,45,55,54,46,49,49,55,48,53,56,44,51,57,46,49,48,55,48,57,56,93,44,91,45,55,54,46,50,53,55,57,57,53,44,51,57,46,48,49,49,56,49,56,93,44,91,45,55,54,46,51,53,49,55,51,44,51,57,46,48,53,54,50,51,50,93,44,91,45,55,54,46,52,51,54,52,57,50,44,51,56,46,56,48,55,51,57,55,93,44,91,45,55,53,46,57,52,57,51,51,53,44,51,56,46,57,49,56,51,51,51,93,44,91,45,55,53,46,56,51,52,57,52,56,44,51,57,46,49,48,56,52,51,55,93,44,91,45,55,53,46,55,52,55,55,54,49,44,51,57,46,49,52,51,51,51,56,93,44,91,45,55,53,46,55,53,54,48,48,52,44,51,57,46,50,52,54,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,56,56,49,49,49,44,52,48,46,48,48,48,52,54,50,93,44,91,45,57,53,46,55,56,56,57,52,49,44,51,57,46,54,53,51,48,48,49,93,44,91,45,57,53,46,53,54,52,49,50,54,44,51,57,46,54,53,50,56,55,50,93,44,91,45,57,53,46,51,51,57,55,52,44,51,57,46,54,53,50,57,56,93,44,91,45,57,53,46,51,51,57,56,57,54,44,51,57,46,57,57,57,57,57,57,93,44,91,45,57,53,46,55,56,56,49,49,49,44,52,48,46,48,48,48,52,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,66,117,108,108,111,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,55,56,50,44,34,98,101,100,115,34,58,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,51,48,50,51,51,44,51,50,46,53,51,56,55,55,93,44,91,45,56,49,46,57,49,56,54,53,50,44,51,50,46,52,49,53,48,55,51,93,44,91,45,56,49,46,57,54,57,48,54,57,44,51,50,46,50,54,56,55,56,51,93,44,91,45,56,49,46,56,49,54,50,56,44,51,50,46,50,51,55,52,55,93,44,91,45,56,49,46,55,56,48,56,53,56,44,51,50,46,49,53,50,56,57,93,44,91,45,56,49,46,52,51,53,56,51,44,51,50,46,50,52,49,50,56,57,93,44,91,45,56,49,46,53,51,48,57,50,49,44,51,50,46,51,57,48,51,56,53,93,44,91,45,56,49,46,53,52,56,48,48,54,44,51,50,46,52,56,57,50,56,54,93,44,91,45,56,49,46,54,56,55,57,50,55,44,51,50,46,53,52,54,48,55,93,44,91,45,56,49,46,56,52,49,48,48,53,44,51,50,46,54,52,57,48,57,51,93,44,91,45,56,50,46,48,48,49,50,51,54,44,51,50,46,54,48,54,57,49,93,44,91,45,56,50,46,48,51,48,50,51,51,44,51,50,46,53,51,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,57,50,54,44,34,98,101,100,115,34,58,49,55,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,52,48,55,54,51,44,51,55,46,55,49,54,51,51,56,93,44,91,45,56,50,46,56,57,49,54,48,53,44,51,55,46,53,49,57,48,56,51,93,44,91,45,56,50,46,57,50,53,52,54,44,51,55,46,52,56,54,53,50,53,93,44,91,45,56,50,46,56,51,49,52,55,51,44,51,55,46,52,54,54,57,57,93,44,91,45,56,50,46,55,49,48,56,48,53,44,51,55,46,50,56,53,51,50,51,93,44,91,45,56,50,46,53,56,56,54,50,55,44,51,55,46,52,52,54,50,53,57,93,44,91,45,56,50,46,54,50,52,48,57,49,44,51,55,46,53,48,54,50,55,53,93,44,91,45,56,50,46,53,54,51,53,54,49,44,51,55,46,54,56,52,56,52,52,93,44,91,45,56,50,46,54,52,48,55,53,44,51,55,46,55,50,48,49,56,50,93,44,91,45,56,50,46,55,54,50,49,57,44,51,55,46,55,53,53,56,53,54,93,44,91,45,56,50,46,57,52,48,55,54,51,44,51,55,46,55,49,54,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,114,111,97,100,119,97,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,51,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,52,57,56,48,57,53,44,52,54,46,55,54,50,53,48,50,93,44,91,45,49,49,49,46,54,51,57,50,54,49,44,52,54,46,55,51,56,49,56,93,44,91,45,49,49,49,46,54,52,48,48,57,53,44,52,54,46,53,56,50,52,54,51,93,44,91,45,49,49,49,46,55,56,55,57,52,57,44,52,54,46,53,54,57,52,54,53,93,44,91,45,49,49,49,46,55,56,52,53,54,53,44,52,54,46,48,52,57,56,49,51,93,44,91,45,49,49,49,46,54,54,48,52,50,50,44,52,54,46,48,52,57,49,57,50,93,44,91,45,49,49,49,46,54,54,48,48,53,55,44,52,53,46,56,51,51,53,93,44,91,45,49,49,49,46,52,49,57,54,49,56,44,52,53,46,57,57,54,51,50,50,93,44,91,45,49,49,49,46,51,52,54,54,53,50,44,52,54,46,49,56,55,55,56,53,93,44,91,45,49,49,49,46,48,54,49,57,53,54,44,52,54,46,49,57,50,56,51,52,93,44,91,45,49,49,49,46,49,49,56,49,50,51,44,52,54,46,51,49,54,57,55,93,44,91,45,49,49,49,46,48,53,54,57,57,54,44,52,54,46,51,57,56,49,50,50,93,44,91,45,49,49,49,46,50,52,54,53,49,57,44,52,54,46,52,51,56,49,48,57,93,44,91,45,49,49,49,46,51,50,48,49,56,49,44,52,54,46,53,54,57,52,48,49,93,44,91,45,49,49,49,46,52,57,56,48,57,53,44,52,54,46,55,54,50,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,57,34,44,34,78,65,77,69,34,58,34,87,104,101,101,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,50,55,56,54,53,44,51,50,46,49,51,53,50,55,52,93,44,91,45,56,50,46,56,56,55,54,53,55,44,51,50,46,48,55,57,56,57,49,93,44,91,45,56,50,46,55,50,56,56,48,54,44,51,50,46,48,48,54,55,48,52,93,44,91,45,56,50,46,54,52,53,54,53,57,44,51,49,46,57,49,56,56,56,51,93,44,91,45,56,50,46,53,52,51,54,53,53,44,51,49,46,57,53,56,57,49,52,93,44,91,45,56,50,46,53,57,55,54,55,49,44,51,50,46,48,49,51,57,55,57,93,44,91,45,56,50,46,54,53,53,52,56,54,44,51,50,46,50,57,55,53,54,49,93,44,91,45,56,50,46,55,50,49,57,54,52,44,51,50,46,51,48,57,50,56,51,93,44,91,45,56,50,46,56,56,52,56,48,51,44,51,50,46,49,57,54,48,55,50,93,44,91,45,56,50,46,57,50,55,56,54,53,44,51,50,46,49,51,53,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,114,97,118,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,48,56,50,44,34,98,101,100,115,34,58,51,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,55,51,54,57,50,44,51,53,46,50,50,56,57,56,53,93,44,91,45,55,55,46,49,56,55,54,55,57,44,51,53,46,48,56,49,48,56,54,93,44,91,45,55,55,46,49,48,57,49,56,57,44,51,53,46,48,54,55,50,48,54,93,44,91,45,55,55,46,49,48,56,56,53,49,44,51,52,46,56,51,48,55,56,93,44,91,45,55,55,46,48,55,56,50,54,51,44,51,52,46,56,49,49,51,50,50,93,44,91,45,55,54,46,54,57,51,48,49,56,44,51,52,46,56,54,57,49,56,93,44,91,45,55,54,46,55,49,49,53,56,44,51,52,46,57,56,49,55,54,56,93,44,91,45,55,54,46,55,56,48,53,56,54,44,51,52,46,57,53,48,52,51,52,93,44,91,45,55,54,46,57,54,55,50,57,55,44,51,53,46,48,52,48,54,53,53,93,44,91,45,55,54,46,57,56,55,50,54,54,44,51,53,46,49,53,52,57,53,93,44,91,45,55,54,46,56,57,53,57,49,57,44,51,53,46,50,53,51,56,56,57,93,44,91,45,55,55,46,49,56,57,49,49,53,44,51,53,46,52,49,56,51,54,50,93,44,91,45,55,55,46,51,57,49,48,50,54,44,51,53,46,51,51,57,53,51,51,93,44,91,45,55,55,46,52,55,51,54,57,50,44,51,53,46,50,50,56,57,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,72,111,108,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,53,50,52,55,51,44,52,48,46,50,54,49,57,48,52,93,44,91,45,57,53,46,51,57,54,53,52,57,44,52,48,46,49,50,52,55,48,49,93,44,91,45,57,53,46,52,49,57,57,57,57,44,52,48,46,48,53,48,52,52,93,44,91,45,57,53,46,51,48,56,50,57,44,51,57,46,57,57,57,57,57,56,93,44,91,45,57,53,46,48,56,53,48,48,51,44,51,57,46,56,54,49,56,56,51,93,44,91,45,57,52,46,57,57,51,51,56,50,44,51,57,46,56,57,55,57,48,54,93,44,91,45,57,53,46,48,52,51,48,56,44,52,48,46,49,51,48,48,57,54,93,44,91,45,57,53,46,48,55,49,55,48,51,44,52,48,46,50,54,48,56,53,57,93,44,91,45,57,53,46,49,56,48,54,49,52,44,52,48,46,50,54,49,55,48,54,93,44,91,45,57,53,46,53,53,52,56,49,55,44,52,48,46,50,54,52,52,54,93,44,91,45,57,53,46,53,53,50,52,55,51,44,52,48,46,50,54,49,57,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,53,34,44,34,78,65,77,69,34,58,34,76,105,112,115,99,111,109,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,48,48,51,55,54,50,44,51,54,46,52,57,57,56,52,57,93,44,91,45,49,48,48,46,53,52,54,49,52,53,44,51,54,46,52,57,57,51,52,51,93,44,91,45,49,48,48,46,53,52,54,55,50,52,44,51,54,46,48,53,54,53,51,54,93,44,91,45,49,48,48,46,53,52,48,50,50,49,44,51,54,46,48,53,54,52,57,49,93,44,91,45,49,48,48,46,48,48,48,51,57,57,44,51,54,46,48,53,53,54,55,55,93,44,91,45,49,48,48,46,48,48,51,55,54,50,44,51,54,46,52,57,57,56,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,56,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,51,54,51,55,52,51,44,52,54,46,49,52,54,51,51,51,93,44,91,45,49,50,51,46,51,54,49,54,50,50,44,52,53,46,55,55,57,53,55,57,93,44,91,45,49,50,51,46,48,51,48,56,55,51,44,52,53,46,55,55,57,49,53,57,93,44,91,45,49,50,50,46,57,50,57,49,52,54,44,52,53,46,55,50,49,52,56,50,93,44,91,45,49,50,50,46,55,54,50,52,51,55,44,52,53,46,55,50,56,54,54,53,93,44,91,45,49,50,50,46,55,56,53,53,49,53,44,52,53,46,56,53,48,53,51,54,93,44,91,45,49,50,50,46,57,48,52,49,49,57,44,52,54,46,48,56,51,55,51,52,93,44,91,45,49,50,51,46,49,49,53,57,48,52,44,52,54,46,49,56,53,50,54,56,93,44,91,45,49,50,51,46,50,49,51,48,53,52,44,52,54,46,49,55,50,53,52,49,93,44,91,45,49,50,51,46,51,54,51,55,52,51,44,52,54,46,49,52,54,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,70,108,111,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,53,54,49,44,34,98,101,100,115,34,58,49,48,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,54,53,55,55,54,52,44,51,52,46,51,48,53,49,57,93,44,91,45,55,57,46,55,50,57,53,54,54,44,51,52,46,50,57,53,49,57,93,44,91,45,56,48,46,48,54,57,56,55,56,44,51,52,46,48,56,54,49,57,49,93,44,91,45,56,48,46,48,48,48,53,57,52,44,51,52,46,48,52,55,56,55,55,93,44,91,45,55,57,46,57,55,52,54,48,49,44,51,51,46,57,52,54,53,50,55,93,44,91,45,55,57,46,56,55,53,54,50,44,51,51,46,56,56,53,50,52,53,93,44,91,45,55,57,46,55,57,56,51,55,44,51,51,46,56,51,53,53,54,50,93,44,91,45,55,57,46,52,57,54,52,56,54,44,51,51,46,55,55,53,51,53,55,93,44,91,45,55,57,46,51,50,52,51,49,55,44,51,51,46,55,57,57,49,50,51,93,44,91,45,55,57,46,52,57,49,55,49,52,44,51,51,46,57,52,54,53,50,50,93,44,91,45,55,57,46,53,52,55,57,51,44,51,52,46,50,51,48,57,49,51,93,44,91,45,55,57,46,54,51,51,52,49,51,44,51,52,46,50,57,55,57,57,52,93,44,91,45,55,57,46,54,53,55,55,54,52,44,51,52,46,51,48,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,77,111,117,110,116,114,97,105,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,53,50,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,56,56,53,55,54,51,44,52,56,46,53,52,54,51,57,93,44,91,45,49,48,50,46,56,50,56,49,54,51,44,52,56,46,51,55,50,54,52,49,93,44,91,45,49,48,50,46,56,50,56,52,55,55,44,52,56,46,49,50,51,54,54,52,93,44,91,45,49,48,50,46,54,48,56,51,54,44,52,56,46,48,52,54,51,53,49,93,44,91,45,49,48,50,46,53,54,53,57,48,50,44,52,55,46,57,54,57,48,50,56,93,44,91,45,49,48,50,46,54,52,50,50,54,54,44,52,55,46,56,50,51,55,49,51,93,44,91,45,49,48,50,46,51,56,53,55,53,56,44,52,55,46,55,53,56,48,48,56,93,44,91,45,49,48,50,46,51,56,53,54,52,55,44,52,55,46,56,52,55,55,55,50,93,44,91,45,49,48,49,46,56,55,49,56,54,50,44,52,55,46,56,52,55,53,56,57,93,44,91,45,49,48,49,46,57,50,50,49,50,51,44,52,56,46,48,50,51,49,55,51,93,44,91,45,49,48,49,46,57,50,50,50,51,55,44,52,56,46,51,55,50,51,51,93,44,91,45,49,48,49,46,57,55,51,50,56,50,44,52,56,46,53,52,54,52,56,53,93,44,91,45,49,48,50,46,50,51,51,56,57,50,44,52,56,46,53,52,54,51,51,57,93,44,91,45,49,48,50,46,56,56,53,55,54,51,44,52,56,46,53,52,54,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,53,51,55,44,34,98,101,100,115,34,58,50,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,48,53,50,51,53,44,51,55,46,54,48,52,55,55,54,93,44,91,45,49,49,52,46,48,53,48,48,53,50,44,51,55,46,48,48,48,49,57,49,93,44,91,45,49,49,50,46,56,57,57,49,57,49,44,51,55,46,48,48,48,51,56,53,93,44,91,45,49,49,50,46,57,48,48,57,57,51,44,51,55,46,53,48,48,48,50,49,93,44,91,45,49,49,51,46,48,51,55,48,52,56,44,51,55,46,52,55,52,52,55,52,93,44,91,45,49,49,51,46,50,53,51,52,57,44,51,55,46,52,56,50,49,54,55,93,44,91,45,49,49,51,46,50,53,51,51,52,44,51,55,46,53,50,56,57,56,51,93,44,91,45,49,49,51,46,52,55,52,48,50,57,44,51,55,46,53,50,57,48,56,53,93,44,91,45,49,49,51,46,53,56,55,55,57,55,44,51,55,46,54,48,52,54,49,49,93,44,91,45,49,49,52,46,48,53,50,51,53,44,51,55,46,54,48,52,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,105,103,32,72,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,55,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,53,49,49,53,51,52,44,52,54,46,48,52,51,52,48,51,93,44,91,45,49,48,55,46,54,55,52,52,53,52,44,52,54,46,48,52,51,54,49,93,44,91,45,49,48,55,46,56,56,49,56,52,54,44,52,53,46,56,57,57,50,51,51,93,44,91,45,49,48,56,46,48,52,55,51,53,50,44,52,53,46,56,57,57,52,55,57,93,44,91,45,49,48,56,46,48,54,57,55,53,50,44,52,53,46,53,49,56,53,51,53,93,44,91,45,49,48,56,46,49,57,51,50,48,53,44,52,53,46,53,49,56,53,51,56,93,44,91,45,49,48,56,46,51,49,54,51,55,52,44,52,53,46,52,54,48,53,48,57,93,44,91,45,49,48,56,46,54,52,53,51,50,53,44,52,53,46,52,54,52,48,55,51,93,44,91,45,49,48,56,46,54,56,50,50,50,51,44,52,53,46,52,51,51,49,51,50,93,44,91,45,49,48,56,46,54,57,57,54,49,54,44,52,53,46,50,49,55,55,48,57,93,44,91,45,49,48,56,46,49,50,50,49,56,52,44,52,53,46,50,49,54,51,49,55,93,44,91,45,49,48,56,46,50,52,57,52,49,50,44,52,52,46,57,57,57,57,48,52,93,44,91,45,49,48,55,46,57,49,49,53,50,51,44,52,53,46,48,48,48,54,55,56,93,44,91,45,49,48,55,46,48,56,52,56,56,54,44,52,52,46,57,57,54,54,93,44,91,45,49,48,54,46,50,54,51,55,49,53,44,52,52,46,57,57,51,56,49,54,93,44,91,45,49,48,54,46,50,55,57,55,48,57,44,52,53,46,49,55,57,55,50,56,93,44,91,45,49,48,54,46,55,54,56,48,49,52,44,52,53,46,49,55,57,55,50,56,93,44,91,45,49,48,54,46,55,50,57,53,52,51,44,52,53,46,51,53,49,52,56,93,44,91,45,49,48,54,46,55,50,57,53,55,49,44,52,53,46,54,55,50,56,53,93,44,91,45,49,48,54,46,57,49,50,57,53,57,44,52,53,46,54,56,51,57,49,53,93,44,91,45,49,48,54,46,57,51,57,48,57,53,44,52,53,46,56,55,48,48,52,49,93,44,91,45,49,48,55,46,49,55,54,51,53,56,44,52,53,46,57,53,54,55,54,49,93,44,91,45,49,48,55,46,52,50,53,49,50,56,44,52,53,46,57,53,54,54,55,52,93,44,91,45,49,48,55,46,53,49,49,53,51,52,44,52,54,46,48,52,51,52,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,69,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,54,48,56,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,53,54,48,52,50,44,52,49,46,54,50,51,52,48,50,93,44,91,45,55,56,46,57,55,54,54,53,56,44,52,49,46,52,53,49,55,54,49,93,44,91,45,55,57,46,48,57,51,53,56,56,44,52,49,46,52,50,51,50,56,54,93,44,91,45,55,57,46,48,57,53,48,57,54,44,52,49,46,51,52,48,54,53,56,93,44,91,45,55,56,46,57,53,57,49,53,55,44,52,49,46,51,54,50,49,54,49,93,44,91,45,55,56,46,55,51,53,50,56,44,52,49,46,50,54,50,57,49,53,93,44,91,45,55,56,46,55,49,48,50,52,56,44,52,49,46,50,48,49,56,53,57,93,44,91,45,55,56,46,54,52,54,54,54,54,44,52,49,46,50,53,51,55,55,56,93,44,91,45,55,56,46,50,51,54,56,49,55,44,52,49,46,50,51,48,52,55,53,93,44,91,45,55,56,46,50,53,51,57,53,57,44,52,49,46,52,48,52,55,50,49,93,44,91,45,55,56,46,52,50,48,48,50,56,44,52,49,46,52,48,53,48,52,54,93,44,91,45,55,56,46,52,49,57,49,49,56,44,52,49,46,54,48,50,49,56,56,93,44,91,45,55,56,46,52,56,51,52,48,57,44,52,49,46,54,50,57,56,57,56,93,44,91,45,55,56,46,57,53,54,48,53,54,44,52,49,46,54,50,51,56,54,51,93,44,91,45,55,56,46,57,53,54,48,52,50,44,52,49,46,54,50,51,52,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,83,105,111,117,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,50,56,51,56,44,52,50,46,54,49,49,55,54,55,93,44,91,45,49,48,52,46,48,53,50,54,52,53,44,52,50,46,48,48,49,55,49,56,93,44,91,45,49,48,51,46,52,48,49,54,51,57,44,52,50,46,48,48,51,53,52,93,44,91,45,49,48,51,46,52,52,52,49,48,56,44,52,50,46,48,57,48,55,48,56,93,44,91,45,49,48,51,46,52,52,52,53,51,50,44,52,50,46,52,51,55,51,53,52,93,44,91,45,49,48,51,46,52,56,48,48,56,50,44,52,50,46,52,51,55,50,54,55,93,44,91,45,49,48,51,46,52,56,48,52,48,51,44,52,50,46,55,56,52,57,54,54,93,44,91,45,49,48,51,46,53,48,53,49,44,52,51,46,48,48,48,55,55,93,44,91,45,49,48,52,46,48,53,51,48,50,56,44,52,51,46,48,48,48,53,56,53,93,44,91,45,49,48,52,46,48,53,50,56,51,56,44,52,50,46,54,49,49,55,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,118,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,57,49,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,48,49,50,50,55,44,51,49,46,55,57,54,56,54,51,93,44,91,45,56,57,46,54,53,51,48,50,53,44,51,49,46,55,56,48,54,53,51,93,44,91,45,56,57,46,55,53,53,49,48,51,44,51,49,46,55,55,52,54,53,52,93,44,91,45,56,57,46,55,53,53,54,49,52,44,51,49,46,54,48,57,55,53,49,93,44,91,45,56,57,46,54,48,50,56,56,57,44,51,49,46,53,51,56,56,51,54,93,44,91,45,56,57,46,53,56,54,56,49,57,44,51,49,46,52,51,51,54,56,56,93,44,91,45,56,57,46,52,53,49,54,49,54,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,51,57,57,49,55,56,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,52,48,49,50,50,55,44,51,49,46,55,57,54,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,111,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,55,50,44,34,98,101,100,115,34,58,49,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,48,53,54,53,48,55,44,49,56,46,52,54,48,57,53,52,93,44,91,45,54,55,46,49,51,50,50,49,44,49,56,46,51,56,57,51,57,49,93,44,91,45,54,55,46,49,51,48,49,54,55,44,49,56,46,51,49,55,57,50,55,93,44,91,45,54,55,46,48,53,50,53,56,51,44,49,56,46,51,48,54,54,53,53,93,44,91,45,54,55,46,48,50,55,49,55,51,44,49,56,46,51,57,51,51,55,54,93,44,91,45,54,55,46,48,53,54,53,48,55,44,49,56,46,52,54,48,57,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,51,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,56,49,51,57,53,44,51,57,46,51,51,57,55,53,50,93,44,91,45,56,54,46,51,55,48,48,54,54,44,51,57,46,48,52,56,51,55,53,93,44,91,45,56,54,46,51,49,56,49,51,51,44,51,57,46,48,52,56,56,49,93,44,91,45,56,54,46,48,56,48,50,55,50,44,51,57,46,48,53,48,50,55,93,44,91,45,56,54,46,48,56,53,54,48,49,44,51,57,46,51,52,52,49,56,57,93,44,91,45,56,54,46,50,53,49,54,56,52,44,51,57,46,51,52,49,54,55,50,93,44,91,45,56,54,46,51,56,49,51,57,53,44,51,57,46,51,51,57,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,55,48,50,44,34,98,101,100,115,34,58,50,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,52,55,56,57,51,44,51,56,46,53,54,49,50,54,57,93,44,91,45,56,53,46,57,57,51,51,49,55,44,51,56,46,52,56,56,53,52,93,44,91,45,56,53,46,57,57,52,54,50,44,51,56,46,52,49,56,51,52,53,93,44,91,45,56,53,46,56,48,55,55,48,52,44,51,56,46,52,48,52,52,52,51,93,44,91,45,56,53,46,55,57,50,51,49,54,44,51,56,46,50,56,55,52,51,51,93,44,91,45,56,53,46,54,51,55,56,54,49,44,51,56,46,51,56,48,50,54,51,93,44,91,45,56,53,46,53,56,54,48,51,51,44,51,56,46,52,53,48,48,57,50,93,44,91,45,56,53,46,52,51,51,49,56,57,44,51,56,46,53,50,52,51,55,53,93,44,91,45,56,53,46,52,50,56,50,56,51,44,51,56,46,53,56,54,51,50,53,93,44,91,45,56,53,46,53,54,57,57,56,44,51,56,46,54,48,54,49,53,53,93,44,91,45,56,53,46,55,57,51,53,56,52,44,51,56,46,54,48,52,56,49,52,93,44,91,45,56,53,46,56,52,55,56,57,51,44,51,56,46,53,54,49,50,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,111,121,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,57,49,51,44,34,98,101,100,115,34,58,49,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,52,52,56,56,56,44,51,55,46,55,49,51,48,55,53,93,44,91,45,56,53,46,48,50,53,48,50,49,44,51,55,46,54,55,56,56,53,52,93,44,91,45,56,53,46,48,51,48,49,55,50,44,51,55,46,54,51,49,50,55,93,44,91,45,56,53,46,48,51,57,54,55,52,44,51,55,46,53,52,53,50,51,50,93,44,91,45,56,52,46,56,52,55,52,51,52,44,51,55,46,53,52,56,51,52,51,93,44,91,45,56,52,46,54,53,56,50,57,54,44,51,55,46,54,51,52,53,48,49,93,44,91,45,56,52,46,55,52,52,56,56,56,44,51,55,46,55,49,51,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,69,115,116,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,56,48,51,51,55,44,51,55,46,56,53,51,48,54,54,93,44,91,45,56,52,46,49,50,54,57,52,56,44,51,55,46,54,52,50,52,50,49,93,44,91,45,56,52,46,48,57,48,51,54,52,44,51,55,46,53,54,54,50,50,55,93,44,91,45,56,51,46,57,48,53,53,55,44,51,55,46,53,52,50,56,53,54,93,44,91,45,56,51,46,56,50,51,48,51,44,51,55,46,54,53,57,56,55,50,93,44,91,45,56,51,46,55,50,50,49,44,51,55,46,55,49,54,52,50,93,44,91,45,56,51,46,57,48,54,50,53,49,44,51,55,46,55,53,57,51,54,51,93,44,91,45,56,52,46,48,48,49,57,54,55,44,51,55,46,56,51,55,53,57,50,93,44,91,45,56,52,46,48,56,48,51,51,55,44,51,55,46,56,53,51,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,67,111,108,108,105,110,103,115,119,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,57,54,44,34,98,101,100,115,34,58,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,51,56,57,55,56,44,51,53,46,49,56,51,49,52,52,93,44,91,45,49,48,48,46,53,52,48,55,48,51,44,51,52,46,55,52,55,55,50,51,93,44,91,45,49,48,48,46,52,49,53,56,57,53,44,51,52,46,55,52,55,53,50,53,93,44,91,45,49,48,48,46,48,48,48,51,56,49,44,51,52,46,55,52,54,51,53,56,93,44,91,45,49,48,48,46,48,48,48,51,56,52,44,51,53,46,48,50,57,57,51,93,44,91,45,49,48,48,46,48,48,48,51,56,53,44,51,53,46,49,56,50,55,48,50,93,44,91,45,49,48,48,46,53,51,56,57,55,56,44,51,53,46,49,56,51,49,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,48,50,50,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,55,52,50,50,50,44,50,57,46,54,51,50,55,48,54,93,44,91,45,57,54,46,55,57,51,49,51,50,44,50,57,46,53,55,55,51,55,56,93,44,91,45,57,54,46,53,54,48,53,53,53,44,50,57,46,51,51,53,52,51,57,93,44,91,45,57,54,46,54,53,56,52,54,54,44,50,57,46,50,54,51,56,55,54,93,44,91,45,57,54,46,54,52,48,51,49,53,44,50,57,46,50,52,55,56,48,52,93,44,91,45,57,54,46,51,52,57,50,49,55,44,50,57,46,52,48,54,48,53,50,93,44,91,45,57,54,46,51,48,55,54,55,50,44,50,57,46,53,49,52,53,50,51,93,44,91,45,57,54,46,49,55,53,52,50,50,44,50,57,46,54,51,51,56,48,54,93,44,91,45,57,54,46,50,53,54,54,57,54,44,50,57,46,54,54,55,48,54,49,93,44,91,45,57,54,46,51,51,48,56,54,57,44,50,57,46,56,49,52,52,52,57,93,44,91,45,57,54,46,52,49,51,50,56,51,44,50,57,46,56,50,52,57,56,53,93,44,91,45,57,54,46,53,54,57,56,52,52,44,50,57,46,57,54,49,53,49,54,93,44,91,45,57,54,46,56,55,52,50,50,50,44,50,57,46,54,51,50,55,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,71,114,117,110,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,53,48,57,44,34,98,101,100,115,34,58,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,53,50,50,51,49,44,52,49,46,52,54,51,48,54,54,93,44,91,45,56,56,46,53,57,53,57,54,49,44,52,49,46,52,53,55,49,50,57,93,44,91,45,56,56,46,53,56,54,50,52,44,52,49,46,49,48,56,50,57,51,93,44,91,45,56,56,46,50,53,49,53,48,49,44,52,49,46,49,49,52,50,49,56,93,44,91,45,56,56,46,50,52,52,49,52,52,44,52,49,46,50,48,49,53,54,54,93,44,91,45,56,56,46,50,53,50,50,51,49,44,52,49,46,52,54,51,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,48,55,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,53,49,56,50,44,52,52,46,53,52,51,54,53,50,93,44,91,45,57,54,46,52,53,50,55,55,51,44,52,52,46,49,57,54,55,56,93,44,91,45,57,54,46,48,55,56,53,56,44,52,52,46,49,57,54,54,50,93,44,91,45,57,54,46,48,57,50,57,53,44,52,52,46,54,51,48,52,56,54,93,44,91,45,57,54,46,52,53,49,53,54,54,44,52,52,46,54,51,49,51,52,57,93,44,91,45,57,54,46,52,53,49,56,50,44,52,52,46,53,52,51,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,69,118,97,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,50,55,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,50,53,51,51,57,44,51,50,46,50,55,56,56,56,51,93,44,91,45,56,49,46,57,56,48,48,52,49,44,51,50,46,48,56,49,53,48,50,93,44,91,45,56,49,46,55,54,49,55,51,53,44,51,50,46,48,52,55,57,93,44,91,45,56,49,46,55,49,56,54,53,56,44,51,50,46,48,56,57,51,53,49,93,44,91,45,56,49,46,55,56,48,56,53,56,44,51,50,46,49,53,50,56,57,93,44,91,45,56,49,46,56,49,54,50,56,44,51,50,46,50,51,55,52,55,93,44,91,45,56,49,46,57,54,57,48,54,57,44,51,50,46,50,54,56,55,56,51,93,44,91,45,56,50,46,48,50,53,51,51,57,44,51,50,46,50,55,56,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,57,55,34,44,34,78,65,77,69,34,58,34,87,105,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,54,51,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,56,55,48,54,53,44,51,51,46,52,51,51,54,56,49,93,44,91,45,57,55,46,57,49,56,49,56,57,44,51,51,46,52,51,51,56,55,51,93,44,91,45,57,55,46,57,50,49,54,52,50,44,51,51,46,48,48,49,50,56,52,93,44,91,45,57,55,46,53,52,52,49,56,49,44,51,50,46,57,57,52,49,55,55,93,44,91,45,57,55,46,51,57,56,52,56,44,51,50,46,57,57,48,56,51,57,93,44,91,45,57,55,46,51,56,51,48,57,53,44,51,51,46,52,51,48,52,53,93,44,91,45,57,55,46,52,56,55,48,54,53,44,51,51,46,52,51,51,54,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,53,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,48,34,44,34,78,65,77,69,34,58,34,66,101,116,104,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,52,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,54,48,46,53,51,52,54,55,49,44,54,49,46,57,52,53,57,52,93,44,91,45,49,54,48,46,51,53,48,49,52,44,54,49,46,56,49,57,48,55,49,93,44,91,45,49,54,48,46,55,55,53,50,52,52,44,54,49,46,55,51,56,53,50,55,93,44,91,45,49,54,49,46,49,50,54,56,49,50,44,54,49,46,53,57,57,53,52,93,44,91,45,49,54,49,46,52,52,57,54,49,49,44,54,49,46,53,54,56,56,51,56,93,44,91,45,49,54,50,46,48,49,51,52,51,56,44,54,49,46,52,55,55,48,53,55,93,44,91,45,49,54,50,46,53,48,53,55,54,49,44,54,49,46,53,53,54,52,50,54,93,44,91,45,49,54,51,46,49,55,49,51,53,52,44,54,49,46,52,52,57,48,55,49,93,44,91,45,49,54,51,46,52,50,56,56,54,54,44,54,49,46,52,54,50,50,56,93,44,91,45,49,54,51,46,54,53,53,51,57,44,54,49,46,51,51,53,56,50,55,93,44,91,45,49,54,51,46,57,56,53,49,51,56,44,54,49,46,51,55,50,48,48,51,93,44,91,45,49,54,51,46,57,50,48,56,55,52,44,54,49,46,50,49,48,54,57,50,93,44,91,45,49,54,52,46,50,49,49,55,56,49,44,54,49,46,48,56,50,50,54,50,93,44,91,45,49,54,52,46,50,51,57,55,50,55,44,54,48,46,57,56,55,49,49,57,93,44,91,45,49,54,52,46,53,50,57,57,49,49,44,54,48,46,57,52,48,55,57,54,93,44,91,45,49,54,52,46,54,49,54,53,56,53,44,54,48,46,57,55,57,48,52,57,93,44,91,45,49,54,53,46,48,48,48,53,49,52,44,54,48,46,57,54,51,54,51,53,93,44,91,45,49,54,53,46,50,53,52,49,54,50,44,54,48,46,57,49,55,49,48,56,93,44,91,45,49,54,53,46,49,50,51,51,54,57,44,54,48,46,55,51,54,54,50,55,93,44,91,45,49,54,53,46,53,49,56,50,54,51,44,54,48,46,53,54,54,48,49,54,93,44,91,45,49,54,53,46,52,50,54,53,51,44,54,48,46,52,55,52,51,56,51,93,44,91,45,49,54,53,46,50,51,53,52,49,49,44,54,48,46,52,50,53,49,53,93,44,91,45,49,54,52,46,57,55,49,57,49,54,44,54,48,46,50,55,55,48,49,57,93,44,91,45,49,54,52,46,55,52,56,56,49,44,54,48,46,50,52,48,51,49,51,93,44,91,45,49,54,52,46,51,54,52,51,51,50,44,53,57,46,57,57,57,50,50,51,93,44,91,45,49,54,52,46,52,49,53,54,57,54,44,53,57,46,56,56,52,56,54,55,93,44,91,45,49,54,52,46,48,49,51,51,44,53,57,46,54,51,55,55,53,57,93,44,91,45,49,54,51,46,55,54,48,57,54,49,44,53,57,46,54,51,57,55,49,54,93,44,91,45,49,54,51,46,55,56,52,51,55,51,44,53,57,46,55,52,48,53,54,57,93,44,91,45,49,54,51,46,49,52,53,56,54,51,44,53,57,46,55,57,53,54,52,50,93,44,91,45,49,54,50,46,56,54,56,54,54,49,44,53,57,46,55,56,48,51,56,49,93,44,91,45,49,54,50,46,55,48,55,53,53,57,44,53,57,46,56,56,48,49,55,53,93,44,91,45,49,54,50,46,52,52,57,56,52,56,44,53,57,46,56,56,52,54,49,54,93,44,91,45,49,54,50,46,51,54,52,51,52,49,44,53,57,46,56,49,48,56,54,57,93,44,91,45,49,54,50,46,49,55,56,51,50,57,44,53,57,46,56,49,52,56,52,50,93,44,91,45,49,54,49,46,56,55,49,50,54,54,44,53,57,46,53,50,52,55,57,49,93,44,91,45,49,54,50,46,48,53,51,54,49,50,44,53,57,46,52,48,56,57,57,93,44,91,45,49,54,50,46,49,54,54,54,48,52,44,53,57,46,50,55,53,48,55,53,93,44,91,45,49,54,50,46,49,48,50,49,57,56,44,53,57,46,49,50,56,55,53,50,93,44,91,45,49,54,49,46,56,56,49,55,54,53,44,53,56,46,57,52,52,49,52,54,93,44,91,45,49,54,49,46,56,53,49,50,48,49,44,53,56,46,56,48,55,57,56,51,93,44,91,45,49,54,49,46,57,54,51,48,50,56,44,53,56,46,55,50,54,50,51,51,93,44,91,45,49,54,50,46,49,54,56,53,50,50,44,53,56,46,55,49,48,50,55,54,93,44,91,45,49,54,50,46,50,55,48,52,49,49,44,53,56,46,54,50,50,49,50,54,93,44,91,45,49,54,50,46,49,51,50,50,49,55,44,53,56,46,53,55,49,51,55,54,93,44,91,45,49,54,49,46,56,54,53,48,53,50,44,53,56,46,53,54,54,48,56,55,93,44,91,45,49,54,49,46,54,52,48,50,52,57,44,53,56,46,53,48,50,51,50,54,93,44,91,45,49,54,49,46,51,52,49,56,52,44,53,56,46,54,48,55,48,57,49,93,44,91,45,49,54,49,46,49,57,56,49,56,51,44,53,56,46,55,51,57,51,51,55,93,44,91,45,49,54,49,46,51,54,52,57,51,49,44,53,56,46,56,50,54,48,50,49,93,44,91,45,49,54,49,46,48,51,49,52,52,49,44,53,56,46,56,51,57,55,53,50,93,44,91,45,49,54,49,46,48,51,49,52,52,56,44,53,56,46,57,57,57,51,57,51,93,44,91,45,49,54,48,46,56,54,52,55,48,51,44,53,56,46,57,57,57,51,57,52,93,44,91,45,49,54,48,46,56,49,50,49,51,51,44,53,57,46,48,56,54,48,55,55,93,44,91,45,49,54,48,46,56,49,50,49,52,44,53,57,46,50,53,57,52,51,56,93,44,91,45,49,54,48,46,54,52,51,55,49,54,44,53,57,46,50,53,57,52,52,93,44,91,45,49,54,48,46,52,55,53,50,57,54,44,53,57,46,51,52,54,49,50,50,93,44,91,45,49,54,48,46,52,49,56,54,52,44,53,57,46,52,51,50,56,93,44,91,45,49,54,48,46,52,49,56,54,52,55,44,53,57,46,54,48,54,49,53,50,93,44,91,45,49,54,48,46,50,52,56,53,48,51,44,53,57,46,54,48,54,49,53,52,93,44,91,45,49,54,48,46,50,52,56,53,49,44,53,57,46,55,55,57,53,48,49,93,44,91,45,49,54,48,46,48,49,55,52,50,51,44,53,57,46,55,55,57,53,48,52,93,44,91,45,49,54,48,46,48,49,55,52,51,44,53,57,46,57,53,50,56,52,54,93,44,91,45,49,53,57,46,56,52,53,53,50,52,44,53,57,46,57,53,50,56,52,56,93,44,91,45,49,53,57,46,56,52,53,53,51,51,44,54,48,46,49,50,54,49,56,54,93,44,91,45,49,53,57,46,55,56,49,57,48,54,44,54,48,46,50,49,50,56,53,52,93,44,91,45,49,53,57,46,54,48,56,49,57,54,44,54,48,46,50,49,50,56,53,54,93,44,91,45,49,53,57,46,54,48,56,50,48,52,44,54,48,46,51,56,54,49,56,56,93,44,91,45,49,53,57,46,52,51,52,52,57,55,44,54,48,46,51,56,54,49,57,93,44,91,45,49,53,57,46,51,54,54,50,48,54,44,54,48,46,52,55,50,56,53,54,93,44,91,45,49,53,57,46,51,54,54,50,49,53,44,54,48,46,54,52,54,49,55,57,93,44,91,45,49,53,57,46,49,57,48,54,53,55,44,54,48,46,54,52,54,49,56,49,93,44,91,45,49,53,57,46,48,49,53,49,48,52,44,54,48,46,55,51,50,56,52,51,93,44,91,45,49,53,56,46,57,52,49,57,50,54,44,54,48,46,57,48,54,49,54,50,93,44,91,45,49,53,55,46,56,55,55,50,50,52,44,54,48,46,57,48,54,49,55,50,93,44,91,45,49,53,55,46,53,50,50,51,51,50,44,54,48,46,57,57,50,56,51,52,93,44,91,45,49,53,55,46,49,54,55,52,50,56,44,54,48,46,57,57,50,56,51,57,93,44,91,45,49,53,55,46,49,54,55,52,50,44,54,48,46,57,48,54,49,56,51,93,44,91,45,49,53,54,46,48,48,48,48,56,54,44,54,48,46,57,48,54,49,57,93,44,91,45,49,53,52,46,54,49,52,50,49,53,44,54,48,46,57,48,54,50,48,52,93,44,91,45,49,53,51,46,52,52,48,56,56,52,44,54,48,46,57,48,54,50,51,54,93,44,91,45,49,53,51,46,52,52,48,56,55,55,44,54,49,46,49,54,54,49,57,54,93,44,91,45,49,53,51,46,52,56,53,53,55,53,44,54,49,46,52,50,54,49,53,51,93,44,91,45,49,53,50,46,57,57,57,56,56,50,44,54,49,46,52,50,54,49,55,50,93,44,91,45,49,53,50,46,57,57,57,56,51,57,44,54,50,46,50,57,50,54,50,49,93,44,91,45,49,53,51,46,48,55,48,49,50,51,44,54,50,46,50,48,54,48,49,53,93,44,91,45,49,53,51,46,51,57,53,48,48,57,44,54,50,46,50,48,53,57,57,93,44,91,45,49,53,51,46,51,57,53,48,48,57,44,54,50,46,49,49,57,51,52,55,93,44,91,45,49,53,51,46,55,54,49,56,55,49,44,54,50,46,49,49,57,51,51,53,93,44,91,45,49,53,51,46,55,54,49,56,55,53,44,54,50,46,48,51,50,54,56,57,93,44,91,45,49,53,53,46,52,57,55,54,52,53,44,54,50,46,48,51,50,54,53,57,93,44,91,45,49,53,55,46,48,54,51,56,53,50,44,54,50,46,48,51,50,54,51,52,93,44,91,45,49,53,55,46,48,54,51,56,54,52,44,54,50,46,49,49,57,50,55,49,93,44,91,45,49,53,56,46,53,51,49,51,54,49,44,54,50,46,49,49,57,50,54,52,93,44,91,45,49,53,56,46,53,51,49,51,53,49,44,54,50,46,48,51,50,54,50,93,44,91,45,49,53,57,46,50,54,53,48,51,53,44,54,50,46,48,51,50,53,57,56,93,44,91,45,49,53,57,46,50,54,53,48,51,55,44,54,49,46,57,52,53,57,53,55,93,44,91,45,49,54,48,46,53,51,52,54,55,49,44,54,49,46,57,52,53,57,52,93,93,93,44,91,91,91,45,49,54,55,46,53,53,56,50,50,56,44,54,48,46,50,50,52,51,53,55,93,44,91,45,49,54,55,46,51,56,53,53,56,44,54,48,46,48,50,49,50,48,55,93,44,91,45,49,54,54,46,57,52,48,54,50,50,44,53,57,46,57,49,49,57,48,56,93,44,91,45,49,54,54,46,54,50,54,49,50,54,44,53,57,46,55,57,55,48,54,49,93,44,91,45,49,54,54,46,52,50,57,54,55,49,44,53,57,46,56,48,49,54,51,54,93,44,91,45,49,54,54,46,49,57,54,54,49,51,44,53,57,46,55,48,51,51,56,52,93,44,91,45,49,54,54,46,48,53,55,56,57,51,44,53,57,46,54,57,53,53,51,53,93,44,91,45,49,54,53,46,56,50,52,56,53,57,44,53,57,46,56,48,54,55,52,54,93,44,91,45,49,54,53,46,52,57,53,52,55,44,53,57,46,56,55,48,49,56,52,93,44,91,45,49,54,53,46,52,48,50,52,53,56,44,53,57,46,57,55,48,52,52,56,93,44,91,45,49,54,53,46,53,55,51,49,55,51,44,54,48,46,48,55,53,48,54,51,93,44,91,45,49,54,53,46,53,54,49,53,49,57,44,54,48,46,51,48,49,55,50,54,93,44,91,45,49,54,53,46,55,51,56,52,54,53,44,54,48,46,52,48,53,54,48,57,93,44,91,45,49,54,54,46,48,48,53,55,57,56,44,54,48,46,52,49,57,53,55,51,93,44,91,45,49,54,54,46,49,53,50,52,51,50,44,54,48,46,53,49,48,55,52,55,93,44,91,45,49,54,54,46,51,52,57,56,50,51,44,54,48,46,52,49,55,55,52,53,93,44,91,45,49,54,54,46,53,50,56,56,51,57,44,54,48,46,52,52,52,50,55,93,44,91,45,49,54,54,46,55,51,57,51,51,55,44,54,48,46,51,56,55,56,54,49,93,44,91,45,49,54,54,46,57,52,51,55,55,56,44,54,48,46,50,55,56,49,48,51,93,44,91,45,49,54,55,46,51,48,57,56,51,44,54,48,46,50,57,48,55,49,56,93,44,91,45,49,54,55,46,53,53,56,50,50,56,44,54,48,46,50,50,52,51,53,55,93,93,93,44,91,91,91,45,49,55,51,46,50,51,50,50,51,49,44,54,48,46,54,53,52,51,52,93,44,91,45,49,55,51,46,49,52,48,50,50,51,44,54,48,46,53,55,53,53,51,51,93,44,91,45,49,55,51,46,49,54,55,56,49,56,44,54,48,46,52,56,49,48,56,93,44,91,45,49,55,50,46,57,49,48,50,50,56,44,54,48,46,51,51,57,54,50,51,93,44,91,45,49,55,50,46,53,57,54,49,50,53,44,54,48,46,50,53,56,54,50,50,93,44,91,45,49,55,50,46,52,48,55,53,50,54,44,54,48,46,50,55,56,55,54,52,93,44,91,45,49,55,50,46,49,56,57,52,56,56,44,54,48,46,50,53,48,56,49,54,93,44,91,45,49,55,50,46,49,48,57,48,57,44,54,48,46,51,49,52,48,49,50,93,44,91,45,49,55,50,46,51,57,51,53,55,44,54,48,46,52,51,54,53,48,54,93,44,91,45,49,55,50,46,54,56,55,56,52,44,54,48,46,52,56,48,49,50,93,44,91,45,49,55,50,46,57,52,51,56,52,57,44,54,48,46,54,53,48,55,93,44,91,45,49,55,50,46,57,56,57,55,54,50,44,54,48,46,55,51,49,56,49,49,93,44,91,45,49,55,51,46,49,53,56,54,51,50,44,54,48,46,55,50,56,55,55,93,44,91,45,49,55,51,46,50,51,50,50,51,49,44,54,48,46,54,53,52,51,52,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,55,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,52,57,51,49,57,44,51,50,46,50,51,50,57,53,51,93,44,91,45,56,52,46,54,53,53,56,50,44,51,49,46,57,50,48,51,48,56,93,44,91,45,56,52,46,53,57,57,55,55,54,44,51,49,46,57,50,48,49,55,49,93,44,91,45,56,52,46,52,52,51,56,48,55,44,51,49,46,57,54,55,52,53,54,93,44,91,45,56,52,46,52,51,49,50,49,52,44,51,50,46,49,51,52,48,53,56,93,44,91,45,56,52,46,53,50,55,49,49,55,44,51,50,46,49,51,52,53,53,54,93,44,91,45,56,52,46,54,52,57,51,49,57,44,51,50,46,50,51,50,57,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,53,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,49,54,48,52,56,44,51,51,46,49,51,49,56,49,54,93,44,91,45,56,51,46,55,49,48,54,56,53,44,51,50,46,57,53,50,55,57,50,93,44,91,45,56,51,46,54,53,56,50,49,49,44,51,50,46,56,56,55,57,49,51,93,44,91,45,56,51,46,53,49,51,53,49,49,44,51,50,46,56,52,52,56,54,56,93,44,91,45,56,51,46,52,48,54,57,57,44,51,50,46,56,57,56,50,50,93,44,91,45,56,51,46,51,53,55,54,56,53,44,51,50,46,57,50,54,49,52,49,93,44,91,45,56,51,46,52,50,57,48,57,44,51,51,46,49,56,53,51,53,50,93,44,91,45,56,51,46,53,52,53,56,55,54,44,51,51,46,49,55,49,57,52,52,93,44,91,45,56,51,46,56,49,54,48,52,56,44,51,51,46,49,51,49,56,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,71,119,105,110,110,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,50,50,57,56,44,34,98,101,100,115,34,58,49,48,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,57,55,54,57,51,44,51,52,46,48,53,48,55,48,56,93,44,91,45,56,52,46,50,55,55,48,57,51,44,51,51,46,57,53,55,54,49,52,93,44,91,45,56,52,46,50,53,57,56,50,50,44,51,51,46,57,49,56,57,48,49,93,44,91,45,56,52,46,48,50,51,55,49,51,44,51,51,46,55,53,50,56,48,56,93,44,91,45,56,51,46,57,56,50,48,51,51,44,51,51,46,55,56,54,48,53,52,93,44,91,45,56,51,46,55,57,57,49,48,52,44,51,51,46,57,50,57,56,52,52,93,44,91,45,56,51,46,56,54,56,57,51,49,44,51,52,46,48,48,52,55,56,54,93,44,91,45,56,51,46,56,49,55,54,56,50,44,51,52,46,49,50,55,52,57,51,93,44,91,45,56,51,46,56,54,56,48,51,44,51,52,46,48,57,56,50,56,49,93,44,91,45,56,52,46,48,54,50,56,52,49,44,51,52,46,49,54,55,56,55,51,93,44,91,45,56,52,46,48,57,55,54,57,51,44,51,52,46,48,53,48,55,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,51,52,57,44,34,98,101,100,115,34,58,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,56,55,48,54,55,44,52,53,46,54,52,52,49,52,56,93,44,91,45,57,50,46,54,52,54,54,48,50,44,52,53,46,52,52,49,54,51,53,93,44,91,45,57,50,46,55,52,53,54,56,51,44,52,53,46,50,57,54,48,52,50,93,44,91,45,57,50,46,55,53,56,48,48,56,44,52,53,46,50,48,57,53,54,54,93,44,91,45,57,50,46,49,53,54,52,54,53,44,52,53,46,50,48,57,53,53,52,93,44,91,45,57,50,46,49,53,52,56,56,56,44,52,53,46,54,51,57,55,52,50,93,44,91,45,57,50,46,49,53,52,52,52,51,44,52,53,46,55,50,53,54,49,54,93,44,91,45,57,50,46,53,50,56,49,57,56,44,52,53,46,55,50,56,54,56,93,44,91,45,57,50,46,53,50,57,49,48,55,44,52,53,46,54,52,50,48,55,54,93,44,91,45,57,50,46,56,56,55,48,54,55,44,52,53,46,54,52,52,49,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,54,52,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,51,56,52,49,44,52,50,46,56,49,51,55,57,57,93,44,91,45,56,57,46,56,51,55,53,56,55,44,52,50,46,53,48,53,55,49,93,44,91,45,56,57,46,52,48,49,52,50,51,44,52,50,46,53,48,48,53,53,52,93,44,91,45,56,57,46,51,54,53,55,57,56,44,52,50,46,53,48,48,48,55,56,93,44,91,45,56,57,46,51,54,57,49,50,56,44,52,50,46,56,52,53,48,51,54,93,44,91,45,56,57,46,56,51,56,49,54,55,44,52,50,46,56,53,55,51,57,55,93,44,91,45,56,57,46,56,51,56,52,49,44,52,50,46,56,49,51,55,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,79,114,111,99,111,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,55,55,55,49,50,44,49,56,46,50,57,51,57,55,54,93,44,91,45,54,54,46,52,53,53,55,48,51,44,49,56,46,50,53,55,55,50,54,93,44,91,45,54,54,46,53,52,51,49,51,51,44,49,56,46,49,54,51,48,57,56,93,44,91,45,54,54,46,53,52,55,50,50,44,49,56,46,49,53,51,49,51,93,44,91,45,54,54,46,53,50,49,56,57,57,44,49,56,46,49,53,49,57,53,52,93,44,91,45,54,54,46,52,52,52,53,54,44,49,56,46,49,55,54,54,55,52,93,44,91,45,54,54,46,51,55,51,55,54,56,44,49,56,46,49,55,51,54,57,52,93,44,91,45,54,54,46,51,53,48,55,57,51,44,49,56,46,50,52,49,50,51,53,93,44,91,45,54,54,46,51,55,55,55,49,50,44,49,56,46,50,57,51,57,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,48,55,48,44,34,98,101,100,115,34,58,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,53,51,48,48,54,55,44,52,49,46,53,50,55,49,57,52,93,44,91,45,55,51,46,57,51,51,55,55,53,44,52,49,46,52,56,56,50,55,57,93,44,91,45,55,51,46,57,56,49,52,56,54,44,52,49,46,52,51,56,57,48,53,93,44,91,45,55,51,46,57,56,49,51,56,52,44,52,49,46,51,50,52,54,57,51,93,44,91,45,55,51,46,57,56,50,53,56,52,44,52,49,46,51,50,49,54,57,51,93,44,91,45,55,51,46,53,52,52,55,50,56,44,52,49,46,51,54,54,51,55,53,93,44,91,45,55,51,46,53,51,48,48,54,55,44,52,49,46,53,50,55,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,48,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,48,48,34,44,34,78,65,77,69,34,58,34,78,101,119,112,111,114,116,32,78,101,119,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,49,52,53,44,34,98,101,100,115,34,58,54,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,44,91,45,55,54,46,54,50,56,50,48,53,44,51,55,46,48,57,50,55,53,53,93,44,91,45,55,54,46,52,52,53,51,48,49,44,51,54,46,57,52,49,56,57,49,93,44,91,45,55,54,46,51,57,57,53,54,55,44,51,54,46,57,51,48,57,52,55,93,44,91,45,55,54,46,51,56,52,52,49,57,44,51,54,46,57,53,49,48,53,57,93,44,91,45,55,54,46,52,51,56,48,50,54,44,51,55,46,48,57,52,51,52,56,93,44,91,45,55,54,46,53,57,49,51,48,50,44,51,55,46,50,49,51,50,48,53,93,44,91,45,55,54,46,54,52,49,53,56,49,44,51,55,46,49,53,51,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,55,52,50,51,51,44,51,56,46,50,54,54,57,55,49,93,44,91,45,49,48,51,46,51,57,57,57,51,56,44,51,56,46,50,54,53,52,51,53,93,44,91,45,49,48,51,46,52,48,52,51,51,57,44,51,55,46,54,52,51,53,55,54,93,44,91,45,49,48,51,46,48,55,53,57,51,56,44,51,55,46,54,52,51,52,50,93,44,91,45,49,48,50,46,55,52,55,54,49,53,44,51,55,46,54,52,51,54,52,50,93,44,91,45,49,48,50,46,55,52,50,51,51,44,51,56,46,50,54,54,57,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,56,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,52,54,52,54,50,44,51,52,46,56,50,50,49,49,52,93,44,91,45,57,57,46,52,48,53,56,50,49,44,51,52,46,56,49,51,48,51,56,93,44,91,45,57,57,46,52,50,51,50,48,49,44,51,52,46,55,50,53,48,50,93,44,91,45,57,57,46,54,54,54,56,52,57,44,51,52,46,55,50,52,53,53,53,93,44,91,45,57,57,46,54,54,54,53,49,50,44,51,52,46,53,48,55,49,50,49,93,44,91,45,57,57,46,56,52,52,53,56,53,44,51,52,46,53,48,54,57,49,53,93,44,91,45,57,57,46,54,57,52,53,50,56,44,51,52,46,51,55,56,50,49,56,93,44,91,45,57,57,46,53,54,57,54,57,54,44,51,52,46,52,49,56,52,49,56,93,44,91,45,57,57,46,52,55,53,49,49,53,44,51,52,46,51,57,53,57,51,93,44,91,45,57,57,46,50,54,49,50,55,53,44,51,52,46,52,48,51,53,48,56,93,44,91,45,57,57,46,50,48,54,57,48,53,44,51,52,46,51,51,56,50,55,55,93,44,91,45,57,57,46,50,51,56,48,54,44,51,52,46,52,50,53,48,48,57,93,44,91,45,57,57,46,49,57,54,56,48,49,44,51,52,46,53,52,50,51,56,54,93,44,91,45,57,57,46,49,48,51,49,53,44,51,52,46,54,51,55,57,53,93,44,91,45,57,57,46,50,52,54,52,54,50,44,51,52,46,56,50,50,49,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,97,110,100,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,50,49,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,54,50,57,52,56,56,44,52,55,46,52,55,57,54,49,93,44,91,45,49,49,53,46,50,56,51,56,53,54,44,52,55,46,52,56,54,54,51,56,93,44,91,45,49,49,52,46,57,56,50,50,54,53,44,52,55,46,51,57,54,56,48,52,93,44,91,45,49,49,52,46,57,54,56,57,55,56,44,52,55,46,51,49,50,54,50,53,93,44,91,45,49,49,52,46,55,57,55,50,48,52,44,52,55,46,50,54,56,57,49,54,93,44,91,45,49,49,52,46,54,56,55,50,57,53,44,52,55,46,50,55,52,51,49,93,44,91,45,49,49,52,46,52,50,51,56,53,56,44,52,55,46,50,49,48,48,57,49,93,44,91,45,49,49,52,46,50,53,51,53,56,52,44,52,55,46,49,50,49,48,48,55,93,44,91,45,49,49,52,46,49,56,55,49,55,44,52,55,46,49,51,56,49,57,49,93,44,91,45,49,49,52,46,50,48,51,48,50,54,44,52,55,46,51,53,53,55,52,54,93,44,91,45,49,49,52,46,51,53,51,48,56,44,52,55,46,51,56,57,56,53,93,44,91,45,49,49,52,46,51,53,48,51,54,52,44,52,55,46,54,48,50,49,52,50,93,44,91,45,49,49,52,46,53,56,51,55,54,44,52,55,46,54,48,49,55,49,56,93,44,91,45,49,49,52,46,54,48,52,52,54,50,44,52,55,46,55,56,57,56,55,49,93,44,91,45,49,49,52,46,54,48,52,53,56,52,44,52,55,46,56,55,53,54,48,53,93,44,91,45,49,49,52,46,57,56,57,51,52,52,44,52,55,46,56,55,50,56,48,55,93,44,91,45,49,49,53,46,48,49,48,54,55,50,44,52,56,46,48,49,55,54,50,49,93,44,91,45,49,49,53,46,49,53,52,53,50,55,44,52,56,46,48,49,55,54,57,50,93,44,91,45,49,49,53,46,49,56,53,49,57,54,44,52,55,46,57,49,57,48,48,52,93,44,91,45,49,49,53,46,53,50,52,54,57,53,44,52,55,46,57,48,56,53,57,52,93,44,91,45,49,49,53,46,54,51,55,48,51,54,44,52,56,46,48,55,52,54,52,54,93,44,91,45,49,49,53,46,54,57,56,55,54,52,44,52,56,46,50,51,56,52,57,56,93,44,91,45,49,49,54,46,48,48,57,50,51,55,44,52,56,46,49,53,57,54,54,57,93,44,91,45,49,49,54,46,48,52,56,54,54,57,44,52,56,46,50,49,54,49,50,56,93,44,91,45,49,49,54,46,48,52,57,49,48,56,44,52,55,46,57,55,55,51,51,52,93,44,91,45,49,49,53,46,56,50,51,55,55,52,44,52,55,46,55,53,50,54,49,49,93,44,91,45,49,49,53,46,55,50,50,55,49,52,44,52,55,46,54,57,52,56,53,53,93,44,91,45,49,49,53,46,54,50,57,52,56,56,44,52,55,46,52,55,57,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,71,108,97,115,115,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,55,55,54,48,56,53,44,51,50,46,48,56,54,57,50,53,93,44,91,45,49,48,49,46,55,55,53,56,48,50,44,51,49,46,54,53,49,51,49,57,93,44,91,45,49,48,49,46,50,54,55,49,50,50,44,51,49,46,54,53,48,56,53,52,93,44,91,45,49,48,49,46,50,54,52,50,49,54,44,51,50,46,48,56,55,49,51,54,93,44,91,45,49,48,49,46,54,57,53,48,49,49,44,51,50,46,48,56,55,53,51,50,93,44,91,45,49,48,49,46,55,55,54,48,56,53,44,51,50,46,48,56,54,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,49,48,56,51,54,44,51,53,46,55,53,57,55,53,50,93,44,91,45,57,51,46,57,56,52,50,48,52,44,51,53,46,54,54,48,55,56,51,93,44,91,45,57,52,46,48,55,51,57,53,56,44,51,53,46,54,54,50,52,54,51,93,44,91,45,57,52,46,48,50,56,57,57,55,44,51,53,46,53,48,56,48,51,53,93,44,91,45,57,52,46,48,55,52,56,57,53,44,51,53,46,52,52,53,52,48,51,93,44,91,45,57,52,46,48,56,50,55,57,56,44,51,53,46,50,49,53,57,49,51,93,44,91,45,57,52,46,48,50,56,56,56,54,44,51,53,46,50,49,51,56,52,49,93,44,91,45,57,51,46,57,50,48,49,53,55,44,51,53,46,50,50,57,53,56,53,93,44,91,45,57,51,46,55,49,48,48,55,54,44,51,53,46,51,55,53,50,52,50,93,44,91,45,57,51,46,54,57,53,57,56,49,44,51,53,46,55,54,56,54,52,57,93,44,91,45,57,51,46,57,49,48,56,51,54,44,51,53,46,55,53,57,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,97,106,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,51,51,54,49,55,44,51,54,46,52,54,51,50,51,93,44,91,45,57,56,46,54,50,53,51,54,49,44,51,54,46,51,57,50,53,57,53,93,44,91,45,57,56,46,57,54,48,51,51,52,44,51,54,46,53,48,54,57,49,52,93,44,91,45,57,56,46,57,53,53,56,52,57,44,51,54,46,49,54,49,53,55,55,93,44,91,45,57,56,46,54,51,54,56,57,57,44,51,54,46,49,54,52,56,57,52,93,44,91,45,57,56,46,50,49,48,52,48,53,44,51,54,46,49,54,52,56,56,57,93,44,91,45,57,56,46,49,48,51,57,48,52,44,51,54,46,49,54,52,56,55,55,93,44,91,45,57,56,46,49,48,52,52,50,55,44,51,54,46,52,54,51,49,48,53,93,44,91,45,57,56,46,53,51,51,54,49,55,44,51,54,46,52,54,51,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,54,51,56,55,44,34,98,101,100,115,34,58,51,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,51,53,57,56,44,51,54,46,54,52,49,54,53,57,93,44,91,45,56,55,46,54,52,49,49,53,55,44,51,54,46,54,51,56,49,48,57,93,44,91,45,56,55,46,53,57,50,51,53,56,44,51,54,46,51,54,55,54,54,51,93,44,91,45,56,55,46,53,49,51,53,51,51,44,51,54,46,51,51,52,55,49,51,93,44,91,45,56,55,46,50,56,54,53,48,49,44,51,54,46,51,50,49,57,51,51,93,44,91,45,56,55,46,49,50,48,52,52,51,44,51,54,46,52,53,53,52,54,93,44,91,45,56,55,46,49,49,52,57,56,51,44,51,54,46,54,52,50,51,55,49,93,44,91,45,56,55,46,51,51,53,57,56,44,51,54,46,54,52,49,54,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,80,101,110,100,32,79,114,101,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,49,57,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,52,50,57,57,54,56,44,52,57,46,48,48,48,52,54,54,93,44,91,45,49,49,55,46,53,54,51,56,53,56,44,52,56,46,56,51,54,54,55,49,93,44,91,45,49,49,55,46,52,57,57,57,55,53,44,52,56,46,54,53,54,49,56,55,93,44,91,45,49,49,55,46,53,48,50,51,55,49,44,52,56,46,49,51,52,55,48,56,93,44,91,45,49,49,55,46,52,51,54,57,57,51,44,52,56,46,48,52,55,50,48,55,93,44,91,45,49,49,55,46,48,52,49,56,55,55,44,52,56,46,48,52,53,52,54,54,93,44,91,45,49,49,55,46,48,51,50,52,52,49,44,52,56,46,56,52,54,54,54,54,93,44,91,45,49,49,55,46,48,51,50,51,52,53,44,52,56,46,57,57,57,50,48,49,93,44,91,45,49,49,55,46,52,50,57,57,54,56,44,52,57,46,48,48,48,52,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,77,99,76,101,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,48,56,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,57,55,49,49,53,56,44,52,55,46,56,52,56,54,57,54,93,44,91,45,49,48,49,46,56,55,49,56,54,50,44,52,55,46,56,52,55,53,56,57,93,44,91,45,49,48,50,46,51,56,53,54,52,55,44,52,55,46,56,52,55,55,55,50,93,44,91,45,49,48,50,46,51,56,53,55,53,56,44,52,55,46,55,53,56,48,48,56,93,44,91,45,49,48,50,46,50,54,48,57,53,49,44,52,55,46,55,56,49,52,48,57,93,44,91,45,49,48,50,46,50,54,53,52,53,50,44,52,55,46,54,50,52,51,48,55,93,44,91,45,49,48,50,46,50,48,53,51,53,44,52,55,46,53,55,52,53,48,54,93,44,91,45,49,48,50,46,48,51,54,54,52,56,44,52,55,46,53,55,50,55,48,53,93,44,91,45,49,48,49,46,56,57,50,48,49,55,44,52,55,46,53,48,53,49,51,51,93,44,91,45,49,48,49,46,52,51,54,53,50,49,44,52,55,46,53,54,52,49,53,55,93,44,91,45,49,48,49,46,52,52,48,49,51,57,44,52,55,46,52,55,55,50,57,57,93,44,91,45,49,48,49,46,51,52,53,55,51,53,44,52,55,46,50,57,49,56,57,55,93,44,91,45,49,48,49,46,50,53,55,48,51,49,44,52,55,46,50,54,52,56,57,53,93,44,91,45,49,48,49,46,48,54,48,52,50,52,44,52,55,46,50,57,51,50,57,51,93,44,91,45,49,48,48,46,57,54,53,52,52,44,52,55,46,49,53,55,49,51,52,93,44,91,45,49,48,48,46,55,52,57,51,55,44,52,55,46,49,53,55,50,52,53,93,44,91,45,49,48,48,46,55,52,57,51,51,52,44,52,55,46,51,50,55,54,56,53,93,44,91,45,49,48,48,46,54,55,51,50,49,44,52,55,46,51,50,55,54,52,54,93,44,91,45,49,48,48,46,54,55,50,50,54,50,44,52,55,46,54,55,52,49,50,56,93,44,91,45,49,48,48,46,53,56,53,48,54,50,44,52,55,46,54,55,52,48,56,56,93,44,91,45,49,48,48,46,53,56,53,49,55,57,44,52,55,46,56,52,55,55,54,49,93,44,91,45,49,48,48,46,57,55,49,49,53,56,44,52,55,46,56,52,56,54,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,72,111,111,100,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,53,50,51,54,56,49,44,52,53,46,55,50,52,57,51,93,44,91,45,49,50,49,46,56,54,55,48,50,49,44,52,53,46,54,57,51,51,57,49,93,44,91,45,49,50,49,46,57,50,50,48,50,56,44,52,53,46,54,52,57,50,48,53,93,44,91,45,49,50,49,46,57,48,54,54,50,56,44,52,53,46,53,50,49,49,52,55,93,44,91,45,49,50,49,46,56,49,57,53,56,55,44,52,53,46,52,54,49,54,55,53,93,44,91,45,49,50,49,46,55,48,48,52,55,51,44,52,53,46,51,55,56,53,51,49,93,44,91,45,49,50,49,46,54,57,54,52,55,57,44,52,53,46,50,53,55,57,50,93,44,91,45,49,50,49,46,52,56,49,56,56,56,44,52,53,46,50,53,56,49,50,56,93,44,91,45,49,50,49,46,52,56,50,49,54,56,44,52,53,46,53,49,57,54,48,52,93,44,91,45,49,50,49,46,52,52,49,50,50,57,44,52,53,46,54,57,55,50,56,93,44,91,45,49,50,49,46,53,50,51,54,56,49,44,52,53,46,55,50,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,87,114,105,103,104,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,48,52,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,55,49,50,51,56,44,52,50,46,57,48,55,55,54,50,93,44,91,45,57,51,46,57,55,49,55,49,52,44,52,50,46,54,52,52,55,48,55,93,44,91,45,57,51,46,57,55,49,53,56,51,44,52,50,46,53,53,56,49,51,57,93,44,91,45,57,51,46,52,57,57,52,56,53,44,52,50,46,53,53,55,55,93,44,91,45,57,51,46,52,57,56,54,49,55,44,52,50,46,57,48,56,53,49,50,93,44,91,45,57,51,46,57,55,49,50,51,56,44,52,50,46,57,48,55,55,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,49,57,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,52,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,49,53,54,51,44,51,49,46,57,55,57,56,53,54,93,44,91,45,57,52,46,53,49,49,52,51,49,44,51,49,46,57,55,51,57,56,52,93,44,91,45,57,52,46,52,53,50,52,49,54,44,51,49,46,56,52,52,50,56,49,93,44,91,45,57,52,46,51,57,57,48,57,49,44,51,49,46,54,53,51,53,57,54,93,44,91,45,57,52,46,48,57,48,55,49,55,44,51,49,46,54,50,48,54,48,57,93,44,91,45,57,51,46,57,56,52,52,54,49,44,51,49,46,53,54,57,52,49,57,93,44,91,45,57,51,46,56,51,52,57,49,56,44,51,49,46,53,56,54,50,49,50,93,44,91,45,57,51,46,55,57,52,53,52,56,44,51,49,46,55,48,50,48,55,54,93,44,91,45,57,51,46,56,55,57,48,54,49,44,51,49,46,56,52,52,50,56,55,93,44,91,45,57,52,46,48,49,53,54,51,44,51,49,46,57,55,57,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,50,56,48,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,51,52,51,56,52,44,51,56,46,49,53,50,53,57,51,93,44,91,45,57,49,46,53,50,56,55,57,55,44,51,55,46,55,56,56,57,56,57,93,44,91,45,57,49,46,51,48,56,51,49,49,44,51,55,46,55,56,55,49,56,54,93,44,91,45,57,49,46,51,49,48,54,53,53,44,51,55,46,55,48,48,48,52,56,93,44,91,45,57,49,46,49,53,51,51,52,53,44,51,55,46,54,57,55,51,52,93,44,91,45,57,49,46,49,48,48,48,49,55,44,51,55,46,55,52,48,48,49,50,93,44,91,45,57,49,46,48,57,53,55,54,53,44,51,56,46,50,48,52,48,56,51,93,44,91,45,57,49,46,51,54,55,52,56,50,44,51,56,46,50,48,57,55,52,49,93,44,91,45,57,49,46,53,51,52,51,56,52,44,51,56,46,49,53,50,53,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,97,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,51,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,53,54,48,53,54,44,51,55,46,57,53,49,57,53,57,93,44,91,45,55,57,46,57,51,53,51,54,52,44,51,55,46,57,53,52,51,54,53,93,44,91,45,55,57,46,56,56,55,51,50,57,44,51,55,46,56,57,50,57,55,49,93,44,91,45,55,57,46,54,52,55,53,56,57,44,51,55,46,56,55,52,53,51,56,93,44,91,45,55,57,46,52,56,50,54,54,56,44,51,56,46,48,56,54,48,53,52,93,44,91,45,55,57,46,53,49,50,49,53,56,44,51,56,46,49,56,48,52,49,57,93,44,91,45,55,57,46,55,57,53,57,50,49,44,51,56,46,50,54,53,53,53,50,93,44,91,45,55,57,46,56,57,55,51,51,53,44,51,56,46,49,57,51,51,56,49,93,44,91,45,55,57,46,57,53,57,56,52,52,44,51,56,46,48,54,51,54,57,55,93,44,91,45,56,48,46,48,53,54,48,53,54,44,51,55,46,57,53,49,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,79,116,116,101,114,32,84,97,105,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,57,57,50,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,56,48,57,55,55,44,52,54,46,54,51,48,55,54,53,93,44,91,45,57,54,46,50,54,53,51,54,54,44,52,54,46,49,48,56,54,49,93,44,91,45,57,53,46,55,54,57,55,53,44,52,54,46,49,48,55,52,53,93,44,91,45,57,53,46,49,52,53,56,56,44,52,54,46,49,48,54,55,54,49,93,44,91,45,57,53,46,49,53,53,53,55,44,52,54,46,51,54,56,56,56,93,44,91,45,57,53,46,49,54,51,55,49,44,52,54,46,55,49,55,54,52,93,44,91,45,57,54,46,49,55,52,53,56,55,44,52,54,46,55,49,55,56,53,52,93,44,91,45,57,54,46,50,56,48,57,55,55,44,52,54,46,54,51,48,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,80,108,97,113,117,101,109,105,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,51,55,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,48,56,48,53,54,44,50,57,46,56,57,53,53,50,56,93,44,91,45,57,48,46,48,54,55,50,52,50,44,50,57,46,55,51,56,54,54,52,93,44,91,45,56,57,46,57,56,48,56,49,50,44,50,57,46,53,56,48,49,53,53,93,44,91,45,56,57,46,57,55,55,52,55,44,50,57,46,52,52,57,51,55,49,93,44,91,45,56,57,46,57,48,50,50,54,55,44,50,57,46,50,57,50,50,56,52,93,44,91,45,56,57,46,56,57,57,54,54,52,44,50,57,46,49,53,53,48,48,57,93,44,91,45,56,57,46,54,49,48,52,50,55,44,50,57,46,49,57,56,54,51,53,93,44,91,45,56,57,46,53,48,50,51,49,57,44,50,57,46,49,53,56,51,55,54,93,44,91,45,56,57,46,52,54,51,52,50,52,44,50,57,46,48,56,50,56,50,93,44,91,45,56,57,46,52,56,55,54,52,44,50,56,46,56,56,55,51,55,49,93,44,91,45,56,57,46,51,56,52,55,50,55,44,50,56,46,56,55,49,53,48,51,93,44,91,45,56,57,46,50,55,57,54,48,52,44,50,56,46,57,55,55,55,56,51,93,44,91,45,56,57,46,49,51,51,50,56,52,44,50,56,46,57,49,57,55,50,56,93,44,91,45,56,56,46,57,50,55,56,48,57,44,50,57,46,49,49,55,50,55,53,93,44,91,45,56,56,46,57,52,50,48,53,52,44,50,57,46,50,53,51,55,52,50,93,44,91,45,56,57,46,48,54,57,52,50,54,44,50,57,46,50,57,52,50,57,55,93,44,91,45,56,57,46,49,51,55,54,49,50,44,50,57,46,51,56,49,52,50,57,93,44,91,45,56,56,46,56,55,57,50,51,53,44,50,57,46,54,52,55,52,48,57,93,44,91,45,56,57,46,52,56,52,53,57,49,44,50,57,46,54,49,55,53,53,49,93,44,91,45,56,57,46,55,50,49,48,52,53,44,50,57,46,55,53,55,54,53,50,93,44,91,45,56,57,46,56,54,57,55,50,44,50,57,46,55,57,53,52,53,49,93,44,91,45,56,57,46,57,49,48,55,48,56,44,50,57,46,56,54,55,56,54,53,93,44,91,45,57,48,46,48,48,56,48,53,54,44,50,57,46,56,57,53,53,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,80,111,110,116,111,116,111,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,51,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,50,52,57,54,54,44,51,52,46,51,54,52,55,53,57,93,44,91,45,56,57,46,50,52,54,51,51,57,44,51,52,46,51,55,57,51,52,52,93,44,91,45,56,57,46,50,52,53,52,56,53,44,51,52,46,49,54,49,49,56,54,93,44,91,45,56,57,46,49,51,57,49,53,56,44,51,52,46,48,55,52,49,49,54,93,44,91,45,56,56,46,56,50,52,53,50,51,44,51,52,46,48,55,52,57,52,56,93,44,91,45,56,56,46,56,50,52,57,54,54,44,51,52,46,51,54,52,55,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,77,111,114,101,104,111,117,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,57,57,50,44,34,98,101,100,115,34,58,49,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,54,57,49,48,53,44,51,51,46,48,48,56,49,54,51,93,44,91,45,57,50,46,48,54,53,49,55,57,44,51,50,46,55,50,51,48,48,51,93,44,91,45,57,49,46,57,55,53,48,50,54,44,51,50,46,55,49,49,52,50,56,93,44,91,45,57,49,46,57,49,51,48,53,55,44,51,50,46,53,48,53,57,48,50,93,44,91,45,57,49,46,55,51,57,54,53,49,44,51,50,46,53,54,49,50,57,57,93,44,91,45,57,49,46,54,51,55,53,56,55,44,51,50,46,54,54,55,51,52,49,93,44,91,45,57,49,46,53,54,54,51,54,51,44,51,50,46,56,53,53,53,54,49,93,44,91,45,57,49,46,52,51,53,55,56,50,44,51,51,46,48,48,54,48,57,57,93,44,91,45,57,49,46,52,54,48,52,44,51,51,46,48,48,53,57,49,53,93,44,91,45,57,50,46,48,54,57,49,48,53,44,51,51,46,48,48,56,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,66,117,108,108,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,52,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,50,56,56,51,44,51,56,46,49,49,56,51,56,51,93,44,91,45,56,53,46,53,53,55,50,55,44,51,56,46,48,55,51,56,52,49,93,44,91,45,56,53,46,55,49,50,53,55,56,44,51,56,46,48,56,55,51,49,49,93,44,91,45,56,53,46,57,51,56,51,50,49,44,51,55,46,57,57,56,55,53,54,93,44,91,45,56,53,46,55,51,55,55,55,55,44,51,55,46,56,49,49,55,57,93,44,91,45,56,53,46,54,52,51,50,53,52,44,51,55,46,56,51,52,48,51,51,93,44,91,45,56,53,46,52,56,57,50,48,50,44,51,55,46,57,57,48,54,53,52,93,44,91,45,56,53,46,52,50,56,56,51,44,51,56,46,49,49,56,51,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,50,57,44,34,98,101,100,115,34,58,49,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,49,55,55,54,50,44,51,50,46,55,50,57,53,51,50,93,44,91,45,56,55,46,49,49,50,51,54,50,44,51,50,46,52,56,56,54,53,93,44,91,45,56,55,46,52,50,51,49,53,51,44,51,50,46,52,56,50,57,54,53,93,44,91,45,56,55,46,52,55,51,48,56,44,51,50,46,51,48,55,54,49,52,93,44,91,45,56,55,46,52,55,50,50,48,54,44,51,50,46,50,54,52,57,49,57,93,44,91,45,56,55,46,51,50,53,54,52,52,44,51,50,46,49,57,54,50,55,50,93,44,91,45,56,55,46,49,55,55,56,54,44,51,50,46,48,52,55,53,49,52,93,44,91,45,56,54,46,57,48,54,57,53,54,44,51,50,46,48,52,55,57,55,93,44,91,45,56,54,46,57,48,56,51,48,50,44,51,50,46,50,50,53,48,50,56,93,44,91,45,56,54,46,56,49,52,57,49,50,44,51,50,46,51,52,48,56,48,51,93,44,91,45,56,54,46,57,48,54,55,52,50,44,51,50,46,53,51,54,57,55,55,93,44,91,45,56,54,46,57,49,55,53,57,53,44,51,50,46,54,54,52,49,54,57,93,44,91,45,56,55,46,48,49,55,55,54,50,44,51,50,46,55,50,57,53,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,67,111,109,97,110,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,53,49,49,53,56,44,51,50,46,50,54,49,52,51,54,93,44,91,45,57,56,46,57,50,52,52,48,49,44,51,50,46,48,55,56,48,49,56,93,44,91,45,57,56,46,54,54,56,52,52,49,44,51,49,46,55,48,48,53,49,52,93,44,91,45,57,56,46,52,57,50,56,48,50,44,51,49,46,55,50,51,54,48,56,93,44,91,45,57,56,46,52,54,51,55,51,54,44,51,49,46,54,56,51,57,56,57,93,44,91,45,57,56,46,49,53,54,53,54,56,44,51,49,46,56,52,49,55,49,51,93,44,91,45,57,56,46,50,48,56,51,56,54,44,51,49,46,57,49,55,53,49,49,93,44,91,45,57,56,46,51,50,55,52,57,57,44,51,49,46,57,52,49,50,54,49,93,44,91,45,57,56,46,53,53,49,49,53,56,44,51,50,46,50,54,49,52,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,51,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,55,50,55,48,52,53,44,52,57,46,48,48,48,53,48,56,93,44,91,45,49,49,54,46,48,52,57,48,56,54,44,52,57,46,48,48,48,56,52,54,93,44,91,45,49,49,54,46,48,52,57,48,53,56,44,52,56,46,53,48,50,48,54,50,93,44,91,45,49,49,54,46,48,52,56,54,54,57,44,52,56,46,50,49,54,49,50,56,93,44,91,45,49,49,54,46,48,48,57,50,51,55,44,52,56,46,49,53,57,54,54,57,93,44,91,45,49,49,53,46,54,57,56,55,54,52,44,52,56,46,50,51,56,52,57,56,93,44,91,45,49,49,53,46,54,51,55,48,51,54,44,52,56,46,48,55,52,54,52,54,93,44,91,45,49,49,53,46,53,50,52,54,57,53,44,52,55,46,57,48,56,53,57,52,93,44,91,45,49,49,53,46,49,56,53,49,57,54,44,52,55,46,57,49,57,48,48,52,93,44,91,45,49,49,53,46,49,53,52,53,50,55,44,52,56,46,48,49,55,54,57,50,93,44,91,45,49,49,53,46,48,49,48,54,55,50,44,52,56,46,48,49,55,54,50,49,93,44,91,45,49,49,53,46,48,50,48,48,55,57,44,52,56,46,50,50,53,57,53,52,93,44,91,45,49,49,52,46,56,52,56,48,57,56,44,52,56,46,50,50,54,49,50,53,93,44,91,45,49,49,52,46,56,52,57,56,48,51,44,52,56,46,53,55,51,53,48,50,93,44,91,45,49,49,52,46,56,56,56,53,57,44,52,56,46,54,53,56,55,54,53,93,44,91,45,49,49,52,46,54,57,50,52,53,44,52,56,46,54,56,48,49,51,54,93,44,91,45,49,49,52,46,54,52,56,49,51,52,44,52,56,46,55,55,57,51,51,50,93,44,91,45,49,49,52,46,55,50,55,48,52,53,44,52,57,46,48,48,48,53,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,83,97,110,32,76,111,114,101,110,122,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,55,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,57,55,54,53,44,49,56,46,50,48,54,57,57,50,93,44,91,45,54,54,46,48,53,50,53,53,53,44,49,56,46,49,49,51,48,54,57,93,44,91,45,54,54,46,48,53,49,55,56,56,44,49,56,46,49,48,57,56,55,56,93,44,91,45,54,54,46,48,49,48,50,52,53,44,49,56,46,48,55,53,53,54,53,93,44,91,45,54,53,46,57,50,54,50,50,55,44,49,56,46,49,49,57,57,54,51,93,44,91,45,54,53,46,57,50,56,51,52,49,44,49,56,46,49,52,50,56,52,53,93,44,91,45,54,53,46,57,53,49,48,49,57,44,49,56,46,50,50,57,50,57,50,93,44,91,45,54,53,46,57,57,55,54,53,44,49,56,46,50,48,54,57,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,84,111,97,32,65,108,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,52,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,49,56,55,54,52,44,49,56,46,51,54,55,52,49,49,93,44,91,45,54,54,46,50,55,56,48,55,54,44,49,56,46,51,50,57,57,55,53,93,44,91,45,54,54,46,50,48,52,55,51,52,44,49,56,46,51,49,54,48,51,53,93,44,91,45,54,54,46,49,57,54,57,56,44,49,56,46,51,56,57,50,56,57,93,44,91,45,54,54,46,50,53,50,53,53,52,44,49,56,46,51,57,52,49,56,55,93,44,91,45,54,54,46,51,48,51,54,54,51,44,49,56,46,51,56,52,48,55,55,93,44,91,45,54,54,46,51,49,56,55,54,52,44,49,56,46,51,54,55,52,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,50,50,44,34,98,101,100,115,34,58,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,55,48,50,49,52,44,52,55,46,52,49,48,49,53,49,93,44,91,45,57,52,46,54,53,57,57,52,50,44,52,54,46,56,48,51,55,49,54,93,44,91,45,57,52,46,55,56,55,49,50,54,44,52,54,46,56,48,51,57,52,51,93,44,91,45,57,52,46,55,55,57,49,50,49,44,52,54,46,51,57,52,50,49,53,93,44,91,45,57,52,46,55,51,49,52,52,50,44,52,54,46,51,54,56,54,48,53,93,44,91,45,57,52,46,54,53,51,52,54,50,44,52,54,46,51,52,56,54,55,56,93,44,91,45,57,52,46,51,52,49,54,55,57,44,52,54,46,50,55,55,55,48,53,93,44,91,45,57,52,46,51,50,55,50,56,54,44,52,54,46,50,56,57,56,49,55,93,44,91,45,57,52,46,51,52,50,57,49,44,52,54,46,56,48,53,53,50,57,93,44,91,45,57,51,46,55,55,54,48,50,52,44,52,54,46,56,48,50,56,57,49,93,44,91,45,57,51,46,55,55,53,50,53,55,44,52,55,46,48,51,48,52,49,56,93,44,91,45,57,51,46,55,55,54,48,55,52,44,52,55,46,50,55,55,57,56,54,93,44,91,45,57,52,46,48,50,53,57,56,49,44,52,55,46,51,53,49,51,56,56,93,44,91,45,57,52,46,49,49,55,57,57,57,44,52,55,46,52,56,48,55,52,52,93,44,91,45,57,52,46,51,50,55,53,51,49,44,52,55,46,52,49,53,56,52,52,93,44,91,45,57,52,46,52,49,54,50,55,57,44,52,55,46,52,52,52,56,50,56,93,44,91,45,57,52,46,54,55,48,50,49,52,44,52,55,46,52,49,48,49,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,114,99,104,117,108,101,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,48,56,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,52,50,49,50,50,51,44,51,55,46,48,48,48,50,50,51,93,44,91,45,49,48,54,46,52,55,54,48,57,44,51,54,46,57,57,51,53,52,56,93,44,91,45,49,48,54,46,54,55,56,51,53,52,44,51,55,46,50,50,56,53,54,54,93,44,91,45,49,48,54,46,54,55,56,51,55,51,44,51,55,46,52,48,51,53,57,54,93,44,91,45,49,48,54,46,55,49,48,55,55,53,44,51,55,46,52,48,52,50,50,56,93,44,91,45,49,48,55,46,49,50,56,55,51,55,44,51,55,46,51,57,50,52,48,57,93,44,91,45,49,48,55,46,49,50,56,54,56,44,51,55,46,52,50,50,57,52,50,93,44,91,45,49,48,55,46,52,56,50,49,51,49,44,51,55,46,52,50,50,54,55,51,93,44,91,45,49,48,55,46,52,56,49,55,51,55,44,51,55,46,48,48,48,49,50,55,93,44,91,45,49,48,55,46,52,50,49,50,50,51,44,51,55,46,48,48,48,50,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,89,97,122,111,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,44,91,45,57,48,46,51,54,52,48,51,49,44,51,51,46,48,49,48,53,57,54,93,44,91,45,57,48,46,52,52,57,56,57,51,44,51,50,46,57,50,51,50,57,93,44,91,45,57,48,46,54,53,54,54,51,50,44,51,50,46,57,50,50,53,49,93,44,91,45,57,48,46,55,53,57,55,53,51,44,51,50,46,56,51,53,55,54,51,93,44,91,45,57,48,46,54,57,51,48,54,49,44,51,50,46,55,53,52,50,57,55,93,44,91,45,57,48,46,55,50,51,49,53,57,44,51,50,46,54,54,50,49,50,56,93,44,91,45,57,48,46,55,50,48,49,48,50,44,51,50,46,54,49,56,56,53,56,93,44,91,45,57,48,46,53,53,51,56,50,49,44,51,50,46,53,48,55,53,55,52,93,44,91,45,57,48,46,52,53,48,48,51,55,44,51,50,46,53,55,51,55,56,51,93,44,91,45,57,48,46,48,52,57,49,50,57,44,51,50,46,55,51,53,54,55,52,93,44,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,79,117,116,97,103,97,109,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,55,53,52,44,34,98,101,100,115,34,58,53,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,48,54,48,56,51,44,52,52,46,53,57,48,53,49,53,93,44,91,45,56,56,46,55,51,54,56,48,50,44,52,52,46,53,57,48,54,48,53,93,44,91,45,56,56,46,55,51,57,55,55,44,52,52,46,50,52,51,51,48,51,93,44,91,45,56,56,46,52,48,52,48,55,44,52,52,46,50,52,52,49,48,50,93,44,91,45,56,56,46,49,57,50,54,49,49,44,52,52,46,50,52,49,57,52,55,93,44,91,45,56,56,46,49,57,48,52,54,53,44,52,52,46,53,56,54,55,57,57,93,44,91,45,56,56,46,50,52,53,50,48,52,44,52,52,46,53,56,52,55,52,54,93,44,91,45,56,56,46,54,48,54,48,56,51,44,52,52,46,53,57,48,53,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,56,57,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,49,48,52,56,50,51,44,51,57,46,49,52,51,53,48,55,93,44,91,45,57,52,46,49,49,52,49,55,53,44,51,56,46,57,49,55,51,48,52,93,44,91,45,57,51,46,56,51,52,55,49,57,44,51,56,46,57,51,55,57,48,57,93,44,91,45,57,51,46,52,57,55,50,55,56,44,51,56,46,57,50,56,52,51,93,44,91,45,57,51,46,52,57,54,51,55,55,44,51,56,46,57,52,50,56,51,55,93,44,91,45,57,51,46,52,55,55,50,51,51,44,51,57,46,50,57,50,55,57,54,93,44,91,45,57,51,46,52,56,55,56,56,53,44,51,57,46,50,50,56,56,55,53,93,44,91,45,57,51,46,54,53,48,53,50,54,44,51,57,46,50,52,56,50,49,52,93,44,91,45,57,51,46,55,53,56,52,54,51,44,51,57,46,50,48,55,48,50,49,93,44,91,45,57,52,46,48,50,56,56,50,50,44,51,57,46,49,57,49,53,57,53,93,44,91,45,57,52,46,49,48,52,56,50,51,44,51,57,46,49,52,51,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,87,105,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,51,51,54,44,34,98,101,100,115,34,58,50,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,50,56,52,52,52,44,51,53,46,56,54,55,50,48,56,93,44,91,45,55,56,46,49,57,50,49,49,55,44,51,53,46,55,51,48,53,52,53,93,44,91,45,55,56,46,49,50,53,53,51,57,44,51,53,46,54,48,51,49,48,55,93,44,91,45,55,56,46,48,54,52,55,56,52,44,51,53,46,53,56,53,50,54,51,93,44,91,45,55,55,46,56,50,50,53,49,49,44,51,53,46,53,56,53,51,56,51,93,44,91,45,55,55,46,55,48,48,54,57,50,44,51,53,46,54,53,50,50,57,53,93,44,91,45,55,55,46,54,54,53,49,51,49,44,51,53,46,54,55,52,57,51,53,93,44,91,45,55,55,46,55,53,49,51,51,57,44,51,53,46,56,50,55,55,57,52,93,44,91,45,55,55,46,56,50,56,52,52,52,44,51,53,46,56,54,55,50,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,111,114,114,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,57,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,50,55,49,54,52,44,52,48,46,55,49,49,50,48,51,93,44,91,45,56,50,46,56,53,56,51,48,50,44,52,48,46,55,48,53,48,49,57,93,44,91,45,56,50,46,57,53,55,56,49,55,44,52,48,46,54,52,53,49,52,56,93,44,91,45,56,50,46,57,53,56,52,48,49,44,52,48,46,52,57,48,54,54,52,93,44,91,45,56,51,46,48,50,48,55,57,56,44,52,48,46,52,51,51,55,57,53,93,44,91,45,56,50,46,57,50,57,53,56,56,44,52,48,46,51,53,56,49,50,51,93,44,91,45,56,50,46,55,52,52,57,51,49,44,52,48,46,51,52,57,54,48,51,93,44,91,45,56,50,46,54,52,54,53,48,51,44,52,48,46,51,52,53,48,55,54,93,44,91,45,56,50,46,54,50,51,54,48,57,44,52,48,46,53,52,57,56,55,57,93,44,91,45,56,50,46,54,50,55,55,54,55,44,52,48,46,55,48,57,51,53,50,93,44,91,45,56,50,46,55,50,55,49,54,52,44,52,48,46,55,49,49,50,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,71,114,97,110,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,56,50,55,55,52,51,44,52,54,46,54,54,48,56,57,54,93,44,91,45,49,49,51,46,56,55,52,54,53,49,44,52,54,46,53,48,56,51,50,57,93,44,91,45,49,49,51,46,55,56,50,48,51,50,44,52,54,46,51,53,57,53,49,56,93,44,91,45,49,49,51,46,55,53,51,50,52,54,44,52,54,46,49,49,50,56,93,44,91,45,49,49,51,46,54,52,56,51,53,56,44,52,53,46,57,54,53,48,51,56,93,44,91,45,49,49,51,46,53,49,55,52,48,57,44,52,53,46,57,52,48,48,56,57,93,44,91,45,49,49,51,46,50,55,56,48,49,50,44,52,54,46,48,52,53,50,54,56,93,44,91,45,49,49,51,46,50,56,52,53,51,50,44,52,54,46,50,50,50,55,56,51,93,44,91,45,49,49,51,46,48,51,54,56,50,53,44,52,54,46,50,54,54,56,50,54,93,44,91,45,49,49,51,46,48,51,56,55,48,50,44,52,54,46,55,51,53,53,52,93,44,91,45,49,49,51,46,49,49,53,54,49,52,44,52,54,46,55,49,51,51,56,55,93,44,91,45,49,49,51,46,51,48,50,57,48,51,44,52,54,46,56,51,50,49,53,57,93,44,91,45,49,49,51,46,52,49,54,53,57,57,44,52,54,46,56,51,50,49,49,51,93,44,91,45,49,49,51,46,52,55,57,56,53,54,44,52,54,46,55,52,52,55,49,52,93,44,91,45,49,49,51,46,56,50,55,55,52,51,44,52,54,46,54,54,48,56,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,70,111,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,48,48,48,56,53,44,52,55,46,53,56,55,50,50,56,93,44,91,45,57,57,46,50,54,53,55,57,56,44,52,55,46,53,56,55,54,93,44,91,45,57,57,46,50,54,54,50,49,53,44,52,55,46,51,50,54,57,57,57,93,44,91,45,57,56,46,52,57,57,50,52,54,44,52,55,46,51,50,54,53,51,56,93,44,91,45,57,56,46,53,48,48,48,56,53,44,52,55,46,53,56,55,50,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,52,55,50,44,34,98,101,100,115,34,58,49,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,55,50,54,52,55,44,51,53,46,54,51,56,53,53,54,93,44,91,45,57,52,46,52,51,49,48,52,53,44,51,53,46,51,57,51,55,51,53,93,44,91,45,57,52,46,50,56,57,51,51,50,44,51,53,46,51,52,53,50,49,49,93,44,91,45,57,52,46,48,55,52,56,57,53,44,51,53,46,52,52,53,52,48,51,93,44,91,45,57,52,46,48,50,56,57,57,55,44,51,53,46,53,48,56,48,51,53,93,44,91,45,57,52,46,48,55,51,57,53,56,44,51,53,46,54,54,50,52,54,51,93,44,91,45,57,51,46,57,56,52,50,48,52,44,51,53,46,54,54,48,55,56,51,93,44,91,45,57,51,46,57,49,48,56,51,54,44,51,53,46,55,53,57,55,53,50,93,44,91,45,57,51,46,57,54,50,56,57,50,44,51,53,46,55,54,48,57,51,93,44,91,45,57,52,46,52,57,51,49,51,44,51,53,46,55,53,57,49,54,55,93,44,91,45,57,52,46,52,55,50,54,52,55,44,51,53,46,54,51,56,53,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,66,117,114,110,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,53,48,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,52,53,55,56,50,44,51,48,46,57,50,49,52,51,57,93,44,91,45,57,56,46,51,57,51,54,52,54,44,51,48,46,56,52,50,57,54,93,44,91,45,57,56,46,52,49,56,53,57,52,44,51,48,46,54,52,53,57,50,54,93,44,91,45,57,56,46,51,53,49,48,52,49,44,51,48,46,52,56,54,48,57,54,93,44,91,45,57,56,46,49,50,53,53,53,54,44,51,48,46,52,50,54,49,56,54,93,44,91,45,57,56,46,48,52,57,56,56,54,44,51,48,46,54,50,52,49,53,53,93,44,91,45,57,55,46,57,54,50,56,54,44,51,48,46,55,56,53,54,52,49,93,44,91,45,57,55,46,56,50,56,53,49,50,44,51,48,46,57,48,54,49,56,56,93,44,91,45,57,55,46,57,49,49,54,56,52,44,51,49,46,48,51,52,57,49,57,93,44,91,45,57,56,46,52,51,57,54,56,55,44,51,49,46,48,50,57,53,51,55,93,44,91,45,57,56,46,52,52,53,55,56,50,44,51,48,46,57,50,49,52,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,54,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,54,34,44,34,78,65,77,69,34,58,34,83,116,101,46,32,71,101,110,101,118,105,101,118,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,55,49,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,49,54,48,50,50,44,51,56,46,48,52,50,51,49,53,93,44,91,45,57,48,46,51,50,50,56,55,44,51,55,46,57,56,49,55,51,49,93,44,91,45,57,48,46,52,53,57,49,51,51,44,51,55,46,56,55,56,57,50,52,93,44,91,45,57,48,46,50,48,48,50,48,56,44,51,55,46,54,54,57,54,50,56,93,44,91,45,57,48,46,49,49,48,53,51,55,44,51,55,46,54,55,49,51,52,93,44,91,45,56,57,46,57,51,56,54,48,56,44,51,55,46,56,55,52,51,48,52,93,44,91,45,56,57,46,57,56,56,49,48,56,44,51,55,46,57,54,49,55,52,57,93,44,91,45,57,48,46,50,48,53,50,48,53,44,51,56,46,48,56,54,57,48,55,93,44,91,45,57,48,46,50,53,50,54,54,54,44,51,56,46,49,50,55,56,49,50,93,44,91,45,57,48,46,52,49,54,48,50,50,44,51,56,46,48,52,50,51,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,71,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,56,53,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,56,54,50,56,49,44,51,53,46,49,56,50,49,52,93,44,91,45,49,48,48,46,53,51,56,57,55,56,44,51,53,46,49,56,51,49,52,52,93,44,91,45,49,48,48,46,53,52,48,49,53,56,44,51,53,46,54,49,57,50,57,54,93,44,91,45,49,48,49,46,48,56,53,57,51,53,44,51,53,46,54,49,57,49,48,50,93,44,91,45,49,48,49,46,48,56,54,50,56,49,44,51,53,46,49,56,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,77,99,68,111,110,111,117,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,55,53,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,48,52,50,49,54,44,52,48,46,54,51,57,50,48,49,93,44,91,45,57,48,46,57,48,57,55,53,54,44,52,48,46,50,56,52,51,57,52,93,44,91,45,57,48,46,52,53,48,50,50,55,44,52,48,46,50,55,54,51,51,53,93,44,91,45,57,48,46,52,52,53,54,50,55,44,52,48,46,54,50,55,54,51,56,93,44,91,45,57,48,46,55,56,57,54,53,50,44,52,48,46,54,51,53,55,53,93,44,91,45,57,48,46,57,48,52,50,49,54,44,52,48,46,54,51,57,50,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,53,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,56,52,51,52,57,44,52,49,46,49,54,48,48,49,49,93,44,91,45,57,53,46,51,56,52,57,54,52,44,52,48,46,57,48,49,53,53,93,44,91,45,57,52,46,57,50,56,52,53,57,44,52,48,46,57,48,48,54,53,51,93,44,91,45,57,52,46,57,50,55,53,56,55,44,52,49,46,49,53,56,53,48,56,93,44,91,45,57,53,46,49,53,53,56,53,49,44,52,49,46,49,53,57,50,51,54,93,44,91,45,57,53,46,51,56,52,51,52,57,44,52,49,46,49,54,48,48,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,50,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,57,56,53,53,54,44,51,53,46,56,57,48,48,50,52,93,44,91,45,57,49,46,51,53,54,50,52,54,44,51,53,46,55,48,49,49,48,55,93,44,91,45,57,49,46,51,54,57,53,55,44,51,53,46,53,50,54,51,54,50,93,44,91,45,57,49,46,53,56,49,56,56,44,51,53,46,53,51,48,52,52,55,93,44,91,45,57,49,46,53,56,52,54,56,55,44,51,53,46,52,52,50,51,49,49,93,44,91,45,57,49,46,51,52,55,50,53,55,44,51,53,46,52,51,57,49,48,54,93,44,91,45,57,49,46,50,53,49,53,53,53,44,51,53,46,51,53,55,53,54,49,93,44,91,45,57,49,46,48,51,57,55,56,51,44,51,53,46,51,53,52,50,53,54,93,44,91,45,57,49,46,48,51,57,50,51,44,51,53,46,52,52,52,55,49,55,93,44,91,45,57,49,46,48,51,54,57,54,55,44,51,53,46,55,48,56,52,49,56,93,44,91,45,57,49,46,48,51,50,52,57,57,44,51,53,46,56,56,53,48,55,93,44,91,45,57,49,46,49,57,56,53,53,54,44,51,53,46,56,57,48,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,57,34,44,34,78,65,77,69,34,58,34,72,117,100,115,112,101,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,57,57,56,48,49,50,44,51,50,46,48,48,50,51,55,55,93,44,91,45,49,48,53,46,57,57,55,49,53,50,44,51,49,46,51,56,55,50,51,93,44,91,45,49,48,53,46,56,54,57,50,57,52,44,51,49,46,50,56,56,57,53,53,93,44,91,45,49,48,53,46,55,55,52,48,50,56,44,51,49,46,49,54,56,52,55,52,93,44,91,45,49,48,53,46,54,52,56,56,51,57,44,51,49,46,49,49,53,56,55,55,93,44,91,45,49,48,53,46,53,53,55,50,50,54,44,51,48,46,57,56,57,54,55,51,93,44,91,45,49,48,53,46,51,56,54,55,50,52,44,51,48,46,56,53,51,51,48,54,93,44,91,45,49,48,53,46,50,49,55,55,56,51,44,51,48,46,56,48,53,57,52,54,93,44,91,45,49,48,52,46,57,55,57,56,48,49,44,51,48,46,54,50,57,50,53,56,93,44,91,45,49,48,52,46,57,49,55,49,54,51,44,51,48,46,54,54,51,54,50,54,93,44,91,45,49,48,52,46,57,48,57,49,50,52,44,51,49,46,50,52,54,54,48,57,93,44,91,45,49,48,52,46,57,49,56,51,53,55,44,51,50,46,48,48,48,52,49,56,93,44,91,45,49,48,53,46,57,57,56,48,49,50,44,51,50,46,48,48,50,51,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,82,97,112,105,100,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,53,52,54,44,34,98,101,100,115,34,58,49,49,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,57,54,49,51,49,44,51,49,46,52,55,55,56,55,55,93,44,91,45,57,50,46,54,51,49,57,52,52,44,51,49,46,51,57,48,52,55,56,93,44,91,45,57,50,46,55,49,56,57,56,51,44,51,49,46,53,49,55,53,57,52,93,44,91,45,57,50,46,57,49,51,48,49,57,44,51,49,46,51,54,56,50,51,54,93,44,91,45,57,50,46,57,56,49,52,54,52,44,51,49,46,51,52,54,54,52,52,93,44,91,45,57,50,46,56,50,57,54,53,49,44,51,49,46,50,53,50,50,56,49,93,44,91,45,57,50,46,56,50,51,57,51,50,44,51,48,46,56,57,93,44,91,45,57,50,46,53,57,55,55,52,49,44,51,48,46,56,57,54,49,48,49,93,44,91,45,57,50,46,53,50,52,54,52,54,44,51,48,46,56,57,51,51,50,56,93,44,91,45,57,50,46,51,56,48,56,52,51,44,51,49,46,48,48,48,57,50,57,93,44,91,45,57,50,46,50,56,48,55,51,56,44,51,48,46,57,54,53,48,55,49,93,44,91,45,57,50,46,50,48,56,55,56,53,44,51,48,46,57,54,52,55,51,52,93,44,91,45,57,50,46,50,51,51,50,51,44,51,49,46,51,50,49,53,52,53,93,44,91,45,57,50,46,48,56,54,55,49,56,44,51,49,46,51,51,53,51,55,52,93,44,91,45,57,50,46,49,57,54,49,51,49,44,51,49,46,52,55,55,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,52,51,51,44,34,98,101,100,115,34,58,49,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,52,57,57,55,53,44,52,49,46,48,48,51,57,53,93,44,91,45,49,48,49,46,50,52,55,57,54,51,44,52,48,46,54,57,55,56,48,50,93,44,91,45,49,48,48,46,55,55,55,56,51,51,44,52,48,46,55,48,48,49,51,53,93,44,91,45,49,48,48,46,50,50,51,51,49,49,44,52,48,46,55,48,48,50,53,52,93,44,91,45,49,48,48,46,50,50,52,50,51,53,44,52,49,46,48,52,54,53,57,55,93,44,91,45,49,48,48,46,50,53,49,48,57,56,44,52,49,46,51,57,51,50,57,56,93,44,91,45,49,48,48,46,55,49,51,50,52,51,44,52,49,46,51,57,51,53,49,49,93,44,91,45,49,48,49,46,50,54,57,54,57,53,44,52,49,46,51,57,52,57,51,52,93,44,91,45,49,48,49,46,50,55,48,51,56,49,44,52,49,46,48,52,55,51,57,50,93,44,91,45,49,48,49,46,50,52,57,57,55,53,44,52,49,46,48,48,51,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,53,50,50,54,44,51,51,46,50,54,56,56,54,49,93,44,91,45,57,52,46,54,53,51,57,57,52,44,51,50,46,56,55,57,53,48,54,93,44,91,45,57,52,46,48,52,51,48,55,56,44,51,50,46,56,56,49,48,56,57,93,44,91,45,57,52,46,48,52,50,57,54,52,44,51,51,46,48,49,57,50,49,57,93,44,91,45,57,52,46,48,52,50,57,56,55,44,51,51,46,50,55,49,50,52,50,93,44,91,45,57,52,46,50,49,56,55,55,55,44,51,51,46,50,57,54,52,48,50,93,44,91,45,57,52,46,50,51,49,51,51,51,44,51,51,46,50,52,49,48,55,51,93,44,91,45,57,52,46,52,54,56,52,52,50,44,51,51,46,50,57,52,51,49,51,93,44,91,45,57,52,46,54,53,50,50,54,44,51,51,46,50,54,56,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,55,57,44,34,98,101,100,115,34,58,49,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,49,54,52,48,51,44,51,54,46,53,48,49,53,56,51,93,44,91,45,56,56,46,53,51,48,51,50,50,44,51,54,46,49,53,50,48,50,51,93,44,91,45,56,56,46,50,49,50,53,53,57,44,51,54,46,49,50,48,50,57,93,44,91,45,56,55,46,57,57,48,57,50,44,51,54,46,51,54,48,49,51,51,93,44,91,45,56,56,46,48,53,51,50,57,51,44,51,54,46,52,57,55,48,53,56,93,44,91,45,56,56,46,52,56,57,48,55,53,44,51,54,46,53,48,49,49,53,55,93,44,91,45,56,56,46,53,49,54,52,48,51,44,51,54,46,53,48,49,53,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,56,52,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,56,52,48,34,44,34,78,65,77,69,34,58,34,87,105,110,99,104,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,55,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,48,48,52,57,55,44,51,57,46,49,56,48,49,54,51,93,44,91,45,55,56,46,49,55,49,54,50,44,51,57,46,49,52,51,49,55,52,93,44,91,45,55,56,46,49,52,56,56,57,53,44,51,57,46,49,55,53,51,53,50,93,44,91,45,55,56,46,50,48,48,52,57,55,44,51,57,46,49,56,48,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,68,117,112,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,48,54,50,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,54,51,52,50,44,51,53,46,49,56,57,55,49,54,93,44,91,45,55,56,46,49,52,55,49,50,57,44,51,52,46,57,48,50,53,48,54,93,44,91,45,55,56,46,49,57,56,54,52,50,44,51,52,46,55,52,49,54,51,55,93,44,91,45,55,56,46,49,49,52,48,48,55,44,51,52,46,55,50,49,55,57,53,93,44,91,45,55,55,46,54,56,48,49,50,55,44,51,52,46,55,50,48,53,57,53,93,44,91,45,55,55,46,54,53,49,48,52,53,44,51,52,46,57,50,51,51,52,49,93,44,91,45,55,55,46,54,55,52,56,48,53,44,51,52,46,57,55,51,57,93,44,91,45,55,55,46,55,51,49,48,50,54,44,51,53,46,48,48,56,49,51,56,93,44,91,45,55,55,46,55,54,57,49,55,55,44,51,53,46,49,52,53,53,55,54,93,44,91,45,55,55,46,56,51,52,50,52,57,44,51,53,46,49,55,55,56,52,54,93,44,91,45,55,56,46,49,54,51,52,50,44,51,53,46,49,56,57,55,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,72,97,121,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,52,51,51,44,34,98,101,100,115,34,58,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,53,52,50,53,55,44,51,53,46,54,57,53,53,57,51,93,44,91,45,56,51,46,49,56,50,57,57,57,44,51,53,46,54,55,48,54,50,53,93,44,91,45,56,51,46,49,56,54,51,50,50,44,51,53,46,53,49,52,51,54,56,93,44,91,45,56,50,46,57,50,48,56,56,49,44,51,53,46,50,57,50,48,51,55,93,44,91,45,56,50,46,56,51,50,50,52,52,44,51,53,46,51,49,56,51,50,52,93,44,91,45,56,50,46,55,52,53,49,51,57,44,51,53,46,52,50,50,57,54,55,93,44,91,45,56,50,46,55,54,53,56,57,51,44,51,53,46,53,54,55,52,57,53,93,44,91,45,56,50,46,56,56,51,57,48,57,44,51,53,46,54,55,56,50,51,53,93,44,91,45,56,50,46,57,54,49,55,53,52,44,51,53,46,55,57,48,57,53,57,93,44,91,45,56,51,46,48,55,51,57,49,56,44,51,53,46,55,57,48,48,53,53,93,44,91,45,56,51,46,50,53,53,51,52,51,44,51,53,46,55,49,53,48,56,52,93,44,91,45,56,51,46,50,53,52,50,53,55,44,51,53,46,54,57,53,53,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,56,50,48,49,44,34,98,101,100,115,34,58,50,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,50,57,54,49,53,44,52,52,46,55,57,49,48,56,54,93,44,91,45,57,51,46,50,56,49,53,50,49,44,52,52,46,53,52,51,57,53,55,93,44,91,45,57,51,46,50,56,49,54,56,54,44,52,52,46,52,55,49,57,57,56,93,44,91,45,57,51,46,48,51,57,52,56,53,44,52,52,46,52,55,49,56,55,49,93,44,91,45,57,50,46,57,49,56,57,55,55,44,52,52,46,53,52,51,50,53,93,44,91,45,57,50,46,55,57,50,55,49,53,44,52,52,46,53,52,51,50,52,93,44,91,45,57,50,46,55,51,50,48,52,51,44,52,52,46,55,49,52,51,52,53,93,44,91,45,57,50,46,56,48,50,48,49,55,44,52,52,46,55,52,53,54,55,51,93,44,91,45,57,51,46,48,48,53,57,55,56,44,52,52,46,55,55,49,54,56,53,93,44,91,45,57,51,46,48,50,48,48,52,52,44,52,52,46,56,57,48,55,53,93,44,91,45,57,51,46,49,55,56,53,51,57,44,52,52,46,56,56,56,51,51,56,93,44,91,45,57,51,46,51,50,57,54,49,53,44,52,52,46,55,57,49,48,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,72,97,114,110,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,56,57,54,53,56,49,44,52,51,46,54,49,49,49,54,52,93,44,91,45,49,49,57,46,56,57,54,57,54,57,44,52,51,46,49,55,57,48,49,55,93,44,91,45,49,49,57,46,57,51,50,54,49,49,44,52,51,46,49,55,56,57,54,51,93,44,91,45,49,49,57,46,57,52,51,55,55,57,44,52,50,46,55,52,54,51,55,49,93,44,91,45,49,49,57,46,51,54,53,51,51,55,44,52,50,46,55,52,56,57,53,56,93,44,91,45,49,49,57,46,51,54,48,49,50,50,44,52,49,46,57,57,52,50,55,56,93,44,91,45,49,49,57,46,51,50,52,49,56,52,44,52,49,46,57,57,51,57,50,51,93,44,91,45,49,49,56,46,49,57,55,51,55,49,44,52,49,46,57,57,55,51,52,52,93,44,91,45,49,49,56,46,50,49,52,54,57,56,44,52,50,46,50,55,53,56,57,49,93,44,91,45,49,49,56,46,50,50,56,55,57,51,44,52,50,46,57,49,52,54,50,53,93,44,91,45,49,49,56,46,50,50,55,54,52,53,44,52,52,46,48,51,57,56,54,50,93,44,91,45,49,49,56,46,56,49,54,56,57,44,52,52,46,48,52,55,56,50,56,93,44,91,45,49,49,56,46,56,49,54,57,51,49,44,52,51,46,57,54,48,55,51,51,93,44,91,45,49,49,57,46,54,53,55,49,56,51,44,52,51,46,57,53,56,57,50,93,44,91,45,49,49,57,46,55,55,53,52,48,50,44,52,51,46,57,53,57,48,56,54,93,44,91,45,49,49,57,46,55,55,55,53,50,56,44,52,51,46,54,57,55,57,53,55,93,44,91,45,49,49,57,46,56,57,55,52,51,52,44,52,51,46,54,57,56,50,93,44,91,45,49,49,57,46,56,57,54,53,56,49,44,52,51,46,54,49,49,49,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,97,117,110,97,98,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,56,56,53,50,51,44,49,56,46,48,53,56,57,52,49,93,44,91,45,54,53,46,56,55,51,50,57,57,44,49,55,46,57,51,55,57,53,53,93,44,91,45,54,53,46,56,49,54,52,52,57,44,49,55,46,57,54,53,53,48,52,93,44,91,45,54,53,46,56,54,55,56,48,50,44,49,56,46,48,50,54,48,48,55,93,44,91,45,54,53,46,57,56,56,53,50,51,44,49,56,46,48,53,56,57,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,48,50,55,56,51,44,52,52,46,50,52,57,52,55,51,93,44,91,45,57,48,46,48,50,53,57,53,51,44,52,52,46,48,57,49,55,52,56,93,44,91,45,56,57,46,57,54,50,54,48,49,44,52,51,46,57,55,57,50,51,54,93,44,91,45,56,57,46,57,54,49,50,50,49,44,52,51,46,56,54,52,48,50,55,93,44,91,45,56,57,46,56,54,53,49,51,50,44,52,51,46,55,56,51,52,49,52,93,44,91,45,56,57,46,55,56,52,57,48,49,44,52,51,46,54,52,49,48,53,49,93,44,91,45,56,57,46,53,57,57,53,52,55,44,52,51,46,54,52,50,54,51,54,93,44,91,45,56,57,46,53,57,55,57,53,44,52,51,46,57,56,50,49,93,44,91,45,56,57,46,53,57,55,57,56,44,52,52,46,50,52,53,55,50,53,93,44,91,45,56,57,46,55,50,52,55,52,54,44,52,52,46,50,52,55,54,55,56,93,44,91,45,56,57,46,57,48,50,55,56,51,44,52,52,46,50,52,57,52,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,52,51,49,49,50,44,52,48,46,54,48,53,56,50,55,93,44,91,45,57,49,46,57,52,57,55,52,55,44,52,48,46,51,48,48,56,51,50,93,44,91,45,57,49,46,57,53,48,56,49,50,44,52,48,46,50,53,55,50,49,93,44,91,45,57,49,46,52,57,55,50,54,54,44,52,48,46,50,52,56,55,54,51,93,44,91,45,57,49,46,52,49,57,52,50,50,44,52,48,46,51,55,56,50,54,52,93,44,91,45,57,49,46,52,56,51,49,53,51,44,52,48,46,51,56,50,52,57,50,93,44,91,45,57,49,46,55,49,54,55,54,57,44,52,48,46,53,57,56,53,51,93,44,91,45,57,49,46,57,52,51,49,49,50,44,52,48,46,54,48,53,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,48,57,53,44,34,98,101,100,115,34,58,50,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,50,48,49,53,55,44,51,57,46,49,48,53,52,56,57,93,44,91,45,56,52,46,56,55,55,54,50,52,44,51,57,46,48,51,49,50,49,51,93,44,91,45,56,52,46,56,55,48,55,52,57,44,51,56,46,57,48,48,57,48,53,93,44,91,45,56,52,46,55,57,53,48,51,57,44,51,56,46,56,53,55,50,55,93,44,91,45,56,52,46,54,54,48,49,48,55,44,51,56,46,55,55,55,50,57,51,93,44,91,45,56,52,46,54,49,53,54,54,52,44,51,56,46,56,48,50,50,55,55,93,44,91,45,56,52,46,54,50,51,52,56,56,44,51,57,46,48,55,52,50,56,50,93,44,91,45,56,52,46,55,53,48,51,52,53,44,51,57,46,49,52,55,54,50,50,93,44,91,45,56,52,46,56,50,48,49,53,55,44,51,57,46,49,48,53,52,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,53,50,55,57,55,44,51,55,46,56,57,55,54,54,49,93,44,91,45,56,53,46,50,57,48,50,56,52,44,51,55,46,56,51,49,49,56,50,93,44,91,45,56,53,46,52,48,49,55,56,52,44,51,55,46,55,51,48,54,53,56,93,44,91,45,56,53,46,50,53,55,50,57,56,44,51,55,46,54,51,48,57,48,51,93,44,91,45,56,53,46,48,51,48,49,55,50,44,51,55,46,54,51,49,50,55,93,44,91,45,56,53,46,48,50,53,48,50,49,44,51,55,46,54,55,56,56,53,52,93,44,91,45,56,53,46,48,51,48,53,50,56,44,51,55,46,56,57,49,53,51,56,93,44,91,45,56,53,46,49,53,50,55,57,55,44,51,55,46,56,57,55,54,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,118,111,121,101,108,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,56,56,50,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,56,54,55,49,56,44,51,49,46,51,51,53,51,55,52,93,44,91,45,57,50,46,50,51,51,50,51,44,51,49,46,51,50,49,53,52,53,93,44,91,45,57,50,46,50,48,56,55,56,53,44,51,48,46,57,54,52,55,51,52,93,44,91,45,57,50,46,50,56,48,55,51,56,44,51,48,46,57,54,53,48,55,49,93,44,91,45,57,50,46,50,49,50,55,49,49,44,51,48,46,56,52,56,54,48,55,93,44,91,45,57,49,46,56,49,53,50,53,56,44,51,48,46,56,52,56,49,48,55,93,44,91,45,57,49,46,56,48,53,57,54,51,44,51,48,46,57,55,50,53,53,56,93,44,91,45,57,49,46,55,53,48,49,49,57,44,51,49,46,48,49,56,56,49,52,93,44,91,45,57,49,46,55,50,51,56,48,52,44,51,49,46,48,52,52,50,53,52,93,44,91,45,57,49,46,54,55,55,51,48,50,44,51,49,46,49,56,56,48,52,55,93,44,91,45,57,49,46,56,51,52,50,56,44,51,49,46,50,54,54,51,52,52,93,44,91,45,57,50,46,48,48,56,49,50,49,44,51,49,46,51,50,53,55,57,55,93,44,91,45,57,50,46,48,56,54,55,49,56,44,51,49,46,51,51,53,51,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,84,97,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,50,51,52,52,50,44,51,52,46,55,55,50,51,49,49,93,44,91,45,56,57,46,57,48,56,53,56,55,44,51,52,46,55,55,50,54,52,49,93,44,91,45,57,48,46,48,50,57,49,52,52,44,51,52,46,55,48,56,49,55,54,93,44,91,45,57,48,46,50,48,48,49,57,57,44,51,52,46,55,50,52,52,49,56,93,44,91,45,57,48,46,50,52,51,57,50,52,44,51,52,46,54,48,50,49,53,93,44,91,45,57,48,46,49,57,56,54,51,49,44,51,52,46,53,53,52,52,50,53,93,44,91,45,56,57,46,55,50,49,51,52,49,44,51,52,46,53,53,52,50,55,52,93,44,91,45,56,57,46,54,54,56,52,52,56,44,51,52,46,53,53,52,51,54,55,93,44,91,45,56,57,46,54,54,57,49,54,44,51,52,46,54,56,53,55,56,54,93,44,91,45,56,57,46,55,50,51,52,52,50,44,51,52,46,55,55,50,51,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,55,34,44,34,78,65,77,69,34,58,34,87,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,51,50,50,52,44,52,48,46,53,55,49,57,48,49,93,44,91,45,57,52,46,52,55,49,50,49,51,44,52,48,46,53,55,48,56,50,53,93,44,91,45,57,52,46,54,51,50,48,51,44,52,48,46,53,55,49,51,54,55,93,44,91,45,57,52,46,53,57,56,52,56,55,44,52,48,46,51,56,54,55,49,52,93,44,91,45,57,52,46,50,49,52,50,55,56,44,52,48,46,51,56,52,50,53,52,93,44,91,45,57,52,46,50,51,50,50,52,44,52,48,46,53,55,49,57,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,83,104,101,114,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,52,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,53,49,53,53,56,44,52,49,46,51,57,52,48,56,52,93,44,91,45,57,57,46,50,48,51,50,54,49,44,52,49,46,51,57,52,49,52,93,44,91,45,57,57,46,50,48,55,53,54,52,44,52,49,46,48,52,55,48,48,51,93,44,91,45,57,56,46,55,52,56,53,50,54,44,52,49,46,48,52,54,54,52,93,44,91,45,57,56,46,55,52,52,51,51,44,52,49,46,51,57,52,49,55,56,93,44,91,45,57,56,46,55,53,49,53,53,56,44,52,49,46,51,57,52,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,97,109,112,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,52,57,57,51,55,49,44,52,53,46,57,52,51,54,53,51,93,44,91,45,49,48,48,46,51,56,55,48,51,54,44,52,53,46,56,54,57,49,52,50,93,44,91,45,49,48,48,46,51,48,57,48,49,51,44,52,53,46,55,48,55,56,52,50,93,44,91,45,49,48,48,46,52,51,48,48,55,57,44,52,53,46,53,57,52,56,50,51,93,44,91,45,57,57,46,55,49,55,52,54,54,44,52,53,46,53,57,51,52,50,56,93,44,91,45,57,57,46,55,49,56,48,55,49,44,52,53,46,57,52,48,56,56,51,93,44,91,45,57,57,46,56,56,48,48,54,44,52,53,46,57,52,49,52,50,51,93,44,91,45,49,48,48,46,52,57,57,51,55,49,44,52,53,46,57,52,51,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,52,49,57,52,44,52,53,46,56,56,49,57,55,53,93,44,91,45,49,48,52,46,48,52,48,48,48,52,44,52,53,46,50,49,50,56,57,49,93,44,91,45,49,48,50,46,57,53,55,50,56,49,44,52,53,46,50,49,50,56,53,49,93,44,91,45,49,48,50,46,57,52,50,48,55,44,52,53,46,57,52,53,93,44,91,45,49,48,50,46,57,57,53,50,52,56,44,52,53,46,57,52,53,49,54,55,93,44,91,45,49,48,52,46,48,52,53,53,52,55,44,52,53,46,57,52,53,51,48,56,93,44,91,45,49,48,52,46,48,52,52,49,57,52,44,52,53,46,56,56,49,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,71,114,97,116,105,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,48,54,55,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,52,53,57,54,50,44,52,51,46,52,54,54,49,53,56,93,44,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,44,91,45,56,52,46,51,54,55,55,54,44,52,51,46,49,49,55,57,52,50,93,44,91,45,56,52,46,51,54,55,56,57,49,44,52,51,46,49,50,56,52,53,50,93,44,91,45,56,52,46,51,54,57,56,55,54,44,52,51,46,52,54,54,48,52,52,93,44,91,45,56,52,46,54,48,55,53,52,44,52,51,46,52,54,54,48,48,54,93,44,91,45,56,52,46,56,52,53,57,54,50,44,52,51,46,52,54,54,49,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,55,48,54,48,51,44,52,49,46,49,53,55,53,54,54,93,44,91,45,57,52,46,52,55,48,55,55,57,44,52,48,46,56,57,57,53,48,50,93,44,91,45,57,52,46,48,49,52,56,48,51,44,52,48,46,56,57,55,48,51,49,93,44,91,45,57,52,46,48,49,52,49,56,57,44,52,49,46,49,53,54,55,54,50,93,44,91,45,57,52,46,50,52,49,54,51,55,44,52,49,46,49,53,55,49,51,52,93,44,91,45,57,52,46,52,55,48,54,48,51,44,52,49,46,49,53,55,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,77,97,115,115,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,49,48,55,51,56,44,51,55,46,51,51,55,48,56,49,93,44,91,45,56,56,46,57,50,56,55,53,55,44,51,55,46,51,48,50,56,52,56,93,44,91,45,56,56,46,57,50,55,56,57,44,51,55,46,50,50,54,51,52,50,93,44,91,45,56,56,46,53,54,54,48,54,49,44,51,55,46,48,55,53,50,48,52,93,44,91,45,56,56,46,52,57,48,52,49,49,44,51,55,46,48,54,56,53,55,57,93,44,91,45,56,56,46,52,57,48,51,51,44,51,55,46,49,53,57,52,54,50,93,44,91,45,56,56,46,55,49,48,55,51,56,44,51,55,46,51,51,55,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,49,51,50,52,51,44,52,49,46,51,57,51,53,49,49,93,44,91,45,49,48,48,46,50,53,49,48,57,56,44,52,49,46,51,57,51,50,57,56,93,44,91,45,49,48,48,46,50,53,49,50,50,52,44,52,49,46,55,51,57,56,49,55,93,44,91,45,49,48,48,46,50,54,53,52,55,52,44,52,49,46,55,51,57,56,53,54,93,44,91,45,49,48,48,46,55,49,49,55,49,49,44,52,49,46,55,51,57,55,54,49,93,44,91,45,49,48,48,46,55,49,51,50,52,51,44,52,49,46,51,57,51,53,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,101,114,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,48,51,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,56,54,53,56,52,44,52,49,46,51,57,51,56,57,56,93,44,91,45,57,56,46,50,56,55,49,54,56,44,52,49,46,48,52,54,51,54,51,93,44,91,45,57,56,46,50,56,50,53,55,56,44,52,48,46,56,54,56,54,55,55,93,44,91,45,57,56,46,48,49,48,53,52,56,44,52,49,46,48,55,50,55,54,49,93,44,91,45,57,55,46,56,50,56,50,53,54,44,52,49,46,49,55,51,52,51,57,93,44,91,45,57,55,46,53,57,56,50,53,51,44,52,49,46,51,51,51,49,49,57,93,44,91,45,57,55,46,55,48,51,55,54,53,44,52,49,46,51,57,52,56,55,54,93,44,91,45,57,55,46,55,48,53,52,57,55,44,52,49,46,51,48,57,49,51,52,93,44,91,45,57,56,46,48,53,51,49,51,55,44,52,49,46,50,57,51,49,50,51,93,44,91,45,57,56,46,50,55,53,52,48,56,44,52,49,46,50,54,52,51,52,49,93,44,91,45,57,56,46,50,56,54,53,56,52,44,52,49,46,51,57,51,56,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,83,104,101,114,105,100,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,51,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,56,50,53,52,54,44,52,50,46,57,57,57,51,53,54,93,44,91,45,49,48,50,46,55,57,50,49,49,49,44,52,50,46,57,57,57,57,56,93,44,91,45,49,48,50,46,55,55,51,51,54,57,44,52,50,46,55,56,53,50,54,53,93,44,91,45,49,48,50,46,55,55,51,51,54,54,44,52,50,46,52,51,57,57,50,50,93,44,91,45,49,48,50,46,55,52,50,50,54,57,44,52,50,46,48,57,50,51,56,56,93,44,91,45,49,48,50,46,54,57,55,56,51,53,44,52,50,46,48,48,52,56,52,51,93,44,91,45,49,48,50,46,54,55,55,53,56,50,44,52,50,46,48,48,53,50,56,50,93,44,91,45,49,48,50,46,48,54,54,54,53,44,52,50,46,48,48,57,49,57,53,93,44,91,45,49,48,50,46,48,48,54,50,48,52,44,52,50,46,48,57,54,51,51,56,93,44,91,45,49,48,50,46,48,52,48,50,56,44,52,50,46,48,57,54,55,52,52,93,44,91,45,49,48,50,46,48,54,54,54,56,57,44,52,50,46,52,52,51,52,54,51,93,44,91,45,49,48,50,46,48,56,50,53,52,54,44,52,50,46,57,57,57,51,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,97,114,108,105,115,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,49,53,57,53,50,44,51,54,46,57,53,52,49,93,44,91,45,56,56,46,57,56,57,55,57,55,44,51,54,46,57,49,57,51,51,93,44,91,45,56,57,46,49,48,48,56,54,52,44,51,54,46,57,52,52,48,49,54,93,44,91,45,56,57,46,49,50,51,53,51,49,44,51,54,46,55,56,53,50,49,55,93,44,91,45,56,56,46,56,49,51,50,50,57,44,51,54,46,55,55,51,49,49,53,93,44,91,45,56,56,46,56,49,50,56,57,55,44,51,54,46,57,52,54,56,54,52,93,44,91,45,56,56,46,56,49,53,57,53,50,44,51,54,46,57,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,78,97,116,114,111,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,54,49,48,44,34,98,101,100,115,34,58,51,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,53,50,50,57,50,51,44,52,50,46,52,51,52,51,53,54,93,44,91,45,49,48,54,46,54,53,52,55,56,49,44,52,50,46,52,51,49,48,57,52,93,44,91,45,49,48,54,46,48,55,53,56,53,50,44,52,50,46,52,51,51,50,49,56,93,44,91,45,49,48,54,46,48,55,56,48,54,56,44,52,51,46,52,57,52,52,55,49,93,44,91,45,49,48,54,46,53,57,52,56,57,55,44,52,51,46,52,57,49,52,55,93,44,91,45,49,48,55,46,49,49,48,55,51,52,44,52,51,46,53,48,48,50,56,54,93,44,91,45,49,48,55,46,53,51,52,56,57,55,44,52,51,46,53,48,49,51,54,50,93,44,91,45,49,48,55,46,53,49,55,48,51,49,44,52,51,46,52,55,50,54,53,57,93,44,91,45,49,48,55,46,53,48,49,52,50,53,44,52,50,46,55,56,49,52,53,56,93,44,91,45,49,48,55,46,53,52,51,53,50,54,44,52,50,46,55,56,49,53,53,56,93,44,91,45,49,48,55,46,53,50,50,57,50,51,44,52,50,46,52,51,52,51,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,49,34,44,34,78,65,77,69,34,58,34,87,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,49,56,52,48,52,44,51,49,46,54,53,48,50,55,52,93,44,91,45,56,51,46,57,57,55,55,57,54,44,51,49,46,52,52,51,55,53,51,93,44,91,45,56,51,46,57,57,57,52,51,44,51,49,46,51,51,52,57,54,54,93,44,91,45,56,51,46,54,53,52,48,57,44,51,49,46,51,51,48,54,54,49,93,44,91,45,56,51,46,54,52,57,51,56,52,44,51,49,46,53,54,55,57,55,55,93,44,91,45,56,51,46,55,57,54,56,52,54,44,51,49,46,54,50,50,57,50,57,93,44,91,45,56,51,46,56,48,50,55,50,51,44,51,49,46,56,48,51,53,55,57,93,44,91,45,56,51,46,57,51,57,52,51,55,44,51,49,46,56,52,55,57,50,57,93,44,91,45,56,52,46,48,50,53,54,50,51,44,51,49,46,55,49,48,48,50,50,93,44,91,45,56,52,46,48,49,56,52,48,52,44,51,49,46,54,53,48,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,55,50,55,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,53,54,54,53,44,51,57,46,54,48,49,51,57,53,93,44,91,45,56,54,46,54,56,53,55,49,44,51,57,46,52,55,48,48,54,51,93,44,91,45,56,54,46,54,51,48,56,49,56,44,51,57,46,51,52,54,57,52,56,93,44,91,45,56,54,46,51,56,49,51,57,53,44,51,57,46,51,51,57,55,53,50,93,44,91,45,56,54,46,50,53,49,54,56,52,44,51,57,46,51,52,49,54,55,50,93,44,91,45,56,54,46,50,52,57,56,56,53,44,51,57,46,54,51,51,54,52,53,93,44,91,45,56,54,46,51,50,54,51,52,49,44,51,57,46,54,51,50,49,55,55,93,44,91,45,56,54,46,52,54,53,54,48,53,44,51,57,46,54,48,48,55,54,57,93,44,91,45,56,54,46,54,53,54,54,53,44,51,57,46,54,48,49,51,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,69,108,108,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,56,51,56,44,34,98,101,100,115,34,58,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,50,57,57,56,55,44,51,50,46,53,52,53,50,56,50,93,44,91,45,57,55,46,48,51,56,51,56,53,44,51,50,46,53,52,56,54,54,50,93,44,91,45,57,55,46,48,56,54,56,51,52,44,51,50,46,53,52,57,52,50,56,93,44,91,45,57,55,46,48,56,54,49,57,49,44,51,50,46,50,54,53,52,53,49,93,44,91,45,57,54,46,57,52,48,54,53,54,44,51,50,46,48,53,50,48,56,55,93,44,91,45,57,54,46,56,57,54,50,48,57,44,51,50,46,48,55,51,57,55,55,93,44,91,45,57,54,46,51,56,51,48,56,50,44,51,50,46,51,50,56,56,53,49,93,44,91,45,57,54,46,52,53,50,49,51,56,44,51,50,46,51,53,56,54,51,49,93,44,91,45,57,54,46,52,51,53,50,51,51,44,51,50,46,52,48,56,57,56,54,93,44,91,45,57,54,46,53,50,57,57,56,55,44,51,50,46,53,52,53,50,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,57,34,44,34,78,65,77,69,34,58,34,80,105,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,50,54,53,56,53,44,51,49,46,53,51,48,54,57,57,93,44,91,45,56,50,46,51,52,52,56,52,51,44,51,49,46,52,51,48,49,51,93,44,91,45,56,50,46,52,49,55,50,52,54,44,51,49,46,52,49,55,49,49,57,93,44,91,45,56,50,46,51,56,51,55,48,53,44,51,49,46,50,57,49,49,52,51,93,44,91,45,56,50,46,50,56,52,53,54,49,44,51,49,46,50,50,52,52,52,57,93,44,91,45,56,50,46,49,57,52,56,50,52,44,51,49,46,50,48,55,53,57,93,44,91,45,56,50,46,48,57,50,55,50,44,51,49,46,50,55,54,49,49,57,93,44,91,45,56,50,46,48,52,49,49,50,57,44,51,49,46,51,55,51,55,50,49,93,44,91,45,56,50,46,49,51,50,55,57,52,44,51,49,46,52,55,49,50,54,50,93,44,91,45,56,50,46,50,50,54,53,56,53,44,51,49,46,53,51,48,54,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,57,52,52,44,34,98,101,100,115,34,58,51,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,51,54,52,49,44,52,48,46,53,54,53,53,50,53,93,44,91,45,56,53,46,56,54,50,49,49,55,44,52,48,46,52,48,54,56,56,57,93,44,91,45,56,53,46,56,54,50,50,57,54,44,52,48,46,51,55,56,51,54,55,93,44,91,45,56,53,46,53,55,56,53,56,57,44,52,48,46,51,55,57,53,50,52,93,44,91,45,56,53,46,52,52,52,51,51,44,52,48,46,51,55,57,49,52,93,44,91,45,56,53,46,52,52,55,48,49,52,44,52,48,46,53,54,54,57,50,57,93,44,91,45,56,53,46,52,52,56,56,50,53,44,52,48,46,54,53,51,54,48,55,93,44,91,45,56,53,46,54,51,56,53,56,55,44,52,48,46,54,53,51,49,50,57,93,44,91,45,56,53,46,56,54,52,55,57,49,44,52,48,46,54,53,49,54,57,51,93,44,91,45,56,53,46,56,54,51,54,52,49,44,52,48,46,53,54,53,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,70,108,97,103,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,49,51,57,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,53,48,56,49,55,44,50,57,46,54,55,49,48,56,55,93,44,91,45,56,49,46,51,50,52,48,53,57,44,50,57,46,54,50,53,54,49,93,44,91,45,56,49,46,53,50,51,54,54,44,50,57,46,54,50,50,52,51,50,93,44,91,45,56,49,46,53,50,48,53,57,54,44,50,57,46,53,48,48,50,52,57,93,44,91,45,56,49,46,52,51,51,57,57,50,44,50,57,46,51,57,56,53,53,50,93,44,91,45,56,49,46,52,49,55,50,57,44,50,57,46,50,54,49,49,53,54,93,44,91,45,56,49,46,49,53,48,48,56,49,44,50,57,46,50,54,53,57,53,55,93,44,91,45,56,49,46,49,53,53,56,56,49,44,50,57,46,52,49,48,57,53,52,93,44,91,45,56,49,46,48,52,53,55,48,54,44,50,57,46,52,51,50,52,54,50,93,44,91,45,56,49,46,49,53,48,56,49,55,44,50,57,46,54,55,49,48,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,52,53,49,57,49,44,51,49,46,55,49,55,53,50,52,93,44,91,45,57,48,46,50,52,51,56,57,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,48,52,48,52,54,54,44,51,49,46,51,51,54,48,49,52,93,44,91,45,56,57,46,57,53,56,57,52,44,51,49,46,51,57,48,52,56,57,93,44,91,45,56,57,46,57,55,52,53,56,54,44,51,49,46,55,54,49,54,53,53,93,44,91,45,57,48,46,49,50,50,53,54,53,44,51,49,46,55,53,50,54,56,93,44,91,45,57,48,46,50,52,53,49,57,49,44,51,49,46,55,49,55,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,87,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,57,52,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,51,57,48,56,44,51,50,46,49,52,55,57,52,50,93,44,91,45,57,50,46,56,56,50,57,57,56,44,51,49,46,57,51,57,57,55,93,44,91,45,57,50,46,57,52,50,50,52,53,44,51,49,46,56,53,52,50,54,56,93,44,91,45,57,50,46,57,55,51,53,50,57,44,51,49,46,55,48,56,57,50,50,93,44,91,45,57,50,46,54,49,57,57,55,54,44,51,49,46,55,48,57,53,55,50,93,44,91,45,57,50,46,54,49,57,50,50,52,44,51,49,46,55,57,55,49,52,57,93,44,91,45,57,50,46,51,54,50,54,48,56,44,51,49,46,55,57,54,54,51,51,93,44,91,45,57,50,46,51,49,50,54,50,51,44,51,49,46,57,50,55,51,56,50,93,44,91,45,57,50,46,51,49,50,50,49,56,44,51,50,46,49,52,54,49,50,51,93,44,91,45,57,50,46,56,49,52,55,51,55,44,51,50,46,49,52,54,57,48,55,93,44,91,45,57,50,46,57,51,57,48,56,44,51,50,46,49,52,55,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,52,54,52,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,56,53,53,51,54,44,52,49,46,53,56,52,53,55,52,93,44,91,45,57,48,46,52,51,49,57,51,44,52,49,46,52,53,54,56,51,52,93,44,91,45,57,48,46,52,51,51,55,51,55,44,52,49,46,51,50,54,57,56,57,93,44,91,45,57,48,46,52,51,55,54,53,50,44,52,49,46,49,53,49,52,54,51,93,44,91,45,56,57,46,57,56,52,53,53,57,44,52,49,46,49,52,57,51,57,52,93,44,91,45,56,57,46,56,54,56,49,53,50,44,52,49,46,49,52,57,52,57,51,93,44,91,45,56,57,46,56,53,55,54,49,54,44,52,49,46,50,51,52,52,55,57,93,44,91,45,56,57,46,56,54,50,51,53,49,44,52,49,46,53,56,52,48,48,53,93,44,91,45,57,48,46,49,56,53,53,51,54,44,52,49,46,53,56,52,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,56,56,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,48,57,53,56,51,51,44,52,53,46,48,52,51,57,56,54,93,44,91,45,49,50,52,46,49,52,55,54,51,56,44,52,52,46,55,54,57,49,49,51,93,44,91,45,49,50,52,46,49,53,51,52,50,56,44,52,52,46,52,54,53,48,51,54,93,44,91,45,49,50,52,46,49,56,55,52,48,57,44,52,52,46,50,55,54,56,55,49,93,44,91,45,49,50,51,46,55,55,53,53,57,56,44,52,52,46,50,56,51,53,52,55,93,44,91,45,49,50,51,46,55,50,48,48,55,49,44,52,52,46,52,51,51,51,55,52,93,44,91,45,49,50,51,46,53,57,55,54,55,55,44,52,52,46,52,51,51,49,48,57,93,44,91,45,49,50,51,46,54,48,50,54,48,57,44,52,52,46,55,50,49,49,53,52,93,44,91,45,49,50,51,46,55,50,53,48,48,49,44,52,52,46,55,51,57,48,52,54,93,44,91,45,49,50,51,46,55,50,52,54,54,51,44,52,53,46,48,52,52,52,51,50,93,44,91,45,49,50,52,46,48,57,53,56,51,51,44,52,53,46,48,52,51,57,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,49,48,50,44,34,98,101,100,115,34,58,50,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,57,54,50,49,53,52,44,52,51,46,53,52,49,48,56,55,93,44,91,45,55,48,46,57,55,56,49,49,53,44,52,51,46,51,53,56,57,49,52,93,44,91,45,55,48,46,56,49,56,49,57,53,44,52,51,46,50,51,56,51,51,93,44,91,45,55,48,46,56,50,48,48,49,57,44,52,51,46,49,50,50,53,52,53,93,44,91,45,55,48,46,53,55,53,48,57,52,44,52,50,46,57,49,55,49,50,54,93,44,91,45,55,48,46,53,50,56,56,56,50,44,52,51,46,48,48,53,55,54,57,93,44,91,45,55,48,46,52,48,54,50,52,51,44,52,51,46,49,48,50,48,57,50,93,44,91,45,55,48,46,53,49,57,54,54,54,44,52,51,46,49,57,49,48,49,53,93,44,91,45,55,48,46,52,57,51,50,51,44,52,51,46,50,56,54,56,50,57,93,44,91,45,55,48,46,51,54,57,50,49,57,44,52,51,46,51,50,50,50,50,93,44,91,45,55,48,46,50,50,50,48,57,44,52,51,46,52,54,54,56,55,56,93,44,91,45,55,48,46,52,57,50,48,48,57,44,52,51,46,54,48,54,55,54,57,93,44,91,45,55,48,46,53,52,57,57,54,53,44,52,51,46,55,49,53,55,57,54,93,44,91,45,55,48,46,54,53,57,51,54,57,44,52,51,46,55,57,48,51,56,54,93,44,91,45,55,48,46,55,56,50,57,56,52,44,52,51,46,56,49,52,49,52,55,93,44,91,45,55,48,46,57,56,57,49,50,50,44,52,51,46,55,57,50,49,49,51,93,44,91,45,55,48,46,57,54,50,49,53,52,44,52,51,46,53,52,49,48,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,100,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,57,51,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,57,52,50,53,52,44,52,53,46,49,53,49,54,51,49,93,44,91,45,57,55,46,52,57,49,51,52,54,44,52,52,46,56,48,52,48,51,53,93,44,91,45,57,54,46,56,56,52,53,55,44,52,52,46,56,48,52,52,51,54,93,44,91,45,57,54,46,56,56,50,51,52,53,44,52,52,46,57,55,54,56,55,93,44,91,45,57,54,46,56,56,51,57,52,56,44,52,53,46,49,53,48,50,50,52,93,44,91,45,57,55,46,50,50,54,50,56,49,44,52,53,46,49,53,49,56,50,54,93,44,91,45,57,55,46,52,57,52,50,53,52,44,52,53,46,49,53,49,54,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,49,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,57,54,55,56,51,44,51,51,46,49,56,51,56,54,54,93,44,91,45,56,52,46,53,50,55,48,50,44,51,50,46,57,55,48,53,52,56,93,44,91,45,56,52,46,50,57,56,54,54,53,44,51,50,46,57,57,57,54,55,49,93,44,91,45,56,52,46,50,55,48,49,52,44,51,50,46,57,57,49,48,49,49,93,44,91,45,56,52,46,50,52,56,49,56,53,44,51,51,46,49,56,57,48,49,57,93,44,91,45,56,52,46,52,57,54,55,56,51,44,51,51,46,49,56,51,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,57,34,44,34,78,65,77,69,34,58,34,83,116,101,119,97,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,52,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,50,51,48,50,55,44,51,50,46,50,51,48,56,53,49,93,44,91,45,56,53,46,48,54,50,48,54,44,51,50,46,49,51,50,52,56,54,93,44,91,45,56,53,46,48,53,54,48,50,57,44,51,50,46,48,54,51,48,53,53,93,44,91,45,56,53,46,48,54,56,50,51,44,51,49,46,57,57,49,56,53,55,93,44,91,45,56,52,46,57,48,55,48,48,54,44,51,49,46,57,50,52,52,54,53,93,44,91,45,56,52,46,54,53,53,56,50,44,51,49,46,57,50,48,51,48,56,93,44,91,45,56,52,46,54,52,57,51,49,57,44,51,50,46,50,51,50,57,53,51,93,44,91,45,56,52,46,54,53,56,57,50,44,51,50,46,50,51,50,56,53,50,93,44,91,45,56,52,46,57,50,51,48,50,55,44,51,50,46,50,51,48,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,77,111,110,109,111,117,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,51,51,56,55,44,34,98,101,100,115,34,58,50,49,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,50,50,56,49,53,51,44,52,48,46,52,55,55,51,57,57,93,44,91,45,55,52,46,50,52,55,56,57,52,44,52,48,46,52,48,54,54,48,53,93,44,91,45,55,52,46,51,57,51,52,51,56,44,52,48,46,50,55,57,53,52,56,93,44,91,45,55,52,46,52,56,52,57,54,50,44,52,48,46,50,53,51,51,50,53,93,44,91,45,55,52,46,53,56,55,56,51,53,44,52,48,46,49,51,56,50,53,52,93,44,91,45,55,52,46,53,53,51,49,48,53,44,52,48,46,48,55,57,49,51,93,44,91,45,55,52,46,52,48,54,55,49,44,52,48,46,49,55,50,52,48,50,93,44,91,45,55,52,46,50,54,49,52,53,53,44,52,48,46,49,54,55,48,51,51,93,44,91,45,55,52,46,50,51,48,54,51,52,44,52,48,46,49,48,57,53,54,49,93,44,91,45,55,51,46,57,54,53,52,49,52,44,52,48,46,48,57,55,54,52,50,93,44,91,45,55,51,46,56,57,56,50,48,56,44,52,48,46,50,55,52,51,53,51,93,44,91,45,55,51,46,56,56,54,54,53,50,44,52,48,46,52,56,57,55,57,52,93,44,91,45,55,52,46,48,52,50,49,49,50,44,52,48,46,53,48,57,50,57,57,93,44,91,45,55,52,46,50,50,56,49,53,51,44,52,48,46,52,55,55,51,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,54,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,50,48,55,51,50,44,51,54,46,52,57,55,56,53,57,93,44,91,45,57,48,46,53,55,54,49,55,57,44,51,54,46,52,57,56,53,52,55,93,44,91,45,57,48,46,55,56,52,52,50,52,44,51,54,46,52,57,56,53,51,52,93,44,91,45,57,48,46,55,53,49,56,49,44,51,54,46,50,56,51,56,51,54,93,44,91,45,57,48,46,56,48,54,54,49,53,44,51,54,46,50,54,54,56,54,53,93,44,91,45,57,48,46,51,49,57,56,50,44,51,54,46,50,53,57,49,52,52,93,44,91,45,57,48,46,49,57,48,50,48,55,44,51,54,46,50,48,49,51,54,49,93,44,91,45,57,48,46,49,50,53,52,56,55,44,51,54,46,50,51,49,50,51,50,93,44,91,45,57,48,46,48,54,51,53,57,52,44,51,54,46,51,56,52,50,51,53,93,44,91,45,57,48,46,50,50,48,55,51,50,44,51,54,46,52,57,55,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,70,97,117,108,107,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,52,49,54,44,34,98,101,100,115,34,58,51,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,52,56,49,52,54,57,44,51,53,46,51,54,56,51,57,50,93,44,91,45,57,50,46,52,57,57,57,56,53,44,51,53,46,49,54,57,53,55,53,93,44,91,45,57,50,46,53,53,52,54,56,53,44,51,53,46,49,49,51,50,55,55,93,44,91,45,57,50,46,53,57,51,53,56,53,44,51,53,46,48,49,49,55,54,49,93,44,91,45,57,50,46,53,52,52,51,52,49,44,51,52,46,57,53,51,51,49,57,93,44,91,45,57,50,46,50,50,57,56,57,51,44,51,52,46,57,50,55,53,53,56,93,44,91,45,57,50,46,49,50,49,51,51,54,44,51,53,46,48,49,50,50,49,93,44,91,45,57,50,46,49,49,57,55,49,57,44,51,53,46,48,54,54,52,57,51,93,44,91,45,57,50,46,49,49,49,52,54,51,44,51,53,46,51,54,50,55,50,53,93,44,91,45,57,50,46,50,53,50,55,53,57,44,51,53,46,51,54,51,55,49,56,93,44,91,45,57,50,46,52,56,49,52,54,57,44,51,53,46,51,54,56,51,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,49,49,50,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,48,53,55,51,44,51,54,46,53,48,57,56,57,93,44,91,45,57,53,46,48,49,49,51,48,57,44,51,54,46,49,54,49,55,54,51,93,44,91,45,57,52,46,55,57,55,52,48,57,44,51,54,46,49,54,49,54,53,50,93,44,91,45,57,52,46,53,54,50,55,50,55,44,51,54,46,49,54,49,56,57,51,93,44,91,45,57,52,46,54,49,55,57,49,57,44,51,54,46,52,57,57,52,49,52,93,44,91,45,57,52,46,54,49,56,48,55,55,44,51,54,46,54,54,55,57,50,49,93,44,91,45,57,52,46,57,57,57,52,48,51,44,51,54,46,54,55,48,54,51,49,93,44,91,45,57,53,46,48,48,53,55,51,44,51,54,46,53,48,57,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,75,101,111,107,117,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,48,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,52,54,48,52,51,44,52,49,46,53,49,48,55,52,57,93,44,91,45,57,50,46,50,57,55,52,57,52,44,52,49,46,53,48,57,55,57,93,44,91,45,57,50,46,52,49,49,57,57,53,44,52,49,46,53,48,57,53,52,56,93,44,91,45,57,50,46,52,49,48,50,51,51,44,52,49,46,49,54,49,57,52,50,93,44,91,45,57,50,46,49,55,57,57,55,52,44,52,49,46,49,54,50,54,54,50,93,44,91,45,57,49,46,57,52,53,53,55,49,44,52,49,46,49,54,51,53,55,56,93,44,91,45,57,49,46,57,52,54,48,52,51,44,52,49,46,53,49,48,55,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,49,51,55,55,53,44,51,57,46,51,57,53,52,49,54,93,44,91,45,57,48,46,54,48,51,53,54,57,44,51,57,46,49,49,55,53,57,50,93,44,91,45,57,48,46,53,54,48,48,55,49,44,51,57,46,49,56,55,52,51,93,44,91,45,57,48,46,51,49,51,50,56,57,44,51,57,46,49,55,52,50,56,57,93,44,91,45,57,48,46,49,52,56,49,50,49,44,51,57,46,50,54,49,57,52,55,93,44,91,45,57,48,46,49,53,51,55,56,50,44,51,57,46,53,50,48,51,49,53,93,44,91,45,57,48,46,51,48,49,56,51,49,44,51,57,46,53,50,48,51,52,52,93,44,91,45,57,48,46,53,56,49,48,53,53,44,51,57,46,53,50,49,55,50,56,93,44,91,45,57,48,46,54,49,51,55,55,53,44,51,57,46,51,57,53,52,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,57,56,50,53,50,44,52,56,46,50,48,50,56,53,56,93,44,91,45,57,49,46,55,56,55,57,50,56,44,52,55,46,53,52,54,56,49,55,93,44,91,45,57,49,46,55,57,54,51,51,44,52,54,46,55,57,52,56,51,56,93,44,91,45,57,49,46,53,52,57,51,56,53,44,52,54,46,56,57,51,50,49,51,93,44,91,45,57,48,46,56,54,55,51,49,56,44,52,55,46,50,49,48,57,54,50,93,44,91,45,57,48,46,55,57,53,49,56,57,44,52,55,46,50,52,52,50,57,57,93,44,91,45,57,49,46,48,50,51,49,50,54,44,52,55,46,52,54,52,57,56,50,93,44,91,45,57,49,46,48,51,49,55,54,49,44,52,56,46,49,56,56,52,56,54,93,44,91,45,57,49,46,50,53,48,49,49,50,44,52,56,46,48,56,52,48,56,55,93,44,91,45,57,49,46,52,50,57,54,52,50,44,52,56,46,48,52,56,54,48,56,93,44,91,45,57,49,46,55,49,49,56,52,52,44,52,56,46,49,49,52,54,48,53,93,44,91,45,57,49,46,55,57,56,50,53,50,44,52,56,46,50,48,50,56,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,53,34,44,34,78,65,77,69,34,58,34,84,114,111,117,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,55,55,52,44,34,98,101,100,115,34,58,50,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,51,57,48,49,53,44,51,51,46,50,50,52,54,57,51,93,44,91,45,56,53,46,50,51,54,53,49,56,44,51,51,46,49,50,57,53,53,57,93,44,91,45,56,53,46,50,51,50,51,55,56,44,51,51,46,49,48,56,48,55,55,93,44,91,45,56,53,46,49,56,52,49,51,49,44,51,50,46,56,55,48,53,50,53,93,44,91,45,56,52,46,56,54,49,55,54,56,44,51,50,46,56,55,50,52,57,53,93,44,91,45,56,52,46,56,54,50,51,53,57,44,51,51,46,49,57,49,49,55,51,93,44,91,45,56,52,46,57,51,57,48,49,53,44,51,51,46,50,50,52,54,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,72,117,109,98,111,108,100,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,55,54,56,44,34,98,101,100,115,34,58,50,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,49,51,54,53,54,49,44,52,49,46,52,54,52,52,53,50,93,44,91,45,49,50,52,46,49,54,48,55,48,52,44,52,49,46,50,56,57,50,57,51,93,44,91,45,49,50,52,46,50,52,55,52,51,44,52,49,46,48,57,50,50,50,52,93,44,91,45,49,50,52,46,49,56,50,54,57,52,44,52,49,46,48,48,49,51,49,51,93,44,91,45,49,50,52,46,50,51,50,54,50,50,44,52,48,46,56,54,57,50,56,54,93,44,91,45,49,50,52,46,52,52,55,54,55,55,44,52,48,46,53,50,57,55,48,57,93,44,91,45,49,50,52,46,52,55,56,54,50,53,44,52,48,46,52,50,50,49,48,50,93,44,91,45,49,50,52,46,51,57,50,55,55,55,44,52,48,46,50,48,57,55,57,57,93,44,91,45,49,50,52,46,49,51,52,56,56,57,44,52,48,46,48,48,50,52,55,93,44,91,45,49,50,51,46,53,52,52,52,53,56,44,52,48,46,48,48,49,57,50,51,93,44,91,45,49,50,51,46,53,52,51,55,52,57,44,52,48,46,55,51,57,48,49,53,93,44,91,45,49,50,51,46,54,49,53,56,50,55,44,52,48,46,57,49,52,48,54,56,93,44,91,45,49,50,51,46,52,52,55,57,53,54,44,52,48,46,57,52,51,55,53,56,93,44,91,45,49,50,51,46,52,48,56,50,57,49,44,52,49,46,49,55,57,57,52,52,93,44,91,45,49,50,51,46,52,55,52,48,56,53,44,52,49,46,51,54,54,49,57,51,93,44,91,45,49,50,51,46,54,54,49,51,54,51,44,52,49,46,51,56,50,48,57,93,44,91,45,49,50,51,46,55,55,48,53,53,49,44,52,49,46,52,54,52,49,57,51,93,44,91,45,49,50,52,46,49,51,54,53,54,49,44,52,49,46,52,54,52,52,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,105,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,57,56,56,44,34,98,101,100,115,34,58,49,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,54,54,55,57,56,44,51,54,46,49,55,55,56,53,55,93,44,91,45,56,55,46,53,51,52,53,51,44,51,53,46,57,57,51,48,55,52,93,44,91,45,56,55,46,50,48,52,50,52,50,44,51,53,46,57,53,57,49,56,54,93,44,91,45,56,55,46,49,56,50,53,55,51,44,51,54,46,48,52,57,55,50,54,93,44,91,45,56,55,46,49,53,54,53,56,57,44,51,54,46,51,48,55,55,48,54,93,44,91,45,56,55,46,50,56,54,53,48,49,44,51,54,46,51,50,49,57,51,51,93,44,91,45,56,55,46,53,49,51,53,51,51,44,51,54,46,51,51,52,55,49,51,93,44,91,45,56,55,46,53,54,54,55,57,56,44,51,54,46,49,55,55,56,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,111,107,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,55,52,51,49,44,34,98,101,100,115,34,58,55,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,49,48,48,55,44,52,53,46,52,49,52,55,57,56,93,44,91,45,57,51,46,53,49,50,49,57,44,52,53,46,50,52,53,54,56,51,93,44,91,45,57,51,46,51,49,49,53,52,52,44,52,53,46,49,52,51,55,55,56,93,44,91,45,57,51,46,50,50,54,57,50,57,44,52,53,46,48,51,53,54,55,49,93,44,91,45,57,51,46,50,50,55,54,57,54,44,52,53,46,49,50,52,53,51,51,93,44,91,45,57,51,46,48,50,48,53,49,56,44,52,53,46,49,50,51,56,54,54,93,44,91,45,57,51,46,48,49,57,52,52,44,52,53,46,50,57,54,57,50,57,93,44,91,45,57,51,46,48,49,57,53,54,51,44,52,53,46,52,49,49,55,55,93,44,91,45,57,51,46,53,49,48,48,55,44,52,53,46,52,49,52,55,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,111,110,32,72,111,109,109,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,54,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,51,55,52,57,54,44,52,51,46,49,54,56,55,55,93,44,91,45,57,56,46,48,55,55,49,48,56,44,52,51,46,49,54,56,51,51,93,44,91,45,57,56,46,48,57,50,55,56,50,44,52,50,46,57,55,51,57,50,49,93,44,91,45,57,56,46,49,53,51,49,48,55,44,52,50,46,56,51,56,57,56,54,93,44,91,45,57,56,46,48,49,51,48,55,50,44,52,50,46,55,54,50,50,49,57,93,44,91,45,57,55,46,56,55,53,53,51,49,44,52,50,46,56,53,56,54,53,54,93,44,91,45,57,55,46,54,51,53,52,52,44,52,50,46,56,53,49,53,51,50,93,44,91,45,57,55,46,54,51,55,52,57,54,44,52,51,46,49,54,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,54,54,57,44,34,98,101,100,115,34,58,50,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,54,54,48,56,53,44,51,54,46,49,56,48,56,57,52,93,44,91,45,56,50,46,56,57,56,51,49,55,44,51,53,46,57,52,52,57,54,55,93,44,91,45,56,50,46,54,51,55,50,51,44,51,54,46,48,54,53,56,50,93,44,91,45,56,50,46,54,48,50,57,56,44,51,54,46,48,51,57,54,55,55,93,44,91,45,56,50,46,53,57,53,48,54,53,44,51,54,46,48,57,54,50,48,53,93,44,91,45,56,50,46,54,52,55,55,54,57,44,51,54,46,49,52,54,52,48,52,93,44,91,45,56,50,46,54,50,57,54,52,49,44,51,54,46,52,49,49,53,52,93,44,91,45,56,50,46,55,48,50,53,54,54,44,51,54,46,52,49,48,52,49,50,93,44,91,45,56,50,46,56,52,48,52,56,49,44,51,54,46,51,55,48,54,57,56,93,44,91,45,56,51,46,48,56,50,51,49,50,44,51,54,46,50,52,50,50,57,54,93,44,91,45,56,51,46,49,54,54,48,56,53,44,51,54,46,49,56,48,56,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,83,117,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,53,51,53,52,54,44,51,54,46,57,52,52,52,53,93,44,91,45,55,54,46,57,56,54,54,49,44,51,55,46,48,52,57,54,57,55,93,44,91,45,55,55,46,49,53,53,52,49,53,44,51,55,46,49,49,50,48,51,52,93,44,91,45,55,55,46,51,57,56,52,57,56,44,51,54,46,57,57,50,57,56,53,93,44,91,45,55,55,46,54,49,57,48,50,57,44,51,54,46,56,55,55,56,52,52,93,44,91,45,55,55,46,53,49,48,51,54,44,51,54,46,56,52,53,48,56,50,93,44,91,45,55,55,46,52,51,48,49,50,55,44,51,54,46,55,48,55,54,53,56,93,44,91,45,55,54,46,57,53,51,53,52,54,44,51,54,46,57,52,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,83,116,46,32,74,111,115,101,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,50,52,48,44,34,98,101,100,115,34,58,56,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,50,54,48,57,53,44,52,49,46,55,54,48,52,48,54,93,44,91,45,56,54,46,53,50,52,50,49,55,44,52,49,46,55,53,57,54,53,57,93,44,91,45,56,54,46,52,56,54,52,51,51,44,52,49,46,53,55,48,53,52,53,93,44,91,45,56,54,46,53,50,52,55,49,49,44,52,49,46,52,51,50,56,56,54,93,44,91,45,56,54,46,52,54,54,54,48,51,44,52,49,46,52,51,50,57,54,56,93,44,91,45,56,54,46,52,54,55,49,48,56,44,52,49,46,52,55,54,52,53,57,93,44,91,45,56,54,46,48,53,57,52,53,49,44,52,49,46,52,55,57,49,53,52,93,44,91,45,56,54,46,48,54,50,53,55,53,44,52,49,46,55,54,48,53,49,51,93,44,91,45,56,54,46,50,50,54,48,57,53,44,52,49,46,55,54,48,52,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,80,101,109,98,105,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,49,54,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,53,48,48,49,50,44,52,57,46,48,48,48,52,57,50,93,44,91,45,57,55,46,57,50,55,48,54,57,44,52,56,46,53,52,51,49,50,52,93,44,91,45,57,55,46,49,54,49,51,57,51,44,52,56,46,53,52,50,51,52,56,93,44,91,45,57,55,46,49,54,51,51,53,53,44,52,56,46,53,52,51,57,54,55,93,44,91,45,57,55,46,49,48,53,52,52,50,44,52,56,46,54,56,57,54,52,56,93,44,91,45,57,55,46,50,51,52,49,50,56,44,52,56,46,57,52,55,56,57,56,93,44,91,45,57,55,46,50,50,56,55,50,50,44,52,57,46,48,48,48,53,54,50,93,44,91,45,57,55,46,57,53,48,48,49,50,44,52,57,46,48,48,48,52,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,110,110,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,51,55,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,56,50,52,56,54,44,52,50,46,57,57,57,51,53,53,93,44,91,45,49,48,49,46,50,50,56,48,49,51,44,52,50,46,57,57,56,49,51,54,93,44,91,45,49,48,49,46,50,50,56,50,51,52,44,52,51,46,51,56,57,49,56,53,93,44,91,45,49,48,50,46,49,49,48,56,49,57,44,52,51,46,51,56,57,57,48,50,93,44,91,45,49,48,50,46,49,48,56,56,57,50,44,52,51,46,49,50,57,50,53,56,93,44,91,45,49,48,50,46,48,56,50,52,56,54,44,52,50,46,57,57,57,51,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,86,101,114,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,48,48,55,44,34,98,101,100,115,34,58,49,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,51,54,49,48,52,44,51,49,46,51,54,52,53,48,55,93,44,91,45,57,51,46,51,57,48,52,57,53,44,51,49,46,51,54,52,49,52,55,93,44,91,45,57,51,46,52,52,50,53,53,52,44,51,49,46,50,55,54,55,49,54,93,44,91,45,57,51,46,53,51,52,57,49,57,44,51,49,46,50,55,54,53,55,57,93,44,91,45,57,51,46,53,53,50,53,50,52,44,51,49,46,49,56,53,52,48,53,93,44,91,45,57,51,46,53,50,52,55,51,57,44,51,49,46,48,51,57,48,48,55,93,44,91,45,57,51,46,53,53,56,53,57,54,44,51,48,46,56,54,56,56,50,50,93,44,91,45,57,51,46,52,50,49,49,48,50,44,51,48,46,56,56,51,49,51,56,93,44,91,45,57,50,46,57,55,56,52,53,51,44,51,48,46,56,55,56,49,55,53,93,44,91,45,57,50,46,56,50,51,57,51,50,44,51,48,46,56,57,93,44,91,45,57,50,46,56,50,57,54,53,49,44,51,49,46,50,53,50,50,56,49,93,44,91,45,57,50,46,57,56,49,52,54,52,44,51,49,46,51,52,54,54,52,52,93,44,91,45,57,51,46,50,51,54,49,48,52,44,51,49,46,51,54,52,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,80,101,110,111,98,115,99,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,55,52,56,44,34,98,101,100,115,34,58,55,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,56,46,56,49,57,52,48,49,44,52,54,46,51,57,53,55,56,50,93,44,91,45,54,56,46,56,50,55,48,51,57,44,52,53,46,54,56,52,56,50,54,93,44,91,45,54,56,46,57,53,56,57,49,44,52,53,46,54,54,50,49,57,53,93,44,91,45,54,56,46,57,54,52,54,53,51,44,52,53,46,53,49,50,51,54,55,93,44,91,45,54,56,46,56,53,55,50,57,55,44,52,53,46,53,50,55,51,48,49,93,44,91,45,54,56,46,55,55,54,48,54,49,44,52,53,46,50,52,48,51,49,55,93,44,91,45,54,56,46,56,53,54,53,56,55,44,52,53,46,49,52,50,55,56,51,93,44,91,45,54,57,46,51,53,53,54,54,55,44,52,53,46,48,55,51,52,54,57,93,44,91,45,54,57,46,50,54,54,55,56,53,44,52,52,46,55,50,49,57,50,56,93,44,91,45,54,57,46,49,56,51,55,51,50,44,52,52,46,54,52,52,48,50,51,93,44,91,45,54,56,46,56,49,53,55,57,51,44,52,52,46,54,56,51,55,53,52,93,44,91,45,54,56,46,52,52,53,50,49,57,44,52,52,46,55,54,51,48,49,52,93,44,91,45,54,56,46,53,48,49,48,57,53,44,52,52,46,57,56,48,55,49,56,93,44,91,45,54,56,46,51,55,53,56,57,50,44,52,52,46,57,57,55,51,55,51,93,44,91,45,54,56,46,51,57,54,57,48,51,44,52,53,46,48,56,51,50,57,54,93,44,91,45,54,56,46,50,55,48,52,57,55,44,52,53,46,49,48,48,49,50,49,93,44,91,45,54,56,46,51,48,51,55,49,52,44,52,53,46,50,50,49,53,51,49,93,44,91,45,54,56,46,48,53,52,57,56,53,44,52,53,46,50,53,50,53,55,55,93,44,91,45,54,55,46,57,51,57,55,54,44,52,53,46,50,54,55,56,52,53,93,44,91,45,54,56,46,48,52,56,48,49,50,44,52,53,46,54,51,57,56,57,55,93,44,91,45,54,56,46,52,51,51,48,50,56,44,52,53,46,53,55,56,52,56,50,93,44,91,45,54,56,46,52,50,54,49,54,57,44,52,53,46,56,55,48,56,50,57,93,44,91,45,54,56,46,52,51,54,52,52,51,44,52,54,46,51,56,50,49,50,49,93,44,91,45,54,56,46,56,49,57,52,48,49,44,52,54,46,51,57,53,55,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,84,97,108,98,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,49,49,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,57,52,57,51,51,53,44,51,56,46,57,49,56,51,51,51,93,44,91,45,55,54,46,52,51,54,52,57,50,44,51,56,46,56,48,55,51,57,55,93,44,91,45,55,54,46,52,54,51,54,51,54,44,51,56,46,55,49,49,48,57,57,93,44,91,45,55,54,46,52,51,56,56,49,52,44,51,56,46,53,55,53,51,51,54,93,44,91,45,55,54,46,50,52,48,49,53,44,51,56,46,54,54,51,50,48,52,93,44,91,45,55,54,46,48,50,51,52,52,53,44,51,56,46,53,55,51,56,55,53,93,44,91,45,55,53,46,57,52,53,50,52,56,44,51,56,46,54,55,52,49,48,57,93,44,91,45,55,54,46,48,49,53,48,52,53,44,51,56,46,55,50,56,54,56,55,93,44,91,45,55,53,46,56,57,54,55,55,52,44,51,56,46,56,49,53,49,48,57,93,44,91,45,55,53,46,57,52,57,51,51,53,44,51,56,46,57,49,56,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,55,34,44,34,78,65,77,69,34,58,34,83,116,101,112,104,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,55,54,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,51,56,50,51,52,44,51,52,46,54,56,55,49,56,55,93,44,91,45,56,51,46,52,53,57,55,55,44,51,52,46,52,56,49,49,52,50,93,44,91,45,56,51,46,51,57,56,51,57,54,44,51,52,46,52,54,48,56,56,51,93,44,91,45,56,51,46,49,55,55,56,51,56,44,51,52,46,52,55,55,48,49,55,93,44,91,45,56,51,46,49,48,51,54,55,51,44,51,52,46,53,51,54,54,49,55,93,44,91,45,56,51,46,51,51,56,50,51,52,44,51,52,46,54,56,55,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,82,105,118,101,114,115,105,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,51,50,56,54,44,34,98,101,100,115,34,58,51,54,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,54,55,51,49,51,52,44,51,51,46,56,55,49,48,48,53,93,44,91,45,49,49,55,46,53,51,51,57,57,57,44,51,51,46,55,49,48,51,53,53,93,44,91,45,49,49,55,46,52,49,50,57,56,55,44,51,51,46,54,53,57,48,52,53,93,44,91,45,49,49,55,46,53,48,57,55,50,50,44,51,51,46,53,48,53,48,49,57,93,44,91,45,49,49,55,46,51,55,48,57,50,53,44,51,51,46,52,57,48,53,52,57,93,44,91,45,49,49,55,46,50,52,49,50,55,49,44,51,51,46,52,51,49,57,57,51,93,44,91,45,49,49,55,46,48,51,48,56,54,49,44,51,51,46,52,50,54,57,51,49,93,44,91,45,49,49,54,46,48,56,53,49,54,53,44,51,51,46,52,50,53,57,51,50,93,44,91,45,49,49,53,46,54,48,57,54,53,53,44,51,51,46,52,50,54,56,55,51,93,44,91,45,49,49,52,46,54,50,55,49,50,53,44,51,51,46,52,51,51,53,53,52,93,44,91,45,49,49,52,46,53,50,52,50,49,53,44,51,51,46,53,53,51,48,54,56,93,44,91,45,49,49,52,46,52,57,54,52,56,57,44,51,51,46,54,57,54,57,48,49,93,44,91,45,49,49,52,46,53,51,52,49,52,54,44,51,51,46,57,50,53,49,56,55,93,44,91,45,49,49,52,46,52,51,53,52,50,57,44,51,52,46,48,55,57,55,50,55,93,44,91,45,49,49,53,46,51,49,54,48,54,53,44,51,52,46,48,55,55,56,52,51,93,44,91,45,49,49,53,46,51,49,54,50,49,50,44,51,52,46,48,51,52,49,49,93,44,91,45,49,49,54,46,51,48,48,54,51,49,44,51,52,46,48,51,50,53,52,52,93,44,91,45,49,49,54,46,57,50,57,53,53,56,44,51,52,46,48,51,52,49,49,51,93,44,91,45,49,49,55,46,50,50,53,51,55,50,44,51,52,46,48,48,52,51,49,52,93,44,91,45,49,49,55,46,53,53,56,51,49,50,44,51,52,46,48,51,51,52,53,49,93,44,91,45,49,49,55,46,54,55,51,49,51,52,44,51,51,46,56,55,49,48,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,120,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,49,57,44,34,98,101,100,115,34,58,50,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,50,57,49,50,56,44,51,54,46,52,57,56,53,57,57,93,44,91,45,57,50,46,53,50,48,53,56,49,44,51,54,46,50,54,56,56,50,52,93,44,91,45,57,50,46,52,48,57,49,55,53,44,51,54,46,49,51,52,54,56,52,93,44,91,45,57,50,46,52,49,49,53,48,50,44,51,54,46,48,54,50,55,53,54,93,44,91,45,57,50,46,52,49,52,51,57,54,44,51,53,46,57,55,53,55,57,56,93,44,91,45,57,50,46,49,57,53,52,51,44,51,54,46,49,51,50,55,57,56,93,44,91,45,57,50,46,49,53,54,57,57,44,51,54,46,50,54,49,50,52,56,93,44,91,45,57,50,46,49,53,48,50,57,53,44,51,54,46,52,57,56,54,49,93,44,91,45,57,50,46,53,50,57,49,50,56,44,51,54,46,52,57,56,53,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,116,116,97,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,56,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,53,51,56,48,56,44,51,51,46,50,56,53,57,52,50,93,44,91,45,56,57,46,54,52,53,50,56,44,51,51,46,50,56,53,53,49,53,93,44,91,45,56,57,46,55,52,57,52,52,49,44,51,51,46,50,49,52,52,55,56,93,44,91,45,56,57,46,57,48,50,53,48,49,44,51,50,46,57,50,55,57,52,93,44,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,44,91,45,56,57,46,55,51,48,48,49,54,44,51,50,46,56,56,53,48,55,50,93,44,91,45,56,57,46,55,51,48,49,53,52,44,51,50,46,57,50,57,57,50,52,93,44,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,44,91,45,56,57,46,51,49,55,56,53,53,44,51,51,46,49,48,56,56,55,49,93,44,91,45,56,57,46,51,49,54,52,48,56,44,51,51,46,50,56,53,53,53,54,93,44,91,45,56,57,46,52,53,51,56,48,56,44,51,51,46,50,56,53,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,83,116,111,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,57,50,50,44,34,98,101,100,115,34,58,50,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,57,56,51,57,44,52,50,46,50,48,57,51,51,57,93,44,91,45,57,51,46,54,57,56,48,51,50,44,52,49,46,56,54,51,51,55,93,44,91,45,57,51,46,51,52,55,57,51,51,44,52,49,46,56,54,51,49,48,52,93,44,91,45,57,51,46,50,51,49,56,53,56,44,52,49,46,56,54,50,55,49,49,93,44,91,45,57,51,46,50,51,49,55,50,50,44,52,50,46,50,48,56,56,56,54,93,44,91,45,57,51,46,52,54,51,48,52,51,44,52,50,46,50,48,57,51,48,50,93,44,91,45,57,51,46,54,57,56,51,57,44,52,50,46,50,48,57,51,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,111,117,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,55,55,56,55,54,44,51,56,46,48,51,55,55,48,54,93,44,91,45,57,53,46,48,56,56,48,56,50,44,51,55,46,55,51,50,52,55,54,93,44,91,45,57,53,46,48,56,56,48,49,50,44,51,55,46,54,55,52,53,49,57,93,44,91,45,57,52,46,54,49,55,55,55,57,44,51,55,46,54,55,51,49,48,53,93,44,91,45,57,52,46,54,49,52,48,56,57,44,51,56,46,48,51,55,48,53,55,93,44,91,45,57,53,46,48,55,55,56,55,54,44,51,56,46,48,51,55,55,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,51,57,55,52,56,44,51,55,46,54,57,48,52,57,53,93,44,91,45,55,56,46,50,52,57,48,50,49,44,51,55,46,54,51,53,53,52,54,93,44,91,45,55,56,46,52,54,53,48,56,57,44,51,55,46,51,51,57,54,55,55,93,44,91,45,55,56,46,51,50,49,56,52,44,51,55,46,51,48,57,50,57,50,93,44,91,45,55,56,46,50,51,53,48,51,57,44,51,55,46,51,54,56,49,48,50,93,44,91,45,55,56,46,49,51,50,48,52,56,44,51,55,46,52,53,52,54,56,54,93,44,91,45,55,56,46,48,55,50,49,55,52,44,51,55,46,54,53,55,51,56,53,93,44,91,45,55,56,46,49,53,57,51,50,54,44,51,55,46,55,52,56,53,50,56,93,44,91,45,55,56,46,50,51,57,55,52,56,44,51,55,46,54,57,48,52,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,83,117,109,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,57,57,53,44,34,98,101,100,115,34,58,50,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,49,54,49,56,54,44,51,52,46,48,57,57,54,48,53,93,44,91,45,56,48,46,54,52,48,57,56,54,44,51,51,46,57,57,57,52,51,51,93,44,91,45,56,48,46,53,57,55,55,49,53,44,51,51,46,55,55,55,53,49,50,93,44,91,45,56,48,46,54,50,48,49,48,55,44,51,51,46,55,52,51,50,51,55,93,44,91,45,56,48,46,53,51,52,48,56,53,44,51,51,46,54,52,51,57,49,49,93,44,91,45,56,48,46,51,57,55,49,51,49,44,51,51,46,55,54,55,56,50,49,93,44,91,45,56,48,46,50,53,53,57,48,52,44,51,51,46,56,48,51,55,48,56,93,44,91,45,55,57,46,57,55,52,54,48,49,44,51,51,46,57,52,54,53,50,55,93,44,91,45,56,48,46,48,48,48,53,57,52,44,51,52,46,48,52,55,56,55,55,93,44,91,45,56,48,46,49,56,48,51,55,49,44,51,51,46,57,53,50,48,48,50,93,44,91,45,56,48,46,51,50,49,55,50,49,44,51,52,46,48,56,48,51,53,54,93,44,91,45,56,48,46,52,56,49,51,49,56,44,51,52,46,49,49,50,54,50,50,93,44,91,45,56,48,46,52,55,57,56,53,55,44,51,52,46,49,54,56,54,57,54,93,44,91,45,56,48,46,54,49,54,49,56,54,44,51,52,46,48,57,57,54,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,54,52,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,52,34,44,34,78,65,77,69,34,58,34,76,97,107,101,32,97,110,100,32,80,101,110,105,110,115,117,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,56,46,56,57,51,53,56,53,44,53,54,46,57,52,53,48,53,57,93,44,91,45,49,53,56,46,56,57,51,54,48,55,44,53,54,46,55,53,52,52,48,52,93,44,91,45,49,53,57,46,48,53,49,48,56,57,44,53,54,46,54,54,55,54,56,55,93,44,91,45,49,53,57,46,50,55,53,57,51,50,44,53,54,46,54,54,55,54,56,50,93,44,91,45,49,53,57,46,50,55,53,57,50,56,44,53,54,46,53,56,48,57,54,55,93,44,91,45,49,53,57,46,53,56,56,48,52,49,44,53,54,46,53,56,48,57,54,49,93,44,91,45,49,53,57,46,53,56,56,48,51,54,44,53,54,46,52,57,52,50,52,53,93,44,91,45,49,53,57,46,57,48,48,49,52,57,44,53,54,46,52,57,52,50,51,57,93,44,91,45,49,53,57,46,57,48,48,49,51,51,44,53,54,46,51,50,48,56,48,51,93,44,91,45,49,53,57,46,56,48,54,51,56,57,44,53,54,46,51,50,48,56,48,53,93,44,91,45,49,53,57,46,56,48,54,52,48,54,44,53,53,46,57,55,51,57,49,57,93,44,91,45,49,53,57,46,56,54,55,57,55,49,44,53,53,46,56,56,55,49,57,51,93,44,91,45,49,53,57,46,53,54,49,51,54,44,53,53,46,56,56,55,49,57,55,93,44,91,45,49,53,57,46,53,54,49,52,53,49,44,53,53,46,54,51,56,52,52,51,93,44,91,45,49,53,57,46,52,52,54,56,54,56,44,53,53,46,54,51,56,53,51,49,93,44,91,45,49,53,56,44,53,53,46,54,51,57,52,52,52,93,44,91,45,49,53,55,46,48,49,49,51,56,57,44,53,54,46,50,57,54,51,50,56,93,44,91,45,49,53,54,46,51,50,56,54,49,49,44,53,54,46,55,53,93,44,91,45,49,53,54,46,51,50,56,48,50,51,44,53,55,46,48,53,51,50,56,56,93,44,91,45,49,53,54,46,51,53,53,51,57,50,44,53,55,46,49,53,57,57,51,49,93,44,91,45,49,53,54,46,55,53,48,56,49,53,44,53,55,46,49,54,50,56,55,56,93,44,91,45,49,53,54,46,55,53,48,55,56,44,53,55,46,50,51,53,55,57,53,93,44,91,45,49,53,54,46,51,55,48,50,51,53,44,53,55,46,53,50,50,51,54,56,93,44,91,45,49,53,54,46,50,48,56,48,50,49,44,53,55,46,53,50,50,57,54,51,93,44,91,45,49,53,53,46,55,54,56,48,50,50,44,53,55,46,54,54,56,50,54,49,93,44,91,45,49,53,53,46,54,57,51,55,55,51,44,53,55,46,55,57,55,57,56,55,93,44,91,45,49,53,53,46,53,51,56,56,51,44,53,55,46,55,57,57,56,48,54,93,44,91,45,49,53,53,46,51,51,48,50,52,53,44,53,55,46,56,55,54,51,52,51,93,44,91,45,49,53,53,46,51,51,49,57,52,53,44,53,56,46,49,57,51,50,56,51,93,44,91,45,49,53,53,46,48,53,55,55,52,49,44,53,56,46,50,51,54,50,48,57,93,44,91,45,49,53,53,46,48,48,56,49,51,50,44,53,56,46,50,57,48,57,48,53,93,44,91,45,49,53,52,46,55,51,48,51,54,57,44,53,56,46,51,48,52,54,54,57,93,44,91,45,49,53,52,46,52,54,53,55,52,49,44,53,56,46,51,54,49,51,53,54,93,44,91,45,49,53,52,46,51,48,51,52,52,55,44,53,56,46,52,54,48,51,56,53,93,44,91,45,49,53,52,46,51,48,53,54,57,49,44,53,56,46,54,53,50,55,53,49,93,44,91,45,49,53,52,46,54,52,50,53,52,53,44,53,56,46,54,53,50,55,52,55,93,44,91,45,49,53,52,46,54,57,53,48,51,54,44,53,56,46,55,51,57,52,51,49,93,44,91,45,49,53,52,46,54,57,53,49,48,53,44,53,57,46,48,56,54,49,53,57,93,44,91,45,49,53,52,46,55,52,56,56,54,49,44,53,57,46,50,53,57,53,49,56,93,44,91,45,49,53,52,46,52,49,50,48,49,51,44,53,57,46,50,53,57,53,50,52,93,44,91,45,49,53,52,46,52,49,50,48,50,56,44,53,57,46,52,51,50,56,56,50,93,44,91,45,49,53,52,46,49,50,51,51,50,49,44,53,57,46,52,51,50,56,56,55,93,44,91,45,49,53,51,46,57,53,51,49,56,49,44,53,57,46,53,49,57,53,54,57,93,44,91,45,49,53,51,46,57,53,51,49,57,56,44,53,57,46,54,57,50,57,49,56,93,44,91,45,49,53,51,46,55,56,51,48,54,56,44,53,57,46,54,57,50,57,50,54,93,44,91,45,49,53,51,46,54,53,54,57,55,55,44,53,57,46,55,55,57,54,48,55,93,44,91,45,49,53,51,46,54,53,54,57,56,44,54,48,46,49,50,54,50,55,55,93,44,91,45,49,53,51,46,53,50,56,51,57,50,44,54,48,46,49,50,54,50,56,49,93,44,91,45,49,53,51,46,53,50,56,52,52,49,44,54,48,46,52,55,50,57,51,57,93,44,91,45,49,53,51,46,51,57,55,50,55,54,44,54,48,46,52,55,50,57,52,56,93,44,91,45,49,53,51,46,51,57,55,50,56,52,44,54,48,46,56,49,57,53,56,49,93,44,91,45,49,53,51,46,52,52,48,56,56,52,44,54,48,46,57,48,54,50,51,54,93,44,91,45,49,53,52,46,54,49,52,50,49,53,44,54,48,46,57,48,54,50,48,52,93,44,91,45,49,53,54,46,48,48,48,48,56,54,44,54,48,46,57,48,54,49,57,93,44,91,45,49,53,54,46,48,48,48,49,52,53,44,53,57,46,54,57,50,56,55,57,93,44,91,45,49,53,54,46,49,54,53,48,54,54,44,53,57,46,54,48,54,50,48,50,93,44,91,45,49,53,54,46,53,48,53,51,52,57,44,53,57,46,54,48,54,49,57,57,93,44,91,45,49,53,54,46,54,55,53,52,56,57,44,53,57,46,53,49,57,53,50,49,93,44,91,45,49,53,54,46,55,54,57,57,54,53,44,53,57,46,51,52,54,49,54,54,93,44,91,45,49,53,55,46,49,48,54,56,49,52,44,53,57,46,51,52,54,49,54,50,93,44,91,45,49,53,55,46,50,55,53,50,51,51,44,53,57,46,50,53,57,52,56,50,93,44,91,45,49,53,55,46,49,57,54,51,48,54,44,53,57,46,48,56,54,49,50,50,93,44,91,45,49,53,55,46,49,57,54,50,57,50,44,53,56,46,56,52,54,50,52,57,93,44,91,45,49,53,55,46,48,52,53,52,57,54,44,53,56,46,56,56,53,56,51,51,93,44,91,45,49,53,54,46,51,49,51,56,56,57,44,53,56,46,56,56,53,56,51,51,93,44,91,45,49,53,54,46,51,49,51,56,56,57,44,53,56,46,54,49,54,54,54,54,93,44,91,45,49,53,56,44,53,56,46,54,49,54,54,54,55,93,44,91,45,49,53,56,46,48,54,57,56,50,50,44,53,56,46,52,57,48,51,49,55,93,44,91,45,49,53,56,46,51,54,49,52,44,53,55,46,57,54,50,54,56,54,93,44,91,45,49,53,56,46,56,57,51,52,56,50,44,53,54,46,57,57,57,56,52,49,93,44,91,45,49,53,56,46,56,57,51,53,56,53,44,53,54,46,57,52,53,48,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,48,50,57,51,55,44,51,55,46,54,54,48,53,48,56,93,44,91,45,56,49,46,56,53,53,57,51,57,44,51,55,46,53,52,56,57,49,93,44,91,45,56,49,46,55,50,57,52,51,51,44,51,55,46,52,57,52,53,56,53,93,44,91,45,56,49,46,54,53,52,52,51,49,44,51,55,46,53,50,51,51,49,50,93,44,91,45,56,49,46,51,49,49,50,48,49,44,51,55,46,52,50,52,53,48,57,93,44,91,45,56,49,46,50,50,50,49,50,49,44,51,55,46,53,49,48,52,49,54,93,44,91,45,56,49,46,51,48,52,49,51,44,51,55,46,53,52,54,53,54,52,93,44,91,45,56,49,46,52,50,55,55,56,49,44,51,55,46,55,52,57,51,53,50,93,44,91,45,56,49,46,53,49,52,50,50,56,44,51,55,46,55,57,49,50,49,49,93,44,91,45,56,49,46,54,48,55,53,51,50,44,51,55,46,55,56,56,55,48,57,93,44,91,45,56,49,46,55,54,52,55,51,55,44,51,55,46,55,53,50,49,48,56,93,44,91,45,56,49,46,56,48,50,57,51,55,44,51,55,46,54,54,48,53,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,75,101,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,51,48,53,51,44,34,98,101,100,115,34,58,49,53,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,49,57,52,49,52,54,44,51,53,46,55,56,57,50,48,52,93,44,91,45,49,50,48,46,49,57,51,57,49,56,44,51,53,46,54,49,52,51,53,57,93,44,91,45,49,50,48,46,48,56,54,54,55,52,44,51,53,46,53,50,54,53,53,52,93,44,91,45,49,49,57,46,56,56,48,48,52,53,44,51,53,46,52,51,57,49,51,51,93,44,91,45,49,49,57,46,56,56,48,49,55,50,44,51,53,46,51,53,49,50,49,49,93,44,91,45,49,49,57,46,56,48,57,52,52,57,44,51,53,46,50,54,51,53,56,52,93,44,91,45,49,49,57,46,54,54,54,54,54,51,44,51,53,46,50,54,50,53,50,55,93,44,91,45,49,49,57,46,54,54,55,48,53,54,44,51,53,46,49,55,52,56,48,57,93,44,91,45,49,49,57,46,53,53,51,54,52,49,44,51,53,46,49,55,57,57,55,53,93,44,91,45,49,49,57,46,52,55,50,55,49,57,44,51,53,46,48,55,54,56,56,53,93,44,91,45,49,49,57,46,52,55,50,55,53,52,44,51,52,46,57,48,49,49,55,52,93,44,91,45,49,49,57,46,52,52,50,51,53,50,44,51,52,46,57,48,49,50,55,52,93,44,91,45,49,49,57,46,50,55,54,57,52,54,44,51,52,46,56,55,57,54,55,53,93,44,91,45,49,49,57,46,50,52,51,54,52,53,44,51,52,46,56,49,52,49,55,56,93,44,91,45,49,49,56,46,56,56,49,51,54,52,44,51,52,46,55,57,48,54,50,57,93,44,91,45,49,49,56,46,56,53,52,48,49,44,51,52,46,56,49,55,51,51,57,93,44,91,45,49,49,55,46,54,54,55,50,57,50,44,51,52,46,56,50,50,53,50,54,93,44,91,45,49,49,55,46,54,51,50,48,49,49,44,51,52,46,56,50,50,50,55,93,44,91,45,49,49,55,46,54,51,50,57,57,54,44,51,53,46,55,57,55,50,53,49,93,44,91,45,49,49,56,46,48,48,56,48,52,51,44,51,53,46,55,56,57,49,54,49,93,44,91,45,49,49,56,46,54,50,57,57,55,53,44,51,53,46,55,56,57,53,56,93,44,91,45,49,49,57,46,53,51,56,49,49,54,44,51,53,46,55,56,57,53,54,55,93,44,91,45,49,50,48,46,49,57,52,49,52,54,44,51,53,46,55,56,57,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,67,111,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,53,55,49,44,34,98,101,100,115,34,58,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,52,52,54,49,49,44,51,51,46,57,52,57,50,49,55,93,44,91,45,57,55,46,48,57,53,54,52,52,44,51,51,46,55,50,57,50,50,50,93,44,91,45,57,55,46,49,53,52,51,54,55,44,51,51,46,55,50,52,48,57,52,93,44,91,45,57,55,46,50,53,53,54,51,57,44,51,51,46,56,54,51,55,48,50,93,44,91,45,57,55,46,51,55,52,54,57,44,51,51,46,56,49,56,53,53,50,93,44,91,45,57,55,46,52,56,52,49,54,51,44,51,51,46,57,49,53,53,49,93,44,91,45,57,55,46,52,56,55,48,54,53,44,51,51,46,52,51,51,54,56,49,93,44,91,45,57,55,46,51,56,51,48,57,53,44,51,51,46,52,51,48,52,53,93,44,91,45,57,54,46,57,52,51,56,54,44,51,51,46,52,49,54,52,49,93,44,91,45,57,54,46,57,52,52,54,49,49,44,51,51,46,57,52,57,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,52,53,52,44,34,98,101,100,115,34,58,51,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,50,50,54,55,51,44,51,51,46,52,52,93,44,91,45,56,48,46,57,52,56,55,53,54,44,51,51,46,51,48,56,48,52,55,93,44,91,45,56,48,46,55,57,55,57,49,50,44,51,51,46,49,55,54,57,52,52,93,44,91,45,56,48,46,55,57,48,50,57,54,44,51,51,46,49,56,48,56,52,93,44,91,45,56,48,46,53,48,50,55,57,44,51,51,46,51,51,52,52,57,54,93,44,91,45,56,48,46,51,54,49,56,53,49,44,51,51,46,50,53,55,52,52,51,93,44,91,45,56,48,46,50,53,53,54,52,50,44,51,51,46,51,48,48,48,48,50,93,44,91,45,56,48,46,50,50,50,50,54,55,44,51,51,46,52,52,51,55,49,54,93,44,91,45,56,48,46,51,53,52,53,51,57,44,51,51,46,52,51,48,52,48,56,93,44,91,45,56,48,46,52,57,54,50,55,51,44,51,51,46,53,53,56,52,56,49,93,44,91,45,56,48,46,54,53,57,48,50,44,51,51,46,52,55,48,57,56,50,93,44,91,45,56,48,46,56,48,55,54,51,49,44,51,51,46,54,48,52,48,56,49,93,44,91,45,56,48,46,57,54,53,52,56,57,44,51,51,46,54,50,53,50,56,50,93,44,91,45,56,49,46,48,52,50,56,53,52,44,51,51,46,55,48,55,49,51,49,93,44,91,45,56,49,46,49,56,55,50,55,49,44,51,51,46,54,53,50,57,51,55,93,44,91,45,56,49,46,51,55,50,57,51,49,44,51,51,46,52,57,48,52,49,55,93,44,91,45,56,49,46,50,50,50,54,55,51,44,51,51,46,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,53,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,50,53,50,50,50,44,52,53,46,50,57,50,48,54,49,93,44,91,45,57,48,46,57,50,51,51,54,50,44,52,53,46,48,51,49,49,52,51,93,44,91,45,57,48,46,51,49,53,48,51,56,44,52,53,46,48,51,51,56,50,57,93,44,91,45,57,48,46,49,57,55,55,54,53,44,52,53,46,49,50,48,54,48,52,93,44,91,45,57,48,46,48,52,51,54,56,53,44,52,53,46,49,50,48,50,49,52,93,44,91,45,57,48,46,48,52,50,50,55,51,44,52,53,46,51,56,49,56,54,54,93,44,91,45,57,48,46,54,55,56,55,55,51,44,52,53,46,51,55,55,57,48,55,93,44,91,45,57,48,46,57,50,53,51,52,51,44,52,53,46,51,55,57,51,53,93,44,91,45,57,48,46,57,50,53,50,50,50,44,52,53,46,50,57,50,48,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,111,119,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,52,57,53,50,52,44,52,51,46,56,52,56,52,52,51,93,44,91,45,57,51,46,48,52,57,49,57,50,44,52,51,46,52,57,57,55,48,53,93,44,91,45,57,51,46,48,50,52,51,52,53,44,52,51,46,52,57,57,55,51,51,93,44,91,45,57,50,46,53,53,51,49,50,56,44,52,51,46,53,48,48,50,49,56,93,44,91,45,57,50,46,52,52,56,57,52,56,44,52,51,46,53,48,48,52,53,57,93,44,91,45,57,50,46,52,52,56,57,54,53,44,52,51,46,56,51,52,49,48,53,93,44,91,45,57,50,46,54,56,57,51,57,49,44,52,51,46,56,52,56,53,55,93,44,91,45,57,51,46,48,52,53,57,54,54,44,52,51,46,56,52,56,52,54,55,93,44,91,45,57,51,46,48,52,57,53,50,52,44,52,51,46,56,52,56,52,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,117,114,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,54,51,55,55,56,44,52,52,46,49,57,54,52,50,53,93,44,91,45,57,54,46,48,54,52,54,50,44,52,51,46,56,52,57,48,51,57,93,44,91,45,57,54,46,48,53,50,51,50,44,52,51,46,56,52,57,48,55,93,44,91,45,57,53,46,52,54,50,52,50,55,44,52,51,46,56,52,55,57,49,49,93,44,91,45,57,53,46,52,54,50,53,52,55,44,52,52,46,49,57,53,57,52,50,93,44,91,45,57,53,46,53,57,51,53,55,44,52,52,46,49,57,53,53,51,93,44,91,45,57,54,46,48,54,51,55,55,56,44,52,52,46,49,57,54,52,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,52,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,80,114,111,118,105,100,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,82,104,111,100,101,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,82,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,52,53,51,51,44,34,98,101,100,115,34,58,50,56,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,55,57,57,49,56,56,44,52,50,46,48,48,56,48,53,51,93,44,91,45,55,49,46,55,56,57,55,48,52,44,52,49,46,55,50,53,49,57,56,93,44,91,45,55,49,46,51,54,53,50,48,55,44,52,49,46,55,51,53,54,52,57,93,44,91,45,55,49,46,51,49,55,56,55,51,44,52,49,46,55,55,54,49,57,57,93,44,91,45,55,49,46,51,56,49,50,57,57,44,52,49,46,57,56,53,48,56,52,93,44,91,45,55,49,46,52,57,56,50,53,57,44,52,50,46,48,49,55,50,55,50,93,44,91,45,55,49,46,55,57,57,49,56,56,44,52,50,46,48,48,56,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,80,104,101,108,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,55,56,57,44,34,98,101,100,115,34,58,50,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,51,48,53,53,52,44,51,56,46,49,53,51,53,49,57,93,44,91,45,57,49,46,54,51,50,52,51,49,44,51,56,46,48,53,48,57,53,49,93,44,91,45,57,49,46,56,57,53,51,52,55,44,51,56,46,48,53,49,49,57,57,93,44,91,45,57,50,46,48,50,49,49,54,53,44,51,56,46,48,49,48,54,51,57,93,44,91,45,57,50,46,48,50,57,50,53,56,44,51,55,46,54,48,50,53,52,50,93,44,91,45,57,49,46,56,48,57,49,48,53,44,51,55,46,53,57,56,56,54,51,93,44,91,45,57,49,46,56,48,54,50,49,57,44,51,55,46,55,57,49,50,56,54,93,44,91,45,57,49,46,53,50,56,55,57,55,44,51,55,46,55,56,56,57,56,57,93,44,91,45,57,49,46,53,51,52,51,56,52,44,51,56,46,49,53,50,53,57,51,93,44,91,45,57,49,46,54,51,48,53,53,52,44,51,56,46,49,53,51,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,80,114,101,110,116,105,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,54,48,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,49,56,53,48,56,44,51,52,46,55,53,54,55,56,49,93,44,91,45,56,56,46,55,51,53,52,52,44,51,52,46,53,57,54,52,56,51,93,44,91,45,56,56,46,55,51,54,52,54,53,44,51,52,46,53,48,56,57,49,93,44,91,45,56,56,46,53,52,50,48,55,57,44,51,52,46,52,54,53,50,55,54,93,44,91,45,56,56,46,51,50,57,49,57,51,44,51,52,46,52,54,51,53,55,49,93,44,91,45,56,56,46,51,51,48,54,57,57,44,51,52,46,55,52,48,55,50,49,93,44,91,45,56,56,46,51,54,53,52,55,50,44,51,52,46,55,53,53,54,48,52,93,44,91,45,56,56,46,55,49,56,53,48,56,44,51,52,46,55,53,54,55,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,53,34,44,34,78,65,77,69,34,58,34,87,104,105,116,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,48,56,57,44,34,98,101,100,115,34,58,51,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,57,55,52,49,54,44,51,54,46,57,52,53,57,51,49,93,44,91,45,56,52,46,51,53,48,48,48,54,44,51,54,46,55,56,48,54,56,49,93,44,91,45,56,52,46,50,50,55,50,57,50,44,51,54,46,53,57,50,48,52,53,93,44,91,45,56,51,46,57,56,55,54,49,53,44,51,54,46,53,56,57,52,55,49,93,44,91,45,56,51,46,57,51,48,55,54,50,44,51,54,46,53,56,55,54,57,49,93,44,91,45,56,51,46,56,55,55,53,48,51,44,51,54,46,54,56,55,50,53,57,93,44,91,45,56,51,46,57,53,56,53,51,52,44,51,54,46,55,50,55,50,52,53,93,44,91,45,56,52,46,48,54,53,55,53,53,44,51,54,46,56,53,51,57,54,49,93,44,91,45,56,52,46,48,57,49,56,53,51,44,51,54,46,57,53,53,57,57,50,93,44,91,45,56,52,46,50,57,55,52,49,54,44,51,54,46,57,52,53,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,83,116,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,57,52,49,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,50,52,55,49,49,44,52,49,46,52,51,50,56,56,54,93,44,91,45,56,54,46,55,48,48,54,51,44,52,49,46,52,48,49,57,56,50,93,44,91,45,56,54,46,55,56,51,52,55,51,44,52,49,46,50,56,53,52,54,53,93,44,91,45,56,54,46,57,51,48,48,55,57,44,52,49,46,50,51,54,55,57,56,93,44,91,45,56,54,46,57,51,48,49,55,44,52,49,46,49,55,50,51,49,56,93,44,91,45,56,54,46,52,54,55,48,52,54,44,52,49,46,49,55,49,52,52,50,93,44,91,45,56,54,46,52,54,54,54,48,51,44,52,49,46,52,51,50,57,54,56,93,44,91,45,56,54,46,53,50,52,55,49,49,44,52,49,46,52,51,50,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,57,49,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,48,53,55,44,34,98,101,100,115,34,58,57,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,50,56,53,49,50,44,51,48,46,57,48,54,49,56,56,93,44,91,45,57,55,46,57,54,50,56,54,44,51,48,46,55,56,53,54,52,49,93,44,91,45,57,56,46,48,52,57,56,56,54,44,51,48,46,54,50,52,49,53,53,93,44,91,45,57,55,46,57,53,54,55,51,52,44,51,48,46,54,50,56,50,52,57,93,44,91,45,57,55,46,56,49,49,56,54,51,44,51,48,46,52,52,55,48,49,56,93,44,91,45,57,55,46,53,57,54,50,51,54,44,51,48,46,53,48,49,53,49,51,93,44,91,45,57,55,46,51,54,57,53,51,57,44,51,48,46,52,49,57,53,54,51,93,44,91,45,57,55,46,51,51,52,52,54,51,44,51,48,46,52,48,50,56,52,51,93,44,91,45,57,55,46,49,53,53,50,49,57,44,51,48,46,52,53,55,51,52,52,93,44,91,45,57,55,46,50,55,49,52,49,56,44,51,48,46,55,51,53,54,57,50,93,44,91,45,57,55,46,51,49,53,53,48,55,44,51,48,46,55,53,50,51,55,49,93,44,91,45,57,55,46,54,50,53,50,56,56,44,51,48,46,56,55,48,52,51,93,44,91,45,57,55,46,56,50,56,53,49,50,44,51,48,46,57,48,54,49,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,80,97,116,105,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,51,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,56,50,50,54,51,44,49,56,46,48,51,50,57,53,56,93,44,91,45,54,53,46,57,56,55,53,53,49,44,49,55,46,57,48,56,57,50,51,93,44,91,45,54,53,46,56,55,51,50,57,57,44,49,55,46,57,51,55,57,53,53,93,44,91,45,54,53,46,57,56,56,53,50,51,44,49,56,46,48,53,56,57,52,49,93,44,91,45,54,54,46,48,49,48,50,52,53,44,49,56,46,48,55,53,53,54,53,93,44,91,45,54,54,46,48,53,49,55,56,56,44,49,56,46,49,48,57,56,55,56,93,44,91,45,54,54,46,48,53,51,49,52,54,44,49,56,46,49,48,55,50,57,51,93,44,91,45,54,54,46,48,56,50,50,54,51,44,49,56,46,48,51,50,57,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,77,105,116,99,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,51,49,50,56,44,52,51,46,53,48,48,50,49,56,93,44,91,45,57,51,46,48,50,52,51,52,53,44,52,51,46,52,57,57,55,51,51,93,44,91,45,57,51,46,48,50,52,49,52,51,44,52,51,46,50,53,53,53,51,56,93,44,91,45,57,51,46,48,50,52,48,57,50,44,52,51,46,50,49,50,56,49,50,93,44,91,45,57,50,46,53,53,52,51,56,49,44,52,51,46,50,49,50,56,49,51,93,44,91,45,57,50,46,53,53,51,49,50,56,44,52,51,46,53,48,48,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,69,109,97,110,117,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,57,57,44,34,98,101,100,115,34,58,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,52,49,52,57,44,51,50,46,55,54,50,50,53,56,93,44,91,45,56,50,46,52,54,57,56,50,51,44,51,50,46,54,53,48,56,56,50,93,44,91,45,56,50,46,54,52,55,55,51,51,44,51,50,46,53,49,50,53,48,55,93,44,91,45,56,50,46,52,57,57,57,55,49,44,51,50,46,52,57,56,51,55,56,93,44,91,45,56,50,46,51,56,54,49,48,54,44,51,50,46,52,52,48,51,55,93,44,91,45,56,50,46,52,48,57,49,49,56,44,51,50,46,51,53,51,56,51,93,44,91,45,56,50,46,51,53,52,53,52,54,44,51,50,46,50,57,50,49,57,52,93,44,91,45,56,50,46,50,51,50,55,56,56,44,51,50,46,51,49,56,56,51,56,93,44,91,45,56,50,46,50,53,50,55,53,55,44,51,50,46,51,53,51,51,49,93,44,91,45,56,50,46,49,52,56,51,51,56,44,51,50,46,53,50,48,52,50,57,93,44,91,45,56,50,46,48,51,48,50,51,51,44,51,50,46,53,51,56,55,55,93,44,91,45,56,50,46,48,48,49,50,51,54,44,51,50,46,54,48,54,57,49,93,44,91,45,56,50,46,48,56,50,52,52,44,51,50,46,54,54,51,48,54,49,93,44,91,45,56,50,46,49,52,52,57,55,55,44,51,50,46,56,49,50,55,52,49,93,44,91,45,56,50,46,51,49,54,53,49,50,44,51,50,46,56,51,53,55,55,50,93,44,91,45,56,50,46,52,51,52,49,52,57,44,51,50,46,55,54,50,50,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,116,97,104,111,117,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,55,53,55,50,49,44,51,49,46,56,56,50,53,54,93,44,91,45,57,49,46,54,52,54,48,52,44,51,49,46,57,54,49,49,52,49,93,44,91,45,57,49,46,55,55,57,57,50,56,44,51,49,46,56,56,49,52,56,49,93,44,91,45,57,49,46,56,56,57,54,56,55,44,51,49,46,57,55,49,52,55,52,93,44,91,45,57,50,46,48,48,53,52,51,52,44,51,49,46,57,50,55,50,57,54,93,44,91,45,57,50,46,48,48,56,49,50,49,44,51,49,46,51,50,53,55,57,55,93,44,91,45,57,49,46,56,51,52,50,56,44,51,49,46,50,54,54,51,52,52,93,44,91,45,57,49,46,56,53,53,57,48,56,44,51,49,46,52,57,54,48,49,93,44,91,45,57,49,46,56,50,54,57,50,54,44,51,49,46,53,57,49,54,55,49,93,44,91,45,57,49,46,55,48,53,57,52,56,44,51,49,46,54,52,50,56,54,51,93,44,91,45,57,49,46,54,57,52,52,54,57,44,51,49,46,55,51,53,50,56,54,93,44,91,45,57,49,46,53,52,52,55,57,49,44,51,49,46,55,53,49,55,51,49,93,44,91,45,57,49,46,53,55,53,55,50,49,44,51,49,46,56,56,50,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,57,51,49,44,34,98,101,100,115,34,58,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,54,52,57,54,51,55,44,52,49,46,49,50,50,51,52,52,93,44,91,45,55,53,46,55,55,49,51,48,54,44,52,49,46,48,55,55,56,49,54,93,44,91,45,55,53,46,55,51,49,57,51,44,52,49,46,48,48,56,50,50,93,44,91,45,55,53,46,57,57,55,51,52,56,44,52,48,46,57,49,50,57,56,53,93,44,91,45,55,53,46,55,53,55,56,48,55,44,52,48,46,55,51,53,52,49,52,93,44,91,45,55,53,46,54,48,56,57,56,53,44,52,48,46,55,56,55,51,56,55,93,44,91,45,55,53,46,52,55,52,49,57,51,44,52,48,46,56,49,52,55,52,54,93,44,91,45,55,53,46,53,55,52,53,57,44,52,48,46,57,53,49,51,50,51,93,44,91,45,55,53,46,52,57,53,57,57,44,52,48,46,57,56,55,49,56,49,93,44,91,45,55,53,46,54,52,57,54,51,55,44,52,49,46,49,50,50,51,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,80,97,119,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,54,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,54,51,54,54,55,44,52,48,46,50,54,50,49,55,51,93,44,91,45,57,54,46,52,54,51,55,49,50,44,52,48,46,48,48,49,48,50,51,93,44,91,45,57,54,46,50,51,57,50,44,52,48,46,48,48,48,56,56,49,93,44,91,45,57,54,46,48,49,48,54,56,44,52,48,46,48,48,48,54,53,49,93,44,91,45,57,54,46,48,49,48,49,55,54,44,52,48,46,50,54,49,52,56,50,93,44,91,45,57,54,46,48,54,54,55,51,54,44,52,48,46,50,54,50,48,51,56,93,44,91,45,57,54,46,52,54,51,54,54,55,44,52,48,46,50,54,50,49,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,85,110,105,99,111,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,56,48,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,52,48,52,54,44,51,54,46,50,53,50,56,48,55,93,44,91,45,56,50,46,52,51,55,50,53,49,44,51,54,46,49,53,52,55,48,57,93,44,91,45,56,50,46,53,57,53,48,54,53,44,51,54,46,48,57,54,50,48,53,93,44,91,45,56,50,46,54,48,50,57,56,44,51,54,46,48,51,57,54,55,55,93,44,91,45,56,50,46,53,48,53,52,50,53,44,51,53,46,57,55,55,52,51,50,93,44,91,45,56,50,46,52,49,54,55,51,56,44,51,54,46,48,55,50,56,50,55,93,44,91,45,56,50,46,50,50,50,48,54,52,44,51,54,46,49,53,54,57,54,93,44,91,45,56,50,46,51,52,48,52,54,44,51,54,46,50,53,50,56,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,83,112,97,114,116,97,110,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,50,49,57,53,44,34,98,101,100,115,34,58,57,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,54,57,51,52,56,44,51,53,46,49,56,55,50,49,55,93,44,91,45,56,50,46,50,49,53,57,52,55,44,51,53,46,49,57,54,50,50,50,93,44,91,45,56,50,46,50,50,54,51,50,53,44,51,52,46,56,53,50,52,56,56,93,44,91,45,56,50,46,49,52,54,55,57,50,44,51,52,46,55,56,53,53,53,52,93,44,91,45,56,50,46,48,55,49,51,49,53,44,51,52,46,55,48,51,55,93,44,91,45,56,49,46,56,53,52,48,48,50,44,51,52,46,53,57,52,53,52,57,93,44,91,45,56,49,46,55,56,51,51,57,44,51,52,46,56,51,55,49,50,53,93,44,91,45,56,49,46,55,49,49,54,57,52,44,51,52,46,57,49,50,53,55,55,93,44,91,45,56,49,46,55,53,53,48,56,51,44,51,52,46,57,51,48,50,56,93,44,91,45,56,49,46,56,55,52,54,56,57,44,51,53,46,49,56,52,48,51,54,93,44,91,45,56,49,46,57,54,57,51,52,56,44,51,53,46,49,56,55,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,77,97,114,97,116,104,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,50,54,52,44,34,98,101,100,115,34,58,52,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,53,48,51,56,44,52,53,46,48,51,51,56,50,57,93,44,91,45,57,48,46,51,49,54,50,53,51,44,52,52,46,54,56,53,49,53,52,93,44,91,45,56,57,46,56,52,52,57,51,49,44,52,52,46,54,56,52,57,52,53,93,44,91,45,56,57,46,50,50,51,55,52,53,44,52,52,46,54,56,49,51,54,53,93,44,91,45,56,57,46,50,50,51,56,49,52,44,52,53,46,48,50,57,50,52,54,93,44,91,45,56,57,46,50,50,52,50,49,52,44,52,53,46,49,49,56,53,54,55,93,44,91,45,56,57,46,52,50,53,57,55,49,44,52,53,46,49,49,57,48,57,56,93,44,91,45,57,48,46,48,52,51,54,56,53,44,52,53,46,49,50,48,50,49,52,93,44,91,45,57,48,46,49,57,55,55,54,53,44,52,53,46,49,50,48,54,48,52,93,44,91,45,57,48,46,51,49,53,48,51,56,44,52,53,46,48,51,51,56,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,69,108,107,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,50,53,50,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,53,56,54,55,56,54,44,52,49,46,48,48,48,51,57,56,93,44,91,45,49,49,54,46,49,53,56,49,53,53,44,52,48,46,57,57,57,57,49,50,93,44,91,45,49,49,54,46,49,53,55,56,51,52,44,52,48,46,54,54,54,51,56,57,93,44,91,45,49,49,54,46,48,48,48,56,57,55,44,52,48,46,49,50,55,51,55,54,93,44,91,45,49,49,53,46,56,51,52,57,54,57,44,52,48,46,49,50,55,56,52,50,93,44,91,45,49,49,52,46,57,48,49,56,50,53,44,52,48,46,49,50,50,48,56,50,93,44,91,45,49,49,52,46,48,52,54,54,49,52,44,52,48,46,49,49,54,57,51,54,93,44,91,45,49,49,52,46,48,52,50,48,50,57,44,52,48,46,57,57,57,56,57,54,93,44,91,45,49,49,52,46,48,52,49,52,55,55,44,52,49,46,57,57,51,56,55,51,93,44,91,45,49,49,52,46,50,56,49,55,57,57,44,52,49,46,57,57,52,52,52,49,93,44,91,45,49,49,53,46,48,51,56,49,53,55,44,52,49,46,57,57,54,50,55,57,93,44,91,45,49,49,54,46,48,52,53,51,55,51,44,52,49,46,57,57,54,51,51,49,93,44,91,45,49,49,55,46,48,49,56,50,48,52,44,52,49,46,57,57,57,55,49,53,93,44,91,45,49,49,55,46,48,49,56,52,49,57,44,52,49,46,48,48,48,50,53,52,93,44,91,45,49,49,54,46,53,56,54,55,56,54,44,52,49,46,48,48,48,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,114,97,120,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,56,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,48,53,55,57,57,44,51,56,46,57,48,52,49,54,55,93,44,91,45,56,48,46,55,48,49,53,50,50,44,51,56,46,56,55,57,48,52,53,93,44,91,45,56,48,46,57,56,52,57,53,44,51,56,46,55,49,55,56,57,56,93,44,91,45,56,49,46,48,51,49,54,55,55,44,51,56,46,54,54,55,56,51,57,93,44,91,45,56,48,46,56,56,49,50,51,50,44,51,56,46,53,48,55,48,52,53,93,44,91,45,56,48,46,55,56,53,49,55,55,44,51,56,46,53,53,55,54,52,57,93,44,91,45,56,48,46,54,53,48,55,56,54,44,51,56,46,53,50,54,53,57,93,44,91,45,56,48,46,53,48,56,54,53,53,44,51,56,46,54,52,53,53,53,51,93,44,91,45,56,48,46,52,53,55,51,51,50,44,51,56,46,55,51,57,49,54,57,93,44,91,45,56,48,46,52,55,51,55,54,56,44,51,56,46,56,50,57,48,57,56,93,44,91,45,56,48,46,54,48,53,55,57,57,44,51,56,46,57,48,52,49,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,87,101,120,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,49,49,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,44,91,45,56,53,46,56,50,49,49,56,54,44,52,52,46,49,54,52,49,57,55,93,44,91,45,56,53,46,53,54,52,53,53,52,44,52,52,46,49,54,52,56,54,49,93,44,91,45,56,53,46,51,51,52,55,55,55,44,52,52,46,49,54,53,49,49,56,93,44,91,45,56,53,46,51,51,52,44,52,52,46,53,49,50,51,48,51,93,44,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,67,111,99,104,114,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,52,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,53,54,52,56,53,44,51,51,46,51,56,56,52,49,52,93,44,91,45,49,48,50,46,53,57,52,56,51,54,44,51,51,46,51,56,56,52,56,57,93,44,91,45,49,48,50,46,54,49,53,52,52,55,44,51,51,46,56,50,53,49,50,49,93,44,91,45,49,48,51,46,48,52,55,52,48,57,44,51,51,46,56,50,52,54,55,52,93,44,91,45,49,48,51,46,48,53,50,54,50,49,44,51,51,46,53,55,48,53,55,53,93,44,91,45,49,48,51,46,48,53,54,52,56,53,44,51,51,46,51,56,56,52,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,108,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,56,52,50,44,34,98,101,100,115,34,58,53,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,53,48,52,51,44,52,48,46,55,50,52,56,50,55,93,44,91,45,55,56,46,53,51,57,56,52,44,52,48,46,53,48,54,49,53,52,93,44,91,45,55,56,46,53,54,52,48,56,53,44,52,48,46,51,55,48,54,48,57,93,44,91,45,55,56,46,54,50,48,51,56,51,44,52,48,46,51,50,55,48,50,53,93,44,91,45,55,56,46,50,53,55,51,48,53,44,52,48,46,50,57,55,56,56,51,93,44,91,45,55,56,46,49,51,48,48,56,49,44,52,48,46,52,56,49,57,57,93,44,91,45,55,56,46,50,50,49,57,55,44,52,48,46,54,55,52,53,51,57,93,44,91,45,55,56,46,49,49,54,53,50,49,44,52,48,46,55,51,57,49,50,55,93,44,91,45,55,56,46,51,53,57,57,49,50,44,52,48,46,55,51,50,53,57,50,93,44,91,45,55,56,46,51,53,48,52,51,44,52,48,46,55,50,52,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,105,99,107,111,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,54,53,49,57,57,44,51,56,46,48,54,50,52,55,57,93,44,91,45,57,51,46,53,48,51,57,52,54,44,51,56,46,48,55,51,49,50,51,93,44,91,45,57,51,46,53,49,50,49,48,51,44,51,55,46,57,49,51,53,51,53,93,44,91,45,57,51,46,53,55,51,50,48,50,44,51,55,46,56,50,56,48,51,53,93,44,91,45,57,51,46,49,56,55,57,49,53,44,51,55,46,56,48,50,55,51,55,93,44,91,45,57,51,46,49,56,50,55,48,54,44,51,55,46,57,48,52,49,52,52,93,44,91,45,57,51,46,48,55,50,52,52,55,44,51,55,46,57,48,50,54,50,55,93,44,91,45,57,51,46,48,54,53,49,57,57,44,51,56,46,48,54,50,52,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,52,57,51,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,54,50,55,52,44,51,54,46,57,51,49,55,55,53,93,44,91,45,57,52,46,48,54,56,56,57,56,44,51,54,46,55,52,55,56,49,56,93,44,91,45,57,52,46,48,55,55,48,56,57,44,51,54,46,52,57,56,55,51,93,44,91,45,57,51,46,56,54,54,54,56,57,44,51,54,46,52,57,56,55,51,53,93,44,91,45,57,51,46,53,56,52,50,54,50,44,51,54,46,52,57,57,49,54,55,93,44,91,45,57,51,46,53,55,51,56,44,51,54,46,56,50,48,48,51,50,93,44,91,45,57,51,46,54,49,49,48,48,51,44,51,54,46,57,50,50,56,51,49,93,44,91,45,57,52,46,48,54,50,55,52,44,51,54,46,57,51,49,55,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,82,97,109,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,52,57,51,44,34,98,101,100,115,34,58,49,57,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,48,53,49,56,44,52,53,46,49,50,51,56,54,54,93,44,91,45,57,51,46,50,50,55,54,57,54,44,52,53,46,49,50,52,53,51,51,93,44,91,45,57,51,46,50,50,54,57,50,57,44,52,53,46,48,51,53,54,55,49,93,44,91,45,57,51,46,49,55,56,53,51,57,44,52,52,46,56,56,56,51,51,56,93,44,91,45,57,51,46,48,50,48,48,52,52,44,52,52,46,56,57,48,55,53,93,44,91,45,57,51,46,48,50,48,53,49,56,44,52,53,46,49,50,51,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,105,116,116,108,101,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,55,55,50,57,57,44,51,51,46,57,52,48,57,51,50,93,44,91,45,57,52,46,52,56,53,56,55,56,44,51,51,46,54,51,55,56,54,53,93,44,91,45,57,52,46,51,56,57,53,51,44,51,51,46,53,52,54,55,51,57,93,44,91,45,57,52,46,50,57,49,50,49,50,44,51,51,46,53,56,49,52,55,56,93,44,91,45,57,52,46,48,52,51,52,53,44,51,51,46,53,53,50,50,53,51,93,44,91,45,57,51,46,57,51,53,54,48,54,44,51,51,46,53,53,48,49,55,54,93,44,91,45,57,51,46,56,50,53,56,56,52,44,51,51,46,54,48,57,56,53,51,93,44,91,45,57,51,46,57,54,53,54,51,55,44,51,51,46,54,54,57,55,51,54,93,44,91,45,57,51,46,57,53,55,51,49,53,44,51,51,46,55,53,48,57,52,93,44,91,45,57,51,46,57,53,56,56,50,56,44,51,51,46,55,53,48,57,57,52,93,44,91,45,57,52,46,49,56,49,56,49,44,51,51,46,55,56,56,56,53,50,93,44,91,45,57,52,46,52,55,55,50,57,57,44,51,51,46,57,52,48,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,76,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,49,53,53,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,50,56,51,54,51,55,44,51,57,46,54,50,49,53,54,49,93,44,91,45,49,49,57,46,52,55,56,56,48,54,44,51,57,46,51,51,55,52,49,54,93,44,91,45,49,49,57,46,55,49,50,54,52,53,44,51,57,46,50,53,48,56,55,49,93,44,91,45,49,49,57,46,53,54,51,54,56,44,51,57,46,49,57,53,52,49,53,93,44,91,45,49,49,57,46,53,53,49,48,50,44,51,57,46,48,56,53,55,57,49,93,44,91,45,49,49,57,46,51,49,49,55,49,52,44,51,57,46,48,56,51,54,49,53,93,44,91,45,49,49,57,46,51,49,48,55,48,50,44,51,56,46,57,57,48,55,49,57,93,44,91,45,49,49,57,46,52,50,48,56,51,55,44,51,56,46,57,53,52,55,49,53,93,44,91,45,49,49,57,46,52,48,54,50,55,57,44,51,56,46,55,51,51,51,54,50,93,44,91,45,49,49,57,46,51,52,57,56,56,52,44,51,56,46,55,50,57,49,57,51,93,44,91,45,49,49,57,46,51,50,56,51,57,56,44,51,56,46,53,51,52,55,57,50,93,44,91,45,49,49,57,46,49,53,54,57,55,56,44,51,56,46,52,49,52,55,52,54,93,44,91,45,49,49,56,46,57,48,54,56,54,49,44,51,56,46,52,49,52,54,55,55,93,44,91,45,49,49,56,46,57,48,50,49,50,52,44,51,56,46,56,53,50,49,53,56,93,44,91,45,49,49,57,46,48,49,52,53,50,56,44,51,56,46,56,53,49,51,93,44,91,45,49,49,57,46,48,49,52,56,51,55,44,51,56,46,57,52,51,51,50,51,93,44,91,45,49,49,56,46,57,50,57,55,51,55,44,51,57,46,48,55,51,54,57,56,93,44,91,45,49,49,56,46,55,53,51,56,51,53,44,51,57,46,48,55,52,54,51,93,44,91,45,49,49,56,46,55,53,52,48,49,52,44,51,57,46,49,49,50,48,50,51,93,44,91,45,49,49,57,46,49,49,56,49,57,51,44,51,57,46,51,56,56,53,49,54,93,44,91,45,49,49,57,46,48,55,55,57,56,56,44,51,57,46,55,50,50,52,52,49,93,44,91,45,49,49,57,46,49,56,57,51,52,50,44,51,57,46,54,53,48,56,55,93,44,91,45,49,49,57,46,50,56,51,54,51,55,44,51,57,46,54,50,49,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,56,54,55,57,44,34,98,101,100,115,34,58,49,51,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,54,53,57,51,49,44,50,54,46,55,54,57,53,53,50,93,44,91,45,56,50,46,49,57,56,54,50,54,44,50,54,46,55,55,48,56,57,50,93,44,91,45,56,50,46,51,51,53,48,52,44,50,54,46,55,56,55,57,52,54,93,44,91,45,56,50,46,51,50,49,57,49,44,50,54,46,54,54,53,48,55,57,93,44,91,45,56,50,46,50,51,54,52,53,51,44,50,54,46,52,55,55,51,93,44,91,45,56,50,46,49,49,50,50,50,49,44,50,54,46,51,55,55,55,53,53,93,44,91,45,56,49,46,57,55,56,49,50,54,44,50,54,46,51,57,57,54,57,50,93,44,91,45,56,49,46,57,48,53,53,48,49,44,50,54,46,51,51,48,48,56,56,93,44,91,45,56,49,46,54,53,55,57,44,50,54,46,51,49,55,53,54,51,93,44,91,45,56,49,46,54,53,57,53,48,54,44,50,54,46,52,50,49,48,55,55,93,44,91,45,56,49,46,53,54,50,49,56,44,50,54,46,52,50,50,54,50,53,93,44,91,45,56,49,46,53,54,51,55,54,51,44,50,54,46,53,49,51,51,50,52,93,44,91,45,56,49,46,53,54,53,57,51,49,44,50,54,46,55,54,57,53,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,74,111,115,101,112,104,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,52,56,49,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,55,49,54,52,57,50,44,52,50,46,55,56,52,48,54,49,93,44,91,45,49,50,51,46,56,57,48,54,53,55,44,52,50,46,53,48,48,53,51,56,93,44,91,45,49,50,51,46,57,57,56,55,56,44,52,50,46,52,57,57,57,54,50,93,44,91,45,49,50,52,46,48,50,53,57,56,52,44,52,50,46,51,53,57,52,48,57,93,44,91,45,49,50,51,46,56,57,50,54,53,49,44,52,50,46,51,53,51,50,57,51,93,44,91,45,49,50,51,46,55,57,50,56,51,52,44,52,50,46,50,50,52,51,49,52,93,44,91,45,49,50,51,46,56,53,56,53,52,57,44,52,50,46,49,51,53,49,49,54,93,44,91,45,49,50,51,46,56,50,50,48,52,49,44,52,49,46,57,57,53,53,56,93,44,91,45,49,50,51,46,53,49,55,57,49,49,44,52,50,46,48,48,48,55,53,54,93,44,91,45,49,50,51,46,50,51,49,49,49,51,44,52,50,46,48,48,51,57,52,51,93,44,91,45,49,50,51,46,50,50,57,54,49,57,44,52,50,46,55,48,50,54,49,93,44,91,45,49,50,51,46,52,52,53,52,53,54,44,52,50,46,55,48,51,48,50,53,93,44,91,45,49,50,51,46,55,49,54,52,57,50,44,52,50,46,55,56,52,48,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,97,110,97,116,195,173,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,57,50,44,34,98,101,100,115,34,58,53,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,51,50,53,50,49,44,49,56,46,53,51,53,52,55,56,93,44,91,45,54,54,46,53,52,51,48,55,57,44,49,56,46,52,48,53,52,50,50,93,44,91,45,54,54,46,53,51,51,54,50,51,44,49,56,46,51,53,49,51,51,51,93,44,91,45,54,54,46,52,54,51,50,49,49,44,49,56,46,51,55,49,52,55,51,93,44,91,45,54,54,46,52,52,51,56,44,49,56,46,51,55,49,48,50,55,93,44,91,45,54,54,46,52,51,54,55,53,50,44,49,56,46,53,52,48,56,48,53,93,44,91,45,54,54,46,53,51,50,53,50,49,44,49,56,46,53,51,53,52,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,55,51,55,44,34,98,101,100,115,34,58,49,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,52,56,49,57,57,44,51,49,46,51,52,57,53,55,52,93,44,91,45,57,48,46,53,52,55,54,49,54,44,51,48,46,57,57,57,55,50,93,44,91,45,57,48,46,51,52,55,50,53,53,44,51,49,46,48,48,48,53,51,93,44,91,45,57,48,46,50,53,57,53,53,53,44,51,49,46,48,48,48,54,55,57,93,44,91,45,57,48,46,50,54,48,51,57,49,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,53,52,56,49,57,57,44,51,49,46,51,52,57,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,102,102,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,53,51,49,44,34,98,101,100,115,34,58,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,52,53,49,54,53,44,51,53,46,54,51,49,57,49,51,93,44,91,45,56,54,46,50,53,55,53,57,44,51,53,46,52,49,50,52,55,54,93,44,91,45,56,54,46,50,54,49,52,56,57,44,51,53,46,51,51,51,53,55,57,93,44,91,45,56,54,46,49,53,56,48,49,56,44,51,53,46,51,54,50,54,48,55,93,44,91,45,56,53,46,57,49,51,53,57,51,44,51,53,46,50,56,57,49,56,57,93,44,91,45,56,53,46,56,55,54,57,54,50,44,51,53,46,53,50,52,48,57,53,93,44,91,45,56,53,46,57,56,53,48,54,50,44,51,53,46,54,54,48,49,48,56,93,44,91,45,56,54,46,49,52,51,54,53,50,44,51,53,46,54,54,49,55,52,55,93,44,91,45,56,54,46,50,48,55,49,52,55,44,51,53,46,55,48,51,55,57,93,44,91,45,56,54,46,50,52,53,49,54,53,44,51,53,46,54,51,49,57,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,76,101,109,104,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,57,56,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,56,49,50,52,48,55,44,52,52,46,56,48,56,51,52,54,93,44,91,45,49,49,52,46,56,49,57,56,56,57,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,49,52,46,54,48,50,51,54,50,44,52,52,46,53,57,52,56,53,54,93,44,91,45,49,49,52,46,52,53,49,56,52,44,52,52,46,54,49,49,55,52,49,93,44,91,45,49,49,52,46,51,51,57,49,57,54,44,52,52,46,55,57,51,53,57,52,93,44,91,45,49,49,52,46,48,55,53,57,51,55,44,52,52,46,55,52,53,53,55,56,93,44,91,45,49,49,52,46,48,49,57,50,48,52,44,52,52,46,54,53,49,53,52,49,93,44,91,45,49,49,51,46,56,49,54,50,49,53,44,52,52,46,52,57,51,57,54,51,93,44,91,45,49,49,51,46,53,48,49,53,49,57,44,52,52,46,52,50,50,51,48,51,93,44,91,45,49,49,51,46,51,51,57,54,49,55,44,52,52,46,51,49,54,51,49,51,93,44,91,45,49,49,51,46,51,50,48,54,48,57,44,52,52,46,50,51,51,49,54,52,93,44,91,45,49,49,50,46,57,57,53,48,57,49,44,52,52,46,50,51,52,49,50,54,93,44,91,45,49,49,50,46,56,49,51,55,57,50,44,52,52,46,50,51,48,50,56,49,93,44,91,45,49,49,50,46,56,49,51,56,48,53,44,52,52,46,51,55,54,52,53,53,93,44,91,45,49,49,51,46,48,48,49,57,55,56,44,52,52,46,52,52,57,56,53,55,93,44,91,45,49,49,51,46,49,48,49,54,49,56,44,52,52,46,55,50,57,52,54,53,93,44,91,45,49,49,51,46,50,52,55,49,57,50,44,52,52,46,56,50,50,57,53,52,93,44,91,45,49,49,51,46,52,53,53,48,55,49,44,52,52,46,56,54,53,52,50,52,93,44,91,45,49,49,51,46,52,53,50,48,52,52,44,52,53,46,48,53,57,49,55,52,93,44,91,45,49,49,51,46,53,55,54,55,50,53,44,52,53,46,49,51,49,50,51,55,93,44,91,45,49,49,51,46,55,55,51,55,53,51,44,52,53,46,52,48,54,51,53,57,93,44,91,45,49,49,51,46,56,48,54,52,51,49,44,52,53,46,54,48,49,54,51,93,44,91,45,49,49,51,46,57,51,56,48,57,53,44,52,53,46,54,57,53,55,52,93,44,91,45,49,49,52,46,50,54,57,56,57,50,44,52,53,46,52,56,52,53,53,50,93,44,91,45,49,49,52,46,53,54,52,57,57,57,44,52,53,46,53,53,55,56,48,51,93,44,91,45,49,49,52,46,54,54,54,50,50,51,44,52,53,46,52,55,49,51,50,53,93,44,91,45,49,49,52,46,55,57,51,50,48,55,44,52,53,46,52,51,54,51,51,52,93,44,91,45,49,49,52,46,54,48,51,57,52,44,52,53,46,50,57,53,56,50,54,93,44,91,45,49,49,52,46,54,57,52,48,48,49,44,52,53,46,49,57,55,49,56,50,93,44,91,45,49,49,52,46,55,51,50,50,55,44,52,53,46,49,53,49,49,53,53,93,44,91,45,49,49,52,46,55,51,49,57,54,44,52,52,46,56,56,48,57,52,54,93,44,91,45,49,49,52,46,56,49,50,52,48,55,44,52,52,46,56,48,56,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,55,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,51,56,50,54,44,51,55,46,53,54,48,56,48,51,93,44,91,45,56,55,46,48,57,57,56,48,51,44,51,55,46,52,49,54,48,52,50,93,44,91,45,56,54,46,56,57,57,50,54,56,44,51,55,46,50,49,50,51,49,51,93,44,91,45,56,54,46,56,50,57,51,55,49,44,51,55,46,50,56,49,51,54,53,93,44,91,45,56,54,46,54,49,50,48,57,53,44,51,55,46,51,57,53,49,50,51,93,44,91,45,56,54,46,54,54,49,56,56,44,51,55,46,53,52,49,57,51,52,93,44,91,45,56,54,46,53,57,50,56,49,44,51,55,46,53,54,52,51,54,93,44,91,45,56,54,46,54,51,56,57,51,53,44,51,55,46,54,54,49,56,55,55,93,44,91,45,56,54,46,56,50,51,52,50,57,44,51,55,46,55,51,55,55,53,52,93,44,91,45,56,54,46,56,49,55,53,49,52,44,51,55,46,54,55,51,56,49,52,93,44,91,45,56,55,46,48,51,56,50,54,44,51,55,46,53,54,48,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,83,97,114,112,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,51,53,49,44,34,98,101,100,115,34,58,50,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,50,51,53,52,56,44,52,49,46,49,57,48,56,53,93,44,91,45,57,54,46,51,50,55,51,57,57,44,52,49,46,49,56,57,57,57,57,93,44,91,45,57,54,46,51,49,57,49,57,49,44,52,49,46,48,52,52,57,57,56,93,44,91,45,57,54,46,50,48,55,54,52,56,44,52,48,46,57,57,53,54,50,56,93,44,91,45,57,54,46,48,53,54,50,53,54,44,52,49,46,48,54,53,51,53,54,93,44,91,45,57,53,46,56,55,57,52,56,55,44,52,49,46,48,53,51,50,57,57,93,44,91,45,57,53,46,56,56,48,53,50,49,44,52,49,46,49,53,57,56,55,52,93,44,91,45,57,53,46,57,50,51,53,52,56,44,52,49,46,49,57,48,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,67,111,108,113,117,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,48,54,44,34,98,101,100,115,34,58,49,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,57,57,52,51,44,51,49,46,51,51,52,57,54,54,93,44,91,45,56,52,46,48,48,51,54,50,55,44,51,49,46,48,55,55,50,57,93,44,91,45,56,52,46,48,48,51,56,55,54,44,51,49,46,48,52,49,53,56,50,93,44,91,45,56,51,46,55,51,54,49,53,56,44,51,49,46,48,51,55,54,55,57,93,44,91,45,56,51,46,53,55,52,56,53,55,44,51,49,46,48,55,56,49,51,53,93,44,91,45,56,51,46,53,48,57,56,49,44,51,49,46,50,48,54,49,56,49,93,44,91,45,56,51,46,53,49,50,54,48,55,44,51,49,46,51,50,55,52,48,53,93,44,91,45,56,51,46,54,53,52,48,57,44,51,49,46,51,51,48,54,54,49,93,44,91,45,56,51,46,57,57,57,52,51,44,51,49,46,51,51,52,57,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,87,105,108,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,56,48,57,55,55,44,52,54,46,54,51,48,55,54,53,93,44,91,45,57,54,46,55,56,52,51,56,49,44,52,54,46,54,51,48,53,48,52,93,44,91,45,57,54,46,54,54,55,52,50,50,44,52,54,46,51,55,54,49,49,55,93,44,91,45,57,54,46,53,57,57,54,54,44,52,54,46,51,51,48,52,56,49,93,44,91,45,57,54,46,53,53,52,52,51,54,44,52,54,46,48,56,52,49,56,54,93,44,91,45,57,54,46,53,55,54,53,54,52,44,52,54,46,48,50,49,56,52,56,93,44,91,45,57,54,46,50,54,54,49,52,44,52,54,46,48,50,49,54,49,93,44,91,45,57,54,46,50,54,53,51,54,54,44,52,54,46,49,48,56,54,49,93,44,91,45,57,54,46,50,56,48,57,55,55,44,52,54,46,54,51,48,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,53,52,54,44,34,98,101,100,115,34,58,49,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,57,57,48,52,51,44,51,56,46,50,50,48,55,53,53,93,44,91,45,57,48,46,48,51,54,51,49,54,44,51,56,46,50,50,51,50,52,54,93,44,91,45,57,48,46,48,51,53,56,54,55,44,51,56,46,49,51,53,55,51,54,93,44,91,45,57,48,46,50,48,53,50,48,53,44,51,56,46,48,56,54,57,48,55,93,44,91,45,56,57,46,57,56,56,49,48,56,44,51,55,46,57,54,49,55,52,57,93,44,91,45,56,57,46,57,51,56,54,48,56,44,51,55,46,56,55,52,51,48,52,93,44,91,45,56,57,46,56,52,52,55,56,54,44,51,55,46,57,48,53,53,55,50,93,44,91,45,56,57,46,54,55,52,51,50,49,44,51,55,46,56,48,51,49,53,50,93,44,91,45,56,57,46,53,57,53,48,55,51,44,51,55,46,57,53,53,51,52,51,93,44,91,45,56,57,46,53,57,50,55,57,55,44,51,56,46,50,49,57,50,55,49,93,44,91,45,56,57,46,55,48,51,50,53,54,44,51,56,46,50,49,57,52,48,52,93,44,91,45,56,57,46,56,57,57,48,52,51,44,51,56,46,50,50,48,55,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,75,101,110,110,101,98,101,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,53,52,53,44,34,98,101,100,115,34,58,52,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,49,50,57,51,57,44,52,52,46,52,56,55,50,49,55,93,44,91,45,55,48,46,48,55,53,55,52,55,44,52,52,46,50,48,54,49,54,56,93,44,91,45,55,48,46,48,48,53,52,55,49,44,52,52,46,49,50,52,53,49,57,93,44,91,45,54,57,46,55,53,56,50,48,56,44,52,52,46,49,51,57,51,51,52,93,44,91,45,54,57,46,54,53,54,55,52,50,44,52,52,46,49,50,50,51,57,50,93,44,91,45,54,57,46,54,53,48,49,55,49,44,52,52,46,50,55,57,54,50,53,93,44,91,45,54,57,46,53,48,54,51,56,50,44,52,52,46,51,52,50,56,55,93,44,91,45,54,57,46,51,57,51,49,50,51,44,52,52,46,54,52,48,51,55,53,93,44,91,45,54,57,46,52,55,49,55,49,50,44,52,52,46,54,57,50,56,57,57,93,44,91,45,54,57,46,54,51,51,49,49,56,44,52,52,46,55,48,48,51,55,51,93,44,91,45,54,57,46,54,48,53,55,52,54,44,52,52,46,53,55,55,50,54,52,93,44,91,45,54,57,46,57,51,48,52,53,49,44,52,52,46,54,49,48,56,53,50,93,44,91,45,55,48,46,48,52,48,50,49,53,44,52,52,46,53,56,56,55,50,50,93,44,91,45,55,48,46,49,50,57,51,57,44,52,52,46,52,56,55,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,83,109,121,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,48,53,57,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,51,55,48,57,54,44,51,54,46,57,50,57,48,51,57,93,44,91,45,56,49,46,54,57,57,53,54,49,44,51,54,46,55,56,57,51,49,54,93,44,91,45,56,49,46,54,48,53,56,54,53,44,51,54,46,54,51,56,48,55,57,93,44,91,45,56,49,46,53,50,52,56,48,56,44,51,54,46,55,48,55,53,52,93,44,91,45,56,49,46,50,54,49,57,56,55,44,51,54,46,55,54,51,48,51,51,93,44,91,45,56,49,46,51,55,57,52,48,50,44,51,54,46,57,53,50,52,52,50,93,44,91,45,56,49,46,52,51,54,55,51,44,51,55,46,48,49,48,49,51,53,93,44,91,45,56,49,46,54,56,50,55,56,54,44,51,54,46,57,51,50,57,51,52,93,44,91,45,56,49,46,55,56,48,53,52,53,44,51,54,46,57,53,56,54,50,57,93,44,91,45,56,49,46,56,51,55,48,57,54,44,51,54,46,57,50,57,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,82,111,111,115,101,118,101,108,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,49,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,52,51,55,54,55,44,51,52,46,51,48,50,54,52,56,93,44,91,45,49,48,51,46,55,52,48,48,54,54,44,51,52,46,51,48,51,48,53,54,93,44,91,45,49,48,51,46,55,51,56,49,54,54,44,51,52,46,54,48,52,54,55,93,44,91,45,49,48,51,46,57,52,56,55,55,56,44,51,52,46,54,48,53,48,53,56,93,44,91,45,49,48,51,46,57,52,54,48,49,57,44,51,52,46,48,56,50,52,54,51,93,44,91,45,49,48,51,46,56,52,49,54,57,49,44,51,52,46,48,56,49,57,48,57,93,44,91,45,49,48,51,46,56,52,49,57,51,51,44,51,51,46,56,49,57,50,93,44,91,45,49,48,51,46,55,49,54,56,56,53,44,51,51,46,56,49,57,53,53,56,93,44,91,45,49,48,51,46,55,49,56,51,51,51,44,51,51,46,54,53,54,50,49,93,44,91,45,49,48,51,46,53,48,57,55,53,57,44,51,51,46,54,53,55,50,54,50,93,44,91,45,49,48,51,46,53,49,48,49,50,57,44,51,51,46,53,55,48,49,49,55,93,44,91,45,49,48,51,46,48,53,50,54,50,49,44,51,51,46,53,55,48,53,55,53,93,44,91,45,49,48,51,46,48,52,55,52,48,57,44,51,51,46,56,50,52,54,55,52,93,44,91,45,49,48,51,46,48,52,51,55,54,55,44,51,52,46,51,48,50,54,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,83,111,109,101,114,115,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,57,52,57,44,34,98,101,100,115,34,58,49,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,57,51,54,56,50,44,52,48,46,48,52,48,52,49,51,93,44,91,45,55,57,46,52,49,55,53,53,56,44,51,57,46,56,53,51,55,55,54,93,44,91,45,55,57,46,51,57,50,52,53,57,44,51,57,46,55,50,49,53,55,56,93,44,91,45,55,56,46,57,50,56,52,49,54,44,51,57,46,55,50,50,55,56,51,93,44,91,45,55,56,46,56,48,56,51,56,55,44,51,57,46,55,50,50,57,49,49,93,44,91,45,55,56,46,55,53,55,50,52,49,44,51,57,46,56,50,51,52,56,52,93,44,91,45,55,56,46,55,54,51,50,48,54,44,52,48,46,48,53,55,48,48,53,93,44,91,45,55,56,46,54,53,56,52,48,57,44,52,48,46,50,52,50,57,51,51,93,44,91,45,55,56,46,56,57,48,56,51,54,44,52,48,46,50,52,57,53,51,57,93,44,91,45,55,57,46,48,53,53,57,56,51,44,52,48,46,50,56,53,48,56,57,93,44,91,45,55,57,46,50,57,51,54,56,50,44,52,48,46,48,52,48,52,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,52,48,54,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,50,49,57,54,52,44,51,54,46,54,52,54,57,51,54,93,44,91,45,56,50,46,49,52,53,53,55,51,44,51,54,46,53,57,52,55,50,53,93,44,91,45,56,49,46,56,50,54,55,52,50,44,51,54,46,54,49,52,50,49,53,93,44,91,45,56,49,46,54,52,54,57,44,51,54,46,54,49,49,57,49,56,93,44,91,45,56,49,46,54,48,53,56,54,53,44,51,54,46,54,51,56,48,55,57,93,44,91,45,56,49,46,54,57,57,53,54,49,44,51,54,46,55,56,57,51,49,54,93,44,91,45,56,49,46,56,51,55,48,57,54,44,51,54,46,57,50,57,48,51,57,93,44,91,45,56,49,46,57,52,57,50,55,54,44,51,54,46,56,54,52,52,55,51,93,44,91,45,56,50,46,51,51,50,48,55,56,44,51,54,46,55,48,56,57,54,57,93,44,91,45,56,50,46,50,57,52,49,51,52,44,51,54,46,53,57,53,54,57,55,93,44,91,45,56,50,46,50,52,51,51,56,50,44,51,54,46,53,57,53,54,53,49,93,44,91,45,56,50,46,49,50,49,57,54,52,44,51,54,46,54,52,54,57,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,71,117,105,108,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,51,53,56,50,44,34,98,101,100,115,34,58,49,52,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,44,91,45,56,48,46,48,52,51,50,51,56,44,51,54,46,48,49,48,55,53,56,93,44,91,45,56,48,46,48,52,54,56,54,57,44,51,53,46,57,50,48,54,57,51,93,44,91,45,55,57,46,53,52,49,55,50,56,44,51,53,46,56,57,57,56,53,49,93,44,91,45,55,57,46,53,51,50,52,49,44,51,54,46,50,52,49,52,54,51,93,44,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,54,48,53,50,44,34,98,101,100,115,34,58,49,50,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,53,49,50,53,48,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,52,55,51,52,57,50,44,52,51,46,54,51,52,49,48,51,93,44,91,45,49,49,54,46,52,55,51,53,57,55,44,52,51,46,52,53,57,50,49,56,93,44,91,45,49,49,54,46,53,49,49,56,57,55,44,52,51,46,50,57,48,53,50,93,44,91,45,49,49,54,46,50,54,54,50,48,55,44,52,51,46,49,49,50,50,54,57,93,44,91,45,49,49,53,46,57,55,56,54,53,49,44,52,51,46,49,49,51,52,51,50,93,44,91,45,49,49,53,46,57,55,53,55,49,57,44,52,51,46,53,57,49,52,51,56,93,44,91,45,49,49,54,46,50,56,50,48,49,57,44,52,51,46,56,48,55,51,54,53,93,44,91,45,49,49,54,46,53,49,50,53,48,50,44,52,51,46,56,48,55,49,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,50,48,57,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,51,49,57,56,53,44,51,53,46,56,49,50,52,48,50,93,44,91,45,57,57,46,51,55,53,56,49,55,44,51,53,46,56,49,50,49,56,56,93,44,91,45,57,57,46,51,54,52,49,52,49,44,51,53,46,53,48,56,55,57,51,93,44,91,45,57,57,46,51,54,52,50,49,55,44,51,53,46,52,54,53,51,50,56,93,44,91,45,57,56,46,54,50,51,51,51,54,44,51,53,46,52,54,52,50,50,53,93,44,91,45,57,56,46,54,50,51,50,52,52,44,51,53,46,53,53,49,53,50,50,93,44,91,45,57,56,46,54,51,49,57,56,53,44,51,53,46,56,49,50,52,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,51,52,52,44,34,98,101,100,115,34,58,49,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,49,57,56,51,54,44,52,48,46,54,56,54,56,50,51,93,44,91,45,56,51,46,52,49,56,54,55,44,52,48,46,53,48,53,50,50,57,93,44,91,45,56,51,46,50,52,56,49,56,51,44,52,48,46,53,48,55,48,51,52,93,44,91,45,56,51,46,50,52,56,53,57,53,44,52,48,46,52,52,51,57,56,57,93,44,91,45,56,51,46,48,50,48,55,57,56,44,52,48,46,52,51,51,55,57,53,93,44,91,45,56,50,46,57,53,56,52,48,49,44,52,48,46,52,57,48,54,54,52,93,44,91,45,56,50,46,57,53,55,56,49,55,44,52,48,46,54,52,53,49,52,56,93,44,91,45,56,50,46,56,53,56,51,48,50,44,52,48,46,55,48,53,48,49,57,93,44,91,45,56,51,46,49,49,49,51,54,44,52,48,46,55,48,50,57,49,53,93,44,91,45,56,51,46,52,49,57,56,51,54,44,52,48,46,54,56,54,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,53,52,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,54,54,54,57,44,51,57,46,56,52,52,57,50,55,93,44,91,45,57,48,46,57,49,53,57,54,49,44,51,57,46,55,53,55,50,93,44,91,45,57,49,46,51,54,53,49,50,53,44,51,57,46,55,53,56,55,50,51,93,44,91,45,57,49,46,51,48,54,54,57,51,44,51,57,46,54,56,52,56,54,53,93,44,91,45,57,49,46,49,55,56,48,49,50,44,51,57,46,53,57,56,49,57,54,93,44,91,45,57,49,46,48,51,56,50,55,44,51,57,46,52,52,56,52,51,53,93,44,91,45,57,48,46,57,51,54,55,50,56,44,51,57,46,51,57,57,53,49,49,93,44,91,45,57,48,46,54,49,51,55,55,53,44,51,57,46,51,57,53,52,49,54,93,44,91,45,57,48,46,53,56,49,48,53,53,44,51,57,46,53,50,49,55,50,56,93,44,91,45,57,48,46,54,52,53,57,57,44,51,57,46,55,48,51,51,54,56,93,44,91,45,57,48,46,53,57,57,49,48,53,44,51,57,46,55,57,48,48,54,93,44,91,45,57,48,46,53,55,49,52,50,52,44,51,57,46,56,51,56,57,54,49,93,44,91,45,57,48,46,57,49,54,54,54,57,44,51,57,46,56,52,52,57,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,50,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,51,34,44,34,78,65,77,69,34,58,34,87,111,111,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,52,55,55,49,56,44,52,48,46,57,50,53,55,52,57,93,44,91,45,56,57,46,52,55,50,51,51,44,52,48,46,57,50,49,50,48,54,93,44,91,45,56,57,46,53,53,52,57,57,52,44,52,48,46,55,52,55,54,51,55,93,44,91,45,56,57,46,51,51,48,48,57,50,44,52,48,46,55,52,56,50,53,55,93,44,91,45,56,57,46,50,54,57,51,57,55,44,52,48,46,53,57,52,51,49,56,93,44,91,45,56,57,46,49,51,51,55,53,50,44,52,48,46,53,57,54,55,51,52,93,44,91,45,56,56,46,57,56,52,55,50,50,44,52,48,46,54,54,52,57,53,51,93,44,91,45,56,56,46,57,50,57,51,51,49,44,52,48,46,55,53,51,51,51,55,93,44,91,45,56,56,46,57,51,49,51,57,44,52,48,46,57,50,55,55,52,93,44,91,45,56,57,46,48,52,55,55,49,56,44,52,48,46,57,50,53,55,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,53,34,44,34,78,65,77,69,34,58,34,82,105,99,104,109,111,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,52,54,51,44,34,98,101,100,115,34,58,51,49,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,50,56,50,51,56,44,51,51,46,53,52,52,57,51,52,93,44,91,45,56,50,46,50,57,52,49,55,57,44,51,51,46,51,53,52,54,51,53,93,44,91,45,56,50,46,51,53,51,52,57,56,44,51,51,46,51,49,50,51,49,56,93,44,91,45,56,50,46,50,54,55,53,56,44,51,51,46,50,54,55,51,57,55,93,44,91,45,56,50,46,49,55,52,50,52,44,51,51,46,50,57,54,55,55,49,93,44,91,45,56,50,46,48,57,50,53,57,50,44,51,51,46,50,51,48,48,56,52,93,44,91,45,56,49,46,56,53,50,48,55,54,44,51,51,46,50,52,55,50,56,56,93,44,91,45,56,49,46,57,49,56,51,51,55,44,51,51,46,51,51,50,56,52,50,93,44,91,45,56,49,46,57,51,52,49,51,54,44,51,51,46,52,54,56,51,51,55,93,44,91,45,56,50,46,48,49,50,52,55,44,51,51,46,53,51,50,49,49,54,93,44,91,45,56,50,46,48,50,56,50,51,56,44,51,51,46,53,52,52,57,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,80,105,99,107,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,55,52,54,49,57,44,51,51,46,53,51,52,48,48,56,93,44,91,45,56,56,46,51,48,52,52,51,52,44,51,51,46,50,56,56,51,50,93,44,91,45,56,56,46,51,52,48,52,51,50,44,51,50,46,57,57,49,49,57,57,93,44,91,45,56,56,46,49,55,49,56,53,50,44,51,50,46,57,57,53,56,54,93,44,91,45,56,55,46,56,51,55,53,50,49,44,51,51,46,49,53,51,54,51,55,93,44,91,45,56,55,46,56,52,48,54,56,51,44,51,51,46,53,50,52,56,51,57,93,44,91,45,56,55,46,57,52,54,53,49,57,44,51,51,46,53,50,52,48,54,53,93,44,91,45,56,56,46,50,55,52,54,49,57,44,51,51,46,53,51,52,48,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,69,108,108,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,55,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,48,53,54,51,52,44,51,54,46,53,57,50,55,53,52,93,44,91,45,49,48,48,46,48,48,51,49,54,44,51,54,46,53,57,51,50,53,93,44,91,45,49,48,48,46,48,48,51,55,54,50,44,51,54,46,52,57,57,56,52,57,93,44,91,45,49,48,48,46,48,48,48,51,57,57,44,51,54,46,48,53,53,54,55,55,93,44,91,45,49,48,48,46,48,48,48,51,57,54,44,51,53,46,56,56,49,50,51,51,93,44,91,45,57,57,46,56,57,51,51,55,50,44,51,53,46,57,56,53,50,57,53,93,44,91,45,57,57,46,55,49,55,49,48,49,44,51,53,46,56,53,57,55,54,57,93,44,91,45,57,57,46,53,53,56,52,56,54,44,51,53,46,56,54,53,57,56,56,93,44,91,45,57,57,46,52,57,53,56,49,50,44,51,53,46,57,55,56,55,51,50,93,44,91,45,57,57,46,51,56,49,48,50,50,44,51,54,46,48,49,50,57,50,53,93,44,91,45,57,57,46,51,56,50,48,55,52,44,51,54,46,49,54,52,51,48,49,93,44,91,45,57,57,46,53,57,54,48,55,57,44,51,54,46,49,54,52,48,54,49,93,44,91,45,57,57,46,54,48,53,54,51,52,44,51,54,46,53,57,50,55,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,56,52,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,57,50,55,57,55,44,51,56,46,50,49,57,50,55,49,93,44,91,45,56,57,46,53,57,53,48,55,51,44,51,55,46,57,53,53,51,52,51,93,44,91,45,56,57,46,49,55,55,53,57,55,44,51,55,46,57,53,48,51,49,49,93,44,91,45,56,57,46,49,50,57,54,51,50,44,51,56,46,49,50,52,55,54,55,93,44,91,45,56,57,46,49,52,55,53,57,55,44,51,56,46,50,49,50,56,57,53,93,44,91,45,56,57,46,53,57,50,55,57,55,44,51,56,46,50,49,57,50,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,71,114,117,110,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,52,49,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,55,44,52,50,46,53,53,54,56,49,93,44,91,45,57,51,46,48,48,50,57,48,50,44,52,50,46,52,55,48,54,51,56,93,44,91,45,57,51,46,48,48,49,54,55,52,44,52,50,46,50,48,57,50,54,55,93,44,91,45,57,50,46,55,54,55,52,54,51,44,52,50,46,50,49,48,49,52,93,44,91,45,57,50,46,55,54,56,48,57,44,52,50,46,50,57,54,54,56,93,44,91,45,57,50,46,53,51,51,53,49,44,52,50,46,50,57,55,48,48,49,93,44,91,45,57,50,46,53,53,52,51,44,52,50,46,53,53,53,56,53,52,93,44,91,45,57,51,46,48,50,55,44,52,50,46,53,53,54,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,82,111,117,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,55,52,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,52,51,57,51,56,54,44,52,48,46,50,50,51,51,55,57,93,44,91,45,49,48,55,46,48,51,55,57,50,56,44,52,48,46,50,50,53,51,55,50,93,44,91,45,49,48,55,46,48,51,55,51,54,51,44,52,48,46,48,57,49,53,51,56,93,44,91,45,49,48,55,46,48,51,51,57,54,56,44,51,57,46,57,49,56,57,49,51,93,44,91,45,49,48,54,46,54,50,54,53,54,57,44,51,57,46,57,50,52,55,56,53,93,44,91,45,49,48,54,46,54,51,50,50,53,55,44,52,48,46,51,52,49,53,53,57,93,44,91,45,49,48,54,46,54,53,50,49,49,50,44,52,48,46,52,52,53,50,51,49,93,44,91,45,49,48,54,46,55,48,54,49,52,57,44,52,48,46,54,49,54,53,57,55,93,44,91,45,49,48,54,46,54,51,54,57,50,50,44,52,48,46,55,56,57,52,56,57,93,44,91,45,49,48,54,46,56,54,57,56,57,49,44,52,48,46,57,53,54,55,50,93,44,91,45,49,48,54,46,56,53,55,55,55,51,44,52,49,46,48,48,50,54,54,51,93,44,91,45,49,48,55,46,51,49,55,55,57,52,44,52,49,46,48,48,50,57,50,93,44,91,45,49,48,55,46,51,49,52,49,53,51,44,52,48,46,54,48,48,50,56,49,93,44,91,45,49,48,55,46,52,50,56,56,49,51,44,52,48,46,53,52,50,50,48,55,93,44,91,45,49,48,55,46,52,51,57,51,56,54,44,52,48,46,50,50,51,51,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,83,111,109,101,114,115,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,48,49,55,54,44,34,98,101,100,115,34,58,57,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,50,53,54,54,54,44,52,48,46,55,49,57,53,51,50,93,44,91,45,55,52,46,55,49,51,49,53,44,52,48,46,53,56,51,57,48,51,93,44,91,45,55,52,46,55,55,53,57,55,57,44,52,48,46,53,48,51,54,48,54,93,44,91,45,55,52,46,55,52,56,49,52,55,44,52,48,46,52,50,52,49,53,54,93,44,91,45,55,52,46,54,50,48,50,52,44,52,48,46,51,55,51,55,52,57,93,44,91,45,55,52,46,52,53,57,56,54,51,44,52,48,46,52,57,49,48,52,54,93,44,91,45,55,52,46,52,54,51,50,57,49,44,52,48,46,53,57,57,49,56,55,93,44,91,45,55,52,46,52,54,49,48,51,53,44,52,48,46,54,55,51,53,48,52,93,44,91,45,55,52,46,53,53,54,48,49,56,44,52,48,46,55,53,56,50,56,56,93,44,91,45,55,52,46,55,50,53,54,54,54,44,52,48,46,55,49,57,53,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,111,108,117,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,56,57,48,48,49,51,44,51,57,46,51,56,51,56,54,52,93,44,91,45,49,50,50,46,48,48,56,56,53,55,44,51,57,46,52,49,51,53,54,55,93,44,91,45,49,50,50,46,49,51,54,48,48,54,44,51,57,46,51,56,53,52,57,52,93,44,91,45,49,50,50,46,55,51,57,48,54,50,44,51,57,46,51,56,51,50,54,54,93,44,91,45,49,50,50,46,55,55,53,48,52,51,44,51,57,46,51,49,49,55,55,56,93,44,91,45,49,50,50,46,54,57,49,51,54,49,44,51,57,46,50,52,55,52,51,49,93,44,91,45,49,50,50,46,53,49,53,51,51,49,44,51,57,46,50,48,57,50,49,53,93,44,91,45,49,50,50,46,52,56,51,56,55,57,44,51,57,46,48,54,54,57,53,53,93,44,91,45,49,50,50,46,51,52,48,49,55,50,44,51,56,46,57,50,52,50,52,54,93,44,91,45,49,50,49,46,56,51,53,52,56,56,44,51,56,46,57,50,52,52,56,49,93,44,91,45,49,50,49,46,56,49,57,49,52,50,44,51,56,46,57,56,56,53,53,49,93,44,91,45,49,50,49,46,57,52,53,53,49,52,44,51,57,46,49,55,57,56,52,51,93,44,91,45,49,50,49,46,57,48,56,50,54,57,44,51,57,46,51,48,51,56,55,56,93,44,91,45,49,50,49,46,56,57,48,48,49,51,44,51,57,46,51,56,51,56,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,50,55,55,93,44,91,45,56,57,46,48,52,49,52,48,49,44,51,55,46,53,57,54,53,55,54,93,44,91,45,56,57,46,48,52,52,55,57,57,44,51,55,46,51,50,57,55,49,55,93,44,91,45,56,56,46,57,50,56,55,53,55,44,51,55,46,51,48,50,56,52,56,93,44,91,45,56,56,46,55,49,48,55,51,56,44,51,55,46,51,51,55,48,56,49,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,48,53,57,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,72,105,110,115,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,53,54,56,54,50,44,51,56,46,49,52,55,50,54,55,93,44,91,45,49,48,55,46,53,49,54,56,51,44,51,56,46,48,54,57,55,52,49,93,44,91,45,49,48,55,46,53,54,56,56,55,53,44,51,55,46,57,54,53,48,49,53,93,44,91,45,49,48,55,46,52,56,50,50,52,53,44,51,55,46,55,54,56,51,53,51,93,44,91,45,49,48,55,46,52,56,50,49,55,57,44,51,55,46,54,51,57,53,48,49,93,44,91,45,49,48,55,46,52,56,50,49,51,49,44,51,55,46,52,50,50,54,55,51,93,44,91,45,49,48,55,46,49,50,56,54,56,44,51,55,46,52,50,50,57,52,50,93,44,91,45,49,48,55,46,49,52,53,49,51,56,44,51,55,46,54,55,53,52,57,55,93,44,91,45,49,48,55,46,49,51,56,49,57,49,44,51,55,46,57,51,56,56,52,56,93,44,91,45,49,48,55,46,48,48,48,54,48,50,44,51,55,46,57,53,54,48,52,49,93,44,91,45,49,48,55,46,48,48,49,49,49,57,44,51,56,46,49,52,55,48,55,50,93,44,91,45,49,48,55,46,53,54,56,54,50,44,51,56,46,49,52,55,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,97,115,115,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,54,49,53,44,34,98,101,100,115,34,58,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,52,55,50,49,55,55,44,52,50,46,54,54,57,51,53,50,93,44,91,45,49,49,51,46,53,53,55,49,57,51,44,52,50,46,54,53,54,55,57,57,93,44,91,45,49,49,51,46,54,53,52,49,52,57,44,52,50,46,53,51,54,49,53,53,93,44,91,45,49,49,51,46,57,51,49,55,57,57,44,52,50,46,53,51,53,50,52,51,93,44,91,45,49,49,52,46,48,48,48,51,56,56,44,52,50,46,53,50,54,51,55,51,93,44,91,45,49,49,52,46,48,54,57,49,54,50,44,52,50,46,52,49,55,49,50,52,93,44,91,45,49,49,52,46,50,56,53,52,52,56,44,52,50,46,52,49,55,51,51,51,93,44,91,45,49,49,52,46,50,56,49,55,57,57,44,52,49,46,57,57,52,52,52,49,93,44,91,45,49,49,52,46,48,52,49,52,55,55,44,52,49,46,57,57,51,56,55,51,93,44,91,45,49,49,51,46,56,49,52,56,56,52,44,52,49,46,57,56,56,54,53,52,93,44,91,45,49,49,51,46,48,48,48,48,52,49,44,52,49,46,57,57,56,50,48,52,93,44,91,45,49,49,50,46,57,57,57,57,54,53,44,52,50,46,51,50,55,52,50,55,93,44,91,45,49,49,51,46,48,48,50,55,57,50,44,52,50,46,53,56,56,48,48,51,93,44,91,45,49,49,51,46,50,51,54,57,54,56,44,52,50,46,54,50,53,50,53,52,93,44,91,45,49,49,51,46,51,55,53,48,54,50,44,52,50,46,54,56,55,56,51,50,93,44,91,45,49,49,51,46,52,55,50,49,55,55,44,52,50,46,54,54,57,51,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,73,115,97,110,116,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,57,55,52,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,49,51,54,56,51,44,52,53,46,55,51,52,51,49,56,93,44,91,45,57,51,46,53,49,48,55,48,52,44,52,53,46,53,53,56,55,55,50,93,44,91,45,57,51,46,53,49,48,48,55,44,52,53,46,52,49,52,55,57,56,93,44,91,45,57,51,46,48,49,57,53,54,51,44,52,53,46,52,49,49,55,55,93,44,91,45,57,51,46,48,50,50,50,55,52,44,52,53,46,53,53,55,49,53,52,93,44,91,45,57,51,46,49,52,49,57,55,52,44,52,53,46,53,53,56,49,48,57,93,44,91,45,57,51,46,49,52,49,55,57,51,44,52,53,46,55,51,48,54,53,55,93,44,91,45,57,51,46,53,49,51,54,56,51,44,52,53,46,55,51,52,51,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,69,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,53,57,55,50,44,34,98,101,100,115,34,58,49,49,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,56,53,49,44,52,50,46,51,50,55,49,51,50,93,44,91,45,56,48,46,53,49,57,51,53,52,44,52,49,46,56,52,57,53,54,51,93,44,91,45,55,57,46,54,49,50,48,55,50,44,52,49,46,56,53,48,48,53,54,93,44,91,45,55,57,46,54,49,48,56,51,57,44,52,49,46,57,57,57,48,48,54,93,44,91,45,55,57,46,55,54,49,51,49,51,44,52,49,46,57,57,56,56,48,56,93,44,91,45,55,57,46,55,54,50,52,49,56,44,52,50,46,53,49,54,48,55,50,93,44,91,45,56,48,46,48,56,48,50,50,50,44,52,50,46,51,57,52,49,54,50,93,44,91,45,56,48,46,53,49,57,56,53,49,44,52,50,46,51,50,55,49,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,112,105,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,55,50,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,51,48,51,51,49,44,51,50,46,48,52,57,55,50,56,93,44,91,45,57,48,46,55,49,56,50,57,55,44,51,50,46,48,52,56,51,53,50,93,44,91,45,57,48,46,55,51,54,50,56,50,44,51,49,46,55,56,54,49,51,52,93,44,91,45,57,48,46,55,51,54,56,50,52,44,51,49,46,54,57,56,52,57,49,93,44,91,45,57,48,46,50,55,57,57,53,51,44,51,49,46,54,57,57,56,54,53,93,44,91,45,57,48,46,50,52,53,49,57,49,44,51,49,46,55,49,55,53,50,52,93,44,91,45,57,48,46,49,50,50,53,54,53,44,51,49,46,55,53,50,54,56,93,44,91,45,57,48,46,49,51,50,53,53,50,44,51,49,46,56,53,54,57,50,51,93,44,91,45,57,48,46,50,51,48,51,51,49,44,51,50,46,48,52,57,55,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,54,55,34,44,34,78,65,77,69,34,58,34,86,97,110,32,90,97,110,100,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,51,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,55,54,56,48,49,44,51,50,46,56,51,56,52,56,57,93,44,91,45,57,54,46,48,55,53,56,57,57,44,51,50,46,51,53,55,53,48,53,93,44,91,45,57,53,46,52,52,57,49,54,53,44,51,50,46,51,53,53,50,51,51,93,44,91,45,57,53,46,53,57,52,51,44,51,50,46,52,55,57,56,53,56,93,44,91,45,57,53,46,53,57,52,53,52,49,44,51,50,46,54,56,55,48,50,54,93,44,91,45,57,53,46,54,51,53,48,49,55,44,51,50,46,55,50,48,51,56,93,44,91,45,57,53,46,57,51,52,52,51,51,44,51,50,46,56,51,55,50,49,55,93,44,91,45,57,54,46,48,55,54,56,48,49,44,51,50,46,56,51,56,52,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,82,111,97,110,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,53,56,51,44,34,98,101,100,115,34,58,50,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,52,55,52,55,54,44,51,55,46,51,48,57,51,53,50,93,44,91,45,56,48,46,48,55,52,49,49,57,44,51,55,46,52,50,50,52,54,57,93,44,91,45,56,48,46,50,54,50,49,56,52,44,51,55,46,51,52,49,53,50,54,93,44,91,45,56,48,46,49,57,48,55,51,56,44,51,55,46,50,50,55,55,56,51,93,44,91,45,56,48,46,49,55,56,49,50,53,44,51,55,46,49,49,51,52,93,44,91,45,56,48,46,49,50,56,54,55,52,44,51,55,46,49,50,50,57,48,49,93,44,91,45,55,57,46,57,54,49,56,57,44,51,55,46,49,51,55,51,52,57,93,44,91,45,55,57,46,56,52,55,50,49,55,44,51,55,46,50,50,53,52,48,54,93,44,91,45,55,57,46,56,52,55,52,55,54,44,51,55,46,51,48,57,51,53,50,93,93,44,91,91,45,56,48,46,48,50,50,50,50,54,44,51,55,46,51,48,56,51,51,56,93,44,91,45,55,57,46,57,48,53,52,54,44,51,55,46,51,50,49,56,51,53,93,44,91,45,55,57,46,57,52,54,56,49,55,44,51,55,46,50,49,51,48,51,55,93,44,91,45,56,48,46,48,51,51,52,54,52,44,51,55,46,50,54,50,56,57,93,44,91,45,56,48,46,48,57,51,54,55,53,44,51,55,46,50,56,50,53,48,50,93,44,91,45,56,48,46,48,50,50,50,50,54,44,51,55,46,51,48,56,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,65,117,103,117,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,55,48,49,44,34,98,101,100,115,34,58,51,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,56,50,54,54,56,44,51,56,46,48,56,54,48,53,52,93,44,91,45,55,57,46,49,53,55,51,57,44,51,55,46,56,57,49,48,48,51,93,44,91,45,55,57,46,48,48,53,49,50,57,44,51,55,46,56,56,49,54,57,93,44,91,45,55,56,46,56,51,56,56,55,52,44,51,56,46,48,52,55,51,55,93,44,91,45,55,56,46,55,52,57,51,57,54,44,51,56,46,50,48,54,54,52,56,93,44,91,45,55,57,46,50,50,52,53,56,51,44,51,56,46,52,55,55,53,56,56,93,44,91,45,55,57,46,51,49,50,50,55,54,44,51,56,46,52,49,49,56,55,54,93,44,91,45,55,57,46,52,51,51,54,55,44,51,56,46,50,50,57,52,57,51,93,44,91,45,55,57,46,53,49,50,49,53,56,44,51,56,46,49,56,48,52,49,57,93,44,91,45,55,57,46,52,56,50,54,54,56,44,51,56,46,48,56,54,48,53,52,93,93,44,91,91,45,55,56,46,57,52,56,53,48,57,44,51,56,46,48,54,56,49,48,52,93,44,91,45,55,56,46,57,48,51,55,57,53,44,51,56,46,48,57,57,56,48,50,93,44,91,45,55,56,46,56,54,50,54,55,55,44,51,56,46,48,56,57,57,55,50,93,44,91,45,55,56,46,56,57,49,55,55,50,44,51,56,46,48,51,57,52,51,56,93,44,91,45,55,56,46,57,52,56,53,48,57,44,51,56,46,48,54,56,49,48,52,93,93,44,91,91,45,55,57,46,48,55,55,53,54,49,44,51,56,46,49,50,54,52,54,93,44,91,45,55,57,46,48,57,51,55,57,49,44,51,56,46,49,56,54,50,56,55,93,44,91,45,55,57,46,48,51,51,55,56,57,44,51,56,46,49,57,57,48,49,56,93,44,91,45,55,57,46,48,50,48,51,48,56,44,51,56,46,49,52,51,55,50,53,93,44,91,45,55,57,46,48,55,55,53,54,49,44,51,56,46,49,50,54,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,54,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,48,34,44,34,78,65,77,69,34,58,34,66,114,105,115,116,111,108,32,66,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,55,46,49,57,54,50,57,50,44,53,56,46,56,52,54,50,52,57,93,44,91,45,49,53,55,46,57,57,57,57,53,57,44,53,56,46,54,52,50,49,54,56,93,44,91,45,49,53,56,44,53,56,46,54,49,54,54,54,55,93,44,91,45,49,53,54,46,51,49,51,56,56,57,44,53,56,46,54,49,54,54,54,54,93,44,91,45,49,53,54,46,51,49,51,56,56,57,44,53,56,46,56,56,53,56,51,51,93,44,91,45,49,53,55,46,48,52,53,52,57,54,44,53,56,46,56,56,53,56,51,51,93,44,91,45,49,53,55,46,49,57,54,50,57,50,44,53,56,46,56,52,54,50,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,80,105,117,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,53,49,56,52,57,53,44,51,56,46,53,49,48,52,49,51,93,44,91,45,49,49,50,46,52,52,52,48,56,49,44,51,56,46,52,48,53,54,52,54,93,44,91,45,49,49,50,46,51,51,53,53,49,44,51,56,46,51,51,50,51,52,52,93,44,91,45,49,49,50,46,52,52,52,50,49,52,44,51,56,46,49,53,48,48,48,49,93,44,91,45,49,49,49,46,56,52,51,50,49,53,44,51,56,46,49,53,49,50,56,93,44,91,45,49,49,49,46,56,52,56,55,54,49,44,51,56,46,52,50,52,57,51,51,93,44,91,45,49,49,49,46,55,54,54,51,57,51,44,51,56,46,53,48,50,50,52,51,93,44,91,45,49,49,50,46,53,49,56,52,57,53,44,51,56,46,53,49,48,52,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,53,51,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,57,49,54,48,53,44,51,56,46,53,57,51,55,48,49,93,44,91,45,56,51,46,57,51,48,51,52,56,44,51,56,46,52,57,50,50,55,56,93,44,91,45,56,51,46,56,53,57,50,56,44,51,56,46,52,53,54,51,52,56,93,44,91,45,56,51,46,54,52,49,56,53,50,44,51,56,46,53,50,53,51,56,49,93,44,91,45,56,51,46,54,52,52,57,49,51,44,51,56,46,54,51,54,51,52,51,93,44,91,45,56,51,46,55,48,53,51,49,49,44,51,56,46,54,51,57,56,53,51,93,44,91,45,56,51,46,57,48,51,57,48,49,44,51,56,46,55,54,56,49,56,50,93,44,91,45,56,51,46,57,57,49,54,48,53,44,51,56,46,53,57,51,55,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,55,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,55,49,55,55,54,44,52,53,46,55,55,53,50,48,56,93,44,91,45,57,52,46,49,52,57,52,54,55,44,52,53,46,53,53,57,48,54,54,93,44,91,45,57,51,46,55,53,57,52,51,53,44,52,53,46,53,53,57,54,52,54,93,44,91,45,57,51,46,55,54,51,57,52,56,44,52,53,46,56,50,50,49,52,51,93,44,91,45,57,52,46,51,53,51,49,49,50,44,52,53,46,56,50,49,57,54,55,93,44,91,45,57,52,46,50,55,49,55,55,54,44,52,53,46,55,55,53,50,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,68,111,110,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,57,52,52,57,51,57,44,51,52,46,55,52,56,50,56,49,93,44,91,45,49,48,48,46,53,52,48,55,48,51,44,51,52,46,55,52,55,55,50,51,93,44,91,45,49,48,48,46,53,51,56,57,55,56,44,51,53,46,49,56,51,49,52,52,93,44,91,45,49,48,49,46,48,56,54,50,56,49,44,51,53,46,49,56,50,49,52,93,44,91,45,49,48,49,46,48,57,48,55,52,57,44,51,52,46,55,52,56,50,52,54,93,44,91,45,49,48,48,46,57,52,52,57,51,57,44,51,52,46,55,52,56,50,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,52,56,50,44,34,98,101,100,115,34,58,55,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,57,50,55,51,54,44,51,48,46,51,56,57,51,50,93,44,91,45,56,53,46,57,57,57,56,57,51,44,51,48,46,50,49,51,48,57,93,44,91,45,56,53,46,52,52,54,50,56,57,44,50,57,46,57,48,49,48,51,51,93,44,91,45,56,53,46,51,56,56,54,54,57,44,50,57,46,57,50,52,51,53,57,93,44,91,45,56,53,46,51,56,57,54,55,57,44,51,48,46,50,48,48,57,55,51,93,44,91,45,56,53,46,51,56,51,57,52,56,44,51,48,46,53,54,54,56,53,54,93,44,91,45,56,53,46,52,51,52,55,56,50,44,51,48,46,53,54,55,53,54,93,44,91,45,56,53,46,52,56,55,57,54,56,44,51,48,46,52,51,54,54,53,53,93,44,91,45,56,53,46,56,53,51,53,44,51,48,46,52,52,48,54,50,51,93,44,91,45,56,53,46,57,57,50,55,51,54,44,51,48,46,51,56,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,97,117,100,101,114,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,53,56,53,44,34,98,101,100,115,34,58,51,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,57,55,56,56,56,44,51,52,46,56,57,50,50,48,50,93,44,91,45,56,55,46,57,55,51,50,50,50,44,51,52,46,56,56,50,53,53,93,44,91,45,56,55,46,56,51,53,56,51,51,44,51,52,46,55,52,49,50,51,57,93,44,91,45,56,55,46,53,50,52,51,54,51,44,51,52,46,56,51,50,51,56,52,93,44,91,45,56,55,46,52,50,54,53,49,44,51,52,46,56,48,48,48,50,50,93,44,91,45,56,55,46,50,54,48,54,55,54,44,51,52,46,55,53,56,54,50,54,93,44,91,45,56,55,46,50,49,52,57,49,52,44,51,52,46,56,49,54,48,49,49,93,44,91,45,56,55,46,50,49,48,55,53,57,44,51,52,46,57,57,57,48,50,52,93,44,91,45,56,55,46,50,50,52,48,53,50,44,51,52,46,57,57,57,51,55,55,93,44,91,45,56,55,46,54,48,54,48,51,49,44,51,53,46,48,48,51,52,50,53,93,44,91,45,56,55,46,57,56,52,57,49,54,44,51,53,46,48,48,53,57,51,51,93,44,91,45,56,56,46,50,48,48,48,54,52,44,51,52,46,57,57,53,54,51,52,93,44,91,45,56,56,46,48,57,55,56,56,56,44,51,52,46,56,57,50,50,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,70,111,117,110,116,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,57,50,49,52,56,44,52,48,46,51,54,54,54,49,50,93,44,91,45,56,55,46,50,52,52,56,57,56,44,52,48,46,51,48,57,50,53,50,93,44,91,45,56,55,46,52,48,54,54,54,55,44,52,48,46,49,50,55,53,48,56,93,44,91,45,56,55,46,52,50,48,50,50,49,44,51,57,46,57,53,50,52,53,50,93,44,91,45,56,55,46,48,57,49,48,48,54,44,51,57,46,57,53,51,48,48,57,93,44,91,45,56,55,46,48,57,50,53,54,51,44,52,48,46,50,49,52,56,48,54,93,44,91,45,56,55,46,48,57,50,49,52,56,44,52,48,46,51,54,54,54,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,51,50,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,50,53,54,56,44,51,57,46,54,53,52,49,56,51,93,44,91,45,56,57,46,48,50,53,52,53,51,44,51,57,46,51,52,54,49,49,53,93,44,91,45,56,57,46,49,51,57,56,48,55,44,51,57,46,51,52,56,56,56,56,93,44,91,45,56,57,46,49,51,57,52,54,52,44,51,57,46,50,49,55,55,55,51,93,44,91,45,56,56,46,56,48,53,51,50,53,44,51,57,46,50,49,54,50,54,51,93,44,91,45,56,56,46,52,55,48,57,48,54,44,51,57,46,50,49,53,48,50,57,93,44,91,45,56,56,46,52,55,48,56,51,44,51,57,46,51,55,52,53,49,53,93,44,91,45,56,56,46,52,55,48,53,48,53,44,51,57,46,52,52,55,48,52,49,93,44,91,45,56,56,46,53,56,52,50,55,51,44,51,57,46,52,52,55,53,56,50,93,44,91,45,56,56,46,56,49,48,53,55,53,44,51,57,46,54,53,51,50,50,50,93,44,91,45,56,57,46,48,50,53,54,56,44,51,57,46,54,53,52,49,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,55,50,52,44,34,98,101,100,115,34,58,49,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,51,57,52,54,52,44,51,57,46,50,49,55,55,55,51,93,44,91,45,56,57,46,50,53,48,53,49,51,44,51,57,46,50,49,55,53,49,50,93,44,91,45,56,57,46,50,53,48,51,48,57,44,51,57,46,48,50,56,49,56,53,93,44,91,45,56,57,46,50,53,52,49,56,53,44,51,56,46,55,52,50,48,49,56,93,44,91,45,56,57,46,49,51,56,51,57,51,44,51,56,46,55,51,54,51,51,49,93,44,91,45,56,57,46,49,51,56,49,51,56,44,51,56,46,56,50,52,50,48,57,93,44,91,45,56,56,46,54,57,53,49,54,53,44,51,56,46,56,50,54,50,57,57,93,44,91,45,56,56,46,54,57,51,53,51,49,44,51,56,46,57,49,52,54,49,55,93,44,91,45,56,56,46,56,48,54,55,57,53,44,51,56,46,57,49,49,53,56,53,93,44,91,45,56,56,46,56,48,53,51,50,53,44,51,57,46,50,49,54,50,54,51,93,44,91,45,56,57,46,49,51,57,52,54,52,44,51,57,46,50,49,55,55,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,57,56,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,54,50,56,49,51,44,51,57,46,57,51,48,51,56,93,44,91,45,56,50,46,51,57,54,53,57,52,44,51,57,46,56,51,51,48,53,55,93,44,91,45,56,50,46,51,55,52,53,51,49,44,51,57,46,54,53,52,57,53,57,93,44,91,45,56,50,46,51,55,57,56,57,44,51,57,46,53,57,54,55,51,56,93,44,91,45,56,50,46,49,53,57,49,54,49,44,51,57,46,53,53,54,53,55,52,93,44,91,45,56,50,46,48,52,55,53,50,56,44,51,57,46,53,53,48,56,50,53,93,44,91,45,56,50,46,48,50,52,50,49,57,44,51,57,46,55,50,52,54,56,54,93,44,91,45,56,50,46,48,55,54,54,51,57,44,51,57,46,55,55,48,57,54,93,44,91,45,56,50,46,50,51,51,57,55,52,44,51,57,46,57,49,51,50,54,93,44,91,45,56,50,46,52,54,50,56,49,51,44,51,57,46,57,51,48,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,57,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,57,48,34,44,34,78,65,77,69,34,58,34,68,97,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,53,49,50,44,34,98,101,100,115,34,58,51,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,51,52,51,49,49,55,44,51,54,46,53,52,49,53,57,93,44,91,45,55,57,46,51,57,56,48,57,52,44,51,54,46,54,52,52,48,51,55,93,44,91,45,55,57,46,52,55,48,48,53,55,44,51,54,46,53,52,48,57,55,49,93,44,91,45,55,57,46,51,52,51,49,49,55,44,51,54,46,53,52,49,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,97,110,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,49,53,50,53,49,44,51,52,46,52,51,49,55,52,56,93,44,91,45,56,51,46,54,50,48,49,49,53,44,51,52,46,50,57,53,50,55,54,93,44,91,45,56,51,46,52,56,48,51,54,49,44,51,52,46,50,54,50,48,51,56,93,44,91,45,56,51,46,52,48,50,52,50,56,44,51,52,46,49,57,55,52,57,57,93,44,91,45,56,51,46,51,53,53,50,53,49,44,51,52,46,50,50,51,55,57,52,93,44,91,45,56,51,46,51,57,56,51,57,54,44,51,52,46,52,54,48,56,56,51,93,44,91,45,56,51,46,52,53,57,55,55,44,51,52,46,52,56,49,49,52,50,93,44,91,45,56,51,46,54,49,53,50,53,49,44,51,52,46,52,51,49,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,53,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,55,54,55,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,52,56,53,56,50,44,51,49,46,56,50,55,48,55,53,93,44,91,45,56,50,46,49,51,51,48,49,51,44,51,49,46,55,55,51,52,48,52,93,44,91,45,56,50,46,49,51,50,55,57,52,44,51,49,46,52,55,49,50,54,50,93,44,91,45,56,50,46,48,52,49,49,50,57,44,51,49,46,51,55,51,55,50,49,93,44,91,45,56,49,46,55,51,49,54,57,52,44,51,49,46,51,51,48,48,52,56,93,44,91,45,56,49,46,54,50,52,50,57,44,51,49,46,52,53,50,57,56,50,93,44,91,45,56,49,46,54,54,51,50,48,54,44,51,49,46,53,51,56,54,54,55,93,44,91,45,56,49,46,56,50,51,57,50,49,44,51,49,46,54,53,49,56,48,57,93,44,91,45,56,49,46,57,54,57,48,53,50,44,51,49,46,55,56,57,51,50,52,93,44,91,45,56,50,46,48,52,56,53,56,50,44,51,49,46,56,50,55,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,50,48,53,49,44,34,98,101,100,115,34,58,52,52,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,55,52,48,50,54,44,51,53,46,55,50,53,57,55,93,44,91,45,57,55,46,54,55,49,51,54,57,44,51,53,46,51,55,55,49,53,49,93,44,91,45,57,55,46,49,52,50,49,49,52,44,51,53,46,51,55,54,56,54,93,44,91,45,57,55,46,49,52,49,52,57,44,51,53,46,52,54,51,57,55,55,93,44,91,45,57,55,46,49,52,49,48,54,54,44,51,53,46,55,50,52,52,48,49,93,44,91,45,57,55,46,54,55,52,48,50,54,44,51,53,46,55,50,53,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,52,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,51,51,53,48,51,44,51,52,46,49,55,50,55,52,56,93,44,91,45,57,54,46,54,54,57,57,54,51,44,51,52,46,49,55,50,53,50,49,93,44,91,45,57,54,46,53,56,53,51,53,53,44,51,52,46,49,49,52,52,53,57,93,44,91,45,57,54,46,52,48,55,53,49,55,44,51,52,46,49,53,55,51,49,55,93,44,91,45,57,54,46,52,48,55,48,55,52,44,51,52,46,52,49,56,51,57,93,44,91,45,57,54,46,53,49,51,55,56,55,44,51,52,46,53,48,53,51,57,54,93,44,91,45,57,54,46,56,50,55,51,52,51,44,51,52,46,53,48,54,48,54,50,93,44,91,45,57,54,46,56,56,48,55,57,44,51,52,46,53,48,54,48,53,51,93,44,91,45,57,54,46,57,51,51,51,48,53,44,51,52,46,51,51,50,53,54,49,93,44,91,45,57,54,46,57,51,51,53,48,51,44,51,52,46,49,55,50,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,50,53,54,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,51,57,54,48,57,44,51,53,46,51,51,48,57,57,51,93,44,91,45,56,51,46,49,48,56,53,54,56,44,51,53,46,48,48,49,51,53,52,93,44,91,45,56,51,46,48,48,56,53,51,49,44,51,53,46,48,50,55,51,57,52,93,44,91,45,56,50,46,57,50,48,56,56,49,44,51,53,46,50,57,50,48,51,55,93,44,91,45,56,51,46,49,56,54,51,50,50,44,51,53,46,53,49,52,51,54,56,93,44,91,45,56,51,46,51,54,51,55,54,54,44,51,53,46,52,50,54,57,50,51,93,44,91,45,56,51,46,51,51,57,54,48,57,44,51,53,46,51,51,48,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,83,117,109,109,105,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,49,49,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,53,53,51,50,54,54,44,52,48,46,54,48,57,51,49,51,93,44,91,45,49,49,49,46,51,55,53,52,56,49,44,52,48,46,54,51,51,49,49,54,93,44,91,45,49,49,49,46,49,52,55,50,49,54,44,52,48,46,53,52,57,54,48,50,93,44,91,45,49,49,48,46,57,55,54,48,56,54,44,52,48,46,53,57,50,57,53,52,93,44,91,45,49,49,48,46,57,48,49,57,55,52,44,52,48,46,54,55,56,49,54,50,93,44,91,45,49,49,48,46,55,53,48,55,51,51,44,52,48,46,55,52,55,55,48,54,93,44,91,45,49,49,48,46,54,53,54,52,56,50,44,52,48,46,55,52,48,50,55,53,93,44,91,45,49,49,48,46,51,55,56,57,54,50,44,52,48,46,55,56,55,49,56,93,44,91,45,49,49,48,46,50,54,48,57,54,55,44,52,48,46,56,51,52,56,50,52,93,44,91,45,49,49,48,46,48,48,48,55,49,49,44,52,48,46,56,49,51,54,55,56,93,44,91,45,49,49,48,46,48,48,48,55,49,55,44,52,48,46,57,57,55,52,53,93,44,91,45,49,49,48,46,48,52,56,52,56,51,44,52,48,46,57,57,55,50,57,53,93,44,91,45,49,49,49,46,48,52,54,56,49,53,44,52,48,46,57,57,55,56,55,53,93,44,91,45,49,49,49,46,48,52,54,55,54,54,44,52,49,46,50,53,49,54,50,55,93,44,91,45,49,49,49,46,50,54,52,57,55,52,44,52,49,46,49,52,52,48,52,52,93,44,91,45,49,49,49,46,53,48,55,53,49,44,52,49,46,48,54,51,50,51,52,93,44,91,45,49,49,49,46,52,56,54,49,53,57,44,52,48,46,56,55,51,49,50,52,93,44,91,45,49,49,49,46,53,50,55,52,54,53,44,52,48,46,55,56,53,55,53,50,93,44,91,45,49,49,49,46,54,52,49,48,53,50,44,52,48,46,55,57,56,57,50,53,93,44,91,45,49,49,49,46,53,53,51,50,54,54,44,52,48,46,54,48,57,51,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,52,57,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,50,56,52,48,52,44,51,55,46,56,50,57,52,51,53,93,44,91,45,57,51,46,54,49,54,48,51,51,44,51,55,46,53,55,50,54,56,57,93,44,91,45,57,51,46,54,50,49,49,53,51,44,51,55,46,52,50,55,52,50,51,93,44,91,45,57,51,46,49,56,50,52,56,57,44,51,55,46,52,49,55,50,48,52,93,44,91,45,57,51,46,49,56,55,57,49,53,44,51,55,46,56,48,50,55,51,55,93,44,91,45,57,51,46,53,55,51,50,48,50,44,51,55,46,56,50,56,48,51,53,93,44,91,45,57,51,46,54,50,56,52,48,52,44,51,55,46,56,50,57,52,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,76,97,110,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,52,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,51,48,48,53,57,55,44,52,48,46,53,50,54,49,51,54,93,44,91,45,49,49,55,46,53,52,49,55,52,57,44,52,48,46,48,48,49,48,51,52,93,44,91,45,49,49,55,46,52,54,49,51,52,44,51,57,46,56,54,55,56,49,56,93,44,91,45,49,49,55,46,52,57,53,51,52,52,44,51,57,46,55,52,56,51,54,52,93,44,91,45,49,49,55,46,52,56,53,51,51,54,44,51,57,46,53,52,53,51,50,50,93,44,91,45,49,49,55,46,53,56,55,49,52,44,51,57,46,53,49,56,53,50,49,93,44,91,45,49,49,55,46,54,52,54,48,49,49,44,51,57,46,52,50,54,54,48,50,93,44,91,45,49,49,55,46,55,54,51,48,52,54,44,51,57,46,51,53,50,56,51,93,44,91,45,49,49,55,46,55,49,57,57,53,44,51,57,46,50,51,54,56,50,49,93,44,91,45,49,49,55,46,55,55,53,52,54,56,44,51,57,46,48,57,51,52,50,53,93,44,91,45,49,49,55,46,51,51,49,56,53,55,44,51,57,46,49,54,51,52,51,93,44,91,45,49,49,54,46,54,48,48,57,52,54,44,51,57,46,49,54,49,52,54,51,93,44,91,45,49,49,54,46,53,57,48,51,57,54,44,52,48,46,48,55,50,50,55,55,93,44,91,45,49,49,54,46,53,57,54,56,49,53,44,52,48,46,57,52,54,52,54,93,44,91,45,49,49,54,46,53,56,54,55,56,54,44,52,49,46,48,48,48,51,57,56,93,44,91,45,49,49,55,46,48,49,56,52,49,57,44,52,49,46,48,48,48,50,53,52,93,44,91,45,49,49,55,46,48,49,56,54,54,52,44,52,48,46,54,52,51,48,51,53,93,44,91,45,49,49,55,46,50,52,54,55,56,56,44,52,48,46,54,52,50,52,52,53,93,44,91,45,49,49,55,46,51,48,48,53,57,55,44,52,48,46,53,50,54,49,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,87,105,110,110,101,115,104,105,101,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,55,57,56,48,50,44,52,51,46,53,48,48,54,50,49,93,44,91,45,57,50,46,48,56,48,57,55,54,44,52,51,46,50,49,50,57,52,55,93,44,91,45,57,50,46,48,56,49,49,52,54,44,52,51,46,48,56,50,55,57,52,93,44,91,45,57,49,46,54,48,53,51,48,55,44,52,51,46,48,56,49,54,53,51,93,44,91,45,57,49,46,54,49,48,56,51,53,44,52,51,46,53,48,48,54,53,55,93,44,91,45,57,49,46,55,51,48,50,49,55,44,52,51,46,53,48,48,56,48,54,93,44,91,45,57,50,46,48,55,57,56,48,50,44,52,51,46,53,48,48,54,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,114,97,99,107,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,51,48,52,49,49,44,51,56,46,56,50,55,52,51,55,93,44,91,45,56,52,46,50,48,53,51,52,54,44,51,56,46,53,56,50,48,51,57,93,44,91,45,56,52,46,49,54,50,48,51,49,44,51,56,46,53,53,52,49,50,53,93,44,91,45,56,51,46,57,57,49,54,48,53,44,51,56,46,53,57,51,55,48,49,93,44,91,45,56,51,46,57,48,51,57,48,49,44,51,56,46,55,54,56,49,56,50,93,44,91,45,56,52,46,48,53,50,55,48,57,44,51,56,46,55,55,49,50,50,54,93,44,91,45,56,52,46,50,51,48,52,49,49,44,51,56,46,56,50,55,52,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,70,108,111,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,56,51,51,49,50,44,52,54,46,48,49,52,49,49,51,93,44,91,45,56,56,46,54,55,53,56,50,49,44,52,53,46,55,50,50,57,93,44,91,45,56,56,46,52,50,53,51,48,50,44,52,53,46,55,50,50,52,50,54,93,44,91,45,56,56,46,48,53,57,50,52,54,44,52,53,46,55,49,51,48,54,51,93,44,91,45,56,56,46,48,53,56,50,53,51,44,52,53,46,55,56,48,54,50,57,93,44,91,45,56,56,46,49,49,54,56,52,53,44,52,53,46,57,50,49,54,50,55,93,44,91,45,56,56,46,53,48,55,52,56,44,52,54,46,48,49,56,53,49,54,93,44,91,45,56,56,46,54,56,51,51,49,50,44,52,54,46,48,49,52,49,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,82,111,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,48,53,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,55,56,52,49,50,44,51,56,46,57,49,52,56,54,55,93,44,91,45,56,49,46,53,48,50,54,50,56,44,51,56,46,57,49,55,57,50,50,93,44,91,45,56,49,46,53,52,54,54,51,49,44,51,56,46,54,55,50,51,56,55,93,44,91,45,56,49,46,53,50,50,49,54,54,44,51,56,46,54,49,50,55,52,54,93,44,91,45,56,49,46,52,54,53,51,55,50,44,51,56,46,53,52,57,56,57,56,93,44,91,45,56,49,46,49,57,52,49,49,51,44,51,56,46,53,50,55,54,51,52,93,44,91,45,56,49,46,48,56,51,55,49,44,51,56,46,54,49,49,57,56,50,93,44,91,45,56,49,46,50,55,56,52,49,50,44,51,56,46,57,49,52,56,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,87,97,100,101,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,52,54,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,54,51,55,49,44,52,54,46,55,49,55,54,52,93,44,91,45,57,53,46,49,53,53,53,55,44,52,54,46,51,54,56,56,56,93,44,91,45,57,52,46,55,51,49,52,52,50,44,52,54,46,51,54,56,54,48,53,93,44,91,45,57,52,46,55,55,57,49,50,49,44,52,54,46,51,57,52,50,49,53,93,44,91,45,57,52,46,55,56,55,49,50,54,44,52,54,46,56,48,51,57,52,51,93,44,91,45,57,53,46,49,54,51,48,49,44,52,54,46,56,48,52,55,50,93,44,91,45,57,53,46,49,54,51,55,49,44,52,54,46,55,49,55,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,55,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,55,48,34,44,34,78,65,77,69,34,58,34,72,111,112,101,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,48,56,44,34,98,101,100,115,34,58,49,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,51,53,54,54,54,44,51,55,46,51,49,51,48,51,57,93,44,91,45,55,55,46,51,50,53,51,50,44,51,55,46,50,54,48,57,51,50,93,44,91,45,55,55,46,50,55,51,54,49,52,44,51,55,46,50,55,56,51,48,56,93,44,91,45,55,55,46,50,56,52,48,49,57,44,51,55,46,51,49,51,48,49,50,93,44,91,45,55,55,46,51,51,53,54,54,54,44,51,55,46,51,49,51,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,87,105,110,110,101,98,97,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,54,49,55,52,44,34,98,101,100,115,34,58,57,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,48,49,52,50,51,44,52,50,46,53,48,48,53,53,52,93,44,91,45,56,57,46,51,57,54,49,57,50,44,52,50,46,50,48,49,57,49,54,93,44,91,45,56,57,46,49,55,51,44,52,50,46,50,48,52,50,52,49,93,44,91,45,56,57,46,49,55,50,56,48,51,44,52,50,46,49,53,48,52,49,55,93,44,91,45,56,56,46,57,51,57,55,51,50,44,52,50,46,49,53,50,51,50,93,44,91,45,56,56,46,57,52,48,51,56,56,44,52,50,46,52,57,53,48,52,53,93,44,91,45,56,57,46,51,54,53,55,57,56,44,52,50,46,53,48,48,48,55,56,93,44,91,45,56,57,46,52,48,49,52,50,51,44,52,50,46,53,48,48,53,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,71,105,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,52,48,48,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,52,57,52,55,55,56,44,51,51,46,57,57,57,56,49,55,93,44,91,45,49,49,49,46,51,55,50,51,49,55,44,51,51,46,56,50,51,57,50,52,93,44,91,45,49,49,49,46,51,56,54,56,49,50,44,51,51,46,55,53,48,48,52,52,93,44,91,45,49,49,49,46,50,54,49,55,51,44,51,51,46,54,50,50,53,55,49,93,44,91,45,49,49,49,46,49,53,51,51,53,52,44,51,51,46,54,55,55,54,48,54,93,44,91,45,49,49,49,46,48,51,57,57,55,54,44,51,51,46,52,54,54,48,49,57,93,44,91,45,49,49,48,46,57,52,54,54,56,52,44,51,51,46,50,53,48,48,53,51,93,44,91,45,49,49,48,46,55,56,51,49,51,54,44,51,50,46,57,56,52,54,54,93,44,91,45,49,49,48,46,54,51,52,52,49,50,44,51,51,46,49,52,50,51,54,54,93,44,91,45,49,49,48,46,52,52,57,48,50,49,44,51,51,46,49,57,52,53,50,54,93,44,91,45,49,49,48,46,52,53,49,55,51,49,44,51,51,46,51,54,49,53,54,52,93,44,91,45,49,49,48,46,51,52,48,57,52,57,44,51,51,46,52,50,55,48,54,54,93,44,91,45,49,49,48,46,49,54,57,52,55,55,44,51,51,46,52,54,53,55,49,50,93,44,91,45,49,49,48,46,48,48,48,54,52,54,44,51,51,46,52,54,53,57,49,54,93,44,91,45,49,49,48,46,48,48,48,54,52,57,44,51,51,46,53,55,54,57,51,93,44,91,45,49,49,48,46,48,48,48,54,54,44,51,52,46,48,48,48,48,52,54,93,44,91,45,49,49,48,46,55,53,48,54,55,50,44,51,52,46,48,48,48,48,52,56,93,44,91,45,49,49,48,46,55,53,48,54,55,56,44,51,52,46,50,54,51,51,49,52,93,44,91,45,49,49,48,46,56,52,56,48,53,57,44,51,52,46,50,54,55,50,48,53,93,44,91,45,49,49,49,46,48,56,55,53,48,52,44,51,52,46,51,57,52,57,57,54,93,44,91,45,49,49,49,46,50,52,54,54,54,49,44,51,52,46,52,53,48,56,48,56,93,44,91,45,49,49,49,46,52,57,49,56,54,54,44,51,52,46,52,50,50,55,52,51,93,44,91,45,49,49,49,46,53,53,52,54,56,49,44,51,52,46,52,55,49,55,51,51,93,44,91,45,49,49,49,46,54,53,57,54,50,50,44,51,52,46,51,56,54,51,52,50,93,44,91,45,49,49,49,46,55,49,50,49,49,56,44,51,52,46,49,53,49,50,55,49,93,44,91,45,49,49,49,46,52,55,55,56,53,51,44,51,52,46,49,53,49,49,48,56,93,44,91,45,49,49,49,46,52,57,52,55,55,56,44,51,51,46,57,57,57,56,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,87,105,99,111,109,105,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,55,50,44,34,98,101,100,115,34,58,52,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,48,49,53,54,57,44,51,56,46,53,54,48,55,51,54,93,44,91,45,55,53,46,56,50,51,55,48,54,44,51,56,46,52,56,49,48,50,50,93,44,91,45,55,53,46,57,52,56,52,53,52,44,51,56,46,50,49,53,57,54,93,44,91,45,55,53,46,55,54,57,54,55,49,44,51,56,46,50,56,52,53,56,55,93,44,91,45,55,53,46,54,49,50,55,54,52,44,51,56,46,50,55,56,54,50,54,93,44,91,45,55,53,46,51,54,52,54,52,49,44,51,56,46,50,57,48,51,53,57,93,44,91,45,55,53,46,51,48,55,48,49,49,44,51,56,46,51,53,52,55,54,93,44,91,45,55,53,46,51,52,49,50,57,49,44,51,56,46,52,53,50,48,51,52,93,44,91,45,55,53,46,54,57,51,54,55,44,51,56,46,52,54,48,48,56,93,44,91,45,55,53,46,55,48,49,53,54,57,44,51,56,46,53,54,48,55,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,54,54,52,49,57,44,51,56,46,53,48,51,57,54,53,93,44,91,45,56,51,46,50,51,50,56,57,53,44,51,56,46,51,51,56,55,56,54,93,44,91,45,56,51,46,51,52,49,51,52,55,44,51,56,46,51,49,57,53,50,49,93,44,91,45,56,51,46,50,52,52,51,48,54,44,51,56,46,49,57,50,51,56,93,44,91,45,56,51,46,49,51,53,48,48,56,44,51,56,46,50,52,50,48,51,55,93,44,91,45,56,50,46,57,50,52,56,48,53,44,51,56,46,49,55,53,49,49,52,93,44,91,45,56,50,46,55,57,52,50,48,54,44,51,56,46,50,52,51,55,55,50,93,44,91,45,56,50,46,56,49,55,52,53,52,44,51,56,46,51,55,51,57,51,53,93,44,91,45,56,50,46,57,54,55,54,51,53,44,51,56,46,51,57,52,49,51,56,93,44,91,45,56,51,46,49,54,54,52,49,57,44,51,56,46,53,48,51,57,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,73,114,101,100,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,53,50,53,44,34,98,101,100,115,34,58,53,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,50,56,56,51,51,44,51,54,46,48,52,53,54,53,50,93,44,91,45,56,49,46,48,48,53,53,52,49,44,51,53,46,57,53,56,50,56,55,93,44,91,45,56,49,46,49,48,57,53,48,55,44,51,53,46,55,55,54,53,57,52,93,44,91,45,56,48,46,57,57,52,52,52,53,44,51,53,46,55,48,50,49,49,93,44,91,45,56,48,46,57,54,48,48,50,53,44,51,53,46,53,52,55,48,50,93,44,91,45,56,48,46,57,52,55,51,52,52,44,51,53,46,52,56,56,52,55,51,93,44,91,45,56,48,46,55,56,52,49,54,55,44,51,53,46,53,48,54,48,49,55,93,44,91,45,56,48,46,55,51,55,51,55,57,44,51,53,46,53,48,53,56,48,52,93,44,91,45,56,48,46,55,55,49,53,56,50,44,51,53,46,54,55,50,49,54,51,93,44,91,45,56,48,46,55,48,55,56,50,54,44,51,53,46,56,53,50,57,50,57,93,44,91,45,56,48,46,54,57,51,49,57,55,44,51,54,46,48,53,49,50,54,93,44,91,45,56,48,46,56,56,49,53,57,49,44,51,54,46,48,53,53,55,49,56,93,44,91,45,56,49,46,48,50,56,56,51,51,44,51,54,46,48,52,53,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,97,108,105,102,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,55,55,57,44,34,98,101,100,115,34,58,49,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,57,50,50,54,52,44,51,55,46,48,54,49,52,57,56,93,44,91,45,55,57,46,50,49,56,52,53,54,44,51,54,46,53,52,49,54,53,51,93,44,91,45,55,57,46,49,51,56,51,50,44,51,54,46,53,52,49,57,55,53,93,44,91,45,55,56,46,55,57,54,50,55,52,44,51,54,46,53,52,49,55,52,49,93,44,91,45,55,56,46,55,51,52,49,50,50,44,51,54,46,53,52,49,57,51,57,93,44,91,45,55,56,46,54,52,56,53,52,49,44,51,54,46,54,57,55,57,48,57,93,44,91,45,55,56,46,54,55,49,52,54,51,44,51,54,46,56,53,55,57,53,49,93,44,91,45,55,56,46,55,55,52,55,49,53,44,51,54,46,57,56,48,57,55,54,93,44,91,45,55,56,46,57,48,52,53,56,55,44,51,55,46,48,50,50,50,56,56,93,44,91,45,55,57,46,48,57,50,50,54,52,44,51,55,46,48,54,49,52,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,101,114,116,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,53,51,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,54,52,51,55,55,44,51,54,46,53,52,54,51,50,57,93,44,91,45,55,55,46,48,57,51,50,50,52,44,51,54,46,53,49,56,50,49,54,93,44,91,45,55,55,46,50,48,56,52,54,56,44,51,54,46,50,52,54,53,55,56,93,44,91,45,55,54,46,55,48,54,53,56,52,44,51,54,46,50,52,51,55,57,54,93,44,91,45,55,54,46,54,57,54,53,55,49,44,51,54,46,50,57,54,49,51,56,93,44,91,45,55,54,46,55,55,57,52,54,55,44,51,54,46,51,54,50,52,54,57,93,44,91,45,55,54,46,57,51,51,52,55,44,51,54,46,52,48,49,56,55,93,44,91,45,55,54,46,57,49,53,57,55,55,44,51,54,46,53,52,51,56,56,52,93,44,91,45,55,55,46,49,54,52,51,55,55,44,51,54,46,53,52,54,51,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,52,50,54,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,53,57,56,57,53,44,52,51,46,48,52,55,52,50,51,93,44,91,45,55,52,46,55,54,51,51,48,51,44,52,50,46,56,54,51,50,51,55,93,44,91,45,55,52,46,54,52,56,50,57,56,44,52,50,46,56,50,57,53,53,56,93,44,91,45,55,52,46,52,53,52,57,49,49,44,52,50,46,55,55,50,57,55,57,93,44,91,45,55,52,46,50,54,51,51,49,52,44,52,50,46,55,57,54,53,51,52,93,44,91,45,55,52,46,48,56,51,56,56,51,44,52,50,46,56,57,55,51,53,52,93,44,91,45,55,52,46,48,57,50,57,56,44,52,50,46,57,53,53,56,54,56,93,44,91,45,55,52,46,48,57,55,52,54,55,44,52,50,46,57,56,50,57,51,52,93,44,91,45,55,52,46,53,52,50,51,54,55,44,52,50,46,57,56,53,53,51,93,44,91,45,55,52,46,55,53,57,56,57,53,44,52,51,46,48,52,55,52,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,80,101,110,110,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,56,52,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,48,48,56,52,51,44,52,56,46,49,55,52,49,48,56,93,44,91,45,57,54,46,52,56,50,53,53,44,52,55,46,57,54,51,53,57,53,93,44,91,45,57,53,46,55,48,57,56,52,44,52,55,46,57,54,52,51,51,93,44,91,45,57,53,46,55,48,57,54,49,57,44,52,55,46,57,51,53,56,48,53,93,44,91,45,57,53,46,53,56,50,49,53,53,44,52,55,46,57,51,51,57,54,54,93,44,91,45,57,53,46,53,56,50,56,56,55,44,52,56,46,48,50,48,53,53,55,93,44,91,45,57,53,46,53,57,51,55,56,56,44,52,56,46,49,55,50,57,49,54,93,44,91,45,57,54,46,53,48,48,56,52,51,44,52,56,46,49,55,52,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,87,104,97,116,99,111,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,54,56,49,50,44,34,98,101,100,115,34,58,50,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,56,53,49,53,50,56,44,52,57,46,48,48,48,51,48,49,93,44,91,45,49,50,49,46,55,53,57,53,55,50,44,52,56,46,57,57,55,50,57,57,93,44,91,45,49,50,51,46,51,50,50,50,52,44,52,57,46,48,48,50,48,55,50,93,44,91,45,49,50,51,46,48,48,56,52,56,53,44,52,56,46,56,51,49,50,49,56,93,44,91,45,49,50,50,46,56,49,50,51,52,44,52,56,46,55,55,49,56,53,93,44,91,45,49,50,50,46,55,49,51,55,48,52,44,52,56,46,54,52,53,49,51,93,44,91,45,49,50,49,46,50,54,49,54,51,56,44,52,56,46,54,52,48,57,49,50,93,44,91,45,49,50,48,46,55,53,49,57,48,52,44,52,56,46,54,53,55,48,48,50,93,44,91,45,49,50,48,46,55,51,53,52,50,55,44,52,56,46,55,56,54,52,56,55,93,44,91,45,49,50,48,46,55,54,56,53,49,53,44,52,56,46,57,53,52,52,57,93,44,91,45,49,50,48,46,56,53,49,53,50,56,44,52,57,46,48,48,48,51,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,71,105,108,108,105,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,54,53,51,53,48,51,44,52,53,46,55,51,55,49,56,49,93,44,91,45,49,50,48,46,52,49,49,54,57,57,44,52,53,46,53,57,54,48,54,55,93,44,91,45,49,50,48,46,51,54,52,57,53,53,44,52,53,46,52,57,55,50,53,93,44,91,45,49,50,48,46,52,57,48,51,53,57,44,52,53,46,52,54,56,57,52,57,93,44,91,45,49,50,48,46,53,51,50,48,53,57,44,52,53,46,51,55,49,50,52,57,93,44,91,45,49,50,48,46,53,48,51,55,51,51,44,52,53,46,48,56,51,52,55,55,93,44,91,45,49,50,48,46,52,57,53,49,54,44,52,53,46,48,54,56,50,55,57,93,44,91,45,49,49,57,46,55,57,48,54,57,57,44,52,53,46,48,54,55,56,50,51,93,44,91,45,49,50,48,46,48,48,54,53,53,53,44,52,53,46,50,53,55,55,48,54,93,44,91,45,49,49,57,46,57,57,57,53,48,49,44,52,53,46,56,49,50,53,49,55,93,44,91,45,49,50,48,46,50,49,48,55,55,52,44,52,53,46,55,50,53,57,49,53,93,44,91,45,49,50,48,46,53,48,53,55,52,51,44,52,53,46,54,57,57,57,52,57,93,44,91,45,49,50,48,46,54,53,51,53,48,51,44,52,53,46,55,51,55,49,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,79,99,101,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,49,57,51,57,44,34,98,101,100,115,34,58,49,53,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,54,53,52,49,52,44,52,48,46,48,57,55,54,52,50,93,44,91,45,55,52,46,50,51,48,54,51,52,44,52,48,46,49,48,57,53,54,49,93,44,91,45,55,52,46,50,54,49,52,53,53,44,52,48,46,49,54,55,48,51,51,93,44,91,45,55,52,46,52,48,54,55,49,44,52,48,46,49,55,50,52,48,50,93,44,91,45,55,52,46,53,53,51,49,48,53,44,52,48,46,48,55,57,49,51,93,44,91,45,55,52,46,51,56,57,55,48,56,44,51,57,46,55,55,51,50,56,51,93,44,91,45,55,52,46,52,49,55,51,57,51,44,51,57,46,53,53,55,50,53,53,93,44,91,45,55,52,46,51,56,48,55,57,54,44,51,57,46,52,57,56,53,51,55,93,44,91,45,55,52,46,50,51,50,48,54,50,44,51,57,46,52,55,53,49,57,56,93,44,91,45,55,52,46,48,51,56,49,53,56,44,51,57,46,55,53,48,49,50,93,44,91,45,55,51,46,57,54,53,52,49,52,44,52,48,46,48,57,55,54,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,56,56,44,34,98,101,100,115,34,58,49,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,57,51,52,54,55,44,51,54,46,52,57,56,50,55,54,93,44,91,45,57,51,46,51,48,48,56,50,44,51,54,46,49,50,49,53,53,93,44,91,45,57,50,46,57,52,52,54,54,54,44,51,54,46,49,49,53,49,50,51,93,44,91,45,57,50,46,56,57,48,54,57,53,44,51,54,46,49,49,52,49,51,50,93,44,91,45,57,50,46,56,56,52,57,53,52,44,51,54,46,52,57,48,56,57,49,93,44,91,45,57,50,46,56,53,52,48,52,57,44,51,54,46,52,57,55,56,52,50,93,44,91,45,57,51,46,50,57,51,52,54,55,44,51,54,46,52,57,56,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,109,97,110,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,53,54,49,44,34,98,101,100,115,34,58,53,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,54,49,57,56,49,54,44,51,52,46,56,53,53,51,52,93,44,91,45,57,56,46,56,50,54,48,57,49,44,51,52,46,56,53,53,52,50,56,93,44,91,45,57,56,46,56,50,54,48,48,56,44,51,52,46,53,57,52,52,49,51,93,44,91,45,57,56,46,56,50,54,49,52,52,44,51,52,46,53,48,55,51,55,93,44,91,45,57,56,46,54,54,49,57,56,50,44,51,52,46,53,48,55,52,54,93,44,91,45,57,56,46,54,54,49,57,53,54,44,51,52,46,52,48,53,57,52,56,93,44,91,45,57,56,46,53,48,52,57,53,56,44,51,52,46,52,52,57,52,49,52,93,44,91,45,57,56,46,50,57,53,57,50,56,44,51,52,46,52,52,57,48,52,51,93,44,91,45,57,56,46,49,52,50,49,52,56,44,51,52,46,53,48,54,57,57,52,93,44,91,45,57,56,46,48,56,57,48,57,55,44,51,52,46,54,56,49,49,54,51,93,44,91,45,57,56,46,48,57,51,49,50,55,44,51,52,46,56,53,52,57,56,56,93,44,91,45,57,56,46,54,49,57,56,49,54,44,51,52,46,56,53,53,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,51,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,56,57,49,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,49,50,48,48,49,44,51,50,46,57,53,54,57,54,50,93,44,91,45,57,57,46,57,56,56,56,50,55,44,51,50,46,57,54,48,49,50,49,93,44,91,45,49,48,48,46,49,52,52,50,50,52,44,51,50,46,57,53,57,57,55,56,93,44,91,45,49,48,48,46,49,52,54,53,52,51,44,51,50,46,53,50,50,55,57,51,93,44,91,45,57,57,46,54,50,57,53,55,57,44,51,50,46,53,49,52,54,53,55,93,44,91,45,57,57,46,54,49,50,48,50,54,44,51,50,46,53,49,52,54,53,52,93,44,91,45,57,57,46,54,49,50,48,48,49,44,51,50,46,57,53,54,57,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,71,114,105,109,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,54,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,49,54,56,51,55,44,51,48,46,56,50,50,57,57,55,93,44,91,45,57,54,46,49,56,54,52,51,57,44,51,48,46,54,48,54,49,55,53,93,44,91,45,57,54,46,49,48,55,51,54,44,51,48,46,52,49,55,53,56,50,93,44,91,45,57,54,46,49,53,52,54,51,44,51,48,46,51,51,48,50,56,56,93,44,91,45,57,54,46,48,57,51,49,54,53,44,51,48,46,50,50,53,49,56,55,93,44,91,45,57,53,46,56,48,52,51,48,54,44,51,48,46,50,52,53,53,55,93,44,91,45,57,53,46,56,51,48,50,52,44,51,48,46,54,51,48,50,56,52,93,44,91,45,57,53,46,56,54,51,48,53,57,44,51,48,46,56,54,52,49,50,53,93,44,91,45,57,54,46,49,54,56,51,55,44,51,48,46,56,50,50,57,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,71,101,110,101,115,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,57,51,54,49,44,34,98,101,100,115,34,58,49,49,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,54,48,55,51,51,44,52,51,46,50,50,51,49,51,49,93,44,91,45,56,51,46,54,57,53,54,50,49,44,52,51,46,50,50,49,52,50,50,93,44,91,45,56,51,46,57,51,50,48,55,49,44,52,51,46,50,50,48,51,55,55,93,44,91,45,56,51,46,57,50,57,48,55,57,44,52,51,46,49,51,50,55,56,50,93,44,91,45,56,51,46,57,50,50,53,49,54,44,52,50,46,55,56,48,56,50,49,93,44,91,45,56,51,46,54,56,54,52,57,51,44,52,50,46,55,56,51,50,54,51,93,44,91,45,56,51,46,54,56,57,51,56,52,44,52,50,46,56,55,49,50,54,51,93,44,91,45,56,51,46,52,53,51,51,54,52,44,52,50,46,56,56,48,52,51,50,93,44,91,45,56,51,46,52,54,48,55,51,51,44,52,51,46,50,50,51,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,115,115,117,109,112,116,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,49,52,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,48,53,57,53,49,44,51,48,46,48,54,50,52,55,56,93,44,91,45,57,49,46,50,50,52,51,53,54,44,51,48,46,48,50,53,51,51,54,93,44,91,45,57,49,46,50,53,53,50,50,57,44,50,57,46,57,55,49,52,53,55,93,44,91,45,57,49,46,49,56,50,56,49,55,44,50,57,46,56,52,54,49,55,50,93,44,91,45,57,49,46,48,57,50,55,52,56,44,50,57,46,56,48,49,53,55,52,93,44,91,45,57,49,46,49,48,48,48,49,44,50,57,46,54,57,57,52,48,50,93,44,91,45,57,49,46,48,56,50,54,48,50,44,50,57,46,54,50,54,51,54,56,93,44,91,45,57,49,46,48,48,54,55,52,51,44,50,57,46,55,49,52,55,55,49,93,44,91,45,57,48,46,56,56,53,53,56,57,44,50,57,46,57,48,53,51,53,51,93,44,91,45,57,48,46,57,53,57,56,54,57,44,50,57,46,57,55,55,57,50,52,93,44,91,45,57,48,46,57,54,51,54,57,51,44,51,48,46,48,54,54,52,53,93,44,91,45,57,49,46,49,48,53,57,53,49,44,51,48,46,48,54,50,52,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,55,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,48,57,55,52,56,44,51,52,46,49,54,50,48,56,50,93,44,91,45,56,57,46,53,48,55,51,53,51,44,51,51,46,56,54,55,52,54,57,93,44,91,45,56,57,46,53,48,55,49,51,53,44,51,51,46,55,50,49,56,49,57,93,44,91,45,56,57,46,49,57,49,55,56,49,44,51,51,46,55,51,56,54,48,50,93,44,91,45,56,57,46,49,51,55,56,55,54,44,51,51,46,56,49,50,49,52,52,93,44,91,45,56,57,46,49,51,57,49,53,56,44,51,52,46,48,55,52,49,49,54,93,44,91,45,56,57,46,50,52,53,52,56,53,44,51,52,46,49,54,49,49,56,54,93,44,91,45,56,57,46,53,48,57,55,52,56,44,51,52,46,49,54,50,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,49,52,44,34,98,101,100,115,34,58,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,52,49,55,48,55,44,51,49,46,52,51,51,55,48,51,93,44,91,45,56,56,46,56,51,52,51,51,57,44,51,48,46,57,57,55,57,56,51,93,44,91,45,56,56,46,52,50,53,52,51,50,44,51,48,46,57,57,56,51,50,51,93,44,91,45,56,56,46,52,51,50,48,48,55,44,51,49,46,49,49,52,50,57,56,93,44,91,45,56,56,46,52,52,57,52,51,56,44,51,49,46,52,51,53,56,51,55,93,44,91,45,56,56,46,56,52,49,55,48,55,44,51,49,46,52,51,51,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,117,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,52,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,56,54,52,54,51,44,52,54,46,56,52,53,56,56,49,93,44,91,45,49,48,54,46,49,50,48,54,51,44,52,54,46,56,51,49,52,51,56,93,44,91,45,49,48,54,46,49,50,48,51,54,54,44,52,54,46,52,56,51,54,52,56,93,44,91,45,49,48,54,46,49,53,53,49,52,51,44,52,54,46,52,56,51,54,51,52,93,44,91,45,49,48,54,46,49,53,51,52,51,51,44,52,54,46,49,51,55,50,54,93,44,91,45,49,48,54,46,49,57,49,54,50,57,44,52,54,46,49,51,55,49,56,51,93,44,91,45,49,48,54,46,49,57,49,55,51,52,44,52,53,46,55,56,56,54,93,44,91,45,49,48,52,46,57,56,49,57,52,44,52,53,46,55,56,54,57,56,50,93,44,91,45,49,48,52,46,57,51,57,50,56,57,44,52,53,46,55,56,54,57,54,52,93,44,91,45,49,48,52,46,57,51,57,50,48,53,44,52,54,46,49,51,54,53,55,53,93,44,91,45,49,48,52,46,56,56,53,52,57,53,44,52,54,46,49,51,54,53,57,53,93,44,91,45,49,48,52,46,57,48,53,57,56,56,44,52,54,46,52,56,50,50,53,49,93,44,91,45,49,48,52,46,55,51,50,54,55,50,44,52,54,46,52,56,50,50,48,50,93,44,91,45,49,48,52,46,55,51,51,48,53,57,44,52,54,46,54,49,50,54,57,53,93,44,91,45,49,48,52,46,57,56,52,55,49,52,44,52,54,46,53,52,48,51,56,57,93,44,91,45,49,48,53,46,50,51,57,50,51,56,44,52,54,46,53,52,49,49,56,56,93,44,91,45,49,48,53,46,52,52,57,49,57,54,44,52,54,46,53,55,48,57,54,55,93,44,91,45,49,48,53,46,53,55,54,48,54,51,44,52,54,46,54,53,56,48,48,51,93,44,91,45,49,48,53,46,54,49,56,49,53,56,44,52,54,46,56,51,50,49,52,56,93,44,91,45,49,48,53,46,56,51,50,54,55,52,44,52,54,46,56,54,48,56,50,93,44,91,45,49,48,54,46,48,56,54,53,56,53,44,52,54,46,56,54,48,50,57,93,44,91,45,49,48,54,46,48,56,54,52,54,51,44,52,54,46,56,52,53,56,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,82,111,98,101,114,116,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,56,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,50,56,50,57,49,44,52,53,46,57,51,53,51,56,51,93,44,91,45,57,55,46,50,50,55,48,56,57,44,52,53,46,53,53,56,49,53,56,93,44,91,45,57,55,46,50,50,54,50,52,52,44,52,53,46,50,57,55,54,52,55,93,44,91,45,57,54,46,57,57,50,57,52,54,44,52,53,46,51,50,54,56,56,93,44,91,45,57,54,46,52,55,48,52,55,53,44,52,53,46,51,50,54,53,52,53,93,44,91,45,57,54,46,54,56,48,52,53,52,44,52,53,46,52,49,48,52,57,57,93,44,91,45,57,54,46,56,51,53,52,53,49,44,52,53,46,53,56,54,49,50,57,93,44,91,45,57,54,46,56,51,56,54,52,56,44,52,53,46,54,52,55,53,48,57,93,44,91,45,57,54,46,54,55,50,54,54,53,44,52,53,46,55,51,50,51,51,54,93,44,91,45,57,54,46,53,56,51,48,56,53,44,52,53,46,56,50,48,48,50,52,93,44,91,45,57,54,46,53,54,51,54,55,50,44,52,53,46,57,51,53,50,52,53,93,44,91,45,57,55,46,50,50,56,50,57,49,44,52,53,46,57,51,53,51,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,79,103,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,51,50,56,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,56,56,52,56,54,44,52,50,46,49,57,57,49,49,50,93,44,91,45,56,57,46,54,56,53,51,54,54,44,52,49,46,57,51,48,51,52,93,44,91,45,56,57,46,54,50,57,51,51,44,52,49,46,57,48,49,54,49,55,93,44,91,45,56,57,46,51,54,48,53,55,56,44,52,49,46,56,56,56,48,49,56,93,44,91,45,56,56,46,57,52,49,50,55,57,44,52,49,46,56,57,49,55,53,50,93,44,91,45,56,56,46,57,51,57,55,51,50,44,52,50,46,49,53,50,51,50,93,44,91,45,56,57,46,49,55,50,56,48,51,44,52,50,46,49,53,48,52,49,55,93,44,91,45,56,57,46,49,55,51,44,52,50,46,50,48,52,50,52,49,93,44,91,45,56,57,46,51,57,54,49,57,50,44,52,50,46,50,48,49,57,49,54,93,44,91,45,56,57,46,54,56,56,52,56,54,44,52,50,46,49,57,57,49,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,56,48,53,54,54,44,52,54,46,50,56,50,51,57,51,93,44,91,45,57,55,46,50,53,57,54,51,50,44,52,53,46,57,57,55,49,56,53,93,44,91,45,57,55,46,50,50,56,50,57,49,44,52,53,46,57,51,53,51,56,51,93,44,91,45,57,54,46,53,54,51,54,55,50,44,52,53,46,57,51,53,50,52,53,93,44,91,45,57,54,46,53,55,54,53,54,52,44,52,54,46,48,50,49,56,52,56,93,44,91,45,57,54,46,53,53,52,52,51,54,44,52,54,46,48,56,52,49,56,54,93,44,91,45,57,54,46,53,57,57,54,54,44,52,54,46,51,51,48,52,56,49,93,44,91,45,57,54,46,54,54,55,52,50,50,44,52,54,46,51,55,54,49,49,55,93,44,91,45,57,54,46,55,56,52,51,56,49,44,52,54,46,54,51,48,53,48,52,93,44,91,45,57,54,46,55,57,56,49,50,56,44,52,54,46,54,51,48,51,50,54,93,44,91,45,57,55,46,50,55,57,57,52,56,44,52,54,46,54,50,57,51,52,56,93,44,91,45,57,55,46,50,56,48,53,54,54,44,52,54,46,50,56,50,51,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,114,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,50,53,50,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,53,52,56,56,56,44,52,53,46,54,51,57,55,52,50,93,44,91,45,57,50,46,49,53,54,52,54,53,44,52,53,46,50,48,57,53,53,52,93,44,91,45,57,49,46,54,54,53,54,52,55,44,52,53,46,50,48,55,57,57,49,93,44,91,45,57,49,46,53,52,49,51,50,50,44,52,53,46,50,57,50,50,50,93,44,91,45,57,49,46,53,52,48,50,57,52,44,52,53,46,54,51,55,54,48,53,93,44,91,45,57,50,46,48,51,49,52,49,55,44,52,53,46,54,51,57,57,50,56,93,44,91,45,57,50,46,49,53,52,56,56,56,44,52,53,46,54,51,57,55,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,73,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,54,57,54,50,50,44,52,54,46,55,57,56,49,56,50,93,44,91,45,57,48,46,52,52,56,57,53,54,44,52,54,46,55,57,55,52,48,49,93,44,91,45,57,48,46,53,52,57,56,56,44,52,54,46,53,56,51,53,53,50,93,44,91,45,57,48,46,53,53,50,50,50,55,44,52,54,46,50,52,48,56,53,49,93,44,91,45,57,48,46,52,50,53,57,55,56,44,52,54,46,50,52,48,52,53,93,44,91,45,57,48,46,51,48,51,48,55,50,44,52,54,46,49,53,52,56,52,57,93,44,91,45,57,48,46,51,48,50,48,54,51,44,52,53,46,57,56,49,51,52,57,93,44,91,45,57,48,46,48,52,51,57,53,56,44,52,53,46,57,56,49,57,52,56,93,44,91,45,56,57,46,57,50,56,56,51,55,44,52,53,46,57,56,49,57,54,55,93,44,91,45,56,57,46,57,50,57,49,53,56,44,52,54,46,50,57,57,55,52,56,93,44,91,45,57,48,46,49,50,48,53,55,50,44,52,54,46,51,51,55,48,51,57,93,44,91,45,57,48,46,50,49,54,49,55,50,44,52,54,46,53,48,49,50,55,50,93,44,91,45,57,48,46,52,49,56,51,57,50,44,52,54,46,53,54,54,48,57,57,93,44,91,45,57,48,46,50,54,57,54,50,50,44,52,54,46,55,57,56,49,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,87,97,98,97,115,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,48,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,52,50,48,49,44,52,52,46,52,53,52,50,53,52,93,44,91,45,57,50,46,52,51,48,50,55,55,44,52,52,46,52,53,53,51,50,49,93,44,91,45,57,50,46,53,53,48,55,51,51,44,52,52,46,51,54,56,53,50,49,93,44,91,45,57,50,46,53,53,48,56,55,49,44,52,52,46,49,57,52,57,49,54,93,44,91,45,57,50,46,51,49,56,57,56,54,44,52,52,46,49,57,52,48,53,55,93,44,91,45,57,50,46,51,49,56,57,55,49,44,52,52,46,49,48,55,55,51,52,93,44,91,45,57,50,46,48,55,57,52,57,49,44,52,52,46,49,48,54,57,56,56,93,44,91,45,57,50,46,48,55,56,53,51,50,44,52,52,46,49,57,50,57,55,57,93,44,91,45,57,49,46,56,53,56,50,52,53,44,52,52,46,49,57,51,48,48,52,93,44,91,45,57,49,46,57,50,56,50,50,52,44,52,52,46,51,51,53,52,55,51,93,44,91,45,57,50,46,48,56,51,53,55,50,44,52,52,46,52,48,55,51,51,54,93,44,91,45,57,50,46,50,52,50,48,49,44,52,52,46,52,53,52,50,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,68,101,108,32,78,111,114,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,50,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,51,50,56,56,51,53,44,52,49,46,57,57,56,51,51,52,93,44,91,45,49,50,52,46,50,56,53,48,51,49,44,52,49,46,56,53,57,52,56,55,93,44,91,45,49,50,52,46,52,51,56,57,48,57,44,52,49,46,56,50,52,53,48,52,93,44,91,45,49,50,52,46,50,49,49,55,48,54,44,52,49,46,54,56,49,49,57,51,93,44,91,45,49,50,52,46,49,51,54,53,54,49,44,52,49,46,52,54,52,52,53,50,93,44,91,45,49,50,51,46,55,55,48,53,53,49,44,52,49,46,52,54,52,49,57,51,93,44,91,45,49,50,51,46,54,54,49,51,54,51,44,52,49,46,51,56,50,48,57,93,44,91,45,49,50,51,46,54,49,50,51,57,53,44,52,49,46,52,52,56,57,53,52,93,44,91,45,49,50,51,46,55,49,57,49,55,52,44,52,49,46,53,57,53,54,49,51,93,44,91,45,49,50,51,46,54,54,55,49,49,52,44,52,49,46,54,57,49,54,56,57,93,44,91,45,49,50,51,46,55,48,51,54,56,49,44,52,49,46,56,50,57,52,56,55,93,44,91,45,49,50,51,46,53,54,53,52,52,50,44,52,49,46,57,48,51,49,52,49,93,44,91,45,49,50,51,46,53,49,55,57,49,49,44,52,50,46,48,48,48,55,53,54,93,44,91,45,49,50,51,46,56,50,50,48,52,49,44,52,49,46,57,57,53,53,56,93,44,91,45,49,50,52,46,51,50,56,56,51,53,44,52,49,46,57,57,56,51,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,80,117,115,104,109,97,116,97,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,49,57,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,54,55,49,56,49,44,51,52,46,53,57,51,55,51,50,93,44,91,45,57,53,46,54,55,49,55,53,44,51,52,46,53,48,54,55,57,52,93,44,91,45,57,53,46,55,55,57,49,51,52,44,51,52,46,53,48,54,54,52,52,93,44,91,45,57,53,46,55,55,57,51,55,54,44,51,52,46,49,53,54,54,57,57,93,44,91,45,57,53,46,49,53,54,53,50,49,44,51,52,46,49,53,54,57,54,53,93,44,91,45,57,53,46,49,53,49,51,50,51,44,51,52,46,50,52,51,55,51,55,93,44,91,45,57,53,46,48,52,54,53,56,53,44,51,52,46,50,52,51,55,55,54,93,44,91,45,57,53,46,48,52,54,55,52,54,44,51,52,46,53,48,55,50,55,54,93,44,91,45,57,52,46,57,51,55,54,48,52,44,51,52,46,53,48,55,50,57,54,93,44,91,45,57,52,46,57,51,55,53,53,53,44,51,52,46,54,56,48,55,57,50,93,44,91,45,57,53,46,48,53,57,54,49,54,44,51,52,46,54,56,48,55,51,54,93,44,91,45,57,53,46,53,49,52,52,55,53,44,51,52,46,54,56,48,55,49,56,93,44,91,45,57,53,46,53,49,52,53,49,49,44,51,52,46,53,57,52,49,53,51,93,44,91,45,57,53,46,54,55,49,56,49,44,51,52,46,53,57,51,55,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,104,101,108,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,55,53,55,44,34,98,101,100,115,34,58,50,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,48,48,49,54,53,56,44,52,56,46,50,57,54,48,48,57,93,44,91,45,49,50,48,46,57,48,55,52,50,53,44,52,56,46,49,54,51,49,56,52,93,44,91,45,49,50,49,46,49,49,56,49,56,51,44,52,55,46,57,57,55,49,48,51,93,44,91,45,49,50,49,46,49,56,48,55,55,54,44,52,55,46,56,57,56,55,54,57,93,44,91,45,49,50,49,46,49,49,57,49,55,57,44,52,55,46,55,55,57,57,51,51,93,44,91,45,49,50,49,46,49,49,51,53,54,57,44,52,55,46,53,57,55,50,56,56,93,44,91,45,49,50,48,46,57,50,52,50,48,55,44,52,55,46,52,51,51,53,56,50,93,44,91,45,49,50,48,46,51,56,57,49,57,55,44,52,55,46,50,54,48,57,51,53,93,44,91,45,49,50,48,46,48,57,52,52,54,44,52,55,46,50,54,50,49,53,57,93,44,91,45,49,50,48,46,49,50,57,53,55,51,44,52,55,46,51,54,54,50,53,49,93,44,91,45,49,50,48,46,50,56,54,53,51,44,52,55,46,51,57,51,49,49,49,93,44,91,45,49,50,48,46,51,49,55,57,56,52,44,52,55,46,52,53,54,57,52,56,93,44,91,45,49,50,48,46,49,57,57,48,52,56,44,52,55,46,54,56,50,50,55,54,93,44,91,45,49,50,48,46,50,48,54,57,48,56,44,52,55,46,55,53,48,54,51,56,93,44,91,45,49,49,57,46,57,57,50,54,55,57,44,52,55,46,55,56,51,49,53,93,44,91,45,49,49,57,46,56,55,48,53,57,53,44,52,55,46,57,54,48,52,53,53,93,44,91,45,49,50,48,46,48,52,56,54,52,54,44,52,55,46,57,54,48,54,50,56,93,44,91,45,49,50,48,46,49,52,51,57,51,49,44,52,56,46,48,54,53,52,52,52,93,44,91,45,49,50,48,46,51,54,49,50,56,56,44,52,56,46,49,53,55,53,54,57,93,44,91,45,49,50,48,46,51,52,54,50,56,52,44,52,56,46,49,57,57,57,56,54,93,44,91,45,49,50,48,46,54,52,57,57,51,51,44,52,56,46,51,57,56,49,51,57,93,44,91,45,49,50,48,46,55,48,50,48,54,57,44,52,56,46,53,51,49,53,56,57,93,44,91,45,49,50,48,46,56,53,55,52,50,55,44,52,56,46,53,52,55,54,55,54,93,44,91,45,49,50,49,46,48,54,50,52,53,44,52,56,46,52,54,48,51,54,55,93,44,91,45,49,50,49,46,48,48,49,54,53,56,44,52,56,46,50,57,54,48,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,80,114,101,115,113,117,101,32,73,115,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,48,49,48,54,50,44,52,53,46,55,53,50,50,55,53,93,44,91,45,56,52,46,50,53,50,48,50,44,52,53,46,54,50,53,57,57,56,93,44,91,45,56,52,46,50,52,54,54,51,52,44,52,53,46,49,57,56,55,50,55,93,44,91,45,56,51,46,56,56,49,50,50,51,44,52,53,46,50,48,50,48,55,49,93,44,91,45,56,50,46,52,57,48,53,57,54,44,52,53,46,50,48,56,52,56,52,93,44,91,45,56,50,46,53,50,48,54,52,44,52,53,46,51,51,53,57,48,50,93,44,91,45,56,51,46,52,56,51,57,55,52,44,52,53,46,55,55,49,57,51,55,93,44,91,45,56,51,46,54,51,54,56,54,55,44,52,53,46,55,55,51,57,52,52,93,44,91,45,56,52,46,49,50,51,48,57,56,44,52,53,46,55,55,55,54,54,56,93,44,91,45,56,52,46,50,48,49,48,54,50,44,52,53,46,55,53,50,50,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,101,118,101,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,54,55,51,51,44,34,98,101,100,115,34,58,54,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,55,49,52,49,53,44,51,53,46,51,51,55,52,54,53,93,44,91,45,57,55,46,53,53,54,57,56,55,44,51,53,46,50,56,56,52,52,93,44,91,45,57,55,46,53,53,52,55,57,44,51,53,46,50,50,52,51,50,57,93,44,91,45,57,55,46,51,53,52,49,57,50,44,51,53,46,48,55,54,54,53,54,93,44,91,45,57,55,46,51,52,49,53,48,57,44,51,52,46,57,54,52,48,48,49,93,44,91,45,57,55,46,49,52,50,51,52,57,44,51,52,46,57,50,56,49,55,54,93,44,91,45,57,55,46,49,52,50,49,49,52,44,51,53,46,51,55,54,56,54,93,44,91,45,57,55,46,54,55,49,51,54,57,44,51,53,46,51,55,55,49,53,49,93,44,91,45,57,55,46,54,55,49,52,49,53,44,51,53,46,51,51,55,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,50,49,49,44,34,98,101,100,115,34,58,49,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,49,52,54,52,52,54,44,52,49,46,56,53,48,56,57,57,93,44,91,45,55,53,46,48,53,51,50,50,55,44,52,49,46,55,53,49,54,54,50,93,44,91,45,55,53,46,48,54,57,53,53,57,44,52,49,46,54,48,49,56,55,52,93,44,91,45,55,52,46,57,56,49,54,53,50,44,52,49,46,52,55,57,57,52,53,93,44,91,45,55,52,46,55,53,52,54,57,44,52,49,46,52,50,52,57,55,51,93,44,91,45,55,52,46,55,53,50,51,57,57,44,52,49,46,52,57,51,55,52,51,93,44,91,45,55,52,46,52,56,52,51,54,55,44,52,49,46,53,48,52,50,51,53,93,44,91,45,55,52,46,51,54,55,48,53,53,44,52,49,46,53,57,48,57,55,55,93,44,91,45,55,52,46,51,57,53,48,55,49,44,52,49,46,54,52,52,56,55,54,93,44,91,45,55,52,46,53,55,53,48,56,54,44,52,49,46,55,52,53,50,53,56,93,44,91,45,55,52,46,52,53,51,54,56,53,44,52,49,46,56,55,53,53,57,53,93,44,91,45,55,52,46,55,56,48,54,57,51,44,52,50,46,48,49,54,51,55,53,93,44,91,45,55,53,46,49,52,54,52,52,54,44,52,49,46,56,53,48,56,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,53,56,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,54,49,51,48,53,44,51,53,46,51,57,51,49,57,56,93,44,91,45,56,50,46,51,52,54,49,52,49,44,51,53,46,50,56,53,57,57,50,93,44,91,45,56,50,46,51,53,51,55,53,52,44,51,53,46,49,57,48,57,54,55,93,44,91,45,56,50,46,50,49,53,57,52,55,44,51,53,46,49,57,54,50,50,50,93,44,91,45,56,49,46,57,54,57,51,52,56,44,51,53,46,49,56,55,50,49,55,93,44,91,45,56,49,46,57,54,56,55,56,56,44,51,53,46,50,53,55,55,54,52,93,44,91,45,56,50,46,49,53,49,53,51,53,44,51,53,46,52,48,55,53,56,49,93,44,91,45,56,50,46,50,54,49,51,48,53,44,51,53,46,51,57,51,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,83,99,111,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,50,54,50,44,34,98,101,100,115,34,58,49,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,44,91,45,55,57,46,53,55,51,52,50,51,44,51,52,46,57,57,50,50,49,93,44,91,45,55,57,46,53,54,49,56,53,54,44,51,52,46,57,49,48,51,53,93,44,91,45,55,57,46,54,57,50,57,52,52,44,51,52,46,56,48,53,49,53,53,93,44,91,45,55,57,46,52,54,49,53,48,54,44,51,52,46,54,51,48,51,55,57,93,44,91,45,55,57,46,51,51,48,57,52,57,44,51,52,46,55,55,51,56,50,49,93,44,91,45,55,57,46,51,52,55,56,54,56,44,51,52,46,56,51,56,53,53,51,93,44,91,45,55,57,46,51,53,51,51,49,50,44,51,52,46,57,52,50,53,54,49,93,44,91,45,55,57,46,52,53,56,55,53,49,44,51,53,46,48,52,51,54,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,72,97,114,110,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,48,51,54,49,44,34,98,101,100,115,34,58,50,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,54,57,54,52,44,51,53,46,53,50,49,54,54,57,93,44,91,45,55,57,46,49,56,51,53,53,54,44,51,53,46,51,48,55,49,54,49,93,44,91,45,55,57,46,48,57,53,56,48,56,44,51,53,46,49,57,50,48,54,56,93,44,91,45,55,56,46,55,57,51,52,52,55,44,51,53,46,50,54,53,57,55,54,93,44,91,45,55,56,46,54,49,55,49,50,55,44,51,53,46,50,52,53,53,55,56,93,44,91,45,55,56,46,53,51,56,51,52,57,44,51,53,46,51,49,54,52,49,93,44,91,45,55,56,46,55,48,56,57,48,50,44,51,53,46,53,49,57,52,53,56,93,44,91,45,55,56,46,57,49,52,55,51,52,44,51,53,46,53,56,51,54,55,50,93,44,91,45,55,56,46,57,54,57,54,52,44,51,53,46,53,50,49,54,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,49,50,53,44,34,98,101,100,115,34,58,49,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,54,57,54,52,44,51,53,46,53,50,49,54,54,57,93,44,91,45,55,57,46,49,49,55,48,57,54,44,51,53,46,54,50,56,49,54,52,93,44,91,45,55,57,46,49,57,57,49,51,54,44,51,53,46,53,53,57,56,52,52,93,44,91,45,55,57,46,51,53,48,48,55,51,44,51,53,46,53,49,56,48,48,50,93,44,91,45,55,57,46,50,54,53,55,49,51,44,51,53,46,51,52,53,50,55,57,93,44,91,45,55,57,46,49,56,51,53,53,54,44,51,53,46,51,48,55,49,54,49,93,44,91,45,55,56,46,57,54,57,54,52,44,51,53,46,53,50,49,54,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,84,105,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,50,49,49,55,44,52,48,46,52,48,54,56,56,57,93,44,91,45,56,54,46,50,52,50,56,49,50,44,52,48,46,52,48,50,57,49,52,93,44,91,45,56,54,46,50,52,50,57,57,50,44,52,48,46,51,55,51,54,54,49,93,44,91,45,56,54,46,50,52,50,55,52,51,44,52,48,46,50,49,53,56,51,52,93,44,91,45,56,53,46,56,54,49,57,48,51,44,52,48,46,50,49,56,57,51,54,93,44,91,45,56,53,46,56,54,50,50,57,54,44,52,48,46,51,55,56,51,54,55,93,44,91,45,56,53,46,56,54,50,49,49,55,44,52,48,46,52,48,54,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,53,55,52,44,51,57,46,53,54,55,48,49,56,93,44,91,45,57,55,46,51,54,57,56,51,57,44,51,57,46,51,48,54,48,49,49,93,44,91,45,57,55,46,51,55,49,49,53,52,44,51,57,46,49,51,49,57,54,49,93,44,91,45,57,54,46,57,54,51,49,55,55,44,51,57,46,49,51,50,51,93,44,91,45,57,54,46,57,54,49,54,57,51,44,51,57,46,50,50,48,48,55,54,93,44,91,45,57,54,46,57,53,56,55,49,57,44,51,57,46,53,54,54,52,48,49,93,44,91,45,57,55,46,51,54,56,53,55,52,44,51,57,46,53,54,55,48,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,87,97,103,111,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,56,53,48,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,54,54,49,49,52,44,51,53,46,56,53,54,50,56,52,93,44,91,45,57,53,46,54,51,57,55,55,57,44,51,53,46,55,57,49,56,48,55,93,44,91,45,57,53,46,50,54,53,54,55,57,44,51,53,46,56,49,51,50,54,54,93,44,91,45,57,53,46,50,56,50,57,57,50,44,51,53,46,57,48,55,55,48,52,93,44,91,45,57,53,46,50,48,55,57,52,54,44,51,54,46,48,55,52,55,48,56,93,44,91,45,57,53,46,52,51,57,57,55,44,51,54,46,48,55,53,50,93,44,91,45,57,53,46,53,53,50,53,56,55,44,51,54,46,48,57,49,52,56,54,93,44,91,45,57,53,46,54,49,56,53,50,44,51,54,46,49,54,50,53,49,50,93,44,91,45,57,53,46,55,54,49,54,53,44,51,54,46,49,54,50,55,53,93,44,91,45,57,53,46,55,54,49,55,48,50,44,51,53,46,57,48,49,49,52,55,93,44,91,45,57,53,46,56,49,57,52,53,57,44,51,53,46,56,53,54,50,53,53,93,44,91,45,57,53,46,55,54,54,49,49,52,44,51,53,46,56,53,54,50,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,50,51,52,55,55,49,44,52,55,46,55,57,48,53,48,50,93,44,91,45,49,48,53,46,50,51,53,48,49,54,44,52,55,46,55,48,51,53,56,49,93,44,91,45,49,48,52,46,57,55,56,48,57,44,52,55,46,55,48,51,50,57,51,93,44,91,45,49,48,52,46,57,55,56,53,53,51,44,52,55,46,54,49,54,50,55,50,93,44,91,45,49,48,52,46,53,57,51,54,54,52,44,52,55,46,54,49,54,50,57,52,93,44,91,45,49,48,52,46,53,49,51,48,52,57,44,52,55,46,53,50,57,52,52,50,93,44,91,45,49,48,52,46,53,49,51,50,57,50,44,52,55,46,51,53,52,55,49,57,93,44,91,45,49,48,52,46,52,50,48,51,52,55,44,52,55,46,51,53,52,52,51,53,93,44,91,45,49,48,52,46,49,51,49,56,54,51,44,52,55,46,51,53,51,57,48,49,93,44,91,45,49,48,52,46,48,52,52,56,55,49,44,52,55,46,51,57,55,48,54,51,93,44,91,45,49,48,52,46,48,52,52,48,52,52,44,52,55,46,57,57,54,48,56,50,93,44,91,45,49,48,52,46,53,49,49,54,57,54,44,52,56,46,49,48,57,56,57,52,93,44,91,45,49,48,52,46,56,50,50,53,56,49,44,52,56,46,49,49,56,57,52,53,93,44,91,45,49,48,53,46,48,51,55,48,57,52,44,52,56,46,48,54,51,52,49,54,93,44,91,45,49,48,53,46,49,57,52,55,56,51,44,52,56,46,48,54,54,54,49,55,93,44,91,45,49,48,53,46,49,57,53,49,50,50,44,52,55,46,56,54,56,48,56,49,93,44,91,45,49,48,53,46,50,51,52,55,55,49,44,52,55,46,55,57,48,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,115,104,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,51,55,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,53,55,51,55,44,51,51,46,51,56,56,57,55,52,93,44,91,45,57,49,46,57,57,48,49,54,55,44,51,51,46,51,57,56,50,49,52,93,44,91,45,57,49,46,57,55,55,50,56,52,44,51,51,46,51,48,50,48,50,54,93,44,91,45,57,50,46,49,51,55,53,50,55,44,51,51,46,49,54,50,57,53,54,93,44,91,45,57,50,46,48,54,57,49,48,53,44,51,51,46,48,48,56,49,54,51,93,44,91,45,57,49,46,52,54,48,52,44,51,51,46,48,48,53,57,49,53,93,44,91,45,57,49,46,52,53,55,51,55,44,51,51,46,51,56,56,57,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,115,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,56,55,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,49,55,57,48,53,44,51,52,46,49,49,57,49,48,53,93,44,91,45,57,49,46,49,57,52,50,55,56,44,51,52,46,48,55,48,57,51,56,93,44,91,45,57,49,46,50,49,52,51,51,56,44,51,51,46,57,55,50,52,48,51,93,44,91,45,57,49,46,52,50,49,55,49,53,44,51,52,46,48,49,52,52,55,50,93,44,91,45,57,49,46,53,52,56,54,54,56,44,51,51,46,57,55,54,55,57,57,93,44,91,45,57,49,46,53,53,55,54,52,56,44,51,51,46,55,56,51,51,56,52,93,44,91,45,57,49,46,52,53,48,51,50,53,44,51,51,46,55,56,48,52,49,53,93,44,91,45,57,49,46,52,53,51,52,51,56,44,51,51,46,53,54,51,55,48,51,93,44,91,45,57,49,46,50,51,48,56,57,55,44,51,51,46,53,54,49,52,93,44,91,45,57,49,46,49,51,48,52,52,53,44,51,51,46,54,48,54,48,51,52,93,44,91,45,57,49,46,48,54,56,50,57,44,51,51,46,55,49,54,52,55,55,93,44,91,45,57,49,46,48,55,51,48,49,49,44,51,51,46,56,53,55,52,52,57,93,44,91,45,57,49,46,48,49,49,53,49,44,51,51,46,57,50,52,55,51,51,93,44,91,45,57,48,46,57,53,53,49,55,44,51,52,46,49,49,56,56,51,51,93,44,91,45,57,49,46,49,49,55,57,48,53,44,51,52,46,49,49,57,49,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,86,105,101,113,117,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,55,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,54,49,56,48,53,44,49,56,46,49,53,52,49,56,93,44,91,45,54,53,46,54,50,55,52,57,49,44,49,56,46,48,56,51,52,49,51,93,44,91,45,54,53,46,53,52,57,54,57,57,44,49,56,46,48,50,56,52,52,57,93,44,91,45,54,53,46,50,52,57,54,44,49,56,46,48,56,52,51,48,53,93,44,91,45,54,53,46,50,55,56,51,49,54,44,49,56,46,49,57,55,57,49,56,93,44,91,45,54,53,46,52,54,52,52,50,53,44,49,56,46,50,50,50,50,49,52,93,44,91,45,54,53,46,53,53,52,54,52,51,44,49,56,46,49,56,52,55,54,55,93,44,91,45,54,53,46,54,49,56,48,53,44,49,56,46,49,53,52,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,49,50,44,34,98,101,100,115,34,58,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,55,48,55,51,56,44,51,53,46,56,49,53,55,48,53,93,44,91,45,56,56,46,48,51,52,55,56,56,44,51,53,46,55,49,55,50,54,49,93,44,91,45,56,56,46,48,51,53,56,51,55,44,51,53,46,54,50,49,56,51,57,93,44,91,45,56,55,46,57,55,52,54,51,44,51,53,46,53,50,49,48,50,53,93,44,91,45,56,56,46,48,48,55,55,48,57,44,51,53,46,52,50,51,51,56,49,93,44,91,45,56,55,46,57,55,51,49,56,44,51,53,46,52,53,57,57,54,56,93,44,91,45,56,55,46,55,49,55,53,53,57,44,51,53,46,52,56,51,51,52,55,93,44,91,45,56,55,46,54,53,56,49,56,57,44,51,53,46,54,48,57,51,52,57,93,44,91,45,56,55,46,55,52,51,55,53,44,51,53,46,54,54,51,57,53,50,93,44,91,45,56,55,46,55,49,54,55,54,44,51,53,46,56,51,56,55,53,93,44,91,45,56,55,46,56,55,52,49,56,50,44,51,53,46,56,49,51,48,50,49,93,44,91,45,56,55,46,57,54,50,55,52,44,51,53,46,56,52,48,57,50,49,93,44,91,45,56,55,46,57,55,48,55,51,56,44,51,53,46,56,49,53,55,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,51,49,55,44,34,98,101,100,115,34,58,49,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,48,53,49,56,44,52,53,46,49,50,51,56,54,54,93,44,91,45,57,51,46,48,50,48,48,52,52,44,52,52,46,56,57,48,55,53,93,44,91,45,57,51,46,48,48,53,57,55,56,44,52,52,46,55,55,49,54,56,53,93,44,91,45,57,50,46,56,48,50,48,49,55,44,52,52,46,55,52,53,54,55,51,93,44,91,45,57,50,46,55,54,57,53,48,49,44,52,52,46,56,54,50,48,48,49,93,44,91,45,57,50,46,55,53,56,48,48,56,44,52,53,46,50,48,57,53,54,54,93,44,91,45,57,50,46,55,52,53,54,56,51,44,52,53,46,50,57,54,48,52,50,93,44,91,45,57,51,46,48,49,57,52,52,44,52,53,46,50,57,54,57,50,57,93,44,91,45,57,51,46,48,50,48,53,49,56,44,52,53,46,49,50,51,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,52,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,52,48,34,44,34,78,65,77,69,34,58,34,80,111,114,116,115,109,111,117,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,51,49,49,44,34,98,101,100,115,34,58,52,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,51,57,57,53,54,55,44,51,54,46,57,51,48,57,52,55,93,44,91,45,55,54,46,52,50,48,51,54,56,44,51,54,46,56,54,54,51,52,56,93,44,91,45,55,54,46,50,56,57,57,54,50,44,51,54,46,56,50,50,48,52,56,93,44,91,45,55,54,46,51,52,49,56,50,53,44,51,54,46,57,50,52,55,55,50,93,44,91,45,55,54,46,51,56,52,52,49,57,44,51,54,46,57,53,49,48,53,57,93,44,91,45,55,54,46,51,57,57,53,54,55,44,51,54,46,57,51,48,57,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,50,56,57,44,34,98,101,100,115,34,58,50,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,55,55,51,56,53,44,52,48,46,49,50,54,55,57,50,93,44,91,45,55,57,46,57,57,56,48,49,52,44,51,57,46,57,56,51,51,50,50,93,44,91,45,55,57,46,57,50,53,53,57,55,44,51,57,46,57,50,52,55,57,53,93,44,91,45,55,57,46,57,49,54,50,56,44,51,57,46,55,50,48,55,55,55,93,44,91,45,55,57,46,55,54,51,55,55,52,44,51,57,46,55,50,48,55,55,54,93,44,91,45,55,57,46,52,55,54,54,54,50,44,51,57,46,55,50,49,48,55,56,93,44,91,45,55,57,46,51,57,50,52,53,57,44,51,57,46,55,50,49,53,55,56,93,44,91,45,55,57,46,52,49,55,53,53,56,44,51,57,46,56,53,51,55,55,54,93,44,91,45,55,57,46,50,57,51,54,56,50,44,52,48,46,48,52,48,52,49,51,93,44,91,45,55,57,46,53,48,53,49,56,56,44,52,48,46,49,52,48,53,54,56,93,44,91,45,55,57,46,54,51,56,57,57,52,44,52,48,46,48,56,50,56,53,57,93,44,91,45,55,57,46,56,55,55,51,56,53,44,52,48,46,49,50,54,55,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,52,49,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,44,91,45,55,57,46,49,51,52,52,53,54,44,51,57,46,51,49,50,53,48,49,93,44,91,45,55,57,46,50,55,49,54,57,53,44,51,57,46,51,50,55,57,57,57,93,44,91,45,55,57,46,52,56,54,56,55,53,44,51,57,46,50,48,53,56,57,54,93,44,91,45,55,57,46,52,56,55,49,55,53,44,51,57,46,49,57,52,57,48,54,93,44,91,45,55,57,46,50,57,54,54,54,51,44,51,57,46,49,57,56,52,48,54,93,44,91,45,55,57,46,51,53,55,54,54,54,44,51,56,46,57,54,52,53,48,57,93,44,91,45,55,57,46,51,52,57,56,54,55,44,51,56,46,57,53,55,53,48,57,93,44,91,45,55,57,46,49,51,52,50,57,54,44,51,56,46,56,49,51,51,52,93,44,91,45,55,57,46,48,52,53,57,53,51,44,51,56,46,57,50,56,55,49,93,44,91,45,55,57,46,48,56,57,54,53,53,44,51,57,46,48,51,56,50,48,56,93,44,91,45,55,56,46,57,55,57,56,57,56,44,51,57,46,50,51,55,54,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,83,104,101,110,97,110,100,111,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,48,52,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,53,52,52,49,56,50,44,51,57,46,48,53,54,53,53,57,93,44,91,45,55,56,46,54,56,48,52,53,54,44,51,56,46,57,50,53,51,49,51,93,44,91,45,55,56,46,55,56,56,48,51,49,44,51,56,46,56,56,53,49,50,51,93,44,91,45,55,56,46,56,54,57,50,54,49,44,51,56,46,55,54,50,57,56,93,44,91,45,55,56,46,54,52,49,55,54,57,44,51,56,46,54,48,52,55,49,57,93,44,91,45,55,56,46,53,52,56,56,50,56,44,51,56,46,55,51,56,54,53,53,93,44,91,45,55,56,46,51,57,52,55,48,52,44,51,56,46,56,50,50,55,57,93,44,91,45,55,56,46,51,48,48,52,49,52,44,51,56,46,57,52,51,53,57,50,93,44,91,45,55,56,46,51,49,52,48,56,44,51,57,46,48,48,55,57,57,52,93,44,91,45,55,56,46,53,52,52,49,56,50,44,51,57,46,48,53,54,53,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,53,34,44,34,78,65,77,69,34,58,34,73,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,54,55,57,52,55,44,51,49,46,53,50,56,54,56,56,93,44,91,45,49,48,49,46,50,55,52,55,57,57,44,51,49,46,48,55,57,51,55,57,93,44,91,45,49,48,48,46,57,54,50,49,55,54,44,51,49,46,48,56,50,52,57,93,44,91,45,49,48,48,46,54,56,56,55,54,52,44,51,49,46,48,56,54,53,55,54,93,44,91,45,49,48,48,46,54,57,51,48,54,53,44,51,49,46,53,50,51,57,53,52,93,44,91,45,49,48,49,46,50,54,55,57,52,55,44,51,49,46,53,50,56,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,108,100,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,48,53,57,54,49,44,51,57,46,55,52,53,56,52,49,93,44,91,45,57,52,46,50,48,56,52,50,51,44,51,57,46,53,50,55,50,93,44,91,45,57,51,46,55,53,57,49,56,51,44,51,57,46,53,50,52,53,53,56,93,44,91,45,57,51,46,55,53,56,51,53,55,44,51,57,46,54,49,49,52,48,55,93,44,91,45,57,51,46,55,53,56,57,57,50,44,51,57,46,55,56,52,54,55,52,93,44,91,45,57,52,46,50,48,53,56,52,52,44,51,57,46,55,56,56,57,53,52,93,44,91,45,57,52,46,50,48,53,57,54,49,44,51,57,46,55,52,53,56,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,55,54,54,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,53,56,57,57,44,50,57,46,52,55,49,50,51,50,93,44,91,45,56,49,46,56,52,51,48,48,57,44,50,57,46,53,50,49,48,48,52,93,44,91,45,56,49,46,55,55,54,50,48,53,44,50,57,46,52,56,55,52,52,56,93,44,91,45,56,49,46,54,56,48,57,48,51,44,50,57,46,51,50,52,52,51,93,44,91,45,56,49,46,52,51,51,57,57,50,44,50,57,46,51,57,56,53,53,50,93,44,91,45,56,49,46,53,50,48,53,57,54,44,50,57,46,53,48,48,50,52,57,93,44,91,45,56,49,46,53,50,51,54,54,44,50,57,46,54,50,50,52,51,50,93,44,91,45,56,49,46,53,50,53,50,51,44,50,57,46,55,53,57,52,57,55,93,44,91,45,56,49,46,53,56,49,50,48,55,44,50,57,46,56,52,48,49,55,54,93,44,91,45,56,49,46,56,49,50,52,51,44,50,57,46,56,51,54,52,57,93,44,91,45,56,49,46,57,51,57,52,50,55,44,50,57,46,55,52,55,52,57,55,93,44,91,45,56,50,46,48,52,57,50,52,52,44,50,57,46,55,49,56,54,55,93,44,91,45,56,50,46,48,53,53,54,50,53,44,50,57,46,55,49,56,50,51,50,93,44,91,45,56,50,46,48,53,53,56,57,57,44,50,57,46,52,55,49,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,56,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,56,49,52,50,52,44,51,56,46,51,57,52,55,54,55,93,44,91,45,56,54,46,54,55,57,53,49,49,44,51,56,46,50,54,51,48,56,54,93,44,91,45,56,54,46,52,54,49,48,50,50,44,51,56,46,49,50,49,48,56,55,93,44,91,45,56,54,46,51,50,57,54,44,51,56,46,49,56,49,56,48,53,93,44,91,45,56,54,46,50,55,54,57,53,54,44,51,56,46,50,50,55,49,50,54,93,44,91,45,56,54,46,50,53,53,48,52,53,44,51,56,46,52,50,50,54,56,53,93,44,91,45,56,54,46,51,48,56,54,55,52,44,51,56,46,52,50,50,56,55,53,93,44,91,45,56,54,46,51,48,56,56,54,56,44,51,56,46,51,57,52,48,54,57,93,44,91,45,56,54,46,54,56,49,52,50,52,44,51,56,46,51,57,52,55,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,53,48,56,49,50,44,52,48,46,50,53,55,50,49,93,44,91,45,57,49,46,57,53,50,55,50,54,44,51,57,46,57,52,57,52,50,54,93,44,91,45,57,49,46,56,52,48,51,53,51,44,51,57,46,57,52,56,50,51,53,93,44,91,45,57,49,46,52,51,53,53,49,55,44,51,57,46,57,52,53,50,50,50,93,44,91,45,57,49,46,52,57,52,56,55,56,44,52,48,46,48,51,54,52,53,51,93,44,91,45,57,49,46,53,48,53,48,54,49,44,52,48,46,49,57,57,57,50,53,93,44,91,45,57,49,46,52,57,55,50,54,54,44,52,48,46,50,52,56,55,54,51,93,44,91,45,57,49,46,57,53,48,56,49,50,44,52,48,46,50,53,55,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,50,54,53,53,55,44,52,50,46,48,57,50,49,57,52,93,44,91,45,49,48,50,46,48,48,54,50,48,52,44,52,50,46,48,57,54,51,51,56,93,44,91,45,49,48,50,46,48,54,54,54,53,44,52,50,46,48,48,57,49,57,53,93,44,91,45,49,48,50,46,48,54,55,57,49,56,44,52,49,46,55,52,50,48,57,57,93,44,91,45,49,48,49,46,57,56,53,53,50,51,44,52,49,46,55,52,50,50,57,93,44,91,45,49,48,49,46,52,50,53,57,50,44,52,49,46,55,52,51,48,53,57,93,44,91,45,49,48,49,46,52,50,54,53,53,55,44,52,50,46,48,57,50,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,76,111,195,173,122,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,57,51,52,48,49,44,49,56,46,53,49,54,53,57,56,93,44,91,45,54,53,46,57,49,57,50,55,56,44,49,56,46,52,48,50,57,57,51,93,44,91,45,54,53,46,56,54,55,52,52,55,44,49,56,46,51,55,56,49,57,56,93,44,91,45,54,53,46,56,48,53,51,49,51,44,49,56,46,52,55,56,50,53,51,93,44,91,45,54,53,46,57,57,51,52,48,49,44,49,56,46,53,49,54,53,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,79,110,101,105,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,50,54,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,48,48,48,48,52,49,44,52,49,46,57,57,56,50,48,52,93,44,91,45,49,49,50,46,49,53,57,49,56,52,44,52,49,46,57,57,56,51,56,50,93,44,91,45,49,49,50,46,49,48,57,52,52,52,44,52,49,46,57,57,55,55,57,52,93,44,91,45,49,49,50,46,49,50,54,49,57,52,44,52,50,46,50,56,53,50,50,57,93,44,91,45,49,49,50,46,52,49,57,56,50,53,44,52,50,46,53,48,51,48,51,56,93,44,91,45,49,49,50,46,52,57,55,56,52,57,44,52,50,46,52,49,53,57,57,56,93,44,91,45,49,49,50,46,54,53,51,57,56,57,44,52,50,46,52,49,54,49,54,57,93,44,91,45,49,49,50,46,54,53,52,48,50,56,44,52,50,46,51,50,56,56,55,50,93,44,91,45,49,49,50,46,57,57,57,57,54,53,44,52,50,46,51,50,55,52,50,55,93,44,91,45,49,49,51,46,48,48,48,48,52,49,44,52,49,46,57,57,56,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,77,111,117,108,116,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,52,53,54,55,49,44,51,57,46,55,57,50,49,52,54,93,44,91,45,56,56,46,56,49,48,53,55,53,44,51,57,46,54,53,51,50,50,50,93,44,91,45,56,56,46,53,56,52,50,55,51,44,51,57,46,52,52,55,53,56,50,93,44,91,45,56,56,46,52,55,48,53,48,53,44,51,57,46,52,52,55,48,52,49,93,44,91,45,56,56,46,52,55,50,48,55,51,44,51,57,46,54,53,49,53,56,56,93,44,91,45,56,56,46,52,55,51,49,56,50,44,51,57,46,55,57,49,56,51,55,93,44,91,45,56,56,46,55,52,53,54,55,49,44,51,57,46,55,57,50,49,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,72,111,112,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,54,52,44,34,98,101,100,115,34,58,52,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,55,53,49,52,53,44,51,55,46,53,54,57,57,56,56,93,44,91,45,56,55,46,56,49,51,52,49,51,44,51,55,46,51,53,48,54,52,53,93,44,91,45,56,55,46,55,55,52,54,57,52,44,51,55,46,49,57,56,49,50,55,93,44,91,45,56,55,46,54,56,48,54,49,55,44,51,55,46,49,52,57,50,51,57,93,44,91,45,56,55,46,53,50,49,54,48,57,44,51,55,46,49,48,53,51,52,52,93,44,91,45,56,55,46,51,51,51,55,52,49,44,51,55,46,49,53,55,49,56,54,93,44,91,45,56,55,46,51,56,56,55,48,55,44,51,55,46,50,54,50,49,56,93,44,91,45,56,55,46,50,57,53,57,54,53,44,51,55,46,51,57,49,56,49,57,93,44,91,45,56,55,46,51,53,49,56,57,51,44,51,55,46,52,50,53,54,53,53,93,44,91,45,56,55,46,51,55,53,49,52,53,44,51,55,46,53,54,57,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,108,101,97,114,119,97,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,52,48,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,44,91,45,49,49,53,46,57,53,55,50,54,56,44,52,54,46,50,56,56,57,51,49,93,44,91,45,49,49,53,46,55,56,48,56,49,56,44,52,54,46,50,54,55,50,53,93,44,91,45,49,49,53,46,54,50,56,57,53,55,44,52,54,46,52,55,51,54,49,56,93,44,91,45,49,49,52,46,53,57,52,54,51,52,44,52,54,46,54,51,51,52,52,56,93,44,91,45,49,49,52,46,54,55,52,57,52,50,44,52,54,46,55,51,54,56,50,54,93,44,91,45,49,49,52,46,57,50,50,51,49,50,44,52,54,46,56,50,56,54,48,50,93,44,91,45,49,49,52,46,57,53,57,51,49,55,44,52,54,46,57,51,50,56,57,56,93,44,91,45,49,49,54,46,51,50,57,52,51,54,44,52,54,46,57,51,52,54,54,57,93,44,91,45,49,49,54,46,51,50,57,53,52,44,52,54,46,54,50,55,57,53,55,93,44,91,45,49,49,54,46,52,53,54,48,57,56,44,52,54,46,54,50,57,48,57,55,93,44,91,45,49,49,54,46,52,53,49,55,57,50,44,52,54,46,53,48,48,54,57,56,93,44,91,45,49,49,54,46,51,54,57,49,50,50,44,52,54,46,52,54,54,57,50,51,93,44,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,49,56,56,44,34,98,101,100,115,34,58,50,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,55,55,53,48,51,44,51,54,46,54,56,55,50,53,57,93,44,91,45,56,51,46,57,51,48,55,54,50,44,51,54,46,53,56,55,54,57,49,93,44,91,45,56,51,46,54,55,53,51,57,53,44,51,54,46,54,48,48,55,56,52,93,44,91,45,56,51,46,52,54,49,48,49,54,44,51,54,46,54,54,52,56,54,93,44,91,45,56,51,46,53,48,48,56,57,49,44,51,54,46,55,51,51,50,53,52,93,44,91,45,56,51,46,52,56,57,56,49,51,44,51,54,46,56,57,53,52,49,51,93,44,91,45,56,51,46,53,48,57,48,56,51,44,51,54,46,57,51,56,53,48,57,93,44,91,45,56,51,46,53,56,57,53,50,49,44,51,54,46,57,53,53,55,56,54,93,44,91,45,56,51,46,53,56,49,48,57,52,44,51,54,46,57,48,52,54,54,55,93,44,91,45,56,51,46,55,56,49,50,49,50,44,51,54,46,56,48,50,54,57,51,93,44,91,45,56,51,46,56,55,55,53,48,51,44,51,54,46,54,56,55,50,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,114,111,119,32,87,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,56,53,53,44,34,98,101,100,115,34,58,50,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,55,54,48,50,52,44,52,54,46,56,48,50,56,57,49,93,44,91,45,57,52,46,51,52,50,57,49,44,52,54,46,56,48,53,53,50,57,93,44,91,45,57,52,46,51,50,55,50,56,54,44,52,54,46,50,56,57,56,49,55,93,44,91,45,57,52,46,51,52,49,54,55,57,44,52,54,46,50,55,55,55,48,53,93,44,91,45,57,52,46,51,55,52,53,57,50,44,52,54,46,49,53,55,48,57,51,93,44,91,45,57,51,46,56,49,48,51,54,50,44,52,54,46,49,53,54,53,56,53,93,44,91,45,57,51,46,55,57,54,50,56,49,44,52,54,46,50,52,51,49,57,57,93,44,91,45,57,51,46,56,49,49,52,54,52,44,52,54,46,53,56,52,50,51,56,93,44,91,45,57,51,46,55,55,54,48,50,52,44,52,54,46,56,48,50,56,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,195,177,97,115,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,51,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,56,50,56,53,50,44,49,56,46,51,49,51,48,50,54,93,44,91,45,54,55,46,50,52,51,53,53,57,44,49,56,46,50,54,56,57,50,50,93,44,91,45,54,55,46,48,56,50,48,48,50,44,49,56,46,50,53,52,57,52,54,93,44,91,45,54,55,46,48,51,55,57,51,53,44,49,56,46,50,56,57,55,48,53,93,44,91,45,54,55,46,48,53,50,53,56,51,44,49,56,46,51,48,54,54,53,53,93,44,91,45,54,55,46,49,51,48,49,54,55,44,49,56,46,51,49,55,57,50,55,93,44,91,45,54,55,46,49,56,50,56,53,50,44,49,56,46,51,49,51,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,71,114,97,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,55,57,44,34,98,101,100,115,34,58,49,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,52,52,57,48,50,49,44,51,51,46,49,57,52,53,50,54,93,44,91,45,49,49,48,46,52,53,49,53,50,50,44,51,50,46,53,49,51,57,57,53,93,44,91,45,49,49,48,46,52,53,49,48,48,50,44,51,50,46,52,50,55,53,52,54,93,44,91,45,49,48,57,46,49,49,52,49,56,44,51,50,46,52,50,54,51,53,51,93,44,91,45,49,48,57,46,50,50,54,48,55,44,51,50,46,53,50,57,48,57,54,93,44,91,45,49,48,57,46,50,48,54,50,52,57,44,51,50,46,54,51,53,56,48,51,93,44,91,45,49,48,57,46,50,52,53,48,48,53,44,51,50,46,55,52,49,57,56,53,93,44,91,45,49,48,57,46,52,57,53,55,52,44,51,51,46,48,55,56,52,48,57,93,44,91,45,49,48,57,46,52,57,53,52,52,44,51,51,46,54,53,50,54,57,55,93,44,91,45,49,48,57,46,55,57,57,55,56,50,44,51,51,46,52,56,56,51,49,52,93,44,91,45,49,48,57,46,56,57,49,54,55,54,44,51,51,46,53,54,55,56,55,52,93,44,91,45,49,49,48,46,48,48,48,54,52,57,44,51,51,46,53,55,54,57,51,93,44,91,45,49,49,48,46,48,48,48,54,52,54,44,51,51,46,52,54,53,57,49,54,93,44,91,45,49,49,48,46,49,54,57,52,55,55,44,51,51,46,52,54,53,55,49,50,93,44,91,45,49,49,48,46,51,52,48,57,52,57,44,51,51,46,52,50,55,48,54,54,93,44,91,45,49,49,48,46,52,53,49,55,51,49,44,51,51,46,51,54,49,53,54,52,93,44,91,45,49,49,48,46,52,52,57,48,50,49,44,51,51,46,49,57,52,53,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,83,116,46,32,70,114,97,110,99,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,57,52,44,34,98,101,100,115,34,58,49,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,48,50,57,57,51,44,51,53,46,49,52,52,50,49,52,93,44,91,45,57,49,46,48,52,50,54,55,44,51,53,46,49,52,56,49,56,57,93,44,91,45,57,49,46,48,52,53,52,51,44,51,53,46,48,48,49,48,52,93,44,91,45,57,49,46,49,52,57,56,52,50,44,51,53,46,48,48,50,52,55,93,44,91,45,57,49,46,48,57,57,57,54,49,44,51,52,46,56,54,55,49,50,93,44,91,45,57,49,46,48,57,57,50,48,49,44,51,52,46,57,49,49,55,57,54,93,44,91,45,57,48,46,52,48,56,53,52,44,51,52,46,57,48,52,49,50,49,93,44,91,45,57,48,46,52,48,48,52,51,56,44,51,53,46,49,52,56,50,51,49,93,44,91,45,57,48,46,53,48,50,57,57,51,44,51,53,46,49,52,52,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,69,99,104,111,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,51,54,54,49,52,44,51,48,46,54,50,51,57,54,55,93,44,91,45,56,50,46,54,56,57,53,51,57,44,51,48,46,53,57,55,55,51,52,93,44,91,45,56,50,46,53,56,52,48,48,55,44,51,48,46,53,57,49,53,52,56,93,44,91,45,56,50,46,54,48,52,51,48,55,44,51,48,46,55,49,51,55,49,53,93,44,91,45,56,50,46,55,54,54,49,53,57,44,51,48,46,55,51,50,52,48,52,93,44,91,45,56,50,46,56,52,54,52,48,53,44,51,48,46,56,51,52,57,52,57,93,44,91,45,56,50,46,57,55,49,51,51,54,44,51,48,46,56,54,57,51,57,50,93,44,91,45,56,51,46,48,49,57,52,49,57,44,51,48,46,56,52,57,52,53,51,93,44,91,45,56,51,46,49,50,52,56,54,53,44,51,48,46,56,48,51,54,53,53,93,44,91,45,56,51,46,49,51,54,54,49,52,44,51,48,46,54,50,51,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,55,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,48,34,44,34,78,65,77,69,34,58,34,68,105,108,108,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,55,53,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,54,46,48,48,48,48,56,54,44,54,48,46,57,48,54,49,57,93,44,91,45,49,53,55,46,49,54,55,52,50,44,54,48,46,57,48,54,49,56,51,93,44,91,45,49,53,55,46,49,54,55,52,50,56,44,54,48,46,57,57,50,56,51,57,93,44,91,45,49,53,55,46,53,50,50,51,51,50,44,54,48,46,57,57,50,56,51,52,93,44,91,45,49,53,55,46,56,55,55,50,50,52,44,54,48,46,57,48,54,49,55,50,93,44,91,45,49,53,56,46,57,52,49,57,50,54,44,54,48,46,57,48,54,49,54,50,93,44,91,45,49,53,57,46,48,49,53,49,48,52,44,54,48,46,55,51,50,56,52,51,93,44,91,45,49,53,57,46,49,57,48,54,53,55,44,54,48,46,54,52,54,49,56,49,93,44,91,45,49,53,57,46,51,54,54,50,49,53,44,54,48,46,54,52,54,49,55,57,93,44,91,45,49,53,57,46,51,54,54,50,48,54,44,54,48,46,52,55,50,56,53,54,93,44,91,45,49,53,57,46,52,51,52,52,57,55,44,54,48,46,51,56,54,49,57,93,44,91,45,49,53,57,46,54,48,56,50,48,52,44,54,48,46,51,56,54,49,56,56,93,44,91,45,49,53,57,46,54,48,56,49,57,54,44,54,48,46,50,49,50,56,53,54,93,44,91,45,49,53,57,46,55,56,49,57,48,54,44,54,48,46,50,49,50,56,53,52,93,44,91,45,49,53,57,46,56,52,53,53,51,51,44,54,48,46,49,50,54,49,56,54,93,44,91,45,49,53,57,46,56,52,53,53,50,52,44,53,57,46,57,53,50,56,52,56,93,44,91,45,49,54,48,46,48,49,55,52,51,44,53,57,46,57,53,50,56,52,54,93,44,91,45,49,54,48,46,48,49,55,52,50,51,44,53,57,46,55,55,57,53,48,52,93,44,91,45,49,54,48,46,50,52,56,53,49,44,53,57,46,55,55,57,53,48,49,93,44,91,45,49,54,48,46,50,52,56,53,48,51,44,53,57,46,54,48,54,49,53,52,93,44,91,45,49,54,48,46,52,49,56,54,52,55,44,53,57,46,54,48,54,49,53,50,93,44,91,45,49,54,48,46,52,49,56,54,52,44,53,57,46,52,51,50,56,93,44,91,45,49,54,48,46,52,55,53,50,57,54,44,53,57,46,51,52,54,49,50,50,93,44,91,45,49,54,48,46,54,52,51,55,49,54,44,53,57,46,50,53,57,52,52,93,44,91,45,49,54,48,46,56,49,50,49,52,44,53,57,46,50,53,57,52,51,56,93,44,91,45,49,54,48,46,56,49,50,49,51,51,44,53,57,46,48,56,54,48,55,55,93,44,91,45,49,54,48,46,56,54,52,55,48,51,44,53,56,46,57,57,57,51,57,52,93,44,91,45,49,54,49,46,48,51,49,52,52,56,44,53,56,46,57,57,57,51,57,51,93,44,91,45,49,54,49,46,48,51,49,52,52,49,44,53,56,46,56,51,57,55,53,50,93,44,91,45,49,54,49,46,51,54,52,57,51,49,44,53,56,46,56,50,54,48,50,49,93,44,91,45,49,54,49,46,49,57,56,49,56,51,44,53,56,46,55,51,57,51,51,55,93,44,91,45,49,54,49,46,51,52,49,56,52,44,53,56,46,54,48,55,48,57,49,93,44,91,45,49,54,49,46,49,55,55,48,51,55,44,53,56,46,54,48,55,48,54,56,93,44,91,45,49,54,49,46,49,53,56,57,49,56,44,53,56,46,53,49,50,51,56,51,93,44,91,45,49,54,48,46,57,51,51,52,51,54,44,53,56,46,52,57,54,49,48,57,93,44,91,45,49,54,48,46,56,48,49,55,55,51,44,53,56,46,53,53,49,52,50,56,93,44,91,45,49,54,48,46,54,48,49,54,50,56,44,53,56,46,55,57,51,51,50,51,93,44,91,45,49,54,48,46,54,48,56,55,49,53,44,53,56,46,56,52,51,54,50,49,93,44,91,45,49,54,48,46,51,52,51,48,56,55,44,53,56,46,56,56,48,53,52,50,93,44,91,45,49,54,48,46,50,57,55,54,48,49,44,53,56,46,55,57,57,49,53,93,44,91,45,49,53,57,46,56,57,51,56,54,49,44,53,56,46,55,49,53,48,51,54,93,44,91,45,49,53,57,46,55,48,49,54,57,52,44,53,56,46,55,57,54,51,57,55,93,44,91,45,49,53,57,46,53,52,52,54,56,53,44,53,56,46,55,55,56,52,49,57,93,44,91,45,49,53,57,46,49,53,49,51,56,56,44,53,56,46,52,49,53,55,55,51,93,44,91,45,49,53,57,46,48,49,56,55,50,50,44,53,56,46,51,51,52,49,52,93,44,91,45,49,53,56,46,56,49,48,51,50,57,44,53,56,46,51,52,55,49,53,49,93,44,91,45,49,53,56,46,54,48,53,50,51,53,44,53,56,46,52,53,53,53,57,50,93,44,91,45,49,53,56,46,50,49,51,48,51,50,44,53,56,46,53,52,50,54,48,52,93,44,91,45,49,53,56,46,48,54,57,56,50,50,44,53,56,46,52,57,48,51,49,55,93,44,91,45,49,53,56,44,53,56,46,54,49,54,54,54,55,93,44,91,45,49,53,55,46,57,57,57,57,53,57,44,53,56,46,54,52,50,49,54,56,93,44,91,45,49,53,55,46,49,57,54,50,57,50,44,53,56,46,56,52,54,50,52,57,93,44,91,45,49,53,55,46,49,57,54,51,48,54,44,53,57,46,48,56,54,49,50,50,93,44,91,45,49,53,55,46,50,55,53,50,51,51,44,53,57,46,50,53,57,52,56,50,93,44,91,45,49,53,55,46,49,48,54,56,49,52,44,53,57,46,51,52,54,49,54,50,93,44,91,45,49,53,54,46,55,54,57,57,54,53,44,53,57,46,51,52,54,49,54,54,93,44,91,45,49,53,54,46,54,55,53,52,56,57,44,53,57,46,53,49,57,53,50,49,93,44,91,45,49,53,54,46,53,48,53,51,52,57,44,53,57,46,54,48,54,49,57,57,93,44,91,45,49,53,54,46,49,54,53,48,54,54,44,53,57,46,54,48,54,50,48,50,93,44,91,45,49,53,54,46,48,48,48,49,52,53,44,53,57,46,54,57,50,56,55,57,93,44,91,45,49,53,54,46,48,48,48,48,56,54,44,54,48,46,57,48,54,49,57,93,93,93,44,91,91,91,45,49,54,48,46,53,52,52,48,53,56,44,53,56,46,54,56,55,56,51,56,93,44,91,45,49,54,48,46,51,57,54,56,54,49,44,53,56,46,53,53,51,57,49,57,93,44,91,45,49,54,48,46,51,48,49,48,50,57,44,53,56,46,53,51,53,55,53,56,93,44,91,45,49,54,48,46,48,57,54,57,55,51,44,53,56,46,54,57,55,50,56,51,93,44,91,45,49,54,48,46,49,51,55,54,49,56,44,53,56,46,55,52,56,56,57,56,93,44,91,45,49,54,48,46,52,49,54,48,51,57,44,53,56,46,55,57,56,52,52,53,93,44,91,45,49,54,48,46,53,52,52,48,53,56,44,53,56,46,54,56,55,56,51,56,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,57,55,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,56,57,57,57,55,44,51,57,46,49,51,50,54,57,55,93,44,91,45,57,56,46,52,56,52,56,54,49,44,51,56,46,56,55,48,55,57,49,93,44,91,45,57,55,46,57,50,56,53,57,50,44,51,56,46,56,55,49,48,57,57,93,44,91,45,57,55,46,57,50,56,53,54,44,51,56,46,57,53,56,51,57,53,93,44,91,45,57,55,46,57,50,57,55,52,54,44,51,57,46,50,49,57,50,55,51,93,44,91,45,57,56,46,52,57,48,49,52,57,44,51,57,46,50,49,57,55,56,93,44,91,45,57,56,46,52,56,57,57,57,55,44,51,57,46,49,51,50,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,83,109,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,54,55,48,52,54,44,52,48,46,48,48,50,51,52,56,93,44,91,45,57,57,46,48,54,54,50,50,44,51,57,46,53,54,56,49,50,53,93,44,91,45,57,57,46,48,52,52,51,57,56,44,51,57,46,53,54,56,48,51,53,93,44,91,45,57,56,46,53,48,53,50,54,54,44,51,57,46,53,54,55,54,48,51,93,44,91,45,57,56,46,53,48,52,52,53,53,44,52,48,46,48,48,50,50,57,49,93,44,91,45,57,56,46,55,50,54,51,55,51,44,52,48,46,48,48,50,52,93,44,91,45,57,57,46,48,54,55,48,52,54,44,52,48,46,48,48,50,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,48,55,52,53,52,44,51,48,46,54,55,50,49,50,55,93,44,91,45,56,51,46,57,55,56,54,48,55,44,51,48,46,53,50,50,54,56,55,93,44,91,45,56,52,46,48,55,52,54,57,49,44,51,48,46,52,51,52,51,48,50,93,44,91,45,56,52,46,48,55,53,53,51,57,44,51,48,46,50,55,51,54,49,55,93,44,91,45,56,52,46,48,55,53,52,53,53,44,51,48,46,48,51,52,54,50,54,93,44,91,45,56,51,46,57,57,57,56,56,51,44,51,48,46,48,49,50,50,50,53,93,44,91,45,56,51,46,57,49,53,51,54,57,44,51,48,46,50,52,52,55,55,57,93,44,91,45,56,51,46,56,50,48,50,51,53,44,51,48,46,51,48,51,53,52,93,44,91,45,56,51,46,55,50,49,55,50,44,51,48,46,52,51,52,51,53,52,93,44,91,45,56,51,46,55,51,54,57,53,52,44,51,48,46,53,48,55,53,54,57,93,44,91,45,56,51,46,54,48,52,49,56,54,44,51,48,46,53,56,49,57,49,54,93,44,91,45,56,51,46,54,49,49,55,50,44,51,48,46,54,53,49,50,53,56,93,44,91,45,56,51,46,55,52,51,55,50,57,44,51,48,46,54,53,56,51,57,54,93,44,91,45,56,52,46,48,48,55,52,53,52,44,51,48,46,54,55,50,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,105,100,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,51,52,51,44,34,98,101,100,115,34,58,50,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,54,57,49,50,54,44,49,56,46,50,50,52,50,57,93,44,91,45,54,54,46,50,52,48,52,54,44,49,56,46,49,56,52,55,57,52,93,44,91,45,54,54,46,50,52,50,55,51,53,44,49,56,46,49,56,48,50,52,56,93,44,91,45,54,54,46,50,49,54,56,57,57,44,49,56,46,49,52,51,50,50,93,44,91,45,54,54,46,48,57,53,48,57,57,44,49,56,46,49,54,57,48,55,55,93,44,91,45,54,54,46,49,49,55,55,55,52,44,49,56,46,50,48,57,57,52,57,93,44,91,45,54,54,46,49,54,57,49,50,54,44,49,56,46,50,50,52,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,109,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,57,53,51,57,56,44,51,49,46,51,50,48,57,55,53,93,44,91,45,57,49,46,48,53,57,52,51,49,44,51,49,46,50,56,49,56,53,56,93,44,91,45,57,49,46,48,54,48,50,49,57,44,51,48,46,57,57,56,57,50,55,93,44,91,45,57,48,46,56,50,53,56,50,57,44,51,48,46,57,57,57,51,54,49,93,44,91,45,57,48,46,53,54,55,49,57,53,44,51,48,46,57,57,57,55,51,51,93,44,91,45,57,48,46,53,52,55,54,49,54,44,51,48,46,57,57,57,55,50,93,44,91,45,57,48,46,53,52,56,49,57,57,44,51,49,46,51,52,57,53,55,52,93,44,91,45,57,48,46,54,51,51,51,48,50,44,51,49,46,51,52,57,51,48,54,93,44,91,45,57,48,46,57,56,51,48,48,50,44,51,49,46,51,52,56,54,55,49,93,44,91,45,57,49,46,48,57,53,51,57,56,44,51,49,46,51,50,48,57,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,51,48,53,48,57,44,51,52,46,54,54,53,54,48,56,93,44,91,45,57,51,46,57,51,53,51,55,49,44,51,52,46,51,53,48,48,57,55,93,44,91,45,57,51,46,52,55,56,54,52,54,44,51,52,46,51,52,48,56,53,49,93,44,91,45,57,51,46,52,48,56,49,50,52,44,51,52,46,51,51,57,53,50,55,93,44,91,45,57,51,46,52,48,55,50,50,49,44,51,52,46,51,57,55,52,52,55,93,44,91,45,57,51,46,51,57,52,50,56,57,44,51,52,46,55,52,51,51,57,51,93,44,91,45,57,51,46,55,49,48,50,57,55,44,51,52,46,55,52,53,50,57,54,93,44,91,45,57,51,46,57,51,48,53,48,57,44,51,52,46,54,54,53,54,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,52,55,51,44,34,98,101,100,115,34,58,50,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,57,56,56,55,57,44,52,50,46,52,49,57,56,52,57,93,44,91,45,56,53,46,50,57,51,54,50,54,44,52,50,46,48,55,49,53,53,51,93,44,91,45,56,52,46,56,50,54,52,57,49,44,52,50,46,48,55,50,52,54,56,93,44,91,45,56,52,46,55,48,57,53,53,54,44,52,50,46,48,55,48,51,54,54,93,44,91,45,56,52,46,55,49,56,52,57,51,44,52,50,46,52,50,49,53,50,93,44,91,45,56,53,46,48,55,49,54,48,57,44,52,50,46,52,50,49,52,50,56,93,44,91,45,56,53,46,50,57,56,56,55,57,44,52,50,46,52,49,57,56,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,108,101,98,117,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,51,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,51,48,48,57,52,44,51,51,46,57,52,49,52,50,51,93,44,91,45,56,53,46,54,48,49,56,53,56,44,51,51,46,56,56,57,55,53,93,44,91,45,56,53,46,54,51,56,53,55,57,44,51,51,46,54,52,56,52,49,51,93,44,91,45,56,53,46,55,57,54,48,53,52,44,51,51,46,53,53,54,50,50,93,44,91,45,56,53,46,56,53,49,56,57,44,51,51,46,52,57,56,55,52,50,93,44,91,45,56,53,46,54,52,51,52,56,50,44,51,51,46,52,57,53,56,56,53,93,44,91,45,56,53,46,51,48,52,52,51,57,44,51,51,46,52,56,50,56,56,52,93,44,91,45,56,53,46,51,51,56,50,51,44,51,51,46,54,53,51,49,49,55,93,44,91,45,56,53,46,51,56,54,53,56,49,44,51,51,46,57,48,49,55,49,57,93,44,91,45,56,53,46,51,57,56,56,51,55,44,51,51,46,57,54,52,49,50,57,93,44,91,45,56,53,46,53,51,48,48,57,52,44,51,51,46,57,52,49,52,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,87,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,53,49,50,51,44,34,98,101,100,115,34,58,51,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,52,51,51,55,49,44,52,48,46,57,57,56,50,49,51,93,44,91,45,49,48,52,46,57,52,53,53,53,49,44,52,48,46,51,52,57,48,57,57,93,44,91,45,49,48,53,46,48,53,53,48,56,57,44,52,48,46,50,54,49,55,57,51,93,44,91,45,49,48,53,46,48,53,50,56,50,51,44,52,48,46,48,48,48,50,54,93,44,91,45,49,48,52,46,57,54,49,52,48,53,44,52,48,46,48,48,48,51,51,55,93,44,91,45,49,48,52,46,49,53,48,51,51,50,44,52,48,46,48,48,48,56,53,54,93,44,91,45,49,48,52,46,49,52,55,55,49,52,44,52,48,46,53,50,52,51,56,57,93,44,91,45,49,48,51,46,53,56,49,56,52,52,44,52,48,46,53,50,51,51,56,51,93,44,91,45,49,48,51,46,53,55,51,55,55,52,44,52,49,46,48,48,49,55,49,54,93,44,91,45,49,48,52,46,48,53,51,50,52,57,44,52,49,46,48,48,49,52,48,54,93,44,91,45,49,48,52,46,57,52,51,51,55,49,44,52,48,46,57,57,56,50,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,101,99,107,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,50,49,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,54,52,49,52,49,44,51,53,46,53,48,56,55,57,51,93,44,91,45,57,57,46,53,55,53,55,50,51,44,51,53,46,53,48,56,56,54,52,93,44,91,45,57,57,46,53,55,53,56,50,44,51,53,46,52,50,49,54,53,53,93,44,91,45,57,57,46,57,57,57,54,54,44,51,53,46,52,50,50,51,54,52,93,44,91,45,49,48,48,46,48,48,48,51,56,53,44,51,53,46,49,56,50,55,48,50,93,44,91,45,49,48,48,46,48,48,48,51,56,52,44,51,53,46,48,50,57,57,51,93,44,91,45,57,57,46,56,56,56,52,52,52,44,51,53,46,48,50,57,56,56,57,93,44,91,45,57,57,46,55,56,50,55,50,55,44,51,53,46,49,49,54,57,52,93,44,91,45,57,57,46,52,48,57,50,57,49,44,51,53,46,49,49,52,53,48,57,93,44,91,45,57,57,46,51,54,48,50,50,54,44,51,53,46,49,49,54,55,51,56,93,44,91,45,57,57,46,51,54,52,50,49,55,44,51,53,46,52,54,53,51,50,56,93,44,91,45,57,57,46,51,54,52,49,52,49,44,51,53,46,53,48,56,55,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,77,111,100,111,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,51,56,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,52,52,55,53,51,56,44,52,49,46,57,57,55,52,54,53,93,44,91,45,49,50,49,46,52,52,54,52,57,53,44,52,49,46,49,56,51,52,56,52,93,44,91,45,49,50,49,46,51,51,49,55,56,54,44,52,49,46,49,56,51,56,56,54,93,44,91,45,49,49,57,46,57,57,57,56,54,54,44,52,49,46,49,56,51,57,55,52,93,44,91,45,49,49,57,46,57,57,57,50,51,52,44,52,49,46,57,57,52,57,52,52,93,44,91,45,49,50,48,46,56,55,57,57,50,54,44,52,49,46,57,57,51,55,54,52,93,44,91,45,49,50,49,46,52,52,55,53,51,56,44,52,49,46,57,57,55,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,52,50,55,52,44,34,98,101,100,115,34,58,49,54,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,49,53,55,50,49,44,52,49,46,56,54,51,52,49,57,93,44,91,45,57,51,46,56,49,52,50,56,50,44,52,49,46,54,48,48,52,53,54,93,44,91,45,57,51,46,55,57,48,54,49,50,44,52,49,46,53,49,49,57,49,54,93,44,91,45,57,51,46,52,50,50,56,53,52,44,52,49,46,53,49,49,52,52,52,93,44,91,45,57,51,46,51,50,56,52,48,55,44,52,49,46,52,57,48,57,50,49,93,44,91,45,57,51,46,51,50,56,54,49,52,44,52,49,46,53,48,55,56,50,52,93,44,91,45,57,51,46,51,52,55,57,51,51,44,52,49,46,56,54,51,49,48,52,93,44,91,45,57,51,46,54,57,56,48,51,50,44,52,49,46,56,54,51,51,55,93,44,91,45,57,51,46,56,49,53,55,50,49,44,52,49,46,56,54,51,52,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,76,105,98,101,114,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,49,48,56,44,34,98,101,100,115,34,58,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,50,52,52,48,53,44,51,50,46,48,49,52,56,56,50,93,44,91,45,56,49,46,55,53,48,50,53,55,44,51,49,46,57,55,51,50,48,55,93,44,91,45,56,49,46,55,54,53,51,53,55,44,51,49,46,56,55,52,53,52,93,44,91,45,56,49,46,54,52,49,55,54,49,44,51,49,46,55,54,53,52,53,49,93,44,91,45,56,49,46,52,57,49,55,57,56,44,51,49,46,54,57,57,53,55,53,93,44,91,45,56,49,46,52,51,53,55,54,44,51,49,46,54,52,50,48,53,53,93,44,91,45,56,49,46,50,54,49,56,54,56,44,51,49,46,54,53,48,49,52,50,93,44,91,45,56,49,46,49,55,53,49,52,56,44,51,49,46,53,51,57,54,54,93,44,91,45,56,49,46,48,57,53,51,56,51,44,51,49,46,53,50,48,57,56,49,93,44,91,45,56,49,46,48,53,49,53,50,49,44,51,49,46,55,48,53,49,57,56,93,44,91,45,56,49,46,49,53,52,55,51,49,44,51,49,46,55,49,51,48,55,93,44,91,45,56,49,46,51,55,54,57,53,52,44,51,49,46,56,52,56,50,53,55,93,44,91,45,56,49,46,52,48,52,51,56,56,44,51,49,46,57,49,57,55,48,49,93,44,91,45,56,49,46,53,57,50,51,57,49,44,51,49,46,57,55,50,52,54,57,93,44,91,45,56,49,46,55,49,56,54,53,56,44,51,50,46,48,56,57,51,53,49,93,44,91,45,56,49,46,55,54,49,55,51,53,44,51,50,46,48,52,55,57,93,44,91,45,56,49,46,56,50,52,52,48,53,44,51,50,46,48,49,52,56,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,52,57,34,44,34,78,65,77,69,34,58,34,78,97,118,97,114,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,53,56,51,44,34,98,101,100,115,34,58,49,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,56,51,48,56,50,44,51,50,46,51,50,56,56,53,49,93,44,91,45,57,54,46,56,57,54,50,48,57,44,51,50,46,48,55,51,57,55,55,93,44,91,45,57,54,46,55,49,57,49,49,52,44,51,49,46,56,49,52,56,56,55,93,44,91,45,57,54,46,52,57,54,55,49,51,44,51,49,46,55,57,54,49,57,49,93,44,91,45,57,54,46,48,53,52,55,56,44,51,50,46,48,49,50,53,50,54,93,44,91,45,57,54,46,50,51,52,50,53,49,44,51,50,46,50,53,48,51,57,57,93,44,91,45,57,54,46,51,56,51,48,56,50,44,51,50,46,51,50,56,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,66,114,111,111,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,50,51,50,56,52,44,50,55,46,50,54,53,49,53,93,44,91,45,57,56,46,52,54,54,53,52,50,44,50,55,46,48,53,52,55,49,49,93,44,91,45,57,56,46,52,49,55,56,56,51,44,50,55,46,48,53,53,50,56,53,93,44,91,45,57,56,46,52,50,50,54,49,54,44,50,54,46,55,56,51,53,51,53,93,44,91,45,57,56,46,51,50,48,54,55,44,50,54,46,55,56,51,48,56,49,93,44,91,45,57,55,46,57,56,53,52,57,52,44,50,54,46,55,56,48,57,49,55,93,44,91,45,57,55,46,57,56,53,56,56,55,44,50,55,46,50,48,57,51,48,56,93,44,91,45,57,56,46,48,53,56,48,55,56,44,50,55,46,50,54,48,57,56,49,93,44,91,45,57,56,46,50,51,50,52,54,52,44,50,55,46,50,54,50,52,56,55,93,44,91,45,57,56,46,53,50,51,50,56,52,44,50,55,46,50,54,53,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,54,52,56,44,34,98,101,100,115,34,58,51,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,49,56,56,57,50,44,51,53,46,57,54,56,50,50,52,93,44,91,45,56,54,46,55,57,48,56,55,53,44,51,54,46,48,51,54,55,49,53,93,44,91,45,56,55,46,48,53,51,55,50,50,44,51,54,46,48,52,53,53,56,50,93,44,91,45,56,55,46,49,56,50,53,55,51,44,51,54,46,48,52,57,55,50,54,93,44,91,45,56,55,46,50,48,52,50,52,50,44,51,53,46,57,53,57,49,56,54,93,44,91,45,56,55,46,50,49,53,48,57,57,44,51,53,46,56,53,48,54,53,49,93,44,91,45,56,54,46,55,56,50,48,49,54,44,51,53,46,55,48,54,53,57,53,93,44,91,45,56,54,46,54,56,54,49,57,51,44,51,53,46,55,49,48,48,53,49,93,44,91,45,56,54,46,54,49,51,51,50,56,44,51,53,46,55,57,48,51,51,49,93,44,91,45,56,54,46,54,49,56,56,57,50,44,51,53,46,57,54,56,50,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,76,97,114,97,109,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,54,57,50,44,34,98,101,100,115,34,58,50,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,50,53,52,44,52,49,46,53,54,52,50,55,52,93,44,91,45,49,48,52,46,54,53,50,57,57,50,44,52,49,46,53,54,53,48,49,52,93,44,91,45,49,48,52,46,54,53,51,51,51,56,44,52,49,46,54,53,51,48,48,55,93,44,91,45,49,48,53,46,50,55,56,50,51,54,44,52,49,46,54,53,54,54,53,53,93,44,91,45,49,48,53,46,50,55,54,56,54,44,52,48,46,57,57,56,49,55,50,93,44,91,45,49,48,52,46,57,52,51,51,55,49,44,52,48,46,57,57,56,50,49,51,93,44,91,45,49,48,52,46,48,53,51,50,52,57,44,52,49,46,48,48,49,52,48,54,93,44,91,45,49,48,52,46,48,53,50,50,56,55,44,52,49,46,51,57,51,50,49,52,93,44,91,45,49,48,52,46,48,53,50,53,52,44,52,49,46,53,54,52,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,115,111,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,51,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,50,50,56,49,50,44,52,54,46,52,54,50,50,52,53,93,44,91,45,49,49,55,46,50,50,56,55,57,54,44,52,54,46,52,49,49,51,48,54,93,44,91,45,49,49,55,46,52,49,57,51,51,52,44,52,54,46,51,56,51,49,51,57,93,44,91,45,49,49,55,46,52,49,57,52,56,50,44,52,54,46,49,50,49,57,53,54,93,44,91,45,49,49,55,46,52,55,57,57,51,53,44,52,53,46,57,57,55,56,48,49,93,44,91,45,49,49,54,46,57,49,54,48,55,49,44,52,53,46,57,57,53,51,53,55,93,44,91,45,49,49,54,46,57,50,49,51,53,44,52,54,46,49,54,52,53,49,52,93,44,91,45,49,49,55,46,48,51,57,55,54,54,44,52,54,46,52,50,53,56,56,55,93,44,91,45,49,49,55,46,50,50,56,49,50,44,52,54,46,52,54,50,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,84,114,97,118,101,114,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,51,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,54,51,54,55,50,44,52,53,46,57,51,53,50,52,53,93,44,91,45,57,54,46,53,56,51,48,56,53,44,52,53,46,56,50,48,48,50,52,93,44,91,45,57,54,46,54,55,50,54,54,53,44,52,53,46,55,51,50,51,51,54,93,44,91,45,57,54,46,56,51,56,54,52,56,44,52,53,46,54,52,55,53,48,57,93,44,91,45,57,54,46,56,51,53,52,53,49,44,52,53,46,53,56,54,49,50,57,93,44,91,45,57,54,46,50,53,51,48,50,54,44,52,53,46,53,56,53,53,50,54,93,44,91,45,57,54,46,50,53,52,48,50,50,44,52,53,46,55,53,57,56,50,93,44,91,45,57,54,46,50,54,54,49,52,44,52,54,46,48,50,49,54,49,93,44,91,45,57,54,46,53,55,54,53,54,52,44,52,54,46,48,50,49,56,52,56,93,44,91,45,57,54,46,53,54,51,54,55,50,44,52,53,46,57,51,53,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,57,53,48,57,44,52,48,46,49,48,56,57,48,56,93,44,91,45,57,48,46,49,51,52,50,56,49,44,52,48,46,48,54,50,53,50,52,93,44,91,45,57,48,46,50,56,55,56,51,55,44,52,48,46,48,54,51,55,56,52,93,44,91,45,57,48,46,51,53,52,53,50,52,44,52,48,46,49,50,52,50,49,55,93,44,91,45,57,48,46,53,49,51,55,52,55,44,51,57,46,57,56,55,56,57,49,93,44,91,45,57,48,46,53,56,51,53,51,52,44,51,57,46,56,55,54,55,53,93,44,91,45,56,57,46,57,57,52,52,48,53,44,51,57,46,56,55,50,56,54,93,44,91,45,56,57,46,57,57,52,53,48,54,44,51,57,46,57,48,49,57,50,53,93,44,91,45,56,57,46,57,57,53,48,57,44,52,48,46,49,48,56,57,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,55,34,44,34,78,65,77,69,34,58,34,82,111,99,107,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,48,49,49,44,34,98,101,100,115,34,58,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,50,51,55,49,51,44,51,51,46,55,53,50,56,48,56,93,44,91,45,56,52,46,49,49,48,49,50,52,44,51,51,46,54,50,53,49,49,93,44,91,45,56,52,46,49,56,52,49,52,51,44,51,51,46,54,52,54,49,53,55,93,44,91,45,56,52,46,48,52,52,52,57,51,44,51,51,46,53,50,53,55,55,54,93,44,91,45,56,51,46,57,51,48,56,54,51,44,51,51,46,54,53,49,56,50,51,93,44,91,45,56,51,46,57,49,52,56,50,51,44,51,51,46,55,52,52,50,48,51,93,44,91,45,56,51,46,57,56,50,48,51,51,44,51,51,46,55,56,54,48,53,52,93,44,91,45,56,52,46,48,50,51,55,49,51,44,51,51,46,55,53,50,56,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,74,117,110,105,97,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,53,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,51,57,55,52,57,44,52,48,46,54,51,56,51,55,56,93,44,91,45,55,55,46,48,51,53,53,52,57,44,52,48,46,54,55,54,57,49,56,93,44,91,45,55,55,46,50,56,55,57,52,49,44,52,48,46,54,57,51,53,57,53,93,44,91,45,55,55,46,52,57,55,53,48,54,44,52,48,46,53,56,49,55,52,93,44,91,45,55,55,46,55,53,50,49,50,44,52,48,46,51,55,56,53,52,53,93,44,91,45,55,55,46,55,48,51,48,51,44,52,48,46,50,54,51,53,55,54,93,44,91,45,55,55,46,54,55,49,55,54,49,44,52,48,46,50,56,57,56,50,53,93,44,91,45,55,55,46,53,52,48,49,52,49,44,52,48,46,51,57,57,50,50,49,93,44,91,45,55,55,46,50,56,57,53,57,50,44,52,48,46,53,49,56,52,53,55,93,44,91,45,55,54,46,57,52,57,52,49,52,44,52,48,46,54,50,56,49,54,51,93,44,91,45,55,54,46,57,51,57,55,52,57,44,52,48,46,54,51,56,51,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,77,99,75,101,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,56,48,54,44,34,98,101,100,115,34,58,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,48,56,49,50,56,44,52,49,46,57,57,57,52,49,53,93,44,91,45,55,56,46,57,49,56,56,53,53,44,52,49,46,57,57,56,49,49,57,93,44,91,45,55,56,46,57,53,54,48,53,54,44,52,49,46,54,50,51,56,54,51,93,44,91,45,55,56,46,52,56,51,52,48,57,44,52,49,46,54,50,57,56,57,56,93,44,91,45,55,56,46,52,49,57,49,49,56,44,52,49,46,54,48,50,49,56,56,93,44,91,45,55,56,46,50,48,51,52,50,50,44,52,49,46,54,49,56,49,53,55,93,44,91,45,55,56,46,50,48,54,54,48,52,44,52,49,46,57,57,57,53,57,53,93,44,91,45,55,56,46,51,48,56,49,50,56,44,52,49,46,57,57,57,52,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,71,97,114,118,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,50,51,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,51,50,52,51,54,44,51,52,46,56,53,52,52,57,54,93,44,91,45,57,55,46,54,54,56,48,57,57,44,51,52,46,56,53,53,49,54,52,93,44,91,45,57,55,46,54,54,56,53,49,50,44,51,52,46,54,56,49,51,52,93,44,91,45,57,55,46,53,54,51,48,48,52,44,51,52,46,54,56,49,49,56,53,93,44,91,45,57,55,46,53,54,50,51,50,51,44,51,52,46,53,48,55,48,51,54,93,44,91,45,57,55,46,51,53,50,49,56,51,44,51,52,46,53,48,54,55,57,54,93,44,91,45,57,55,46,49,52,51,57,55,51,44,51,52,46,53,48,54,54,48,54,93,44,91,45,57,55,46,49,52,50,54,55,49,44,51,52,46,54,51,55,49,50,54,93,44,91,45,57,54,46,57,51,50,52,53,50,44,51,52,46,54,51,54,56,49,50,93,44,91,45,57,54,46,57,51,50,52,51,54,44,51,52,46,56,53,52,52,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,117,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,50,56,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,53,52,56,54,54,44,52,50,46,48,49,53,56,55,53,93,44,91,45,57,54,46,53,53,53,49,55,50,44,52,49,46,55,52,50,48,49,56,93,44,91,45,57,54,46,52,52,52,55,56,53,44,52,49,46,54,56,51,54,51,51,93,44,91,45,57,54,46,49,50,50,54,48,52,44,52,49,46,54,56,51,48,52,93,44,91,45,57,54,46,48,54,52,56,57,55,44,52,49,46,55,57,49,54,55,51,93,44,91,45,57,54,46,49,51,57,48,48,56,44,52,49,46,56,54,54,50,55,55,93,44,91,45,57,54,46,49,50,57,49,56,54,44,52,49,46,57,54,53,49,51,54,93,44,91,45,57,54,46,50,55,51,49,50,44,52,50,46,48,52,55,49,53,56,93,44,91,45,57,54,46,51,48,57,54,52,53,44,52,50,46,48,49,53,49,56,55,93,44,91,45,57,54,46,53,53,52,56,54,54,44,52,50,46,48,49,53,56,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,117,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,52,53,53,44,34,98,101,100,115,34,58,50,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,52,56,49,55,51,55,44,51,55,46,48,48,48,49,50,55,93,44,91,45,49,48,56,46,51,55,57,51,48,51,44,51,54,46,57,57,57,54,48,56,93,44,91,45,49,48,57,46,48,52,53,49,55,50,44,51,54,46,57,57,56,57,55,55,93,44,91,45,49,48,57,46,48,52,54,48,54,55,44,51,54,46,48,48,50,55,48,49,93,44,91,45,49,48,55,46,54,50,54,53,49,49,44,51,54,46,48,48,48,50,56,56,93,44,91,45,49,48,55,46,54,50,52,50,56,51,44,51,54,46,50,49,57,56,48,57,93,44,91,45,49,48,55,46,54,49,56,49,56,49,44,51,54,46,56,48,52,50,54,55,93,44,91,45,49,48,55,46,52,53,49,52,52,53,44,51,54,46,57,48,52,48,51,54,93,44,91,45,49,48,55,46,52,50,49,50,50,51,44,51,55,46,48,48,48,50,50,51,93,44,91,45,49,48,55,46,52,56,49,55,51,55,44,51,55,46,48,48,48,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,79,114,108,101,97,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,49,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,54,56,55,49,49,44,52,51,46,54,51,51,52,50,56,93,44,91,45,55,56,46,52,54,53,53,48,53,44,52,51,46,49,50,56,54,49,57,93,44,91,45,55,55,46,57,57,55,50,57,44,52,51,46,49,51,50,57,56,49,93,44,91,45,55,55,46,57,57,51,57,56,50,44,52,51,46,54,51,49,50,51,52,93,44,91,45,55,56,46,52,54,56,55,49,49,44,52,51,46,54,51,51,52,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,101,32,83,111,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,49,54,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,49,52,54,57,44,51,50,46,50,51,55,53,50,54,93,44,91,45,57,51,46,54,54,54,52,55,50,44,51,50,46,51,49,55,52,52,52,93,44,91,45,57,51,46,55,54,52,55,54,51,44,51,50,46,51,52,53,54,52,54,93,44,91,45,57,51,46,57,53,49,48,56,53,44,51,50,46,49,57,53,53,52,53,93,44,91,45,57,52,46,48,52,50,53,57,56,44,51,50,46,49,57,54,48,48,53,93,44,91,45,57,52,46,48,49,53,54,51,44,51,49,46,57,55,57,56,53,54,93,44,91,45,57,51,46,56,55,57,48,54,49,44,51,49,46,56,52,52,50,56,55,93,44,91,45,57,51,46,52,52,49,49,55,49,44,51,49,46,56,52,53,50,51,51,93,44,91,45,57,51,46,51,53,53,52,53,50,44,51,49,46,57,51,50,50,50,50,93,44,91,45,57,51,46,53,52,49,51,53,51,44,51,50,46,49,48,53,56,56,93,44,91,45,57,51,46,53,50,51,52,49,54,44,51,50,46,49,55,54,57,57,49,93,44,91,45,57,51,46,54,49,52,54,57,44,51,50,46,50,51,55,53,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,70,114,101,115,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,56,49,51,48,44,34,98,101,100,115,34,58,51,48,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,48,50,50,51,54,51,44,51,55,46,53,56,53,55,51,55,93,44,91,45,49,49,57,46,51,49,50,49,56,54,44,51,55,46,51,53,50,55,50,53,93,44,91,45,49,49,57,46,51,51,48,53,55,51,44,51,55,46,50,48,53,55,57,49,93,44,91,45,49,49,57,46,51,56,54,53,50,49,44,51,55,46,49,52,57,53,51,93,44,91,45,49,49,57,46,53,53,57,52,49,50,44,51,55,46,49,52,51,54,49,57,93,44,91,45,49,49,57,46,53,54,50,57,55,57,44,51,55,46,48,54,52,48,57,53,93,44,91,45,49,49,57,46,54,57,48,55,55,57,44,51,55,46,48,49,49,57,56,55,93,44,91,45,49,49,57,46,56,49,51,55,51,52,44,51,54,46,56,53,48,52,49,50,93,44,91,45,49,50,48,46,48,55,57,52,53,56,44,51,54,46,56,50,53,51,52,53,93,44,91,45,49,50,48,46,49,56,56,56,51,44,51,54,46,55,55,54,52,48,56,93,44,91,45,49,50,48,46,51,55,48,50,53,54,44,51,54,46,55,56,52,57,52,93,44,91,45,49,50,48,46,53,52,49,54,57,54,44,51,55,46,48,52,52,53,48,53,93,44,91,45,49,50,48,46,57,49,56,55,51,49,44,51,54,46,55,52,48,51,56,49,93,44,91,45,49,50,48,46,54,48,51,55,48,54,44,51,54,46,52,56,56,50,52,50,93,44,91,45,49,50,48,46,53,57,54,53,54,50,44,51,54,46,51,50,56,52,56,56,93,44,91,45,49,50,48,46,54,55,56,53,56,50,44,51,54,46,50,54,55,51,49,57,93,44,91,45,49,50,48,46,54,52,56,55,56,52,44,51,54,46,49,48,55,57,57,93,44,91,45,49,50,48,46,51,49,53,48,54,56,44,51,53,46,57,48,55,49,56,54,93,44,91,45,49,49,57,46,57,53,57,50,49,44,51,54,46,49,56,49,52,48,51,93,44,91,45,49,49,57,46,57,53,57,50,50,55,44,51,54,46,52,48,48,57,55,53,93,44,91,45,49,49,57,46,54,54,54,50,57,44,51,54,46,52,49,56,57,54,93,44,91,45,49,49,57,46,53,55,51,49,57,52,44,51,54,46,52,56,56,56,51,53,93,44,91,45,49,49,57,46,52,54,54,51,50,50,44,51,54,46,53,55,53,50,51,56,93,44,91,45,49,49,57,46,51,48,53,49,48,50,44,51,54,46,53,55,51,55,50,53,93,44,91,45,49,49,57,46,51,48,52,54,50,53,44,51,54,46,54,54,48,54,48,54,93,44,91,45,49,49,56,46,57,56,52,55,55,57,44,51,54,46,54,53,55,49,52,55,93,44,91,45,49,49,56,46,57,56,50,52,52,49,44,51,54,46,55,52,49,54,52,54,93,44,91,45,49,49,56,46,51,54,48,53,56,54,44,51,54,46,55,52,52,55,55,51,93,44,91,45,49,49,56,46,51,54,48,56,51,49,44,51,54,46,56,56,55,55,51,52,93,44,91,45,49,49,56,46,52,50,50,53,57,53,44,51,55,46,48,50,52,51,54,93,44,91,45,49,49,56,46,53,48,51,49,48,51,44,51,55,46,48,57,53,50,50,49,93,44,91,45,49,49,56,46,54,53,52,53,57,51,44,51,55,46,49,52,49,56,50,54,93,44,91,45,49,49,56,46,55,49,54,48,49,54,44,51,55,46,51,50,56,50,48,56,93,44,91,45,49,49,56,46,55,56,54,55,51,54,44,51,55,46,51,52,51,51,56,93,44,91,45,49,49,56,46,55,55,53,48,49,52,44,51,55,46,52,54,51,48,53,50,93,44,91,45,49,49,57,46,48,50,50,51,54,51,44,51,55,46,53,56,53,55,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,69,108,98,101,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,49,50,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,55,51,52,49,44,51,52,46,50,56,56,56,54,52,93,44,91,45,56,50,46,57,56,48,57,48,53,44,51,52,46,50,49,49,53,48,53,93,44,91,45,56,51,46,48,55,56,48,48,52,44,51,52,46,50,50,51,54,48,54,93,44,91,45,56,50,46,57,55,54,50,57,52,44,51,52,46,48,52,51,50,49,57,93,44,91,45,56,50,46,55,55,57,53,48,54,44,51,51,46,57,55,49,49,50,52,93,44,91,45,56,50,46,54,52,53,52,53,49,44,51,51,46,57,56,52,49,57,53,93,44,91,45,56,50,46,53,54,52,52,57,49,44,51,51,46,57,53,53,55,51,51,93,44,91,45,56,50,46,53,57,52,54,51,49,44,51,52,46,48,49,51,55,57,54,93,44,91,45,56,50,46,55,52,50,49,48,51,44,51,52,46,50,49,49,57,48,51,93,44,91,45,56,50,46,55,55,51,52,49,44,51,52,46,50,56,56,56,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,114,98,111,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,56,50,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,49,48,50,52,49,44,51,50,46,49,52,54,54,53,49,93,44,91,45,56,53,46,52,50,56,52,55,54,44,51,50,46,48,49,52,57,53,49,93,44,91,45,56,53,46,53,56,55,51,52,52,44,51,49,46,57,57,55,51,53,53,93,44,91,45,56,53,46,54,53,55,54,54,56,44,51,49,46,56,56,48,50,55,53,93,44,91,45,56,53,46,54,54,50,54,57,50,44,51,49,46,55,56,51,51,49,57,93,44,91,45,56,53,46,55,52,56,50,53,49,44,51,49,46,54,49,56,48,52,56,93,44,91,45,56,53,46,52,49,54,52,51,55,44,51,49,46,54,49,57,52,54,54,93,44,91,45,56,53,46,52,49,54,48,51,56,44,51,49,46,55,48,54,54,54,52,93,44,91,45,56,53,46,50,49,54,48,55,54,44,51,49,46,55,48,50,52,48,57,93,44,91,45,56,53,46,49,50,55,51,50,57,44,51,49,46,55,54,50,53,54,51,93,44,91,45,56,53,46,49,52,49,49,51,44,51,49,46,55,56,48,52,54,51,93,44,91,45,56,53,46,48,54,56,50,51,44,51,49,46,57,57,49,56,53,55,93,44,91,45,56,53,46,48,53,54,48,50,57,44,51,50,46,48,54,51,48,53,53,93,44,91,45,56,53,46,49,56,53,48,54,55,44,51,50,46,48,54,49,55,48,56,93,44,91,45,56,53,46,50,53,55,55,52,55,44,51,50,46,49,52,56,50,53,49,93,44,91,45,56,53,46,52,49,48,50,52,49,44,51,50,46,49,52,54,54,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,108,97,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,55,55,56,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,57,48,49,57,57,56,44,51,52,46,56,51,53,50,54,56,93,44,91,45,55,56,46,56,48,53,56,51,52,44,51,52,46,54,56,57,53,54,93,44,91,45,55,56,46,56,54,56,57,54,49,44,51,52,46,52,56,52,55,55,56,93,44,91,45,55,56,46,54,54,55,53,56,56,44,51,52,46,52,54,57,54,52,53,93,44,91,45,55,56,46,52,52,53,51,50,44,51,52,46,51,55,55,52,93,44,91,45,55,56,46,50,53,54,48,56,53,44,51,52,46,51,57,57,52,54,57,93,44,91,45,55,56,46,49,55,54,53,48,49,44,51,52,46,52,54,53,51,53,54,93,44,91,45,55,56,46,50,53,52,52,52,49,44,51,52,46,53,53,51,53,57,53,93,44,91,45,55,56,46,51,50,52,53,50,44,51,52,46,54,54,54,48,57,53,93,44,91,45,55,56,46,52,57,52,55,48,53,44,51,52,46,56,53,54,49,56,50,93,44,91,45,55,56,46,57,48,49,57,57,56,44,51,52,46,56,51,53,50,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,48,50,51,53,57,44,51,54,46,53,48,48,53,53,49,93,44,91,45,49,48,51,46,48,52,49,55,49,51,44,51,54,46,53,48,48,52,51,57,93,44,91,45,49,48,51,46,48,52,49,48,54,50,44,51,54,46,48,53,53,50,50,54,93,44,91,45,49,48,50,46,49,54,51,48,49,53,44,51,54,46,48,53,53,50,52,57,93,44,91,45,49,48,50,46,49,54,50,52,54,51,44,51,54,46,53,48,48,51,50,54,93,44,91,45,49,48,51,46,48,48,50,51,53,57,44,51,54,46,53,48,48,53,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,83,97,110,103,97,109,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,54,54,49,44,34,98,101,100,115,34,58,49,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,57,52,52,48,53,44,51,57,46,56,55,50,56,54,93,44,91,45,56,57,46,57,56,52,55,52,53,44,51,57,46,55,49,56,48,55,57,93,44,91,45,56,57,46,57,50,54,48,51,55,44,51,57,46,53,50,50,49,48,52,93,44,91,45,56,57,46,55,48,49,54,54,49,44,51,57,46,53,50,51,51,49,54,93,44,91,45,56,57,46,53,51,51,54,53,53,44,51,57,46,53,50,52,53,57,50,93,44,91,45,56,57,46,53,51,53,48,50,56,44,51,57,46,54,52,49,49,51,56,93,44,91,45,56,57,46,52,48,57,52,55,53,44,51,57,46,55,52,51,53,51,93,44,91,45,56,57,46,50,49,55,52,55,51,44,51,57,46,56,49,51,54,54,54,93,44,91,45,56,57,46,50,49,55,56,52,54,44,51,57,46,57,49,54,57,57,93,44,91,45,56,57,46,52,48,52,57,56,52,44,51,57,46,57,49,56,49,56,55,93,44,91,45,56,57,46,53,55,56,50,56,57,44,51,57,46,57,55,54,49,50,55,93,44,91,45,56,57,46,54,57,56,50,53,57,44,51,57,46,57,55,53,51,48,57,93,44,91,45,56,57,46,55,54,57,49,54,56,44,51,57,46,57,48,50,51,53,93,44,91,45,56,57,46,57,57,52,53,48,54,44,51,57,46,57,48,49,57,50,53,93,44,91,45,56,57,46,57,57,52,52,48,53,44,51,57,46,56,55,50,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,114,97,105,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,57,51,44,34,98,101,100,115,34,58,50,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,48,55,55,51,51,44,51,54,46,57,57,57,51,49,49,93,44,91,45,57,53,46,52,51,49,55,53,56,44,51,54,46,57,52,50,53,57,51,93,44,91,45,57,53,46,52,51,49,53,55,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,51,50,56,49,55,44,51,54,46,53,49,48,50,52,93,44,91,45,57,53,46,48,48,53,55,51,44,51,54,46,53,48,57,56,57,93,44,91,45,57,52,46,57,57,57,52,48,51,44,51,54,46,54,55,48,54,51,49,93,44,91,45,57,53,46,48,48,55,54,50,44,51,54,46,57,57,57,53,49,52,93,44,91,45,57,53,46,48,55,51,53,48,52,44,51,54,46,57,57,57,53,53,50,93,44,91,45,57,53,46,52,48,55,55,51,51,44,51,54,46,57,57,57,51,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,54,51,52,44,34,98,101,100,115,34,58,49,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,48,48,50,49,51,44,51,54,46,49,51,56,53,54,49,93,44,91,45,56,53,46,50,51,53,55,53,55,44,51,54,46,49,48,53,55,53,50,93,44,91,45,56,53,46,50,54,52,50,48,54,44,51,53,46,57,55,57,49,53,52,93,44,91,45,56,53,46,50,50,50,53,50,52,44,51,53,46,56,55,55,51,54,52,93,44,91,45,56,53,46,50,54,57,51,53,57,44,51,53,46,55,57,51,51,56,56,93,44,91,45,56,53,46,50,55,50,54,54,52,44,51,53,46,55,56,55,55,49,56,93,44,91,45,56,53,46,50,53,51,53,49,56,44,51,53,46,55,54,54,57,50,55,93,44,91,45,56,53,46,50,53,52,48,54,50,44,51,53,46,55,54,53,54,49,49,93,44,91,45,56,52,46,57,49,54,48,54,50,44,51,53,46,55,54,49,57,51,57,93,44,91,45,56,52,46,55,56,49,57,48,49,44,51,53,46,56,50,53,93,44,91,45,56,52,46,54,56,48,54,51,51,44,51,53,46,57,48,56,52,53,52,93,44,91,45,56,52,46,55,50,48,55,50,55,44,51,53,46,57,57,52,57,49,52,93,44,91,45,56,52,46,57,48,55,55,53,51,44,51,54,46,49,53,54,50,57,51,93,44,91,45,56,53,46,49,48,48,50,49,51,44,51,54,46,49,51,56,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,79,116,115,101,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,51,57,55,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,53,55,52,53,50,44,52,53,46,49,49,54,55,48,55,93,44,91,45,56,52,46,56,52,55,51,48,57,44,52,52,46,56,53,56,48,51,55,93,44,91,45,56,52,46,51,55,49,55,51,55,44,52,52,46,56,53,53,48,51,57,93,44,91,45,56,52,46,51,54,54,54,49,52,44,52,53,46,49,57,56,55,51,55,93,44,91,45,56,52,46,55,51,52,51,48,51,44,52,53,46,50,48,49,57,51,54,93,44,91,45,56,52,46,56,53,55,52,53,50,44,52,53,46,49,49,54,55,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,83,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,56,56,48,49,44,52,50,46,53,54,49,55,52,50,93,44,91,45,57,53,46,51,50,50,51,53,55,44,52,50,46,52,55,52,55,51,55,93,44,91,45,57,53,46,51,50,51,52,57,55,44,52,50,46,50,49,48,57,51,50,93,44,91,45,57,53,46,48,57,48,56,53,49,44,52,50,46,50,49,48,52,48,53,93,44,91,45,57,52,46,56,53,56,52,49,50,44,52,50,46,50,48,57,54,57,50,93,44,91,45,57,52,46,56,53,54,54,56,57,44,52,50,46,52,55,51,57,57,54,93,44,91,45,57,52,46,57,49,52,52,56,53,44,52,50,46,53,54,48,51,48,57,93,44,91,45,57,53,46,51,56,56,48,49,44,52,50,46,53,54,49,55,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,69,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,50,52,55,51,57,49,44,51,57,46,55,48,52,51,53,93,44,91,45,49,49,49,46,50,52,55,55,52,56,44,51,57,46,52,54,55,49,57,57,93,44,91,45,49,49,49,46,51,48,48,57,48,53,44,51,57,46,52,54,55,50,51,55,93,44,91,45,49,49,49,46,50,57,57,51,54,44,51,57,46,48,51,50,50,54,52,93,44,91,45,49,49,49,46,51,48,53,54,54,53,44,51,56,46,53,49,48,49,54,57,93,44,91,45,49,49,49,46,51,48,53,55,48,49,44,51,56,46,52,57,57,57,57,56,93,44,91,45,49,49,48,46,48,50,53,52,48,50,44,51,56,46,52,57,57,57,56,49,93,44,91,45,49,48,57,46,57,57,52,50,56,51,44,51,56,46,53,50,55,49,49,56,93,44,91,45,49,49,48,46,48,56,49,57,51,57,44,51,56,46,55,53,54,54,54,54,93,44,91,45,49,49,48,46,49,54,50,53,50,57,44,51,56,46,56,54,51,57,50,50,93,44,91,45,49,49,48,46,49,53,54,50,50,50,44,51,57,46,48,51,50,54,53,52,93,44,91,45,49,49,48,46,48,55,55,50,55,44,51,57,46,50,55,53,56,54,57,93,44,91,45,49,49,48,46,48,50,50,49,54,54,44,51,57,46,51,53,50,48,49,56,93,44,91,45,49,49,48,46,48,50,52,49,49,56,44,51,57,46,52,54,57,50,54,57,93,44,91,45,49,49,49,46,48,55,55,53,52,53,44,51,57,46,52,54,57,55,52,51,93,44,91,45,49,49,49,46,48,56,53,51,53,53,44,51,57,46,53,50,49,49,55,93,44,91,45,49,49,49,46,50,52,55,51,57,49,44,51,57,46,55,48,52,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,70,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,56,51,54,54,49,52,44,52,57,46,48,48,48,48,56,51,93,44,91,45,49,49,56,46,56,53,49,57,54,44,52,55,46,57,53,55,57,48,54,93,44,91,45,49,49,56,46,55,51,48,51,50,53,44,52,55,46,57,48,48,49,54,57,93,44,91,45,49,49,56,46,53,51,49,50,57,55,44,52,55,46,56,55,52,56,55,56,93,44,91,45,49,49,56,46,51,52,48,57,51,56,44,52,55,46,56,57,52,51,49,54,93,44,91,45,49,49,56,46,52,48,48,56,48,55,44,52,56,46,48,50,56,54,56,50,93,44,91,45,49,49,56,46,50,51,51,52,57,56,44,52,56,46,48,54,51,52,56,53,93,44,91,45,49,49,56,46,50,52,56,54,48,54,44,52,56,46,49,51,52,50,53,53,93,44,91,45,49,49,56,46,49,51,57,55,57,49,44,52,56,46,50,54,55,51,48,56,93,44,91,45,49,49,56,46,50,48,54,53,48,55,44,52,56,46,52,55,48,50,57,54,93,44,91,45,49,49,56,46,49,48,52,57,54,44,52,56,46,54,53,51,53,48,51,93,44,91,45,49,49,56,46,50,49,52,52,56,51,44,52,56,46,56,56,56,49,54,49,93,44,91,45,49,49,56,46,49,57,55,51,55,53,44,52,57,46,48,48,48,48,54,56,93,44,91,45,49,49,56,46,56,51,54,54,49,52,44,52,57,46,48,48,48,48,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,87,105,98,97,117,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,52,50,48,51,52,55,44,52,55,46,51,53,52,52,51,53,93,44,91,45,49,48,52,46,51,52,49,54,56,44,52,55,46,50,52,53,51,57,50,93,44,91,45,49,48,52,46,51,48,54,48,54,50,44,52,55,46,48,52,50,48,52,54,93,44,91,45,49,48,52,46,52,49,50,49,50,52,44,52,54,46,57,48,52,48,48,51,93,44,91,45,49,48,52,46,54,48,51,55,54,54,44,52,54,46,56,54,48,56,53,51,93,44,91,45,49,48,52,46,54,48,54,57,48,51,44,52,54,46,54,56,52,57,50,52,93,44,91,45,49,48,52,46,52,49,55,57,57,56,44,52,54,46,54,56,52,56,57,50,93,44,91,45,49,48,52,46,51,53,52,56,51,53,44,52,54,46,54,52,49,52,48,57,93,44,91,45,49,48,52,46,48,52,53,50,51,52,44,52,54,46,54,52,49,53,48,52,93,44,91,45,49,48,52,46,48,52,52,57,54,56,44,52,55,46,51,51,48,49,52,49,93,44,91,45,49,48,52,46,48,52,52,56,55,49,44,52,55,46,51,57,55,48,54,51,93,44,91,45,49,48,52,46,49,51,49,56,54,51,44,52,55,46,51,53,51,57,48,49,93,44,91,45,49,48,52,46,52,50,48,51,52,55,44,52,55,46,51,53,52,52,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,56,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,57,50,53,57,54,56,44,51,52,46,50,53,57,57,57,93,44,91,45,49,48,53,46,57,50,52,54,56,53,44,51,51,46,56,50,53,54,50,52,93,44,91,45,49,48,54,46,48,53,50,54,54,50,44,51,51,46,56,50,53,54,48,54,93,44,91,45,49,48,54,46,48,53,50,55,49,56,44,51,51,46,54,53,48,50,57,55,93,44,91,45,49,48,54,46,51,55,51,54,54,44,51,51,46,54,54,48,53,48,52,93,44,91,45,49,48,54,46,51,55,50,55,57,55,44,51,51,46,52,55,57,56,55,53,93,44,91,45,49,48,54,46,51,52,53,55,49,44,51,51,46,51,57,48,53,57,53,93,44,91,45,49,48,53,46,55,50,55,49,55,49,44,51,51,46,51,57,48,54,51,51,93,44,91,45,49,48,53,46,55,50,53,57,53,55,44,51,51,46,51,48,52,56,51,52,93,44,91,45,49,48,53,46,51,49,55,51,55,54,44,51,51,46,51,48,53,57,55,55,93,44,91,45,49,48,53,46,51,49,54,57,54,56,44,51,51,46,49,51,50,51,48,51,93,44,91,45,49,48,52,46,57,48,53,52,50,52,44,51,51,46,49,51,56,57,48,52,93,44,91,45,49,48,52,46,56,57,50,52,51,51,44,51,51,46,51,57,56,49,57,57,93,44,91,45,49,48,52,46,56,57,51,51,55,55,44,51,52,46,48,56,56,52,48,55,93,44,91,45,49,48,52,46,56,57,49,55,52,53,44,51,52,46,51,52,55,48,52,51,93,44,91,45,49,48,53,46,51,49,51,48,55,50,44,51,52,46,51,52,55,50,48,53,93,44,91,45,49,48,53,46,51,49,51,50,49,56,44,51,52,46,50,54,48,48,51,49,93,44,91,45,49,48,53,46,57,50,53,57,54,56,44,51,52,46,50,53,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,53,57,57,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,49,49,51,48,57,44,51,54,46,49,54,49,55,54,51,93,44,91,45,57,53,46,49,49,56,53,44,51,54,46,49,54,49,54,51,93,44,91,45,57,53,46,50,48,55,57,52,54,44,51,54,46,48,55,52,55,48,56,93,44,91,45,57,53,46,50,56,50,57,57,50,44,51,53,46,57,48,55,55,48,52,93,44,91,45,57,53,46,50,54,53,54,55,57,44,51,53,46,56,49,51,50,54,54,93,44,91,45,57,53,46,49,50,55,49,54,51,44,51,53,46,56,49,50,55,53,53,93,44,91,45,57,53,46,49,50,55,50,49,51,44,51,53,46,54,51,56,56,56,56,93,44,91,45,57,52,46,56,48,55,55,53,55,44,51,53,46,54,51,56,53,52,54,93,44,91,45,57,52,46,55,57,55,52,48,57,44,51,54,46,49,54,49,54,53,50,93,44,91,45,57,53,46,48,49,49,51,48,57,44,51,54,46,49,54,49,55,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,89,101,108,108,111,119,32,77,101,100,105,99,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,54,56,44,34,98,101,100,115,34,58,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,53,49,52,54,50,44,52,52,46,56,48,53,53,55,93,44,91,45,57,54,46,52,53,49,53,54,54,44,52,52,46,54,51,49,51,52,57,93,44,91,45,57,54,46,48,57,50,57,53,44,52,52,46,54,51,48,52,56,54,93,44,91,45,57,53,46,54,48,52,48,48,49,44,52,52,46,54,50,57,57,52,53,93,44,91,45,57,53,46,53,57,52,56,49,55,44,52,52,46,53,52,50,51,48,53,93,44,91,45,57,53,46,51,54,48,52,44,52,52,46,53,52,49,55,54,50,93,44,91,45,57,53,46,51,54,48,49,55,55,44,52,52,46,54,57,56,53,52,93,44,91,45,57,53,46,52,56,50,56,52,51,44,52,52,46,55,53,50,53,48,53,93,44,91,45,57,53,46,55,51,54,54,57,54,44,52,52,46,57,51,54,48,52,93,44,91,45,57,53,46,56,52,55,52,53,50,44,52,52,46,56,57,49,55,57,57,93,44,91,45,57,53,46,56,52,57,48,48,57,44,52,52,46,56,48,53,51,52,55,93,44,91,45,57,54,46,52,53,49,52,54,50,44,52,52,46,56,48,53,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,49,34,44,34,78,65,77,69,34,58,34,72,117,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,49,53,50,44,34,98,101,100,115,34,58,50,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,57,53,52,49,51,44,51,51,46,51,53,49,57,51,54,93,44,91,45,57,54,46,50,57,55,50,50,55,44,51,50,46,57,56,49,55,53,50,93,44,91,45,57,54,46,50,57,55,51,50,50,44,51,50,46,56,52,49,55,50,51,93,44,91,45,57,54,46,48,55,54,56,48,49,44,51,50,46,56,51,56,52,56,57,93,44,91,45,57,53,46,57,51,52,52,51,51,44,51,50,46,56,51,55,50,49,55,93,44,91,45,57,53,46,57,52,53,51,44,51,50,46,57,55,57,56,55,55,93,44,91,45,57,53,46,56,54,50,53,50,49,44,51,50,46,57,55,57,53,55,49,93,44,91,45,57,53,46,56,54,49,55,55,56,44,51,51,46,50,49,57,51,51,93,44,91,45,57,53,46,56,53,56,55,50,51,44,51,51,46,52,48,57,53,51,93,44,91,45,57,54,46,50,57,53,52,49,51,44,51,51,46,51,53,49,57,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,51,53,34,44,34,78,65,77,69,34,58,34,77,105,116,99,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,54,54,48,54,50,54,44,51,50,46,53,50,53,51,49,50,93,44,91,45,49,48,49,46,49,55,52,53,54,50,44,51,50,46,53,50,55,55,48,51,93,44,91,45,49,48,49,46,49,55,52,53,55,49,44,51,50,46,53,50,52,49,49,50,93,44,91,45,49,48,49,46,49,56,51,57,57,55,44,51,50,46,48,56,55,50,48,56,93,44,91,45,49,48,48,46,56,50,49,53,57,52,44,51,50,46,48,56,54,54,49,93,44,91,45,49,48,48,46,54,54,53,51,53,51,44,51,50,46,48,56,53,52,48,55,93,44,91,45,49,48,48,46,54,54,48,54,50,54,44,51,50,46,53,50,53,51,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,57,57,34,44,34,78,65,77,69,34,58,34,87,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,56,49,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,48,56,57,53,55,44,51,50,46,57,54,50,53,55,50,93,44,91,45,57,53,46,54,54,53,51,56,57,44,51,50,46,57,54,48,52,51,52,93,44,91,45,57,53,46,54,51,53,48,49,55,44,51,50,46,55,50,48,51,56,93,44,91,45,57,53,46,53,57,52,53,52,49,44,51,50,46,54,56,55,48,50,54,93,44,91,45,57,53,46,53,49,48,57,52,53,44,51,50,46,54,50,48,51,50,56,93,44,91,45,57,53,46,49,53,51,52,49,44,51,50,46,53,55,48,49,49,53,93,44,91,45,57,53,46,49,53,50,49,49,44,51,50,46,57,48,50,54,52,49,93,44,91,45,57,53,46,49,53,50,50,48,54,44,51,51,46,48,49,51,52,53,93,44,91,45,57,53,46,51,48,56,57,53,55,44,51,50,46,57,54,50,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,79,115,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,51,49,49,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,53,55,53,53,54,44,51,54,46,53,57,51,56,55,50,93,44,91,45,57,55,46,48,48,57,55,56,53,44,51,54,46,53,48,54,57,51,53,93,44,91,45,57,54,46,57,52,48,50,51,53,44,51,54,46,52,53,53,53,50,53,93,44,91,45,57,54,46,55,51,55,50,51,57,44,51,54,46,53,53,48,48,56,56,93,44,91,45,57,54,46,55,49,48,55,54,57,44,51,54,46,52,51,55,54,53,54,93,44,91,45,57,54,46,54,51,53,55,50,55,44,51,54,46,52,50,53,57,48,56,93,44,91,45,57,54,46,53,49,53,50,50,57,44,51,54,46,50,57,56,51,51,50,93,44,91,45,57,54,46,52,51,51,56,49,50,44,51,54,46,50,56,53,56,56,57,93,44,91,45,57,54,46,50,54,56,50,56,55,44,51,54,46,49,54,49,57,56,93,44,91,45,57,54,46,48,48,49,50,50,54,44,51,54,46,49,54,49,50,57,54,93,44,91,45,57,54,46,48,48,49,49,55,49,44,51,54,46,52,50,51,54,56,54,93,44,91,45,57,54,46,48,48,48,56,49,44,51,54,46,57,57,56,56,54,93,44,91,45,57,54,46,53,50,53,53,56,50,44,51,54,46,57,57,56,55,49,93,44,91,45,57,54,46,55,52,57,56,51,56,44,51,54,46,57,57,56,57,56,56,93,44,91,45,57,54,46,55,53,50,51,55,53,44,51,54,46,55,56,50,48,57,50,93,44,91,45,57,54,46,56,56,57,52,55,53,44,51,54,46,55,53,49,50,51,93,44,91,45,57,54,46,57,51,49,57,52,51,44,51,54,46,54,56,54,48,57,55,93,44,91,45,57,55,46,48,54,52,49,48,55,44,51,54,46,54,56,52,50,48,55,93,44,91,45,57,55,46,48,53,55,53,53,54,44,51,54,46,53,57,51,56,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,54,54,56,44,34,98,101,100,115,34,58,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,57,50,51,54,53,44,51,53,46,50,48,54,54,57,52,93,44,91,45,56,52,46,51,50,49,56,50,49,44,51,52,46,57,56,56,52,48,56,93,44,91,45,56,52,46,49,50,57,52,52,56,44,51,52,46,57,56,55,53,49,52,93,44,91,45,56,52,46,48,48,53,49,51,50,44,51,52,46,57,56,55,49,55,53,93,44,91,45,56,51,46,56,52,48,55,51,51,44,51,53,46,49,52,51,56,52,49,93,44,91,45,56,51,46,55,51,56,49,50,57,44,51,53,46,49,53,53,57,53,93,44,91,45,56,51,46,55,48,50,55,55,50,44,51,53,46,50,52,56,53,50,93,44,91,45,56,51,46,56,51,49,52,50,57,44,51,53,46,50,53,54,49,49,55,93,44,91,45,56,51,46,57,53,56,54,53,50,44,51,53,46,50,49,55,48,52,93,44,91,45,56,52,46,48,50,57,48,54,55,44,51,53,46,50,57,50,50,52,56,93,44,91,45,56,52,46,50,49,49,51,57,53,44,51,53,46,50,54,53,54,50,49,93,44,91,45,56,52,46,50,57,50,51,54,53,44,51,53,46,50,48,54,54,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,77,101,99,111,115,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,50,54,52,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,44,91,45,56,53,46,53,54,50,51,52,56,44,52,51,46,52,54,56,49,51,93,44,91,45,56,53,46,48,56,52,57,57,54,44,52,51,46,52,54,54,49,57,93,44,91,45,56,53,46,48,56,56,56,49,49,44,52,51,46,56,49,51,54,55,54,93,44,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,52,56,51,44,34,98,101,100,115,34,58,52,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,53,54,51,53,54,49,44,51,55,46,54,56,52,56,52,52,93,44,91,45,56,50,46,54,50,52,48,57,49,44,51,55,46,53,48,54,50,55,53,93,44,91,45,56,50,46,53,56,56,54,50,55,44,51,55,46,52,52,54,50,53,57,93,44,91,45,56,50,46,55,49,48,56,48,53,44,51,55,46,50,56,53,51,50,51,93,44,91,45,56,50,46,55,51,50,54,57,51,44,51,55,46,50,55,49,53,48,50,93,44,91,45,56,50,46,53,54,53,51,55,57,44,51,55,46,49,57,54,48,57,57,93,44,91,45,56,50,46,53,53,51,56,55,52,44,51,55,46,50,48,50,56,51,51,93,44,91,45,56,50,46,51,49,52,49,57,53,44,51,55,46,50,57,54,48,55,53,93,44,91,45,56,49,46,57,54,56,48,49,50,44,51,55,46,53,51,56,48,51,53,93,44,91,45,56,50,46,49,49,55,51,48,52,44,51,55,46,53,53,57,50,50,54,93,44,91,45,56,50,46,51,51,51,49,51,54,44,51,55,46,55,52,48,56,52,56,93,44,91,45,56,50,46,52,53,54,49,51,52,44,51,55,46,54,54,56,55,57,53,93,44,91,45,56,50,46,53,54,51,53,54,49,44,51,55,46,54,56,52,56,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,52,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,54,55,50,54,44,51,48,46,50,54,48,52,52,93,44,91,45,56,51,46,51,55,48,56,57,44,50,57,46,56,56,55,57,51,52,93,44,91,45,56,51,46,51,49,56,56,53,57,44,50,57,46,56,50,50,54,50,51,93,44,91,45,56,50,46,57,50,48,54,48,56,44,50,57,46,56,50,52,49,52,51,93,44,91,45,56,50,46,57,49,56,55,48,56,44,50,57,46,56,50,52,48,56,51,93,44,91,45,56,50,46,57,48,51,57,53,54,44,50,57,46,56,50,52,50,57,52,93,44,91,45,56,50,46,56,55,57,56,48,50,44,50,57,46,56,56,54,56,52,55,93,44,91,45,56,50,46,57,54,51,49,49,50,44,50,57,46,57,57,51,48,53,93,44,91,45,56,51,46,49,54,50,52,53,55,44,51,48,46,49,49,48,48,50,50,93,44,91,45,56,51,46,50,50,54,51,54,44,51,48,46,49,49,52,54,50,49,93,44,91,45,56,51,46,50,52,55,50,53,51,44,51,48,46,50,54,48,54,55,93,44,91,45,56,51,46,51,54,55,50,54,44,51,48,46,50,54,48,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,97,116,97,119,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,55,50,57,44,34,98,101,100,115,34,58,54,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,51,53,52,48,51,44,51,53,46,53,54,56,49,51,55,93,44,91,45,56,48,46,57,54,48,48,50,53,44,51,53,46,53,52,55,48,50,93,44,91,45,56,48,46,57,57,52,52,52,53,44,51,53,46,55,48,50,49,49,93,44,91,45,56,49,46,49,48,57,53,48,55,44,51,53,46,55,55,54,53,57,52,93,44,91,45,56,49,46,49,52,50,51,51,56,44,51,53,46,56,50,55,52,51,52,93,44,91,45,56,49,46,51,51,52,50,55,50,44,51,53,46,55,57,54,50,56,49,93,44,91,45,56,49,46,51,54,51,55,57,54,44,51,53,46,55,54,55,56,48,50,93,44,91,45,56,49,46,53,51,53,52,48,51,44,51,53,46,53,54,56,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,66,114,101,97,116,104,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,49,54,44,34,98,101,100,115,34,58,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,52,56,54,57,50,44,51,55,46,54,54,57,54,49,54,93,44,91,45,56,51,46,52,49,56,52,55,52,44,51,55,46,54,57,48,55,50,57,93,44,91,45,56,51,46,53,50,50,51,48,56,44,51,55,46,54,51,56,53,49,54,93,44,91,45,56,51,46,53,55,57,49,56,54,44,51,55,46,53,48,54,50,52,57,93,44,91,45,56,51,46,53,52,55,54,50,56,44,51,55,46,51,51,52,52,49,56,93,44,91,45,56,51,46,52,48,51,57,56,56,44,51,55,46,51,51,56,51,51,50,93,44,91,45,56,51,46,49,57,57,55,51,52,44,51,55,46,52,49,52,54,54,93,44,91,45,56,51,46,49,50,52,51,52,56,44,51,55,46,52,48,52,57,55,51,93,44,91,45,56,51,46,48,53,48,50,48,49,44,51,55,46,53,50,53,51,49,52,93,44,91,45,56,50,46,57,52,56,53,52,52,44,51,55,46,53,48,51,49,54,55,93,44,91,45,56,51,46,48,56,57,55,57,54,44,51,55,46,54,51,50,49,54,55,93,44,91,45,56,51,46,50,52,56,54,57,50,44,51,55,46,54,54,57,54,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,67,104,105,108,100,114,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,54,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,52,49,53,56,57,53,44,51,52,46,55,52,55,53,50,53,93,44,91,45,49,48,48,46,52,49,55,55,56,51,44,51,52,46,51,49,51,53,50,52,93,44,91,45,57,57,46,57,57,55,55,50,44,51,52,46,51,49,49,56,50,57,93,44,91,45,57,57,46,57,57,55,53,48,49,44,51,52,46,53,54,48,53,55,52,93,44,91,45,49,48,48,46,48,48,48,51,56,49,44,51,52,46,55,52,54,51,53,56,93,44,91,45,49,48,48,46,52,49,53,56,57,53,44,51,52,46,55,52,55,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,82,105,112,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,49,53,57,50,54,44,51,54,46,56,50,51,54,55,50,93,44,91,45,57,49,46,49,50,54,53,50,57,44,51,54,46,52,57,55,55,49,50,93,44,91,45,57,48,46,55,56,52,52,50,52,44,51,54,46,52,57,56,53,51,52,93,44,91,45,57,48,46,53,55,54,49,55,57,44,51,54,46,52,57,56,53,52,55,93,44,91,45,57,48,46,53,57,50,49,54,54,44,51,54,46,54,55,57,51,54,56,93,44,91,45,57,48,46,54,54,50,54,49,55,44,51,54,46,56,49,49,52,53,51,93,44,91,45,57,49,46,49,49,53,57,50,54,44,51,54,46,56,50,51,54,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,84,97,122,101,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,56,53,50,44,34,98,101,100,115,34,58,49,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,53,52,57,57,52,44,52,48,46,55,52,55,54,51,55,93,44,91,45,56,57,46,54,53,56,48,48,51,44,52,48,46,53,54,55,52,51,56,93,44,91,45,56,57,46,56,55,50,52,54,51,44,52,48,46,53,49,51,49,50,55,93,44,91,45,56,57,46,57,50,52,54,56,44,52,48,46,52,51,53,57,50,49,93,44,91,45,56,57,46,55,49,55,49,48,52,44,52,48,46,52,51,53,54,53,53,93,44,91,45,56,57,46,55,49,52,57,50,55,44,52,48,46,51,49,57,50,49,56,93,44,91,45,56,57,46,54,48,50,57,55,57,44,52,48,46,51,50,48,49,50,57,93,44,91,45,56,57,46,50,54,51,55,52,44,52,48,46,51,50,53,51,52,52,93,44,91,45,56,57,46,50,54,57,51,57,55,44,52,48,46,53,57,52,51,49,56,93,44,91,45,56,57,46,51,51,48,48,57,50,44,52,48,46,55,52,56,50,53,55,93,44,91,45,56,57,46,53,53,52,57,57,52,44,52,48,46,55,52,55,54,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,32,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,55,57,56,48,49,44,51,48,46,54,50,57,50,53,56,93,44,91,45,49,48,51,46,57,48,49,48,49,44,51,48,46,52,49,50,49,57,93,44,91,45,49,48,51,46,56,48,48,54,56,44,51,48,46,52,49,50,53,50,55,93,44,91,45,49,48,51,46,52,51,57,57,55,54,44,51,48,46,54,54,53,57,51,57,93,44,91,45,49,48,51,46,53,56,53,48,56,52,44,51,48,46,55,54,54,52,55,93,44,91,45,49,48,52,46,49,48,50,51,53,49,44,51,49,46,49,48,53,50,48,51,93,44,91,45,49,48,52,46,57,49,55,49,54,51,44,51,48,46,54,54,51,54,50,54,93,44,91,45,49,48,52,46,57,55,57,56,48,49,44,51,48,46,54,50,57,50,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,55,56,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,55,56,34,44,34,78,65,77,69,34,58,34,76,101,120,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,54,49,53,56,50,44,51,55,46,55,56,54,51,53,54,93,44,91,45,55,57,46,52,53,53,54,54,55,44,51,55,46,55,54,53,50,49,57,93,44,91,45,55,57,46,52,50,48,56,50,52,44,51,55,46,55,56,56,57,57,56,93,44,91,45,55,57,46,52,51,55,51,51,55,44,51,55,46,55,57,52,55,56,52,93,44,91,45,55,57,46,52,54,49,53,56,50,44,51,55,46,55,56,54,51,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,83,104,97,114,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,53,48,48,48,50,44,51,54,46,52,57,55,54,53,93,44,91,45,57,49,46,52,53,52,52,51,55,44,51,54,46,51,51,53,52,54,53,93,44,91,45,57,49,46,53,54,53,56,54,54,44,51,54,46,51,51,55,52,93,44,91,45,57,49,46,53,54,54,48,55,56,44,51,54,46,50,52,57,57,52,53,93,44,91,45,57,49,46,54,57,49,52,51,53,44,51,54,46,50,53,51,51,48,49,93,44,91,45,57,49,46,54,56,50,50,55,55,44,51,54,46,48,48,48,53,51,53,93,44,91,45,57,49,46,55,49,48,52,56,51,44,51,53,46,57,52,49,55,53,56,93,44,91,45,57,49,46,52,54,51,49,57,56,44,51,53,46,57,51,54,56,49,93,44,91,45,57,49,46,51,53,55,50,51,44,51,53,46,56,57,48,54,50,49,93,44,91,45,57,49,46,51,52,57,56,51,52,44,51,54,46,50,51,48,57,54,55,93,44,91,45,57,49,46,50,53,56,57,50,44,51,54,46,50,53,55,56,56,93,44,91,45,57,49,46,50,55,52,57,52,44,51,54,46,51,55,52,49,50,93,44,91,45,57,49,46,52,48,55,49,51,56,44,51,54,46,52,57,55,48,56,49,93,44,91,45,57,49,46,52,53,48,48,48,50,44,51,54,46,52,57,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,76,97,114,105,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,49,54,49,44,34,98,101,100,115,34,58,55,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,56,53,52,57,50,54,44,52,48,46,52,56,54,50,53,50,93,44,91,45,49,48,53,46,54,53,51,51,50,49,44,52,48,46,50,54,48,52,53,55,93,44,91,45,49,48,53,46,48,53,53,48,56,57,44,52,48,46,50,54,49,55,57,51,93,44,91,45,49,48,52,46,57,52,53,53,53,49,44,52,48,46,51,52,57,48,57,57,93,44,91,45,49,48,52,46,57,52,51,51,55,49,44,52,48,46,57,57,56,50,49,51,93,44,91,45,49,48,53,46,50,55,54,56,54,44,52,48,46,57,57,56,49,55,50,93,44,91,45,49,48,54,46,49,57,48,53,53,52,44,52,48,46,57,57,55,53,55,56,93,44,91,45,49,48,54,46,49,56,53,51,48,55,44,52,48,46,57,51,51,57,55,51,93,44,91,45,49,48,54,46,48,53,51,55,55,57,44,52,48,46,56,49,50,54,54,50,93,44,91,45,49,48,53,46,56,53,52,57,50,54,44,52,48,46,52,56,54,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,84,121,114,114,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,48,50,50,54,48,55,44,51,54,46,48,57,54,55,50,53,93,44,91,45,55,54,46,49,53,55,57,53,51,44,51,54,46,48,53,57,53,49,55,93,44,91,45,55,54,46,51,53,56,51,57,51,44,51,54,46,48,50,48,48,49,57,93,44,91,45,55,54,46,51,53,51,54,54,57,44,51,53,46,56,54,49,51,54,53,93,44,91,45,55,54,46,52,48,53,57,55,49,44,51,53,46,54,57,55,53,55,57,93,44,91,45,55,54,46,48,50,55,52,55,57,44,51,53,46,54,54,56,56,52,57,93,44,91,45,55,54,46,48,48,56,51,52,56,44,51,53,46,56,57,53,56,48,50,93,44,91,45,55,53,46,57,53,52,51,55,52,44,51,53,46,57,57,48,48,54,52,93,44,91,45,55,53,46,56,52,48,48,52,54,44,51,54,46,48,50,56,56,51,52,93,44,91,45,55,53,46,57,48,54,50,57,53,44,51,54,46,48,56,53,56,55,55,93,44,91,45,55,54,46,48,50,50,54,48,55,44,51,54,46,48,57,54,55,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,82,105,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,55,54,53,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,50,52,51,50,55,44,52,52,46,53,52,51,54,49,56,93,44,91,45,57,51,46,53,50,53,50,51,49,44,52,52,46,49,57,54,49,51,52,93,44,91,45,57,51,46,52,48,54,53,54,53,44,52,52,46,49,57,54,51,55,55,93,44,91,45,57,51,46,48,52,53,57,49,44,52,52,46,49,57,54,55,49,54,93,44,91,45,57,51,46,48,52,49,49,53,57,44,52,52,46,49,57,54,55,50,54,93,44,91,45,57,51,46,48,51,57,52,56,53,44,52,52,46,52,55,49,56,55,49,93,44,91,45,57,51,46,50,56,49,54,56,54,44,52,52,46,52,55,49,57,57,56,93,44,91,45,57,51,46,50,56,49,53,50,49,44,52,52,46,53,52,51,57,53,55,93,44,91,45,57,51,46,53,50,52,51,50,55,44,52,52,46,53,52,51,54,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,57,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,57,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,54,52,50,56,55,44,51,56,46,57,57,50,55,54,50,93,44,91,45,57,49,46,50,54,52,57,50,55,44,51,56,46,56,52,51,56,51,51,93,44,91,45,57,49,46,52,49,53,56,51,50,44,51,56,46,56,52,53,51,93,44,91,45,57,49,46,52,49,56,54,51,55,44,51,56,46,55,48,57,55,55,56,93,44,91,45,57,49,46,51,54,57,49,57,50,44,51,56,46,54,57,57,51,50,52,93,44,91,45,57,49,46,51,49,51,48,57,51,44,51,56,46,55,48,54,55,49,53,93,44,91,45,57,49,46,49,51,50,53,51,53,44,51,56,46,53,57,56,50,55,57,93,44,91,45,57,48,46,57,54,52,52,54,49,44,51,56,46,53,52,55,53,52,53,93,44,91,45,57,48,46,57,53,56,53,51,54,44,51,56,46,56,55,48,56,54,53,93,44,91,45,57,49,46,49,49,49,50,53,49,44,51,56,46,56,55,50,55,48,57,93,44,91,45,57,49,46,50,54,52,50,56,55,44,51,56,46,57,57,50,55,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,55,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,52,50,55,44,34,98,101,100,115,34,58,55,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,55,52,52,54,50,44,51,54,46,57,57,57,55,54,54,93,44,91,45,56,54,46,54,49,49,53,56,54,44,51,54,46,56,56,51,48,53,55,93,44,91,45,56,54,46,53,56,51,50,56,57,44,51,54,46,56,51,48,50,56,50,93,44,91,45,56,54,46,52,48,53,55,54,57,44,51,54,46,55,55,54,49,56,55,93,44,91,45,56,54,46,49,54,54,55,52,44,51,54,46,57,51,52,48,49,53,93,44,91,45,56,54,46,49,49,51,53,49,50,44,51,55,46,48,54,49,48,55,50,93,44,91,45,56,54,46,50,56,49,55,53,44,51,55,46,48,56,48,53,57,55,93,44,91,45,56,54,46,51,57,57,49,54,53,44,51,55,46,49,54,57,56,57,54,93,44,91,45,56,54,46,54,49,56,49,53,56,44,51,55,46,49,56,51,57,48,54,93,44,91,45,56,54,46,54,55,52,52,54,50,44,51,54,46,57,57,57,55,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,100,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,51,54,49,44,34,98,101,100,115,34,58,50,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,52,51,49,52,55,44,51,50,46,54,57,51,48,51,93,44,91,45,57,52,46,48,52,50,57,48,49,44,51,50,46,51,57,50,50,56,51,93,44,91,45,57,52,46,48,52,50,53,57,56,44,51,50,46,49,57,54,48,48,53,93,44,91,45,57,51,46,57,53,49,48,56,53,44,51,50,46,49,57,53,53,52,53,93,44,91,45,57,51,46,55,54,52,55,54,51,44,51,50,46,51,52,53,54,52,54,93,44,91,45,57,51,46,54,54,54,52,55,50,44,51,50,46,51,49,55,52,52,52,93,44,91,45,57,51,46,54,49,52,54,57,44,51,50,46,50,51,55,53,50,54,93,44,91,45,57,51,46,52,55,49,50,52,57,44,51,50,46,50,51,55,49,56,54,93,44,91,45,57,51,46,54,49,53,49,51,44,51,50,46,51,52,56,51,51,50,93,44,91,45,57,51,46,55,53,54,50,48,54,44,51,50,46,53,51,55,48,51,55,93,44,91,45,57,51,46,55,51,54,54,49,44,51,50,46,53,55,57,56,52,53,93,44,91,45,57,51,46,56,49,57,49,54,57,44,51,50,46,55,51,54,48,48,50,93,44,91,45,57,51,46,55,56,51,50,51,51,44,51,50,46,55,56,52,51,54,93,44,91,45,57,51,46,56,49,52,53,53,51,44,51,51,46,48,49,57,51,55,49,93,44,91,45,57,52,46,48,52,50,57,54,52,44,51,51,46,48,49,57,50,49,57,93,44,91,45,57,52,46,48,52,51,48,55,56,44,51,50,46,56,56,49,48,56,57,93,44,91,45,57,52,46,48,52,51,49,52,55,44,51,50,46,54,57,51,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,84,111,100,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,52,54,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,49,52,50,50,49,44,52,51,46,51,57,48,51,50,49,93,44,91,45,49,48,49,46,50,50,56,50,51,52,44,52,51,46,51,56,57,49,56,53,93,44,91,45,49,48,49,46,50,50,56,48,49,51,44,52,50,46,57,57,56,49,51,54,93,44,91,45,49,48,48,46,49,57,56,52,49,51,44,52,50,46,57,57,56,54,55,52,93,44,91,45,49,48,48,46,50,49,52,50,50,49,44,52,51,46,51,57,48,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,50,55,49,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,51,49,55,50,50,44,52,50,46,50,48,56,56,56,54,93,44,91,45,57,51,46,50,51,49,56,53,56,44,52,49,46,56,54,50,55,49,49,93,44,91,45,57,50,46,55,54,53,57,57,57,44,52,49,46,56,54,50,51,55,51,93,44,91,45,57,50,46,55,54,55,52,54,51,44,52,50,46,50,49,48,49,52,93,44,91,45,57,51,46,48,48,49,54,55,52,44,52,50,46,50,48,57,50,54,55,93,44,91,45,57,51,46,50,51,49,55,50,50,44,52,50,46,50,48,56,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,84,105,108,108,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,48,51,49,53,44,51,52,46,54,51,55,57,53,93,44,91,45,57,57,46,49,57,54,56,48,49,44,51,52,46,53,52,50,51,56,54,93,44,91,45,57,57,46,50,51,56,48,54,44,51,52,46,52,50,53,48,48,57,93,44,91,45,57,57,46,50,48,54,57,48,53,44,51,52,46,51,51,56,50,55,55,93,44,91,45,57,57,46,49,56,57,55,55,54,44,51,52,46,50,49,52,51,53,55,93,44,91,45,57,56,46,57,53,50,51,57,53,44,51,52,46,50,49,50,52,57,55,93,44,91,45,57,56,46,56,56,55,49,49,50,44,51,52,46,49,54,56,50,54,93,44,91,45,57,56,46,54,57,48,48,55,50,44,51,52,46,49,51,51,49,53,53,93,44,91,45,57,56,46,54,48,57,57,56,55,44,51,52,46,49,53,55,49,53,52,93,44,91,45,57,56,46,54,48,57,54,54,44,51,52,46,51,51,51,55,50,93,44,91,45,57,56,46,54,54,49,57,53,54,44,51,52,46,52,48,53,57,52,56,93,44,91,45,57,56,46,54,54,49,57,56,50,44,51,52,46,53,48,55,52,54,93,44,91,45,57,56,46,56,50,54,49,52,52,44,51,52,46,53,48,55,51,55,93,44,91,45,57,56,46,56,50,54,48,48,56,44,51,52,46,53,57,52,52,49,51,93,44,91,45,57,57,46,48,48,49,49,48,55,44,51,52,46,53,57,52,51,54,54,93,44,91,45,57,57,46,49,48,51,49,53,44,51,52,46,54,51,55,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,49,48,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,51,57,54,48,57,44,51,53,46,51,51,48,57,57,51,93,44,91,45,56,51,46,54,56,48,49,49,52,44,51,53,46,50,55,57,53,93,44,91,45,56,51,46,55,48,50,55,55,50,44,51,53,46,50,52,56,53,50,93,44,91,45,56,51,46,55,51,56,49,50,57,44,51,53,46,49,53,53,57,53,93,44,91,45,56,51,46,54,52,56,52,53,53,44,51,53,46,49,53,50,56,57,54,93,44,91,45,56,51,46,52,56,50,57,52,57,44,51,52,46,57,57,51,51,48,49,93,44,91,45,56,51,46,49,48,56,54,49,51,44,51,53,46,48,48,48,54,53,57,93,44,91,45,56,51,46,49,48,56,53,54,56,44,51,53,46,48,48,49,51,53,52,93,44,91,45,56,51,46,51,51,57,54,48,57,44,51,53,46,51,51,48,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,54,51,51,52,56,44,51,55,46,55,51,49,54,57,54,93,44,91,45,56,48,46,56,53,56,52,54,54,44,51,55,46,52,50,56,51,48,55,93,44,91,45,56,48,46,55,55,48,48,56,50,44,51,55,46,51,55,50,51,54,51,93,44,91,45,56,48,46,53,49,49,51,57,49,44,51,55,46,52,56,49,54,55,50,93,44,91,45,56,48,46,52,55,50,55,56,50,44,51,55,46,52,50,51,55,51,93,44,91,45,56,48,46,50,57,57,55,56,57,44,51,55,46,53,48,56,50,55,49,93,44,91,45,56,48,46,50,50,48,57,56,52,44,51,55,46,54,50,55,55,54,55,93,44,91,45,56,48,46,50,57,54,49,51,56,44,51,55,46,54,57,49,55,56,51,93,44,91,45,56,48,46,53,48,54,54,57,53,44,51,55,46,54,57,49,49,53,56,93,44,91,45,56,48,46,54,54,51,51,52,56,44,51,55,46,55,51,49,54,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,83,119,105,116,122,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,48,51,49,54,54,44,51,56,46,57,49,51,56,48,51,93,44,91,45,56,53,46,50,48,49,52,55,52,44,51,56,46,54,57,49,51,49,56,93,44,91,45,56,53,46,48,50,51,53,49,57,44,51,56,46,55,54,49,56,55,93,44,91,45,56,52,46,55,57,53,48,51,57,44,51,56,46,56,53,55,50,55,93,44,91,45,56,52,46,56,55,48,55,52,57,44,51,56,46,57,48,48,57,48,53,93,44,91,45,56,53,46,49,51,53,56,51,50,44,51,56,46,57,50,57,53,55,56,93,44,91,45,56,53,46,50,48,51,49,54,54,44,51,56,46,57,49,51,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,72,105,99,107,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,55,52,55,50,55,44,51,54,46,54,53,48,52,55,53,93,44,91,45,56,56,46,57,48,51,52,56,44,51,54,46,53,55,54,56,54,52,93,44,91,45,56,56,46,56,51,52,53,56,56,44,51,54,46,53,48,50,54,49,49,93,44,91,45,56,56,46,56,50,55,51,48,51,44,51,54,46,53,48,50,54,51,51,93,44,91,45,56,56,46,56,49,54,55,54,51,44,51,54,46,53,48,50,54,54,53,93,44,91,45,56,56,46,56,49,51,50,50,57,44,51,54,46,55,55,51,49,49,53,93,44,91,45,56,57,46,49,50,51,53,51,49,44,51,54,46,55,56,53,50,49,55,93,44,91,45,56,57,46,49,55,52,55,50,55,44,51,54,46,54,53,48,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,71,101,110,101,118,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,57,49,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,49,52,48,50,44,51,49,46,49,57,54,51,52,57,93,44,91,45,56,54,46,49,57,51,52,55,54,44,51,49,46,49,57,50,50,49,51,93,44,91,45,56,54,46,49,56,55,50,52,54,44,51,48,46,57,57,52,48,50,49,93,44,91,45,56,54,46,48,51,53,48,51,57,44,51,48,46,57,57,51,51,50,93,44,91,45,56,53,46,52,57,55,57,57,50,44,51,48,46,57,57,54,57,51,49,93,44,91,45,56,53,46,52,56,56,50,57,56,44,51,48,46,57,57,55,48,54,52,93,44,91,45,56,53,46,52,56,53,55,54,44,51,49,46,49,57,57,56,56,54,93,44,91,45,56,53,46,55,49,48,51,51,51,44,51,49,46,49,57,53,49,55,51,93,44,91,45,56,53,46,55,57,49,52,48,50,44,51,49,46,49,57,54,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,76,97,83,97,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,48,52,48,49,44,34,98,101,100,115,34,58,49,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,54,54,53,54,49,44,52,49,46,53,56,53,50,56,57,93,44,91,45,56,57,46,49,54,51,55,48,53,44,52,49,46,51,49,48,49,56,55,93,44,91,45,56,57,46,49,54,50,50,51,55,44,52,49,46,49,48,52,48,48,56,93,44,91,45,56,57,46,48,52,55,51,57,52,44,52,49,46,49,48,52,55,56,54,93,44,91,45,56,57,46,48,52,55,55,49,56,44,52,48,46,57,50,53,55,52,57,93,44,91,45,56,56,46,57,51,49,51,57,44,52,48,46,57,50,55,55,52,93,44,91,45,56,56,46,57,51,48,56,56,49,44,52,49,46,49,48,53,57,93,44,91,45,56,56,46,53,56,54,50,52,44,52,49,46,49,48,56,50,57,51,93,44,91,45,56,56,46,53,57,53,57,54,49,44,52,49,46,52,53,55,49,50,57,93,44,91,45,56,56,46,54,48,50,50,52,44,52,49,46,54,51,49,51,56,57,93,44,91,45,56,56,46,57,51,56,54,55,57,44,52,49,46,54,50,56,51,49,54,93,44,91,45,56,57,46,49,54,54,53,54,49,44,52,49,46,53,56,53,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,48,55,48,53,57,44,52,50,46,54,52,51,57,55,51,93,44,91,45,57,49,46,53,57,54,57,56,49,44,52,50,46,50,57,54,52,48,56,93,44,91,45,57,49,46,51,54,51,50,54,51,44,52,50,46,50,57,54,52,52,53,93,44,91,45,57,49,46,49,51,48,48,55,57,44,52,50,46,50,57,53,55,54,49,93,44,91,45,57,49,46,49,51,50,55,54,54,44,52,50,46,54,52,53,56,52,52,93,44,91,45,57,49,46,54,48,55,48,53,57,44,52,50,46,54,52,51,57,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,77,111,114,114,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,54,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,48,49,53,53,54,44,51,56,46,56,54,57,55,48,52,93,44,91,45,57,54,46,56,57,48,50,52,53,44,51,56,46,56,55,48,48,54,55,93,44,91,45,57,54,46,57,50,55,50,51,52,44,51,56,46,56,49,50,49,54,93,44,91,45,57,54,46,57,51,48,50,56,54,44,51,56,46,54,48,57,51,54,50,93,44,91,45,57,54,46,56,49,57,53,48,57,44,51,56,46,53,50,50,52,52,57,93,44,91,45,57,54,46,51,53,51,55,56,44,51,56,46,53,50,49,54,53,55,93,44,91,45,57,54,46,51,53,50,54,49,51,44,51,56,46,55,51,57,48,50,49,93,44,91,45,57,54,46,51,57,48,51,57,56,44,51,56,46,56,50,53,56,53,56,93,44,91,45,57,54,46,53,48,49,53,53,54,44,51,56,46,56,54,57,55,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,56,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,44,91,45,57,50,46,54,51,57,48,57,49,44,52,48,46,56,57,56,56,56,54,93,44,91,45,57,50,46,54,51,55,56,57,56,44,52,48,46,53,57,48,56,53,51,93,44,91,45,57,50,46,51,53,48,56,48,55,44,52,48,46,53,57,55,50,55,53,93,44,91,45,57,50,46,49,55,57,55,56,44,52,48,46,54,48,48,53,50,57,93,44,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,111,105,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,50,57,52,54,49,52,44,52,52,46,51,51,57,52,52,53,93,44,91,45,49,49,53,46,52,53,55,51,48,53,44,52,52,46,50,52,50,57,53,51,93,44,91,45,49,49,54,46,49,48,51,48,55,50,44,52,52,46,50,51,54,52,48,57,93,44,91,45,49,49,54,46,50,49,51,56,55,49,44,52,52,46,49,53,49,51,56,55,93,44,91,45,49,49,54,46,50,55,51,48,54,57,44,52,52,46,49,53,49,50,50,55,93,44,91,45,49,49,54,46,50,56,50,48,49,57,44,52,51,46,56,48,55,51,54,53,93,44,91,45,49,49,53,46,57,55,53,55,49,57,44,52,51,46,53,57,49,52,51,56,93,44,91,45,49,49,53,46,56,50,55,57,50,44,52,51,46,54,48,55,54,54,55,93,44,91,45,49,49,53,46,54,52,53,56,48,50,44,52,51,46,55,48,48,50,54,93,44,91,45,49,49,53,46,53,48,56,55,50,50,44,52,51,46,56,56,52,56,53,53,93,44,91,45,49,49,53,46,49,51,54,50,48,57,44,52,51,46,57,56,51,56,53,57,93,44,91,45,49,49,52,46,57,57,48,55,55,55,44,52,51,46,57,52,57,55,50,51,93,44,91,45,49,49,53,46,48,52,55,55,50,44,52,52,46,48,53,48,54,53,53,93,44,91,45,49,49,53,46,48,50,52,49,56,49,44,52,52,46,49,53,53,52,55,56,93,44,91,45,49,49,53,46,49,54,55,54,56,52,44,52,52,46,50,48,50,56,52,93,44,91,45,49,49,53,46,50,57,52,54,49,52,44,52,52,46,51,51,57,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,53,48,50,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,55,51,49,48,55,44,52,52,46,48,55,48,56,56,50,93,44,91,45,57,48,46,57,49,50,57,49,56,44,52,52,46,48,55,49,53,50,50,93,44,91,45,57,48,46,57,49,48,54,53,51,44,52,51,46,55,50,53,51,51,52,93,44,91,45,57,48,46,51,49,50,49,57,52,44,52,51,46,55,51,49,52,55,57,93,44,91,45,57,48,46,51,49,50,53,50,50,44,52,52,46,49,53,53,49,57,56,93,44,91,45,57,48,46,57,48,52,53,55,57,44,52,52,46,49,53,56,50,57,56,93,44,91,45,57,48,46,57,55,51,49,48,55,44,52,52,46,48,55,48,56,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,80,101,114,113,117,105,109,97,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,53,57,54,52,54,44,51,54,46,51,53,49,48,53,54,93,44,91,45,55,54,46,53,57,48,49,48,55,44,51,54,46,50,51,56,56,54,50,93,44,91,45,55,54,46,53,55,51,48,55,51,44,51,54,46,49,49,49,55,53,55,93,44,91,45,55,54,46,52,48,50,57,53,55,44,51,54,46,48,55,50,56,54,55,93,44,91,45,55,54,46,51,57,54,55,57,52,44,51,54,46,48,50,54,52,52,51,93,44,91,45,55,54,46,51,53,56,51,57,51,44,51,54,46,48,50,48,48,49,57,93,44,91,45,55,54,46,49,53,55,57,53,51,44,51,54,46,48,53,57,53,49,55,93,44,91,45,55,54,46,52,53,51,55,49,49,44,51,54,46,51,55,56,48,57,50,93,44,91,45,55,54,46,53,53,57,54,52,54,44,51,54,46,51,53,49,48,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,55,48,57,54,57,44,51,48,46,51,56,53,50,50,53,93,44,91,45,56,51,46,48,55,56,55,48,54,44,51,48,46,52,51,56,49,49,54,93,44,91,45,56,50,46,57,53,53,57,44,51,48,46,52,49,51,52,56,54,93,44,91,45,56,50,46,55,57,52,53,57,52,44,51,48,46,51,51,55,48,50,52,93,44,91,45,56,50,46,55,49,55,55,55,51,44,51,48,46,51,50,49,51,57,49,93,44,91,45,56,50,46,54,52,53,53,53,53,44,51,48,46,52,48,54,52,49,55,93,44,91,45,56,50,46,55,50,54,53,56,51,44,51,48,46,53,53,57,52,56,54,93,44,91,45,56,50,46,54,56,57,53,51,57,44,51,48,46,53,57,55,55,51,52,93,44,91,45,56,51,46,49,51,54,54,49,52,44,51,48,46,54,50,51,57,54,55,93,44,91,45,56,51,46,51,48,57,50,52,57,44,51,48,46,54,51,52,52,48,54,93,44,91,45,56,51,46,50,55,50,54,49,50,44,51,48,46,54,50,55,54,56,55,93,44,91,45,56,51,46,50,50,48,48,56,55,44,51,48,46,52,50,50,52,56,52,93,44,91,45,56,51,46,49,55,48,57,54,57,44,51,48,46,51,56,53,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,55,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,48,34,44,34,78,65,77,69,34,58,34,77,97,116,97,110,117,115,107,97,45,83,117,115,105,116,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,52,54,52,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,50,46,57,57,55,54,52,55,44,54,50,46,55,50,55,52,48,49,93,44,91,45,49,53,50,46,57,57,57,56,51,57,44,54,50,46,50,57,50,54,50,49,93,44,91,45,49,53,50,46,57,57,57,56,56,50,44,54,49,46,52,50,54,49,55,50,93,44,91,45,49,53,49,46,51,51,50,55,56,52,44,54,49,46,52,50,54,50,51,57,93,44,91,45,49,53,49,46,51,51,50,56,48,50,44,54,49,46,50,53,50,57,51,54,93,44,91,45,49,53,48,46,57,55,52,48,49,52,44,54,49,46,50,53,50,57,52,93,44,91,45,49,53,48,46,57,55,52,48,49,55,44,54,49,46,49,54,54,50,56,55,93,44,91,45,49,53,48,46,55,55,53,56,54,51,44,54,49,46,48,55,57,52,54,54,93,44,91,45,49,53,48,46,52,50,52,49,52,56,44,54,49,46,49,54,54,51,48,56,93,44,91,45,49,52,57,46,57,56,55,52,57,53,44,54,49,46,50,50,52,48,54,52,93,44,91,45,49,52,57,46,55,52,56,51,54,57,44,54,49,46,51,57,55,51,55,49,93,44,91,45,49,52,57,46,51,53,57,52,52,44,54,49,46,52,56,52,48,50,53,93,44,91,45,49,52,57,46,49,56,48,48,54,50,44,54,49,46,52,50,54,50,53,93,44,91,45,49,52,56,46,52,54,50,52,55,49,44,54,49,46,52,50,54,50,54,55,93,44,91,45,49,52,55,46,50,48,54,53,57,55,44,54,49,46,52,50,54,50,54,53,93,44,91,45,49,52,54,46,57,52,50,53,53,57,44,54,49,46,52,55,48,54,55,53,93,44,91,45,49,52,54,46,57,52,50,54,48,49,44,54,49,46,56,49,55,50,55,50,93,44,91,45,49,52,54,46,57,55,57,56,48,55,44,54,50,46,50,53,48,52,57,55,93,44,91,45,49,52,54,46,52,50,51,57,56,52,44,54,50,46,50,53,48,53,49,49,93,44,91,45,49,52,54,46,52,51,54,56,57,57,44,54,50,46,56,53,54,57,57,49,93,44,91,45,49,52,54,46,52,57,52,50,57,54,44,54,50,46,57,53,55,56,54,52,93,44,91,45,49,52,54,46,52,57,52,51,49,49,44,54,51,46,49,54,56,57,55,53,93,44,91,45,49,52,54,46,52,56,57,53,52,49,44,54,51,46,52,56,50,57,49,51,93,44,91,45,49,52,54,46,57,57,57,57,54,54,44,54,51,46,52,55,57,54,52,53,93,44,91,45,49,52,56,46,48,50,53,54,50,55,44,54,51,46,52,55,55,54,48,57,93,44,91,45,49,52,56,46,48,50,53,54,49,56,44,54,51,46,51,51,51,50,51,51,93,44,91,45,49,52,57,46,53,50,54,49,52,56,44,54,51,46,51,51,51,50,49,55,93,44,91,45,49,53,48,46,55,50,48,57,49,54,44,54,51,46,48,54,51,49,56,52,93,44,91,45,49,53,49,46,56,57,52,48,49,53,44,54,50,46,55,57,56,48,53,56,93,44,91,45,49,53,49,46,56,57,51,55,56,52,44,54,50,46,55,50,53,56,54,52,93,44,91,45,49,53,50,46,57,57,55,54,52,55,44,54,50,46,55,50,55,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,54,49,54,44,34,98,101,100,115,34,58,51,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,55,56,53,56,57,44,52,48,46,51,55,57,53,50,52,93,44,91,45,56,53,46,53,55,54,49,57,55,44,52,48,46,48,55,55,49,52,51,93,44,91,45,56,53,46,50,49,52,51,56,54,44,52,48,46,48,55,54,56,56,57,93,44,91,45,56,53,46,50,49,56,55,53,56,44,52,48,46,51,48,54,55,48,54,93,44,91,45,56,53,46,50,49,57,57,48,49,44,52,48,46,51,55,57,48,51,52,93,44,91,45,56,53,46,52,52,52,51,51,44,52,48,46,51,55,57,49,52,93,44,91,45,56,53,46,53,55,56,53,56,57,44,52,48,46,51,55,57,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,101,118,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,57,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,51,55,51,50,57,44,50,57,46,53,57,49,49,57,54,93,44,91,45,56,51,46,48,54,56,53,50,50,44,50,57,46,51,52,51,57,53,51,93,44,91,45,56,51,46,50,51,57,56,53,57,44,50,57,46,50,53,48,57,57,93,44,91,45,56,51,46,49,55,49,56,48,54,44,50,57,46,49,56,53,57,50,49,93,44,91,45,56,51,46,49,52,52,48,56,44,50,57,46,48,55,50,56,52,93,44,91,45,56,51,46,48,55,54,44,50,57,46,48,52,49,56,49,57,93,44,91,45,56,50,46,57,53,48,48,55,56,44,50,57,46,48,55,54,48,53,57,93,44,91,45,56,50,46,56,53,49,50,55,56,44,50,57,46,48,49,55,51,56,57,93,44,91,45,56,50,46,56,52,56,50,52,56,44,50,56,46,57,49,52,53,50,57,93,44,91,45,56,50,46,55,49,49,53,51,44,50,57,46,48,51,48,57,56,56,93,44,91,45,56,50,46,53,51,53,53,57,49,44,50,57,46,48,52,52,56,53,53,93,44,91,45,56,50,46,53,51,52,56,54,44,50,57,46,50,49,52,54,56,93,44,91,45,56,50,46,52,48,51,50,51,55,44,50,57,46,50,49,53,54,50,51,93,44,91,45,56,50,46,52,48,54,54,50,44,50,57,46,52,56,53,48,52,56,93,44,91,45,56,50,46,53,53,54,55,54,54,44,50,57,46,52,56,48,48,53,53,93,44,91,45,56,50,46,54,53,54,51,48,49,44,50,57,46,53,54,52,56,49,49,93,44,91,45,56,50,46,57,51,55,51,50,57,44,50,57,46,53,57,49,49,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,71,117,114,97,98,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,56,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,52,50,52,50,57,44,49,56,46,50,57,51,52,54,57,93,44,91,45,54,54,46,48,50,49,55,52,55,44,49,56,46,51,48,53,48,51,52,93,44,91,45,54,53,46,57,57,55,54,53,44,49,56,46,50,48,54,57,57,50,93,44,91,45,54,53,46,57,53,49,48,49,57,44,49,56,46,50,50,57,50,57,50,93,44,91,45,54,53,46,57,49,56,53,51,53,44,49,56,46,50,55,48,49,51,93,44,91,45,54,53,46,57,52,50,52,50,57,44,49,56,46,50,57,51,52,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,97,116,105,108,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,51,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,56,51,54,54,57,51,44,49,56,46,53,52,48,50,48,54,93,44,91,45,54,54,46,56,50,52,50,50,51,44,49,56,46,51,52,50,57,57,56,93,44,91,45,54,54,46,56,50,54,49,50,56,44,49,56,46,51,50,51,51,56,50,93,44,91,45,54,54,46,55,55,48,48,55,50,44,49,56,46,51,50,53,48,49,51,93,44,91,45,54,54,46,55,54,52,54,57,50,44,49,56,46,53,51,56,51,51,93,44,91,45,54,54,46,56,51,54,54,57,51,44,49,56,46,53,52,48,50,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,54,53,51,44,34,98,101,100,115,34,58,49,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,48,54,49,51,53,44,51,48,46,49,55,55,57,52,49,93,44,91,45,56,57,46,51,52,48,56,52,55,44,51,48,46,51,53,55,57,57,53,93,44,91,45,56,57,46,51,52,49,52,52,54,44,51,48,46,54,52,55,55,50,93,44,91,45,56,57,46,53,52,52,50,51,50,44,51,48,46,54,52,56,51,54,56,93,44,91,45,56,57,46,53,52,52,53,49,44,51,48,46,53,49,54,56,54,50,93,44,91,45,56,57,46,54,57,48,48,51,53,44,51,48,46,52,53,57,51,51,51,93,44,91,45,56,57,46,54,51,49,54,49,52,44,51,48,46,50,53,55,48,49,51,93,44,91,45,56,57,46,52,57,52,57,55,51,44,51,48,46,49,54,48,55,53,93,44,91,45,56,57,46,51,48,54,49,51,53,44,51,48,46,49,55,55,57,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,53,34,44,34,78,65,77,69,34,58,34,87,105,108,99,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,56,48,49,55,54,44,51,49,46,56,52,55,51,49,50,93,44,91,45,56,51,46,49,55,55,52,54,57,44,51,49,46,56,52,55,56,53,55,93,44,91,45,56,51,46,50,48,53,55,51,57,44,51,49,46,57,48,48,51,50,53,93,44,91,45,56,51,46,51,51,55,51,49,51,44,51,50,46,49,48,53,56,56,53,93,44,91,45,56,51,46,54,48,56,53,52,55,44,51,50,46,49,49,56,52,48,53,93,44,91,45,56,51,46,54,48,57,54,54,51,44,51,50,46,48,50,55,57,51,56,93,44,91,45,56,51,46,54,49,50,50,53,54,44,51,49,46,56,53,52,48,56,57,93,44,91,45,56,51,46,52,56,48,49,55,54,44,51,49,46,56,52,55,51,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,82,101,100,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,49,56,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,49,52,54,57,44,51,50,46,50,51,55,53,50,54,93,44,91,45,57,51,46,53,50,51,52,49,54,44,51,50,46,49,55,54,57,57,49,93,44,91,45,57,51,46,53,52,49,51,53,51,44,51,50,46,49,48,53,56,56,93,44,91,45,57,51,46,51,53,53,52,53,50,44,51,49,46,57,51,50,50,50,50,93,44,91,45,57,51,46,50,51,56,52,55,44,51,49,46,57,55,50,55,56,49,93,44,91,45,57,51,46,49,51,54,49,50,55,44,51,50,46,48,53,54,50,50,52,93,44,91,45,57,51,46,49,56,55,49,54,50,44,51,50,46,49,52,56,52,49,50,93,44,91,45,57,51,46,50,49,51,57,56,56,44,51,50,46,50,51,54,48,54,53,93,44,91,45,57,51,46,52,50,56,49,57,44,51,50,46,50,51,53,56,57,55,93,44,91,45,57,51,46,52,55,49,50,52,57,44,51,50,46,50,51,55,49,56,54,93,44,91,45,57,51,46,54,49,52,54,57,44,51,50,46,50,51,55,53,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,49,56,53,44,34,98,101,100,115,34,58,50,48,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,52,49,55,49,49,44,51,54,46,49,56,54,51,55,56,93,44,91,45,56,52,46,49,57,50,50,56,55,44,51,53,46,57,57,53,52,56,56,93,44,91,45,56,52,46,50,55,49,53,56,55,44,51,53,46,57,49,48,49,54,53,93,44,91,45,56,52,46,50,54,51,51,56,51,44,51,53,46,56,57,54,57,52,93,44,91,45,56,52,46,49,54,54,50,54,55,44,51,53,46,56,48,53,49,48,54,93,44,91,45,56,51,46,57,53,48,52,56,49,44,51,53,46,56,55,53,51,54,50,93,44,91,45,56,51,46,55,57,52,50,55,53,44,51,53,46,56,56,55,49,50,53,93,44,91,45,56,51,46,54,53,52,54,48,53,44,51,53,46,57,55,49,57,51,55,93,44,91,45,56,51,46,54,55,51,50,57,55,44,51,54,46,48,51,56,52,56,54,93,44,91,45,56,51,46,54,54,55,52,54,44,51,54,46,48,56,48,53,56,55,93,44,91,45,56,51,46,55,51,50,55,48,52,44,51,54,46,49,54,52,53,56,51,93,44,91,45,56,51,46,57,52,49,55,49,49,44,51,54,46,49,56,54,51,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,79,120,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,51,50,53,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,48,56,51,57,50,56,44,52,53,46,51,48,53,52,56,52,93,44,91,45,55,49,46,48,51,51,53,50,52,44,52,52,46,54,57,55,54,51,55,93,44,91,45,55,49,46,48,48,57,57,55,54,44,52,52,46,50,56,52,56,57,57,93,44,91,45,55,48,46,57,56,57,49,50,50,44,52,51,46,55,57,50,49,49,51,93,44,91,45,55,48,46,55,56,50,57,56,52,44,52,51,46,56,49,52,49,52,55,93,44,91,45,55,48,46,55,49,53,52,49,56,44,52,51,46,57,54,49,56,49,53,93,44,91,45,55,48,46,56,50,49,56,48,51,44,52,52,46,48,55,55,48,56,57,93,44,91,45,55,48,46,54,50,52,51,50,57,44,52,52,46,49,55,49,48,51,54,93,44,91,45,55,48,46,54,48,51,55,56,52,44,52,52,46,48,52,49,53,51,54,93,44,91,45,55,48,46,52,56,48,48,55,56,44,52,52,46,48,51,50,48,55,56,93,44,91,45,55,48,46,51,51,52,48,57,52,44,52,52,46,50,49,48,55,53,51,93,44,91,45,55,48,46,50,51,56,57,48,52,44,52,52,46,52,53,56,57,52,50,93,44,91,45,55,48,46,50,56,48,55,52,56,44,52,52,46,53,54,57,54,49,57,93,44,91,45,55,48,46,53,49,48,53,57,56,44,52,52,46,54,50,55,50,49,54,93,44,91,45,55,48,46,54,49,53,48,51,44,52,52,46,55,57,53,54,51,52,93,44,91,45,55,48,46,55,54,57,50,50,56,44,52,52,46,55,51,50,50,50,56,93,44,91,45,55,48,46,55,55,57,56,52,50,44,52,53,46,48,49,56,51,55,57,93,44,91,45,55,48,46,56,51,53,49,52,50,44,52,53,46,50,55,55,48,52,55,93,44,91,45,55,48,46,57,56,57,49,50,44,52,53,46,51,51,52,49,51,55,93,44,91,45,55,49,46,48,56,51,57,50,56,44,52,53,46,51,48,53,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,50,48,48,51,44,34,98,101,100,115,34,58,51,48,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,56,48,51,51,44,51,56,46,56,52,55,50,48,55,93,44,91,45,57,52,46,49,49,57,48,57,54,44,51,56,46,56,51,51,49,54,55,93,44,91,45,57,52,46,49,49,52,49,55,53,44,51,56,46,57,49,55,51,48,52,93,44,91,45,57,52,46,49,48,52,56,50,51,44,51,57,46,49,52,51,53,48,55,93,44,91,45,57,52,46,50,49,50,53,49,53,44,51,57,46,50,48,55,48,56,54,93,44,91,45,57,52,46,50,56,57,56,55,51,44,51,57,46,50,51,55,49,48,55,93,44,91,45,57,52,46,52,54,49,53,57,44,51,57,46,49,50,48,51,55,50,93,44,91,45,57,52,46,54,48,55,51,53,52,44,51,57,46,49,49,51,52,52,52,93,44,91,45,57,52,46,54,48,55,51,56,50,44,51,57,46,48,52,52,48,56,54,93,44,91,45,57,52,46,54,48,56,48,51,51,44,51,56,46,56,52,55,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,49,34,44,34,78,65,77,69,34,58,34,84,111,119,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,51,54,51,57,53,44,51,52,46,57,56,55,53,54,52,93,44,91,45,56,51,46,56,48,52,57,54,50,44,51,52,46,56,57,53,57,51,52,93,44,91,45,56,51,46,55,56,48,51,52,54,44,51,52,46,55,57,50,57,48,53,93,44,91,45,56,51,46,54,56,49,53,57,54,44,51,52,46,56,48,48,56,56,50,93,44,91,45,56,51,46,54,53,50,49,57,52,44,51,52,46,56,50,50,57,57,51,93,44,91,45,56,51,46,54,53,54,50,57,55,44,51,52,46,56,55,56,56,50,51,93,44,91,45,56,51,46,53,52,57,51,55,54,44,51,52,46,57,57,50,51,57,51,93,44,91,45,56,51,46,57,51,54,51,57,53,44,51,52,46,57,56,55,53,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,83,109,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,54,51,44,34,98,101,100,115,34,58,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,44,91,45,56,57,46,55,51,48,52,50,52,44,51,50,46,50,50,50,48,51,57,93,44,91,45,56,57,46,55,51,48,48,54,54,44,51,50,46,48,52,55,48,55,50,93,44,91,45,56,57,46,54,53,52,52,50,54,44,51,50,46,48,49,51,54,55,56,93,44,91,45,56,57,46,54,53,51,48,50,53,44,51,49,46,55,56,48,54,53,51,93,44,91,45,56,57,46,52,48,49,50,50,55,44,51,49,46,55,57,54,56,54,51,93,44,91,45,56,57,46,51,49,54,53,54,44,51,49,46,56,48,50,48,57,93,44,91,45,56,57,46,51,50,50,54,57,50,44,51,50,46,50,50,51,52,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,80,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,56,57,55,55,57,44,52,52,46,49,53,50,53,57,93,44,91,45,49,49,54,46,57,56,51,56,50,55,44,52,51,46,56,56,48,48,52,54,93,44,91,45,49,49,54,46,56,53,51,49,53,52,44,52,51,46,55,57,50,55,49,93,44,91,45,49,49,54,46,55,49,50,54,55,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,55,49,50,53,48,49,44,52,51,46,57,56,49,51,50,54,93,44,91,45,49,49,54,46,53,55,50,50,50,52,44,52,51,46,57,56,48,52,56,53,93,44,91,45,49,49,54,46,52,53,50,48,54,56,44,52,52,46,49,53,49,52,54,53,93,44,91,45,49,49,54,46,56,57,55,55,57,44,52,52,46,49,53,50,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,83,104,111,115,104,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,50,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,51,50,57,53,51,56,44,52,55,46,56,57,48,51,57,51,93,44,91,45,49,49,54,46,51,50,57,52,48,54,44,52,55,46,52,49,52,48,49,49,93,44,91,45,49,49,54,46,51,50,57,52,49,56,44,52,55,46,48,50,49,57,49,53,93,44,91,45,49,49,54,46,51,50,57,52,51,54,44,52,54,46,57,51,52,54,54,57,93,44,91,45,49,49,52,46,57,53,57,51,49,55,44,52,54,46,57,51,50,56,57,56,93,44,91,45,49,49,53,46,48,52,55,56,53,55,44,52,54,46,57,54,57,53,51,50,93,44,91,45,49,49,53,46,51,52,48,56,52,57,44,52,55,46,50,54,50,56,53,93,44,91,45,49,49,53,46,55,52,54,54,49,57,44,52,55,46,52,52,50,51,49,49,93,44,91,45,49,49,53,46,54,50,57,52,56,56,44,52,55,46,52,55,57,54,49,93,44,91,45,49,49,53,46,55,50,50,55,49,52,44,52,55,46,54,57,52,56,53,53,93,44,91,45,49,49,53,46,56,50,51,55,55,52,44,52,55,46,55,53,50,54,49,49,93,44,91,45,49,49,54,46,48,52,57,49,48,56,44,52,55,46,57,55,55,51,51,52,93,44,91,45,49,49,54,46,50,51,51,49,49,51,44,52,56,46,48,54,56,56,57,93,44,91,45,49,49,54,46,51,50,57,54,48,49,44,52,56,46,48,49,55,55,50,50,93,44,91,45,49,49,54,46,51,50,57,53,51,56,44,52,55,46,56,57,48,51,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,72,121,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,50,50,49,51,49,44,51,53,46,51,53,51,54,50,51,93,44,91,45,55,54,46,52,52,53,52,49,56,44,51,53,46,51,50,57,50,54,52,93,44,91,45,55,54,46,51,48,52,49,51,54,44,51,53,46,50,48,49,52,53,51,93,44,91,45,55,54,46,48,54,53,55,55,52,44,51,53,46,49,50,52,57,51,55,93,44,91,45,55,54,46,48,48,54,57,51,54,44,51,53,46,48,48,54,48,51,49,93,44,91,45,55,53,46,55,51,54,54,50,44,51,53,46,49,52,48,53,54,53,93,44,91,45,55,53,46,56,49,52,48,50,49,44,51,53,46,53,48,48,49,56,50,93,44,91,45,55,53,46,57,48,49,51,52,50,44,51,53,46,54,54,56,57,53,50,93,44,91,45,55,54,46,48,50,55,52,55,57,44,51,53,46,54,54,56,56,52,57,93,44,91,45,55,54,46,52,48,53,57,55,49,44,51,53,46,54,57,55,53,55,57,93,44,91,45,55,54,46,54,51,55,53,49,51,44,51,53,46,55,48,53,50,49,53,93,44,91,45,55,54,46,53,56,56,49,57,49,44,51,53,46,54,50,48,54,53,52,93,44,91,45,55,54,46,53,56,53,51,50,44,51,53,46,52,53,53,48,55,53,93,44,91,45,55,54,46,53,50,50,49,51,49,44,51,53,46,51,53,51,54,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,70,108,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,52,48,57,50,44,52,51,46,50,49,50,56,49,50,93,44,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,44,91,45,57,50,46,53,53,52,50,49,49,44,52,50,46,57,48,55,49,49,50,93,44,91,45,57,50,46,53,53,52,51,56,49,44,52,51,46,50,49,50,56,49,51,93,44,91,45,57,51,46,48,50,52,48,57,50,44,52,51,46,50,49,50,56,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,77,99,67,114,97,99,107,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,50,56,52,44,34,98,101,100,115,34,58,49,48,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,51,51,52,48,49,44,51,55,46,50,50,52,57,57,49,93,44,91,45,56,56,46,56,49,53,57,53,50,44,51,54,46,57,53,52,49,93,44,91,45,56,56,46,56,49,50,56,57,55,44,51,54,46,57,52,54,56,54,52,93,44,91,45,56,56,46,52,56,52,49,48,51,44,51,54,46,57,52,50,48,57,54,93,44,91,45,56,56,46,52,56,50,57,53,55,44,51,55,46,48,50,50,53,54,54,93,44,91,45,56,56,46,53,54,54,48,54,49,44,51,55,46,48,55,53,50,48,52,93,44,91,45,56,56,46,57,50,55,56,57,44,51,55,46,50,50,54,51,52,50,93,44,91,45,56,56,46,57,51,51,52,48,49,44,51,55,46,50,50,52,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,53,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,50,56,48,49,54,44,51,55,46,55,57,57,49,56,56,93,44,91,45,56,56,46,49,54,48,51,56,57,44,51,55,46,54,53,54,49,51,49,93,44,91,45,56,56,46,49,51,51,52,51,52,44,51,55,46,53,55,52,51,51,56,93,44,91,45,56,56,46,48,54,49,51,51,50,44,51,55,46,53,48,53,51,51,50,93,44,91,45,56,55,46,57,51,50,57,53,50,44,51,55,46,52,56,48,48,53,50,93,44,91,45,56,55,46,55,51,52,53,52,53,44,51,55,46,54,51,56,51,55,54,93,44,91,45,56,55,46,57,50,55,48,54,56,44,51,55,46,57,48,49,54,56,53,93,44,91,45,56,55,46,57,48,54,57,51,57,44,51,55,46,56,48,55,53,57,51,93,44,91,45,56,56,46,48,50,56,48,49,54,44,51,55,46,55,57,57,49,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,84,117,114,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,54,52,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,48,49,52,53,44,52,51,46,52,57,57,55,56,51,93,44,91,45,57,55,46,51,57,57,49,57,49,44,52,51,46,49,54,57,52,49,57,93,44,91,45,57,55,46,49,54,48,53,52,52,44,52,51,46,49,54,57,57,55,56,93,44,91,45,57,55,46,49,54,48,53,52,51,44,52,51,46,48,56,51,49,52,53,93,44,91,45,57,54,46,57,50,52,49,52,50,44,52,51,46,48,56,51,55,51,51,93,44,91,45,57,54,46,57,50,52,56,52,49,44,52,51,46,53,48,48,48,48,55,93,44,91,45,57,55,46,49,50,57,52,55,56,44,52,51,46,52,57,57,54,56,51,93,44,91,45,57,55,46,52,48,49,52,53,44,52,51,46,52,57,57,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,99,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,51,54,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,51,52,53,56,53,44,51,54,46,48,56,53,48,57,52,93,44,91,45,56,51,46,51,49,48,55,56,50,44,51,53,46,56,57,53,56,52,54,93,44,91,45,56,51,46,50,53,53,51,52,51,44,51,53,46,55,49,53,48,56,52,93,44,91,45,56,51,46,48,55,51,57,49,56,44,51,53,46,55,57,48,48,53,53,93,44,91,45,56,50,46,57,54,49,55,53,52,44,51,53,46,55,57,48,57,53,57,93,44,91,45,56,50,46,56,57,56,51,49,55,44,51,53,46,57,52,52,57,54,55,93,44,91,45,56,51,46,49,54,54,48,56,53,44,51,54,46,49,56,48,56,57,52,93,44,91,45,56,51,46,50,51,52,53,56,53,44,51,54,46,48,56,53,48,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,56,53,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,55,50,49,48,56,44,51,54,46,53,57,55,50,56,52,93,44,91,45,56,51,46,51,57,56,51,48,51,44,51,54,46,53,51,52,56,56,53,93,44,91,45,56,51,46,51,56,54,56,44,51,54,46,52,49,51,49,56,54,93,44,91,45,56,51,46,50,56,48,53,57,53,44,51,54,46,51,57,52,54,56,57,93,44,91,45,56,51,46,49,49,57,51,57,51,44,51,54,46,53,49,52,50,57,93,44,91,45,56,50,46,56,51,48,52,51,51,44,51,54,46,53,57,51,55,54,49,93,44,91,45,56,50,46,57,56,53,49,50,52,44,51,54,46,53,57,51,55,50,57,93,44,91,45,56,51,46,52,55,50,49,48,56,44,51,54,46,53,57,55,50,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,55,49,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,54,50,53,55,50,44,51,53,46,51,56,48,57,57,52,93,44,91,45,56,56,46,51,56,48,53,48,56,44,51,52,46,57,57,53,54,49,93,44,91,45,56,56,46,51,54,51,53,51,49,44,51,52,46,57,57,53,52,55,53,93,44,91,45,56,56,46,50,48,48,48,54,52,44,51,52,46,57,57,53,54,51,52,93,44,91,45,56,55,46,57,56,52,57,49,54,44,51,53,46,48,48,53,57,51,51,93,44,91,45,56,55,46,57,56,49,53,56,53,44,51,53,46,50,57,53,54,55,56,93,44,91,45,56,56,46,48,50,52,55,52,49,44,51,53,46,51,57,50,51,48,55,93,44,91,45,56,56,46,49,56,57,54,54,49,44,51,53,46,51,56,52,51,48,51,93,44,91,45,56,56,46,50,52,49,54,55,55,44,51,53,46,52,50,51,50,54,51,93,44,91,45,56,56,46,51,54,48,56,50,57,44,51,53,46,52,49,56,57,55,50,93,44,91,45,56,56,46,51,54,50,53,55,50,44,51,53,46,51,56,48,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,54,50,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,53,52,55,57,51,44,51,52,46,50,51,48,57,49,51,93,44,91,45,55,57,46,52,57,49,55,49,52,44,51,51,46,57,52,54,53,50,50,93,44,91,45,55,57,46,51,50,52,51,49,55,44,51,51,46,55,57,57,49,50,51,93,44,91,45,55,57,46,51,49,55,48,52,49,44,51,51,46,55,55,57,56,55,56,93,44,91,45,55,57,46,49,57,48,50,54,52,44,51,51,46,55,48,53,55,56,55,93,44,91,45,55,57,46,51,51,50,52,53,56,44,51,51,46,57,57,52,57,57,55,93,44,91,45,55,57,46,49,50,56,49,54,53,44,51,52,46,50,53,51,54,53,50,93,44,91,45,55,57,46,52,56,48,55,49,50,44,51,52,46,50,56,56,48,56,49,93,44,91,45,55,57,46,53,52,55,57,51,44,51,52,46,50,51,48,57,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,71,117,97,121,97,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,55,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,53,51,49,52,54,44,49,56,46,49,48,55,50,57,51,93,44,91,45,54,54,46,49,54,54,49,52,53,44,49,56,46,48,53,48,48,54,51,93,44,91,45,54,54,46,50,50,53,50,55,53,44,49,55,46,57,50,52,54,53,50,93,44,91,45,54,54,46,49,56,55,51,52,50,44,49,55,46,56,55,55,48,51,54,93,44,91,45,54,54,46,48,54,52,53,48,51,44,49,55,46,57,48,52,56,50,53,93,44,91,45,54,54,46,48,56,50,50,54,51,44,49,56,46,48,51,50,57,53,56,93,44,91,45,54,54,46,48,53,51,49,52,54,44,49,56,46,49,48,55,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,52,53,55,44,34,98,101,100,115,34,58,49,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,51,53,57,48,56,44,51,49,46,48,48,50,48,52,55,93,44,91,45,57,48,46,50,53,57,53,53,53,44,51,49,46,48,48,48,54,55,57,93,44,91,45,57,48,46,51,52,55,50,53,53,44,51,49,46,48,48,48,53,51,93,44,91,45,57,48,46,51,52,54,55,49,44,51,48,46,57,48,53,52,50,55,93,44,91,45,57,48,46,50,53,53,54,52,56,44,51,48,46,55,49,49,57,48,53,93,44,91,45,56,57,46,57,57,52,50,48,49,44,51,48,46,54,54,53,52,51,93,44,91,45,56,57,46,56,52,50,51,51,44,51,48,46,54,54,54,48,49,53,93,44,91,45,56,57,46,55,50,56,49,49,57,44,51,49,46,48,48,50,51,93,44,91,45,56,57,46,56,51,53,57,48,56,44,51,49,46,48,48,50,48,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,55,34,44,34,78,65,77,69,34,58,34,83,116,111,100,100,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,53,49,50,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,53,56,53,54,51,44,51,54,46,57,50,50,48,52,51,93,44,91,45,57,48,46,49,53,56,48,53,44,51,54,46,55,50,50,57,55,54,93,44,91,45,57,48,46,49,52,56,51,57,56,44,51,54,46,54,51,48,54,53,54,93,44,91,45,56,57,46,57,53,56,55,56,54,44,51,54,46,54,50,57,51,51,49,93,44,91,45,56,57,46,55,48,48,57,53,50,44,51,54,46,54,50,55,52,53,51,93,44,91,45,56,57,46,54,57,49,54,48,51,44,51,54,46,56,53,57,53,49,55,93,44,91,45,56,57,46,54,56,54,54,50,44,51,54,46,57,50,56,50,57,51,93,44,91,45,56,57,46,55,56,54,56,49,57,44,51,55,46,48,56,55,56,50,52,93,44,91,45,56,57,46,55,54,53,50,49,49,44,51,55,46,49,50,54,48,54,54,93,44,91,45,56,57,46,56,54,54,54,50,55,44,51,55,46,49,50,54,50,50,55,93,44,91,45,56,57,46,57,53,57,49,57,54,44,51,55,46,48,53,52,51,56,93,44,91,45,57,48,46,49,49,49,50,52,55,44,51,55,46,48,52,49,50,48,53,93,44,91,45,57,48,46,50,53,56,53,54,51,44,51,54,46,57,50,50,48,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,68,111,111,108,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,52,56,51,55,57,44,51,50,46,50,57,48,57,55,93,44,91,45,56,51,46,57,53,56,56,49,55,44,51,50,46,50,53,50,49,48,53,93,44,91,45,56,52,46,48,50,55,54,44,51,50,46,49,55,49,49,54,53,93,44,91,45,56,51,46,57,54,49,50,55,56,44,51,50,46,48,51,48,53,57,53,93,44,91,45,56,51,46,54,48,57,54,54,51,44,51,50,46,48,50,55,57,51,56,93,44,91,45,56,51,46,54,48,56,53,52,55,44,51,50,46,49,49,56,52,48,53,93,44,91,45,56,51,46,54,49,53,53,55,57,44,51,50,46,50,56,56,53,53,54,93,44,91,45,56,51,46,56,52,56,51,55,57,44,51,50,46,50,57,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,83,116,101,97,114,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,56,49,57,44,34,98,101,100,115,34,58,53,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,51,57,54,55,44,52,53,46,55,53,56,56,57,49,93,44,91,45,57,53,46,49,51,49,55,51,44,52,53,46,52,49,50,52,48,50,93,44,91,45,57,52,46,55,54,50,57,51,52,44,52,53,46,52,49,50,56,54,49,93,44,91,45,57,52,46,55,54,51,48,56,44,52,53,46,51,50,54,49,93,44,91,45,57,52,46,51,56,51,53,53,54,44,52,53,46,51,50,54,55,48,53,93,44,91,45,57,52,46,50,54,48,56,50,49,44,52,53,46,50,56,51,57,52,49,93,44,91,45,57,52,46,49,49,54,55,54,53,44,52,53,46,51,50,56,48,49,57,93,44,91,45,57,52,46,48,52,55,51,50,55,44,52,53,46,52,50,50,56,54,49,93,44,91,45,57,52,46,49,52,57,52,54,55,44,52,53,46,53,53,57,48,54,54,93,44,91,45,57,52,46,50,55,49,55,55,54,44,52,53,46,55,55,53,50,48,56,93,44,91,45,57,52,46,54,52,51,57,57,44,52,53,46,55,55,51,57,53,93,44,91,45,57,53,46,49,51,57,55,51,49,44,52,53,46,55,55,51,52,49,54,93,44,91,45,57,53,46,49,51,57,54,55,44,52,53,46,55,53,56,56,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,83,97,117,110,100,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,48,50,52,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,48,53,56,54,50,44,52,49,46,52,53,51,51,56,57,93,44,91,45,57,54,46,57,48,56,53,48,55,44,52,49,46,48,52,54,48,57,49,93,44,91,45,57,54,46,52,54,51,56,54,57,44,52,49,46,48,52,53,48,56,51,93,44,91,45,57,54,46,52,54,51,56,54,49,44,52,49,46,48,49,54,48,54,57,93,44,91,45,57,54,46,51,49,57,49,57,49,44,52,49,46,48,52,52,57,57,56,93,44,91,45,57,54,46,51,50,55,51,57,57,44,52,49,46,49,56,57,57,57,57,93,44,91,45,57,54,46,52,55,48,55,50,44,52,49,46,51,57,51,50,51,57,93,44,91,45,57,54,46,53,54,56,57,55,55,44,52,49,46,52,51,51,50,52,93,44,91,45,57,54,46,57,48,53,56,54,50,44,52,49,46,52,53,51,51,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,83,104,101,114,98,117,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,50,51,49,44,34,98,101,100,115,34,58,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,49,48,55,48,52,44,52,53,46,53,53,56,55,55,50,93,44,91,45,57,51,46,55,53,57,52,51,53,44,52,53,46,53,53,57,54,52,54,93,44,91,45,57,52,46,49,52,57,52,54,55,44,52,53,46,53,53,57,48,54,54,93,44,91,45,57,52,46,48,52,55,51,50,55,44,52,53,46,52,50,50,56,54,49,93,44,91,45,57,51,46,55,53,54,54,49,44,52,53,46,50,57,52,55,50,49,93,44,91,45,57,51,46,53,55,57,51,57,44,52,53,46,50,57,50,49,50,50,93,44,91,45,57,51,46,53,50,49,54,53,51,44,52,53,46,50,52,54,54,49,56,93,44,91,45,57,51,46,53,49,50,49,57,44,52,53,46,50,52,53,54,56,51,93,44,91,45,57,51,46,53,49,48,48,55,44,52,53,46,52,49,52,55,57,56,93,44,91,45,57,51,46,53,49,48,55,48,52,44,52,53,46,53,53,56,55,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,68,97,118,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,48,49,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,50,53,50,52,50,44,52,51,46,56,53,49,48,53,56,93,44,91,45,57,56,46,51,50,48,53,57,53,44,52,51,46,52,57,56,54,53,49,93,44,91,45,57,56,46,49,49,52,55,53,56,44,52,51,46,52,57,56,50,57,55,93,44,91,45,57,55,46,57,54,52,53,56,54,44,52,51,46,52,57,57,48,52,49,93,44,91,45,57,55,46,57,54,55,50,55,57,44,52,51,46,56,53,48,54,56,54,93,44,91,45,57,56,46,51,50,53,50,52,50,44,52,51,46,56,53,49,48,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,105,98,111,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,49,51,44,34,98,101,100,115,34,58,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,55,50,49,48,56,44,51,54,46,53,57,55,50,56,52,93,44,91,45,56,51,46,54,55,53,51,57,53,44,51,54,46,54,48,48,55,56,52,93,44,91,45,56,51,46,57,51,48,55,54,50,44,51,54,46,53,56,55,54,57,49,93,44,91,45,56,51,46,57,56,55,54,49,53,44,51,54,46,53,56,57,52,55,49,93,44,91,45,56,51,46,57,48,53,54,51,56,44,51,54,46,52,49,57,57,55,57,93,44,91,45,56,51,46,54,54,55,52,48,56,44,51,54,46,51,52,52,51,56,49,93,44,91,45,56,51,46,52,54,54,48,48,50,44,51,54,46,51,54,57,49,56,54,93,44,91,45,56,51,46,51,56,54,56,44,51,54,46,52,49,51,49,56,54,93,44,91,45,56,51,46,51,57,56,51,48,51,44,51,54,46,53,51,52,56,56,53,93,44,91,45,56,51,46,52,55,50,49,48,56,44,51,54,46,53,57,55,50,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,51,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,97,103,117,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,48,57,44,34,98,101,100,115,34,58,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,55,55,56,54,44,51,51,46,56,56,57,56,50,53,93,44,91,45,57,55,46,57,55,56,57,49,57,44,51,51,46,52,54,55,49,50,57,93,44,91,45,57,55,46,57,49,56,49,56,57,44,51,51,46,52,51,51,56,55,51,93,44,91,45,57,55,46,52,56,55,48,54,53,44,51,51,46,52,51,51,54,56,49,93,44,91,45,57,55,46,52,56,52,49,54,51,44,51,51,46,57,49,53,53,49,93,44,91,45,57,55,46,53,54,48,56,53,56,44,51,51,46,56,57,57,54,52,53,93,44,91,45,57,55,46,54,54,49,52,56,57,44,51,51,46,57,57,48,56,49,56,93,44,91,45,57,55,46,56,55,55,51,56,55,44,51,51,46,56,53,48,50,51,54,93,44,91,45,57,55,46,57,55,55,56,54,44,51,51,46,56,56,57,56,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,51,52,44,34,98,101,100,115,34,58,49,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,57,53,56,55,49,44,51,50,46,48,55,57,50,51,53,93,44,91,45,57,57,46,50,48,50,55,54,56,44,51,49,46,52,54,55,50,51,52,93,44,91,45,57,57,46,48,57,48,54,50,50,44,51,49,46,52,54,48,57,50,55,93,44,91,45,57,56,46,57,57,49,54,48,56,44,51,49,46,52,56,52,48,55,49,93,44,91,45,57,56,46,54,54,56,52,52,49,44,51,49,46,55,48,48,53,49,52,93,44,91,45,57,56,46,57,50,52,52,48,49,44,51,50,46,48,55,56,48,49,56,93,44,91,45,57,57,46,49,49,56,54,54,53,44,51,50,46,48,55,57,53,56,53,93,44,91,45,57,57,46,49,57,53,56,55,49,44,51,50,46,48,55,57,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,82,97,99,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,51,57,56,44,34,98,101,100,115,34,58,52,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,48,54,51,56,52,44,52,50,46,56,52,50,48,57,53,93,44,91,45,56,56,46,51,48,53,56,57,49,44,52,50,46,54,49,48,56,49,55,93,44,91,45,56,56,46,49,56,56,51,48,54,44,52,50,46,54,54,57,55,48,57,93,44,91,45,56,55,46,48,52,51,56,57,57,44,52,50,46,54,54,51,55,50,57,93,44,91,45,56,55,46,48,53,56,55,49,54,44,52,50,46,55,54,53,50,48,50,93,44,91,45,56,55,46,48,54,57,52,49,57,44,52,50,46,56,52,50,49,52,54,93,44,91,45,56,56,46,48,54,57,57,50,52,44,52,50,46,56,52,51,51,50,51,93,44,91,45,56,56,46,51,48,54,51,56,52,44,52,50,46,56,52,50,48,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,104,97,119,97,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,48,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,50,51,56,49,52,44,52,53,46,48,50,57,50,52,54,93,44,91,45,56,57,46,50,50,51,55,52,53,44,52,52,46,54,56,49,51,54,53,93,44,91,45,56,56,46,54,48,53,49,53,57,44,52,52,46,54,55,56,51,51,49,93,44,91,45,56,56,46,54,48,54,48,56,51,44,52,52,46,53,57,48,53,49,53,93,44,91,45,56,56,46,50,52,53,50,48,52,44,52,52,46,53,56,52,55,52,54,93,44,91,45,56,56,46,50,52,50,54,56,55,44,52,52,46,54,55,57,54,51,49,93,44,91,45,56,56,46,50,52,56,50,49,51,44,52,52,46,56,53,50,55,51,57,93,44,91,45,56,56,46,52,56,57,49,52,57,44,52,52,46,56,53,53,52,52,53,93,44,91,45,56,56,46,55,51,54,49,57,52,44,52,52,46,56,53,54,51,55,54,93,44,91,45,56,56,46,55,51,53,53,52,56,44,52,52,46,57,52,51,49,55,56,93,44,91,45,56,56,46,57,56,49,51,49,57,44,52,52,46,57,52,50,55,52,53,93,44,91,45,56,56,46,57,56,49,54,56,44,52,53,46,48,50,56,57,49,55,93,44,91,45,56,57,46,50,50,51,56,49,52,44,52,53,46,48,50,57,50,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,117,100,117,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,44,91,45,57,53,46,48,57,50,53,50,44,52,49,46,54,48,50,48,53,53,93,44,91,45,57,53,46,48,52,48,55,55,44,52,49,46,53,48,52,54,57,93,44,91,45,57,52,46,55,48,48,54,50,57,44,52,49,46,53,48,52,49,52,56,93,44,91,45,57,52,46,55,52,52,50,48,52,44,52,49,46,54,48,50,49,56,53,93,44,91,45,57,52,46,55,52,52,56,55,54,44,52,49,46,56,54,50,51,57,52,93,44,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,55,34,44,34,78,65,77,69,34,58,34,72,97,115,107,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,57,48,57,56,44,51,51,46,51,57,55,52,48,52,93,44,91,45,57,57,46,57,56,56,56,50,55,44,51,50,46,57,54,48,49,50,49,93,44,91,45,57,57,46,54,49,50,48,48,49,44,51,50,46,57,53,54,57,54,50,93,44,91,45,57,57,46,52,55,49,50,53,56,44,51,50,46,57,53,55,48,50,53,93,44,91,45,57,57,46,52,55,50,52,52,52,44,51,51,46,51,57,57,48,50,51,93,44,91,45,57,57,46,57,57,48,57,56,44,51,51,46,51,57,55,52,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,48,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,55,53,54,49,55,44,51,54,46,49,54,52,54,54,51,93,44,91,45,57,55,46,54,55,52,48,50,54,44,51,53,46,55,50,53,57,55,93,44,91,45,57,55,46,49,52,49,48,54,54,44,51,53,46,55,50,52,52,48,49,93,44,91,45,57,55,46,49,52,48,53,56,51,44,51,53,46,57,52,49,57,57,49,93,44,91,45,57,55,46,51,50,51,54,50,44,51,54,46,48,49,48,56,55,55,93,44,91,45,57,55,46,51,53,52,49,51,50,44,51,54,46,49,53,57,48,55,50,93,44,91,45,57,55,46,52,54,48,55,57,50,44,51,54,46,49,54,52,52,54,50,93,44,91,45,57,55,46,54,55,53,54,49,55,44,51,54,46,49,54,52,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,79,110,101,105,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,55,56,50,44,34,98,101,100,115,34,58,56,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,53,54,50,49,51,44,52,51,46,52,55,48,51,56,56,93,44,91,45,55,53,46,56,49,52,54,50,55,44,52,51,46,52,56,51,53,55,56,93,44,91,45,55,53,46,56,56,52,50,55,53,44,52,51,46,49,53,53,53,54,50,93,44,91,45,55,53,46,55,51,56,51,57,54,44,52,51,46,49,54,52,55,54,54,93,44,91,45,55,53,46,53,53,50,55,55,52,44,52,51,46,48,51,55,53,53,52,93,44,91,45,55,53,46,53,52,50,56,48,51,44,52,50,46,57,51,49,55,55,52,93,44,91,45,55,53,46,52,51,55,49,54,55,44,52,50,46,56,54,51,51,49,57,93,44,91,45,55,53,46,50,52,55,57,54,51,44,52,50,46,56,55,49,54,48,52,93,44,91,45,55,53,46,50,49,50,49,53,56,44,52,50,46,56,55,57,57,55,51,93,44,91,45,55,53,46,50,49,57,49,48,54,44,52,51,46,48,53,50,52,54,57,93,44,91,45,55,53,46,48,54,57,49,54,53,44,52,51,46,50,50,55,51,51,51,93,44,91,45,55,53,46,49,49,48,49,54,44,52,51,46,54,49,53,50,50,57,93,44,91,45,55,53,46,53,51,51,53,44,52,51,46,52,49,57,55,53,54,93,44,91,45,55,53,46,55,53,54,50,49,51,44,52,51,46,52,55,48,51,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,56,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,50,54,52,56,55,44,51,57,46,51,54,49,56,55,49,93,44,91,45,49,48,54,46,53,48,50,54,57,44,51,57,46,50,57,56,48,54,55,93,44,91,45,49,48,54,46,52,57,51,54,52,57,44,51,57,46,49,57,56,51,50,54,93,44,91,45,49,48,54,46,53,55,55,57,54,54,44,51,57,46,48,53,55,57,48,56,93,44,91,45,49,48,54,46,49,57,49,48,48,54,44,51,57,46,48,53,54,48,55,51,93,44,91,45,49,48,54,46,49,56,51,57,55,50,44,51,57,46,51,48,57,51,53,52,93,44,91,45,49,48,54,46,49,51,53,53,50,57,44,51,57,46,51,55,57,53,52,54,93,44,91,45,49,48,54,46,50,48,54,55,51,50,44,51,57,46,51,55,57,54,51,54,93,44,91,45,49,48,54,46,52,50,54,52,56,55,44,51,57,46,51,54,49,56,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,80,105,116,116,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,51,56,50,44,34,98,101,100,115,34,58,49,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,53,49,50,53,44,51,53,46,50,57,54,48,49,57,93,44,91,45,57,53,46,55,49,54,49,53,55,44,51,53,46,49,56,57,51,53,50,93,44,91,45,57,53,46,57,56,51,48,55,55,44,51,53,46,49,53,49,54,57,53,93,44,91,45,57,54,46,48,56,56,55,57,50,44,51,53,46,48,52,57,56,55,53,93,44,91,45,57,54,46,48,57,50,48,48,49,44,51,52,46,55,54,55,52,55,57,93,44,91,45,57,54,46,48,57,50,48,52,51,44,51,52,46,54,56,48,53,53,54,93,44,91,45,57,53,46,56,56,50,49,57,54,44,51,52,46,54,56,48,53,51,52,93,44,91,45,57,53,46,56,56,49,57,56,55,44,51,52,46,53,57,51,53,50,56,93,44,91,45,57,53,46,54,55,49,56,49,44,51,52,46,53,57,51,55,51,50,93,44,91,45,57,53,46,53,49,52,53,49,49,44,51,52,46,53,57,52,49,53,51,93,44,91,45,57,53,46,53,49,52,52,55,53,44,51,52,46,54,56,48,55,49,56,93,44,91,45,57,53,46,53,48,55,55,51,56,44,51,53,46,48,50,57,50,54,53,93,44,91,45,57,53,46,51,52,57,52,48,57,44,51,53,46,48,53,56,53,50,93,44,91,45,57,53,46,51,52,57,53,50,53,44,51,53,46,49,54,48,48,50,49,93,44,91,45,57,53,46,52,53,53,48,49,56,44,51,53,46,49,54,48,53,55,53,93,44,91,45,57,53,46,52,53,49,50,53,44,51,53,46,50,57,54,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,68,111,100,100,114,105,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,49,56,54,50,57,44,51,57,46,52,53,48,51,55,53,93,44,91,45,56,48,46,56,56,56,55,52,52,44,51,57,46,50,57,52,50,57,56,93,44,91,45,56,48,46,56,49,50,57,55,44,51,57,46,49,48,57,52,48,49,93,44,91,45,56,48,46,55,50,56,51,50,54,44,51,57,46,48,57,53,54,55,57,93,44,91,45,56,48,46,53,57,54,49,50,54,44,51,57,46,49,54,55,48,54,57,93,44,91,45,56,48,46,54,48,52,51,48,49,44,51,57,46,50,56,54,48,52,55,93,44,91,45,56,48,46,53,52,52,53,50,49,44,51,57,46,52,50,57,49,50,93,44,91,45,56,48,46,54,49,56,54,50,57,44,51,57,46,52,53,48,51,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,87,105,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,57,56,48,49,55,44,51,57,46,49,56,53,53,55,50,93,44,91,45,56,49,46,52,50,52,57,48,54,44,51,57,46,49,51,53,54,55,57,93,44,91,45,56,49,46,53,56,49,52,52,55,44,51,57,46,48,50,54,49,55,57,93,44,91,45,56,49,46,53,48,50,54,50,56,44,51,56,46,57,49,55,57,50,50,93,44,91,45,56,49,46,50,55,56,52,49,50,44,51,56,46,57,49,52,56,54,55,93,44,91,45,56,49,46,49,54,50,52,53,53,44,51,57,46,48,51,48,54,48,56,93,44,91,45,56,49,46,50,53,48,50,53,50,44,51,57,46,48,51,53,48,55,52,93,44,91,45,56,49,46,50,57,56,48,49,55,44,51,57,46,49,56,53,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,56,52,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,48,48,57,57,55,54,44,52,52,46,50,56,52,56,57,57,93,44,91,45,55,49,46,48,52,50,50,56,44,52,52,46,50,51,55,53,49,52,93,44,91,45,55,49,46,50,53,49,57,53,55,44,52,52,46,50,52,52,50,54,54,93,44,91,45,55,49,46,51,48,54,48,51,54,44,52,52,46,49,51,55,50,55,50,93,44,91,45,55,49,46,52,49,53,56,57,56,44,52,52,46,50,49,50,49,54,57,93,44,91,45,55,49,46,51,54,54,51,53,53,44,52,52,46,48,54,56,53,50,52,93,44,91,45,55,49,46,51,54,49,57,54,53,44,52,51,46,57,49,53,57,51,56,93,44,91,45,55,49,46,53,54,52,54,48,51,44,52,51,46,56,57,51,49,55,50,93,44,91,45,55,49,46,53,51,49,54,53,56,44,52,51,46,55,54,48,57,55,57,93,44,91,45,55,49,46,50,53,56,50,53,57,44,52,51,46,53,55,49,51,52,53,93,44,91,45,55,49,46,49,54,50,54,55,53,44,52,51,46,53,51,56,57,53,57,93,44,91,45,55,48,46,57,54,50,49,53,52,44,52,51,46,53,52,49,48,56,55,93,44,91,45,55,48,46,57,56,57,49,50,50,44,52,51,46,55,57,50,49,49,51,93,44,91,45,55,49,46,48,48,57,57,55,54,44,52,52,46,50,56,52,56,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,84,121,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,51,56,55,49,50,44,51,57,46,53,51,57,56,56,54,93,44,91,45,56,49,46,49,50,49,53,51,51,44,51,57,46,52,53,55,55,55,53,93,44,91,45,56,49,46,48,50,53,55,48,52,44,51,57,46,52,54,50,51,49,55,93,44,91,45,56,49,46,48,48,55,56,51,54,44,51,57,46,51,53,48,57,50,51,93,44,91,45,56,48,46,56,56,56,55,52,52,44,51,57,46,50,57,52,50,57,56,93,44,91,45,56,48,46,54,49,56,54,50,57,44,51,57,46,52,53,48,51,55,53,93,44,91,45,56,48,46,55,49,54,49,50,50,44,51,57,46,52,55,53,53,51,49,93,44,91,45,56,48,46,56,52,51,55,51,49,44,51,57,46,53,56,51,56,56,53,93,44,91,45,56,48,46,57,52,51,55,56,50,44,51,57,46,54,48,54,57,50,54,93,44,91,45,56,49,46,48,51,56,55,49,50,44,51,57,46,53,51,57,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,101,32,83,117,101,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,56,51,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,50,52,51,50,55,44,52,52,46,53,52,51,54,49,56,93,44,91,45,57,51,46,57,49,48,52,48,53,44,52,52,46,53,52,51,49,54,51,93,44,91,45,57,51,46,57,50,57,53,53,44,52,52,46,52,53,54,55,49,54,93,44,91,45,57,51,46,57,51,54,48,51,50,44,52,52,46,51,51,57,54,54,53,93,44,91,45,57,52,46,48,49,49,56,54,56,44,52,52,46,50,51,57,53,50,93,44,91,45,57,51,46,55,54,55,57,55,49,44,52,52,46,49,57,53,56,51,54,93,44,91,45,57,51,46,53,50,53,50,51,49,44,52,52,46,49,57,54,49,51,52,93,44,91,45,57,51,46,53,50,52,51,50,55,44,52,52,46,53,52,51,54,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,51,55,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,56,55,48,53,57,53,44,52,55,46,57,54,48,52,53,53,93,44,91,45,49,49,57,46,57,57,50,54,55,57,44,52,55,46,55,56,51,49,53,93,44,91,45,49,50,48,46,50,48,54,57,48,56,44,52,55,46,55,53,48,54,51,56,93,44,91,45,49,50,48,46,49,57,57,48,52,56,44,52,55,46,54,56,50,50,55,54,93,44,91,45,49,50,48,46,51,49,55,57,56,52,44,52,55,46,52,53,54,57,52,56,93,44,91,45,49,50,48,46,50,56,54,53,51,44,52,55,46,51,57,51,49,49,49,93,44,91,45,49,50,48,46,49,50,57,53,55,51,44,52,55,46,51,54,54,50,53,49,93,44,91,45,49,50,48,46,48,57,52,52,54,44,52,55,46,50,54,50,49,53,57,93,44,91,45,49,50,48,46,48,48,55,48,55,52,44,52,55,46,50,50,48,49,51,51,93,44,91,45,49,50,48,46,48,48,52,55,48,52,44,52,55,46,51,49,57,57,57,52,93,44,91,45,49,49,57,46,56,55,53,55,54,44,52,55,46,52,51,55,52,57,50,93,44,91,45,49,49,57,46,53,51,51,49,50,51,44,52,55,46,52,52,49,50,48,55,93,44,91,45,49,49,57,46,53,51,50,56,56,57,44,52,55,46,53,50,55,55,53,54,93,44,91,45,49,49,57,46,51,52,49,55,54,55,44,52,55,46,54,49,50,51,56,56,93,44,91,45,49,49,57,46,50,49,50,52,49,44,52,55,46,56,48,48,54,57,53,93,44,91,45,49,49,57,46,50,49,50,50,50,53,44,52,55,46,56,56,55,55,48,56,93,44,91,45,49,49,57,46,49,48,51,56,55,51,44,52,55,46,57,54,49,55,54,51,93,44,91,45,49,49,56,46,57,56,50,50,51,52,44,52,55,46,57,54,50,48,50,53,93,44,91,45,49,49,57,46,48,53,54,57,55,44,52,56,46,49,51,54,57,55,52,93,44,91,45,49,49,57,46,49,53,48,57,56,51,44,52,56,46,49,52,54,48,54,55,93,44,91,45,49,49,57,46,51,52,51,53,50,51,44,52,56,46,48,52,57,52,51,50,93,44,91,45,49,49,57,46,52,51,54,50,53,55,44,52,56,46,48,55,54,54,56,56,93,44,91,45,49,49,57,46,54,53,50,52,54,56,44,52,56,46,48,48,48,50,50,49,93,44,91,45,49,49,57,46,54,56,50,57,56,49,44,52,56,46,48,57,50,53,49,51,93,44,91,45,49,49,57,46,56,57,53,51,53,44,52,56,46,48,53,48,48,52,52,93,44,91,45,49,49,57,46,56,55,48,53,57,53,44,52,55,46,57,54,48,52,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,97,116,116,97,114,97,117,103,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,54,56,54,44,34,98,101,100,115,34,58,50,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,54,48,55,55,55,44,52,50,46,53,51,55,56,53,51,93,44,91,45,55,57,46,48,54,49,50,54,53,44,52,49,46,57,57,57,50,53,57,93,44,91,45,55,56,46,57,49,56,56,53,53,44,52,49,46,57,57,56,49,49,57,93,44,91,45,55,56,46,51,48,56,49,50,56,44,52,49,46,57,57,57,52,49,53,93,44,91,45,55,56,46,51,48,56,56,51,57,44,52,50,46,53,50,49,50,49,55,93,44,91,45,55,56,46,52,54,51,57,52,44,52,50,46,53,51,54,51,51,50,93,44,91,45,55,56,46,56,57,53,57,57,57,44,52,50,46,52,52,48,56,48,55,93,44,91,45,55,57,46,48,54,48,55,55,55,44,52,50,46,53,51,55,56,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,68,111,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,55,55,54,44,34,98,101,100,115,34,58,50,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,48,54,56,52,56,44,52,51,46,54,51,51,48,52,53,93,44,91,45,56,57,46,48,48,57,49,51,57,44,52,51,46,50,56,52,56,51,93,44,91,45,56,57,46,48,48,56,56,51,50,44,52,51,46,49,57,55,55,50,52,93,44,91,45,56,56,46,53,51,53,56,52,51,44,52,51,46,49,57,54,48,52,56,93,44,91,45,56,56,46,52,49,55,57,56,55,44,52,51,46,49,57,52,54,57,55,93,44,91,45,56,56,46,52,48,48,52,50,54,44,52,51,46,53,52,51,53,51,50,93,44,91,45,56,56,46,52,48,49,48,52,49,44,52,51,46,54,51,48,57,51,51,93,44,91,45,56,56,46,56,56,54,48,53,50,44,52,51,46,54,51,51,53,52,93,44,91,45,56,57,46,48,48,54,56,52,56,44,52,51,46,54,51,51,48,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,54,56,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,54,51,50,54,51,44,52,50,46,50,57,54,52,52,53,93,44,91,45,57,49,46,51,54,53,56,55,55,44,52,49,46,57,52,55,52,49,93,44,91,45,57,48,46,56,57,56,52,56,52,44,52,49,46,57,52,54,50,52,53,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,50,46,48,51,51,53,52,56,93,44,91,45,57,48,46,56,57,56,48,50,44,52,50,46,50,57,53,50,51,54,93,44,91,45,57,49,46,49,51,48,48,55,57,44,52,50,46,50,57,53,55,54,49,93,44,91,45,57,49,46,51,54,51,50,54,51,44,52,50,46,50,57,54,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,97,114,98,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,51,51,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,54,52,54,54,51,44,51,55,46,52,55,49,48,49,51,93,44,91,45,57,57,46,48,49,50,53,57,56,44,51,55,46,52,55,48,52,50,49,93,44,91,45,57,57,46,48,49,49,52,57,57,44,51,55,46,51,56,52,50,54,51,93,44,91,45,57,57,46,48,48,48,51,48,49,44,51,54,46,57,57,57,52,54,55,93,44,91,45,57,56,46,53,52,52,54,54,49,44,51,54,46,57,57,56,55,53,57,93,44,91,45,57,56,46,51,52,55,49,52,57,44,51,54,46,57,57,56,49,53,53,93,44,91,45,57,56,46,51,52,57,56,48,52,44,51,55,46,51,56,52,48,53,54,93,44,91,45,57,56,46,52,54,52,57,53,49,44,51,55,46,51,56,52,48,56,54,93,44,91,45,57,56,46,52,54,52,54,54,51,44,51,55,46,52,55,49,48,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,53,57,49,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,52,48,54,50,55,53,44,51,56,46,48,50,49,49,55,57,93,44,91,45,57,50,46,52,48,57,50,51,49,44,51,55,46,56,53,57,49,56,93,44,91,45,57,50,46,52,49,51,54,54,57,44,51,55,46,55,49,51,57,52,49,93,44,91,45,57,50,46,50,52,57,52,54,51,44,51,55,46,54,48,52,53,52,51,93,44,91,45,57,50,46,48,50,57,50,53,56,44,51,55,46,54,48,50,53,52,50,93,44,91,45,57,50,46,48,50,49,49,54,53,44,51,56,46,48,49,48,54,51,57,93,44,91,45,57,50,46,49,56,53,51,55,44,51,56,46,48,49,54,51,51,56,93,44,91,45,57,50,46,52,48,54,50,55,53,44,51,56,46,48,50,49,49,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,68,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,50,53,53,44,34,98,101,100,115,34,58,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,49,54,52,51,55,44,51,49,46,54,49,57,52,54,54,93,44,91,45,56,53,46,55,52,56,50,53,49,44,51,49,46,54,49,56,48,52,56,93,44,91,45,56,53,46,55,56,57,49,52,50,44,51,49,46,54,49,55,57,54,52,93,44,91,45,56,53,46,55,57,49,52,48,50,44,51,49,46,49,57,54,51,52,57,93,44,91,45,56,53,46,55,49,48,51,51,51,44,51,49,46,49,57,53,49,55,51,93,44,91,45,56,53,46,54,54,53,55,55,53,44,51,49,46,50,54,55,53,57,49,93,44,91,45,56,53,46,52,56,53,56,53,52,44,51,49,46,50,52,54,48,57,54,93,44,91,45,56,53,46,52,49,55,52,51,52,44,51,49,46,51,49,52,57,55,51,93,44,91,45,56,53,46,52,49,54,52,51,55,44,51,49,46,54,49,57,52,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,55,56,49,57,53,44,51,57,46,49,51,52,55,54,49,93,44,91,45,49,48,49,46,52,56,52,51,56,51,44,51,56,46,55,48,48,49,54,54,93,44,91,45,49,48,49,46,49,50,56,51,55,57,44,51,56,46,55,48,48,54,48,51,93,44,91,45,49,48,48,46,56,49,56,54,57,56,44,51,56,46,54,57,57,56,54,49,93,44,91,45,49,48,48,46,56,49,49,56,53,56,44,51,57,46,49,51,51,51,54,93,44,91,45,49,48,49,46,51,57,49,55,49,55,44,51,57,46,49,51,53,49,49,55,93,44,91,45,49,48,49,46,52,55,56,49,57,53,44,51,57,46,49,51,52,55,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,77,97,100,101,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,48,49,51,44,34,98,101,100,115,34,58,52,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,53,50,48,53,53,44,51,55,46,49,56,51,49,48,56,93,44,91,45,49,50,48,46,50,50,55,50,56,54,44,51,55,46,49,54,51,52,93,44,91,45,49,50,48,46,52,55,54,54,57,50,44,51,55,46,48,57,54,51,57,93,44,91,45,49,50,48,46,53,52,49,54,57,54,44,51,55,46,48,52,52,53,48,53,93,44,91,45,49,50,48,46,51,55,48,50,53,54,44,51,54,46,55,56,52,57,52,93,44,91,45,49,50,48,46,49,56,56,56,51,44,51,54,46,55,55,54,52,48,56,93,44,91,45,49,50,48,46,48,55,57,52,53,56,44,51,54,46,56,50,53,51,52,53,93,44,91,45,49,49,57,46,56,49,51,55,51,52,44,51,54,46,56,53,48,52,49,50,93,44,91,45,49,49,57,46,54,57,48,55,55,57,44,51,55,46,48,49,49,57,56,55,93,44,91,45,49,49,57,46,53,54,50,57,55,57,44,51,55,46,48,54,52,48,57,53,93,44,91,45,49,49,57,46,53,53,57,52,49,50,44,51,55,46,49,52,51,54,49,57,93,44,91,45,49,49,57,46,51,56,54,53,50,49,44,51,55,46,49,52,57,53,51,93,44,91,45,49,49,57,46,51,51,48,53,55,51,44,51,55,46,50,48,53,55,57,49,93,44,91,45,49,49,57,46,51,49,50,49,56,54,44,51,55,46,51,53,50,55,50,53,93,44,91,45,49,49,57,46,48,50,50,51,54,51,44,51,55,46,53,56,53,55,51,55,93,44,91,45,49,49,57,46,49,50,52,51,49,50,44,51,55,46,55,51,51,57,52,52,93,44,91,45,49,49,57,46,50,54,56,57,55,57,44,51,55,46,55,51,57,50,51,93,44,91,45,49,49,57,46,51,48,56,57,57,53,44,51,55,46,55,55,55,57,56,54,93,44,91,45,49,49,57,46,53,56,51,53,56,53,44,51,55,46,53,54,48,51,51,53,93,44,91,45,49,49,57,46,54,53,49,49,57,49,44,51,55,46,52,49,55,56,51,50,93,44,91,45,49,49,57,46,55,54,49,56,48,57,44,51,55,46,52,49,55,49,49,52,93,44,91,45,49,50,48,46,48,53,50,48,53,53,44,51,55,46,49,56,51,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,71,101,110,116,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,54,53,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,53,57,56,52,56,55,44,52,48,46,51,56,54,55,49,52,93,44,91,45,57,52,46,54,48,53,57,52,50,44,52,48,46,49,50,54,49,50,55,93,44,91,45,57,52,46,54,48,53,51,55,55,44,52,48,46,48,51,57,50,49,55,93,44,91,45,57,52,46,50,49,56,56,44,52,48,46,48,51,52,56,56,53,93,44,91,45,57,52,46,50,49,54,54,57,54,44,52,48,46,49,51,54,54,50,54,93,44,91,45,57,52,46,50,49,52,50,55,56,44,52,48,46,51,56,52,50,53,52,93,44,91,45,57,52,46,53,57,56,52,56,55,44,52,48,46,51,56,54,55,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,108,97,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,54,55,54,50,50,44,52,50,46,48,56,54,49,52,55,93,44,91,45,49,48,48,46,50,54,53,52,55,52,44,52,49,46,55,51,57,56,53,54,93,44,91,45,49,48,48,46,50,53,49,50,50,52,44,52,49,46,55,51,57,56,49,55,93,44,91,45,57,57,46,54,56,54,56,51,52,44,52,49,46,55,52,48,51,50,54,93,44,91,45,57,57,46,54,56,54,57,53,57,44,52,50,46,48,56,54,48,55,53,93,44,91,45,49,48,48,46,49,54,55,54,48,53,44,52,50,46,48,56,53,56,52,56,93,44,91,45,49,48,48,46,50,54,55,54,50,50,44,52,50,46,48,56,54,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,68,97,103,103,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,53,48,48,50,54,44,52,49,46,48,48,48,54,57,49,93,44,91,45,49,49,48,46,48,48,48,55,49,55,44,52,48,46,57,57,55,52,53,93,44,91,45,49,49,48,46,48,48,48,55,49,49,44,52,48,46,56,49,51,54,55,56,93,44,91,45,49,48,57,46,57,55,54,52,48,50,44,52,48,46,56,48,57,54,56,54,93,44,91,45,49,48,57,46,56,55,48,50,48,55,44,52,48,46,55,54,51,56,50,57,93,44,91,45,49,48,57,46,51,57,52,52,57,49,44,52,48,46,56,53,56,49,54,54,93,44,91,45,49,48,57,46,50,48,51,50,53,44,52,48,46,56,53,56,52,48,49,93,44,91,45,49,48,57,46,49,54,49,48,54,51,44,52,48,46,54,56,51,56,49,55,93,44,91,45,49,48,57,46,48,52,56,57,52,52,44,52,48,46,54,54,50,54,48,49,93,44,91,45,49,48,57,46,48,53,48,48,50,54,44,52,49,46,48,48,48,54,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,80,108,97,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,50,56,51,57,49,44,52,50,46,52,51,49,52,48,50,93,44,91,45,49,48,53,46,50,55,49,55,52,54,44,52,49,46,57,56,54,48,57,53,93,44,91,45,49,48,53,46,50,55,56,50,51,54,44,52,49,46,54,53,54,54,53,53,93,44,91,45,49,48,52,46,54,53,51,51,51,56,44,52,49,46,54,53,51,48,48,55,93,44,91,45,49,48,52,46,54,53,53,54,51,57,44,52,50,46,54,48,57,52,54,56,93,44,91,45,49,48,52,46,56,57,50,52,51,55,44,52,50,46,54,48,56,57,51,57,93,44,91,45,49,48,53,46,50,56,54,53,49,49,44,52,50,46,54,48,53,56,50,54,93,44,91,45,49,48,53,46,50,56,51,57,49,44,52,50,46,52,51,49,52,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,71,97,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,54,53,56,53,44,34,98,101,100,115,34,58,52,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,53,53,54,44,51,53,46,52,49,57,56,49,49,93,44,91,45,56,49,46,51,53,54,54,56,50,44,51,53,46,51,51,48,54,48,52,93,44,91,45,56,49,46,51,50,56,48,51,55,44,51,53,46,49,54,51,52,54,55,93,44,91,45,56,49,46,48,51,51,57,48,57,44,51,53,46,49,52,56,54,57,93,44,91,45,56,48,46,57,53,52,56,54,44,51,53,46,52,48,48,48,55,56,93,44,91,45,56,49,46,52,53,53,54,44,51,53,46,52,49,57,56,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,71,117,97,100,97,108,117,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,56,50,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,50,57,48,55,57,49,44,51,53,46,48,52,50,48,51,93,44,91,45,49,48,53,46,50,57,48,51,57,54,44,51,52,46,54,48,54,55,54,54,93,44,91,45,49,48,53,46,51,49,51,48,55,50,44,51,52,46,51,52,55,50,48,53,93,44,91,45,49,48,52,46,56,57,49,55,52,53,44,51,52,46,51,52,55,48,52,51,93,44,91,45,49,48,52,46,56,57,50,48,50,51,44,51,52,46,54,48,52,52,50,54,93,44,91,45,49,48,52,46,52,52,52,55,54,50,44,51,52,46,54,48,52,57,53,50,93,44,91,45,49,48,52,46,51,51,57,55,50,53,44,51,52,46,54,57,50,50,51,52,93,44,91,45,49,48,52,46,51,51,57,56,49,55,44,51,52,46,55,55,57,48,54,50,93,44,91,45,49,48,52,46,49,50,57,49,52,51,44,51,52,46,55,55,57,51,51,55,93,44,91,45,49,48,52,46,49,50,53,49,50,49,44,51,53,46,49,52,50,48,53,56,93,44,91,45,49,48,52,46,49,50,53,49,51,54,44,51,53,46,50,49,53,54,57,54,93,44,91,45,49,48,53,46,50,57,49,49,54,57,44,51,53,46,50,49,54,52,56,57,93,44,91,45,49,48,53,46,50,57,48,55,57,49,44,51,53,46,48,52,50,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,71,111,108,100,101,110,32,86,97,108,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,51,56,57,49,54,51,44,52,54,46,54,57,51,54,50,53,93,44,91,45,49,48,57,46,52,48,50,57,48,54,44,52,54,46,50,49,57,55,48,54,93,44,91,45,49,48,57,46,54,53,51,56,55,49,44,52,54,46,50,49,57,52,48,52,93,44,91,45,49,48,57,46,54,48,53,49,53,51,44,52,54,46,48,52,52,57,57,52,93,44,91,45,49,48,57,46,52,49,55,49,53,56,44,52,54,46,48,52,52,55,53,57,93,44,91,45,49,48,57,46,52,49,54,50,50,55,44,52,54,46,49,51,50,51,55,49,93,44,91,45,49,48,56,46,57,50,52,53,56,57,44,52,54,46,49,51,50,51,55,93,44,91,45,49,48,56,46,55,55,57,55,51,51,44,52,54,46,49,51,50,52,53,55,93,44,91,45,49,48,56,46,55,55,57,50,55,50,44,52,54,46,50,55,55,51,57,56,93,44,91,45,49,48,56,46,56,54,50,50,55,55,44,52,54,46,51,54,52,53,56,54,93,44,91,45,49,48,56,46,57,48,52,57,48,52,44,52,54,46,53,55,54,57,48,56,93,44,91,45,49,48,57,46,48,48,57,57,56,50,44,52,54,46,54,50,49,49,55,50,93,44,91,45,49,48,57,46,48,48,57,53,55,44,52,54,46,55,53,48,55,48,50,93,44,91,45,49,48,57,46,51,56,57,50,48,56,44,52,54,46,55,53,49,51,53,49,93,44,91,45,49,48,57,46,51,56,57,49,54,51,44,52,54,46,54,57,51,54,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,49,55,50,44,34,98,101,100,115,34,58,49,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,53,53,57,55,51,44,51,53,46,56,49,56,49,50,93,44,91,45,55,56,46,52,57,50,49,52,57,44,51,53,46,54,56,54,57,48,51,93,44,91,45,55,56,46,55,48,56,57,48,50,44,51,53,46,53,49,57,52,53,56,93,44,91,45,55,56,46,53,51,56,51,52,57,44,51,53,46,51,49,54,52,49,93,44,91,45,55,56,46,52,49,49,55,51,52,44,51,53,46,50,53,52,54,54,51,93,44,91,45,55,56,46,51,48,54,53,56,44,51,53,46,50,56,55,54,48,52,93,44,91,45,55,56,46,49,53,56,53,56,57,44,51,53,46,51,52,55,53,51,55,93,44,91,45,55,56,46,48,54,52,55,56,52,44,51,53,46,53,56,53,50,54,51,93,44,91,45,55,56,46,49,50,53,53,51,57,44,51,53,46,54,48,51,49,48,55,93,44,91,45,55,56,46,49,57,50,49,49,55,44,51,53,46,55,51,48,53,52,53,93,44,91,45,55,56,46,50,53,53,57,55,51,44,51,53,46,56,49,56,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,67,108,97,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,50,50,48,48,44,34,98,101,100,115,34,58,52,54,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,49,53,50,50,55,56,44,51,55,46,50,56,54,48,53,53,93,44,91,45,49,50,50,46,48,50,54,49,48,55,44,51,55,46,49,54,54,56,49,93,44,91,45,49,50,49,46,55,53,55,54,44,51,55,46,48,52,57,54,51,93,44,91,45,49,50,49,46,53,56,49,51,53,52,44,51,54,46,56,57,57,49,53,50,93,44,91,45,49,50,49,46,52,56,56,57,52,57,44,51,54,46,57,56,51,49,52,56,93,44,91,45,49,50,49,46,50,49,53,52,48,54,44,51,54,46,57,54,49,50,52,56,93,44,91,45,49,50,49,46,50,50,54,56,48,52,44,51,55,46,49,51,52,55,55,52,93,44,91,45,49,50,49,46,52,48,52,54,51,54,44,51,55,46,49,53,53,57,56,57,93,44,91,45,49,50,49,46,52,53,52,48,48,57,44,51,55,46,50,56,52,48,53,93,44,91,45,49,50,49,46,52,49,50,53,52,57,44,51,55,46,51,56,57,52,51,53,93,44,91,45,49,50,49,46,52,55,50,54,52,56,44,51,55,46,52,56,50,49,55,93,44,91,45,49,50,50,46,48,56,49,52,55,51,44,51,55,46,52,55,55,56,51,56,93,44,91,45,49,50,50,46,49,57,48,52,48,50,44,51,55,46,52,51,49,52,55,50,93,44,91,45,49,50,50,46,49,53,50,50,55,56,44,51,55,46,50,56,54,48,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,101,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,55,48,56,44,34,98,101,100,115,34,58,50,49,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,52,54,54,57,57,44,51,51,46,50,49,51,52,53,56,93,44,91,45,55,57,46,53,49,56,56,52,52,44,51,51,46,49,52,56,50,57,55,93,44,91,45,55,57,46,54,52,51,51,48,49,44,51,51,46,49,50,51,52,53,51,93,44,91,45,55,57,46,56,52,49,48,54,55,44,51,50,46,57,49,50,52,54,57,93,44,91,45,55,57,46,57,53,54,52,51,51,44,51,50,46,56,53,57,55,57,49,93,44,91,45,56,48,46,48,53,53,53,57,53,44,51,50,46,57,57,56,55,49,93,44,91,45,56,48,46,49,52,57,50,52,54,44,51,51,46,48,50,49,54,48,49,93,44,91,45,56,48,46,48,55,57,48,50,56,44,51,50,46,57,50,55,56,49,49,93,44,91,45,56,48,46,49,53,55,50,54,53,44,51,50,46,56,49,56,49,56,55,93,44,91,45,56,48,46,52,48,49,51,52,44,51,50,46,56,53,56,52,54,54,93,44,91,45,56,48,46,52,53,51,54,51,44,51,50,46,55,51,57,57,93,44,91,45,56,48,46,52,48,51,50,56,50,44,51,50,46,54,53,49,54,50,50,93,44,91,45,56,48,46,52,49,54,53,56,54,44,51,50,46,53,52,54,51,49,56,93,44,91,45,56,48,46,50,50,51,53,57,44,51,50,46,52,56,50,53,54,53,93,44,91,45,56,48,46,48,56,56,56,55,55,44,51,50,46,53,52,57,48,50,57,93,44,91,45,55,57,46,57,55,57,48,48,50,44,51,50,46,53,53,56,48,55,52,93,44,91,45,55,57,46,55,57,56,50,53,53,44,51,50,46,54,55,53,54,51,50,93,44,91,45,55,57,46,55,54,48,48,55,52,44,51,50,46,55,51,56,50,53,55,93,44,91,45,55,57,46,53,51,52,54,56,57,44,51,50,46,56,55,48,48,49,50,93,44,91,45,55,57,46,52,52,48,49,56,49,44,51,50,46,57,53,56,57,49,54,93,44,91,45,55,57,46,51,50,50,50,53,55,44,51,50,46,57,53,54,48,55,56,93,44,91,45,55,57,46,50,54,49,56,51,44,51,51,46,48,52,57,55,57,51,93,44,91,45,55,57,46,52,52,54,54,57,57,44,51,51,46,50,49,51,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,49,54,56,44,34,98,101,100,115,34,58,52,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,52,53,51,49,57,44,52,54,46,54,55,57,50,52,51,93,44,91,45,49,49,57,46,53,49,54,53,56,50,44,52,54,46,55,50,55,54,51,56,93,44,91,45,49,49,57,46,54,53,57,49,56,57,44,52,54,46,54,52,48,51,51,51,93,44,91,45,49,49,57,46,56,55,52,48,52,50,44,52,54,46,54,50,56,50,56,51,93,44,91,45,49,49,57,46,56,54,53,56,50,57,44,52,54,46,48,52,48,56,53,56,93,44,91,45,49,49,57,46,56,54,56,51,49,50,44,52,53,46,56,51,54,49,57,56,93,44,91,45,49,49,57,46,54,54,57,57,55,52,44,52,53,46,56,53,54,57,48,56,93,44,91,45,49,49,57,46,53,55,49,54,48,50,44,52,53,46,57,50,53,52,55,56,93,44,91,45,49,49,57,46,52,51,50,49,53,44,52,53,46,57,49,56,50,55,49,93,44,91,45,49,49,57,46,49,50,54,51,50,50,44,52,53,46,57,51,50,55,56,52,93,44,91,45,49,49,56,46,57,56,55,50,53,56,44,52,53,46,57,57,57,56,53,53,93,44,91,45,49,49,56,46,57,55,52,54,54,52,44,52,54,46,49,51,57,53,50,51,93,44,91,45,49,49,57,46,48,52,49,52,57,56,44,52,54,46,49,57,50,54,54,55,93,44,91,45,49,49,57,46,50,54,55,50,48,50,44,52,54,46,50,56,52,54,50,53,93,44,91,45,49,49,57,46,50,55,48,51,50,44,52,54,46,53,50,49,51,49,49,93,44,91,45,49,49,57,46,52,53,51,49,57,44,52,54,46,54,55,57,50,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,50,53,44,34,98,101,100,115,34,58,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,52,57,57,55,53,44,52,48,46,51,52,54,53,48,53,93,44,91,45,57,50,46,54,56,52,49,54,55,44,52,48,46,51,52,51,52,54,54,93,44,91,45,57,50,46,56,53,53,54,50,57,44,52,48,46,51,52,50,55,51,54,93,44,91,45,57,50,46,56,53,54,49,57,49,44,52,48,46,48,51,55,50,53,51,93,44,91,45,57,50,46,56,52,55,52,55,55,44,52,48,46,48,51,55,51,48,49,93,44,91,45,57,50,46,51,52,53,48,54,52,44,52,48,46,48,51,55,50,49,93,44,91,45,57,50,46,51,52,55,56,48,49,44,52,48,46,51,48,50,55,53,54,93,44,91,45,57,50,46,51,52,57,57,55,53,44,52,48,46,51,52,54,53,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,69,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,49,51,54,44,34,98,101,100,115,34,58,50,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,53,50,50,50,52,44,52,49,46,52,53,56,50,51,57,93,44,91,45,56,50,46,56,52,55,55,49,51,44,52,49,46,52,51,48,51,50,54,93,44,91,45,56,50,46,56,52,49,52,55,53,44,52,49,46,50,57,48,48,50,51,93,44,91,45,56,50,46,51,52,50,51,49,52,44,52,49,46,50,56,51,53,53,52,93,44,91,45,56,50,46,51,52,56,49,50,50,44,52,49,46,55,48,48,48,53,55,93,44,91,45,56,50,46,51,57,56,51,52,56,44,52,49,46,54,55,54,53,50,52,93,44,91,45,56,50,46,55,50,54,52,50,55,44,52,49,46,54,57,56,51,48,56,93,44,91,45,56,50,46,55,56,55,52,48,50,44,52,49,46,53,56,55,55,51,56,93,44,91,45,56,50,46,55,49,57,50,51,54,44,52,49,46,52,56,50,52,50,51,93,44,91,45,56,50,46,57,53,50,50,50,52,44,52,49,46,52,53,56,50,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,86,101,114,109,105,108,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,52,48,55,44,34,98,101,100,115,34,58,49,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,51,50,51,56,55,44,52,48,46,51,57,57,52,93,44,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,44,91,45,56,55,46,53,51,51,50,50,56,44,51,57,46,56,56,51,93,44,91,45,56,55,46,53,51,49,52,52,57,44,52,48,46,49,52,56,49,50,55,93,44,91,45,56,55,46,53,50,54,53,56,57,44,52,48,46,52,55,54,56,55,54,93,44,91,45,56,55,46,53,50,54,51,54,54,44,52,48,46,52,57,49,50,51,55,93,44,91,45,56,55,46,57,51,53,51,48,57,44,52,48,46,52,56,53,57,50,51,93,44,91,45,56,55,46,57,51,50,51,56,55,44,52,48,46,51,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,111,117,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,56,54,56,52,44,34,98,101,100,115,34,58,53,48,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,49,55,55,48,55,44,51,56,46,56,48,53,55,52,56,93,44,91,45,57,48,46,50,57,56,55,52,51,44,51,56,46,56,56,55,55,53,57,93,44,91,45,57,48,46,52,52,48,54,49,55,44,51,56,46,56,50,55,54,53,93,44,91,45,57,48,46,53,52,49,54,49,50,44,51,56,46,54,56,53,50,54,55,93,44,91,45,57,48,46,55,51,50,51,50,56,44,51,56,46,54,51,57,51,48,50,93,44,91,45,57,48,46,55,51,54,51,49,49,44,51,56,46,52,54,54,54,52,51,93,44,91,45,57,48,46,53,57,49,49,50,51,44,51,56,46,53,48,49,54,53,50,93,44,91,45,57,48,46,52,49,50,53,49,57,44,51,56,46,53,48,48,56,53,51,93,44,91,45,57,48,46,51,52,49,52,52,54,44,51,56,46,51,56,56,50,57,56,93,44,91,45,57,48,46,50,54,52,49,50,51,44,51,56,46,53,50,48,55,50,56,93,44,91,45,57,48,46,50,53,55,52,49,51,44,51,56,46,53,51,49,56,53,50,93,44,91,45,57,48,46,51,50,48,53,48,52,44,51,56,46,53,57,52,49,55,55,93,44,91,45,57,48,46,50,53,49,55,52,53,44,51,56,46,55,49,56,56,56,55,93,44,91,45,57,48,46,49,54,54,53,55,52,44,51,56,46,55,55,50,52,52,56,93,44,91,45,57,48,46,49,49,55,55,48,55,44,51,56,46,56,48,53,55,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,54,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,52,48,51,56,56,44,52,50,46,52,57,53,48,52,53,93,44,91,45,56,56,46,57,51,57,55,51,50,44,52,50,46,49,53,50,51,50,93,44,91,45,56,56,46,55,48,53,53,56,53,44,52,50,46,49,53,51,53,51,55,93,44,91,45,56,56,46,55,48,55,52,50,49,44,52,50,46,52,57,51,53,57,54,93,44,91,45,56,56,46,55,55,54,52,57,51,44,52,50,46,52,57,49,57,49,50,93,44,91,45,56,56,46,57,52,48,51,56,56,44,52,50,46,52,57,53,48,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,84,101,104,97,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,51,55,51,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,52,57,55,54,51,53,44,52,48,46,52,52,53,53,57,49,93,44,91,45,49,50,49,46,54,56,53,54,55,57,44,52,48,46,52,53,51,49,50,49,93,44,91,45,49,50,50,46,48,49,48,51,49,54,44,52,48,46,52,50,54,53,53,56,93,44,91,45,49,50,50,46,51,49,48,52,49,50,44,52,48,46,51,55,49,48,54,52,93,44,91,45,49,50,50,46,53,49,57,57,56,56,44,52,48,46,51,57,51,54,55,53,93,44,91,45,49,50,50,46,54,53,48,50,54,51,44,52,48,46,51,50,56,54,51,93,44,91,45,49,50,50,46,55,52,56,54,48,56,44,52,48,46,51,54,53,54,57,52,93,44,91,45,49,50,51,46,48,54,53,52,50,54,44,52,48,46,50,56,54,57,55,49,93,44,91,45,49,50,50,46,57,56,57,48,49,53,44,52,48,46,50,53,48,49,52,53,93,44,91,45,49,50,50,46,57,51,52,48,49,51,44,51,57,46,57,55,56,49,51,49,93,44,91,45,49,50,50,46,57,51,55,54,53,52,44,51,57,46,55,57,56,49,53,54,93,44,91,45,49,50,50,46,48,52,54,52,55,49,44,51,57,46,55,57,55,54,52,56,93,44,91,45,49,50,50,46,48,52,52,56,54,53,44,51,57,46,56,56,51,55,55,49,93,44,91,45,49,50,49,46,56,48,52,48,52,49,44,51,57,46,56,56,52,51,52,52,93,44,91,45,49,50,49,46,54,52,54,48,51,50,44,51,57,46,57,56,50,53,50,55,93,44,91,45,49,50,49,46,53,56,54,52,48,55,44,52,48,46,49,48,48,53,50,50,93,44,91,45,49,50,49,46,52,51,54,56,56,54,44,52,48,46,49,53,49,57,48,53,93,44,91,45,49,50,49,46,51,52,57,44,52,48,46,50,54,52,52,53,52,93,44,91,45,49,50,49,46,52,55,48,51,57,53,44,52,48,46,51,53,48,50,49,51,93,44,91,45,49,50,49,46,52,57,55,54,51,53,44,52,48,46,52,52,53,53,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,68,97,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,57,56,52,51,44,34,98,101,100,115,34,58,50,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,51,56,49,51,53,44,52,51,46,50,48,54,48,53,55,93,44,91,45,56,57,46,56,51,56,49,54,55,44,52,50,46,56,53,55,51,57,55,93,44,91,45,56,57,46,51,54,57,49,50,56,44,52,50,46,56,52,53,48,51,54,93,44,91,45,56,57,46,48,49,51,53,56,50,44,52,50,46,56,52,55,54,51,93,44,91,45,56,57,46,48,48,56,56,51,50,44,52,51,46,49,57,55,55,50,52,93,44,91,45,56,57,46,48,48,57,49,51,57,44,52,51,46,50,56,52,56,51,93,44,91,45,56,57,46,55,50,48,52,54,51,44,52,51,46,50,57,51,48,56,52,93,44,91,45,56,57,46,56,51,56,49,51,53,44,52,51,46,50,48,54,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,70,105,115,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,56,51,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,52,52,50,50,52,44,51,50,46,57,53,57,57,55,56,93,44,91,45,49,48,48,46,53,49,57,50,48,56,44,51,50,46,57,54,50,57,50,54,93,44,91,45,49,48,48,46,54,53,53,56,55,44,51,50,46,57,54,51,52,54,57,93,44,91,45,49,48,48,46,54,54,48,54,50,54,44,51,50,46,53,50,53,51,49,50,93,44,91,45,49,48,48,46,49,52,54,53,52,51,44,51,50,46,53,50,50,55,57,51,93,44,91,45,49,48,48,46,49,52,52,50,50,52,44,51,50,46,57,53,57,57,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,83,97,98,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,56,56,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,52,49,49,55,49,44,51,49,46,56,52,53,50,51,51,93,44,91,45,57,51,46,56,55,57,48,54,49,44,51,49,46,56,52,52,50,56,55,93,44,91,45,57,51,46,55,57,52,53,52,56,44,51,49,46,55,48,50,48,55,54,93,44,91,45,57,51,46,56,51,52,57,49,56,44,51,49,46,53,56,54,50,49,50,93,44,91,45,57,51,46,54,57,50,54,51,49,44,51,49,46,52,51,55,49,57,50,93,44,91,45,57,51,46,54,56,55,53,49,49,44,51,49,46,51,49,48,56,49,51,93,44,91,45,57,51,46,54,48,48,51,48,56,44,51,49,46,49,55,54,49,53,56,93,44,91,45,57,51,46,53,53,50,53,50,52,44,51,49,46,49,56,53,52,48,53,93,44,91,45,57,51,46,53,51,52,57,49,57,44,51,49,46,50,55,54,53,55,57,93,44,91,45,57,51,46,52,52,50,53,53,52,44,51,49,46,50,55,54,55,49,54,93,44,91,45,57,51,46,51,57,48,52,57,53,44,51,49,46,51,54,52,49,52,55,93,44,91,45,57,51,46,50,51,54,49,48,52,44,51,49,46,51,54,52,53,48,55,93,44,91,45,57,51,46,50,51,54,54,54,50,44,51,49,46,53,51,56,51,51,57,93,44,91,45,57,51,46,51,51,55,52,53,54,44,51,49,46,53,51,56,49,49,93,44,91,45,57,51,46,51,51,56,57,55,50,44,51,49,46,55,49,52,50,53,57,93,44,91,45,57,51,46,52,52,49,55,52,51,44,51,49,46,55,49,52,52,56,53,93,44,91,45,57,51,46,52,52,49,49,55,49,44,51,49,46,56,52,53,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,50,54,44,34,98,101,100,115,34,58,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,57,57,49,48,53,44,51,57,46,55,57,48,48,54,93,44,91,45,57,48,46,51,55,49,50,53,54,44,51,57,46,55,53,51,49,50,50,93,44,91,45,57,48,46,51,48,48,54,54,54,44,51,57,46,54,51,54,53,52,49,93,44,91,45,57,48,46,51,48,49,56,51,49,44,51,57,46,53,50,48,51,52,52,93,44,91,45,57,48,46,49,53,51,55,56,50,44,51,57,46,53,50,48,51,49,53,93,44,91,45,56,57,46,57,50,54,48,51,55,44,51,57,46,53,50,50,49,48,52,93,44,91,45,56,57,46,57,56,52,55,52,53,44,51,57,46,55,49,56,48,55,57,93,44,91,45,56,57,46,57,57,52,52,48,53,44,51,57,46,56,55,50,56,54,93,44,91,45,57,48,46,53,56,51,53,51,52,44,51,57,46,56,55,54,55,53,93,44,91,45,57,48,46,53,55,49,52,50,52,44,51,57,46,56,51,56,57,54,49,93,44,91,45,57,48,46,53,57,57,49,48,53,44,51,57,46,55,57,48,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,53,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,57,53,44,34,98,101,100,115,34,58,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,49,53,53,55,57,44,51,50,46,50,56,56,53,53,54,93,44,91,45,56,51,46,54,48,56,53,52,55,44,51,50,46,49,49,56,52,48,53,93,44,91,45,56,51,46,51,51,55,51,49,51,44,51,50,46,49,48,53,56,56,53,93,44,91,45,56,51,46,50,57,49,49,48,54,44,51,50,46,49,55,56,56,50,53,93,44,91,45,56,51,46,51,52,54,53,50,56,44,51,50,46,50,55,50,52,56,57,93,44,91,45,56,51,46,52,57,56,48,51,57,44,51,50,46,52,48,49,55,49,53,93,44,91,45,56,51,46,54,49,53,53,55,57,44,51,50,46,50,56,56,53,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,101,114,116,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,54,52,52,44,34,98,101,100,115,34,58,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,50,57,49,53,49,57,44,51,54,46,49,54,56,51,52,50,93,44,91,45,55,55,46,51,50,55,53,54,57,44,51,54,46,48,55,49,51,54,49,93,44,91,45,55,55,46,48,52,50,56,56,50,44,51,53,46,57,52,50,50,55,56,93,44,91,45,55,55,46,48,48,53,50,53,44,51,53,46,56,53,56,52,51,51,93,44,91,45,55,54,46,55,54,48,53,57,56,44,51,53,46,56,54,52,56,56,55,93,44,91,45,55,54,46,54,48,54,50,49,52,44,51,53,46,57,55,56,48,53,49,93,44,91,45,55,54,46,54,56,50,53,51,53,44,51,54,46,48,51,48,57,52,55,93,44,91,45,55,54,46,55,51,54,57,51,51,44,51,54,46,49,53,48,53,56,51,93,44,91,45,55,54,46,55,48,54,53,56,52,44,51,54,46,50,52,51,55,57,54,93,44,91,45,55,55,46,50,48,56,52,54,56,44,51,54,46,50,52,54,53,55,56,93,44,91,45,55,55,46,50,57,49,53,49,57,44,51,54,46,49,54,56,51,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,83,116,97,110,108,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,49,49,52,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,50,57,53,52,50,49,44,51,53,46,53,48,50,57,50,93,44,91,45,56,48,46,53,48,52,57,56,53,44,51,53,46,49,56,52,57,57,56,93,44,91,45,56,48,46,51,53,56,57,50,50,44,51,53,46,49,54,53,50,56,49,93,44,91,45,56,48,46,50,55,54,56,50,57,44,51,53,46,49,57,53,55,50,50,93,44,91,45,56,48,46,48,55,53,51,54,53,44,51,53,46,49,52,51,48,56,49,93,44,91,45,56,48,46,48,57,56,49,56,53,44,51,53,46,50,53,53,49,55,51,93,44,91,45,56,48,46,48,53,49,55,51,57,44,51,53,46,51,55,50,53,56,53,93,44,91,45,56,48,46,49,56,50,53,53,57,44,51,53,46,53,48,52,49,53,49,93,44,91,45,56,48,46,50,57,53,52,50,49,44,51,53,46,53,48,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,82,104,101,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,54,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,49,54,48,54,50,44,51,53,46,55,54,49,57,51,57,93,44,91,45,56,53,46,49,48,55,55,54,50,44,51,53,46,53,55,49,51,53,57,93,44,91,45,56,53,46,49,51,53,49,57,49,44,51,53,46,52,53,56,54,52,57,93,44,91,45,56,53,46,48,49,54,51,52,51,44,51,53,46,52,48,57,50,56,56,93,44,91,45,56,52,46,57,49,53,48,52,57,44,51,53,46,52,52,48,55,55,49,93,44,91,45,56,52,46,55,56,50,51,54,54,44,51,53,46,53,57,52,55,57,57,93,44,91,45,56,52,46,55,50,51,56,53,51,44,51,53,46,55,53,50,56,57,54,93,44,91,45,56,52,46,55,56,49,57,48,49,44,51,53,46,56,50,53,93,44,91,45,56,52,46,57,49,54,48,54,50,44,51,53,46,55,54,49,57,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,48,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,55,48,48,54,57,50,44,51,53,46,54,53,50,50,57,53,93,44,91,45,55,55,46,56,50,50,53,49,49,44,51,53,46,53,56,53,51,56,51,93,44,91,45,55,55,46,56,48,54,50,52,56,44,51,53,46,51,54,56,55,53,52,93,44,91,45,55,55,46,54,51,57,49,48,49,44,51,53,46,51,53,52,48,56,54,93,44,91,45,55,55,46,52,55,53,53,49,53,44,51,53,46,52,50,54,54,53,53,93,44,91,45,55,55,46,53,48,51,52,44,51,53,46,53,49,55,52,52,53,93,44,91,45,55,55,46,55,48,48,54,57,50,44,51,53,46,54,53,50,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,76,101,115,108,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,55,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,48,55,56,56,54,44,51,55,46,50,51,53,56,55,55,93,44,91,45,56,51,46,53,53,49,51,48,51,44,51,55,46,49,54,55,53,49,93,44,91,45,56,51,46,53,48,57,48,56,51,44,51,54,46,57,51,56,53,48,57,93,44,91,45,56,51,46,52,56,57,56,49,51,44,51,54,46,56,57,53,52,49,51,93,44,91,45,56,51,46,50,54,48,48,50,44,51,54,46,57,54,56,57,53,49,93,44,91,45,56,51,46,49,56,50,49,48,52,44,51,55,46,48,50,49,49,49,53,93,44,91,45,56,51,46,50,48,56,49,50,49,44,51,55,46,49,55,52,54,53,57,93,44,91,45,56,51,46,52,54,48,57,57,50,44,51,55,46,50,57,51,56,52,56,93,44,91,45,56,51,46,53,48,55,56,56,54,44,51,55,46,50,51,53,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,83,111,109,101,114,115,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,57,52,56,52,53,52,44,51,56,46,50,49,53,57,54,93,44,91,45,55,54,46,48,55,56,53,55,53,44,51,56,46,48,54,48,57,50,93,44,91,45,55,54,46,50,48,52,55,49,57,44,51,56,46,48,53,56,52,49,93,44,91,45,55,54,46,50,51,54,49,52,49,44,51,55,46,56,56,56,52,54,56,93,44,91,45,55,54,46,50,51,54,52,53,56,44,51,55,46,56,56,54,54,48,53,93,44,91,45,55,54,46,48,53,50,48,50,49,44,51,55,46,57,53,51,53,55,56,93,44,91,45,55,53,46,57,53,50,54,55,50,44,51,55,46,57,48,54,56,50,55,93,44,91,45,55,53,46,56,48,49,50,52,44,51,55,46,57,49,50,49,55,52,93,44,91,45,55,53,46,54,50,52,51,52,51,44,51,55,46,57,57,52,50,48,56,93,44,91,45,55,53,46,53,52,53,56,48,54,44,51,56,46,48,56,54,55,52,57,93,44,91,45,55,53,46,53,52,53,56,57,56,44,51,56,46,49,55,56,55,52,93,44,91,45,55,53,46,54,49,50,55,54,52,44,51,56,46,50,55,56,54,50,54,93,44,91,45,55,53,46,55,54,57,54,55,49,44,51,56,46,50,56,52,53,56,55,93,44,91,45,55,53,46,57,52,56,52,53,52,44,51,56,46,50,49,53,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,54,50,50,51,55,44,52,49,46,49,48,52,48,48,56,93,44,91,45,56,57,46,51,53,56,52,51,55,44,52,49,46,49,48,51,56,52,57,93,44,91,45,56,57,46,52,54,54,49,48,49,44,52,49,46,49,52,56,53,50,52,93,44,91,45,56,57,46,54,51,56,53,51,54,44,52,49,46,49,52,56,53,52,53,93,44,91,45,56,57,46,54,51,56,55,50,55,44,52,48,46,57,55,51,55,48,55,93,44,91,45,56,57,46,52,55,50,51,51,44,52,48,46,57,50,49,50,48,54,93,44,91,45,56,57,46,48,52,55,55,49,56,44,52,48,46,57,50,53,55,52,57,93,44,91,45,56,57,46,48,52,55,51,57,52,44,52,49,46,49,48,52,55,56,54,93,44,91,45,56,57,46,49,54,50,50,51,55,44,52,49,46,49,48,52,48,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,76,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,57,51,53,49,57,44,51,55,46,49,52,55,50,53,54,93,44,91,45,56,56,46,50,52,48,51,55,49,44,51,54,46,57,56,49,57,49,49,93,44,91,45,56,56,46,49,53,55,51,52,55,44,51,54,46,56,54,55,49,56,51,93,44,91,45,56,55,46,56,55,54,57,57,54,44,51,54,46,57,54,48,49,49,54,93,44,91,45,56,56,46,48,52,50,49,52,50,44,51,55,46,49,55,52,55,53,54,93,44,91,45,56,56,46,48,57,53,55,56,49,44,51,55,46,49,55,57,54,56,52,93,44,91,45,56,56,46,49,57,51,53,49,57,44,51,55,46,49,52,55,50,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,67,111,110,99,104,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,51,51,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,49,50,51,52,44,51,49,46,53,56,48,50,54,55,93,44,91,45,49,48,48,46,49,49,53,50,49,54,44,51,49,46,48,56,55,57,57,52,93,44,91,45,57,57,46,54,48,51,50,50,51,44,51,49,46,48,56,55,50,57,54,93,44,91,45,57,57,46,54,48,49,56,53,44,51,49,46,52,57,49,57,53,93,44,91,45,57,57,46,55,50,49,54,57,56,44,51,49,46,53,55,54,55,53,57,93,44,91,45,49,48,48,46,49,49,49,50,51,52,44,51,49,46,53,56,48,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,67,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,51,53,49,51,55,44,51,50,46,48,56,50,51,55,50,93,44,91,45,49,48,48,46,54,54,53,51,53,51,44,51,50,46,48,56,53,52,48,55,93,44,91,45,49,48,48,46,56,50,49,53,57,52,44,51,50,46,48,56,54,54,49,93,44,91,45,49,48,48,46,56,50,53,51,55,44,51,49,46,54,57,54,49,53,53,93,44,91,45,49,48,48,46,50,51,53,55,54,49,44,51,49,46,54,57,50,57,55,93,44,91,45,49,48,48,46,50,51,53,49,51,55,44,51,50,46,48,56,50,51,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,79,118,101,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,48,52,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,56,52,56,55,56,44,51,54,46,53,51,49,50,57,51,93,44,91,45,56,53,46,52,51,56,56,48,56,44,51,54,46,53,48,49,49,48,50,93,44,91,45,56,53,46,52,57,53,52,50,50,44,51,54,46,52,48,51,48,55,52,93,44,91,45,56,53,46,52,57,53,49,50,52,44,51,54,46,51,48,50,50,55,56,93,44,91,45,56,53,46,52,49,57,52,51,50,44,51,54,46,50,51,54,49,52,53,93,44,91,45,56,53,46,49,49,57,53,56,51,44,51,54,46,49,52,52,55,49,57,93,44,91,45,56,53,46,48,56,50,52,57,55,44,51,54,46,49,57,54,49,55,49,93,44,91,45,56,53,46,49,50,48,52,52,53,44,51,54,46,52,48,55,49,54,52,93,44,91,45,56,53,46,50,56,52,56,55,56,44,51,54,46,53,51,49,50,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,117,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,52,51,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,56,53,50,56,44,52,52,46,49,54,56,52,48,52,93,44,91,45,56,51,46,55,48,56,53,50,53,44,52,51,46,56,51,51,57,52,56,93,44,91,45,56,51,46,55,48,56,51,49,55,44,52,51,46,56,50,56,55,50,49,93,44,91,45,56,51,46,52,54,55,52,48,51,44,52,51,46,55,50,56,57,48,57,93,44,91,45,56,51,46,52,54,54,53,57,50,44,52,51,46,54,54,55,54,50,49,93,44,91,45,56,51,46,49,49,55,56,52,52,44,52,51,46,54,55,53,52,57,51,93,44,91,45,56,50,46,49,52,53,53,48,49,44,52,51,46,54,57,53,53,56,55,93,44,91,45,56,50,46,50,52,57,57,49,52,44,52,52,46,49,53,56,55,53,49,93,44,91,45,56,51,46,49,56,53,50,56,44,52,52,46,49,54,56,52,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,73,111,115,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,52,55,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,51,57,55,55,44,52,52,46,49,54,49,55,56,54,93,44,91,45,56,51,46,49,56,53,50,56,44,52,52,46,49,54,56,52,48,52,93,44,91,45,56,50,46,50,52,57,57,49,52,44,52,52,46,49,53,56,55,53,49,93,44,91,45,56,50,46,51,50,57,53,49,57,44,52,52,46,53,49,50,56,51,52,93,44,91,45,56,51,46,56,56,54,54,51,52,44,52,52,46,53,48,56,57,55,54,93,44,91,45,56,51,46,56,56,51,57,55,55,44,52,52,46,49,54,49,55,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,67,111,102,102,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,57,54,49,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,57,56,51,54,44,51,49,46,54,55,51,49,54,52,93,44,91,45,56,51,46,49,52,53,53,56,55,44,51,49,46,52,55,50,50,55,54,93,44,91,45,56,51,46,49,52,48,52,56,51,44,51,49,46,52,50,48,51,57,53,93,44,91,45,56,50,46,56,52,52,48,57,51,44,51,49,46,52,48,51,51,50,56,93,44,91,45,56,50,46,56,49,55,53,52,52,44,51,49,46,51,54,52,52,56,54,93,44,91,45,56,50,46,54,50,56,57,55,53,44,51,49,46,51,54,51,57,51,93,44,91,45,56,50,46,53,57,55,53,48,57,44,51,49,46,52,54,57,50,57,51,93,44,91,45,56,50,46,54,50,55,51,52,50,44,51,49,46,54,55,50,54,55,50,93,44,91,45,56,50,46,56,51,54,54,51,51,44,51,49,46,54,55,49,51,57,56,93,44,91,45,56,50,46,56,51,54,51,54,54,44,51,49,46,56,49,54,49,53,52,93,44,91,45,56,50,46,57,57,53,54,57,56,44,51,49,46,55,56,48,57,56,51,93,44,91,45,56,50,46,57,57,56,51,54,44,51,49,46,54,55,51,49,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,57,34,44,34,78,65,77,69,34,58,34,87,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,57,57,44,34,98,101,100,115,34,58,50,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,55,49,54,54,57,44,51,49,46,49,56,51,55,51,57,93,44,91,45,56,50,46,53,57,50,48,55,49,44,51,49,46,48,49,56,52,56,55,93,44,91,45,56,50,46,52,57,48,53,53,56,44,51,48,46,57,54,51,49,54,54,93,44,91,45,56,50,46,52,51,53,56,53,50,44,51,48,46,56,50,48,48,54,56,93,44,91,45,56,50,46,52,49,56,57,49,52,44,51,48,46,53,56,49,55,54,55,93,44,91,45,56,50,46,50,49,52,54,55,55,44,51,48,46,53,54,56,53,53,54,93,44,91,45,56,50,46,49,52,57,56,55,50,44,51,48,46,55,56,52,51,51,54,93,44,91,45,56,50,46,52,50,48,52,52,50,44,51,48,46,55,57,53,50,50,57,93,44,91,45,56,50,46,52,49,53,54,48,51,44,51,49,46,48,49,51,53,57,93,44,91,45,56,50,46,49,51,49,54,57,56,44,51,49,46,48,49,48,55,49,52,93,44,91,45,56,50,46,50,48,56,50,54,50,44,51,49,46,48,56,52,55,54,56,93,44,91,45,56,50,46,50,48,56,55,51,50,44,51,49,46,49,55,48,57,51,56,93,44,91,45,56,50,46,50,56,52,53,54,49,44,51,49,46,50,50,52,52,52,57,93,44,91,45,56,50,46,51,56,51,55,48,53,44,51,49,46,50,57,49,49,52,51,93,44,91,45,56,50,46,52,49,55,50,52,54,44,51,49,46,52,49,55,49,49,57,93,44,91,45,56,50,46,53,57,55,53,48,57,44,51,49,46,52,54,57,50,57,51,93,44,91,45,56,50,46,54,50,56,57,55,53,44,51,49,46,51,54,51,57,51,93,44,91,45,56,50,46,54,55,49,54,54,57,44,51,49,46,49,56,51,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,48,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,57,57,56,51,50,55,44,52,54,46,48,53,51,50,55,52,93,44,91,45,49,48,49,46,56,54,49,56,50,44,52,54,46,48,54,52,55,57,52,93,44,91,45,49,48,49,46,54,55,55,54,49,50,44,52,54,46,48,49,50,56,55,49,93,44,91,45,49,48,49,46,52,57,54,52,50,51,44,52,54,46,48,50,51,55,50,56,93,44,91,45,49,48,49,46,51,48,51,53,49,52,44,52,54,46,49,48,53,53,48,51,93,44,91,45,49,48,49,46,48,50,53,54,57,49,44,52,54,46,50,56,52,52,49,52,93,44,91,45,49,48,49,46,48,52,56,53,50,55,44,52,54,46,51,55,49,52,53,93,44,91,45,49,48,49,46,50,57,56,57,56,57,44,52,54,46,51,55,49,52,48,52,93,44,91,45,49,48,49,46,50,57,56,56,50,51,44,52,54,46,54,51,48,52,51,49,93,44,91,45,49,48,49,46,55,49,56,52,54,50,44,52,54,46,54,51,49,50,56,51,93,44,91,45,49,48,49,46,55,49,56,50,50,56,44,52,54,46,55,49,55,56,51,52,93,44,91,45,49,48,50,46,48,57,54,50,52,44,52,54,46,55,49,55,55,55,50,93,44,91,45,49,48,50,46,48,57,54,55,52,52,44,52,54,46,54,51,49,48,50,54,93,44,91,45,49,48,50,46,48,53,49,50,52,44,52,54,46,54,51,48,57,49,55,93,44,91,45,49,48,50,46,48,52,54,55,56,57,44,52,54,46,50,56,51,55,52,54,93,44,91,45,49,48,49,46,57,57,55,57,51,44,52,54,46,50,48,53,51,50,52,93,44,91,45,49,48,49,46,57,57,56,51,50,55,44,52,54,46,48,53,51,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,53,51,48,48,44,34,98,101,100,115,34,58,51,50,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,53,57,56,56,57,44,51,48,46,49,54,51,52,49,93,44,91,45,57,48,46,50,56,48,50,57,54,44,50,57,46,57,55,50,54,49,56,93,44,91,45,57,48,46,50,52,48,49,55,51,44,50,57,46,56,54,50,49,49,55,93,44,91,45,57,48,46,49,54,55,50,57,55,44,50,57,46,56,49,55,52,48,55,93,44,91,45,57,48,46,50,50,56,49,53,55,44,50,57,46,54,57,50,48,50,56,93,44,91,45,57,48,46,49,55,48,51,56,55,44,50,57,46,54,56,51,53,50,51,93,44,91,45,57,48,46,49,51,55,53,48,52,44,50,57,46,52,55,55,49,54,51,93,44,91,45,57,48,46,48,50,48,54,50,50,44,50,57,46,52,50,56,52,54,49,93,44,91,45,57,48,46,48,48,48,48,54,56,44,50,57,46,50,57,52,57,49,50,93,44,91,45,57,48,46,48,57,48,51,51,55,44,50,57,46,49,56,48,53,55,52,93,44,91,45,57,48,46,48,56,57,48,57,50,44,50,57,46,48,57,52,54,52,56,93,44,91,45,56,57,46,56,57,57,54,54,52,44,50,57,46,49,53,53,48,48,57,93,44,91,45,56,57,46,57,48,50,50,54,55,44,50,57,46,50,57,50,50,56,52,93,44,91,45,56,57,46,57,55,55,52,55,44,50,57,46,52,52,57,51,55,49,93,44,91,45,56,57,46,57,56,48,56,49,50,44,50,57,46,53,56,48,49,53,53,93,44,91,45,57,48,46,48,54,55,50,52,50,44,50,57,46,55,51,56,54,54,52,93,44,91,45,57,48,46,48,48,56,48,53,54,44,50,57,46,56,57,53,53,50,56,93,44,91,45,57,48,46,49,51,56,53,55,52,44,50,57,46,57,49,56,56,48,53,93,44,91,45,57,48,46,49,48,56,49,49,57,44,51,48,46,49,54,52,57,52,93,44,91,45,57,48,46,49,53,54,50,53,54,44,51,48,46,49,56,57,54,49,51,93,44,91,45,57,48,46,50,53,57,56,56,57,44,51,48,46,49,54,51,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,83,116,46,32,84,97,109,109,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,48,57,51,44,34,98,101,100,115,34,58,49,49,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,53,53,54,52,56,44,51,48,46,55,49,49,57,48,53,93,44,91,45,57,48,46,50,52,51,54,52,57,44,51,48,46,51,54,49,53,56,49,93,44,91,45,57,48,46,49,54,48,54,51,54,44,51,48,46,50,51,52,51,51,55,93,44,91,45,57,48,46,49,53,54,50,53,54,44,51,48,46,49,56,57,54,49,51,93,44,91,45,57,48,46,49,48,56,49,49,57,44,51,48,46,49,54,52,57,52,93,44,91,45,56,57,46,57,48,51,50,51,52,44,51,48,46,49,57,56,54,54,93,44,91,45,56,57,46,55,57,55,52,49,52,44,51,48,46,49,54,48,55,53,55,93,44,91,45,56,57,46,54,50,53,48,53,52,44,51,48,46,49,53,51,52,57,51,93,44,91,45,56,57,46,52,57,52,57,55,51,44,51,48,46,49,54,48,55,53,93,44,91,45,56,57,46,54,51,49,54,49,52,44,51,48,46,50,53,55,48,49,51,93,44,91,45,56,57,46,54,57,48,48,51,53,44,51,48,46,52,53,57,51,51,51,93,44,91,45,56,57,46,55,53,50,56,48,55,44,51,48,46,53,48,50,57,54,50,93,44,91,45,56,57,46,56,52,50,51,51,44,51,48,46,54,54,54,48,49,53,93,44,91,45,56,57,46,57,57,52,50,48,49,44,51,48,46,54,54,53,52,51,93,44,91,45,57,48,46,50,53,53,54,52,56,44,51,48,46,55,49,49,57,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,50,55,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,57,57,52,56,53,44,52,50,46,53,53,55,55,93,44,91,45,57,51,46,52,54,50,54,51,53,44,52,50,46,52,55,48,56,48,50,93,44,91,45,57,51,46,52,54,51,48,52,51,44,52,50,46,50,48,57,51,48,50,93,44,91,45,57,51,46,50,51,49,55,50,50,44,52,50,46,50,48,56,56,56,54,93,44,91,45,57,51,46,48,48,49,54,55,52,44,52,50,46,50,48,57,50,54,55,93,44,91,45,57,51,46,48,48,50,57,48,50,44,52,50,46,52,55,48,54,51,56,93,44,91,45,57,51,46,48,50,55,44,52,50,46,53,53,54,56,49,93,44,91,45,57,51,46,52,57,57,52,56,53,44,52,50,46,53,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,97,109,101,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,54,56,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,57,54,51,55,49,44,51,48,46,48,51,56,52,55,57,93,44,91,45,57,51,46,49,50,56,52,55,53,44,51,48,46,48,53,50,53,56,55,93,44,91,45,57,51,46,55,50,50,53,49,55,44,51,48,46,48,53,48,56,55,50,93,44,91,45,57,51,46,56,53,52,52,49,50,44,50,57,46,56,54,53,48,53,51,93,44,91,45,57,51,46,57,50,50,55,52,52,44,50,57,46,56,49,56,56,48,56,93,44,91,45,57,51,46,56,49,52,51,53,49,44,50,57,46,53,57,54,53,55,54,93,44,91,45,57,51,46,55,55,48,49,52,55,44,50,57,46,54,55,48,56,50,53,93,44,91,45,57,51,46,52,56,55,55,53,52,44,50,57,46,55,49,55,56,49,49,93,44,91,45,57,51,46,49,50,53,49,53,44,50,57,46,55,48,54,50,48,57,93,44,91,45,57,50,46,54,49,55,51,48,54,44,50,57,46,53,50,55,49,50,57,93,44,91,45,57,50,46,54,49,53,54,49,44,51,48,46,48,51,56,49,54,56,93,44,91,45,57,50,46,55,51,56,54,48,52,44,51,48,46,48,51,55,51,50,51,93,44,91,45,57,50,46,57,57,54,51,55,49,44,51,48,46,48,51,56,52,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,56,57,54,44,34,98,101,100,115,34,58,49,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,55,55,48,48,53,44,51,57,46,53,54,57,49,54,57,93,44,91,45,56,52,46,48,48,54,55,56,50,44,51,57,46,50,53,53,48,54,56,93,44,91,45,56,51,46,57,57,51,49,50,44,51,57,46,50,53,52,50,51,53,93,44,91,45,56,51,46,56,54,53,54,55,57,44,51,57,46,50,52,55,51,51,51,93,44,91,45,56,51,46,55,56,52,55,57,51,44,51,57,46,50,54,50,56,56,56,93,44,91,45,56,51,46,53,57,48,56,55,56,44,51,57,46,51,55,56,55,51,54,93,44,91,45,56,51,46,53,55,54,50,56,54,44,51,57,46,53,52,52,53,52,55,93,44,91,45,56,51,46,54,55,48,49,57,54,44,51,57,46,53,53,48,50,53,52,93,44,91,45,56,51,46,57,55,55,48,48,53,44,51,57,46,53,54,57,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,111,117,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,48,56,48,44,34,98,101,100,115,34,58,49,49,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,56,49,49,53,56,44,52,55,46,56,57,49,56,55,93,44,91,45,57,51,46,48,54,49,50,53,51,44,52,55,46,55,50,48,49,56,55,93,44,91,45,57,51,46,48,54,57,53,44,52,55,46,51,57,51,57,49,53,93,44,91,45,57,51,46,48,53,53,57,52,51,44,52,55,46,48,50,54,52,49,53,93,44,91,45,57,51,46,48,54,49,53,50,57,44,52,54,46,55,54,54,53,53,93,44,91,45,57,50,46,51,48,49,54,55,54,44,52,54,46,55,54,52,49,51,52,93,44,91,45,57,50,46,50,57,50,50,52,50,44,52,54,46,54,54,51,51,49,56,93,44,91,45,57,50,46,50,49,50,51,57,50,44,52,54,46,54,52,57,57,52,49,93,44,91,45,57,50,46,48,56,57,52,57,51,44,52,54,46,55,52,57,50,51,55,93,44,91,45,57,50,46,48,50,48,50,57,52,44,52,54,46,55,48,52,48,52,49,93,44,91,45,57,49,46,55,57,54,51,51,44,52,54,46,55,57,52,56,51,56,93,44,91,45,57,49,46,55,56,55,57,50,56,44,52,55,46,53,52,54,56,49,55,93,44,91,45,57,49,46,55,57,56,50,53,50,44,52,56,46,50,48,50,56,53,56,93,44,91,45,57,50,46,48,48,54,53,55,52,44,52,56,46,50,54,53,52,50,51,93,44,91,45,57,50,46,49,54,49,57,56,51,44,52,56,46,51,54,51,51,48,54,93,44,91,45,57,50,46,50,56,56,57,57,52,44,52,56,46,51,52,50,57,57,93,44,91,45,57,50,46,51,55,48,49,48,51,44,52,56,46,50,50,48,50,57,57,93,44,91,45,57,50,46,53,48,55,50,56,53,44,52,56,46,52,52,55,56,55,54,93,44,91,45,57,50,46,54,53,54,48,50,55,44,52,56,46,52,51,54,55,48,57,93,44,91,45,57,50,46,55,50,56,48,52,54,44,52,56,46,53,51,57,50,56,57,93,44,91,45,57,50,46,57,56,52,57,54,51,44,52,56,46,54,50,51,55,51,49,93,44,91,45,57,51,46,48,56,56,52,51,56,44,52,56,46,54,50,55,53,57,55,93,44,91,45,57,51,46,48,57,54,52,56,56,44,52,56,46,48,54,55,56,50,54,93,44,91,45,57,51,46,48,56,49,49,53,56,44,52,55,46,56,57,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,76,111,114,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,54,55,49,51,44,34,98,101,100,115,34,58,49,48,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,52,56,49,50,50,44,52,49,46,55,48,48,48,53,55,93,44,91,45,56,50,46,51,52,50,51,49,52,44,52,49,46,50,56,51,53,53,52,93,44,91,45,56,50,46,51,51,54,52,57,54,44,52,49,46,48,54,53,55,54,49,93,44,91,45,56,50,46,49,55,49,52,57,50,44,52,49,46,48,54,51,53,51,55,93,44,91,45,56,50,46,49,54,57,56,55,53,44,52,49,46,49,51,55,48,57,55,93,44,91,45,56,49,46,57,55,51,56,57,53,44,52,49,46,49,57,57,56,51,49,93,44,91,45,56,49,46,56,55,56,48,53,51,44,52,49,46,50,55,53,48,52,52,93,44,91,45,56,49,46,57,55,49,50,54,50,44,52,49,46,51,53,49,50,54,56,93,44,91,45,56,49,46,57,55,48,53,56,44,52,49,46,56,55,55,56,52,53,93,44,91,45,56,50,46,51,52,56,49,50,50,44,52,49,46,55,48,48,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,86,101,103,97,32,65,108,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,55,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,51,53,48,48,57,51,44,49,56,46,53,52,49,48,49,52,93,44,91,45,54,54,46,51,55,55,48,53,56,44,49,56,46,51,52,52,50,52,54,93,44,91,45,54,54,46,51,54,53,50,55,50,44,49,56,46,51,51,51,50,50,57,93,44,91,45,54,54,46,51,49,56,55,54,52,44,49,56,46,51,54,55,52,49,49,93,44,91,45,54,54,46,51,48,51,54,54,51,44,49,56,46,51,56,52,48,55,55,93,44,91,45,54,54,46,51,48,56,51,49,51,44,49,56,46,53,50,57,55,56,56,93,44,91,45,54,54,46,51,53,48,48,57,51,44,49,56,46,53,52,49,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,51,57,57,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,51,49,53,56,44,52,50,46,50,48,57,57,48,56,93,44,91,45,57,52,46,49,54,52,55,48,52,44,52,50,46,50,48,57,57,50,93,44,91,45,57,52,46,49,54,52,49,51,56,44,52,49,46,56,54,51,50,52,52,93,44,91,45,57,51,46,56,49,53,55,50,49,44,52,49,46,56,54,51,52,49,57,93,44,91,45,57,51,46,54,57,56,48,51,50,44,52,49,46,56,54,51,51,55,93,44,91,45,57,51,46,54,57,56,51,57,44,52,50,46,50,48,57,51,51,57,93,44,91,45,57,51,46,57,51,49,53,56,44,52,50,46,50,48,57,57,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,55,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,56,51,55,44,34,98,101,100,115,34,58,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,52,50,57,52,55,44,51,49,46,49,52,54,53,55,56,93,44,91,45,57,52,46,57,51,57,49,50,55,44,51,49,46,48,52,50,48,52,56,93,44,91,45,57,53,46,50,48,48,49,56,44,51,48,46,56,50,52,53,54,54,93,44,91,45,57,53,46,49,52,53,52,50,54,44,51,48,46,55,49,51,55,57,57,93,44,91,45,57,53,46,48,50,52,52,52,51,44,51,48,46,54,54,48,53,48,51,93,44,91,45,57,52,46,56,52,57,52,49,52,44,51,48,46,52,57,51,53,53,51,93,44,91,45,57,52,46,55,51,50,55,51,50,44,51,48,46,52,57,48,48,54,54,93,44,91,45,57,52,46,53,52,53,55,49,55,44,51,48,46,53,50,54,57,55,55,93,44,91,45,57,52,46,54,53,55,57,57,50,44,51,49,46,48,49,50,48,48,55,93,44,91,45,57,52,46,53,54,49,57,52,51,44,51,49,46,48,53,56,57,53,50,93,44,91,45,57,52,46,56,52,50,57,52,55,44,51,49,46,49,52,54,53,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,68,105,120,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,49,53,56,52,57,44,52,50,46,55,54,49,51,51,56,93,44,91,45,57,55,46,48,49,55,55,56,57,44,52,50,46,51,53,49,51,52,55,93,44,91,45,57,55,46,48,49,55,55,51,44,52,50,46,50,54,52,52,53,51,93,44,91,45,57,54,46,56,50,50,52,57,55,44,52,50,46,50,54,52,50,57,50,93,44,91,45,57,54,46,55,50,54,54,54,49,44,52,50,46,50,55,56,48,48,53,93,44,91,45,57,54,46,55,50,50,50,51,49,44,52,50,46,53,50,52,54,53,50,93,44,91,45,57,54,46,54,51,49,52,57,50,44,52,50,46,53,50,52,51,49,56,93,44,91,45,57,54,46,56,48,54,50,49,51,44,52,50,46,55,48,52,49,53,52,93,44,91,45,57,55,46,48,49,53,56,52,57,44,52,50,46,55,54,49,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,72,97,114,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,49,48,50,53,44,34,98,101,100,115,34,58,50,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,54,57,52,52,57,44,51,57,46,55,50,49,49,55,56,93,44,91,45,55,54,46,53,51,50,49,55,52,44,51,57,46,53,52,51,57,55,55,93,44,91,45,55,54,46,51,57,49,54,56,56,44,51,57,46,52,54,52,53,51,50,93,44,91,45,55,54,46,50,56,55,54,56,57,44,51,57,46,50,53,52,49,48,52,93,44,91,45,55,54,46,48,55,57,57,50,53,44,51,57,46,52,48,53,53,48,54,93,44,91,45,55,54,46,48,52,49,57,55,54,44,51,57,46,52,57,52,50,50,56,93,44,91,45,55,54,46,50,51,51,50,55,57,44,51,57,46,55,50,49,51,54,55,93,44,91,45,55,54,46,50,51,57,56,48,53,44,51,57,46,55,50,49,51,51,53,93,44,91,45,55,54,46,53,54,57,52,52,57,44,51,57,46,55,50,49,49,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,69,100,103,101,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,52,54,57,55,52,44,51,51,46,57,53,51,50,49,93,44,91,45,56,50,46,49,53,53,55,44,51,51,46,57,50,57,50,57,93,44,91,45,56,50,46,49,50,52,56,52,50,44,51,51,46,56,52,50,50,56,49,93,44,91,45,56,50,46,49,55,50,56,48,55,44,51,51,46,55,54,53,49,57,52,93,44,91,45,56,50,46,49,49,53,51,50,57,44,51,51,46,53,57,54,54,49,51,93,44,91,45,56,50,46,48,50,56,50,51,56,44,51,51,46,53,52,52,57,51,52,93,44,91,45,56,50,46,48,49,50,52,55,44,51,51,46,53,51,50,49,49,54,93,44,91,45,56,49,46,54,53,49,55,53,57,44,51,51,46,56,49,52,53,49,93,44,91,45,56,49,46,56,51,54,56,48,51,44,51,51,46,56,54,54,53,48,49,93,44,91,45,56,49,46,56,57,52,53,57,53,44,51,51,46,57,55,53,52,49,53,93,44,91,45,56,50,46,48,48,56,50,57,56,44,51,51,46,57,54,49,54,52,54,93,44,91,45,56,50,46,48,52,54,57,55,52,44,51,51,46,57,53,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,99,99,111,109,97,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,55,52,50,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,54,50,52,51,52,51,44,51,55,46,57,57,52,50,48,56,93,44,91,45,55,53,46,56,48,49,50,52,44,51,55,46,57,49,50,49,55,52,93,44,91,45,55,53,46,57,53,50,54,55,50,44,51,55,46,57,48,54,56,50,55,93,44,91,45,55,54,46,48,53,50,48,50,49,44,51,55,46,57,53,51,53,55,56,93,44,91,45,55,54,46,50,51,54,52,53,56,44,51,55,46,56,56,54,54,48,53,93,44,91,45,55,54,46,49,55,53,54,56,55,44,51,55,46,54,55,49,54,50,54,93,44,91,45,55,54,46,49,53,49,55,49,49,44,51,55,46,53,56,53,57,54,56,93,44,91,45,55,54,46,49,52,48,56,51,53,44,51,55,46,53,52,50,50,50,93,44,91,45,55,53,46,56,51,53,50,49,52,44,51,55,46,53,53,52,50,52,53,93,44,91,45,55,53,46,55,56,55,48,51,44,51,55,46,52,54,52,53,55,56,93,44,91,45,55,53,46,53,57,55,52,52,49,44,51,55,46,52,53,48,57,56,56,93,44,91,45,55,53,46,53,52,49,55,55,57,44,51,55,46,54,48,54,49,52,53,93,44,91,45,55,53,46,52,49,55,48,55,51,44,51,55,46,56,50,49,48,53,93,44,91,45,55,53,46,50,57,54,48,48,52,44,51,55,46,56,52,53,55,53,50,93,44,91,45,55,53,46,49,54,54,52,51,53,44,51,56,46,48,50,55,56,51,52,93,44,91,45,55,53,46,54,50,52,51,52,51,44,51,55,46,57,57,52,50,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,108,117,109,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,56,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,48,52,48,55,44,52,52,46,50,52,52,49,48,50,93,44,91,45,56,56,46,52,48,52,49,56,55,44,52,51,46,57,51,56,50,93,44,91,45,56,56,46,49,54,49,54,53,52,44,52,51,46,57,51,55,54,56,51,93,44,91,45,56,56,46,49,54,50,50,55,52,44,52,51,46,56,57,49,53,49,49,93,44,91,45,56,56,46,48,52,49,55,57,52,44,52,51,46,56,57,49,54,57,50,93,44,91,45,56,56,46,48,52,51,50,52,44,52,52,46,50,52,49,48,49,56,93,44,91,45,56,56,46,49,57,50,54,49,49,44,52,52,46,50,52,49,57,52,55,93,44,91,45,56,56,46,52,48,52,48,55,44,52,52,46,50,52,52,49,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,52,54,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,57,49,56,53,51,44,51,54,46,57,53,53,57,57,50,93,44,91,45,56,52,46,48,54,53,55,53,53,44,51,54,46,56,53,51,57,54,49,93,44,91,45,56,51,46,57,53,56,53,51,52,44,51,54,46,55,50,55,50,52,53,93,44,91,45,56,51,46,56,55,55,53,48,51,44,51,54,46,54,56,55,50,53,57,93,44,91,45,56,51,46,55,56,49,50,49,50,44,51,54,46,56,48,50,54,57,51,93,44,91,45,56,51,46,53,56,49,48,57,52,44,51,54,46,57,48,52,54,54,55,93,44,91,45,56,51,46,53,56,57,53,50,49,44,51,54,46,57,53,53,55,56,54,93,44,91,45,56,51,46,56,55,49,51,49,53,44,51,55,46,48,53,52,57,49,57,93,44,91,45,56,51,46,57,53,57,51,56,53,44,51,54,46,57,55,55,49,50,56,93,44,91,45,56,52,46,48,57,49,56,53,51,44,51,54,46,57,53,53,57,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,73,111,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,49,55,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,44,91,45,56,53,46,51,49,50,53,49,51,44,52,51,46,49,49,56,55,57,51,93,44,91,45,56,53,46,51,48,57,54,50,54,44,52,50,46,55,54,57,56,55,56,93,44,91,45,56,53,46,48,55,52,50,52,53,44,52,50,46,55,55,48,55,56,52,93,44,91,45,56,52,46,56,51,55,48,56,53,44,52,50,46,55,55,48,52,55,57,93,44,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,78,101,119,32,72,97,110,111,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,50,51,49,44,34,98,101,100,115,34,58,56,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,50,57,57,50,50,44,51,52,46,51,51,49,55,54,56,93,44,91,45,55,55,46,57,53,54,54,48,53,44,51,52,46,50,51,52,52,57,49,93,44,91,45,55,55,46,57,52,56,52,55,57,44,51,51,46,57,55,49,50,55,52,93,44,91,45,55,55,46,56,57,55,48,49,49,44,51,51,46,55,56,54,56,93,44,91,45,55,55,46,56,57,56,57,55,44,51,51,46,56,53,52,54,51,57,93,44,91,45,55,55,46,55,56,53,53,53,53,44,51,52,46,49,50,53,49,55,49,93,44,91,45,55,55,46,54,55,53,50,55,54,44,51,52,46,50,53,51,49,51,93,44,91,45,55,55,46,56,50,51,49,48,50,44,51,52,46,51,56,57,50,56,55,93,44,91,45,55,56,46,48,50,57,57,50,50,44,51,52,46,51,51,49,55,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,79,98,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,50,48,44,34,98,101,100,115,34,58,49,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,51,52,53,56,56,44,51,54,46,53,48,50,54,49,49,93,44,91,45,56,57,46,51,52,54,48,54,54,44,51,54,46,53,48,51,50,51,50,93,44,91,45,56,57,46,51,54,48,49,50,44,51,54,46,52,48,57,50,55,55,93,44,91,45,56,57,46,52,56,50,57,55,49,44,51,54,46,50,49,50,54,53,57,93,44,91,45,56,57,46,49,53,52,52,54,52,44,51,54,46,50,48,52,54,55,56,93,44,91,45,56,56,46,57,53,57,56,51,57,44,51,54,46,50,50,50,56,51,52,93,44,91,45,56,56,46,57,53,48,50,48,53,44,51,54,46,52,48,57,50,52,56,93,44,91,45,56,56,46,56,49,53,51,56,57,44,51,54,46,52,50,50,53,50,56,93,44,91,45,56,56,46,56,50,55,51,48,51,44,51,54,46,53,48,50,54,51,51,93,44,91,45,56,56,46,56,51,52,53,56,56,44,51,54,46,53,48,50,54,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,97,108,108,111,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,55,55,54,44,34,98,101,100,115,34,58,49,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,56,53,54,57,55,44,51,54,46,55,53,48,51,50,56,93,44,91,45,56,56,46,52,56,57,48,55,53,44,51,54,46,53,48,49,49,53,55,93,44,91,45,56,56,46,48,53,51,50,57,51,44,51,54,46,52,57,55,48,53,56,93,44,91,45,56,56,46,48,55,48,53,52,49,44,51,54,46,54,55,56,50,53,53,93,44,91,45,56,56,46,49,49,48,56,51,49,44,51,54,46,55,52,55,49,53,93,44,91,45,56,56,46,52,56,53,54,57,55,44,51,54,46,55,53,48,51,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,98,101,109,97,114,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,51,53,53,44,34,98,101,100,115,34,58,50,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,56,51,56,56,55,52,44,51,56,46,48,52,55,51,55,93,44,91,45,55,56,46,54,52,51,57,49,56,44,51,55,46,55,51,51,48,56,52,93,44,91,45,55,56,46,52,57,49,51,52,53,44,51,55,46,55,57,54,57,53,54,93,44,91,45,55,56,46,51,48,54,55,54,51,44,51,56,46,48,48,54,52,55,52,93,44,91,45,55,56,46,50,48,57,51,56,52,44,51,56,46,49,51,49,49,50,56,93,44,91,45,55,56,46,51,54,56,55,52,51,44,51,56,46,49,56,52,48,55,52,93,44,91,45,55,56,46,54,54,51,49,52,53,44,51,56,46,50,55,55,57,51,51,93,44,91,45,55,56,46,55,52,57,51,57,54,44,51,56,46,50,48,54,54,52,56,93,44,91,45,55,56,46,56,51,56,56,55,52,44,51,56,46,48,52,55,51,55,93,93,44,91,91,45,55,56,46,53,50,51,54,56,44,51,56,46,48,50,50,51,50,55,93,44,91,45,55,56,46,52,56,53,50,48,50,44,51,56,46,48,54,56,57,55,52,93,44,91,45,55,56,46,52,53,52,55,51,50,44,51,56,46,48,52,53,50,55,56,93,44,91,45,55,56,46,52,54,57,53,48,52,44,51,56,46,48,49,49,55,52,53,93,44,91,45,55,56,46,53,50,51,54,56,44,51,56,46,48,50,50,51,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,82,111,98,101,114,116,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,51,52,52,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,50,48,52,52,51,44,51,54,46,52,53,53,52,54,93,44,91,45,56,54,46,57,56,56,48,54,44,51,54,46,51,54,57,49,53,52,93,44,91,45,56,54,46,57,49,51,50,51,51,44,51,54,46,51,56,50,54,50,49,93,44,91,45,56,54,46,55,53,52,55,57,53,44,51,54,46,52,48,53,52,57,54,93,44,91,45,56,54,46,54,57,53,48,54,52,44,51,54,46,52,50,49,51,49,57,93,44,91,45,56,54,46,53,54,51,57,48,57,44,51,54,46,54,51,51,53,54,50,93,44,91,45,56,54,46,55,54,51,50,57,54,44,51,54,46,54,52,56,57,53,52,93,44,91,45,56,55,46,48,54,48,56,52,57,44,51,54,46,54,52,50,57,54,51,93,44,91,45,56,55,46,49,49,52,57,56,51,44,51,54,46,54,52,50,51,55,49,93,44,91,45,56,55,46,49,50,48,52,52,51,44,51,54,46,52,53,53,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,51,51,49,57,49,44,51,57,46,50,54,52,54,49,50,93,44,91,45,55,56,46,49,53,49,54,49,52,44,51,57,46,48,51,54,54,50,57,93,44,91,45,55,56,46,48,48,52,51,49,51,44,51,56,46,57,55,57,52,51,56,93,44,91,45,55,55,46,57,54,50,50,48,51,44,51,57,46,48,49,51,55,51,51,93,44,91,45,55,55,46,56,50,56,50,57,57,44,51,57,46,49,51,50,52,50,54,93,44,91,45,55,56,46,48,51,51,49,57,49,44,51,57,46,50,54,52,54,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,50,50,56,49,50,44,52,54,46,52,54,50,50,52,53,93,44,91,45,49,49,55,46,50,53,52,50,54,50,44,52,54,46,53,52,53,48,56,50,93,44,91,45,49,49,55,46,52,54,52,55,54,57,44,52,54,46,54,57,57,54,50,54,93,44,91,45,49,49,55,46,55,52,48,56,54,56,44,52,54,46,54,57,52,53,56,51,93,44,91,45,49,49,55,46,56,53,49,56,53,44,52,54,46,54,50,52,54,55,93,44,91,45,49,49,55,46,56,54,51,51,52,55,44,52,54,46,52,55,48,54,54,55,93,44,91,45,49,49,55,46,55,51,55,51,48,51,44,52,54,46,52,55,49,52,53,52,93,44,91,45,49,49,55,46,54,49,49,57,48,51,44,52,54,46,51,51,56,52,55,56,93,44,91,45,49,49,55,46,54,48,51,52,50,52,44,52,53,46,57,57,56,57,53,93,44,91,45,49,49,55,46,52,55,57,57,51,53,44,52,53,46,57,57,55,56,48,49,93,44,91,45,49,49,55,46,52,49,57,52,56,50,44,52,54,46,49,50,49,57,53,54,93,44,91,45,49,49,55,46,52,49,57,51,51,52,44,52,54,46,51,56,51,49,51,57,93,44,91,45,49,49,55,46,50,50,56,55,57,54,44,52,54,46,52,49,49,51,48,54,93,44,91,45,49,49,55,46,50,50,56,49,50,44,52,54,46,52,54,50,50,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,55,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,48,53,53,55,44,51,55,46,53,52,50,56,53,54,93,44,91,45,56,52,46,48,57,48,51,54,52,44,51,55,46,53,54,54,50,50,55,93,44,91,45,56,52,46,49,57,57,52,56,57,44,51,55,46,53,50,50,56,53,56,93,44,91,45,56,52,46,49,51,55,56,57,56,44,51,55,46,51,49,57,55,53,57,93,44,91,45,56,51,46,57,52,51,55,49,56,44,51,55,46,50,53,48,53,53,49,93,44,91,45,56,51,46,55,56,52,57,55,53,44,51,55,46,51,52,56,55,49,55,93,44,91,45,56,51,46,56,56,53,50,54,50,44,51,55,46,53,49,55,54,56,56,93,44,91,45,56,51,46,57,48,53,53,55,44,51,55,46,53,52,50,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,49,49,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,51,49,55,54,49,44,52,56,46,49,56,56,52,56,54,93,44,91,45,57,49,46,48,50,51,49,50,54,44,52,55,46,52,54,52,57,56,50,93,44,91,45,57,48,46,55,57,53,49,56,57,44,52,55,46,50,52,52,50,57,57,93,44,91,45,57,48,46,54,53,52,54,54,44,52,55,46,51,48,57,56,50,50,93,44,91,45,56,57,46,57,53,55,49,48,50,44,52,55,46,50,57,49,49,48,51,93,44,91,45,56,57,46,54,56,48,55,51,44,52,55,46,55,49,52,53,53,50,93,44,91,45,56,57,46,52,56,51,51,56,53,44,52,56,46,48,49,51,55,49,54,93,44,91,45,56,57,46,56,50,48,55,53,51,44,52,56,46,48,49,52,56,57,52,93,44,91,45,56,57,46,56,57,56,56,49,52,44,52,55,46,57,56,56,48,52,57,93,44,91,45,57,48,46,48,50,51,51,51,49,44,52,56,46,48,56,52,55,52,56,93,44,91,45,57,48,46,49,51,50,53,54,55,44,52,56,46,49,49,49,54,55,49,93,44,91,45,57,48,46,51,55,52,55,54,57,44,52,56,46,48,57,48,57,53,52,93,44,91,45,57,48,46,55,54,49,52,48,52,44,52,56,46,48,57,56,51,56,52,93,44,91,45,57,48,46,56,56,53,52,56,44,52,56,46,50,52,53,55,56,52,93,44,91,45,57,49,46,48,51,49,55,54,49,44,52,56,46,49,56,56,52,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,79,99,111,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,54,57,54,44,34,98,101,100,115,34,58,49,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,48,56,54,49,51,44,51,53,46,48,48,48,54,53,57,93,44,91,45,56,51,46,49,50,55,51,53,55,44,51,52,46,57,53,48,49,57,53,93,44,91,45,56,51,46,51,50,52,49,53,44,51,52,46,55,56,55,52,55,57,93,44,91,45,56,51,46,51,53,50,52,52,56,44,51,52,46,55,49,54,49,50,53,93,44,91,45,56,51,46,51,51,56,50,51,52,44,51,52,46,54,56,55,49,56,55,93,44,91,45,56,51,46,49,48,51,54,55,51,44,51,52,46,53,51,54,54,49,55,93,44,91,45,56,51,46,48,53,49,54,51,56,44,51,52,46,52,57,51,55,48,50,93,44,91,45,56,50,46,57,57,50,50,51,50,44,51,52,46,52,55,57,50,53,56,93,44,91,45,56,50,46,56,53,53,49,48,51,44,51,52,46,54,48,57,48,48,55,93,44,91,45,56,50,46,56,52,52,56,49,55,44,51,52,46,54,49,56,55,49,57,93,44,91,45,56,50,46,56,52,48,49,53,53,44,51,52,46,54,50,51,49,50,93,44,91,45,56,50,46,56,57,54,48,50,53,44,51,52,46,55,51,54,53,52,55,93,44,91,45,56,50,46,56,57,55,51,55,51,44,51,53,46,48,53,54,50,49,52,93,44,91,45,56,51,46,48,48,56,53,51,49,44,51,53,46,48,50,55,51,57,52,93,44,91,45,56,51,46,49,48,56,53,54,56,44,51,53,46,48,48,49,51,53,52,93,44,91,45,56,51,46,49,48,56,54,49,51,44,51,53,46,48,48,48,54,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,69,97,115,116,32,66,97,116,111,110,32,82,111,117,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,52,48,57,52,44,34,98,101,100,115,34,58,50,51,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,57,55,54,53,56,44,51,48,46,54,52,57,53,52,56,93,44,91,45,57,49,46,51,49,53,50,56,50,44,51,48,46,53,57,52,50,56,56,93,44,91,45,57,49,46,49,57,55,50,48,56,44,51,48,46,53,48,55,48,56,56,93,44,91,45,57,49,46,50,52,49,53,48,56,44,51,48,46,51,53,55,53,57,50,93,44,91,45,57,49,46,49,52,50,49,48,53,44,51,48,46,51,50,51,50,57,51,93,44,91,45,57,49,46,48,50,49,48,49,52,44,51,48,46,51,50,49,52,56,57,93,44,91,45,57,48,46,56,57,49,55,50,56,44,51,48,46,51,52,53,50,52,52,93,44,91,45,57,48,46,57,55,55,53,48,51,44,51,48,46,52,50,48,56,57,57,93,44,91,45,57,48,46,57,55,55,52,48,49,44,51,48,46,53,57,51,52,56,53,93,44,91,45,57,48,46,57,49,48,55,48,49,44,51,48,46,54,52,57,51,56,53,93,44,91,45,57,48,46,56,52,57,48,52,49,44,51,48,46,55,49,57,51,49,49,93,44,91,45,57,49,46,50,53,52,52,49,57,44,51,48,46,55,48,53,50,57,52,93,44,91,45,57,49,46,50,57,55,54,53,56,44,51,48,46,54,52,57,53,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,108,97,105,98,111,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,50,48,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,50,56,54,50,50,44,51,50,46,50,50,53,49,49,57,93,44,91,45,57,48,46,55,55,52,56,50,44,51,50,46,49,53,51,57,57,51,93,44,91,45,57,48,46,57,53,54,55,56,55,44,51,50,46,48,56,51,53,57,55,93,44,91,45,57,49,46,48,51,48,50,48,55,44,51,50,46,49,49,52,51,53,51,93,44,91,45,57,49,46,50,52,56,49,52,52,44,51,49,46,56,54,57,56,52,56,93,44,91,45,57,49,46,48,49,51,54,55,54,44,51,49,46,56,54,49,56,53,50,93,44,91,45,57,48,46,55,51,54,50,56,50,44,51,49,46,55,56,54,49,51,52,93,44,91,45,57,48,46,55,49,56,50,57,55,44,51,50,46,48,52,56,51,53,50,93,44,91,45,57,48,46,55,50,56,54,50,50,44,51,50,46,50,50,53,49,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,77,97,114,121,39,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,53,51,49,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,54,55,52,49,49,56,44,51,56,46,52,57,57,54,50,50,93,44,91,45,55,54,46,55,55,52,57,53,53,44,51,56,46,53,48,56,57,93,44,91,45,55,54,46,56,55,49,52,54,44,51,56,46,51,56,57,57,51,55,93,44,91,45,55,54,46,56,50,49,50,53,54,44,51,56,46,50,54,56,55,53,56,93,44,91,45,55,54,46,56,54,56,56,53,57,44,51,56,46,49,55,49,51,55,50,93,44,91,45,55,54,46,54,49,48,51,56,52,44,51,56,46,49,52,56,53,49,54,93,44,91,45,55,54,46,53,49,54,51,54,57,44,51,56,46,48,51,52,55,50,52,93,44,91,45,55,54,46,50,51,54,49,52,49,44,51,55,46,56,56,56,52,54,56,93,44,91,45,55,54,46,50,48,52,55,49,57,44,51,56,46,48,53,56,52,49,93,44,91,45,55,54,46,51,50,49,57,48,56,44,51,56,46,51,50,55,50,56,52,93,44,91,45,55,54,46,52,52,53,51,51,52,44,51,56,46,51,48,53,50,49,93,44,91,45,55,54,46,54,55,52,49,49,56,44,51,56,46,52,57,57,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,51,49,52,48,44,34,98,101,100,115,34,58,50,48,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,48,54,54,50,44,52,51,46,50,48,53,49,54,55,93,44,91,45,56,53,46,55,56,50,52,57,56,44,52,50,46,55,54,56,50,93,44,91,45,56,53,46,53,52,53,53,54,52,44,52,50,46,55,54,56,49,51,57,93,44,91,45,56,53,46,51,48,57,54,50,54,44,52,50,46,55,54,57,56,55,56,93,44,91,45,56,53,46,51,49,50,53,49,51,44,52,51,46,49,49,56,55,57,51,93,44,91,45,56,53,46,51,49,50,51,55,54,44,52,51,46,50,57,52,50,48,53,93,44,91,45,56,53,46,53,54,50,53,51,56,44,52,51,46,50,57,52,50,55,49,93,44,91,45,56,53,46,55,57,48,52,52,56,44,52,51,46,50,57,51,48,48,51,93,44,91,45,56,53,46,55,57,48,54,54,50,44,52,51,46,50,48,53,49,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,80,105,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,51,55,50,44,34,98,101,100,115,34,58,49,48,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,55,48,48,54,57,50,44,51,53,46,54,53,50,50,57,53,93,44,91,45,55,55,46,53,48,51,52,44,51,53,46,53,49,55,52,52,53,93,44,91,45,55,55,46,52,55,53,53,49,53,44,51,53,46,52,50,54,54,53,53,93,44,91,45,55,55,46,51,57,49,48,50,54,44,51,53,46,51,51,57,53,51,51,93,44,91,45,55,55,46,49,56,57,49,49,53,44,51,53,46,52,49,56,51,54,50,93,44,91,45,55,55,46,49,55,52,44,51,53,46,55,51,50,56,51,49,93,44,91,45,55,55,46,51,53,48,51,54,57,44,51,53,46,56,49,57,50,50,56,93,44,91,45,55,55,46,51,57,48,49,53,52,44,51,53,46,56,51,51,48,54,50,93,44,91,45,55,55,46,54,54,53,49,51,49,44,51,53,46,54,55,52,57,51,53,93,44,91,45,55,55,46,55,48,48,54,57,50,44,51,53,46,54,53,50,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,67,97,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,52,54,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,56,52,51,48,49,54,44,52,53,46,54,49,49,48,52,50,93,44,91,45,49,48,57,46,48,54,56,52,57,56,44,52,53,46,53,56,51,50,52,49,93,44,91,45,49,48,57,46,49,57,49,55,54,49,44,52,53,46,52,54,52,53,48,52,93,44,91,45,49,48,57,46,51,53,54,52,49,55,44,52,53,46,52,54,52,51,50,54,93,44,91,45,49,48,57,46,53,54,49,57,50,52,44,52,53,46,51,54,50,56,52,51,93,44,91,45,49,48,57,46,54,56,55,55,57,50,44,52,53,46,49,54,55,51,51,57,93,44,91,45,49,48,57,46,55,57,56,54,55,51,44,52,53,46,49,54,55,51,51,57,93,44,91,45,49,48,57,46,55,57,56,52,56,51,44,52,53,46,48,48,50,51,51,51,93,44,91,45,49,48,56,46,54,50,49,51,49,53,44,52,53,46,48,48,48,51,54,49,93,44,91,45,49,48,56,46,50,52,57,52,49,50,44,52,52,46,57,57,57,57,48,52,93,44,91,45,49,48,56,46,49,50,50,49,56,52,44,52,53,46,50,49,54,51,49,55,93,44,91,45,49,48,56,46,54,57,57,54,49,54,44,52,53,46,50,49,55,55,48,57,93,44,91,45,49,48,56,46,54,56,50,50,50,51,44,52,53,46,52,51,51,49,51,50,93,44,91,45,49,48,56,46,54,52,53,51,50,53,44,52,53,46,52,54,52,48,55,51,93,44,91,45,49,48,56,46,56,52,51,48,49,54,44,52,53,46,54,49,49,48,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,83,116,97,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,57,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,52,48,52,44,52,50,46,48,57,48,57,50,50,93,44,91,45,57,55,46,51,54,56,48,55,44,52,49,46,55,52,51,50,48,55,93,44,91,45,57,55,46,50,53,50,52,50,53,44,52,49,46,55,52,51,48,56,53,93,44,91,45,57,55,46,48,49,57,57,49,49,44,52,49,46,55,52,50,57,56,93,44,91,45,57,55,46,48,49,57,51,53,57,44,52,50,46,48,57,48,53,55,55,93,44,91,45,57,55,46,51,54,56,52,48,52,44,52,50,46,48,57,48,57,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,112,112,108,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,53,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,49,53,51,49,44,51,49,46,57,54,54,49,56,50,93,44,91,45,56,50,46,52,51,49,51,54,50,44,51,49,46,56,51,55,57,57,51,93,44,91,45,56,50,46,53,50,48,50,53,49,44,51,49,46,56,51,56,51,56,56,93,44,91,45,56,50,46,53,50,49,52,50,44,51,49,46,55,49,48,55,57,54,93,44,91,45,56,50,46,50,50,54,53,56,53,44,51,49,46,53,51,48,54,57,57,93,44,91,45,56,50,46,49,51,50,55,57,52,44,51,49,46,52,55,49,50,54,50,93,44,91,45,56,50,46,49,51,51,48,49,51,44,51,49,46,55,55,51,52,48,52,93,44,91,45,56,50,46,48,52,56,53,56,50,44,51,49,46,56,50,55,48,55,53,93,44,91,45,56,50,46,50,50,53,48,52,50,44,51,49,46,57,49,51,48,55,52,93,44,91,45,56,50,46,52,51,49,53,51,49,44,51,49,46,57,54,54,49,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,57,49,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,52,55,57,51,51,44,52,49,46,56,54,51,49,48,52,93,44,91,45,57,51,46,51,50,56,54,49,52,44,52,49,46,53,48,55,56,50,52,93,44,91,45,57,50,46,56,55,49,52,50,49,44,52,49,46,53,48,56,53,50,50,93,44,91,45,57,50,46,55,53,54,53,48,56,44,52,49,46,53,48,56,55,57,52,93,44,91,45,57,50,46,55,54,53,57,57,57,44,52,49,46,56,54,50,51,55,51,93,44,91,45,57,51,46,50,51,49,56,53,56,44,52,49,46,56,54,50,55,49,49,93,44,91,45,57,51,46,51,52,55,57,51,51,44,52,49,46,56,54,51,49,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,50,50,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,55,51,50,50,55,44,51,49,46,56,57,51,56,53,54,93,44,91,45,56,56,46,54,50,50,51,57,52,44,51,49,46,56,53,55,49,57,51,93,44,91,45,56,56,46,57,49,48,52,53,57,44,51,49,46,56,50,54,54,52,57,93,44,91,45,56,56,46,57,52,51,51,53,53,44,51,49,46,56,50,52,53,54,53,93,44,91,45,56,56,46,57,52,51,52,54,56,44,51,49,46,52,51,51,52,53,56,93,44,91,45,56,56,46,56,52,49,55,48,55,44,51,49,46,52,51,51,55,48,51,93,44,91,45,56,56,46,52,52,57,52,51,56,44,51,49,46,52,51,53,56,51,55,93,44,91,45,56,56,46,52,54,52,52,51,44,51,49,46,54,57,55,57,53,50,93,44,91,45,56,56,46,52,55,51,50,50,55,44,51,49,46,56,57,51,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,67,111,116,116,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,49,55,51,52,44,51,52,46,51,49,52,49,48,50,93,44,91,45,49,48,48,46,53,49,56,54,57,49,44,51,51,46,56,51,53,54,53,93,44,91,45,49,48,48,46,48,52,56,52,56,44,51,51,46,56,51,53,57,55,52,93,44,91,45,49,48,48,46,48,52,55,48,50,56,44,51,52,46,50,50,57,55,56,93,44,91,45,57,57,46,57,57,55,54,50,49,44,51,52,46,50,50,52,51,53,53,93,44,91,45,57,57,46,57,57,55,55,50,44,51,52,46,51,49,49,56,50,57,93,44,91,45,49,48,48,46,52,49,55,55,56,51,44,51,52,46,51,49,51,53,50,52,93,44,91,45,49,48,48,46,53,49,55,51,52,44,51,52,46,51,49,52,49,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,115,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,53,56,48,51,54,44,51,54,46,56,57,52,53,49,52,93,44,91,45,55,55,46,54,53,53,56,52,49,44,51,54,46,55,49,51,53,51,57,93,44,91,45,55,55,46,55,54,55,49,53,44,51,54,46,53,52,53,51,55,52,93,44,91,45,55,55,46,50,57,54,56,55,53,44,51,54,46,53,52,52,56,53,53,93,44,91,45,55,55,46,51,54,48,57,48,54,44,51,54,46,53,54,52,55,54,93,44,91,45,55,55,46,52,51,48,49,50,55,44,51,54,46,55,48,55,54,53,56,93,44,91,45,55,55,46,53,49,48,51,54,44,51,54,46,56,52,53,48,56,50,93,44,91,45,55,55,46,54,49,57,48,50,57,44,51,54,46,56,55,55,56,52,52,93,44,91,45,55,55,46,54,53,56,48,51,54,44,51,54,46,56,57,52,53,49,52,93,93,44,91,91,45,55,55,46,53,54,51,56,56,56,44,51,54,46,55,48,51,48,54,55,93,44,91,45,55,55,46,53,48,57,51,54,53,44,51,54,46,55,49,54,51,57,56,93,44,91,45,55,55,46,53,48,57,50,52,54,44,51,54,46,54,56,50,57,57,56,93,44,91,45,55,55,46,53,53,54,53,50,52,44,51,54,46,54,55,52,56,55,52,93,44,91,45,55,55,46,53,54,51,56,56,56,44,51,54,46,55,48,51,48,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,56,54,55,49,44,34,98,101,100,115,34,58,49,55,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,48,53,56,53,51,44,50,56,46,49,55,49,54,53,93,44,91,45,56,50,46,48,53,54,50,54,49,44,50,56,46,49,55,49,53,57,50,93,44,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,44,91,45,56,49,46,53,54,51,53,51,51,44,50,55,46,54,52,54,54,52,53,93,44,91,45,56,49,46,49,52,50,49,54,52,44,50,55,46,54,52,51,50,51,56,93,44,91,45,56,49,46,50,49,52,52,48,57,44,50,55,46,56,50,56,53,53,93,44,91,45,56,49,46,50,57,55,49,49,51,44,50,55,46,56,53,57,53,56,50,93,44,91,45,56,49,46,51,56,49,48,50,50,44,50,55,46,57,56,51,51,57,51,93,44,91,45,56,49,46,51,52,54,52,49,56,44,50,56,46,48,56,52,54,57,54,93,44,91,45,56,49,46,52,53,53,55,53,56,44,50,56,46,48,56,52,56,57,93,44,91,45,56,49,46,53,50,52,50,50,55,44,50,56,46,49,52,50,56,48,53,93,44,91,45,56,49,46,53,53,55,52,53,57,44,50,56,46,50,53,57,51,54,50,93,44,91,45,56,49,46,54,53,55,49,56,57,44,50,56,46,50,53,57,50,49,55,93,44,91,45,56,49,46,54,53,55,50,54,56,44,50,56,46,51,52,55,48,57,56,93,44,91,45,56,49,46,57,53,55,54,52,49,44,50,56,46,51,52,53,49,56,93,44,91,45,56,50,46,48,53,53,56,49,57,44,50,56,46,51,49,50,55,57,52,93,44,91,45,56,50,46,49,48,53,56,53,51,44,50,56,46,49,55,49,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,53,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,48,51,34,44,34,78,65,77,69,34,58,34,89,111,117,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,49,52,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,44,91,45,57,56,46,57,53,48,56,55,53,44,51,50,46,57,53,54,57,49,56,93,44,91,45,57,56,46,53,55,53,54,49,54,44,51,50,46,57,53,52,51,52,57,93,44,91,45,57,56,46,52,50,54,53,53,51,44,51,51,46,48,48,55,57,49,51,93,44,91,45,57,56,46,52,50,48,54,54,54,44,51,51,46,51,57,54,49,57,53,93,44,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,84,97,108,108,97,112,111,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,54,51,54,44,34,98,101,100,115,34,58,49,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,51,54,53,52,44,51,51,46,49,48,54,54,51,52,93,44,91,45,56,54,46,48,48,57,49,55,44,51,51,46,48,57,48,50,54,93,44,91,45,56,54,46,48,48,55,49,56,55,44,51,50,46,55,53,52,57,56,52,93,44,91,45,56,53,46,56,55,57,56,54,44,51,50,46,55,53,52,53,50,56,93,44,91,45,56,53,46,56,56,54,49,52,56,44,51,50,46,52,57,51,48,53,51,93,44,91,45,56,53,46,55,57,56,53,56,53,44,51,50,46,53,56,49,48,56,57,93,44,91,45,56,53,46,54,57,53,56,53,52,44,51,50,46,53,57,53,57,51,51,93,44,91,45,56,53,46,54,57,54,55,53,53,44,51,50,46,54,57,55,52,50,57,93,44,91,45,56,53,46,53,57,51,49,53,49,44,51,50,46,55,50,56,53,51,93,44,91,45,56,53,46,53,57,51,49,55,55,44,51,51,46,49,48,55,51,52,93,44,91,45,56,53,46,54,53,51,54,53,52,44,51,51,46,49,48,54,54,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,82,111,99,107,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,49,50,57,44,34,98,101,100,115,34,58,53,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,56,50,48,48,49,57,44,52,51,46,49,50,50,53,52,53,93,44,91,45,55,48,46,56,55,53,52,51,54,44,52,51,46,48,56,48,52,50,50,93,44,91,45,55,49,46,48,50,54,54,56,54,44,52,51,46,49,51,55,57,52,55,93,44,91,45,55,49,46,50,52,55,51,51,54,44,52,51,46,50,55,53,50,51,50,93,44,91,45,55,49,46,51,57,50,51,56,56,44,52,51,46,48,48,57,51,48,57,93,44,91,45,55,49,46,52,53,48,52,51,54,44,52,50,46,57,51,49,48,50,93,44,91,45,55,49,46,52,50,55,48,54,55,44,52,50,46,56,50,52,56,52,93,44,91,45,55,49,46,50,52,53,52,56,49,44,52,50,46,55,52,50,53,49,52,93,44,91,45,55,49,46,49,51,50,56,48,53,44,52,50,46,56,50,49,52,55,54,93,44,91,45,55,48,46,57,50,57,53,57,52,44,52,50,46,56,56,53,48,51,50,93,44,91,45,55,48,46,55,51,53,48,48,53,44,52,50,46,56,55,52,54,56,53,93,44,91,45,55,48,46,53,55,53,48,57,52,44,52,50,46,57,49,55,49,50,54,93,44,91,45,55,48,46,56,50,48,48,49,57,44,52,51,46,49,50,50,53,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,82,105,111,32,71,114,97,110,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,53,49,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,51,56,52,49,51,44,51,55,46,55,52,56,51,53,51,93,44,91,45,49,48,54,46,53,56,54,51,55,52,44,51,55,46,55,52,55,56,48,57,93,44,91,45,49,48,54,46,54,57,51,56,52,53,44,51,55,46,56,51,53,50,52,52,93,44,91,45,49,48,54,46,55,49,48,55,55,53,44,51,55,46,52,48,52,50,50,56,93,44,91,45,49,48,54,46,54,55,56,51,55,51,44,51,55,46,52,48,51,53,57,54,93,44,91,45,49,48,54,46,48,51,57,51,51,49,44,51,55,46,52,48,48,56,53,50,93,44,91,45,49,48,54,46,48,51,56,52,49,51,44,51,55,46,55,52,56,51,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,80,108,121,109,111,117,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,51,56,52,53,56,44,52,50,46,57,48,56,55,55,49,93,44,91,45,57,54,46,54,51,53,53,54,49,44,52,50,46,55,52,48,56,52,55,93,44,91,45,57,54,46,52,57,56,55,55,54,44,52,50,46,53,54,49,48,52,51,93,44,91,45,57,53,46,56,53,57,57,52,57,44,52,50,46,53,54,48,54,50,93,44,91,45,57,53,46,56,53,57,51,55,55,44,52,50,46,57,48,57,48,57,55,93,44,91,45,57,54,46,53,51,56,52,53,56,44,52,50,46,57,48,56,55,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,89,97,116,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,55,49,51,57,50,44,52,50,46,55,54,52,50,50,51,93,44,91,45,55,55,46,51,49,51,48,48,52,44,52,50,46,55,54,49,50,54,53,93,44,91,45,55,55,46,51,54,54,53,48,53,44,52,50,46,53,55,54,51,54,56,93,44,91,45,55,55,46,49,52,51,55,57,53,44,52,50,46,53,55,54,56,54,57,93,44,91,45,55,55,46,49,48,55,50,48,51,44,52,50,46,52,56,51,55,55,49,93,44,91,45,55,54,46,56,56,57,56,48,53,44,52,50,46,52,54,51,48,53,52,93,44,91,45,55,54,46,56,57,53,53,57,54,44,52,50,46,53,52,49,53,51,55,93,44,91,45,55,54,46,56,57,53,51,52,57,44,52,50,46,54,53,54,50,53,53,93,44,91,45,55,54,46,57,55,49,51,57,50,44,52,50,46,55,54,52,50,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,75,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,54,51,50,53,55,44,34,98,101,100,115,34,58,52,54,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,52,51,56,48,57,51,44,52,55,46,55,55,55,56,49,52,93,44,91,45,49,50,50,46,52,52,55,48,49,55,44,52,55,46,53,52,48,48,52,52,93,44,91,45,49,50,50,46,53,51,54,57,57,51,44,52,55,46,52,48,51,51,53,53,93,44,91,45,49,50,50,46,51,51,52,57,49,52,44,52,55,46,50,53,55,51,54,54,93,44,91,45,49,50,50,46,49,52,51,57,55,54,44,52,55,46,50,53,55,53,50,54,93,44,91,45,49,50,50,46,48,57,52,55,54,52,44,52,55,46,49,57,52,57,55,55,93,44,91,45,49,50,49,46,57,50,56,49,57,53,44,52,55,46,49,52,55,51,53,56,93,44,91,45,49,50,49,46,55,57,54,52,54,52,44,52,55,46,49,55,51,48,53,57,93,44,91,45,49,50,49,46,51,55,57,57,54,49,44,52,55,46,48,56,55,50,52,56,93,44,91,45,49,50,49,46,51,55,57,54,56,50,44,52,55,46,48,56,55,52,57,53,93,44,91,45,49,50,49,46,51,49,53,53,51,52,44,52,55,46,49,51,51,56,52,52,93,44,91,45,49,50,49,46,51,52,49,50,48,51,44,52,55,46,50,56,49,50,54,49,93,44,91,45,49,50,49,46,52,54,51,57,53,49,44,52,55,46,51,55,48,53,55,56,93,44,91,45,49,50,49,46,49,55,50,49,57,50,44,52,55,46,53,57,48,50,51,51,93,44,91,45,49,50,49,46,49,49,51,53,54,57,44,52,55,46,53,57,55,50,56,56,93,44,91,45,49,50,49,46,49,49,57,49,55,57,44,52,55,46,55,55,57,57,51,51,93,44,91,45,49,50,49,46,57,57,49,55,55,53,44,52,55,46,55,55,53,51,52,57,93,44,91,45,49,50,50,46,52,51,56,48,57,51,44,52,55,46,55,55,55,56,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,68,101,115,99,104,117,116,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,54,52,48,44,34,98,101,100,115,34,58,51,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,49,48,55,53,51,52,44,52,52,46,51,57,48,54,93,44,91,45,49,50,49,46,56,52,51,49,51,56,44,52,52,46,51,57,50,54,51,93,44,91,45,49,50,49,46,56,49,57,52,50,57,44,52,52,46,50,54,50,51,57,52,93,44,91,45,49,50,49,46,55,54,56,48,55,44,52,52,46,49,49,53,50,52,53,93,44,91,45,49,50,49,46,56,53,55,48,54,51,44,52,51,46,57,54,53,50,52,56,93,44,91,45,49,50,49,46,57,55,50,57,51,49,44,52,51,46,56,54,49,49,53,54,93,44,91,45,49,50,50,46,48,48,50,51,54,50,44,52,51,46,54,49,53,52,57,56,93,44,91,45,49,50,49,46,51,51,50,57,54,57,44,52,51,46,54,49,54,54,52,53,93,44,91,45,49,49,57,46,56,57,54,53,56,49,44,52,51,46,54,49,49,49,54,52,93,44,91,45,49,49,57,46,56,57,55,52,51,52,44,52,51,46,54,57,56,50,93,44,91,45,49,50,48,46,50,53,55,55,55,55,44,52,51,46,54,57,56,55,54,50,93,44,91,45,49,50,48,46,51,55,56,49,48,55,44,52,51,46,55,56,53,52,50,57,93,44,91,45,49,50,48,46,51,55,56,55,52,44,52,51,46,56,55,50,51,54,50,93,44,91,45,49,50,48,46,55,52,55,56,52,56,44,52,51,46,56,55,49,51,51,49,93,44,91,45,49,50,48,46,55,52,56,50,52,57,44,52,51,46,57,53,55,51,49,93,44,91,45,49,50,48,46,57,56,54,53,56,55,44,52,51,46,57,54,48,56,53,50,93,44,91,45,49,50,48,46,57,56,55,50,55,49,44,52,52,46,49,51,52,48,50,54,93,44,91,45,49,50,49,46,49,48,50,55,55,51,44,52,52,46,49,51,56,49,50,53,93,44,91,45,49,50,49,46,49,48,55,53,51,52,44,52,52,46,51,57,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,80,111,116,116,97,119,97,116,116,97,109,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,53,48,51,44,34,98,101,100,115,34,58,53,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,51,55,55,57,49,44,52,49,46,51,57,48,55,53,50,93,44,91,45,57,53,46,57,50,51,53,52,56,44,52,49,46,49,57,48,56,53,93,44,91,45,57,53,46,56,56,48,53,50,49,44,52,49,46,49,53,57,56,55,52,93,44,91,45,57,53,46,51,56,52,51,52,57,44,52,49,46,49,54,48,48,49,49,93,44,91,45,57,53,46,49,53,53,56,53,49,44,52,49,46,49,53,57,50,51,54,93,44,91,45,57,53,46,49,53,52,55,50,50,44,52,49,46,53,48,53,50,49,49,93,44,91,45,57,53,46,52,57,55,57,57,55,44,52,49,46,53,48,54,48,55,52,93,44,91,45,57,53,46,57,57,54,49,57,52,44,52,49,46,53,48,54,57,54,93,44,91,45,57,53,46,57,51,55,55,57,49,44,52,49,46,51,57,48,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,57,34,44,34,78,65,77,69,34,58,34,87,114,105,103,104,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,56,54,54,55,49,44,51,55,46,52,56,49,53,52,53,93,44,91,45,57,50,46,54,56,53,56,54,55,44,51,55,46,48,54,55,48,53,49,93,44,91,45,57,50,46,50,53,49,51,53,57,44,51,55,46,48,53,57,54,53,51,93,44,91,45,57,50,46,50,53,50,50,54,49,44,51,55,46,52,55,50,57,52,52,93,44,91,45,57,50,46,54,56,54,54,55,49,44,51,55,46,52,56,49,53,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,84,111,111,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,55,54,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,49,57,51,52,49,44,52,56,46,57,57,56,52,55,53,93,44,91,45,49,49,50,46,49,56,52,55,56,52,44,52,56,46,52,55,55,53,55,56,93,44,91,45,49,49,50,46,48,48,52,52,51,54,44,52,56,46,52,52,56,56,56,54,93,44,91,45,49,49,49,46,57,57,48,56,56,57,44,52,56,46,51,57,52,50,54,53,93,44,91,45,49,49,49,46,55,57,53,57,49,44,52,56,46,51,57,51,48,56,49,93,44,91,45,49,49,49,46,54,54,53,55,53,54,44,52,56,46,51,52,57,52,53,54,93,44,91,45,49,49,49,46,54,54,53,53,57,57,44,52,56,46,50,49,57,53,52,57,93,44,91,45,49,49,49,46,52,48,57,48,49,56,44,52,56,46,50,49,57,53,52,50,93,44,91,45,49,49,49,46,50,55,53,51,48,54,44,52,56,46,50,49,57,53,51,49,93,44,91,45,49,49,49,46,50,54,57,56,54,50,44,52,56,46,57,57,55,50,51,93,44,91,45,49,49,50,46,49,57,51,52,49,44,52,56,46,57,57,56,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,84,105,111,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,50,53,51,51,53,57,44,52,50,46,52,48,55,53,54,56,93,44,91,45,55,54,46,50,53,48,49,52,57,44,52,50,46,50,57,54,54,55,54,93,44,91,45,55,54,46,52,49,53,51,48,53,44,52,50,46,51,49,56,51,54,56,93,44,91,45,55,54,46,53,51,56,51,52,57,44,52,50,46,50,56,49,55,53,53,93,44,91,45,55,54,46,53,53,55,54,50,52,44,52,50,46,48,48,48,49,54,93,44,91,45,55,54,46,49,52,53,53,49,57,44,52,49,46,57,57,56,56,52,50,93,44,91,45,55,54,46,49,48,53,56,52,44,52,49,46,57,57,56,56,53,56,93,44,91,45,55,54,46,49,49,54,50,50,53,44,52,50,46,49,56,53,54,49,93,44,91,45,55,54,46,48,56,49,49,51,52,44,52,50,46,50,51,48,52,57,53,93,44,91,45,55,54,46,49,51,48,49,56,49,44,52,50,46,52,49,48,51,51,55,93,44,91,45,55,54,46,50,53,51,51,53,57,44,52,50,46,52,48,55,53,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,55,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,53,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,51,52,52,54,51,44,51,48,46,52,48,50,56,52,51,93,44,91,45,57,55,46,48,56,49,56,51,52,44,51,48,46,50,53,57,51,53,55,93,44,91,45,57,55,46,48,50,52,52,54,49,44,51,48,46,48,53,49,52,51,53,93,44,91,45,57,54,46,55,57,52,53,53,50,44,51,48,46,49,54,48,53,52,53,93,44,91,45,57,54,46,54,52,48,56,56,51,44,51,48,46,50,57,54,55,56,54,93,44,91,45,57,54,46,55,53,51,56,51,53,44,51,48,46,51,50,57,51,52,56,93,44,91,45,57,54,46,57,54,51,54,50,57,44,51,48,46,53,53,55,49,54,57,93,44,91,45,57,55,46,49,53,53,50,49,57,44,51,48,46,52,53,55,51,52,52,93,44,91,45,57,55,46,51,51,52,52,54,51,44,51,48,46,52,48,50,56,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,57,48,50,44,34,98,101,100,115,34,58,52,53,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,55,56,49,51,50,44,51,51,46,55,52,51,53,48,55,93,44,91,45,56,52,46,54,53,54,52,51,51,44,51,51,46,54,53,57,52,48,57,93,44,91,45,56,52,46,56,48,56,57,51,52,44,51,51,46,53,55,52,48,56,53,93,44,91,45,56,52,46,56,53,48,55,49,51,44,51,51,46,53,49,49,52,53,55,93,44,91,45,56,52,46,54,48,57,53,52,44,51,51,46,53,48,50,53,49,49,93,44,91,45,56,52,46,52,53,56,54,54,53,44,51,51,46,53,53,48,57,51,51,93,44,91,45,56,52,46,52,53,55,55,50,54,44,51,51,46,54,52,56,56,54,54,93,44,91,45,56,52,46,51,53,48,50,50,52,44,51,51,46,54,52,55,57,48,56,93,44,91,45,56,52,46,51,52,55,56,49,57,44,51,51,46,57,54,51,50,56,56,93,44,91,45,56,52,46,50,55,55,48,57,51,44,51,51,46,57,53,55,54,49,52,93,44,91,45,56,52,46,48,57,55,54,57,51,44,51,52,46,48,53,48,55,48,56,93,44,91,45,56,52,46,50,53,56,57,51,52,44,51,52,46,49,48,57,53,51,57,93,44,91,45,56,52,46,50,53,56,55,52,51,44,51,52,46,49,56,53,57,48,57,93,44,91,45,56,52,46,51,50,56,50,54,51,44,51,52,46,49,56,54,49,52,52,93,44,91,45,56,52,46,52,49,56,57,50,55,44,51,52,46,48,55,51,50,57,56,93,44,91,45,56,52,46,51,56,51,48,50,55,44,51,51,46,57,54,51,56,93,44,91,45,56,52,46,52,55,49,51,51,44,51,51,46,56,50,53,57,48,53,93,44,91,45,56,52,46,53,55,56,49,51,50,44,51,51,46,55,52,51,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,57,48,51,44,34,98,101,100,115,34,58,51,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,50,56,53,49,50,44,51,50,46,48,56,52,52,55,53,93,44,91,45,57,53,46,52,52,54,48,50,52,44,51,49,46,56,52,55,57,56,55,93,44,91,45,57,53,46,51,54,54,49,56,55,44,51,49,46,55,50,54,55,53,51,93,44,91,45,57,53,46,50,56,57,54,54,49,44,51,49,46,54,56,51,57,57,55,93,44,91,45,57,53,46,50,55,51,50,48,51,44,51,49,46,53,57,50,56,56,54,93,44,91,45,57,53,46,49,52,57,49,57,56,44,51,49,46,53,54,56,56,48,55,93,44,91,45,57,53,46,48,48,51,51,52,53,44,51,49,46,52,50,53,55,49,93,44,91,45,57,52,46,56,54,53,56,53,55,44,51,49,46,53,50,54,57,49,54,93,44,91,45,57,52,46,57,54,53,50,50,51,44,51,49,46,54,57,51,56,56,53,93,44,91,45,57,52,46,57,51,55,53,51,50,44,51,49,46,56,52,53,53,53,53,93,44,91,45,57,52,46,57,56,53,48,51,55,44,51,49,46,56,52,54,49,57,51,93,44,91,45,57,52,46,57,56,53,50,55,50,44,51,50,46,49,51,55,57,56,57,93,44,91,45,57,53,46,52,53,57,57,48,56,44,51,50,46,49,51,53,53,53,57,93,44,91,45,57,53,46,52,50,56,53,49,50,44,51,50,46,48,56,52,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,117,100,114,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,51,53,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,49,48,51,56,55,44,51,57,46,48,54,52,50,48,52,93,44,91,45,57,49,46,54,51,51,57,57,56,44,51,57,46,48,53,57,48,53,55,93,44,91,45,57,49,46,54,50,57,53,57,56,44,51,57,46,49,52,55,56,53,51,93,44,91,45,57,49,46,52,48,57,48,51,51,44,51,57,46,49,52,50,53,52,50,93,44,91,45,57,49,46,52,51,56,50,51,53,44,51,57,46,51,49,56,55,49,54,93,44,91,45,57,49,46,55,49,55,57,54,56,44,51,57,46,51,51,57,49,50,50,93,44,91,45,57,50,46,51,49,48,48,50,56,44,51,57,46,51,52,55,55,57,53,93,44,91,45,57,50,46,51,49,52,52,55,49,44,51,57,46,50,52,54,52,53,52,93,44,91,45,57,50,46,49,48,52,51,55,52,44,51,57,46,50,51,57,56,48,57,93,44,91,45,57,50,46,49,49,48,51,56,55,44,51,57,46,48,54,52,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,108,108,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,53,54,56,44,34,98,101,100,115,34,58,49,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,44,91,45,56,48,46,57,48,48,49,57,54,44,51,50,46,56,51,50,56,49,51,93,44,91,45,56,48,46,56,50,54,51,48,57,44,51,50,46,55,48,52,51,50,49,93,44,91,45,56,48,46,54,56,52,56,53,51,44,51,50,46,54,53,54,48,57,55,93,44,91,45,56,48,46,53,48,50,57,52,52,44,51,50,46,52,57,53,54,53,50,93,44,91,45,56,48,46,51,48,53,55,49,49,44,51,50,46,51,57,55,53,56,57,93,44,91,45,56,48,46,50,50,51,53,57,44,51,50,46,52,56,50,53,54,53,93,44,91,45,56,48,46,52,49,54,53,56,54,44,51,50,46,53,52,54,51,49,56,93,44,91,45,56,48,46,52,48,51,50,56,50,44,51,50,46,54,53,49,54,50,50,93,44,91,45,56,48,46,52,53,51,54,51,44,51,50,46,55,51,57,57,93,44,91,45,56,48,46,52,48,49,51,52,44,51,50,46,56,53,56,52,54,54,93,44,91,45,56,48,46,52,48,50,50,50,54,44,51,51,46,48,53,51,50,51,56,93,44,91,45,56,48,46,54,50,51,56,49,53,44,51,51,46,48,54,54,57,50,55,93,44,91,45,56,48,46,55,57,48,50,57,54,44,51,51,46,49,56,48,56,52,93,44,91,45,56,48,46,55,57,55,57,49,50,44,51,51,46,49,55,54,57,52,52,93,44,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,54,53,50,44,34,98,101,100,115,34,58,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,48,56,56,51,50,44,52,51,46,49,57,55,55,50,52,93,44,91,45,56,57,46,48,49,51,53,56,50,44,52,50,46,56,52,55,54,51,93,44,91,45,56,56,46,55,55,55,48,55,54,44,52,50,46,56,52,50,54,57,52,93,44,91,45,56,56,46,53,52,49,53,51,53,44,52,50,46,56,52,50,57,57,54,93,44,91,45,56,56,46,53,51,53,56,52,51,44,52,51,46,49,57,54,48,52,56,93,44,91,45,56,57,46,48,48,56,56,51,50,44,52,51,46,49,57,55,55,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,54,50,51,44,34,98,101,100,115,34,58,49,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,56,48,57,56,49,54,44,51,54,46,49,52,57,53,54,55,93,44,91,45,57,48,46,56,53,50,48,54,52,44,51,53,46,57,54,56,48,57,50,93,44,91,45,57,48,46,51,56,55,51,55,56,44,51,53,46,57,54,52,55,48,56,93,44,91,45,57,48,46,51,55,55,56,57,44,51,53,46,57,57,53,54,56,51,93,44,91,45,57,48,46,49,57,48,50,48,55,44,51,54,46,50,48,49,51,54,49,93,44,91,45,57,48,46,51,49,57,56,50,44,51,54,46,50,53,57,49,52,52,93,44,91,45,57,48,46,56,48,54,54,49,53,44,51,54,46,50,54,54,56,54,53,93,44,91,45,57,48,46,56,48,57,56,49,54,44,51,54,46,49,52,57,53,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,72,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,55,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,57,52,52,57,51,57,44,51,52,46,55,52,56,50,56,49,93,44,91,45,49,48,48,46,57,52,54,49,51,50,44,51,52,46,51,49,50,55,53,57,93,44,91,45,49,48,48,46,53,49,55,51,52,44,51,52,46,51,49,52,49,48,50,93,44,91,45,49,48,48,46,52,49,55,55,56,51,44,51,52,46,51,49,51,53,50,52,93,44,91,45,49,48,48,46,52,49,53,56,57,53,44,51,52,46,55,52,55,53,50,53,93,44,91,45,49,48,48,46,53,52,48,55,48,51,44,51,52,46,55,52,55,55,50,51,93,44,91,45,49,48,48,46,57,52,52,57,51,57,44,51,52,46,55,52,56,50,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,117,114,110,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,57,51,55,48,53,44,52,54,46,49,53,55,51,50,49,93,44,91,45,57,50,46,51,53,48,52,48,55,44,52,54,46,48,49,54,51,54,56,93,44,91,45,57,50,46,55,49,50,53,48,51,44,52,53,46,56,57,49,55,48,53,93,44,91,45,57,50,46,56,52,49,48,53,49,44,52,53,46,55,51,48,48,50,52,93,44,91,45,57,50,46,56,56,55,48,54,55,44,52,53,46,54,52,52,49,52,56,93,44,91,45,57,50,46,53,50,57,49,48,55,44,52,53,46,54,52,50,48,55,54,93,44,91,45,57,50,46,53,50,56,49,57,56,44,52,53,46,55,50,56,54,56,93,44,91,45,57,50,46,49,53,52,52,52,51,44,52,53,46,55,50,53,54,49,54,93,44,91,45,57,50,46,49,53,52,56,56,56,44,52,53,46,54,51,57,55,52,50,93,44,91,45,57,50,46,48,51,49,52,49,55,44,52,53,46,54,51,57,57,50,56,93,44,91,45,57,50,46,48,52,57,54,51,54,44,52,54,46,49,53,55,53,57,55,93,44,91,45,57,50,46,50,57,51,55,48,53,44,52,54,46,49,53,55,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,84,111,114,114,97,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,49,49,55,56,49,44,51,52,46,56,55,48,50,53,50,93,44,91,45,49,48,54,46,52,54,51,56,54,56,44,51,52,46,56,55,48,49,57,52,93,44,91,45,49,48,54,46,52,54,57,55,57,44,51,52,46,53,50,49,50,49,55,93,44,91,45,49,48,54,46,52,49,54,57,50,52,44,51,52,46,52,51,57,54,56,55,93,44,91,45,49,48,54,46,52,49,53,57,55,50,44,51,52,46,50,53,57,56,50,50,93,44,91,45,49,48,53,46,57,50,53,57,54,56,44,51,52,46,50,53,57,57,57,93,44,91,45,49,48,53,46,51,49,51,50,49,56,44,51,52,46,50,54,48,48,51,49,93,44,91,45,49,48,53,46,51,49,51,48,55,50,44,51,52,46,51,52,55,50,48,53,93,44,91,45,49,48,53,46,50,57,48,51,57,54,44,51,52,46,54,48,54,55,54,54,93,44,91,45,49,48,53,46,50,57,48,55,57,49,44,51,53,46,48,52,50,48,51,93,44,91,45,49,48,53,46,55,49,52,52,49,57,44,51,53,46,48,52,49,54,48,53,93,44,91,45,49,48,54,46,50,52,51,56,55,52,44,51,53,46,48,52,48,48,48,51,93,44,91,45,49,48,54,46,50,52,51,55,54,50,44,51,52,46,57,53,51,51,53,53,93,44,91,45,49,48,54,46,49,52,57,55,51,55,44,51,52,46,56,55,48,49,52,50,93,44,91,45,49,48,54,46,52,49,49,55,56,49,44,51,52,46,56,55,48,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,80,97,99,105,102,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,50,56,49,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,49,55,53,49,51,49,44,52,54,46,55,57,51,55,51,50,93,44,91,45,49,50,52,46,49,50,57,57,53,55,44,52,54,46,52,50,54,57,53,57,93,44,91,45,49,50,52,46,49,53,57,53,52,54,44,52,54,46,50,54,49,49,51,50,93,44,91,45,49,50,51,46,57,55,54,50,55,53,44,52,54,46,50,54,57,57,48,55,93,44,91,45,49,50,51,46,56,55,49,56,54,57,44,52,54,46,50,51,52,57,52,57,93,44,91,45,49,50,51,46,55,50,56,51,49,54,44,52,54,46,50,54,52,53,52,49,93,44,91,45,49,50,51,46,55,50,54,53,53,55,44,52,54,46,51,56,52,56,55,50,93,44,91,45,49,50,51,46,51,53,56,51,51,52,44,52,54,46,51,56,52,48,50,53,93,44,91,45,49,50,51,46,51,55,48,57,53,44,52,54,46,55,57,50,49,50,57,93,44,91,45,49,50,52,46,49,55,53,49,51,49,44,52,54,46,55,57,51,55,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,80,101,110,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,48,50,48,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,49,52,48,48,55,44,51,52,46,55,50,49,55,57,53,93,44,91,45,55,56,46,50,53,52,52,52,49,44,51,52,46,53,53,51,53,57,53,93,44,91,45,55,56,46,49,55,54,53,48,49,44,51,52,46,52,54,53,51,53,54,93,44,91,45,55,56,46,50,53,54,48,56,53,44,51,52,46,51,57,57,52,54,57,93,44,91,45,55,56,46,49,54,50,51,53,44,51,52,46,51,53,55,48,48,55,93,44,91,45,55,56,46,48,50,57,57,50,50,44,51,52,46,51,51,49,55,54,56,93,44,91,45,55,55,46,56,50,51,49,48,50,44,51,52,46,51,56,57,50,56,55,93,44,91,45,55,55,46,54,55,53,50,55,54,44,51,52,46,50,53,51,49,51,93,44,91,45,55,55,46,52,56,52,53,51,56,44,51,52,46,51,57,57,55,48,53,93,44,91,45,55,55,46,53,55,52,57,50,52,44,51,52,46,52,55,56,54,56,49,93,44,91,45,55,55,46,54,56,48,49,50,55,44,51,52,46,55,50,48,53,57,53,93,44,91,45,55,56,46,49,49,52,48,48,55,44,51,52,46,55,50,49,55,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,49,34,44,34,78,65,77,69,34,58,34,72,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,57,48,49,44,34,98,101,100,115,34,58,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,49,55,48,54,54,44,51,50,46,53,53,53,52,56,52,93,44,91,45,57,56,46,48,54,54,56,51,54,44,51,50,46,53,53,56,56,50,50,93,44,91,45,57,56,46,48,54,56,53,52,53,44,51,50,46,53,49,49,54,50,54,93,44,91,45,57,55,46,57,52,53,54,50,53,44,51,50,46,50,51,51,52,54,56,93,44,91,45,57,55,46,55,56,50,55,54,44,51,50,46,51,49,54,52,57,51,93,44,91,45,57,55,46,54,49,53,50,56,54,44,51,50,46,51,49,56,54,49,56,93,44,91,45,57,55,46,54,49,55,48,54,54,44,51,50,46,53,53,53,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,83,116,97,110,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,44,91,45,49,48,49,46,49,53,52,53,49,54,44,52,52,46,54,56,57,57,52,55,93,44,91,45,49,48,49,46,49,54,54,55,53,51,44,52,52,46,49,54,56,48,56,53,93,44,91,45,49,48,49,46,48,52,54,57,49,54,44,52,52,46,49,54,56,52,56,52,93,44,91,45,49,48,48,46,51,54,55,50,48,55,44,52,52,46,49,54,56,54,57,52,93,44,91,45,49,48,48,46,51,54,55,50,52,55,44,52,52,46,49,57,52,54,50,49,93,44,91,45,57,57,46,57,51,56,50,49,55,44,52,52,46,49,57,53,49,57,53,93,44,91,45,49,48,48,46,48,56,53,51,51,44,52,52,46,51,48,56,52,53,49,93,44,91,45,49,48,48,46,51,54,53,51,57,44,52,52,46,51,53,53,53,50,52,93,44,91,45,49,48,48,46,51,56,54,51,55,54,44,52,52,46,52,52,48,48,48,56,93,44,91,45,49,48,48,46,53,55,53,55,57,54,44,52,52,46,52,57,49,55,49,51,93,44,91,45,49,48,48,46,53,50,54,52,57,56,44,52,52,46,53,52,55,52,50,50,93,44,91,45,49,48,48,46,54,52,48,48,54,49,44,52,52,46,53,56,51,55,50,51,93,44,91,45,49,48,48,46,54,49,51,56,48,53,44,52,52,46,55,48,55,49,51,53,93,44,91,45,49,48,48,46,55,49,55,54,52,52,44,52,52,46,55,55,48,57,51,93,44,91,45,49,48,48,46,56,50,57,55,57,53,44,52,52,46,55,56,51,50,52,56,93,44,91,45,49,48,49,46,48,50,50,54,49,49,44,52,52,46,55,50,52,49,53,51,93,44,91,45,49,48,49,46,49,51,54,56,51,56,44,52,52,46,55,52,55,49,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,48,52,56,54,44,34,98,101,100,115,34,58,49,55,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,48,49,48,54,50,44,51,57,46,55,50,50,52,49,56,93,44,91,45,49,50,48,46,48,48,51,55,55,51,44,51,57,46,52,52,53,48,53,54,93,44,91,45,49,50,48,46,48,48,54,51,50,51,44,51,57,46,51,49,54,52,57,54,93,44,91,45,49,50,48,46,48,48,52,50,57,55,44,51,57,46,49,54,53,54,48,51,93,44,91,45,49,49,57,46,56,56,48,55,56,55,44,51,57,46,49,54,53,53,48,57,93,44,91,45,49,49,57,46,55,49,50,54,52,53,44,51,57,46,50,53,48,56,55,49,93,44,91,45,49,49,57,46,54,55,55,52,55,54,44,51,57,46,50,56,48,56,55,49,93,44,91,45,49,49,57,46,54,57,53,54,52,51,44,51,57,46,53,50,48,48,50,51,93,44,91,45,49,49,57,46,50,56,51,54,51,55,44,51,57,46,54,50,49,53,54,49,93,44,91,45,49,49,57,46,49,56,57,51,52,50,44,51,57,46,54,53,48,56,55,93,44,91,45,49,49,57,46,50,50,53,49,55,54,44,51,57,46,57,57,57,51,56,53,93,44,91,45,49,49,57,46,51,51,57,50,57,54,44,51,57,46,57,57,56,54,48,57,93,44,91,45,49,49,57,46,51,51,56,53,48,52,44,52,48,46,53,49,55,56,48,53,93,44,91,45,49,49,57,46,51,49,51,48,51,55,44,52,48,46,53,49,56,51,49,52,93,44,91,45,49,49,57,46,51,48,57,53,57,56,44,52,48,46,57,54,48,51,55,56,93,44,91,45,49,49,57,46,51,50,57,55,57,49,44,52,48,46,57,54,48,51,57,52,93,44,91,45,49,49,57,46,51,50,52,49,56,52,44,52,49,46,57,57,51,57,50,51,93,44,91,45,49,49,57,46,51,54,48,49,50,50,44,52,49,46,57,57,52,50,55,56,93,44,91,45,49,49,57,46,57,57,57,50,51,52,44,52,49,46,57,57,52,57,52,52,93,44,91,45,49,49,57,46,57,57,57,56,54,54,44,52,49,46,49,56,51,57,55,52,93,44,91,45,49,49,57,46,57,57,53,55,48,53,44,52,48,46,51,55,53,56,51,93,44,91,45,49,50,48,46,48,48,49,48,54,50,44,51,57,46,55,50,50,52,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,97,108,108,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,51,51,52,48,49,44,51,55,46,50,50,52,57,57,49,93,44,91,45,56,57,46,48,50,57,56,54,54,44,51,55,46,50,49,49,48,54,53,93,44,91,45,56,57,46,49,55,50,48,56,49,44,51,55,46,48,54,56,51,49,93,44,91,45,56,57,46,49,51,50,57,49,53,44,51,54,46,57,56,50,48,53,55,93,44,91,45,56,57,46,49,48,48,56,54,52,44,51,54,46,57,52,52,48,49,54,93,44,91,45,56,56,46,57,56,57,55,57,55,44,51,54,46,57,49,57,51,51,93,44,91,45,56,56,46,56,49,53,57,53,50,44,51,54,46,57,53,52,49,93,44,91,45,56,56,46,57,51,51,52,48,49,44,51,55,46,50,50,52,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,114,99,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,44,91,45,57,56,46,52,50,48,54,54,54,44,51,51,46,51,57,54,49,57,53,93,44,91,45,57,56,46,52,50,49,52,49,57,44,51,51,46,52,54,54,55,57,55,93,44,91,45,57,56,46,52,50,51,53,55,55,44,51,51,46,56,51,54,48,52,55,93,44,91,45,57,56,46,57,53,51,50,48,50,44,51,51,46,56,51,52,48,50,53,93,44,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,57,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,55,53,54,53,44,51,51,46,56,51,52,48,48,53,93,44,91,45,57,57,46,52,55,52,52,57,56,44,51,51,46,55,51,51,56,52,57,93,44,91,45,57,57,46,52,55,50,52,52,52,44,51,51,46,51,57,57,48,50,51,93,44,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,44,91,45,57,56,46,57,53,51,50,48,50,44,51,51,46,56,51,52,48,50,53,93,44,91,45,57,57,46,52,55,53,54,53,44,51,51,46,56,51,52,48,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,48,53,34,44,34,78,65,77,69,34,58,34,83,97,110,32,65,117,103,117,115,116,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,50,55,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,51,57,57,48,57,49,44,51,49,46,54,53,51,53,57,54,93,44,91,45,57,52,46,51,49,49,49,44,51,49,46,53,56,56,52,56,50,93,44,91,45,57,52,46,51,50,54,54,49,54,44,51,49,46,50,50,52,55,53,52,93,44,91,45,57,52,46,49,50,57,54,51,50,44,51,49,46,48,57,57,50,56,93,44,91,45,57,52,46,48,51,57,48,51,52,44,51,49,46,49,51,52,50,55,49,93,44,91,45,57,52,46,48,52,52,49,53,52,44,51,49,46,52,48,57,57,55,57,93,44,91,45,57,51,46,57,56,51,50,51,57,44,51,49,46,52,54,54,49,49,52,93,44,91,45,57,51,46,57,56,52,52,54,49,44,51,49,46,53,54,57,52,49,57,93,44,91,45,57,52,46,48,57,48,55,49,55,44,51,49,46,54,50,48,54,48,57,93,44,91,45,57,52,46,51,57,57,48,57,49,44,51,49,46,54,53,51,53,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,83,116,111,114,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,50,56,51,54,51,55,44,51,57,46,54,50,49,53,54,49,93,44,91,45,49,49,57,46,54,57,53,54,52,51,44,51,57,46,53,50,48,48,50,51,93,44,91,45,49,49,57,46,54,55,55,52,55,54,44,51,57,46,50,56,48,56,55,49,93,44,91,45,49,49,57,46,55,49,50,54,52,53,44,51,57,46,50,53,48,56,55,49,93,44,91,45,49,49,57,46,52,55,56,56,48,54,44,51,57,46,51,51,55,52,49,54,93,44,91,45,49,49,57,46,50,56,51,54,51,55,44,51,57,46,54,50,49,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,57,34,44,34,78,65,77,69,34,58,34,83,99,104,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,51,50,49,54,44,51,50,46,51,57,55,54,52,57,93,44,91,45,56,52,46,51,57,50,51,49,54,44,51,50,46,52,49,52,48,52,54,93,44,91,45,56,52,46,52,51,48,50,49,56,44,51,50,46,49,54,54,50,53,55,93,44,91,45,56,52,46,49,56,51,53,54,57,44,51,50,46,49,53,56,52,57,51,93,44,91,45,56,52,46,49,56,49,54,53,55,44,51,50,46,50,50,57,55,48,51,93,44,91,45,56,52,46,50,53,52,54,49,51,44,51,50,46,51,55,50,48,53,51,93,44,91,45,56,52,46,51,54,51,50,49,54,44,51,50,46,51,57,55,54,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,70,97,105,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,52,51,52,56,44,34,98,101,100,115,34,58,49,56,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,53,51,48,48,54,55,44,52,49,46,53,50,55,49,57,52,93,44,91,45,55,51,46,53,52,52,55,50,56,44,52,49,46,51,54,54,51,55,53,93,44,91,45,55,51,46,52,56,50,54,57,53,44,52,49,46,50,49,50,55,55,50,93,44,91,45,55,51,46,55,50,55,55,55,53,44,52,49,46,49,48,48,54,57,54,93,44,91,45,55,51,46,54,49,50,56,56,53,44,52,48,46,57,53,48,57,52,51,93,44,91,45,55,51,46,52,51,49,57,49,57,44,52,48,46,57,56,57,48,48,57,93,44,91,45,55,50,46,57,57,57,53,52,55,44,52,49,46,48,56,55,49,48,56,93,44,91,45,55,51,46,49,48,55,52,53,50,44,52,49,46,49,54,56,51,57,55,93,44,91,45,55,51,46,48,54,55,56,53,49,44,52,49,46,51,48,48,57,57,54,93,44,91,45,55,51,46,51,49,48,52,55,51,44,52,49,46,52,54,56,56,49,53,93,44,91,45,55,51,46,52,52,49,52,54,54,44,52,49,46,52,57,49,50,57,52,93,44,91,45,55,51,46,53,49,56,48,56,44,52,49,46,54,54,54,55,50,51,93,44,91,45,55,51,46,53,51,48,48,54,55,44,52,49,46,53,50,55,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,51,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,54,52,52,49,44,51,49,46,48,57,52,50,49,49,93,44,91,45,57,53,46,57,55,51,56,52,49,44,51,49,46,48,57,50,49,53,93,44,91,45,57,54,46,50,52,49,48,50,44,51,48,46,57,55,51,55,51,55,93,44,91,45,57,54,46,49,54,56,51,55,44,51,48,46,56,50,50,57,57,55,93,44,91,45,57,53,46,56,54,51,48,53,57,44,51,48,46,56,54,52,49,50,53,93,44,91,45,57,53,46,54,49,55,56,55,50,44,51,48,46,57,51,48,52,49,56,93,44,91,45,57,53,46,54,55,50,53,57,55,44,51,48,46,57,55,54,50,55,56,93,44,91,45,57,53,46,54,53,54,52,56,55,44,51,49,46,48,55,57,51,51,57,93,44,91,45,57,53,46,55,54,52,52,49,44,51,49,46,48,57,52,50,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,111,97,113,117,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,50,50,49,50,44,34,98,101,100,115,34,58,49,51,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,48,50,55,48,56,52,44,51,56,46,51,48,48,50,53,50,93,44,91,45,49,50,49,46,51,52,52,48,50,52,44,51,56,46,50,50,56,50,54,93,44,91,45,49,50,49,46,52,55,48,57,53,56,44,51,56,46,50,53,57,57,48,50,93,44,91,45,49,50,49,46,53,56,48,48,50,50,44,51,56,46,48,57,52,52,49,52,93,44,91,45,49,50,49,46,53,53,54,57,57,55,44,51,55,46,56,49,54,52,56,56,93,44,91,45,49,50,49,46,53,53,54,54,53,53,44,51,55,46,53,52,50,55,51,50,93,44,91,45,49,50,49,46,52,55,49,57,50,53,44,51,55,46,52,56,49,55,56,51,93,44,91,45,49,50,49,46,49,53,53,56,52,57,44,51,55,46,55,49,57,56,52,52,93,44,91,45,49,50,48,46,57,50,50,49,55,52,44,51,55,46,55,52,55,56,48,54,93,44,91,45,49,50,48,46,57,50,54,52,52,57,44,51,56,46,48,55,55,52,50,49,93,44,91,45,49,50,48,46,57,57,53,52,57,55,44,51,56,46,50,50,53,52,48,50,93,44,91,45,49,50,49,46,48,50,55,48,56,52,44,51,56,46,51,48,48,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,87,105,110,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,53,56,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,48,56,56,50,53,53,44,51,51,46,50,56,54,48,48,51,93,44,91,45,56,57,46,49,48,56,57,44,51,51,46,49,57,56,48,53,57,93,44,91,45,56,57,46,50,49,51,52,50,50,44,51,51,46,49,57,55,53,52,51,93,44,91,45,56,57,46,50,49,51,57,50,49,44,51,51,46,49,48,57,52,48,50,93,44,91,45,56,57,46,51,49,55,56,53,53,44,51,51,46,49,48,56,56,55,49,93,44,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,44,91,45,56,56,46,57,49,52,52,49,51,44,51,50,46,57,50,54,54,93,44,91,45,56,56,46,56,49,50,55,56,50,44,51,50,46,57,50,53,57,55,51,93,44,91,45,56,56,46,56,49,51,48,53,51,44,51,51,46,50,56,54,52,50,52,93,44,91,45,56,57,46,48,56,56,50,53,53,44,51,51,46,50,56,54,48,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,54,56,50,55,44,51,56,46,53,56,53,52,52,56,93,44,91,45,56,53,46,51,49,52,48,48,54,44,51,56,46,52,57,50,53,57,50,93,44,91,45,56,53,46,50,56,51,48,56,50,44,51,56,46,51,53,56,48,53,52,93,44,91,45,56,52,46,57,57,55,54,54,55,44,51,56,46,51,51,53,53,56,54,93,44,91,45,56,52,46,56,55,48,52,56,50,44,51,56,46,51,53,54,55,53,49,93,44,91,45,56,52,46,56,56,48,50,52,56,44,51,56,46,52,49,54,49,56,93,44,91,45,56,53,46,48,50,57,56,56,56,44,51,56,46,53,49,48,55,54,53,93,44,91,45,56,53,46,48,55,52,53,56,51,44,51,56,46,53,57,54,56,51,56,93,44,91,45,56,53,46,49,54,56,50,55,44,51,56,46,53,56,53,52,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,51,48,53,50,56,44,51,55,46,56,57,49,53,51,56,93,44,91,45,56,53,46,48,50,53,48,50,49,44,51,55,46,54,55,56,56,53,52,93,44,91,45,56,52,46,55,52,52,56,56,56,44,51,55,46,55,49,51,48,55,53,93,44,91,45,56,52,46,55,49,54,57,50,53,44,51,55,46,56,49,53,51,56,57,93,44,91,45,56,52,46,55,48,57,57,49,56,44,51,55,46,56,54,49,57,53,50,93,44,91,45,56,52,46,55,57,54,51,50,55,44,51,55,46,57,55,48,48,56,56,93,44,91,45,56,52,46,57,51,51,48,56,53,44,51,55,46,57,53,52,49,56,54,93,44,91,45,56,53,46,48,51,48,53,50,56,44,51,55,46,56,57,49,53,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,87,104,101,101,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,54,49,49,53,53,44,52,50,46,48,56,56,53,49,56,93,44,91,45,57,56,46,55,53,57,49,51,51,44,52,49,46,55,52,48,51,56,50,93,44,91,45,57,56,46,55,53,50,50,50,53,44,52,49,46,55,52,48,51,55,50,93,44,91,45,57,56,46,50,57,53,55,54,44,52,49,46,55,52,49,49,55,56,93,44,91,45,57,56,46,50,57,53,54,48,50,44,52,49,46,57,49,52,57,53,52,93,44,91,45,57,56,46,51,48,48,53,57,50,44,52,50,46,48,56,56,56,53,51,93,44,91,45,57,56,46,55,54,49,49,53,53,44,52,50,46,48,56,56,53,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,54,55,54,49,51,44,51,56,46,54,49,56,52,50,93,44,91,45,56,51,46,53,50,48,55,53,53,44,51,56,46,55,48,51,48,57,52,93,44,91,45,56,51,46,54,52,52,57,49,51,44,51,56,46,54,51,54,51,52,51,93,44,91,45,56,51,46,54,52,49,56,53,50,44,51,56,46,53,50,53,51,56,49,93,44,91,45,56,51,46,53,56,48,53,54,54,44,51,56,46,52,51,48,49,54,57,93,44,91,45,56,51,46,52,53,50,56,52,56,44,51,56,46,51,56,49,55,57,57,93,44,91,45,56,51,46,51,52,49,51,52,55,44,51,56,46,51,49,57,53,50,49,93,44,91,45,56,51,46,50,51,50,56,57,53,44,51,56,46,51,51,56,55,56,54,93,44,91,45,56,51,46,49,54,54,52,49,57,44,51,56,46,53,48,51,57,54,53,93,44,91,45,56,51,46,48,55,51,54,51,51,44,51,56,46,53,57,48,52,51,56,93,44,91,45,56,51,46,48,51,48,56,53,56,44,51,56,46,55,50,53,53,50,52,93,44,91,45,56,51,46,49,51,52,55,53,52,44,51,56,46,54,51,50,48,49,51,93,44,91,45,56,51,46,50,54,55,54,49,51,44,51,56,46,54,49,56,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,51,56,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,54,54,49,52,44,52,54,46,48,50,49,54,49,93,44,91,45,57,54,46,50,53,52,48,50,50,44,52,53,46,55,53,57,56,50,93,44,91,45,57,53,46,55,53,56,53,48,56,44,52,53,46,55,53,57,57,51,50,93,44,91,45,57,53,46,55,54,57,55,53,44,52,54,46,49,48,55,52,53,93,44,91,45,57,54,46,50,54,53,51,54,54,44,52,54,46,49,48,56,54,49,93,44,91,45,57,54,46,50,54,54,49,52,44,52,54,46,48,50,49,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,72,117,109,112,104,114,101,121,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,53,51,50,51,51,44,51,51,46,51,50,57,52,56,52,93,44,91,45,57,48,46,53,53,53,50,49,49,44,51,51,46,50,55,48,53,51,51,93,44,91,45,57,48,46,55,49,54,50,55,55,44,51,51,46,50,55,48,48,51,50,93,44,91,45,57,48,46,55,48,49,56,52,53,44,51,51,46,48,57,54,50,57,52,93,44,91,45,57,48,46,54,53,54,54,51,50,44,51,50,46,57,50,50,53,49,93,44,91,45,57,48,46,52,52,57,56,57,51,44,51,50,46,57,50,51,50,57,93,44,91,45,57,48,46,51,54,52,48,51,49,44,51,51,46,48,49,48,53,57,54,93,44,91,45,57,48,46,52,50,56,55,55,52,44,51,51,46,49,48,55,57,51,50,93,44,91,45,57,48,46,51,51,48,51,49,50,44,51,51,46,49,51,55,56,49,56,93,44,91,45,57,48,46,51,51,49,53,56,57,44,51,51,46,51,48,50,56,50,53,93,44,91,45,57,48,46,52,53,51,50,51,51,44,51,51,46,51,50,57,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,51,56,55,44,34,98,101,100,115,34,58,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,56,56,50,56,56,44,51,49,46,54,57,57,51,48,51,93,44,91,45,56,56,46,48,55,50,50,51,52,44,51,49,46,53,57,52,53,93,44,91,45,56,55,46,57,48,55,51,57,57,44,51,49,46,52,57,52,52,51,56,93,44,91,45,56,55,46,56,56,56,56,53,55,44,51,49,46,51,54,52,48,50,51,93,44,91,45,56,55,46,57,53,48,55,57,53,44,51,49,46,50,57,57,52,54,51,93,44,91,45,56,55,46,57,52,54,53,56,56,44,51,49,46,49,57,50,57,51,93,44,91,45,56,55,46,56,55,51,56,56,55,44,51,49,46,50,48,49,52,57,54,93,44,91,45,56,55,46,55,54,53,49,53,50,44,51,49,46,50,57,55,51,52,54,93,44,91,45,56,55,46,55,48,54,48,52,53,44,51,49,46,52,48,48,57,53,55,93,44,91,45,56,55,46,54,48,51,49,51,55,44,51,49,46,52,48,57,53,53,54,93,44,91,45,56,55,46,53,54,53,55,48,56,44,51,49,46,52,56,49,54,56,51,93,44,91,45,56,55,46,53,54,54,56,52,49,44,51,49,46,54,57,55,49,49,53,93,44,91,45,56,55,46,53,48,48,57,51,44,51,49,46,56,50,57,50,53,49,93,44,91,45,56,55,46,54,50,48,49,49,50,44,51,49,46,56,50,55,49,50,51,93,44,91,45,56,55,46,54,54,55,55,54,57,44,51,49,46,57,57,49,51,53,53,93,44,91,45,56,56,46,48,55,51,52,57,44,51,49,46,57,57,48,49,56,50,93,44,91,45,56,56,46,49,56,48,51,56,52,44,51,49,46,56,49,52,53,52,54,93,44,91,45,56,56,46,48,56,56,50,56,56,44,51,49,46,54,57,57,51,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,97,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,53,51,55,56,44,51,56,46,53,50,49,54,53,55,93,44,91,45,57,54,46,56,49,57,53,48,57,44,51,56,46,53,50,50,52,52,57,93,44,91,45,57,54,46,56,52,48,55,55,50,44,51,56,46,48,56,53,54,50,50,93,44,91,45,57,54,46,53,50,50,55,56,50,44,51,56,46,48,56,54,51,55,93,44,91,45,57,54,46,51,53,56,48,57,57,44,51,56,46,48,56,53,56,49,55,93,44,91,45,57,54,46,51,53,55,50,55,55,44,51,56,46,49,55,50,54,54,93,44,91,45,57,54,46,51,53,51,55,56,44,51,56,46,53,50,49,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,49,34,44,34,78,65,77,69,34,58,34,84,114,105,103,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,52,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,56,55,54,57,57,54,44,51,54,46,57,54,48,49,49,54,93,44,91,45,56,56,46,49,53,55,51,52,55,44,51,54,46,56,54,55,49,56,51,93,44,91,45,56,56,46,49,49,48,56,51,49,44,51,54,46,55,52,55,49,53,93,44,91,45,56,56,46,48,55,48,53,52,49,44,51,54,46,54,55,56,50,53,53,93,44,91,45,56,55,46,54,57,52,49,57,50,44,51,54,46,54,51,55,49,48,56,93,44,91,45,56,55,46,54,53,57,55,50,52,44,51,54,46,57,54,54,51,57,55,93,44,91,45,56,55,46,55,51,51,51,54,56,44,51,55,46,48,48,50,49,48,51,93,44,91,45,56,55,46,56,55,54,57,57,54,44,51,54,46,57,54,48,49,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,111,117,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,51,53,50,44,34,98,101,100,115,34,58,56,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,56,55,54,53,49,44,51,49,46,51,48,56,54,55,55,93,44,91,45,56,53,46,52,49,55,52,51,52,44,51,49,46,51,49,52,57,55,51,93,44,91,45,56,53,46,52,56,53,56,53,52,44,51,49,46,50,52,54,48,57,54,93,44,91,45,56,53,46,54,54,53,55,55,53,44,51,49,46,50,54,55,53,57,49,93,44,91,45,56,53,46,55,49,48,51,51,51,44,51,49,46,49,57,53,49,55,51,93,44,91,45,56,53,46,52,56,53,55,54,44,51,49,46,49,57,57,56,56,54,93,44,91,45,56,53,46,52,56,56,50,57,56,44,51,48,46,57,57,55,48,54,52,93,44,91,45,56,53,46,48,48,50,52,57,57,44,51,49,46,48,48,48,54,56,53,93,44,91,45,56,53,46,48,50,56,53,54,52,44,51,49,46,48,55,53,53,50,51,93,44,91,45,56,53,46,48,57,57,54,52,55,44,51,49,46,49,54,52,57,52,50,93,44,91,45,56,53,46,48,56,55,54,53,49,44,51,49,46,51,48,56,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,117,114,111,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,55,55,55,49,44,52,51,46,57,51,53,50,50,51,93,44,91,45,57,56,46,55,57,52,53,56,56,44,52,51,46,52,57,57,49,56,55,93,44,91,45,57,56,46,55,48,53,55,56,50,44,52,51,46,52,57,57,51,49,57,93,44,91,45,57,56,46,51,50,48,53,57,53,44,52,51,46,52,57,56,54,53,49,93,44,91,45,57,56,46,51,50,53,50,52,50,44,52,51,46,56,53,49,48,53,56,93,44,91,45,57,56,46,51,51,49,53,48,56,44,52,51,46,57,51,55,55,48,56,93,44,91,45,57,56,46,56,48,55,55,55,49,44,52,51,46,57,51,53,50,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,65,108,101,117,116,105,97,110,115,32,69,97,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,50,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,56,46,56,57,51,53,56,53,44,53,54,46,57,52,53,48,53,57,93,44,91,45,49,53,57,46,49,55,51,57,49,52,44,53,54,46,56,49,52,52,53,93,44,91,45,49,53,57,46,57,48,53,49,51,57,44,53,54,46,53,55,56,49,55,53,93,44,91,45,49,54,48,46,50,50,53,52,49,54,44,53,54,46,52,51,51,54,93,44,91,45,49,54,48,46,52,49,51,49,53,55,44,53,54,46,51,50,49,55,51,52,93,44,91,45,49,54,48,46,54,49,54,48,51,53,44,53,54,46,48,54,55,52,50,49,93,44,91,45,49,54,49,46,50,49,49,49,48,56,44,53,54,46,48,54,55,52,49,93,44,91,45,49,54,49,46,56,50,53,55,53,44,53,53,46,57,52,50,54,53,53,93,44,91,45,49,54,50,46,50,56,57,55,57,49,44,53,53,46,55,50,52,56,54,54,93,44,91,45,49,54,50,46,53,52,55,50,50,56,44,53,53,46,53,50,56,55,52,53,93,44,91,45,49,54,50,46,57,51,53,49,54,49,44,53,53,46,51,56,50,48,53,49,93,44,91,45,49,54,51,46,49,53,48,52,53,53,44,53,53,46,50,50,57,53,48,53,93,44,91,45,49,54,51,46,54,51,48,54,57,50,44,53,53,46,48,57,51,50,50,57,93,44,91,45,49,54,51,46,57,53,48,49,55,54,44,53,53,46,48,55,56,56,49,50,93,44,91,45,49,54,52,46,51,48,55,53,50,53,44,53,52,46,57,53,49,52,53,56,93,44,91,45,49,54,52,46,52,49,56,49,53,49,44,53,52,46,57,55,57,53,53,56,93,44,91,45,49,54,52,46,54,49,52,50,53,53,44,53,52,46,57,50,51,56,55,55,93,44,91,45,49,54,52,46,55,56,50,55,56,44,53,52,46,54,57,49,55,48,50,93,44,91,45,49,54,52,46,57,57,57,52,56,50,44,53,52,46,54,50,54,50,52,57,93,44,91,45,49,54,52,46,57,57,53,54,51,44,53,52,46,52,53,55,51,48,57,93,44,91,45,49,54,52,46,57,48,49,50,57,55,44,53,52,46,51,55,52,54,53,49,93,44,91,45,49,54,52,46,54,49,55,49,48,57,44,53,52,46,51,51,56,56,55,52,93,44,91,45,49,54,52,46,52,49,52,57,56,55,44,53,52,46,51,54,56,56,50,51,93,44,91,45,49,54,52,46,49,50,50,54,55,49,44,53,52,46,53,53,54,49,49,57,93,44,91,45,49,54,51,46,55,49,50,55,57,55,44,53,52,46,53,55,48,49,57,49,93,44,91,45,49,54,51,46,53,57,51,53,54,51,44,53,52,46,53,52,49,49,52,93,44,91,45,49,54,51,46,52,49,51,57,51,56,44,53,52,46,54,48,48,51,55,56,93,44,91,45,49,54,51,46,48,53,57,49,52,49,44,53,52,46,54,48,54,50,48,51,93,44,91,45,49,54,50,46,57,54,56,54,48,54,44,53,52,46,55,48,56,55,48,50,93,44,91,45,49,54,51,46,49,48,52,57,51,53,44,53,52,46,56,48,57,51,56,53,93,44,91,45,49,54,50,46,56,57,51,57,48,51,44,53,52,46,56,52,52,50,51,56,93,44,91,45,49,54,50,46,54,53,49,49,48,53,44,53,52,46,57,50,50,49,53,55,93,44,91,45,49,54,50,46,53,53,52,57,51,49,44,53,52,46,55,52,57,51,52,52,93,44,91,45,49,54,50,46,52,53,57,56,55,55,44,53,52,46,54,54,54,53,50,52,93,44,91,45,49,54,50,46,52,55,57,56,49,53,44,53,52,46,53,52,48,57,51,50,93,44,91,45,49,54,50,46,51,54,53,48,51,53,44,53,52,46,53,48,55,54,57,51,93,44,91,45,49,54,50,46,50,51,57,52,51,44,53,52,46,54,51,56,55,48,56,93,44,91,45,49,54,50,46,49,48,52,56,52,54,44,53,52,46,54,49,56,50,56,54,93,44,91,45,49,54,49,46,57,54,54,56,52,52,44,53,52,46,55,49,52,56,48,50,93,44,91,45,49,54,49,46,56,52,49,48,49,54,44,53,52,46,54,56,52,53,49,54,93,44,91,45,49,54,49,46,53,54,52,55,52,52,44,53,52,46,55,57,55,49,57,55,93,44,91,45,49,54,49,46,54,53,57,52,56,49,44,53,52,46,57,53,54,51,56,51,93,44,91,45,49,54,49,46,52,55,48,48,56,54,44,53,52,46,57,52,57,55,50,57,93,44,91,45,49,54,48,46,57,53,51,52,50,52,44,53,53,46,51,50,53,51,54,55,93,44,91,45,49,54,48,46,56,57,57,54,55,54,44,53,53,46,48,57,53,51,53,93,44,91,45,49,54,48,46,53,57,56,54,57,49,44,53,53,46,48,57,52,48,53,54,93,44,91,45,49,54,48,46,53,49,57,52,54,57,44,53,53,46,48,50,53,49,50,51,93,44,91,45,49,54,48,46,51,53,51,54,44,53,53,46,49,57,51,54,53,53,93,44,91,45,49,54,48,46,50,54,49,57,49,57,44,53,53,46,48,51,53,50,48,49,93,44,91,45,49,54,48,46,51,52,51,51,57,51,44,53,52,46,57,51,48,56,56,49,93,44,91,45,49,54,48,46,51,48,50,56,49,50,44,53,52,46,56,50,57,55,52,54,93,44,91,45,49,54,48,46,48,57,56,48,50,51,44,53,52,46,56,56,53,52,49,54,93,44,91,45,49,53,57,46,56,52,54,48,57,57,44,53,52,46,57,48,50,52,51,53,93,44,91,45,49,53,57,46,55,51,52,55,51,53,44,53,52,46,57,57,48,50,52,53,93,44,91,45,49,53,57,46,53,56,48,51,52,49,44,53,52,46,57,56,55,53,57,56,93,44,91,45,49,53,57,46,51,54,50,50,57,55,44,53,52,46,56,50,56,51,49,53,93,44,91,45,49,53,57,46,50,48,49,53,49,53,44,53,52,46,56,51,51,54,55,50,93,44,91,45,49,53,57,46,49,49,49,55,57,49,44,53,52,46,57,49,53,54,57,93,44,91,45,49,53,57,46,50,53,49,53,49,52,44,53,53,46,48,48,54,54,57,57,93,44,91,45,49,53,57,46,50,53,50,56,51,52,44,53,53,46,49,48,54,49,55,49,93,44,91,45,49,53,57,46,52,49,48,56,56,54,44,53,53,46,49,50,51,52,57,54,93,44,91,45,49,53,57,46,51,57,56,48,54,51,44,53,53,46,50,57,51,51,55,93,44,91,45,49,53,57,46,53,52,52,51,51,53,44,53,53,46,51,50,56,52,48,55,93,44,91,45,49,53,57,46,54,54,48,50,48,54,44,53,53,46,50,52,50,57,49,93,44,91,45,49,54,48,46,48,52,49,49,54,50,44,53,53,46,52,52,56,56,55,57,93,44,91,45,49,53,57,46,57,53,49,49,51,56,44,53,53,46,53,48,55,53,56,51,93,44,91,45,49,53,57,46,53,51,56,49,53,51,44,53,53,46,53,51,50,48,48,54,93,44,91,45,49,53,57,46,52,52,54,56,54,56,44,53,53,46,54,51,56,53,51,49,93,44,91,45,49,53,57,46,53,54,49,52,53,49,44,53,53,46,54,51,56,52,52,51,93,44,91,45,49,53,57,46,53,54,49,51,54,44,53,53,46,56,56,55,49,57,55,93,44,91,45,49,53,57,46,56,54,55,57,55,49,44,53,53,46,56,56,55,49,57,51,93,44,91,45,49,53,57,46,56,48,54,52,48,54,44,53,53,46,57,55,51,57,49,57,93,44,91,45,49,53,57,46,56,48,54,51,56,57,44,53,54,46,51,50,48,56,48,53,93,44,91,45,49,53,57,46,57,48,48,49,51,51,44,53,54,46,51,50,48,56,48,51,93,44,91,45,49,53,57,46,57,48,48,49,52,57,44,53,54,46,52,57,52,50,51,57,93,44,91,45,49,53,57,46,53,56,56,48,51,54,44,53,54,46,52,57,52,50,52,53,93,44,91,45,49,53,57,46,53,56,56,48,52,49,44,53,54,46,53,56,48,57,54,49,93,44,91,45,49,53,57,46,50,55,53,57,50,56,44,53,54,46,53,56,48,57,54,55,93,44,91,45,49,53,57,46,50,55,53,57,51,50,44,53,54,46,54,54,55,54,56,50,93,44,91,45,49,53,57,46,48,53,49,48,56,57,44,53,54,46,54,54,55,54,56,55,93,44,91,45,49,53,56,46,56,57,51,54,48,55,44,53,54,46,55,53,52,52,48,52,93,44,91,45,49,53,56,46,56,57,51,53,56,53,44,53,54,46,57,52,53,48,53,57,93,93,93,44,91,91,91,45,49,54,54,46,50,50,53,54,52,55,44,53,52,46,48,52,49,57,57,51,93,44,91,45,49,54,54,46,50,50,53,54,52,49,44,53,51,46,57,54,48,50,48,54,93,44,91,45,49,54,53,46,57,54,49,48,56,54,44,53,51,46,57,49,54,50,52,51,93,44,91,45,49,54,53,46,55,56,56,57,54,54,44,53,52,46,48,49,54,50,51,54,93,44,91,45,49,54,53,46,54,53,55,49,55,51,44,53,52,46,48,51,54,51,51,54,93,44,91,45,49,54,53,46,53,49,57,55,54,55,44,53,51,46,57,55,50,48,54,93,44,91,45,49,54,53,46,51,56,48,57,54,53,44,53,52,46,48,49,54,52,51,54,93,44,91,45,49,54,52,46,56,56,49,48,52,56,44,53,52,46,48,52,51,52,50,57,93,44,91,45,49,54,52,46,55,49,52,52,56,53,44,53,52,46,49,54,54,49,49,55,93,44,91,45,49,54,52,46,56,48,53,51,54,57,44,53,52,46,50,56,50,51,57,50,93,44,91,45,49,54,53,46,48,54,54,56,55,49,44,53,52,46,49,56,48,48,56,54,93,44,91,45,49,54,53,46,51,52,53,49,55,55,44,53,52,46,50,53,49,48,51,51,93,44,91,45,49,54,53,46,52,54,50,52,57,51,44,53,52,46,51,52,54,56,50,50,93,44,91,45,49,54,53,46,54,53,53,53,53,44,53,52,46,51,52,55,48,53,49,93,44,91,45,49,54,53,46,55,56,57,49,52,55,44,53,52,46,50,51,57,49,51,56,93,44,91,45,49,54,53,46,57,51,55,50,50,44,53,52,46,50,55,54,57,56,53,93,44,91,45,49,54,54,46,49,54,53,49,49,55,44,53,52,46,49,57,53,48,56,56,93,44,91,45,49,54,54,46,50,50,53,54,52,55,44,53,52,46,48,52,49,57,57,51,93,93,93,44,91,91,91,45,49,54,51,46,48,49,51,54,57,52,44,53,52,46,51,56,53,48,56,55,93,44,91,45,49,54,50,46,55,48,48,48,56,52,44,53,52,46,50,51,55,57,54,57,93,44,91,45,49,54,50,46,50,56,50,50,48,51,44,53,52,46,51,51,48,57,54,53,93,44,91,45,49,54,50,46,51,53,52,51,53,50,44,53,52,46,52,53,54,54,57,49,93,44,91,45,49,54,50,46,56,56,48,55,48,54,44,53,52,46,53,53,51,50,49,51,93,44,91,45,49,54,51,46,48,49,51,54,57,52,44,53,52,46,51,56,53,48,56,55,93,93,93,44,91,91,91,45,49,53,57,46,57,49,48,51,51,53,44,53,52,46,56,49,52,49,54,56,93,44,91,45,49,53,57,46,56,53,53,50,49,55,44,53,52,46,55,53,55,55,48,52,93,44,91,45,49,53,57,46,53,52,55,56,55,50,44,53,52,46,54,57,57,50,57,54,93,44,91,45,49,53,57,46,52,49,54,55,55,50,44,53,52,46,55,57,50,49,57,55,93,44,91,45,49,53,57,46,53,53,54,49,49,54,44,53,52,46,56,56,48,50,54,50,93,44,91,45,49,53,57,46,55,54,49,48,53,49,44,53,52,46,56,57,49,51,50,52,93,44,91,45,49,53,57,46,57,49,48,51,51,53,44,53,52,46,56,49,52,49,54,56,93,93,93,44,91,91,91,45,49,54,51,46,50,55,48,56,56,55,44,53,53,46,52,51,49,55,49,56,93,44,91,45,49,54,51,46,50,51,53,51,54,50,44,53,53,46,51,54,54,49,49,50,93,44,91,45,49,54,51,46,48,50,55,57,51,56,44,53,53,46,52,50,48,56,51,93,44,91,45,49,54,51,46,49,51,54,53,51,52,44,53,53,46,53,50,53,48,50,52,93,44,91,45,49,54,51,46,50,55,48,56,56,55,44,53,53,46,52,51,49,55,49,56,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,54,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,44,91,45,57,57,46,49,55,57,49,51,52,44,52,48,46,48,48,50,48,49,51,93,44,91,45,57,57,46,48,54,55,48,52,54,44,52,48,46,48,48,50,51,52,56,93,44,91,45,57,56,46,55,50,54,51,55,51,44,52,48,46,48,48,50,52,93,44,91,45,57,56,46,55,50,54,56,50,55,44,52,48,46,51,53,48,51,57,56,93,44,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,57,51,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,48,55,57,57,50,53,44,51,57,46,52,48,53,53,48,54,93,44,91,45,55,54,46,50,56,55,54,56,57,44,51,57,46,50,53,52,49,48,52,93,44,91,45,55,54,46,51,52,57,52,55,57,44,51,57,46,49,53,54,54,50,51,93,44,91,45,55,54,46,51,53,49,55,51,44,51,57,46,48,53,54,50,51,50,93,44,91,45,55,54,46,50,53,55,57,57,53,44,51,57,46,48,49,49,56,49,56,93,44,91,45,55,54,46,49,49,55,48,53,56,44,51,57,46,49,48,55,48,57,56,93,44,91,45,55,54,46,48,49,48,50,57,50,44,51,57,46,50,51,57,53,49,55,93,44,91,45,55,53,46,55,53,54,48,48,52,44,51,57,46,50,52,54,48,54,54,93,44,91,45,55,53,46,55,54,48,48,55,52,44,51,57,46,50,57,54,56,49,57,93,44,91,45,55,53,46,55,54,54,53,57,52,44,51,57,46,51,55,55,53,54,51,93,44,91,45,55,53,46,57,48,56,48,51,53,44,51,57,46,51,54,52,53,48,49,93,44,91,45,55,54,46,48,55,57,57,50,53,44,51,57,46,52,48,53,53,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,49,48,56,44,34,98,101,100,115,34,58,49,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,56,56,48,49,50,44,51,55,46,54,55,52,53,49,57,93,44,91,45,57,53,46,48,56,56,49,56,57,44,51,55,46,51,56,51,56,51,55,93,44,91,45,57,53,46,48,55,53,49,54,54,44,51,55,46,51,51,57,57,51,55,93,44,91,45,57,52,46,54,49,55,55,50,50,44,51,55,46,51,51,56,52,49,56,93,44,91,45,57,52,46,54,49,55,53,55,44,51,55,46,51,54,52,49,55,93,44,91,45,57,52,46,54,49,55,54,57,56,44,51,55,46,54,53,51,53,55,56,93,44,91,45,57,52,46,54,49,55,55,55,57,44,51,55,46,54,55,51,49,48,53,93,44,91,45,57,53,46,48,56,56,48,49,50,44,51,55,46,54,55,52,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,105,112,112,101,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,49,48,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,51,54,54,57,56,44,52,53,46,49,53,50,50,48,54,93,44,91,45,57,53,46,55,51,54,54,57,54,44,52,52,46,57,51,54,48,52,93,44,91,45,57,53,46,52,56,50,56,52,51,44,52,52,46,55,53,50,53,48,53,93,44,91,45,57,53,46,52,56,50,56,56,57,44,52,52,46,56,57,48,55,49,50,93,44,91,45,57,53,46,50,52,56,53,50,44,52,52,46,56,57,49,51,49,93,44,91,45,57,53,46,50,52,54,52,56,57,44,52,53,46,49,53,50,52,51,49,93,44,91,45,57,54,46,48,51,54,54,57,56,44,52,53,46,49,53,50,50,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,80,101,110,110,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,50,57,52,44,34,98,101,100,115,34,58,52,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,48,49,48,54,56,44,52,52,46,53,49,48,57,50,54,93,44,91,45,49,48,50,46,49,49,50,53,51,53,44,52,52,46,52,51,53,56,56,54,93,44,91,45,49,48,50,46,50,56,52,52,48,52,44,52,52,46,52,52,49,50,51,50,93,44,91,45,49,48,50,46,51,52,49,54,51,53,44,52,52,46,51,52,56,55,55,50,93,44,91,45,49,48,50,46,51,56,56,48,52,53,44,52,52,46,49,52,48,49,56,51,93,44,91,45,49,48,51,46,52,53,50,52,53,51,44,52,52,46,49,52,48,55,55,50,93,44,91,45,49,48,52,46,48,53,52,53,56,56,44,52,52,46,49,52,49,48,56,49,93,44,91,45,49,48,52,46,48,53,53,52,56,55,44,52,51,46,56,53,51,52,55,54,93,44,91,45,49,48,50,46,54,56,55,49,57,49,44,52,51,46,56,53,53,53,57,57,93,44,91,45,49,48,50,46,56,48,57,51,57,56,44,52,51,46,54,56,55,53,54,93,44,91,45,49,48,50,46,49,55,53,50,51,49,44,52,51,46,54,56,55,55,53,54,93,44,91,45,49,48,50,46,49,51,57,49,53,56,44,52,51,46,55,48,48,57,52,56,93,44,91,45,49,48,50,46,48,49,56,56,56,55,44,52,51,46,55,48,56,54,49,56,93,44,91,45,49,48,50,46,48,48,55,51,51,54,44,52,51,46,57,57,52,53,51,93,44,91,45,49,48,50,46,48,48,49,48,54,56,44,52,52,46,53,49,48,57,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,72,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,56,48,55,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,44,91,45,56,49,46,50,49,57,53,54,51,44,51,50,46,57,53,51,51,53,93,44,91,45,56,49,46,50,54,49,54,54,50,44,51,50,46,56,51,57,49,51,57,93,44,91,45,56,49,46,52,48,53,48,53,52,44,51,50,46,55,52,52,57,53,55,93,44,91,45,56,49,46,51,56,57,50,48,53,44,51,50,46,53,57,53,52,49,54,93,44,91,45,56,49,46,50,56,49,50,55,44,51,50,46,53,53,54,52,55,49,93,44,91,45,56,49,46,48,49,56,52,57,53,44,51,50,46,55,53,48,49,55,50,93,44,91,45,56,48,46,56,54,57,55,48,53,44,51,50,46,54,54,48,57,51,53,93,44,91,45,56,48,46,56,50,54,51,48,57,44,51,50,46,55,48,52,51,50,49,93,44,91,45,56,48,46,57,48,48,49,57,54,44,51,50,46,56,51,50,56,49,51,93,44,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,70,114,101,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,57,55,54,56,52,57,44,52,51,46,57,50,55,51,56,53,93,44,91,45,49,49,49,46,53,53,56,56,51,51,44,52,51,46,56,56,51,51,48,53,93,44,91,45,49,49,49,46,51,57,56,55,56,49,44,52,51,46,57,50,50,56,57,93,44,91,45,49,49,49,46,49,56,55,50,53,54,44,52,51,46,57,51,50,49,49,52,93,44,91,45,49,49,49,46,48,52,55,49,53,55,44,52,51,46,57,56,51,52,53,57,93,44,91,45,49,49,49,46,48,53,50,52,51,52,44,52,52,46,52,55,56,52,49,49,93,44,91,45,49,49,49,46,49,51,48,54,53,57,44,52,52,46,53,48,48,49,51,49,93,44,91,45,49,49,49,46,50,49,57,51,49,57,44,52,52,46,54,50,50,53,50,49,93,44,91,45,49,49,49,46,51,55,55,48,49,53,44,52,52,46,55,53,49,52,52,51,93,44,91,45,49,49,49,46,52,55,52,57,54,51,44,52,52,46,55,48,56,55,55,51,93,44,91,45,49,49,49,46,53,50,53,54,49,44,52,52,46,54,48,52,55,52,93,44,91,45,49,49,49,46,54,49,55,51,52,53,44,52,52,46,53,53,48,51,57,50,93,44,91,45,49,49,49,46,54,49,55,52,51,55,44,52,52,46,52,48,49,50,53,52,93,44,91,45,49,49,49,46,55,57,49,54,50,52,44,52,52,46,52,48,49,54,49,93,44,91,45,49,49,49,46,56,53,50,50,55,54,44,52,52,46,51,49,54,57,57,54,93,44,91,45,49,49,49,46,56,53,55,56,53,49,44,52,52,46,49,56,55,55,53,57,93,44,91,45,49,49,50,46,48,51,51,54,54,52,44,52,52,46,49,52,52,48,52,57,93,44,91,45,49,49,50,46,49,53,53,57,51,53,44,52,52,46,48,53,55,55,56,93,44,91,45,49,49,50,46,49,53,54,51,55,44,52,51,46,57,55,49,50,52,55,93,44,91,45,49,49,49,46,57,55,54,56,52,57,44,52,51,46,57,50,55,51,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,66,114,121,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,56,56,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,56,48,56,53,56,44,51,50,46,49,53,50,56,57,93,44,91,45,56,49,46,55,49,56,54,53,56,44,51,50,46,48,56,57,51,53,49,93,44,91,45,56,49,46,53,57,50,51,57,49,44,51,49,46,57,55,50,52,54,57,93,44,91,45,56,49,46,52,48,52,51,56,56,44,51,49,46,57,49,57,55,48,49,93,44,91,45,56,49,46,51,55,54,57,53,52,44,51,49,46,56,52,56,50,53,55,93,44,91,45,56,49,46,49,53,52,55,51,49,44,51,49,46,55,49,51,48,55,93,44,91,45,56,49,46,50,49,50,51,48,57,44,51,49,46,57,49,56,51,53,56,93,44,91,45,56,49,46,51,57,49,54,57,56,44,51,50,46,48,57,53,56,56,54,93,44,91,45,56,49,46,52,51,53,56,51,44,51,50,46,50,52,49,50,56,57,93,44,91,45,56,49,46,55,56,48,56,53,56,44,51,50,46,49,53,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,68,105,110,119,105,100,100,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,48,56,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,52,55,52,48,56,44,51,55,46,50,50,51,48,54,54,93,44,91,45,55,55,46,54,53,48,54,49,44,51,55,46,50,54,53,49,49,50,93,44,91,45,55,55,46,55,57,53,57,50,54,44,51,55,46,49,57,50,53,57,50,93,44,91,45,55,55,46,57,48,48,51,51,56,44,51,55,46,49,52,51,56,56,50,93,44,91,45,55,55,46,56,56,57,56,49,51,44,51,54,46,57,56,56,56,49,56,93,44,91,45,55,55,46,55,54,53,53,52,44,51,54,46,57,55,52,54,53,53,93,44,91,45,55,55,46,54,53,56,48,51,54,44,51,54,46,56,57,52,53,49,52,93,44,91,45,55,55,46,54,49,57,48,50,57,44,51,54,46,56,55,55,56,52,52,93,44,91,45,55,55,46,51,57,56,52,57,56,44,51,54,46,57,57,50,57,56,53,93,44,91,45,55,55,46,51,57,57,50,48,51,44,51,55,46,49,55,48,56,53,93,44,91,45,55,55,46,52,52,55,52,48,56,44,51,55,46,50,50,51,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,117,99,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,53,57,49,44,34,98,101,100,115,34,58,56,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,55,55,56,54,50,44,50,55,46,50,48,53,57,56,56,93,44,91,45,56,48,46,50,56,53,53,49,44,50,55,46,50,48,54,48,50,53,93,44,91,45,56,48,46,49,51,56,48,52,57,44,50,55,46,50,54,50,56,55,57,93,44,91,45,56,48,46,50,54,51,53,52,51,44,50,55,46,53,53,54,55,56,50,93,44,91,45,56,48,46,54,55,57,56,50,49,44,50,55,46,53,53,56,52,55,93,44,91,45,56,48,46,54,55,55,56,54,50,44,50,55,46,50,48,53,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,52,50,52,56,44,34,98,101,100,115,34,58,50,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,57,57,51,57,56,50,44,52,51,46,54,51,49,50,51,52,93,44,91,45,55,55,46,57,57,55,50,57,44,52,51,46,49,51,50,57,56,49,93,44,91,45,55,55,46,57,48,57,56,51,50,44,52,50,46,57,56,55,55,54,50,93,44,91,45,55,55,46,55,51,48,57,53,55,44,52,50,46,57,56,56,51,55,50,93,44,91,45,55,55,46,53,56,48,51,55,55,44,52,50,46,57,52,51,57,54,51,93,44,91,45,55,55,46,52,56,53,52,49,56,44,52,51,46,48,51,52,53,54,52,93,44,91,45,55,55,46,51,55,49,52,55,56,44,52,51,46,48,51,52,54,57,54,93,44,91,45,55,55,46,51,56,55,57,57,53,44,52,51,46,54,51,49,53,52,51,93,44,91,45,55,55,46,57,57,51,57,56,50,44,52,51,46,54,51,49,50,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,57,49,52,44,34,98,101,100,115,34,58,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,50,52,56,52,49,44,52,51,46,53,48,48,48,48,55,93,44,91,45,57,54,46,57,50,52,49,52,50,44,52,51,46,48,56,51,55,51,51,93,44,91,45,57,54,46,56,48,53,54,56,50,44,52,51,46,48,56,51,54,55,93,44,91,45,57,54,46,52,53,52,49,51,44,52,51,46,48,56,51,51,56,93,44,91,45,57,54,46,52,55,54,55,50,57,44,52,51,46,50,50,49,57,56,55,93,44,91,45,57,54,46,53,53,52,57,54,57,44,52,51,46,50,53,57,57,53,49,93,44,91,45,57,54,46,53,50,49,55,50,44,52,51,46,51,56,54,55,53,53,93,44,91,45,57,54,46,53,57,57,49,57,49,44,52,51,46,53,48,48,52,53,54,93,44,91,45,57,54,46,57,50,52,56,52,49,44,52,51,46,53,48,48,48,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,105,112,112,101,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,54,51,53,44,34,98,101,100,115,34,58,50,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,52,49,51,50,50,44,52,53,46,50,57,50,50,50,93,44,91,45,57,49,46,54,54,53,54,52,55,44,52,53,46,50,48,55,57,57,49,93,44,91,45,57,49,46,54,53,48,52,53,53,44,52,52,46,56,53,53,57,53,49,93,44,91,45,57,48,46,57,50,50,50,52,55,44,52,52,46,56,53,55,51,48,57,93,44,91,45,57,48,46,57,50,51,51,54,50,44,52,53,46,48,51,49,49,52,51,93,44,91,45,57,48,46,57,50,53,50,50,50,44,52,53,46,50,57,50,48,54,49,93,44,91,45,57,49,46,53,52,49,51,50,50,44,52,53,46,50,57,50,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,55,34,44,34,78,65,77,69,34,58,34,87,111,111,100,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,55,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,53,57,48,52,54,44,51,56,46,48,52,48,49,57,53,93,44,91,45,57,53,46,57,54,48,56,55,54,44,51,55,46,55,51,52,51,48,52,93,44,91,45,57,53,46,53,50,53,52,57,57,44,51,55,46,55,51,50,55,53,57,93,44,91,45,57,53,46,53,49,56,57,55,44,51,56,46,48,51,56,50,51,93,44,91,45,57,53,46,57,53,57,48,52,54,44,51,56,46,48,52,48,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,49,54,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,56,50,57,53,55,44,51,55,46,48,50,50,53,54,54,93,44,91,45,56,56,46,52,56,52,49,48,51,44,51,54,46,57,52,50,48,57,54,93,44,91,45,56,56,46,52,56,53,54,57,55,44,51,54,46,55,53,48,51,50,56,93,44,91,45,56,56,46,49,49,48,56,51,49,44,51,54,46,55,52,55,49,53,93,44,91,45,56,56,46,49,53,55,51,52,55,44,51,54,46,56,54,55,49,56,51,93,44,91,45,56,56,46,50,52,48,51,55,49,44,51,54,46,57,56,49,57,49,49,93,44,91,45,56,56,46,51,55,48,52,54,51,44,51,55,46,48,54,51,50,55,56,93,44,91,45,56,56,46,52,56,50,57,53,55,44,51,55,46,48,50,50,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,67,108,105,110,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,55,49,50,52,55,44,51,49,46,49,56,51,57,56,56,93,44,91,45,56,50,46,57,55,49,51,51,54,44,51,48,46,56,54,57,51,57,50,93,44,91,45,56,50,46,56,52,54,52,48,53,44,51,48,46,56,51,52,57,52,57,93,44,91,45,56,50,46,55,54,54,49,53,57,44,51,48,46,55,51,50,52,48,52,93,44,91,45,56,50,46,54,48,52,51,48,55,44,51,48,46,55,49,51,55,49,53,93,44,91,45,56,50,46,53,56,52,48,48,55,44,51,48,46,53,57,49,53,52,56,93,44,91,45,56,50,46,52,53,57,55,57,51,44,51,48,46,53,56,52,50,54,55,93,44,91,45,56,50,46,52,49,56,57,49,52,44,51,48,46,53,56,49,55,54,55,93,44,91,45,56,50,46,52,51,53,56,53,50,44,51,48,46,56,50,48,48,54,56,93,44,91,45,56,50,46,52,57,48,53,53,56,44,51,48,46,57,54,51,49,54,54,93,44,91,45,56,50,46,53,57,50,48,55,49,44,51,49,46,48,49,56,52,56,55,93,44,91,45,56,50,46,54,55,49,54,54,57,44,51,49,46,49,56,51,55,51,57,93,44,91,45,56,50,46,57,55,49,50,52,55,44,51,49,46,49,56,51,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,76,111,119,110,100,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,53,56,50,44,34,98,101,100,115,34,58,52,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,57,53,48,53,50,44,51,49,46,48,50,55,50,55,56,93,44,91,45,56,51,46,52,55,53,54,49,55,44,51,49,46,48,51,49,57,54,52,93,44,91,45,56,51,46,51,55,48,56,57,56,44,51,48,46,56,56,52,56,50,56,93,44,91,45,56,51,46,52,56,50,52,54,49,44,51,48,46,55,53,54,57,51,49,93,44,91,45,56,51,46,51,53,55,55,48,51,44,51,48,46,54,51,55,51,54,93,44,91,45,56,51,46,51,52,48,56,53,50,44,51,48,46,54,51,54,51,51,54,93,44,91,45,56,51,46,51,48,57,50,52,57,44,51,48,46,54,51,52,52,48,54,93,44,91,45,56,51,46,49,51,54,54,49,52,44,51,48,46,54,50,51,57,54,55,93,44,91,45,56,51,46,49,50,52,56,54,53,44,51,48,46,56,48,51,54,53,53,93,44,91,45,56,51,46,48,49,57,52,49,57,44,51,48,46,56,52,57,52,53,51,93,44,91,45,56,51,46,48,52,50,57,50,52,44,51,48,46,57,52,55,50,57,54,93,44,91,45,56,51,46,49,55,57,52,54,53,44,51,48,46,57,53,48,49,50,56,93,44,91,45,56,51,46,49,57,55,57,55,49,44,51,49,46,48,50,53,52,48,53,93,44,91,45,56,51,46,50,57,53,48,53,50,44,51,49,46,48,50,55,50,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,75,97,108,97,119,97,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,72,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,55,46,48,49,53,48,53,56,44,50,49,46,50,54,49,49,57,52,93,44,91,45,49,53,55,46,48,49,52,54,49,50,44,50,49,46,49,56,50,51,52,57,93,44,91,45,49,53,54,46,57,49,55,49,44,50,49,46,49,54,51,55,49,93,44,91,45,49,53,54,46,56,55,49,49,57,53,44,50,49,46,50,51,49,56,56,55,93,44,91,45,49,53,55,46,48,49,53,48,53,56,44,50,49,46,50,54,49,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,75,97,117,97,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,72,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,51,55,55,44,34,98,101,100,115,34,58,49,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,57,46,54,49,57,49,57,49,44,50,50,46,50,54,54,56,51,55,93,44,91,45,49,53,57,46,55,53,44,50,50,46,49,57,57,52,52,57,93,44,91,45,49,53,57,46,56,52,56,49,50,52,44,50,50,46,48,55,54,48,55,51,93,44,91,45,49,53,57,46,55,57,51,54,48,49,44,50,49,46,57,51,57,55,56,93,44,91,45,49,53,57,46,54,51,49,50,53,57,44,50,49,46,56,52,54,54,56,56,93,44,91,45,49,53,57,46,52,52,51,57,57,57,44,50,49,46,56,49,55,55,56,57,93,44,91,45,49,53,57,46,50,56,52,51,53,52,44,50,49,46,57,52,48,54,51,55,93,44,91,45,49,53,57,46,50,52,53,55,55,57,44,50,50,46,49,54,54,56,48,56,93,44,91,45,49,53,57,46,51,48,56,55,57,56,44,50,50,46,50,53,93,44,91,45,49,53,57,46,52,48,50,57,50,44,50,50,46,50,57,48,52,55,51,93,44,91,45,49,53,57,46,54,49,57,49,57,49,44,50,50,46,50,54,54,56,51,55,93,93,93,44,91,91,91,45,49,54,48,46,51,48,52,51,54,44,50,49,46,56,53,51,55,57,53,93,44,91,45,49,54,48,46,50,54,53,55,55,56,44,50,49,46,55,52,54,49,56,93,44,91,45,49,54,48,46,49,55,48,51,49,44,50,49,46,55,51,57,53,53,49,93,44,91,45,49,54,48,46,49,50,50,48,49,53,44,50,49,46,56,50,52,57,54,93,44,91,45,49,54,48,46,48,51,49,48,51,50,44,50,49,46,56,54,57,51,54,52,93,44,91,45,49,53,57,46,57,57,55,50,48,53,44,50,49,46,57,57,50,53,49,93,44,91,45,49,54,48,46,48,53,54,55,50,50,44,50,50,46,48,54,56,51,52,53,93,44,91,45,49,54,48,46,49,52,48,52,49,54,44,50,50,46,48,55,51,51,50,50,93,44,91,45,49,54,48,46,49,55,52,48,49,49,44,50,49,46,57,57,49,52,55,57,93,44,91,45,49,54,48,46,50,55,57,57,52,55,44,50,49,46,57,50,48,54,51,56,93,44,91,45,49,54,48,46,51,48,52,51,54,44,50,49,46,56,53,51,55,57,53,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,97,99,111,109,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,56,55,48,52,44,34,98,101,100,115,34,58,49,51,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,50,51,49,55,44,52,50,46,52,55,55,55,55,56,93,44,91,45,56,50,46,55,51,57,48,49,44,52,50,46,56,57,55,53,52,49,93,44,91,45,56,50,46,57,56,51,54,52,55,44,52,50,46,56,57,51,55,52,49,93,44,91,45,56,51,46,49,48,50,56,57,49,44,52,50,46,56,56,56,54,52,55,93,44,91,45,56,51,46,48,56,51,51,57,51,44,52,50,46,52,52,55,49,53,51,93,44,91,45,56,50,46,55,52,57,57,48,56,44,52,50,46,52,53,49,48,57,50,93,44,91,45,56,50,46,55,50,51,49,55,44,52,50,46,52,55,55,55,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,55,34,44,34,78,65,77,69,34,58,34,84,117,114,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,49,50,50,53,54,44,51,49,46,56,53,52,48,56,57,93,44,91,45,56,51,46,54,49,50,54,52,50,44,51,49,46,56,48,52,49,50,56,93,44,91,45,56,51,46,56,48,50,55,50,51,44,51,49,46,56,48,51,53,55,57,93,44,91,45,56,51,46,55,57,54,56,52,54,44,51,49,46,54,50,50,57,50,57,93,44,91,45,56,51,46,54,52,57,51,56,52,44,51,49,46,53,54,55,57,55,55,93,44,91,45,56,51,46,53,48,48,55,48,50,44,51,49,46,53,57,51,57,57,93,44,91,45,56,51,46,52,53,51,54,51,52,44,51,49,46,55,53,55,56,54,49,93,44,91,45,56,51,46,52,56,48,49,55,54,44,51,49,46,56,52,55,51,49,50,93,44,91,45,56,51,46,54,49,50,50,53,54,44,51,49,46,56,53,52,48,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,54,48,54,53,52,44,51,57,46,49,55,49,49,49,56,93,44,91,45,56,56,46,51,54,49,55,52,53,44,51,56,46,57,49,48,56,52,55,93,44,91,45,56,56,46,50,53,56,53,56,51,44,51,56,46,56,52,55,53,50,57,93,44,91,45,56,55,46,57,52,53,57,49,57,44,51,56,46,56,53,48,49,52,56,93,44,91,45,56,55,46,57,53,48,51,56,53,44,51,57,46,49,55,52,56,56,50,93,44,91,45,56,56,46,48,48,55,55,54,54,44,51,57,46,49,55,51,57,50,53,93,44,91,45,56,56,46,51,54,48,54,53,52,44,51,57,46,49,55,49,49,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,51,49,34,44,34,78,65,77,69,34,58,34,77,105,108,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,54,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,48,55,48,49,56,56,44,51,48,46,57,56,54,50,50,93,44,91,45,57,55,46,50,53,57,48,56,50,44,51,48,46,56,56,57,53,57,54,93,44,91,45,57,55,46,51,49,53,53,48,55,44,51,48,46,55,53,50,51,55,49,93,44,91,45,57,55,46,50,55,49,52,49,56,44,51,48,46,55,51,53,54,57,50,93,44,91,45,57,55,46,49,53,53,50,49,57,44,51,48,46,52,53,55,51,52,52,93,44,91,45,57,54,46,57,54,51,54,50,57,44,51,48,46,53,53,55,49,54,57,93,44,91,45,57,54,46,54,50,49,50,56,49,44,51,48,46,55,51,48,56,49,57,93,44,91,45,57,54,46,54,52,49,50,56,44,51,48,46,56,49,56,48,53,49,93,44,91,45,57,54,46,55,53,54,51,51,44,51,48,46,57,50,55,50,48,54,93,44,91,45,57,54,46,56,50,57,49,50,49,44,51,49,46,49,48,53,56,55,49,93,44,91,45,57,55,46,48,55,48,49,56,56,44,51,48,46,57,56,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,83,112,101,110,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,49,55,52,57,44,51,56,46,50,48,51,53,56,93,44,91,45,56,55,46,48,49,55,52,53,51,44,51,56,46,49,49,56,51,48,49,93,44,91,45,56,55,46,50,50,53,55,48,49,44,51,55,46,57,55,49,54,54,55,93,44,91,45,56,55,46,50,54,56,57,57,53,44,51,55,46,56,55,56,48,50,54,93,44,91,45,56,55,46,48,54,57,54,55,53,44,51,55,46,56,48,49,53,49,51,93,44,91,45,56,54,46,57,55,56,56,51,55,44,51,55,46,57,51,48,50,52,52,93,44,91,45,56,54,46,56,49,52,55,52,52,44,51,55,46,57,57,56,55,48,52,93,44,91,45,56,54,46,55,54,55,51,53,50,44,51,56,46,48,53,54,57,50,52,93,44,91,45,56,54,46,55,57,49,52,57,55,44,51,56,46,50,48,53,49,51,93,44,91,45,56,55,46,48,49,55,52,57,44,51,56,46,50,48,51,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,72,97,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,48,52,55,53,57,56,44,51,55,46,52,52,57,57,51,51,93,44,91,45,56,54,46,48,55,51,54,50,54,44,51,55,46,51,52,56,48,52,53,93,44,91,45,56,54,46,49,53,55,53,56,57,44,51,55,46,51,51,53,54,52,57,93,44,91,45,56,54,46,48,53,54,52,52,51,44,51,55,46,49,54,55,50,48,56,93,44,91,45,56,53,46,57,48,54,51,51,54,44,51,55,46,49,52,56,51,55,55,93,44,91,45,56,53,46,55,52,52,50,50,49,44,51,55,46,49,54,57,56,49,51,93,44,91,45,56,53,46,54,56,54,52,56,50,44,51,55,46,49,56,50,52,50,55,93,44,91,45,56,53,46,54,57,55,51,50,53,44,51,55,46,51,48,49,56,51,56,93,44,91,45,56,53,46,54,53,55,51,51,50,44,51,55,46,52,50,49,57,57,54,93,44,91,45,56,53,46,56,57,50,56,48,52,44,51,55,46,52,52,48,51,48,56,93,44,91,45,56,54,46,48,52,55,53,57,56,44,51,55,46,52,52,57,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,53,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,52,55,52,51,52,44,51,55,46,53,52,56,51,52,51,93,44,91,45,56,52,46,56,53,48,56,49,54,44,51,55,46,52,50,55,49,52,51,93,44,91,45,56,52,46,55,50,50,56,50,54,44,51,55,46,51,54,48,48,52,51,93,44,91,45,56,52,46,55,50,48,55,49,50,44,51,55,46,50,51,56,51,50,56,93,44,91,45,56,52,46,53,53,54,52,54,49,44,51,55,46,51,53,53,55,50,57,93,44,91,45,56,52,46,53,48,50,57,51,50,44,51,55,46,51,50,56,56,48,49,93,44,91,45,56,52,46,52,52,54,55,49,57,44,51,55,46,52,56,53,56,57,51,93,44,91,45,56,52,46,54,53,56,50,57,54,44,51,55,46,54,51,52,53,48,49,93,44,91,45,56,52,46,56,52,55,52,51,52,44,51,55,46,53,52,56,51,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,108,97,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,50,55,44,34,98,101,100,115,34,58,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,50,51,54,52,57,55,44,52,56,46,57,57,57,53,55,49,93,44,91,45,49,48,57,46,52,56,57,53,53,44,52,57,46,48,48,48,50,57,50,93,44,91,45,49,48,57,46,53,48,53,51,51,51,44,52,56,46,53,54,55,57,49,93,44,91,45,49,48,57,46,52,54,52,51,49,56,44,52,56,46,52,53,50,54,51,56,93,44,91,45,49,48,57,46,53,49,56,55,56,44,52,56,46,51,57,52,55,50,54,93,44,91,45,49,48,57,46,53,51,52,50,57,53,44,52,56,46,49,51,52,53,54,52,93,44,91,45,49,48,57,46,53,51,56,54,55,55,44,52,55,46,55,51,56,56,54,52,93,44,91,45,49,48,57,46,52,49,49,53,48,54,44,52,55,46,55,50,52,54,49,55,93,44,91,45,49,48,57,46,50,55,55,51,56,50,44,52,55,46,55,57,50,52,51,53,93,44,91,45,49,48,56,46,57,52,50,55,52,53,44,52,55,46,55,57,49,56,50,52,93,44,91,45,49,48,56,46,56,57,49,49,49,53,44,52,55,46,55,51,52,52,53,54,93,44,91,45,49,48,56,46,56,56,56,51,49,54,44,52,55,46,57,50,50,55,50,50,93,44,91,45,49,48,56,46,54,50,53,53,56,55,44,52,55,46,57,50,48,52,49,49,93,44,91,45,49,48,56,46,54,48,55,53,55,57,44,52,55,46,57,57,48,57,57,55,93,44,91,45,49,48,56,46,52,51,51,57,56,44,52,55,46,57,55,54,53,53,51,93,44,91,45,49,48,56,46,52,49,49,49,56,54,44,52,56,46,52,52,52,57,56,49,93,44,91,45,49,48,56,46,51,49,57,48,49,49,44,52,56,46,53,54,56,52,51,49,93,44,91,45,49,48,56,46,50,53,57,51,56,52,44,52,56,46,55,52,50,50,50,53,93,44,91,45,49,48,56,46,50,51,54,52,57,55,44,52,56,46,57,57,57,53,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,49,48,34,44,34,78,65,77,69,34,58,34,78,111,114,102,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,53,53,57,50,44,34,98,101,100,115,34,58,57,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,51,52,49,56,50,53,44,51,54,46,57,50,52,55,55,50,93,44,91,45,55,54,46,50,56,57,57,54,50,44,51,54,46,56,50,50,48,52,56,93,44,91,45,55,54,46,50,50,54,48,54,44,51,54,46,56,51,57,57,52,55,93,44,91,45,55,54,46,49,51,51,56,55,50,44,51,55,46,48,52,48,56,56,54,93,44,91,45,55,54,46,51,51,50,50,53,55,44,51,54,46,57,54,54,48,57,57,93,44,91,45,55,54,46,51,52,49,56,50,53,44,51,54,46,57,50,52,55,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,56,57,34,44,34,78,65,77,69,34,58,34,82,101,101,118,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,49,48,50,51,53,49,44,51,49,46,49,48,53,50,48,51,93,44,91,45,49,48,51,46,53,56,53,48,56,52,44,51,48,46,55,54,54,52,55,93,44,91,45,49,48,51,46,48,49,49,48,52,44,51,49,46,51,55,49,51,48,54,93,44,91,45,49,48,51,46,49,56,49,50,50,53,44,51,49,46,51,55,48,50,52,53,93,44,91,45,49,48,51,46,52,54,53,48,53,55,44,51,49,46,52,51,49,57,52,56,93,44,91,45,49,48,51,46,53,48,56,56,48,53,44,51,49,46,54,50,52,49,49,55,93,44,91,45,49,48,51,46,54,49,48,56,56,55,44,51,49,46,54,53,49,56,48,50,93,44,91,45,49,48,51,46,55,48,48,54,48,51,44,51,49,46,55,52,56,51,57,53,93,44,91,45,49,48,51,46,55,57,54,54,49,50,44,51,49,46,55,55,48,48,49,51,93,44,91,45,49,48,51,46,56,49,52,57,57,44,51,49,46,56,53,50,49,52,50,93,44,91,45,49,48,51,46,57,49,50,50,52,56,44,51,49,46,57,48,50,52,50,52,93,44,91,45,49,48,51,46,57,56,48,49,55,57,44,51,50,46,48,48,48,49,50,53,93,44,91,45,49,48,52,46,48,50,52,53,49,50,44,51,50,46,48,48,48,49,48,50,93,44,91,45,49,48,52,46,49,48,50,51,53,49,44,51,49,46,49,48,53,50,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,50,51,52,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,48,54,57,54,50,44,51,55,46,50,52,52,56,55,49,93,44,91,45,56,48,46,56,53,52,54,50,55,44,51,55,46,49,52,55,52,56,50,93,44,91,45,56,48,46,57,49,50,54,55,52,44,51,55,46,48,55,51,51,52,57,93,44,91,45,56,48,46,55,52,48,52,56,51,44,51,54,46,56,55,57,48,48,49,93,44,91,45,56,48,46,54,51,51,57,56,55,44,51,54,46,57,51,49,55,56,93,44,91,45,56,48,46,53,52,51,57,51,51,44,51,54,46,57,56,52,54,51,57,93,44,91,45,56,48,46,53,56,48,52,54,57,44,51,55,46,48,56,57,54,54,50,93,44,91,45,56,48,46,53,57,54,52,48,57,44,51,55,46,49,49,56,56,56,57,93,44,91,45,56,48,46,53,50,57,55,54,50,44,51,55,46,49,51,51,56,52,50,93,44,91,45,56,48,46,54,48,54,57,54,50,44,51,55,46,50,52,52,56,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,54,57,52,44,34,98,101,100,115,34,58,50,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,53,48,51,52,57,44,51,53,46,50,48,56,52,49,50,93,44,91,45,56,48,46,56,52,48,50,55,56,44,51,53,46,48,48,49,54,57,50,93,44,91,45,56,48,46,55,56,49,57,50,49,44,51,52,46,57,51,53,56,52,56,93,44,91,45,56,48,46,55,57,55,52,56,52,44,51,52,46,56,49,57,56,48,51,93,44,91,45,56,48,46,53,54,49,55,49,44,51,52,46,56,49,55,52,50,57,93,44,91,45,56,48,46,51,50,48,56,50,56,44,51,52,46,56,49,51,57,48,54,93,44,91,45,56,48,46,50,55,54,56,50,57,44,51,53,46,49,57,53,55,50,50,93,44,91,45,56,48,46,51,53,56,57,50,50,44,51,53,46,49,54,53,50,56,49,93,44,91,45,56,48,46,53,48,52,57,56,53,44,51,53,46,49,56,52,57,57,56,93,44,91,45,56,48,46,53,53,48,51,52,57,44,51,53,46,50,48,56,52,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,77,99,75,101,110,122,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,51,54,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,52,48,52,52,44,52,55,46,57,57,54,48,56,50,93,44,91,45,49,48,52,46,48,52,52,56,55,49,44,52,55,46,51,57,55,48,54,51,93,44,91,45,49,48,52,46,48,52,52,57,54,56,44,52,55,46,51,51,48,49,52,49,93,44,91,45,49,48,51,46,54,54,54,54,55,53,44,52,55,46,51,50,57,50,53,54,93,44,91,45,49,48,51,46,48,57,57,49,57,55,44,52,55,46,51,50,56,55,49,52,93,44,91,45,49,48,51,46,48,57,57,54,55,44,52,55,46,54,55,52,53,49,56,93,44,91,45,49,48,50,46,54,52,50,54,54,57,44,52,55,46,54,55,52,48,49,50,93,44,91,45,49,48,50,46,54,52,50,50,54,54,44,52,55,46,56,50,51,55,49,51,93,44,91,45,49,48,50,46,53,54,53,57,48,50,44,52,55,46,57,54,57,48,50,56,93,44,91,45,49,48,50,46,54,48,56,51,54,44,52,56,46,48,52,54,51,53,49,93,44,91,45,49,48,50,46,56,50,56,52,55,55,44,52,56,46,49,50,51,54,54,52,93,44,91,45,49,48,51,46,50,48,49,56,57,44,52,56,46,49,51,53,50,48,56,93,44,91,45,49,48,51,46,50,55,55,50,54,54,44,52,56,46,48,53,56,48,50,51,93,44,91,45,49,48,51,46,52,56,53,48,55,50,44,52,56,46,48,48,54,55,50,53,93,44,91,45,49,48,51,46,54,48,56,49,55,52,44,52,56,46,49,49,52,49,50,52,93,44,91,45,49,48,51,46,55,56,52,51,57,52,44,52,56,46,48,53,57,52,57,49,93,44,91,45,49,48,51,46,57,49,57,55,56,57,44,52,55,46,57,53,53,57,53,93,44,91,45,49,48,52,46,48,52,52,48,52,52,44,52,55,46,57,57,54,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,79,107,97,108,111,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,55,51,55,44,34,98,101,100,115,34,58,52,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,55,56,53,54,57,50,44,51,48,46,57,57,54,57,56,93,44,91,45,56,54,46,56,48,48,53,53,52,44,51,48,46,51,51,52,52,57,50,93,44,91,45,56,54,46,54,52,53,56,54,49,44,51,48,46,51,52,54,49,55,51,93,44,91,45,56,54,46,51,57,55,53,48,52,44,51,48,46,51,50,53,51,53,52,93,44,91,45,56,54,46,51,56,56,54,52,54,44,51,48,46,57,57,52,49,56,49,93,44,91,45,56,54,46,54,56,56,51,49,55,44,51,48,46,57,57,52,53,48,55,93,44,91,45,56,54,46,55,56,53,54,57,50,44,51,48,46,57,57,54,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,97,109,101,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,51,55,48,48,44,34,98,101,100,115,34,58,51,56,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,50,56,49,55,56,44,51,55,46,55,48,56,50,51,93,44,91,45,49,50,50,46,48,56,49,52,55,51,44,51,55,46,52,55,55,56,51,56,93,44,91,45,49,50,49,46,52,55,50,54,52,56,44,51,55,46,52,56,50,49,55,93,44,91,45,49,50,49,46,52,55,49,57,50,53,44,51,55,46,52,56,49,55,56,51,93,44,91,45,49,50,49,46,53,53,54,54,53,53,44,51,55,46,53,52,50,55,51,50,93,44,91,45,49,50,49,46,53,53,54,57,57,55,44,51,55,46,56,49,54,52,56,56,93,44,91,45,49,50,49,46,57,54,48,55,55,44,51,55,46,55,49,56,54,50,57,93,44,91,45,49,50,50,46,48,52,53,52,55,51,44,51,55,46,55,57,56,49,50,54,93,44,91,45,49,50,50,46,49,52,48,53,53,49,44,51,55,46,56,48,52,53,57,52,93,44,91,45,49,50,50,46,50,54,52,48,50,55,44,51,55,46,57,48,51,55,55,53,93,44,91,45,49,50,50,46,51,55,51,55,56,50,44,51,55,46,56,56,51,55,50,53,93,44,91,45,49,50,50,46,50,56,49,55,56,44,51,55,46,55,48,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,53,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,50,49,56,51,53,44,51,57,46,50,50,52,49,48,56,93,44,91,45,57,48,46,54,54,51,49,56,49,44,51,56,46,57,51,52,50,50,52,93,44,91,45,57,48,46,53,52,54,56,51,49,44,51,56,46,56,55,52,48,48,57,93,44,91,45,57,48,46,52,53,48,56,49,51,44,51,56,46,57,54,55,55,54,57,93,44,91,45,57,48,46,53,55,48,49,54,57,44,51,56,46,57,57,51,50,57,93,44,91,45,57,48,46,54,48,51,53,54,57,44,51,57,46,49,49,55,53,57,50,93,44,91,45,57,48,46,54,49,51,55,55,53,44,51,57,46,51,57,53,52,49,54,93,44,91,45,57,48,46,57,51,54,55,50,56,44,51,57,46,51,57,57,53,49,49,93,44,91,45,57,48,46,55,50,49,56,51,53,44,51,57,46,50,50,52,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,75,111,115,99,105,117,115,107,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,56,48,54,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,51,53,48,55,44,52,49,46,52,51,54,56,53,54,93,44,91,45,56,54,46,48,53,57,50,51,44,52,49,46,52,51,53,56,49,50,93,44,91,45,56,54,46,48,55,55,53,53,49,44,52,49,46,49,55,50,56,54,56,93,44,91,45,56,54,46,48,55,53,57,51,57,44,52,49,46,48,56,52,56,55,56,93,44,91,45,56,53,46,57,52,53,53,54,49,44,52,49,46,48,52,50,56,55,54,93,44,91,45,56,53,46,54,56,52,49,56,49,44,52,49,46,48,52,54,55,49,54,93,44,91,45,56,53,46,54,53,49,57,50,56,44,52,49,46,50,57,52,55,55,54,93,44,91,45,56,53,46,54,53,51,53,48,55,44,52,49,46,52,51,54,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,78,111,120,117,98,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,49,51,48,53,51,44,51,51,46,50,56,54,52,50,52,93,44,91,45,56,56,46,56,49,50,55,56,50,44,51,50,46,57,50,53,57,55,51,93,44,91,45,56,56,46,51,52,55,56,56,55,44,51,50,46,57,50,57,48,56,50,93,44,91,45,56,56,46,51,52,48,52,51,50,44,51,50,46,57,57,49,49,57,57,93,44,91,45,56,56,46,51,48,52,52,51,52,44,51,51,46,50,56,56,51,50,93,44,91,45,56,56,46,54,54,57,48,55,54,44,51,51,46,50,56,54,57,50,50,93,44,91,45,56,56,46,56,49,51,48,53,51,44,51,51,46,50,56,54,52,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,87,111,111,100,114,117,102,102,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,52,55,50,53,55,44,51,53,46,52,51,57,49,48,54,93,44,91,45,57,49,46,52,51,48,56,56,52,44,51,53,46,51,55,49,53,54,54,93,44,91,45,57,49,46,51,55,57,55,49,57,44,51,53,46,50,49,53,49,52,57,93,44,91,45,57,49,46,52,54,53,49,49,52,44,51,53,46,48,56,57,52,53,52,93,44,91,45,57,49,46,51,54,51,55,54,51,44,51,53,46,48,53,49,56,56,55,93,44,91,45,57,49,46,51,54,56,53,54,44,51,52,46,57,49,50,55,51,53,93,44,91,45,57,49,46,50,57,51,49,49,49,44,51,52,46,57,56,53,48,57,49,93,44,91,45,57,49,46,49,52,57,56,52,50,44,51,53,46,48,48,50,52,55,93,44,91,45,57,49,46,48,52,53,52,51,44,51,53,46,48,48,49,48,52,93,44,91,45,57,49,46,48,52,50,54,55,44,51,53,46,49,52,56,49,56,57,93,44,91,45,57,49,46,48,51,57,55,56,51,44,51,53,46,51,53,52,50,53,54,93,44,91,45,57,49,46,50,53,49,53,53,53,44,51,53,46,51,53,55,53,54,49,93,44,91,45,57,49,46,51,52,55,50,53,55,44,51,53,46,52,51,57,49,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,71,108,111,117,99,101,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,56,53,50,44,34,98,101,100,115,34,58,51,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,50,49,49,52,54,51,44,51,57,46,56,54,55,48,48,52,93,44,91,45,55,53,46,52,49,53,48,54,50,44,51,57,46,56,48,49,57,49,57,93,44,91,45,55,53,46,52,48,53,52,56,57,44,51,57,46,55,57,54,51,54,56,93,44,91,45,55,53,46,51,54,55,50,51,57,44,51,57,46,55,49,55,53,54,53,93,44,91,45,55,53,46,49,57,57,55,57,51,44,51,57,46,54,54,54,57,57,54,93,44,91,45,55,53,46,48,54,49,56,53,52,44,51,57,46,53,54,56,55,52,54,93,44,91,45,55,52,46,57,56,53,50,55,49,44,51,57,46,53,49,52,57,54,55,93,44,91,45,55,52,46,56,55,55,50,54,44,51,57,46,54,48,56,51,53,50,93,44,91,45,55,53,46,49,51,57,56,51,50,44,51,57,46,56,56,56,51,49,55,93,44,91,45,55,53,46,50,49,49,52,54,51,44,51,57,46,56,54,55,48,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,72,105,108,108,115,98,111,114,111,117,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,49,48,56,55,44,34,98,101,100,115,34,58,49,48,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,48,51,56,49,52,57,44,52,51,46,49,50,56,56,48,55,93,44,91,45,55,50,46,48,48,54,49,57,44,52,50,46,57,52,51,55,56,57,93,44,91,45,55,49,46,57,50,56,57,57,51,44,52,50,46,55,49,50,49,48,50,93,44,91,45,55,49,46,56,57,56,55,55,51,44,52,50,46,55,49,49,51,49,50,93,44,91,45,55,49,46,50,57,52,54,51,55,44,52,50,46,54,57,55,48,52,50,93,44,91,45,55,49,46,50,53,53,49,52,55,44,52,50,46,55,51,54,53,53,52,93,44,91,45,55,49,46,50,52,53,52,56,49,44,52,50,46,55,52,50,53,49,52,93,44,91,45,55,49,46,52,50,55,48,54,55,44,52,50,46,56,50,52,56,52,93,44,91,45,55,49,46,52,53,48,52,51,54,44,52,50,46,57,51,49,48,50,93,44,91,45,55,49,46,51,57,50,51,56,56,44,52,51,46,48,48,57,51,48,57,93,44,91,45,55,49,46,53,49,55,52,54,55,44,52,51,46,48,54,56,57,48,57,93,44,91,45,55,49,46,54,52,49,50,57,49,44,52,51,46,48,53,52,49,54,56,93,44,91,45,55,49,46,54,54,55,55,55,49,44,52,51,46,49,53,50,53,51,52,93,44,91,45,55,49,46,56,53,54,49,44,52,51,46,49,49,53,49,51,53,93,44,91,45,55,49,46,57,49,51,50,49,53,44,52,51,46,50,48,55,48,57,57,93,44,91,45,55,50,46,48,48,57,48,55,52,44,52,51,46,49,56,55,56,56,50,93,44,91,45,55,50,46,48,51,56,49,52,57,44,52,51,46,49,50,56,56,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,74,117,100,105,116,104,32,66,97,115,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,54,51,57,53,53,57,44,52,55,46,52,49,54,52,56,54,93,44,91,45,49,49,48,46,55,54,55,49,50,53,44,52,55,46,51,53,57,49,50,56,93,44,91,45,49,49,48,46,55,55,48,54,57,56,44,52,55,46,48,57,54,53,52,54,93,44,91,45,49,49,48,46,54,52,53,50,49,50,44,52,55,46,48,57,53,56,55,93,44,91,45,49,49,48,46,54,53,50,56,55,55,44,52,54,46,56,50,51,54,50,54,93,44,91,45,49,49,48,46,52,53,52,53,54,54,44,52,54,46,54,55,57,53,52,53,93,44,91,45,49,49,48,46,50,55,51,51,51,55,44,52,54,46,55,49,48,53,48,57,93,44,91,45,49,48,57,46,57,54,55,56,44,52,54,46,55,53,48,56,55,53,93,44,91,45,49,48,57,46,55,52,53,55,52,53,44,52,54,46,54,57,52,48,57,55,93,44,91,45,49,48,57,46,55,57,55,52,54,57,44,52,54,46,56,54,55,48,51,56,93,44,91,45,49,48,57,46,55,53,53,52,50,51,44,52,54,46,56,57,54,48,50,51,93,44,91,45,49,48,57,46,55,53,54,53,54,56,44,52,55,46,49,56,53,54,57,52,93,44,91,45,49,49,48,46,49,50,55,54,57,57,44,52,55,46,50,55,49,57,49,93,44,91,45,49,49,48,46,50,49,51,53,57,54,44,52,55,46,52,49,54,54,53,55,93,44,91,45,49,49,48,46,54,51,57,53,53,57,44,52,55,46,52,49,54,52,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,105,116,99,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,52,48,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,50,50,48,54,52,44,51,54,46,49,53,54,57,54,93,44,91,45,56,50,46,52,49,54,55,51,56,44,51,54,46,48,55,50,56,50,55,93,44,91,45,56,50,46,51,52,53,50,57,44,51,54,46,48,55,54,52,53,57,93,44,91,45,56,50,46,49,57,49,55,48,53,44,51,53,46,57,57,48,54,51,54,93,44,91,45,56,50,46,49,51,51,52,56,52,44,51,53,46,56,50,51,51,48,57,93,44,91,45,56,49,46,57,56,49,57,53,52,44,51,53,46,57,49,49,51,54,49,93,44,91,45,56,50,46,48,51,52,49,48,52,44,51,53,46,57,52,50,48,53,55,93,44,91,45,56,50,46,48,56,49,48,55,57,44,51,54,46,49,48,51,49,55,93,44,91,45,56,50,46,50,50,50,48,54,52,44,51,54,46,49,53,54,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,80,111,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,54,49,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,51,48,50,57,48,51,44,52,54,46,56,51,50,49,53,57,93,44,91,45,49,49,51,46,49,49,53,54,49,52,44,52,54,46,55,49,51,51,56,55,93,44,91,45,49,49,51,46,48,51,56,55,48,50,44,52,54,46,55,51,53,53,52,93,44,91,45,49,49,51,46,48,51,54,56,50,53,44,52,54,46,50,54,54,56,50,54,93,44,91,45,49,49,50,46,53,53,56,53,57,57,44,52,54,46,50,54,53,56,50,49,93,44,91,45,49,49,50,46,53,51,51,54,50,53,44,52,54,46,51,51,48,56,57,56,93,44,91,45,49,49,50,46,51,49,48,53,55,51,44,52,54,46,52,50,49,49,55,49,93,44,91,45,49,49,50,46,51,50,48,56,55,49,44,52,54,46,54,53,53,57,50,55,93,44,91,45,49,49,50,46,53,51,53,53,57,55,44,52,54,46,54,57,57,52,56,50,93,44,91,45,49,49,50,46,53,51,53,55,52,56,44,52,54,46,56,51,52,50,51,52,93,44,91,45,49,49,50,46,55,57,53,54,52,50,44,52,54,46,56,51,49,54,54,53,93,44,91,45,49,49,50,46,55,57,53,56,48,56,44,52,55,46,49,55,55,48,48,52,93,44,91,45,49,49,51,46,48,53,57,48,53,51,44,52,55,46,49,55,57,53,55,93,44,91,45,49,49,51,46,48,53,57,49,57,57,44,52,55,46,52,56,56,53,57,57,93,44,91,45,49,49,51,46,49,52,52,51,54,56,44,52,55,46,53,57,53,53,48,55,93,44,91,45,49,49,51,46,52,54,54,52,56,53,44,52,55,46,54,48,48,48,53,55,93,44,91,45,49,49,51,46,52,54,54,52,53,44,52,55,46,49,55,57,49,56,54,93,44,91,45,49,49,51,46,51,48,50,57,52,51,44,52,55,46,49,55,57,54,52,51,93,44,91,45,49,49,51,46,51,48,50,57,48,51,44,52,54,46,56,51,50,49,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,52,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,55,50,52,54,54,51,44,52,53,46,48,52,52,52,51,50,93,44,91,45,49,50,51,46,55,50,53,48,48,49,44,52,52,46,55,51,57,48,52,54,93,44,91,45,49,50,51,46,54,48,50,54,48,57,44,52,52,46,55,50,49,49,53,52,93,44,91,45,49,50,51,46,49,52,57,48,50,53,44,52,52,46,55,50,48,50,50,53,93,44,91,45,49,50,51,46,49,52,51,56,52,51,44,52,52,46,55,52,56,57,49,52,93,44,91,45,49,50,51,46,49,55,57,51,56,55,44,52,52,46,56,51,53,55,50,57,93,44,91,45,49,50,51,46,48,52,52,57,48,51,44,52,52,46,57,52,52,48,50,56,93,44,91,45,49,50,51,46,48,54,56,54,54,55,44,52,53,46,48,55,52,56,54,93,44,91,45,49,50,51,46,55,50,52,51,54,56,44,52,53,46,48,55,54,50,50,54,93,44,91,45,49,50,51,46,55,50,52,54,54,51,44,52,53,46,48,52,52,52,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,87,97,115,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,54,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,54,57,54,52,55,57,44,52,53,46,50,53,55,57,50,93,44,91,45,49,50,49,46,55,52,56,52,56,53,44,52,53,46,50,48,52,52,52,93,44,91,45,49,50,49,46,54,53,50,48,49,56,44,52,53,46,48,56,54,55,48,54,93,44,91,45,49,50,49,46,56,48,53,54,54,55,44,52,53,46,48,48,54,49,50,52,93,44,91,45,49,50,49,46,55,51,52,50,50,51,44,52,52,46,56,56,53,55,50,93,44,91,45,49,50,49,46,55,53,50,57,57,52,44,52,52,46,56,50,57,57,49,57,93,44,91,45,49,50,49,46,48,56,57,52,56,44,52,52,46,56,50,51,50,55,50,93,44,91,45,49,50,48,46,51,55,49,52,52,49,44,52,52,46,56,50,49,55,54,57,93,44,91,45,49,50,48,46,52,53,53,51,56,57,44,52,52,46,56,54,54,48,52,54,93,44,91,45,49,50,48,46,52,57,53,49,54,44,52,53,46,48,54,56,50,55,57,93,44,91,45,49,50,48,46,53,48,51,55,51,51,44,52,53,46,48,56,51,52,55,55,93,44,91,45,49,50,48,46,55,50,51,53,54,57,44,52,53,46,49,51,48,57,49,49,93,44,91,45,49,50,48,46,56,56,57,51,53,55,44,52,53,46,50,48,50,51,48,53,93,44,91,45,49,50,49,46,48,50,52,50,57,52,44,52,53,46,50,49,57,53,51,49,93,44,91,45,49,50,48,46,56,54,56,53,54,57,44,52,53,46,52,48,49,49,52,54,93,44,91,45,49,50,48,46,56,51,56,55,55,50,44,52,53,46,53,49,53,57,52,54,93,44,91,45,49,50,48,46,57,49,53,56,53,44,52,53,46,54,52,49,50,93,44,91,45,49,50,49,46,48,56,52,56,54,51,44,52,53,46,54,52,55,57,51,50,93,44,91,45,49,50,49,46,51,51,55,55,49,50,44,52,53,46,55,48,52,56,51,57,93,44,91,45,49,50,49,46,52,52,49,50,50,57,44,52,53,46,54,57,55,50,56,93,44,91,45,49,50,49,46,52,56,50,49,54,56,44,52,53,46,53,49,57,54,48,52,93,44,91,45,49,50,49,46,52,56,49,56,56,56,44,52,53,46,50,53,56,49,50,56,93,44,91,45,49,50,49,46,54,57,54,52,55,57,44,52,53,46,50,53,55,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,80,101,114,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,57,52,50,48,55,44,52,53,46,57,52,53,93,44,91,45,49,48,50,46,57,53,55,50,56,49,44,52,53,46,50,49,50,56,53,49,93,44,91,45,49,48,50,46,57,53,55,51,55,49,44,52,53,46,48,51,57,53,54,57,93,44,91,45,49,48,49,46,57,57,57,57,57,44,52,53,46,48,51,56,50,55,52,93,44,91,45,49,48,49,46,57,57,57,55,57,44,52,53,46,52,55,50,52,49,52,93,44,91,45,49,48,50,46,48,48,48,54,56,49,44,52,53,46,57,52,52,53,54,51,93,44,91,45,49,48,50,46,57,52,50,48,55,44,52,53,46,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,48,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,50,56,52,53,57,44,52,48,46,57,48,48,54,53,51,93,44,91,45,57,52,46,57,49,52,56,57,54,44,52,48,46,53,55,53,48,54,56,93,44,91,45,57,52,46,54,51,50,48,51,44,52,48,46,53,55,49,51,54,55,93,44,91,45,57,52,46,52,55,49,50,49,51,44,52,48,46,53,55,48,56,50,53,93,44,91,45,57,52,46,52,55,48,55,55,57,44,52,48,46,56,57,57,53,48,50,93,44,91,45,57,52,46,57,50,56,52,53,57,44,52,48,46,57,48,48,54,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,54,52,52,51,44,51,49,46,54,57,55,57,53,50,93,44,91,45,56,56,46,52,52,57,52,51,56,44,51,49,46,52,51,53,56,51,55,93,44,91,45,56,56,46,52,51,50,48,48,55,44,51,49,46,49,49,52,50,57,56,93,44,91,45,56,56,46,51,50,57,55,56,50,44,51,49,46,49,52,51,56,50,49,93,44,91,45,56,56,46,48,50,50,54,52,57,44,51,49,46,49,52,52,50,54,55,93,44,91,45,56,55,46,57,55,50,56,54,57,44,51,49,46,49,54,50,54,57,52,93,44,91,45,56,55,46,57,52,54,53,56,56,44,51,49,46,49,57,50,57,51,93,44,91,45,56,55,46,57,53,48,55,57,53,44,51,49,46,50,57,57,52,54,51,93,44,91,45,56,55,46,56,56,56,56,53,55,44,51,49,46,51,54,52,48,50,51,93,44,91,45,56,55,46,57,48,55,51,57,57,44,51,49,46,52,57,52,52,51,56,93,44,91,45,56,56,46,48,55,50,50,51,52,44,51,49,46,53,57,52,53,93,44,91,45,56,56,46,48,56,56,50,56,56,44,51,49,46,54,57,57,51,48,51,93,44,91,45,56,56,46,52,54,52,52,51,44,51,49,46,54,57,55,57,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,101,102,105,97,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,50,55,57,44,34,98,101,100,115,34,58,49,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,49,54,54,52,44,52,49,46,52,50,55,53,54,56,93,44,91,45,56,52,46,56,48,52,48,54,51,44,52,49,46,52,50,54,48,53,49,93,44,91,45,56,52,46,56,48,51,53,56,57,44,52,49,46,50,55,49,50,55,51,93,44,91,45,56,52,46,56,48,51,53,52,52,44,52,49,46,50,53,50,53,54,50,93,44,91,45,56,52,46,52,53,55,50,49,55,44,52,49,46,50,53,51,52,56,53,93,44,91,45,56,52,46,51,52,49,54,48,50,44,52,49,46,49,54,53,53,50,52,93,44,91,45,56,52,46,50,50,56,50,50,50,44,52,49,46,49,54,53,56,54,50,93,44,91,45,56,52,46,50,50,56,52,53,52,44,52,49,46,52,50,55,56,49,93,44,91,45,56,52,46,51,52,49,54,54,52,44,52,49,46,52,50,55,53,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,98,114,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,52,55,44,34,98,101,100,115,34,58,49,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,48,54,51,49,54,44,51,55,46,56,54,56,57,49,53,93,44,91,45,56,48,46,54,54,51,51,52,56,44,51,55,46,55,51,49,54,57,54,93,44,91,45,56,48,46,53,48,54,54,57,53,44,51,55,46,54,57,49,49,53,56,93,44,91,45,56,48,46,50,57,54,49,51,56,44,51,55,46,54,57,49,55,56,51,93,44,91,45,56,48,46,49,54,50,50,48,50,44,51,55,46,56,55,53,49,50,50,93,44,91,45,56,48,46,48,53,54,48,53,54,44,51,55,46,57,53,49,57,53,57,93,44,91,45,55,57,46,57,53,57,56,52,52,44,51,56,46,48,54,51,54,57,55,93,44,91,45,56,48,46,50,54,52,54,53,51,44,51,56,46,48,52,54,54,49,54,93,44,91,45,56,48,46,51,54,51,50,57,53,44,51,56,46,49,49,52,51,51,49,93,44,91,45,56,48,46,51,54,48,48,52,56,44,51,56,46,50,50,53,56,52,53,93,44,91,45,56,48,46,52,51,54,53,49,52,44,51,56,46,50,54,55,51,51,52,93,44,91,45,56,48,46,55,49,49,57,54,49,44,51,56,46,48,55,57,49,50,57,93,44,91,45,56,48,46,56,56,50,49,56,55,44,51,56,46,49,48,51,52,53,55,93,44,91,45,56,48,46,55,54,57,56,54,54,44,51,55,46,57,56,53,50,55,93,44,91,45,56,48,46,56,48,54,51,49,54,44,51,55,46,56,54,56,57,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,48,56,52,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,57,53,49,54,53,44,51,56,46,56,50,54,50,57,57,93,44,91,45,56,57,46,49,51,56,49,51,56,44,51,56,46,56,50,52,50,48,57,93,44,91,45,56,57,46,49,51,56,51,57,51,44,51,56,46,55,51,54,51,51,49,93,44,91,45,56,57,46,49,52,51,56,54,54,44,51,56,46,53,48,51,48,56,57,93,44,91,45,56,57,46,49,52,52,51,56,56,44,51,56,46,52,55,51,56,55,56,93,44,91,45,56,56,46,54,57,56,57,54,49,44,51,56,46,52,55,52,57,49,52,93,44,91,45,56,56,46,54,57,56,52,53,57,44,51,56,46,54,48,54,48,54,50,93,44,91,45,56,56,46,54,57,53,49,54,53,44,51,56,46,56,50,54,50,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,68,105,99,107,101,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,54,48,44,34,98,101,100,115,34,58,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,49,52,49,57,53,44,51,55,46,50,57,54,48,55,53,93,44,91,45,56,50,46,53,53,51,56,55,52,44,51,55,46,50,48,50,56,51,51,93,44,91,45,56,50,46,52,54,55,51,52,53,44,51,55,46,48,50,50,49,51,54,93,44,91,45,56,50,46,51,50,55,56,51,44,51,54,46,57,55,48,57,56,50,93,44,91,45,56,50,46,49,52,57,51,55,53,44,51,55,46,48,52,49,54,52,49,93,44,91,45,56,50,46,51,49,52,49,57,53,44,51,55,46,50,57,54,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,109,101,108,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,53,53,49,52,56,44,51,55,46,52,49,56,51,54,51,93,44,91,45,55,55,46,57,56,54,49,57,44,51,55,46,52,56,54,50,54,57,93,44,91,45,55,56,46,49,51,50,48,52,56,44,51,55,46,52,53,52,54,56,54,93,44,91,45,55,56,46,50,51,53,48,51,57,44,51,55,46,51,54,56,49,48,50,93,44,91,45,55,56,46,50,51,49,50,51,52,44,51,55,46,50,57,54,50,50,93,44,91,45,55,55,46,55,57,53,57,50,54,44,51,55,46,49,57,50,53,57,50,93,44,91,45,55,55,46,54,53,48,54,49,44,51,55,46,50,54,53,49,49,50,93,44,91,45,55,55,46,55,53,56,54,50,44,51,55,46,50,54,56,55,49,55,93,44,91,45,55,55,46,56,55,55,53,53,54,44,51,55,46,51,54,54,50,52,55,93,44,91,45,55,55,46,56,53,53,49,52,56,44,51,55,46,52,49,56,51,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,51,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,56,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,48,55,48,48,54,44,51,49,46,57,50,52,52,54,53,93,44,91,45,56,52,46,57,53,56,54,52,44,51,49,46,55,55,55,56,53,52,93,44,91,45,56,52,46,57,52,50,51,53,51,44,51,49,46,54,49,56,54,54,57,93,44,91,45,56,52,46,56,49,55,56,52,51,44,51,49,46,54,49,57,55,55,49,93,44,91,45,56,52,46,53,52,54,56,53,52,44,51,49,46,54,50,49,49,57,57,93,44,91,45,56,52,46,54,48,51,48,56,54,44,51,49,46,55,55,50,48,48,49,93,44,91,45,56,52,46,53,57,57,55,55,54,44,51,49,46,57,50,48,49,55,49,93,44,91,45,56,52,46,54,53,53,56,50,44,51,49,46,57,50,48,51,48,56,93,44,91,45,56,52,46,57,48,55,48,48,54,44,51,49,46,57,50,52,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,76,117,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,50,54,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,54,48,56,52,56,53,44,51,50,46,54,48,53,52,52,57,93,44,91,45,49,48,55,46,57,50,51,57,57,55,44,51,50,46,54,48,52,51,55,57,93,44,91,45,49,48,55,46,57,50,51,55,54,54,44,51,50,46,53,49,55,52,49,54,93,44,91,45,49,48,56,46,50,50,57,51,52,51,44,51,50,46,53,49,54,56,51,55,93,44,91,45,49,48,56,46,50,50,57,57,53,49,44,51,50,46,48,55,57,56,55,93,44,91,45,49,48,56,46,50,49,55,49,52,51,44,51,49,46,56,54,52,49,51,57,93,44,91,45,49,48,56,46,50,48,56,52,56,52,44,51,49,46,55,56,51,54,57,56,93,44,91,45,49,48,55,46,50,57,54,55,57,51,44,51,49,46,55,56,51,54,52,49,93,44,91,45,49,48,55,46,50,57,57,54,51,49,44,51,50,46,54,48,53,51,55,93,44,91,45,49,48,55,46,54,48,56,52,56,53,44,51,50,46,54,48,53,52,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,53,53,34,44,34,78,65,77,69,34,58,34,78,117,101,99,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,48,52,56,54,44,34,98,101,100,115,34,58,49,49,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,57,56,53,49,55,44,50,55,46,57,57,53,54,53,57,93,44,91,45,57,55,46,57,51,52,50,55,52,44,50,55,46,56,56,53,50,48,50,93,44,91,45,57,55,46,57,52,50,49,52,54,44,50,55,46,54,51,53,57,51,50,93,44,91,45,57,55,46,56,52,48,54,55,56,44,50,55,46,53,53,56,51,53,56,93,44,91,45,57,55,46,49,54,53,48,57,55,44,50,55,46,53,54,56,51,93,44,91,45,57,54,46,57,56,52,50,56,49,44,50,55,46,56,48,51,55,56,51,93,44,91,45,57,55,46,49,51,54,51,49,50,44,50,55,46,57,48,52,51,57,93,44,91,45,57,55,46,49,56,53,53,55,57,44,50,55,46,56,51,48,50,55,50,93,44,91,45,57,55,46,51,51,55,54,55,55,44,50,55,46,56,56,51,49,54,53,93,44,91,45,57,55,46,53,56,57,52,55,51,44,50,55,46,56,53,54,49,48,49,93,44,91,45,57,55,46,55,57,56,53,49,55,44,50,55,46,57,57,53,54,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,87,101,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,48,48,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,55,57,50,56,49,44,52,52,46,49,55,54,49,56,50,93,44,91,45,49,48,53,46,48,55,57,55,57,55,44,52,51,46,52,57,56,52,52,53,93,44,91,45,49,48,52,46,56,57,57,57,52,49,44,52,51,46,52,57,57,54,52,93,44,91,45,49,48,52,46,48,53,52,55,56,54,44,52,51,46,53,48,51,51,50,56,93,44,91,45,49,48,52,46,48,53,53,52,56,55,44,52,51,46,56,53,51,52,55,54,93,44,91,45,49,48,52,46,48,53,52,53,56,56,44,52,52,46,49,52,49,48,56,49,93,44,91,45,49,48,52,46,48,53,52,52,56,55,44,52,52,46,49,56,48,51,56,49,93,44,91,45,49,48,53,46,48,55,57,50,56,49,44,52,52,46,49,55,54,49,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,84,111,97,32,66,97,106,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,55,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,56,55,50,55,49,44,49,56,46,53,50,54,50,55,49,93,44,91,45,54,54,46,50,53,50,53,53,52,44,49,56,46,51,57,52,49,56,55,93,44,91,45,54,54,46,49,57,54,57,56,44,49,56,46,51,56,57,50,56,57,93,44,91,45,54,54,46,49,54,57,53,49,54,44,49,56,46,52,51,48,57,57,56,93,44,91,45,54,54,46,49,50,57,52,48,51,44,49,56,46,52,54,53,54,51,50,93,44,91,45,54,54,46,49,50,56,57,56,54,44,49,56,46,53,50,52,52,48,51,93,44,91,45,54,54,46,49,56,55,50,55,49,44,49,56,46,53,50,54,50,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,51,56,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,56,53,49,57,52,44,52,49,46,48,54,56,55,52,57,93,44,91,45,57,48,46,55,56,57,54,53,50,44,52,48,46,54,51,53,55,53,93,44,91,45,57,48,46,52,52,53,54,50,55,44,52,48,46,54,50,55,54,51,56,93,44,91,45,57,48,46,52,52,52,51,51,57,44,52,48,46,55,49,52,56,54,56,93,44,91,45,57,48,46,52,51,57,52,50,51,44,52,49,46,48,54,51,57,57,53,93,44,91,45,57,48,46,55,56,53,49,57,52,44,52,49,46,48,54,56,55,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,53,54,48,44,34,98,101,100,115,34,58,49,50,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,49,56,55,54,49,44,51,52,46,57,57,49,49,54,57,93,44,91,45,56,54,46,55,56,51,54,50,56,44,51,52,46,57,57,49,57,52,56,93,44,91,45,56,54,46,55,57,48,48,53,54,44,51,52,46,53,53,48,55,57,93,44,91,45,56,54,46,54,56,57,51,53,51,44,51,52,46,53,56,54,52,50,53,93,44,91,45,56,54,46,53,53,48,49,54,54,44,51,52,46,53,52,53,57,54,51,93,44,91,45,56,54,46,52,50,53,52,56,50,44,51,52,46,52,55,57,50,55,55,93,44,91,45,56,54,46,51,49,49,49,56,55,44,51,52,46,53,51,57,50,55,55,93,44,91,45,56,54,46,51,50,54,56,53,51,44,51,52,46,53,57,57,52,48,51,93,44,91,45,56,54,46,51,53,57,48,51,52,44,51,52,46,54,51,50,54,49,93,44,91,45,56,54,46,51,53,49,49,50,51,44,51,52,46,56,55,51,50,54,53,93,44,91,45,56,54,46,51,49,49,50,55,52,44,51,52,46,57,57,49,48,57,56,93,44,91,45,56,54,46,51,49,56,55,54,49,44,51,52,46,57,57,49,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,87,105,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,54,54,51,44,34,98,101,100,115,34,58,49,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,57,52,50,56,54,44,51,54,46,50,52,53,49,48,53,93,44,91,45,56,54,46,53,49,53,53,56,57,44,51,54,46,49,48,48,54,49,93,44,91,45,56,54,46,51,50,54,50,53,50,44,51,53,46,57,56,53,48,48,56,93,44,91,45,56,54,46,49,53,51,50,49,52,44,51,53,46,57,53,52,51,57,57,93,44,91,45,56,54,46,48,49,52,56,52,57,44,51,53,46,57,54,49,48,54,93,44,91,45,56,54,46,48,53,57,55,48,54,44,51,54,46,48,56,54,48,50,52,93,44,91,45,56,54,46,49,51,54,56,48,51,44,51,54,46,50,57,53,56,53,57,93,44,91,45,56,54,46,50,56,51,50,53,54,44,51,54,46,51,52,55,53,93,44,91,45,56,54,46,52,53,49,55,50,49,44,51,54,46,51,51,53,54,50,57,93,44,91,45,56,54,46,53,57,52,50,56,54,44,51,54,46,50,52,53,49,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,67,97,109,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,49,57,56,50,56,44,51,50,46,57,56,50,56,56,54,93,44,91,45,57,52,46,57,50,55,55,50,55,44,51,51,46,48,55,48,51,48,52,93,44,91,45,57,53,46,49,50,54,49,51,44,51,51,46,48,51,52,53,56,49,93,44,91,45,57,53,46,49,53,50,50,48,54,44,51,51,46,48,49,51,52,53,93,44,91,45,57,53,46,49,53,50,49,49,44,51,50,46,57,48,50,54,52,49,93,44,91,45,57,52,46,55,49,57,57,52,50,44,51,50,46,57,48,52,53,48,50,93,44,91,45,57,52,46,56,49,57,56,50,56,44,51,50,46,57,56,50,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,50,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,49,51,57,48,55,50,44,51,52,46,49,52,49,56,55,93,44,91,45,57,56,46,48,56,52,52,51,53,44,51,52,46,48,48,50,56,57,51,93,44,91,45,57,55,46,57,52,54,56,48,50,44,51,51,46,57,57,48,56,57,51,93,44,91,45,57,55,46,57,55,55,56,54,44,51,51,46,56,56,57,56,50,53,93,44,91,45,57,55,46,56,55,55,51,56,55,44,51,51,46,56,53,48,50,51,54,93,44,91,45,57,55,46,54,54,49,52,56,57,44,51,51,46,57,57,48,56,49,56,93,44,91,45,57,55,46,53,54,48,56,53,56,44,51,51,46,56,57,57,54,52,53,93,44,91,45,57,55,46,53,54,48,55,54,49,44,51,52,46,48,55,49,49,53,93,44,91,45,57,55,46,53,54,50,53,49,50,44,51,52,46,50,56,57,49,56,51,93,44,91,45,57,56,46,49,51,57,50,50,55,44,51,52,46,50,56,57,56,50,52,93,44,91,45,57,56,46,49,51,57,48,55,50,44,51,52,46,49,52,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,82,105,116,99,104,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,57,56,48,49,55,44,51,57,46,49,56,53,53,55,50,93,44,91,45,56,49,46,50,53,48,50,53,50,44,51,57,46,48,51,53,48,55,52,93,44,91,45,56,49,46,49,54,50,52,53,53,44,51,57,46,48,51,48,54,48,56,93,44,91,45,56,49,46,48,51,51,54,51,50,44,51,57,46,48,48,57,53,56,52,93,44,91,45,56,48,46,56,49,50,57,55,44,51,57,46,49,48,57,52,48,49,93,44,91,45,56,48,46,56,56,56,55,52,52,44,51,57,46,50,57,52,50,57,56,93,44,91,45,56,49,46,48,48,55,56,51,54,44,51,57,46,51,53,48,57,50,51,93,44,91,45,56,49,46,50,50,49,51,51,53,44,51,57,46,51,48,55,52,55,53,93,44,91,45,56,49,46,50,51,57,52,55,55,44,51,57,46,50,54,56,51,50,56,93,44,91,45,56,49,46,50,57,56,48,49,55,44,51,57,46,49,56,53,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,80,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,54,51,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,56,52,57,54,52,44,52,48,46,57,48,49,53,53,93,44,91,45,57,53,46,51,55,51,57,50,51,44,52,48,46,53,56,48,53,48,51,93,44,91,45,57,53,46,50,48,50,50,54,53,44,52,48,46,53,55,56,52,56,56,93,44,91,45,57,52,46,57,49,52,56,57,54,44,52,48,46,53,55,53,48,54,56,93,44,91,45,57,52,46,57,50,56,52,53,57,44,52,48,46,57,48,48,54,53,51,93,44,91,45,57,53,46,51,56,52,57,54,52,44,52,48,46,57,48,49,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,56,56,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,55,48,51,53,49,44,51,57,46,52,49,57,48,53,93,44,91,45,57,53,46,53,56,57,52,55,50,44,51,57,46,50,49,54,48,56,49,93,44,91,45,57,53,46,53,57,54,55,53,57,44,51,57,46,48,54,52,54,55,50,93,44,91,45,57,53,46,53,48,48,50,53,52,44,51,57,46,48,53,54,54,53,54,93,44,91,45,57,53,46,49,56,55,49,48,51,44,51,57,46,48,52,52,49,48,57,93,44,91,45,57,53,46,49,56,48,56,57,49,44,51,57,46,52,49,57,50,49,56,93,44,91,45,57,53,46,53,55,48,51,53,49,44,51,57,46,52,49,57,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,73,98,101,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,54,57,49,44,34,98,101,100,115,34,58,49,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,54,52,52,53,56,44,51,48,46,48,51,54,57,49,56,93,44,91,45,57,49,46,57,57,48,51,57,54,44,50,57,46,57,55,48,51,50,54,93,44,91,45,57,49,46,57,55,57,57,48,56,44,50,57,46,54,53,48,49,50,56,93,44,91,45,57,50,46,48,52,53,54,49,54,44,50,57,46,53,48,53,56,48,54,93,44,91,45,57,49,46,56,52,48,57,51,52,44,50,57,46,51,54,48,49,57,93,44,91,45,57,49,46,53,57,49,56,54,52,44,50,57,46,51,53,57,51,55,53,93,44,91,45,57,49,46,53,57,49,51,44,50,57,46,53,48,55,55,48,49,93,44,91,45,57,49,46,55,50,51,50,53,52,44,50,57,46,54,54,49,50,57,55,93,44,91,45,57,49,46,57,51,53,49,54,50,44,50,57,46,54,55,50,53,55,56,93,44,91,45,57,49,46,55,49,49,49,52,57,44,50,57,46,56,52,54,48,54,53,93,44,91,45,57,49,46,54,50,52,55,48,57,44,50,57,46,57,52,53,50,55,53,93,44,91,45,57,49,46,52,55,49,57,53,49,44,50,57,46,57,53,53,57,56,57,93,44,91,45,57,49,46,50,53,53,50,50,57,44,50,57,46,57,55,49,52,53,55,93,44,91,45,57,49,46,50,50,52,51,53,54,44,51,48,46,48,50,53,51,51,54,93,44,91,45,57,49,46,51,54,56,56,51,53,44,51,48,46,48,53,56,56,50,52,93,44,91,45,57,49,46,54,48,48,51,53,52,44,51,48,46,48,51,51,49,54,57,93,44,91,45,57,49,46,54,53,56,56,56,54,44,51,48,46,49,48,56,50,50,54,93,44,91,45,57,49,46,55,54,53,49,54,56,44,51,48,46,49,48,56,52,57,53,93,44,91,45,57,49,46,56,49,57,50,49,54,44,51,48,46,48,52,52,48,49,51,93,44,91,45,57,49,46,57,53,48,57,57,56,44,51,48,46,48,55,51,50,49,51,93,44,91,45,57,49,46,57,54,52,52,53,56,44,51,48,46,48,51,54,57,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,53,56,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,56,34,44,34,78,65,77,69,34,58,34,75,117,115,105,108,118,97,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,54,50,46,54,55,49,56,49,51,44,54,51,46,51,49,50,56,50,53,93,44,91,45,49,54,50,46,56,55,48,56,54,49,44,54,51,46,50,53,51,53,53,57,93,44,91,45,49,54,51,46,49,49,56,55,48,50,44,54,51,46,49,48,49,53,53,56,93,44,91,45,49,54,51,46,50,53,50,52,55,57,44,54,51,46,48,57,50,52,53,52,93,44,91,45,49,54,51,46,54,53,56,49,48,49,44,54,51,46,50,52,57,55,49,55,93,44,91,45,49,54,52,46,48,53,49,50,53,54,44,54,51,46,51,49,55,51,53,53,93,44,91,45,49,54,52,46,52,57,53,54,55,51,44,54,51,46,50,53,49,49,53,57,93,44,91,45,49,54,52,46,57,48,54,55,51,54,44,54,51,46,48,52,52,56,57,53,93,44,91,45,49,54,52,46,56,57,53,53,51,51,44,54,50,46,57,52,56,54,51,54,93,44,91,45,49,54,53,46,50,50,49,56,56,56,44,54,50,46,55,50,50,52,54,54,93,44,91,45,49,54,53,46,52,52,56,56,55,44,54,50,46,51,57,49,48,50,50,93,44,91,45,49,54,53,46,55,51,57,53,54,54,44,54,50,46,50,48,52,56,53,50,93,44,91,45,49,54,54,46,48,52,57,50,49,51,44,54,50,46,49,48,56,48,50,50,93,44,91,45,49,54,54,46,49,49,50,53,49,52,44,54,49,46,56,55,51,49,52,52,93,44,91,45,49,54,54,46,49,57,55,55,54,51,44,54,49,46,56,51,52,50,55,51,93,44,91,45,49,54,54,46,50,56,56,54,49,51,44,54,49,46,53,56,48,56,48,57,93,44,91,45,49,54,54,46,49,57,52,52,57,44,54,49,46,52,53,57,56,54,55,93,44,91,45,49,54,53,46,55,56,54,56,56,49,44,54,49,46,49,57,56,49,49,53,93,44,91,45,49,54,53,46,54,54,51,54,53,44,54,49,46,48,53,55,56,48,57,93,44,91,45,49,54,53,46,52,49,54,54,55,44,54,49,46,48,49,50,52,56,93,44,91,45,49,54,53,46,50,53,52,49,54,50,44,54,48,46,57,49,55,49,48,56,93,44,91,45,49,54,53,46,48,48,48,53,49,52,44,54,48,46,57,54,51,54,51,53,93,44,91,45,49,54,52,46,54,49,54,53,56,53,44,54,48,46,57,55,57,48,52,57,93,44,91,45,49,54,52,46,53,50,57,57,49,49,44,54,48,46,57,52,48,55,57,54,93,44,91,45,49,54,52,46,50,51,57,55,50,55,44,54,48,46,57,56,55,49,49,57,93,44,91,45,49,54,52,46,50,49,49,55,56,49,44,54,49,46,48,56,50,50,54,50,93,44,91,45,49,54,51,46,57,50,48,56,55,52,44,54,49,46,50,49,48,54,57,50,93,44,91,45,49,54,51,46,57,56,53,49,51,56,44,54,49,46,51,55,50,48,48,51,93,44,91,45,49,54,51,46,54,53,53,51,57,44,54,49,46,51,51,53,56,50,55,93,44,91,45,49,54,51,46,52,50,56,56,54,54,44,54,49,46,52,54,50,50,56,93,44,91,45,49,54,51,46,49,55,49,51,53,52,44,54,49,46,52,52,57,48,55,49,93,44,91,45,49,54,50,46,53,48,53,55,54,49,44,54,49,46,53,53,54,52,50,54,93,44,91,45,49,54,50,46,48,49,51,52,51,56,44,54,49,46,52,55,55,48,53,55,93,44,91,45,49,54,49,46,52,52,57,54,49,49,44,54,49,46,53,54,56,56,51,56,93,44,91,45,49,54,49,46,49,50,54,56,49,50,44,54,49,46,53,57,57,53,52,93,44,91,45,49,54,48,46,55,55,53,50,52,52,44,54,49,46,55,51,56,53,50,55,93,44,91,45,49,54,48,46,51,53,48,49,52,44,54,49,46,56,49,57,48,55,49,93,44,91,45,49,54,48,46,53,51,52,54,55,49,44,54,49,46,57,52,53,57,52,93,44,91,45,49,54,48,46,57,49,53,57,53,51,44,54,49,46,57,52,53,57,52,51,93,44,91,45,49,54,48,46,57,49,53,57,54,52,44,54,50,46,50,48,53,56,54,54,93,44,91,45,49,54,49,46,48,52,56,49,54,53,44,54,50,46,50,48,53,56,54,57,93,44,91,45,49,54,49,46,48,52,56,49,55,54,44,54,50,46,53,53,50,52,49,93,44,91,45,49,54,48,46,57,57,54,50,48,49,44,54,50,46,53,53,50,52,50,52,93,44,91,45,49,54,48,46,57,57,54,50,49,53,44,54,50,46,56,57,56,57,51,54,93,44,91,45,49,54,48,46,56,53,55,57,57,44,54,51,46,48,49,49,57,53,51,93,44,91,45,49,54,50,46,48,48,49,55,54,57,44,54,51,46,48,49,49,57,49,57,93,44,91,45,49,54,50,46,48,48,49,55,57,56,44,54,51,46,48,57,56,53,51,54,93,44,91,45,49,54,50,46,51,56,51,48,56,50,44,54,51,46,50,55,49,56,49,54,93,44,91,45,49,54,50,46,54,55,49,56,49,51,44,54,51,46,51,49,50,56,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,79,110,115,108,111,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,51,57,49,50,44,34,98,101,100,115,34,58,51,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,55,52,56,48,53,44,51,52,46,57,55,51,57,93,44,91,45,55,55,46,54,53,49,48,52,53,44,51,52,46,57,50,51,51,52,49,93,44,91,45,55,55,46,54,56,48,49,50,55,44,51,52,46,55,50,48,53,57,53,93,44,91,45,55,55,46,53,55,52,57,50,52,44,51,52,46,52,55,56,54,56,49,93,44,91,45,55,55,46,52,56,52,53,51,56,44,51,52,46,51,57,57,55,48,53,93,44,91,45,55,55,46,49,49,55,49,57,56,44,51,52,46,53,56,52,51,54,55,93,44,91,45,55,55,46,48,57,54,57,55,50,44,51,52,46,54,55,50,52,48,49,93,44,91,45,55,55,46,49,54,53,57,56,54,44,51,52,46,55,56,53,48,51,50,93,44,91,45,55,55,46,50,54,55,52,51,51,44,51,52,46,57,50,53,53,51,55,93,44,91,45,55,55,46,51,54,54,55,54,56,44,51,52,46,57,48,56,54,53,93,44,91,45,55,55,46,53,48,50,55,55,49,44,51,52,46,57,54,57,54,51,53,93,44,91,45,55,55,46,54,55,52,56,48,53,44,51,52,46,57,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,70,97,114,105,98,97,117,108,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,57,54,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,52,55,49,50,51,44,52,51,46,56,52,55,57,52,54,93,44,91,45,57,52,46,50,52,55,57,54,56,44,52,51,46,53,48,48,49,51,51,93,44,91,45,57,51,46,57,55,48,55,54,50,44,52,51,46,52,57,57,56,56,54,93,44,91,45,57,51,46,54,52,56,53,51,51,44,52,51,46,52,57,57,54,56,93,44,91,45,57,51,46,54,52,56,50,57,44,52,51,46,56,52,56,49,51,57,93,44,91,45,57,51,46,55,54,55,55,54,49,44,52,51,46,56,52,55,57,53,54,93,44,91,45,57,52,46,50,52,55,49,50,51,44,52,51,46,56,52,55,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,71,114,97,105,110,103,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,54,55,52,48,56,44,51,54,46,51,52,52,51,56,49,93,44,91,45,56,51,46,55,51,50,55,48,52,44,51,54,46,49,54,52,53,56,51,93,44,91,45,56,51,46,54,54,55,52,54,44,51,54,46,48,56,48,53,56,55,93,44,91,45,56,51,46,53,57,55,55,54,54,44,51,54,46,49,54,52,49,56,50,93,44,91,45,56,51,46,52,54,55,48,57,55,44,51,54,46,49,55,52,54,56,56,93,44,91,45,56,51,46,51,53,53,49,57,54,44,51,54,46,50,56,50,53,57,93,44,91,45,56,51,46,50,53,53,50,57,50,44,51,54,46,50,56,57,48,57,50,93,44,91,45,56,51,46,50,56,48,53,57,53,44,51,54,46,51,57,52,54,56,57,93,44,91,45,56,51,46,51,56,54,56,44,51,54,46,52,49,51,49,56,54,93,44,91,45,56,51,46,52,54,54,48,48,50,44,51,54,46,51,54,57,49,56,54,93,44,91,45,56,51,46,54,54,55,52,48,56,44,51,54,46,51,52,52,51,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,70,114,101,101,115,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,48,57,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,57,54,55,49,51,44,51,49,46,55,57,54,49,57,49,93,44,91,45,57,54,46,50,51,54,54,50,57,44,51,49,46,52,49,51,51,57,50,93,44,91,45,57,53,46,55,56,55,51,44,51,49,46,54,49,56,51,56,53,93,44,91,45,57,53,46,56,55,53,57,51,55,44,51,49,46,55,53,53,53,48,51,93,44,91,45,57,53,46,57,56,51,52,52,57,44,51,49,46,55,56,57,57,55,57,93,44,91,45,57,54,46,48,53,50,55,56,54,44,51,50,46,48,48,53,56,57,53,93,44,91,45,57,54,46,48,53,52,55,56,44,51,50,46,48,49,50,53,50,54,93,44,91,45,57,54,46,52,57,54,55,49,51,44,51,49,46,55,57,54,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,105,102,102,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,51,54,50,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,56,49,51,51,52,44,52,48,46,55,50,57,55,53,56,93,44,91,45,55,55,46,54,56,55,48,56,44,52,48,46,54,55,54,55,53,93,44,91,45,55,55,46,56,52,49,56,50,55,44,52,48,46,53,53,48,48,51,53,93,44,91,45,55,55,46,56,49,54,53,49,51,44,52,48,46,53,48,48,48,55,52,93,44,91,45,55,55,46,57,49,51,56,52,52,44,52,48,46,51,57,56,54,55,57,93,44,91,45,55,55,46,55,53,50,49,50,44,52,48,46,51,55,56,53,52,53,93,44,91,45,55,55,46,52,57,55,53,48,54,44,52,48,46,53,56,49,55,52,93,44,91,45,55,55,46,50,56,55,57,52,49,44,52,48,46,54,57,51,53,57,53,93,44,91,45,55,55,46,51,53,54,54,50,56,44,52,48,46,56,48,55,51,51,52,93,44,91,45,55,55,46,51,54,52,49,56,44,52,48,46,56,52,54,57,51,55,93,44,91,45,55,55,46,54,56,49,51,51,52,44,52,48,46,55,50,57,55,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,114,101,110,115,104,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,54,53,44,34,98,101,100,115,34,58,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,52,56,49,57,56,44,51,49,46,57,54,52,54,50,57,93,44,91,45,56,54,46,52,52,56,54,51,53,44,51,49,46,54,53,53,54,49,55,93,44,91,45,56,54,46,52,57,57,50,49,51,44,51,49,46,53,50,53,51,51,49,93,44,91,45,56,54,46,51,57,56,53,51,54,44,51,49,46,52,53,49,51,50,53,93,44,91,45,56,54,46,49,57,51,57,53,49,44,51,49,46,52,52,48,48,55,50,93,44,91,45,56,54,46,49,52,53,56,57,53,44,51,49,46,54,49,55,55,52,49,93,44,91,45,56,54,46,49,52,56,51,51,57,44,51,49,46,55,57,48,57,53,49,93,44,91,45,56,54,46,49,57,49,51,55,57,44,51,49,46,57,54,54,52,53,51,93,44,91,45,56,54,46,51,48,50,50,49,55,44,51,49,46,57,54,53,48,54,53,93,44,91,45,56,54,46,52,48,54,50,55,54,44,51,50,46,48,53,48,55,51,49,93,44,91,45,56,54,46,52,52,56,49,57,56,44,51,49,46,57,54,52,54,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,50,48,34,44,34,78,65,77,69,34,58,34,66,114,105,115,116,111,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,50,49,57,54,52,44,51,54,46,54,52,54,57,51,54,93,44,91,45,56,50,46,50,52,51,51,56,50,44,51,54,46,53,57,53,54,53,49,93,44,91,45,56,50,46,49,52,53,53,55,51,44,51,54,46,53,57,52,55,50,53,93,44,91,45,56,50,46,49,50,49,57,54,52,44,51,54,46,54,52,54,57,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,57,57,34,44,34,78,65,77,69,34,58,34,82,117,110,110,101,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,49,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,49,50,51,52,44,51,49,46,53,56,48,50,54,55,93,44,91,45,57,57,46,55,50,49,54,57,56,44,51,49,46,53,55,54,55,53,57,93,44,91,45,57,57,46,55,49,51,57,55,49,44,51,50,46,48,56,50,48,56,57,93,44,91,45,49,48,48,46,49,53,49,57,49,49,44,51,50,46,48,56,50,54,51,56,93,44,91,45,49,48,48,46,50,51,53,49,51,55,44,51,50,46,48,56,50,51,55,50,93,44,91,45,49,48,48,46,50,51,53,55,54,49,44,51,49,46,54,57,50,57,55,93,44,91,45,49,48,48,46,50,51,52,54,51,54,44,51,49,46,53,56,55,49,52,55,93,44,91,45,49,48,48,46,49,49,49,50,51,52,44,51,49,46,53,56,48,50,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,52,51,34,44,34,78,65,77,69,34,58,34,84,101,114,114,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,51,50,48,56,49,57,44,50,57,46,56,55,56,57,51,51,93,44,91,45,49,48,50,46,49,49,54,55,50,51,44,50,57,46,55,57,51,48,51,56,93,44,91,45,49,48,49,46,55,54,48,57,50,52,44,50,57,46,55,56,49,56,48,50,93,44,91,45,49,48,49,46,55,53,56,52,44,51,48,46,50,56,56,48,52,52,93,44,91,45,49,48,49,46,54,53,56,53,51,44,51,48,46,51,53,55,56,54,49,93,44,91,45,49,48,49,46,55,52,48,52,50,57,44,51,48,46,52,50,48,56,57,55,93,44,91,45,49,48,49,46,54,52,54,53,48,54,44,51,48,46,53,53,49,49,49,50,93,44,91,45,49,48,49,46,54,54,57,56,51,51,44,51,48,46,54,51,55,57,48,55,93,44,91,45,49,48,49,46,55,54,56,52,50,44,51,48,46,54,53,51,48,55,55,93,44,91,45,49,48,50,46,49,51,55,55,55,56,44,51,48,46,54,53,53,57,56,50,93,44,91,45,49,48,50,46,49,51,56,52,48,54,44,51,48,46,53,57,55,53,50,49,93,44,91,45,49,48,50,46,51,52,50,57,56,54,44,51,48,46,53,57,56,55,53,57,93,44,91,45,49,48,50,46,51,52,51,48,56,53,44,51,48,46,50,56,52,49,49,54,93,44,91,45,49,48,50,46,53,54,54,57,51,55,44,51,48,46,50,56,51,50,54,57,93,44,91,45,49,48,50,46,53,54,55,48,52,57,44,51,48,46,48,53,50,56,48,56,93,44,91,45,49,48,50,46,51,50,48,56,49,57,44,50,57,46,56,55,56,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,82,97,119,108,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,57,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,53,56,56,51,44,52,48,46,48,48,50,51,48,50,93,44,91,45,49,48,49,46,51,50,53,53,49,52,44,52,48,46,48,48,50,55,48,50,93,44,91,45,49,48,49,46,52,49,49,48,50,57,44,52,48,46,48,48,50,53,50,50,93,44,91,45,49,48,49,46,52,49,51,57,49,51,44,51,57,46,53,54,56,51,54,49,93,44,91,45,49,48,49,46,51,56,57,48,54,56,44,51,57,46,53,54,56,51,54,57,93,44,91,45,49,48,48,46,55,52,48,56,55,51,44,51,57,46,53,54,56,48,52,51,93,44,91,45,49,48,48,46,55,51,56,56,50,53,44,52,48,46,48,48,50,49,49,54,93,44,91,45,49,48,48,46,55,53,56,56,51,44,52,48,46,48,48,50,51,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,84,104,111,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,51,56,57,48,54,56,44,51,57,46,53,54,56,51,54,57,93,44,91,45,49,48,49,46,51,57,49,55,49,55,44,51,57,46,49,51,53,49,49,55,93,44,91,45,49,48,48,46,56,49,49,56,53,56,44,51,57,46,49,51,51,51,54,93,44,91,45,49,48,48,46,55,50,49,50,57,54,44,51,57,46,49,51,51,51,56,49,93,44,91,45,49,48,48,46,55,50,48,50,49,51,44,51,57,46,53,54,56,48,51,52,93,44,91,45,49,48,48,46,55,52,48,56,55,51,44,51,57,46,53,54,56,48,52,51,93,44,91,45,49,48,49,46,51,56,57,48,54,56,44,51,57,46,53,54,56,51,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,32,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,57,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,52,53,54,53,57,44,51,49,46,57,49,56,56,56,51,93,44,91,45,56,50,46,56,51,54,51,54,54,44,51,49,46,56,49,54,49,53,52,93,44,91,45,56,50,46,56,51,54,54,51,51,44,51,49,46,54,55,49,51,57,56,93,44,91,45,56,50,46,54,50,55,51,52,50,44,51,49,46,54,55,50,54,55,50,93,44,91,45,56,50,46,53,50,49,52,50,44,51,49,46,55,49,48,55,57,54,93,44,91,45,56,50,46,53,50,48,50,53,49,44,51,49,46,56,51,56,51,56,56,93,44,91,45,56,50,46,52,51,49,51,54,50,44,51,49,46,56,51,55,57,57,51,93,44,91,45,56,50,46,52,51,49,53,51,49,44,51,49,46,57,54,54,49,56,50,93,44,91,45,56,50,46,52,56,51,49,51,49,44,51,49,46,57,54,56,57,54,49,93,44,91,45,56,50,46,53,52,51,54,53,53,44,51,49,46,57,53,56,57,49,52,93,44,91,45,56,50,46,54,52,53,54,53,57,44,51,49,46,57,49,56,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,54,56,44,34,98,101,100,115,34,58,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,53,57,51,55,55,44,52,50,46,57,48,57,48,57,55,93,44,91,45,57,53,46,56,53,57,57,52,57,44,52,50,46,53,54,48,54,50,93,44,91,45,57,53,46,55,52,49,54,49,49,44,52,50,46,53,54,49,50,56,53,93,44,91,45,57,53,46,51,56,56,48,49,44,52,50,46,53,54,49,55,52,50,93,44,91,45,57,53,46,51,56,56,49,56,50,44,52,50,46,57,48,57,56,57,55,93,44,91,45,57,53,46,56,53,57,51,55,55,44,52,50,46,57,48,57,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,56,48,52,44,34,98,101,100,115,34,58,52,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,57,51,57,53,56,44,51,53,46,53,51,52,49,49,52,93,44,91,45,57,49,46,56,53,49,57,53,56,44,51,53,46,51,53,56,50,56,55,93,44,91,45,57,50,46,49,49,49,52,54,51,44,51,53,46,51,54,50,55,50,53,93,44,91,45,57,50,46,49,49,57,55,49,57,44,51,53,46,48,54,54,52,57,51,93,44,91,45,57,49,46,56,48,50,53,48,53,44,51,53,46,48,51,48,52,50,53,93,44,91,45,57,49,46,53,56,52,48,48,53,44,51,53,46,48,57,49,53,56,52,93,44,91,45,57,49,46,52,54,53,49,49,52,44,51,53,46,48,56,57,52,53,52,93,44,91,45,57,49,46,51,55,57,55,49,57,44,51,53,46,50,49,53,49,52,57,93,44,91,45,57,49,46,52,51,48,56,56,52,44,51,53,46,51,55,49,53,54,54,93,44,91,45,57,49,46,51,52,55,50,53,55,44,51,53,46,52,51,57,49,48,54,93,44,91,45,57,49,46,53,56,52,54,56,55,44,51,53,46,52,52,50,51,49,49,93,44,91,45,57,49,46,53,56,49,56,56,44,51,53,46,53,51,48,52,52,55,93,44,91,45,57,49,46,55,57,51,57,53,56,44,51,53,46,53,51,52,49,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,101,102,108,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,56,48,52,44,34,98,101,100,115,34,58,50,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,53,49,54,52,51,44,51,51,46,56,49,49,51,57,93,44,91,45,57,48,46,52,53,51,50,51,51,44,51,51,46,51,50,57,52,56,52,93,44,91,45,57,48,46,51,51,49,53,56,57,44,51,51,46,51,48,50,56,50,53,93,44,91,45,57,48,46,50,57,53,48,50,57,44,51,51,46,51,54,49,55,56,52,93,44,91,45,57,48,46,49,55,52,54,49,52,44,51,51,46,51,51,51,51,55,56,93,44,91,45,57,48,46,49,48,49,52,48,49,44,51,51,46,52,53,56,57,52,93,44,91,45,57,48,46,49,50,55,55,55,53,44,51,51,46,54,55,54,57,53,54,93,44,91,45,57,48,46,49,51,54,55,56,55,44,51,51,46,55,50,49,54,52,56,93,44,91,45,57,48,46,49,56,50,53,56,52,44,51,51,46,56,48,57,51,50,50,93,44,91,45,57,48,46,52,53,49,54,52,51,44,51,51,46,56,49,49,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,67,111,111,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,53,48,52,53,51,44,51,56,46,57,50,56,50,52,52,93,44,91,45,57,51,46,48,53,57,57,55,52,44,51,56,46,54,57,51,48,55,55,93,44,91,45,57,50,46,56,51,57,56,51,55,44,51,56,46,54,56,51,57,55,52,93,44,91,45,57,50,46,54,49,55,49,52,55,44,51,56,46,54,56,48,48,49,51,93,44,91,45,57,50,46,52,57,56,51,55,55,44,51,56,46,57,50,50,48,56,52,93,44,91,45,57,50,46,53,53,56,48,56,54,44,51,56,46,57,55,48,54,57,50,93,44,91,45,57,50,46,56,52,49,54,49,55,44,51,56,46,57,55,57,56,50,49,93,44,91,45,57,50,46,57,51,52,53,54,57,44,51,57,46,48,54,52,53,52,55,93,44,91,45,57,51,46,48,53,48,52,53,51,44,51,56,46,57,50,56,50,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,105,99,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,53,55,48,44,34,98,101,100,115,34,58,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,49,55,52,48,55,44,52,54,46,50,52,54,54,49,56,93,44,91,45,56,56,46,49,49,54,56,52,53,44,52,53,46,57,50,49,54,50,55,93,44,91,45,56,56,46,48,53,56,50,53,51,44,52,53,46,55,56,48,54,50,57,93,44,91,45,56,55,46,56,52,54,54,48,50,44,52,53,46,55,50,50,53,52,52,93,44,91,45,56,55,46,54,57,55,49,53,57,44,52,53,46,55,50,50,57,54,93,44,91,45,56,55,46,54,57,54,57,52,54,44,52,53,46,56,57,56,56,52,50,93,44,91,45,56,55,46,54,49,55,48,57,49,44,52,53,46,57,56,54,48,49,52,93,44,91,45,56,55,46,54,49,53,53,57,55,44,52,54,46,50,52,54,54,53,51,93,44,91,45,56,56,46,49,49,55,52,48,55,44,52,54,46,50,52,54,54,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,87,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,54,57,55,44,34,98,101,100,115,34,58,49,48,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,54,49,50,55,53,44,52,49,46,55,50,52,54,53,54,93,44,91,45,56,56,46,50,53,50,50,51,49,44,52,49,46,52,54,51,48,54,54,93,44,91,45,56,56,46,50,52,52,49,52,52,44,52,49,46,50,48,49,53,54,54,93,44,91,45,56,56,46,48,49,49,56,49,44,52,49,46,50,48,53,53,48,56,93,44,91,45,56,56,46,48,49,51,57,49,57,44,52,49,46,50,57,50,52,52,55,93,44,91,45,56,55,46,53,50,54,55,51,49,44,52,49,46,50,57,56,48,53,50,93,44,91,45,56,55,46,53,50,53,55,48,53,44,52,49,46,52,55,48,50,56,51,93,44,91,45,56,55,46,55,57,48,51,48,51,44,52,49,46,52,54,57,56,52,54,93,44,91,45,56,55,46,55,57,50,55,57,51,44,52,49,46,53,53,56,53,52,93,44,91,45,56,56,46,48,50,56,57,55,51,44,52,49,46,54,56,53,50,52,50,93,44,91,45,56,56,46,50,54,49,50,55,53,44,52,49,46,55,50,52,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,68,101,97,102,32,83,109,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,57,57,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,53,50,53,49,56,52,44,51,52,46,55,52,54,57,51,49,93,44,91,45,49,48,50,46,49,54,56,56,51,57,44,51,52,46,55,52,55,52,49,55,93,44,91,45,49,48,50,46,49,54,55,52,55,49,44,51,53,46,49,56,51,50,51,51,93,44,91,45,49,48,51,46,48,52,50,53,49,49,44,51,53,46,49,56,51,49,53,55,93,44,91,45,49,48,51,46,48,52,50,55,48,49,44,51,52,46,57,53,52,49,52,50,93,44,91,45,49,48,51,46,48,52,50,57,56,50,44,51,52,46,55,52,55,51,54,49,93,44,91,45,49,48,50,46,53,50,53,49,56,52,44,51,52,46,55,52,54,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,114,111,111,107,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,50,51,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,50,56,48,50,52,44,52,52,46,53,52,51,49,50,54,93,44,91,45,57,55,46,49,50,57,54,55,49,44,52,52,46,49,57,53,57,51,51,93,44,91,45,57,54,46,56,56,57,50,49,54,44,52,52,46,49,57,53,55,48,53,93,44,91,45,57,54,46,52,53,50,55,55,51,44,52,52,46,49,57,54,55,56,93,44,91,45,57,54,46,52,53,49,56,50,44,52,52,46,53,52,51,54,53,50,93,44,91,45,57,54,46,56,56,53,53,48,52,44,52,52,46,53,52,51,55,55,51,93,44,91,45,57,55,46,49,50,56,48,50,52,44,52,52,46,53,52,51,49,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,57,49,54,52,44,34,98,101,100,115,34,58,56,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,48,56,49,57,44,51,57,46,52,53,54,49,53,53,93,44,91,45,57,52,46,54,48,49,55,51,51,44,51,57,46,49,53,57,54,48,51,93,44,91,45,57,52,46,54,48,55,51,53,52,44,51,57,46,49,49,51,52,52,52,93,44,91,45,57,52,46,52,54,49,53,57,44,51,57,46,49,50,48,51,55,50,93,44,91,45,57,52,46,50,56,57,56,55,51,44,51,57,46,50,51,55,49,48,55,93,44,91,45,57,52,46,50,49,50,53,49,53,44,51,57,46,50,48,55,48,56,54,93,44,91,45,57,52,46,50,49,48,54,52,50,44,51,57,46,52,53,52,54,56,50,93,44,91,45,57,52,46,54,48,48,56,49,57,44,51,57,46,52,53,54,49,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,111,97,104,111,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,48,50,44,34,98,101,100,115,34,58,49,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,54,57,51,52,55,44,51,52,46,53,50,52,56,54,55,93,44,91,45,57,48,46,53,56,48,54,56,49,44,51,52,46,52,49,48,53,53,49,93,44,91,45,57,48,46,56,51,51,51,51,53,44,51,52,46,50,54,52,50,54,52,93,44,91,45,57,48,46,57,53,53,57,55,52,44,51,52,46,49,50,48,49,50,53,93,44,91,45,57,48,46,54,53,57,52,53,55,44,51,52,46,49,49,56,56,54,55,93,44,91,45,57,48,46,54,53,55,48,48,50,44,51,51,46,57,56,55,53,56,54,93,44,91,45,57,48,46,52,53,49,48,49,50,44,51,51,46,57,56,53,54,56,57,93,44,91,45,57,48,46,52,53,48,57,56,49,44,51,52,46,48,55,50,57,51,50,93,44,91,45,57,48,46,52,53,48,53,55,50,44,51,52,46,50,54,50,52,48,50,93,44,91,45,57,48,46,51,57,57,52,57,56,44,51,52,46,52,50,51,56,48,55,93,44,91,45,57,48,46,53,54,57,51,52,55,44,51,52,46,53,50,52,56,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,111,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,51,50,49,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,52,50,51,54,53,44,52,48,46,49,56,48,55,55,56,93,44,91,45,56,54,46,54,57,53,56,48,52,44,52,48,46,49,55,56,54,53,55,93,44,91,45,56,54,46,54,57,53,48,55,49,44,51,57,46,57,50,50,55,55,93,44,91,45,56,54,46,51,50,54,50,57,51,44,51,57,46,57,50,52,48,50,57,93,44,91,45,56,54,46,50,51,57,55,51,57,44,51,57,46,57,50,54,48,53,53,93,44,91,45,56,54,46,50,52,50,51,54,53,44,52,48,46,49,56,48,55,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,68,101,115,32,77,111,105,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,48,48,44,34,98,101,100,115,34,58,50,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,55,48,55,49,44,52,49,46,48,55,52,49,49,50,93,44,91,45,57,49,46,52,48,57,52,53,51,44,52,48,46,56,49,50,57,48,53,93,44,91,45,57,49,46,49,49,50,52,54,55,44,52,48,46,54,57,54,51,48,49,93,44,91,45,57,49,46,48,57,54,57,52,54,44,52,48,46,56,49,49,52,48,51,93,44,91,45,57,48,46,57,54,50,57,49,54,44,52,48,46,57,50,52,57,53,55,93,44,91,45,57,48,46,57,52,56,57,56,57,44,52,49,46,48,55,48,50,53,93,44,91,45,57,48,46,57,52,57,51,56,49,44,52,49,46,48,55,50,55,49,93,44,91,45,57,49,46,51,55,48,55,49,44,52,49,46,48,55,52,49,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,50,56,56,44,34,98,101,100,115,34,58,54,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,54,53,54,50,44,52,49,46,55,50,56,57,50,56,93,44,91,45,57,48,46,53,51,55,54,49,54,44,52,49,46,55,55,54,51,57,53,93,44,91,45,57,48,46,55,48,50,49,52,50,44,52,49,46,55,51,55,55,50,56,93,44,91,45,57,48,46,56,57,56,51,55,51,44,52,49,46,55,55,49,51,57,50,93,44,91,45,57,48,46,56,57,57,56,53,51,44,52,49,46,53,57,55,49,51,51,93,44,91,45,57,48,46,55,56,51,56,49,50,44,52,49,46,53,57,54,53,51,49,93,44,91,45,57,48,46,55,56,54,50,56,50,44,52,49,46,52,53,50,56,56,56,93,44,91,45,57,48,46,52,54,49,52,51,50,44,52,49,46,53,50,51,53,51,51,93,44,91,45,57,48,46,51,52,51,50,50,56,44,52,49,46,53,56,55,56,51,51,93,44,91,45,57,48,46,51,49,54,53,54,50,44,52,49,46,55,50,56,57,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,79,116,116,97,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,50,57,55,52,54,44,51,57,46,50,49,57,50,55,51,93,44,91,45,57,55,46,57,50,56,53,54,44,51,56,46,57,53,56,51,57,53,93,44,91,45,57,55,46,51,55,49,54,49,52,44,51,56,46,57,53,55,56,53,50,93,44,91,45,57,55,46,51,55,49,49,53,52,44,51,57,46,49,51,49,57,54,49,93,44,91,45,57,55,46,51,54,57,56,51,57,44,51,57,46,51,48,54,48,49,49,93,44,91,45,57,55,46,57,50,57,48,57,55,44,51,57,46,51,48,54,51,57,55,93,44,91,45,57,55,46,57,50,57,55,52,54,44,51,57,46,50,49,57,50,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,48,53,44,34,98,101,100,115,34,58,52,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,56,57,53,51,57,44,51,48,46,53,57,55,55,51,52,93,44,91,45,56,50,46,55,50,54,53,56,51,44,51,48,46,53,53,57,52,56,54,93,44,91,45,56,50,46,54,52,53,53,53,53,44,51,48,46,52,48,54,52,49,55,93,44,91,45,56,50,46,55,49,55,55,55,51,44,51,48,46,51,50,49,51,57,49,93,44,91,45,56,50,46,55,57,52,53,57,52,44,51,48,46,51,51,55,48,50,52,93,44,91,45,56,50,46,56,48,48,52,55,55,44,50,57,46,57,51,50,49,50,54,93,44,91,45,56,50,46,54,53,56,53,53,52,44,50,57,46,56,51,48,49,52,52,93,44,91,45,56,50,46,53,50,57,55,48,53,44,50,57,46,57,52,48,56,56,49,93,44,91,45,56,50,46,53,54,57,50,56,44,50,57,46,57,55,52,57,56,93,44,91,45,56,50,46,52,53,56,51,54,52,44,51,48,46,49,51,54,52,52,57,93,44,91,45,56,50,46,52,53,57,55,57,51,44,51,48,46,53,56,52,50,54,55,93,44,91,45,56,50,46,53,56,52,48,48,55,44,51,48,46,53,57,49,53,52,56,93,44,91,45,56,50,46,54,56,57,53,51,57,44,51,48,46,53,57,55,55,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,111,108,109,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,51,48,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,57,55,57,57,50,44,51,48,46,57,57,54,57,51,49,93,44,91,45,56,54,46,48,51,53,48,51,57,44,51,48,46,57,57,51,51,50,93,44,91,45,56,54,46,48,51,55,53,57,49,44,51,48,46,55,48,52,53,55,50,93,44,91,45,56,53,46,56,52,52,52,50,49,44,51,48,46,55,48,51,49,51,93,44,91,45,56,53,46,54,49,57,48,49,49,44,51,48,46,55,52,51,56,54,56,93,44,91,45,56,53,46,53,57,57,57,51,52,44,51,48,46,56,51,48,53,53,50,93,44,91,45,56,53,46,52,57,55,57,57,50,44,51,48,46,57,57,54,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,72,97,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,54,50,54,44,34,98,101,100,115,34,58,49,48,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,56,52,53,51,51,44,51,48,46,54,55,55,50,57,50,93,44,91,45,56,57,46,50,52,48,48,55,51,44,51,48,46,54,55,55,49,54,93,44,91,45,56,57,46,51,52,49,52,52,54,44,51,48,46,54,52,55,55,50,93,44,91,45,56,57,46,51,52,48,56,52,55,44,51,48,46,51,53,55,57,57,53,93,44,91,45,56,57,46,51,48,54,49,51,53,44,51,48,46,49,55,55,57,52,49,93,44,91,45,56,57,46,49,56,51,54,54,57,44,51,48,46,50,49,50,49,53,53,93,44,91,45,56,57,46,48,57,54,52,55,54,44,51,48,46,49,54,53,56,50,57,93,44,91,45,56,56,46,56,56,57,48,51,44,51,48,46,49,51,57,56,52,53,93,44,91,45,56,56,46,55,57,53,49,52,55,44,51,48,46,49,57,57,57,57,52,93,44,91,45,56,56,46,55,57,53,50,56,55,44,51,48,46,51,53,48,51,54,49,93,44,91,45,56,56,46,56,56,51,49,51,44,51,48,46,52,49,56,55,57,56,93,44,91,45,56,56,46,56,56,52,53,51,51,44,51,48,46,54,55,55,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,85,116,117,97,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,52,48,50,44,34,98,101,100,115,34,58,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,56,50,54,49,50,56,44,49,56,46,51,50,51,51,56,50,93,44,91,45,54,54,46,56,49,55,50,55,49,44,49,56,46,50,51,48,51,51,54,93,44,91,45,54,54,46,54,57,50,53,55,50,44,49,56,46,50,49,53,56,56,51,93,44,91,45,54,54,46,54,55,48,52,57,52,44,49,56,46,49,53,50,56,51,49,93,44,91,45,54,54,46,54,52,57,52,54,55,44,49,56,46,49,53,56,56,53,55,93,44,91,45,54,54,46,53,54,54,54,50,44,49,56,46,50,57,56,53,52,57,93,44,91,45,54,54,46,54,48,54,57,56,57,44,49,56,46,51,50,56,49,56,54,93,44,91,45,54,54,46,55,55,48,48,55,50,44,49,56,46,51,50,53,48,49,51,93,44,91,45,54,54,46,56,50,54,49,50,56,44,49,56,46,51,50,51,51,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,114,97,100,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,53,53,55,44,34,98,101,100,115,34,58,50,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,52,54,51,51,57,44,51,53,46,50,56,55,55,49,55,93,44,91,45,56,53,46,48,50,51,54,44,51,53,46,49,50,53,48,55,51,93,44,91,45,56,52,46,57,55,54,57,55,54,44,51,52,46,57,56,55,54,54,52,93,44,91,45,56,52,46,56,49,48,52,55,55,44,51,52,46,57,56,55,54,48,53,93,44,91,45,56,52,46,55,55,53,56,53,51,44,51,52,46,57,56,55,56,56,52,93,44,91,45,56,52,46,54,57,57,57,51,55,44,51,53,46,49,55,48,57,55,52,93,44,91,45,56,52,46,55,48,51,54,48,55,44,51,53,46,50,52,49,48,52,51,93,44,91,45,56,52,46,56,54,48,49,54,52,44,51,53,46,51,53,48,48,55,52,93,44,91,45,56,52,46,57,52,54,51,51,57,44,51,53,46,50,56,55,55,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,114,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,52,48,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,54,49,53,50,57,44,52,54,46,55,54,54,53,53,93,44,91,45,57,51,46,48,53,52,56,52,55,44,52,54,46,52,49,57,50,54,57,93,44,91,45,57,50,46,50,57,50,56,54,44,52,54,46,52,49,55,50,50,93,44,91,45,57,50,46,50,57,50,50,52,50,44,52,54,46,54,54,51,51,49,56,93,44,91,45,57,50,46,51,48,49,54,55,54,44,52,54,46,55,54,52,49,51,52,93,44,91,45,57,51,46,48,54,49,53,50,57,44,52,54,46,55,54,54,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,56,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,55,48,50,49,52,44,51,50,46,55,57,51,48,56,56,93,44,91,45,57,52,46,53,48,55,51,50,51,44,51,50,46,54,57,51,55,51,56,93,44,91,45,57,52,46,51,57,48,55,56,51,44,51,50,46,54,57,52,51,55,55,93,44,91,45,57,52,46,50,56,51,48,50,56,44,51,50,46,55,52,54,55,50,57,93,44,91,45,57,52,46,49,55,50,49,51,54,44,51,50,46,54,57,54,57,93,44,91,45,57,52,46,48,52,51,49,52,55,44,51,50,46,54,57,51,48,51,93,44,91,45,57,52,46,48,52,51,48,55,56,44,51,50,46,56,56,49,48,56,57,93,44,91,45,57,52,46,54,53,51,57,57,52,44,51,50,46,56,55,57,53,48,54,93,44,91,45,57,52,46,55,48,53,56,55,56,44,51,50,46,56,55,57,49,55,55,93,44,91,45,57,52,46,55,48,50,49,52,44,51,50,46,55,57,51,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,83,99,104,111,104,97,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,51,54,52,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,54,52,56,50,57,56,44,52,50,46,56,50,57,53,53,56,93,44,91,45,55,52,46,54,51,48,54,51,49,44,52,50,46,54,50,54,54,55,52,93,44,91,45,55,52,46,55,49,49,53,56,44,52,50,46,53,49,55,55,57,57,93,44,91,45,55,52,46,54,49,56,56,57,53,44,52,50,46,52,50,52,51,56,57,93,44,91,45,55,52,46,52,52,51,53,48,54,44,52,50,46,51,53,53,48,49,55,93,44,91,45,55,52,46,50,53,52,51,48,51,44,52,50,46,52,48,56,50,48,55,93,44,91,45,55,52,46,49,56,48,50,55,52,44,52,50,46,55,50,57,57,55,57,93,44,91,45,55,52,46,50,54,51,51,49,52,44,52,50,46,55,57,54,53,51,52,93,44,91,45,55,52,46,52,53,52,57,49,49,44,52,50,46,55,55,50,57,55,57,93,44,91,45,55,52,46,54,52,56,50,57,56,44,52,50,46,56,50,57,53,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,80,97,119,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,50,56,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,54,56,50,56,55,44,51,54,46,49,54,49,57,56,93,44,91,45,57,54,46,52,51,51,56,49,50,44,51,54,46,50,56,53,56,56,57,93,44,91,45,57,54,46,53,49,53,50,50,57,44,51,54,46,50,57,56,51,51,50,93,44,91,45,57,54,46,54,51,53,55,50,55,44,51,54,46,52,50,53,57,48,56,93,44,91,45,57,54,46,55,49,48,55,54,57,44,51,54,46,52,51,55,54,53,54,93,44,91,45,57,54,46,55,51,55,50,51,57,44,51,54,46,53,53,48,48,56,56,93,44,91,45,57,54,46,57,52,48,50,51,53,44,51,54,46,52,53,53,53,50,53,93,44,91,45,57,55,46,48,48,57,55,56,53,44,51,54,46,53,48,54,57,51,53,93,44,91,45,57,55,46,48,51,50,49,48,54,44,51,54,46,51,51,51,51,53,52,93,44,91,45,57,54,46,57,50,53,48,54,57,44,51,54,46,50,52,54,52,55,52,93,44,91,45,57,54,46,56,49,57,48,48,53,44,51,54,46,49,53,56,56,56,54,93,44,91,45,57,54,46,54,50,50,49,50,44,51,54,46,49,53,57,57,48,51,93,44,91,45,57,54,46,50,57,55,56,56,56,44,51,54,46,49,54,50,50,55,57,93,44,91,45,57,54,46,50,54,56,50,56,55,44,51,54,46,49,54,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,114,111,111,109,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,52,48,50,44,34,98,101,100,115,34,58,53,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,54,52,48,50,44,52,50,46,52,49,53,55,48,50,93,44,91,45,55,54,46,49,51,48,49,56,49,44,52,50,46,52,49,48,51,51,55,93,44,91,45,55,54,46,48,56,49,49,51,52,44,52,50,46,50,51,48,52,57,53,93,44,91,45,55,54,46,49,49,54,50,50,53,44,52,50,46,49,56,53,54,49,93,44,91,45,55,54,46,49,48,53,56,52,44,52,49,46,57,57,56,56,53,56,93,44,91,45,55,53,46,52,56,51,49,52,57,44,52,49,46,57,57,57,50,49,52,93,44,91,45,55,53,46,51,53,57,53,55,57,44,52,49,46,57,57,57,52,52,53,93,44,91,45,55,53,46,52,50,49,55,55,54,44,52,50,46,48,52,50,48,51,93,44,91,45,55,53,46,52,49,56,52,50,49,44,52,50,46,49,57,53,48,51,50,93,44,91,45,55,53,46,54,51,55,49,49,44,52,50,46,49,57,53,54,50,56,93,44,91,45,55,53,46,54,51,56,50,57,57,44,52,50,46,50,52,56,54,56,54,93,44,91,45,55,53,46,56,52,51,55,57,50,44,52,50,46,50,53,57,55,48,55,93,44,91,45,55,53,46,56,54,52,48,50,44,52,50,46,52,49,53,55,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,49,34,44,34,78,65,77,69,34,58,34,76,105,98,101,114,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,56,54,50,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,57,54,55,48,56,44,51,48,46,49,54,55,50,49,52,93,44,91,45,57,52,46,57,56,49,52,54,44,50,57,46,56,56,52,50,55,54,93,44,91,45,57,52,46,52,52,50,50,51,53,44,50,57,46,56,56,57,53,51,56,93,44,91,45,57,52,46,52,52,52,57,49,44,51,48,46,49,49,51,48,49,53,93,44,91,45,57,52,46,53,57,54,51,51,56,44,51,48,46,49,49,50,49,48,49,93,44,91,45,57,52,46,55,51,50,55,51,50,44,51,48,46,52,57,48,48,54,54,93,44,91,45,57,52,46,56,52,57,52,49,52,44,51,48,46,52,57,51,53,53,51,93,44,91,45,57,53,46,49,54,53,56,57,55,44,51,48,46,51,52,52,57,55,54,93,44,91,45,57,53,46,48,57,54,55,48,56,44,51,48,46,49,54,55,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,116,104,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,57,51,54,44,34,98,101,100,115,34,58,49,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,56,57,54,54,51,44,51,57,46,51,56,52,49,57,53,93,44,91,45,56,50,46,50,54,56,53,56,51,44,51,57,46,50,48,51,55,54,93,44,91,45,56,49,46,55,53,54,48,56,44,51,57,46,49,56,48,53,54,93,44,91,45,56,49,46,55,50,53,54,50,50,44,51,57,46,50,49,53,57,48,53,93,44,91,45,56,49,46,56,53,51,54,54,56,44,51,57,46,51,49,56,49,54,53,93,44,91,45,56,49,46,56,52,52,56,54,51,44,51,57,46,52,53,48,50,49,54,93,44,91,45,56,50,46,48,53,53,55,55,57,44,51,57,46,52,54,48,48,53,51,93,44,91,45,56,50,46,48,52,55,53,50,56,44,51,57,46,53,53,48,56,50,53,93,44,91,45,56,50,46,49,53,57,49,54,49,44,51,57,46,53,53,54,53,55,52,93,44,91,45,56,50,46,49,54,55,51,55,57,44,51,57,46,52,54,54,51,48,55,93,44,91,45,56,50,46,50,56,48,52,49,44,51,57,46,52,55,50,57,48,54,93,44,91,45,56,50,46,50,56,57,54,54,51,44,51,57,46,51,56,52,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,56,56,54,44,34,98,101,100,115,34,58,50,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,52,49,57,49,49,44,52,48,46,52,50,52,55,93,44,91,45,56,48,46,56,54,53,53,48,52,44,52,48,46,52,50,50,57,50,57,93,44,91,45,56,48,46,56,56,50,56,57,50,44,52,48,46,49,53,57,52,57,53,93,44,91,45,56,48,46,55,48,50,55,53,44,52,48,46,49,53,55,50,52,57,93,44,91,45,56,48,46,54,56,49,56,49,49,44,52,48,46,49,56,53,53,54,51,93,44,91,45,56,48,46,53,57,57,56,57,53,44,52,48,46,51,49,55,54,54,54,93,44,91,45,56,48,46,54,50,57,54,56,52,44,52,48,46,51,57,52,57,55,56,93,44,91,45,56,48,46,53,57,52,54,54,52,44,52,48,46,52,55,49,51,56,57,93,44,91,45,56,48,46,54,54,55,57,53,55,44,52,48,46,53,56,50,52,57,54,93,44,91,45,56,48,46,56,54,49,57,57,52,44,52,48,46,53,57,57,52,48,52,93,44,91,45,56,48,46,57,50,48,57,50,44,52,48,46,53,53,54,51,49,53,93,44,91,45,56,48,46,57,52,49,57,49,49,44,52,48,46,52,50,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,54,53,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,56,50,53,48,57,50,44,51,57,46,49,49,53,56,48,51,93,44,91,45,55,57,46,56,57,54,48,57,52,44,51,56,46,57,55,51,52,48,52,93,44,91,45,56,48,46,48,56,53,48,54,50,44,51,56,46,57,52,55,50,51,54,93,44,91,45,56,48,46,49,50,54,49,48,53,44,51,56,46,55,52,53,56,51,54,93,44,91,45,56,48,46,50,56,48,48,53,57,44,51,56,46,54,57,52,56,54,55,93,44,91,45,56,48,46,49,56,51,57,51,49,44,51,56,46,53,50,53,51,56,54,93,44,91,45,56,48,46,50,52,53,53,49,56,44,51,56,46,51,56,56,52,53,55,93,44,91,45,56,48,46,49,49,54,57,50,44,51,56,46,52,55,51,57,53,51,93,44,91,45,56,48,46,48,50,57,50,48,56,44,51,56,46,52,53,57,49,56,52,93,44,91,45,55,57,46,56,54,51,50,53,44,51,56,46,53,53,48,56,50,93,44,91,45,55,57,46,55,57,56,50,56,51,44,51,56,46,55,48,51,50,49,49,93,44,91,45,55,57,46,54,50,54,55,55,52,44,51,56,46,54,54,52,50,49,52,93,44,91,45,55,57,46,53,49,48,48,55,51,44,51,56,46,55,56,48,55,49,50,93,44,91,45,55,57,46,53,51,57,48,55,53,44,51,56,46,56,52,49,52,49,49,93,44,91,45,55,57,46,52,53,53,52,55,50,44,51,56,46,57,50,57,57,49,93,44,91,45,55,57,46,51,52,57,56,54,55,44,51,56,46,57,53,55,53,48,57,93,44,91,45,55,57,46,51,53,55,54,54,54,44,51,56,46,57,54,52,53,48,57,93,44,91,45,55,57,46,53,48,56,55,54,53,44,51,56,46,57,55,53,49,55,51,93,44,91,45,55,57,46,55,56,53,54,56,53,44,51,57,46,48,51,55,52,48,52,93,44,91,45,55,57,46,56,50,53,48,57,50,44,51,57,46,49,49,53,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,52,57,55,44,34,98,101,100,115,34,58,50,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,52,57,52,48,56,53,44,51,57,46,52,54,57,53,57,57,93,44,91,45,56,48,46,49,57,55,50,56,54,44,51,57,46,51,57,51,49,56,54,93,44,91,45,56,48,46,48,50,53,48,48,49,44,51,57,46,52,48,49,52,52,54,93,44,91,45,55,57,46,57,51,56,56,55,56,44,51,57,46,52,53,50,52,54,53,93,44,91,45,56,48,46,49,53,51,53,51,50,44,51,57,46,54,49,48,52,50,54,93,44,91,45,56,48,46,51,57,53,56,49,44,51,57,46,54,51,55,51,52,55,93,44,91,45,56,48,46,52,57,56,49,53,56,44,51,57,46,53,54,50,56,57,57,93,44,91,45,56,48,46,52,57,52,48,56,53,44,51,57,46,52,54,57,53,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,52,48,48,44,34,98,101,100,115,34,58,51,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,48,54,49,56,53,52,44,51,57,46,53,54,56,55,52,54,93,44,91,45,55,53,46,48,56,51,56,50,51,44,51,57,46,52,53,55,51,53,52,93,44,91,45,55,53,46,50,51,56,52,51,52,44,51,57,46,53,53,57,48,51,57,93,44,91,45,55,53,46,52,52,52,55,53,49,44,51,57,46,51,53,53,48,56,57,93,44,91,45,55,53,46,51,50,49,48,50,49,44,51,57,46,50,53,49,51,55,57,93,44,91,45,55,53,46,49,54,56,52,54,50,44,51,57,46,48,53,54,49,55,57,93,44,91,45,55,52,46,57,49,53,54,56,57,44,51,57,46,49,55,53,55,53,53,93,44,91,45,55,52,46,56,54,49,50,57,52,44,51,57,46,51,50,51,56,49,53,93,44,91,45,55,52,46,56,53,53,57,55,56,44,51,57,46,52,50,52,50,51,56,93,44,91,45,55,52,46,57,56,53,50,55,49,44,51,57,46,53,49,52,57,54,55,93,44,91,45,55,53,46,48,54,49,56,53,52,44,51,57,46,53,54,56,55,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,48,57,50,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,48,48,51,55,55,51,44,51,57,46,52,52,53,48,53,54,93,44,91,45,49,50,48,46,53,48,53,52,52,53,44,51,57,46,52,52,54,49,49,55,93,44,91,45,49,50,48,46,53,55,55,49,56,56,44,51,57,46,53,50,51,49,52,52,93,44,91,45,49,50,48,46,55,53,53,55,50,57,44,51,57,46,52,53,50,54,54,51,93,44,91,45,49,50,49,46,48,50,50,48,56,53,44,51,57,46,51,57,49,53,53,56,93,44,91,45,49,50,49,46,49,50,50,51,49,53,44,51,57,46,51,55,56,56,50,54,93,44,91,45,49,50,49,46,50,54,54,57,49,49,44,51,57,46,50,55,49,54,48,57,93,44,91,45,49,50,49,46,50,55,57,53,51,51,44,51,57,46,48,51,52,54,49,56,93,44,91,45,49,50,49,46,48,52,49,54,48,56,44,51,57,46,48,49,51,55,57,49,93,44,91,45,49,50,48,46,57,54,54,48,56,44,51,57,46,49,50,55,57,50,56,93,44,91,45,49,50,48,46,55,50,55,56,57,51,44,51,57,46,50,56,56,48,56,49,93,44,91,45,49,50,48,46,54,52,53,55,57,53,44,51,57,46,51,49,53,49,53,53,93,44,91,45,49,50,48,46,48,48,54,51,50,51,44,51,57,46,51,49,54,52,57,54,93,44,91,45,49,50,48,46,48,48,51,55,55,51,44,51,57,46,52,52,53,48,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,52,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,57,54,51,51,44,52,54,46,55,57,52,56,51,56,93,44,91,45,57,50,46,48,50,48,50,57,52,44,52,54,46,55,48,52,48,52,49,93,44,91,45,57,50,46,48,56,57,52,57,51,44,52,54,46,55,52,57,50,51,55,93,44,91,45,57,50,46,50,49,50,51,57,50,44,52,54,46,54,52,57,57,52,49,93,44,91,45,57,50,46,50,57,50,50,52,50,44,52,54,46,54,54,51,51,49,56,93,44,91,45,57,50,46,50,57,50,56,54,44,52,54,46,52,49,55,50,50,93,44,91,45,57,50,46,50,57,51,55,48,53,44,52,54,46,49,53,55,51,50,49,93,44,91,45,57,50,46,48,52,57,54,51,54,44,52,54,46,49,53,55,53,57,55,93,44,91,45,57,49,46,53,53,49,50,56,50,44,52,54,46,49,53,55,48,52,53,93,44,91,45,57,49,46,53,52,57,51,56,53,44,52,54,46,56,57,51,50,49,51,93,44,91,45,57,49,46,55,57,54,51,51,44,52,54,46,55,57,52,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,49,52,53,44,34,98,101,100,115,34,58,50,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,50,48,55,49,50,44,51,55,46,50,51,56,51,50,56,93,44,91,45,56,52,46,57,48,49,49,49,50,44,51,55,46,49,49,54,50,57,55,93,44,91,45,56,52,46,56,51,53,55,49,50,44,51,54,46,57,57,55,54,49,50,93,44,91,45,56,52,46,54,55,57,49,54,53,44,51,54,46,57,56,48,57,49,52,93,44,91,45,56,52,46,53,55,56,49,53,56,44,51,54,46,56,54,55,49,51,51,93,44,91,45,56,52,46,51,53,56,48,50,52,44,51,54,46,57,53,57,52,93,44,91,45,56,52,46,50,56,57,48,55,54,44,51,55,46,49,53,49,55,52,93,44,91,45,56,52,46,53,48,50,57,51,50,44,51,55,46,51,50,56,56,48,49,93,44,91,45,56,52,46,53,53,54,52,54,49,44,51,55,46,51,53,53,55,50,57,93,44,91,45,56,52,46,55,50,48,55,49,50,44,51,55,46,50,51,56,51,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,69,100,103,101,99,111,109,98,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,51,51,50,44,34,98,101,100,115,34,58,49,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,57,55,57,53,54,44,51,54,46,49,53,51,49,53,93,44,91,45,55,55,46,56,50,56,52,52,52,44,51,53,46,56,54,55,50,48,56,93,44,91,45,55,55,46,55,53,49,51,51,57,44,51,53,46,56,50,55,55,57,52,93,44,91,45,55,55,46,54,54,53,49,51,49,44,51,53,46,54,55,52,57,51,53,93,44,91,45,55,55,46,51,57,48,49,53,52,44,51,53,46,56,51,51,48,54,50,93,44,91,45,55,55,46,51,53,48,51,54,57,44,51,53,46,56,49,57,50,50,56,93,44,91,45,55,55,46,51,52,50,52,49,56,44,51,53,46,57,48,53,50,54,50,93,44,91,45,55,55,46,52,48,50,54,49,52,44,51,54,46,48,48,52,57,54,54,93,44,91,45,55,55,46,53,51,51,49,54,49,44,51,54,46,48,57,48,54,53,57,93,44,91,45,55,55,46,54,57,55,57,53,54,44,51,54,46,49,53,51,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,49,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,48,52,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,53,55,56,49,54,44,51,49,46,48,51,51,51,50,53,93,44,91,45,57,52,46,50,53,50,50,57,56,44,51,49,46,48,49,56,57,51,49,93,44,91,45,57,52,46,49,50,53,56,50,52,44,51,48,46,54,56,52,48,53,50,93,44,91,45,57,52,46,48,53,48,57,54,44,51,48,46,54,51,56,53,54,56,93,44,91,45,57,52,46,48,55,49,54,56,57,44,51,48,46,53,50,54,48,51,51,93,44,91,45,57,52,46,49,49,54,52,54,54,44,51,48,46,52,51,50,54,57,49,93,44,91,45,57,52,46,48,56,50,57,50,44,51,48,46,51,52,53,54,53,52,93,44,91,45,57,52,46,49,49,55,54,48,52,44,51,48,46,50,52,49,54,54,53,93,44,91,45,57,51,46,57,48,49,52,53,50,44,51,48,46,50,52,50,54,55,50,93,44,91,45,57,51,46,56,54,53,55,49,49,44,51,48,46,57,52,55,50,49,56,93,44,91,45,57,51,46,57,49,49,49,50,54,44,51,49,46,49,53,56,48,55,49,93,44,91,45,57,52,46,48,51,57,48,51,52,44,51,49,46,49,51,52,50,55,49,93,44,91,45,57,52,46,49,50,57,54,51,50,44,51,49,46,48,57,57,50,56,93,44,91,45,57,52,46,52,53,55,56,49,54,44,51,49,46,48,51,51,51,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,101,97,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,52,51,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,48,52,57,57,55,56,44,51,56,46,49,52,56,55,54,51,93,44,91,45,49,49,51,46,52,55,49,54,44,51,56,46,49,52,56,54,54,53,93,44,91,45,49,49,50,46,52,55,56,54,56,44,51,56,46,49,52,55,52,49,57,93,44,91,45,49,49,50,46,52,52,52,50,49,52,44,51,56,46,49,53,48,48,48,49,93,44,91,45,49,49,50,46,51,51,53,53,49,44,51,56,46,51,51,50,51,52,52,93,44,91,45,49,49,50,46,52,52,52,48,56,49,44,51,56,46,52,48,53,54,52,54,93,44,91,45,49,49,50,46,53,49,56,52,57,53,44,51,56,46,53,49,48,52,49,51,93,44,91,45,49,49,50,46,53,49,53,51,57,52,44,51,56,46,53,55,50,56,52,53,93,44,91,45,49,49,52,46,48,52,57,57,55,55,44,51,56,46,53,55,50,57,55,52,93,44,91,45,49,49,52,46,48,52,57,57,55,56,44,51,56,46,49,52,56,55,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,51,34,44,34,78,65,77,69,34,58,34,77,117,114,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,53,53,55,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,49,48,52,55,55,44,51,52,46,57,56,55,54,48,53,93,44,91,45,56,52,46,56,49,56,55,49,53,44,51,52,46,56,55,54,57,53,93,44,91,45,56,52,46,57,50,52,57,48,57,44,51,52,46,55,49,53,57,55,49,93,44,91,45,56,52,46,57,49,51,52,53,54,44,51,52,46,54,51,52,49,50,56,93,44,91,45,56,52,46,54,53,52,53,50,51,44,51,52,46,53,56,51,49,56,55,93,44,91,45,56,52,46,54,53,55,48,57,56,44,51,52,46,55,50,56,57,48,53,93,44,91,45,56,52,46,54,49,56,54,51,55,44,51,52,46,56,53,53,51,57,56,93,44,91,45,56,52,46,54,50,49,52,56,51,44,51,52,46,57,56,56,51,50,57,93,44,91,45,56,52,46,55,55,53,56,53,51,44,51,52,46,57,56,55,56,56,52,93,44,91,45,56,52,46,56,49,48,52,55,55,44,51,52,46,57,56,55,54,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,74,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,57,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,48,49,49,52,54,44,52,48,46,53,54,55,50,52,50,93,44,91,45,56,53,46,50,49,57,57,48,49,44,52,48,46,51,55,57,48,51,52,93,44,91,45,56,53,46,50,49,56,55,53,56,44,52,48,46,51,48,54,55,48,54,93,44,91,45,56,52,46,56,48,51,54,55,50,44,52,48,46,51,49,48,48,57,51,93,44,91,45,56,52,46,56,48,51,56,57,52,44,52,48,46,51,53,50,55,53,56,93,44,91,45,56,52,46,56,48,50,52,55,55,44,52,48,46,53,55,50,50,49,51,93,44,91,45,56,53,46,48,54,56,52,55,57,44,52,48,46,53,54,56,50,52,93,44,91,45,56,53,46,50,48,49,49,52,54,44,52,48,46,53,54,55,50,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,111,110,116,99,97,108,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,50,48,57,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,54,50,53,51,56,44,52,51,46,50,57,52,50,55,49,93,44,91,45,56,53,46,51,49,50,51,55,54,44,52,51,46,50,57,52,50,48,53,93,44,91,45,56,53,46,51,49,50,53,49,51,44,52,51,46,49,49,56,55,57,51,93,44,91,45,56,52,46,56,51,54,56,56,57,44,52,51,46,49,49,56,56,53,49,93,44,91,45,56,52,46,56,52,53,57,54,50,44,52,51,46,52,54,54,49,53,56,93,44,91,45,56,53,46,48,56,52,57,57,54,44,52,51,46,52,54,54,49,57,93,44,91,45,56,53,46,53,54,50,51,52,56,44,52,51,46,52,54,56,49,51,93,44,91,45,56,53,46,53,54,50,53,51,56,44,52,51,46,50,57,52,50,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,82,101,110,115,115,101,108,97,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,52,51,49,44,34,98,101,100,115,34,58,50,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,50,55,52,50,57,52,44,52,50,46,57,52,51,54,53,50,93,44,91,45,55,51,46,54,51,53,52,54,51,44,52,50,46,57,52,49,50,57,93,44,91,45,55,51,46,54,55,54,55,54,50,44,52,50,46,55,56,51,50,55,55,93,44,91,45,55,51,46,55,54,49,50,54,53,44,52,50,46,54,49,48,51,55,57,93,44,91,45,55,51,46,55,56,51,55,50,49,44,52,50,46,52,54,52,50,51,49,93,44,91,45,55,51,46,51,53,50,52,50,57,44,52,50,46,53,49,48,48,49,55,93,44,91,45,55,51,46,50,54,52,56,50,55,44,52,50,46,55,52,53,56,53,49,93,44,91,45,55,51,46,50,55,52,50,57,52,44,52,50,46,57,52,51,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,111,108,108,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,57,50,50,44,34,98,101,100,115,34,58,55,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,48,53,53,48,49,44,50,54,46,51,51,48,48,56,56,93,44,91,45,56,49,46,56,53,48,51,52,44,50,54,46,48,54,50,56,55,50,93,44,91,45,56,49,46,55,49,56,49,51,57,44,50,53,46,55,57,51,48,51,51,93,44,91,45,56,49,46,53,55,48,57,54,55,44,50,53,46,56,48,50,48,51,57,93,44,91,45,56,48,46,56,55,51,48,57,54,44,50,53,46,56,48,53,51,55,55,93,44,91,45,56,48,46,56,55,50,57,51,50,44,50,53,46,57,55,57,52,51,52,93,44,91,45,56,48,46,56,55,57,56,48,57,44,50,54,46,50,53,57,52,53,53,93,44,91,45,56,49,46,50,54,56,53,53,44,50,54,46,50,53,51,48,52,53,93,44,91,45,56,49,46,50,55,49,55,54,56,44,50,54,46,53,49,55,48,54,57,93,44,91,45,56,49,46,53,54,51,55,54,51,44,50,54,46,53,49,51,51,50,52,93,44,91,45,56,49,46,53,54,50,49,56,44,50,54,46,52,50,50,54,50,53,93,44,91,45,56,49,46,54,53,57,53,48,54,44,50,54,46,52,50,49,48,55,55,93,44,91,45,56,49,46,54,53,55,57,44,50,54,46,51,49,55,53,54,51,93,44,91,45,56,49,46,57,48,53,53,48,49,44,50,54,46,51,51,48,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,77,99,75,105,110,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,56,52,57,44,34,98,101,100,115,34,58,49,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,54,48,54,55,44,51,54,46,48,48,50,55,48,49,93,44,91,45,49,48,57,46,48,52,53,57,57,54,44,51,52,46,57,53,57,56,49,57,93,44,91,45,49,48,56,46,52,54,57,52,48,50,44,51,52,46,57,53,57,48,56,49,93,44,91,45,49,48,56,46,52,54,56,55,49,53,44,51,53,46,51,48,54,54,53,56,93,44,91,45,49,48,55,46,51,48,57,51,56,54,44,51,53,46,51,48,53,54,56,55,93,44,91,45,49,48,55,46,51,48,56,54,54,55,44,51,53,46,57,57,56,53,53,54,93,44,91,45,49,48,55,46,54,50,54,53,49,49,44,51,54,46,48,48,48,50,56,56,93,44,91,45,49,48,57,46,48,52,54,48,54,55,44,51,54,46,48,48,50,55,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,101,110,32,72,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,53,52,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,53,51,54,51,52,44,51,49,46,55,53,55,56,54,49,93,44,91,45,56,51,46,51,50,53,50,57,54,44,51,49,46,55,53,54,53,56,52,93,44,91,45,56,51,46,51,50,53,54,49,55,44,51,49,46,54,56,48,54,48,51,93,44,91,45,56,50,46,57,57,56,51,54,44,51,49,46,54,55,51,49,54,52,93,44,91,45,56,50,46,57,57,53,54,57,56,44,51,49,46,55,56,48,57,56,51,93,44,91,45,56,51,46,49,55,55,52,54,57,44,51,49,46,56,52,55,56,53,55,93,44,91,45,56,51,46,52,56,48,49,55,54,44,51,49,46,56,52,55,51,49,50,93,44,91,45,56,51,46,52,53,51,54,51,52,44,51,49,46,55,53,55,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,57,57,57,54,49,44,51,52,46,56,54,55,49,50,93,44,91,45,57,49,46,49,48,50,53,52,50,44,51,52,46,55,51,52,56,54,52,93,44,91,45,57,49,46,48,53,49,57,49,56,44,51,52,46,54,52,53,55,50,49,93,44,91,45,57,48,46,53,56,51,50,50,52,44,51,52,46,54,52,49,51,56,57,93,44,91,45,57,48,46,53,49,55,49,54,56,44,51,52,46,54,51,48,57,50,56,93,44,91,45,57,48,46,52,48,55,57,57,49,44,51,52,46,56,51,50,57,55,93,44,91,45,57,48,46,52,48,56,53,52,44,51,52,46,57,48,52,49,50,49,93,44,91,45,57,49,46,48,57,57,50,48,49,44,51,52,46,57,49,49,55,57,54,93,44,91,45,57,49,46,48,57,57,57,54,49,44,51,52,46,56,54,55,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,97,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,55,56,53,44,34,98,101,100,115,34,58,49,49,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,52,57,57,53,56,44,51,48,46,51,54,50,52,55,50,93,44,91,45,56,50,46,49,55,48,49,57,55,44,51,48,46,51,53,56,57,55,50,93,44,91,45,56,50,46,50,49,48,55,51,51,44,51,48,46,52,50,53,54,52,93,44,91,45,56,50,46,50,49,52,54,55,55,44,51,48,46,53,54,56,53,53,54,93,44,91,45,56,50,46,52,49,56,57,49,52,44,51,48,46,53,56,49,55,54,55,93,44,91,45,56,50,46,52,53,57,55,57,51,44,51,48,46,53,56,52,50,54,55,93,44,91,45,56,50,46,52,53,56,51,54,52,44,51,48,46,49,51,54,52,52,57,93,44,91,45,56,50,46,49,52,50,53,55,56,44,51,48,46,49,52,51,49,49,55,93,44,91,45,56,50,46,48,52,57,52,50,53,44,51,48,46,49,52,51,49,51,54,93,44,91,45,56,50,46,48,52,57,52,49,49,44,51,48,46,49,56,54,57,51,51,93,44,91,45,56,50,46,48,52,57,50,51,54,44,51,48,46,50,55,51,52,51,50,93,44,91,45,56,50,46,48,52,57,57,53,56,44,51,48,46,51,54,50,52,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,76,97,110,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,54,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,57,55,57,55,49,44,51,49,46,48,50,53,52,48,53,93,44,91,45,56,51,46,49,55,57,52,54,53,44,51,48,46,57,53,48,49,50,56,93,44,91,45,56,51,46,48,52,50,57,50,52,44,51,48,46,57,52,55,50,57,54,93,44,91,45,56,51,46,48,49,57,52,49,57,44,51,48,46,56,52,57,52,53,51,93,44,91,45,56,50,46,57,55,49,51,51,54,44,51,48,46,56,54,57,51,57,50,93,44,91,45,56,50,46,57,55,49,50,52,55,44,51,49,46,49,56,51,57,56,56,93,44,91,45,56,51,46,48,52,54,56,56,53,44,51,49,46,49,56,51,54,56,93,44,91,45,56,51,46,49,54,53,48,55,50,44,51,49,46,49,52,55,49,57,56,93,44,91,45,56,51,46,49,57,55,57,55,49,44,51,49,46,48,50,53,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,82,105,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,54,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,56,48,51,55,55,44,51,56,46,53,50,49,56,52,49,93,44,91,45,57,56,46,52,55,57,56,52,49,44,51,56,46,50,54,48,55,57,93,44,91,45,57,56,46,52,55,50,55,57,52,44,51,56,46,49,55,50,55,53,55,93,44,91,45,57,55,46,57,50,50,49,51,54,44,51,56,46,49,55,51,55,49,51,93,44,91,45,57,55,46,57,50,52,50,54,57,44,51,56,46,53,50,50,55,53,53,93,44,91,45,57,56,46,52,56,48,51,55,55,44,51,56,46,53,50,49,56,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,48,57,56,44,34,98,101,100,115,34,58,52,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,51,56,57,55,53,44,51,51,46,57,54,56,52,54,93,44,91,45,56,53,46,56,56,49,55,54,56,44,51,51,46,57,53,48,50,57,57,93,44,91,45,56,54,46,48,54,53,50,55,50,44,51,51,46,56,52,50,49,57,56,93,44,91,45,56,54,46,48,52,51,57,57,51,44,51,51,46,55,54,51,53,57,53,93,44,91,45,56,54,46,49,52,53,53,54,50,44,51,51,46,54,55,57,48,57,56,93,44,91,45,56,54,46,48,53,48,54,54,57,44,51,51,46,54,55,52,53,57,93,44,91,45,56,53,46,57,57,52,57,51,53,44,51,51,46,53,56,54,52,55,53,93,44,91,45,56,53,46,55,57,54,48,53,52,44,51,51,46,53,53,54,50,50,93,44,91,45,56,53,46,54,51,56,53,55,57,44,51,51,46,54,52,56,52,49,51,93,44,91,45,56,53,46,54,48,49,56,53,56,44,51,51,46,56,56,57,55,53,93,44,91,45,56,53,46,53,51,48,48,57,52,44,51,51,46,57,52,49,52,50,51,93,44,91,45,56,53,46,55,51,56,57,55,53,44,51,51,46,57,54,56,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,48,49,52,44,34,98,101,100,115,34,58,52,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,56,52,53,51,51,44,51,48,46,54,55,55,50,57,50,93,44,91,45,56,56,46,56,56,51,49,51,44,51,48,46,52,49,56,55,57,56,93,44,91,45,56,56,46,55,57,53,50,56,55,44,51,48,46,51,53,48,51,54,49,93,44,91,45,56,56,46,55,57,53,49,52,55,44,51,48,46,49,57,57,57,57,52,93,44,91,45,56,56,46,52,54,49,50,56,51,44,51,48,46,49,52,54,54,56,54,93,44,91,45,56,56,46,51,56,52,52,51,49,44,51,48,46,49,53,56,53,52,51,93,44,91,45,56,56,46,52,49,50,54,49,50,44,51,48,46,55,51,53,53,57,93,44,91,45,56,56,46,56,56,52,53,51,52,44,51,48,46,55,51,53,53,57,49,93,44,91,45,56,56,46,56,56,52,53,51,51,44,51,48,46,54,55,55,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,97,109,112,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,50,54,55,44,34,98,101,100,115,34,58,51,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,48,54,49,54,49,44,51,57,46,48,57,53,49,55,55,93,44,91,45,56,52,46,52,50,55,50,56,53,44,51,56,46,57,56,48,56,54,51,93,44,91,45,56,52,46,52,49,56,49,48,55,44,51,56,46,56,48,54,53,57,54,93,44,91,45,56,52,46,50,51,49,57,49,55,44,51,56,46,56,55,52,56,54,54,93,44,91,45,56,52,46,51,49,57,57,56,53,44,51,57,46,48,50,49,53,51,52,93,44,91,45,56,52,46,53,48,54,49,54,49,44,51,57,46,48,57,53,49,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,49,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,57,54,50,49,52,44,51,54,46,56,49,56,48,51,57,93,44,91,45,56,53,46,52,51,54,52,52,50,44,51,54,46,54,49,56,54,53,53,93,44,91,45,56,53,46,50,57,54,48,48,50,44,51,54,46,54,50,53,55,49,56,93,44,91,45,56,53,46,50,49,53,52,48,53,44,51,54,46,56,53,52,52,54,55,93,44,91,45,56,53,46,50,51,50,48,50,54,44,51,54,46,57,50,53,48,54,57,93,44,91,45,56,53,46,52,53,49,56,51,44,51,54,46,57,51,56,49,51,56,93,44,91,45,56,53,46,53,57,54,50,49,52,44,51,54,46,56,49,56,48,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,80,97,110,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,50,52,51,44,34,98,101,100,115,34,58,49,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,50,49,51,52,49,44,51,52,46,53,53,52,50,55,52,93,44,91,45,57,48,46,49,57,56,54,51,49,44,51,52,46,53,53,52,52,50,53,93,44,91,45,57,48,46,49,57,56,53,51,54,44,51,52,46,53,49,49,48,56,56,93,44,91,45,57,48,46,49,57,52,48,56,54,44,51,52,46,51,48,49,52,48,55,93,44,91,45,57,48,46,49,51,53,52,53,54,44,51,52,46,49,54,48,48,55,52,93,44,91,45,56,57,46,57,51,49,52,56,53,44,51,52,46,49,54,52,51,48,51,93,44,91,45,56,57,46,55,50,49,48,53,44,51,52,46,49,57,50,53,52,53,93,44,91,45,56,57,46,55,50,49,51,52,49,44,51,52,46,53,53,52,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,72,97,110,115,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,55,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,51,57,49,53,44,51,54,46,52,57,57,53,50,56,93,44,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,44,91,45,49,48,49,46,48,56,53,55,51,53,44,51,54,46,48,53,53,50,55,54,93,44,91,45,49,48,49,46,48,56,53,55,49,54,44,51,54,46,48,53,55,53,55,50,93,44,91,45,49,48,49,46,48,56,53,49,53,54,44,51,54,46,52,57,57,50,52,52,93,44,91,45,49,48,49,46,54,50,51,57,49,53,44,51,54,46,52,57,57,53,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,67,104,97,109,98,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,50,57,50,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,56,49,52,54,44,50,57,46,56,56,52,50,55,54,93,44,91,45,57,52,46,57,48,56,54,53,52,44,50,57,46,56,50,53,49,56,49,93,44,91,45,57,52,46,57,49,57,54,55,49,44,50,57,46,54,56,56,52,53,52,93,44,91,45,57,53,46,48,48,49,54,52,50,44,50,57,46,54,54,52,51,56,56,93,44,91,45,57,53,46,48,49,56,50,48,53,44,50,57,46,53,53,52,53,57,55,93,44,91,45,57,52,46,57,49,52,51,57,55,44,50,57,46,52,57,54,53,48,53,93,44,91,45,57,52,46,51,55,49,54,50,44,50,57,46,53,57,55,50,48,57,93,44,91,45,57,52,46,51,54,57,51,54,49,44,50,57,46,53,48,48,54,50,93,44,91,45,57,52,46,51,53,52,56,56,44,50,57,46,53,48,54,51,50,56,93,44,91,45,57,52,46,51,53,55,57,55,54,44,50,57,46,56,56,55,52,54,52,93,44,91,45,57,52,46,52,52,50,50,51,53,44,50,57,46,56,56,57,53,51,56,93,44,91,45,57,52,46,57,56,49,52,54,44,50,57,46,56,56,52,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,57,34,44,34,78,65,77,69,34,58,34,81,117,105,116,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,54,56,50,51,44,51,49,46,57,57,49,56,53,55,93,44,91,45,56,53,46,49,52,49,49,51,44,51,49,46,55,56,48,52,54,51,93,44,91,45,56,52,46,57,53,56,54,52,44,51,49,46,55,55,55,56,53,52,93,44,91,45,56,52,46,57,48,55,48,48,54,44,51,49,46,57,50,52,52,54,53,93,44,91,45,56,53,46,48,54,56,50,51,44,51,49,46,57,57,49,56,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,55,49,54,56,57,44,51,48,46,53,50,54,48,51,51,93,44,91,45,57,52,46,53,52,53,55,49,55,44,51,48,46,53,50,54,57,55,55,93,44,91,45,57,52,46,55,51,50,55,51,50,44,51,48,46,52,57,48,48,54,54,93,44,91,45,57,52,46,53,57,54,51,51,56,44,51,48,46,49,49,50,49,48,49,93,44,91,45,57,52,46,52,52,52,57,49,44,51,48,46,49,49,51,48,49,53,93,44,91,45,57,52,46,50,57,50,54,50,57,44,51,48,46,49,49,55,54,55,49,93,44,91,45,57,52,46,50,48,51,55,48,57,44,51,48,46,49,56,56,56,49,57,93,44,91,45,57,52,46,49,49,53,57,49,55,44,51,48,46,49,54,48,51,52,55,93,44,91,45,57,52,46,49,49,55,54,48,52,44,51,48,46,50,52,49,54,54,53,93,44,91,45,57,52,46,48,56,50,57,50,44,51,48,46,51,52,53,54,53,52,93,44,91,45,57,52,46,49,49,54,52,54,54,44,51,48,46,52,51,50,54,57,49,93,44,91,45,57,52,46,48,55,49,54,56,57,44,51,48,46,53,50,54,48,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,57,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,76,105,116,99,104,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,110,110,101,99,116,105,99,117,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,48,51,49,44,34,98,101,100,115,34,58,49,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,52,56,55,51,49,57,44,52,50,46,48,52,57,53,50,53,93,44,91,45,55,51,46,53,49,56,48,56,44,52,49,46,54,54,54,55,50,51,93,44,91,45,55,51,46,52,52,49,52,54,54,44,52,49,46,52,57,49,50,57,52,93,44,91,45,55,51,46,51,49,48,52,55,51,44,52,49,46,52,54,56,56,49,53,93,44,91,45,55,51,46,49,53,53,52,57,50,44,52,49,46,53,49,52,51,48,52,93,44,91,45,55,50,46,57,56,51,50,53,44,52,49,46,54,51,57,53,57,56,93,44,91,45,55,51,46,48,49,54,54,55,53,44,52,49,46,55,57,56,49,56,51,93,44,91,45,55,50,46,56,56,55,48,54,44,52,49,46,57,55,51,49,50,49,93,44,91,45,55,51,46,48,48,56,55,54,54,44,52,50,46,48,51,56,55,56,53,93,44,91,45,55,51,46,48,53,51,50,56,56,44,52,50,46,48,51,57,56,54,53,93,44,91,45,55,51,46,52,56,55,51,49,57,44,52,50,46,48,52,57,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,83,97,110,100,117,115,107,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,50,57,57,44,34,98,101,100,115,34,58,50,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,49,52,54,50,54,44,52,49,46,53,48,48,50,50,56,93,44,91,45,56,51,46,52,49,57,56,52,51,44,52,49,46,50,53,52,48,48,51,93,44,91,45,56,50,46,56,52,48,48,56,55,44,52,49,46,50,53,53,51,51,55,93,44,91,45,56,50,46,56,52,49,52,55,53,44,52,49,46,50,57,48,48,50,51,93,44,91,45,56,50,46,56,52,55,55,49,51,44,52,49,46,52,51,48,51,50,54,93,44,91,45,56,50,46,57,53,50,50,50,52,44,52,49,46,52,53,56,50,51,57,93,44,91,45,56,51,46,51,51,56,49,57,54,44,52,49,46,52,53,55,53,48,56,93,44,91,45,56,51,46,52,49,52,54,50,54,44,52,49,46,53,48,48,50,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,80,105,115,99,97,116,97,113,117,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,56,55,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,57,46,55,50,49,49,48,57,44,52,54,46,53,55,52,48,53,51,93,44,91,45,54,57,46,55,50,56,53,55,55,44,52,53,46,57,55,54,56,56,50,93,44,91,45,54,57,46,55,48,52,50,54,53,44,52,53,46,56,52,54,49,51,54,93,44,91,45,54,57,46,55,56,53,50,53,55,44,52,53,46,54,57,50,55,56,93,44,91,45,54,57,46,55,48,49,54,56,56,44,52,53,46,54,50,55,57,56,50,93,44,91,45,54,57,46,55,55,57,57,50,56,44,52,53,46,53,52,50,55,54,54,93,44,91,45,54,57,46,54,50,48,57,54,55,44,52,53,46,48,49,48,57,53,54,93,44,91,45,54,57,46,51,53,53,54,54,55,44,52,53,46,48,55,51,52,54,57,93,44,91,45,54,56,46,56,53,54,53,56,55,44,52,53,46,49,52,50,55,56,51,93,44,91,45,54,56,46,55,55,54,48,54,49,44,52,53,46,50,52,48,51,49,55,93,44,91,45,54,56,46,56,53,55,50,57,55,44,52,53,46,53,50,55,51,48,49,93,44,91,45,54,56,46,57,54,52,54,53,51,44,52,53,46,53,49,50,51,54,55,93,44,91,45,54,56,46,57,53,56,57,49,44,52,53,46,54,54,50,49,57,53,93,44,91,45,54,56,46,56,50,55,48,51,57,44,52,53,46,54,56,52,56,50,54,93,44,91,45,54,56,46,56,49,57,52,48,49,44,52,54,46,51,57,53,55,56,50,93,44,91,45,54,56,46,56,50,49,52,49,52,44,52,54,46,53,55,50,53,49,93,44,91,45,54,57,46,55,50,49,49,48,57,44,52,54,46,53,55,52,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,50,56,55,53,55,44,51,55,46,51,48,50,56,52,56,93,44,91,45,56,57,46,48,52,52,55,57,57,44,51,55,46,51,50,57,55,49,55,93,44,91,45,56,57,46,50,52,56,53,54,54,44,51,55,46,51,51,53,50,57,56,93,44,91,45,56,57,46,50,55,51,54,51,49,44,51,55,46,49,50,54,57,54,56,93,44,91,45,56,57,46,49,55,50,48,56,49,44,51,55,46,48,54,56,51,49,93,44,91,45,56,57,46,48,50,57,56,54,54,44,51,55,46,50,49,49,48,54,53,93,44,91,45,56,56,46,57,51,51,52,48,49,44,51,55,46,50,50,52,57,57,49,93,44,91,45,56,56,46,57,50,55,56,57,44,51,55,46,50,50,54,51,52,50,93,44,91,45,56,56,46,57,50,56,55,53,55,44,51,55,46,51,48,50,56,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,79,107,102,117,115,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,50,51,54,57,57,44,51,53,46,52,48,48,55,50,50,93,44,91,45,57,54,46,52,52,53,53,56,52,44,51,53,46,52,53,56,55,55,49,93,44,91,45,57,54,46,52,52,49,51,54,56,44,51,53,46,50,57,48,49,50,50,93,44,91,45,57,53,46,57,56,49,53,49,49,44,51,53,46,50,56,57,55,56,93,44,91,45,57,53,46,57,56,49,52,54,53,44,51,53,46,51,55,54,55,56,56,93,44,91,45,57,54,46,48,56,55,53,51,44,51,53,46,51,55,54,56,55,55,93,44,91,45,57,54,46,48,56,55,55,55,55,44,51,53,46,53,53,50,48,48,51,93,44,91,45,57,54,46,49,57,50,53,54,51,44,51,53,46,54,51,57,48,56,55,93,44,91,45,57,54,46,54,50,48,56,50,56,44,51,53,46,54,51,57,48,48,53,93,44,91,45,57,54,46,54,50,52,54,56,49,44,51,53,46,52,54,50,55,48,55,93,44,91,45,57,54,46,54,50,51,54,57,57,44,51,53,46,52,48,48,55,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,83,97,103,105,110,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,55,55,56,44,34,98,101,100,115,34,58,56,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,57,56,55,54,44,52,51,46,52,54,54,48,52,52,93,44,91,45,56,52,46,51,54,55,56,57,49,44,52,51,46,49,50,56,52,53,50,93,44,91,45,56,51,46,57,50,57,48,55,57,44,52,51,46,49,51,50,55,56,50,93,44,91,45,56,51,46,57,51,50,48,55,49,44,52,51,46,50,50,48,51,55,55,93,44,91,45,56,51,46,54,57,53,54,50,49,44,52,51,46,50,50,49,52,50,50,93,44,91,45,56,51,46,54,57,56,56,49,54,44,52,51,46,52,55,56,57,53,55,93,44,91,45,56,51,46,56,49,55,50,50,56,44,52,51,46,53,50,50,51,52,53,93,44,91,45,56,52,46,48,53,48,57,56,55,44,52,51,46,53,50,52,48,54,52,93,44,91,45,56,52,46,49,54,56,49,50,55,44,52,51,46,53,54,56,56,57,57,93,44,91,45,56,52,46,49,55,48,53,55,54,44,52,51,46,52,56,49,57,54,57,93,44,91,45,56,52,46,51,54,57,56,55,54,44,52,51,46,52,54,54,48,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,82,105,111,32,65,114,114,105,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,51,48,55,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,55,54,48,57,44,51,54,46,57,57,51,53,52,56,93,44,91,45,49,48,55,46,52,50,49,50,50,51,44,51,55,46,48,48,48,50,50,51,93,44,91,45,49,48,55,46,52,53,49,52,52,53,44,51,54,46,57,48,52,48,51,54,93,44,91,45,49,48,55,46,54,49,56,49,56,49,44,51,54,46,56,48,52,50,54,55,93,44,91,45,49,48,55,46,54,50,52,50,56,51,44,51,54,46,50,49,57,56,48,57,93,44,91,45,49,48,54,46,56,56,53,48,53,51,44,51,54,46,50,49,54,53,55,93,44,91,45,49,48,54,46,56,56,53,51,49,55,44,51,53,46,57,57,56,57,54,57,93,44,91,45,49,48,54,46,50,52,55,49,54,52,44,51,54,46,48,48,49,52,51,52,93,44,91,45,49,48,54,46,50,52,56,49,54,49,44,51,53,46,57,54,54,51,50,55,93,44,91,45,49,48,54,46,50,52,53,54,52,57,44,51,53,46,57,51,48,55,52,50,93,44,91,45,49,48,54,46,48,53,52,51,52,54,44,51,53,46,57,51,48,55,56,51,93,44,91,45,49,48,54,46,48,55,49,51,52,57,44,51,54,46,48,48,49,57,55,93,44,91,45,49,48,53,46,55,49,55,52,55,55,44,51,53,46,57,55,56,55,52,49,93,44,91,45,49,48,53,46,53,51,48,51,56,44,51,54,46,48,49,51,48,49,52,93,44,91,45,49,48,53,46,55,51,53,56,56,51,44,51,54,46,49,48,48,49,51,51,93,44,91,45,49,48,53,46,56,53,54,57,52,55,44,51,54,46,50,51,48,52,51,52,93,44,91,45,49,48,54,46,48,53,56,51,54,52,44,51,54,46,50,57,54,57,55,56,93,44,91,45,49,48,53,46,57,54,49,52,49,52,44,51,54,46,51,53,51,48,54,54,93,44,91,45,49,48,53,46,57,51,56,55,53,52,44,51,54,46,52,54,50,52,48,50,93,44,91,45,49,48,53,46,57,55,49,56,51,54,44,51,54,46,54,51,50,52,52,52,93,44,91,45,49,48,53,46,57,55,49,56,56,57,44,51,54,46,56,56,54,50,52,55,93,44,91,45,49,48,54,46,48,48,54,51,49,54,44,51,54,46,57,57,53,50,54,55,93,44,91,45,49,48,54,46,52,55,54,48,57,44,51,54,46,57,57,51,53,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,97,108,101,100,111,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,52,50,53,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,57,51,57,57,51,54,44,52,52,46,55,54,57,48,51,50,93,44,91,45,55,50,46,48,49,50,53,48,52,44,52,52,46,54,57,56,56,50,49,93,44,91,45,55,50,46,49,49,52,53,48,51,44,52,52,46,55,52,57,54,50,52,93,44,91,45,55,50,46,50,54,50,57,54,53,44,52,52,46,53,52,50,51,51,54,93,44,91,45,55,50,46,51,55,52,55,56,54,44,52,52,46,53,56,52,49,50,53,93,44,91,45,55,50,46,52,51,52,51,49,53,44,52,52,46,53,48,54,48,57,56,93,44,91,45,55,50,46,50,50,51,54,56,57,44,52,52,46,52,50,52,53,55,51,93,44,91,45,55,50,46,51,54,56,51,53,51,44,52,52,46,50,48,52,48,53,55,93,44,91,45,55,50,46,48,52,50,57,53,54,44,52,52,46,49,53,54,52,57,55,93,44,91,45,55,50,46,48,54,56,52,55,56,44,52,52,46,50,55,48,56,48,49,93,44,91,45,55,49,46,57,56,49,52,50,52,44,52,52,46,51,51,55,51,54,54,93,44,91,45,55,49,46,56,51,55,56,53,51,44,52,52,46,51,52,55,57,57,51,93,44,91,45,55,49,46,57,51,51,50,56,56,44,52,52,46,52,52,49,49,55,52,93,44,91,45,55,49,46,57,49,48,48,56,53,44,52,52,46,54,52,55,49,56,93,44,91,45,55,49,46,57,51,57,57,51,54,44,52,52,46,55,54,57,48,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,111,116,101,116,111,117,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,50,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,50,48,53,53,52,44,51,55,46,54,52,55,52,52,50,93,44,91,45,55,57,46,57,54,57,48,55,49,44,51,55,46,53,52,52,52,48,56,93,44,91,45,56,48,46,48,55,52,49,49,57,44,51,55,46,52,50,50,52,54,57,93,44,91,45,55,57,46,56,52,55,52,55,54,44,51,55,46,51,48,57,51,53,50,93,44,91,45,55,57,46,54,57,48,48,54,44,51,55,46,52,55,54,51,55,52,93,44,91,45,55,57,46,53,57,51,55,48,55,44,51,55,46,52,52,56,56,54,52,93,44,91,45,55,57,46,52,57,56,54,57,57,44,51,55,46,53,51,50,55,57,55,93,44,91,45,55,57,46,54,56,51,53,53,52,44,51,55,46,54,54,49,55,54,51,93,44,91,45,55,57,46,54,55,52,49,54,50,44,51,55,46,55,54,51,48,57,51,93,44,91,45,55,57,46,56,49,54,54,56,53,44,51,55,46,56,48,48,57,54,52,93,44,91,45,56,48,46,48,50,48,53,53,52,44,51,55,46,54,52,55,52,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,53,54,55,48,44,34,98,101,100,115,34,58,57,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,55,53,55,48,50,44,51,56,46,57,50,51,53,50,57,93,44,91,45,57,48,46,49,49,55,55,48,55,44,51,56,46,56,48,53,55,52,56,93,44,91,45,57,48,46,49,54,54,53,55,52,44,51,56,46,55,55,50,52,52,56,93,44,91,45,57,48,46,49,56,49,53,52,51,44,51,56,46,54,54,48,48,54,50,93,44,91,45,56,57,46,55,48,54,57,52,57,44,51,56,46,54,53,53,48,49,57,93,44,91,45,56,57,46,53,57,55,51,50,49,44,51,56,46,55,52,51,50,51,54,93,44,91,45,56,57,46,54,51,57,50,54,53,44,51,56,46,57,57,57,49,50,57,93,44,91,45,56,57,46,54,57,56,53,53,53,44,51,56,46,57,57,56,57,55,57,93,44,91,45,57,48,46,49,52,53,57,56,52,44,51,56,46,57,57,57,51,48,51,93,44,91,45,57,48,46,50,55,53,55,48,50,44,51,56,46,57,50,51,53,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,67,111,108,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,52,51,53,48,44,34,98,101,100,115,34,58,50,51,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,51,52,49,49,44,51,51,46,52,48,53,52,57,56,93,44,91,45,57,54,46,56,52,51,57,55,57,44,51,50,46,57,56,55,53,53,52,93,44,91,45,57,54,46,53,49,54,56,54,54,44,51,50,46,57,56,50,51,48,56,93,44,91,45,57,54,46,50,57,55,50,50,55,44,51,50,46,57,56,49,55,53,50,93,44,91,45,57,54,46,50,57,53,52,49,51,44,51,51,46,51,53,49,57,51,54,93,44,91,45,57,54,46,51,56,52,54,48,50,44,51,51,46,51,57,55,56,50,54,93,44,91,45,57,54,46,56,51,52,49,49,44,51,51,46,52,48,53,52,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,98,98,101,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,54,53,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,49,51,57,57,54,44,51,52,46,52,56,52,48,48,50,93,44,91,45,56,50,46,55,52,50,49,48,51,44,51,52,46,50,49,49,57,48,51,93,44,91,45,56,50,46,53,57,52,54,51,49,44,51,52,46,48,49,51,55,57,54,93,44,91,45,56,50,46,53,51,48,53,54,55,44,51,52,46,48,55,49,57,50,53,93,44,91,45,56,50,46,51,50,54,57,52,55,44,51,52,46,48,54,52,49,50,93,44,91,45,56,50,46,50,52,55,55,52,55,44,51,52,46,50,49,57,54,49,57,93,44,91,45,56,50,46,51,51,52,50,51,52,44,51,52,46,51,52,50,54,51,93,44,91,45,56,50,46,50,52,54,51,51,55,44,51,52,46,52,48,57,54,55,54,93,44,91,45,56,50,46,51,49,51,57,57,54,44,51,52,46,52,56,52,48,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,68,111,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,56,51,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,48,53,57,50,50,44,52,49,46,55,52,50,55,54,51,93,44,91,45,57,54,46,57,48,53,57,49,44,52,49,46,52,53,54,52,51,54,93,44,91,45,57,54,46,57,48,53,56,54,50,44,52,49,46,52,53,51,51,56,57,93,44,91,45,57,54,46,53,54,56,57,55,55,44,52,49,46,52,51,51,50,52,93,44,91,45,57,54,46,52,55,48,55,50,44,52,49,46,51,57,51,50,51,57,93,44,91,45,57,54,46,51,50,57,48,49,50,44,52,49,46,51,57,51,49,51,54,93,44,91,45,57,54,46,52,52,51,56,57,56,44,52,49,46,53,50,51,57,51,51,93,44,91,45,57,54,46,52,52,52,55,56,53,44,52,49,46,54,56,51,54,51,51,93,44,91,45,57,54,46,53,53,53,49,55,50,44,52,49,46,55,52,50,48,49,56,93,44,91,45,57,54,46,57,48,53,57,50,50,44,52,49,46,55,52,50,55,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,97,114,97,115,111,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,49,52,52,44,34,98,101,100,115,34,58,49,53,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,48,53,52,51,56,44,50,55,46,51,56,57,54,54,56,93,44,91,45,56,50,46,53,54,52,55,52,44,50,55,46,50,48,53,54,93,44,91,45,56,50,46,52,51,55,51,50,55,44,50,54,46,57,52,54,48,50,53,93,44,91,45,56,50,46,50,53,53,53,50,49,44,50,54,46,57,52,53,50,54,52,93,44,91,45,56,50,46,50,53,53,50,51,55,44,50,55,46,48,51,50,57,55,53,93,44,91,45,56,50,46,48,53,55,52,54,57,44,50,55,46,48,51,50,49,49,57,93,44,91,45,56,50,46,48,53,54,52,57,55,44,50,55,46,50,48,55,55,54,57,93,44,91,45,56,50,46,50,53,51,53,57,54,44,50,55,46,50,48,56,57,49,54,93,44,91,45,56,50,46,50,53,50,50,54,52,44,50,55,46,51,56,54,50,52,51,93,44,91,45,56,50,46,55,48,53,52,51,56,44,50,55,46,51,56,57,54,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,77,97,114,113,117,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,54,56,54,49,50,44,52,51,46,57,56,50,56,51,52,93,44,91,45,56,57,46,53,57,55,57,53,44,52,51,46,57,56,50,49,93,44,91,45,56,57,46,53,57,57,53,52,55,44,52,51,46,54,52,50,54,51,54,93,44,91,45,56,57,46,50,52,53,52,51,55,44,52,51,46,54,52,51,48,56,51,93,44,91,45,56,57,46,50,52,53,51,55,53,44,52,51,46,55,53,57,56,49,51,93,44,91,45,56,57,46,49,54,56,49,50,49,44,52,51,46,56,55,54,52,55,93,44,91,45,56,57,46,49,54,56,54,49,50,44,52,51,46,57,56,50,56,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,77,111,104,97,118,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,48,54,52,44,34,98,101,100,115,34,58,54,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,48,53,48,51,53,52,44,51,54,46,56,52,51,49,52,49,93,44,91,45,49,49,52,46,48,52,51,57,52,52,44,51,54,46,49,57,51,51,53,93,44,91,45,49,49,52,46,49,53,51,52,44,51,54,46,48,50,51,49,55,93,44,91,45,49,49,52,46,50,52,51,56,54,53,44,51,54,46,48,49,53,50,54,54,93,44,91,45,49,49,52,46,51,55,48,49,56,49,44,51,54,46,49,52,50,54,50,52,93,44,91,45,49,49,52,46,54,50,55,48,55,57,44,51,54,46,49,52,48,55,54,49,93,44,91,45,49,49,52,46,55,53,52,53,48,56,44,51,54,46,48,56,54,49,55,49,93,44,91,45,49,49,52,46,55,48,56,49,49,50,44,51,53,46,57,48,57,57,51,51,93,44,91,45,49,49,52,46,54,55,56,56,57,50,44,51,53,46,53,48,49,50,55,54,93,44,91,45,49,49,52,46,53,57,53,49,54,51,44,51,53,46,51,50,49,56,56,51,93,44,91,45,49,49,52,46,53,54,57,53,50,57,44,51,53,46,49,54,50,51,49,55,93,44,91,45,49,49,52,46,54,51,51,52,56,55,44,51,53,46,48,48,49,56,53,55,93,44,91,45,49,49,52,46,54,50,56,50,55,54,44,51,52,46,56,54,51,53,57,54,93,44,91,45,49,49,52,46,52,55,49,54,50,44,51,52,46,55,49,50,57,54,54,93,44,91,45,49,49,52,46,52,51,53,54,55,49,44,51,52,46,53,57,51,56,52,49,93,44,91,45,49,49,52,46,51,51,57,54,50,55,44,51,52,46,52,53,49,52,51,53,93,44,91,45,49,49,52,46,49,51,56,50,56,50,44,51,52,46,51,48,51,50,51,93,44,91,45,49,49,52,46,48,51,49,49,51,50,44,51,52,46,50,53,57,56,49,57,93,44,91,45,49,49,51,46,54,48,54,48,57,51,44,51,52,46,50,50,57,51,51,52,93,44,91,45,49,49,51,46,53,51,57,53,50,52,44,51,52,46,51,48,54,51,55,55,93,44,91,45,49,49,51,46,51,51,51,53,48,56,44,51,52,46,51,49,55,56,55,55,93,44,91,45,49,49,51,46,51,51,52,49,54,49,44,51,53,46,53,50,56,48,51,55,93,44,91,45,49,49,51,46,51,49,51,52,50,56,44,51,54,46,49,48,48,48,48,49,93,44,91,45,49,49,51,46,48,48,54,51,52,51,44,51,54,46,50,51,56,55,53,52,93,44,91,45,49,49,50,46,57,48,50,57,52,57,44,51,54,46,50,53,51,55,54,49,93,44,91,45,49,49,50,46,54,56,49,53,55,49,44,51,54,46,51,52,49,54,54,50,93,44,91,45,49,49,50,46,54,50,57,52,57,44,51,54,46,51,57,49,54,49,49,93,44,91,45,49,49,50,46,54,53,54,51,54,53,44,51,54,46,53,53,51,57,49,53,93,44,91,45,49,49,50,46,54,49,57,55,50,56,44,51,54,46,55,56,50,55,52,52,93,44,91,45,49,49,50,46,53,51,56,53,55,49,44,51,55,46,48,48,48,55,53,56,93,44,91,45,49,49,50,46,56,57,57,49,57,49,44,51,55,46,48,48,48,51,56,53,93,44,91,45,49,49,52,46,48,53,48,48,53,50,44,51,55,46,48,48,48,49,57,49,93,44,91,45,49,49,52,46,48,53,48,51,53,52,44,51,54,46,56,52,51,49,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,89,97,118,97,112,97,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,54,52,53,44,34,98,101,100,115,34,58,51,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,51,51,52,49,54,49,44,51,53,46,53,50,56,48,51,55,93,44,91,45,49,49,51,46,51,51,51,53,48,56,44,51,52,46,51,49,55,56,55,55,93,44,91,45,49,49,51,46,51,51,51,55,53,51,44,51,51,46,57,57,57,50,50,55,93,44,91,45,49,49,50,46,55,52,51,57,53,49,44,51,51,46,57,57,57,56,57,56,93,44,91,45,49,49,50,46,50,55,54,48,52,44,51,51,46,56,56,50,51,49,50,93,44,91,45,49,49,50,46,49,54,51,50,53,51,44,51,52,46,48,52,55,52,55,49,93,44,91,45,49,49,49,46,55,50,53,51,49,44,51,51,46,57,57,57,56,52,57,93,44,91,45,49,49,49,46,52,57,52,55,55,56,44,51,51,46,57,57,57,56,49,55,93,44,91,45,49,49,49,46,52,55,55,56,53,51,44,51,52,46,49,53,49,49,48,56,93,44,91,45,49,49,49,46,55,49,50,49,49,56,44,51,52,46,49,53,49,50,55,49,93,44,91,45,49,49,49,46,54,53,57,54,50,50,44,51,52,46,51,56,54,51,52,50,93,44,91,45,49,49,49,46,53,53,52,54,56,49,44,51,52,46,52,55,49,55,51,51,93,44,91,45,49,49,49,46,53,53,49,57,53,57,44,51,52,46,56,48,50,53,50,93,44,91,45,49,49,49,46,55,55,56,50,48,52,44,51,52,46,56,48,51,54,56,53,93,44,91,45,49,49,49,46,55,55,56,50,57,55,44,51,52,46,57,56,49,48,48,55,93,44,91,45,49,49,50,46,51,51,52,53,51,54,44,51,52,46,57,55,51,48,50,52,93,44,91,45,49,49,50,46,51,51,53,55,49,54,44,51,53,46,49,52,56,50,55,57,93,44,91,45,49,49,50,46,52,52,50,51,44,51,53,46,49,52,57,52,48,56,93,44,91,45,49,49,50,46,52,55,50,55,44,51,53,46,50,51,56,51,49,50,93,44,91,45,49,49,50,46,53,55,55,51,57,57,44,51,53,46,50,52,51,51,57,52,93,44,91,45,49,49,50,46,54,57,52,56,52,54,44,51,53,46,51,49,49,53,56,54,93,44,91,45,49,49,50,46,57,52,52,55,56,57,44,51,53,46,51,53,50,54,48,51,93,44,91,45,49,49,51,46,49,55,52,52,53,56,44,51,53,46,53,48,54,52,52,53,93,44,91,45,49,49,51,46,51,51,52,49,54,49,44,51,53,46,53,50,56,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,72,111,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,48,57,49,53,44,34,98,101,100,115,34,58,56,48,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,49,50,56,49,54,53,44,51,52,46,50,53,51,54,53,50,93,44,91,45,55,57,46,51,51,50,52,53,56,44,51,51,46,57,57,52,57,57,55,93,44,91,45,55,57,46,49,57,48,50,54,52,44,51,51,46,55,48,53,55,56,55,93,44,91,45,55,57,46,49,48,49,48,55,52,44,51,51,46,53,55,50,57,54,57,93,44,91,45,55,56,46,57,50,54,48,55,53,44,51,51,46,53,55,50,54,53,56,93,44,91,45,55,56,46,54,57,49,51,56,50,44,51,51,46,55,53,53,50,56,56,93,44,91,45,55,56,46,52,57,57,51,48,49,44,51,51,46,56,49,50,56,53,50,93,44,91,45,55,56,46,54,53,48,51,49,52,44,51,51,46,57,52,52,51,52,50,93,44,91,45,55,57,46,48,55,49,50,49,49,44,51,52,46,50,57,57,51,52,50,93,44,91,45,55,57,46,49,50,56,49,54,53,44,51,52,46,50,53,51,54,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,49,51,48,49,44,34,98,101,100,115,34,58,51,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,54,57,54,55,56,50,44,52,48,46,50,52,49,56,54,51,93,44,91,45,55,53,46,53,55,51,51,51,56,44,52,48,46,49,57,53,51,48,51,93,44,91,45,55,53,46,51,54,49,48,54,54,44,52,48,46,48,54,53,53,52,51,93,44,91,45,55,53,46,50,55,54,52,56,50,44,51,57,46,57,55,54,57,53,57,93,44,91,45,55,53,46,50,50,51,54,49,44,52,48,46,48,57,50,57,48,55,93,44,91,45,55,53,46,49,48,57,52,51,49,44,52,48,46,48,52,53,56,55,52,93,44,91,45,55,53,46,48,49,53,48,54,54,44,52,48,46,49,51,55,57,57,50,93,44,91,45,55,53,46,52,56,52,48,53,55,44,52,48,46,52,49,56,52,53,49,93,44,91,45,55,53,46,53,50,57,54,57,52,44,52,48,46,52,52,54,57,57,53,93,44,91,45,55,53,46,54,57,54,55,56,50,44,52,48,46,50,52,49,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,52,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,44,91,45,49,49,54,46,51,54,57,49,50,50,44,52,54,46,52,54,54,57,50,51,93,44,91,45,49,49,54,46,51,54,56,56,48,49,44,52,54,46,51,52,51,50,49,55,93,44,91,45,49,49,54,46,55,49,51,52,57,54,44,52,54,46,51,50,53,53,50,55,93,44,91,45,49,49,54,46,55,48,49,56,49,57,44,52,53,46,57,57,54,51,56,49,93,44,91,45,49,49,54,46,53,49,52,55,48,55,44,52,54,46,48,51,56,55,53,55,93,44,91,45,49,49,54,46,52,53,52,49,49,55,44,52,54,46,49,57,50,48,51,50,93,44,91,45,49,49,54,46,51,48,51,55,49,51,44,52,54,46,49,54,54,55,55,56,93,44,91,45,49,49,54,46,49,51,51,53,55,44,52,54,46,50,49,53,50,51,49,93,44,91,45,49,49,54,46,49,55,48,50,55,50,44,52,54,46,51,55,49,53,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,65,114,101,99,105,98,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,50,52,50,44,34,98,101,100,115,34,58,50,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,55,54,52,54,57,50,44,49,56,46,53,51,56,51,51,93,44,91,45,54,54,46,55,55,48,48,55,50,44,49,56,46,51,50,53,48,49,51,93,44,91,45,54,54,46,54,48,54,57,56,57,44,49,56,46,51,50,56,49,56,54,93,44,91,45,54,54,46,53,57,48,55,56,53,44,49,56,46,51,51,56,48,54,93,44,91,45,54,54,46,53,56,56,49,56,49,44,49,56,46,51,56,57,52,48,56,93,44,91,45,54,54,46,53,55,56,52,52,49,44,49,56,46,53,52,49,52,51,49,93,44,91,45,54,54,46,55,54,52,54,57,50,44,49,56,46,53,51,56,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,50,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,50,48,34,44,34,78,65,77,69,34,58,34,78,111,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,57,48,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,54,51,54,50,53,44,51,54,46,57,50,48,57,53,57,93,44,91,45,56,50,46,53,57,49,49,52,55,44,51,54,46,57,51,53,51,49,51,93,44,91,45,56,50,46,54,51,51,56,51,49,44,51,54,46,57,53,50,50,55,54,93,44,91,45,56,50,46,54,54,51,54,50,53,44,51,54,46,57,50,48,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,77,111,114,114,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,52,51,56,51,44,34,98,101,100,115,34,58,49,56,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,53,48,51,50,49,50,44,52,49,46,48,56,53,56,55,51,93,44,91,45,55,52,46,54,52,48,54,52,51,44,52,48,46,57,54,53,51,51,56,93,44,91,45,55,52,46,55,54,57,52,50,53,44,52,48,46,57,49,48,57,51,52,93,44,91,45,55,52,46,56,56,57,56,49,57,44,52,48,46,55,56,55,55,50,57,93,44,91,45,55,52,46,55,50,53,54,54,54,44,52,48,46,55,49,57,53,51,50,93,44,91,45,55,52,46,53,53,54,48,49,56,44,52,48,46,55,53,56,50,56,56,93,44,91,45,55,52,46,52,54,49,48,51,53,44,52,48,46,54,55,51,53,48,52,93,44,91,45,55,52,46,51,55,49,55,51,56,44,52,48,46,55,51,57,54,52,93,44,91,45,55,52,46,50,55,50,48,54,51,44,52,48,46,56,57,55,52,50,55,93,44,91,45,55,52,46,51,48,49,54,56,53,44,52,48,46,57,57,57,49,55,51,93,44,91,45,55,52,46,53,48,51,50,49,50,44,52,49,46,48,56,53,56,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,49,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,54,54,57,51,53,44,52,48,46,51,56,50,57,57,57,93,44,91,45,57,51,46,51,54,55,50,49,52,44,52,48,46,50,54,54,51,49,52,93,44,91,45,57,51,46,51,54,49,57,53,49,44,52,48,46,48,51,51,48,57,56,93,44,91,45,57,50,46,56,53,54,49,57,49,44,52,48,46,48,51,55,50,53,51,93,44,91,45,57,50,46,56,53,53,54,50,57,44,52,48,46,51,52,50,55,51,54,93,44,91,45,57,50,46,56,53,53,51,49,51,44,52,48,46,51,56,53,56,57,52,93,44,91,45,57,51,46,51,54,54,57,51,53,44,52,48,46,51,56,50,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,78,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,53,53,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,52,55,50,44,51,56,46,54,57,56,49,54,53,93,44,91,45,49,48,48,46,50,52,52,51,57,51,44,51,56,46,50,54,50,50,57,93,44,91,45,49,48,48,46,50,50,55,49,51,55,44,51,56,46,50,54,50,50,51,55,93,44,91,45,57,57,46,53,56,52,50,48,55,44,51,56,46,50,54,50,49,55,57,93,44,91,45,57,57,46,53,56,52,55,57,52,44,51,56,46,51,52,57,51,56,54,93,44,91,45,57,57,46,53,56,53,48,56,55,44,51,56,46,54,57,54,53,51,55,93,44,91,45,57,57,46,53,57,56,51,50,51,44,51,56,46,54,57,54,53,49,52,93,44,91,45,49,48,48,46,49,53,51,56,50,51,44,51,56,46,54,57,55,51,52,49,93,44,91,45,49,48,48,46,50,52,55,50,44,51,56,46,54,57,56,49,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,66,114,97,122,111,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,57,57,57,44,34,98,101,100,115,34,58,50,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,50,52,49,49,56,44,50,57,46,53,56,48,50,51,51,93,44,91,45,57,53,46,52,54,50,53,48,51,44,50,57,46,52,51,57,50,52,93,44,91,45,57,53,46,53,52,57,57,57,52,44,50,57,46,52,51,56,52,51,57,93,44,91,45,57,53,46,53,57,48,55,57,51,44,50,57,46,51,50,55,52,56,53,93,44,91,45,57,53,46,55,53,50,56,54,54,44,50,57,46,51,50,52,53,48,51,93,44,91,45,57,53,46,56,52,55,54,53,54,44,50,57,46,50,54,50,53,57,93,44,91,45,57,53,46,56,55,52,48,50,56,44,50,57,46,50,50,57,55,48,50,93,44,91,45,57,53,46,56,52,49,52,57,57,44,50,57,46,48,57,56,54,50,93,44,91,45,57,53,46,55,54,52,57,51,55,44,50,56,46,57,54,55,51,53,57,93,44,91,45,57,53,46,54,53,53,51,57,56,44,50,56,46,57,53,49,55,49,49,93,44,91,45,57,53,46,52,57,53,54,53,44,50,56,46,55,54,52,56,51,55,93,44,91,45,57,53,46,51,53,51,52,55,49,44,50,56,46,56,49,55,56,54,51,93,44,91,45,57,53,46,48,57,52,51,51,54,44,50,57,46,48,51,50,50,52,93,44,91,45,57,53,46,48,57,49,54,50,50,44,50,57,46,48,54,50,55,51,57,93,44,91,45,57,53,46,48,53,54,53,55,53,44,50,57,46,49,57,57,56,53,54,93,44,91,45,57,53,46,50,51,51,48,56,49,44,50,57,46,52,54,53,53,54,54,93,44,91,45,57,53,46,50,49,54,52,50,50,44,50,57,46,53,53,54,48,56,93,44,91,45,57,53,46,50,54,49,52,54,53,44,50,57,46,53,57,51,48,52,52,93,44,91,45,57,53,46,52,50,52,49,49,56,44,50,57,46,53,56,48,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,57,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,57,48,34,44,34,78,65,77,69,34,58,34,83,116,97,117,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,53,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,55,55,53,54,49,44,51,56,46,49,50,54,52,54,93,44,91,45,55,57,46,48,50,48,51,48,56,44,51,56,46,49,52,51,55,50,53,93,44,91,45,55,57,46,48,51,51,55,56,57,44,51,56,46,49,57,57,48,49,56,93,44,91,45,55,57,46,48,57,51,55,57,49,44,51,56,46,49,56,54,50,56,55,93,44,91,45,55,57,46,48,55,55,53,54,49,44,51,56,46,49,50,54,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,104,97,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,52,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,51,52,53,51,54,53,44,52,48,46,54,57,56,48,57,51,93,44,91,45,49,48,50,46,48,53,49,52,53,55,44,52,48,46,54,57,55,53,51,57,93,44,91,45,49,48,50,46,48,53,49,52,54,53,44,52,48,46,52,52,48,48,48,56,93,44,91,45,49,48,50,46,48,53,49,53,56,54,44,52,48,46,51,52,57,50,49,51,93,44,91,45,49,48,49,46,51,52,50,55,56,56,44,52,48,46,51,53,48,52,52,52,93,44,91,45,49,48,49,46,51,52,53,51,54,53,44,52,48,46,54,57,56,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,50,48,51,52,44,34,98,101,100,115,34,58,50,51,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,56,53,51,54,55,44,51,57,46,57,49,56,52,57,49,93,44,91,45,56,52,46,52,55,57,50,49,51,44,51,57,46,53,57,49,48,50,52,93,44,91,45,56,52,46,51,54,53,50,51,50,44,51,57,46,53,56,57,52,57,51,93,44,91,45,56,52,46,49,49,52,49,57,53,44,51,57,46,53,55,55,57,56,51,93,44,91,45,56,52,46,48,57,50,57,51,56,44,51,57,46,56,51,56,51,52,53,93,44,91,45,56,52,46,48,53,51,55,51,54,44,51,57,46,56,53,48,52,53,56,93,44,91,45,56,52,46,48,53,49,48,49,50,44,51,57,46,56,55,57,56,49,93,44,91,45,56,52,46,49,53,55,54,55,49,44,51,57,46,57,50,50,57,55,93,44,91,45,56,52,46,52,50,53,57,48,50,44,51,57,46,57,49,57,54,50,50,93,44,91,45,56,52,46,52,56,53,51,54,55,44,51,57,46,57,49,56,52,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,52,55,34,44,34,78,65,77,69,34,58,34,84,104,114,111,99,107,109,111,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,55,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,55,49,50,53,56,44,51,50,46,57,53,55,48,50,53,93,44,91,45,57,57,46,48,57,54,48,49,54,44,51,50,46,57,53,55,48,51,55,93,44,91,45,57,56,46,57,53,48,56,55,53,44,51,50,46,57,53,54,57,49,56,93,44,91,45,57,56,46,57,53,51,57,51,56,44,51,51,46,51,57,55,53,51,52,93,44,91,45,57,57,46,52,55,50,52,52,52,44,51,51,46,51,57,57,48,50,51,93,44,91,45,57,57,46,52,55,49,50,53,56,44,51,50,46,57,53,55,48,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,49,34,44,34,78,65,77,69,34,58,34,79,103,108,101,116,104,111,114,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,55,54,50,57,52,44,51,52,46,48,52,51,50,49,57,93,44,91,45,56,51,46,49,50,54,50,50,57,44,51,52,46,48,52,54,50,49,51,93,44,91,45,56,51,46,50,53,56,52,49,51,44,51,51,46,57,57,57,48,57,56,93,44,91,45,56,51,46,50,55,53,57,51,51,44,51,51,46,56,52,55,57,55,55,93,44,91,45,56,51,46,50,56,48,51,52,44,51,51,46,55,54,49,55,55,52,93,44,91,45,56,51,46,49,49,56,55,50,57,44,51,51,46,54,57,56,56,49,56,93,44,91,45,56,50,46,57,57,53,54,48,50,44,51,51,46,54,57,51,53,56,51,93,44,91,45,56,50,46,57,52,57,48,52,54,44,51,51,46,55,51,51,51,51,51,93,44,91,45,56,50,46,57,56,55,50,56,54,44,51,51,46,55,56,48,55,49,93,44,91,45,56,50,46,56,52,54,54,56,54,44,51,51,46,57,52,48,54,51,57,93,44,91,45,56,50,46,55,55,57,53,48,54,44,51,51,46,57,55,49,49,50,52,93,44,91,45,56,50,46,57,55,54,50,57,52,44,51,52,46,48,52,51,50,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,110,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,48,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,53,48,54,50,52,44,51,53,46,52,54,50,57,53,93,44,91,45,57,50,46,56,53,53,44,51,53,46,49,55,50,55,55,55,93,44,91,45,57,50,46,56,57,54,49,48,57,44,51,53,46,49,55,48,54,55,56,93,44,91,45,57,51,46,48,52,48,53,50,53,44,51,53,46,48,55,54,57,50,51,93,44,91,45,57,50,46,55,49,54,51,51,49,44,51,53,46,48,55,49,55,52,50,93,44,91,45,57,50,46,53,53,52,54,56,53,44,51,53,46,49,49,51,50,55,55,93,44,91,45,57,50,46,52,57,57,57,56,53,44,51,53,46,49,54,57,53,55,53,93,44,91,45,57,50,46,52,56,49,52,54,57,44,51,53,46,51,54,56,51,57,50,93,44,91,45,57,50,46,52,55,57,50,54,56,44,51,53,46,52,53,53,51,53,55,93,44,91,45,57,50,46,56,53,48,54,50,52,44,51,53,46,52,54,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,78,111,100,97,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,52,55,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,50,48,50,50,54,53,44,52,48,46,53,55,56,52,56,56,93,44,91,45,57,53,46,49,56,48,54,49,52,44,52,48,46,50,54,49,55,48,54,93,44,91,45,57,53,46,48,55,49,55,48,51,44,52,48,46,50,54,48,56,53,57,93,44,91,45,57,53,46,48,52,51,48,56,44,52,48,46,49,51,48,48,57,54,93,44,91,45,57,52,46,54,48,53,57,52,50,44,52,48,46,49,50,54,49,50,55,93,44,91,45,57,52,46,53,57,56,52,56,55,44,52,48,46,51,56,54,55,49,52,93,44,91,45,57,52,46,54,51,50,48,51,44,52,48,46,53,55,49,51,54,55,93,44,91,45,57,52,46,57,49,52,56,57,54,44,52,48,46,53,55,53,48,54,56,93,44,91,45,57,53,46,50,48,50,50,54,53,44,52,48,46,53,55,56,52,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,82,97,110,115,111,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,54,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,51,51,56,54,50,44,52,54,46,54,51,48,55,50,55,93,44,91,45,57,56,46,48,51,52,53,53,54,44,52,54,46,50,56,50,54,53,55,93,44,91,45,57,56,46,48,48,54,55,49,53,44,52,54,46,50,56,50,54,50,54,93,44,91,45,57,55,46,50,56,48,53,54,54,44,52,54,46,50,56,50,51,57,51,93,44,91,45,57,55,46,50,55,57,57,52,56,44,52,54,46,54,50,57,51,52,56,93,44,91,45,57,55,46,54,56,50,48,48,54,44,52,54,46,54,50,57,57,50,56,93,44,91,45,57,56,46,48,51,51,56,54,50,44,52,54,46,54,51,48,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,55,56,54,44,34,98,101,100,115,34,58,51,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,54,55,51,49,56,44,52,51,46,56,50,53,57,48,50,93,44,91,45,56,52,46,49,54,56,49,50,55,44,52,51,46,53,54,56,56,57,57,93,44,91,45,56,52,46,48,53,48,57,56,55,44,52,51,46,53,50,52,48,54,52,93,44,91,45,56,51,46,56,49,55,50,50,56,44,52,51,46,53,50,50,51,52,53,93,44,91,45,56,51,46,54,57,56,56,49,54,44,52,51,46,52,55,56,57,53,55,93,44,91,45,56,51,46,55,48,56,51,49,55,44,52,51,46,56,50,56,55,50,49,93,44,91,45,56,51,46,55,48,56,53,50,53,44,52,51,46,56,51,51,57,52,56,93,44,91,45,56,51,46,57,48,55,54,48,56,44,52,51,46,57,49,48,52,49,53,93,44,91,45,56,52,46,48,52,52,56,52,51,44,52,51,46,57,49,49,49,52,54,93,44,91,45,56,52,46,49,54,54,51,55,55,44,52,51,46,57,57,54,57,48,49,93,44,91,45,56,52,46,49,54,55,51,49,56,44,52,51,46,56,50,53,57,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,55,48,48,53,44,34,98,101,100,115,34,58,52,48,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,55,52,57,57,50,44,51,53,46,51,56,52,49,53,50,93,44,91,45,57,48,46,49,53,50,48,57,52,44,51,53,46,50,53,53,57,56,57,93,44,91,45,57,48,46,48,54,54,53,57,49,44,51,53,46,49,51,53,57,57,93,44,91,45,57,48,46,49,55,51,54,48,51,44,51,53,46,49,49,56,48,55,51,93,44,91,45,57,48,46,50,48,57,51,57,55,44,51,53,46,48,50,54,53,52,54,93,44,91,45,57,48,46,51,48,57,50,56,57,44,51,52,46,57,57,53,54,57,52,93,44,91,45,56,57,46,55,50,52,51,50,52,44,51,52,46,57,57,52,55,57,93,44,91,45,56,57,46,54,52,52,48,53,44,51,52,46,57,57,53,50,57,49,93,44,91,45,56,57,46,54,51,50,55,55,54,44,51,53,46,51,55,53,56,50,52,93,44,91,45,57,48,46,48,52,49,53,54,51,44,51,53,46,51,57,54,54,50,93,44,91,45,57,48,46,48,53,52,51,50,50,44,51,53,46,51,56,57,50,55,55,93,44,91,45,57,48,46,48,55,52,57,57,50,44,51,53,46,51,56,52,49,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,117,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,48,55,53,44,34,98,101,100,115,34,58,52,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,48,52,54,52,55,49,44,51,57,46,55,57,55,54,52,56,93,44,91,45,49,50,49,46,57,55,52,55,57,52,44,51,57,46,54,55,53,52,56,55,93,44,91,45,49,50,49,46,57,57,52,48,50,49,44,51,57,46,53,51,51,57,50,54,93,44,91,45,49,50,49,46,56,53,54,53,51,50,44,51,57,46,53,51,54,57,48,52,93,44,91,45,49,50,49,46,56,57,48,48,49,51,44,51,57,46,51,56,51,56,54,52,93,44,91,45,49,50,49,46,57,48,56,50,54,57,44,51,57,46,51,48,51,56,55,56,93,44,91,45,49,50,49,46,54,50,51,55,54,44,51,57,46,50,57,53,54,50,49,93,44,91,45,49,50,49,46,52,48,55,53,50,55,44,51,57,46,51,51,57,55,53,52,93,44,91,45,49,50,49,46,51,48,53,49,50,50,44,51,57,46,53,49,57,53,56,53,93,44,91,45,49,50,49,46,49,52,57,57,48,55,44,51,57,46,53,50,54,52,52,54,93,44,91,45,49,50,49,46,48,55,54,54,57,53,44,51,57,46,53,57,55,50,54,52,93,44,91,45,49,50,49,46,49,51,54,55,49,53,44,51,57,46,54,50,56,49,54,57,93,44,91,45,49,50,49,46,51,54,49,50,48,54,44,51,57,46,56,53,53,52,55,51,93,44,91,45,49,50,49,46,52,51,54,56,56,54,44,52,48,46,49,53,49,57,48,53,93,44,91,45,49,50,49,46,53,56,54,52,48,55,44,52,48,46,49,48,48,53,50,50,93,44,91,45,49,50,49,46,54,52,54,48,51,50,44,51,57,46,57,56,50,53,50,55,93,44,91,45,49,50,49,46,56,48,52,48,52,49,44,51,57,46,56,56,52,51,52,52,93,44,91,45,49,50,50,46,48,52,52,56,54,53,44,51,57,46,56,56,51,55,55,49,93,44,91,45,49,50,50,46,48,52,54,52,55,49,44,51,57,46,55,57,55,54,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,80,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,49,50,57,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,53,51,56,55,49,44,52,54,46,49,53,56,49,50,93,44,91,45,57,51,46,48,53,53,48,56,49,44,52,53,46,57,56,49,50,51,51,93,44,91,45,57,51,46,49,52,50,56,54,57,44,52,53,46,57,56,49,48,48,53,93,44,91,45,57,51,46,49,52,49,55,57,51,44,52,53,46,55,51,48,54,53,55,93,44,91,45,57,50,46,56,52,49,48,53,49,44,52,53,46,55,51,48,48,50,52,93,44,91,45,57,50,46,55,49,50,53,48,51,44,52,53,46,56,57,49,55,48,53,93,44,91,45,57,50,46,51,53,48,52,48,55,44,52,54,46,48,49,54,51,54,56,93,44,91,45,57,50,46,50,57,51,55,48,53,44,52,54,46,49,53,55,51,50,49,93,44,91,45,57,50,46,50,57,50,56,54,44,52,54,46,52,49,55,50,50,93,44,91,45,57,51,46,48,53,52,56,52,55,44,52,54,46,52,49,57,50,54,57,93,44,91,45,57,51,46,48,53,51,56,55,49,44,52,54,46,49,53,56,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,97,115,116,114,111,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,53,55,55,44,34,98,101,100,115,34,58,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,57,53,51,57,44,51,48,46,52,49,57,53,54,51,93,44,91,45,57,55,46,52,57,50,52,56,50,44,51,48,46,50,49,48,48,49,49,93,44,91,45,57,55,46,54,52,57,51,55,44,51,48,46,48,54,55,57,52,52,93,44,91,45,57,55,46,51,49,53,56,50,51,44,50,57,46,55,56,54,53,52,49,93,44,91,45,57,55,46,48,50,52,52,54,49,44,51,48,46,48,53,49,52,51,53,93,44,91,45,57,55,46,48,56,49,56,51,52,44,51,48,46,50,53,57,51,53,55,93,44,91,45,57,55,46,51,51,52,52,54,51,44,51,48,46,52,48,50,56,52,51,93,44,91,45,57,55,46,51,54,57,53,51,57,44,51,48,46,52,49,57,53,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,75,108,105,99,107,105,116,97,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,57,54,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,56,54,53,56,50,57,44,52,54,46,48,52,48,56,53,56,93,44,91,45,49,50,48,46,56,48,49,50,57,53,44,52,54,46,48,52,49,48,49,52,93,44,91,45,49,50,49,46,53,50,50,51,50,49,44,52,54,46,48,52,52,48,48,54,93,44,91,45,49,50,49,46,54,49,50,50,51,50,44,52,54,46,48,52,52,48,57,51,93,44,91,45,49,50,49,46,54,48,57,50,52,54,44,52,53,46,55,56,50,53,49,57,93,44,91,45,49,50,49,46,53,50,51,54,56,49,44,52,53,46,55,50,52,57,51,93,44,91,45,49,50,49,46,52,52,49,50,50,57,44,52,53,46,54,57,55,50,56,93,44,91,45,49,50,49,46,51,51,55,55,49,50,44,52,53,46,55,48,52,56,51,57,93,44,91,45,49,50,49,46,48,56,52,56,54,51,44,52,53,46,54,52,55,57,51,50,93,44,91,45,49,50,48,46,57,49,53,56,53,44,52,53,46,54,52,49,50,93,44,91,45,49,50,48,46,54,53,51,53,48,51,44,52,53,46,55,51,55,49,56,49,93,44,91,45,49,50,48,46,53,48,53,55,52,51,44,52,53,46,54,57,57,57,52,57,93,44,91,45,49,50,48,46,50,49,48,55,55,52,44,52,53,46,55,50,53,57,49,53,93,44,91,45,49,49,57,46,57,57,57,53,48,49,44,52,53,46,56,49,50,53,49,55,93,44,91,45,49,49,57,46,56,54,56,51,49,50,44,52,53,46,56,51,54,49,57,56,93,44,91,45,49,49,57,46,56,54,53,56,50,57,44,52,54,46,48,52,48,56,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,117,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,55,51,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,48,48,56,52,56,53,44,52,56,46,56,51,49,50,49,56,93,44,91,45,49,50,51,46,48,48,56,52,56,54,44,52,56,46,55,54,55,48,57,57,93,44,91,45,49,50,51,46,50,54,55,56,55,55,44,52,56,46,54,57,51,57,57,51,93,44,91,45,49,50,51,46,50,49,56,57,50,57,44,52,56,46,53,52,56,55,48,56,93,44,91,45,49,50,51,46,49,49,53,49,51,56,44,52,56,46,52,50,50,56,51,93,44,91,45,49,50,51,46,50,52,55,57,49,57,44,52,56,46,50,56,52,53,53,56,93,44,91,45,49,50,50,46,57,53,50,51,56,54,44,52,56,46,51,52,57,55,48,54,93,44,91,45,49,50,50,46,56,54,51,48,55,56,44,52,56,46,51,55,48,51,54,49,93,44,91,45,49,50,50,46,55,51,53,50,51,49,44,52,56,46,52,48,53,57,51,50,93,44,91,45,49,50,50,46,55,54,52,52,48,52,44,52,56,46,54,48,48,53,55,55,93,44,91,45,49,50,50,46,55,49,51,55,48,52,44,52,56,46,54,52,53,49,51,93,44,91,45,49,50,50,46,56,49,50,51,52,44,52,56,46,55,55,49,56,53,93,44,91,45,49,50,51,46,48,48,56,52,56,53,44,52,56,46,56,51,49,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,57,55,56,54,44,34,98,101,100,115,34,58,49,50,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,52,53,50,48,52,44,52,52,46,53,56,52,55,52,54,93,44,91,45,56,56,46,49,57,48,52,54,53,44,52,52,46,53,56,54,55,57,57,93,44,91,45,56,56,46,49,57,50,54,49,49,44,52,52,46,50,52,49,57,52,55,93,44,91,45,56,56,46,48,52,51,50,52,44,52,52,46,50,52,49,48,49,56,93,44,91,45,56,55,46,56,56,56,48,56,55,44,52,52,46,50,52,48,52,54,49,93,44,91,45,56,55,46,55,54,54,48,50,54,44,52,52,46,51,50,55,49,56,52,93,44,91,45,56,55,46,55,53,56,48,52,56,44,52,52,46,54,55,55,48,53,52,93,44,91,45,56,55,46,55,54,50,51,51,57,44,52,52,46,54,55,55,48,49,53,93,44,91,45,56,56,46,50,52,50,54,56,55,44,52,52,46,54,55,57,54,51,49,93,44,91,45,56,56,46,50,52,53,50,48,52,44,52,52,46,53,56,52,55,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,53,34,44,34,78,65,77,69,34,58,34,87,105,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,56,48,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,54,48,56,55,54,44,51,55,46,55,51,52,51,48,52,93,44,91,45,57,53,46,57,54,49,48,48,50,44,51,55,46,54,48,51,55,54,49,93,44,91,45,57,53,46,57,54,49,54,48,53,44,51,55,46,51,56,54,54,51,54,93,44,91,45,57,53,46,53,50,53,53,54,44,51,55,46,51,56,51,57,55,57,93,44,91,45,57,53,46,53,50,53,52,57,57,44,51,55,46,55,51,50,55,53,57,93,44,91,45,57,53,46,57,54,48,56,55,54,44,51,55,46,55,51,52,51,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,78,97,116,99,104,105,116,111,99,104,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,57,54,51,44,34,98,101,100,115,34,58,49,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,52,49,49,55,49,44,51,49,46,56,52,53,50,51,51,93,44,91,45,57,51,46,52,52,49,55,52,51,44,51,49,46,55,49,52,52,56,53,93,44,91,45,57,51,46,51,51,56,57,55,50,44,51,49,46,55,49,52,50,53,57,93,44,91,45,57,51,46,51,51,55,52,53,54,44,51,49,46,53,51,56,49,49,93,44,91,45,57,51,46,50,51,54,54,54,50,44,51,49,46,53,51,56,51,51,57,93,44,91,45,57,51,46,50,51,54,49,48,52,44,51,49,46,51,54,52,53,48,55,93,44,91,45,57,50,46,57,56,49,52,54,52,44,51,49,46,51,52,54,54,52,52,93,44,91,45,57,50,46,57,49,51,48,49,57,44,51,49,46,51,54,56,50,51,54,93,44,91,45,57,50,46,55,49,56,57,56,51,44,51,49,46,53,49,55,53,57,52,93,44,91,45,57,50,46,56,48,54,50,48,54,44,51,49,46,53,57,56,53,52,56,93,44,91,45,57,50,46,57,48,56,51,49,51,44,51,49,46,54,50,53,49,54,57,93,44,91,45,57,50,46,57,55,51,53,50,57,44,51,49,46,55,48,56,57,50,50,93,44,91,45,57,50,46,57,52,50,50,52,53,44,51,49,46,56,53,52,50,54,56,93,44,91,45,57,50,46,56,56,50,57,57,56,44,51,49,46,57,51,57,57,55,93,44,91,45,57,50,46,57,51,57,48,56,44,51,50,46,49,52,55,57,52,50,93,44,91,45,57,51,46,49,56,55,49,54,50,44,51,50,46,49,52,56,52,49,50,93,44,91,45,57,51,46,49,51,54,49,50,55,44,51,50,46,48,53,54,50,50,52,93,44,91,45,57,51,46,50,51,56,52,55,44,51,49,46,57,55,50,55,56,49,93,44,91,45,57,51,46,51,53,53,52,53,50,44,51,49,46,57,51,50,50,50,50,93,44,91,45,57,51,46,52,52,49,49,55,49,44,51,49,46,56,52,53,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,84,101,114,114,101,98,111,110,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,53,56,55,44,34,98,101,100,115,34,58,53,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,48,57,51,56,44,50,56,46,57,57,53,51,52,93,44,91,45,57,48,46,52,48,57,52,49,51,44,50,57,46,50,51,57,55,51,56,93,44,91,45,57,48,46,51,56,53,53,51,57,44,50,57,46,51,54,55,55,52,57,93,44,91,45,57,48,46,54,49,57,51,48,57,44,50,57,46,53,57,56,48,57,50,93,44,91,45,57,48,46,55,54,54,56,52,57,44,50,57,46,54,57,53,52,55,55,93,44,91,45,57,49,46,48,48,54,55,52,51,44,50,57,46,55,49,52,55,55,49,93,44,91,45,57,49,46,48,56,50,54,48,50,44,50,57,46,54,50,54,51,54,56,93,44,91,45,57,49,46,50,54,48,54,54,49,44,50,57,46,53,52,52,53,49,93,44,91,45,57,49,46,50,49,50,49,53,55,44,50,57,46,52,50,51,52,50,57,93,44,91,45,57,49,46,51,53,52,50,55,50,44,50,57,46,50,51,57,54,48,54,93,44,91,45,57,49,46,50,57,50,54,56,49,44,50,57,46,49,57,54,49,55,55,93,44,91,45,57,49,46,48,48,54,48,53,52,44,50,57,46,49,49,57,57,57,52,93,44,91,45,57,49,46,48,48,56,55,53,57,44,50,57,46,48,50,54,57,48,50,93,44,91,45,57,48,46,57,48,55,48,56,44,50,56,46,57,57,49,49,51,50,93,44,91,45,57,48,46,55,50,48,55,54,53,44,50,56,46,57,57,50,54,51,93,44,91,45,57,48,46,53,53,50,53,52,55,44,50,57,46,48,51,54,56,48,54,93,44,91,45,57,48,46,52,48,57,51,56,44,50,56,46,57,57,53,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,73,114,119,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,54,56,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,48,48,55,48,50,44,51,49,46,53,57,51,57,57,93,44,91,45,56,51,46,51,51,56,55,50,56,44,51,49,46,52,55,53,57,57,49,93,44,91,45,56,51,46,49,52,53,53,56,55,44,51,49,46,52,55,50,50,55,54,93,44,91,45,56,50,46,57,57,56,51,54,44,51,49,46,54,55,51,49,54,52,93,44,91,45,56,51,46,51,50,53,54,49,55,44,51,49,46,54,56,48,54,48,51,93,44,91,45,56,51,46,51,50,53,50,57,54,44,51,49,46,55,53,54,53,56,52,93,44,91,45,56,51,46,52,53,51,54,51,52,44,51,49,46,55,53,55,56,54,49,93,44,91,45,56,51,46,53,48,48,55,48,50,44,51,49,46,53,57,51,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,32,83,108,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,57,55,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,49,46,48,48,50,54,57,52,44,54,56,46,52,57,56,51,54,52,93,44,91,45,49,52,49,46,48,48,50,55,56,50,44,54,57,46,55,48,51,54,52,56,93,44,91,45,49,52,49,46,51,55,55,56,57,54,44,54,57,46,55,52,52,49,52,55,93,44,91,45,49,52,49,46,53,57,49,52,53,51,44,54,57,46,56,49,52,53,56,50,93,44,91,45,49,52,50,46,48,55,57,48,56,55,44,54,57,46,57,48,56,53,48,50,93,44,91,45,49,52,50,46,55,48,54,50,57,53,44,55,48,46,48,56,56,49,57,54,93,44,91,45,49,52,51,46,50,50,54,52,51,51,44,55,48,46,50,48,49,57,57,56,93,44,91,45,49,52,51,46,57,52,48,53,56,53,44,55,48,46,49,54,57,54,56,53,93,44,91,45,49,52,52,46,53,50,57,49,48,52,44,55,48,46,48,55,57,48,54,49,93,44,91,45,49,52,52,46,54,56,49,52,54,56,44,55,48,46,48,49,53,55,55,51,93,44,91,45,49,52,53,46,48,54,52,57,56,51,44,55,48,46,48,56,55,54,49,49,93,44,91,45,49,52,53,46,50,55,57,51,54,44,55,48,46,48,56,56,57,53,57,93,44,91,45,49,52,53,46,57,56,49,55,56,49,44,55,48,46,50,52,50,51,48,55,93,44,91,45,49,52,54,46,51,55,55,57,49,56,44,55,48,46,50,56,51,55,53,93,44,91,45,49,52,54,46,55,48,56,57,54,51,44,55,48,46,50,56,50,52,51,93,44,91,45,49,52,55,46,51,55,50,53,49,56,44,55,48,46,52,51,48,53,51,57,93,44,91,45,49,52,55,46,55,55,57,52,51,54,44,55,48,46,52,55,49,56,54,57,93,44,91,45,49,52,56,46,48,48,51,53,48,50,44,55,48,46,53,52,53,53,55,57,93,44,91,45,49,52,56,46,52,50,49,51,48,53,44,55,48,46,53,51,50,56,54,52,93,44,91,45,49,52,56,46,53,49,53,52,55,57,44,55,48,46,52,55,55,52,55,53,93,44,91,45,49,52,57,46,48,57,48,52,55,54,44,55,48,46,53,54,53,52,50,93,44,91,45,49,52,57,46,54,55,57,56,55,53,44,55,48,46,54,50,49,52,57,53,93,44,91,45,49,53,48,46,51,52,53,50,52,44,55,48,46,53,53,51,50,51,50,93,44,91,45,49,53,48,46,55,57,53,49,53,50,44,55,48,46,53,52,56,51,53,57,93,44,91,45,49,53,49,46,51,49,52,57,55,55,44,55,48,46,52,54,51,52,50,54,93,44,91,45,49,53,49,46,53,52,56,56,57,49,44,55,48,46,52,57,49,48,56,53,93,44,91,45,49,53,49,46,54,49,50,55,52,44,55,48,46,53,57,51,54,48,52,93,44,91,45,49,53,50,46,49,53,49,56,53,49,44,55,48,46,56,55,53,49,51,49,93,44,91,45,49,53,50,46,53,48,57,55,53,55,44,55,48,46,57,51,52,55,50,54,93,44,91,45,49,53,51,46,50,55,52,51,49,44,55,48,46,57,55,48,57,53,55,93,44,91,45,49,53,51,46,56,57,57,49,55,53,44,55,48,46,57,51,54,50,49,56,93,44,91,45,49,53,52,46,52,51,55,54,55,53,44,55,49,46,48,50,51,53,53,50,93,44,91,45,49,53,52,46,56,50,49,51,49,55,44,55,49,46,49,53,56,57,54,49,93,44,91,45,49,53,53,46,52,53,56,56,54,53,44,55,49,46,50,54,56,53,57,93,44,91,45,49,53,53,46,55,53,54,50,49,53,44,55,49,46,50,56,51,51,56,49,93,44,91,45,49,53,53,46,57,50,54,52,50,56,44,55,49,46,51,53,55,54,56,53,93,44,91,45,49,53,54,46,52,48,48,54,50,54,44,55,49,46,52,51,53,52,48,55,93,44,91,45,49,53,54,46,53,56,50,50,53,50,44,55,49,46,52,50,55,54,55,49,93,44,91,45,49,53,54,46,57,52,48,56,51,44,55,49,46,51,49,49,50,48,52,93,44,91,45,49,53,55,46,53,51,50,52,50,50,44,55,49,46,48,48,55,53,53,52,93,44,91,45,49,53,56,46,49,55,49,52,54,51,44,55,48,46,56,55,49,48,52,55,93,44,91,45,49,53,56,46,53,53,50,55,50,51,44,55,48,46,57,48,50,56,50,56,93,44,91,45,49,53,56,46,55,51,51,57,57,56,44,55,48,46,57,54,51,49,49,57,93,44,91,45,49,53,57,46,50,51,56,52,52,44,55,48,46,57,50,48,50,56,49,93,44,91,45,49,53,57,46,55,53,53,52,54,55,44,55,48,46,56,51,48,53,50,54,93,44,91,45,49,54,48,46,52,49,52,50,49,55,44,55,48,46,53,54,49,50,57,56,93,44,91,45,49,54,48,46,57,48,55,56,54,49,44,55,48,46,52,49,53,55,52,50,93,44,91,45,49,54,49,46,51,49,53,49,51,52,44,55,48,46,51,52,55,50,53,54,93,44,91,45,49,54,49,46,57,52,56,54,53,55,44,55,48,46,51,55,52,55,52,50,93,44,91,45,49,54,50,46,52,54,53,50,50,49,44,55,48,46,50,49,55,50,52,51,93,44,91,45,49,54,50,46,56,49,56,56,49,55,44,54,57,46,57,57,57,48,50,56,93,44,91,45,49,54,51,46,49,51,51,53,54,49,44,54,57,46,56,51,56,55,48,50,93,44,91,45,49,54,51,46,50,56,55,55,55,50,44,54,57,46,54,51,50,51,56,52,93,44,91,45,49,54,51,46,50,56,57,53,56,57,44,54,57,46,52,51,48,51,53,55,93,44,91,45,49,54,51,46,51,56,48,53,56,57,44,54,57,46,51,50,48,50,49,57,93,44,91,45,49,54,51,46,54,53,48,55,57,56,44,54,57,46,49,54,56,54,57,50,93,44,91,45,49,54,52,46,48,50,48,51,54,53,44,54,57,46,48,51,51,49,53,93,44,91,45,49,54,52,46,50,55,57,51,55,57,44,54,56,46,57,55,57,54,49,55,93,44,91,45,49,54,53,46,51,53,55,48,52,56,44,54,56,46,57,48,56,57,51,57,93,44,91,45,49,54,54,46,50,48,48,49,53,49,44,54,56,46,57,51,51,56,50,51,93,44,91,45,49,54,54,46,51,52,55,52,50,56,44,54,56,46,57,48,48,51,56,54,93,44,91,45,49,54,54,46,51,54,55,54,54,52,44,54,56,46,53,55,52,57,57,52,93,44,91,45,49,54,54,46,53,48,50,56,55,50,44,54,56,46,52,53,54,49,48,57,93,44,91,45,49,54,54,46,56,52,57,57,56,49,44,54,56,46,52,48,49,54,52,52,93,44,91,45,49,54,54,46,57,52,50,48,52,49,44,54,56,46,51,48,50,53,57,52,93,44,91,45,49,54,54,46,54,53,49,57,56,51,44,54,56,46,50,56,56,51,49,56,93,44,91,45,49,54,54,46,50,56,53,51,44,54,56,46,50,50,52,51,54,55,93,44,91,45,49,54,53,46,57,54,54,48,52,50,44,54,56,46,48,55,50,52,57,50,93,44,91,45,49,54,53,46,53,57,54,48,52,54,44,54,56,46,48,51,52,55,50,55,93,44,91,45,49,54,52,46,52,57,57,52,51,55,44,54,56,46,48,51,52,55,52,56,93,44,91,45,49,54,52,46,52,57,57,52,54,51,44,54,56,46,50,48,55,56,57,93,44,91,45,49,54,50,46,55,50,50,49,57,44,54,56,46,50,48,55,57,50,54,93,44,91,45,49,54,50,46,55,50,50,50,48,50,44,54,56,46,50,57,52,52,57,54,93,44,91,45,49,54,50,46,48,50,51,50,55,51,44,54,56,46,50,57,52,53,49,49,93,44,91,45,49,54,50,46,48,50,51,50,54,49,44,54,56,46,50,48,55,57,52,93,44,91,45,49,54,49,46,53,53,55,51,50,56,44,54,56,46,50,48,55,57,52,57,93,44,91,45,49,54,49,46,53,53,55,51,50,44,54,56,46,50,57,52,53,50,49,93,44,91,45,49,54,49,46,48,57,49,51,54,52,44,54,56,46,50,57,52,53,51,50,93,44,91,45,49,54,49,46,48,57,49,51,53,49,44,54,56,46,50,48,55,57,54,49,93,44,91,45,49,54,48,46,49,53,57,52,52,44,54,56,46,50,48,55,57,56,50,93,44,91,45,49,54,48,46,49,53,57,52,53,50,44,54,56,46,50,57,52,53,53,51,93,44,91,45,49,53,57,46,54,57,51,52,56,55,44,54,56,46,50,57,52,53,54,52,93,44,91,45,49,53,57,46,54,57,51,52,55,55,44,54,56,46,50,48,55,57,57,50,93,44,91,45,49,53,56,46,52,53,55,56,51,54,44,54,56,46,50,48,56,48,49,54,93,44,91,45,49,53,55,46,49,53,52,57,50,52,44,54,56,46,50,48,56,48,53,52,93,44,91,45,49,53,55,46,49,53,52,57,49,44,54,56,46,49,50,49,52,56,51,93,44,91,45,49,53,54,46,50,51,54,56,51,49,44,54,56,46,49,50,49,52,57,56,93,44,91,45,49,53,54,46,50,51,54,56,49,55,44,54,56,46,48,51,52,57,50,54,93,44,91,45,49,53,53,46,51,49,56,55,52,56,44,54,56,46,48,51,52,57,52,50,93,44,91,45,49,53,53,46,51,49,56,55,52,52,44,54,56,46,48,48,48,48,51,50,93,44,91,45,49,53,51,46,52,48,52,49,53,50,44,54,56,93,44,91,45,49,53,49,46,57,48,48,50,55,54,44,54,56,46,48,48,48,48,48,55,93,44,91,45,49,53,48,46,56,57,48,48,50,56,44,54,56,46,48,48,48,48,48,52,93,44,91,45,49,52,57,46,51,50,53,52,51,44,54,55,46,57,57,57,57,57,57,93,44,91,45,49,52,55,46,55,53,51,49,49,55,44,54,55,46,57,57,57,57,56,56,93,44,91,45,49,52,54,44,54,56,93,44,91,45,49,52,54,44,54,56,46,53,93,44,91,45,49,52,51,46,53,50,56,56,50,51,44,54,56,46,53,48,48,48,50,49,93,44,91,45,49,52,49,46,48,48,50,54,57,52,44,54,56,46,52,57,56,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,114,101,110,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,54,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,51,57,55,55,44,52,52,46,49,54,49,55,56,54,93,44,91,45,56,52,46,49,54,54,49,48,55,44,52,52,46,49,54,49,55,56,56,93,44,91,45,56,52,46,49,54,54,51,55,55,44,52,51,46,57,57,54,57,48,49,93,44,91,45,56,52,46,48,52,52,56,52,51,44,52,51,46,57,49,49,49,52,54,93,44,91,45,56,51,46,57,48,55,54,48,56,44,52,51,46,57,49,48,52,49,53,93,44,91,45,56,51,46,55,48,56,53,50,53,44,52,51,46,56,51,51,57,52,56,93,44,91,45,56,51,46,49,56,53,50,56,44,52,52,46,49,54,56,52,48,52,93,44,91,45,56,51,46,56,56,51,57,55,55,44,52,52,46,49,54,49,55,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,53,52,49,44,34,98,101,100,115,34,58,49,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,49,56,55,56,55,44,52,48,46,56,49,51,53,52,52,93,44,91,45,57,49,46,55,49,54,55,54,57,44,52,48,46,53,57,56,53,51,93,44,91,45,57,49,46,52,56,51,49,53,51,44,52,48,46,51,56,50,52,57,50,93,44,91,45,57,49,46,52,49,57,52,50,50,44,52,48,46,51,55,56,50,54,52,93,44,91,45,57,49,46,51,55,53,55,49,50,44,52,48,46,51,57,49,57,50,53,93,44,91,45,57,49,46,51,53,57,56,55,51,44,52,48,46,54,48,49,56,48,53,93,44,91,45,57,49,46,49,56,53,50,57,53,44,52,48,46,54,51,55,56,48,51,93,44,91,45,57,49,46,49,49,50,52,54,55,44,52,48,46,54,57,54,51,48,49,93,44,91,45,57,49,46,52,48,57,52,53,51,44,52,48,46,56,49,50,57,48,53,93,44,91,45,57,49,46,55,49,56,55,56,55,44,52,48,46,56,49,51,53,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,79,115,98,111,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,48,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,52,52,51,57,56,44,51,57,46,53,54,56,48,51,53,93,44,91,45,57,57,46,48,52,55,54,56,55,44,51,57,46,49,51,51,48,49,52,93,44,91,45,57,57,46,48,51,55,53,44,51,57,46,49,51,51,49,50,49,93,44,91,45,57,56,46,52,56,57,57,57,55,44,51,57,46,49,51,50,54,57,55,93,44,91,45,57,56,46,52,57,48,49,52,57,44,51,57,46,50,49,57,55,56,93,44,91,45,57,56,46,52,56,55,51,56,52,44,51,57,46,53,54,55,52,57,50,93,44,91,45,57,56,46,53,48,53,50,54,54,44,51,57,46,53,54,55,54,48,51,93,44,91,45,57,57,46,48,52,52,51,57,56,44,51,57,46,53,54,56,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,69,109,109,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,48,51,57,44,34,98,101,100,115,34,58,50,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,51,57,54,49,56,44,52,53,46,56,55,48,55,52,93,44,91,45,56,53,46,50,50,49,51,57,52,44,52,53,46,55,56,50,56,52,51,93,44,91,45,56,53,46,51,48,55,53,56,52,44,52,53,46,54,50,53,48,48,54,93,44,91,45,56,53,46,50,56,51,50,51,56,44,52,53,46,53,53,48,50,48,57,93,44,91,45,56,52,46,57,54,52,55,56,55,44,52,53,46,50,57,49,54,48,49,93,44,91,45,56,52,46,55,51,50,54,56,55,44,52,53,46,50,56,57,51,56,50,93,44,91,45,56,52,46,55,51,50,53,57,53,44,52,53,46,56,49,48,51,51,93,44,91,45,56,53,46,50,51,57,54,49,56,44,52,53,46,56,55,48,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,70,114,101,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,49,51,52,54,53,44,52,48,46,57,48,49,54,57,51,93,44,91,45,57,53,46,56,51,52,49,50,44,52,48,46,55,56,51,55,56,51,93,44,91,45,57,53,46,56,56,49,53,50,57,44,52,48,46,55,53,48,54,49,49,93,44,91,45,57,53,46,55,54,53,54,52,53,44,52,48,46,53,56,53,50,48,56,93,44,91,45,57,53,46,51,55,51,57,50,51,44,52,48,46,53,56,48,53,48,51,93,44,91,45,57,53,46,51,56,52,57,54,52,44,52,48,46,57,48,49,53,53,93,44,91,45,57,53,46,56,49,51,52,54,53,44,52,48,46,57,48,49,54,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,48,54,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,57,46,53,48,54,51,56,50,44,52,52,46,51,52,50,56,55,93,44,91,45,54,57,46,54,53,48,49,55,49,44,52,52,46,50,55,57,54,50,53,93,44,91,45,54,57,46,54,53,54,55,52,50,44,52,52,46,49,50,50,51,57,50,93,44,91,45,54,57,46,55,53,56,50,48,56,44,52,52,46,49,51,57,51,51,52,93,44,91,45,54,57,46,56,49,51,53,52,57,44,52,52,46,48,50,54,48,49,49,93,44,91,45,54,57,46,55,48,48,48,57,55,44,52,52,46,48,48,54,54,56,53,93,44,91,45,54,57,46,54,54,52,55,52,53,44,52,51,46,55,49,49,55,52,56,93,44,91,45,54,57,46,53,48,49,54,49,55,44,52,51,46,55,55,57,54,56,54,93,44,91,45,54,57,46,50,57,55,56,53,53,44,52,51,46,55,48,55,54,57,52,93,44,91,45,54,57,46,50,51,51,52,56,44,52,51,46,55,55,56,48,48,50,93,44,91,45,54,57,46,51,57,55,55,51,56,44,52,51,46,56,55,49,56,57,93,44,91,45,54,57,46,51,54,51,57,57,54,44,52,52,46,48,49,50,56,55,51,93,44,91,45,54,57,46,50,56,50,48,50,55,44,52,52,46,48,54,52,53,50,51,93,44,91,45,54,57,46,52,48,57,54,51,53,44,52,52,46,51,50,55,57,57,56,93,44,91,45,54,57,46,53,48,54,51,56,50,44,52,52,46,51,52,50,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,83,101,110,101,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,54,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,54,51,57,50,54,44,52,51,46,48,49,51,49,53,55,93,44,91,45,55,54,46,57,55,49,51,57,50,44,52,50,46,55,54,52,50,50,51,93,44,91,45,55,54,46,56,57,53,51,52,57,44,52,50,46,54,53,54,50,53,53,93,44,91,45,55,54,46,56,57,53,53,57,54,44,52,50,46,53,52,49,53,51,55,93,44,91,45,55,54,46,54,57,54,54,53,53,44,52,50,46,53,52,54,55,57,93,44,91,45,55,54,46,54,54,54,53,52,51,44,52,50,46,54,50,51,52,53,55,93,44,91,45,55,54,46,55,51,51,52,53,52,44,52,50,46,55,50,55,56,57,53,93,44,91,45,55,54,46,55,49,51,56,48,54,44,52,51,46,48,50,52,48,51,53,93,44,91,45,55,54,46,57,54,51,57,50,54,44,52,51,46,48,49,51,49,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,76,97,117,114,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,49,56,48,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,56,57,48,55,54,44,51,55,46,49,53,49,55,52,93,44,91,45,56,52,46,51,53,56,48,50,52,44,51,54,46,57,53,57,52,93,44,91,45,56,52,46,50,57,55,52,49,54,44,51,54,46,57,52,53,57,51,49,93,44,91,45,56,52,46,48,57,49,56,53,51,44,51,54,46,57,53,53,57,57,50,93,44,91,45,56,51,46,57,53,57,51,56,53,44,51,54,46,57,55,55,49,50,56,93,44,91,45,56,51,46,56,55,49,51,49,53,44,51,55,46,48,53,52,57,49,57,93,44,91,45,56,51,46,57,54,56,57,57,44,51,55,46,49,55,52,55,57,52,93,44,91,45,56,51,46,57,52,51,55,49,56,44,51,55,46,50,53,48,53,53,49,93,44,91,45,56,52,46,49,51,55,56,57,56,44,51,55,46,51,49,57,55,53,57,93,44,91,45,56,52,46,50,49,54,50,52,49,44,51,55,46,50,56,48,50,53,54,93,44,91,45,56,52,46,50,56,57,48,55,54,44,51,55,46,49,53,49,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,101,105,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,50,51,56,53,51,44,51,53,46,55,53,50,56,57,54,93,44,91,45,56,52,46,55,56,50,51,54,54,44,51,53,46,53,57,52,55,57,57,93,44,91,45,56,52,46,57,49,53,48,52,57,44,51,53,46,52,52,48,55,55,49,93,44,91,45,56,53,46,48,49,54,51,52,51,44,51,53,46,52,48,57,50,56,56,93,44,91,45,56,52,46,57,52,54,51,51,57,44,51,53,46,50,56,55,55,49,55,93,44,91,45,56,52,46,56,54,48,49,54,52,44,51,53,46,51,53,48,48,55,52,93,44,91,45,56,52,46,56,48,53,53,52,52,44,51,53,46,52,52,56,53,55,49,93,44,91,45,56,52,46,54,49,57,56,54,53,44,51,53,46,54,52,52,54,53,49,93,44,91,45,56,52,46,55,50,51,56,53,51,44,51,53,46,55,53,50,56,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,51,34,44,34,78,65,77,69,34,58,34,84,97,110,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,55,50,48,44,34,98,101,100,115,34,58,49,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,48,52,51,53,57,44,51,54,46,56,49,54,56,54,54,93,44,91,45,57,51,46,51,49,53,51,51,50,44,51,54,46,52,57,56,49,52,93,44,91,45,57,51,46,50,57,51,52,54,55,44,51,54,46,52,57,56,50,55,54,93,44,91,45,57,50,46,56,53,52,48,52,57,44,51,54,46,52,57,55,56,52,50,93,44,91,45,57,50,46,55,55,50,51,52,51,44,51,54,46,52,57,55,54,54,50,93,44,91,45,57,50,46,55,54,52,56,54,57,44,51,54,46,56,48,54,48,57,55,93,44,91,45,57,50,46,57,48,57,51,51,54,44,51,54,46,56,48,57,49,55,56,93,44,91,45,57,51,46,51,48,52,51,53,57,44,51,54,46,56,49,54,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,57,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,44,91,45,56,52,46,48,48,51,51,54,51,44,51,50,46,53,50,57,57,50,55,93,44,91,45,56,52,46,49,48,52,57,54,54,44,51,50,46,54,55,51,51,56,53,93,44,91,45,56,52,46,50,48,50,54,50,56,44,51,50,46,54,57,48,48,49,56,93,44,91,45,56,52,46,50,56,54,50,52,54,44,51,50,46,55,52,55,54,50,54,93,44,91,45,56,52,46,52,52,52,51,53,51,44,51,50,46,53,54,50,48,56,51,93,44,91,45,56,52,46,51,57,50,51,49,54,44,51,50,46,52,49,52,48,52,54,93,44,91,45,56,52,46,51,54,51,50,49,54,44,51,50,46,51,57,55,54,52,57,93,44,91,45,56,52,46,50,53,52,54,49,51,44,51,50,46,51,55,50,48,53,51,93,44,91,45,56,52,46,49,50,50,51,52,55,44,51,50,46,53,48,53,57,50,49,93,44,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,93,93,44,91,91,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,44,91,45,56,52,46,48,49,56,49,52,55,44,51,50,46,53,48,54,52,48,54,93,44,91,45,56,52,46,48,48,56,52,57,44,51,50,46,53,50,49,55,54,57,93,44,91,45,56,52,46,48,53,51,51,49,44,51,50,46,53,50,50,48,50,49,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,56,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,56,51,48,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,56,56,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,50,55,56,53,57,44,51,55,46,51,48,53,57,50,55,93,44,91,45,55,54,46,55,52,49,48,49,55,44,51,55,46,50,54,53,57,56,52,93,44,91,45,55,54,46,54,56,48,49,53,49,44,51,55,46,50,54,53,57,57,55,93,44,91,45,55,54,46,55,50,55,56,53,57,44,51,55,46,51,48,53,57,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,49,53,34,44,34,78,65,77,69,34,58,34,83,99,117,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,51,56,54,54,44,51,50,46,57,55,48,50,50,53,93,44,91,45,49,48,49,46,49,55,51,51,55,56,44,51,50,46,57,54,51,53,57,55,93,44,91,45,49,48,49,46,49,55,52,53,54,50,44,51,50,46,53,50,55,55,48,51,93,44,91,45,49,48,48,46,54,54,48,54,50,54,44,51,50,46,53,50,53,51,49,50,93,44,91,45,49,48,48,46,54,53,53,56,55,44,51,50,46,57,54,51,52,54,57,93,44,91,45,49,48,49,46,48,51,56,54,54,44,51,50,46,57,55,48,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,71,105,108,112,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,54,55,53,55,57,56,44,51,57,46,57,51,50,52,52,53,93,44,91,45,49,48,53,46,54,57,48,51,52,56,44,51,57,46,56,53,49,57,57,54,93,44,91,45,49,48,53,46,53,51,57,51,57,51,44,51,57,46,55,55,50,51,49,93,44,91,45,49,48,53,46,51,57,55,57,52,57,44,51,57,46,55,52,54,48,52,93,44,91,45,49,48,53,46,51,57,55,56,52,57,44,51,57,46,57,49,50,56,56,54,93,44,91,45,49,48,53,46,54,55,53,55,57,56,44,51,57,46,57,51,50,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,99,67,108,97,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,54,51,52,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,55,49,52,49,52,44,51,53,46,51,51,53,57,52,54,93,44,91,45,57,55,46,54,54,56,48,57,57,44,51,52,46,56,53,53,49,54,52,93,44,91,45,57,54,46,57,51,50,52,51,54,44,51,52,46,56,53,52,52,57,54,93,44,91,45,57,54,46,57,51,48,53,56,54,44,51,52,46,57,54,52,51,54,52,93,44,91,45,57,55,46,48,49,53,57,51,44,51,52,46,57,48,55,51,52,56,93,44,91,45,57,55,46,49,52,50,51,52,57,44,51,52,46,57,50,56,49,55,54,93,44,91,45,57,55,46,51,52,49,53,48,57,44,51,52,46,57,54,52,48,48,49,93,44,91,45,57,55,46,51,53,52,49,57,50,44,51,53,46,48,55,54,54,53,54,93,44,91,45,57,55,46,53,53,52,55,57,44,51,53,46,50,50,52,51,50,57,93,44,91,45,57,55,46,53,53,54,57,56,55,44,51,53,46,50,56,56,52,52,93,44,91,45,57,55,46,54,55,49,52,49,53,44,51,53,46,51,51,55,52,54,53,93,44,91,45,57,55,46,54,55,49,52,49,52,44,51,53,46,51,51,53,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,80,101,110,100,108,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,54,52,57,48,55,53,44,51,56,46,53,57,49,53,49,53,93,44,91,45,55,57,46,53,51,54,56,55,44,51,56,46,53,53,48,57,49,55,93,44,91,45,55,57,46,52,55,54,54,51,56,44,51,56,46,52,53,55,50,50,56,93,44,91,45,55,57,46,51,49,50,50,55,54,44,51,56,46,52,49,49,56,55,54,93,44,91,45,55,57,46,50,50,52,53,56,51,44,51,56,46,52,55,55,53,56,56,93,44,91,45,55,57,46,48,53,55,50,53,51,44,51,56,46,55,54,49,52,49,51,93,44,91,45,55,57,46,49,51,52,50,57,54,44,51,56,46,56,49,51,51,52,93,44,91,45,55,57,46,51,52,57,56,54,55,44,51,56,46,57,53,55,53,48,57,93,44,91,45,55,57,46,52,53,53,52,55,50,44,51,56,46,57,50,57,57,49,93,44,91,45,55,57,46,53,51,57,48,55,53,44,51,56,46,56,52,49,52,49,49,93,44,91,45,55,57,46,53,49,48,48,55,51,44,51,56,46,55,56,48,55,49,50,93,44,91,45,55,57,46,54,50,54,55,55,52,44,51,56,46,54,54,52,50,49,52,93,44,91,45,55,57,46,54,52,57,48,55,53,44,51,56,46,53,57,49,53,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,80,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,55,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,57,52,55,48,52,44,51,56,46,56,50,50,55,57,93,44,91,45,55,56,46,53,52,56,56,50,56,44,51,56,46,55,51,56,54,53,53,93,44,91,45,55,56,46,54,52,49,55,54,57,44,51,56,46,54,48,52,55,49,57,93,44,91,45,55,56,46,54,57,49,51,49,50,44,51,56,46,53,49,48,48,48,56,93,44,91,45,55,56,46,52,56,53,55,52,44,51,56,46,52,50,49,53,55,57,93,44,91,45,55,56,46,52,53,50,56,48,49,44,51,56,46,52,55,53,53,50,55,93,44,91,45,55,56,46,51,51,56,49,55,54,44,51,56,46,54,50,55,51,49,50,93,44,91,45,55,56,46,50,56,52,56,48,53,44,51,56,46,55,53,57,51,49,53,93,44,91,45,55,56,46,51,57,52,55,48,52,44,51,56,46,56,50,50,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,101,32,70,108,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,57,48,57,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,49,51,54,50,57,44,51,53,46,51,50,51,51,52,52,93,44,91,45,57,52,46,56,49,52,50,55,54,44,51,53,46,50,48,50,51,51,49,93,44,91,45,57,52,46,57,50,55,55,55,52,44,51,53,46,50,48,50,54,49,93,44,91,45,57,52,46,57,50,55,56,54,51,44,51,53,46,48,53,56,50,52,54,93,44,91,45,57,53,46,48,53,57,53,49,50,44,51,52,46,56,53,53,48,49,57,93,44,91,45,57,53,46,48,53,57,54,49,54,44,51,52,46,54,56,48,55,51,54,93,44,91,45,57,52,46,57,51,55,53,53,53,44,51,52,46,54,56,48,55,57,50,93,44,91,45,57,52,46,57,51,55,54,48,52,44,51,52,46,53,48,55,50,57,54,93,44,91,45,57,52,46,52,54,49,49,52,57,44,51,52,46,53,48,55,52,53,55,93,44,91,45,57,52,46,52,53,52,53,54,52,44,51,52,46,55,50,56,57,54,50,93,44,91,45,57,52,46,52,52,55,55,55,52,44,51,52,46,57,51,51,57,51,55,93,44,91,45,57,52,46,52,51,53,53,57,44,51,53,46,51,56,54,49,50,50,93,44,91,45,57,52,46,52,57,53,50,53,49,44,51,53,46,51,48,49,50,93,44,91,45,57,52,46,54,54,56,55,57,54,44,51,53,46,50,57,53,48,50,57,93,44,91,45,57,52,46,56,49,51,54,50,57,44,51,53,46,51,50,51,51,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,117,109,109,101,114,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,48,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,52,53,48,57,44,51,55,46,56,49,57,49,50,49,93,44,91,45,56,48,46,57,48,53,57,54,49,44,51,55,46,54,57,56,53,57,54,93,44,91,45,56,49,46,48,54,56,55,55,52,44,51,55,46,54,51,57,56,50,51,93,44,91,45,56,49,46,48,57,52,54,51,44,51,55,46,53,56,56,54,53,56,93,44,91,45,56,48,46,56,53,57,52,53,55,44,51,55,46,52,50,57,52,57,49,93,44,91,45,56,48,46,56,53,56,52,54,54,44,51,55,46,52,50,56,51,48,55,93,44,91,45,56,48,46,54,54,51,51,52,56,44,51,55,46,55,51,49,54,57,54,93,44,91,45,56,48,46,56,48,54,51,49,54,44,51,55,46,56,54,56,57,49,53,93,44,91,45,56,48,46,57,52,53,48,57,44,51,55,46,56,49,57,49,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,101,99,107,108,101,110,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,52,51,49,52,44,34,98,101,100,115,34,58,50,54,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,53,48,51,52,57,44,51,53,46,50,48,56,52,49,50,93,44,91,45,56,48,46,54,54,54,52,56,44,51,53,46,50,54,55,57,51,52,93,44,91,45,56,48,46,55,56,52,49,54,55,44,51,53,46,53,48,54,48,49,55,93,44,91,45,56,48,46,57,52,55,51,52,52,44,51,53,46,52,56,56,52,55,51,93,44,91,45,56,48,46,57,53,52,56,54,44,51,53,46,52,48,48,48,55,56,93,44,91,45,56,49,46,48,51,51,57,48,57,44,51,53,46,49,52,56,54,57,93,44,91,45,56,49,46,48,52,49,52,57,54,44,51,53,46,48,52,52,55,49,51,93,44,91,45,56,48,46,57,48,54,51,56,53,44,51,53,46,48,55,54,50,55,55,93,44,91,45,56,48,46,56,52,48,50,55,56,44,51,53,46,48,48,49,54,57,50,93,44,91,45,56,48,46,53,53,48,51,52,57,44,51,53,46,50,48,56,52,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,69,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,51,53,53,53,44,34,98,101,100,115,34,58,51,53,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,50,55,50,48,54,51,44,52,48,46,56,57,55,52,50,55,93,44,91,45,55,52,46,51,55,49,55,51,56,44,52,48,46,55,51,57,54,52,93,44,91,45,55,52,46,49,51,54,55,48,51,44,52,48,46,54,55,52,52,52,52,93,44,91,45,55,52,46,49,52,55,53,50,57,44,52,48,46,55,56,54,52,57,49,93,44,91,45,55,52,46,49,51,48,48,49,54,44,52,48,46,56,49,57,57,51,56,93,44,91,45,55,52,46,50,55,50,48,54,51,44,52,48,46,56,57,55,52,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,76,105,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,56,54,44,34,98,101,100,115,34,58,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,51,54,49,57,53,55,44,51,57,46,57,54,55,54,48,54,93,44,91,45,57,51,46,51,54,52,56,48,56,44,51,57,46,55,48,51,56,48,51,93,44,91,45,57,51,46,50,54,54,57,54,56,44,51,57,46,55,48,51,53,54,50,93,44,91,45,57,50,46,56,53,55,57,50,44,51,57,46,54,57,57,57,56,53,93,44,91,45,57,50,46,56,52,55,52,55,55,44,52,48,46,48,51,55,51,48,49,93,44,91,45,57,50,46,56,53,54,49,57,49,44,52,48,46,48,51,55,50,53,51,93,44,91,45,57,51,46,51,54,49,57,53,49,44,52,48,46,48,51,51,48,57,56,93,44,91,45,57,51,46,51,54,49,57,53,55,44,51,57,46,57,54,55,54,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,57,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,53,53,52,56,54,44,51,50,46,50,57,55,53,54,49,93,44,91,45,56,50,46,53,57,55,54,55,49,44,51,50,46,48,49,51,57,55,57,93,44,91,45,56,50,46,53,52,51,54,53,53,44,51,49,46,57,53,56,57,49,52,93,44,91,45,56,50,46,52,56,51,49,51,49,44,51,49,46,57,54,56,57,54,49,93,44,91,45,56,50,46,52,48,57,49,51,44,51,50,46,51,53,51,55,51,56,93,44,91,45,56,50,46,54,53,53,52,56,54,44,51,50,46,50,57,55,53,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,83,104,101,114,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,57,49,53,56,53,44,52,53,46,54,52,49,50,93,44,91,45,49,50,48,46,56,51,56,55,55,50,44,52,53,46,53,49,53,57,52,54,93,44,91,45,49,50,48,46,56,54,56,53,54,57,44,52,53,46,52,48,49,49,52,54,93,44,91,45,49,50,49,46,48,50,52,50,57,52,44,52,53,46,50,49,57,53,51,49,93,44,91,45,49,50,48,46,56,56,57,51,53,55,44,52,53,46,50,48,50,51,48,53,93,44,91,45,49,50,48,46,55,50,51,53,54,57,44,52,53,46,49,51,48,57,49,49,93,44,91,45,49,50,48,46,53,48,51,55,51,51,44,52,53,46,48,56,51,52,55,55,93,44,91,45,49,50,48,46,53,51,50,48,53,57,44,52,53,46,51,55,49,50,52,57,93,44,91,45,49,50,48,46,52,57,48,51,53,57,44,52,53,46,52,54,56,57,52,57,93,44,91,45,49,50,48,46,51,54,52,57,53,53,44,52,53,46,52,57,55,50,53,93,44,91,45,49,50,48,46,52,49,49,54,57,57,44,52,53,46,53,57,54,48,54,55,93,44,91,45,49,50,48,46,54,53,51,53,48,51,44,52,53,46,55,51,55,49,56,49,93,44,91,45,49,50,48,46,57,49,53,56,53,44,52,53,46,54,52,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,55,54,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,56,48,51,52,44,51,51,46,55,54,49,55,55,52,93,44,91,45,56,51,46,52,48,54,49,56,57,44,51,51,46,54,57,56,51,48,55,93,44,91,45,56,51,46,50,55,55,54,49,49,44,51,51,46,53,50,55,54,51,93,44,91,45,56,51,46,50,55,57,57,51,49,44,51,51,46,52,56,51,52,51,56,93,44,91,45,56,51,46,49,54,52,50,48,55,44,51,51,46,51,53,53,48,51,93,44,91,45,56,51,46,48,49,50,56,53,51,44,51,51,46,52,54,57,49,55,56,93,44,91,45,56,50,46,57,57,53,54,48,50,44,51,51,46,54,57,51,53,56,51,93,44,91,45,56,51,46,49,49,56,55,50,57,44,51,51,46,54,57,56,56,49,56,93,44,91,45,56,51,46,50,56,48,51,52,44,51,51,46,55,54,49,55,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,117,102,102,97,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,50,53,57,53,51,44,52,52,46,49,57,54,53,55,53,93,44,91,45,57,57,46,51,48,48,49,56,44,52,52,46,49,57,52,56,51,93,44,91,45,57,57,46,53,55,54,53,55,49,44,52,52,46,49,57,50,52,50,49,93,44,91,45,57,57,46,53,54,50,53,51,54,44,52,52,46,49,48,49,53,49,57,93,44,91,45,57,57,46,51,53,51,55,50,44,52,51,46,57,57,53,51,50,57,93,44,91,45,57,57,46,51,53,53,56,54,52,44,52,51,46,57,51,52,51,55,49,93,44,91,45,57,56,46,57,50,54,57,57,55,44,52,51,46,57,51,53,49,52,51,93,44,91,45,57,56,46,57,50,53,57,53,51,44,52,52,46,49,57,54,53,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,101,108,108,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,51,51,56,57,55,44,52,51,46,55,49,54,57,52,50,93,44,91,45,49,48,48,46,53,53,52,54,56,55,44,52,51,46,55,51,55,50,52,55,93,44,91,45,49,48,48,46,54,55,57,51,50,50,44,52,51,46,55,49,49,54,51,54,93,44,91,45,49,48,48,46,57,56,55,48,50,55,44,52,51,46,56,52,57,49,51,50,93,44,91,45,49,48,49,46,48,54,52,51,50,54,44,52,51,46,56,52,49,48,57,93,44,91,45,49,48,49,46,50,50,56,51,51,49,44,52,51,46,55,57,53,48,52,57,93,44,91,45,49,48,49,46,50,50,56,50,51,52,44,52,51,46,51,56,57,49,56,53,93,44,91,45,49,48,48,46,50,49,52,50,50,49,44,52,51,46,51,57,48,51,50,49,93,44,91,45,49,48,48,46,50,51,48,56,52,53,44,52,51,46,55,49,51,56,53,54,93,44,91,45,49,48,48,46,51,51,56,57,55,44,52,51,46,55,49,54,57,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,69,99,116,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,56,51,52,50,44,34,98,101,100,115,34,58,54,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,50,56,55,48,52,56,44,51,50,46,48,56,54,57,57,49,93,44,91,45,49,48,50,46,55,57,57,48,56,54,44,51,50,46,48,56,53,55,57,53,93,44,91,45,49,48,50,46,55,57,56,57,51,57,44,51,49,46,54,53,49,55,56,51,93,44,91,45,49,48,50,46,55,54,55,50,52,54,44,51,49,46,54,53,49,55,49,52,93,44,91,45,49,48,50,46,51,49,56,48,53,44,51,49,46,54,53,49,51,50,55,93,44,91,45,49,48,50,46,50,56,55,51,52,53,44,51,49,46,54,53,49,50,55,54,93,44,91,45,49,48,50,46,50,56,55,48,52,56,44,51,50,46,48,56,54,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,51,34,44,34,78,65,77,69,34,58,34,76,105,109,101,115,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,53,49,53,44,34,98,101,100,115,34,58,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,51,50,50,49,53,44,51,49,46,55,48,56,56,56,55,93,44,91,45,57,54,46,56,48,49,49,50,51,44,51,49,46,53,50,50,50,54,57,93,44,91,45,57,54,46,53,57,54,56,54,50,44,51,49,46,50,50,48,57,93,44,91,45,57,54,46,51,49,57,49,54,53,44,51,49,46,51,53,55,49,50,57,93,44,91,45,57,54,46,50,51,54,54,50,57,44,51,49,46,52,49,51,51,57,50,93,44,91,45,57,54,46,52,57,54,55,49,51,44,51,49,46,55,57,54,49,57,49,93,44,91,45,57,54,46,55,49,57,49,49,52,44,51,49,46,56,49,52,56,56,55,93,44,91,45,57,54,46,57,51,50,50,49,53,44,51,49,46,55,48,56,56,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,71,114,97,121,115,32,72,97,114,98,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,57,54,55,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,52,50,57,53,53,51,44,52,55,46,53,51,50,57,52,57,93,44,91,45,49,50,52,46,52,50,49,55,50,56,44,52,55,46,51,57,51,50,57,51,93,44,91,45,49,50,52,46,51,48,54,51,54,55,44,52,55,46,50,52,56,48,56,51,93,44,91,45,49,50,52,46,50,53,49,50,57,49,44,52,55,46,48,57,54,54,53,52,93,44,91,45,49,50,52,46,50,51,52,51,57,51,44,52,54,46,56,57,49,49,56,56,93,44,91,45,49,50,52,46,49,55,53,49,51,49,44,52,54,46,55,57,51,55,51,50,93,44,91,45,49,50,51,46,51,55,48,57,53,44,52,54,46,55,57,50,49,50,57,93,44,91,45,49,50,51,46,49,54,48,53,56,56,44,52,54,46,55,57,51,51,56,51,93,44,91,45,49,50,51,46,49,53,56,51,54,52,44,52,54,46,57,57,53,56,55,49,93,44,91,45,49,50,51,46,50,48,49,56,57,49,44,52,55,46,48,56,53,48,53,57,93,44,91,45,49,50,51,46,52,56,56,57,52,51,44,52,55,46,48,56,50,54,52,54,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,53,49,55,55,49,54,93,44,91,45,49,50,52,46,48,52,54,55,52,44,52,55,46,53,49,56,53,50,53,93,44,91,45,49,50,52,46,52,50,57,53,53,51,44,52,55,46,53,51,50,57,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,114,107,101,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,52,57,53,44,34,98,101,100,115,34,58,50,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,56,50,53,53,55,50,44,51,57,46,52,57,51,50,56,57,93,44,91,45,55,55,46,56,56,57,49,51,53,44,51,57,46,53,57,55,52,53,51,93,44,91,45,55,56,46,48,50,50,49,49,44,51,57,46,54,49,57,54,53,55,93,44,91,45,55,56,46,49,51,56,57,51,55,44,51,57,46,53,57,51,55,57,54,93,44,91,45,55,56,46,50,50,56,55,54,54,44,51,57,46,51,57,49,50,51,51,93,44,91,45,55,56,46,48,51,51,49,57,49,44,51,57,46,50,54,52,54,49,50,93,44,91,45,55,55,46,56,50,53,53,55,50,44,51,57,46,52,57,51,50,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,86,105,108,108,97,108,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,57,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,50,49,56,57,57,44,49,56,46,49,53,49,57,53,52,93,44,91,45,54,54,46,52,51,48,51,49,52,44,49,56,46,48,56,50,48,53,51,93,44,91,45,54,54,46,52,52,52,53,54,44,49,56,46,49,55,54,54,55,52,93,44,91,45,54,54,46,53,50,49,56,57,57,44,49,56,46,49,53,49,57,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,80,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,52,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,55,56,51,56,51,51,44,52,54,46,49,57,50,54,57,57,93,44,91,45,49,49,48,46,55,57,52,55,55,52,44,52,53,46,53,57,48,54,56,50,93,44,91,45,49,49,48,46,57,49,57,50,50,50,44,52,53,46,53,50,52,56,54,49,93,44,91,45,49,49,48,46,57,49,55,56,57,57,44,52,53,46,51,53,49,50,55,51,93,44,91,45,49,49,49,46,48,51,56,49,54,57,44,52,53,46,51,53,49,51,57,49,93,44,91,45,49,49,49,46,48,52,53,48,54,54,44,52,53,46,48,48,48,57,53,93,44,91,45,49,49,48,46,55,48,52,52,55,54,44,52,52,46,57,57,50,49,55,52,93,44,91,45,49,48,57,46,55,57,56,52,56,51,44,52,53,46,48,48,50,51,51,51,93,44,91,45,49,48,57,46,55,57,56,54,55,51,44,52,53,46,49,54,55,51,51,57,93,44,91,45,49,49,48,46,48,54,52,53,49,56,44,52,53,46,49,55,50,49,50,57,93,44,91,45,49,49,48,46,50,50,56,48,53,50,44,52,53,46,49,55,50,49,50,57,93,44,91,45,49,49,48,46,50,50,48,57,48,56,44,52,53,46,55,56,52,57,55,51,93,44,91,45,49,49,48,46,50,57,50,54,54,50,44,52,53,46,55,56,53,48,53,55,93,44,91,45,49,49,48,46,50,56,49,57,49,54,44,52,54,46,49,56,52,51,57,55,93,44,91,45,49,49,48,46,55,56,51,56,51,51,44,52,54,46,49,57,50,54,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,68,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,55,48,52,55,44,34,98,101,100,115,34,58,49,53,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,56,51,48,57,53,44,51,51,46,52,51,48,52,53,93,44,91,45,57,55,46,51,57,56,52,56,44,51,50,46,57,57,48,56,51,57,93,44,91,45,57,55,46,48,51,50,50,56,55,44,51,50,46,57,56,57,51,50,52,93,44,91,45,57,54,46,56,52,51,57,55,57,44,51,50,46,57,56,55,53,53,52,93,44,91,45,57,54,46,56,51,52,49,49,44,51,51,46,52,48,53,52,57,56,93,44,91,45,57,54,46,57,52,51,56,54,44,51,51,46,52,49,54,52,49,93,44,91,45,57,55,46,51,56,51,48,57,53,44,51,51,46,52,51,48,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,55,49,49,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,56,55,52,54,56,57,44,51,53,46,49,56,52,48,51,54,93,44,91,45,56,49,46,55,53,53,48,56,51,44,51,52,46,57,51,48,50,56,93,44,91,45,56,49,46,55,49,49,54,57,52,44,51,52,46,57,49,50,53,55,55,93,44,91,45,56,49,46,52,53,55,50,53,55,44,51,52,46,56,51,57,50,56,93,44,91,45,56,49,46,52,56,55,48,49,54,44,51,53,46,48,51,52,56,53,51,93,44,91,45,56,49,46,52,48,56,56,55,54,44,51,53,46,48,52,54,51,50,52,93,44,91,45,56,49,46,51,54,54,54,44,51,53,46,49,54,52,56,56,51,93,44,91,45,56,49,46,55,54,56,49,48,50,44,51,53,46,49,56,48,54,49,49,93,44,91,45,56,49,46,56,55,52,54,56,57,44,51,53,46,49,56,52,48,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,89,97,110,99,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,49,54,55,51,56,44,51,54,46,48,55,50,56,50,55,93,44,91,45,56,50,46,53,48,53,52,50,53,44,51,53,46,57,55,55,52,51,50,93,44,91,45,56,50,46,52,48,56,54,48,50,44,51,53,46,56,49,56,49,55,56,93,44,91,45,56,50,46,50,55,53,51,57,57,44,51,53,46,55,48,52,52,51,56,93,44,91,45,56,50,46,49,51,51,52,56,52,44,51,53,46,56,50,51,51,48,57,93,44,91,45,56,50,46,49,57,49,55,48,53,44,51,53,46,57,57,48,54,51,54,93,44,91,45,56,50,46,51,52,53,50,57,44,51,54,46,48,55,54,52,53,57,93,44,91,45,56,50,46,52,49,54,55,51,56,44,51,54,46,48,55,50,56,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,56,55,34,44,34,78,65,77,69,34,58,34,82,101,100,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,49,48,52,57,55,44,51,51,46,56,55,55,50,48,52,93,44,91,45,57,53,46,51,48,56,54,51,55,44,51,51,46,51,56,48,54,54,50,93,44,91,45,57,53,46,51,48,54,54,52,44,51,51,46,51,55,56,48,50,55,93,44,91,45,57,53,46,49,50,53,52,53,49,44,51,51,46,51,56,57,52,53,52,93,44,91,45,57,52,46,56,48,56,55,56,51,44,51,51,46,51,54,51,54,51,54,93,44,91,45,57,52,46,55,52,54,57,50,53,44,51,51,46,51,50,56,57,51,56,93,44,91,45,57,52,46,55,52,54,48,57,54,44,51,51,46,55,48,51,48,49,54,93,44,91,45,57,52,46,56,54,48,54,56,55,44,51,51,46,55,52,49,57,52,53,93,44,91,45,57,52,46,57,57,56,48,49,57,44,51,51,46,56,54,48,53,48,52,93,44,91,45,57,53,46,49,53,53,56,56,50,44,51,51,46,57,51,54,53,55,50,93,44,91,45,57,53,46,51,49,48,52,57,55,44,51,51,46,56,55,55,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,50,49,34,44,34,78,65,77,69,34,58,34,77,97,116,97,103,111,114,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,55,52,51,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,48,57,49,55,56,44,50,56,46,57,54,51,50,57,49,93,44,91,45,57,54,46,51,50,51,53,50,50,44,50,56,46,54,55,53,53,57,55,93,44,91,45,57,54,46,51,57,53,49,57,56,44,50,56,46,50,55,57,55,51,54,93,44,91,45,57,54,46,49,56,50,50,52,50,44,50,56,46,52,53,50,48,51,54,93,44,91,45,57,53,46,55,53,48,50,51,56,44,50,56,46,54,51,56,52,49,57,93,44,91,45,57,53,46,52,57,53,54,53,44,50,56,46,55,54,52,56,51,55,93,44,91,45,57,53,46,54,53,53,51,57,56,44,50,56,46,57,53,49,55,49,49,93,44,91,45,57,53,46,55,54,52,57,51,55,44,50,56,46,57,54,55,51,53,57,93,44,91,45,57,53,46,56,52,49,52,57,57,44,50,57,46,48,57,56,54,50,93,44,91,45,57,53,46,56,55,52,48,50,56,44,50,57,46,50,50,57,55,48,50,93,44,91,45,57,53,46,57,54,53,49,57,54,44,50,57,46,49,52,54,56,54,53,93,44,91,45,57,54,46,51,48,57,49,55,56,44,50,56,46,57,54,51,50,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,83,116,101,118,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,56,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,53,51,48,50,54,44,52,53,46,53,56,53,53,50,54,93,44,91,45,57,54,46,50,52,49,51,50,56,44,52,53,46,52,49,50,54,54,55,93,44,91,45,57,54,46,49,49,55,48,51,54,44,52,53,46,52,49,49,57,57,51,93,44,91,45,57,53,46,55,52,55,52,48,50,44,52,53,46,52,49,50,51,49,51,93,44,91,45,57,53,46,55,53,56,53,48,56,44,52,53,46,55,53,57,57,51,50,93,44,91,45,57,54,46,50,53,52,48,50,50,44,52,53,46,55,53,57,56,50,93,44,91,45,57,54,46,50,53,51,48,50,54,44,52,53,46,53,56,53,53,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,49,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,55,57,57,55,53,44,51,51,46,53,57,57,55,57,50,93,44,91,45,56,50,46,56,53,49,57,53,52,44,51,51,46,52,52,51,53,52,51,93,44,91,45,56,50,46,55,53,53,56,52,54,44,51,51,46,50,53,51,52,52,93,44,91,45,56,50,46,53,53,57,55,53,51,44,51,51,46,51,50,55,50,55,93,44,91,45,56,50,46,52,51,49,57,53,55,44,51,51,46,50,55,52,56,51,93,44,91,45,56,50,46,51,56,51,56,50,57,44,51,51,46,51,49,50,49,48,54,93,44,91,45,56,50,46,53,51,53,55,55,57,44,51,51,46,51,53,55,52,54,93,44,91,45,56,50,46,54,52,57,55,48,53,44,51,51,46,54,48,56,55,54,56,93,44,91,45,56,50,46,54,55,57,57,55,53,44,51,51,46,53,57,57,55,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,72,97,114,100,101,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,53,50,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,57,57,55,54,50,49,44,51,52,46,50,50,52,51,53,53,93,44,91,45,57,57,46,55,55,50,48,52,51,44,51,52,46,48,57,51,50,56,54,93,44,91,45,57,57,46,53,55,51,49,54,49,44,51,52,46,48,54,51,54,48,56,93,44,91,45,57,57,46,52,55,53,50,57,52,44,51,52,46,48,56,53,54,49,56,93,44,91,45,57,57,46,52,55,53,49,49,53,44,51,52,46,51,57,53,57,51,93,44,91,45,57,57,46,53,54,57,54,57,54,44,51,52,46,52,49,56,52,49,56,93,44,91,45,57,57,46,54,57,52,53,50,56,44,51,52,46,51,55,56,50,49,56,93,44,91,45,57,57,46,56,52,52,53,56,53,44,51,52,46,53,48,54,57,49,53,93,44,91,45,57,57,46,57,57,55,53,48,49,44,51,52,46,53,54,48,53,55,52,93,44,91,45,57,57,46,57,57,55,55,50,44,51,52,46,51,49,49,56,50,57,93,44,91,45,57,57,46,57,57,55,54,50,49,44,51,52,46,50,50,52,51,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,57,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,54,52,49,50,51,44,51,56,46,53,50,48,55,50,56,93,44,91,45,57,48,46,51,52,49,52,52,54,44,51,56,46,51,56,56,50,57,56,93,44,91,45,57,48,46,51,53,56,54,50,56,44,51,56,46,50,50,49,57,56,49,93,44,91,45,57,48,46,50,53,50,54,54,54,44,51,56,46,49,50,55,56,49,50,93,44,91,45,57,48,46,50,48,53,50,48,53,44,51,56,46,48,56,54,57,48,55,93,44,91,45,57,48,46,48,51,53,56,54,55,44,51,56,46,49,51,53,55,51,54,93,44,91,45,57,48,46,48,51,54,51,49,54,44,51,56,46,50,50,51,50,52,54,93,44,91,45,56,57,46,56,57,57,48,52,51,44,51,56,46,50,50,48,55,53,53,93,44,91,45,56,57,46,57,49,51,50,50,55,44,51,56,46,51,48,56,50,54,57,93,44,91,45,57,48,46,48,51,54,49,49,51,44,51,56,46,51,50,51,51,55,55,93,44,91,45,57,48,46,50,54,52,49,50,51,44,51,56,46,53,50,48,55,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,74,101,110,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,52,52,57,55,55,44,51,50,46,56,49,50,55,52,49,93,44,91,45,56,50,46,48,56,50,52,52,44,51,50,46,54,54,51,48,54,49,93,44,91,45,56,50,46,48,48,49,50,51,54,44,51,50,46,54,48,54,57,49,93,44,91,45,56,49,46,56,52,49,48,48,53,44,51,50,46,54,52,57,48,57,51,93,44,91,45,56,49,46,56,54,55,57,51,56,44,51,50,46,54,56,49,49,53,93,44,91,45,56,49,46,55,54,55,53,53,51,44,51,50,46,57,48,57,52,49,49,93,44,91,45,56,49,46,56,53,55,57,56,53,44,51,50,46,57,53,51,56,56,50,93,44,91,45,56,50,46,48,56,49,51,51,55,44,51,50,46,57,49,54,55,55,54,93,44,91,45,56,50,46,49,52,52,57,55,55,44,51,50,46,56,49,50,55,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,71,114,97,121,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,49,55,56,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,53,57,50,56,49,44,51,55,46,53,54,52,51,54,93,44,91,45,56,54,46,54,54,49,56,56,44,51,55,46,53,52,49,57,51,52,93,44,91,45,56,54,46,54,49,50,48,57,53,44,51,55,46,51,57,53,49,50,51,93,44,91,45,56,54,46,52,54,57,49,50,54,44,51,55,46,51,50,49,48,57,57,93,44,91,45,56,54,46,49,53,55,53,56,57,44,51,55,46,51,51,53,54,52,57,93,44,91,45,56,54,46,48,55,51,54,50,54,44,51,55,46,51,52,56,48,52,53,93,44,91,45,56,54,46,48,52,55,53,57,56,44,51,55,46,52,52,57,57,51,51,93,44,91,45,56,54,46,49,49,52,48,57,53,44,51,55,46,53,54,55,49,51,49,93,44,91,45,56,54,46,50,55,53,50,55,44,51,55,46,53,57,51,53,49,57,93,44,91,45,56,54,46,53,57,50,56,49,44,51,55,46,53,54,52,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,54,51,34,44,34,78,65,77,69,34,58,34,80,97,108,111,32,80,105,110,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,49,55,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,55,53,54,49,54,44,51,50,46,57,53,52,51,52,57,93,44,91,45,57,56,46,53,55,54,50,53,54,44,51,50,46,53,49,53,49,54,51,93,44,91,45,57,56,46,52,55,53,49,55,55,44,51,50,46,53,49,51,48,51,57,93,44,91,45,57,56,46,48,54,56,53,52,53,44,51,50,46,53,49,49,54,50,54,93,44,91,45,57,56,46,48,54,54,56,51,54,44,51,50,46,53,53,56,56,50,50,93,44,91,45,57,56,46,48,53,54,48,57,52,44,51,51,46,48,48,51,51,51,50,93,44,91,45,57,56,46,52,50,54,53,53,51,44,51,51,46,48,48,55,57,49,51,93,44,91,45,57,56,46,53,55,53,54,49,54,44,51,50,46,57,53,52,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,72,101,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,57,51,56,48,53,44,51,51,46,52,50,56,48,57,56,93,44,91,45,56,53,46,50,51,54,53,49,56,44,51,51,46,49,50,57,53,53,57,93,44,91,45,56,52,46,57,51,57,48,49,53,44,51,51,46,50,50,52,54,57,51,93,44,91,45,56,53,46,48,49,53,51,53,56,44,51,51,46,52,50,53,53,48,54,93,44,91,45,56,53,46,50,57,51,56,48,53,44,51,51,46,52,50,56,48,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,49,55,49,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,50,57,54,54,55,44,51,52,46,53,54,55,48,56,49,93,44,91,45,56,55,46,53,50,57,55,50,50,44,51,52,46,51,48,52,53,57,56,93,44,91,45,56,55,46,49,48,57,57,49,49,44,51,52,46,50,57,57,50,57,57,93,44,91,45,56,55,46,49,49,48,49,49,49,44,51,52,46,51,49,51,55,57,57,93,44,91,45,56,55,46,49,48,53,48,55,51,44,51,52,46,54,56,54,48,51,55,93,44,91,45,56,55,46,50,54,48,54,55,54,44,51,52,46,55,53,56,54,50,54,93,44,91,45,56,55,46,52,50,54,53,49,44,51,52,46,56,48,48,48,50,50,93,44,91,45,56,55,46,52,51,51,48,54,44,51,52,46,55,49,55,52,56,53,93,44,91,45,56,55,46,53,50,57,54,54,55,44,51,52,46,53,54,55,48,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,71,117,97,121,110,97,98,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,54,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,51,49,53,56,44,49,56,46,52,50,52,54,53,54,93,44,91,45,54,54,46,49,52,51,56,54,49,44,49,56,46,50,55,57,53,57,93,44,91,45,54,54,46,48,56,48,52,55,53,44,49,56,46,50,57,55,50,57,53,93,44,91,45,54,54,46,49,48,56,50,56,49,44,49,56,46,52,51,56,57,48,50,93,44,91,45,54,54,46,49,51,49,53,56,44,49,56,46,52,50,52,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,56,55,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,50,52,51,50,52,44,51,52,46,57,57,52,55,57,93,44,91,45,56,57,46,55,50,51,52,52,50,44,51,52,46,55,55,50,51,49,49,93,44,91,45,56,57,46,54,54,57,49,54,44,51,52,46,54,56,53,55,56,54,93,44,91,45,56,57,46,54,54,56,52,52,56,44,51,52,46,53,53,52,51,54,55,93,44,91,45,56,57,46,52,55,54,54,52,50,44,51,52,46,53,53,52,49,54,56,93,44,91,45,56,57,46,50,52,54,49,51,51,44,51,52,46,52,57,53,54,51,51,93,44,91,45,56,57,46,50,52,53,54,52,53,44,51,52,46,53,56,51,50,51,52,93,44,91,45,56,57,46,50,57,56,51,51,52,44,51,52,46,53,56,50,57,50,54,93,44,91,45,56,57,46,50,57,57,50,50,55,44,51,52,46,56,52,52,52,49,53,93,44,91,45,56,57,46,51,53,50,54,55,57,44,51,52,46,57,57,51,56,54,51,93,44,91,45,56,57,46,54,52,52,48,53,44,51,52,46,57,57,53,50,57,49,93,44,91,45,56,57,46,55,50,52,51,50,52,44,51,52,46,57,57,52,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,53,51,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,48,55,50,52,56,44,51,55,46,52,55,52,56,51,54,93,44,91,45,49,48,48,46,48,57,49,53,50,57,44,51,55,46,51,56,54,56,57,50,93,44,91,45,49,48,48,46,48,56,57,52,56,51,44,51,55,46,48,48,50,50,54,49,93,44,91,45,49,48,48,46,48,48,50,53,54,51,44,51,55,46,48,48,49,55,48,54,93,44,91,45,57,57,46,53,52,49,49,49,54,44,51,54,46,57,57,57,54,49,93,44,91,45,57,57,46,53,52,51,49,56,57,44,51,55,46,51,56,49,49,50,52,93,44,91,45,57,57,46,53,53,54,49,49,57,44,51,55,46,52,54,55,55,50,50,93,44,91,45,49,48,48,46,49,48,55,50,52,56,44,51,55,46,52,55,52,56,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,72,97,115,107,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,52,55,44,34,98,101,100,115,34,58,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,54,56,49,48,54,44,51,55,46,51,56,55,55,55,57,93,44,91,45,49,48,48,46,54,53,50,55,50,56,44,51,55,46,51,56,55,54,50,55,93,44,91,45,49,48,48,46,54,53,50,54,52,50,44,51,55,46,52,55,52,56,52,56,93,44,91,45,49,48,48,46,54,53,50,50,53,49,44,51,55,46,55,51,54,50,55,53,93,44,91,45,49,48,49,46,48,56,57,54,54,55,44,51,55,46,55,51,54,51,51,55,93,44,91,45,49,48,49,46,48,56,57,54,53,51,44,51,55,46,51,56,55,55,50,49,93,44,91,45,49,48,49,46,48,54,56,49,48,54,44,51,55,46,51,56,55,55,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,105,101,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,54,56,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,49,55,56,55,54,55,44,51,50,46,53,56,52,57,49,54,93,44,91,45,57,51,46,49,52,55,49,57,51,44,51,50,46,52,53,53,49,55,51,93,44,91,45,57,51,46,50,51,54,54,53,54,44,51,50,46,52,49,48,48,55,49,93,44,91,45,57,51,46,51,55,50,55,56,49,44,51,50,46,52,49,48,49,53,51,93,44,91,45,57,51,46,52,50,56,49,57,44,51,50,46,50,51,53,56,57,55,93,44,91,45,57,51,46,50,49,51,57,56,56,44,51,50,46,50,51,54,48,54,53,93,44,91,45,57,51,46,49,56,55,49,54,50,44,51,50,46,49,52,56,52,49,50,93,44,91,45,57,50,46,57,51,57,48,56,44,51,50,46,49,52,55,57,52,50,93,44,91,45,57,50,46,56,49,52,55,51,55,44,51,50,46,49,52,54,57,48,55,93,44,91,45,57,50,46,55,55,52,57,51,54,44,51,50,46,50,51,55,48,53,53,93,44,91,45,57,50,46,55,55,55,49,57,55,44,51,50,46,52,53,51,52,53,53,93,44,91,45,57,50,46,56,55,57,50,54,56,44,51,50,46,52,53,52,49,49,56,93,44,91,45,57,50,46,56,56,48,56,48,53,44,51,50,46,53,56,53,50,55,55,93,44,91,45,57,51,46,49,55,56,55,54,55,44,51,50,46,53,56,52,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,53,34,44,34,78,65,77,69,34,58,34,87,97,108,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,54,51,57,49,57,44,51,52,46,57,56,51,51,55,53,93,44,91,45,56,53,46,52,53,48,53,54,49,44,51,52,46,56,51,49,54,55,55,93,44,91,45,56,53,46,52,53,48,52,48,57,44,51,52,46,55,53,57,50,52,49,93,44,91,45,56,53,46,53,51,52,48,56,57,44,51,52,46,54,50,51,56,53,56,93,44,91,45,56,53,46,53,50,55,50,54,49,44,51,52,46,53,56,56,54,56,51,93,44,91,45,56,53,46,49,48,55,55,52,56,44,51,52,46,53,56,55,52,56,51,93,44,91,45,56,53,46,48,54,57,49,53,57,44,51,52,46,53,56,55,49,56,52,93,44,91,45,56,53,46,48,53,48,52,52,54,44,51,52,46,54,50,50,52,56,50,93,44,91,45,56,53,46,48,53,48,56,52,55,44,51,52,46,55,49,57,57,56,93,44,91,45,56,53,46,49,52,52,55,56,57,44,51,52,46,55,54,55,54,51,57,93,44,91,45,56,53,46,50,54,52,55,54,50,44,51,52,46,56,53,52,50,55,55,93,44,91,45,56,53,46,50,54,53,48,53,53,44,51,52,46,57,56,53,48,55,53,93,44,91,45,56,53,46,51,54,51,57,49,57,44,51,52,46,57,56,51,51,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,57,56,49,54,52,44,52,49,46,56,54,50,55,55,57,93,44,91,45,57,50,46,50,57,55,52,57,52,44,52,49,46,53,48,57,55,57,93,44,91,45,57,49,46,57,52,54,48,52,51,44,52,49,46,53,49,48,55,52,57,93,44,91,45,57,49,46,56,50,57,50,51,49,44,52,49,46,53,49,49,52,53,55,93,44,91,45,57,49,46,56,51,49,51,55,57,44,52,49,46,56,54,49,56,53,49,93,44,91,45,57,50,46,50,57,56,49,54,52,44,52,49,46,56,54,50,55,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,117,102,102,97,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,51,48,44,34,98,101,100,115,34,58,51,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,50,53,57,56,54,44,52,49,46,48,52,54,52,55,49,93,44,91,45,57,57,46,52,49,55,51,49,54,44,52,48,46,54,55,48,56,50,53,93,44,91,45,57,57,46,49,55,57,50,52,56,44,52,48,46,54,54,48,53,52,49,93,44,91,45,57,56,46,57,48,54,48,57,54,44,52,48,46,54,53,50,55,50,50,93,44,91,45,57,56,46,55,50,52,51,56,55,44,52,48,46,54,56,57,55,55,50,93,44,91,45,57,56,46,55,50,49,52,51,44,52,48,46,54,57,56,57,48,51,93,44,91,45,57,56,46,55,50,49,57,55,53,44,52,49,46,48,52,54,54,55,52,93,44,91,45,57,56,46,55,52,56,53,50,54,44,52,49,46,48,52,54,54,52,93,44,91,45,57,57,46,50,48,55,53,54,52,44,52,49,46,48,52,55,48,48,51,93,44,91,45,57,57,46,52,50,53,57,56,54,44,52,49,46,48,52,54,52,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,97,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,53,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,57,52,53,52,54,51,44,51,54,46,57,57,56,52,49,54,93,44,91,45,49,48,48,46,57,53,52,49,53,51,44,51,54,46,52,57,57,57,49,54,93,44,91,45,49,48,48,46,53,52,54,49,52,53,44,51,54,46,52,57,57,51,52,51,93,44,91,45,49,48,48,46,48,48,51,55,54,50,44,51,54,46,52,57,57,56,52,57,93,44,91,45,49,48,48,46,48,48,51,49,54,44,51,54,46,53,57,51,50,53,93,44,91,45,49,48,48,46,48,48,50,53,54,51,44,51,55,46,48,48,49,55,48,54,93,44,91,45,49,48,48,46,48,56,57,52,56,51,44,51,55,46,48,48,50,50,54,49,93,44,91,45,49,48,48,46,54,51,51,51,50,55,44,51,55,46,48,48,48,49,48,51,93,44,91,45,49,48,48,46,57,52,53,52,54,51,44,51,54,46,57,57,56,52,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,44,91,45,57,51,46,48,50,55,44,52,50,46,53,53,54,56,49,93,44,91,45,57,50,46,53,53,52,51,44,52,50,46,53,53,53,56,53,52,93,44,91,45,57,50,46,53,53,52,52,57,50,44,52,50,46,54,52,50,51,49,52,93,44,91,45,57,50,46,53,53,52,50,49,49,44,52,50,46,57,48,55,49,49,50,93,44,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,82,111,111,115,101,118,101,108,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,50,56,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,49,57,52,55,56,51,44,52,56,46,48,54,54,54,49,55,93,44,91,45,49,48,53,46,48,51,55,48,57,52,44,52,56,46,48,54,51,52,49,54,93,44,91,45,49,48,52,46,56,50,50,53,56,49,44,52,56,46,49,49,56,57,52,53,93,44,91,45,49,48,52,46,53,49,49,54,57,54,44,52,56,46,49,48,57,56,57,52,93,44,91,45,49,48,52,46,48,52,52,48,52,52,44,52,55,46,57,57,54,48,56,50,93,44,91,45,49,48,52,46,48,52,54,55,54,54,44,52,56,46,51,56,57,50,57,56,93,44,91,45,49,48,52,46,54,50,55,55,54,44,52,56,46,51,56,57,51,54,50,93,44,91,45,49,48,52,46,54,50,55,55,50,54,44,52,56,46,52,55,54,51,52,57,93,44,91,45,49,48,52,46,55,53,55,54,49,57,44,52,56,46,53,54,51,49,50,55,93,44,91,45,49,48,52,46,57,55,51,51,53,52,44,52,56,46,53,54,51,49,57,93,44,91,45,49,48,53,46,56,48,52,52,51,54,44,52,56,46,53,54,51,51,53,56,93,44,91,45,49,48,53,46,56,48,52,53,57,57,44,52,56,46,50,49,57,48,51,55,93,44,91,45,49,48,53,46,56,52,51,56,57,49,44,52,56,46,48,49,48,50,56,57,93,44,91,45,49,48,53,46,53,57,53,48,50,55,44,52,56,46,48,56,49,55,56,93,44,91,45,49,48,53,46,50,50,56,57,57,44,52,56,46,48,56,57,50,56,52,93,44,91,45,49,48,53,46,49,57,52,55,56,51,44,52,56,46,48,54,54,54,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,97,114,99,101,108,111,110,101,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,50,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,55,56,52,52,49,44,49,56,46,53,52,49,52,51,49,93,44,91,45,54,54,46,53,56,56,49,56,49,44,49,56,46,51,56,57,52,48,56,93,44,91,45,54,54,46,53,52,51,48,55,57,44,49,56,46,52,48,53,52,50,50,93,44,91,45,54,54,46,53,51,50,53,50,49,44,49,56,46,53,51,53,52,55,56,93,44,91,45,54,54,46,53,55,56,52,52,49,44,49,56,46,53,52,49,52,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,111,119,108,105,116,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,49,49,50,44,34,98,101,100,115,34,58,51,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,50,49,51,48,53,52,44,52,54,46,49,55,50,53,52,49,93,44,91,45,49,50,51,46,49,49,53,57,48,52,44,52,54,46,49,56,53,50,54,56,93,44,91,45,49,50,50,46,57,48,52,49,49,57,44,52,54,46,48,56,51,55,51,52,93,44,91,45,49,50,50,46,55,56,53,53,49,53,44,52,53,46,56,53,48,53,51,54,93,44,91,45,49,50,50,46,55,50,48,57,49,44,52,53,46,57,51,49,56,57,50,93,44,91,45,49,50,50,46,52,55,56,55,53,51,44,52,53,46,57,56,55,57,51,56,93,44,91,45,49,50,50,46,51,51,50,54,54,51,44,52,53,46,57,54,53,48,54,52,93,44,91,45,49,50,50,46,50,52,53,56,53,54,44,52,54,46,48,53,51,56,53,51,93,44,91,45,49,50,50,46,50,52,48,57,54,54,44,52,54,46,51,56,53,51,54,49,93,44,91,45,49,50,51,46,50,49,55,57,53,44,52,54,46,51,56,53,54,49,55,93,44,91,45,49,50,51,46,50,49,51,48,53,52,44,52,54,46,49,55,50,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,55,34,44,34,78,65,77,69,34,58,34,76,105,118,101,32,79,97,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,51,53,48,51,49,44,50,56,46,54,49,50,54,53,56,93,44,91,45,57,56,46,51,51,52,51,50,51,44,50,56,46,48,53,55,56,93,44,91,45,57,56,46,50,51,53,52,57,55,44,50,56,46,48,53,55,57,54,54,93,44,91,45,57,55,46,56,56,51,49,52,56,44,50,56,46,48,53,54,57,93,44,91,45,57,55,46,56,49,55,55,49,54,44,50,56,46,49,55,54,56,52,56,93,44,91,45,57,56,46,48,56,57,55,54,52,44,50,56,46,54,54,50,57,55,57,93,44,91,45,57,56,46,48,48,53,50,53,50,44,50,56,46,54,57,48,50,51,57,93,44,91,45,57,56,46,48,57,56,51,49,53,44,50,56,46,55,56,54,57,52,57,93,44,91,45,57,56,46,51,51,53,48,51,49,44,50,56,46,54,49,50,54,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,77,111,110,105,116,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,57,53,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,52,57,56,51,55,55,44,51,56,46,57,50,50,48,56,52,93,44,91,45,57,50,46,54,49,55,49,52,55,44,51,56,46,54,56,48,48,49,51,93,44,91,45,57,50,46,56,51,57,56,51,55,44,51,56,46,54,56,51,57,55,52,93,44,91,45,57,50,46,56,52,49,56,55,49,44,51,56,46,53,57,54,55,57,50,93,44,91,45,57,50,46,54,50,53,49,56,57,44,51,56,46,52,51,48,55,55,56,93,44,91,45,57,50,46,52,57,53,49,56,53,44,51,56,46,52,50,55,56,50,57,93,44,91,45,57,50,46,51,57,52,56,54,54,44,51,56,46,55,51,57,49,51,93,44,91,45,57,50,46,51,55,57,54,49,52,44,51,56,46,56,48,48,48,55,54,93,44,91,45,57,50,46,52,57,56,51,55,55,44,51,56,46,57,50,50,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,87,101,115,116,109,111,114,101,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,51,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,51,54,57,53,57,44,51,56,46,48,55,55,48,55,52,93,44,91,45,55,54,46,56,55,55,48,54,50,44,51,56,46,49,50,52,51,53,56,93,44,91,45,55,54,46,55,52,56,56,55,49,44,51,55,46,57,57,52,56,57,55,93,44,91,45,55,54,46,54,51,52,50,51,44,51,55,46,57,54,54,54,51,93,44,91,45,55,54,46,53,49,54,51,54,57,44,51,56,46,48,51,52,55,50,52,93,44,91,45,55,54,46,54,49,48,51,56,52,44,51,56,46,49,52,56,53,49,54,93,44,91,45,55,54,46,56,54,56,56,53,57,44,51,56,46,49,55,49,51,55,50,93,44,91,45,55,54,46,57,57,55,54,55,44,51,56,46,50,55,56,48,52,54,93,44,91,45,55,55,46,48,54,49,54,57,53,44,51,56,46,49,54,49,54,51,49,93,44,91,45,55,54,46,57,51,54,57,53,57,44,51,56,46,48,55,55,48,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,89,97,100,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,54,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,55,51,50,48,53,44,51,54,46,50,51,54,51,48,53,93,44,91,45,56,48,46,56,56,49,53,57,49,44,51,54,46,48,53,53,55,49,56,93,44,91,45,56,48,46,54,57,51,49,57,55,44,51,54,46,48,53,49,50,54,93,44,91,45,56,48,46,52,57,54,50,56,51,44,51,54,46,48,52,54,53,52,53,93,44,91,45,56,48,46,52,51,57,49,48,52,44,51,54,46,49,51,57,57,52,57,93,44,91,45,56,48,46,52,53,50,51,50,50,44,51,54,46,50,52,49,52,49,57,93,44,91,45,56,48,46,54,51,49,53,52,52,44,51,54,46,50,56,53,53,56,52,93,44,91,45,56,48,46,56,55,51,50,48,53,44,51,54,46,50,51,54,51,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,48,55,53,44,34,98,101,100,115,34,58,50,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,51,56,55,54,55,44,51,55,46,54,51,51,51,54,52,93,44,91,45,49,50,48,46,57,56,51,55,53,54,44,51,55,46,51,57,57,54,52,93,44,91,45,49,50,48,46,57,55,50,57,52,49,44,51,55,46,51,51,56,52,56,51,93,44,91,45,49,50,49,46,50,50,54,56,48,52,44,51,55,46,49,51,52,55,55,52,93,44,91,45,49,50,49,46,50,49,53,52,48,54,44,51,54,46,57,54,49,50,52,56,93,44,91,45,49,50,49,46,49,52,49,53,50,51,44,51,54,46,56,51,54,54,53,54,93,44,91,45,49,50,48,46,57,49,56,55,51,49,44,51,54,46,55,52,48,51,56,49,93,44,91,45,49,50,48,46,53,52,49,54,57,54,44,51,55,46,48,52,52,53,48,53,93,44,91,45,49,50,48,46,52,55,54,54,57,50,44,51,55,46,48,57,54,51,57,93,44,91,45,49,50,48,46,50,50,55,50,56,54,44,51,55,46,49,54,51,52,93,44,91,45,49,50,48,46,48,53,50,48,53,53,44,51,55,46,49,56,51,49,48,56,93,44,91,45,49,50,48,46,49,52,51,56,50,54,44,51,55,46,50,51,57,49,57,50,93,44,91,45,49,50,48,46,50,54,54,48,49,44,51,55,46,52,48,48,54,48,55,93,44,91,45,49,50,48,46,51,56,55,54,55,44,51,55,46,54,51,51,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,101,119,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,49,56,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,56,49,48,50,50,44,51,54,46,48,49,50,57,50,53,93,44,91,45,57,57,46,51,55,53,56,49,55,44,51,53,46,56,49,50,49,56,56,93,44,91,45,57,56,46,54,51,49,57,56,53,44,51,53,46,56,49,50,52,48,50,93,44,91,45,57,56,46,54,51,54,56,57,57,44,51,54,46,49,54,52,56,57,52,93,44,91,45,57,56,46,57,53,53,56,52,57,44,51,54,46,49,54,49,53,55,55,93,44,91,45,57,57,46,51,56,50,48,55,52,44,51,54,46,49,54,52,51,48,49,93,44,91,45,57,57,46,51,56,49,48,50,50,44,51,54,46,48,49,50,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,117,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,55,49,50,44,34,98,101,100,115,34,58,55,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,52,51,49,56,56,44,51,53,46,57,54,48,48,53,93,44,91,45,56,49,46,57,48,54,54,53,50,44,51,53,46,56,56,51,51,55,54,93,44,91,45,56,49,46,57,56,54,57,51,57,44,51,53,46,56,48,54,57,50,51,93,44,91,45,56,49,46,56,54,57,51,56,56,44,51,53,46,55,49,57,54,50,52,93,44,91,45,56,49,46,56,50,52,49,50,50,44,51,53,46,53,55,52,57,56,51,93,44,91,45,56,49,46,54,57,49,57,56,57,44,51,53,46,53,56,48,48,52,49,93,44,91,45,56,49,46,53,51,55,53,57,57,44,51,53,46,53,54,52,50,50,56,93,44,91,45,56,49,46,53,51,53,52,48,51,44,51,53,46,53,54,56,49,51,55,93,44,91,45,56,49,46,51,54,51,55,57,54,44,51,53,46,55,54,55,56,48,50,93,44,91,45,56,49,46,53,53,53,57,57,52,44,51,53,46,55,55,55,53,51,56,93,44,91,45,56,49,46,56,48,55,49,54,50,44,51,53,46,57,54,49,57,53,53,93,44,91,45,56,49,46,57,52,51,49,56,56,44,51,53,46,57,54,48,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,48,48,50,44,34,98,101,100,115,34,58,53,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,54,52,55,56,52,44,51,53,46,53,56,53,50,54,51,93,44,91,45,55,56,46,49,53,56,53,56,57,44,51,53,46,51,52,55,53,51,55,93,44,91,45,55,56,46,51,48,54,53,56,44,51,53,46,50,56,55,54,48,52,93,44,91,45,55,56,46,49,54,51,52,50,44,51,53,46,49,56,57,55,49,54,93,44,91,45,55,55,46,56,51,52,50,52,57,44,51,53,46,49,55,55,56,52,54,93,44,91,45,55,55,46,56,48,54,50,52,56,44,51,53,46,51,54,56,55,53,52,93,44,91,45,55,55,46,56,50,50,53,49,49,44,51,53,46,53,56,53,51,56,51,93,44,91,45,55,56,46,48,54,52,55,56,52,44,51,53,46,53,56,53,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,51,53,44,34,98,101,100,115,34,58,50,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,54,49,48,56,51,57,44,52,49,46,57,57,57,48,48,54,93,44,91,45,55,57,46,54,49,50,48,55,50,44,52,49,46,56,53,48,48,53,54,93,44,91,45,55,57,46,54,49,50,56,55,51,44,52,49,46,54,50,51,56,53,56,93,44,91,45,55,57,46,53,49,50,48,55,44,52,49,46,54,50,52,53,53,57,93,44,91,45,55,56,46,57,53,54,48,52,50,44,52,49,46,54,50,51,52,48,50,93,44,91,45,55,56,46,57,53,54,48,53,54,44,52,49,46,54,50,51,56,54,51,93,44,91,45,55,56,46,57,49,56,56,53,53,44,52,49,46,57,57,56,49,49,57,93,44,91,45,55,57,46,48,54,49,50,54,53,44,52,49,46,57,57,57,50,53,57,93,44,91,45,55,57,46,54,49,48,56,51,57,44,52,49,46,57,57,57,48,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,56,57,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,52,51,55,51,57,44,51,52,46,49,57,50,53,48,49,93,44,91,45,57,52,46,48,57,56,53,48,49,44,51,52,46,49,57,49,50,48,51,93,44,91,45,57,52,46,48,53,50,57,52,51,44,51,51,46,56,56,54,48,56,50,93,44,91,45,57,51,46,57,53,56,56,50,56,44,51,51,46,55,53,48,57,57,52,93,44,91,45,57,51,46,57,53,55,51,49,53,44,51,51,46,55,53,48,57,52,93,44,91,45,57,51,46,56,51,49,52,53,50,44,51,51,46,55,52,55,55,48,57,93,44,91,45,57,51,46,56,50,51,48,55,54,44,51,52,46,48,48,56,56,57,51,93,44,91,45,57,51,46,56,50,48,55,50,50,44,51,52,46,49,56,51,56,48,50,93,44,91,45,57,51,46,57,50,53,56,51,44,51,52,46,49,56,54,52,57,54,93,44,91,45,57,51,46,57,51,53,51,55,49,44,51,52,46,51,53,48,48,57,55,93,44,91,45,57,52,46,50,53,52,54,54,56,44,51,52,46,51,53,53,52,56,49,93,44,91,45,57,52,46,50,52,51,55,51,57,44,51,52,46,49,57,50,53,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,68,97,118,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,57,57,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,57,51,49,57,55,44,51,54,46,48,53,49,50,54,93,44,91,45,56,48,46,55,48,55,56,50,54,44,51,53,46,56,53,50,57,50,57,93,44,91,45,56,48,46,54,51,50,55,50,52,44,51,53,46,56,52,53,56,53,52,93,44,91,45,56,48,46,52,53,56,56,56,52,44,51,53,46,55,52,51,48,51,49,93,44,91,45,56,48,46,51,56,53,55,56,52,44,51,53,46,56,53,52,53,56,55,93,44,91,45,56,48,46,51,57,52,51,48,55,44,51,53,46,57,55,50,55,54,50,93,44,91,45,56,48,46,52,57,54,50,56,51,44,51,54,46,48,52,54,53,52,53,93,44,91,45,56,48,46,54,57,51,49,57,55,44,51,54,46,48,53,49,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,77,99,68,111,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,49,48,57,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,51,51,52,56,52,44,51,53,46,56,50,51,51,48,57,93,44,91,45,56,50,46,50,55,53,51,57,57,44,51,53,46,55,48,52,52,51,56,93,44,91,45,56,50,46,50,53,49,50,53,49,44,51,53,46,53,53,57,57,52,51,93,44,91,45,56,50,46,49,54,57,48,52,57,44,51,53,46,53,50,55,56,49,49,93,44,91,45,56,49,46,57,54,55,54,49,57,44,51,53,46,53,50,54,48,48,55,93,44,91,45,56,49,46,56,50,52,49,50,50,44,51,53,46,53,55,52,57,56,51,93,44,91,45,56,49,46,56,54,57,51,56,56,44,51,53,46,55,49,57,54,50,52,93,44,91,45,56,49,46,57,56,54,57,51,57,44,51,53,46,56,48,54,57,50,51,93,44,91,45,56,49,46,57,48,54,54,53,50,44,51,53,46,56,56,51,51,55,54,93,44,91,45,56,49,46,57,52,51,49,56,56,44,51,53,46,57,54,48,48,53,93,44,91,45,56,49,46,57,56,49,57,53,52,44,51,53,46,57,49,49,51,54,49,93,44,91,45,56,50,46,49,51,51,52,56,52,44,51,53,46,56,50,51,51,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,52,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,52,53,54,55,48,57,44,51,51,46,57,53,54,56,51,55,93,44,91,45,57,51,46,52,56,51,48,57,55,44,51,51,46,52,55,54,48,55,53,93,44,91,45,57,51,46,51,54,53,53,56,53,44,51,51,46,52,52,52,52,53,57,93,44,91,45,57,51,46,49,49,54,51,54,49,44,51,51,46,52,53,50,57,48,57,93,44,91,45,57,51,46,49,48,52,50,57,44,51,51,46,55,55,55,48,49,49,93,44,91,45,57,51,46,50,57,48,53,55,49,44,51,51,46,56,52,53,49,51,51,93,44,91,45,57,51,46,51,55,51,52,48,54,44,51,51,46,57,53,55,48,55,93,44,91,45,57,51,46,52,53,54,55,48,57,44,51,51,46,57,53,54,56,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,89,117,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,54,57,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,53,49,52,54,53,44,52,48,46,52,52,48,48,48,56,93,44,91,45,49,48,50,46,54,54,52,56,48,52,44,52,48,46,52,51,56,52,55,51,93,44,91,45,49,48,50,46,55,55,57,57,54,44,52,48,46,52,51,56,52,52,54,93,44,91,45,49,48,50,46,55,57,51,53,56,50,44,52,48,46,51,53,49,50,56,49,93,44,91,45,49,48,50,46,56,48,50,57,51,50,44,51,57,46,53,54,55,56,52,49,93,44,91,45,49,48,50,46,48,52,57,56,48,54,44,51,57,46,53,55,52,48,53,56,93,44,91,45,49,48,50,46,48,53,49,55,52,52,44,52,48,46,48,48,51,48,55,56,93,44,91,45,49,48,50,46,48,53,49,53,56,54,44,52,48,46,51,52,57,50,49,51,93,44,91,45,49,48,50,46,48,53,49,52,54,53,44,52,48,46,52,52,48,48,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,50,49,34,44,34,78,65,77,69,34,58,34,83,104,101,114,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,51,57,49,53,44,51,54,46,52,57,57,53,50,56,93,44,91,45,49,48,50,46,48,51,50,51,51,56,44,51,54,46,53,48,48,53,55,53,93,44,91,45,49,48,50,46,49,54,50,52,54,51,44,51,54,46,53,48,48,51,50,54,93,44,91,45,49,48,50,46,49,54,51,48,49,53,44,51,54,46,48,53,53,50,52,57,93,44,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,44,91,45,49,48,49,46,54,50,51,57,49,53,44,51,54,46,52,57,57,53,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,54,51,34,44,34,78,65,77,69,34,58,34,85,118,97,108,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,48,48,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,48,51,49,51,44,50,57,46,54,50,55,49,56,49,93,44,91,45,49,48,48,46,48,49,52,49,56,56,44,50,57,46,54,50,51,52,57,53,93,44,91,45,49,48,48,46,49,49,50,48,57,56,44,50,57,46,54,50,51,50,54,51,93,44,91,45,49,48,48,46,49,49,49,52,48,54,44,50,57,46,48,56,54,51,49,56,93,44,91,45,57,57,46,52,49,51,56,56,44,50,57,46,48,57,49,51,51,53,93,44,91,45,57,57,46,52,49,49,56,49,55,44,50,57,46,54,50,55,53,49,52,93,44,91,45,57,57,46,54,48,51,49,51,44,50,57,46,54,50,55,49,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,117,103,108,97,105,122,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,56,52,44,34,98,101,100,115,34,58,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,53,54,49,56,44,52,48,46,54,56,52,56,54,50,93,44,91,45,56,52,46,52,51,52,51,56,55,44,52,48,46,51,53,52,53,51,52,93,44,91,45,56,52,46,51,51,56,54,44,52,48,46,51,55,57,49,57,57,93,44,91,45,56,52,46,51,51,57,49,51,55,44,52,48,46,52,56,49,48,55,54,93,44,91,45,56,52,46,48,48,50,51,55,50,44,52,48,46,52,56,51,49,49,53,93,44,91,45,56,51,46,56,56,48,48,51,57,44,52,48,46,53,51,56,54,57,52,93,44,91,45,56,51,46,56,56,48,49,57,52,44,52,48,46,54,52,52,54,57,93,44,91,45,56,52,46,49,48,55,55,56,55,44,52,48,46,54,52,51,48,54,57,93,44,91,45,56,52,46,50,50,50,55,57,57,44,52,48,46,54,56,53,57,53,55,93,44,91,45,56,52,46,51,57,54,55,55,56,44,52,48,46,54,56,52,57,50,54,93,44,91,45,56,52,46,52,53,54,49,56,44,52,48,46,54,56,52,56,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,111,115,115,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,49,51,49,44,34,98,101,100,115,34,58,50,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,49,52,53,53,51,44,51,51,46,48,49,57,51,55,49,93,44,91,45,57,51,46,55,56,51,50,51,51,44,51,50,46,55,56,52,51,54,93,44,91,45,57,51,46,56,49,57,49,54,57,44,51,50,46,55,51,54,48,48,50,93,44,91,45,57,51,46,55,51,54,54,49,44,51,50,46,53,55,57,56,52,53,93,44,91,45,57,51,46,55,53,54,50,48,54,44,51,50,46,53,51,55,48,51,55,93,44,91,45,57,51,46,54,49,53,49,51,44,51,50,46,51,52,56,51,51,50,93,44,91,45,57,51,46,52,55,49,50,52,57,44,51,50,46,50,51,55,49,56,54,93,44,91,45,57,51,46,52,50,56,49,57,44,51,50,46,50,51,53,56,57,55,93,44,91,45,57,51,46,51,55,50,55,56,49,44,51,50,46,52,49,48,49,53,51,93,44,91,45,57,51,46,52,52,49,50,49,50,44,51,50,46,52,49,48,52,51,49,93,44,91,45,57,51,46,52,53,51,49,50,49,44,51,50,46,56,53,57,57,51,53,93,44,91,45,57,51,46,53,50,48,57,57,52,44,51,51,46,48,49,56,54,49,54,93,44,91,45,57,51,46,56,48,52,57,51,44,51,51,46,48,49,57,51,53,55,93,44,91,45,57,51,46,56,49,52,53,53,51,44,51,51,46,48,49,57,51,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,69,109,109,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,53,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,49,52,53,56,50,44,52,51,46,53,48,48,56,53,51,93,44,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,44,91,45,57,52,46,52,52,51,49,51,55,44,52,51,46,50,53,53,48,49,52,93,44,91,45,57,52,46,52,52,50,56,53,44,52,51,46,53,48,48,52,50,50,93,44,91,45,57,52,46,56,53,52,53,53,53,44,52,51,46,53,48,48,57,50,53,93,44,91,45,57,52,46,57,49,52,53,56,50,44,52,51,46,53,48,48,56,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,57,55,55,44,34,98,101,100,115,34,58,51,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,50,56,53,57,50,44,51,56,46,56,55,49,48,57,57,93,44,91,45,57,55,46,57,50,52,55,57,53,44,51,56,46,54,48,57,56,56,93,44,91,45,57,55,46,51,55,49,57,49,49,44,51,56,46,54,48,57,51,53,51,93,44,91,45,57,55,46,51,55,49,54,49,52,44,51,56,46,57,53,55,56,53,50,93,44,91,45,57,55,46,57,50,56,53,54,44,51,56,46,57,53,56,51,57,53,93,44,91,45,57,55,46,57,50,56,53,57,50,44,51,56,46,56,55,49,48,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,77,97,103,111,102,102,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,54,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,52,56,54,57,50,44,51,55,46,54,54,57,54,49,54,93,44,91,45,56,51,46,48,56,57,55,57,54,44,51,55,46,54,51,50,49,54,55,93,44,91,45,56,50,46,57,52,56,53,52,52,44,51,55,46,53,48,51,49,54,55,93,44,91,45,56,50,46,57,50,53,52,54,44,51,55,46,52,56,54,53,50,53,93,44,91,45,56,50,46,56,57,49,54,48,53,44,51,55,46,53,49,57,48,56,51,93,44,91,45,56,50,46,57,52,48,55,54,51,44,51,55,46,55,49,54,51,51,56,93,44,91,45,56,51,46,48,48,52,54,52,57,44,51,55,46,56,53,57,50,52,55,93,44,91,45,56,51,46,48,56,57,52,48,57,44,51,55,46,56,57,48,51,52,93,44,91,45,56,51,46,50,55,48,51,56,55,44,51,55,46,55,54,54,56,52,53,93,44,91,45,56,51,46,50,54,50,49,55,50,44,51,55,46,55,49,50,54,53,55,93,44,91,45,56,51,46,50,52,56,54,57,50,44,51,55,46,54,54,57,54,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,97,105,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,57,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,52,51,55,54,55,44,51,52,46,51,48,50,54,52,56,93,44,91,45,49,48,51,46,48,52,55,52,48,57,44,51,51,46,56,50,52,54,55,52,93,44,91,45,49,48,50,46,54,49,53,52,52,55,44,51,51,46,56,50,53,49,50,49,93,44,91,45,49,48,50,46,54,49,53,49,53,44,51,52,46,51,49,50,56,57,49,93,44,91,45,49,48,51,46,48,52,51,55,54,50,44,51,52,46,51,49,50,55,53,93,44,91,45,49,48,51,46,48,52,51,55,54,55,44,51,52,46,51,48,50,54,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,108,108,97,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,56,52,48,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,51,51,57,57,56,44,51,57,46,48,53,57,48,53,55,93,44,91,45,57,50,46,49,49,48,51,56,55,44,51,57,46,48,54,52,50,48,52,93,44,91,45,57,50,46,49,54,53,49,49,55,44,51,56,46,57,48,48,57,52,56,93,44,91,45,57,50,46,49,51,53,51,57,55,44,51,56,46,56,49,53,53,56,49,93,44,91,45,57,50,46,50,50,48,54,54,49,44,51,56,46,54,52,51,49,54,55,93,44,91,45,57,50,46,49,48,57,50,56,50,44,51,56,46,53,54,49,52,51,93,44,91,45,57,50,46,48,48,56,57,56,51,44,51,56,46,53,55,48,57,93,44,91,45,57,49,46,56,54,57,52,56,57,44,51,56,46,54,54,51,57,52,93,44,91,45,57,49,46,54,52,55,49,55,49,44,51,56,46,55,48,51,51,57,54,93,44,91,45,57,49,46,54,51,51,57,57,56,44,51,57,46,48,53,57,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,98,97,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,49,48,50,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,55,51,52,48,51,44,52,50,46,52,51,51,50,51,54,93,44,91,45,49,48,54,46,48,54,56,52,48,54,44,52,49,46,51,57,53,48,50,56,93,44,91,45,49,48,54,46,51,50,50,56,56,53,44,52,49,46,51,57,53,49,52,49,93,44,91,45,49,48,54,46,51,50,49,49,54,53,44,52,48,46,57,57,57,49,50,51,93,44,91,45,49,48,54,46,49,57,48,53,53,52,44,52,48,46,57,57,55,53,55,56,93,44,91,45,49,48,53,46,50,55,54,56,54,44,52,48,46,57,57,56,49,55,50,93,44,91,45,49,48,53,46,50,55,56,50,51,54,44,52,49,46,54,53,54,54,53,53,93,44,91,45,49,48,53,46,50,55,49,55,52,54,44,52,49,46,57,56,54,48,57,53,93,44,91,45,49,48,53,46,50,56,51,57,49,44,52,50,46,52,51,49,52,48,50,93,44,91,45,49,48,53,46,51,55,53,53,52,49,44,52,50,46,50,57,48,49,51,57,93,44,91,45,49,48,53,46,54,49,51,56,54,53,44,52,50,46,51,48,52,52,53,53,93,44,91,45,49,48,53,46,53,53,54,48,52,50,44,52,50,46,52,51,48,53,56,51,93,44,91,45,49,48,54,46,48,55,51,52,48,51,44,52,50,46,52,51,51,50,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,80,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,49,50,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,55,57,56,52,56,51,44,52,53,46,48,48,50,51,51,51,93,44,91,45,49,49,48,46,55,48,52,52,55,54,44,52,52,46,57,57,50,49,55,52,93,44,91,45,49,49,49,46,48,52,53,48,54,54,44,52,53,46,48,48,48,57,53,93,44,91,45,49,49,49,46,48,53,51,52,52,55,44,52,52,46,54,54,54,50,54,56,93,44,91,45,49,49,48,46,54,54,55,56,54,55,44,52,52,46,54,54,54,50,57,49,93,44,91,45,49,49,48,46,54,54,55,56,57,57,44,52,52,46,53,56,50,55,57,50,93,44,91,45,49,49,48,46,51,55,53,51,51,52,44,52,52,46,53,56,51,48,49,54,93,44,91,45,49,49,48,46,50,55,54,53,48,54,44,52,52,46,53,49,53,54,54,53,93,44,91,45,49,49,48,46,50,57,54,54,52,56,44,52,52,46,52,51,49,51,52,49,93,44,91,45,49,49,48,46,49,53,48,49,55,53,44,52,52,46,50,56,57,54,54,54,93,44,91,45,49,49,48,46,49,49,57,49,57,51,44,52,52,46,49,51,50,53,56,52,93,44,91,45,49,49,48,46,48,53,51,49,55,57,44,52,52,46,48,48,56,48,50,50,93,44,91,45,49,48,57,46,56,56,49,57,44,52,51,46,57,52,57,48,55,54,93,44,91,45,49,48,57,46,55,56,57,57,44,52,51,46,56,48,51,50,53,50,93,44,91,45,49,48,57,46,53,52,50,51,51,50,44,52,51,46,57,54,49,51,53,50,93,44,91,45,49,48,57,46,52,52,50,51,54,49,44,52,51,46,57,51,48,52,51,52,93,44,91,45,49,48,57,46,51,49,50,57,52,57,44,52,51,46,56,49,51,50,57,51,93,44,91,45,49,48,57,46,48,57,51,54,48,51,44,52,51,46,56,49,55,54,49,57,93,44,91,45,49,48,57,46,48,57,50,56,55,56,44,52,51,46,57,48,52,52,55,52,93,44,91,45,49,48,56,46,57,49,50,55,56,51,44,52,51,46,57,48,52,55,53,52,93,44,91,45,49,48,56,46,55,57,49,55,55,57,44,52,51,46,57,57,49,48,53,51,93,44,91,45,49,48,56,46,55,57,50,50,55,55,44,52,52,46,48,55,57,54,49,54,93,44,91,45,49,48,56,46,53,53,48,55,53,56,44,52,52,46,48,55,57,52,48,51,93,44,91,45,49,48,56,46,53,53,48,53,54,50,44,52,52,46,49,54,56,52,53,53,93,44,91,45,49,48,56,46,53,57,50,50,57,54,44,52,52,46,56,55,49,52,52,52,93,44,91,45,49,48,56,46,54,50,49,51,49,53,44,52,53,46,48,48,48,51,54,49,93,44,91,45,49,48,57,46,55,57,56,52,56,51,44,52,53,46,48,48,50,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,111,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,57,52,44,34,98,101,100,115,34,58,54,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,51,50,54,55,50,44,52,49,46,49,55,50,48,52,93,44,91,45,55,54,46,55,57,50,54,49,44,52,48,46,57,52,54,54,52,55,93,44,91,45,55,54,46,54,54,49,51,52,56,44,52,48,46,57,54,55,57,57,54,93,44,91,45,55,54,46,53,50,56,48,51,52,44,52,48,46,56,56,50,53,49,53,93,44,91,45,55,54,46,53,49,50,52,50,49,44,52,48,46,57,52,54,49,48,50,93,44,91,45,55,54,46,54,49,56,57,55,49,44,52,49,46,48,54,51,55,53,57,93,44,91,45,55,54,46,54,52,48,55,54,55,44,52,49,46,49,53,53,55,49,56,93,44,91,45,55,54,46,55,51,50,54,55,50,44,52,49,46,49,55,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,81,117,101,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,57,56,53,49,51,44,34,98,101,100,115,34,58,51,50,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,48,51,54,50,57,51,44,52,48,46,53,53,49,48,52,50,93,44,91,45,55,52,46,48,52,50,49,49,50,44,52,48,46,53,48,57,50,57,57,93,44,91,45,55,51,46,56,56,54,54,53,50,44,52,48,46,52,56,57,55,57,52,93,44,91,45,55,51,46,55,54,56,55,56,49,44,52,48,46,53,51,51,55,52,55,93,44,91,45,55,51,46,55,48,49,54,51,51,44,52,48,46,55,53,50,52,57,51,93,44,91,45,55,51,46,55,55,56,57,53,56,44,52,48,46,56,49,49,55,49,51,93,44,91,45,55,51,46,57,49,50,52,53,54,44,52,48,46,55,57,54,48,57,54,93,44,91,45,55,51,46,57,54,50,52,55,56,44,52,48,46,55,51,54,56,48,50,93,44,91,45,55,51,46,56,51,51,48,52,49,44,52,48,46,54,50,56,50,54,49,93,44,91,45,55,51,46,56,55,57,50,50,50,44,52,48,46,53,55,52,54,53,54,93,44,91,45,55,52,46,48,51,54,50,57,51,44,52,48,46,53,53,49,48,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,83,117,119,97,110,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,50,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,52,55,50,53,51,44,51,48,46,50,54,48,54,55,93,44,91,45,56,51,46,50,50,54,51,54,44,51,48,46,49,49,52,54,50,49,93,44,91,45,56,51,46,49,54,50,52,53,55,44,51,48,46,49,49,48,48,50,50,93,44,91,45,56,50,46,57,54,51,49,49,50,44,50,57,46,57,57,51,48,53,93,44,91,45,56,50,46,56,55,57,56,48,50,44,50,57,46,56,56,54,56,52,55,93,44,91,45,56,50,46,56,48,48,52,55,55,44,50,57,46,57,51,50,49,50,54,93,44,91,45,56,50,46,55,57,52,53,57,52,44,51,48,46,51,51,55,48,50,52,93,44,91,45,56,50,46,57,53,53,57,44,51,48,46,52,49,51,52,56,54,93,44,91,45,56,51,46,48,55,56,55,48,54,44,51,48,46,52,51,56,49,49,54,93,44,91,45,56,51,46,49,55,48,57,54,57,44,51,48,46,51,56,53,50,50,53,93,44,91,45,56,51,46,50,52,55,50,53,51,44,51,48,46,50,54,48,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,104,101,98,111,121,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,52,53,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,51,50,53,57,53,44,52,53,46,56,49,48,51,51,93,44,91,45,56,52,46,55,51,50,54,56,55,44,52,53,46,50,56,57,51,56,50,93,44,91,45,56,52,46,55,51,52,51,48,51,44,52,53,46,50,48,49,57,51,54,93,44,91,45,56,52,46,51,54,54,54,49,52,44,52,53,46,49,57,56,55,51,55,93,44,91,45,56,52,46,50,52,54,54,51,52,44,52,53,46,49,57,56,55,50,55,93,44,91,45,56,52,46,50,53,50,48,50,44,52,53,46,54,50,53,57,57,56,93,44,91,45,56,52,46,50,48,49,48,54,50,44,52,53,46,55,53,50,50,55,53,93,44,91,45,56,52,46,52,53,50,54,51,52,44,52,53,46,54,57,53,51,55,93,44,91,45,56,52,46,55,51,50,53,57,53,44,52,53,46,56,49,48,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,108,97,100,119,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,56,48,51,57,44,52,52,46,49,54,48,53,51,56,93,44,91,45,56,52,46,54,48,56,49,48,52,44,52,52,46,49,54,48,52,56,50,93,44,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,44,91,45,56,52,46,49,54,55,51,49,56,44,52,51,46,56,50,53,57,48,50,93,44,91,45,56,52,46,49,54,54,51,55,55,44,52,51,46,57,57,54,57,48,49,93,44,91,45,56,52,46,49,54,54,49,48,55,44,52,52,46,49,54,49,55,56,56,93,44,91,45,56,52,46,51,54,56,48,51,57,44,52,52,46,49,54,48,53,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,55,53,57,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,56,48,53,50,55,44,51,56,46,49,49,53,49,49,56,93,44,91,45,56,51,46,57,54,54,51,49,44,51,55,46,57,51,48,55,54,56,93,44,91,45,56,51,46,55,54,56,55,56,51,44,51,55,46,57,49,56,51,55,49,93,44,91,45,56,51,46,55,53,57,52,51,44,51,55,46,57,57,56,55,51,49,93,44,91,45,56,51,46,56,56,49,51,53,51,44,51,56,46,49,51,54,53,49,55,93,44,91,45,56,51,46,57,55,55,57,50,52,44,51,56,46,49,57,50,49,49,56,93,44,91,45,56,52,46,48,56,48,53,50,55,44,51,56,46,49,49,53,49,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,76,97,110,99,97,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,53,52,54,44,34,98,101,100,115,34,58,50,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,57,56,50,49,53,44,51,52,46,56,50,48,55,52,54,93,44,91,45,56,48,46,56,54,48,50,55,52,44,51,52,46,54,57,53,56,52,55,93,44,91,45,56,48,46,56,55,55,52,57,49,44,51,52,46,53,52,51,49,52,54,93,44,91,45,56,48,46,56,55,57,50,50,55,44,51,52,46,52,53,55,55,55,54,93,44,91,45,56,48,46,55,52,51,51,52,53,44,51,52,46,53,51,57,57,49,54,93,44,91,45,56,48,46,54,53,56,52,49,55,44,51,52,46,52,55,56,54,49,50,93,44,91,45,56,48,46,53,53,48,53,53,50,44,51,52,46,53,54,48,49,49,54,93,44,91,45,56,48,46,52,48,56,51,55,51,44,51,52,46,54,49,52,55,54,53,93,44,91,45,56,48,46,53,54,49,55,49,44,51,52,46,56,49,55,52,50,57,93,44,91,45,56,48,46,55,57,55,52,56,52,44,51,52,46,56,49,57,56,48,51,93,44,91,45,56,48,46,55,56,49,57,50,49,44,51,52,46,57,51,53,56,52,56,93,44,91,45,56,48,46,56,52,48,50,55,56,44,51,53,46,48,48,49,54,57,50,93,44,91,45,56,48,46,57,48,54,51,56,53,44,51,53,46,48,55,54,50,55,55,93,44,91,45,56,48,46,56,54,56,54,53,50,44,51,52,46,57,53,49,49,52,51,93,44,91,45,56,48,46,56,57,56,50,49,53,44,51,52,46,56,50,48,55,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,76,97,114,117,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,56,48,52,56,56,44,51,55,46,55,51,50,50,56,52,93,44,91,45,56,53,46,56,55,54,48,48,54,44,51,55,46,53,52,51,50,53,57,93,44,91,45,56,53,46,56,57,50,56,48,52,44,51,55,46,52,52,48,51,48,56,93,44,91,45,56,53,46,54,53,55,51,51,50,44,51,55,46,52,50,49,57,57,54,93,44,91,45,56,53,46,53,56,51,52,57,55,44,51,55,46,52,54,57,57,49,55,93,44,91,45,56,53,46,52,54,54,50,53,44,51,55,46,52,54,53,53,57,53,93,44,91,45,56,53,46,53,50,49,50,57,44,51,55,46,53,53,52,51,52,51,93,44,91,45,56,53,46,54,49,56,48,55,49,44,51,55,46,53,52,48,54,49,49,93,44,91,45,56,53,46,53,57,50,48,56,56,44,51,55,46,54,57,51,52,55,57,93,44,91,45,56,53,46,54,56,48,52,56,56,44,51,55,46,55,51,50,50,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,87,111,111,100,98,117,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,51,57,56,44,34,98,101,100,115,34,58,56,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,52,53,52,56,51,44,52,50,46,52,57,48,54,51,93,44,91,45,57,54,46,51,56,48,55,48,53,44,52,50,46,52,52,54,51,57,51,93,44,91,45,57,54,46,52,48,55,57,57,56,44,52,50,46,51,51,55,52,48,56,93,44,91,45,57,54,46,51,53,54,51,57,53,44,52,50,46,50,55,54,52,57,52,93,44,91,45,57,54,46,51,53,54,53,54,44,52,50,46,50,49,53,48,48,50,93,44,91,45,57,53,46,54,55,48,56,50,50,44,52,50,46,50,49,49,52,48,56,93,44,91,45,57,53,46,54,54,57,50,54,53,44,52,50,46,52,55,52,54,52,53,93,44,91,45,57,53,46,55,52,49,54,49,49,44,52,50,46,53,54,49,50,56,53,93,44,91,45,57,53,46,56,53,57,57,52,57,44,52,50,46,53,54,48,54,50,93,44,91,45,57,54,46,52,57,56,55,55,54,44,52,50,46,53,54,49,48,52,51,93,44,91,45,57,54,46,52,52,53,52,56,51,44,52,50,46,52,57,48,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,57,56,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,57,57,56,56,51,44,51,48,46,48,49,50,50,50,53,93,44,91,45,56,51,46,54,52,55,51,49,49,44,50,57,46,55,57,55,49,51,57,93,44,91,45,56,51,46,54,48,57,51,48,56,44,50,57,46,54,57,56,52,49,54,93,44,91,45,56,51,46,52,56,49,50,54,52,44,50,57,46,54,51,48,51,50,57,93,44,91,45,56,51,46,51,54,54,51,57,56,44,50,57,46,54,54,53,55,48,49,93,44,91,45,56,51,46,51,49,56,56,53,57,44,50,57,46,56,50,50,54,50,51,93,44,91,45,56,51,46,51,55,48,56,57,44,50,57,46,56,56,55,57,51,52,93,44,91,45,56,51,46,51,54,55,50,54,44,51,48,46,50,54,48,52,52,93,44,91,45,56,51,46,52,54,56,55,54,56,44,51,48,46,51,48,52,50,49,50,93,44,91,45,56,51,46,56,50,48,50,51,53,44,51,48,46,51,48,51,53,52,93,44,91,45,56,51,46,57,49,53,51,54,57,44,51,48,46,50,52,52,55,55,57,93,44,91,45,56,51,46,57,57,57,56,56,51,44,51,48,46,48,49,50,50,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,101,120,97,110,100,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,55,50,48,56,49,44,51,55,46,48,54,56,51,49,93,44,91,45,56,57,46,50,55,51,54,51,49,44,51,55,46,49,50,54,57,54,56,93,44,91,45,56,57,46,50,52,56,53,54,54,44,51,55,46,51,51,53,50,57,56,93,44,91,45,56,57,46,52,56,54,54,56,57,44,51,55,46,51,51,52,53,53,52,93,44,91,45,56,57,46,52,56,56,55,50,44,51,55,46,50,53,49,52,53,55,93,44,91,45,56,57,46,51,55,54,54,51,50,44,51,55,46,48,51,56,52,56,50,93,44,91,45,56,57,46,51,49,50,55,48,52,44,51,55,46,48,48,56,57,55,49,93,44,91,45,56,57,46,50,53,57,57,51,53,44,51,55,46,48,54,52,48,55,93,44,91,45,56,57,46,49,51,50,57,49,53,44,51,54,46,57,56,50,48,53,55,93,44,91,45,56,57,46,49,55,50,48,56,49,44,51,55,46,48,54,56,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,51,51,48,50,44,34,98,101,100,115,34,58,51,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,51,54,51,49,49,44,51,56,46,52,54,54,54,52,51,93,44,91,45,57,48,46,55,56,48,49,56,53,44,51,56,46,50,48,52,49,49,50,93,44,91,45,57,48,46,54,51,57,57,56,44,51,56,46,48,55,54,53,52,56,93,44,91,45,57,48,46,53,56,51,51,50,52,44,51,56,46,48,48,51,52,57,57,93,44,91,45,57,48,46,52,49,54,48,50,50,44,51,56,46,48,52,50,51,49,53,93,44,91,45,57,48,46,50,53,50,54,54,54,44,51,56,46,49,50,55,56,49,50,93,44,91,45,57,48,46,51,53,56,54,50,56,44,51,56,46,50,50,49,57,56,49,93,44,91,45,57,48,46,51,52,49,52,52,54,44,51,56,46,51,56,56,50,57,56,93,44,91,45,57,48,46,52,49,50,53,49,57,44,51,56,46,53,48,48,56,53,51,93,44,91,45,57,48,46,53,57,49,49,50,51,44,51,56,46,53,48,49,54,53,50,93,44,91,45,57,48,46,55,51,54,51,49,49,44,51,56,46,52,54,54,54,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,53,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,50,49,56,51,53,44,51,57,46,50,50,52,49,48,56,93,44,91,45,57,49,46,49,56,50,57,52,50,44,51,57,46,50,50,55,50,51,51,93,44,91,45,57,49,46,50,54,48,50,51,50,44,51,57,46,49,51,57,56,52,53,93,44,91,45,57,49,46,50,54,52,50,56,55,44,51,56,46,57,57,50,55,54,50,93,44,91,45,57,49,46,49,49,49,50,53,49,44,51,56,46,56,55,50,55,48,57,93,44,91,45,57,48,46,57,53,56,53,51,54,44,51,56,46,56,55,48,56,54,53,93,44,91,45,57,48,46,56,50,50,55,50,52,44,51,56,46,56,55,54,51,57,50,93,44,91,45,57,48,46,54,54,51,49,56,49,44,51,56,46,57,51,52,50,50,52,93,44,91,45,57,48,46,55,50,49,56,51,53,44,51,57,46,50,50,52,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,67,104,97,116,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,55,48,52,57,44,34,98,101,100,115,34,58,49,54,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,52,52,53,55,50,44,51,50,46,50,50,54,49,50,56,93,44,91,45,56,49,46,49,57,53,54,51,52,44,51,50,46,50,51,55,52,57,57,93,44,91,45,56,49,46,51,57,49,54,57,56,44,51,50,46,48,57,53,56,56,54,93,44,91,45,56,49,46,50,49,50,51,48,57,44,51,49,46,57,49,56,51,53,56,93,44,91,45,56,49,46,49,53,52,55,51,49,44,51,49,46,55,49,51,48,55,93,44,91,45,56,49,46,48,53,49,53,50,49,44,51,49,46,55,48,53,49,57,56,93,44,91,45,56,48,46,55,56,50,57,54,44,51,49,46,57,57,53,57,53,52,93,44,91,45,56,49,46,48,48,52,51,48,53,44,51,50,46,49,48,50,51,54,55,93,44,91,45,56,49,46,49,49,55,50,50,53,44,51,50,46,49,49,55,54,48,52,93,44,91,45,56,49,46,49,52,52,53,55,50,44,51,50,46,50,50,54,49,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,51,57,44,34,98,101,100,115,34,58,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,52,50,53,55,56,44,51,48,46,49,52,51,49,49,55,93,44,91,45,56,50,46,52,53,56,51,54,52,44,51,48,46,49,51,54,52,52,57,93,44,91,45,56,50,46,53,54,57,50,56,44,50,57,46,57,55,52,57,56,93,44,91,45,56,50,46,53,50,57,55,48,53,44,50,57,46,57,52,48,56,56,49,93,44,91,45,56,50,46,52,49,56,55,50,56,44,50,57,46,57,50,51,48,57,51,93,44,91,45,56,50,46,51,49,51,51,56,53,44,50,57,46,57,53,52,55,48,52,93,44,91,45,56,50,46,49,52,50,53,55,56,44,51,48,46,49,52,51,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,71,101,110,101,115,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,49,49,50,44,34,98,101,100,115,34,58,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,54,52,52,52,57,44,52,51,46,48,56,56,55,48,51,93,44,91,45,55,56,46,52,54,52,51,56,49,44,52,50,46,56,54,55,52,54,49,93,44,91,45,55,55,46,57,53,52,57,54,52,44,52,50,46,56,54,50,55,53,52,93,44,91,45,55,55,46,57,48,57,56,51,50,44,52,50,46,57,56,55,55,54,50,93,44,91,45,55,55,46,57,57,55,50,57,44,52,51,46,49,51,50,57,56,49,93,44,91,45,55,56,46,52,54,53,53,48,53,44,52,51,46,49,50,56,54,49,57,93,44,91,45,55,56,46,52,54,52,52,52,57,44,52,51,46,48,56,56,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,49,51,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,44,91,45,57,53,46,51,56,56,48,55,56,44,52,51,46,50,53,53,50,50,49,93,44,91,45,57,53,46,51,56,56,49,56,50,44,52,50,46,57,48,57,56,57,55,93,44,91,45,57,52,46,57,49,51,56,57,44,52,50,46,57,48,57,55,93,44,91,45,57,52,46,57,49,51,55,50,51,44,52,51,46,50,53,53,48,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,70,97,108,108,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,56,56,53,52,57,53,44,52,54,46,49,51,54,53,57,53,93,44,91,45,49,48,52,46,53,49,54,49,50,54,44,52,54,46,49,51,54,49,57,54,93,44,91,45,49,48,52,46,51,57,48,55,52,52,44,52,54,46,48,53,52,56,50,54,93,44,91,45,49,48,52,46,51,57,48,56,55,54,44,52,53,46,57,55,48,51,54,51,93,44,91,45,49,48,52,46,49,51,52,56,52,50,44,52,53,46,57,54,56,56,51,51,93,44,91,45,49,48,52,46,48,52,52,49,57,52,44,52,53,46,56,56,49,57,55,53,93,44,91,45,49,48,52,46,48,52,53,53,52,55,44,52,53,46,57,52,53,51,48,56,93,44,91,45,49,48,52,46,48,52,53,53,53,57,44,52,54,46,50,56,48,48,56,49,93,44,91,45,49,48,52,46,48,52,53,50,49,49,44,52,54,46,53,52,48,56,54,49,93,44,91,45,49,48,52,46,48,52,53,50,51,52,44,52,54,46,54,52,49,53,48,52,93,44,91,45,49,48,52,46,51,53,52,56,51,53,44,52,54,46,54,52,49,52,48,57,93,44,91,45,49,48,52,46,52,49,55,57,57,56,44,52,54,46,54,56,52,56,57,50,93,44,91,45,49,48,52,46,54,48,54,57,48,51,44,52,54,46,54,56,52,57,50,52,93,44,91,45,49,48,52,46,55,51,51,48,53,57,44,52,54,46,54,49,50,54,57,53,93,44,91,45,49,48,52,46,55,51,50,54,55,50,44,52,54,46,52,56,50,50,48,50,93,44,91,45,49,48,52,46,57,48,53,57,56,56,44,52,54,46,52,56,50,50,53,49,93,44,91,45,49,48,52,46,56,56,53,52,57,53,44,52,54,46,49,51,54,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,80,111,116,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,54,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,55,48,56,57,56,55,44,52,53,46,50,52,53,56,54,54,93,44,91,45,49,48,48,46,50,54,48,50,50,51,44,52,53,46,50,52,54,56,49,93,44,91,45,49,48,48,46,51,50,53,52,53,49,44,52,53,46,48,57,57,51,51,55,93,44,91,45,49,48,48,46,52,50,51,57,49,56,44,52,52,46,57,57,48,48,48,54,93,44,91,45,49,48,48,46,52,48,52,55,53,51,44,52,52,46,56,57,55,54,57,53,93,44,91,45,57,57,46,54,55,52,50,53,50,44,52,52,46,56,57,55,53,48,51,93,44,91,45,57,57,46,53,55,50,54,57,57,44,52,52,46,56,57,55,50,54,51,93,44,91,45,57,57,46,53,55,51,51,51,44,52,53,46,50,52,53,51,54,52,93,44,91,45,57,57,46,55,48,56,57,56,55,44,52,53,46,50,52,53,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,67,117,108,98,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,49,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,49,56,51,53,55,44,51,50,46,48,48,48,52,49,56,93,44,91,45,49,48,52,46,57,48,57,49,50,52,44,51,49,46,50,52,54,54,48,57,93,44,91,45,49,48,52,46,57,49,55,49,54,51,44,51,48,46,54,54,51,54,50,54,93,44,91,45,49,48,52,46,49,48,50,51,53,49,44,51,49,46,49,48,53,50,48,51,93,44,91,45,49,48,52,46,48,50,52,53,49,50,44,51,50,46,48,48,48,49,48,50,93,44,91,45,49,48,52,46,56,52,55,55,52,44,51,50,46,48,48,48,52,49,53,93,44,91,45,49,48,52,46,57,49,56,51,53,55,44,51,50,46,48,48,48,52,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,57,52,52,44,34,98,101,100,115,34,58,49,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,55,56,50,57,56,52,44,52,51,46,56,49,52,49,52,55,93,44,91,45,55,48,46,54,53,57,51,54,57,44,52,51,46,55,57,48,51,56,54,93,44,91,45,55,48,46,53,52,57,57,54,53,44,52,51,46,55,49,53,55,57,54,93,44,91,45,55,48,46,52,57,50,48,48,57,44,52,51,46,54,48,54,55,54,57,93,44,91,45,55,48,46,50,50,50,48,57,44,52,51,46,52,54,54,56,55,56,93,44,91,45,55,48,46,49,53,53,57,56,54,44,52,51,46,53,50,52,52,52,52,93,44,91,45,54,57,46,56,56,49,56,57,53,44,52,51,46,54,51,54,52,54,54,93,44,91,45,54,57,46,56,57,51,50,51,50,44,52,51,46,56,55,56,53,49,56,93,44,91,45,55,48,46,48,51,52,50,51,56,44,52,51,46,57,55,53,54,54,49,93,44,91,45,55,48,46,49,49,53,56,54,44,52,51,46,57,48,54,55,49,93,44,91,45,55,48,46,51,49,53,51,55,52,44,52,52,46,48,51,55,56,48,55,93,44,91,45,55,48,46,52,56,48,48,55,56,44,52,52,46,48,51,50,48,55,56,93,44,91,45,55,48,46,54,48,51,55,56,52,44,52,52,46,48,52,49,53,51,54,93,44,91,45,55,48,46,54,50,52,51,50,57,44,52,52,46,49,55,49,48,51,54,93,44,91,45,55,48,46,56,50,49,56,48,51,44,52,52,46,48,55,55,48,56,57,93,44,91,45,55,48,46,55,49,53,52,49,56,44,52,51,46,57,54,49,56,49,53,93,44,91,45,55,48,46,55,56,50,57,56,52,44,52,51,46,56,49,52,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,65,116,97,115,99,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,56,50,56,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,56,48,52,57,44,50,57,46,48,57,48,52,51,52,93,44,91,45,57,56,46,56,48,48,56,52,49,44,50,56,46,54,52,55,52,56,55,93,44,91,45,57,56,46,56,48,48,56,52,56,44,50,56,46,54,52,55,51,48,54,93,44,91,45,57,56,46,51,51,53,48,52,55,44,50,56,46,54,52,56,50,55,53,93,44,91,45,57,56,46,51,51,53,48,51,49,44,50,56,46,54,49,50,54,53,56,93,44,91,45,57,56,46,48,57,56,51,49,53,44,50,56,46,55,56,54,57,52,57,93,44,91,45,57,56,46,49,57,48,57,57,49,44,50,56,46,56,56,50,51,51,51,93,44,91,45,57,56,46,52,48,55,51,51,54,44,50,57,46,49,49,52,52,51,53,93,44,91,45,57,56,46,56,48,52,55,54,51,44,50,57,46,50,53,48,54,57,51,93,44,91,45,57,56,46,56,48,52,57,44,50,57,46,48,57,48,52,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,75,105,110,103,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,55,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,54,52,56,48,52,44,51,55,46,55,51,50,54,55,53,93,44,91,45,57,56,46,52,54,52,54,54,51,44,51,55,46,52,55,49,48,49,51,93,44,91,45,57,56,46,52,54,52,57,53,49,44,51,55,46,51,56,52,48,56,54,93,44,91,45,57,56,46,51,52,57,56,48,52,44,51,55,46,51,56,52,48,53,54,93,44,91,45,57,55,46,56,48,55,48,53,55,44,51,55,46,51,56,54,50,57,51,93,44,91,45,57,55,46,56,48,55,54,44,51,55,46,52,55,52,49,56,52,93,44,91,45,57,55,46,56,48,55,56,50,51,44,51,55,46,55,51,51,56,53,53,93,44,91,45,57,56,46,52,54,52,56,48,52,44,51,55,46,55,51,50,54,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,49,34,44,34,78,65,77,69,34,58,34,82,97,98,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,53,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,56,50,57,52,57,44,51,52,46,57,57,51,51,48,49,93,44,91,45,56,51,46,53,52,57,51,55,54,44,51,52,46,57,57,50,51,57,51,93,44,91,45,56,51,46,54,53,54,50,57,55,44,51,52,46,56,55,56,56,50,51,93,44,91,45,56,51,46,54,53,50,49,57,52,44,51,52,46,56,50,50,57,57,51,93,44,91,45,56,51,46,53,52,56,57,56,56,44,51,52,46,55,52,57,52,53,49,93,44,91,45,56,51,46,51,53,50,52,52,56,44,51,52,46,55,49,54,49,50,53,93,44,91,45,56,51,46,51,50,52,49,53,44,51,52,46,55,56,55,52,55,57,93,44,91,45,56,51,46,49,50,55,51,53,55,44,51,52,46,57,53,48,49,57,53,93,44,91,45,56,51,46,49,48,56,54,49,51,44,51,53,46,48,48,48,54,53,57,93,44,91,45,56,51,46,52,56,50,57,52,57,44,51,52,46,57,57,51,51,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,85,112,115,104,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,54,48,53,44,34,98,101,100,115,34,58,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,51,48,48,50,48,57,44,51,57,46,49,48,51,56,53,55,93,44,91,45,56,48,46,51,49,57,51,52,54,44,51,56,46,57,54,48,57,49,57,93,44,91,45,56,48,46,51,56,54,57,56,57,44,51,56,46,56,55,52,56,48,56,93,44,91,45,56,48,46,51,57,51,48,54,51,44,51,56,46,55,50,55,53,55,49,93,44,91,45,56,48,46,50,56,48,48,53,57,44,51,56,46,54,57,52,56,54,55,93,44,91,45,56,48,46,49,50,54,49,48,53,44,51,56,46,55,52,53,56,51,54,93,44,91,45,56,48,46,48,56,53,48,54,50,44,51,56,46,57,52,55,50,51,54,93,44,91,45,56,48,46,48,52,52,54,57,53,44,51,57,46,48,49,48,49,56,54,93,44,91,45,56,48,46,50,50,55,49,55,51,44,51,57,46,49,49,50,55,57,50,93,44,91,45,56,48,46,51,48,48,50,48,57,44,51,57,46,49,48,51,56,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,53,34,44,34,78,65,77,69,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,55,49,44,34,98,101,100,115,34,58,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,50,57,50,53,56,44,51,55,46,54,48,50,53,52,50,93,44,91,45,57,50,46,50,52,57,52,54,51,44,51,55,46,54,48,52,53,52,51,93,44,91,45,57,50,46,50,53,50,50,54,49,44,51,55,46,52,55,50,57,52,52,93,44,91,45,57,50,46,50,53,49,51,53,57,44,51,55,46,48,53,57,54,53,51,93,44,91,45,57,50,46,48,56,56,55,48,56,44,51,55,46,48,53,54,50,52,56,93,44,91,45,57,49,46,54,53,53,54,48,55,44,51,55,46,48,52,56,57,50,53,93,44,91,45,57,49,46,54,52,54,54,50,54,44,51,55,46,52,50,50,55,51,49,93,44,91,45,57,49,46,55,53,53,48,52,44,51,55,46,52,50,52,49,49,93,44,91,45,57,49,46,56,48,57,49,48,53,44,51,55,46,53,57,56,56,54,51,93,44,91,45,57,50,46,48,50,57,50,53,56,44,51,55,46,54,48,50,53,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,80,117,108,97,115,107,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,51,52,54,51,44,34,98,101,100,115,34,58,52,51,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,48,56,48,52,49,44,51,52,46,52,57,50,55,54,53,93,44,91,45,57,50,46,48,50,57,57,57,54,44,51,52,46,52,56,57,51,53,50,93,44,91,45,57,50,46,48,50,57,53,51,57,44,51,52,46,54,50,49,50,52,56,93,44,91,45,57,50,46,48,55,56,55,49,49,44,51,52,46,55,50,57,57,56,51,93,44,91,45,57,50,46,48,55,48,56,48,53,44,51,53,46,48,49,49,56,48,50,93,44,91,45,57,50,46,49,50,49,51,51,54,44,51,53,46,48,49,50,50,49,93,44,91,45,57,50,46,50,50,57,56,57,51,44,51,52,46,57,50,55,53,53,56,93,44,91,45,57,50,46,53,52,52,51,52,49,44,51,52,46,57,53,51,51,49,57,93,44,91,45,57,50,46,55,53,51,54,50,54,44,51,52,46,57,49,49,50,52,56,93,44,91,45,57,50,46,55,51,57,55,55,57,44,51,52,46,56,53,51,52,53,57,93,44,91,45,57,50,46,54,53,52,51,50,52,44,51,52,46,55,54,52,53,52,49,93,44,91,45,57,50,46,51,52,56,55,52,57,44,51,52,46,53,56,50,50,57,93,44,91,45,57,50,46,50,52,53,56,49,56,44,51,52,46,52,57,51,53,48,54,93,44,91,45,57,50,46,50,48,56,48,52,49,44,51,52,46,52,57,50,55,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,54,55,48,56,50,50,44,52,50,46,50,49,49,52,48,56,93,44,91,45,57,53,46,54,55,50,55,55,49,44,52,49,46,56,54,51,49,52,55,93,44,91,45,57,53,46,53,53,55,50,55,55,44,52,49,46,56,54,51,52,52,57,93,44,91,45,57,53,46,48,57,50,56,54,49,44,52,49,46,56,54,51,51,55,52,93,44,91,45,57,53,46,48,57,48,56,53,49,44,52,50,46,50,49,48,52,48,53,93,44,91,45,57,53,46,51,50,51,52,57,55,44,52,50,46,50,49,48,57,51,50,93,44,91,45,57,53,46,54,55,48,56,50,50,44,52,50,46,50,49,49,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,110,110,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,48,54,53,44,34,98,101,100,115,34,58,50,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,55,53,48,53,54,50,44,52,50,46,57,53,49,53,50,56,93,44,91,45,49,49,50,46,53,55,57,50,56,55,44,52,50,46,57,55,50,52,53,49,93,44,91,45,49,49,50,46,53,49,53,53,49,57,44,52,50,46,57,48,57,57,55,53,93,44,91,45,49,49,50,46,52,57,54,57,49,44,52,50,46,55,51,51,48,49,51,93,44,91,45,49,49,50,46,51,56,57,52,49,56,44,52,50,46,54,50,52,51,56,50,93,44,91,45,49,49,50,46,52,49,57,56,50,53,44,52,50,46,53,48,51,48,51,56,93,44,91,45,49,49,50,46,49,50,54,49,57,52,44,52,50,46,50,56,53,50,50,57,93,44,91,45,49,49,49,46,56,57,54,55,50,56,44,52,50,46,50,53,54,50,55,54,93,44,91,45,49,49,49,46,56,55,53,54,51,54,44,52,50,46,52,49,54,49,53,56,93,44,91,45,49,49,49,46,57,49,54,57,50,55,44,52,50,46,54,49,55,50,54,52,93,44,91,45,49,49,49,46,57,55,51,51,55,51,44,52,50,46,55,49,53,52,55,50,93,44,91,45,49,49,50,46,49,48,53,56,56,44,52,50,46,54,57,57,50,48,51,93,44,91,45,49,49,50,46,49,52,53,48,56,57,44,52,50,46,55,57,48,54,54,52,93,44,91,45,49,49,50,46,49,50,55,52,50,52,44,52,50,46,57,52,52,52,57,56,93,44,91,45,49,49,50,46,48,54,51,48,50,51,44,52,51,46,48,50,50,51,54,52,93,44,91,45,49,49,50,46,54,53,54,53,53,50,44,52,51,46,48,50,49,57,52,52,93,44,91,45,49,49,50,46,55,53,48,53,54,50,44,52,50,46,57,53,49,53,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,101,97,117,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,57,54,49,44,34,98,101,100,115,34,58,49,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,48,51,54,51,49,44,52,49,46,55,49,53,49,51,55,93,44,91,45,56,49,46,49,48,49,52,50,50,44,52,49,46,54,52,49,52,53,55,93,44,91,45,56,49,46,50,57,52,54,54,57,44,52,49,46,54,52,48,56,56,57,93,44,91,45,56,49,46,51,57,49,48,48,53,44,52,49,46,53,54,57,55,49,54,93,44,91,45,56,49,46,51,57,49,54,57,52,44,52,49,46,51,52,56,50,55,50,93,44,91,45,56,49,46,48,48,51,51,49,57,44,52,49,46,51,52,55,56,54,93,44,91,45,56,49,46,48,48,51,49,50,53,44,52,49,46,53,48,49,54,56,53,93,44,91,45,56,49,46,48,48,51,54,51,49,44,52,49,46,55,49,53,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,97,121,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,53,51,48,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,57,53,48,57,57,44,49,56,46,49,54,57,48,55,55,93,44,91,45,54,54,46,50,49,54,56,57,57,44,49,56,46,49,52,51,50,50,93,44,91,45,54,54,46,50,50,52,52,57,44,49,56,46,48,57,53,51,51,57,93,44,91,45,54,54,46,49,54,54,49,52,53,44,49,56,46,48,53,48,48,54,51,93,44,91,45,54,54,46,48,53,51,49,52,54,44,49,56,46,49,48,55,50,57,51,93,44,91,45,54,54,46,48,53,49,55,56,56,44,49,56,46,49,48,57,56,55,56,93,44,91,45,54,54,46,48,53,50,53,53,53,44,49,56,46,49,49,51,48,54,57,93,44,91,45,54,54,46,48,57,53,48,57,57,44,49,56,46,49,54,57,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,84,117,108,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,48,52,55,55,44,34,98,101,100,115,34,58,55,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,53,51,56,49,49,54,44,51,53,46,55,56,57,53,54,55,93,44,91,45,49,49,56,46,54,50,57,57,55,53,44,51,53,46,55,56,57,53,56,93,44,91,45,49,49,56,46,48,48,56,48,52,51,44,51,53,46,55,56,57,49,54,49,93,44,91,45,49,49,55,46,57,56,50,52,55,51,44,51,53,46,56,57,53,55,57,54,93,44,91,45,49,49,56,46,49,50,55,54,48,49,44,51,54,46,50,56,48,51,52,56,93,44,91,45,49,49,56,46,49,48,48,49,49,54,44,51,54,46,51,50,56,56,50,51,93,44,91,45,49,49,56,46,50,52,56,57,50,44,51,54,46,52,56,54,53,51,53,93,44,91,45,49,49,56,46,51,54,48,53,56,54,44,51,54,46,55,52,52,55,55,51,93,44,91,45,49,49,56,46,57,56,50,52,52,49,44,51,54,46,55,52,49,54,52,54,93,44,91,45,49,49,56,46,57,56,52,55,55,57,44,51,54,46,54,53,55,49,52,55,93,44,91,45,49,49,57,46,51,48,52,54,50,53,44,51,54,46,54,54,48,54,48,54,93,44,91,45,49,49,57,46,51,48,53,49,48,50,44,51,54,46,53,55,51,55,50,53,93,44,91,45,49,49,57,46,52,54,54,51,50,50,44,51,54,46,53,55,53,50,51,56,93,44,91,45,49,49,57,46,53,55,51,49,57,52,44,51,54,46,52,56,56,56,51,53,93,44,91,45,49,49,57,46,52,55,52,56,57,50,44,51,54,46,52,48,48,57,53,51,93,44,91,45,49,49,57,46,53,50,57,51,53,56,44,51,54,46,50,54,57,56,53,93,44,91,45,49,49,57,46,53,51,56,49,49,54,44,51,53,46,55,56,57,53,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,65,114,114,111,121,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,56,50,50,54,51,44,49,56,46,48,51,50,57,53,56,93,44,91,45,54,54,46,48,54,52,53,48,51,44,49,55,46,57,48,52,56,50,53,93,44,91,45,54,53,46,57,56,55,53,53,49,44,49,55,46,57,48,56,57,50,51,93,44,91,45,54,54,46,48,56,50,50,54,51,44,49,56,46,48,51,50,57,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,83,97,110,32,71,101,114,109,195,161,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,49,49,52,44,34,98,101,100,115,34,58,50,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,48,56,54,51,53,57,44,49,56,46,49,52,57,56,50,57,93,44,91,45,54,55,46,49,48,48,52,57,50,44,49,56,46,49,48,54,51,57,53,93,44,91,45,54,55,46,49,48,57,48,52,52,44,49,56,46,48,53,54,48,56,53,93,44,91,45,54,54,46,57,56,51,51,51,55,44,49,56,46,48,53,50,53,49,56,93,44,91,45,54,54,46,57,55,55,56,53,53,44,49,56,46,49,52,51,55,57,57,93,44,91,45,54,55,46,48,53,49,52,54,49,44,49,56,46,49,55,52,48,53,51,93,44,91,45,54,55,46,48,56,54,51,53,57,44,49,56,46,49,52,57,56,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,56,53,54,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,56,55,57,57,53,44,52,51,46,54,51,49,53,52,51,93,44,91,45,55,55,46,51,55,49,52,55,56,44,52,51,46,48,51,52,54,57,54,93,44,91,45,55,55,46,49,51,52,51,51,53,44,52,51,46,48,51,57,57,50,54,93,44,91,45,55,54,46,57,54,51,57,50,54,44,52,51,46,48,49,51,49,53,55,93,44,91,45,55,54,46,55,49,51,56,48,54,44,52,51,46,48,50,52,48,51,53,93,44,91,45,55,54,46,55,48,50,51,50,53,44,52,51,46,48,56,48,51,57,51,93,44,91,45,55,54,46,55,53,51,53,51,56,44,52,51,46,54,56,52,50,55,53,93,44,91,45,55,54,46,55,55,54,50,51,51,44,52,51,46,54,50,57,53,50,57,93,44,91,45,55,55,46,51,56,55,57,57,53,44,52,51,46,54,51,49,53,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,82,111,99,107,98,114,105,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,54,52,55,53,56,57,44,51,55,46,56,55,52,53,51,56,93,44,91,45,55,57,46,54,55,52,49,54,50,44,51,55,46,55,54,51,48,57,51,93,44,91,45,55,57,46,54,56,51,53,53,52,44,51,55,46,54,54,49,55,54,51,93,44,91,45,55,57,46,52,57,56,54,57,57,44,51,55,46,53,51,50,55,57,55,93,44,91,45,55,57,46,52,51,54,57,52,55,44,51,55,46,54,49,55,48,53,55,93,44,91,45,55,57,46,51,52,53,50,51,53,44,51,55,46,54,54,48,54,50,53,93,44,91,45,55,57,46,50,54,52,54,55,52,44,51,55,46,55,57,52,54,57,52,93,44,91,45,55,57,46,49,55,50,49,51,49,44,51,55,46,56,48,51,48,57,55,93,44,91,45,55,57,46,49,53,55,51,57,44,51,55,46,56,57,49,48,48,51,93,44,91,45,55,57,46,52,56,50,54,54,56,44,51,56,46,48,56,54,48,53,52,93,44,91,45,55,57,46,54,52,55,53,56,57,44,51,55,46,56,55,52,53,51,56,93,93,44,91,91,45,55,57,46,52,54,49,53,56,50,44,51,55,46,55,56,54,51,53,54,93,44,91,45,55,57,46,52,51,55,51,51,55,44,51,55,46,55,57,52,55,56,52,93,44,91,45,55,57,46,52,50,48,56,50,52,44,51,55,46,55,56,56,57,57,56,93,44,91,45,55,57,46,52,53,53,54,54,55,44,51,55,46,55,54,53,50,49,57,93,44,91,45,55,57,46,52,54,49,53,56,50,44,51,55,46,55,56,54,51,53,54,93,93,44,91,91,45,55,57,46,51,56,49,53,48,57,44,51,55,46,55,52,50,49,52,57,93,44,91,45,55,57,46,51,51,49,50,53,50,44,51,55,46,55,52,52,51,51,54,93,44,91,45,55,57,46,51,54,48,55,54,50,44,51,55,46,55,48,50,54,54,54,93,44,91,45,55,57,46,51,56,49,53,48,57,44,51,55,46,55,52,50,49,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,84,111,119,110,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,54,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,55,48,51,57,50,44,52,56,46,53,52,52,50,51,50,93,44,91,45,57,56,46,57,57,57,56,57,44,52,56,46,55,49,56,49,50,57,93,44,91,45,57,56,46,57,57,57,56,48,50,44,52,57,46,48,48,48,48,48,54,93,44,91,45,57,57,46,53,50,53,55,55,57,44,52,56,46,57,57,57,51,48,55,93,44,91,45,57,57,46,53,50,53,56,57,53,44,52,56,46,55,49,56,51,56,52,93,44,91,45,57,57,46,52,57,51,49,56,57,44,52,56,46,53,52,52,56,51,52,93,44,91,45,57,57,46,52,57,50,57,49,57,44,52,56,46,51,55,48,57,52,54,93,44,91,45,57,57,46,50,48,48,51,48,54,44,52,56,46,51,55,48,54,53,56,93,44,91,45,57,56,46,57,55,48,56,52,50,44,52,56,46,51,55,48,52,49,52,93,44,91,45,57,56,46,57,55,48,51,57,50,44,52,56,46,53,52,52,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,53,50,55,44,34,98,101,100,115,34,58,49,49,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,51,54,49,48,54,54,44,52,48,46,48,54,53,53,52,51,93,44,91,45,55,53,46,53,50,51,56,49,54,44,51,57,46,57,52,52,49,50,52,93,44,91,45,55,53,46,53,57,52,56,56,44,51,57,46,56,51,55,53,50,53,93,44,91,45,55,53,46,53,57,51,48,57,57,44,51,57,46,56,51,55,55,50,51,93,44,91,45,55,53,46,53,55,57,57,50,54,44,51,57,46,56,51,56,56,54,50,93,44,91,45,55,53,46,52,49,53,48,54,50,44,51,57,46,56,48,49,57,49,57,93,44,91,45,55,53,46,50,49,49,52,54,51,44,51,57,46,56,54,55,48,48,52,93,44,91,45,55,53,46,50,55,54,52,56,50,44,51,57,46,57,55,54,57,53,57,93,44,91,45,55,53,46,51,54,49,48,54,54,44,52,48,46,48,54,53,53,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,78,105,97,103,97,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,55,48,52,44,34,98,101,100,115,34,58,52,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,54,56,55,49,49,44,52,51,46,54,51,51,52,50,56,93,44,91,45,55,56,46,54,56,56,50,57,53,44,52,51,46,54,51,52,55,52,50,93,44,91,45,55,57,46,50,48,48,57,51,54,44,52,51,46,52,53,48,52,50,50,93,44,91,45,55,57,46,48,55,48,52,53,50,44,52,51,46,50,54,50,52,53,53,93,44,91,45,55,57,46,48,49,57,50,50,56,44,52,51,46,48,54,55,57,53,56,93,44,91,45,55,56,46,56,51,57,51,53,44,52,51,46,48,49,57,52,53,51,93,44,91,45,55,56,46,56,48,50,48,53,49,44,52,51,46,48,54,53,55,56,49,93,44,91,45,55,56,46,52,54,52,52,52,57,44,52,51,46,48,56,56,55,48,51,93,44,91,45,55,56,46,52,54,53,53,48,53,44,52,51,46,49,50,56,54,49,57,93,44,91,45,55,56,46,52,54,56,55,49,49,44,52,51,46,54,51,51,52,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,110,110,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,57,50,48,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,50,53,52,54,51,51,44,52,51,46,51,49,52,54,55,53,93,44,91,45,55,51,46,50,55,52,50,57,52,44,52,50,46,57,52,51,54,53,50,93,44,91,45,55,51,46,50,54,52,56,50,55,44,52,50,46,55,52,53,56,53,49,93,44,91,45,55,51,46,48,50,51,48,49,53,44,52,50,46,55,52,49,49,51,53,93,44,91,45,55,50,46,57,51,48,50,53,56,44,52,50,46,55,51,57,50,57,51,93,44,91,45,55,50,46,57,50,49,51,55,54,44,52,50,46,57,50,54,55,57,50,93,44,91,45,55,51,46,48,48,56,48,54,51,44,52,50,46,57,51,48,48,56,55,93,44,91,45,55,50,46,57,57,54,57,44,52,51,46,49,49,57,48,57,53,93,44,91,45,55,50,46,56,54,56,55,51,55,44,52,51,46,49,49,51,49,55,93,44,91,45,55,50,46,56,49,57,51,54,56,44,52,51,46,50,53,53,52,57,56,93,44,91,45,55,50,46,56,54,55,57,48,50,44,52,51,46,51,48,48,55,52,50,93,44,91,45,55,51,46,50,53,52,54,51,51,44,52,51,46,51,49,52,54,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,50,57,49,44,34,98,101,100,115,34,58,53,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,56,48,50,49,53,44,51,48,46,49,50,49,50,52,93,44,91,45,56,49,46,54,55,57,54,50,54,44,51,48,46,49,57,48,52,57,53,93,44,91,45,56,50,46,48,52,57,52,49,49,44,51,48,46,49,56,54,57,51,51,93,44,91,45,56,50,46,48,52,57,52,50,53,44,51,48,46,49,52,51,49,51,54,93,44,91,45,56,50,46,48,52,57,50,52,52,44,50,57,46,55,49,56,54,55,93,44,91,45,56,49,46,57,51,57,52,50,55,44,50,57,46,55,52,55,52,57,55,93,44,91,45,56,49,46,56,49,50,52,51,44,50,57,46,56,51,54,52,57,93,44,91,45,56,49,46,53,56,49,50,48,55,44,50,57,46,56,52,48,49,55,54,93,44,91,45,56,49,46,54,49,48,49,52,54,44,50,57,46,57,55,48,50,51,53,93,44,91,45,56,49,46,54,56,56,56,55,54,44,51,48,46,48,50,56,53,54,54,93,44,91,45,56,49,46,54,56,48,50,49,53,44,51,48,46,49,50,49,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,87,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,54,53,53,56,44,34,98,101,100,115,34,58,50,51,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,55,53,49,50,55,51,44,51,54,46,48,55,48,56,51,52,93,44,91,45,55,56,46,54,57,57,51,49,54,44,51,54,46,48,49,49,52,52,56,93,44,91,45,55,56,46,56,50,57,57,54,53,44,51,53,46,56,54,54,57,55,56,93,44,91,45,55,56,46,57,48,54,48,55,49,44,51,53,46,56,54,56,48,57,54,93,44,91,45,55,56,46,57,57,53,48,53,57,44,51,53,46,54,49,48,49,51,53,93,44,91,45,55,56,46,57,49,52,55,51,52,44,51,53,46,53,56,51,54,55,50,93,44,91,45,55,56,46,55,48,56,57,48,50,44,51,53,46,53,49,57,52,53,56,93,44,91,45,55,56,46,52,57,50,49,52,57,44,51,53,46,54,56,54,57,48,51,93,44,91,45,55,56,46,50,53,53,57,55,51,44,51,53,46,56,49,56,49,50,93,44,91,45,55,56,46,52,50,54,56,54,52,44,51,53,46,57,55,53,48,49,50,93,44,91,45,55,56,46,53,52,54,52,49,52,44,51,54,46,48,50,49,56,50,54,93,44,91,45,55,56,46,55,53,49,50,55,51,44,51,54,46,48,55,48,56,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,50,48,51,55,44,34,98,101,100,115,34,58,52,55,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,49,57,52,53,44,51,57,46,51,48,53,49,53,51,93,44,91,45,56,52,46,56,50,48,49,53,55,44,51,57,46,49,48,53,52,56,57,93,44,91,45,56,52,46,55,53,48,51,52,53,44,51,57,46,49,52,55,54,50,50,93,44,91,45,56,52,46,54,50,51,52,56,56,44,51,57,46,48,55,52,50,56,50,93,44,91,45,56,52,46,53,48,54,49,54,49,44,51,57,46,48,57,53,49,55,55,93,44,91,45,56,52,46,51,49,57,57,56,53,44,51,57,46,48,50,49,53,51,52,93,44,91,45,56,52,46,50,53,57,52,51,49,44,51,57,46,50,55,48,55,57,54,93,44,91,45,56,52,46,51,53,51,50,48,57,44,51,57,46,50,57,50,50,56,55,93,44,91,45,56,52,46,56,49,57,52,53,44,51,57,46,51,48,53,49,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,66,101,114,103,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,57,57,57,57,44,34,98,101,100,115,34,58,50,56,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,50,49,49,50,50,52,44,52,49,46,49,51,51,55,49,52,93,44,91,45,55,52,46,50,55,50,50,50,54,44,52,49,46,48,49,55,57,51,53,93,44,91,45,55,52,46,49,52,49,48,57,52,44,52,48,46,57,54,54,51,55,52,93,44,91,45,55,52,46,49,51,48,48,49,54,44,52,48,46,56,49,57,57,51,56,93,44,91,45,55,52,46,49,52,55,53,50,57,44,52,48,46,55,56,54,52,57,49,93,44,91,45,55,51,46,57,56,52,55,57,52,44,52,48,46,55,57,55,54,56,55,93,44,91,45,55,51,46,57,51,51,56,48,56,44,52,48,46,56,56,50,50,49,52,93,44,91,45,55,51,46,57,49,55,57,48,53,44,52,48,46,57,49,55,53,55,55,93,44,91,45,55,51,46,56,57,51,57,55,57,44,52,48,46,57,57,55,50,48,53,93,44,91,45,55,52,46,50,49,49,50,50,52,44,52,49,46,49,51,51,55,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,52,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,54,55,55,51,50,50,93,44,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,48,53,48,55,53,55,93,44,91,45,49,49,53,46,56,57,51,56,53,55,44,51,56,46,48,53,48,53,51,49,93,44,91,45,49,49,53,46,56,57,54,57,50,53,44,51,54,46,56,52,50,48,56,53,93,44,91,45,49,49,53,46,55,52,48,56,52,54,44,51,54,46,56,53,51,48,56,52,93,44,91,45,49,49,52,46,55,54,50,53,48,55,44,51,54,46,56,53,51,52,55,51,93,44,91,45,49,49,52,46,48,53,48,51,53,52,44,51,54,46,56,52,51,49,52,49,93,44,91,45,49,49,52,46,48,53,48,48,53,50,44,51,55,46,48,48,48,49,57,49,93,44,91,45,49,49,52,46,48,53,50,51,53,44,51,55,46,54,48,52,55,55,54,93,44,91,45,49,49,52,46,48,52,57,57,55,56,44,51,56,46,49,52,56,55,54,51,93,44,91,45,49,49,52,46,48,52,57,57,55,55,44,51,56,46,53,55,50,57,55,52,93,44,91,45,49,49,52,46,48,52,57,56,48,55,44,51,56,46,54,55,55,51,54,53,93,44,91,45,49,49,53,46,48,48,48,56,52,54,44,51,56,46,54,55,55,51,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,56,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,48,34,44,34,78,65,77,69,34,58,34,78,111,109,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,50,53,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,54,52,46,52,54,49,52,52,57,44,54,54,46,54,50,54,53,48,57,93,44,91,45,49,54,53,46,52,51,52,52,52,44,54,54,46,52,55,53,50,51,93,44,91,45,49,54,54,46,55,49,57,52,55,52,44,54,54,46,49,52,56,48,52,54,93,44,91,45,49,54,55,46,53,50,48,56,50,51,44,54,53,46,56,55,56,49,53,50,93,44,91,45,49,54,56,46,49,53,53,49,50,57,44,54,53,46,55,50,56,51,53,49,93,44,91,45,49,54,56,46,50,51,49,56,56,55,44,54,53,46,54,50,50,53,54,55,93,44,91,45,49,54,56,46,49,54,55,53,56,52,44,54,53,46,53,52,54,57,48,50,93,44,91,45,49,54,55,46,52,48,48,56,57,49,44,54,53,46,51,52,55,50,55,93,44,91,45,49,54,55,46,48,55,48,51,51,49,44,54,53,46,51,50,55,52,57,49,93,44,91,45,49,54,55,46,48,56,52,51,51,57,44,54,53,46,49,53,53,54,57,53,93,44,91,45,49,54,54,46,57,55,56,57,54,52,44,54,53,46,48,54,57,52,49,93,44,91,45,49,54,54,46,53,56,57,49,56,53,44,54,52,46,57,48,56,50,57,49,93,44,91,45,49,54,54,46,53,57,48,49,54,51,44,54,52,46,55,51,56,57,52,56,93,44,91,45,49,54,54,46,53,48,55,56,52,49,44,54,52,46,54,51,49,51,55,51,93,44,91,45,49,54,54,46,50,56,49,51,56,56,44,54,52,46,53,52,52,57,53,54,93,44,91,45,49,54,53,46,51,51,53,57,49,56,44,54,52,46,52,52,52,52,49,55,93,44,91,45,49,54,53,46,48,51,50,50,48,53,44,54,52,46,51,56,55,57,56,55,93,44,91,45,49,54,52,46,55,53,52,56,48,49,44,54,52,46,52,48,55,56,50,52,93,44,91,45,49,54,52,46,51,53,53,51,53,53,44,54,52,46,53,48,56,52,52,55,93,44,91,45,49,54,51,46,54,53,54,57,53,49,44,54,52,46,53,50,49,57,52,93,44,91,45,49,54,51,46,51,54,51,55,53,52,44,54,52,46,52,52,53,54,52,50,93,44,91,45,49,54,51,46,50,52,49,57,51,50,44,54,52,46,51,54,48,55,52,51,93,44,91,45,49,54,50,46,55,57,53,56,48,50,44,54,52,46,50,55,53,54,55,52,93,44,91,45,49,54,50,46,53,49,55,56,55,50,44,54,52,46,51,56,52,57,48,54,93,44,91,45,49,54,50,46,52,56,54,54,57,49,44,54,52,46,52,55,48,56,57,55,93,44,91,45,49,54,50,46,51,49,51,52,57,49,44,54,52,46,53,52,50,55,56,57,93,44,91,45,49,54,49,46,53,57,48,56,52,44,54,52,46,51,51,53,53,52,49,93,44,91,45,49,54,49,46,52,49,51,56,57,57,44,54,52,46,51,53,56,53,56,55,93,44,91,45,49,54,49,46,48,55,53,52,48,50,44,54,52,46,50,48,54,54,53,50,93,44,91,45,49,54,49,46,48,52,53,54,54,44,54,52,46,48,50,50,52,54,55,93,44,91,45,49,54,48,46,56,56,54,50,44,54,51,46,55,55,49,51,57,55,93,44,91,45,49,54,49,46,51,49,52,51,53,56,44,54,51,46,53,49,57,50,50,57,93,44,91,45,49,54,49,46,56,52,48,52,48,53,44,54,51,46,52,57,51,50,56,56,93,44,91,45,49,54,49,46,57,53,54,57,54,44,54,51,46,53,53,55,50,48,57,93,44,91,45,49,54,50,46,50,50,50,55,52,52,44,54,51,46,53,57,54,57,49,52,93,44,91,45,49,54,50,46,51,57,52,51,53,57,44,54,51,46,54,56,56,51,48,52,93,44,91,45,49,54,50,46,53,56,52,51,49,57,44,54,51,46,54,57,49,51,57,50,93,44,91,45,49,54,50,46,56,50,54,52,52,49,44,54,51,46,53,55,54,51,54,93,44,91,45,49,54,50,46,54,55,57,56,51,49,44,54,51,46,52,57,49,54,50,54,93,44,91,45,49,54,50,46,52,51,55,55,55,51,44,54,51,46,52,57,49,57,57,52,93,44,91,45,49,54,50,46,54,55,49,56,49,51,44,54,51,46,51,49,50,56,50,53,93,44,91,45,49,54,50,46,51,56,51,48,56,50,44,54,51,46,50,55,49,56,49,54,93,44,91,45,49,54,50,46,48,48,49,55,57,56,44,54,51,46,48,57,56,53,51,54,93,44,91,45,49,54,50,46,48,48,49,55,54,57,44,54,51,46,48,49,49,57,49,57,93,44,91,45,49,54,48,46,56,53,55,57,57,44,54,51,46,48,49,49,57,53,51,93,44,91,45,49,54,48,46,56,53,56,48,48,52,44,54,51,46,50,55,49,56,51,56,93,44,91,45,49,54,48,46,54,54,55,51,54,49,44,54,51,46,50,55,49,56,52,53,93,44,91,45,49,54,48,46,54,57,48,50,57,52,44,54,51,46,53,51,49,54,56,57,93,44,91,45,49,54,48,46,52,57,55,51,56,49,44,54,51,46,54,49,56,51,52,51,93,44,91,45,49,54,48,46,49,49,49,53,50,50,44,54,51,46,54,49,56,51,53,49,93,44,91,45,49,54,48,46,49,49,49,52,57,56,44,54,51,46,55,48,52,57,55,50,93,44,91,45,49,53,57,46,57,51,50,55,51,49,44,54,51,46,55,57,49,53,56,57,93,44,91,45,49,53,57,46,55,51,55,52,53,49,44,54,51,46,55,57,49,53,57,49,93,44,91,45,49,53,57,46,55,51,55,52,55,53,44,54,52,46,48,53,49,52,53,57,93,44,91,45,49,53,57,46,57,52,55,50,56,56,44,54,52,46,48,53,49,52,53,57,93,44,91,45,49,53,57,46,57,54,50,50,57,44,54,52,46,55,52,52,51,55,55,93,44,91,45,49,53,57,46,55,55,52,56,57,55,44,54,52,46,55,52,52,51,56,50,93,44,91,45,49,53,57,46,55,55,52,57,50,49,44,54,52,46,57,49,55,53,54,53,93,44,91,45,49,53,57,46,53,55,50,49,55,51,44,54,52,46,57,49,55,53,57,55,93,44,91,45,49,53,57,46,53,56,50,55,51,54,44,54,53,46,50,54,52,48,50,54,93,44,91,45,49,53,57,46,51,55,55,51,54,53,44,54,53,46,50,54,52,48,51,51,93,44,91,45,49,53,57,46,51,56,53,53,55,56,44,54,53,46,53,50,51,56,51,53,93,44,91,45,49,53,57,46,53,57,51,53,48,54,44,54,53,46,53,50,51,56,51,53,93,44,91,45,49,53,57,46,56,48,49,54,57,50,44,54,53,46,52,51,55,50,51,49,93,44,91,45,49,54,49,46,53,52,54,56,57,50,44,54,53,46,52,51,55,50,48,51,93,44,91,45,49,54,51,46,55,53,53,51,57,49,44,54,53,46,52,51,55,49,54,53,93,44,91,45,49,54,51,46,55,53,53,52,48,55,44,54,53,46,54,49,48,51,54,55,93,44,91,45,49,54,51,46,57,54,51,52,57,56,44,54,53,46,54,49,48,51,54,51,93,44,91,45,49,54,51,46,57,54,51,53,49,54,44,54,53,46,55,56,51,53,54,49,93,44,91,45,49,54,52,46,50,52,52,49,50,55,44,54,53,46,55,56,51,53,53,51,93,44,91,45,49,54,52,46,50,52,52,49,57,49,44,54,54,46,49,50,57,57,52,54,93,44,91,45,49,54,52,46,51,49,56,57,49,51,44,54,54,46,49,50,57,57,52,52,93,44,91,45,49,54,52,46,51,49,56,57,51,54,44,54,54,46,52,55,54,51,49,57,93,44,91,45,49,54,52,46,52,54,49,52,52,57,44,54,54,46,54,50,54,53,48,57,93,93,93,44,91,91,91,45,49,55,49,46,57,53,52,54,55,50,44,54,51,46,53,50,48,57,49,57,93,44,91,45,49,55,49,46,56,56,52,56,56,55,44,54,51,46,51,55,55,53,57,93,44,91,45,49,55,49,46,55,55,50,50,56,52,44,54,51,46,51,49,53,51,50,55,93,44,91,45,49,55,49,46,52,56,49,57,51,53,44,54,51,46,50,53,52,53,51,49,93,44,91,45,49,55,49,46,50,53,49,51,57,56,44,54,51,46,50,57,50,53,54,56,93,44,91,45,49,55,49,46,48,54,54,56,51,54,44,54,51,46,51,55,49,49,48,56,93,44,91,45,49,55,48,46,57,48,56,50,52,57,44,54,51,46,51,54,57,57,52,53,93,44,91,45,49,55,48,46,53,49,53,50,55,54,44,54,51,46,50,56,55,57,49,93,44,91,45,49,55,48,46,51,50,56,48,50,50,44,54,51,46,49,51,56,55,50,52,93,44,91,45,49,55,48,46,49,49,53,52,49,54,44,54,51,46,49,50,55,50,52,55,93,44,91,45,49,54,57,46,57,48,49,52,48,56,44,54,51,46,48,51,55,51,54,53,93,44,91,45,49,54,57,46,56,51,56,57,53,50,44,54,50,46,57,50,53,56,56,57,93,44,91,45,49,54,57,46,53,57,49,48,51,54,44,54,50,46,56,56,55,56,54,55,93,44,91,45,49,54,57,46,52,49,57,56,54,49,44,54,50,46,57,55,51,56,53,54,93,44,91,45,49,54,57,46,52,53,49,48,56,51,44,54,51,46,48,51,56,53,53,49,93,44,91,45,49,54,57,46,50,56,50,51,50,54,44,54,51,46,49,49,52,52,48,53,93,44,91,45,49,54,56,46,57,50,50,55,56,44,54,51,46,48,57,57,53,54,55,93,44,91,45,49,54,56,46,55,51,51,52,54,44,54,51,46,49,51,49,53,53,51,93,44,91,45,49,54,56,46,54,48,57,50,54,49,44,54,51,46,50,50,57,51,54,50,93,44,91,45,49,54,56,46,54,52,50,55,54,56,44,54,51,46,51,52,52,56,56,93,44,91,45,49,54,57,46,52,53,53,53,51,57,44,54,51,46,52,49,53,48,50,93,44,91,45,49,54,57,46,54,48,50,50,56,53,44,54,51,46,52,56,48,54,51,53,93,44,91,45,49,54,57,46,57,50,54,53,57,57,44,54,51,46,53,50,54,55,51,57,93,44,91,45,49,54,57,46,57,56,53,54,50,56,44,54,51,46,54,50,50,57,53,57,93,44,91,45,49,55,48,46,50,57,54,56,52,54,44,54,51,46,55,53,53,53,55,50,93,44,91,45,49,55,48,46,53,48,52,48,51,44,54,51,46,55,53,51,52,93,44,91,45,49,55,48,46,57,53,57,49,53,53,44,54,51,46,54,50,53,56,56,56,93,44,91,45,49,55,49,46,53,51,53,54,48,51,44,54,51,46,55,50,49,56,55,53,93,44,91,45,49,55,49,46,53,52,56,56,51,44,54,51,46,56,48,48,52,54,49,93,44,91,45,49,55,49,46,55,55,54,51,55,50,44,54,51,46,56,51,55,55,50,52,93,44,91,45,49,55,49,46,57,53,52,54,55,50,44,54,51,46,53,50,48,57,49,57,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,77,99,67,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,49,56,54,50,44,52,55,46,57,53,55,52,53,55,93,44,91,45,49,48,54,46,50,54,48,57,51,50,44,52,55,46,56,54,56,52,51,49,93,44,91,45,49,48,54,46,50,54,49,49,50,49,44,52,55,46,53,50,57,48,53,50,93,44,91,45,49,48,54,46,50,57,56,49,53,56,44,52,55,46,51,53,52,50,57,56,93,44,91,45,49,48,54,46,49,55,48,54,55,53,44,52,55,46,51,53,52,52,57,53,93,44,91,45,49,48,54,46,49,55,48,52,50,44,52,55,46,49,56,48,56,50,54,93,44,91,45,49,48,54,46,48,56,54,55,55,55,44,52,55,46,49,56,48,57,51,56,93,44,91,45,49,48,53,46,57,53,57,56,57,55,44,52,55,46,48,57,50,57,54,56,93,44,91,45,49,48,53,46,56,51,51,48,52,52,44,52,55,46,49,56,49,48,57,50,93,44,91,45,49,48,53,46,52,48,54,51,48,57,44,52,55,46,49,56,49,53,56,51,93,44,91,45,49,48,53,46,52,48,54,53,56,49,44,52,55,46,53,50,57,53,51,52,93,44,91,45,49,48,53,46,51,54,51,50,54,50,44,52,55,46,55,57,48,52,49,57,93,44,91,45,49,48,53,46,50,51,52,55,55,49,44,52,55,46,55,57,48,53,48,50,93,44,91,45,49,48,53,46,49,57,53,49,50,50,44,52,55,46,56,54,56,48,56,49,93,44,91,45,49,48,53,46,49,57,52,55,56,51,44,52,56,46,48,54,54,54,49,55,93,44,91,45,49,48,53,46,50,50,56,57,57,44,52,56,46,48,56,57,50,56,52,93,44,91,45,49,48,53,46,53,57,53,48,50,55,44,52,56,46,48,56,49,55,56,93,44,91,45,49,48,53,46,56,52,51,56,57,49,44,52,56,46,48,49,48,50,56,57,93,44,91,45,49,48,54,46,50,50,57,51,48,50,44,52,56,46,48,50,54,52,49,54,93,44,91,45,49,48,54,46,51,57,52,49,54,51,44,52,56,46,48,54,52,55,50,54,93,44,91,45,49,48,54,46,52,49,56,54,50,44,52,55,46,57,53,55,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,117,99,104,97,110,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,50,53,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,56,49,54,54,49,44,52,50,46,54,52,50,48,53,54,93,44,91,45,57,50,46,48,54,52,55,54,54,44,52,50,46,50,57,55,50,53,57,93,44,91,45,57,49,46,56,51,49,48,56,57,44,52,50,46,50,57,57,48,54,51,93,44,91,45,57,49,46,53,57,54,57,56,49,44,52,50,46,50,57,54,52,48,56,93,44,91,45,57,49,46,54,48,55,48,53,57,44,52,50,46,54,52,51,57,55,51,93,44,91,45,57,50,46,48,56,49,54,54,49,44,52,50,46,54,52,50,48,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,117,80,97,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,49,55,52,51,44,34,98,101,100,115,34,58,49,57,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,50,56,57,55,51,44,52,49,46,54,56,53,50,52,50,93,44,91,45,56,55,46,57,49,52,50,54,52,44,52,49,46,55,49,54,53,57,56,93,44,91,45,56,55,46,57,50,48,52,55,54,44,52,49,46,57,57,51,56,56,54,93,44,91,45,56,56,46,50,54,50,56,55,53,44,52,49,46,57,56,54,51,55,56,93,44,91,45,56,56,46,50,54,49,57,53,50,44,52,49,46,55,50,52,54,53,50,93,44,91,45,56,56,46,50,54,49,50,55,53,44,52,49,46,55,50,52,54,53,54,93,44,91,45,56,56,46,48,50,56,57,55,51,44,52,49,46,54,56,53,50,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,97,108,108,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,52,56,48,51,44,52,51,46,52,55,55,56,49,53,93,44,91,45,49,48,52,46,48,53,51,48,50,56,44,52,51,46,48,48,48,53,56,53,93,44,91,45,49,48,51,46,53,48,53,49,44,52,51,46,48,48,48,55,55,93,44,91,45,49,48,51,46,48,48,48,54,48,57,44,52,51,46,48,48,48,55,53,49,93,44,91,45,49,48,51,46,48,48,48,57,49,51,44,52,51,46,52,55,54,56,52,56,93,44,91,45,49,48,52,46,48,53,52,56,48,51,44,52,51,46,52,55,55,56,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,75,105,116,116,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,51,55,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,50,56,55,50,50,44,52,57,46,48,48,48,53,54,50,93,44,91,45,57,55,46,50,51,52,49,50,56,44,52,56,46,57,52,55,56,57,56,93,44,91,45,57,55,46,49,48,53,52,52,50,44,52,56,46,54,56,57,54,52,56,93,44,91,45,57,55,46,49,54,51,51,53,53,44,52,56,46,53,52,51,57,54,55,93,44,91,45,57,54,46,51,56,55,56,51,53,44,52,56,46,53,52,52,51,48,56,93,44,91,45,57,54,46,52,48,53,52,48,56,44,52,56,46,57,57,57,57,56,51,93,44,91,45,57,55,46,50,50,56,55,50,50,44,52,57,46,48,48,48,53,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,57,34,44,34,78,65,77,69,34,58,34,79,99,111,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,48,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,52,55,48,51,49,44,51,51,46,57,48,54,49,57,56,93,44,91,45,56,51,46,53,48,53,57,50,56,44,51,51,46,56,49,55,55,54,93,44,91,45,56,51,46,52,48,54,49,56,57,44,51,51,46,54,57,56,51,48,55,93,44,91,45,56,51,46,50,56,48,51,52,44,51,51,46,55,54,49,55,55,52,93,44,91,45,56,51,46,50,55,53,57,51,51,44,51,51,46,56,52,55,57,55,55,93,44,91,45,56,51,46,53,51,55,51,56,53,44,51,51,46,57,54,53,57,49,50,93,44,91,45,56,51,46,54,52,55,48,51,49,44,51,51,46,57,48,54,49,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,57,51,34,44,34,78,65,77,69,34,58,34,87,105,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,49,57,56,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,49,51,52,49,55,49,44,50,57,46,52,52,49,55,53,49,93,44,91,45,57,56,46,52,48,55,51,51,54,44,50,57,46,49,49,52,52,51,53,93,44,91,45,57,56,46,49,57,48,57,57,49,44,50,56,46,56,56,50,51,51,51,93,44,91,45,57,55,46,55,50,56,52,52,51,44,50,57,46,50,50,49,55,52,56,93,44,91,45,57,55,46,56,52,48,51,56,51,44,50,57,46,51,55,54,55,57,49,93,44,91,45,57,56,46,49,50,50,53,55,52,44,50,57,46,51,55,56,53,52,57,93,44,91,45,57,56,46,49,51,52,49,55,49,44,50,57,46,52,52,49,55,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,70,105,108,108,109,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,55,52,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,50,52,55,56,44,52,48,46,54,57,56,53,51,55,93,44,91,45,57,55,46,56,50,52,49,49,52,44,52,48,46,51,53,48,53,52,49,93,44,91,45,57,55,46,56,50,48,56,49,54,44,52,48,46,51,53,48,53,52,53,93,44,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,44,91,45,57,55,46,51,54,56,52,48,49,44,52,48,46,54,57,56,54,50,53,93,44,91,45,57,55,46,56,50,52,55,56,44,52,48,46,54,57,56,53,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,50,48,50,51,53,44,51,48,46,51,48,51,53,52,93,44,91,45,56,51,46,52,54,56,55,54,56,44,51,48,46,51,48,52,50,49,50,93,44,91,45,56,51,46,51,54,55,50,54,44,51,48,46,50,54,48,52,52,93,44,91,45,56,51,46,50,52,55,50,53,51,44,51,48,46,50,54,48,54,55,93,44,91,45,56,51,46,49,55,48,57,54,57,44,51,48,46,51,56,53,50,50,53,93,44,91,45,56,51,46,50,50,48,48,56,55,44,51,48,46,52,50,50,52,56,52,93,44,91,45,56,51,46,50,55,50,54,49,50,44,51,48,46,54,50,55,54,56,55,93,44,91,45,56,51,46,51,48,57,50,52,57,44,51,48,46,54,51,52,52,48,54,93,44,91,45,56,51,46,51,52,48,56,53,50,44,51,48,46,54,51,54,51,51,54,93,44,91,45,56,51,46,51,53,55,55,48,51,44,51,48,46,54,51,55,51,54,93,44,91,45,56,51,46,54,49,49,55,50,44,51,48,46,54,53,49,50,53,56,93,44,91,45,56,51,46,54,48,52,49,56,54,44,51,48,46,53,56,49,57,49,54,93,44,91,45,56,51,46,55,51,54,57,53,52,44,51,48,46,53,48,55,53,54,57,93,44,91,45,56,51,46,55,50,49,55,50,44,51,48,46,52,51,52,51,53,52,93,44,91,45,56,51,46,56,50,48,50,51,53,44,51,48,46,51,48,51,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,52,53,51,44,34,98,101,100,115,34,58,50,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,57,57,57,53,53,54,44,49,56,46,51,56,48,48,54,53,93,44,91,45,54,53,46,57,52,50,52,50,57,44,49,56,46,50,57,51,52,54,57,93,44,91,45,54,53,46,57,49,56,53,51,53,44,49,56,46,50,55,48,49,51,93,44,91,45,54,53,46,57,49,57,50,55,56,44,49,56,46,52,48,50,57,57,51,93,44,91,45,54,53,46,57,57,51,52,48,49,44,49,56,46,53,49,54,53,57,56,93,44,91,45,54,54,46,48,51,51,57,55,44,49,56,46,53,49,52,50,54,57,93,44,91,45,54,53,46,57,57,57,53,53,54,44,49,56,46,51,56,48,48,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,83,117,108,108,105,118,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,57,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,48,52,49,52,49,44,51,57,46,50,53,57,52,53,56,93,44,91,45,56,55,46,54,50,56,55,57,56,44,51,57,46,49,53,55,53,49,51,93,44,91,45,56,55,46,53,50,50,57,51,57,44,51,56,46,57,48,50,51,57,93,44,91,45,56,55,46,50,52,49,48,50,55,44,51,56,46,57,48,55,56,55,52,93,44,91,45,56,55,46,50,52,48,55,51,55,44,51,57,46,49,55,49,55,55,51,93,44,91,45,56,55,46,50,52,48,51,55,57,44,51,57,46,50,53,57,48,54,52,93,44,91,45,56,55,46,54,48,52,49,52,49,44,51,57,46,50,53,57,52,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,50,34,44,34,78,65,77,69,34,58,34,76,97,32,80,97,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,48,49,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,54,50,55,49,50,53,44,51,51,46,52,51,51,53,53,52,93,44,91,45,49,49,52,46,55,50,48,48,54,53,44,51,51,46,52,48,55,56,57,49,93,44,91,45,49,49,52,46,54,55,55,48,51,50,44,51,51,46,50,55,48,49,54,57,93,44,91,45,49,49,52,46,55,48,55,56,57,54,44,51,51,46,48,57,55,52,51,49,93,44,91,45,49,49,52,46,54,55,48,56,48,51,44,51,51,46,48,51,55,57,56,51,93,44,91,45,49,49,52,46,53,49,54,56,52,50,44,51,51,46,48,50,55,56,56,54,93,44,91,45,49,49,52,46,50,54,56,56,44,51,51,46,48,50,57,57,54,49,93,44,91,45,49,49,52,46,50,54,56,56,48,56,44,51,51,46,52,54,52,52,48,50,93,44,91,45,49,49,51,46,57,53,55,53,49,52,44,51,51,46,52,54,52,52,49,51,93,44,91,45,49,49,51,46,57,53,55,52,56,57,44,51,51,46,51,55,55,51,54,50,93,44,91,45,49,49,51,46,51,51,53,48,52,56,44,51,51,46,51,55,55,52,54,57,93,44,91,45,49,49,51,46,51,51,51,55,53,51,44,51,51,46,57,57,57,50,50,55,93,44,91,45,49,49,51,46,51,51,51,53,48,56,44,51,52,46,51,49,55,56,55,55,93,44,91,45,49,49,51,46,53,51,57,53,50,52,44,51,52,46,51,48,54,51,55,55,93,44,91,45,49,49,51,46,54,48,54,48,57,51,44,51,52,46,50,50,57,51,51,52,93,44,91,45,49,49,52,46,48,51,49,49,51,50,44,51,52,46,50,53,57,56,49,57,93,44,91,45,49,49,52,46,49,51,56,50,56,50,44,51,52,46,51,48,51,50,51,93,44,91,45,49,49,52,46,50,53,52,49,52,49,44,51,52,46,49,55,51,56,51,93,44,91,45,49,49,52,46,52,51,53,52,50,57,44,51,52,46,48,55,57,55,50,55,93,44,91,45,49,49,52,46,53,51,52,49,52,54,44,51,51,46,57,50,53,49,56,55,93,44,91,45,49,49,52,46,52,57,54,52,56,57,44,51,51,46,54,57,54,57,48,49,93,44,91,45,49,49,52,46,53,50,52,50,49,53,44,51,51,46,53,53,51,48,54,56,93,44,91,45,49,49,52,46,54,50,55,49,50,53,44,51,51,46,52,51,51,53,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,66,114,111,111,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,50,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,51,54,49,53,56,44,51,49,46,48,51,55,54,55,57,93,44,91,45,56,51,46,55,52,51,55,50,57,44,51,48,46,54,53,56,51,57,54,93,44,91,45,56,51,46,54,49,49,55,50,44,51,48,46,54,53,49,50,53,56,93,44,91,45,56,51,46,51,53,55,55,48,51,44,51,48,46,54,51,55,51,54,93,44,91,45,56,51,46,52,56,50,52,54,49,44,51,48,46,55,53,54,57,51,49,93,44,91,45,56,51,46,51,55,48,56,57,56,44,51,48,46,56,56,52,56,50,56,93,44,91,45,56,51,46,52,55,53,54,49,55,44,51,49,46,48,51,49,57,54,52,93,44,91,45,56,51,46,53,55,52,56,53,55,44,51,49,46,48,55,56,49,51,53,93,44,91,45,56,51,46,55,51,54,49,53,56,44,51,49,46,48,51,55,54,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,54,34,44,34,78,65,77,69,34,58,34,65,108,101,117,116,105,97,110,115,32,87,101,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,53,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,55,56,46,51,48,55,55,56,55,44,53,49,46,56,56,49,54,48,56,93,44,91,45,49,55,56,46,49,53,49,54,54,44,53,49,46,55,55,51,55,53,54,93,44,91,45,49,55,56,46,49,56,57,51,54,56,44,53,49,46,54,51,51,54,55,51,93,44,91,45,49,55,55,46,57,50,56,50,53,55,44,53,49,46,53,52,49,56,57,53,93,44,91,45,49,55,55,46,55,50,55,55,49,51,44,53,49,46,54,49,48,57,54,52,93,44,91,45,49,55,55,46,52,53,50,48,51,51,44,53,49,46,54,52,48,50,48,49,93,44,91,45,49,55,55,46,50,56,49,48,57,55,44,53,49,46,54,50,55,54,49,50,93,44,91,45,49,55,55,46,48,55,57,57,56,53,44,53,49,46,54,55,52,50,51,49,93,44,91,45,49,55,54,46,57,54,57,54,49,53,44,53,49,46,53,51,56,57,56,53,93,44,91,45,49,55,54,46,54,57,56,55,51,49,44,53,49,46,53,55,56,52,50,56,93,44,91,45,49,55,54,46,53,51,57,55,54,54,44,53,49,46,54,52,56,52,51,56,93,44,91,45,49,55,54,46,50,53,53,49,56,54,44,53,49,46,54,57,53,51,55,54,93,44,91,45,49,55,53,46,56,52,57,55,53,52,44,53,49,46,55,57,53,52,57,51,93,44,91,45,49,55,53,46,56,48,50,52,50,53,44,53,49,46,56,54,48,52,49,53,93,44,91,45,49,55,53,46,52,48,57,57,56,50,44,53,49,46,57,51,48,49,56,52,93,44,91,45,49,55,53,46,51,52,56,55,49,57,44,53,49,46,57,54,50,53,56,53,93,44,91,45,49,55,53,46,48,53,54,51,54,44,53,49,46,57,52,56,49,53,57,93,44,91,45,49,55,52,46,56,55,54,55,51,50,44,53,49,46,57,56,53,57,48,56,93,44,91,45,49,55,52,46,55,52,53,48,54,53,44,53,49,46,57,53,53,54,52,54,93,44,91,45,49,55,52,46,52,56,48,56,57,49,44,53,49,46,57,53,50,52,57,55,93,44,91,45,49,55,52,46,51,49,51,57,55,52,44,53,50,46,48,51,54,50,50,54,93,44,91,45,49,55,52,46,48,53,54,53,48,51,44,53,50,46,48,53,49,54,51,51,93,44,91,45,49,55,51,46,57,51,53,49,54,49,44,53,50,46,48,48,52,52,52,50,93,44,91,45,49,55,51,46,55,49,48,48,51,52,44,53,50,46,48,48,54,56,52,93,44,91,45,49,55,51,46,52,56,55,51,49,56,44,53,49,46,57,55,49,49,56,52,93,44,91,45,49,55,51,46,51,48,52,53,50,50,44,53,50,46,48,48,53,52,50,54,93,44,91,45,49,55,51,46,49,54,54,55,48,51,44,53,49,46,57,52,54,55,48,54,93,44,91,45,49,55,51,46,48,55,57,54,55,50,44,53,50,46,48,49,55,57,49,53,93,44,91,45,49,55,50,46,57,50,51,48,53,56,44,53,50,46,48,50,52,49,54,93,44,91,45,49,55,50,46,56,54,54,54,52,49,44,53,50,46,49,52,56,57,51,51,93,44,91,45,49,55,51,46,52,52,48,55,54,52,44,53,50,46,49,54,56,55,54,52,93,44,91,45,49,55,51,46,53,48,54,51,48,51,44,53,50,46,50,49,51,49,51,56,93,44,91,45,49,55,51,46,55,51,50,49,48,52,44,53,50,46,49,56,51,50,53,52,93,44,91,45,49,55,51,46,57,57,48,52,55,50,44,53,50,46,49,56,51,49,52,51,93,44,91,45,49,55,51,46,57,48,50,56,51,52,44,53,50,46,51,49,57,50,50,56,93,44,91,45,49,55,51,46,57,52,48,50,50,54,44,53,50,46,51,57,54,50,53,54,93,44,91,45,49,55,52,46,49,49,48,53,56,50,44,53,50,46,52,54,56,51,50,49,93,44,91,45,49,55,52,46,51,49,50,55,51,51,44,53,50,46,52,53,54,55,49,50,93,44,91,45,49,55,52,46,55,57,54,54,50,53,44,53,50,46,49,53,51,52,55,93,44,91,45,49,55,52,46,57,50,53,50,51,51,44,53,50,46,49,54,51,57,49,93,44,91,45,49,55,53,46,50,57,54,54,49,55,44,53,50,46,48,56,56,56,50,93,44,91,45,49,55,53,46,53,52,57,49,51,53,44,53,50,46,48,48,57,56,55,57,93,44,91,45,49,55,53,46,56,49,49,57,57,56,44,53,50,46,48,52,55,57,52,56,93,44,91,45,49,55,54,46,48,50,55,55,52,52,44,53,50,46,49,54,48,49,55,53,93,44,91,45,49,55,54,46,50,50,52,52,51,52,44,53,50,46,49,53,51,49,50,54,93,44,91,45,49,55,54,46,50,57,51,49,51,44,53,50,46,48,54,53,52,50,55,93,44,91,45,49,55,54,46,50,52,50,56,54,52,44,53,49,46,57,50,54,55,52,50,93,44,91,45,49,55,54,46,52,50,57,49,51,55,44,53,49,46,57,49,53,51,53,93,44,91,45,49,55,54,46,52,56,56,52,55,57,44,53,50,46,48,50,54,48,52,50,93,44,91,45,49,55,54,46,54,48,49,50,56,44,53,50,46,48,53,54,53,54,93,44,91,45,49,55,55,46,48,49,54,56,57,54,44,53,49,46,57,54,53,48,51,50,93,44,91,45,49,55,55,46,50,48,54,50,48,57,44,53,49,46,57,57,51,49,49,93,44,91,45,49,55,55,46,51,48,56,56,57,52,44,53,49,46,56,51,54,55,57,51,93,44,91,45,49,55,55,46,53,49,53,51,49,54,44,53,49,46,55,57,49,57,55,93,44,91,45,49,55,55,46,54,49,52,57,49,50,44,53,49,46,57,48,53,93,44,91,45,49,55,55,46,56,50,54,56,48,55,44,53,49,46,56,57,54,52,49,52,93,44,91,45,49,55,55,46,57,52,55,48,48,51,44,53,49,46,57,55,49,51,49,50,93,44,91,45,49,55,56,46,50,52,55,51,56,44,53,49,46,57,53,48,49,54,54,93,44,91,45,49,55,56,46,51,48,55,55,56,55,44,53,49,46,56,56,49,54,48,56,93,93,93,44,91,91,91,45,49,54,54,46,50,50,53,54,52,55,44,53,52,46,48,52,49,57,57,51,93,44,91,45,49,54,54,46,55,56,53,49,57,52,44,53,52,46,48,54,53,57,55,57,93,44,91,45,49,54,55,46,48,53,51,57,57,51,44,53,52,46,48,48,56,54,49,51,93,44,91,45,49,54,55,46,50,51,48,48,55,55,44,53,51,46,56,56,56,50,53,50,93,44,91,45,49,54,55,46,49,51,56,50,48,53,44,53,51,46,55,48,57,52,50,51,93,44,91,45,49,54,55,46,50,51,48,51,56,44,53,51,46,53,54,54,55,51,52,93,44,91,45,49,54,55,46,55,52,54,55,54,57,44,53,51,46,52,50,54,51,51,53,93,44,91,45,49,54,55,46,54,57,56,50,49,51,44,53,51,46,53,50,52,50,50,51,93,44,91,45,49,54,55,46,57,53,57,56,56,50,44,53,51,46,54,49,50,56,49,50,93,44,91,45,49,54,56,46,48,57,48,51,53,50,44,53,51,46,54,49,57,54,54,55,93,44,91,45,49,54,56,46,52,49,53,50,53,57,44,53,51,46,53,48,57,52,52,55,93,44,91,45,49,54,56,46,53,48,52,50,57,54,44,53,51,46,51,54,50,56,56,57,93,44,91,45,49,54,56,46,54,56,57,51,51,55,44,53,51,46,51,48,51,50,55,51,93,44,91,45,49,54,56,46,56,53,57,52,52,57,44,53,51,46,49,56,56,49,53,50,93,44,91,45,49,54,57,46,48,48,51,51,52,54,44,53,50,46,57,57,54,53,53,50,93,44,91,45,49,54,57,46,49,57,55,49,51,51,44,53,50,46,57,54,52,56,56,50,93,44,91,45,49,54,57,46,51,50,54,53,57,50,44,53,50,46,55,53,51,53,52,50,93,44,91,45,49,54,57,46,50,50,56,48,53,56,44,53,50,46,55,49,52,54,49,93,44,91,45,49,54,56,46,56,52,57,52,54,52,44,53,50,46,56,52,48,57,50,49,93,44,91,45,49,54,56,46,55,52,51,48,48,50,44,53,50,46,56,53,52,55,51,49,93,44,91,45,49,54,56,46,53,53,52,54,56,54,44,53,50,46,57,53,53,48,51,54,93,44,91,45,49,54,56,46,52,48,50,54,56,52,44,53,50,46,57,50,57,50,53,51,93,44,91,45,49,54,56,46,50,53,55,55,49,51,44,53,51,46,49,52,49,56,57,53,93,44,91,45,49,54,56,46,48,50,54,50,55,44,53,51,46,50,50,54,49,51,55,93,44,91,45,49,54,55,46,54,54,57,50,55,56,44,53,51,46,49,55,50,48,53,93,44,91,45,49,54,55,46,53,50,50,49,52,49,44,53,51,46,49,56,54,48,48,57,93,44,91,45,49,54,55,46,49,48,54,55,53,56,44,53,51,46,51,54,54,57,57,49,93,44,91,45,49,54,54,46,55,48,49,55,57,44,53,51,46,52,48,50,48,51,51,93,44,91,45,49,54,54,46,51,55,56,54,53,53,44,53,51,46,54,48,50,49,52,49,93,44,91,45,49,54,54,46,49,55,52,57,51,56,44,53,51,46,54,53,57,55,55,56,93,44,91,45,49,54,53,46,57,55,54,51,54,44,53,51,46,55,55,49,48,54,49,93,44,91,45,49,54,53,46,57,54,49,48,56,54,44,53,51,46,57,49,54,50,52,51,93,44,91,45,49,54,54,46,50,50,53,54,52,49,44,53,51,46,57,54,48,50,48,54,93,44,91,45,49,54,54,46,50,50,53,54,52,55,44,53,52,46,48,52,49,57,57,51,93,93,93,44,91,91,91,49,55,50,46,51,52,57,51,52,44,53,50,46,57,50,50,49,57,52,93,44,91,49,55,50,46,55,51,54,57,52,53,44,53,50,46,55,50,55,56,56,55,93,44,91,49,55,50,46,57,52,51,48,56,55,44,53,50,46,54,56,56,56,52,55,93,44,91,49,55,51,46,50,48,57,54,50,56,44,53,50,46,55,51,57,54,53,49,93,44,91,49,55,51,46,51,51,48,50,51,54,44,53,50,46,54,57,50,56,51,51,93,44,91,49,55,51,46,53,56,48,54,52,55,44,53,50,46,56,49,53,52,56,53,93,44,91,49,55,51,46,51,50,49,57,51,56,44,53,50,46,57,57,50,49,50,49,93,44,91,49,55,51,46,49,51,50,50,48,56,44,53,51,46,48,52,51,57,53,56,93,44,91,49,55,50,46,55,51,52,52,49,56,44,53,51,46,48,54,51,54,52,53,93,44,91,49,55,50,46,53,50,55,55,51,44,53,51,46,48,50,51,51,49,56,93,44,91,49,55,50,46,51,52,57,51,52,44,53,50,46,57,50,50,49,57,52,93,93,93,44,91,91,91,45,49,55,48,46,50,55,50,57,57,50,44,53,50,46,55,52,56,53,49,53,93,44,91,45,49,55,48,46,50,53,48,48,54,51,44,53,50,46,54,56,49,48,56,57,93,44,91,45,49,55,48,46,48,51,50,53,56,54,44,53,50,46,54,55,53,55,52,52,93,44,91,45,49,54,57,46,56,52,56,55,53,52,44,53,50,46,55,54,51,49,49,93,44,91,45,49,54,57,46,55,48,51,48,54,49,44,53,50,46,55,49,54,48,57,57,93,44,91,45,49,54,57,46,53,56,56,54,49,51,44,53,50,46,56,48,48,53,54,51,93,44,91,45,49,54,57,46,54,50,55,56,50,52,44,53,50,46,57,50,54,55,52,93,44,91,45,49,54,57,46,54,48,52,52,53,52,44,53,51,46,48,54,50,48,51,49,93,44,91,45,49,54,57,46,55,53,57,49,52,56,44,53,51,46,49,51,52,48,53,52,93,44,91,45,49,54,57,46,56,54,48,55,53,52,44,53,51,46,49,48,53,48,49,50,93,44,91,45,49,54,57,46,56,51,49,56,57,56,44,53,50,46,57,51,53,53,51,56,93,44,91,45,49,55,48,46,48,52,54,49,48,54,44,53,50,46,57,55,51,49,49,54,93,44,91,45,49,55,48,46,49,55,54,56,57,44,53,50,46,57,51,53,49,51,55,93,44,91,45,49,55,48,46,50,55,50,57,57,50,44,53,50,46,55,52,56,53,49,53,93,93,93,44,91,91,91,49,55,56,46,53,51,49,56,49,51,44,53,49,46,54,52,57,54,57,50,93,44,91,49,55,56,46,53,53,49,55,55,51,44,53,49,46,53,57,57,56,53,53,93,44,91,49,55,56,46,55,57,48,50,52,49,44,53,49,46,52,57,50,52,53,56,93,44,91,49,55,56,46,56,57,54,48,49,50,44,53,49,46,52,57,50,53,51,53,93,44,91,49,55,57,46,50,49,56,49,57,54,44,53,49,46,50,57,52,57,56,53,93,44,91,49,55,57,46,53,49,48,56,55,44,53,49,46,51,48,56,50,54,53,93,44,91,49,55,57,46,53,55,56,52,48,54,44,53,49,46,51,53,52,51,52,52,93,44,91,49,55,57,46,52,50,53,50,50,49,44,53,49,46,52,54,50,56,49,55,93,44,91,49,55,57,46,49,55,48,51,50,53,44,53,49,46,53,50,51,48,50,56,93,44,91,49,55,57,46,48,54,48,54,50,44,53,49,46,54,51,50,53,49,93,44,91,49,55,56,46,54,57,56,55,56,52,44,53,49,46,55,48,57,53,54,54,93,44,91,49,55,56,46,53,51,49,56,49,51,44,53,49,46,54,52,57,54,57,50,93,93,93,44,91,91,91,49,55,55,46,49,49,49,57,55,54,44,53,49,46,56,57,48,53,52,50,93,44,91,49,55,55,46,50,57,56,54,49,56,44,53,49,46,55,54,50,56,57,53,93,44,91,49,55,55,46,52,55,53,54,51,50,44,53,49,46,56,54,48,52,48,49,93,44,91,49,55,55,46,56,51,55,48,55,54,44,53,49,46,57,48,50,50,54,57,93,44,91,49,55,55,46,56,52,53,55,48,55,44,53,49,46,57,56,51,55,55,57,93,44,91,49,55,55,46,55,52,53,54,53,53,44,53,50,46,49,52,49,54,48,50,93,44,91,49,55,55,46,53,49,48,55,55,54,44,53,50,46,49,54,49,48,57,55,93,44,91,49,55,55,46,52,49,54,52,51,49,44,53,50,46,48,51,56,49,50,56,93,44,91,49,55,55,46,49,54,53,57,54,50,44,53,49,46,57,52,57,48,51,50,93,44,91,49,55,55,46,49,49,49,57,55,54,44,53,49,46,56,57,48,53,52,50,93,93,93,44,91,91,91,49,55,51,46,50,55,51,52,48,52,44,53,50,46,52,49,48,52,54,49,93,44,91,49,55,51,46,51,48,52,48,52,53,44,53,50,46,51,53,54,52,53,51,93,44,91,49,55,51,46,54,51,56,54,51,51,44,53,50,46,50,57,52,50,53,93,44,91,49,55,51,46,56,49,52,48,55,50,44,53,50,46,51,53,51,51,52,55,93,44,91,49,55,51,46,55,56,49,49,57,54,44,53,50,46,52,52,55,57,53,52,93,44,91,49,55,51,46,56,52,55,55,55,52,44,53,50,46,53,51,55,49,56,53,93,44,91,49,55,51,46,54,48,56,50,53,52,44,53,50,46,53,53,57,56,55,51,93,44,91,49,55,51,46,51,49,53,57,52,44,53,50,46,52,54,52,54,51,56,93,44,91,49,55,51,46,50,55,51,52,48,52,44,53,50,46,52,49,48,52,54,49,93,93,93,44,91,91,91,49,55,56,46,48,48,51,52,53,51,44,53,50,46,48,52,57,53,56,56,93,44,91,49,55,56,46,48,53,57,54,55,53,44,53,49,46,57,52,56,49,49,52,93,44,91,49,55,56,46,49,57,53,56,55,44,53,49,46,57,52,56,56,52,51,93,44,91,49,55,56,46,53,51,49,53,57,49,44,53,49,46,56,52,54,55,49,54,93,44,91,49,55,56,46,54,54,54,57,48,52,44,53,49,46,57,51,48,50,53,50,93,44,91,49,55,56,46,53,49,50,52,49,50,44,53,50,46,48,52,51,52,51,54,93,44,91,49,55,56,46,50,54,55,49,53,57,44,53,50,46,48,51,55,52,53,49,93,44,91,49,55,56,46,49,56,56,56,51,56,44,53,50,46,48,57,56,54,55,55,93,44,91,49,55,56,46,48,48,51,52,53,51,44,53,50,46,48,52,57,53,56,56,93,93,93,44,91,91,91,45,49,55,48,46,53,50,50,55,48,57,44,53,55,46,49,57,51,51,55,52,93,44,91,45,49,55,48,46,52,52,52,49,52,51,44,53,54,46,57,57,54,49,51,52,93,44,91,45,49,55,48,46,49,49,49,55,56,50,44,53,55,46,49,51,54,55,48,57,93,44,91,45,49,55,48,46,48,49,54,53,49,49,44,53,55,46,50,54,54,53,56,49,93,44,91,45,49,55,48,46,49,57,49,48,50,52,44,53,55,46,50,57,55,51,53,49,93,44,91,45,49,55,48,46,52,52,57,53,57,56,44,53,55,46,50,52,57,51,51,50,93,44,91,45,49,55,48,46,53,50,50,55,48,57,44,53,55,46,49,57,51,51,55,52,93,93,93,44,91,91,91,45,49,55,50,46,55,50,48,54,56,57,44,53,50,46,50,54,52,51,54,52,93,44,91,45,49,55,50,46,54,55,54,48,48,56,44,53,50,46,50,49,48,53,55,54,93,44,91,45,49,55,50,46,51,55,55,57,49,53,44,53,50,46,50,50,56,51,54,51,93,44,91,45,49,55,50,46,50,49,48,55,49,50,44,53,50,46,51,49,54,50,54,55,93,44,91,45,49,55,50,46,50,52,57,54,54,44,53,50,46,51,57,51,52,53,52,93,44,91,45,49,55,50,46,51,57,57,50,57,54,44,53,50,46,52,52,52,53,48,53,93,44,91,45,49,55,50,46,54,51,51,50,51,57,44,53,50,46,51,56,55,56,54,51,93,44,91,45,49,55,50,46,55,50,48,54,56,57,44,53,50,46,50,54,52,51,54,52,93,93,93,44,91,91,91,49,55,57,46,51,56,56,55,52,50,44,53,49,46,57,52,49,57,49,55,93,44,91,49,55,57,46,52,56,52,54,48,54,44,53,49,46,56,52,56,48,50,55,93,44,91,49,55,57,46,54,50,51,50,49,50,44,53,49,46,56,49,56,57,56,56,93,44,91,49,55,57,46,55,56,53,48,55,44,53,49,46,56,54,50,54,51,57,93,44,91,49,55,57,46,56,53,57,54,56,49,44,53,49,46,57,54,48,51,54,54,93,44,91,49,55,57,46,54,53,56,51,56,49,44,53,50,46,48,55,56,50,55,93,44,91,49,55,57,46,52,48,56,55,50,57,44,53,50,46,48,48,53,51,53,53,93,44,91,49,55,57,46,51,56,56,55,52,50,44,53,49,46,57,52,49,57,49,55,93,93,93,44,91,91,91,45,49,55,57,46,49,52,57,53,48,53,44,53,49,46,53,55,54,53,57,53,93,44,91,45,49,55,56,46,56,48,48,49,57,51,44,53,49,46,52,56,53,56,53,57,93,44,91,45,49,55,56,46,53,53,48,49,57,51,44,53,49,46,53,48,56,52,56,52,93,44,91,45,49,55,56,46,52,50,49,54,55,54,44,53,49,46,53,56,55,50,56,51,93,44,91,45,49,55,56,46,54,54,48,49,50,50,44,53,49,46,54,54,53,56,55,57,93,44,91,45,49,55,56,46,57,52,57,57,51,54,44,53,49,46,53,57,49,53,52,52,93,44,91,45,49,55,57,46,48,53,54,48,50,57,44,53,49,46,54,52,53,57,55,50,93,44,91,45,49,55,57,46,49,52,57,53,48,53,44,53,49,46,53,55,54,53,57,53,93,93,93,44,91,91,91,45,49,55,48,46,57,50,54,48,51,55,44,53,50,46,53,53,56,54,52,52,93,44,91,45,49,55,48,46,56,50,56,51,49,56,44,53,50,46,52,57,49,57,50,55,93,44,91,45,49,55,48,46,53,51,54,49,51,51,44,53,50,46,53,55,51,56,52,55,93,44,91,45,49,55,48,46,52,56,48,57,57,52,44,53,50,46,54,57,48,52,49,93,44,91,45,49,55,48,46,54,56,48,52,53,50,44,53,50,46,55,52,57,53,56,54,93,44,91,45,49,55,48,46,56,56,56,57,49,51,44,53,50,46,54,52,57,50,55,49,93,44,91,45,49,55,48,46,57,50,54,48,51,55,44,53,50,46,53,53,56,54,52,52,93,93,93,44,91,91,91,45,49,55,57,46,50,51,48,50,51,51,44,53,49,46,50,56,51,57,50,55,93,44,91,45,49,55,57,46,49,56,51,56,49,53,44,53,49,46,49,56,51,55,55,54,93,44,91,45,49,55,57,46,48,55,51,53,57,57,44,53,49,46,49,55,57,48,52,49,93,44,91,45,49,55,56,46,56,51,50,56,48,54,44,53,49,46,51,50,51,53,56,56,93,44,91,45,49,55,56,46,56,55,51,49,54,51,44,53,49,46,52,50,52,55,57,49,93,44,91,45,49,55,57,46,48,48,53,48,52,49,44,53,49,46,52,53,50,54,53,50,93,44,91,45,49,55,57,46,50,51,48,50,51,51,44,53,49,46,50,56,51,57,50,55,93,93,93,44,91,91,91,45,49,54,57,46,56,55,57,54,51,50,44,53,54,46,54,49,52,55,57,57,93,44,91,45,49,54,57,46,54,55,54,48,57,50,44,53,54,46,52,57,54,50,50,54,93,44,91,45,49,54,57,46,53,50,54,54,51,55,44,53,54,46,52,57,50,57,55,54,93,44,91,45,49,54,57,46,51,55,55,53,52,53,44,53,54,46,53,56,55,55,50,57,93,44,91,45,49,54,57,46,53,48,57,50,54,53,44,53,54,46,54,54,55,52,55,49,93,44,91,45,49,54,57,46,56,50,57,51,56,52,44,53,54,46,54,54,57,56,49,54,93,44,91,45,49,54,57,46,56,55,57,54,51,50,44,53,54,46,54,49,52,55,57,57,93,93,93,44,91,91,91,45,49,55,49,46,51,57,51,50,57,54,44,53,50,46,52,56,48,56,53,52,93,44,91,45,49,55,49,46,51,53,56,51,53,51,44,53,50,46,52,49,50,53,52,53,93,44,91,45,49,55,49,46,50,48,54,50,53,57,44,53,50,46,51,57,56,56,57,49,93,44,91,45,49,55,49,46,48,50,50,52,50,57,44,53,50,46,54,48,51,55,49,55,93,44,91,45,49,55,49,46,49,52,48,50,51,52,44,53,50,46,54,51,57,54,51,51,93,44,91,45,49,55,49,46,51,55,52,52,51,51,44,53,50,46,53,51,55,49,49,56,93,44,91,45,49,55,49,46,51,57,51,50,57,54,44,53,50,46,52,56,48,56,53,52,93,93,93,44,91,91,91,49,55,51,46,55,55,51,55,56,51,44,53,50,46,55,56,49,53,56,56,93,44,91,49,55,51,46,56,51,55,57,54,50,44,53,50,46,55,49,54,48,50,51,93,44,91,49,55,52,46,49,54,50,53,49,52,44,53,50,46,54,53,54,55,51,53,93,44,91,49,55,52,46,50,51,50,55,50,55,44,53,50,46,55,53,55,50,57,52,93,44,91,49,55,51,46,56,55,48,54,51,56,44,53,50,46,56,51,52,55,57,93,44,91,49,55,51,46,55,55,51,55,56,51,44,53,50,46,55,56,49,53,56,56,93,93,93,44,91,91,91,49,55,56,46,49,50,51,56,51,50,44,53,49,46,56,52,51,57,56,52,93,44,91,49,55,56,46,50,52,57,56,56,49,44,53,49,46,55,50,52,52,55,52,93,44,91,49,55,56,46,52,57,54,51,52,55,44,53,49,46,55,52,52,53,50,50,93,44,91,49,55,56,46,51,54,56,52,51,52,44,53,49,46,56,54,48,53,51,57,93,44,91,49,55,56,46,50,50,48,48,55,56,44,53,49,46,56,56,56,55,50,56,93,44,91,49,55,56,46,49,50,51,56,51,50,44,53,49,46,56,52,51,57,56,52,93,93,93,44,91,91,91,45,49,55,56,46,57,53,55,50,56,49,44,53,49,46,55,56,48,55,57,57,93,44,91,45,49,55,56,46,56,50,56,48,49,57,44,53,49,46,54,57,52,55,55,54,93,44,91,45,49,55,56,46,54,52,54,56,44,53,49,46,55,57,48,51,93,44,91,45,49,55,56,46,55,56,54,53,51,50,44,53,49,46,56,56,55,56,56,93,44,91,45,49,55,56,46,57,53,55,50,56,49,44,53,49,46,55,56,48,55,57,57,93,93,93,44,91,91,91,49,55,53,46,55,54,53,50,56,51,44,53,50,46,51,56,55,51,50,93,44,91,49,55,53,46,56,51,49,51,57,50,44,53,50,46,51,48,53,53,55,55,93,44,91,49,55,54,46,48,48,57,57,50,53,44,53,50,46,50,57,57,53,53,51,93,44,91,49,55,54,46,48,52,57,49,56,49,44,53,50,46,51,56,53,54,52,93,44,91,49,55,53,46,56,52,49,57,48,57,44,53,50,46,52,52,48,50,56,56,93,44,91,49,55,53,46,55,54,53,50,56,51,44,53,50,46,51,56,55,51,50,93,93,93,44,91,91,91,45,49,55,55,46,53,53,49,55,51,57,44,53,49,46,57,49,53,53,50,53,93,44,91,45,49,55,55,46,52,56,54,55,50,54,44,53,49,46,56,52,51,54,52,57,93,44,91,45,49,55,55,46,51,51,54,52,50,55,44,53,49,46,57,50,49,53,54,49,93,44,91,45,49,55,55,46,52,53,57,53,52,54,44,53,49,46,57,56,50,56,56,52,93,44,91,45,49,55,55,46,53,53,49,55,51,57,44,53,49,46,57,49,53,53,50,53,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,53,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,48,34,44,34,78,65,77,69,34,58,34,75,111,100,105,97,107,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,52,46,57,51,51,54,57,52,44,53,55,46,50,57,52,54,55,56,93,44,91,45,49,53,52,46,54,49,57,55,56,50,44,53,55,46,49,54,50,51,54,93,44,91,45,49,53,52,46,53,55,55,52,56,51,44,53,54,46,57,53,50,55,55,51,93,44,91,45,49,53,52,46,51,56,55,55,49,57,44,53,54,46,56,57,53,54,49,56,93,44,91,45,49,53,52,46,51,56,53,53,50,52,44,53,54,46,56,51,48,50,54,57,93,44,91,45,49,53,52,46,50,49,55,56,50,54,44,53,54,46,55,50,48,52,54,55,93,44,91,45,49,53,52,46,51,54,48,49,48,56,44,53,54,46,54,51,51,53,50,52,93,44,91,45,49,53,52,46,53,48,55,53,50,44,53,54,46,54,53,56,56,52,52,93,44,91,45,49,53,52,46,55,53,56,49,48,54,44,53,54,46,53,53,57,56,49,53,93,44,91,45,49,53,52,46,56,57,51,56,52,55,44,53,54,46,52,52,52,55,50,52,93,44,91,45,49,53,52,46,55,50,53,55,51,50,44,53,54,46,51,53,53,50,49,57,93,44,91,45,49,53,52,46,52,57,56,50,48,57,44,53,54,46,52,53,53,55,56,52,93,44,91,45,49,53,51,46,57,51,54,50,55,54,44,53,54,46,52,53,51,52,54,49,93,44,91,45,49,53,51,46,56,48,54,54,48,53,44,53,54,46,53,48,57,51,54,93,44,91,45,49,53,51,46,56,48,48,52,51,50,44,53,54,46,54,56,57,57,50,56,93,44,91,45,49,53,51,46,54,49,53,49,56,44,53,54,46,56,51,52,51,56,53,93,44,91,45,49,53,51,46,52,48,52,53,50,57,44,53,54,46,57,53,48,55,55,51,93,44,91,45,49,53,51,46,49,56,48,57,53,57,44,53,54,46,57,54,48,54,56,93,44,91,45,49,53,51,46,48,57,56,50,56,57,44,53,55,46,48,52,48,51,49,51,93,44,91,45,49,53,50,46,56,51,52,49,54,50,44,53,55,46,48,57,52,52,50,53,93,44,91,45,49,53,50,46,55,56,53,50,48,54,44,53,55,46,49,57,50,52,53,55,93,44,91,45,49,53,50,46,53,50,56,55,53,56,44,53,55,46,51,50,55,51,50,55,93,44,91,45,49,53,50,46,50,53,56,52,56,49,44,53,55,46,51,50,51,52,50,57,93,44,91,45,49,53,50,46,49,53,54,53,49,54,44,53,55,46,52,48,53,56,53,53,93,44,91,45,49,53,50,46,50,50,50,52,51,55,44,53,55,46,52,55,53,50,57,57,93,44,91,45,49,53,50,46,48,51,49,48,48,54,44,53,55,46,54,50,56,54,51,49,93,44,91,45,49,53,50,46,50,50,48,50,49,49,44,53,55,46,57,51,48,50,50,51,93,44,91,45,49,53,50,46,52,49,52,52,53,51,44,53,56,46,48,51,54,53,55,55,93,44,91,45,49,53,50,46,48,51,51,53,49,57,44,53,56,46,49,49,49,55,56,49,93,44,91,45,49,53,49,46,55,54,52,48,50,44,53,56,46,49,51,54,54,50,54,93,44,91,45,49,53,49,46,54,57,48,53,48,53,44,53,56,46,50,51,53,49,51,52,93,44,91,45,49,53,49,46,55,49,50,56,48,52,44,53,56,46,51,55,51,57,56,93,44,91,45,49,53,49,46,56,57,53,50,49,54,44,53,56,46,51,55,49,55,48,53,93,44,91,45,49,53,50,46,49,50,54,51,52,56,44,53,56,46,52,52,57,53,56,57,93,44,91,45,49,53,50,46,50,52,55,55,49,50,44,53,56,46,54,56,48,55,50,56,93,44,91,45,49,53,50,46,52,55,51,53,54,57,44,53,56,46,55,53,55,50,53,56,93,44,91,45,49,53,50,46,54,57,56,52,49,51,44,53,56,46,54,52,56,54,52,52,93,44,91,45,49,53,51,46,50,48,48,48,51,53,44,53,56,46,50,54,54,50,53,50,93,44,91,45,49,53,51,46,53,48,48,49,51,53,44,53,56,46,48,55,57,53,53,53,93,44,91,45,49,53,51,46,53,51,56,57,52,54,44,53,56,46,48,48,55,51,54,54,93,44,91,45,49,53,51,46,55,56,54,54,50,50,44,53,55,46,57,49,55,55,49,50,93,44,91,45,49,53,51,46,56,55,48,53,54,55,44,53,55,46,57,50,56,55,55,57,93,44,91,45,49,53,52,46,50,52,48,48,54,53,44,53,55,46,55,49,53,52,54,55,93,44,91,45,49,53,52,46,52,48,55,48,49,49,44,53,55,46,54,57,48,53,50,53,93,44,91,45,49,53,52,46,55,48,51,49,52,53,44,53,55,46,53,52,50,48,49,54,93,44,91,45,49,53,52,46,57,51,51,54,57,52,44,53,55,46,50,57,52,54,55,56,93,93,93,44,91,91,91,45,49,53,52,46,51,48,53,54,57,49,44,53,56,46,54,53,50,55,53,49,93,44,91,45,49,53,52,46,51,48,51,52,52,55,44,53,56,46,52,54,48,51,56,53,93,44,91,45,49,53,52,46,52,54,53,55,52,49,44,53,56,46,51,54,49,51,53,54,93,44,91,45,49,53,52,46,55,51,48,51,54,57,44,53,56,46,51,48,52,54,54,57,93,44,91,45,49,53,53,46,48,48,56,49,51,50,44,53,56,46,50,57,48,57,48,53,93,44,91,45,49,53,53,46,48,53,55,55,52,49,44,53,56,46,50,51,54,50,48,57,93,44,91,45,49,53,53,46,51,51,49,57,52,53,44,53,56,46,49,57,51,50,56,51,93,44,91,45,49,53,53,46,51,51,48,50,52,53,44,53,55,46,56,55,54,51,52,51,93,44,91,45,49,53,53,46,53,51,56,56,51,44,53,55,46,55,57,57,56,48,54,93,44,91,45,49,53,53,46,54,57,51,55,55,51,44,53,55,46,55,57,55,57,56,55,93,44,91,45,49,53,53,46,55,54,56,48,50,50,44,53,55,46,54,54,56,50,54,49,93,44,91,45,49,53,54,46,50,48,56,48,50,49,44,53,55,46,53,50,50,57,54,51,93,44,91,45,49,53,54,46,51,55,48,50,51,53,44,53,55,46,53,50,50,51,54,56,93,44,91,45,49,53,54,46,55,53,48,55,56,44,53,55,46,50,51,53,55,57,53,93,44,91,45,49,53,54,46,55,53,48,56,49,53,44,53,55,46,49,54,50,56,55,56,93,44,91,45,49,53,54,46,51,53,53,51,57,50,44,53,55,46,49,53,57,57,51,49,93,44,91,45,49,53,54,46,51,50,56,48,50,51,44,53,55,46,48,53,51,50,56,56,93,44,91,45,49,53,54,46,50,50,55,56,49,49,44,53,55,46,49,54,50,52,53,53,93,44,91,45,49,53,54,46,49,54,55,49,57,54,44,53,55,46,51,52,53,56,53,50,93,44,91,45,49,53,53,46,57,51,57,55,53,56,44,53,55,46,52,49,50,56,55,93,44,91,45,49,53,53,46,56,52,52,52,56,53,44,53,55,46,52,57,55,53,49,51,93,44,91,45,49,53,53,46,54,52,53,53,48,51,44,53,55,46,53,50,50,51,53,56,93,44,91,45,49,53,53,46,54,51,50,53,54,55,44,53,55,46,53,56,54,56,49,51,93,44,91,45,49,53,53,46,51,48,48,51,57,55,44,53,55,46,54,52,50,56,57,52,93,44,91,45,49,53,52,46,57,57,52,48,49,55,44,53,55,46,56,54,51,49,56,56,93,44,91,45,49,53,52,46,57,52,48,55,52,50,44,53,55,46,57,55,53,48,55,49,93,44,91,45,49,53,52,46,51,57,48,55,52,52,44,53,55,46,57,57,57,51,48,49,93,44,91,45,49,53,52,46,49,49,57,53,54,53,44,53,56,46,49,49,51,50,50,56,93,44,91,45,49,53,51,46,57,55,48,48,51,56,44,53,56,46,51,49,50,55,50,52,93,44,91,45,49,53,51,46,56,53,56,53,53,55,44,53,56,46,51,55,52,50,55,52,93,44,91,45,49,53,51,46,56,56,49,55,57,52,44,53,56,46,52,53,54,52,57,57,93,44,91,45,49,53,51,46,53,49,53,49,53,44,53,56,46,53,52,56,51,57,55,93,44,91,45,49,53,51,46,52,55,56,55,55,54,44,53,56,46,54,52,49,54,57,52,93,44,91,45,49,53,51,46,49,54,54,56,52,54,44,53,56,46,55,53,53,49,55,53,93,44,91,45,49,53,51,46,49,56,52,48,56,54,44,53,56,46,57,48,53,55,50,57,93,44,91,45,49,53,51,46,50,53,51,54,49,51,44,53,56,46,56,53,53,48,51,54,93,44,91,45,49,53,51,46,54,51,57,52,48,51,44,53,56,46,56,53,53,48,50,57,93,44,91,45,49,53,51,46,54,51,57,48,50,55,44,53,56,46,55,51,57,52,53,93,44,91,45,49,53,51,46,56,49,55,48,55,54,44,53,56,46,55,51,57,52,52,54,93,44,91,45,49,53,51,46,56,49,55,48,55,54,44,53,56,46,54,53,50,55,54,93,44,91,45,49,53,52,46,51,48,53,54,57,49,44,53,56,46,54,53,50,55,53,49,93,93,93,44,91,91,91,45,49,53,50,46,52,54,54,53,50,55,44,53,56,46,57,49,52,57,57,53,93,44,91,45,49,53,50,46,51,56,51,50,57,52,44,53,56,46,56,50,56,50,57,93,44,91,45,49,53,50,46,49,51,52,48,55,50,44,53,56,46,56,53,56,49,49,56,93,44,91,45,49,53,49,46,57,56,49,53,56,50,44,53,56,46,56,51,55,50,55,55,93,44,91,45,49,53,49,46,56,53,51,56,56,57,44,53,56,46,57,48,56,55,54,52,93,44,91,45,49,53,50,46,48,49,57,53,53,53,44,53,57,46,48,49,48,57,50,49,93,44,91,45,49,53,50,46,52,49,52,48,48,51,44,53,56,46,57,57,50,50,51,51,93,44,91,45,49,53,50,46,52,54,54,53,50,55,44,53,56,46,57,49,52,57,57,53,93,93,93,44,91,91,91,45,49,53,54,46,57,48,50,48,51,51,44,53,54,46,49,54,53,52,52,53,93,44,91,45,49,53,54,46,56,49,55,49,55,44,53,54,46,49,48,52,48,57,54,93,44,91,45,49,53,54,46,56,50,50,50,48,57,44,53,53,46,57,54,55,53,53,54,93,44,91,45,49,53,54,46,54,55,53,52,50,55,44,53,53,46,57,53,54,55,55,93,44,91,45,49,53,54,46,53,53,51,51,50,52,44,53,54,46,48,50,55,48,55,53,93,44,91,45,49,53,54,46,54,57,48,54,50,54,44,53,54,46,50,53,55,50,52,57,93,44,91,45,49,53,54,46,56,55,50,50,50,56,44,53,54,46,50,52,55,48,50,51,93,44,91,45,49,53,54,46,57,48,50,48,51,51,44,53,54,46,49,54,53,52,52,53,93,93,93,44,91,91,91,45,49,53,53,46,56,51,54,56,44,53,53,46,56,48,48,56,50,52,93,44,91,45,49,53,53,46,55,57,52,51,52,57,44,53,53,46,55,50,57,53,57,52,93,44,91,45,49,53,53,46,53,50,56,48,57,50,44,53,53,46,55,48,53,56,52,56,93,44,91,45,49,53,53,46,52,55,52,55,53,49,44,53,53,46,55,52,49,52,53,57,93,44,91,45,49,53,53,46,52,55,52,51,53,51,44,53,53,46,57,49,51,53,57,52,93,44,91,45,49,53,53,46,54,55,54,55,54,53,44,53,53,46,57,48,55,54,54,51,93,44,91,45,49,53,53,46,56,51,54,56,44,53,53,46,56,48,48,56,50,52,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,83,116,97,102,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,49,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,49,50,53,56,51,44,51,56,46,50,54,49,48,56,56,93,44,91,45,57,56,46,57,49,51,49,51,54,44,51,56,46,48,48,48,52,53,49,93,44,91,45,57,57,46,48,50,50,49,51,54,44,51,56,46,48,48,48,50,51,54,93,44,91,45,57,57,46,48,49,51,51,49,56,44,51,55,46,56,50,53,51,51,54,93,44,91,45,57,56,46,52,55,50,50,53,55,44,51,55,46,56,50,52,52,57,55,93,44,91,45,57,56,46,52,55,50,55,57,52,44,51,56,46,49,55,50,55,53,55,93,44,91,45,57,56,46,52,55,57,56,52,49,44,51,56,46,50,54,48,55,57,93,44,91,45,57,56,46,57,49,50,53,56,51,44,51,56,46,50,54,49,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,49,34,44,34,78,65,77,69,34,58,34,84,101,108,102,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,55,55,52,54,57,44,51,49,46,56,52,55,56,53,55,93,44,91,45,56,50,46,57,57,53,54,57,56,44,51,49,46,55,56,48,57,56,51,93,44,91,45,56,50,46,56,51,54,51,54,54,44,51,49,46,56,49,54,49,53,52,93,44,91,45,56,50,46,54,52,53,54,53,57,44,51,49,46,57,49,56,56,56,51,93,44,91,45,56,50,46,55,50,56,56,48,54,44,51,50,46,48,48,54,55,48,52,93,44,91,45,56,50,46,56,56,55,54,53,55,44,51,50,46,48,55,57,56,57,49,93,44,91,45,56,50,46,57,50,55,56,54,53,44,51,50,46,49,51,53,50,55,52,93,44,91,45,56,51,46,50,48,53,55,51,57,44,51,49,46,57,48,48,51,50,53,93,44,91,45,56,51,46,49,55,55,52,54,57,44,51,49,46,56,52,55,56,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,54,57,57,44,34,98,101,100,115,34,58,50,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,55,51,57,50,50,44,52,50,46,48,56,50,52,51,93,44,91,45,56,51,46,55,54,51,49,53,44,52,49,46,55,50,51,53,53,50,93,44,91,45,56,51,46,52,49,53,56,53,49,44,52,49,46,55,51,51,55,57,52,93,44,91,45,56,51,46,49,49,50,52,54,44,52,49,46,57,53,57,52,49,93,44,91,45,56,51,46,49,52,51,57,53,54,44,52,50,46,48,50,55,57,51,93,44,91,45,56,51,46,50,57,53,48,54,51,44,52,50,46,48,57,52,50,51,55,93,44,91,45,56,51,46,53,51,57,51,57,54,44,52,50,46,48,56,53,53,57,56,93,44,91,45,56,51,46,55,55,51,57,50,50,44,52,50,46,48,56,50,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,50,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,57,56,51,57,44,52,48,46,55,51,54,53,52,49,93,44,91,45,56,55,46,48,57,53,51,53,55,44,52,48,46,53,54,50,56,57,53,93,44,91,45,56,54,46,55,55,49,50,57,51,44,52,48,46,53,54,50,48,56,50,93,44,91,45,56,54,46,55,52,55,55,54,52,44,52,48,46,55,51,55,53,52,93,44,91,45,56,54,46,53,56,49,55,51,57,44,52,48,46,55,51,53,55,54,53,93,44,91,45,56,54,46,53,56,49,53,51,50,44,52,48,46,57,49,48,57,50,53,93,44,91,45,56,54,46,57,51,48,55,53,57,44,52,48,46,57,49,50,52,49,56,93,44,91,45,56,54,46,57,56,54,52,51,56,44,52,48,46,56,51,55,57,50,49,93,44,91,45,56,55,46,48,57,57,55,57,51,44,52,48,46,56,51,55,54,48,55,93,44,91,45,56,55,46,48,57,56,51,57,44,52,48,46,55,51,54,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,78,111,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,52,53,49,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,51,53,48,55,44,52,49,46,52,51,54,56,53,54,93,44,91,45,56,53,46,54,53,49,57,50,56,44,52,49,46,50,57,52,55,55,54,93,44,91,45,56,53,46,53,51,55,49,56,44,52,49,46,50,54,54,49,53,55,93,44,91,45,56,53,46,51,48,55,55,56,49,44,52,49,46,50,54,52,49,53,56,93,44,91,45,56,53,46,49,57,50,48,57,52,44,52,49,46,50,54,52,50,48,57,93,44,91,45,56,53,46,49,57,52,48,56,52,44,52,49,46,53,50,54,52,51,55,93,44,91,45,56,53,46,54,53,52,55,52,55,44,52,49,46,53,50,51,51,52,55,93,44,91,45,56,53,46,54,53,51,53,48,55,44,52,49,46,52,51,54,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,49,53,52,48,54,44,51,55,46,52,50,51,57,55,50,93,44,91,45,56,56,46,52,55,52,48,57,44,51,55,46,51,57,49,56,54,51,93,44,91,45,56,56,46,53,48,55,48,54,50,44,51,55,46,50,53,57,54,56,57,93,44,91,45,56,56,46,52,50,52,54,48,51,44,51,55,46,49,53,49,55,54,52,93,44,91,45,56,56,46,52,57,48,52,49,49,44,51,55,46,48,54,56,53,55,57,93,44,91,45,56,56,46,53,54,54,48,54,49,44,51,55,46,48,55,53,50,48,52,93,44,91,45,56,56,46,52,56,50,57,53,55,44,51,55,46,48,50,50,53,54,54,93,44,91,45,56,56,46,51,55,48,52,54,51,44,51,55,46,48,54,51,50,55,56,93,44,91,45,56,56,46,50,52,48,51,55,49,44,51,54,46,57,56,49,57,49,49,93,44,91,45,56,56,46,49,57,51,53,49,57,44,51,55,46,49,52,55,50,53,54,93,44,91,45,56,56,46,50,49,56,57,56,44,51,55,46,50,55,51,49,52,53,93,44,91,45,56,56,46,51,53,56,52,54,54,44,51,55,46,52,48,52,55,53,50,93,44,91,45,56,56,46,52,49,53,52,48,54,44,51,55,46,52,50,51,57,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,77,105,108,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,51,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,52,49,54,55,51,44,51,49,46,50,53,56,57,54,55,93,44,91,45,56,52,46,57,49,55,52,50,49,44,51,49,46,50,53,53,57,57,93,44,91,45,56,52,46,57,50,50,52,50,51,44,51,49,46,48,55,50,53,57,93,44,91,45,56,52,46,55,51,48,56,53,53,44,51,49,46,48,54,57,49,57,93,44,91,45,56,52,46,53,52,50,54,53,51,44,51,49,46,48,55,57,48,50,57,93,44,91,45,56,52,46,53,51,55,49,48,49,44,51,49,46,50,53,53,57,51,50,93,44,91,45,56,52,46,54,52,49,54,55,51,44,51,49,46,50,53,56,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,55,49,49,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,56,50,56,51,48,49,44,51,53,46,50,54,51,54,55,55,93,44,91,45,56,54,46,56,51,54,51,48,54,44,51,52,46,57,57,49,56,57,57,93,44,91,45,56,54,46,55,56,51,54,50,56,44,51,52,46,57,57,49,57,52,56,93,44,91,45,56,54,46,51,49,56,55,54,49,44,51,52,46,57,57,49,49,54,57,93,44,91,45,56,54,46,51,49,56,49,54,56,44,51,53,46,49,50,54,57,56,54,93,44,91,45,56,54,46,53,50,53,51,48,54,44,51,53,46,51,53,52,55,49,56,93,44,91,45,56,54,46,53,57,57,52,55,56,44,51,53,46,51,54,52,57,53,93,44,91,45,56,54,46,55,52,54,56,57,57,44,51,53,46,50,53,50,56,55,56,93,44,91,45,56,54,46,56,50,56,51,48,49,44,51,53,46,50,54,51,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,49,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,55,56,54,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,50,52,48,53,52,44,51,56,46,49,52,55,52,51,56,93,44,91,45,56,53,46,49,48,49,54,52,54,44,51,56,46,48,51,55,50,55,93,44,91,45,56,53,46,48,50,51,55,49,49,44,51,56,46,49,50,57,48,53,50,93,44,91,45,56,52,46,57,57,55,54,54,55,44,51,56,46,51,51,53,53,56,54,93,44,91,45,56,53,46,50,56,51,48,56,50,44,51,56,46,51,53,56,48,53,52,93,44,91,45,56,53,46,52,54,56,50,48,54,44,51,56,46,50,56,53,51,48,57,93,44,91,45,56,53,46,52,50,52,48,53,52,44,51,56,46,49,52,55,52,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,57,57,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,50,54,50,56,55,44,52,49,46,48,52,54,53,56,49,93,44,91,45,57,55,46,56,50,53,55,50,51,44,52,48,46,54,57,56,53,53,53,93,44,91,45,57,55,46,56,50,52,55,56,44,52,48,46,54,57,56,53,51,55,93,44,91,45,57,55,46,51,54,56,52,48,49,44,52,48,46,54,57,56,54,50,53,93,44,91,45,57,55,46,51,54,56,49,49,56,44,52,49,46,48,52,54,57,52,55,93,44,91,45,57,55,46,56,50,54,50,56,55,44,52,49,46,48,52,54,53,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,48,50,51,44,34,98,101,100,115,34,58,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,51,55,52,50,53,44,52,48,46,48,54,57,57,52,53,93,44,91,45,55,55,46,49,56,53,54,51,44,52,48,46,48,50,57,53,48,49,93,44,91,45,55,55,46,52,48,51,54,48,54,44,51,57,46,57,57,52,52,55,56,93,44,91,45,55,55,46,52,55,49,48,56,53,44,51,57,46,57,52,52,48,55,55,93,44,91,45,55,55,46,52,53,57,49,51,52,44,51,57,46,55,49,57,57,56,52,93,44,91,45,55,55,46,50,49,55,48,50,52,44,51,57,46,55,49,57,56,54,49,93,44,91,45,55,54,46,57,57,57,51,49,56,44,51,57,46,55,50,48,49,48,54,93,44,91,45,55,54,46,57,53,52,57,51,50,44,51,57,46,56,53,54,56,53,93,44,91,45,55,55,46,48,49,56,54,52,56,44,52,48,46,48,49,51,57,52,55,93,44,91,45,55,55,46,49,51,55,52,50,53,44,52,48,46,48,54,57,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,49,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,57,51,48,57,57,44,51,51,46,49,49,56,54,54,56,93,44,91,45,56,49,46,51,54,52,56,53,55,44,51,51,46,49,48,56,48,54,49,93,44,91,45,56,49,46,53,52,49,56,56,49,44,51,51,46,49,53,56,50,55,57,93,44,91,45,56,49,46,54,49,52,48,51,51,44,51,51,46,48,57,53,50,53,49,93,44,91,45,56,49,46,53,52,49,56,51,49,44,51,51,46,48,52,53,54,53,52,93,44,91,45,56,49,46,52,50,54,52,55,53,44,51,50,46,56,52,48,55,55,51,93,44,91,45,56,49,46,52,48,53,48,53,52,44,51,50,46,55,52,52,57,53,55,93,44,91,45,56,49,46,50,54,49,54,54,50,44,51,50,46,56,51,57,49,51,57,93,44,91,45,56,49,46,50,49,57,53,54,51,44,51,50,46,57,53,51,51,53,93,44,91,45,56,49,46,48,56,50,50,57,49,44,51,51,46,48,50,54,54,51,93,44,91,45,56,49,46,49,57,51,48,57,57,44,51,51,46,49,49,56,54,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,97,118,105,100,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,48,49,55,44,34,98,101,100,115,34,58,52,51,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,49,51,50,51,51,44,51,54,46,51,56,50,54,50,49,93,44,91,45,56,54,46,57,57,55,55,48,53,44,51,54,46,49,50,56,53,49,50,93,44,91,45,56,55,46,48,53,51,55,50,50,44,51,54,46,48,52,53,53,56,50,93,44,91,45,56,54,46,55,57,48,56,55,53,44,51,54,46,48,51,54,55,49,53,93,44,91,45,56,54,46,54,49,56,56,57,50,44,51,53,46,57,54,56,50,50,52,93,44,91,45,56,54,46,53,49,53,53,56,57,44,51,54,46,49,48,48,54,49,93,44,91,45,56,54,46,53,57,52,50,56,54,44,51,54,46,50,52,53,49,48,53,93,44,91,45,56,54,46,55,53,52,55,57,53,44,51,54,46,52,48,53,52,57,54,93,44,91,45,56,54,46,57,49,51,50,51,51,44,51,54,46,51,56,50,54,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,85,105,110,116,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,50,51,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,52,56,57,52,52,44,52,48,46,54,54,50,54,48,49,93,44,91,45,49,48,57,46,49,54,49,48,54,51,44,52,48,46,54,56,51,56,49,55,93,44,91,45,49,48,57,46,50,48,51,50,53,44,52,48,46,56,53,56,52,48,49,93,44,91,45,49,48,57,46,51,57,52,52,57,49,44,52,48,46,56,53,56,49,54,54,93,44,91,45,49,48,57,46,56,55,48,50,48,55,44,52,48,46,55,54,51,56,50,57,93,44,91,45,49,48,57,46,57,55,54,52,48,50,44,52,48,46,56,48,57,54,56,54,93,44,91,45,49,48,57,46,57,55,54,56,49,52,44,51,57,46,56,48,54,50,51,93,44,91,45,49,49,48,46,48,50,51,57,54,51,44,51,57,46,52,54,57,50,54,56,93,44,91,45,49,48,57,46,57,53,51,51,52,57,44,51,57,46,52,54,49,56,48,49,93,44,91,45,49,48,57,46,49,48,54,57,55,50,44,51,57,46,52,54,49,57,55,57,93,44,91,45,49,48,57,46,48,53,49,50,50,54,44,51,57,46,52,57,55,55,51,57,93,44,91,45,49,48,57,46,48,53,49,50,50,55,44,51,57,46,54,54,48,52,54,54,93,44,91,45,49,48,57,46,48,53,48,57,52,57,44,52,48,46,50,50,50,54,52,55,93,44,91,45,49,48,57,46,48,52,56,57,52,52,44,52,48,46,54,54,50,54,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,48,52,52,48,44,34,98,101,100,115,34,58,49,51,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,49,55,50,56,54,50,44,52,48,46,52,54,55,48,54,53,93,44,91,45,49,49,50,46,49,57,56,52,54,49,44,52,48,46,51,49,51,50,48,54,93,44,91,45,49,49,50,46,49,52,54,56,53,54,44,52,48,46,49,55,55,56,49,55,93,44,91,45,49,49,50,46,49,55,57,56,44,52,48,46,48,49,49,54,53,54,93,44,91,45,49,49,50,46,48,54,50,53,53,50,44,51,57,46,57,48,52,54,56,93,44,91,45,49,49,50,46,48,51,49,56,51,53,44,51,57,46,55,56,49,49,55,50,93,44,91,45,49,49,49,46,56,50,55,49,48,54,44,51,57,46,57,52,55,48,48,50,93,44,91,45,49,49,49,46,54,52,49,57,52,52,44,51,57,46,56,49,50,56,54,57,93,44,91,45,49,49,49,46,50,52,55,52,57,54,44,51,57,46,56,49,51,48,50,56,93,44,91,45,49,49,48,46,56,53,55,55,56,44,51,57,46,56,49,51,50,56,53,93,44,91,45,49,49,48,46,56,57,49,54,53,53,44,51,57,46,56,57,57,54,53,52,93,44,91,45,49,49,49,46,48,56,51,48,54,49,44,51,57,46,57,52,51,49,57,56,93,44,91,45,49,49,49,46,50,52,57,51,51,57,44,52,48,46,48,53,53,50,49,55,93,44,91,45,49,49,49,46,50,50,53,53,48,55,44,52,48,46,49,54,55,51,50,52,93,44,91,45,49,49,49,46,51,50,49,51,48,53,44,52,48,46,50,56,55,51,55,50,93,44,91,45,49,49,49,46,52,50,56,55,50,56,44,52,48,46,50,56,55,55,54,93,44,91,45,49,49,49,46,53,53,53,50,51,53,44,52,48,46,51,54,50,54,57,54,93,44,91,45,49,49,49,46,54,50,48,52,51,55,44,52,48,46,52,53,53,48,49,56,93,44,91,45,49,49,49,46,53,57,51,57,52,50,44,52,48,46,53,55,55,48,54,54,93,44,91,45,49,49,49,46,57,52,54,52,53,52,44,52,48,46,52,50,52,53,57,52,93,44,91,45,49,49,50,46,49,55,50,56,54,50,44,52,48,46,52,54,55,48,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,57,57,48,49,50,44,51,57,46,54,48,55,49,51,55,93,44,91,45,56,55,46,50,51,56,57,54,52,44,51,57,46,53,50,48,54,50,93,44,91,45,56,55,46,50,52,48,51,55,57,44,51,57,46,50,53,57,48,54,52,93,44,91,45,56,55,46,50,52,48,55,51,55,44,51,57,46,49,55,49,55,55,51,93,44,91,45,56,55,46,48,53,52,53,55,56,44,51,57,46,49,54,56,48,56,54,93,44,91,45,56,55,46,48,53,51,54,52,54,44,51,57,46,51,52,50,54,50,49,93,44,91,45,56,54,46,57,52,50,52,55,51,44,51,57,46,51,52,50,48,52,51,93,44,91,45,56,54,46,57,51,57,57,56,49,44,51,57,46,52,55,51,51,52,53,93,44,91,45,56,55,46,48,49,51,48,54,50,44,51,57,46,54,48,52,55,56,55,93,44,91,45,56,55,46,49,57,57,48,49,50,44,51,57,46,54,48,55,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,75,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,48,55,52,55,44,34,98,101,100,115,34,58,53,55,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,48,53,53,55,51,57,44,52,48,46,54,53,49,55,54,93,44,91,45,55,52,46,48,51,54,50,57,51,44,52,48,46,53,53,49,48,52,50,93,44,91,45,55,51,46,56,55,57,50,50,50,44,52,48,46,53,55,52,54,53,54,93,44,91,45,55,51,46,56,51,51,48,52,49,44,52,48,46,54,50,56,50,54,49,93,44,91,45,55,51,46,57,54,50,52,55,56,44,52,48,46,55,51,54,56,48,50,93,44,91,45,55,52,46,48,51,52,53,55,51,44,52,48,46,54,56,52,56,54,54,93,44,91,45,55,52,46,48,53,53,55,51,57,44,52,48,46,54,53,49,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,49,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,53,57,57,55,52,44,51,56,46,54,57,51,48,55,55,93,44,91,45,57,51,46,48,54,55,50,57,49,44,51,56,46,53,50,57,57,57,53,93,44,91,45,57,51,46,48,55,55,54,57,50,44,51,56,46,50,54,51,48,57,50,93,44,91,45,57,51,46,48,50,50,50,55,55,44,51,56,46,49,57,56,54,52,50,93,44,91,45,57,50,46,55,54,52,57,54,51,44,51,56,46,49,56,57,53,51,52,93,44,91,45,57,50,46,54,57,53,56,56,54,44,51,56,46,50,50,50,48,51,49,93,44,91,45,57,50,46,54,56,57,56,51,52,44,51,56,46,51,52,56,52,55,50,93,44,91,45,57,50,46,54,50,53,49,56,57,44,51,56,46,52,51,48,55,55,56,93,44,91,45,57,50,46,56,52,49,56,55,49,44,51,56,46,53,57,54,55,57,50,93,44,91,45,57,50,46,56,51,57,56,51,55,44,51,56,46,54,56,51,57,55,52,93,44,91,45,57,51,46,48,53,57,57,55,52,44,51,56,46,54,57,51,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,72,111,108,109,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,56,53,57,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,50,48,49,49,44,52,48,46,53,54,56,50,48,54,93,44,91,45,56,50,46,49,56,52,54,48,55,44,52,48,46,52,53,54,50,56,93,44,91,45,56,49,46,55,48,57,49,51,50,44,52,48,46,52,52,52,55,55,53,93,44,91,45,56,49,46,54,52,57,49,57,57,44,52,48,46,54,51,53,49,48,54,93,44,91,45,56,49,46,54,53,48,48,52,53,44,52,48,46,54,54,56,49,49,55,93,44,91,45,56,50,46,49,50,54,49,57,57,44,52,48,46,54,54,56,50,50,57,93,44,91,45,56,50,46,50,50,48,49,49,44,52,48,46,53,54,56,50,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,79,115,99,101,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,54,48,57,52,55,44,52,51,46,53,48,48,48,51,54,93,44,91,45,57,53,46,56,54,49,57,49,52,44,52,51,46,50,53,55,53,54,54,93,44,91,45,57,53,46,51,56,56,48,55,56,44,52,51,46,50,53,53,50,50,49,93,44,91,45,57,53,46,51,56,55,55,56,55,44,52,51,46,53,48,48,50,50,54,93,44,91,45,57,53,46,52,53,52,52,51,51,44,52,51,46,53,48,48,54,52,54,93,44,91,45,57,53,46,56,54,48,57,52,55,44,52,51,46,53,48,48,48,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,74,101,110,110,105,110,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,55,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,56,56,48,52,44,51,57,46,48,54,56,53,51,54,93,44,91,45,56,53,46,55,57,53,51,53,55,44,51,56,46,56,48,55,53,48,56,93,44,91,45,56,53,46,54,56,51,56,51,57,44,51,56,46,56,49,53,52,48,54,93,44,91,45,56,53,46,52,52,52,56,57,55,44,51,56,46,57,49,50,57,57,56,93,44,91,45,56,53,46,52,52,48,48,53,52,44,51,57,46,49,57,53,54,49,55,93,44,91,45,56,53,46,53,54,54,51,50,44,51,57,46,49,51,50,55,54,49,93,44,91,45,56,53,46,54,56,54,55,56,51,44,51,57,46,49,51,48,56,53,57,93,44,91,45,56,53,46,55,57,56,56,48,52,44,51,57,46,48,54,56,53,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,84,119,105,110,32,70,97,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,54,54,54,44,34,98,101,100,115,34,58,50,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,54,49,54,52,56,55,44,52,50,46,54,52,57,50,57,56,93,44,91,45,49,49,52,46,56,49,57,57,55,49,44,52,50,46,54,54,57,55,52,54,93,44,91,45,49,49,52,46,57,48,49,54,51,54,44,52,50,46,56,53,57,49,48,56,93,44,91,45,49,49,53,46,48,51,55,55,55,52,44,52,50,46,57,49,49,56,54,52,93,44,91,45,49,49,53,46,48,51,55,54,57,55,44,52,50,46,55,54,56,52,49,52,93,44,91,45,49,49,53,46,48,51,56,49,53,55,44,52,49,46,57,57,54,50,55,57,93,44,91,45,49,49,52,46,50,56,49,55,57,57,44,52,49,46,57,57,52,52,52,49,93,44,91,45,49,49,52,46,50,56,53,52,52,56,44,52,50,46,52,49,55,51,51,51,93,44,91,45,49,49,52,46,48,54,57,49,54,50,44,52,50,46,52,49,55,49,50,52,93,44,91,45,49,49,52,46,48,48,48,51,56,56,44,52,50,46,53,50,54,51,55,51,93,44,91,45,49,49,52,46,49,50,52,57,51,52,44,52,50,46,52,57,54,49,51,93,44,91,45,49,49,52,46,50,52,52,55,48,51,44,52,50,46,53,53,57,50,52,52,93,44,91,45,49,49,52,46,54,49,54,52,56,55,44,52,50,46,54,52,57,50,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,50,51,49,44,34,98,101,100,115,34,58,49,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,48,54,55,53,57,44,51,55,46,56,54,51,52,53,55,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,50,55,55,93,44,91,45,56,56,46,55,48,56,53,52,54,44,51,55,46,53,57,57,48,53,57,93,44,91,45,56,56,46,52,49,50,54,57,55,44,51,55,46,53,57,57,54,50,53,93,44,91,45,56,56,46,51,55,53,52,51,52,44,51,55,46,53,57,57,53,57,53,93,44,91,45,56,56,46,51,55,52,53,51,44,51,55,46,57,48,55,54,55,56,93,44,91,45,56,56,46,55,48,54,54,50,50,44,51,55,46,57,48,54,55,57,55,93,44,91,45,56,56,46,55,48,54,55,53,57,44,51,55,46,56,54,51,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,75,97,108,97,109,97,122,111,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,49,53,55,51,44,34,98,101,100,115,34,58,57,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,54,52,54,57,55,44,52,50,46,52,50,48,55,49,53,93,44,91,45,56,53,46,55,54,50,57,52,51,44,52,50,46,48,54,57,51,50,55,93,44,91,45,56,53,46,50,57,51,54,50,54,44,52,50,46,48,55,49,53,53,51,93,44,91,45,56,53,46,50,57,56,56,55,57,44,52,50,46,52,49,57,56,52,57,93,44,91,45,56,53,46,53,52,51,49,57,49,44,52,50,46,52,50,49,52,51,51,93,44,91,45,56,53,46,55,54,52,54,57,55,44,52,50,46,52,50,48,55,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,48,54,57,56,55,56,44,51,52,46,48,56,54,49,57,49,93,44,91,45,56,48,46,49,51,53,52,49,51,44,51,52,46,50,56,52,53,53,50,93,44,91,45,56,48,46,50,56,56,54,57,50,44,51,52,46,51,54,52,49,51,57,93,44,91,45,56,48,46,52,50,48,52,56,52,44,51,52,46,50,57,51,48,55,52,93,44,91,45,56,48,46,52,55,57,56,53,55,44,51,52,46,49,54,56,54,57,54,93,44,91,45,56,48,46,52,56,49,51,49,56,44,51,52,46,49,49,50,54,50,50,93,44,91,45,56,48,46,51,50,49,55,50,49,44,51,52,46,48,56,48,51,53,54,93,44,91,45,56,48,46,49,56,48,51,55,49,44,51,51,46,57,53,50,48,48,50,93,44,91,45,56,48,46,48,48,48,53,57,52,44,51,52,46,48,52,55,56,55,55,93,44,91,45,56,48,46,48,54,57,56,55,56,44,51,52,46,48,56,54,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,49,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,49,52,54,56,48,56,44,52,52,46,49,54,53,54,54,54,93,44,91,45,49,48,55,46,49,49,48,55,51,52,44,52,51,46,53,48,48,50,56,54,93,44,91,45,49,48,54,46,53,57,52,56,57,55,44,52,51,46,52,57,49,52,55,93,44,91,45,49,48,54,46,48,55,56,48,54,56,44,52,51,46,52,57,52,52,55,49,93,44,91,45,49,48,54,46,48,49,55,51,54,54,44,52,51,46,52,57,52,57,54,57,93,44,91,45,49,48,54,46,48,48,57,54,55,54,44,52,52,46,53,54,51,57,56,49,93,44,91,45,49,48,54,46,52,50,56,56,57,55,44,52,52,46,53,53,54,55,55,55,93,44,91,45,49,48,55,46,51,54,57,54,50,49,44,52,52,46,53,53,57,56,51,55,93,44,91,45,49,48,55,46,50,48,50,48,51,56,44,52,52,46,52,52,54,51,48,53,93,44,91,45,49,48,55,46,49,52,53,48,48,49,44,52,52,46,51,50,52,48,48,52,93,44,91,45,49,48,55,46,49,52,54,56,48,56,44,52,52,46,49,54,53,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,68,97,118,105,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,51,55,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,57,56,55,55,49,44,51,56,46,57,48,51,57,55,52,93,44,91,45,56,55,46,50,52,54,54,44,51,56,46,56,48,55,55,48,49,93,44,91,45,56,55,46,50,55,56,53,53,51,44,51,56,46,54,57,49,51,52,51,93,44,91,45,56,55,46,50,52,50,48,57,55,44,51,56,46,53,52,52,57,51,93,44,91,45,56,55,46,48,55,50,51,54,57,44,51,56,46,53,49,52,55,93,44,91,45,56,54,46,57,50,52,49,56,54,44,51,56,46,53,48,53,51,53,56,93,44,91,45,56,54,46,57,48,52,50,53,50,44,51,56,46,57,48,52,50,48,52,93,44,91,45,56,55,46,48,57,56,55,55,49,44,51,56,46,57,48,51,57,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,71,114,97,110,100,32,84,114,97,118,101,114,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,55,52,54,44,34,98,101,100,115,34,58,52,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,56,48,54,55,52,44,52,53,46,49,50,48,51,50,54,93,44,91,45,56,53,46,53,53,48,52,53,53,44,52,53,46,48,53,49,48,55,51,93,44,91,45,56,53,46,54,49,56,48,51,51,44,52,52,46,55,55,52,53,53,55,93,44,91,45,56,53,46,56,49,53,49,49,57,44,52,52,46,55,55,52,53,51,52,93,44,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,44,91,45,56,53,46,51,51,52,44,52,52,46,53,49,50,51,48,51,93,44,91,45,56,53,46,51,51,50,56,51,54,44,52,52,46,56,49,50,51,55,50,93,44,91,45,56,53,46,52,55,51,56,52,49,44,52,52,46,56,53,57,52,52,57,93,44,91,45,56,53,46,52,50,55,54,56,56,44,52,52,46,57,54,53,50,55,51,93,44,91,45,56,53,46,52,56,48,54,55,52,44,52,53,46,49,50,48,51,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,54,49,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,50,51,57,51,50,44,51,48,46,56,57,93,44,91,45,57,50,46,57,55,56,52,53,51,44,51,48,46,56,55,56,49,55,53,93,44,91,45,57,50,46,57,55,57,49,55,44,51,48,46,53,57,56,51,52,93,44,91,45,57,51,46,49,51,48,51,56,44,51,48,46,53,57,55,55,55,55,93,44,91,45,57,51,46,49,51,49,49,53,53,44,51,48,46,52,50,51,54,49,50,93,44,91,45,57,50,46,55,55,53,53,53,52,44,51,48,46,52,51,55,54,53,54,93,44,91,45,57,50,46,54,51,48,51,52,55,44,51,48,46,52,56,55,56,55,51,93,44,91,45,57,50,46,53,57,55,51,53,51,44,51,48,46,53,56,49,54,50,51,93,44,91,45,57,50,46,53,57,55,55,52,49,44,51,48,46,56,57,54,49,48,49,93,44,91,45,57,50,46,56,50,51,57,51,50,44,51,48,46,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,117,103,104,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,49,55,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,55,54,51,57,56,44,52,52,46,53,52,56,49,49,49,93,44,91,45,49,48,48,46,53,50,54,52,57,56,44,52,52,46,53,52,55,52,50,50,93,44,91,45,49,48,48,46,53,55,53,55,57,54,44,52,52,46,52,57,49,55,49,51,93,44,91,45,49,48,48,46,51,56,54,51,55,54,44,52,52,46,52,52,48,48,48,56,93,44,91,45,49,48,48,46,51,54,53,51,57,44,52,52,46,51,53,53,53,50,52,93,44,91,45,49,48,48,46,48,56,53,51,51,44,52,52,46,51,48,56,52,53,49,93,44,91,45,57,57,46,57,51,56,50,49,55,44,52,52,46,49,57,53,49,57,53,93,44,91,45,57,57,46,56,56,52,52,56,53,44,52,52,46,49,50,57,53,56,50,93,44,91,45,57,57,46,54,53,52,53,51,54,44,52,52,46,49,48,49,54,56,57,93,44,91,45,57,57,46,54,54,51,53,48,56,44,52,52,46,50,49,55,53,49,55,93,44,91,45,57,57,46,54,55,54,51,57,56,44,52,52,46,53,52,56,49,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,72,121,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,55,52,50,53,50,44,52,52,46,56,57,55,53,48,51,93,44,91,45,57,57,46,54,55,54,51,57,56,44,52,52,46,53,52,56,49,49,49,93,44,91,45,57,57,46,54,54,51,53,48,56,44,52,52,46,50,49,55,53,49,55,93,44,91,45,57,57,46,53,55,54,53,55,49,44,52,52,46,49,57,50,52,50,49,93,44,91,45,57,57,46,51,48,48,49,56,44,52,52,46,49,57,52,56,51,93,44,91,45,57,57,46,51,49,49,55,53,52,44,52,52,46,56,57,55,50,50,55,93,44,91,45,57,57,46,53,55,50,54,57,57,44,52,52,46,56,57,55,50,54,51,93,44,91,45,57,57,46,54,55,52,50,53,50,44,52,52,46,56,57,55,53,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,108,97,114,101,110,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,48,49,55,44,34,98,101,100,115,34,58,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,55,52,54,48,49,44,51,51,46,57,52,54,53,50,55,93,44,91,45,56,48,46,50,53,53,57,48,52,44,51,51,46,56,48,51,55,48,56,93,44,91,45,56,48,46,51,57,55,49,51,49,44,51,51,46,55,54,55,56,50,49,93,44,91,45,56,48,46,53,51,52,48,56,53,44,51,51,46,54,52,51,57,49,49,93,44,91,45,56,48,46,52,57,54,50,55,51,44,51,51,46,53,53,56,52,56,49,93,44,91,45,56,48,46,51,53,52,53,51,57,44,51,51,46,52,51,48,52,48,56,93,44,91,45,56,48,46,50,50,50,50,54,55,44,51,51,46,52,52,51,55,49,54,93,44,91,45,56,48,46,49,48,49,54,57,55,44,51,51,46,52,57,54,56,57,49,93,44,91,45,55,57,46,57,55,52,51,56,50,44,51,51,46,55,50,49,53,57,93,44,91,45,55,57,46,57,57,53,54,51,56,44,51,51,46,55,54,55,57,48,54,93,44,91,45,55,57,46,56,55,53,54,50,44,51,51,46,56,56,53,50,52,53,93,44,91,45,55,57,46,57,55,52,54,48,49,44,51,51,46,57,52,54,53,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,83,116,105,108,108,119,97,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,49,48,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,52,49,55,49,53,56,44,52,54,46,48,52,52,55,53,57,93,44,91,45,49,48,57,46,53,48,54,54,48,52,44,52,53,46,57,53,57,49,49,50,93,44,91,45,49,48,57,46,53,54,51,57,48,55,44,52,53,46,55,56,51,52,55,49,93,44,91,45,49,48,57,46,53,54,50,48,55,44,52,53,46,54,48,57,49,49,57,93,44,91,45,49,48,57,46,54,56,53,51,56,53,44,52,53,46,54,48,57,48,50,50,93,44,91,45,49,48,57,46,57,51,50,48,50,53,44,52,53,46,53,50,50,52,53,54,93,44,91,45,49,48,57,46,57,51,49,57,56,52,44,52,53,46,51,52,56,55,53,53,93,44,91,45,49,49,48,46,48,54,52,53,56,49,44,52,53,46,51,52,56,55,53,53,93,44,91,45,49,49,48,46,48,54,52,53,49,56,44,52,53,46,49,55,50,49,50,57,93,44,91,45,49,48,57,46,55,57,56,54,55,51,44,52,53,46,49,54,55,51,51,57,93,44,91,45,49,48,57,46,54,56,55,55,57,50,44,52,53,46,49,54,55,51,51,57,93,44,91,45,49,48,57,46,53,54,49,57,50,52,44,52,53,46,51,54,50,56,52,51,93,44,91,45,49,48,57,46,51,53,54,52,49,55,44,52,53,46,52,54,52,51,50,54,93,44,91,45,49,48,57,46,49,57,49,55,54,49,44,52,53,46,52,54,52,53,48,52,93,44,91,45,49,48,57,46,48,54,56,52,57,56,44,52,53,46,53,56,51,50,52,49,93,44,91,45,49,48,56,46,56,52,51,48,49,54,44,52,53,46,54,49,49,48,52,50,93,44,91,45,49,48,56,46,57,48,52,55,50,54,44,52,53,46,54,56,50,56,50,49,93,44,91,45,49,48,56,46,57,48,49,54,53,53,44,52,53,46,57,53,57,52,49,54,93,44,91,45,49,48,56,46,57,50,52,53,56,57,44,52,54,46,49,51,50,51,55,93,44,91,45,49,48,57,46,52,49,54,50,50,55,44,52,54,46,49,51,50,51,55,49,93,44,91,45,49,48,57,46,52,49,55,49,53,56,44,52,54,46,48,52,52,55,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,108,101,100,115,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,54,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,49,54,48,54,50,44,51,53,46,55,54,49,57,51,57,93,44,91,45,56,53,46,50,53,52,48,54,50,44,51,53,46,55,54,53,54,49,49,93,44,91,45,56,53,46,52,50,51,56,48,52,44,51,53,46,53,54,55,52,50,50,93,44,91,45,56,53,46,52,48,51,50,57,56,44,51,53,46,52,57,50,50,56,93,44,91,45,56,53,46,50,50,53,56,55,55,44,51,53,46,51,53,52,50,55,54,93,44,91,45,56,53,46,49,51,53,49,57,49,44,51,53,46,52,53,56,54,52,57,93,44,91,45,56,53,46,49,48,55,55,54,50,44,51,53,46,53,55,49,51,53,57,93,44,91,45,56,52,46,57,49,54,48,54,50,44,51,53,46,55,54,49,57,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,57,34,44,34,78,65,77,69,34,58,34,84,111,100,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,53,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,53,57,51,55,49,44,51,55,46,48,55,50,52,48,49,93,44,91,45,56,55,46,51,51,53,57,56,44,51,54,46,54,52,49,54,53,57,93,44,91,45,56,55,46,49,49,52,57,56,51,44,51,54,46,54,52,50,51,55,49,93,44,91,45,56,55,46,48,54,48,56,52,57,44,51,54,46,54,52,50,57,54,51,93,44,91,45,56,55,46,48,53,51,49,54,52,44,51,55,46,48,54,49,48,49,57,93,44,91,45,56,55,46,50,53,57,51,55,49,44,51,55,46,48,55,50,52,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,87,101,97,107,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,54,50,54,44,34,98,101,100,115,34,58,49,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,50,55,51,48,51,44,51,54,46,53,48,50,54,51,51,93,44,91,45,56,56,46,56,49,53,51,56,57,44,51,54,46,52,50,50,53,50,56,93,44,91,45,56,56,46,57,53,48,50,48,53,44,51,54,46,52,48,57,50,52,56,93,44,91,45,56,56,46,57,53,57,56,51,57,44,51,54,46,50,50,50,56,51,52,93,44,91,45,56,56,46,56,51,53,52,53,55,44,51,54,46,49,50,49,52,54,49,93,44,91,45,56,56,46,54,57,50,55,48,57,44,51,54,46,48,54,50,55,52,54,93,44,91,45,56,56,46,53,51,48,51,50,50,44,51,54,46,49,53,50,48,50,51,93,44,91,45,56,56,46,53,49,54,52,48,51,44,51,54,46,53,48,49,53,56,51,93,44,91,45,56,56,46,56,49,54,55,54,51,44,51,54,46,53,48,50,54,54,53,93,44,91,45,56,56,46,56,50,55,51,48,51,44,51,54,46,53,48,50,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,56,52,50,57,44,34,98,101,100,115,34,58,49,57,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,54,50,53,56,52,52,44,51,55,46,50,56,50,48,49,49,93,44,91,45,57,51,46,54,48,56,56,57,57,44,51,55,46,48,57,56,49,53,51,93,44,91,45,57,51,46,48,54,53,50,55,52,44,51,55,46,48,56,56,54,57,52,93,44,91,45,57,51,46,48,55,51,51,56,44,51,55,46,52,49,52,57,56,57,93,44,91,45,57,51,46,49,56,50,52,56,57,44,51,55,46,52,49,55,50,48,52,93,44,91,45,57,51,46,54,50,49,49,53,51,44,51,55,46,52,50,55,52,50,51,93,44,91,45,57,51,46,54,50,53,56,52,52,44,51,55,46,50,56,50,48,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,101,104,105,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,50,54,49,51,44,34,98,101,100,115,34,58,49,52,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,57,49,52,55,51,44,52,48,46,54,55,55,50,55,93,44,91,45,55,53,46,53,50,57,54,57,52,44,52,48,46,52,52,54,57,57,53,93,44,91,45,55,53,46,52,56,52,48,53,55,44,52,48,46,52,49,56,52,53,49,93,44,91,45,55,53,46,51,51,51,53,49,52,44,52,48,46,53,51,55,48,53,55,93,44,91,45,55,53,46,51,56,51,48,52,57,44,52,48,46,54,50,51,54,54,51,93,44,91,45,55,53,46,52,56,49,52,54,57,44,52,48,46,54,53,53,55,52,52,93,44,91,45,55,53,46,54,48,56,57,56,53,44,52,48,46,55,56,55,51,56,55,93,44,91,45,55,53,46,55,53,55,56,48,55,44,52,48,46,55,51,53,52,49,52,93,44,91,45,55,53,46,56,57,49,52,55,51,44,52,48,46,54,55,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,83,101,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,50,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,49,49,56,44,52,49,46,48,52,54,57,52,55,93,44,91,45,57,55,46,51,54,56,52,48,49,44,52,48,46,54,57,56,54,50,53,93,44,91,45,57,54,46,57,49,51,52,57,51,44,52,48,46,54,57,55,57,52,56,93,44,91,45,57,54,46,57,49,48,57,52,44,52,49,46,48,52,54,49,49,54,93,44,91,45,57,55,46,51,54,56,49,49,56,44,52,49,46,48,52,54,57,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,104,101,109,117,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,55,52,48,44,34,98,101,100,115,34,58,52,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,54,53,48,50,56,44,52,50,46,50,55,56,52,57,53,93,44,91,45,55,54,46,57,54,53,55,50,56,44,52,50,46,48,48,49,50,55,54,93,44,91,45,55,54,46,57,50,55,48,56,52,44,52,50,46,48,48,49,54,55,52,93,44,91,45,55,54,46,53,53,55,54,50,52,44,52,50,46,48,48,48,49,54,93,44,91,45,55,54,46,53,51,56,51,52,57,44,52,50,46,50,56,49,55,53,53,93,44,91,45,55,54,46,54,49,57,51,48,51,44,52,50,46,50,56,50,56,53,51,93,44,91,45,55,54,46,57,54,53,48,50,56,44,52,50,46,50,55,56,52,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,54,53,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,54,52,51,56,49,44,52,50,46,56,54,55,52,54,49,93,44,91,45,55,56,46,52,54,51,57,52,44,52,50,46,53,51,54,51,51,50,93,44,91,45,55,56,46,51,48,56,56,51,57,44,52,50,46,53,50,49,50,49,55,93,44,91,45,55,56,46,48,51,56,50,54,49,44,52,50,46,53,50,49,53,50,50,93,44,91,45,55,55,46,57,53,54,51,51,52,44,52,50,46,54,54,55,51,50,50,93,44,91,45,55,55,46,57,53,52,57,54,52,44,52,50,46,56,54,50,55,53,52,93,44,91,45,55,56,46,52,54,52,51,56,49,44,52,50,46,56,54,55,52,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,83,116,97,110,105,115,108,97,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,57,51,48,49,44,34,98,101,100,115,34,58,49,51,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,57,50,54,52,52,57,44,51,56,46,48,55,55,52,50,49,93,44,91,45,49,50,48,46,57,50,50,49,55,52,44,51,55,46,55,52,55,56,48,54,93,44,91,45,49,50,49,46,49,53,53,56,52,57,44,51,55,46,55,49,57,56,52,52,93,44,91,45,49,50,49,46,52,55,49,57,50,53,44,51,55,46,52,56,49,55,56,51,93,44,91,45,49,50,49,46,52,55,50,54,52,56,44,51,55,46,52,56,50,49,55,93,44,91,45,49,50,49,46,52,49,50,53,52,57,44,51,55,46,51,56,57,52,51,53,93,44,91,45,49,50,49,46,52,53,52,48,48,57,44,51,55,46,50,56,52,48,53,93,44,91,45,49,50,49,46,52,48,52,54,51,54,44,51,55,46,49,53,53,57,56,57,93,44,91,45,49,50,49,46,50,50,54,56,48,52,44,51,55,46,49,51,52,55,55,52,93,44,91,45,49,50,48,46,57,55,50,57,52,49,44,51,55,46,51,51,56,52,56,51,93,44,91,45,49,50,48,46,57,56,51,55,53,54,44,51,55,46,51,57,57,54,52,93,44,91,45,49,50,48,46,51,56,55,54,55,44,51,55,46,54,51,51,51,54,52,93,44,91,45,49,50,48,46,51,56,55,54,49,51,44,51,55,46,54,51,51,55,48,52,93,44,91,45,49,50,48,46,54,53,51,50,55,52,44,51,55,46,56,51,49,56,53,56,93,44,91,45,49,50,48,46,57,50,54,52,52,57,44,51,56,46,48,55,55,52,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,49,55,55,56,44,34,98,101,100,115,34,58,49,50,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,49,50,48,50,51,50,44,52,48,46,57,54,56,55,48,50,93,44,91,45,55,53,46,51,48,48,53,57,52,44,52,48,46,56,53,57,53,54,51,93,44,91,45,55,53,46,52,55,52,49,57,51,44,52,48,46,56,49,52,55,52,54,93,44,91,45,55,53,46,54,48,56,57,56,53,44,52,48,46,55,56,55,51,56,55,93,44,91,45,55,53,46,52,56,49,52,54,57,44,52,48,46,54,53,53,55,52,52,93,44,91,45,55,53,46,51,56,51,48,52,57,44,52,48,46,54,50,51,54,54,51,93,44,91,45,55,53,46,51,51,51,53,49,52,44,52,48,46,53,51,55,48,53,55,93,44,91,45,55,53,46,49,57,54,56,48,51,44,52,48,46,54,48,56,53,56,93,44,91,45,55,53,46,49,55,49,53,56,55,44,52,48,46,55,55,55,55,52,53,93,44,91,45,55,53,46,48,53,51,54,54,52,44,52,48,46,56,55,51,54,54,93,44,91,45,55,53,46,49,50,48,50,51,50,44,52,48,46,57,54,56,55,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,49,50,50,44,34,98,101,100,115,34,58,50,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,48,53,48,55,51,44,51,52,46,54,56,54,48,51,55,93,44,91,45,56,55,46,49,49,48,49,49,49,44,51,52,46,51,49,51,55,57,57,93,44,91,45,56,54,46,53,56,49,57,51,54,44,51,52,46,51,48,52,54,57,52,93,44,91,45,56,54,46,53,53,48,49,54,54,44,51,52,46,53,52,53,57,54,51,93,44,91,45,56,54,46,54,56,57,51,53,51,44,51,52,46,53,56,54,52,50,53,93,44,91,45,56,54,46,55,57,48,48,53,54,44,51,52,46,53,53,48,55,57,93,44,91,45,56,54,46,57,48,55,50,48,53,44,51,52,46,53,55,57,55,57,50,93,44,91,45,56,55,46,49,48,53,48,55,51,44,51,52,46,54,56,54,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,66,114,101,99,107,105,110,114,105,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,57,48,56,53,52,44,51,56,46,48,52,53,55,51,53,93,44,91,45,56,54,46,53,48,55,48,56,57,44,51,55,46,57,50,57,57,49,55,93,44,91,45,56,54,46,54,53,53,50,55,50,44,51,55,46,56,52,50,53,50,49,93,44,91,45,56,54,46,54,51,56,57,51,53,44,51,55,46,54,54,49,56,55,55,93,44,91,45,56,54,46,53,57,50,56,49,44,51,55,46,53,54,52,51,54,93,44,91,45,56,54,46,50,55,53,50,55,44,51,55,46,53,57,51,53,49,57,93,44,91,45,56,54,46,49,53,49,50,56,53,44,51,55,46,55,57,56,56,55,56,93,44,91,45,56,54,46,52,57,48,56,53,52,44,51,56,46,48,52,53,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,71,114,101,110,97,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,50,55,56,44,34,98,101,100,115,34,58,49,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,50,54,48,57,57,44,51,51,46,56,57,55,57,53,55,93,44,91,45,56,57,46,57,50,54,50,57,52,44,51,51,46,56,50,51,56,53,52,93,44,91,45,57,48,46,49,51,54,52,57,49,44,51,51,46,56,48,57,51,49,57,93,44,91,45,57,48,46,49,51,54,55,56,55,44,51,51,46,55,50,49,54,52,56,93,44,91,45,57,48,46,49,50,55,55,55,53,44,51,51,46,54,55,54,57,53,54,93,44,91,45,56,57,46,55,56,54,56,57,44,51,51,46,54,55,54,55,50,55,93,44,91,45,56,57,46,53,48,54,56,55,50,44,51,51,46,54,55,55,54,48,53,93,44,91,45,56,57,46,53,48,55,49,51,53,44,51,51,46,55,50,49,56,49,57,93,44,91,45,56,57,46,53,48,55,51,53,51,44,51,51,46,56,54,55,52,54,57,93,44,91,45,56,57,46,55,54,57,48,53,44,51,51,46,56,54,55,51,51,52,93,44,91,45,56,57,46,57,50,54,48,57,57,44,51,51,46,56,57,55,57,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,51,34,44,34,78,65,77,69,34,58,34,83,105,109,112,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,55,54,51,50,57,54,44,51,54,46,54,52,56,57,53,52,93,44,91,45,56,54,46,53,54,51,57,48,57,44,51,54,46,54,51,51,53,54,50,93,44,91,45,56,54,46,52,49,49,51,55,57,44,51,54,46,54,53,48,57,50,52,93,44,91,45,56,54,46,52,48,53,55,54,57,44,51,54,46,55,55,54,49,56,55,93,44,91,45,56,54,46,53,56,51,50,56,57,44,51,54,46,56,51,48,50,56,50,93,44,91,45,56,54,46,54,49,49,53,56,54,44,51,54,46,56,56,51,48,53,55,93,44,91,45,56,54,46,54,57,48,55,49,57,44,51,54,46,56,52,52,51,93,44,91,45,56,54,46,55,54,51,50,57,54,44,51,54,46,54,52,56,57,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,100,32,73,115,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,52,51,49,50,52,44,52,53,46,48,49,48,56,52,93,44,91,45,55,51,46,51,51,53,48,52,52,44,52,52,46,56,48,52,49,48,57,93,44,91,45,55,51,46,51,56,57,56,50,44,52,52,46,54,49,55,50,49,49,93,44,91,45,55,51,46,51,54,49,52,53,53,44,52,52,46,53,54,51,53,54,51,93,44,91,45,55,51,46,50,51,51,50,48,57,44,52,52,46,54,52,57,55,57,49,93,44,91,45,55,51,46,50,50,56,56,53,52,44,52,52,46,55,50,50,56,54,54,93,44,91,45,55,51,46,49,57,49,57,50,56,44,52,53,46,48,49,51,54,49,53,93,44,91,45,55,51,46,51,52,51,49,50,52,44,52,53,46,48,49,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,48,48,51,44,34,98,101,100,115,34,58,51,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,56,54,54,55,57,44,52,48,46,57,48,49,54,48,57,93,44,91,45,56,49,46,48,56,55,50,56,57,44,52,48,46,55,50,55,56,49,54,93,44,91,45,56,48,46,57,49,55,49,55,50,44,52,48,46,55,50,54,57,51,52,93,44,91,45,56,48,46,56,54,49,57,57,52,44,52,48,46,53,57,57,52,48,52,93,44,91,45,56,48,46,54,54,55,57,53,55,44,52,48,46,53,56,50,52,57,54,93,44,91,45,56,48,46,53,49,56,57,57,49,44,52,48,46,54,51,56,56,48,49,93,44,91,45,56,48,46,53,49,57,48,52,52,44,52,48,46,56,53,49,51,51,57,93,44,91,45,56,48,46,53,49,57,49,53,44,52,48,46,57,48,48,51,50,54,93,44,91,45,56,49,46,48,56,54,54,55,57,44,52,48,46,57,48,49,54,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,78,101,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,56,51,56,56,55,52,44,51,56,46,48,52,55,51,55,93,44,91,45,55,57,46,48,48,53,49,50,57,44,51,55,46,56,56,49,54,57,93,44,91,45,55,57,46,49,53,55,51,57,44,51,55,46,56,57,49,48,48,51,93,44,91,45,55,57,46,49,55,50,49,51,49,44,51,55,46,56,48,51,48,57,55,93,44,91,45,55,56,46,57,54,54,57,50,54,44,51,55,46,54,55,55,48,48,52,93,44,91,45,55,56,46,56,54,57,50,52,53,44,51,55,46,53,52,50,48,57,50,93,44,91,45,55,56,46,56,50,53,50,51,56,44,51,55,46,53,53,50,53,52,50,93,44,91,45,55,56,46,54,52,51,57,49,56,44,51,55,46,55,51,51,48,56,52,93,44,91,45,55,56,46,56,51,56,56,55,52,44,51,56,46,48,52,55,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,79,115,99,101,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,56,54,49,57,44,34,98,101,100,115,34,58,54,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,53,55,50,54,56,44,50,56,46,51,52,55,48,57,56,93,44,91,45,56,49,46,54,53,55,49,56,57,44,50,56,46,50,53,57,50,49,55,93,44,91,45,56,49,46,53,53,55,52,53,57,44,50,56,46,50,53,57,51,54,50,93,44,91,45,56,49,46,53,50,52,50,50,55,44,50,56,46,49,52,50,56,48,53,93,44,91,45,56,49,46,52,53,53,55,53,56,44,50,56,46,48,56,52,56,57,93,44,91,45,56,49,46,51,52,54,52,49,56,44,50,56,46,48,56,52,54,57,54,93,44,91,45,56,49,46,51,56,49,48,50,50,44,50,55,46,57,56,51,51,57,51,93,44,91,45,56,49,46,50,57,55,49,49,51,44,50,55,46,56,53,57,53,56,50,93,44,91,45,56,49,46,50,49,52,52,48,57,44,50,55,46,56,50,56,53,53,93,44,91,45,56,49,46,49,52,50,49,54,52,44,50,55,46,54,52,51,50,51,56,93,44,91,45,56,48,46,56,55,51,49,53,44,50,55,46,54,52,50,50,56,56,93,44,91,45,56,48,46,56,54,56,56,56,49,44,50,55,46,56,50,50,53,50,50,93,44,91,45,56,48,46,56,54,50,57,48,56,44,50,56,46,51,52,55,52,56,55,93,44,91,45,56,49,46,54,53,55,50,54,56,44,50,56,46,51,52,55,48,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,52,53,56,49,56,44,51,52,46,52,57,51,53,48,54,93,44,91,45,57,50,46,52,48,52,54,56,44,51,52,46,52,53,49,57,49,54,93,44,91,45,57,50,46,53,56,57,52,49,56,44,51,52,46,52,53,53,54,52,49,93,44,91,45,57,50,46,54,54,56,55,49,49,44,51,52,46,52,49,52,50,51,55,93,44,91,45,57,50,46,54,55,56,51,56,51,44,51,52,46,49,52,57,54,50,50,93,44,91,45,57,50,46,52,57,51,54,55,50,44,51,52,46,49,52,52,50,51,52,93,44,91,45,57,50,46,51,51,54,55,54,53,44,51,52,46,48,53,57,54,51,51,93,44,91,45,57,50,46,50,51,51,51,55,54,44,51,52,46,48,54,50,51,49,50,93,44,91,45,57,50,46,50,48,56,48,52,49,44,51,52,46,52,57,50,55,54,53,93,44,91,45,57,50,46,50,52,53,56,49,56,44,51,52,46,52,57,51,53,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,76,97,117,114,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,52,49,56,44,34,98,101,100,115,34,58,49,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,44,91,45,56,51,46,49,51,56,57,57,49,44,51,50,46,52,50,51,48,54,57,93,44,91,45,56,50,46,57,57,48,57,54,55,44,51,50,46,49,52,55,50,55,52,93,44,91,45,56,50,46,56,56,52,56,48,51,44,51,50,46,49,57,54,48,55,50,93,44,91,45,56,50,46,55,50,49,57,54,52,44,51,50,46,51,48,57,50,56,51,93,44,91,45,56,50,46,54,52,55,55,51,51,44,51,50,46,53,49,50,53,48,55,93,44,91,45,56,50,46,54,54,56,53,53,55,44,51,50,46,54,49,50,49,54,52,93,44,91,45,56,50,46,56,54,50,55,54,51,44,51,50,46,55,49,53,55,54,93,44,91,45,56,50,46,57,53,55,48,54,54,44,51,50,46,55,48,56,51,49,56,93,44,91,45,56,51,46,50,50,54,53,51,54,44,51,50,46,53,56,52,50,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,50,52,56,48,44,34,98,101,100,115,34,58,49,48,51,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,56,52,55,57,52,44,52,48,46,55,57,55,54,56,55,93,44,91,45,55,52,46,48,51,52,53,55,51,44,52,48,46,54,56,52,56,54,54,93,44,91,45,55,51,46,57,54,50,52,55,56,44,52,48,46,55,51,54,56,48,50,93,44,91,45,55,51,46,57,49,50,52,53,54,44,52,48,46,55,57,54,48,57,54,93,44,91,45,55,51,46,57,51,51,56,48,56,44,52,48,46,56,56,50,50,49,52,93,44,91,45,55,51,46,57,56,52,55,57,52,44,52,48,46,55,57,55,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,57,56,48,44,34,98,101,100,115,34,58,52,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,55,57,49,57,44,51,54,46,52,57,57,52,49,52,93,44,91,45,57,52,46,53,54,50,55,50,55,44,51,54,46,49,54,49,56,57,51,93,44,91,45,57,52,46,53,53,50,49,55,50,44,51,54,46,49,48,50,49,50,56,93,44,91,45,57,52,46,51,57,49,49,50,53,44,51,54,46,48,57,57,51,57,54,93,44,91,45,57,52,46,51,51,51,53,54,53,44,51,54,46,50,49,52,55,50,55,93,44,91,45,57,52,46,48,49,55,53,48,57,44,51,54,46,50,48,56,49,52,57,93,44,91,45,57,51,46,56,56,55,55,55,53,44,51,54,46,50,51,53,48,52,54,93,44,91,45,57,51,46,56,49,53,48,55,56,44,51,54,46,51,48,54,53,53,49,93,44,91,45,57,51,46,56,54,54,57,54,49,44,51,54,46,51,52,56,53,55,57,93,44,91,45,57,51,46,56,54,54,54,56,57,44,51,54,46,52,57,56,55,51,53,93,44,91,45,57,52,46,48,55,55,48,56,57,44,51,54,46,52,57,56,55,51,93,44,91,45,57,52,46,54,49,55,57,49,57,44,51,54,46,52,57,57,52,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,73,115,97,98,101,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,52,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,48,52,57,54,53,44,49,56,46,53,54,54,53,54,93,44,91,45,54,55,46,48,53,54,53,48,55,44,49,56,46,52,54,48,57,53,52,93,44,91,45,54,55,46,48,50,55,49,55,51,44,49,56,46,51,57,51,51,55,54,93,44,91,45,54,54,46,57,50,50,48,50,44,49,56,46,51,57,51,50,48,52,93,44,91,45,54,54,46,57,52,53,57,51,56,44,49,56,46,53,52,48,52,49,57,93,44,91,45,54,55,46,49,48,52,57,54,53,44,49,56,46,53,54,54,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,56,51,55,49,44,34,98,101,100,115,34,58,56,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,48,54,54,50,44,50,57,46,52,56,53,48,52,56,93,44,91,45,56,50,46,52,48,51,50,51,55,44,50,57,46,50,49,53,54,50,51,93,44,91,45,56,50,46,53,51,52,56,54,44,50,57,46,50,49,52,54,56,93,44,91,45,56,50,46,53,51,53,53,57,49,44,50,57,46,48,52,52,56,53,53,93,44,91,45,56,50,46,52,55,55,54,51,57,44,50,57,46,48,53,50,52,56,52,93,44,91,45,56,50,46,51,49,49,54,57,55,44,50,56,46,57,54,48,51,57,49,93,44,91,45,56,49,46,57,53,52,49,57,44,50,56,46,57,54,48,48,53,51,93,44,91,45,56,49,46,54,53,56,54,57,56,44,50,56,46,57,54,48,51,52,53,93,44,91,45,56,49,46,54,52,49,57,49,54,44,50,57,46,50,55,54,55,54,54,93,44,91,45,56,49,46,54,56,48,57,48,51,44,50,57,46,51,50,52,52,51,93,44,91,45,56,49,46,55,55,54,50,48,53,44,50,57,46,52,56,55,52,52,56,93,44,91,45,56,49,46,56,52,51,48,48,57,44,50,57,46,53,50,49,48,48,52,93,44,91,45,56,50,46,48,53,53,56,57,57,44,50,57,46,52,55,49,50,51,50,93,44,91,45,56,50,46,52,48,54,54,50,44,50,57,46,52,56,53,48,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,78,111,116,116,111,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,48,48,44,34,98,101,100,115,34,58,49,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,55,57,53,57,50,54,44,51,55,46,49,57,50,53,57,50,93,44,91,45,55,56,46,50,51,49,50,51,52,44,51,55,46,50,57,54,50,50,93,44,91,45,55,56,46,50,51,57,51,53,52,44,51,55,46,49,50,48,48,56,57,93,44,91,45,55,56,46,49,55,48,56,57,53,44,51,55,46,48,53,51,57,52,57,93,44,91,45,55,56,46,48,48,51,54,51,57,44,51,55,46,48,50,50,55,53,54,93,44,91,45,55,55,46,56,56,57,56,49,51,44,51,54,46,57,56,56,56,49,56,93,44,91,45,55,55,46,57,48,48,51,51,56,44,51,55,46,49,52,51,56,56,50,93,44,91,45,55,55,46,55,57,53,57,50,54,44,51,55,46,49,57,50,53,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,50,57,51,44,34,98,101,100,115,34,58,49,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,49,50,48,50,51,50,44,52,48,46,57,54,56,55,48,50,93,44,91,45,55,53,46,48,53,51,54,54,52,44,52,48,46,56,55,51,54,54,93,44,91,45,55,53,46,49,55,49,53,56,55,44,52,48,46,55,55,55,55,52,53,93,44,91,45,55,53,46,49,57,54,56,48,51,44,52,48,46,54,48,56,53,56,93,44,91,45,55,53,46,49,56,57,54,44,52,48,46,53,57,49,55,55,54,93,44,91,45,55,52,46,57,55,48,49,49,50,44,52,48,46,55,48,57,56,54,50,93,44,91,45,55,52,46,56,56,57,56,49,57,44,52,48,46,55,56,55,55,50,57,93,44,91,45,55,52,46,55,54,57,52,50,53,44,52,48,46,57,49,48,57,51,52,93,44,91,45,55,52,46,57,54,54,57,48,54,44,52,49,46,48,57,52,52,49,93,44,91,45,55,53,46,49,50,48,50,51,50,44,52,48,46,57,54,56,55,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,57,49,57,44,34,98,101,100,115,34,58,49,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,53,50,52,50,57,44,52,50,46,53,49,48,48,49,55,93,44,91,45,55,51,46,55,56,51,55,50,49,44,52,50,46,52,54,52,50,51,49,93,44,91,45,55,51,46,55,56,57,53,48,50,44,52,50,46,50,54,55,55,51,56,93,44,91,45,55,51,46,57,49,48,54,55,53,44,52,50,46,49,50,55,50,57,51,93,44,91,45,55,51,46,57,50,57,54,50,54,44,52,50,46,48,55,56,55,55,56,93,44,91,45,55,51,46,55,49,48,57,51,44,52,50,46,48,48,53,52,56,56,93,44,91,45,55,51,46,53,50,55,48,55,50,44,52,49,46,57,55,55,57,56,93,44,91,45,55,51,46,52,57,55,48,49,56,44,52,50,46,48,52,57,54,50,52,93,44,91,45,55,51,46,53,48,56,50,49,44,52,50,46,48,56,54,49,51,52,93,44,91,45,55,51,46,51,53,50,52,50,57,44,52,50,46,53,49,48,48,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,57,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,57,48,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,115,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,48,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,48,52,48,55,55,44,51,54,46,54,56,52,49,50,55,93,44,91,45,55,57,46,56,53,57,50,54,44,51,54,46,54,54,49,55,51,55,93,44,91,45,55,57,46,56,51,55,51,53,57,44,51,54,46,55,48,52,49,51,55,93,44,91,45,55,57,46,56,55,52,55,54,44,51,54,46,55,49,53,50,51,55,93,44,91,45,55,57,46,57,48,52,48,55,55,44,51,54,46,54,56,52,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,111,99,116,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,56,54,44,34,98,101,100,115,34,58,51,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,53,54,53,50,49,44,51,52,46,49,53,54,57,54,53,93,44,91,45,57,53,46,55,55,57,51,55,54,44,51,52,46,49,53,54,54,57,57,93,44,91,45,57,53,46,57,57,49,53,55,56,44,51,52,46,49,53,54,56,48,53,93,44,91,45,57,53,46,57,51,56,49,53,44,51,52,46,49,50,53,49,93,44,91,45,57,53,46,57,51,55,57,56,57,44,51,51,46,57,52,56,50,49,57,93,44,91,45,57,53,46,55,54,49,53,50,44,51,51,46,56,55,51,49,49,56,93,44,91,45,57,53,46,53,53,50,55,57,57,44,51,51,46,57,50,52,51,49,49,93,44,91,45,57,53,46,53,51,51,55,57,56,44,51,51,46,56,56,49,49,53,51,93,44,91,45,57,53,46,51,49,48,52,57,55,44,51,51,46,56,55,55,50,48,52,93,44,91,45,57,53,46,49,53,53,56,56,50,44,51,51,46,57,51,54,53,55,50,93,44,91,45,57,53,46,49,53,54,53,50,49,44,51,52,46,49,53,54,57,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,105,99,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,48,52,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,55,49,54,49,52,44,51,56,46,57,53,55,56,53,50,93,44,91,45,57,55,46,51,55,49,57,49,49,44,51,56,46,54,48,57,51,53,51,93,44,91,45,57,54,46,57,51,48,50,56,54,44,51,56,46,54,48,57,51,54,50,93,44,91,45,57,54,46,57,50,55,50,51,52,44,51,56,46,56,49,50,49,54,93,44,91,45,57,54,46,56,57,48,50,52,53,44,51,56,46,56,55,48,48,54,55,93,44,91,45,57,54,46,57,54,51,52,55,44,51,56,46,57,54,52,57,48,49,93,44,91,45,57,54,46,57,54,51,49,55,55,44,51,57,46,49,51,50,51,93,44,91,45,57,55,46,51,55,49,49,53,52,44,51,57,46,49,51,49,57,54,49,93,44,91,45,57,55,46,51,55,49,54,49,52,44,51,56,46,57,53,55,56,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,50,55,34,44,34,78,65,77,69,34,58,34,83,116,97,114,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,56,57,52,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,54,57,52,49,54,44,50,54,46,53,55,49,54,56,50,93,44,91,45,57,57,46,48,56,50,48,48,54,44,50,54,46,51,57,54,54,54,55,93,44,91,45,57,56,46,56,57,53,54,57,52,44,50,54,46,51,53,51,52,57,49,93,44,91,45,57,56,46,56,50,48,52,53,50,44,50,54,46,51,55,49,48,48,50,93,44,91,45,57,56,46,54,54,52,54,51,51,44,50,54,46,50,51,53,51,53,49,93,44,91,45,57,56,46,53,56,54,55,49,53,44,50,54,46,50,53,55,53,52,50,93,44,91,45,57,56,46,51,50,48,54,55,44,50,54,46,55,56,51,48,56,49,93,44,91,45,57,56,46,52,50,50,54,49,54,44,50,54,46,55,56,51,53,51,53,93,44,91,45,57,56,46,57,53,52,50,51,44,50,54,46,55,56,53,54,57,52,93,44,91,45,57,57,46,48,49,49,49,49,50,44,50,54,46,54,55,53,48,50,51,93,44,91,45,57,57,46,49,54,57,52,49,54,44,50,54,46,53,55,49,54,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,69,102,102,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,54,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,52,56,48,48,54,44,51,50,46,52,56,57,50,56,54,93,44,91,45,56,49,46,53,51,48,57,50,49,44,51,50,46,51,57,48,51,56,53,93,44,91,45,56,49,46,52,51,53,56,51,44,51,50,46,50,52,49,50,56,57,93,44,91,45,56,49,46,51,57,49,54,57,56,44,51,50,46,48,57,53,56,56,54,93,44,91,45,56,49,46,49,57,53,54,51,52,44,51,50,46,50,51,55,52,57,57,93,44,91,45,56,49,46,49,52,52,53,55,50,44,51,50,46,50,50,54,49,50,56,93,44,91,45,56,49,46,49,50,56,53,51,53,44,51,50,46,51,51,56,51,56,49,93,44,91,45,56,49,46,50,56,49,50,55,44,51,50,46,53,53,54,52,55,49,93,44,91,45,56,49,46,51,56,57,50,48,53,44,51,50,46,53,57,53,52,49,54,93,44,91,45,56,49,46,53,52,56,48,48,54,44,51,50,46,52,56,57,50,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,82,111,103,101,114,32,77,105,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,48,56,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,56,49,48,50,50,44,51,54,46,48,49,50,57,50,53,93,44,91,45,57,57,46,52,57,53,56,49,50,44,51,53,46,57,55,56,55,51,50,93,44,91,45,57,57,46,53,53,56,52,56,54,44,51,53,46,56,54,53,57,56,56,93,44,91,45,57,57,46,55,49,55,49,48,49,44,51,53,46,56,53,57,55,54,57,93,44,91,45,57,57,46,56,57,51,51,55,50,44,51,53,46,57,56,53,50,57,53,93,44,91,45,49,48,48,46,48,48,48,51,57,54,44,51,53,46,56,56,49,50,51,51,93,44,91,45,49,48,48,46,48,48,48,51,57,50,44,51,53,46,54,49,57,49,49,53,93,44,91,45,57,57,46,57,57,57,54,54,44,51,53,46,52,50,50,51,54,52,93,44,91,45,57,57,46,53,55,53,56,50,44,51,53,46,52,50,49,54,53,53,93,44,91,45,57,57,46,53,55,53,55,50,51,44,51,53,46,53,48,56,56,54,52,93,44,91,45,57,57,46,51,54,52,49,52,49,44,51,53,46,53,48,56,55,57,51,93,44,91,45,57,57,46,51,55,53,56,49,55,44,51,53,46,56,49,50,49,56,56,93,44,91,45,57,57,46,51,56,49,48,50,50,44,51,54,46,48,49,50,57,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,49,48,54,57,44,52,51,46,53,53,51,57,57,49,93,44,91,45,57,48,46,54,55,49,54,53,50,44,52,51,46,53,53,50,56,53,54,93,44,91,45,57,48,46,54,54,56,53,54,49,44,52,51,46,52,50,50,57,57,52,93,44,91,45,57,48,46,54,54,54,55,56,54,44,52,51,46,49,55,49,55,55,55,93,44,91,45,57,48,46,52,50,57,56,50,53,44,52,51,46,50,48,48,57,52,93,44,91,45,57,48,46,49,57,51,56,49,52,44,52,51,46,49,54,52,52,54,52,93,44,91,45,57,48,46,49,57,49,57,54,52,44,52,51,46,53,53,52,57,57,54,93,44,91,45,57,48,46,51,49,49,48,54,57,44,52,51,46,53,53,51,57,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,76,101,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,49,50,54,44,34,98,101,100,115,34,58,50,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,49,48,49,50,57,44,51,51,46,53,55,48,49,49,55,93,44,91,45,49,48,51,46,55,50,48,56,48,57,44,51,51,46,53,54,57,53,51,55,93,44,91,45,49,48,51,46,55,54,54,51,54,49,44,51,51,46,51,57,53,50,57,55,93,44,91,45,49,48,51,46,55,54,54,52,49,55,44,51,50,46,57,54,53,50,54,52,93,44,91,45,49,48,51,46,56,49,52,53,48,55,44,51,50,46,57,54,53,49,49,52,93,44,91,45,49,48,51,46,56,49,52,50,49,54,44,51,50,46,53,50,50,51,54,56,93,44,91,45,49,48,51,46,55,50,50,57,51,56,44,51,50,46,53,50,50,51,52,52,93,44,91,45,49,48,51,46,55,50,50,56,56,50,44,51,50,46,48,48,48,50,48,54,93,44,91,45,49,48,51,46,51,50,54,53,48,49,44,51,50,46,48,48,48,51,54,57,93,44,91,45,49,48,51,46,48,54,52,53,49,44,51,50,46,48,48,48,52,50,52,93,44,91,45,49,48,51,46,48,54,52,53,49,54,44,51,50,46,48,56,55,48,53,49,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,53,50,50,49,57,51,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,57,53,57,48,57,57,93,44,91,45,49,48,51,46,48,53,54,52,56,53,44,51,51,46,51,56,56,52,49,52,93,44,91,45,49,48,51,46,48,53,50,54,50,49,44,51,51,46,53,55,48,53,55,53,93,44,91,45,49,48,51,46,53,49,48,49,50,57,44,51,51,46,53,55,48,49,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,97,109,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,51,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,48,55,50,50,57,44,51,52,46,48,53,56,51,51,51,93,44,91,45,56,56,46,50,52,56,57,49,54,44,51,51,46,55,52,52,57,55,55,93,44,91,45,56,56,46,50,55,52,54,49,57,44,51,51,46,53,51,52,48,48,56,93,44,91,45,56,55,46,57,52,54,53,49,57,44,51,51,46,53,50,52,48,54,53,93,44,91,45,56,55,46,57,53,49,55,56,53,44,51,51,46,57,49,57,57,51,93,44,91,45,56,55,46,57,56,54,57,51,44,51,52,46,48,53,50,49,48,50,93,44,91,45,56,56,46,50,48,55,50,50,57,44,51,52,46,48,53,56,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,52,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,52,34,44,34,78,65,77,69,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,56,56,49,56,49,44,49,56,46,51,56,57,52,48,56,93,44,91,45,54,54,46,53,57,48,55,56,53,44,49,56,46,51,51,56,48,54,93,44,91,45,54,54,46,53,51,51,54,50,51,44,49,56,46,51,53,49,51,51,51,93,44,91,45,54,54,46,53,52,51,48,55,57,44,49,56,46,52,48,53,52,50,50,93,44,91,45,54,54,46,53,56,56,49,56,49,44,49,56,46,51,56,57,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,56,54,49,57,51,44,51,53,46,55,49,48,48,53,49,93,44,91,45,56,54,46,55,56,50,48,49,54,44,51,53,46,55,48,54,53,57,53,93,44,91,45,56,54,46,56,52,57,53,55,51,44,51,53,46,53,50,53,53,49,53,93,44,91,45,56,54,46,57,54,48,56,48,52,44,51,53,46,52,49,55,48,50,49,93,44,91,45,56,54,46,56,50,56,51,48,49,44,51,53,46,50,54,51,54,55,55,93,44,91,45,56,54,46,55,52,54,56,57,57,44,51,53,46,50,53,50,56,55,56,93,44,91,45,56,54,46,53,57,57,52,55,56,44,51,53,46,51,54,52,57,53,93,44,91,45,56,54,46,54,53,56,50,52,55,44,51,53,46,52,51,53,50,56,49,93,44,91,45,56,54,46,54,51,57,52,51,54,44,51,53,46,54,56,53,57,93,44,91,45,56,54,46,54,56,54,49,57,51,44,51,53,46,55,49,48,48,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,65,112,112,111,109,97,116,116,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,56,54,57,50,52,53,44,51,55,46,53,52,50,48,57,50,93,44,91,45,55,57,46,48,50,49,54,56,55,44,51,55,46,52,50,57,50,52,51,93,44,91,45,55,56,46,57,50,54,52,54,44,51,55,46,50,55,55,48,55,49,93,44,91,45,55,56,46,56,50,52,50,48,57,44,51,55,46,50,48,53,51,54,49,93,44,91,45,55,56,46,54,56,49,53,55,51,44,51,55,46,50,52,56,55,53,57,93,44,91,45,55,56,46,53,57,52,52,51,54,44,51,55,46,51,57,55,57,55,52,93,44,91,45,55,56,46,54,56,51,50,50,52,44,51,55,46,52,50,56,57,55,52,93,44,91,45,55,56,46,56,50,53,50,51,56,44,51,55,46,53,53,50,53,52,50,93,44,91,45,55,56,46,56,54,57,50,52,53,44,51,55,46,53,52,50,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,55,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,56,55,55,55,53,44,51,54,46,50,51,53,48,52,54,93,44,91,45,57,51,46,57,52,52,49,55,55,44,51,54,46,48,57,49,49,48,51,93,44,91,45,57,51,46,57,54,50,56,57,50,44,51,53,46,55,54,48,57,51,93,44,91,45,57,51,46,57,49,48,56,51,54,44,51,53,46,55,53,57,55,53,50,93,44,91,45,57,51,46,54,57,53,57,56,49,44,51,53,46,55,54,56,54,52,57,93,44,91,45,57,51,46,53,49,57,50,48,52,44,51,53,46,55,54,51,53,50,49,93,44,91,45,57,51,46,53,50,51,54,51,57,44,51,53,46,56,56,49,53,57,50,93,44,91,45,57,51,46,52,53,48,55,49,53,44,51,53,46,57,54,55,52,57,51,93,44,91,45,57,51,46,52,55,57,53,50,56,44,51,54,46,49,50,53,48,55,50,93,44,91,45,57,51,46,53,53,49,49,51,53,44,51,54,46,49,50,54,50,55,49,93,44,91,45,57,51,46,54,53,55,54,56,57,44,51,54,46,51,48,51,48,56,50,93,44,91,45,57,51,46,56,49,53,48,55,56,44,51,54,46,51,48,54,53,53,49,93,44,91,45,57,51,46,56,56,55,55,55,53,44,51,54,46,50,51,53,48,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,83,104,101,114,105,100,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,49,50,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,51,54,57,54,50,49,44,52,52,46,53,53,57,56,51,55,93,44,91,45,49,48,54,46,52,50,56,56,57,55,44,52,52,46,53,53,54,55,55,55,93,44,91,45,49,48,54,46,48,48,57,54,55,54,44,52,52,46,53,54,51,57,56,49,93,44,91,45,49,48,54,46,48,50,52,56,49,53,44,52,52,46,57,57,51,52,57,53,93,44,91,45,49,48,54,46,50,54,51,55,49,53,44,52,52,46,57,57,51,56,49,54,93,44,91,45,49,48,55,46,48,56,52,56,56,54,44,52,52,46,57,57,54,54,93,44,91,45,49,48,55,46,57,49,49,53,50,51,44,52,53,46,48,48,48,54,55,56,93,44,91,45,49,48,55,46,56,51,49,54,50,50,44,52,52,46,55,57,57,55,56,55,93,44,91,45,49,48,55,46,55,52,49,53,52,51,44,52,52,46,55,49,52,51,53,50,93,44,91,45,49,48,55,46,53,50,56,50,55,57,44,52,52,46,54,54,53,53,56,52,93,44,91,45,49,48,55,46,51,54,57,54,50,49,44,52,52,46,53,53,57,56,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,117,109,98,101,114,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,55,52,51,51,44,34,98,101,100,115,34,58,49,52,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,49,52,57,55,44,52,48,46,51,50,56,52,56,52,93,44,91,45,55,55,46,50,55,48,48,53,55,44,52,48,46,50,55,56,54,53,50,93,44,91,45,55,55,46,52,50,54,53,57,53,44,52,48,46,50,56,54,54,49,93,44,91,45,55,55,46,54,49,52,54,54,53,44,52,48,46,49,57,56,53,52,57,93,44,91,45,55,55,46,52,55,49,48,56,53,44,51,57,46,57,52,52,48,55,55,93,44,91,45,55,55,46,52,48,51,54,48,54,44,51,57,46,57,57,52,52,55,56,93,44,91,45,55,55,46,49,56,53,54,51,44,52,48,46,48,50,57,53,48,49,93,44,91,45,55,55,46,49,51,55,52,50,53,44,52,48,46,48,54,57,57,52,53,93,44,91,45,55,54,46,56,53,57,48,50,51,44,52,48,46,50,50,54,51,50,56,93,44,91,45,55,54,46,57,49,52,57,55,44,52,48,46,51,50,56,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,55,53,49,44,34,98,101,100,115,34,58,52,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,55,49,48,56,53,44,51,57,46,57,52,52,48,55,55,93,44,91,45,55,55,46,54,49,52,54,54,53,44,52,48,46,49,57,56,53,52,57,93,44,91,45,55,55,46,54,55,49,55,54,49,44,52,48,46,50,56,57,56,50,53,93,44,91,45,55,55,46,55,48,51,48,51,44,52,48,46,50,54,51,53,55,54,93,44,91,45,55,55,46,56,54,52,52,56,57,44,52,48,46,48,54,49,53,54,56,93,44,91,45,55,56,46,48,48,50,55,44,51,57,46,56,50,54,53,57,57,93,44,91,45,55,56,46,48,57,57,52,48,51,44,51,57,46,55,50,50,48,57,57,93,44,91,45,55,55,46,52,54,57,49,52,53,44,51,57,46,55,50,48,48,49,56,93,44,91,45,55,55,46,52,53,57,49,51,52,44,51,57,46,55,49,57,57,56,52,93,44,91,45,55,55,46,52,55,49,48,56,53,44,51,57,46,57,52,52,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,117,122,101,114,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,55,56,56,52,44,34,98,101,100,115,34,58,49,49,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,51,52,54,57,53,44,52,49,46,52,50,55,50,52,54,93,44,91,45,55,54,46,48,48,53,48,55,44,52,49,46,51,56,52,53,53,49,93,44,91,45,55,54,46,50,56,51,49,44,52,49,46,51,55,54,53,49,55,93,44,91,45,55,54,46,51,49,48,49,51,51,44,52,49,46,51,49,48,49,57,57,93,44,91,45,55,54,46,51,49,57,50,51,54,44,52,49,46,50,48,56,48,57,50,93,44,91,45,55,54,46,50,48,55,56,50,55,44,52,48,46,57,52,57,55,52,93,44,91,45,55,53,46,57,57,55,51,52,56,44,52,48,46,57,49,50,57,56,53,93,44,91,45,55,53,46,55,51,49,57,51,44,52,49,46,48,48,56,50,50,93,44,91,45,55,53,46,55,55,49,51,48,54,44,52,49,46,48,55,55,56,49,54,93,44,91,45,55,53,46,54,52,57,54,51,55,44,52,49,46,49,50,50,51,52,52,93,44,91,45,55,53,46,54,48,48,55,51,54,44,52,49,46,49,54,49,52,57,55,93,44,91,45,55,53,46,54,56,55,50,52,52,44,52,49,46,51,51,57,50,49,54,93,44,91,45,55,53,46,56,51,52,54,57,53,44,52,49,46,52,50,55,50,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,51,54,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,52,55,51,48,57,44,52,52,46,56,53,56,48,51,55,93,44,91,45,56,52,46,56,53,48,57,50,57,44,52,52,46,53,49,49,48,54,57,93,44,91,45,56,52,46,51,55,48,54,52,51,44,52,52,46,53,48,55,50,50,51,93,44,91,45,56,52,46,51,55,49,55,51,55,44,52,52,46,56,53,53,48,51,57,93,44,91,45,56,52,46,56,52,55,51,48,57,44,52,52,46,56,53,56,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,82,117,115,115,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,50,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,48,49,48,50,44,51,50,46,53,49,48,49,53,55,93,44,91,45,56,53,46,48,53,57,50,57,52,44,51,50,46,52,55,50,57,48,57,93,44,91,45,56,53,46,51,51,51,56,52,51,44,51,50,46,52,54,56,54,51,57,93,44,91,45,56,53,46,52,51,52,48,52,53,44,51,50,46,52,48,57,56,52,93,44,91,45,56,53,46,52,51,51,53,52,51,44,51,50,46,50,51,52,54,52,56,93,44,91,45,56,53,46,52,49,48,50,52,49,44,51,50,46,49,52,54,54,53,49,93,44,91,45,56,53,46,50,53,55,55,52,55,44,51,50,46,49,52,56,50,53,49,93,44,91,45,56,53,46,49,56,53,48,54,55,44,51,50,46,48,54,49,55,48,56,93,44,91,45,56,53,46,48,53,54,48,50,57,44,51,50,46,48,54,51,48,53,53,93,44,91,45,56,53,46,48,54,50,48,54,44,51,50,46,49,51,50,52,56,54,93,44,91,45,56,52,46,57,50,51,48,50,55,44,51,50,46,50,51,48,56,53,49,93,44,91,45,56,52,46,57,55,49,57,54,50,44,51,50,46,51,55,55,54,57,56,93,44,91,45,56,53,46,48,48,49,48,50,44,51,50,46,53,49,48,49,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,53,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,49,55,55,51,57,44,52,48,46,54,53,49,53,55,57,93,44,91,45,56,49,46,50,54,52,55,52,52,44,52,48,46,53,54,53,48,52,50,93,44,91,45,56,49,46,50,54,57,57,53,49,44,52,48,46,52,51,51,52,56,54,93,44,91,45,56,48,46,57,52,49,57,49,49,44,52,48,46,52,50,52,55,93,44,91,45,56,48,46,57,50,48,57,50,44,52,48,46,53,53,54,51,49,53,93,44,91,45,56,48,46,56,54,49,57,57,52,44,52,48,46,53,57,57,52,48,52,93,44,91,45,56,48,46,57,49,55,49,55,50,44,52,48,46,55,50,54,57,51,52,93,44,91,45,56,49,46,48,56,55,50,56,57,44,52,48,46,55,50,55,56,49,54,93,44,91,45,56,49,46,50,51,55,50,50,55,44,52,48,46,55,50,51,53,52,50,93,44,91,45,56,49,46,51,49,55,55,51,57,44,52,48,46,54,53,49,53,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,70,108,117,118,97,110,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,48,54,55,54,51,44,51,56,46,48,48,54,52,55,52,93,44,91,45,55,56,46,52,57,49,51,52,53,44,51,55,46,55,57,54,57,53,54,93,44,91,45,55,56,46,52,48,53,53,57,54,44,51,55,46,55,51,53,50,54,51,93,44,91,45,55,56,46,50,51,57,55,52,56,44,51,55,46,54,57,48,52,57,53,93,44,91,45,55,56,46,49,53,57,51,50,54,44,51,55,46,55,52,56,53,50,56,93,44,91,45,55,56,46,48,54,50,52,56,49,44,51,55,46,57,48,52,54,56,53,93,44,91,45,55,56,46,51,48,54,55,54,51,44,51,56,46,48,48,54,52,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,51,54,49,57,44,34,98,101,100,115,34,58,49,48,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,57,57,51,56,57,44,52,50,46,52,57,53,49,51,51,93,44,91,45,56,56,46,49,57,57,53,56,52,44,52,50,46,49,53,52,50,54,93,44,91,45,56,55,46,49,49,49,49,54,50,44,52,50,46,49,52,57,52,48,57,93,44,91,45,56,55,46,48,56,56,51,51,56,44,52,50,46,50,51,53,51,51,52,93,44,91,45,56,55,46,48,52,48,48,52,54,44,52,50,46,52,49,54,57,57,51,93,44,91,45,56,55,46,48,49,57,57,51,53,44,52,50,46,52,57,51,52,57,56,93,44,91,45,56,56,46,49,57,57,51,56,57,44,52,50,46,52,57,53,49,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,57,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,49,49,51,51,54,44,51,52,46,50,55,51,53,51,93,44,91,45,56,51,46,50,57,55,51,49,55,44,51,52,46,50,54,52,53,56,55,93,44,91,45,56,51,46,51,53,53,50,53,49,44,51,52,46,50,50,51,55,57,52,93,44,91,45,56,51,46,52,48,50,52,50,56,44,51,52,46,49,57,55,52,57,57,93,44,91,45,56,51,46,51,54,48,48,50,56,44,51,52,46,48,52,48,53,55,50,93,44,91,45,56,51,46,50,53,56,52,49,51,44,51,51,46,57,57,57,48,57,56,93,44,91,45,56,51,46,49,50,54,50,50,57,44,51,52,46,48,52,54,50,49,51,93,44,91,45,56,50,46,57,55,54,50,57,52,44,51,52,46,48,52,51,50,49,57,93,44,91,45,56,51,46,48,55,56,48,48,52,44,51,52,46,50,50,51,54,48,54,93,44,91,45,56,51,46,49,49,51,51,54,44,51,52,46,50,55,51,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,56,54,50,56,53,44,51,52,46,49,53,53,56,55,55,93,44,91,45,57,50,46,56,57,51,53,51,52,44,51,51,46,56,48,57,57,52,51,93,44,91,45,57,50,46,53,56,51,48,53,52,44,51,51,46,56,48,50,49,57,56,93,44,91,45,57,50,46,51,51,52,50,52,57,44,51,51,46,55,57,53,48,54,53,93,44,91,45,57,50,46,52,53,55,48,55,57,44,51,51,46,57,55,50,53,57,55,93,44,91,45,57,50,46,52,55,49,54,54,55,44,51,52,46,48,53,55,48,53,52,93,44,91,45,57,50,46,51,51,54,55,54,53,44,51,52,46,48,53,57,54,51,51,93,44,91,45,57,50,46,52,57,51,54,55,50,44,51,52,46,49,52,52,50,51,52,93,44,91,45,57,50,46,54,55,56,51,56,51,44,51,52,46,49,52,57,54,50,50,93,44,91,45,57,50,46,56,56,54,50,56,53,44,51,52,46,49,53,53,56,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,56,53,55,55,55,51,44,52,49,46,48,48,50,54,54,51,93,44,91,45,49,48,54,46,56,54,57,56,57,49,44,52,48,46,57,53,54,55,50,93,44,91,45,49,48,54,46,54,51,54,57,50,50,44,52,48,46,55,56,57,52,56,57,93,44,91,45,49,48,54,46,55,48,54,49,52,57,44,52,48,46,54,49,54,53,57,55,93,44,91,45,49,48,54,46,54,53,50,49,49,50,44,52,48,46,52,52,53,50,51,49,93,44,91,45,49,48,54,46,54,49,50,51,50,49,44,52,48,46,51,55,57,51,56,51,93,44,91,45,49,48,54,46,50,51,48,55,52,54,44,52,48,46,51,50,52,52,56,54,93,44,91,45,49,48,53,46,57,48,53,57,57,44,52,48,46,51,57,57,54,53,50,93,44,91,45,49,48,53,46,56,53,52,57,50,54,44,52,48,46,52,56,54,50,53,50,93,44,91,45,49,48,54,46,48,53,51,55,55,57,44,52,48,46,56,49,50,54,54,50,93,44,91,45,49,48,54,46,49,56,53,51,48,55,44,52,48,46,57,51,51,57,55,51,93,44,91,45,49,48,54,46,49,57,48,53,53,52,44,52,48,46,57,57,55,53,55,56,93,44,91,45,49,48,54,46,51,50,49,49,54,53,44,52,48,46,57,57,57,49,50,51,93,44,91,45,49,48,54,46,56,53,55,55,55,51,44,52,49,46,48,48,50,54,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,75,105,116,32,67,97,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,51,53,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,57,56,48,54,44,51,57,46,53,55,52,48,53,56,93,44,91,45,49,48,50,46,56,48,50,57,51,50,44,51,57,46,53,54,55,56,52,49,93,44,91,45,49,48,51,46,49,53,52,51,55,54,44,51,57,46,53,54,53,54,53,52,93,44,91,45,49,48,51,46,49,54,51,48,50,53,44,51,57,46,48,51,55,54,49,93,44,91,45,49,48,50,46,48,52,54,53,55,49,44,51,57,46,48,52,55,48,51,56,93,44,91,45,49,48,50,46,48,52,55,49,54,49,44,51,57,46,49,51,51,49,52,55,93,44,91,45,49,48,50,46,48,52,57,55,54,52,44,51,57,46,53,54,56,49,56,93,44,91,45,49,48,50,46,48,52,57,56,48,54,44,51,57,46,53,55,52,48,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,79,119,121,104,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,50,54,53,51,56,44,52,51,46,54,56,48,56,48,50,93,44,91,45,49,49,55,46,48,50,54,56,55,52,44,52,51,46,49,50,55,48,48,53,93,44,91,45,49,49,55,46,48,50,54,50,44,52,50,46,48,48,48,49,57,53,93,44,91,45,49,49,55,46,48,49,56,50,48,52,44,52,49,46,57,57,57,55,49,53,93,44,91,45,49,49,54,46,48,52,53,51,55,51,44,52,49,46,57,57,54,51,51,49,93,44,91,45,49,49,53,46,48,51,56,49,53,55,44,52,49,46,57,57,54,50,55,57,93,44,91,45,49,49,53,46,48,51,55,54,57,55,44,52,50,46,55,54,56,52,49,52,93,44,91,45,49,49,53,46,52,53,52,50,50,52,44,52,50,46,55,54,55,57,51,54,93,44,91,45,49,49,53,46,52,52,49,53,50,50,44,52,50,46,57,51,49,49,50,55,93,44,91,45,49,49,53,46,57,54,48,57,57,57,44,52,50,46,57,56,57,48,56,52,93,44,91,45,49,49,54,46,50,48,49,55,52,44,52,51,46,48,52,56,57,51,93,44,91,45,49,49,54,46,50,54,54,50,48,55,44,52,51,46,49,49,50,50,54,57,93,44,91,45,49,49,54,46,53,49,49,56,57,55,44,52,51,46,50,57,48,53,50,93,44,91,45,49,49,54,46,55,56,49,51,51,54,44,52,51,46,52,55,56,54,51,51,93,44,91,45,49,49,54,46,56,52,52,57,55,56,44,52,51,46,53,57,52,52,93,44,91,45,49,49,55,46,48,50,54,53,51,56,44,52,51,46,54,56,48,56,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,87,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,50,55,52,44,34,98,101,100,115,34,58,54,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,54,50,53,51,44,52,52,46,54,56,53,49,53,52,93,44,91,45,57,48,46,51,49,54,48,53,53,44,52,52,46,52,50,52,53,48,50,93,44,91,45,57,48,46,51,49,50,54,56,44,52,52,46,50,52,56,55,53,93,44,91,45,56,57,46,57,48,50,55,56,51,44,52,52,46,50,52,57,52,55,51,93,44,91,45,56,57,46,55,50,52,55,52,54,44,52,52,46,50,52,55,54,55,56,93,44,91,45,56,57,46,55,50,54,55,50,53,44,52,52,46,53,49,49,49,57,50,93,44,91,45,56,57,46,56,52,52,53,52,54,44,52,52,46,53,49,49,53,48,51,93,44,91,45,56,57,46,56,52,52,57,51,49,44,52,52,46,54,56,52,57,52,53,93,44,91,45,57,48,46,51,49,54,50,53,51,44,52,52,46,54,56,53,49,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,104,97,117,116,97,117,113,117,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,54,53,54,44,34,98,101,100,115,34,58,51,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,54,48,55,55,55,44,52,50,46,53,51,55,56,53,51,93,44,91,45,55,57,46,51,49,50,49,51,54,44,52,50,46,54,56,54,56,48,53,93,44,91,45,55,57,46,55,54,50,52,49,56,44,52,50,46,53,49,54,48,55,50,93,44,91,45,55,57,46,55,54,49,51,49,51,44,52,49,46,57,57,56,56,48,56,93,44,91,45,55,57,46,54,49,48,56,51,57,44,52,49,46,57,57,57,48,48,54,93,44,91,45,55,57,46,48,54,49,50,54,53,44,52,49,46,57,57,57,50,53,57,93,44,91,45,55,57,46,48,54,48,55,55,55,44,52,50,46,53,51,55,56,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,67,111,98,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,53,48,53,55,44,34,98,101,100,115,34,58,49,51,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,51,55,56,51,54,44,51,52,46,48,55,57,51,57,57,93,44,91,45,56,52,46,55,50,52,49,51,57,44,51,51,46,56,48,54,49,55,93,44,91,45,56,52,46,53,55,56,49,51,50,44,51,51,46,55,52,51,53,48,55,93,44,91,45,56,52,46,52,55,49,51,51,44,51,51,46,56,50,53,57,48,53,93,44,91,45,56,52,46,51,56,51,48,50,55,44,51,51,46,57,54,51,56,93,44,91,45,56,52,46,52,49,56,57,50,55,44,51,52,46,48,55,51,50,57,56,93,44,91,45,56,52,46,54,53,57,50,52,49,44,51,52,46,48,55,56,50,52,93,44,91,45,56,52,46,55,51,55,56,51,54,44,51,52,46,48,55,57,51,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,56,57,44,34,98,101,100,115,34,58,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,56,51,56,52,51,44,51,54,46,53,48,56,51,49,52,93,44,91,45,56,50,46,48,52,52,49,52,53,44,51,54,46,51,54,51,55,49,54,93,44,91,45,56,49,46,57,51,51,48,54,53,44,51,54,46,50,54,52,56,55,51,93,44,91,45,56,49,46,57,49,56,49,49,57,44,51,54,46,50,56,55,49,50,57,93,44,91,45,56,49,46,55,50,56,55,56,49,44,51,54,46,51,57,49,51,48,57,93,44,91,45,56,49,46,54,55,55,52,57,44,51,54,46,53,56,56,49,51,55,93,44,91,45,56,49,46,54,52,54,57,44,51,54,46,54,49,49,57,49,56,93,44,91,45,56,49,46,56,50,54,55,52,50,44,51,54,46,54,49,52,50,49,53,93,44,91,45,56,49,46,57,56,51,56,52,51,44,51,54,46,53,48,56,51,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,101,108,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,55,50,44,34,98,101,100,115,34,58,49,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,50,53,57,50,52,44,52,48,46,49,55,48,48,55,53,93,44,91,45,56,49,46,50,51,52,48,53,51,44,51,57,46,57,53,49,50,55,93,44,91,45,56,49,46,50,51,55,51,49,54,44,51,57,46,56,54,55,56,50,56,93,44,91,45,56,48,46,56,50,49,50,55,57,44,51,57,46,56,52,57,57,56,50,93,44,91,45,56,48,46,55,53,54,49,49,51,44,51,57,46,57,49,51,52,48,50,93,44,91,45,56,48,46,55,51,51,56,48,51,44,52,48,46,48,51,51,52,48,57,93,44,91,45,56,48,46,55,48,50,55,53,44,52,48,46,49,53,55,50,52,57,93,44,91,45,56,48,46,56,56,50,56,57,50,44,52,48,46,49,53,57,52,57,53,93,44,91,45,56,49,46,50,50,53,57,50,52,44,52,48,46,49,55,48,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,87,105,115,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,48,50,53,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,55,56,52,44,51,54,46,56,57,50,57,53,51,93,44,91,45,56,50,46,55,55,49,53,57,53,44,51,54,46,56,48,48,48,51,49,93,44,91,45,56,50,46,54,49,55,55,52,44,51,54,46,56,56,48,55,55,51,93,44,91,45,56,50,46,52,48,54,54,51,51,44,51,54,46,56,55,54,51,53,54,93,44,91,45,56,50,46,51,50,55,56,51,44,51,54,46,57,55,48,57,56,50,93,44,91,45,56,50,46,52,54,55,51,52,53,44,51,55,46,48,50,50,49,51,54,93,44,91,45,56,50,46,53,53,51,56,55,52,44,51,55,46,50,48,50,56,51,51,93,44,91,45,56,50,46,53,54,53,51,55,57,44,51,55,46,49,57,54,48,57,57,93,44,91,45,56,50,46,55,49,53,49,52,57,44,51,55,46,49,50,49,56,52,56,93,44,91,45,56,50,46,55,52,50,55,53,57,44,51,55,46,48,52,50,55,57,54,93,44,91,45,56,50,46,56,54,57,49,57,50,44,51,54,46,57,55,52,49,56,54,93,44,91,45,56,50,46,56,55,56,52,44,51,54,46,56,57,50,57,53,51,93,93,44,91,91,45,56,50,46,54,54,51,54,50,53,44,51,54,46,57,50,48,57,53,57,93,44,91,45,56,50,46,54,51,51,56,51,49,44,51,54,46,57,53,50,50,55,54,93,44,91,45,56,50,46,53,57,49,49,52,55,44,51,54,46,57,51,53,51,49,51,93,44,91,45,56,50,46,54,54,51,54,50,53,44,51,54,46,57,50,48,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,97,114,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,57,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,49,55,55,54,54,44,51,55,46,48,57,53,54,55,55,93,44,91,45,57,49,46,50,49,55,49,53,44,51,55,46,48,56,54,49,57,55,93,44,91,45,57,49,46,50,50,50,56,51,44,51,54,46,56,56,51,56,53,55,93,44,91,45,57,49,46,49,49,53,57,50,54,44,51,54,46,56,50,51,54,55,50,93,44,91,45,57,48,46,54,54,50,54,49,55,44,51,54,46,56,49,49,52,53,51,93,44,91,45,57,48,46,54,55,56,53,54,50,44,51,54,46,57,50,54,52,57,93,44,91,45,57,48,46,55,55,57,53,53,51,44,51,55,46,48,53,48,51,50,52,93,44,91,45,57,48,46,57,54,52,52,54,54,44,51,55,46,48,53,51,53,56,52,93,44,91,45,57,49,46,48,49,55,55,54,54,44,51,55,46,48,57,53,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,114,121,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,53,57,44,34,98,101,100,115,34,58,49,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,57,49,53,55,56,44,51,52,46,49,53,54,56,48,53,93,44,91,45,57,54,46,52,48,55,53,49,55,44,51,52,46,49,53,55,51,49,55,93,44,91,45,57,54,46,53,56,53,51,53,53,44,51,52,46,49,49,52,52,53,57,93,44,91,45,57,54,46,54,49,57,57,51,57,44,51,51,46,57,57,57,52,52,57,93,44,91,45,57,54,46,53,56,56,53,48,50,44,51,51,46,56,57,52,57,56,51,93,44,91,45,57,54,46,53,48,48,57,56,52,44,51,51,46,55,55,50,56,48,49,93,44,91,45,57,54,46,51,55,57,52,53,50,44,51,51,46,55,50,53,55,54,52,93,44,91,45,57,54,46,50,57,48,51,53,57,44,51,51,46,55,55,48,56,51,49,93,44,91,45,57,54,46,49,55,57,56,52,54,44,51,51,46,55,53,57,54,49,56,93,44,91,45,57,54,46,49,52,57,50,50,55,44,51,51,46,56,51,55,48,57,49,93,44,91,45,57,53,46,57,52,54,48,51,44,51,51,46,56,53,57,51,51,56,93,44,91,45,57,53,46,56,52,54,53,51,54,44,51,51,46,56,51,57,56,53,53,93,44,91,45,57,53,46,55,54,49,53,50,44,51,51,46,56,55,51,49,49,56,93,44,91,45,57,53,46,57,51,55,57,56,57,44,51,51,46,57,52,56,50,49,57,93,44,91,45,57,53,46,57,51,56,49,53,44,51,52,46,49,50,53,49,93,44,91,45,57,53,46,57,57,49,53,55,56,44,51,52,46,49,53,54,56,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,56,50,53,55,50,51,44,52,48,46,54,57,56,53,53,53,93,44,91,45,57,56,46,50,55,56,49,48,51,44,52,48,46,54,57,56,50,57,49,93,44,91,45,57,56,46,50,55,56,48,57,44,52,48,46,51,53,48,51,52,55,93,44,91,45,57,56,46,50,55,51,53,55,49,44,52,48,46,51,53,48,51,53,57,93,44,91,45,57,55,46,56,50,52,49,49,52,44,52,48,46,51,53,48,53,52,49,93,44,91,45,57,55,46,56,50,52,55,56,44,52,48,46,54,57,56,53,51,55,93,44,91,45,57,55,46,56,50,53,55,50,51,44,52,48,46,54,57,56,53,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,54,55,49,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,50,50,55,51,51,54,44,51,56,46,54,48,52,53,55,93,44,91,45,55,55,46,50,57,53,52,48,54,44,51,56,46,53,48,57,50,51,57,93,44,91,45,55,55,46,50,56,55,48,57,55,44,51,56,46,51,52,56,56,93,44,91,45,55,55,46,48,49,56,52,57,56,44,51,56,46,51,56,49,57,52,49,93,44,91,45,55,54,46,57,57,55,54,55,44,51,56,46,50,55,56,48,52,54,93,44,91,45,55,54,46,56,54,56,56,53,57,44,51,56,46,49,55,49,51,55,50,93,44,91,45,55,54,46,56,50,49,50,53,54,44,51,56,46,50,54,56,55,53,56,93,44,91,45,55,54,46,56,55,49,52,54,44,51,56,46,51,56,57,57,51,55,93,44,91,45,55,54,46,55,55,52,57,53,53,44,51,56,46,53,48,56,57,93,44,91,45,55,54,46,54,55,52,49,49,56,44,51,56,46,52,57,57,54,50,50,93,44,91,45,55,54,46,54,55,53,52,53,55,44,51,56,46,53,51,53,56,55,54,93,44,91,45,55,54,46,55,52,55,53,55,44,51,56,46,54,49,55,51,51,53,93,44,91,45,55,55,46,48,56,54,51,57,49,44,51,56,46,55,48,54,50,50,55,93,44,91,45,55,55,46,50,50,55,51,51,54,44,51,56,46,54,48,52,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,101,114,114,111,32,71,111,114,100,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,57,56,52,44,34,98,101,100,115,34,58,51,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,52,49,52,51,44,52,51,46,50,53,53,53,51,56,93,44,91,45,57,51,46,52,57,55,54,51,53,44,52,51,46,50,53,53,52,54,56,93,44,91,45,57,51,46,52,57,56,54,49,55,44,52,50,46,57,48,56,53,49,50,93,44,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,44,91,45,57,51,46,48,50,52,48,57,50,44,52,51,46,50,49,50,56,49,50,93,44,91,45,57,51,46,48,50,52,49,52,51,44,52,51,46,50,53,53,53,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,71,114,101,101,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,48,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,50,56,56,48,54,44,52,50,46,50,48,57,51,57,54,93,44,91,45,57,52,46,54,50,56,55,50,52,44,52,49,46,56,54,50,55,54,51,93,44,91,45,57,52,46,50,56,48,51,52,44,52,49,46,56,54,50,57,57,57,93,44,91,45,57,52,46,49,54,52,49,51,56,44,52,49,46,56,54,51,50,52,52,93,44,91,45,57,52,46,49,54,52,55,48,52,44,52,50,46,50,48,57,57,50,93,44,91,45,57,52,46,51,57,55,53,50,54,44,52,50,46,50,48,57,49,54,49,93,44,91,45,57,52,46,54,50,56,56,48,54,44,52,50,46,50,48,57,51,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,53,34,44,34,78,65,77,69,34,58,34,82,111,119,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,57,57,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,51,53,49,57,53,44,51,56,46,49,56,55,53,50,53,93,44,91,45,56,51,46,52,57,56,56,52,54,44,51,56,46,48,53,48,54,50,93,44,91,45,56,51,46,52,51,51,57,52,50,44,51,56,46,48,51,51,57,55,52,93,44,91,45,56,51,46,50,54,51,50,56,57,44,51,56,46,49,49,53,51,56,54,93,44,91,45,56,51,46,50,52,52,51,48,54,44,51,56,46,49,57,50,51,56,93,44,91,45,56,51,46,51,52,49,51,52,55,44,51,56,46,51,49,57,53,50,49,93,44,91,45,56,51,46,52,53,50,56,52,56,44,51,56,46,51,56,49,55,57,57,93,44,91,45,56,51,46,53,48,55,57,53,51,44,51,56,46,50,55,51,49,53,53,93,44,91,45,56,51,46,54,51,53,49,57,53,44,51,56,46,49,56,55,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,51,48,53,54,54,53,44,51,56,46,53,49,48,49,54,57,93,44,91,45,49,49,49,46,55,54,54,51,57,51,44,51,56,46,53,48,50,50,52,51,93,44,91,45,49,49,49,46,56,52,56,55,54,49,44,51,56,46,52,50,52,57,51,51,93,44,91,45,49,49,49,46,56,52,51,50,49,53,44,51,56,46,49,53,49,50,56,93,44,91,45,49,49,48,46,54,56,55,52,48,54,44,51,56,46,49,53,49,51,56,53,93,44,91,45,49,48,57,46,57,50,55,57,57,53,44,51,56,46,49,53,49,56,56,52,93,44,91,45,49,48,57,46,57,48,57,55,54,44,51,56,46,50,55,49,50,51,93,44,91,45,49,49,48,46,48,51,49,57,55,51,44,51,56,46,51,56,52,57,53,55,93,44,91,45,49,49,48,46,48,50,53,52,48,50,44,51,56,46,52,57,57,57,56,49,93,44,91,45,49,49,49,46,51,48,53,55,48,49,44,51,56,46,52,57,57,57,57,56,93,44,91,45,49,49,49,46,51,48,53,54,54,53,44,51,56,46,53,49,48,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,97,112,101,32,71,105,114,97,114,100,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,51,50,52,44,34,98,101,100,115,34,58,54,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,56,54,49,49,50,51,44,51,55,46,53,57,57,50,56,54,93,44,91,45,56,57,46,56,54,54,54,50,55,44,51,55,46,49,50,54,50,50,55,93,44,91,45,56,57,46,55,54,53,50,49,49,44,51,55,46,49,50,54,48,54,54,93,44,91,45,56,57,46,54,50,48,50,53,54,44,51,55,46,50,51,51,48,48,56,93,44,91,45,56,57,46,52,56,56,55,50,44,51,55,46,50,53,49,52,53,55,93,44,91,45,56,57,46,52,56,54,54,56,57,44,51,55,46,51,51,52,53,53,52,93,44,91,45,56,57,46,52,50,48,57,51,57,44,51,55,46,51,57,51,57,53,50,93,44,91,45,56,57,46,53,50,49,56,53,53,44,51,55,46,53,54,54,50,49,52,93,44,91,45,56,57,46,54,48,56,57,51,52,44,51,55,46,53,57,55,52,50,55,93,44,91,45,56,57,46,56,54,49,49,50,51,44,51,55,46,53,57,57,50,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,87,97,108,108,97,32,87,97,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,50,51,54,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,50,50,56,54,51,53,44,52,54,46,53,57,51,51,54,50,93,44,91,45,49,49,56,46,52,55,53,57,51,50,44,52,54,46,53,57,53,49,52,50,93,44,91,45,49,49,56,46,54,49,53,53,57,50,44,52,54,46,53,48,52,53,52,51,93,44,91,45,49,49,56,46,54,51,51,56,50,54,44,52,54,46,52,49,52,48,50,50,93,44,91,45,49,49,56,46,55,55,55,50,50,56,44,52,54,46,50,57,48,49,55,55,93,44,91,45,49,49,57,46,48,52,49,52,57,56,44,52,54,46,49,57,50,54,54,55,93,44,91,45,49,49,56,46,57,55,52,54,54,52,44,52,54,46,49,51,57,53,50,51,93,44,91,45,49,49,56,46,57,56,55,50,53,56,44,52,53,46,57,57,57,56,53,53,93,44,91,45,49,49,55,46,57,57,54,57,55,44,52,54,46,48,48,48,53,54,93,44,91,45,49,49,55,46,57,57,49,52,56,49,44,52,54,46,50,48,55,55,48,50,93,44,91,45,49,49,56,46,49,49,54,54,50,52,44,52,54,46,50,48,56,48,53,93,44,91,45,49,49,56,46,50,52,49,56,55,50,44,52,54,46,50,57,53,48,54,52,93,44,91,45,49,49,56,46,50,50,56,54,51,53,44,52,54,46,53,57,51,51,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,49,57,56,48,57,44,51,54,46,56,54,57,54,49,55,93,44,91,45,56,57,46,51,50,55,53,56,56,44,51,54,46,54,51,50,50,55,54,93,44,91,45,56,57,46,50,50,55,48,52,54,44,51,54,46,53,54,57,53,51,55,93,44,91,45,56,57,46,49,55,52,55,50,55,44,51,54,46,54,53,48,52,55,53,93,44,91,45,56,57,46,49,50,51,53,51,49,44,51,54,46,55,56,53,50,49,55,93,44,91,45,56,57,46,49,48,48,56,54,52,44,51,54,46,57,52,52,48,49,54,93,44,91,45,56,57,46,49,51,50,57,49,53,44,51,54,46,57,56,50,48,53,55,93,44,91,45,56,57,46,50,53,57,57,51,53,44,51,55,46,48,54,52,48,55,93,44,91,45,56,57,46,51,49,50,55,48,52,44,51,55,46,48,48,56,57,55,49,93,44,91,45,56,57,46,53,49,57,56,48,57,44,51,54,46,56,54,57,54,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,101,118,101,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,51,54,55,54,53,44,51,52,46,48,53,57,54,51,51,93,44,91,45,57,50,46,52,55,49,54,54,55,44,51,52,46,48,53,55,48,53,52,93,44,91,45,57,50,46,52,53,55,48,55,57,44,51,51,46,57,55,50,53,57,55,93,44,91,45,57,50,46,51,51,52,50,52,57,44,51,51,46,55,57,53,48,54,53,93,44,91,45,57,50,46,51,51,48,56,51,57,44,51,51,46,55,48,55,56,48,54,93,44,91,45,57,49,46,57,55,53,56,52,52,44,51,51,46,55,48,52,52,49,52,93,44,91,45,57,49,46,57,55,53,57,55,52,44,51,51,46,55,57,49,55,56,55,93,44,91,45,57,49,46,57,53,51,55,57,57,44,51,52,46,48,54,52,49,52,49,93,44,91,45,57,50,46,50,51,51,51,55,54,44,51,52,46,48,54,50,51,49,50,93,44,91,45,57,50,46,51,51,54,55,54,53,44,51,52,46,48,53,57,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,68,97,108,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,54,53,53,50,44,34,98,101,100,115,34,58,56,49,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,50,57,57,56,55,44,51,50,46,53,52,53,50,56,50,93,44,91,45,57,54,46,53,49,56,57,55,44,51,50,46,56,49,51,54,49,54,93,44,91,45,57,54,46,53,49,54,56,54,54,44,51,50,46,57,56,50,51,48,56,93,44,91,45,57,54,46,56,52,51,57,55,57,44,51,50,46,57,56,55,53,53,52,93,44,91,45,57,55,46,48,51,50,50,56,55,44,51,50,46,57,56,57,51,50,52,93,44,91,45,57,55,46,48,51,56,51,56,53,44,51,50,46,53,52,56,54,54,50,93,44,91,45,57,54,46,53,50,57,57,56,55,44,51,50,46,53,52,53,50,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,97,106,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,51,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,49,48,57,48,52,52,44,49,56,46,48,53,54,48,56,53,93,44,91,45,54,55,46,49,48,56,54,51,53,44,49,55,46,56,57,53,52,48,55,93,44,91,45,54,54,46,57,57,57,54,49,57,44,49,55,46,56,56,51,57,93,44,91,45,54,54,46,57,53,56,55,52,56,44,49,56,46,48,51,50,52,55,55,93,44,91,45,54,54,46,57,56,51,51,51,55,44,49,56,46,48,53,50,53,49,56,93,44,91,45,54,55,46,49,48,57,48,52,52,44,49,56,46,48,53,54,48,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,55,48,52,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,57,52,48,56,52,44,52,49,46,53,50,54,52,51,55,93,44,91,45,56,53,46,49,57,50,48,57,52,44,52,49,46,50,54,52,50,48,57,93,44,91,45,56,52,46,56,48,51,53,56,57,44,52,49,46,50,55,49,50,55,51,93,44,91,45,56,52,46,56,48,52,48,54,51,44,52,49,46,52,50,54,48,53,49,93,44,91,45,56,52,46,56,48,52,54,56,55,44,52,49,46,53,51,48,49,51,52,93,44,91,45,56,53,46,49,57,52,48,56,52,44,52,49,46,53,50,54,52,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,79,117,97,99,104,105,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,48,55,53,44,34,98,101,100,115,34,58,49,48,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,54,53,49,55,57,44,51,50,46,55,50,51,48,48,51,93,44,91,45,57,50,46,50,55,50,51,49,51,44,51,50,46,53,56,48,57,55,53,93,44,91,45,57,50,46,52,49,53,48,55,49,44,51,50,46,53,56,50,56,52,53,93,44,91,45,57,50,46,52,49,53,51,53,44,51,50,46,52,57,53,52,56,54,93,44,91,45,57,50,46,52,49,53,52,49,56,44,51,50,46,52,48,55,56,49,50,93,44,91,45,57,50,46,51,49,49,56,53,49,44,51,50,46,50,55,55,52,52,49,93,44,91,45,57,50,46,48,51,52,51,57,55,44,51,50,46,50,55,55,48,54,56,93,44,91,45,57,50,46,48,48,52,51,52,44,51,50,46,51,56,48,52,57,57,93,44,91,45,57,49,46,57,49,51,48,53,55,44,51,50,46,53,48,53,57,48,50,93,44,91,45,57,49,46,57,55,53,48,50,54,44,51,50,46,55,49,49,52,50,56,93,44,91,45,57,50,46,48,54,53,49,55,57,44,51,50,46,55,50,51,48,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,83,116,46,32,74,111,104,110,32,116,104,101,32,66,97,112,116,105,115,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,52,52,54,44,34,98,101,100,115,34,58,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,52,49,57,57,56,44,51,48,46,49,54,54,52,51,93,44,91,45,57,48,46,54,53,54,51,49,50,44,50,57,46,56,56,57,50,52,54,93,44,91,45,57,48,46,53,50,57,54,48,49,44,50,57,46,56,56,52,57,57,55,93,44,91,45,57,48,46,53,51,56,49,51,50,44,51,48,46,48,49,54,56,56,52,93,44,91,45,57,48,46,52,53,48,50,49,56,44,51,48,46,48,51,51,49,48,54,93,44,91,45,57,48,46,51,50,54,54,51,55,44,51,48,46,49,53,48,49,56,56,93,44,91,45,57,48,46,50,53,57,56,56,57,44,51,48,46,49,54,51,52,49,93,44,91,45,57,48,46,49,53,54,50,53,54,44,51,48,46,49,56,57,54,49,51,93,44,91,45,57,48,46,49,54,48,54,51,54,44,51,48,46,50,51,52,51,51,55,93,44,91,45,57,48,46,51,48,48,57,50,51,44,51,48,46,50,57,52,54,56,93,44,91,45,57,48,46,52,56,53,56,50,54,44,51,48,46,50,55,54,57,57,50,93,44,91,45,57,48,46,53,53,52,49,52,55,44,51,48,46,49,57,53,54,50,56,93,44,91,45,57,48,46,54,51,50,56,49,49,44,51,48,46,50,50,49,52,48,57,93,44,91,45,57,48,46,54,52,49,57,57,56,44,51,48,46,49,54,54,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,83,116,46,32,72,101,108,101,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,49,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,56,50,53,56,50,57,44,51,48,46,57,57,57,51,54,49,93,44,91,45,57,48,46,56,54,49,48,49,57,44,51,48,46,57,51,53,51,55,51,93,44,91,45,57,48,46,56,52,57,48,52,49,44,51,48,46,55,49,57,51,49,49,93,44,91,45,57,48,46,57,49,48,55,48,49,44,51,48,46,54,52,57,51,56,53,93,44,91,45,57,48,46,53,54,55,49,54,53,44,51,48,46,54,53,48,48,50,51,93,44,91,45,57,48,46,53,54,55,49,57,53,44,51,48,46,57,57,57,55,51,51,93,44,91,45,57,48,46,56,50,53,56,50,57,44,51,48,46,57,57,57,51,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,83,99,104,117,121,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,49,52,53,57,54,44,52,48,46,53,56,57,52,50,55,93,44,91,45,57,50,46,54,56,52,49,54,55,44,52,48,46,51,52,51,52,54,54,93,44,91,45,57,50,46,51,52,57,57,55,53,44,52,48,46,51,52,54,53,48,53,93,44,91,45,57,50,46,51,53,48,56,48,55,44,52,48,46,53,57,55,50,55,53,93,44,91,45,57,50,46,54,51,55,56,57,56,44,52,48,46,53,57,48,56,53,51,93,44,91,45,57,50,46,55,49,52,53,57,54,44,52,48,46,53,56,57,52,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,52,50,44,34,98,101,100,115,34,58,49,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,53,54,50,57,50,44,51,52,46,52,54,51,50,49,52,93,44,91,45,56,56,46,49,55,51,54,51,50,44,51,52,46,51,50,49,48,53,52,93,44,91,45,56,55,46,54,51,52,55,50,53,44,51,52,46,51,48,54,57,57,55,93,44,91,45,56,55,46,53,50,57,55,50,50,44,51,52,46,51,48,52,53,57,56,93,44,91,45,56,55,46,53,50,57,54,54,55,44,51,52,46,53,54,55,48,56,49,93,44,91,45,56,56,46,49,51,57,57,56,56,44,51,52,46,53,56,49,55,48,51,93,44,91,45,56,56,46,49,53,54,50,57,50,44,51,52,46,52,54,51,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,49,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,50,51,53,49,57,44,51,56,46,55,54,49,56,55,93,44,91,45,56,53,46,50,48,49,52,55,52,44,51,56,46,54,57,49,51,49,56,93,44,91,45,56,53,46,51,51,51,48,57,57,44,51,56,46,55,51,54,50,50,56,93,44,91,45,56,53,46,49,54,56,50,55,44,51,56,46,53,56,53,52,52,56,93,44,91,45,56,53,46,48,55,52,53,56,51,44,51,56,46,53,57,54,56,51,56,93,44,91,45,56,52,46,57,51,52,53,51,54,44,51,56,46,54,54,50,49,51,93,44,91,45,56,53,46,48,50,51,53,49,57,44,51,56,46,55,54,49,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,101,97,114,32,67,114,101,101,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,54,57,48,51,52,56,44,51,57,46,56,53,49,57,57,54,93,44,91,45,49,48,53,46,57,50,52,54,49,56,44,51,57,46,54,57,56,57,55,50,93,44,91,45,49,48,53,46,55,56,50,54,55,52,44,51,57,46,54,50,57,48,50,52,93,44,91,45,49,48,53,46,56,50,57,54,54,50,44,51,57,46,53,54,52,56,54,53,93,44,91,45,49,48,53,46,51,57,56,57,52,57,44,51,57,46,53,54,54,48,53,54,93,44,91,45,49,48,53,46,51,57,55,57,52,57,44,51,57,46,55,52,54,48,52,93,44,91,45,49,48,53,46,53,51,57,51,57,51,44,51,57,46,55,55,50,51,49,93,44,91,45,49,48,53,46,54,57,48,51,52,56,44,51,57,46,56,53,49,57,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,55,34,44,34,78,65,77,69,34,58,34,75,105,109,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,48,56,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,49,54,52,54,49,44,51,48,46,50,57,48,50,57,54,93,44,91,45,57,57,46,55,53,52,49,52,50,44,51,48,46,50,57,48,54,57,56,93,44,91,45,57,57,46,51,48,49,55,49,56,44,51,48,46,50,56,54,54,53,51,93,44,91,45,57,57,46,51,48,51,57,57,54,44,51,48,46,52,57,57,56,51,50,93,44,91,45,57,57,46,52,56,52,52,57,51,44,51,48,46,52,57,57,54,52,49,93,44,91,45,57,57,46,52,56,51,56,54,57,44,51,48,46,55,49,48,55,55,49,93,44,91,45,49,48,48,46,49,49,54,50,51,52,44,51,48,46,55,49,48,51,54,54,93,44,91,45,49,48,48,46,49,49,54,52,54,49,44,51,48,46,50,57,48,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,97,99,107,105,110,97,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,53,48,50,53,44,52,54,46,50,52,52,54,51,49,93,44,91,45,56,53,46,56,54,56,50,52,49,44,52,53,46,56,49,57,55,57,53,93,44,91,45,56,53,46,53,55,48,48,55,52,44,52,53,46,56,56,51,50,52,52,93,44,91,45,56,53,46,50,51,57,54,49,56,44,52,53,46,56,55,48,55,52,93,44,91,45,56,52,46,55,51,50,53,57,53,44,52,53,46,56,49,48,51,51,93,44,91,45,56,52,46,52,53,50,54,51,52,44,52,53,46,54,57,53,51,55,93,44,91,45,56,52,46,50,48,49,48,54,50,44,52,53,46,55,53,50,50,55,53,93,44,91,45,56,52,46,49,50,51,48,57,56,44,52,53,46,55,55,55,54,54,56,93,44,91,45,56,52,46,49,49,52,49,56,54,44,52,53,46,57,56,53,49,53,50,93,44,91,45,56,52,46,50,51,57,51,51,50,44,52,53,46,57,56,52,57,49,52,93,44,91,45,56,52,46,51,54,51,48,57,44,52,54,46,48,55,49,53,55,52,93,44,91,45,56,52,46,51,54,51,53,48,51,44,52,54,46,49,53,55,57,56,52,93,44,91,45,56,53,46,49,49,50,53,49,51,44,52,54,46,49,53,56,50,54,51,93,44,91,45,56,53,46,50,51,55,56,51,57,44,52,54,46,50,52,53,52,51,93,44,91,45,56,53,46,56,54,53,48,50,53,44,52,54,46,50,52,52,54,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,55,34,44,34,78,65,77,69,34,58,34,77,99,67,117,108,108,111,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,48,50,55,54,56,44,51,49,46,52,54,55,50,51,52,93,44,91,45,57,57,46,51,48,50,54,48,53,44,51,49,46,52,51,50,53,48,52,93,44,91,45,57,57,46,54,48,49,56,53,44,51,49,46,52,57,49,57,53,93,44,91,45,57,57,46,54,48,51,50,50,51,44,51,49,46,48,56,55,50,57,54,93,44,91,45,57,57,46,54,48,51,54,50,55,44,51,48,46,57,52,48,55,50,54,93,44,91,45,57,57,46,52,56,52,55,53,53,44,51,48,46,57,52,48,54,48,53,93,44,91,45,57,57,46,48,57,50,51,49,55,44,51,48,46,57,52,49,48,48,50,93,44,91,45,57,57,46,48,57,48,54,50,50,44,51,49,46,52,54,48,57,50,55,93,44,91,45,57,57,46,50,48,50,55,54,56,44,51,49,46,52,54,55,50,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,84,105,115,104,111,109,105,110,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,55,56,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,50,48,48,48,54,52,44,51,52,46,57,57,53,54,51,52,93,44,91,45,56,56,46,51,54,51,53,51,49,44,51,52,46,57,57,53,52,55,53,93,44,91,45,56,56,46,51,54,53,52,55,50,44,51,52,46,55,53,53,54,48,52,93,44,91,45,56,56,46,51,51,48,54,57,57,44,51,52,46,55,52,48,55,50,49,93,44,91,45,56,56,46,51,50,57,49,57,51,44,51,52,46,52,54,51,53,55,49,93,44,91,45,56,56,46,49,53,54,50,57,50,44,51,52,46,52,54,51,50,49,52,93,44,91,45,56,56,46,49,51,57,57,56,56,44,51,52,46,53,56,49,55,48,51,93,44,91,45,56,56,46,48,57,55,56,56,56,44,51,52,46,56,57,50,50,48,50,93,44,91,45,56,56,46,50,48,48,48,54,52,44,51,52,46,57,57,53,54,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,67,114,111,99,107,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,55,53,56,52,44,51,48,46,50,56,56,48,52,52,93,44,91,45,49,48,48,46,57,54,48,54,52,51,44,51,48,46,50,56,55,55,55,54,93,44,91,45,49,48,48,46,57,54,48,53,56,55,44,51,48,46,55,48,54,48,55,49,93,44,91,45,49,48,48,46,57,54,50,49,55,54,44,51,49,46,48,56,50,52,57,93,44,91,45,49,48,49,46,50,55,52,55,57,57,44,51,49,46,48,55,57,51,55,57,93,44,91,45,49,48,49,46,55,55,54,49,57,49,44,51,49,46,48,55,57,55,56,52,93,44,91,45,49,48,50,46,51,48,49,50,49,50,44,51,49,46,48,56,54,50,49,50,93,44,91,45,49,48,50,46,51,56,56,56,48,52,44,51,49,46,48,56,55,49,53,54,93,44,91,45,49,48,50,46,50,57,50,54,56,49,44,51,49,46,48,51,54,54,55,55,93,44,91,45,49,48,49,46,57,56,52,53,50,55,44,51,48,46,57,56,55,52,52,53,93,44,91,45,49,48,49,46,56,55,52,50,55,54,44,51,48,46,57,49,50,50,51,54,93,44,91,45,49,48,49,46,56,51,52,53,50,56,44,51,48,46,55,53,55,57,52,57,93,44,91,45,49,48,49,46,55,54,56,52,50,44,51,48,46,54,53,51,48,55,55,93,44,91,45,49,48,49,46,54,54,57,56,51,51,44,51,48,46,54,51,55,57,48,55,93,44,91,45,49,48,49,46,54,52,54,53,48,54,44,51,48,46,53,53,49,49,49,50,93,44,91,45,49,48,49,46,55,52,48,52,50,57,44,51,48,46,52,50,48,56,57,55,93,44,91,45,49,48,49,46,54,53,56,53,51,44,51,48,46,51,53,55,56,54,49,93,44,91,45,49,48,49,46,55,53,56,52,44,51,48,46,50,56,56,48,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,55,34,44,34,78,65,77,69,34,58,34,72,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,57,57,44,34,98,101,100,115,34,58,49,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,55,54,48,56,54,44,51,50,46,49,55,51,52,54,93,44,91,45,57,55,46,52,56,53,57,54,56,44,51,50,46,48,49,55,54,49,49,93,44,91,45,57,55,46,51,50,55,49,52,53,44,51,49,46,56,52,49,52,53,50,93,44,91,45,57,55,46,50,55,55,50,54,53,44,51,49,46,55,52,53,52,57,50,93,44,91,45,57,55,46,48,51,55,50,54,54,44,51,49,46,56,54,51,48,55,57,93,44,91,45,57,54,46,57,51,50,50,49,53,44,51,49,46,55,48,56,56,56,55,93,44,91,45,57,54,46,55,49,57,49,49,52,44,51,49,46,56,49,52,56,56,55,93,44,91,45,57,54,46,56,57,54,50,48,57,44,51,50,46,48,55,51,57,55,55,93,44,91,45,57,54,46,57,52,48,54,53,54,44,51,50,46,48,53,50,48,56,55,93,44,91,45,57,55,46,48,56,54,49,57,49,44,51,50,46,50,54,53,52,53,49,93,44,91,45,57,55,46,52,55,54,48,56,54,44,51,50,46,49,55,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,54,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,53,55,51,55,55,52,44,52,49,46,48,48,49,55,49,54,93,44,91,45,49,48,51,46,53,56,49,56,52,52,44,52,48,46,53,50,51,51,56,51,93,44,91,45,49,48,51,46,52,54,53,51,55,55,44,52,48,46,52,51,54,51,52,54,93,44,91,45,49,48,50,46,55,55,57,57,54,44,52,48,46,52,51,56,52,52,54,93,44,91,45,49,48,50,46,54,54,52,56,48,52,44,52,48,46,52,51,56,52,55,51,93,44,91,45,49,48,50,46,54,53,49,51,49,44,52,48,46,55,52,57,52,48,50,93,44,91,45,49,48,50,46,54,53,51,52,54,51,44,52,49,46,48,48,50,51,51,50,93,44,91,45,49,48,51,46,51,56,50,52,57,50,44,52,49,46,48,48,50,50,53,50,93,44,91,45,49,48,51,46,53,55,51,55,55,52,44,52,49,46,48,48,49,55,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,70,105,110,110,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,57,53,55,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,49,48,51,50,54,56,44,51,56,46,50,54,52,53,53,55,93,44,91,45,49,48,49,46,49,48,51,55,55,56,44,51,55,46,56,50,57,48,51,53,93,44,91,45,49,48,49,46,48,56,57,54,54,55,44,51,55,46,55,51,54,51,51,55,93,44,91,45,49,48,48,46,54,53,50,50,53,49,44,51,55,46,55,51,54,50,55,53,93,44,91,45,49,48,48,46,54,54,52,49,54,54,44,51,56,46,48,48,50,53,51,93,44,91,45,49,48,48,46,50,50,54,54,49,44,51,56,46,48,48,49,48,49,53,93,44,91,45,49,48,48,46,50,50,55,49,51,55,44,51,56,46,50,54,50,50,51,55,93,44,91,45,49,48,48,46,50,52,52,51,57,51,44,51,56,46,50,54,50,50,57,93,44,91,45,49,48,48,46,54,56,52,54,57,57,44,51,56,46,50,54,52,49,51,55,93,44,91,45,49,48,49,46,49,48,51,50,54,56,44,51,56,46,50,54,52,53,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,55,48,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,54,52,51,57,57,44,51,55,46,50,57,57,50,51,50,93,44,91,45,57,53,46,57,54,52,50,55,44,51,54,46,57,57,57,49,48,52,93,44,91,45,57,53,46,55,56,54,55,54,50,44,51,54,46,57,57,57,51,49,93,44,91,45,57,53,46,53,50,50,52,49,53,44,51,54,46,57,57,57,50,56,93,44,91,45,57,53,46,53,50,49,49,51,44,51,55,46,51,56,51,57,57,93,44,91,45,57,53,46,53,50,53,53,54,44,51,55,46,51,56,51,57,55,57,93,44,91,45,57,53,46,57,54,49,54,48,53,44,51,55,46,51,56,54,54,51,54,93,44,91,45,57,53,46,57,54,52,51,57,57,44,51,55,46,50,57,57,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,70,97,105,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,49,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,52,50,51,50,52,49,44,51,52,46,52,57,52,51,55,57,93,44,91,45,56,49,46,51,49,54,57,49,49,44,51,52,46,50,51,57,52,53,56,93,44,91,45,56,49,46,48,57,53,56,54,51,44,51,52,46,50,49,51,56,55,50,93,44,91,45,56,48,46,56,50,53,57,50,49,44,51,52,46,50,54,56,55,54,93,44,91,45,56,48,46,55,54,57,57,50,54,44,51,52,46,51,55,55,49,49,49,93,44,91,45,56,48,46,56,55,57,50,50,55,44,51,52,46,52,53,55,55,55,54,93,44,91,45,56,48,46,56,55,55,52,57,49,44,51,52,46,53,52,51,49,52,54,93,44,91,45,56,49,46,52,50,50,55,48,54,44,51,52,46,53,55,50,48,50,57,93,44,91,45,56,49,46,52,50,51,50,52,49,44,51,52,46,52,57,52,51,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,104,101,121,101,110,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,53,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,51,54,54,57,53,44,52,49,46,52,51,57,48,53,51,93,44,91,45,49,48,51,46,51,54,57,48,50,52,44,52,49,46,52,51,55,54,53,53,93,44,91,45,49,48,51,46,51,55,55,54,50,44,52,49,46,51,57,52,54,51,51,93,44,91,45,49,48,51,46,51,56,50,52,57,50,44,52,49,46,48,48,50,50,53,50,93,44,91,45,49,48,50,46,54,53,51,52,54,51,44,52,49,46,48,48,50,51,51,50,93,44,91,45,49,48,50,46,54,50,49,48,51,51,44,52,49,46,48,48,50,53,57,55,93,44,91,45,49,48,50,46,54,49,48,52,49,51,44,52,49,46,50,50,49,54,49,52,93,44,91,45,49,48,50,46,54,51,54,54,57,53,44,52,49,46,52,51,57,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,54,52,44,34,98,101,100,115,34,58,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,51,54,56,57,55,52,44,52,51,46,56,52,56,48,52,55,93,44,91,45,57,52,46,56,53,52,52,52,52,44,52,51,46,56,52,56,48,57,57,93,44,91,45,57,52,46,56,53,52,53,53,53,44,52,51,46,53,48,48,57,50,53,93,44,91,45,57,52,46,52,52,50,56,53,44,52,51,46,53,48,48,52,50,50,93,44,91,45,57,52,46,50,52,55,57,54,56,44,52,51,46,53,48,48,49,51,51,93,44,91,45,57,52,46,50,52,55,49,50,51,44,52,51,46,56,52,55,57,52,54,93,44,91,45,57,52,46,51,54,56,57,55,52,44,52,51,46,56,52,56,48,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,83,101,118,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,50,56,55,44,34,98,101,100,115,34,58,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,57,52,50,55,53,44,51,53,46,56,56,55,49,50,53,93,44,91,45,56,51,46,54,54,50,57,57,57,44,51,53,46,53,54,57,52,54,56,93,44,91,45,56,51,46,52,56,53,56,51,52,44,51,53,46,53,54,56,49,57,93,44,91,45,56,51,46,50,53,52,50,53,55,44,51,53,46,54,57,53,53,57,51,93,44,91,45,56,51,46,50,53,53,51,52,51,44,51,53,46,55,49,53,48,56,52,93,44,91,45,56,51,46,51,49,48,55,56,50,44,51,53,46,56,57,53,56,52,54,93,44,91,45,56,51,46,52,55,52,57,48,49,44,51,53,46,57,50,50,56,57,51,93,44,91,45,56,51,46,54,55,51,50,57,55,44,51,54,46,48,51,56,52,56,54,93,44,91,45,56,51,46,54,53,52,54,48,53,44,51,53,46,57,55,49,57,51,55,93,44,91,45,56,51,46,55,57,52,50,55,53,44,51,53,46,56,56,55,49,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,55,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,48,51,54,48,55,44,51,53,46,50,52,49,48,52,51,93,44,91,45,56,52,46,54,57,57,57,51,55,44,51,53,46,49,55,48,57,55,52,93,44,91,45,56,52,46,55,55,53,56,53,51,44,51,52,46,57,56,55,56,56,52,93,44,91,45,56,52,46,54,50,49,52,56,51,44,51,52,46,57,56,56,51,50,57,93,44,91,45,56,52,46,51,50,49,56,50,49,44,51,52,46,57,56,56,52,48,56,93,44,91,45,56,52,46,50,57,50,51,54,53,44,51,53,46,50,48,54,54,57,52,93,44,91,45,56,52,46,52,57,53,53,50,57,44,51,53,46,50,56,53,52,55,50,93,44,91,45,56,52,46,55,48,51,54,48,55,44,51,53,46,50,52,49,48,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,51,34,44,34,78,65,77,69,34,58,34,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,44,91,45,49,48,49,46,48,51,56,54,54,44,51,50,46,57,55,48,50,50,53,93,44,91,45,49,48,48,46,54,53,53,56,55,44,51,50,46,57,54,51,52,54,57,93,44,91,45,49,48,48,46,53,49,57,50,48,56,44,51,50,46,57,54,50,57,50,54,93,44,91,45,49,48,48,46,53,49,55,52,52,57,44,51,51,46,51,57,55,56,54,54,93,44,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,84,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,57,56,52,55,51,52,44,52,55,46,57,53,51,57,49,56,93,44,91,45,49,49,50,46,57,49,51,50,53,54,44,52,55,46,56,50,54,50,49,54,93,44,91,45,49,49,50,46,57,49,51,56,55,52,44,52,55,46,54,57,55,49,57,57,93,44,91,45,49,49,50,46,56,53,52,55,48,49,44,52,55,46,54,50,57,50,51,52,93,44,91,45,49,49,50,46,53,54,56,54,54,44,52,55,46,54,51,54,48,49,56,93,44,91,45,49,49,50,46,52,51,50,55,49,49,44,52,55,46,54,48,54,49,48,52,93,44,91,45,49,49,50,46,50,55,56,44,52,55,46,53,48,53,54,50,51,93,44,91,45,49,49,50,46,48,52,55,55,56,49,44,52,55,46,53,49,54,48,51,52,93,44,91,45,49,49,49,46,57,50,50,55,57,53,44,52,55,46,53,48,53,48,54,52,93,44,91,45,49,49,49,46,57,50,50,57,51,54,44,52,55,46,54,49,49,50,51,49,93,44,91,45,49,49,49,46,54,54,54,50,54,44,52,55,46,54,49,49,50,53,51,93,44,91,45,49,49,49,46,54,54,54,52,56,50,44,52,55,46,54,57,55,55,54,49,93,44,91,45,49,49,49,46,52,48,56,56,53,44,52,55,46,54,57,56,49,50,51,93,44,91,45,49,49,49,46,52,48,56,53,49,52,44,52,55,46,57,56,55,49,55,56,93,44,91,45,49,49,49,46,57,56,52,50,54,51,44,52,55,46,57,56,52,53,57,50,93,44,91,45,49,49,50,46,48,52,55,57,57,57,44,52,56,46,48,56,54,54,49,50,93,44,91,45,49,49,50,46,49,55,55,56,51,51,44,52,56,46,49,51,48,55,49,50,93,44,91,45,49,49,51,46,48,49,52,56,49,49,44,52,56,46,49,51,49,48,51,93,44,91,45,49,49,50,46,56,56,52,56,56,51,44,52,55,46,57,56,53,52,49,52,93,44,91,45,49,49,50,46,57,56,52,55,51,52,44,52,55,46,57,53,51,57,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,71,97,114,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,48,44,34,98,101,100,115,34,58,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,51,54,54,57,53,44,52,49,46,52,51,57,48,53,51,93,44,91,45,49,48,50,46,54,49,48,52,49,51,44,52,49,46,50,50,49,54,49,52,93,44,91,45,49,48,50,46,48,53,53,53,51,53,44,52,49,46,50,50,49,53,52,55,93,44,91,45,49,48,50,46,48,53,53,50,53,54,44,52,49,46,51,57,53,49,54,50,93,44,91,45,49,48,49,46,57,56,52,54,51,44,52,49,46,51,57,52,55,49,50,93,44,91,45,49,48,49,46,57,56,53,53,50,51,44,52,49,46,55,52,50,50,57,93,44,91,45,49,48,50,46,48,54,55,57,49,56,44,52,49,46,55,52,50,48,57,57,93,44,91,45,49,48,50,46,48,54,54,54,53,44,52,50,46,48,48,57,49,57,53,93,44,91,45,49,48,50,46,54,55,55,53,56,50,44,52,50,46,48,48,53,50,56,50,93,44,91,45,49,48,50,46,54,55,57,48,57,51,44,52,49,46,56,52,51,48,53,93,44,91,45,49,48,50,46,54,51,54,52,55,54,44,52,49,46,55,52,51,49,51,57,93,44,91,45,49,48,50,46,54,51,54,54,57,53,44,52,49,46,52,51,57,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,97,99,111,117,112,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,49,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,53,51,55,56,50,44,51,57,46,53,50,48,51,49,53,93,44,91,45,57,48,46,49,52,56,49,50,49,44,51,57,46,50,54,49,57,52,55,93,44,91,45,57,48,46,49,52,53,57,56,52,44,51,56,46,57,57,57,51,48,51,93,44,91,45,56,57,46,54,57,56,53,53,53,44,51,56,46,57,57,56,57,55,57,93,44,91,45,56,57,46,55,48,49,54,54,49,44,51,57,46,53,50,51,51,49,54,93,44,91,45,56,57,46,57,50,54,48,51,55,44,51,57,46,53,50,50,49,48,52,93,44,91,45,57,48,46,49,53,51,55,56,50,44,51,57,46,53,50,48,51,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,82,111,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,48,53,49,44,34,98,101,100,115,34,58,50,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,51,55,50,55,49,52,44,51,57,46,51,55,55,52,49,54,93,44,91,45,56,51,46,51,53,51,53,51,49,44,51,57,46,49,57,55,53,56,53,93,44,91,45,56,50,46,55,56,53,56,57,49,44,51,57,46,49,54,56,55,54,57,93,44,91,45,56,50,46,55,54,50,56,57,50,44,51,57,46,50,48,55,57,54,55,93,44,91,45,56,50,46,55,52,56,53,57,49,44,51,57,46,51,54,56,49,54,53,93,44,91,45,56,50,46,55,52,48,55,50,57,44,51,57,46,52,54,56,51,53,93,44,91,45,56,50,46,57,56,52,53,54,44,51,57,46,53,48,54,55,53,52,93,44,91,45,56,51,46,50,54,54,55,51,55,44,51,57,46,53,49,54,50,52,57,93,44,91,45,56,51,46,51,55,50,55,49,52,44,51,57,46,51,55,55,52,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,53,34,44,34,78,65,77,69,34,58,34,87,104,105,116,101,115,105,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,51,57,54,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,53,49,57,56,44,52,49,46,57,50,56,57,49,55,93,44,91,45,57,48,46,50,52,50,51,56,44,52,49,46,55,56,50,57,54,52,93,44,91,45,57,48,46,49,56,53,53,51,54,44,52,49,46,53,56,52,53,55,52,93,44,91,45,56,57,46,56,54,50,51,53,49,44,52,49,46,53,56,52,48,48,53,93,44,91,45,56,57,46,54,51,49,52,57,52,44,52,49,46,53,56,52,57,52,57,93,44,91,45,56,57,46,54,50,57,51,51,44,52,49,46,57,48,49,54,49,55,93,44,91,45,56,57,46,54,56,53,51,54,54,44,52,49,46,57,51,48,51,52,93,44,91,45,57,48,46,49,53,49,57,56,44,52,49,46,57,50,56,57,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,69,108,32,80,97,115,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,55,54,53,52,44,34,98,101,100,115,34,58,50,54,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,51,55,55,49,55,52,44,51,50,46,48,48,49,53,48,51,93,44,91,45,49,48,54,46,54,49,56,52,56,54,44,51,50,46,48,48,48,52,57,53,93,44,91,45,49,48,54,46,54,51,53,57,50,44,51,49,46,56,54,54,50,51,51,93,44,91,45,49,48,54,46,53,50,56,48,52,55,44,51,49,46,55,56,51,56,57,49,93,44,91,45,49,48,54,46,51,56,49,48,55,52,44,51,49,46,55,51,50,48,56,50,93,44,91,45,49,48,54,46,50,49,57,54,50,44,51,49,46,52,56,49,53,54,49,93,44,91,45,49,48,53,46,57,57,55,49,53,50,44,51,49,46,51,56,55,50,51,93,44,91,45,49,48,53,46,57,57,56,48,49,50,44,51,50,46,48,48,50,51,55,55,93,44,91,45,49,48,54,46,51,55,55,49,55,52,44,51,50,46,48,48,49,53,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,48,49,34,44,34,78,65,77,69,34,58,34,76,111,118,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,57,56,48,49,55,57,44,51,50,46,48,48,48,49,50,53,93,44,91,45,49,48,51,46,57,49,50,50,52,56,44,51,49,46,57,48,50,52,50,52,93,44,91,45,49,48,51,46,56,49,52,57,57,44,51,49,46,56,53,50,49,52,50,93,44,91,45,49,48,51,46,55,57,54,54,49,50,44,51,49,46,55,55,48,48,49,51,93,44,91,45,49,48,51,46,55,48,48,54,48,51,44,51,49,46,55,52,56,51,57,53,93,44,91,45,49,48,51,46,54,49,48,56,56,55,44,51,49,46,54,53,49,56,48,50,93,44,91,45,49,48,51,46,51,50,55,53,51,56,44,51,49,46,54,53,49,52,50,93,44,91,45,49,48,51,46,51,50,54,53,48,49,44,51,50,46,48,48,48,51,54,57,93,44,91,45,49,48,51,46,55,50,50,56,56,50,44,51,50,46,48,48,48,50,48,54,93,44,91,45,49,48,51,46,57,56,48,49,55,57,44,51,50,46,48,48,48,49,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,97,116,105,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,57,53,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,50,55,56,54,51,44,51,53,46,48,53,56,50,52,54,93,44,91,45,57,53,46,51,52,57,52,48,57,44,51,53,46,48,53,56,53,50,93,44,91,45,57,53,46,53,48,55,55,51,56,44,51,53,46,48,50,57,50,54,53,93,44,91,45,57,53,46,53,49,52,52,55,53,44,51,52,46,54,56,48,55,49,56,93,44,91,45,57,53,46,48,53,57,54,49,54,44,51,52,46,54,56,48,55,51,54,93,44,91,45,57,53,46,48,53,57,53,49,50,44,51,52,46,56,53,53,48,49,57,93,44,91,45,57,52,46,57,50,55,56,54,51,44,51,53,46,48,53,56,50,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,54,55,49,44,34,98,101,100,115,34,58,50,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,56,51,48,55,53,44,51,57,46,54,48,53,55,57,54,93,44,91,45,56,49,46,53,56,56,49,56,53,44,51,57,46,53,56,54,57,55,51,93,44,91,45,56,49,46,54,56,56,56,56,52,44,51,57,46,53,57,48,53,49,49,93,44,91,45,56,49,46,55,48,56,53,50,55,44,51,57,46,52,56,48,55,55,53,93,44,91,45,56,49,46,56,52,52,56,54,51,44,51,57,46,52,53,48,50,49,54,93,44,91,45,56,49,46,56,53,51,54,54,56,44,51,57,46,51,49,56,49,54,53,93,44,91,45,56,49,46,55,50,53,54,50,50,44,51,57,46,50,49,53,57,48,53,93,44,91,45,56,49,46,54,55,55,53,57,53,44,51,57,46,50,55,52,49,55,49,93,44,91,45,56,49,46,52,53,54,49,52,51,44,51,57,46,52,48,57,50,55,52,93,44,91,45,56,49,46,51,55,49,50,54,44,51,57,46,51,52,49,57,50,52,93,44,91,45,56,49,46,49,50,49,53,51,51,44,51,57,46,52,53,55,55,55,53,93,44,91,45,56,49,46,48,51,56,55,49,50,44,51,57,46,53,51,57,56,56,54,93,44,91,45,56,49,46,50,56,51,48,55,53,44,51,57,46,54,48,53,55,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,111,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,49,48,50,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,48,56,56,55,48,56,44,51,55,46,48,53,54,50,52,56,93,44,91,45,57,50,46,49,49,50,51,52,54,44,51,54,46,55,57,52,50,51,49,93,44,91,45,57,50,46,49,50,48,52,51,44,51,54,46,52,57,56,55,93,44,91,45,57,49,46,54,55,50,51,52,51,44,51,54,46,52,57,57,52,54,51,93,44,91,45,57,49,46,54,53,56,49,49,49,44,51,54,46,56,56,56,55,50,52,93,44,91,45,57,49,46,54,53,53,54,48,55,44,51,55,46,48,52,56,57,50,53,93,44,91,45,57,50,46,48,56,56,55,48,56,44,51,55,46,48,53,54,50,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,69,100,119,97,114,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,50,53,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,50,50,49,51,54,44,51,56,46,48,48,48,50,51,54,93,44,91,45,57,57,46,51,53,48,50,56,57,44,51,56,46,48,48,48,55,52,53,93,44,91,45,57,57,46,51,53,48,51,53,57,44,51,56,46,48,56,55,53,57,52,93,44,91,45,57,57,46,53,54,57,53,51,51,44,51,56,46,48,56,55,51,55,50,93,44,91,45,57,57,46,53,54,57,56,55,57,44,51,55,46,57,49,51,48,49,54,93,44,91,45,57,57,46,53,53,57,53,56,44,51,55,46,55,51,52,56,56,56,93,44,91,45,57,57,46,48,49,51,53,53,44,51,55,46,55,51,50,57,55,93,44,91,45,57,57,46,48,49,51,51,49,56,44,51,55,46,56,50,53,51,51,54,93,44,91,45,57,57,46,48,50,50,49,51,54,44,51,56,46,48,48,48,50,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,55,49,53,52,44,34,98,101,100,115,34,58,50,57,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,50,51,49,54,44,51,56,46,50,56,55,52,51,51,93,44,91,45,56,53,46,56,57,57,55,54,44,51,56,46,49,56,48,52,52,52,93,44,91,45,56,53,46,57,52,55,49,49,52,44,51,56,46,48,48,53,48,56,53,93,44,91,45,56,53,46,57,51,56,51,50,49,44,51,55,46,57,57,56,55,53,54,93,44,91,45,56,53,46,55,49,50,53,55,56,44,51,56,46,48,56,55,51,49,49,93,44,91,45,56,53,46,53,53,55,50,55,44,51,56,46,48,55,51,56,52,49,93,44,91,45,56,53,46,52,50,56,56,51,44,51,56,46,49,49,56,51,56,51,93,44,91,45,56,53,46,52,50,52,48,53,52,44,51,56,46,49,52,55,52,51,56,93,44,91,45,56,53,46,52,54,56,50,48,54,44,51,56,46,50,56,53,51,48,57,93,44,91,45,56,53,46,54,51,55,56,54,49,44,51,56,46,51,56,48,50,54,51,93,44,91,45,56,53,46,55,57,50,51,49,54,44,51,56,46,50,56,55,52,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,76,111,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,50,48,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,54,51,55,52,44,52,48,46,51,50,53,51,52,52,93,44,91,45,56,57,46,54,48,50,57,55,57,44,52,48,46,51,50,48,49,50,57,93,44,91,45,56,57,46,54,48,49,54,56,56,44,52,48,46,49,50,50,51,55,56,93,44,91,45,56,57,46,53,55,56,50,56,57,44,51,57,46,57,55,54,49,50,55,93,44,91,45,56,57,46,52,48,52,57,56,52,44,51,57,46,57,49,56,49,56,55,93,44,91,45,56,57,46,50,49,55,56,52,54,44,51,57,46,57,49,54,57,57,93,44,91,45,56,57,46,49,52,52,55,54,52,44,52,48,46,48,52,56,56,53,51,93,44,91,45,56,57,46,49,52,56,55,54,52,44,52,48,46,50,56,50,48,51,56,93,44,91,45,56,57,46,50,54,51,55,52,44,52,48,46,51,50,53,51,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,87,105,110,110,101,98,97,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,57,50,54,44,34,98,101,100,115,34,58,55,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,48,52,48,55,44,52,52,46,50,52,52,49,48,50,93,44,91,45,56,56,46,55,51,57,55,55,44,52,52,46,50,52,51,51,48,51,93,44,91,45,56,56,46,56,56,54,54,55,51,44,52,52,46,50,52,50,54,50,50,93,44,91,45,56,56,46,56,56,54,49,57,51,44,52,51,46,57,56,51,50,51,51,93,44,91,45,56,56,46,56,56,53,54,57,55,44,52,51,46,56,57,53,49,56,52,93,44,91,45,56,56,46,52,48,51,49,57,53,44,52,51,46,56,57,50,57,55,55,93,44,91,45,56,56,46,52,48,52,49,56,55,44,52,51,46,57,51,56,50,93,44,91,45,56,56,46,52,48,52,48,55,44,52,52,46,50,52,52,49,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,56,51,52,53,56,56,44,51,54,46,53,48,50,54,49,49,93,44,91,45,56,56,46,57,48,51,52,56,44,51,54,46,53,55,54,56,54,52,93,44,91,45,56,57,46,49,55,52,55,50,55,44,51,54,46,54,53,48,52,55,53,93,44,91,45,56,57,46,50,50,55,48,52,54,44,51,54,46,53,54,57,53,51,55,93,44,91,45,56,57,46,51,50,55,53,56,56,44,51,54,46,54,51,50,50,55,54,93,44,91,45,56,57,46,52,49,55,50,55,53,44,51,54,46,52,57,57,48,49,49,93,44,91,45,56,57,46,51,52,54,48,54,54,44,51,54,46,53,48,51,50,51,50,93,44,91,45,56,56,46,56,51,52,53,56,56,44,51,54,46,53,48,50,54,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,72,97,114,118,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,53,53,53,44,34,98,101,100,115,34,58,49,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,48,49,56,52,49,44,51,56,46,49,55,51,56,49,52,93,44,91,45,57,55,46,55,48,49,57,54,57,44,51,55,46,57,49,49,51,50,53,93,44,91,45,57,55,46,49,53,50,52,55,54,44,51,55,46,57,49,50,55,51,51,93,44,91,45,57,55,46,49,53,50,57,49,51,44,51,56,46,48,56,55,55,48,52,93,44,91,45,57,55,46,49,53,51,48,57,51,44,51,56,46,49,55,52,54,51,52,93,44,91,45,57,55,46,51,55,49,55,53,44,51,56,46,49,55,51,54,55,51,93,44,91,45,57,55,46,55,48,49,56,52,49,44,51,56,46,49,55,51,56,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,68,97,119,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,57,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,52,48,54,51,48,57,44,52,55,46,49,56,49,53,56,51,93,44,91,45,49,48,53,46,51,50,52,56,53,51,44,52,55,46,49,56,49,52,57,54,93,44,91,45,49,48,53,46,51,50,52,55,53,55,44,52,54,46,57,55,55,49,57,54,93,44,91,45,49,48,53,46,49,57,54,55,51,53,44,52,54,46,57,55,55,49,55,50,93,44,91,45,49,48,53,46,48,50,55,53,50,54,44,52,54,46,56,54,49,52,53,55,93,44,91,45,49,48,52,46,54,48,51,55,54,54,44,52,54,46,56,54,48,56,53,51,93,44,91,45,49,48,52,46,52,49,50,49,50,52,44,52,54,46,57,48,52,48,48,51,93,44,91,45,49,48,52,46,51,48,54,48,54,50,44,52,55,46,48,52,50,48,52,54,93,44,91,45,49,48,52,46,51,52,49,54,56,44,52,55,46,50,52,53,51,57,50,93,44,91,45,49,48,52,46,52,50,48,51,52,55,44,52,55,46,51,53,52,52,51,53,93,44,91,45,49,48,52,46,53,49,51,50,57,50,44,52,55,46,51,53,52,55,49,57,93,44,91,45,49,48,52,46,53,49,51,48,52,57,44,52,55,46,53,50,57,52,52,50,93,44,91,45,49,48,52,46,53,57,51,54,54,52,44,52,55,46,54,49,54,50,57,52,93,44,91,45,49,48,52,46,57,55,56,53,53,51,44,52,55,46,54,49,54,50,55,50,93,44,91,45,49,48,52,46,57,55,56,48,57,44,52,55,46,55,48,51,50,57,51,93,44,91,45,49,48,53,46,50,51,53,48,49,54,44,52,55,46,55,48,51,53,56,49,93,44,91,45,49,48,53,46,50,51,52,55,55,49,44,52,55,46,55,57,48,53,48,50,93,44,91,45,49,48,53,46,51,54,51,50,54,50,44,52,55,46,55,57,48,52,49,57,93,44,91,45,49,48,53,46,52,48,54,53,56,49,44,52,55,46,53,50,57,53,51,52,93,44,91,45,49,48,53,46,52,48,54,51,48,57,44,52,55,46,49,56,49,53,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,53,49,44,34,98,101,100,115,34,58,49,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,51,56,56,55,56,44,51,57,46,52,53,50,52,54,53,93,44,91,45,56,48,46,48,50,53,48,48,49,44,51,57,46,52,48,49,52,52,54,93,44,91,45,56,48,46,49,57,55,50,56,54,44,51,57,46,51,57,51,49,56,54,93,44,91,45,56,48,46,49,54,54,51,56,55,44,51,57,46,50,52,50,50,56,51,93,44,91,45,56,48,46,48,50,51,52,49,49,44,51,57,46,50,52,55,56,57,50,93,44,91,45,55,57,46,56,57,53,53,51,54,44,51,57,46,50,57,57,53,56,52,93,44,91,45,55,57,46,56,57,52,54,56,56,44,51,57,46,52,51,53,53,56,56,93,44,91,45,55,57,46,57,51,56,56,55,56,44,51,57,46,52,53,50,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,77,105,100,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,51,56,57,44,34,98,101,100,115,34,58,51,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,44,91,45,56,52,46,54,48,55,53,52,44,52,51,46,52,54,54,48,48,54,93,44,91,45,56,52,46,51,54,57,56,55,54,44,52,51,46,52,54,54,48,52,52,93,44,91,45,56,52,46,49,55,48,53,55,54,44,52,51,46,52,56,49,57,54,57,93,44,91,45,56,52,46,49,54,56,49,50,55,44,52,51,46,53,54,56,56,57,57,93,44,91,45,56,52,46,49,54,55,51,49,56,44,52,51,46,56,50,53,57,48,50,93,44,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,81,117,105,116,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,55,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,57,56,53,51,54,44,51,52,46,53,49,49,48,56,56,93,44,91,45,57,48,46,51,48,52,51,49,55,44,51,52,46,53,48,57,54,50,49,93,44,91,45,57,48,46,51,57,57,52,57,56,44,51,52,46,52,50,51,56,48,55,93,44,91,45,57,48,46,52,53,48,53,55,50,44,51,52,46,50,54,50,52,48,50,93,44,91,45,57,48,46,52,53,48,57,56,49,44,51,52,46,48,55,50,57,51,50,93,44,91,45,57,48,46,49,51,53,54,57,53,44,51,52,46,48,55,50,57,93,44,91,45,57,48,46,49,51,53,52,53,54,44,51,52,46,49,54,48,48,55,52,93,44,91,45,57,48,46,49,57,52,48,56,54,44,51,52,46,51,48,49,52,48,55,93,44,91,45,57,48,46,49,57,56,53,51,54,44,51,52,46,53,49,49,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,57,53,44,34,98,101,100,115,34,58,52,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,53,49,50,56,53,44,51,55,46,55,57,56,56,55,56,93,44,91,45,56,54,46,50,55,53,50,55,44,51,55,46,53,57,51,53,49,57,93,44,91,45,56,54,46,49,49,52,48,57,53,44,51,55,46,53,54,55,49,51,49,93,44,91,45,56,54,46,48,52,55,53,57,56,44,51,55,46,52,52,57,57,51,51,93,44,91,45,56,53,46,56,57,50,56,48,52,44,51,55,46,52,52,48,51,48,56,93,44,91,45,56,53,46,56,55,54,48,48,54,44,51,55,46,53,52,51,50,53,57,93,44,91,45,56,53,46,54,56,48,52,56,56,44,51,55,46,55,51,50,50,56,52,93,44,91,45,56,53,46,55,51,55,55,55,55,44,51,55,46,56,49,49,55,57,93,44,91,45,56,53,46,57,51,56,51,50,49,44,51,55,46,57,57,56,55,53,54,93,44,91,45,56,53,46,57,52,55,49,49,52,44,51,56,46,48,48,53,48,56,53,93,44,91,45,56,53,46,57,57,56,57,53,50,44,51,55,46,57,57,57,54,53,52,93,44,91,45,56,54,46,48,48,55,52,51,50,44,51,55,46,56,49,56,52,51,57,93,44,91,45,56,54,46,49,53,49,50,56,53,44,51,55,46,55,57,56,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,49,54,57,44,34,98,101,100,115,34,58,49,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,52,52,51,56,56,44,51,56,46,52,55,51,56,55,56,93,44,91,45,56,57,46,49,52,55,53,57,55,44,51,56,46,50,49,50,56,57,53,93,44,91,45,56,57,46,49,50,57,54,51,50,44,51,56,46,49,50,52,55,54,55,93,44,91,45,56,56,46,55,48,52,54,48,54,44,51,56,46,49,50,53,49,57,53,93,44,91,45,56,56,46,55,48,50,51,57,49,44,51,56,46,50,53,54,54,54,49,93,44,91,45,56,56,46,54,57,56,57,54,49,44,51,56,46,52,55,52,57,49,52,93,44,91,45,56,57,46,49,52,52,51,56,56,44,51,56,46,52,55,51,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,97,109,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,57,49,51,52,54,44,52,52,46,56,48,52,48,51,53,93,44,91,45,57,55,46,52,57,50,50,54,54,44,52,52,46,53,52,51,56,56,52,93,44,91,45,57,55,46,49,50,56,48,50,52,44,52,52,46,53,52,51,49,50,54,93,44,91,45,57,54,46,56,56,53,53,48,52,44,52,52,46,53,52,51,55,55,51,93,44,91,45,57,54,46,56,56,52,53,55,44,52,52,46,56,48,52,52,51,54,93,44,91,45,57,55,46,52,57,49,51,52,54,44,52,52,46,56,48,52,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,52,56,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,52,51,52,49,52,44,52,53,46,53,53,53,48,56,50,93,44,91,45,57,48,46,48,52,50,50,55,51,44,52,53,46,51,56,49,56,54,54,93,44,91,45,57,48,46,48,52,51,54,56,53,44,52,53,46,49,50,48,50,49,52,93,44,91,45,56,57,46,52,50,53,57,55,49,44,52,53,46,49,49,57,48,57,56,93,44,91,45,56,57,46,52,50,52,56,50,52,44,52,53,46,52,54,55,49,54,54,93,44,91,45,56,57,46,52,50,56,50,53,56,44,52,53,46,53,53,53,51,53,51,93,44,91,45,57,48,46,48,52,51,52,49,52,44,52,53,46,53,53,53,48,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,54,57,50,44,34,98,101,100,115,34,58,49,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,50,54,50,50,56,44,52,52,46,57,57,52,56,54,51,93,44,91,45,55,52,46,54,52,49,56,55,50,44,52,52,46,57,53,50,54,50,49,93,44,91,45,55,52,46,53,50,53,54,56,51,44,52,52,46,49,55,48,54,51,54,93,44,91,45,55,52,46,53,51,53,49,53,54,44,52,52,46,48,57,57,50,53,93,44,91,45,55,52,46,50,56,49,56,55,44,52,52,46,49,50,48,53,53,50,93,44,91,45,55,52,46,48,57,51,52,57,44,52,52,46,49,51,55,54,49,53,93,44,91,45,55,52,46,49,52,49,52,50,52,44,52,52,46,52,48,55,50,54,56,93,44,91,45,55,51,46,57,48,57,54,56,55,44,52,52,46,52,50,57,54,57,57,93,44,91,45,55,51,46,57,56,54,51,56,50,44,52,52,46,55,48,55,55,55,51,93,44,91,45,55,52,46,48,50,55,51,56,57,44,52,52,46,57,57,53,54,56,53,93,44,91,45,55,52,46,55,50,54,50,50,56,44,52,52,46,57,57,52,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,51,48,34,44,34,78,65,77,69,34,58,34,70,114,101,100,101,114,105,99,107,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,52,54,57,44,34,98,101,100,115,34,58,52,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,53,51,48,50,56,51,44,51,56,46,51,48,57,49,55,53,93,44,91,45,55,55,46,52,52,55,49,50,54,44,51,56,46,50,56,52,54,49,52,93,44,91,45,55,55,46,52,54,55,48,53,51,44,51,56,46,51,49,56,54,54,93,44,91,45,55,55,46,53,51,48,50,56,51,44,51,56,46,51,48,57,49,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,82,97,108,101,105,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,50,51,50,44,34,98,101,100,115,34,58,52,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,53,49,52,50,50,56,44,51,55,46,55,57,49,50,49,49,93,44,91,45,56,49,46,52,50,55,55,56,49,44,51,55,46,55,52,57,51,53,50,93,44,91,45,56,49,46,51,48,52,49,51,44,51,55,46,53,52,54,53,54,52,93,44,91,45,56,49,46,50,50,50,49,50,49,44,51,55,46,53,49,48,52,49,54,93,44,91,45,56,49,46,48,57,52,54,51,44,51,55,46,53,56,56,54,53,56,93,44,91,45,56,49,46,48,54,56,55,55,52,44,51,55,46,54,51,57,56,50,51,93,44,91,45,56,48,46,57,48,53,57,54,49,44,51,55,46,54,57,56,53,57,54,93,44,91,45,56,48,46,57,52,53,48,57,44,51,55,46,56,49,57,49,50,49,93,44,91,45,56,49,46,48,55,51,50,52,57,44,51,55,46,56,55,53,56,54,53,93,44,91,45,56,49,46,50,57,53,49,50,55,44,51,55,46,56,56,57,51,49,49,93,44,91,45,56,49,46,51,56,48,56,50,57,44,51,55,46,57,54,57,49,48,57,93,44,91,45,56,49,46,52,53,54,54,51,50,44,51,55,46,57,56,55,51,48,55,93,44,91,45,56,49,46,53,55,49,51,51,52,44,51,55,46,57,50,56,49,48,55,93,44,91,45,56,49,46,53,49,52,50,50,56,44,51,55,46,55,57,49,50,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,67,104,97,118,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,52,53,57,44,34,98,101,100,115,34,58,50,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,56,57,51,51,55,55,44,51,52,46,48,56,56,52,48,55,93,44,91,45,49,48,52,46,56,57,50,52,51,51,44,51,51,46,51,57,56,49,57,57,93,44,91,45,49,48,52,46,57,48,53,52,50,52,44,51,51,46,49,51,56,57,48,52,93,44,91,45,49,48,53,46,51,49,54,57,54,56,44,51,51,46,49,51,50,51,48,51,93,44,91,45,49,48,53,46,51,53,50,53,49,51,44,51,50,46,57,54,50,48,48,55,93,44,91,45,49,48,53,46,51,53,52,48,49,44,51,50,46,53,49,56,55,55,54,93,44,91,45,49,48,52,46,56,53,49,53,50,52,44,51,50,46,53,50,48,53,52,49,93,44,91,45,49,48,52,46,56,52,49,53,55,54,44,51,50,46,57,54,51,50,49,51,93,44,91,45,49,48,51,46,56,49,52,53,48,55,44,51,50,46,57,54,53,49,49,52,93,44,91,45,49,48,51,46,55,54,54,52,49,55,44,51,50,46,57,54,53,50,54,52,93,44,91,45,49,48,51,46,55,54,54,51,54,49,44,51,51,46,51,57,53,50,57,55,93,44,91,45,49,48,51,46,55,50,48,56,48,57,44,51,51,46,53,54,57,53,51,55,93,44,91,45,49,48,51,46,53,49,48,49,50,57,44,51,51,46,53,55,48,49,49,55,93,44,91,45,49,48,51,46,53,48,57,55,53,57,44,51,51,46,54,53,55,50,54,50,93,44,91,45,49,48,51,46,55,49,56,51,51,51,44,51,51,46,54,53,54,50,49,93,44,91,45,49,48,51,46,55,49,54,56,56,53,44,51,51,46,56,49,57,53,53,56,93,44,91,45,49,48,51,46,56,52,49,57,51,51,44,51,51,46,56,49,57,50,93,44,91,45,49,48,51,46,56,52,49,54,57,49,44,51,52,46,48,56,49,57,48,57,93,44,91,45,49,48,51,46,57,52,54,48,49,57,44,51,52,46,48,56,50,52,54,51,93,44,91,45,49,48,52,46,49,53,53,54,44,51,52,46,48,56,51,50,48,53,93,44,91,45,49,48,52,46,49,53,54,50,54,57,44,51,51,46,57,57,53,52,49,51,93,44,91,45,49,48,52,46,55,56,54,49,48,52,44,51,52,46,48,48,48,49,51,55,93,44,91,45,49,48,52,46,55,56,54,52,50,57,44,51,52,46,48,56,55,54,54,52,93,44,91,45,49,48,52,46,56,57,51,51,55,55,44,51,52,46,48,56,56,52,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,70,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,56,57,49,55,44,34,98,101,100,115,34,58,50,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,50,52,56,50,53,55,44,51,53,46,56,51,57,49,55,56,93,44,91,45,49,48,54,46,50,53,48,52,57,57,44,51,53,46,55,53,53,56,49,56,93,44,91,45,49,48,54,46,50,52,52,50,49,54,44,51,53,46,50,49,53,54,53,55,93,44,91,45,49,48,54,46,50,52,51,56,55,52,44,51,53,46,48,52,48,48,48,51,93,44,91,45,49,48,53,46,55,49,52,52,49,57,44,51,53,46,48,52,49,54,48,53,93,44,91,45,49,48,53,46,55,50,48,53,50,57,44,51,53,46,56,55,49,49,56,53,93,44,91,45,49,48,53,46,55,49,55,52,55,55,44,51,53,46,57,55,56,55,52,49,93,44,91,45,49,48,54,46,48,55,49,51,52,57,44,51,54,46,48,48,49,57,55,93,44,91,45,49,48,54,46,48,53,52,51,52,54,44,51,53,46,57,51,48,55,56,51,93,44,91,45,49,48,54,46,50,52,53,54,52,57,44,51,53,46,57,51,48,55,52,50,93,44,91,45,49,48,54,46,50,52,56,51,52,53,44,51,53,46,56,53,53,54,53,50,93,44,91,45,49,48,54,46,50,52,56,50,53,55,44,51,53,46,56,51,57,49,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,54,52,49,56,50,44,34,98,101,100,115,34,58,53,57,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,49,50,53,57,44,51,51,46,54,57,55,49,53,49,93,44,91,45,49,49,56,46,48,57,54,52,55,51,44,51,51,46,54,53,51,54,53,49,93,44,91,45,49,49,55,46,56,49,54,51,53,54,44,51,51,46,52,57,48,56,55,50,93,44,91,45,49,49,55,46,54,49,49,48,56,49,44,51,51,46,51,51,51,57,57,50,93,44,91,45,49,49,55,46,53,55,56,52,56,44,51,51,46,52,53,51,57,50,55,93,44,91,45,49,49,55,46,53,48,57,55,50,50,44,51,51,46,53,48,53,48,49,57,93,44,91,45,49,49,55,46,52,49,50,57,56,55,44,51,51,46,54,53,57,48,52,53,93,44,91,45,49,49,55,46,53,51,51,57,57,57,44,51,51,46,55,49,48,51,53,53,93,44,91,45,49,49,55,46,54,55,51,49,51,52,44,51,51,46,56,55,49,48,48,53,93,44,91,45,49,49,55,46,55,56,51,50,56,55,44,51,51,46,57,52,54,52,49,49,93,44,91,45,49,49,55,46,57,55,54,52,57,56,44,51,51,46,57,52,54,48,53,93,44,91,45,49,49,56,46,48,53,56,57,49,56,44,51,51,46,56,52,54,49,50,49,93,44,91,45,49,49,56,46,49,50,53,57,44,51,51,46,54,57,55,49,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,67,114,117,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,53,56,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,52,53,50,51,44,51,49,46,55,51,49,50,49,57,93,44,91,45,49,49,49,46,49,54,52,49,56,51,44,51,49,46,55,50,53,56,57,93,44,91,45,49,49,49,46,49,54,51,55,49,55,44,51,49,46,53,50,49,55,50,52,93,44,91,45,49,49,49,46,51,54,54,57,50,50,44,51,49,46,53,50,49,51,54,49,93,44,91,45,49,49,49,46,51,54,54,51,55,50,44,51,49,46,52,50,54,48,54,49,93,44,91,45,49,49,49,46,48,55,52,57,56,44,51,49,46,51,51,50,51,52,49,93,44,91,45,49,49,48,46,52,53,57,55,53,49,44,51,49,46,51,51,50,57,49,52,93,44,91,45,49,49,48,46,52,53,50,51,44,51,49,46,55,51,49,50,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,67,117,114,114,105,116,117,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,51,49,51,51,48,51,44,51,54,46,53,53,48,53,50,93,44,91,45,55,54,46,49,49,52,48,54,57,44,51,54,46,51,53,55,52,57,56,93,44,91,45,55,53,46,57,54,57,54,50,53,44,51,54,46,51,48,54,51,49,50,93,44,91,45,55,53,46,56,56,55,57,56,52,44,51,54,46,49,54,51,51,49,49,93,44,91,45,55,53,46,57,48,54,50,57,53,44,51,54,46,48,56,53,56,55,55,93,44,91,45,55,53,46,56,52,48,48,52,54,44,51,54,46,48,50,56,56,51,52,93,44,91,45,55,53,46,55,54,52,55,50,55,44,51,54,46,48,54,48,49,51,57,93,44,91,45,55,53,46,56,49,51,49,48,56,44,51,54,46,50,50,51,53,54,93,44,91,45,55,53,46,55,48,57,48,55,56,44,51,54,46,50,52,52,57,56,52,93,44,91,45,55,53,46,55,57,55,52,57,55,44,51,54,46,53,53,48,57,49,54,93,44,91,45,55,54,46,49,50,50,51,52,57,44,51,54,46,53,53,48,53,50,51,93,44,91,45,55,54,46,51,49,51,51,48,51,44,51,54,46,53,53,48,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,53,51,49,49,52,53,44,51,56,46,56,53,50,53,48,55,93,44,91,45,56,55,46,57,48,56,49,49,51,44,51,56,46,56,53,48,49,48,55,93,44,91,45,56,55,46,57,49,50,50,56,54,44,51,56,46,53,55,48,49,48,52,93,44,91,45,56,55,46,54,53,49,53,50,57,44,51,56,46,53,54,56,49,54,54,93,44,91,45,56,55,46,53,49,57,54,49,44,51,56,46,54,57,55,49,57,56,93,44,91,45,56,55,46,53,51,49,49,52,53,44,51,56,46,56,53,50,53,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,51,56,55,44,34,98,101,100,115,34,58,50,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,51,54,52,49,44,52,48,46,53,54,53,53,50,53,93,44,91,45,56,54,46,49,54,53,48,50,52,44,52,48,46,53,54,50,54,52,57,93,44,91,45,56,54,46,51,55,52,52,49,55,44,52,48,46,53,54,49,51,54,49,93,44,91,45,56,54,46,51,55,53,55,54,50,44,52,48,46,52,51,49,56,53,49,93,44,91,45,56,54,46,50,52,50,57,57,50,44,52,48,46,51,55,51,54,54,49,93,44,91,45,56,54,46,50,52,50,56,49,50,44,52,48,46,52,48,50,57,49,52,93,44,91,45,56,53,46,56,54,50,49,49,55,44,52,48,46,52,48,54,56,56,57,93,44,91,45,56,53,46,56,54,51,54,52,49,44,52,48,46,53,54,53,53,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,54,50,56,57,50,44,51,56,46,53,51,51,53,49,57,93,44,91,45,56,55,46,52,48,55,53,56,51,44,51,56,46,51,55,53,53,48,49,93,44,91,45,56,55,46,51,49,53,57,51,44,51,56,46,51,55,53,48,52,56,93,44,91,45,56,55,46,51,49,54,56,57,51,44,51,56,46,50,52,54,48,55,55,93,44,91,45,56,55,46,48,55,51,48,54,55,44,51,56,46,50,51,50,53,57,54,93,44,91,45,56,55,46,48,55,50,51,54,57,44,51,56,46,53,49,52,55,93,44,91,45,56,55,46,50,52,50,48,57,55,44,51,56,46,53,52,52,57,51,93,44,91,45,56,55,46,52,54,50,56,57,50,44,51,56,46,53,51,51,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,104,114,105,115,116,105,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,50,54,51,44,34,98,101,100,115,34,58,55,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,51,51,51,54,56,44,51,55,46,48,48,50,49,48,51,93,44,91,45,56,55,46,54,53,57,55,50,52,44,51,54,46,57,54,54,51,57,55,93,44,91,45,56,55,46,54,57,52,49,57,50,44,51,54,46,54,51,55,49,48,56,93,44,91,45,56,55,46,54,52,49,49,53,55,44,51,54,46,54,51,56,49,48,57,93,44,91,45,56,55,46,51,51,53,57,56,44,51,54,46,54,52,49,54,53,57,93,44,91,45,56,55,46,50,53,57,51,55,49,44,51,55,46,48,55,50,52,48,49,93,44,91,45,56,55,46,51,51,51,55,52,49,44,51,55,46,49,53,55,49,56,54,93,44,91,45,56,55,46,53,50,49,54,48,57,44,51,55,46,49,48,53,51,52,52,93,44,91,45,56,55,46,54,56,48,54,49,55,44,51,55,46,49,52,57,50,51,57,93,44,91,45,56,55,46,55,51,51,51,54,56,44,51,55,46,48,48,50,49,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,69,97,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,49,53,53,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,55,52,50,52,53,44,52,50,46,55,55,48,55,56,52,93,44,91,45,56,53,46,48,55,49,54,48,57,44,52,50,46,52,50,49,52,50,56,93,44,91,45,56,52,46,55,49,56,52,57,51,44,52,50,46,52,50,49,53,50,93,44,91,45,56,52,46,54,48,48,52,48,51,44,52,50,46,52,50,49,57,56,52,93,44,91,45,56,52,46,54,48,50,55,54,49,44,52,50,46,55,54,57,56,56,93,44,91,45,56,52,46,56,51,55,48,56,53,44,52,50,46,55,55,48,52,55,57,93,44,91,45,56,53,46,48,55,52,50,52,53,44,52,50,46,55,55,48,55,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,87,97,112,101,108,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,49,53,44,34,98,101,100,115,34,58,50,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,52,48,51,54,49,44,52,49,46,49,54,49,50,57,56,93,44,91,45,57,50,46,54,51,57,48,57,49,44,52,48,46,56,57,56,56,56,54,93,44,91,45,57,50,46,49,55,57,48,55,50,44,52,48,46,56,57,57,55,50,93,44,91,45,57,50,46,49,55,57,57,55,52,44,52,49,46,49,54,50,54,54,50,93,44,91,45,57,50,46,52,49,48,50,51,51,44,52,49,46,49,54,49,57,52,50,93,44,91,45,57,50,46,54,52,48,51,54,49,44,52,49,46,49,54,49,50,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,73,109,112,101,114,105,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,48,50,49,54,44,34,98,101,100,115,34,58,50,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,49,48,54,49,54,56,44,51,50,46,54,49,56,52,56,93,44,91,45,49,49,52,46,55,49,57,52,57,55,44,51,50,46,55,49,56,55,51,57,93,44,91,45,49,49,52,46,53,50,54,56,53,54,44,51,50,46,55,53,55,48,57,52,93,44,91,45,49,49,52,46,52,54,50,57,50,57,44,51,50,46,57,48,55,57,52,52,93,44,91,45,49,49,52,46,53,49,54,56,52,50,44,51,51,46,48,50,55,56,56,54,93,44,91,45,49,49,52,46,54,55,48,56,48,51,44,51,51,46,48,51,55,57,56,51,93,44,91,45,49,49,52,46,55,48,55,56,57,54,44,51,51,46,48,57,55,52,51,49,93,44,91,45,49,49,52,46,54,55,55,48,51,50,44,51,51,46,50,55,48,49,54,57,93,44,91,45,49,49,52,46,55,50,48,48,54,53,44,51,51,46,52,48,55,56,57,49,93,44,91,45,49,49,52,46,54,50,55,49,50,53,44,51,51,46,52,51,51,53,53,52,93,44,91,45,49,49,53,46,54,48,57,54,53,53,44,51,51,46,52,50,54,56,55,51,93,44,91,45,49,49,54,46,48,56,53,49,54,53,44,51,51,46,52,50,53,57,51,50,93,44,91,45,49,49,54,46,49,48,51,50,53,50,44,51,51,46,48,55,52,54,55,93,44,91,45,49,49,54,46,49,48,54,49,54,56,44,51,50,46,54,49,56,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,52,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,50,50,57,52,44,52,50,46,48,55,49,52,56,52,93,44,91,45,56,54,46,50,50,54,48,57,53,44,52,49,46,55,54,48,52,48,54,93,44,91,45,56,54,46,48,54,50,53,55,53,44,52,49,46,55,54,48,53,49,51,93,44,91,45,56,53,46,55,57,49,51,51,53,44,52,49,46,55,53,57,48,55,56,93,44,91,45,56,53,46,55,54,48,49,56,54,44,52,49,46,55,57,56,56,49,52,93,44,91,45,56,53,46,55,54,50,57,52,51,44,52,50,46,48,54,57,51,50,55,93,44,91,45,56,54,46,50,50,50,57,52,44,52,50,46,48,55,49,52,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,87,105,108,107,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,53,56,49,53,44,51,49,46,51,52,54,54,57,53,93,44,91,45,57,49,46,51,48,51,53,56,44,51,49,46,51,54,48,57,55,53,93,44,91,45,57,49,46,52,50,52,48,49,50,44,51,49,46,51,49,53,48,52,93,44,91,45,57,49,46,52,55,56,55,57,57,44,51,49,46,50,51,56,57,57,57,93,44,91,45,57,49,46,53,56,57,52,53,49,44,51,49,46,49,57,49,49,52,93,44,91,45,57,49,46,54,51,54,57,52,50,44,51,48,46,57,57,57,52,49,54,93,44,91,45,57,49,46,49,55,54,49,52,44,51,48,46,57,57,57,48,56,93,44,91,45,57,49,46,48,54,48,50,49,57,44,51,48,46,57,57,56,57,50,55,93,44,91,45,57,49,46,48,53,57,52,51,49,44,51,49,46,50,56,49,56,53,56,93,44,91,45,57,49,46,48,57,53,51,57,56,44,51,49,46,51,50,48,57,55,53,93,44,91,45,57,49,46,49,53,56,49,53,44,51,49,46,51,52,54,54,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,56,50,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,50,34,44,34,78,65,77,69,34,58,34,89,97,107,117,116,97,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,52,49,46,48,48,49,57,53,53,44,54,48,46,51,57,49,54,56,56,93,44,91,45,49,52,49,46,50,49,51,52,53,49,44,54,48,46,52,51,53,50,54,56,93,44,91,45,49,52,49,46,55,57,48,54,48,49,44,54,48,46,52,51,53,50,51,56,93,44,91,45,49,52,49,46,55,57,48,54,49,57,44,54,48,46,53,50,49,56,57,57,93,44,91,45,49,52,51,46,49,57,51,53,49,57,44,54,48,46,53,50,49,56,50,56,93,44,91,45,49,52,51,46,56,57,51,51,50,53,44,54,48,46,48,50,52,49,54,54,93,44,91,45,49,52,51,46,56,57,53,50,49,44,53,57,46,57,52,50,54,52,55,93,44,91,45,49,52,51,46,54,52,50,55,48,50,44,53,57,46,57,56,56,56,50,53,93,44,91,45,49,52,50,46,56,50,54,48,52,53,44,54,48,46,48,53,49,49,48,50,93,44,91,45,49,52,50,46,53,55,55,57,56,55,44,54,48,46,48,52,51,53,50,93,44,91,45,49,52,49,46,56,56,57,51,49,50,44,53,57,46,57,53,50,54,57,53,93,44,91,45,49,52,48,46,57,50,55,49,57,50,44,53,57,46,55,48,50,48,55,53,93,44,91,45,49,52,48,46,52,50,53,48,57,55,44,53,57,46,54,53,55,48,51,93,44,91,45,49,51,57,46,57,48,50,56,51,53,44,53,57,46,52,57,55,57,56,51,93,44,91,45,49,51,57,46,53,55,57,53,51,57,44,53,57,46,51,55,55,54,48,54,93,44,91,45,49,51,56,46,56,55,51,57,48,51,44,53,57,46,49,56,48,49,54,54,93,44,91,45,49,51,56,46,54,49,56,49,55,54,44,53,57,46,48,55,52,55,50,56,93,44,91,45,49,51,56,46,50,53,50,53,48,54,44,53,56,46,57,56,57,52,52,93,44,91,45,49,51,56,46,48,50,49,52,54,55,44,53,56,46,56,54,49,52,52,57,93,44,91,45,49,51,56,46,48,50,49,54,49,44,53,56,46,55,57,48,48,50,51,93,44,91,45,49,51,55,46,53,50,53,54,55,53,44,53,56,46,57,48,56,57,55,53,93,44,91,45,49,51,55,46,53,44,53,56,46,57,56,53,51,57,53,93,44,91,45,49,51,55,46,54,48,55,51,53,54,44,53,57,46,50,52,51,56,48,51,93,44,91,45,49,51,56,46,54,50,54,50,48,50,44,53,57,46,55,54,56,53,56,93,44,91,45,49,51,56,46,55,48,55,51,55,56,44,53,57,46,57,48,54,51,50,53,93,44,91,45,49,51,57,46,48,53,51,54,55,49,44,53,57,46,57,57,52,56,51,55,93,44,91,45,49,51,57,46,49,57,56,56,52,54,44,54,48,46,48,56,56,50,57,54,93,44,91,45,49,51,57,46,48,55,52,56,49,57,44,54,48,46,51,53,50,53,48,53,93,44,91,45,49,51,57,46,54,57,50,57,56,49,44,54,48,46,51,51,53,50,50,52,93,44,91,45,49,51,57,46,57,56,49,48,57,52,44,54,48,46,49,56,49,57,54,54,93,44,91,45,49,52,48,46,52,53,56,50,48,54,44,54,48,46,51,48,56,48,56,53,93,44,91,45,49,52,48,46,53,50,48,52,50,53,44,54,48,46,50,49,57,56,49,57,93,44,91,45,49,52,49,46,48,48,49,57,56,44,54,48,46,51,48,54,51,54,57,93,44,91,45,49,52,49,46,48,48,49,57,53,53,44,54,48,46,51,57,49,54,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,83,104,101,114,105,100,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,48,54,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,50,48,50,49,51,44,51,57,46,53,54,56,48,51,52,93,44,91,45,49,48,48,46,55,50,49,50,57,54,44,51,57,46,49,51,51,51,56,49,93,44,91,45,49,48,48,46,49,54,52,50,44,51,57,46,49,51,50,48,55,49,93,44,91,45,49,48,48,46,49,54,49,54,54,55,44,51,57,46,53,54,55,50,55,55,93,44,91,45,49,48,48,46,49,56,48,51,53,49,44,51,57,46,53,54,54,56,57,93,44,91,45,49,48,48,46,55,50,48,50,49,51,44,51,57,46,53,54,56,48,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,76,101,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,55,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,44,91,45,56,57,46,55,51,48,49,53,52,44,51,50,46,57,50,57,57,50,52,93,44,91,45,56,57,46,55,51,48,48,49,54,44,51,50,46,56,56,53,48,55,50,93,44,91,45,56,57,46,55,51,48,51,48,52,44,51,50,46,54,51,52,50,50,56,93,44,91,45,56,57,46,55,51,48,49,53,50,44,51,50,46,53,55,55,50,52,56,93,44,91,45,56,57,46,51,50,50,53,57,56,44,51,50,46,53,55,54,52,51,51,93,44,91,45,56,57,46,51,49,55,53,56,56,44,51,50,46,53,55,54,52,53,56,93,44,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,103,117,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,51,54,51,44,34,98,101,100,115,34,58,54,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,54,54,49,48,51,44,49,56,46,51,48,51,51,50,49,93,44,91,45,54,54,46,49,49,55,55,55,52,44,49,56,46,50,48,57,57,52,57,93,44,91,45,54,54,46,48,57,53,48,57,57,44,49,56,46,49,54,57,48,55,55,93,44,91,45,54,54,46,48,53,50,53,53,53,44,49,56,46,49,49,51,48,54,57,93,44,91,45,54,53,46,57,57,55,54,53,44,49,56,46,50,48,54,57,57,50,93,44,91,45,54,54,46,48,50,49,55,52,55,44,49,56,46,51,48,53,48,51,52,93,44,91,45,54,54,46,48,52,49,53,51,53,44,49,56,46,51,49,50,51,52,52,93,44,91,45,54,54,46,48,54,54,49,48,51,44,49,56,46,51,48,51,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,109,117,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,50,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,57,48,50,48,56,54,44,49,56,46,53,51,53,50,51,56,93,44,91,45,54,54,46,56,57,56,57,44,49,56,46,51,54,54,49,48,56,93,44,91,45,54,54,46,56,57,51,51,51,57,44,49,56,46,51,54,55,48,56,57,93,44,91,45,54,54,46,56,50,52,50,50,51,44,49,56,46,51,52,50,57,57,56,93,44,91,45,54,54,46,56,51,54,54,57,51,44,49,56,46,53,52,48,50,48,54,93,44,91,45,54,54,46,57,48,50,48,56,54,44,49,56,46,53,51,53,50,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,56,48,56,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,55,49,57,57,55,57,44,51,51,46,56,49,49,51,51,93,44,91,45,56,56,46,57,51,49,49,55,54,44,51,51,46,56,49,50,51,55,52,93,44,91,45,56,57,46,48,51,52,52,57,56,44,51,51,46,55,51,57,52,51,93,44,91,45,56,57,46,48,49,56,54,49,51,44,51,51,46,53,54,50,49,49,52,93,44,91,45,56,56,46,54,55,49,53,50,54,44,51,51,46,53,54,53,49,51,53,93,44,91,45,56,56,46,54,55,49,50,53,44,51,51,46,53,48,54,49,54,56,93,44,91,45,56,56,46,52,57,50,53,48,52,44,51,51,46,53,52,51,49,53,52,93,44,91,45,56,56,46,53,49,51,57,49,55,44,51,51,46,54,53,48,50,48,57,93,44,91,45,56,56,46,55,49,57,54,50,54,44,51,51,46,54,56,48,50,53,51,93,44,91,45,56,56,46,55,49,57,57,55,57,44,51,51,46,56,49,49,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,53,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,55,51,55,51,51,44,51,49,46,54,49,49,49,50,52,93,44,91,45,57,49,46,49,53,51,56,54,52,44,51,49,46,54,49,48,48,54,56,93,44,91,45,57,49,46,49,53,56,49,53,44,51,49,46,51,52,54,54,57,53,93,44,91,45,57,49,46,48,57,53,51,57,56,44,51,49,46,51,50,48,57,55,53,93,44,91,45,57,48,46,57,56,51,48,48,50,44,51,49,46,51,52,56,54,55,49,93,44,91,45,57,48,46,54,51,51,51,48,50,44,51,49,46,51,52,57,51,48,54,93,44,91,45,57,48,46,54,51,51,50,51,49,44,51,49,46,54,49,49,52,48,57,93,44,91,45,57,48,46,55,51,55,51,51,44,51,49,46,54,49,49,49,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,78,101,115,104,111,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,55,54,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,44,91,45,56,57,46,51,49,55,53,56,56,44,51,50,46,53,55,54,52,53,56,93,44,91,45,56,56,46,57,49,52,53,49,54,44,51,50,46,53,55,54,57,53,53,93,44,91,45,56,56,46,57,49,52,52,49,51,44,51,50,46,57,50,54,54,93,44,91,45,56,57,46,51,49,57,49,54,51,44,51,50,46,57,51,49,54,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,69,100,109,117,110,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,48,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,55,48,55,55,48,53,44,52,53,46,53,57,51,51,57,49,93,44,91,45,57,57,46,55,48,56,57,56,55,44,52,53,46,50,52,53,56,54,54,93,44,91,45,57,57,46,53,55,51,51,51,44,52,53,46,50,52,53,51,54,52,93,44,91,45,57,56,46,55,50,50,52,56,49,44,52,53,46,50,52,51,55,54,52,93,44,91,45,57,56,46,55,50,53,48,48,50,44,52,53,46,53,57,49,50,53,50,93,44,91,45,57,57,46,55,48,55,55,48,53,44,52,53,46,53,57,51,51,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,82,195,173,111,32,71,114,97,110,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,53,53,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,56,48,53,51,49,51,44,49,56,46,52,55,56,50,53,51,93,44,91,45,54,53,46,56,54,55,52,52,55,44,49,56,46,51,55,56,49,57,56,93,44,91,45,54,53,46,56,51,54,51,56,55,44,49,56,46,50,55,53,50,52,54,93,44,91,45,54,53,46,56,50,52,50,50,44,49,56,46,50,55,51,48,53,52,93,44,91,45,54,53,46,55,54,54,56,51,49,44,49,56,46,50,56,48,48,48,52,93,44,91,45,54,53,46,55,53,56,56,54,49,44,49,56,46,50,57,48,54,48,52,93,44,91,45,54,53,46,55,49,51,56,50,53,44,49,56,46,52,52,52,48,50,52,93,44,91,45,54,53,46,56,48,53,51,49,51,44,49,56,46,52,55,56,50,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,111,110,101,99,117,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,49,52,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,48,53,56,57,57,44,51,49,46,55,53,51,48,51,53,93,44,91,45,56,55,46,49,51,53,48,53,49,44,51,49,46,54,52,50,52,49,55,93,44,91,45,56,55,46,49,54,54,53,56,49,44,51,49,46,53,49,57,53,54,49,93,44,91,45,56,55,46,52,50,55,52,53,53,44,51,49,46,50,54,48,51,56,54,93,44,91,45,56,54,46,55,54,51,57,54,49,44,51,49,46,50,54,49,50,57,51,93,44,91,45,56,54,46,55,48,48,50,56,50,44,51,49,46,49,57,50,50,49,55,93,44,91,45,56,54,46,55,48,49,53,53,52,44,51,49,46,53,50,51,57,52,54,93,44,91,45,56,54,46,56,51,57,51,56,54,44,51,49,46,53,50,53,50,48,52,93,44,91,45,56,54,46,57,48,54,55,54,57,44,51,49,46,54,51,50,54,55,49,93,44,91,45,56,54,46,57,48,53,56,57,57,44,51,49,46,55,53,51,48,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,68,101,97,114,98,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,53,48,49,44,34,98,101,100,115,34,58,49,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,54,53,53,55,52,44,51,57,46,51,48,55,50,51,50,93,44,91,45,56,53,46,49,51,50,53,48,56,44,51,56,46,57,52,56,48,53,53,93,44,91,45,56,52,46,56,55,55,54,50,52,44,51,57,46,48,51,49,50,49,51,93,44,91,45,56,52,46,56,50,48,49,53,55,44,51,57,46,49,48,53,52,56,57,93,44,91,45,56,52,46,56,49,57,52,53,44,51,57,46,51,48,53,49,53,51,93,44,91,45,56,53,46,48,54,53,53,55,52,44,51,57,46,51,48,55,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,51,56,44,34,98,101,100,115,34,58,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,49,55,52,55,52,44,51,56,46,57,57,48,56,55,93,44,91,45,56,54,46,50,55,53,50,56,49,44,51,56,46,55,54,51,55,57,53,93,44,91,45,56,54,46,48,57,49,55,48,53,44,51,56,46,55,56,51,51,57,57,93,44,91,45,56,53,46,56,56,56,51,51,52,44,51,56,46,55,51,52,52,52,51,93,44,91,45,56,53,46,55,57,53,51,53,55,44,51,56,46,56,48,55,53,48,56,93,44,91,45,56,53,46,55,57,56,56,48,52,44,51,57,46,48,54,56,53,51,54,93,44,91,45,56,53,46,56,54,48,53,55,51,44,51,57,46,48,52,48,57,49,93,44,91,45,56,54,46,48,56,48,50,55,50,44,51,57,46,48,53,48,50,55,93,44,91,45,56,54,46,51,49,56,49,51,51,44,51,57,46,48,52,56,56,49,93,44,91,45,56,54,46,51,49,55,52,55,52,44,51,56,46,57,57,48,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,57,49,53,44,34,98,101,100,115,34,58,55,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,52,50,48,55,57,44,51,52,46,52,54,53,50,55,54,93,44,91,45,56,56,46,55,51,54,52,54,53,44,51,52,46,53,48,56,57,49,93,44,91,45,56,56,46,56,50,52,57,54,54,44,51,52,46,51,54,52,55,53,57,93,44,91,45,56,56,46,56,50,52,53,50,51,44,51,52,46,48,55,52,57,52,56,93,44,91,45,56,56,46,55,49,56,57,54,52,44,51,52,46,48,55,52,53,50,49,93,44,91,45,56,56,46,53,52,51,51,53,50,44,51,52,46,48,56,57,48,52,52,93,44,91,45,56,56,46,53,52,50,48,55,57,44,51,52,46,52,54,53,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,87,101,115,116,32,70,101,108,105,99,105,97,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,55,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,57,49,46,54,54,50,53,48,54,44,51,48,46,57,55,48,51,54,50,93,44,91,45,57,49,46,54,54,49,51,55,50,44,51,48,46,56,53,55,48,57,57,93,44,91,45,57,49,46,53,49,53,54,50,54,44,51,48,46,56,54,49,51,55,56,93,44,91,45,57,49,46,53,53,51,48,49,57,44,51,48,46,55,51,48,55,57,56,93,44,91,45,57,49,46,51,56,48,54,50,44,51,48,46,55,53,56,56,48,52,93,44,91,45,57,49,46,51,51,48,56,55,44,51,48,46,54,53,56,54,55,55,93,44,91,45,57,49,46,51,49,48,48,54,49,44,51,48,46,54,53,51,57,54,49,93,44,91,45,57,49,46,50,52,48,52,57,52,44,51,48,46,55,56,55,49,54,51,93,44,91,45,57,49,46,49,55,54,49,52,44,51,48,46,57,57,57,48,56,93,44,91,45,57,49,46,54,51,54,57,52,50,44,51,48,46,57,57,57,52,49,54,93,44,91,45,57,49,46,54,54,50,53,48,54,44,51,48,46,57,55,48,51,54,50,93,93,93,44,91,91,91,45,57,49,46,55,50,51,56,48,52,44,51,49,46,48,52,52,50,53,52,93,44,91,45,57,49,46,55,53,48,49,49,57,44,51,49,46,48,49,56,56,49,52,93,44,91,45,57,49,46,54,53,56,51,50,49,44,51,48,46,57,57,52,51,54,53,93,44,91,45,57,49,46,55,50,51,56,48,52,44,51,49,46,48,52,52,50,53,52,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,114,105,116,116,101,110,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,49,51,44,34,98,101,100,115,34,58,54,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,53,48,50,52,50,57,44,51,53,46,52,52,49,55,50,54,93,44,91,45,57,48,46,53,48,50,57,57,51,44,51,53,46,49,52,52,50,49,52,93,44,91,45,57,48,46,52,48,48,52,51,56,44,51,53,46,49,52,56,50,51,49,93,44,91,45,57,48,46,52,48,56,53,52,44,51,52,46,57,48,52,49,50,49,93,44,91,45,57,48,46,52,48,55,57,57,49,44,51,52,46,56,51,50,57,55,93,44,91,45,57,48,46,51,48,52,53,51,50,44,51,52,46,56,54,48,53,56,56,93,44,91,45,57,48,46,50,52,54,49,49,54,44,51,52,46,57,52,52,51,49,54,93,44,91,45,57,48,46,51,48,57,50,56,57,44,51,52,46,57,57,53,54,57,52,93,44,91,45,57,48,46,50,48,57,51,57,55,44,51,53,46,48,50,54,53,52,54,93,44,91,45,57,48,46,49,55,51,54,48,51,44,51,53,46,49,49,56,48,55,51,93,44,91,45,57,48,46,48,54,54,53,57,49,44,51,53,46,49,51,53,57,57,93,44,91,45,57,48,46,49,53,50,48,57,52,44,51,53,46,50,53,53,57,56,57,93,44,91,45,57,48,46,48,55,52,57,57,50,44,51,53,46,51,56,52,49,53,50,93,44,91,45,57,48,46,49,52,48,50,53,55,44,51,53,46,52,51,54,54,51,54,93,44,91,45,57,48,46,50,56,54,56,57,57,44,51,53,46,52,51,56,53,55,51,93,44,91,45,57,48,46,53,48,50,52,50,57,44,51,53,46,52,52,49,55,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,55,50,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,48,50,52,57,57,44,51,49,46,48,48,48,54,56,53,93,44,91,45,56,53,46,52,56,56,50,57,56,44,51,48,46,57,57,55,48,54,52,93,44,91,45,56,53,46,52,57,55,57,57,50,44,51,48,46,57,57,54,57,51,49,93,44,91,45,56,53,46,53,57,57,57,51,52,44,51,48,46,56,51,48,53,53,50,93,44,91,45,56,53,46,52,51,50,50,55,52,44,51,48,46,55,56,53,52,53,55,93,44,91,45,56,53,46,52,51,52,55,56,50,44,51,48,46,53,54,55,53,54,93,44,91,45,56,53,46,51,56,51,57,52,56,44,51,48,46,53,54,54,56,53,54,93,44,91,45,56,53,46,49,55,49,56,57,49,44,51,48,46,53,54,52,51,51,54,93,44,91,45,56,53,46,49,54,52,55,52,52,44,51,48,46,54,48,56,48,55,57,93,44,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,44,91,45,56,52,46,56,54,52,54,57,51,44,51,48,46,55,49,49,53,52,50,93,44,91,45,56,52,46,57,49,49,49,50,50,44,51,48,46,55,53,49,49,57,49,93,44,91,45,56,53,46,48,48,50,52,57,57,44,51,49,46,48,48,48,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,68,105,99,107,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,44,91,45,49,48,49,46,48,51,56,55,56,56,44,51,51,46,51,57,55,50,49,52,93,44,91,45,49,48,48,46,53,49,55,52,52,57,44,51,51,46,51,57,55,56,54,54,93,44,91,45,49,48,48,46,53,49,56,54,57,49,44,51,51,46,56,51,53,54,53,93,44,91,45,49,48,49,46,48,52,49,49,53,56,44,51,51,46,56,51,51,54,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,77,97,116,104,101,119,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,51,55,53,54,49,44,51,55,46,53,49,52,51,54,93,44,91,45,55,54,46,52,52,52,55,51,54,44,51,55,46,52,49,56,53,51,57,93,44,91,45,55,54,46,51,48,52,53,44,51,55,46,50,55,56,51,54,49,93,44,91,45,55,54,46,49,51,54,51,48,49,44,51,55,46,50,56,50,49,51,55,93,44,91,45,55,54,46,49,52,48,56,51,53,44,51,55,46,53,52,50,50,50,93,44,91,45,55,54,46,52,51,55,53,54,49,44,51,55,46,53,49,52,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,82,101,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,50,49,54,52,51,44,52,56,46,56,48,55,49,48,56,93,44,91,45,49,48,50,46,48,50,49,52,50,56,44,52,56,46,55,50,48,50,56,51,93,44,91,45,49,48,49,46,56,52,50,50,52,52,44,52,56,46,55,50,48,48,54,52,93,44,91,45,49,48,49,46,56,52,50,56,52,49,44,52,56,46,52,53,57,52,51,57,93,44,91,45,49,48,49,46,48,53,57,56,51,51,44,52,56,46,52,53,56,52,52,56,93,44,91,45,49,48,49,46,48,53,57,54,54,51,44,52,56,46,53,52,53,52,49,57,93,44,91,45,49,48,49,46,52,53,49,50,55,53,44,52,56,46,53,52,54,48,55,57,93,44,91,45,49,48,49,46,52,57,54,54,56,52,44,52,56,46,55,50,48,48,55,56,93,44,91,45,49,48,49,46,52,57,54,53,53,50,44,52,56,46,57,57,57,52,50,49,93,44,91,45,49,48,50,46,48,50,49,49,52,52,44,52,56,46,57,57,57,48,49,53,93,44,91,45,49,48,50,46,48,50,49,54,52,51,44,52,56,46,56,48,55,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,51,34,44,34,78,65,77,69,34,58,34,76,97,32,83,97,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,52,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,57,52,49,55,55,44,50,56,46,50,48,52,54,50,55,93,44,91,45,57,57,46,51,56,56,57,52,54,44,50,56,46,48,51,48,52,49,57,93,44,91,45,57,56,46,56,48,51,51,50,53,44,50,56,46,48,53,55,52,56,93,44,91,45,57,56,46,56,48,48,56,52,56,44,50,56,46,54,52,55,51,48,54,93,44,91,45,57,56,46,56,48,48,56,52,49,44,50,56,46,54,52,55,52,56,55,93,44,91,45,57,57,46,51,57,53,55,51,54,44,50,56,46,54,52,48,55,56,52,93,44,91,45,57,57,46,51,57,52,49,55,55,44,50,56,46,50,48,52,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,79,110,111,110,100,97,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,52,50,52,50,44,34,98,101,100,115,34,58,49,56,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,55,57,50,50,52,44,52,51,46,50,50,55,53,49,57,93,44,91,45,55,54,46,52,53,48,55,51,56,44,52,50,46,56,52,53,55,54,93,44,91,45,55,54,46,51,53,54,57,55,52,44,52,50,46,56,52,57,52,53,93,44,91,45,55,54,46,50,55,52,54,55,51,44,52,50,46,55,55,49,50,53,55,93,44,91,45,55,53,46,56,57,54,48,55,57,44,52,50,46,55,57,48,57,54,52,93,44,91,45,55,53,46,57,49,55,49,56,57,44,52,51,46,48,56,53,55,55,57,93,44,91,45,55,53,46,57,57,51,51,57,52,44,52,51,46,49,56,51,51,55,54,93,44,91,45,55,54,46,49,54,57,48,52,55,44,52,51,46,50,52,54,54,54,56,93,44,91,45,55,54,46,52,55,57,50,50,52,44,52,51,46,50,50,55,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,50,54,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,49,54,48,52,50,44,52,49,46,49,54,50,56,48,56,93,44,91,45,57,49,46,55,49,56,49,56,44,52,48,46,57,48,49,48,56,55,93,44,91,45,57,49,46,55,49,56,55,56,55,44,52,48,46,56,49,51,53,52,52,93,44,91,45,57,49,46,52,48,57,52,53,51,44,52,48,46,56,49,50,57,48,53,93,44,91,45,57,49,46,51,55,48,55,49,44,52,49,46,48,55,52,49,49,50,93,44,91,45,57,49,46,52,56,53,55,49,55,44,52,49,46,49,54,50,52,48,53,93,44,91,45,57,49,46,55,49,54,48,52,50,44,52,49,46,49,54,50,56,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,97,114,108,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,51,56,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,44,91,45,57,57,46,54,51,48,52,53,57,44,52,48,46,51,53,49,49,50,93,44,91,45,57,57,46,54,50,56,50,53,52,44,52,48,46,48,48,49,56,52,55,93,44,91,45,57,57,46,54,50,53,51,50,52,44,52,48,46,48,48,49,56,53,57,93,44,91,45,57,57,46,49,55,57,49,51,52,44,52,48,46,48,48,50,48,49,51,93,44,91,45,57,57,46,49,55,57,52,48,51,44,52,48,46,51,53,48,54,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,80,111,119,100,101,114,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,57,56,49,57,52,44,52,53,46,55,56,54,57,56,50,93,44,91,45,49,48,54,46,49,57,49,55,51,52,44,52,53,46,55,56,56,54,93,44,91,45,49,48,54,46,50,51,52,53,48,50,44,52,53,46,55,56,56,53,55,56,93,44,91,45,49,48,54,46,50,51,53,55,49,54,44,52,53,46,51,53,49,55,57,54,93,44,91,45,49,48,54,46,50,55,57,55,48,57,44,52,53,46,49,55,57,55,50,56,93,44,91,45,49,48,54,46,50,54,51,55,49,53,44,52,52,46,57,57,51,56,49,54,93,44,91,45,49,48,54,46,48,50,52,56,49,53,44,52,52,46,57,57,51,52,57,53,93,44,91,45,49,48,53,46,48,55,54,54,48,49,44,52,52,46,57,57,57,57,50,54,93,44,91,45,49,48,53,46,48,51,56,50,52,57,44,52,53,46,48,48,48,49,48,54,93,44,91,45,49,48,53,46,48,51,56,50,48,53,44,52,53,46,51,53,50,48,51,53,93,44,91,45,49,48,52,46,57,56,55,51,49,56,44,52,53,46,51,53,50,48,52,93,44,91,45,49,48,52,46,57,56,49,57,52,44,52,53,46,55,56,54,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,74,117,97,110,97,32,68,195,173,97,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,57,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,53,53,50,55,54,54,44,49,56,46,49,53,50,48,53,55,93,44,91,45,54,54,46,53,52,57,55,48,55,44,49,55,46,57,52,49,57,51,56,93,44,91,45,54,54,46,52,57,57,54,49,51,44,49,55,46,56,52,49,53,53,56,93,44,91,45,54,54,46,52,50,52,53,55,53,44,49,55,46,56,56,49,57,51,56,93,44,91,45,54,54,46,52,50,54,57,56,57,44,49,56,46,48,52,50,54,50,55,93,44,91,45,54,54,46,52,51,48,51,49,52,44,49,56,46,48,56,50,48,53,51,93,44,91,45,54,54,46,53,50,49,56,57,57,44,49,56,46,49,53,49,57,53,52,93,44,91,45,54,54,46,53,52,55,50,50,44,49,56,46,49,53,51,49,51,93,44,91,45,54,54,46,53,53,50,55,54,54,44,49,56,46,49,53,50,48,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,80,101,112,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,54,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,53,48,51,54,49,44,52,52,46,54,56,51,54,51,51,93,44,91,45,57,50,46,49,51,53,50,48,50,44,52,52,46,54,56,52,51,55,52,93,44,91,45,57,50,46,49,51,53,51,44,52,52,46,53,51,57,53,56,93,44,91,45,57,50,46,51,49,54,49,54,57,44,52,52,46,53,52,49,48,48,57,93,44,91,45,57,50,46,50,52,50,48,49,44,52,52,46,52,53,52,50,53,52,93,44,91,45,57,50,46,48,56,51,53,55,50,44,52,52,46,52,48,55,51,51,54,93,44,91,45,57,50,46,48,50,57,49,56,44,52,52,46,53,56,54,50,57,50,93,44,91,45,57,49,46,54,53,48,50,52,56,44,52,52,46,53,57,54,54,52,57,93,44,91,45,57,49,46,54,53,48,51,54,49,44,52,52,46,54,56,51,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,112,97,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,105,122,111,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,90,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,53,50,50,44,34,98,101,100,115,34,58,49,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,48,48,48,54,56,56,44,51,54,46,57,57,56,51,52,57,93,44,91,45,49,49,48,46,48,48,48,54,55,54,44,51,54,46,52,52,53,50,56,52,93,44,91,45,49,49,48,46,48,48,48,54,55,52,44,51,53,46,54,54,51,48,56,55,93,44,91,45,49,48,57,46,56,50,54,57,54,52,44,51,53,46,54,54,50,56,56,55,93,44,91,45,49,48,57,46,56,52,51,55,54,52,44,51,53,46,53,49,55,56,55,53,93,44,91,45,49,48,57,46,56,52,52,54,50,52,44,51,52,46,56,50,50,53,54,50,93,44,91,45,49,48,57,46,56,54,52,57,56,57,44,51,52,46,53,54,54,56,57,51,93,44,91,45,49,48,57,46,56,52,56,50,52,54,44,51,52,46,52,55,51,52,48,49,93,44,91,45,49,48,57,46,56,53,57,50,55,52,44,51,51,46,55,55,55,54,56,51,93,44,91,45,49,48,57,46,56,57,49,54,55,54,44,51,51,46,53,54,55,56,55,52,93,44,91,45,49,48,57,46,55,57,57,55,56,50,44,51,51,46,52,56,56,51,49,52,93,44,91,45,49,48,57,46,52,57,53,52,52,44,51,51,46,54,53,50,54,57,55,93,44,91,45,49,48,57,46,51,52,56,53,56,49,44,51,51,46,55,55,56,49,50,51,93,44,91,45,49,48,57,46,48,52,54,55,49,55,44,51,51,46,55,55,55,52,48,55,93,44,91,45,49,48,57,46,48,52,54,49,50,50,44,51,52,46,53,55,57,50,57,49,93,44,91,45,49,48,57,46,48,52,53,57,57,54,44,51,52,46,57,53,57,56,49,57,93,44,91,45,49,48,57,46,48,52,54,48,54,55,44,51,54,46,48,48,50,55,48,49,93,44,91,45,49,48,57,46,48,52,53,49,55,50,44,51,54,46,57,57,56,57,55,55,93,44,91,45,49,49,48,46,48,48,48,54,56,56,44,51,54,46,57,57,56,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,53,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,52,55,52,55,55,44,52,48,46,48,51,55,51,48,49,93,44,91,45,57,50,46,56,53,55,57,50,44,51,57,46,54,57,57,57,56,53,93,44,91,45,57,50,46,54,56,57,51,51,49,44,51,57,46,54,57,56,48,57,52,93,44,91,45,57,50,46,54,57,50,49,52,57,44,51,57,46,54,49,48,50,54,53,93,44,91,45,57,50,46,51,48,48,56,55,49,44,51,57,46,54,48,53,51,52,56,93,44,91,45,57,50,46,50,57,57,51,49,54,44,51,57,46,54,48,53,51,52,52,93,44,91,45,57,50,46,50,56,55,56,56,50,44,51,57,46,57,53,50,52,57,93,44,91,45,57,50,46,51,52,53,48,54,52,44,52,48,46,48,51,55,50,49,93,44,91,45,57,50,46,56,52,55,52,55,55,44,52,48,46,48,51,55,51,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,57,34,44,34,78,65,77,69,34,58,34,76,97,109,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,50,54,50,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,49,53,49,53,44,51,52,46,51,49,50,56,57,49,93,44,91,45,49,48,50,46,54,49,53,52,52,55,44,51,51,46,56,50,53,49,50,49,93,44,91,45,49,48,50,46,48,56,53,55,51,51,44,51,51,46,56,50,52,54,55,53,93,44,91,45,49,48,50,46,48,57,48,52,49,53,44,51,52,46,51,49,51,49,51,50,93,44,91,45,49,48,50,46,53,50,53,54,51,49,44,51,52,46,51,49,51,48,51,52,93,44,91,45,49,48,50,46,54,49,53,49,53,44,51,52,46,51,49,50,56,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,75,105,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,54,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,53,57,53,56,44,51,55,46,55,51,52,56,56,56,93,44,91,45,57,57,46,53,53,54,49,49,57,44,51,55,46,52,54,55,55,50,50,93,44,91,45,57,57,46,53,52,51,49,56,57,44,51,55,46,51,56,49,49,50,52,93,44,91,45,57,57,46,48,49,49,52,57,57,44,51,55,46,51,56,52,50,54,51,93,44,91,45,57,57,46,48,49,50,53,57,56,44,51,55,46,52,55,48,52,50,49,93,44,91,45,57,57,46,48,49,51,53,53,44,51,55,46,55,51,50,57,55,93,44,91,45,57,57,46,53,53,57,53,56,44,51,55,46,55,51,52,56,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,65,117,115,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,53,54,53,44,34,98,101,100,115,34,58,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,54,57,56,52,52,44,50,57,46,57,54,49,53,49,54,93,44,91,45,57,54,46,52,49,51,50,56,51,44,50,57,46,56,50,52,57,56,53,93,44,91,45,57,54,46,51,51,48,56,54,57,44,50,57,46,56,49,52,52,52,57,93,44,91,45,57,54,46,50,53,54,54,57,54,44,50,57,46,54,54,55,48,54,49,93,44,91,45,57,54,46,49,55,53,52,50,50,44,50,57,46,54,51,51,56,48,54,93,44,91,45,57,54,46,48,56,56,57,49,50,44,50,57,46,54,48,49,54,53,56,93,44,91,45,57,54,46,48,51,50,55,49,49,44,50,57,46,55,50,55,57,52,52,93,44,91,45,57,54,46,49,48,50,52,57,54,44,50,57,46,56,48,57,54,54,53,93,44,91,45,57,54,46,49,51,49,54,53,44,50,57,46,57,51,55,53,48,52,93,44,91,45,57,54,46,48,56,52,53,52,49,44,51,48,46,48,48,53,49,51,55,93,44,91,45,57,54,46,49,52,54,48,53,50,44,51,48,46,48,55,48,50,50,52,93,44,91,45,57,54,46,50,57,50,56,52,57,44,51,48,46,48,57,54,49,53,93,44,91,45,57,54,46,54,50,49,57,56,44,51,48,46,48,52,52,50,56,51,93,44,91,45,57,54,46,53,54,57,56,52,52,44,50,57,46,57,54,49,53,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,68,97,118,105,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,48,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,49,56,56,44,52,48,46,48,51,52,56,56,53,93,44,91,45,57,52,46,50,48,53,56,52,52,44,51,57,46,55,56,56,57,53,52,93,44,91,45,57,51,46,55,53,56,57,57,50,44,51,57,46,55,56,52,54,55,52,93,44,91,45,57,51,46,55,54,49,57,55,51,44,51,57,46,57,53,57,53,53,50,93,44,91,45,57,51,46,55,54,52,48,50,49,44,52,48,46,49,51,50,57,48,57,93,44,91,45,57,52,46,50,49,54,54,57,54,44,52,48,46,49,51,54,54,50,54,93,44,91,45,57,52,46,50,49,56,56,44,52,48,46,48,51,52,56,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,51,34,44,34,78,65,77,69,34,58,34,83,101,109,105,110,111,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,51,55,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,51,48,56,53,53,44,51,49,46,48,54,57,49,57,93,44,91,45,56,52,46,57,50,50,52,50,51,44,51,49,46,48,55,50,53,57,93,44,91,45,56,53,46,48,50,56,53,54,52,44,51,49,46,48,55,53,53,50,51,93,44,91,45,56,53,46,48,48,50,52,57,57,44,51,49,46,48,48,48,54,56,53,93,44,91,45,56,52,46,57,49,49,49,50,50,44,51,48,46,55,53,49,49,57,49,93,44,91,45,56,52,46,56,54,52,54,57,51,44,51,48,46,55,49,49,53,52,50,93,44,91,45,56,52,46,56,54,51,52,54,53,44,51,48,46,55,49,49,52,57,52,93,44,91,45,56,52,46,55,53,53,57,49,55,44,51,48,46,56,56,53,50,55,93,44,91,45,56,52,46,55,51,48,56,53,53,44,51,49,46,48,54,57,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,97,110,105,115,116,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,52,52,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,44,91,45,56,54,46,56,52,54,57,50,56,44,52,52,46,53,49,57,52,50,57,93,44,91,45,56,54,46,57,50,51,52,48,51,44,52,52,46,51,50,56,56,50,53,93,44,91,45,56,54,46,57,56,55,57,57,56,44,52,52,46,49,56,50,54,52,57,93,44,91,45,56,54,46,48,52,51,53,48,55,44,52,52,46,49,54,55,48,56,56,93,44,91,45,56,53,46,56,50,49,49,56,54,44,52,52,46,49,54,52,49,57,55,93,44,91,45,56,53,46,56,49,55,56,48,50,44,52,52,46,53,49,50,57,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,76,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,54,57,44,34,98,101,100,115,34,58,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,53,51,49,54,50,44,52,51,46,53,48,48,49,53,53,93,44,91,45,57,54,46,52,53,51,50,54,44,52,51,46,53,48,48,51,57,93,44,91,45,57,54,46,53,57,57,49,57,49,44,52,51,46,53,48,48,52,53,54,93,44,91,45,57,54,46,53,50,49,55,50,44,52,51,46,51,56,54,55,53,53,93,44,91,45,57,54,46,53,53,52,57,54,57,44,52,51,46,50,53,57,57,53,49,93,44,91,45,57,53,46,56,54,49,57,49,52,44,52,51,46,50,53,55,53,54,54,93,44,91,45,57,53,46,56,54,48,57,52,55,44,52,51,46,53,48,48,48,51,54,93,44,91,45,57,54,46,48,53,51,49,54,50,44,52,51,46,53,48,48,49,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,51,34,44,34,78,65,77,69,34,58,34,72,117,116,99,104,105,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,55,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,44,91,45,49,48,49,46,54,50,50,56,51,49,44,51,53,46,54,50,52,48,53,55,93,44,91,45,49,48,49,46,48,56,54,48,54,56,44,51,53,46,54,50,53,50,54,55,93,44,91,45,49,48,49,46,48,56,53,55,51,53,44,51,54,46,48,53,53,50,55,54,93,44,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,49,50,49,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,54,54,52,53,49,44,51,54,46,57,57,55,57,50,50,93,44,91,45,49,48,49,46,53,53,53,50,53,57,44,51,54,46,57,57,53,51,50,52,93,44,91,45,49,48,50,46,48,50,56,50,48,52,44,51,54,46,57,57,51,49,48,50,93,44,91,45,49,48,50,46,48,51,50,51,51,56,44,51,54,46,53,48,48,53,55,53,93,44,91,45,49,48,49,46,54,50,51,57,49,53,44,51,54,46,52,57,57,53,50,56,93,44,91,45,49,48,49,46,48,56,53,49,53,54,44,51,54,46,52,57,57,50,52,52,93,44,91,45,49,48,48,46,57,53,52,49,53,51,44,51,54,46,52,57,57,57,49,54,93,44,91,45,49,48,48,46,57,52,53,52,54,51,44,51,54,46,57,57,56,52,49,54,93,44,91,45,49,48,49,46,48,54,54,52,53,49,44,51,54,46,57,57,55,57,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,87,111,111,100,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,54,55,44,34,98,101,100,115,34,58,49,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,57,53,49,56,54,44,51,54,46,56,49,57,53,54,54,93,44,91,45,57,57,46,50,57,53,49,57,51,44,51,54,46,53,57,53,48,51,49,93,44,91,45,57,57,46,54,48,53,54,51,52,44,51,54,46,53,57,50,55,53,52,93,44,91,45,57,57,46,53,57,54,48,55,57,44,51,54,46,49,54,52,48,54,49,93,44,91,45,57,57,46,51,56,50,48,55,52,44,51,54,46,49,54,52,51,48,49,93,44,91,45,57,56,46,57,53,53,56,52,57,44,51,54,46,49,54,49,53,55,55,93,44,91,45,57,56,46,57,54,48,51,51,52,44,51,54,46,53,48,54,57,49,52,93,44,91,45,57,56,46,57,53,57,57,55,51,44,51,54,46,53,57,56,57,57,49,93,44,91,45,57,57,46,49,51,57,56,53,53,44,51,54,46,55,56,51,48,52,93,44,91,45,57,57,46,50,57,53,49,56,54,44,51,54,46,56,49,57,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,54,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,50,55,53,56,55,44,52,49,46,49,53,56,53,48,56,93,44,91,45,57,52,46,57,50,56,52,53,57,44,52,48,46,57,48,48,54,53,51,93,44,91,45,57,52,46,52,55,48,55,55,57,44,52,48,46,56,57,57,53,48,50,93,44,91,45,57,52,46,52,55,48,54,48,51,44,52,49,46,49,53,55,53,54,54,93,44,91,45,57,52,46,55,48,48,53,56,57,44,52,49,46,49,53,56,48,56,53,93,44,91,45,57,52,46,57,50,55,53,56,55,44,52,49,46,49,53,56,53,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,83,117,116,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,56,55,50,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,57,48,56,50,54,57,44,51,57,46,51,48,51,56,55,56,93,44,91,45,49,50,49,46,57,52,53,53,49,52,44,51,57,46,49,55,57,56,52,51,93,44,91,45,49,50,49,46,56,49,57,49,52,50,44,51,56,46,57,56,56,53,53,49,93,44,91,45,49,50,49,46,56,51,53,52,56,56,44,51,56,46,57,50,52,52,56,49,93,44,91,45,49,50,49,46,55,50,51,51,52,54,44,51,56,46,56,48,51,55,53,57,93,44,91,45,49,50,49,46,54,48,50,56,57,52,44,51,56,46,55,51,53,56,51,56,93,44,91,45,49,50,49,46,52,56,52,51,57,54,44,51,56,46,55,51,52,53,57,56,93,44,91,45,49,50,49,46,52,54,57,51,53,54,44,51,56,46,57,50,53,57,57,50,93,44,91,45,49,50,49,46,52,49,52,55,55,57,44,51,56,46,57,57,54,52,53,50,93,44,91,45,49,50,49,46,53,52,51,51,48,54,44,51,56,46,57,55,50,52,48,52,93,44,91,45,49,50,49,46,54,50,57,48,56,57,44,51,57,46,50,48,52,54,55,56,93,44,91,45,49,50,49,46,54,50,51,55,54,44,51,57,46,50,57,53,54,50,49,93,44,91,45,49,50,49,46,57,48,56,50,54,57,44,51,57,46,51,48,51,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,80,111,116,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,51,55,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,48,54,54,48,52,44,52,49,46,57,57,57,53,57,53,93,44,91,45,55,56,46,50,48,51,52,50,50,44,52,49,46,54,49,56,49,53,55,93,44,91,45,55,56,46,48,53,48,52,52,50,44,52,49,46,52,55,53,52,54,50,93,44,91,45,55,55,46,57,56,57,49,57,52,44,52,49,46,52,55,52,56,50,50,93,44,91,45,55,55,46,53,57,56,49,50,57,44,52,49,46,52,55,56,53,55,54,93,44,91,45,55,55,46,53,57,57,50,55,56,44,52,49,46,53,52,50,50,55,49,93,44,91,45,55,55,46,54,49,48,48,50,55,44,52,49,46,57,57,57,51,54,56,93,44,91,45,55,55,46,55,52,57,57,51,49,44,52,49,46,57,57,56,55,56,50,93,44,91,45,55,56,46,50,48,54,54,48,52,44,52,49,46,57,57,57,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,54,53,34,44,34,78,65,77,69,34,58,34,86,97,108,32,86,101,114,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,48,50,55,44,34,98,101,100,115,34,58,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,55,54,48,57,50,52,44,50,57,46,55,56,49,56,48,50,93,44,91,45,49,48,49,46,54,52,54,57,51,54,44,50,57,46,55,53,52,53,54,53,93,44,91,45,49,48,49,46,52,53,53,55,57,57,44,50,57,46,55,56,56,48,52,57,93,44,91,45,49,48,49,46,51,48,48,48,50,55,44,50,57,46,54,52,48,55,48,50,93,44,91,45,49,48,49,46,50,54,49,49,55,54,44,50,57,46,53,51,54,55,55,54,93,44,91,45,49,48,49,46,48,54,48,49,53,49,44,50,57,46,52,53,56,54,54,49,93,44,91,45,49,48,49,46,48,48,51,57,53,51,44,50,57,46,51,54,52,55,48,51,93,44,91,45,49,48,48,46,55,57,52,54,50,55,44,50,57,46,50,52,49,54,49,50,93,44,91,45,49,48,48,46,55,52,53,51,48,56,44,50,57,46,50,54,52,56,57,56,93,44,91,45,49,48,48,46,54,57,57,49,52,49,44,50,57,46,52,49,57,55,52,55,93,44,91,45,49,48,48,46,54,57,57,57,51,50,44,50,57,46,54,50,51,56,57,55,93,44,91,45,49,48,48,46,55,48,48,51,57,51,44,51,48,46,50,56,56,50,55,54,93,44,91,45,49,48,48,46,57,54,48,54,52,51,44,51,48,46,50,56,55,55,55,54,93,44,91,45,49,48,49,46,55,53,56,52,44,51,48,46,50,56,56,48,52,52,93,44,91,45,49,48,49,46,55,54,48,57,50,52,44,50,57,46,55,56,49,56,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,72,97,114,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,52,57,56,48,52,44,51,55,46,51,56,52,48,53,54,93,44,91,45,57,56,46,51,52,55,49,52,57,44,51,54,46,57,57,56,49,53,53,93,44,91,45,57,56,46,49,49,49,57,56,53,44,51,54,46,57,57,56,48,57,51,93,44,91,45,57,55,46,56,48,50,51,49,51,44,51,54,46,57,57,56,55,49,56,93,44,91,45,57,55,46,56,48,55,48,53,55,44,51,55,46,51,56,54,50,57,51,93,44,91,45,57,56,46,51,52,57,56,48,52,44,51,55,46,51,56,52,48,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,77,111,110,111,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,57,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,53,54,53,54,44,52,50,46,50,49,53,48,48,50,93,44,91,45,57,54,46,50,55,51,49,50,44,52,50,46,48,52,55,49,53,56,93,44,91,45,57,54,46,49,50,57,49,56,54,44,52,49,46,57,54,53,49,51,54,93,44,91,45,57,54,46,49,51,57,48,48,56,44,52,49,46,56,54,54,50,55,55,93,44,91,45,57,53,46,54,55,50,55,55,49,44,52,49,46,56,54,51,49,52,55,93,44,91,45,57,53,46,54,55,48,56,50,50,44,52,50,46,50,49,49,52,48,56,93,44,91,45,57,54,46,51,53,54,53,54,44,52,50,46,50,49,53,48,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,74,117,97,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,52,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,48,52,55,54,52,57,44,51,57,46,53,52,50,55,52,50,93,44,91,45,49,49,51,46,56,49,53,55,52,51,44,51,57,46,53,53,50,54,52,52,93,44,91,45,49,49,51,46,49,48,55,52,55,53,44,51,57,46,53,53,50,53,49,51,93,44,91,45,49,49,50,46,50,49,50,48,52,53,44,51,57,46,53,53,51,57,56,55,93,44,91,45,49,49,50,46,49,56,56,57,50,50,44,51,57,46,51,50,57,51,57,50,93,44,91,45,49,49,50,46,48,49,54,48,48,51,44,51,57,46,51,49,52,53,54,49,93,44,91,45,49,49,49,46,57,50,50,51,56,57,44,51,57,46,51,56,49,53,57,49,93,44,91,45,49,49,49,46,55,52,55,48,52,52,44,51,57,46,51,56,50,55,53,93,44,91,45,49,49,49,46,55,49,51,50,50,52,44,51,57,46,52,54,48,50,57,52,93,44,91,45,49,49,49,46,55,49,55,52,56,50,44,51,57,46,54,57,52,53,54,93,44,91,45,49,49,49,46,53,56,52,55,53,52,44,51,57,46,55,52,48,49,52,49,93,44,91,45,49,49,49,46,54,52,49,57,52,52,44,51,57,46,56,49,50,56,54,57,93,44,91,45,49,49,49,46,56,50,55,49,48,54,44,51,57,46,57,52,55,48,48,50,93,44,91,45,49,49,50,46,48,51,49,56,51,53,44,51,57,46,55,56,49,49,55,50,93,44,91,45,49,49,50,46,48,54,50,53,53,50,44,51,57,46,57,48,52,54,56,93,44,91,45,49,49,50,46,49,55,57,56,44,52,48,46,48,49,49,54,53,54,93,44,91,45,49,49,50,46,51,52,49,57,56,56,44,51,57,46,57,48,52,52,53,56,93,44,91,45,49,49,51,46,50,52,56,52,57,56,44,51,57,46,57,48,52,55,49,52,93,44,91,45,49,49,52,46,48,52,55,48,50,54,44,51,57,46,57,48,54,48,57,55,93,44,91,45,49,49,52,46,48,52,55,54,52,57,44,51,57,46,53,52,50,55,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,83,116,101,112,104,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,56,51,44,34,98,101,100,115,34,58,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,49,52,50,49,52,56,44,51,52,46,53,48,54,57,57,52,93,44,91,45,57,56,46,49,51,57,50,50,55,44,51,52,46,50,56,57,56,50,52,93,44,91,45,57,55,46,53,54,50,53,49,50,44,51,52,46,50,56,57,49,56,51,93,44,91,45,57,55,46,53,54,50,51,50,51,44,51,52,46,53,48,55,48,51,54,93,44,91,45,57,55,46,53,54,51,48,48,52,44,51,52,46,54,56,49,49,56,53,93,44,91,45,57,55,46,54,54,56,53,49,50,44,51,52,46,54,56,49,51,52,93,44,91,45,57,56,46,48,56,57,48,57,55,44,51,52,46,54,56,49,49,54,51,93,44,91,45,57,56,46,49,52,50,49,52,56,44,51,52,46,53,48,54,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,101,110,97,110,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,51,52,56,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,56,56,57,56,51,50,44,52,50,46,55,50,51,56,52,52,93,44,91,45,55,53,46,56,54,52,48,50,44,52,50,46,52,49,53,55,48,50,93,44,91,45,55,53,46,56,52,51,55,57,50,44,52,50,46,50,53,57,55,48,55,93,44,91,45,55,53,46,54,51,56,50,57,57,44,52,50,46,50,52,56,54,56,54,93,44,91,45,55,53,46,54,51,55,49,49,44,52,50,46,49,57,53,54,50,56,93,44,91,45,55,53,46,52,49,56,52,50,49,44,52,50,46,49,57,53,48,51,50,93,44,91,45,55,53,46,52,49,53,51,49,57,44,52,50,46,51,49,52,49,53,49,93,44,91,45,55,53,46,52,48,52,52,54,52,44,52,50,46,52,55,57,49,49,55,93,44,91,45,55,53,46,51,51,50,57,52,57,44,52,50,46,53,54,54,51,49,50,93,44,91,45,55,53,46,50,57,53,56,55,55,44,52,50,46,55,52,52,49,48,54,93,44,91,45,55,53,46,56,56,57,56,51,50,44,52,50,46,55,50,51,56,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,80,101,111,114,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,52,54,51,44,34,98,101,100,115,34,58,49,50,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,56,53,52,55,57,44,52,48,46,57,55,52,52,57,53,93,44,91,45,56,57,46,57,56,54,48,54,52,44,52,48,46,55,49,50,51,54,49,93,44,91,45,56,57,46,56,55,51,54,56,44,52,48,46,54,50,52,57,55,53,93,44,91,45,56,57,46,56,55,50,52,54,51,44,52,48,46,53,49,51,49,50,55,93,44,91,45,56,57,46,54,53,56,48,48,51,44,52,48,46,53,54,55,52,51,56,93,44,91,45,56,57,46,53,53,52,57,57,52,44,52,48,46,55,52,55,54,51,55,93,44,91,45,56,57,46,52,55,50,51,51,44,52,48,46,57,50,49,50,48,54,93,44,91,45,56,57,46,54,51,56,55,50,55,44,52,48,46,57,55,51,55,48,55,93,44,91,45,56,57,46,57,56,53,52,55,57,44,52,48,46,57,55,52,52,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,117,109,98,111,108,100,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,53,54,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,44,91,45,57,52,46,52,52,51,48,56,51,44,52,50,46,54,52,53,49,54,52,93,44,91,45,57,51,46,57,55,49,55,49,52,44,52,50,46,54,52,52,55,48,55,93,44,91,45,57,51,46,57,55,49,50,51,56,44,52,50,46,57,48,55,55,54,50,93,44,91,45,57,52,46,52,52,50,57,53,52,44,52,50,46,57,48,56,48,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,50,49,57,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,52,52,55,56,53,44,52,49,46,54,56,51,54,51,51,93,44,91,45,57,54,46,52,52,51,56,57,56,44,52,49,46,53,50,51,57,51,51,93,44,91,45,57,54,46,51,50,57,48,49,50,44,52,49,46,51,57,51,49,51,54,93,44,91,45,57,53,46,57,51,55,55,57,49,44,52,49,46,51,57,48,55,53,50,93,44,91,45,57,53,46,57,57,54,49,57,52,44,52,49,46,53,48,54,57,54,93,44,91,45,57,54,46,48,53,55,51,51,49,44,52,49,46,53,49,49,48,53,49,93,44,91,45,57,54,46,49,50,50,54,48,52,44,52,49,46,54,56,51,48,52,93,44,91,45,57,54,46,52,52,52,55,56,53,44,52,49,46,54,56,51,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,54,50,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,57,51,56,49,52,44,52,51,46,49,54,52,52,54,52,93,44,91,45,57,48,46,52,50,57,56,50,53,44,52,51,46,50,48,48,57,52,93,44,91,45,57,48,46,52,50,54,57,48,50,44,52,50,46,56,49,50,56,54,50,93,44,91,45,56,57,46,56,51,56,52,49,44,52,50,46,56,49,51,55,57,57,93,44,91,45,56,57,46,56,51,56,49,54,55,44,52,50,46,56,53,55,51,57,55,93,44,91,45,56,57,46,56,51,56,49,51,53,44,52,51,46,50,48,54,48,53,55,93,44,91,45,57,48,46,49,57,51,56,49,52,44,52,51,46,49,54,52,52,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,111,114,114,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,57,52,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,53,51,52,54,50,44,52,54,46,51,52,56,54,55,56,93,44,91,45,57,52,46,54,52,51,57,57,44,52,53,46,55,55,51,57,53,93,44,91,45,57,52,46,50,55,49,55,55,54,44,52,53,46,55,55,53,50,48,56,93,44,91,45,57,52,46,51,53,51,49,49,50,44,52,53,46,56,50,49,57,54,55,93,44,91,45,57,51,46,55,54,51,57,52,56,44,52,53,46,56,50,50,49,52,51,93,44,91,45,57,51,46,56,49,48,51,50,49,44,52,53,46,57,56,51,48,56,93,44,91,45,57,51,46,56,49,48,51,54,50,44,52,54,46,49,53,54,53,56,53,93,44,91,45,57,52,46,51,55,52,53,57,50,44,52,54,46,49,53,55,48,57,51,93,44,91,45,57,52,46,51,52,49,54,55,57,44,52,54,46,50,55,55,55,48,53,93,44,91,45,57,52,46,54,53,51,52,54,50,44,52,54,46,51,52,56,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,104,101,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,53,53,54,49,44,34,98,101,100,115,34,58,55,50,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,49,52,56,54,56,50,44,52,48,46,54,55,52,50,56,49,93,44,91,45,56,48,46,49,56,48,52,50,52,44,52,48,46,54,48,55,55,54,57,93,44,91,45,56,48,46,51,54,48,56,55,51,44,52,48,46,52,55,55,53,51,57,93,44,91,45,56,48,46,49,56,51,52,55,50,44,52,48,46,51,51,50,55,56,50,93,44,91,45,55,57,46,57,49,52,49,51,57,44,52,48,46,50,53,50,53,49,56,93,44,91,45,55,57,46,56,55,48,53,56,53,44,52,48,46,49,57,55,52,49,53,93,44,91,45,55,57,46,55,56,49,55,54,49,44,52,48,46,50,50,55,55,49,49,93,44,91,45,55,57,46,55,55,49,48,56,50,44,52,48,46,51,55,53,52,49,57,93,44,91,45,55,57,46,55,48,52,55,51,57,44,52,48,46,52,50,55,50,51,49,93,44,91,45,55,57,46,55,54,53,52,49,53,44,52,48,46,53,52,57,56,53,52,93,44,91,45,55,57,46,54,57,50,53,56,55,44,52,48,46,54,54,57,55,51,50,93,44,91,45,55,57,46,54,57,50,57,51,44,52,48,46,54,54,57,55,52,52,93,44,91,45,56,48,46,49,52,56,54,56,50,44,52,48,46,54,55,52,50,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,53,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,50,56,55,56,56,50,44,51,57,46,57,53,50,52,57,93,44,91,45,57,50,46,50,57,57,51,49,54,44,51,57,46,54,48,53,51,52,52,93,44,91,45,57,50,46,49,56,52,57,56,54,44,51,57,46,54,54,50,57,51,50,93,44,91,45,57,49,46,56,52,54,55,52,51,44,51,57,46,54,53,56,53,49,51,93,44,91,45,57,49,46,56,52,48,51,53,51,44,51,57,46,57,52,56,50,51,53,93,44,91,45,57,49,46,57,53,50,55,50,54,44,51,57,46,57,52,57,52,50,54,93,44,91,45,57,50,46,50,56,55,56,56,50,44,51,57,46,57,53,50,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,56,56,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,49,54,49,53,53,44,52,48,46,48,49,48,49,56,56,93,44,91,45,56,51,46,53,56,56,48,52,49,44,51,57,46,55,54,56,55,55,56,93,44,91,45,56,51,46,54,52,55,49,54,57,44,51,57,46,55,55,51,48,50,57,93,44,91,45,56,51,46,54,53,51,51,51,44,51,57,46,55,49,54,56,55,54,93,44,91,45,56,51,46,50,53,50,52,51,53,44,51,57,46,54,57,53,52,51,56,93,44,91,45,56,51,46,50,52,51,55,48,50,44,51,57,46,56,49,50,53,48,51,93,44,91,45,56,51,46,50,53,51,56,51,44,52,48,46,48,52,57,50,49,56,93,44,91,45,56,51,46,50,48,54,50,55,51,44,52,48,46,49,48,55,55,51,51,93,44,91,45,56,51,46,53,48,51,55,49,52,44,52,48,46,49,49,49,52,54,56,93,44,91,45,56,51,46,53,49,54,49,53,53,44,52,48,46,48,49,48,49,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,50,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,57,49,57,57,44,52,48,46,48,48,49,57,54,54,93,44,91,45,57,55,46,51,54,56,54,55,44,51,57,46,54,53,52,48,52,51,93,44,91,45,57,55,46,51,54,56,53,55,52,44,51,57,46,53,54,55,48,49,56,93,44,91,45,57,54,46,57,53,56,55,49,57,44,51,57,46,53,54,54,52,48,49,93,44,91,45,57,54,46,56,48,54,53,52,52,44,51,57,46,53,54,54,52,50,51,93,44,91,45,57,54,46,56,48,53,55,54,56,44,52,48,46,48,48,49,52,57,53,93,44,91,45,57,54,46,57,49,54,52,48,55,44,52,48,46,48,48,49,53,49,49,93,44,91,45,57,55,46,51,54,57,49,57,57,44,52,48,46,48,48,49,57,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,104,97,109,112,97,105,103,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,57,52,52,56,44,34,98,101,100,115,34,58,54,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,54,48,52,49,56,44,52,48,46,50,56,49,57,51,53,93,44,91,45,56,56,46,52,54,50,50,48,55,44,51,57,46,56,55,57,48,57,50,93,44,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,44,91,45,56,55,46,57,51,50,51,56,55,44,52,48,46,51,57,57,52,93,44,91,45,56,56,46,52,53,57,57,53,55,44,52,48,46,51,57,56,56,53,93,44,91,45,56,56,46,52,54,48,52,49,56,44,52,48,46,50,56,49,57,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,50,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,56,57,57,55,49,49,44,52,52,46,56,52,48,54,48,57,93,44,91,45,49,49,55,46,48,52,52,50,49,55,44,52,52,46,55,52,53,49,52,93,44,91,45,49,49,55,46,49,52,52,49,54,49,44,52,52,46,53,52,53,54,52,55,93,44,91,45,49,49,55,46,50,50,52,49,48,52,44,52,52,46,52,56,51,55,51,52,93,44,91,45,49,49,55,46,50,50,48,48,52,56,44,52,52,46,51,48,49,52,48,52,93,44,91,45,49,49,55,46,49,49,57,56,54,49,44,52,52,46,50,55,56,50,55,50,93,44,91,45,49,49,54,46,56,57,55,55,57,44,52,52,46,49,53,50,53,57,93,44,91,45,49,49,54,46,52,53,50,48,54,56,44,52,52,46,49,53,49,52,54,53,93,44,91,45,49,49,54,46,51,53,56,52,57,50,44,52,52,46,49,53,49,49,53,56,93,44,91,45,49,49,54,46,50,57,57,56,55,54,44,52,52,46,52,52,52,53,55,54,93,44,91,45,49,49,54,46,53,50,56,56,57,56,44,52,52,46,52,57,49,53,52,53,93,44,91,45,49,49,54,46,53,50,57,49,54,55,44,52,52,46,54,49,53,49,53,52,93,44,91,45,49,49,54,46,54,50,52,49,53,51,44,52,52,46,54,54,51,50,54,57,93,44,91,45,49,49,54,46,54,50,53,48,51,52,44,52,52,46,56,51,56,57,53,50,93,44,91,45,49,49,54,46,56,57,57,55,49,49,44,52,52,46,56,52,48,54,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,69,100,103,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,44,91,45,56,55,46,57,54,54,51,52,55,44,51,57,46,54,56,53,57,55,51,93,44,91,45,56,55,46,57,54,48,49,55,57,44,51,57,46,52,56,49,51,48,57,93,44,91,45,56,55,46,53,51,49,54,52,44,51,57,46,52,55,55,49,48,53,93,44,91,45,56,55,46,53,51,50,49,57,52,44,51,57,46,54,48,55,51,48,54,93,44,91,45,56,55,46,53,51,51,50,50,56,44,51,57,46,56,56,51,93,44,91,45,56,55,46,57,51,55,54,52,53,44,51,57,46,56,55,57,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,52,54,53,51,55,55,44,52,48,46,52,51,54,51,52,54,93,44,91,45,49,48,51,46,52,55,49,57,57,44,52,48,46,48,48,49,53,48,50,93,44,91,45,49,48,51,46,55,48,53,55,48,49,44,52,48,46,48,48,49,51,54,54,93,44,91,45,49,48,51,46,55,48,54,53,52,55,44,51,57,46,55,51,57,56,57,52,93,44,91,45,49,48,51,46,55,48,55,48,55,50,44,51,57,46,53,54,54,50,57,53,93,44,91,45,49,48,51,46,49,53,52,51,55,54,44,51,57,46,53,54,53,54,53,52,93,44,91,45,49,48,50,46,56,48,50,57,51,50,44,51,57,46,53,54,55,56,52,49,93,44,91,45,49,48,50,46,55,57,51,53,56,50,44,52,48,46,51,53,49,50,56,49,93,44,91,45,49,48,50,46,55,55,57,57,54,44,52,48,46,52,51,56,52,52,54,93,44,91,45,49,48,51,46,52,54,53,51,55,55,44,52,48,46,52,51,54,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,72,97,114,100,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,56,48,49,57,52,44,52,48,46,54,52,52,54,57,93,44,91,45,56,51,46,56,56,48,48,51,57,44,52,48,46,53,51,56,54,57,52,93,44,91,45,56,51,46,53,50,48,50,50,55,44,52,48,46,53,48,52,48,55,55,93,44,91,45,56,51,46,52,49,56,54,55,44,52,48,46,53,48,53,50,50,57,93,44,91,45,56,51,46,52,49,57,56,51,54,44,52,48,46,54,56,54,56,50,51,93,44,91,45,56,51,46,52,57,53,55,57,56,44,52,48,46,55,48,49,53,49,53,93,44,91,45,56,51,46,53,49,53,56,56,51,44,52,48,46,56,49,56,49,51,52,93,44,91,45,56,51,46,56,56,48,48,54,51,44,52,48,46,56,49,57,57,49,57,93,44,91,45,56,51,46,56,56,48,49,57,52,44,52,48,46,54,52,52,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,105,115,115,97,117,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,51,52,44,52,52,46,53,49,50,51,48,51,93,44,91,45,56,53,46,51,51,52,55,55,55,44,52,52,46,49,54,53,49,49,56,93,44,91,45,56,53,46,48,56,55,52,48,51,44,52,52,46,49,54,52,50,52,50,93,44,91,45,56,52,46,56,53,49,55,48,53,44,52,52,46,49,54,49,51,55,53,93,44,91,45,56,52,46,56,53,48,57,50,57,44,52,52,46,53,49,49,48,54,57,93,44,91,45,56,53,46,51,51,52,44,52,52,46,53,49,50,51,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,83,116,117,116,115,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,48,54,52,44,34,98,101,100,115,34,58,49,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,56,49,48,57,53,44,52,55,46,51,50,55,48,50,55,93,44,91,45,57,57,46,52,56,49,48,50,44,52,54,46,57,56,48,51,54,57,93,44,91,45,57,57,46,52,52,53,56,57,49,44,52,54,46,57,56,48,49,56,57,93,44,91,45,57,57,46,52,52,57,55,50,44,52,54,46,54,51,49,54,51,93,44,91,45,57,57,46,48,51,54,54,50,53,44,52,54,46,54,51,48,50,49,49,93,44,91,45,57,56,46,52,51,57,48,53,54,44,52,54,46,54,51,49,49,50,93,44,91,45,57,56,46,52,51,57,55,51,52,44,52,54,46,57,55,57,54,51,49,93,44,91,45,57,56,46,52,54,55,48,54,54,44,52,55,46,50,52,48,52,48,52,93,44,91,45,57,56,46,52,57,57,50,52,54,44,52,55,46,51,50,54,53,51,56,93,44,91,45,57,57,46,50,54,54,50,49,53,44,52,55,46,51,50,54,57,57,57,93,44,91,45,57,57,46,52,56,49,48,57,53,44,52,55,46,51,50,55,48,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,51,34,44,34,78,65,77,69,34,58,34,83,104,97,110,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,49,49,56,54,51,44,51,55,46,52,49,53,50,55,55,93,44,91,45,57,49,46,54,52,54,54,50,54,44,51,55,46,52,50,50,55,51,49,93,44,91,45,57,49,46,54,53,53,54,48,55,44,51,55,46,48,52,56,57,50,53,93,44,91,45,57,49,46,54,53,56,49,49,49,44,51,54,46,56,56,56,55,50,52,93,44,91,45,57,49,46,50,50,50,56,51,44,51,54,46,56,56,51,56,53,55,93,44,91,45,57,49,46,50,49,55,49,53,44,51,55,46,48,56,54,49,57,55,93,44,91,45,57,49,46,48,49,55,55,54,54,44,51,55,46,48,57,53,54,55,55,93,44,91,45,57,49,46,49,50,54,48,50,56,44,51,55,46,49,57,57,52,56,93,44,91,45,57,49,46,50,49,49,56,54,51,44,51,55,46,52,49,53,50,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,50,51,34,44,34,78,65,77,69,34,58,34,83,109,105,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,48,49,53,44,34,98,101,100,115,34,58,49,55,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,52,57,49,54,53,44,51,50,46,51,53,53,50,51,51,93,44,91,45,57,53,46,52,56,56,44,51,50,46,50,51,53,52,56,52,93,44,91,45,57,53,46,52,53,57,57,48,56,44,51,50,46,49,51,53,53,53,57,93,44,91,45,57,52,46,57,56,53,50,55,50,44,51,50,46,49,51,55,57,56,57,93,44,91,45,57,52,46,57,56,53,52,49,49,44,51,50,46,51,55,48,56,50,93,44,91,45,57,52,46,57,56,54,57,51,53,44,51,50,46,53,51,55,50,52,54,93,44,91,45,57,53,46,49,53,51,52,49,44,51,50,46,53,55,48,49,49,53,93,44,91,45,57,53,46,53,49,48,57,52,53,44,51,50,46,54,50,48,51,50,56,93,44,91,45,57,53,46,53,57,52,53,52,49,44,51,50,46,54,56,55,48,50,54,93,44,91,45,57,53,46,53,57,52,51,44,51,50,46,52,55,57,56,53,56,93,44,91,45,57,53,46,52,52,57,49,54,53,44,51,50,46,51,53,53,50,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,84,117,108,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,50,55,56,49,44,34,98,101,100,115,34,58,52,52,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,48,49,49,55,49,44,51,54,46,52,50,51,54,56,54,93,44,91,45,57,54,46,48,48,49,50,50,54,44,51,54,46,49,54,49,50,57,54,93,44,91,45,57,54,46,50,54,56,50,56,55,44,51,54,46,49,54,49,57,56,93,44,91,45,57,54,46,50,57,55,56,56,56,44,51,54,46,49,54,50,50,55,57,93,44,91,45,57,54,46,50,57,55,57,48,53,44,51,54,46,48,55,53,55,54,54,93,44,91,45,57,54,46,48,50,57,53,56,51,44,51,54,46,48,55,53,51,54,54,93,44,91,45,57,54,46,48,51,51,49,49,56,44,51,53,46,56,53,54,56,50,52,93,44,91,45,57,53,46,56,49,57,52,53,57,44,51,53,46,56,53,54,50,53,53,93,44,91,45,57,53,46,55,54,49,55,48,50,44,51,53,46,57,48,49,49,52,55,93,44,91,45,57,53,46,55,54,49,54,53,44,51,54,46,49,54,50,55,53,93,44,91,45,57,53,46,56,49,53,52,44,51,54,46,49,54,50,54,51,93,44,91,45,57,53,46,56,49,50,51,52,50,44,51,54,46,52,50,51,53,56,93,44,91,45,57,54,46,48,48,49,49,55,49,44,51,54,46,52,50,51,54,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,99,73,110,116,111,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,56,49,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,49,50,57,53,51,44,51,53,46,53,53,49,55,51,56,93,44,91,45,57,53,46,56,50,50,51,54,49,44,51,53,46,53,53,49,54,57,51,93,44,91,45,57,53,46,56,55,53,52,48,53,44,51,53,46,51,55,54,54,57,93,44,91,45,57,53,46,57,56,49,52,54,53,44,51,53,46,51,55,54,55,56,56,93,44,91,45,57,53,46,57,56,49,53,49,49,44,51,53,46,50,56,57,55,56,93,44,91,45,57,53,46,57,56,51,48,55,55,44,51,53,46,49,53,49,54,57,53,93,44,91,45,57,53,46,55,49,54,49,53,55,44,51,53,46,49,56,57,51,53,50,93,44,91,45,57,53,46,52,53,49,50,53,44,51,53,46,50,57,54,48,49,57,93,44,91,45,57,53,46,51,52,52,55,54,54,44,51,53,46,50,57,51,48,51,53,93,44,91,45,57,53,46,51,52,52,55,57,57,44,51,53,46,53,53,49,55,53,49,93,44,91,45,57,53,46,55,49,50,57,53,51,44,51,53,46,53,53,49,55,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,57,53,34,44,34,78,65,77,69,34,58,34,82,111,98,101,114,116,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,50,57,49,50,49,44,51,49,46,49,48,53,56,55,49,93,44,91,45,57,54,46,55,53,54,51,51,44,51,48,46,57,50,55,50,48,54,93,44,91,45,57,54,46,54,52,49,50,56,44,51,48,46,56,49,56,48,53,49,93,44,91,45,57,54,46,54,50,49,50,56,49,44,51,48,46,55,51,48,56,49,57,93,44,91,45,57,54,46,53,54,54,57,56,51,44,51,48,46,54,57,53,54,55,93,44,91,45,57,54,46,52,53,55,54,51,44,51,48,46,55,52,52,52,55,52,93,44,91,45,57,54,46,51,51,56,48,48,49,44,51,48,46,57,50,48,53,51,49,93,44,91,45,57,54,46,50,52,49,48,50,44,51,48,46,57,55,51,55,51,55,93,44,91,45,57,54,46,51,50,55,54,51,44,51,49,46,50,56,52,56,55,54,93,44,91,45,57,54,46,51,49,57,49,54,53,44,51,49,46,51,53,55,49,50,57,93,44,91,45,57,54,46,53,57,54,56,54,50,44,51,49,46,50,50,48,57,93,44,91,45,57,54,46,56,50,57,49,50,49,44,51,49,46,49,48,53,56,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,71,105,108,108,101,115,112,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,48,56,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,57,49,54,55,44,51,48,46,52,57,57,56,55,53,93,44,91,45,57,56,46,57,54,52,50,51,50,44,51,48,46,52,57,56,52,56,50,93,44,91,45,57,57,46,51,48,51,57,57,54,44,51,48,46,52,57,57,56,51,50,93,44,91,45,57,57,46,51,48,49,55,49,56,44,51,48,46,50,56,54,54,53,51,93,44,91,45,57,57,46,51,48,48,57,56,56,44,51,48,46,49,51,52,50,57,56,93,44,91,45,57,56,46,57,50,48,49,52,55,44,51,48,46,49,51,56,50,57,93,44,91,45,57,56,46,53,56,55,56,57,55,44,51,48,46,49,51,56,57,53,52,93,44,91,45,57,56,46,53,57,49,54,55,44,51,48,46,52,57,57,56,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,79,97,107,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,48,56,52,51,44,34,98,101,100,115,34,58,52,53,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,56,54,52,57,51,44,52,50,46,55,56,51,50,54,51,93,44,91,45,56,51,46,54,54,52,56,48,56,44,52,50,46,52,51,49,49,55,57,93,44,91,45,56,51,46,53,53,49,57,48,55,44,52,50,46,52,51,53,49,54,54,93,44,91,45,56,51,46,48,56,51,51,57,51,44,52,50,46,52,52,55,49,53,51,93,44,91,45,56,51,46,49,48,50,56,57,49,44,52,50,46,56,56,56,54,52,55,93,44,91,45,56,51,46,52,53,51,51,54,52,44,52,50,46,56,56,48,52,51,50,93,44,91,45,56,51,46,54,56,57,51,56,52,44,52,50,46,56,55,49,50,54,51,93,44,91,45,56,51,46,54,56,54,52,57,51,44,52,50,46,55,56,51,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,71,111,108,100,101,110,32,86,97,108,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,56,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,52,52,57,54,56,44,52,55,46,51,51,48,49,52,49,93,44,91,45,49,48,52,46,48,52,53,50,51,52,44,52,54,46,54,52,49,53,48,52,93,44,91,45,49,48,52,46,48,52,53,50,49,49,44,52,54,46,53,52,48,56,54,49,93,44,91,45,49,48,51,46,56,48,48,56,56,44,52,54,46,53,52,48,54,55,49,93,44,91,45,49,48,51,46,56,48,48,56,55,51,44,52,54,46,54,50,57,55,51,49,93,44,91,45,49,48,51,46,54,48,57,50,55,51,44,52,54,46,54,50,57,56,50,50,93,44,91,45,49,48,51,46,54,48,57,53,57,50,44,52,54,46,57,55,57,56,53,52,93,44,91,45,49,48,51,46,54,54,55,48,55,51,44,52,54,46,57,55,57,55,55,53,93,44,91,45,49,48,51,46,54,54,54,54,55,53,44,52,55,46,51,50,57,50,53,54,93,44,91,45,49,48,52,46,48,52,52,57,54,56,44,52,55,46,51,51,48,49,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,78,105,111,98,114,97,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,52,56,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,48,53,52,55,56,54,44,52,51,46,53,48,51,51,50,56,93,44,91,45,49,48,52,46,56,57,57,57,52,49,44,52,51,46,52,57,57,54,52,93,44,91,45,49,48,52,46,56,57,50,52,51,55,44,52,50,46,54,48,56,57,51,57,93,44,91,45,49,48,52,46,54,53,53,54,51,57,44,52,50,46,54,48,57,52,54,56,93,44,91,45,49,48,52,46,48,53,50,56,51,56,44,52,50,46,54,49,49,55,54,55,93,44,91,45,49,48,52,46,48,53,51,48,50,56,44,52,51,46,48,48,48,53,56,53,93,44,91,45,49,48,52,46,48,53,52,56,48,51,44,52,51,46,52,55,55,56,49,53,93,44,91,45,49,48,52,46,48,53,52,55,56,54,44,52,51,46,53,48,51,51,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,80,105,112,101,115,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,56,53,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,53,50,55,55,51,44,52,52,46,49,57,54,55,56,93,44,91,45,57,54,46,52,53,50,57,56,56,44,52,51,46,56,52,57,53,48,55,93,44,91,45,57,54,46,48,54,52,54,50,44,52,51,46,56,52,57,48,51,57,93,44,91,45,57,54,46,48,54,51,55,55,56,44,52,52,46,49,57,54,52,50,53,93,44,91,45,57,54,46,48,55,56,53,56,44,52,52,46,49,57,54,54,50,93,44,91,45,57,54,46,52,53,50,55,55,51,44,52,52,46,49,57,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,75,105,110,103,32,71,101,111,114,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,57,55,54,55,44,51,56,46,50,55,56,48,52,54,93,44,91,45,55,55,46,48,49,56,52,57,56,44,51,56,46,51,56,49,57,52,49,93,44,91,45,55,55,46,50,56,55,48,57,55,44,51,56,46,51,52,56,56,93,44,91,45,55,55,46,51,50,54,54,57,50,44,51,56,46,50,52,53,49,51,54,93,44,91,45,55,55,46,49,49,53,57,57,55,44,51,56,46,49,52,57,57,51,49,93,44,91,45,55,55,46,48,54,49,54,57,53,44,51,56,46,49,54,49,54,51,49,93,44,91,45,55,54,46,57,57,55,54,55,44,51,56,46,50,55,56,48,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,56,54,48,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,57,56,50,50,51,52,44,52,55,46,57,54,50,48,50,53,93,44,91,45,49,49,57,46,49,48,51,56,55,51,44,52,55,46,57,54,49,55,54,51,93,44,91,45,49,49,57,46,50,49,50,50,50,53,44,52,55,46,56,56,55,55,48,56,93,44,91,45,49,49,57,46,50,49,50,52,49,44,52,55,46,56,48,48,54,57,53,93,44,91,45,49,49,57,46,51,52,49,55,54,55,44,52,55,46,54,49,50,51,56,56,93,44,91,45,49,49,57,46,53,51,50,56,56,57,44,52,55,46,53,50,55,55,53,54,93,44,91,45,49,49,57,46,53,51,51,49,50,51,44,52,55,46,52,52,49,50,48,55,93,44,91,45,49,49,57,46,56,55,53,55,54,44,52,55,46,52,51,55,52,57,50,93,44,91,45,49,50,48,46,48,48,52,55,48,52,44,52,55,46,51,49,57,57,57,52,93,44,91,45,49,50,48,46,48,48,55,48,55,52,44,52,55,46,50,50,48,49,51,51,93,44,91,45,49,50,48,46,48,52,50,56,54,54,44,52,55,46,48,55,51,52,53,51,93,44,91,45,49,49,57,46,57,50,55,53,51,55,44,52,54,46,56,49,55,48,57,50,93,44,91,45,49,49,57,46,57,55,51,48,51,54,44,52,54,46,55,51,55,49,50,54,93,44,91,45,49,49,57,46,56,55,52,48,52,50,44,52,54,46,54,50,56,50,56,51,93,44,91,45,49,49,57,46,54,53,57,49,56,57,44,52,54,46,54,52,48,51,51,51,93,44,91,45,49,49,57,46,53,49,54,53,56,50,44,52,54,46,55,50,55,54,51,56,93,44,91,45,49,49,57,46,52,53,51,49,57,44,52,54,46,54,55,57,50,52,51,93,44,91,45,49,49,57,46,51,54,57,52,50,57,44,52,54,46,55,51,55,54,57,53,93,44,91,45,49,49,57,46,51,54,56,54,54,50,44,52,54,46,57,49,50,53,54,50,93,44,91,45,49,49,56,46,57,56,50,54,53,50,44,52,54,46,57,49,49,51,52,52,93,44,91,45,49,49,56,46,57,55,57,55,55,55,44,52,55,46,50,54,49,55,48,57,93,44,91,45,49,49,56,46,57,55,51,53,48,52,44,52,55,46,57,52,51,52,49,52,93,44,91,45,49,49,56,46,57,56,50,50,51,52,44,52,55,46,57,54,50,48,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,82,101,110,118,105,108,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,50,49,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,50,52,56,53,50,44,52,52,46,56,57,49,51,49,93,44,91,45,57,53,46,52,56,50,56,56,57,44,52,52,46,56,57,48,55,49,50,93,44,91,45,57,53,46,52,56,50,56,52,51,44,52,52,46,55,53,50,53,48,53,93,44,91,45,57,53,46,51,54,48,49,55,55,44,52,52,46,54,57,56,53,52,93,44,91,45,57,53,46,50,52,48,52,51,57,44,52,52,46,54,54,52,54,48,52,93,44,91,45,57,53,46,48,49,51,53,57,57,44,52,52,46,53,52,50,56,51,51,93,44,91,45,57,52,46,56,54,53,56,50,52,44,52,52,46,52,57,56,50,49,56,93,44,91,45,57,52,46,55,56,48,54,51,44,52,52,46,52,53,54,54,53,93,44,91,45,57,52,46,54,50,52,50,44,52,52,46,52,53,54,48,51,93,44,91,45,57,52,46,54,50,57,52,56,57,44,52,52,46,55,49,54,54,54,51,93,44,91,45,57,52,46,52,57,56,48,55,52,44,52,52,46,55,49,55,49,55,49,93,44,91,45,57,52,46,53,48,50,51,57,53,44,52,52,46,56,57,50,50,57,53,93,44,91,45,57,52,46,55,53,56,49,56,57,44,52,52,46,56,57,50,48,57,55,93,44,91,45,57,53,46,50,52,56,53,50,44,52,52,46,56,57,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,108,97,99,104,117,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,51,49,52,56,44,34,98,101,100,115,34,58,49,56,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,53,56,53,53,52,44,50,57,46,56,51,48,49,52,52,93,44,91,45,56,50,46,54,53,54,51,48,49,44,50,57,46,53,54,52,56,49,49,93,44,91,45,56,50,46,53,53,54,55,54,54,44,50,57,46,52,56,48,48,53,53,93,44,91,45,56,50,46,52,48,54,54,50,44,50,57,46,52,56,53,48,52,56,93,44,91,45,56,50,46,48,53,53,56,57,57,44,50,57,46,52,55,49,50,51,50,93,44,91,45,56,50,46,48,53,53,54,50,53,44,50,57,46,55,49,56,50,51,50,93,44,91,45,56,50,46,49,51,51,49,50,54,44,50,57,46,56,51,53,57,52,57,93,44,91,45,56,50,46,50,56,49,56,51,55,44,50,57,46,56,52,52,52,52,56,93,44,91,45,56,50,46,52,49,56,55,50,56,44,50,57,46,57,50,51,48,57,51,93,44,91,45,56,50,46,53,50,57,55,48,53,44,50,57,46,57,52,48,56,56,49,93,44,91,45,56,50,46,54,53,56,53,53,52,44,50,57,46,56,51,48,49,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,111,111,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,52,50,54,53,53,55,44,52,50,46,48,57,50,49,57,52,93,44,91,45,49,48,49,46,52,50,53,57,50,44,52,49,46,55,52,51,48,53,57,93,44,91,45,49,48,49,46,52,48,54,52,54,54,44,52,49,46,55,52,51,50,93,44,91,45,49,48,48,46,56,52,50,52,53,57,44,52,49,46,55,52,48,52,48,52,93,44,91,45,49,48,48,46,56,52,54,49,50,57,44,52,50,46,48,56,56,49,54,54,93,44,91,45,49,48,49,46,52,50,54,53,53,55,44,52,50,46,48,57,50,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,80,114,105,110,99,101,32,69,100,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,57,53,54,44,34,98,101,100,115,34,58,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,53,57,52,52,51,54,44,51,55,46,51,57,55,57,55,52,93,44,91,45,55,56,46,54,56,49,53,55,51,44,51,55,46,50,52,56,55,53,57,93,44,91,45,55,56,46,54,57,50,52,55,50,44,51,55,46,50,48,52,55,56,54,93,44,91,45,55,56,46,52,52,51,54,52,52,44,51,55,46,48,55,57,51,55,49,93,44,91,45,55,56,46,50,51,57,51,53,52,44,51,55,46,49,50,48,48,56,57,93,44,91,45,55,56,46,50,51,49,50,51,52,44,51,55,46,50,57,54,50,50,93,44,91,45,55,56,46,50,51,53,48,51,57,44,51,55,46,51,54,56,49,48,50,93,44,91,45,55,56,46,51,50,49,56,52,44,51,55,46,51,48,57,50,57,50,93,44,91,45,55,56,46,52,54,53,48,56,57,44,51,55,46,51,51,57,54,55,55,93,44,91,45,55,56,46,53,57,52,52,51,54,44,51,55,46,51,57,55,57,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,97,114,98,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,53,54,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,50,52,55,51,57,49,44,51,57,46,55,48,52,51,53,93,44,91,45,49,49,49,46,48,56,53,51,53,53,44,51,57,46,53,50,49,49,55,93,44,91,45,49,49,49,46,48,55,55,53,52,53,44,51,57,46,52,54,57,55,52,51,93,44,91,45,49,49,48,46,48,50,52,49,49,56,44,51,57,46,52,54,57,50,54,57,93,44,91,45,49,49,48,46,48,50,51,57,54,51,44,51,57,46,52,54,57,50,54,56,93,44,91,45,49,48,57,46,57,55,54,56,49,52,44,51,57,46,56,48,54,50,51,93,44,91,45,49,49,48,46,56,53,55,55,56,44,51,57,46,56,49,51,50,56,53,93,44,91,45,49,49,49,46,50,52,55,52,57,54,44,51,57,46,56,49,51,48,50,56,93,44,91,45,49,49,49,46,50,52,55,51,57,49,44,51,57,46,55,48,52,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,117,99,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,54,51,55,48,44,34,98,101,100,115,34,58,49,49,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,52,56,52,48,53,55,44,52,48,46,52,49,56,52,53,49,93,44,91,45,55,53,46,48,49,53,48,54,54,44,52,48,46,49,51,55,57,57,50,93,44,91,45,55,52,46,57,55,51,57,56,49,44,52,48,46,48,52,56,53,57,53,93,44,91,45,55,52,46,55,50,50,48,52,56,44,52,48,46,49,53,48,51,49,49,93,44,91,45,55,52,46,57,52,50,57,48,57,44,52,48,46,51,52,49,54,56,51,93,44,91,45,55,53,46,48,54,48,57,49,55,44,52,48,46,52,50,49,55,51,55,93,44,91,45,55,53,46,48,54,56,49,44,52,48,46,53,52,49,52,56,56,93,44,91,45,55,53,46,49,56,57,54,44,52,48,46,53,57,49,55,55,54,93,44,91,45,55,53,46,49,57,54,56,48,51,44,52,48,46,54,48,56,53,56,93,44,91,45,55,53,46,51,51,51,53,49,52,44,52,48,46,53,51,55,48,53,55,93,44,91,45,55,53,46,52,56,52,48,53,55,44,52,48,46,52,49,56,52,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,72,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,49,49,55,53,52,44,52,52,46,56,57,55,50,50,55,93,44,91,45,57,57,46,51,48,48,49,56,44,52,52,46,49,57,52,56,51,93,44,91,45,57,56,46,57,50,53,57,53,51,44,52,52,46,49,57,54,53,55,53,93,44,91,45,57,56,46,55,48,48,52,53,51,44,52,52,46,49,57,54,55,50,55,93,44,91,45,57,56,46,55,48,53,55,54,50,44,52,52,46,54,51,52,49,53,57,93,44,91,45,57,56,46,55,49,54,52,57,56,44,52,52,46,56,57,54,57,50,53,93,44,91,45,57,57,46,51,49,49,55,53,52,44,52,52,46,56,57,55,50,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,76,121,99,111,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,56,53,57,44,34,98,101,100,115,34,58,51,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,53,57,56,49,50,57,44,52,49,46,52,55,56,53,55,54,93,44,91,45,55,55,46,53,50,54,53,51,55,44,52,49,46,51,53,56,53,50,56,93,44,91,45,55,55,46,49,52,52,49,49,49,44,52,49,46,48,54,56,56,52,93,44,91,45,55,54,46,57,55,55,57,51,57,44,52,49,46,48,56,55,56,56,51,93,44,91,45,55,54,46,56,57,54,49,49,52,44,52,49,46,49,51,57,48,55,93,44,91,45,55,54,46,55,51,50,54,55,50,44,52,49,46,49,55,50,48,52,93,44,91,45,55,54,46,54,52,48,55,54,55,44,52,49,46,49,53,53,55,49,56,93,44,91,45,55,54,46,52,52,55,53,57,55,44,52,49,46,50,55,53,54,50,57,93,44,91,45,55,54,46,53,57,50,53,51,50,44,52,49,46,51,48,52,51,51,50,93,44,91,45,55,54,46,55,52,57,52,57,55,44,52,49,46,52,48,53,53,55,50,93,44,91,45,55,54,46,56,49,51,55,51,49,44,52,49,46,53,57,48,48,51,52,93,44,91,45,55,54,46,56,55,52,55,49,52,44,52,49,46,53,57,54,57,49,57,93,44,91,45,55,54,46,57,54,48,52,55,57,44,52,49,46,53,53,49,51,55,49,93,44,91,45,55,55,46,53,57,57,50,55,56,44,52,49,46,53,52,50,50,55,49,93,44,91,45,55,55,46,53,57,56,49,50,57,44,52,49,46,52,55,56,53,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,76,97,116,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,50,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,51,57,55,53,50,44,52,55,46,49,50,55,50,54,57,93,44,91,45,49,49,55,46,48,51,57,54,57,52,44,52,54,46,53,52,49,55,48,57,93,44,91,45,49,49,54,46,55,49,57,48,56,53,44,52,54,46,53,52,50,56,55,52,93,44,91,45,49,49,54,46,54,49,49,55,52,44,52,54,46,54,51,49,50,52,53,93,44,91,45,49,49,54,46,52,53,54,48,57,56,44,52,54,46,54,50,57,48,57,55,93,44,91,45,49,49,54,46,51,50,57,53,52,44,52,54,46,54,50,55,57,53,55,93,44,91,45,49,49,54,46,51,50,57,52,51,54,44,52,54,46,57,51,52,54,54,57,93,44,91,45,49,49,54,46,51,50,57,52,49,56,44,52,55,46,48,50,49,57,49,53,93,44,91,45,49,49,54,46,56,51,53,50,54,57,44,52,55,46,48,51,50,52,53,50,93,44,91,45,49,49,55,46,48,51,57,55,53,50,44,52,55,46,49,50,55,50,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,55,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,51,51,55,51,54,44,51,51,46,52,51,52,52,55,50,93,44,91,45,56,51,46,53,52,53,56,55,54,44,51,51,46,49,55,49,57,52,52,93,44,91,45,56,51,46,52,50,57,48,57,44,51,51,46,49,56,53,51,53,50,93,44,91,45,56,51,46,50,55,52,49,48,56,44,51,51,46,49,56,55,50,51,56,93,44,91,45,56,51,46,49,54,52,50,48,55,44,51,51,46,51,53,53,48,51,93,44,91,45,56,51,46,50,55,57,57,51,49,44,51,51,46,52,56,51,52,51,56,93,44,91,45,56,51,46,53,51,51,55,51,54,44,51,51,46,52,51,52,52,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,52,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,52,48,34,44,34,78,65,77,69,34,58,34,71,97,108,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,51,56,44,34,98,101,100,115,34,58,49,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,51,50,50,55,49,44,51,54,46,54,55,49,53,57,51,93,44,91,45,56,48,46,57,49,52,49,55,51,44,51,54,46,54,53,48,50,52,54,93,44,91,45,56,48,46,56,55,55,50,55,52,44,51,54,46,54,57,50,50,49,53,93,44,91,45,56,48,46,57,49,54,49,54,54,44,51,54,46,54,57,52,54,52,93,44,91,45,56,48,46,57,51,50,50,55,49,44,51,54,46,54,55,49,53,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,81,117,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,55,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,54,51,55,48,53,51,44,51,53,46,51,56,57,54,54,50,93,44,91,45,49,48,51,46,54,51,55,49,51,44,51,53,46,50,52,48,56,49,57,93,44,91,45,49,48,51,46,56,53,55,53,51,44,51,53,46,50,52,50,52,48,53,93,44,91,45,49,48,52,46,49,50,53,49,50,49,44,51,53,46,49,52,50,48,53,56,93,44,91,45,49,48,52,46,49,50,57,49,52,51,44,51,52,46,55,55,57,51,51,55,93,44,91,45,49,48,52,46,49,50,56,56,56,44,51,52,46,54,48,53,50,48,49,93,44,91,45,49,48,51,46,57,52,56,55,55,56,44,51,52,46,54,48,53,48,53,56,93,44,91,45,49,48,51,46,55,51,56,49,54,54,44,51,52,46,54,48,52,54,55,93,44,91,45,49,48,51,46,55,48,53,55,56,56,44,51,52,46,54,57,50,52,52,54,93,44,91,45,49,48,51,46,52,57,53,54,53,51,44,51,52,46,54,57,49,51,57,51,93,44,91,45,49,48,51,46,50,56,52,51,49,55,44,51,52,46,56,54,52,57,57,93,44,91,45,49,48,51,46,50,56,52,49,52,57,44,51,52,46,57,53,52,49,55,50,93,44,91,45,49,48,51,46,48,52,50,55,48,49,44,51,52,46,57,53,52,49,52,50,93,44,91,45,49,48,51,46,48,52,50,53,49,49,44,51,53,46,49,56,51,49,53,55,93,44,91,45,49,48,51,46,48,52,49,55,48,54,44,51,53,46,54,50,50,52,56,56,93,44,91,45,49,48,51,46,48,52,49,51,52,57,44,51,53,46,55,51,57,52,51,51,93,44,91,45,49,48,51,46,51,55,53,49,49,55,44,51,53,46,55,51,57,53,49,54,93,44,91,45,49,48,51,46,51,55,57,55,51,44,51,53,46,51,57,54,55,57,54,93,44,91,45,49,48,51,46,54,51,55,48,53,51,44,51,53,46,51,56,57,54,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,57,34,44,34,78,65,77,69,34,58,34,75,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,49,56,54,57,49,44,51,51,46,56,51,53,54,53,93,44,91,45,49,48,48,46,53,49,55,52,52,57,44,51,51,46,51,57,55,56,54,54,93,44,91,45,57,57,46,57,57,48,57,56,44,51,51,46,51,57,55,52,48,52,93,44,91,45,57,57,46,57,57,54,52,51,52,44,51,51,46,56,51,53,57,54,55,93,44,91,45,49,48,48,46,48,52,56,52,56,44,51,51,46,56,51,53,57,55,52,93,44,91,45,49,48,48,46,53,49,56,54,57,49,44,51,51,46,56,51,53,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,97,102,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,50,50,56,54,55,44,51,51,46,52,56,49,57,54,51,93,44,91,45,57,51,46,54,56,51,55,49,53,44,51,51,46,50,56,49,48,57,50,93,44,91,45,57,51,46,56,53,57,48,56,55,44,51,51,46,48,56,57,53,51,55,93,44,91,45,57,51,46,56,48,52,57,51,44,51,51,46,48,49,57,51,53,55,93,44,91,45,57,51,46,53,50,48,57,57,52,44,51,51,46,48,49,56,54,49,54,93,44,91,45,57,51,46,52,57,48,53,50,44,51,51,46,48,49,56,52,52,50,93,44,91,45,57,51,46,52,56,49,55,54,44,51,51,46,50,53,57,57,57,49,93,44,91,45,57,51,46,51,54,53,53,56,53,44,51,51,46,52,52,52,52,53,57,93,44,91,45,57,51,46,52,56,51,48,57,55,44,51,51,46,52,55,54,48,55,53,93,44,91,45,57,51,46,55,50,50,56,54,55,44,51,51,46,52,56,49,57,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,53,49,34,44,34,78,65,77,69,34,58,34,84,111,109,32,71,114,101,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,52,54,54,44,34,98,101,100,115,34,58,53,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,51,53,55,54,49,44,51,49,46,54,57,50,57,55,93,44,91,45,49,48,48,46,56,50,53,51,55,44,51,49,46,54,57,54,49,53,53,93,44,91,45,49,48,48,46,56,54,53,50,53,54,44,51,49,46,53,54,50,50,57,52,93,44,91,45,49,48,49,46,50,54,55,54,51,44,51,49,46,53,53,54,52,54,50,93,44,91,45,49,48,49,46,50,54,55,57,52,55,44,51,49,46,53,50,56,54,56,56,93,44,91,45,49,48,48,46,54,57,51,48,54,53,44,51,49,46,53,50,51,57,53,52,93,44,91,45,49,48,48,46,54,56,56,55,54,52,44,51,49,46,48,56,54,53,55,54,93,44,91,45,49,48,48,46,49,49,53,50,49,54,44,51,49,46,48,56,55,57,57,52,93,44,91,45,49,48,48,46,49,49,49,50,51,52,44,51,49,46,53,56,48,50,54,55,93,44,91,45,49,48,48,46,50,51,52,54,51,54,44,51,49,46,53,56,55,49,52,55,93,44,91,45,49,48,48,46,50,51,53,55,54,49,44,51,49,46,54,57,50,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,72,97,114,100,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,44,91,45,56,50,46,48,53,53,55,53,51,44,50,55,46,51,51,56,50,54,52,93,44,91,45,56,49,46,53,54,52,48,54,50,44,50,55,46,51,52,48,54,52,49,93,44,91,45,56,49,46,53,54,51,53,51,51,44,50,55,46,54,52,54,54,52,53,93,44,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,108,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,50,49,54,44,34,98,101,100,115,34,58,49,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,48,54,55,56,50,44,51,57,46,50,53,53,48,54,56,93,44,91,45,56,52,46,50,53,57,52,51,49,44,51,57,46,50,55,48,55,57,54,93,44,91,45,56,52,46,51,49,57,57,56,53,44,51,57,46,48,50,49,53,51,52,93,44,91,45,56,52,46,50,51,49,57,49,55,44,51,56,46,56,55,52,56,54,54,93,44,91,45,56,52,46,50,51,48,52,49,49,44,51,56,46,56,50,55,52,51,55,93,44,91,45,56,52,46,48,53,50,55,48,57,44,51,56,46,55,55,49,50,50,54,93,44,91,45,56,51,46,57,57,51,49,50,44,51,57,46,50,53,52,50,51,53,93,44,91,45,56,52,46,48,48,54,55,56,50,44,51,57,46,50,53,53,48,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,53,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,48,49,34,44,34,78,65,77,69,34,58,34,89,111,97,107,117,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,55,49,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,53,54,52,56,53,44,51,51,46,51,56,56,52,49,52,93,44,91,45,49,48,51,46,48,54,52,54,57,54,44,51,50,46,57,53,57,48,57,57,93,44,91,45,49,48,50,46,53,57,53,48,50,51,44,51,50,46,57,53,56,56,51,49,93,44,91,45,49,48,50,46,53,57,52,56,51,54,44,51,51,46,51,56,56,52,56,57,93,44,91,45,49,48,51,46,48,53,54,52,56,53,44,51,51,46,51,56,56,52,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,89,97,109,104,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,56,50,48,44,34,98,101,100,115,34,58,49,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,52,54,52,56,56,44,52,53,46,52,51,51,51,51,50,93,44,91,45,49,50,51,46,52,54,51,53,49,56,44,52,53,46,50,49,54,51,49,50,93,44,91,45,49,50,51,46,55,56,52,53,52,44,52,53,46,50,49,54,50,57,52,93,44,91,45,49,50,51,46,55,50,52,51,54,56,44,52,53,46,48,55,54,50,50,54,93,44,91,45,49,50,51,46,48,54,56,54,54,55,44,52,53,46,48,55,52,56,54,93,44,91,45,49,50,51,46,48,48,48,55,56,56,44,52,53,46,50,53,57,51,52,55,93,44,91,45,49,50,50,46,56,52,57,57,50,53,44,52,53,46,50,53,57,54,57,55,93,44,91,45,49,50,50,46,56,54,55,56,57,49,44,52,53,46,51,49,55,51,52,53,93,44,91,45,49,50,51,46,49,51,53,52,50,55,44,52,53,46,52,51,51,52,53,57,93,44,91,45,49,50,51,46,52,54,52,56,56,44,52,53,46,52,51,51,51,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,76,111,117,105,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,56,51,57,57,53,44,52,49,46,52,50,51,56,52,56,93,44,91,45,57,49,46,52,56,53,55,49,55,44,52,49,46,49,54,50,52,48,53,93,44,91,45,57,49,46,51,55,48,55,49,44,52,49,46,48,55,52,49,49,50,93,44,91,45,57,48,46,57,52,57,51,56,49,44,52,49,46,48,55,50,55,49,93,44,91,45,57,48,46,57,56,57,54,54,50,44,52,49,46,49,53,53,55,48,55,93,44,91,45,57,49,46,49,49,52,49,56,54,44,52,49,46,50,53,48,48,50,57,93,44,91,45,57,49,46,48,55,50,48,55,44,52,49,46,51,51,51,51,54,49,93,44,91,45,57,49,46,48,55,50,48,52,53,44,52,49,46,51,51,51,53,57,57,93,44,91,45,57,49,46,51,54,57,51,51,50,44,52,49,46,51,51,54,48,54,51,93,44,91,45,57,49,46,51,54,56,53,50,49,44,52,49,46,52,50,51,49,55,56,93,44,91,45,57,49,46,52,56,51,57,57,53,44,52,49,46,52,50,51,56,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,69,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,54,49,48,48,50,44,51,55,46,54,48,51,55,54,49,93,44,91,45,57,54,46,53,50,53,51,44,51,55,46,54,48,55,48,49,53,93,44,91,45,57,54,46,53,50,53,54,57,44,51,55,46,52,55,54,52,48,53,93,44,91,45,57,54,46,53,50,52,56,55,51,44,51,55,46,51,48,50,55,51,93,44,91,45,57,53,46,57,54,52,51,57,57,44,51,55,46,50,57,57,50,51,50,93,44,91,45,57,53,46,57,54,49,54,48,53,44,51,55,46,51,56,54,54,51,54,93,44,91,45,57,53,46,57,54,49,48,48,50,44,51,55,46,54,48,51,55,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,78,111,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,52,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,57,55,52,52,50,44,51,57,46,55,53,53,53,55,50,93,44,91,45,56,49,46,53,56,56,49,56,53,44,51,57,46,53,56,54,57,55,51,93,44,91,45,56,49,46,50,56,51,48,55,53,44,51,57,46,54,48,53,55,57,54,93,44,91,45,56,49,46,51,49,57,49,50,53,44,51,57,46,55,48,55,51,54,93,44,91,45,56,49,46,51,49,51,53,57,49,44,51,57,46,56,54,57,52,55,49,93,44,91,45,56,49,46,50,51,55,51,49,54,44,51,57,46,56,54,55,56,50,56,93,44,91,45,56,49,46,50,51,52,48,53,51,44,51,57,46,57,53,49,50,55,93,44,91,45,56,49,46,51,56,54,48,48,54,44,51,57,46,57,53,48,54,57,52,93,44,91,45,56,49,46,54,57,52,49,52,54,44,51,57,46,56,52,50,54,51,54,93,44,91,45,56,49,46,54,57,55,52,52,50,44,51,57,46,55,53,53,53,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,57,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,49,54,48,50,44,52,49,46,49,54,53,53,50,52,93,44,91,45,56,52,46,51,57,57,52,56,54,44,52,48,46,57,57,48,51,49,53,93,44,91,45,56,52,46,51,52,48,53,51,49,44,52,48,46,56,53,57,48,57,57,93,44,91,45,56,52,46,49,48,57,53,56,54,44,52,48,46,56,54,48,57,57,52,93,44,91,45,56,52,46,49,48,57,53,49,54,44,52,48,46,57,48,52,55,51,93,44,91,45,56,51,46,56,56,48,52,50,51,44,52,48,46,57,50,48,52,50,57,93,44,91,45,56,51,46,56,56,49,49,52,57,44,52,49,46,49,54,55,56,50,52,93,44,91,45,56,52,46,50,50,56,50,50,50,44,52,49,46,49,54,53,56,54,50,93,44,91,45,56,52,46,51,52,49,54,48,50,44,52,49,46,49,54,53,53,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,50,53,34,44,34,78,65,77,69,34,58,34,83,111,109,101,114,118,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,52,51,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,52,53,54,50,53,44,51,50,46,50,51,51,52,54,56,93,44,91,45,57,55,46,56,54,52,56,54,52,44,51,50,46,48,56,55,51,50,56,93,44,91,45,57,55,46,54,49,53,48,53,53,44,51,50,46,50,48,51,53,56,49,93,44,91,45,57,55,46,54,49,53,50,56,54,44,51,50,46,51,49,56,54,49,56,93,44,91,45,57,55,46,55,56,50,55,54,44,51,50,46,51,49,54,52,57,51,93,44,91,45,57,55,46,57,52,53,54,50,53,44,51,50,46,50,51,51,52,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,101,98,97,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,54,55,52,44,34,98,101,100,115,34,58,52,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,51,53,52,49,52,44,52,48,46,53,53,53,49,53,55,93,44,91,45,55,54,46,54,55,56,48,52,44,52,48,46,52,55,52,55,49,55,93,44,91,45,55,54,46,53,54,54,51,51,57,44,52,48,46,49,57,54,54,52,52,93,44,91,45,55,54,46,51,48,55,53,55,56,44,52,48,46,50,53,53,48,54,54,93,44,91,45,55,54,46,49,53,49,50,49,53,44,52,48,46,51,49,53,57,55,49,93,44,91,45,55,54,46,52,52,48,49,56,49,44,52,48,46,52,57,53,57,53,50,93,44,91,45,55,54,46,53,51,53,52,49,52,44,52,48,46,53,53,53,49,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,71,108,97,99,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,57,57,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,49,57,51,52,49,44,52,56,46,57,57,56,52,55,53,93,44,91,45,49,49,50,46,56,55,53,57,49,55,44,52,56,46,57,57,56,53,48,53,93,44,91,45,49,49,52,46,48,54,56,49,56,44,52,56,46,57,57,56,56,53,55,93,44,91,45,49,49,51,46,57,53,54,56,54,52,44,52,56,46,56,49,55,52,55,52,93,44,91,45,49,49,51,46,56,49,56,51,55,51,44,52,56,46,56,52,56,50,49,56,93,44,91,45,49,49,51,46,55,48,50,57,51,56,44,52,56,46,55,49,57,56,54,53,93,44,91,45,49,49,51,46,55,53,48,52,53,52,44,52,56,46,54,49,52,51,51,53,93,44,91,45,49,49,51,46,52,54,55,51,55,50,44,52,56,46,53,52,55,53,53,53,93,44,91,45,49,49,51,46,52,56,48,56,51,57,44,52,56,46,52,53,57,54,54,50,93,44,91,45,49,49,51,46,51,53,53,57,55,54,44,52,56,46,52,50,51,57,49,50,93,44,91,45,49,49,51,46,51,52,57,48,52,54,44,52,56,46,51,49,48,50,54,51,93,44,91,45,49,49,50,46,53,56,48,52,56,52,44,52,56,46,51,48,57,57,51,50,93,44,91,45,49,49,50,46,53,55,54,57,56,50,44,52,56,46,52,56,51,51,52,56,93,44,91,45,49,49,50,46,49,56,52,55,56,52,44,52,56,46,52,55,55,53,55,56,93,44,91,45,49,49,50,46,49,57,51,52,49,44,52,56,46,57,57,56,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,80,101,114,115,104,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,49,49,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,51,48,57,53,57,56,44,52,48,46,57,54,48,51,55,56,93,44,91,45,49,49,57,46,51,49,51,48,51,55,44,52,48,46,53,49,56,51,49,52,93,44,91,45,49,49,57,46,51,51,56,53,48,52,44,52,48,46,53,49,55,56,48,53,93,44,91,45,49,49,57,46,51,51,57,50,57,54,44,51,57,46,57,57,56,54,48,57,93,44,91,45,49,49,57,46,50,50,53,49,55,54,44,51,57,46,57,57,57,51,56,53,93,44,91,45,49,49,56,46,53,48,48,57,55,57,44,51,57,46,57,57,56,54,55,54,93,44,91,45,49,49,55,46,53,52,49,55,52,57,44,52,48,46,48,48,49,48,51,52,93,44,91,45,49,49,55,46,51,48,48,53,57,55,44,52,48,46,53,50,54,49,51,54,93,44,91,45,49,49,55,46,51,48,57,52,52,49,44,52,48,46,54,56,51,53,51,55,93,44,91,45,49,49,55,46,54,52,52,51,57,57,44,52,48,46,54,56,52,51,52,51,93,44,91,45,49,49,55,46,54,52,52,50,50,44,52,48,46,56,53,55,56,50,52,93,44,91,45,49,49,56,46,55,56,54,55,51,56,44,52,48,46,56,53,53,57,50,57,93,44,91,45,49,49,56,46,55,56,54,55,48,53,44,52,48,46,57,54,48,56,53,93,44,91,45,49,49,57,46,51,48,57,53,57,56,44,52,48,46,57,54,48,51,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,77,97,104,110,111,109,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,48,54,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,48,54,55,54,50,49,44,52,55,46,52,57,57,49,51,54,93,44,91,45,57,54,46,48,54,55,48,54,57,44,52,55,46,49,53,49,56,49,51,93,44,91,45,57,53,46,53,53,49,49,56,54,44,52,55,46,49,53,49,52,53,51,93,44,91,45,57,53,46,53,53,52,50,52,56,44,52,55,46,52,57,57,56,57,51,93,44,91,45,57,54,46,48,54,55,54,50,49,44,52,55,46,52,57,57,49,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,80,97,115,115,97,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,52,48,52,49,44,34,98,101,100,115,34,58,57,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,50,55,50,48,54,51,44,52,48,46,56,57,55,52,50,55,93,44,91,45,55,52,46,49,51,48,48,49,54,44,52,48,46,56,49,57,57,51,56,93,44,91,45,55,52,46,49,52,49,48,57,52,44,52,48,46,57,54,54,51,55,52,93,44,91,45,55,52,46,50,55,50,50,50,54,44,52,49,46,48,49,55,57,51,53,93,44,91,45,55,52,46,50,49,49,50,50,52,44,52,49,46,49,51,51,55,49,52,93,44,91,45,55,52,46,50,51,52,50,56,56,44,52,49,46,49,52,51,48,48,56,93,44,91,45,55,52,46,51,54,55,53,49,44,52,49,46,50,48,51,50,52,49,93,44,91,45,55,52,46,53,48,51,50,49,50,44,52,49,46,48,56,53,56,55,51,93,44,91,45,55,52,46,51,48,49,54,56,53,44,52,48,46,57,57,57,49,55,51,93,44,91,45,55,52,46,50,55,50,48,54,51,44,52,48,46,56,57,55,52,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,55,55,52,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,54,51,52,48,55,57,44,52,55,46,54,48,48,48,50,55,93,44,91,45,49,49,51,46,54,55,50,51,51,53,44,52,55,46,56,57,54,52,57,49,93,44,91,45,49,49,51,46,56,51,50,53,53,54,44,52,55,46,57,55,54,52,51,52,93,44,91,45,49,49,51,46,56,56,52,53,52,49,44,52,56,46,48,53,49,57,93,44,91,45,49,49,52,46,48,50,57,48,52,50,44,52,56,46,48,53,49,54,53,51,93,44,91,45,49,49,52,46,48,51,56,53,52,53,44,52,55,46,57,54,50,53,53,93,44,91,45,49,49,52,46,52,57,50,49,57,44,52,55,46,57,54,49,57,56,57,93,44,91,45,49,49,52,46,52,55,55,50,57,44,52,55,46,55,56,57,57,52,49,93,44,91,45,49,49,52,46,54,48,52,52,54,50,44,52,55,46,55,56,57,56,55,49,93,44,91,45,49,49,52,46,53,56,51,55,54,44,52,55,46,54,48,49,55,49,56,93,44,91,45,49,49,52,46,51,53,48,51,54,52,44,52,55,46,54,48,50,49,52,50,93,44,91,45,49,49,52,46,51,53,51,48,56,44,52,55,46,51,56,57,56,53,93,44,91,45,49,49,52,46,50,48,51,48,50,54,44,52,55,46,51,53,53,55,52,54,93,44,91,45,49,49,52,46,49,56,55,49,55,44,52,55,46,49,51,56,49,57,49,93,44,91,45,49,49,51,46,57,51,51,53,48,51,44,52,55,46,49,51,56,50,56,57,93,44,91,45,49,49,51,46,56,50,49,52,52,55,44,52,55,46,49,56,49,55,48,57,93,44,91,45,49,49,51,46,56,55,49,49,49,44,52,55,46,51,57,49,57,55,93,44,91,45,49,49,51,46,57,52,50,56,56,54,44,52,55,46,52,55,57,54,55,56,93,44,91,45,49,49,51,46,57,50,52,56,50,54,44,52,55,46,54,48,48,50,51,57,93,44,91,45,49,49,51,46,54,51,52,48,55,57,44,52,55,46,54,48,48,48,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,49,34,44,34,78,65,77,69,34,58,34,75,101,110,101,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,56,53,56,56,55,44,50,55,46,50,48,57,51,48,56,93,44,91,45,57,55,46,57,56,53,52,57,52,44,50,54,46,55,56,48,57,49,55,93,44,91,45,57,55,46,57,53,55,52,48,53,44,50,54,46,54,49,49,55,54,57,93,44,91,45,57,55,46,56,54,49,54,56,56,44,50,54,46,53,57,55,57,57,53,93,44,91,45,57,55,46,50,50,53,51,55,52,44,50,54,46,54,48,48,50,50,55,93,44,91,45,57,55,46,51,48,48,52,50,51,44,50,54,46,56,51,52,54,49,51,93,44,91,45,57,55,46,51,50,51,50,49,57,44,50,55,46,48,49,48,50,53,54,93,44,91,45,57,55,46,50,56,56,51,51,55,44,50,55,46,50,55,55,53,56,52,93,44,91,45,57,55,46,56,49,52,57,51,52,44,50,55,46,50,55,49,56,57,51,93,44,91,45,57,55,46,57,56,53,56,56,55,44,50,55,46,50,48,57,51,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,66,111,114,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,57,49,50,56,52,44,51,50,46,57,54,49,56,51,56,93,44,91,45,49,48,49,46,54,56,56,55,52,44,51,50,46,53,50,53,50,50,50,93,44,91,45,49,48,49,46,49,55,52,53,55,49,44,51,50,46,53,50,52,49,49,50,93,44,91,45,49,48,49,46,49,55,52,53,54,50,44,51,50,46,53,50,55,55,48,51,93,44,91,45,49,48,49,46,49,55,51,51,55,56,44,51,50,46,57,54,51,53,57,55,93,44,91,45,49,48,49,46,53,53,55,52,51,52,44,51,50,46,57,54,49,48,50,53,93,44,91,45,49,48,49,46,54,57,49,50,56,52,44,51,50,46,57,54,49,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,80,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,49,52,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,51,56,54,48,56,44,51,55,46,56,55,52,51,48,52,93,44,91,45,57,48,46,49,49,48,53,51,55,44,51,55,46,54,55,49,51,52,93,44,91,45,57,48,46,49,52,54,55,55,56,44,51,55,46,54,52,49,54,49,56,93,44,91,45,57,48,46,49,52,54,55,54,51,44,51,55,46,53,57,55,52,51,52,93,44,91,45,56,57,46,56,54,49,49,50,51,44,51,55,46,53,57,57,50,56,54,93,44,91,45,56,57,46,54,48,56,57,51,52,44,51,55,46,53,57,55,52,50,55,93,44,91,45,56,57,46,53,50,49,56,53,53,44,51,55,46,53,54,54,50,49,52,93,44,91,45,56,57,46,53,50,49,53,54,52,44,51,55,46,53,55,50,49,53,54,93,44,91,45,56,57,46,53,49,50,48,48,57,44,51,55,46,54,56,53,53,50,53,93,44,91,45,56,57,46,54,55,52,51,50,49,44,51,55,46,56,48,51,49,53,50,93,44,91,45,56,57,46,56,52,52,55,56,54,44,51,55,46,57,48,53,53,55,50,93,44,91,45,56,57,46,57,51,56,54,48,56,44,51,55,46,56,55,52,51,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,49,49,34,44,34,78,65,77,69,34,58,34,83,97,110,32,83,97,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,57,48,54,50,50,44,51,49,46,52,54,48,57,50,55,93,44,91,45,57,57,46,48,57,50,51,49,55,44,51,48,46,57,52,49,48,48,50,93,44,91,45,57,56,46,57,54,52,54,49,50,44,51,48,46,57,50,49,51,54,56,93,44,91,45,57,56,46,52,52,53,55,56,50,44,51,48,46,57,50,49,52,51,57,93,44,91,45,57,56,46,52,51,57,54,56,55,44,51,49,46,48,50,57,53,51,55,93,44,91,45,57,56,46,53,54,50,55,51,57,44,51,49,46,50,51,48,53,56,50,93,44,91,45,57,56,46,54,50,53,54,50,56,44,51,49,46,50,54,57,55,57,56,93,44,91,45,57,56,46,54,57,54,54,51,52,44,51,49,46,52,48,55,50,56,55,93,44,91,45,57,56,46,57,54,51,53,57,51,44,51,49,46,52,52,54,50,53,49,93,44,91,45,57,56,46,57,57,49,54,48,56,44,51,49,46,52,56,52,48,55,49,93,44,91,45,57,57,46,48,57,48,54,50,50,44,51,49,46,52,54,48,57,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,75,105,110,103,102,105,115,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,54,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,49,48,52,48,53,44,51,54,46,49,54,52,56,56,57,93,44,91,45,57,56,46,50,48,55,49,48,52,44,51,53,46,55,50,53,49,56,55,93,44,91,45,57,55,46,54,55,52,48,50,54,44,51,53,46,55,50,53,57,55,93,44,91,45,57,55,46,54,55,53,54,49,55,44,51,54,46,49,54,52,54,54,51,93,44,91,45,57,56,46,49,48,51,57,48,52,44,51,54,46,49,54,52,56,55,55,93,44,91,45,57,56,46,50,49,48,52,48,53,44,51,54,46,49,54,52,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,66,117,114,108,101,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,54,51,54,50,57,44,51,48,46,53,53,55,49,54,57,93,44,91,45,57,54,46,55,53,51,56,51,53,44,51,48,46,51,50,57,51,52,56,93,44,91,45,57,54,46,54,52,48,56,56,51,44,51,48,46,50,57,54,55,56,54,93,44,91,45,57,54,46,50,57,57,49,55,51,44,51,48,46,51,55,57,49,53,50,93,44,91,45,57,54,46,50,56,50,53,54,52,44,51,48,46,52,50,54,54,49,52,93,44,91,45,57,54,46,53,54,54,57,56,51,44,51,48,46,54,57,53,54,55,93,44,91,45,57,54,46,54,50,49,50,56,49,44,51,48,46,55,51,48,56,49,57,93,44,91,45,57,54,46,57,54,51,54,50,57,44,51,48,46,53,53,55,49,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,70,117,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,55,52,51,44,34,98,101,100,115,34,58,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,49,50,54,49,53,44,52,51,46,50,56,54,49,52,51,93,44,91,45,55,52,46,54,57,54,55,56,55,44,52,51,46,49,56,51,49,49,54,93,44,91,45,55,52,46,55,53,57,56,57,53,44,52,51,46,48,52,55,52,50,51,93,44,91,45,55,52,46,53,52,50,51,54,55,44,52,50,46,57,56,53,53,51,93,44,91,45,55,52,46,48,57,55,52,54,55,44,52,50,46,57,56,50,57,51,52,93,44,91,45,55,52,46,49,52,48,49,52,55,44,52,51,46,50,53,51,57,55,57,93,44,91,45,55,52,46,53,51,52,54,53,55,44,52,51,46,50,50,56,49,49,53,93,44,91,45,55,52,46,55,49,50,54,49,53,44,52,51,46,50,56,54,49,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,83,117,110,102,108,111,119,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,53,51,50,44,34,98,101,100,115,34,58,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,53,55,48,48,50,44,51,51,46,57,56,55,53,56,54,93,44,91,45,57,48,46,54,53,56,54,44,51,51,46,54,49,54,50,55,50,93,44,91,45,57,48,46,55,54,51,53,48,57,44,51,51,46,53,50,57,51,56,57,93,44,91,45,57,48,46,55,54,51,55,55,51,44,51,51,46,50,55,48,51,53,57,93,44,91,45,57,48,46,55,49,54,50,55,55,44,51,51,46,50,55,48,48,51,50,93,44,91,45,57,48,46,53,53,53,50,49,49,44,51,51,46,50,55,48,53,51,51,93,44,91,45,57,48,46,52,53,51,50,51,51,44,51,51,46,51,50,57,52,56,52,93,44,91,45,57,48,46,52,53,49,54,52,51,44,51,51,46,56,49,49,51,57,93,44,91,45,57,48,46,52,53,49,48,49,50,44,51,51,46,57,56,53,54,56,57,93,44,91,45,57,48,46,54,53,55,48,48,50,44,51,51,46,57,56,55,53,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,72,101,110,110,101,112,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,53,52,55,56,44,34,98,101,100,115,34,58,53,56,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,50,49,54,53,51,44,52,53,46,50,52,54,54,49,56,93,44,91,45,57,51,46,54,53,56,57,49,55,44,52,53,46,49,57,51,53,53,49,93,44,91,45,57,51,46,55,54,54,56,48,56,44,52,53,46,48,53,55,51,49,50,93,44,91,45,57,51,46,55,54,55,51,54,55,44,52,52,46,57,55,55,57,54,52,93,44,91,45,57,51,46,55,54,55,48,52,49,44,52,52,46,56,57,48,56,54,50,93,44,91,45,57,51,46,53,50,48,55,48,54,44,52,52,46,56,57,49,53,48,50,93,44,91,45,57,51,46,53,50,48,52,51,49,44,52,52,46,56,48,52,50,54,51,93,44,91,45,57,51,46,51,50,57,54,49,53,44,52,52,46,55,57,49,48,56,54,93,44,91,45,57,51,46,49,55,56,53,51,57,44,52,52,46,56,56,56,51,51,56,93,44,91,45,57,51,46,50,50,54,57,50,57,44,52,53,46,48,51,53,54,55,49,93,44,91,45,57,51,46,51,49,49,53,52,52,44,52,53,46,49,52,51,55,55,56,93,44,91,45,57,51,46,53,49,50,49,57,44,52,53,46,50,52,53,54,56,51,93,44,91,45,57,51,46,53,50,49,54,53,51,44,52,53,46,50,52,54,54,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,101,110,116,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,52,52,51,44,34,98,101,100,115,34,58,52,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,51,56,50,48,51,44,52,49,46,49,53,51,54,51,51,93,44,91,45,55,56,46,48,55,55,55,52,44,52,48,46,57,53,56,56,50,52,93,44,91,45,55,56,46,50,49,57,56,49,51,44,52,48,46,57,49,50,55,52,49,93,44,91,45,55,56,46,51,53,57,57,49,50,44,52,48,46,55,51,50,53,57,50,93,44,91,45,55,56,46,49,49,54,53,50,49,44,52,48,46,55,51,57,49,50,55,93,44,91,45,55,55,46,57,52,52,50,53,44,52,48,46,54,57,49,53,53,55,93,44,91,45,55,55,46,56,50,52,53,48,54,44,52,48,46,55,52,51,54,56,49,93,44,91,45,55,55,46,54,56,49,51,51,52,44,52,48,46,55,50,57,55,53,56,93,44,91,45,55,55,46,51,54,52,49,56,44,52,48,46,56,52,54,57,51,55,93,44,91,45,55,55,46,49,52,52,49,54,44,52,49,46,48,52,52,51,51,56,93,44,91,45,55,55,46,53,48,56,53,57,54,44,52,48,46,57,54,50,57,51,56,93,44,91,45,55,55,46,54,50,49,55,53,57,44,52,49,46,48,57,49,49,56,53,93,44,91,45,55,55,46,55,52,49,57,49,49,44,52,49,46,49,48,55,54,49,52,93,44,91,45,55,55,46,55,57,56,53,54,44,52,49,46,49,56,49,57,53,93,44,91,45,55,56,46,48,51,56,50,48,51,44,52,49,46,49,53,51,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,66,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,54,57,49,44,34,98,101,100,115,34,58,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,48,53,50,53,50,44,50,56,46,54,57,48,50,51,57,93,44,91,45,57,56,46,48,56,57,55,54,52,44,50,56,46,54,54,50,57,55,57,93,44,91,45,57,55,46,56,49,55,55,49,54,44,50,56,46,49,55,54,56,52,56,93,44,91,45,57,55,46,53,54,55,54,50,50,44,50,56,46,49,50,57,54,56,51,93,44,91,45,57,55,46,53,52,49,48,55,49,44,50,56,46,49,54,52,54,54,57,93,44,91,45,57,55,46,51,55,53,53,55,57,44,50,56,46,51,56,56,54,56,52,93,44,91,45,57,55,46,53,53,51,57,49,54,44,50,56,46,52,53,53,50,55,56,93,44,91,45,57,55,46,53,55,55,48,53,56,44,50,56,46,53,50,50,53,52,55,93,44,91,45,57,55,46,54,57,54,57,52,53,44,50,56,46,53,52,49,56,53,54,93,44,91,45,57,55,46,55,55,56,53,51,44,50,56,46,54,54,56,48,50,55,93,44,91,45,57,55,46,57,49,53,49,48,54,44,50,56,46,55,49,57,54,52,56,93,44,91,45,57,56,46,48,48,53,50,53,50,44,50,56,46,54,57,48,50,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,72,101,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,53,57,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,48,54,56,54,50,44,51,53,46,55,56,57,51,53,52,93,44,91,45,56,56,46,54,49,51,54,49,49,44,51,53,46,53,56,56,48,56,57,93,44,91,45,56,56,46,52,49,52,53,56,50,44,51,53,46,52,56,50,51,51,57,93,44,91,45,56,56,46,51,54,48,56,50,57,44,51,53,46,52,49,56,57,55,50,93,44,91,45,56,56,46,50,52,49,54,55,55,44,51,53,46,52,50,51,50,54,51,93,44,91,45,56,56,46,49,57,48,52,54,53,44,51,53,46,54,48,57,48,56,56,93,44,91,45,56,56,46,49,55,57,49,55,55,44,51,53,46,56,49,54,55,56,53,93,44,91,45,56,56,46,53,54,57,48,52,55,44,51,53,46,56,50,52,56,50,57,93,44,91,45,56,56,46,54,48,54,56,54,50,44,51,53,46,55,56,57,51,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,84,97,109,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,51,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,54,55,52,54,51,44,52,50,46,50,49,48,49,52,93,44,91,45,57,50,46,55,54,53,57,57,57,44,52,49,46,56,54,50,51,55,51,93,44,91,45,57,50,46,50,57,56,49,54,52,44,52,49,46,56,54,50,55,55,57,93,44,91,45,57,50,46,50,57,56,55,57,50,44,52,50,46,50,57,55,53,50,55,93,44,91,45,57,50,46,53,51,51,53,49,44,52,50,46,50,57,55,48,48,49,93,44,91,45,57,50,46,55,54,56,48,57,44,52,50,46,50,57,54,54,56,93,44,91,45,57,50,46,55,54,55,52,54,51,44,52,50,46,50,49,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,83,101,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,57,50,44,34,98,101,100,115,34,58,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,54,56,49,48,54,44,51,55,46,51,56,55,55,55,57,93,44,91,45,49,48,49,46,48,54,54,52,53,49,44,51,54,46,57,57,55,57,50,50,93,44,91,45,49,48,48,46,57,52,53,52,54,51,44,51,54,46,57,57,56,52,49,54,93,44,91,45,49,48,48,46,54,51,51,51,50,55,44,51,55,46,48,48,48,49,48,51,93,44,91,45,49,48,48,46,54,53,50,55,50,56,44,51,55,46,51,56,55,54,50,55,93,44,91,45,49,48,49,46,48,54,56,49,48,54,44,51,55,46,51,56,55,55,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,54,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,57,57,50,49,55,44,52,49,46,49,54,48,56,54,55,93,44,91,45,57,51,46,48,57,55,53,57,53,44,52,48,46,56,57,56,52,53,49,93,44,91,45,57,50,46,54,51,57,48,57,49,44,52,48,46,56,57,56,56,56,54,93,44,91,45,57,50,46,54,52,48,51,54,49,44,52,49,46,49,54,49,50,57,56,93,44,91,45,57,50,46,56,54,57,55,55,49,44,52,49,46,49,54,49,48,54,54,93,44,91,45,57,51,46,48,57,57,50,49,55,44,52,49,46,49,54,48,56,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,82,105,99,104,97,114,100,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,48,57,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,53,50,52,55,51,44,52,48,46,50,54,49,57,48,52,93,44,91,45,57,54,46,48,49,48,49,55,54,44,52,48,46,50,54,49,52,56,50,93,44,91,45,57,54,46,48,49,48,54,56,44,52,48,46,48,48,48,54,53,49,93,44,91,45,57,53,46,55,56,56,49,49,49,44,52,48,46,48,48,48,52,54,50,93,44,91,45,57,53,46,51,51,57,56,57,54,44,51,57,46,57,57,57,57,57,57,93,44,91,45,57,53,46,51,48,56,50,57,44,51,57,46,57,57,57,57,57,56,93,44,91,45,57,53,46,52,49,57,57,57,57,44,52,48,46,48,53,48,52,52,93,44,91,45,57,53,46,51,57,54,53,52,57,44,52,48,46,49,50,52,55,48,49,93,44,91,45,57,53,46,53,53,50,52,55,51,44,52,48,46,50,54,49,57,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,114,105,115,116,105,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,50,51,49,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,50,49,55,52,55,51,44,51,57,46,56,49,51,54,54,54,93,44,91,45,56,57,46,52,48,57,52,55,53,44,51,57,46,55,52,51,53,51,93,44,91,45,56,57,46,53,51,53,48,50,56,44,51,57,46,54,52,49,49,51,56,93,44,91,45,56,57,46,53,51,51,54,53,53,44,51,57,46,53,50,52,53,57,50,93,44,91,45,56,57,46,53,51,48,56,51,54,44,51,57,46,51,52,56,56,54,52,93,44,91,45,56,57,46,49,51,57,56,48,55,44,51,57,46,51,52,56,56,56,56,93,44,91,45,56,57,46,48,50,53,52,53,51,44,51,57,46,51,52,54,49,49,53,93,44,91,45,56,57,46,48,50,53,54,56,44,51,57,46,54,53,52,49,56,51,93,44,91,45,56,57,46,49,51,57,49,50,53,44,51,57,46,54,53,53,49,51,49,93,44,91,45,56,57,46,49,52,49,57,54,55,44,51,57,46,56,48,49,50,55,51,93,44,91,45,56,57,46,50,49,55,52,55,51,44,51,57,46,56,49,51,54,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,78,97,115,115,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,53,55,56,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,52,55,48,49,53,44,51,48,46,55,49,50,52,52,52,93,44,91,45,56,49,46,55,49,56,49,48,57,44,51,48,46,55,52,52,56,48,54,93,44,91,45,56,49,46,57,48,52,56,53,53,44,51,48,46,56,50,56,51,52,93,44,91,45,56,50,46,48,51,57,55,57,53,44,51,48,46,55,52,55,50,57,55,93,44,91,45,56,50,46,48,48,53,56,49,44,51,48,46,53,54,53,51,53,56,93,44,91,45,56,50,46,48,52,57,57,53,56,44,51,48,46,51,54,50,52,55,50,93,44,91,45,56,50,46,48,52,57,50,51,54,44,51,48,46,50,55,51,52,51,50,93,44,91,45,56,49,46,56,51,49,50,50,55,44,51,48,46,52,54,55,52,51,55,93,44,91,45,56,49,46,54,50,52,53,49,51,44,51,48,46,53,56,54,50,51,50,93,44,91,45,56,49,46,53,52,51,48,49,56,44,51,48,46,53,50,51,56,56,57,93,44,91,45,56,49,46,51,53,56,55,57,51,44,51,48,46,53,48,49,53,48,52,93,44,91,45,56,49,46,51,56,48,56,54,55,44,51,48,46,54,50,55,51,52,53,93,44,91,45,56,49,46,51,52,55,48,49,53,44,51,48,46,55,49,50,52,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,53,54,54,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,57,57,57,51,52,44,51,48,46,56,51,48,53,53,50,93,44,91,45,56,53,46,54,49,57,48,49,49,44,51,48,46,55,52,51,56,54,56,93,44,91,45,56,53,46,56,52,52,52,50,49,44,51,48,46,55,48,51,49,51,93,44,91,45,56,53,46,57,49,53,50,57,55,44,51,48,46,54,51,54,52,50,55,93,44,91,45,56,53,46,56,54,54,56,49,56,44,51,48,46,52,56,55,54,51,55,93,44,91,45,56,53,46,57,57,50,55,51,54,44,51,48,46,51,56,57,51,50,93,44,91,45,56,53,46,56,53,51,53,44,51,48,46,52,52,48,54,50,51,93,44,91,45,56,53,46,52,56,55,57,54,56,44,51,48,46,52,51,54,54,53,53,93,44,91,45,56,53,46,52,51,52,55,56,50,44,51,48,46,53,54,55,53,54,93,44,91,45,56,53,46,52,51,50,50,55,52,44,51,48,46,55,56,53,52,53,55,93,44,91,45,56,53,46,53,57,57,57,51,52,44,51,48,46,56,51,48,53,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,97,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,50,57,56,55,54,44,51,49,46,52,51,54,54,54,49,93,44,91,45,56,52,46,54,51,55,53,55,57,44,51,49,46,52,51,51,57,50,54,93,44,91,45,56,52,46,54,52,49,54,55,51,44,51,49,46,50,53,56,57,54,55,93,44,91,45,56,52,46,53,51,55,49,48,49,44,51,49,46,50,53,53,57,51,50,93,44,91,45,56,52,46,53,52,50,54,53,51,44,51,49,46,48,55,57,48,50,57,93,44,91,45,56,52,46,53,48,56,48,55,56,44,51,49,46,48,55,56,52,93,44,91,45,56,52,46,51,52,48,53,53,50,44,51,49,46,51,48,53,51,52,49,93,44,91,45,56,52,46,49,57,55,57,56,54,44,51,49,46,51,53,55,53,50,49,93,44,91,45,56,52,46,49,52,49,49,50,52,44,51,49,46,52,52,48,49,55,57,93,44,91,45,56,52,46,52,50,57,56,55,54,44,51,49,46,52,51,54,54,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,55,53,34,44,34,78,65,77,69,34,58,34,84,104,111,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,55,51,48,44,34,98,101,100,115,34,58,50,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,49,54,54,52,52,44,51,49,46,48,55,55,57,55,49,93,44,91,45,56,52,46,48,55,55,49,49,57,44,51,48,46,57,49,52,57,54,53,93,44,91,45,56,52,46,48,56,51,55,53,55,44,51,48,46,54,55,53,56,48,52,93,44,91,45,56,52,46,48,48,55,52,53,52,44,51,48,46,54,55,50,49,50,55,93,44,91,45,56,51,46,55,52,51,55,50,57,44,51,48,46,54,53,56,51,57,54,93,44,91,45,56,51,46,55,51,54,49,53,56,44,51,49,46,48,51,55,54,55,57,93,44,91,45,56,52,46,48,48,51,56,55,54,44,51,49,46,48,52,49,53,56,50,93,44,91,45,56,52,46,48,48,51,54,50,55,44,51,49,46,48,55,55,50,57,93,44,91,45,56,52,46,49,49,54,54,52,52,44,51,49,46,48,55,55,57,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,50,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,48,49,54,52,54,44,51,56,46,48,51,55,50,55,93,44,91,45,56,53,46,49,54,55,56,51,52,44,51,55,46,57,55,49,56,48,57,93,44,91,45,56,53,46,49,53,50,55,57,55,44,51,55,46,56,57,55,54,54,49,93,44,91,45,56,53,46,48,51,48,53,50,56,44,51,55,46,56,57,49,53,51,56,93,44,91,45,56,52,46,57,51,51,48,56,53,44,51,55,46,57,53,52,49,56,54,93,44,91,45,56,52,46,55,57,54,51,50,55,44,51,55,46,57,55,48,48,56,56,93,44,91,45,56,52,46,56,54,52,57,48,56,44,51,56,46,49,49,54,57,50,54,93,44,91,45,56,53,46,48,50,51,55,49,49,44,51,56,46,49,50,57,48,53,50,93,44,91,45,56,53,46,49,48,49,54,52,54,44,51,56,46,48,51,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,79,108,100,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,51,55,52,44,34,98,101,100,115,34,58,49,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,51,51,49,56,57,44,51,56,46,53,50,52,51,55,53,93,44,91,45,56,53,46,53,56,54,48,51,51,44,51,56,46,52,53,48,48,57,50,93,44,91,45,56,53,46,54,51,55,56,54,49,44,51,56,46,51,56,48,50,54,51,93,44,91,45,56,53,46,52,54,56,50,48,54,44,51,56,46,50,56,53,51,48,57,93,44,91,45,56,53,46,50,56,51,48,56,50,44,51,56,46,51,53,56,48,53,52,93,44,91,45,56,53,46,51,49,52,48,48,54,44,51,56,46,52,57,50,53,57,50,93,44,91,45,56,53,46,52,51,51,49,56,57,44,51,56,46,53,50,52,51,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,67,104,101,114,111,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,57,49,48,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,53,51,50,51,50,44,51,52,46,52,49,50,53,57,93,44,91,45,56,52,46,54,53,57,50,52,49,44,51,52,46,48,55,56,50,52,93,44,91,45,56,52,46,52,49,56,57,50,55,44,51,52,46,48,55,51,50,57,56,93,44,91,45,56,52,46,51,50,56,50,54,51,44,51,52,46,49,56,54,49,52,52,93,44,91,45,56,52,46,50,53,56,55,52,51,44,51,52,46,49,56,53,57,48,57,93,44,91,45,56,52,46,50,53,56,48,55,53,44,51,52,46,51,51,53,49,53,54,93,44,91,45,56,52,46,50,53,55,53,56,54,44,51,52,46,51,56,48,57,57,50,93,44,91,45,56,52,46,53,56,50,54,51,44,51,52,46,51,56,49,52,57,50,93,44,91,45,56,52,46,54,53,51,50,51,50,44,51,52,46,52,49,50,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,79,108,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,55,54,52,51,57,50,44,52,54,46,57,56,49,51,48,54,93,44,91,45,49,48,48,46,57,51,53,57,56,51,44,52,54,46,57,56,50,56,52,93,44,91,45,49,48,48,46,56,56,50,49,55,50,44,52,55,46,48,49,53,49,49,53,93,44,91,45,49,48,48,46,57,54,53,52,52,44,52,55,46,49,53,55,49,51,52,93,44,91,45,49,48,49,46,48,54,48,52,50,52,44,52,55,46,50,57,51,50,57,51,93,44,91,45,49,48,49,46,50,53,55,48,51,49,44,52,55,46,50,54,52,56,57,53,93,44,91,45,49,48,49,46,50,53,55,54,51,51,44,52,55,46,50,52,49,51,52,51,93,44,91,45,49,48,49,46,55,54,52,54,52,55,44,52,55,46,50,52,49,53,49,56,93,44,91,45,49,48,49,46,55,54,52,51,57,50,44,52,54,46,57,56,49,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,79,115,99,101,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,54,52,53,53,52,44,52,52,46,49,54,52,56,54,49,93,44,91,45,56,53,46,53,54,50,52,51,51,44,52,51,46,56,49,53,52,56,51,93,44,91,45,56,53,46,48,56,56,56,49,49,44,52,51,46,56,49,51,54,55,54,93,44,91,45,56,53,46,48,56,55,52,48,51,44,52,52,46,49,54,52,50,52,50,93,44,91,45,56,53,46,51,51,52,55,55,55,44,52,52,46,49,54,53,49,49,56,93,44,91,45,56,53,46,53,54,52,53,53,52,44,52,52,46,49,54,52,56,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,77,99,78,97,105,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,57,48,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,51,54,50,53,55,50,44,51,53,46,51,56,48,57,57,52,93,44,91,45,56,56,46,54,52,48,57,51,52,44,51,53,46,51,54,49,48,49,55,93,44,91,45,56,56,46,55,49,57,55,54,49,44,51,53,46,50,52,55,53,53,93,44,91,45,56,56,46,55,56,49,55,54,56,44,51,53,46,50,52,55,53,56,55,93,44,91,45,56,56,46,55,56,54,54,49,50,44,51,52,46,57,57,53,50,53,50,93,44,91,45,56,56,46,51,56,48,53,48,56,44,51,52,46,57,57,53,54,49,93,44,91,45,56,56,46,51,54,50,53,55,50,44,51,53,46,51,56,48,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,52,53,50,44,34,98,101,100,115,34,58,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,57,55,57,55,55,55,44,52,55,46,50,54,49,55,48,57,93,44,91,45,49,49,56,46,57,56,50,54,53,50,44,52,54,46,57,49,49,51,52,52,93,44,91,45,49,49,57,46,51,54,56,54,54,50,44,52,54,46,57,49,50,53,54,50,93,44,91,45,49,49,57,46,51,54,57,52,50,57,44,52,54,46,55,51,55,54,57,53,93,44,91,45,49,49,56,46,50,49,48,50,52,51,44,52,54,46,55,51,56,56,51,51,93,44,91,45,49,49,56,46,48,49,50,52,52,50,44,52,54,46,55,57,48,55,56,93,44,91,45,49,49,55,46,57,53,57,51,51,53,44,52,54,46,57,49,52,56,49,49,93,44,91,45,49,49,55,46,57,54,48,57,51,44,52,55,46,50,54,48,53,54,56,93,44,91,45,49,49,56,46,57,55,57,55,55,55,44,52,55,46,50,54,49,55,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,68,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,57,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,55,53,51,56,53,44,51,55,46,53,56,49,53,55,93,44,91,45,57,52,46,48,56,50,48,56,51,44,51,55,46,51,52,57,50,57,49,93,44,91,45,57,52,46,48,53,50,51,49,51,44,51,55,46,50,57,48,48,55,56,93,44,91,45,57,51,46,54,50,53,56,52,52,44,51,55,46,50,56,50,48,49,49,93,44,91,45,57,51,46,54,50,49,49,53,51,44,51,55,46,52,50,55,52,50,51,93,44,91,45,57,51,46,54,49,54,48,51,51,44,51,55,46,53,55,50,54,56,57,93,44,91,45,57,52,46,48,55,53,51,56,53,44,51,55,46,53,56,49,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,83,116,46,32,77,97,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,55,51,52,44,34,98,101,100,115,34,58,49,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,55,49,57,53,49,44,50,57,46,57,53,53,57,56,57,93,44,91,45,57,49,46,54,50,52,55,48,57,44,50,57,46,57,52,53,50,55,53,93,44,91,45,57,49,46,55,49,49,49,52,57,44,50,57,46,56,52,54,48,54,53,93,44,91,45,57,49,46,57,51,53,49,54,50,44,50,57,46,54,55,50,53,55,56,93,44,91,45,57,49,46,55,50,51,50,53,52,44,50,57,46,54,54,49,50,57,55,93,44,91,45,57,49,46,53,57,49,51,44,50,57,46,53,48,55,55,48,49,93,44,91,45,57,49,46,53,57,49,56,54,52,44,50,57,46,51,53,57,51,55,53,93,44,91,45,57,49,46,52,50,49,49,50,56,44,50,57,46,51,48,50,56,50,56,93,44,91,45,57,49,46,51,53,52,50,55,50,44,50,57,46,50,51,57,54,48,54,93,44,91,45,57,49,46,50,49,50,49,53,55,44,50,57,46,52,50,51,52,50,57,93,44,91,45,57,49,46,50,54,48,54,54,49,44,50,57,46,53,52,52,53,49,93,44,91,45,57,49,46,48,56,50,54,48,50,44,50,57,46,54,50,54,51,54,56,93,44,91,45,57,49,46,49,48,48,48,49,44,50,57,46,54,57,57,52,48,50,93,44,91,45,57,49,46,51,56,54,52,57,49,44,50,57,46,55,56,51,54,56,49,93,44,91,45,57,49,46,51,55,51,54,52,50,44,50,57,46,56,51,52,52,48,49,93,44,91,45,57,49,46,52,55,49,57,53,49,44,50,57,46,57,53,53,57,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,67,104,105,116,116,101,110,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,48,53,50,44,34,98,101,100,115,34,58,53,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,50,50,56,56,53,52,44,52,52,46,55,50,50,56,54,54,93,44,91,45,55,51,46,50,51,51,50,48,57,44,52,52,46,54,52,57,55,57,49,93,44,91,45,55,51,46,51,54,49,52,53,53,44,52,52,46,53,54,51,53,54,51,93,44,91,45,55,51,46,51,51,56,54,51,54,44,52,52,46,53,52,54,56,52,52,93,44,91,45,55,51,46,50,57,54,48,53,50,44,52,52,46,52,50,56,51,51,52,93,44,91,45,55,51,46,51,49,51,50,56,51,44,52,52,46,50,54,52,49,51,93,44,91,45,55,50,46,57,55,51,51,49,56,44,52,52,46,50,57,51,52,50,93,44,91,45,55,50,46,57,53,50,49,54,55,44,52,52,46,49,54,49,50,55,49,93,44,91,45,55,50,46,56,48,52,57,57,53,44,52,52,46,52,53,49,54,55,54,93,44,91,45,55,50,46,56,50,57,48,55,51,44,52,52,46,53,53,50,50,55,51,93,44,91,45,55,50,46,57,50,52,49,49,50,44,52,52,46,54,51,51,48,53,49,93,44,91,45,55,51,46,50,50,56,56,53,52,44,52,52,46,55,50,50,56,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,111,109,101,114,195,173,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,53,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,57,48,54,55,54,44,49,56,46,50,53,56,56,52,93,44,91,45,54,54,46,50,48,54,49,51,53,44,49,56,46,50,55,54,54,54,93,44,91,45,54,54,46,50,54,54,52,54,54,44,49,56,46,50,52,53,50,55,93,44,91,45,54,54,46,50,52,48,52,54,44,49,56,46,49,56,52,55,57,52,93,44,91,45,54,54,46,49,54,57,49,50,54,44,49,56,46,50,50,52,50,57,93,44,91,45,54,54,46,49,57,48,54,55,54,44,49,56,46,50,53,56,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,77,97,117,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,72,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,53,50,56,49,44,34,98,101,100,115,34,58,51,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,53,54,46,53,55,55,50,50,52,44,50,48,46,55,52,51,49,51,93,44,91,45,49,53,54,46,53,44,50,48,46,54,57,57,48,56,55,93,44,91,45,49,53,54,46,55,48,52,52,52,50,44,50,48,46,54,48,52,53,57,49,93,44,91,45,49,53,54,46,55,53,44,50,48,46,52,53,52,51,51,53,93,44,91,45,49,53,54,46,53,51,51,52,53,54,44,50,48,46,52,54,50,57,56,93,44,91,45,49,53,54,46,52,53,57,56,54,56,44,50,48,46,53,53,55,54,54,54,93,44,91,45,49,53,54,46,50,57,48,52,55,50,44,50,48,46,53,51,54,56,57,53,93,44,91,45,49,53,54,46,48,49,54,51,48,53,44,50,48,46,54,49,50,51,55,52,93,44,91,45,49,53,53,46,57,50,54,55,56,53,44,50,48,46,55,56,49,55,51,53,93,44,91,45,49,53,54,46,49,57,53,50,57,54,44,50,48,46,57,55,49,53,48,50,93,44,91,45,49,53,54,46,51,51,57,50,49,56,44,50,49,46,48,48,52,49,57,53,93,44,91,45,49,53,54,46,52,53,49,48,57,44,50,48,46,57,54,56,55,53,56,93,44,91,45,49,53,54,46,53,57,49,48,51,49,44,50,49,46,48,57,50,52,49,49,93,44,91,45,49,53,54,46,55,51,53,48,49,55,44,50,49,46,48,48,53,55,50,57,93,44,91,45,49,53,54,46,55,50,49,55,51,55,44,50,48,46,56,52,50,52,51,54,93,44,91,45,49,53,54,46,53,55,55,50,50,52,44,50,48,46,55,52,51,49,51,93,93,93,44,91,91,91,45,49,53,55,46,48,49,53,48,53,56,44,50,49,46,50,54,49,49,57,52,93,44,91,45,49,53,55,46,50,50,48,50,49,50,44,50,49,46,50,55,56,52,57,54,93,44,91,45,49,53,55,46,51,48,53,50,53,50,44,50,49,46,50,53,50,56,56,49,93,44,91,45,49,53,55,46,51,54,54,53,52,57,44,50,49,46,49,48,48,57,53,54,93,44,91,45,49,53,55,46,51,50,49,50,52,52,44,50,49,46,48,53,48,54,55,54,93,44,91,45,49,53,55,46,48,55,50,49,52,57,44,50,49,46,48,53,55,53,57,55,93,44,91,45,49,53,54,46,57,49,52,53,51,53,44,50,48,46,57,57,55,53,56,52,93,44,91,45,49,53,54,46,56,51,54,57,53,52,44,50,49,93,44,91,45,49,53,54,46,54,55,50,53,56,54,44,50,49,46,48,57,53,55,49,55,93,44,91,45,49,53,54,46,55,50,50,48,55,54,44,50,49,46,50,50,54,48,54,50,93,44,91,45,49,53,54,46,56,55,49,49,57,53,44,50,49,46,50,51,49,56,56,55,93,44,91,45,49,53,54,46,57,49,55,49,44,50,49,46,49,54,51,55,49,93,44,91,45,49,53,55,46,48,49,52,54,49,50,44,50,49,46,49,56,50,51,52,57,93,44,91,45,49,53,55,46,48,49,53,48,53,56,44,50,49,46,50,54,49,49,57,52,93,93,93,44,91,91,91,45,49,53,55,46,49,49,54,49,56,55,44,50,48,46,57,48,50,56,49,51,93,44,91,45,49,53,54,46,57,57,52,52,51,52,44,50,48,46,54,57,51,53,55,53,93,44,91,45,49,53,54,46,56,55,53,44,50,48,46,54,57,48,57,54,53,93,44,91,45,49,53,54,46,55,53,44,50,48,46,56,48,55,54,48,53,93,44,91,45,49,53,54,46,56,50,51,51,50,57,44,50,48,46,57,51,48,56,48,56,93,44,91,45,49,53,54,46,57,49,51,51,50,51,44,50,48,46,57,55,55,57,54,51,93,44,91,45,49,53,55,46,48,51,53,50,54,56,44,50,48,46,57,56,51,51,48,50,93,44,91,45,49,53,55,46,49,49,54,49,56,55,44,50,48,46,57,48,50,56,49,51,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,76,97,102,111,117,114,99,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,50,49,52,44,34,98,101,100,115,34,58,50,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,48,48,54,55,52,51,44,50,57,46,55,49,52,55,55,49,93,44,91,45,57,48,46,55,54,54,56,52,57,44,50,57,46,54,57,53,52,55,55,93,44,91,45,57,48,46,54,49,57,51,48,57,44,50,57,46,53,57,56,48,57,50,93,44,91,45,57,48,46,51,56,53,53,51,57,44,50,57,46,51,54,55,55,52,57,93,44,91,45,57,48,46,52,48,57,52,49,51,44,50,57,46,50,51,57,55,51,56,93,44,91,45,57,48,46,52,48,57,51,56,44,50,56,46,57,57,53,51,52,93,44,91,45,57,48,46,50,48,48,54,57,54,44,50,57,46,48,51,54,49,56,52,93,44,91,45,57,48,46,48,56,57,48,57,50,44,50,57,46,48,57,52,54,52,56,93,44,91,45,57,48,46,48,57,48,51,51,55,44,50,57,46,49,56,48,53,55,52,93,44,91,45,57,48,46,48,48,48,48,54,56,44,50,57,46,50,57,52,57,49,50,93,44,91,45,57,48,46,48,50,48,54,50,50,44,50,57,46,52,50,56,52,54,49,93,44,91,45,57,48,46,49,51,55,53,48,52,44,50,57,46,52,55,55,49,54,51,93,44,91,45,57,48,46,49,55,48,51,56,55,44,50,57,46,54,56,51,53,50,51,93,44,91,45,57,48,46,50,50,56,49,53,55,44,50,57,46,54,57,50,48,50,56,93,44,91,45,57,48,46,51,52,54,49,57,49,44,50,57,46,54,57,51,51,48,50,93,44,91,45,57,48,46,51,55,49,57,55,56,44,50,57,46,55,53,57,50,51,57,93,44,91,45,57,48,46,53,50,57,54,48,49,44,50,57,46,56,56,52,57,57,55,93,44,91,45,57,48,46,54,53,54,51,49,50,44,50,57,46,56,56,57,50,52,54,93,44,91,45,57,48,46,56,56,53,53,56,57,44,50,57,46,57,48,53,51,53,51,93,44,91,45,57,49,46,48,48,54,55,52,51,44,50,57,46,55,49,52,55,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,77,117,115,99,97,116,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,57,53,48,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,54,54,52,52,56,44,52,49,46,53,57,56,51,55,51,93,44,91,45,57,49,46,51,54,56,53,50,49,44,52,49,46,52,50,51,49,55,56,93,44,91,45,57,49,46,51,54,57,51,51,50,44,52,49,46,51,51,54,48,54,51,93,44,91,45,57,49,46,48,55,50,48,52,53,44,52,49,46,51,51,51,53,57,57,93,44,91,45,57,49,46,48,52,56,50,53,57,44,52,49,46,52,48,57,55,52,56,93,44,91,45,57,48,46,55,56,54,50,56,50,44,52,49,46,52,53,50,56,56,56,93,44,91,45,57,48,46,55,56,51,56,49,50,44,52,49,46,53,57,54,53,51,49,93,44,91,45,57,48,46,56,57,57,56,53,51,44,52,49,46,53,57,55,49,51,51,93,44,91,45,57,49,46,51,54,54,52,52,56,44,52,49,46,53,57,56,51,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,82,111,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,52,52,50,44,34,98,101,100,115,34,58,51,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,54,51,54,53,51,44,51,48,46,57,57,57,48,50,57,93,44,91,45,56,55,46,50,56,50,50,57,44,51,48,46,57,50,52,56,50,57,93,44,91,45,56,55,46,51,49,50,52,48,57,44,51,48,46,55,51,52,55,55,93,44,91,45,56,55,46,50,54,48,54,55,55,44,51,48,46,54,50,49,51,54,51,93,44,91,45,56,55,46,49,50,52,57,54,56,44,51,48,46,53,48,48,49,57,54,93,44,91,45,56,55,46,49,55,56,57,54,56,44,51,48,46,51,51,52,53,57,57,93,44,91,45,56,54,46,57,50,48,49,49,51,44,51,48,46,51,56,54,53,54,55,93,44,91,45,56,54,46,57,49,54,54,48,55,44,51,48,46,51,49,56,55,50,52,93,44,91,45,56,54,46,56,48,48,53,53,52,44,51,48,46,51,51,52,52,57,50,93,44,91,45,56,54,46,55,56,53,54,57,50,44,51,48,46,57,57,54,57,56,93,44,91,45,56,55,46,49,54,51,54,53,51,44,51,48,46,57,57,57,48,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,49,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,48,52,50,53,50,44,51,56,46,57,48,52,50,48,52,93,44,91,45,56,54,46,57,50,52,49,56,54,44,51,56,46,53,48,53,51,53,56,93,44,91,45,56,54,46,54,56,50,51,53,57,44,51,56,46,53,50,54,51,55,56,93,44,91,45,56,54,46,54,56,51,49,48,50,44,51,56,46,54,56,54,53,54,49,93,44,91,45,56,54,46,54,56,50,56,53,51,44,51,56,46,57,48,52,54,57,55,93,44,91,45,56,54,46,57,48,52,50,53,50,44,51,56,46,57,48,52,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,51,34,44,34,78,65,77,69,34,58,34,82,111,99,107,99,97,115,116,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,56,50,55,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,55,56,48,53,44,51,55,46,53,51,57,48,54,52,93,44,91,45,56,52,46,52,52,54,55,49,57,44,51,55,46,52,56,53,56,57,51,93,44,91,45,56,52,46,53,48,50,57,51,50,44,51,55,46,51,50,56,56,48,49,93,44,91,45,56,52,46,50,56,57,48,55,54,44,51,55,46,49,53,49,55,52,93,44,91,45,56,52,46,50,49,54,50,52,49,44,51,55,46,50,56,48,50,53,54,93,44,91,45,56,52,46,49,51,55,56,57,56,44,51,55,46,51,49,57,55,53,57,93,44,91,45,56,52,46,49,57,57,52,56,57,44,51,55,46,53,50,50,56,53,56,93,44,91,45,56,52,46,51,52,55,56,48,53,44,51,55,46,53,51,57,48,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,51,34,44,34,78,65,77,69,34,58,34,84,114,105,109,98,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,51,51,48,57,57,44,51,56,46,55,51,54,50,50,56,93,44,91,45,56,53,46,52,53,50,48,56,55,44,51,56,46,55,48,57,55,56,53,93,44,91,45,56,53,46,52,50,56,50,56,51,44,51,56,46,53,56,54,51,50,53,93,44,91,45,56,53,46,52,51,51,49,56,57,44,51,56,46,53,50,52,51,55,53,93,44,91,45,56,53,46,51,49,52,48,48,54,44,51,56,46,52,57,50,53,57,50,93,44,91,45,56,53,46,49,54,56,50,55,44,51,56,46,53,56,53,52,52,56,93,44,91,45,56,53,46,51,51,51,48,57,57,44,51,56,46,55,51,54,50,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,67,104,97,116,116,111,111,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,49,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,48,55,55,52,56,44,51,52,46,53,56,55,52,56,51,93,44,91,45,56,53,46,53,50,55,50,54,49,44,51,52,46,53,56,56,54,56,51,93,44,91,45,56,53,46,53,49,51,54,49,50,44,51,52,46,53,50,51,56,50,53,93,44,91,45,56,53,46,52,54,50,50,48,55,44,51,52,46,50,56,54,51,56,54,93,44,91,45,56,53,46,49,56,48,53,52,56,44,51,52,46,52,51,53,57,57,54,93,44,91,45,56,53,46,49,48,55,55,52,56,44,51,52,46,53,56,55,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,68,105,108,108,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,55,49,44,34,98,101,100,115,34,58,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,53,48,48,50,52,44,51,52,46,54,50,49,48,53,51,93,44,91,45,55,57,46,54,51,51,52,49,51,44,51,52,46,50,57,55,57,57,52,93,44,91,45,55,57,46,53,52,55,57,51,44,51,52,46,50,51,48,57,49,51,93,44,91,45,55,57,46,52,56,48,55,49,50,44,51,52,46,50,56,56,48,56,49,93,44,91,45,55,57,46,49,50,56,49,54,53,44,51,52,46,50,53,51,54,53,50,93,44,91,45,55,57,46,48,55,49,50,49,49,44,51,52,46,50,57,57,51,52,50,93,44,91,45,55,57,46,52,53,48,48,50,52,44,51,52,46,54,50,49,48,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,57,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,55,52,56,48,53,44,51,52,46,57,55,51,57,93,44,91,45,55,55,46,53,48,50,55,55,49,44,51,52,46,57,54,57,54,51,53,93,44,91,45,55,55,46,51,54,54,55,54,56,44,51,52,46,57,48,56,54,53,93,44,91,45,55,55,46,50,54,55,52,51,51,44,51,52,46,57,50,53,53,51,55,93,44,91,45,55,55,46,49,54,53,57,56,54,44,51,52,46,55,56,53,48,51,50,93,44,91,45,55,55,46,48,55,56,50,54,51,44,51,52,46,56,49,49,51,50,50,93,44,91,45,55,55,46,49,48,56,56,53,49,44,51,52,46,56,51,48,55,56,93,44,91,45,55,55,46,49,48,57,49,56,57,44,51,53,46,48,54,55,50,48,54,93,44,91,45,55,55,46,49,56,55,54,55,57,44,51,53,46,48,56,49,48,56,54,93,44,91,45,55,55,46,52,55,51,54,57,50,44,51,53,46,50,50,56,57,56,53,93,44,91,45,55,55,46,54,48,49,50,56,50,44,51,53,46,48,55,49,51,54,56,93,44,91,45,55,55,46,55,51,49,48,50,54,44,51,53,46,48,48,56,49,51,56,93,44,91,45,55,55,46,54,55,52,56,48,53,44,51,52,46,57,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,83,99,111,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,49,55,57,55,56,44,52,48,46,54,48,48,53,50,57,93,44,91,45,57,50,46,51,53,48,56,48,55,44,52,48,46,53,57,55,50,55,53,93,44,91,45,57,50,46,51,52,57,57,55,53,44,52,48,46,51,52,54,53,48,53,93,44,91,45,57,50,46,51,52,55,56,48,49,44,52,48,46,51,48,50,55,53,54,93,44,91,45,57,49,46,57,52,57,55,52,55,44,52,48,46,51,48,48,56,51,50,93,44,91,45,57,49,46,57,52,51,49,49,50,44,52,48,46,54,48,53,56,50,55,93,44,91,45,57,50,46,49,55,57,55,56,44,52,48,46,54,48,48,53,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,78,101,109,97,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,48,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,50,51,57,50,44,52,48,46,48,48,48,56,56,49,93,44,91,45,57,54,46,50,51,56,57,54,57,44,51,57,46,53,54,54,50,50,93,44,91,45,57,54,46,48,51,53,57,53,50,44,51,57,46,53,54,54,49,93,44,91,45,57,53,46,55,56,57,49,48,49,44,51,57,46,53,54,53,57,49,54,93,44,91,45,57,53,46,55,56,56,57,52,49,44,51,57,46,54,53,51,48,48,49,93,44,91,45,57,53,46,55,56,56,49,49,49,44,52,48,46,48,48,48,52,54,50,93,44,91,45,57,54,46,48,49,48,54,56,44,52,48,46,48,48,48,54,53,49,93,44,91,45,57,54,46,50,51,57,50,44,52,48,46,48,48,48,56,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,78,111,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,56,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,55,55,55,57,52,44,52,48,46,48,48,49,54,48,50,93,44,91,45,49,48,48,46,49,56,48,51,53,49,44,51,57,46,53,54,54,56,57,93,44,91,45,49,48,48,46,49,54,49,54,54,55,44,51,57,46,53,54,55,50,55,55,93,44,91,45,57,57,46,54,50,55,57,53,51,44,51,57,46,53,54,55,52,51,55,93,44,91,45,57,57,46,54,50,53,51,50,52,44,52,48,46,48,48,49,56,53,57,93,44,91,45,57,57,46,54,50,56,50,53,52,44,52,48,46,48,48,49,56,52,55,93,44,91,45,49,48,48,46,49,55,55,55,57,52,44,52,48,46,48,48,49,54,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,65,103,117,97,115,32,66,117,101,110,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,48,56,48,52,55,53,44,49,56,46,50,57,55,50,57,53,93,44,91,45,54,54,46,49,52,51,56,54,49,44,49,56,46,50,55,57,53,57,93,44,91,45,54,54,46,49,57,48,54,55,54,44,49,56,46,50,53,56,56,52,93,44,91,45,54,54,46,49,54,57,49,50,54,44,49,56,46,50,50,52,50,57,93,44,91,45,54,54,46,49,49,55,55,55,52,44,49,56,46,50,48,57,57,52,57,93,44,91,45,54,54,46,48,54,54,49,48,51,44,49,56,46,51,48,51,51,50,49,93,44,91,45,54,54,46,48,56,48,52,55,53,44,49,56,46,50,57,55,50,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,97,116,97,195,177,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,56,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,49,48,56,50,56,49,44,49,56,46,52,51,56,57,48,50,93,44,91,45,54,54,46,49,50,57,52,48,51,44,49,56,46,52,54,53,54,51,50,93,44,91,45,54,54,46,49,54,57,53,49,54,44,49,56,46,52,51,48,57,57,56,93,44,91,45,54,54,46,49,51,49,53,56,44,49,56,46,52,50,52,54,53,54,93,44,91,45,54,54,46,49,48,56,50,56,49,44,49,56,46,52,51,56,57,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,70,117,114,110,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,55,56,54,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,57,55,56,48,55,44,52,48,46,51,53,48,48,50,55,93,44,91,45,49,48,48,46,49,57,51,53,57,57,44,52,48,46,48,48,49,54,54,51,93,44,91,45,49,48,48,46,49,55,55,55,57,52,44,52,48,46,48,48,49,54,48,50,93,44,91,45,57,57,46,54,50,56,50,53,52,44,52,48,46,48,48,49,56,52,55,93,44,91,45,57,57,46,54,51,48,52,53,57,44,52,48,46,51,53,49,49,50,93,44,91,45,57,57,46,54,52,50,50,48,57,44,52,48,46,51,53,49,50,93,44,91,45,49,48,48,46,48,57,52,55,57,56,44,52,48,46,51,53,49,50,52,53,93,44,91,45,49,48,48,46,49,57,55,56,48,55,44,52,48,46,51,53,48,48,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,68,101,99,97,116,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,56,51,51,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,51,48,56,53,53,44,51,49,46,48,54,57,49,57,93,44,91,45,56,52,46,55,53,53,57,49,55,44,51,48,46,56,56,53,50,55,93,44,91,45,56,52,46,56,54,51,52,54,53,44,51,48,46,55,49,49,52,57,52,93,44,91,45,56,52,46,51,56,48,55,48,53,44,51,48,46,54,56,57,57,57,51,93,44,91,45,56,52,46,51,55,54,54,49,50,44,51,49,46,48,55,56,56,56,51,93,44,91,45,56,52,46,53,48,56,48,55,56,44,51,49,46,48,55,56,52,93,44,91,45,56,52,46,53,52,50,54,53,51,44,51,49,46,48,55,57,48,50,57,93,44,91,45,56,52,46,55,51,48,56,53,53,44,51,49,46,48,54,57,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,54,49,51,44,34,98,101,100,115,34,58,51,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,48,49,52,55,51,44,52,48,46,48,48,52,53,50,49,93,44,91,45,56,53,46,50,50,49,49,49,56,44,51,57,46,55,56,56,52,52,57,93,44,91,45,56,53,46,49,56,53,48,56,57,44,51,57,46,55,49,53,53,49,53,93,44,91,45,56,53,46,48,51,52,53,55,53,44,51,57,46,55,49,52,55,54,52,93,44,91,45,56,52,46,56,49,52,51,55,51,44,51,57,46,55,50,54,54,50,93,44,91,45,56,52,46,56,49,50,52,49,44,51,57,46,57,49,54,57,49,53,93,44,91,45,56,52,46,56,49,48,56,50,53,44,52,48,46,48,48,53,48,55,55,93,44,91,45,56,53,46,50,48,49,52,55,51,44,52,48,46,48,48,52,53,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,54,56,48,44,34,98,101,100,115,34,58,49,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,49,51,53,49,50,44,51,55,46,48,54,49,48,55,50,93,44,91,45,56,54,46,49,54,54,55,52,44,51,54,46,57,51,52,48,49,53,93,44,91,45,56,54,46,48,55,48,50,57,51,44,51,54,46,56,55,56,49,56,56,93,44,91,45,56,54,46,48,54,57,57,53,55,44,51,54,46,56,48,53,55,56,51,93,44,91,45,56,53,46,57,55,54,57,49,44,51,54,46,55,50,50,55,50,50,93,44,91,45,56,53,46,55,51,57,50,53,53,44,51,54,46,56,52,49,52,55,54,93,44,91,45,56,53,46,55,52,52,50,50,49,44,51,55,46,49,54,57,56,49,51,93,44,91,45,56,53,46,57,48,54,51,51,54,44,51,55,46,49,52,56,51,55,55,93,44,91,45,56,54,46,48,53,54,52,52,51,44,51,55,46,49,54,55,50,48,56,93,44,91,45,56,54,46,49,49,51,53,49,50,44,51,55,46,48,54,49,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,48,53,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,52,52,51,51,44,52,49,46,51,57,52,49,55,56,93,44,91,45,57,56,46,55,52,56,53,50,54,44,52,49,46,48,52,54,54,52,93,44,91,45,57,56,46,55,50,49,57,55,53,44,52,49,46,48,52,54,54,55,52,93,44,91,45,57,56,46,50,56,55,49,54,56,44,52,49,46,48,52,54,51,54,51,93,44,91,45,57,56,46,50,56,54,53,56,52,44,52,49,46,51,57,51,56,57,56,93,44,91,45,57,56,46,50,57,49,52,49,57,44,52,49,46,51,57,51,56,57,52,93,44,91,45,57,56,46,55,52,52,51,51,44,52,49,46,51,57,52,49,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,68,117,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,56,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,52,50,50,54,54,44,52,55,46,56,50,51,55,49,51,93,44,91,45,49,48,50,46,54,52,50,54,54,57,44,52,55,46,54,55,52,48,49,50,93,44,91,45,49,48,51,46,48,57,57,54,55,44,52,55,46,54,55,52,53,49,56,93,44,91,45,49,48,51,46,48,57,57,49,57,55,44,52,55,46,51,50,56,55,49,52,93,44,91,45,49,48,51,46,48,51,50,51,54,54,44,52,55,46,51,50,56,54,56,54,93,44,91,45,49,48,51,46,48,51,50,54,56,49,44,52,54,46,57,56,48,53,56,93,44,91,45,49,48,50,46,53,50,53,51,54,52,44,52,54,46,57,56,49,50,56,56,93,44,91,45,49,48,50,46,49,52,52,55,55,49,44,52,55,46,48,49,48,51,48,55,93,44,91,45,49,48,50,46,49,52,52,52,53,51,44,52,55,46,51,50,56,48,55,57,93,44,91,45,49,48,50,46,50,48,53,53,53,54,44,52,55,46,51,50,56,48,55,49,93,44,91,45,49,48,50,46,50,48,53,51,53,44,52,55,46,53,55,52,53,48,54,93,44,91,45,49,48,50,46,50,54,53,52,53,50,44,52,55,46,54,50,52,51,48,55,93,44,91,45,49,48,50,46,50,54,48,57,53,49,44,52,55,46,55,56,49,52,48,57,93,44,91,45,49,48,50,46,51,56,53,55,53,56,44,52,55,46,55,53,56,48,48,56,93,44,91,45,49,48,50,46,54,52,50,50,54,54,44,52,55,46,56,50,51,55,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,109,97,100,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,50,57,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,48,50,55,53,48,55,44,51,56,46,53,48,56,50,57,50,93,44,91,45,49,50,49,46,48,50,55,48,56,52,44,51,56,46,51,48,48,50,53,50,93,44,91,45,49,50,48,46,57,57,53,52,57,55,44,51,56,46,50,50,53,52,48,50,93,44,91,45,49,50,48,46,54,52,54,54,49,51,44,51,56,46,51,51,52,53,56,54,93,44,91,45,49,50,48,46,53,48,52,54,52,44,51,56,46,52,51,57,51,55,56,93,44,91,45,49,50,48,46,48,55,50,52,56,52,44,51,56,46,53,48,57,56,54,57,93,44,91,45,49,50,48,46,48,55,50,51,57,50,44,51,56,46,55,48,50,55,54,55,93,44,91,45,49,50,48,46,50,55,52,53,50,50,44,51,56,46,53,53,57,52,53,50,93,44,91,45,49,50,48,46,54,50,56,52,50,56,44,51,56,46,53,48,51,50,48,52,93,44,91,45,49,50,48,46,56,50,51,50,56,51,44,51,56,46,53,53,57,54,56,55,93,44,91,45,49,50,49,46,48,50,55,53,48,55,44,51,56,46,53,48,56,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,70,101,110,116,114,101,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,50,48,52,52,53,44,51,54,46,52,48,55,49,54,52,93,44,91,45,56,53,46,48,56,50,52,57,55,44,51,54,46,49,57,54,49,55,49,93,44,91,45,56,53,46,49,49,57,53,56,51,44,51,54,46,49,52,52,55,49,57,93,44,91,45,56,53,46,49,48,48,50,49,51,44,51,54,46,49,51,56,53,54,49,93,44,91,45,56,52,46,57,48,55,55,53,51,44,51,54,46,49,53,54,50,57,51,93,44,91,45,56,52,46,56,54,54,49,48,52,44,51,54,46,50,57,50,57,50,56,93,44,91,45,56,52,46,55,48,48,55,56,53,44,51,54,46,51,55,48,56,50,52,93,44,91,45,56,52,46,55,51,49,56,51,57,44,51,54,46,53,50,52,54,55,52,93,44,91,45,56,52,46,57,52,51,49,52,52,44,51,54,46,53,56,49,50,55,93,44,91,45,56,53,46,48,52,51,57,50,52,44,51,54,46,53,53,56,55,57,49,93,44,91,45,56,53,46,49,50,48,52,52,53,44,51,54,46,52,48,55,49,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,102,102,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,57,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,53,48,50,56,50,44,51,56,46,52,51,52,49,48,53,93,44,91,45,57,53,46,57,53,56,56,54,50,44,51,56,46,49,55,48,57,51,57,93,44,91,45,57,53,46,57,53,57,48,52,54,44,51,56,46,48,52,48,49,57,53,93,44,91,45,57,53,46,53,49,56,57,55,44,51,56,46,48,51,56,50,51,93,44,91,45,57,53,46,53,48,56,51,50,56,44,51,56,46,51,57,48,50,55,56,93,44,91,45,57,53,46,53,48,56,50,54,55,44,51,56,46,52,51,51,57,51,51,93,44,91,45,57,53,46,57,53,48,50,56,50,44,51,56,46,52,51,52,49,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,114,97,110,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,53,56,52,44,34,98,101,100,115,34,58,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,50,57,51,54,50,54,44,52,50,46,48,55,49,53,53,51,93,44,91,45,56,53,46,50,57,50,49,55,57,44,52,49,46,55,53,57,56,56,57,93,44,91,45,56,53,46,49,57,54,55,55,52,44,52,49,46,55,53,57,54,52,52,93,44,91,45,56,52,46,56,50,53,49,51,44,52,49,46,55,53,57,57,57,57,93,44,91,45,56,52,46,56,50,54,52,57,49,44,52,50,46,48,55,50,52,54,56,93,44,91,45,56,53,46,50,57,51,54,50,54,44,52,50,46,48,55,49,53,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,97,109,112,98,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,49,55,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,50,53,55,57,53,53,44,51,55,46,51,53,53,56,49,54,93,44,91,45,55,57,46,52,52,50,56,53,57,44,51,55,46,48,53,53,56,54,55,93,44,91,45,55,57,46,51,51,50,49,54,49,44,51,55,46,49,50,53,53,54,56,93,44,91,45,55,57,46,48,57,50,50,54,52,44,51,55,46,48,54,49,52,57,56,93,44,91,45,55,56,46,57,48,52,53,56,55,44,51,55,46,48,50,50,50,56,56,93,44,91,45,55,56,46,56,50,52,50,48,57,44,51,55,46,50,48,53,51,54,49,93,44,91,45,55,56,46,57,50,54,52,54,44,51,55,46,50,55,55,48,55,49,93,44,91,45,55,57,46,48,50,49,54,56,55,44,51,55,46,52,50,57,50,52,51,93,44,91,45,55,57,46,48,56,53,49,50,51,44,51,55,46,51,57,52,56,55,53,93,44,91,45,55,57,46,50,53,55,57,53,53,44,51,55,46,51,53,53,56,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,77,101,105,103,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,54,56,53,56,51,44,51,57,46,50,48,51,55,54,93,44,91,45,56,50,46,51,50,50,56,55,52,44,51,57,46,48,50,55,54,55,52,93,44,91,45,56,50,46,48,57,53,52,54,53,44,51,57,46,48,48,50,55,55,56,93,44,91,45,56,50,46,48,57,56,57,54,53,44,51,56,46,57,53,56,51,55,56,93,44,91,45,56,50,46,48,48,53,57,57,44,51,57,46,48,50,57,51,56,55,93,44,91,45,56,49,46,57,48,48,53,57,53,44,51,56,46,57,51,55,54,55,49,93,44,91,45,56,49,46,57,48,56,54,52,53,44,51,56,46,56,55,56,52,54,93,44,91,45,56,49,46,55,56,49,56,50,44,51,56,46,57,54,52,57,51,53,93,44,91,45,56,49,46,55,52,55,50,53,52,44,51,57,46,48,57,53,51,55,57,93,44,91,45,56,49,46,55,53,54,48,56,44,51,57,46,49,56,48,53,54,93,44,91,45,56,50,46,50,54,56,53,56,51,44,51,57,46,50,48,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,78,105,99,104,111,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,50,52,44,34,98,101,100,115,34,58,49,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,56,49,50,51,50,44,51,56,46,53,48,55,48,52,53,93,44,91,45,56,48,46,57,49,49,51,54,49,44,51,56,46,52,49,52,55,56,53,93,44,91,45,56,49,46,50,51,49,52,51,52,44,51,56,46,50,54,51,55,49,54,93,44,91,45,56,49,46,50,51,49,54,51,54,44,51,56,46,50,54,51,53,49,52,93,44,91,45,56,49,46,48,55,53,48,51,57,44,51,56,46,49,57,54,49,51,54,93,44,91,45,56,48,46,57,56,51,52,55,50,44,51,56,46,50,50,50,53,52,93,44,91,45,56,48,46,56,56,50,49,56,55,44,51,56,46,49,48,51,52,53,55,93,44,91,45,56,48,46,55,49,49,57,54,49,44,51,56,46,48,55,57,49,50,57,93,44,91,45,56,48,46,52,51,54,53,49,52,44,51,56,46,50,54,55,51,51,52,93,44,91,45,56,48,46,54,48,57,51,55,56,44,51,56,46,51,53,56,54,48,54,93,44,91,45,56,48,46,54,53,48,55,56,54,44,51,56,46,53,50,54,53,57,93,44,91,45,56,48,46,55,56,53,49,55,55,44,51,56,46,53,53,55,54,52,57,93,44,91,45,56,48,46,56,56,49,50,51,50,44,51,56,46,53,48,55,48,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,49,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,49,49,49,57,56,53,44,51,54,46,57,57,56,48,57,51,93,44,91,45,57,56,46,49,48,52,50,56,54,44,51,54,46,53,57,51,53,55,56,93,44,91,45,57,55,46,52,54,50,52,53,57,44,51,54,46,53,57,51,54,50,55,93,44,91,45,57,55,46,52,54,50,51,52,54,44,51,54,46,57,57,56,55,48,49,93,44,91,45,57,55,46,56,48,50,51,49,51,44,51,54,46,57,57,56,55,49,56,93,44,91,45,57,56,46,49,49,49,57,56,53,44,51,54,46,57,57,56,48,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,112,105,110,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,49,55,55,53,57,44,52,53,46,50,52,51,55,51,50,93,44,91,45,57,56,46,55,49,54,52,57,56,44,52,52,46,56,57,54,57,50,53,93,44,91,45,57,56,46,55,48,53,55,54,50,44,52,52,46,54,51,52,49,53,57,93,44,91,45,57,55,46,57,55,55,55,57,49,44,52,52,46,54,51,49,54,48,50,93,44,91,45,57,55,46,57,56,49,55,57,50,44,52,53,46,49,53,51,50,57,53,93,44,91,45,57,55,46,57,56,49,52,53,55,44,52,53,46,50,52,48,52,49,53,93,44,91,45,57,56,46,55,49,55,55,53,57,44,52,53,46,50,52,51,55,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,87,105,110,100,115,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,50,55,44,34,98,101,100,115,34,58,49,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,57,53,56,56,53,51,44,52,51,46,56,50,54,53,52,50,93,44,91,45,55,50,46,55,56,50,56,49,50,44,52,51,46,56,48,52,51,51,56,93,44,91,45,55,50,46,56,50,48,48,52,51,44,52,51,46,55,49,54,56,51,52,93,44,91,45,55,50,46,55,48,48,57,52,53,44,52,51,46,54,56,50,56,51,49,93,44,91,45,55,50,46,55,56,56,57,56,55,44,52,51,46,53,48,48,48,55,93,44,91,45,55,50,46,55,53,57,55,57,57,44,52,51,46,51,53,52,49,52,52,93,44,91,45,55,50,46,56,54,55,57,48,50,44,52,51,46,51,48,48,55,52,50,93,44,91,45,55,50,46,56,49,57,51,54,56,44,52,51,46,50,53,53,52,57,56,93,44,91,45,55,50,46,54,56,53,54,51,55,44,52,51,46,50,50,50,52,57,53,93,44,91,45,55,50,46,52,51,52,54,52,53,44,52,51,46,50,51,51,51,49,49,93,44,91,45,55,50,46,51,55,51,56,44,52,51,46,53,55,57,49,49,57,93,44,91,45,55,50,46,51,50,57,56,57,57,44,52,51,46,54,48,48,50,49,52,93,44,91,45,55,50,46,51,48,53,49,51,51,44,52,51,46,54,57,53,51,50,49,93,44,91,45,55,50,46,50,48,53,50,49,57,44,52,51,46,55,55,48,57,54,52,93,44,91,45,55,50,46,55,56,51,50,48,56,44,52,51,46,57,50,56,57,54,55,93,44,91,45,55,50,46,55,57,49,51,51,54,44,52,51,46,57,54,49,56,53,53,93,44,91,45,55,50,46,57,53,51,48,56,51,44,52,51,46,56,55,52,56,55,93,44,91,45,55,50,46,57,53,56,56,53,51,44,52,51,46,56,50,54,53,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,53,53,34,44,34,78,65,77,69,34,58,34,84,114,105,110,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,50,55,52,56,44,51,48,46,56,53,57,53,52,55,93,44,91,45,57,53,46,50,48,48,49,56,44,51,48,46,56,50,52,53,54,54,93,44,91,45,57,52,46,57,51,57,49,50,55,44,51,49,46,48,52,50,48,52,56,93,44,91,45,57,52,46,56,52,50,57,52,55,44,51,49,46,49,52,54,53,55,56,93,44,91,45,57,52,46,56,57,57,48,49,55,44,51,49,46,51,50,54,57,55,50,93,44,91,45,57,52,46,57,53,56,49,49,44,51,49,46,51,56,54,57,51,93,44,91,45,57,53,46,52,51,52,55,56,49,44,51,49,46,48,53,56,48,57,56,93,44,91,45,57,53,46,52,51,52,51,51,53,44,51,48,46,57,51,55,52,48,53,93,44,91,45,57,53,46,51,50,55,52,56,44,51,48,46,56,53,57,53,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,101,114,110,97,108,105,108,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,55,54,57,50,44,34,98,101,100,115,34,58,50,48,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,48,54,54,53,54,50,44,51,52,46,57,53,55,49,57,93,44,91,45,49,48,55,46,48,50,52,52,56,49,44,51,52,46,56,54,57,57,53,51,93,44,91,45,49,48,54,46,55,50,48,54,54,54,44,51,52,46,56,55,48,48,53,51,93,44,91,45,49,48,54,46,54,56,53,56,48,49,44,51,52,46,57,48,54,51,53,56,93,44,91,45,49,48,54,46,52,50,57,52,56,54,44,51,52,46,57,48,51,52,93,44,91,45,49,48,54,46,52,49,49,55,56,49,44,51,52,46,56,55,48,50,53,50,93,44,91,45,49,48,54,46,49,52,57,55,51,55,44,51,52,46,56,55,48,49,52,50,93,44,91,45,49,48,54,46,50,52,51,55,54,50,44,51,52,46,57,53,51,51,53,53,93,44,91,45,49,48,54,46,50,52,51,56,55,52,44,51,53,46,48,52,48,48,48,51,93,44,91,45,49,48,54,46,50,52,52,50,49,54,44,51,53,46,50,49,53,54,53,55,93,44,91,45,49,48,55,46,49,57,55,50,52,52,44,51,53,46,50,49,57,52,53,57,93,44,91,45,49,48,55,46,48,54,54,53,54,50,44,51,52,46,57,53,55,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,53,34,44,34,78,65,77,69,34,58,34,77,105,116,99,104,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,52,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,52,49,49,50,52,44,51,49,46,52,52,48,49,55,57,93,44,91,45,56,52,46,49,57,55,57,56,54,44,51,49,46,51,53,55,53,50,49,93,44,91,45,56,52,46,51,52,48,53,53,50,44,51,49,46,51,48,53,51,52,49,93,44,91,45,56,52,46,53,48,56,48,55,56,44,51,49,46,48,55,56,52,93,44,91,45,56,52,46,51,55,54,54,49,50,44,51,49,46,48,55,56,56,56,51,93,44,91,45,56,52,46,49,49,54,54,52,52,44,51,49,46,48,55,55,57,55,49,93,44,91,45,56,52,46,48,48,51,54,50,55,44,51,49,46,48,55,55,50,57,93,44,91,45,56,51,46,57,57,57,52,51,44,51,49,46,51,51,52,57,54,54,93,44,91,45,56,51,46,57,57,55,55,57,54,44,51,49,46,52,52,51,55,53,51,93,44,91,45,56,52,46,49,52,49,49,50,52,44,51,49,46,52,52,48,49,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,53,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,72,97,119,97,105,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,72,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,55,54,53,56,44,34,98,101,100,115,34,58,53,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,53,53,46,52,51,50,56,54,50,44,50,48,46,49,52,53,50,48,55,93,44,91,45,49,53,53,46,53,55,56,55,54,56,44,50,48,46,49,56,48,49,52,55,93,44,91,45,49,53,53,46,55,53,49,52,54,52,44,50,48,46,50,57,52,52,55,93,44,91,45,49,53,53,46,56,51,54,55,56,51,44,50,48,46,51,50,49,50,50,54,93,44,91,45,49,53,53,46,57,52,55,57,54,50,44,50,48,46,50,54,49,54,53,50,93,44,91,45,49,53,53,46,57,53,55,55,49,57,44,50,48,46,49,54,55,54,49,52,93,44,91,45,49,53,53,46,56,56,52,51,49,49,44,50,48,46,48,49,56,51,50,55,93,44,91,45,49,53,53,46,57,54,50,52,50,55,44,49,57,46,57,48,57,49,53,50,93,44,91,45,49,53,54,46,49,48,55,50,52,44,49,57,46,55,57,48,52,48,50,93,44,91,45,49,53,54,46,49,49,57,48,55,53,44,49,57,46,55,49,57,51,48,49,93,44,91,45,49,53,54,46,48,51,53,56,57,53,44,49,57,46,53,57,55,57,54,49,93,44,91,45,49,53,53,46,57,52,51,50,49,51,44,49,57,46,51,52,52,50,50,55,93,44,91,45,49,53,53,46,57,55,52,48,52,49,44,49,57,46,49,48,55,55,56,57,93,44,91,45,49,53,53,46,57,50,53,57,51,49,44,49,57,46,48,48,56,49,53,52,93,44,91,45,49,53,53,46,55,51,57,57,55,49,44,49,56,46,57,49,54,56,57,49,93,44,91,45,49,53,53,46,54,57,52,50,53,55,44,49,56,46,56,54,54,55,56,54,93,44,91,45,49,53,53,46,53,54,53,54,44,49,56,46,57,51,52,53,49,55,93,44,91,45,49,53,53,46,52,57,52,56,55,56,44,49,57,46,48,55,49,53,56,54,93,44,91,45,49,53,53,46,50,53,56,48,49,53,44,49,57,46,50,50,50,49,55,49,93,44,91,45,49,53,53,46,49,56,50,48,57,56,44,49,57,46,50,48,57,57,53,52,93,44,91,45,49,53,52,46,57,51,57,54,54,51,44,49,57,46,51,49,50,56,51,52,93,44,91,45,49,53,52,46,55,55,53,55,53,49,44,49,57,46,52,53,55,49,49,51,93,44,91,45,49,53,52,46,55,53,57,51,51,51,44,49,57,46,53,51,54,52,54,50,93,44,91,45,49,53,52,46,57,50,56,57,51,53,44,49,57,46,54,55,51,54,48,53,93,44,91,45,49,53,53,46,48,51,49,54,50,44,49,57,46,56,55,53,93,44,91,45,49,53,53,46,49,52,48,51,51,44,49,57,46,57,56,57,52,56,49,93,44,91,45,49,53,53,46,52,51,50,56,54,50,44,50,48,46,49,52,53,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,77,99,67,114,101,97,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,55,56,49,53,56,44,51,54,46,56,54,55,49,51,51,93,44,91,45,56,52,46,55,55,56,52,53,52,44,51,54,46,54,48,51,50,57,93,44,91,45,56,52,46,50,54,49,51,51,55,44,51,54,46,53,57,49,55,56,52,93,44,91,45,56,52,46,50,50,55,50,57,50,44,51,54,46,53,57,50,48,52,53,93,44,91,45,56,52,46,51,53,48,48,48,54,44,51,54,46,55,56,48,54,56,49,93,44,91,45,56,52,46,50,57,55,52,49,54,44,51,54,46,57,52,53,57,51,49,93,44,91,45,56,52,46,51,53,56,48,50,52,44,51,54,46,57,53,57,52,93,44,91,45,56,52,46,53,55,56,49,53,56,44,51,54,46,56,54,55,49,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,80,101,110,100,108,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,53,51,50,50,56,56,44,51,56,46,55,57,49,57,51,55,93,44,91,45,56,52,46,52,55,54,50,57,57,44,51,56,46,53,52,50,55,50,51,93,44,91,45,56,52,46,50,48,53,51,52,54,44,51,56,46,53,56,50,48,51,57,93,44,91,45,56,52,46,50,51,48,52,49,49,44,51,56,46,56,50,55,52,51,55,93,44,91,45,56,52,46,50,51,49,57,49,55,44,51,56,46,56,55,52,56,54,54,93,44,91,45,56,52,46,52,49,56,49,48,55,44,51,56,46,56,48,54,53,57,54,93,44,91,45,56,52,46,53,51,50,50,56,56,44,51,56,46,55,57,49,57,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,53,34,44,34,78,65,77,69,34,58,34,83,112,101,110,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,50,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,49,48,49,54,52,54,44,51,56,46,48,51,55,50,55,93,44,91,45,56,53,46,52,50,52,48,53,52,44,51,56,46,49,52,55,52,51,56,93,44,91,45,56,53,46,52,50,56,56,51,44,51,56,46,49,49,56,51,56,51,93,44,91,45,56,53,46,52,56,57,50,48,50,44,51,55,46,57,57,48,54,53,52,93,44,91,45,56,53,46,51,57,57,56,55,49,44,51,55,46,57,51,57,57,53,54,93,44,91,45,56,53,46,49,54,55,56,51,52,44,51,55,46,57,55,49,56,48,57,93,44,91,45,56,53,46,49,48,49,54,52,54,44,51,56,46,48,51,55,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,72,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,51,57,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,52,56,57,53,53,44,52,57,46,48,48,48,50,57,50,93,44,91,45,49,49,48,46,55,52,51,48,54,52,44,52,56,46,57,57,56,54,48,54,93,44,91,45,49,49,48,46,55,53,53,56,55,51,44,52,56,46,50,49,57,54,48,49,93,44,91,45,49,49,48,46,54,50,53,52,48,57,44,52,56,46,51,48,54,52,55,57,93,44,91,45,49,48,57,46,56,52,53,57,51,50,44,52,56,46,51,48,53,57,55,49,93,44,91,45,49,48,57,46,55,50,54,57,52,51,44,52,56,46,50,50,49,53,50,53,93,44,91,45,49,48,57,46,55,50,54,57,49,52,44,52,56,46,49,51,50,56,53,57,93,44,91,45,49,48,57,46,53,51,52,50,57,53,44,52,56,46,49,51,52,53,54,52,93,44,91,45,49,48,57,46,53,49,56,55,56,44,52,56,46,51,57,52,55,50,54,93,44,91,45,49,48,57,46,52,54,52,51,49,56,44,52,56,46,52,53,50,54,51,56,93,44,91,45,49,48,57,46,53,48,53,51,51,51,44,52,56,46,53,54,55,57,49,93,44,91,45,49,48,57,46,52,56,57,53,53,44,52,57,46,48,48,48,50,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,86,97,108,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,50,52,44,34,98,101,100,115,34,58,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,49,50,48,49,54,44,52,49,46,55,52,48,54,49,51,93,44,91,45,57,57,46,50,48,51,50,54,49,44,52,49,46,51,57,52,49,52,93,44,91,45,57,56,46,55,53,49,53,53,56,44,52,49,46,51,57,52,48,56,52,93,44,91,45,57,56,46,55,53,50,50,50,53,44,52,49,46,55,52,48,51,55,50,93,44,91,45,57,56,46,55,53,57,49,51,51,44,52,49,46,55,52,48,51,56,50,93,44,91,45,57,57,46,50,49,50,48,49,54,44,52,49,46,55,52,48,54,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,67,97,115,116,114,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,56,55,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,53,50,53,49,56,52,44,51,52,46,55,52,54,57,51,49,93,44,91,45,49,48,50,46,53,50,53,54,51,49,44,51,52,46,51,49,51,48,51,52,93,44,91,45,49,48,50,46,48,57,48,52,49,53,44,51,52,46,51,49,51,49,51,50,93,44,91,45,49,48,49,46,57,57,56,48,50,44,51,52,46,51,49,51,48,51,57,93,44,91,45,49,48,49,46,57,57,56,52,57,51,44,51,52,46,55,52,56,49,57,93,44,91,45,49,48,50,46,49,54,56,56,51,57,44,51,52,46,55,52,55,52,49,55,93,44,91,45,49,48,50,46,53,50,53,49,56,52,44,51,52,46,55,52,54,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,56,49,49,44,34,98,101,100,115,34,58,51,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,50,50,49,49,44,51,57,46,54,49,57,54,53,55,93,44,91,45,55,55,46,56,56,57,49,51,53,44,51,57,46,53,57,55,52,53,51,93,44,91,45,55,55,46,56,50,53,53,55,50,44,51,57,46,52,57,51,50,56,57,93,44,91,45,55,55,46,55,49,57,53,49,57,44,51,57,46,51,50,49,51,49,52,93,44,91,45,55,55,46,54,55,55,49,54,52,44,51,57,46,51,50,52,53,51,52,93,44,91,45,55,55,46,53,55,48,49,56,50,44,51,57,46,54,49,57,57,57,56,93,44,91,45,55,55,46,52,54,57,49,52,53,44,51,57,46,55,50,48,48,49,56,93,44,91,45,55,56,46,48,57,57,52,48,51,44,51,57,46,55,50,50,48,57,57,93,44,91,45,55,56,46,51,52,50,56,51,52,44,51,57,46,55,50,50,50,54,51,93,44,91,45,55,56,46,51,51,51,56,49,57,44,51,57,46,54,51,54,55,54,50,93,44,91,45,55,56,46,49,55,49,53,52,57,44,51,57,46,54,57,53,54,52,51,93,44,91,45,55,56,46,48,50,50,49,49,44,51,57,46,54,49,57,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,76,101,116,99,104,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,55,54,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,51,50,54,57,51,44,51,55,46,50,55,49,53,48,50,93,44,91,45,56,51,46,48,48,48,49,52,50,44,51,55,46,49,57,53,55,49,93,44,91,45,56,51,46,49,50,50,48,57,44,51,55,46,48,48,48,57,57,55,93,44,91,45,56,50,46,57,51,57,52,54,54,44,51,55,46,48,49,53,53,50,93,44,91,45,56,50,46,56,54,57,49,57,50,44,51,54,46,57,55,52,49,56,54,93,44,91,45,56,50,46,55,52,50,55,53,57,44,51,55,46,48,52,50,55,57,54,93,44,91,45,56,50,46,55,49,53,49,52,57,44,51,55,46,49,50,49,56,52,56,93,44,91,45,56,50,46,53,54,53,51,55,57,44,51,55,46,49,57,54,48,57,57,93,44,91,45,56,50,46,55,51,50,54,57,51,44,51,55,46,50,55,49,53,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,83,97,108,101,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,51,51,54,44,34,98,101,100,115,34,58,50,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,52,48,53,52,56,57,44,51,57,46,55,57,54,51,54,56,93,44,91,45,55,53,46,53,53,56,55,55,51,44,51,57,46,54,50,57,57,56,55,93,44,91,45,55,53,46,53,49,50,55,55,44,51,57,46,53,55,56,50,57,93,44,91,45,55,53,46,53,54,48,53,51,56,44,51,57,46,52,53,53,54,52,53,93,44,91,45,55,53,46,52,56,49,51,54,44,51,57,46,51,56,55,53,53,53,93,44,91,45,55,53,46,52,52,52,55,53,49,44,51,57,46,51,53,53,48,56,57,93,44,91,45,55,53,46,50,51,56,52,51,52,44,51,57,46,53,53,57,48,51,57,93,44,91,45,55,53,46,48,56,51,56,50,51,44,51,57,46,52,53,55,51,53,52,93,44,91,45,55,53,46,48,54,49,56,53,52,44,51,57,46,53,54,56,55,52,54,93,44,91,45,55,53,46,49,57,57,55,57,51,44,51,57,46,54,54,54,57,57,54,93,44,91,45,55,53,46,51,54,55,50,51,57,44,51,57,46,55,49,55,53,54,53,93,44,91,45,55,53,46,52,48,53,52,56,57,44,51,57,46,55,57,54,51,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,56,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,56,48,34,44,34,78,65,77,69,34,58,34,76,121,110,99,104,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,49,51,49,44,34,98,101,100,115,34,58,51,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,49,56,53,55,48,50,44,51,55,46,52,54,53,56,50,93,44,91,45,55,57,46,50,53,55,57,53,53,44,51,55,46,51,53,53,56,49,54,93,44,91,45,55,57,46,48,56,53,49,50,51,44,51,55,46,51,57,52,56,55,53,93,44,91,45,55,57,46,49,56,53,55,48,50,44,51,55,46,52,54,53,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,83,97,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,56,48,48,57,44,34,98,101,100,115,34,58,50,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,55,53,49,55,56,44,51,52,46,55,55,49,56,57,50,93,44,91,45,57,50,46,57,54,57,50,53,44,51,52,46,55,55,50,50,54,54,93,44,91,45,57,50,46,57,55,57,57,48,50,44,51,52,46,54,51,55,50,50,50,93,44,91,45,57,50,46,56,48,56,48,50,56,44,51,52,46,53,57,48,52,48,54,93,44,91,45,57,50,46,55,57,51,49,57,55,44,51,52,46,53,48,51,54,48,54,93,44,91,45,57,50,46,54,54,56,55,49,49,44,51,52,46,52,49,52,50,51,55,93,44,91,45,57,50,46,53,56,57,52,49,56,44,51,52,46,52,53,53,54,52,49,93,44,91,45,57,50,46,52,48,52,54,56,44,51,52,46,52,53,49,57,49,54,93,44,91,45,57,50,46,50,52,53,56,49,56,44,51,52,46,52,57,51,53,48,54,93,44,91,45,57,50,46,51,52,56,55,52,57,44,51,52,46,53,56,50,50,57,93,44,91,45,57,50,46,54,53,52,51,50,52,44,51,52,46,55,54,52,53,52,49,93,44,91,45,57,50,46,55,51,57,55,55,57,44,51,52,46,56,53,51,52,53,57,93,44,91,45,57,51,46,48,55,51,56,55,55,44,51,52,46,56,53,56,48,57,49,93,44,91,45,57,51,46,48,55,53,49,55,56,44,51,52,46,55,55,49,56,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,51,57,44,34,98,101,100,115,34,58,50,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,48,56,54,52,53,44,51,56,46,56,55,56,52,54,93,44,91,45,56,49,46,57,48,48,53,57,53,44,51,56,46,57,51,55,54,55,49,93,44,91,45,56,50,46,48,48,53,57,57,44,51,57,46,48,50,57,51,56,55,93,44,91,45,56,50,46,48,57,56,57,54,53,44,51,56,46,57,53,56,51,55,56,93,44,91,45,56,50,46,49,52,52,49,54,55,44,51,56,46,56,52,49,56,56,93,44,91,45,56,50,46,50,50,49,53,54,54,44,51,56,46,55,56,55,49,56,55,93,44,91,45,56,50,46,49,55,49,57,54,54,44,51,56,46,54,50,53,51,56,52,93,44,91,45,56,50,46,50,49,56,57,54,55,44,51,56,46,53,57,49,54,56,51,93,44,91,45,56,50,46,48,53,53,49,50,55,44,51,56,46,52,55,52,53,52,55,93,44,91,45,56,50,46,48,54,52,53,54,50,44,51,56,46,54,48,55,57,56,53,93,44,91,45,56,49,46,57,53,53,55,57,49,44,51,56,46,54,53,55,51,53,53,93,44,91,45,56,49,46,55,55,50,56,52,51,44,51,56,46,54,56,48,56,52,51,93,44,91,45,56,49,46,57,48,56,54,52,53,44,51,56,46,56,55,56,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,71,105,108,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,51,51,54,51,50,44,51,57,46,48,48,57,53,56,52,93,44,91,45,56,48,46,57,56,52,57,53,44,51,56,46,55,49,55,56,57,56,93,44,91,45,56,48,46,55,48,49,53,50,50,44,51,56,46,56,55,57,48,52,53,93,44,91,45,56,48,46,54,48,53,55,57,57,44,51,56,46,57,48,52,49,54,55,93,44,91,45,56,48,46,55,49,54,56,49,53,44,51,57,46,48,48,56,52,51,93,44,91,45,56,48,46,55,50,56,51,50,54,44,51,57,46,48,57,53,54,55,57,93,44,91,45,56,48,46,56,49,50,57,55,44,51,57,46,49,48,57,52,48,49,93,44,91,45,56,49,46,48,51,51,54,51,50,44,51,57,46,48,48,57,53,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,52,54,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,50,52,56,49,52,52,44,51,49,46,56,54,57,56,52,56,93,44,91,45,57,49,46,51,52,53,50,49,52,44,51,49,46,56,52,51,56,54,49,93,44,91,45,57,49,46,51,49,55,56,54,52,44,51,49,46,55,52,57,55,54,54,93,44,91,45,57,49,46,50,57,53,53,55,44,51,49,46,54,54,57,56,55,93,44,91,45,57,49,46,49,53,51,56,54,52,44,51,49,46,54,49,48,48,54,56,93,44,91,45,57,48,46,55,51,55,51,51,44,51,49,46,54,49,49,49,50,52,93,44,91,45,57,48,46,55,51,54,56,50,52,44,51,49,46,54,57,56,52,57,49,93,44,91,45,57,48,46,55,51,54,50,56,50,44,51,49,46,55,56,54,49,51,52,93,44,91,45,57,49,46,48,49,51,54,55,54,44,51,49,46,56,54,49,56,53,50,93,44,91,45,57,49,46,50,52,56,49,52,52,44,51,49,46,56,54,57,56,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,82,111,108,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,54,48,51,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,49,56,50,54,48,56,44,52,56,46,57,57,57,50,48,52,93,44,91,45,49,48,48,46,49,56,51,48,51,52,44,52,56,46,55,49,56,57,48,57,93,44,91,45,49,48,48,46,49,52,53,56,53,56,44,52,56,46,53,52,53,50,49,49,93,44,91,45,57,57,46,52,57,51,49,56,57,44,52,56,46,53,52,52,56,51,52,93,44,91,45,57,57,46,53,50,53,56,57,53,44,52,56,46,55,49,56,51,56,52,93,44,91,45,57,57,46,53,50,53,55,55,57,44,52,56,46,57,57,57,51,48,55,93,44,91,45,49,48,48,46,49,56,50,54,48,56,44,52,56,46,57,57,57,50,48,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,84,114,101,97,115,117,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,55,51,56,53,52,56,44,52,54,46,52,56,49,56,48,54,93,44,91,45,49,48,55,46,52,54,54,57,57,54,44,52,54,46,49,50,57,57,57,53,93,44,91,45,49,48,55,46,53,49,49,53,51,52,44,52,54,46,48,52,51,52,48,51,93,44,91,45,49,48,55,46,52,50,53,49,50,56,44,52,53,46,57,53,54,54,55,52,93,44,91,45,49,48,55,46,49,55,54,51,53,56,44,52,53,46,57,53,54,55,54,49,93,44,91,45,49,48,54,46,57,51,57,48,57,53,44,52,53,46,56,55,48,48,52,49,93,44,91,45,49,48,54,46,57,51,57,48,54,55,44,52,54,46,49,51,54,54,54,55,93,44,91,45,49,48,55,46,48,48,53,53,51,52,44,52,54,46,49,51,54,54,54,57,93,44,91,45,49,48,55,46,48,50,56,52,50,50,44,52,54,46,51,57,53,52,54,93,44,91,45,49,48,55,46,49,53,51,52,52,52,44,52,54,46,51,57,53,54,49,51,93,44,91,45,49,48,55,46,49,55,52,53,51,49,44,52,54,46,52,56,50,55,49,51,93,44,91,45,49,48,55,46,55,51,56,53,52,56,44,52,54,46,52,56,49,56,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,56,55,50,44,34,98,101,100,115,34,58,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,56,54,52,54,49,44,51,56,46,48,54,55,48,50,56,93,44,91,45,56,52,46,51,51,55,51,57,51,44,51,55,46,56,57,50,48,48,55,93,44,91,45,56,52,46,48,56,48,51,51,55,44,51,55,46,56,53,51,48,54,54,93,44,91,45,56,52,46,48,48,49,57,54,55,44,51,55,46,56,51,55,53,57,50,93,44,91,45,56,51,46,57,54,54,51,49,44,51,55,46,57,51,48,55,54,56,93,44,91,45,56,52,46,48,56,48,53,50,55,44,51,56,46,49,49,53,49,49,56,93,44,91,45,56,52,46,50,56,54,52,54,49,44,51,56,46,48,54,55,48,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,111,114,111,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,51,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,52,54,51,50,49,49,44,49,56,46,51,55,49,52,55,51,93,44,91,45,54,54,46,52,53,53,55,48,51,44,49,56,46,50,53,55,55,50,54,93,44,91,45,54,54,46,51,55,55,55,49,50,44,49,56,46,50,57,51,57,55,54,93,44,91,45,54,54,46,51,54,53,50,55,50,44,49,56,46,51,51,51,50,50,57,93,44,91,45,54,54,46,51,55,55,48,53,56,44,49,56,46,51,52,52,50,52,54,93,44,91,45,54,54,46,52,52,51,56,44,49,56,46,51,55,49,48,50,55,93,44,91,45,54,54,46,52,54,51,50,49,49,44,49,56,46,51,55,49,52,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,108,108,101,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,50,53,48,44,34,98,101,100,115,34,58,54,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,56,50,52,57,56,44,52,50,46,55,54,56,50,93,44,91,45,56,55,46,48,53,56,55,49,54,44,52,50,46,55,54,53,50,48,50,93,44,91,45,56,55,46,48,52,51,56,57,57,44,52,50,46,54,54,51,55,50,57,93,44,91,45,56,55,46,48,49,57,57,51,53,44,52,50,46,52,57,51,52,57,56,93,44,91,45,56,55,46,48,52,48,48,52,54,44,52,50,46,52,49,54,57,57,51,93,44,91,45,56,53,46,55,54,52,54,57,55,44,52,50,46,52,50,48,55,49,53,93,44,91,45,56,53,46,53,52,51,49,57,49,44,52,50,46,52,50,49,52,51,51,93,44,91,45,56,53,46,53,52,53,53,54,52,44,52,50,46,55,54,56,49,51,57,93,44,91,45,56,53,46,55,56,50,52,57,56,44,52,50,46,55,54,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,49,49,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,57,57,48,57,50,44,51,54,46,51,54,48,49,51,51,93,44,91,45,56,56,46,50,49,50,53,53,57,44,51,54,46,49,50,48,50,57,93,44,91,45,56,56,46,50,49,55,52,51,54,44,51,53,46,56,52,54,53,56,50,93,44,91,45,56,56,46,49,55,55,56,53,57,44,51,53,46,56,52,53,56,52,49,93,44,91,45,56,55,46,57,55,48,55,51,56,44,51,53,46,56,49,53,55,48,53,93,44,91,45,56,55,46,57,54,50,55,52,44,51,53,46,56,52,48,57,50,49,93,44,91,45,56,55,46,57,50,53,56,51,53,44,51,53,46,57,51,48,52,51,50,93,44,91,45,56,56,46,48,48,48,56,48,57,44,51,54,46,48,50,56,48,56,57,93,44,91,45,56,55,46,57,49,57,48,52,51,44,51,54,46,49,51,48,48,52,57,93,44,91,45,56,55,46,57,52,57,54,48,51,44,51,54,46,50,52,51,49,54,93,44,91,45,56,55,46,57,56,48,55,52,44,51,54,46,51,53,51,51,48,55,93,44,91,45,56,55,46,57,57,48,57,50,44,51,54,46,51,54,48,49,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,114,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,50,49,49,44,34,98,101,100,115,34,58,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,54,53,56,50,52,44,52,52,46,52,57,56,50,49,56,93,44,91,45,57,52,46,56,54,54,50,53,57,44,52,52,46,50,56,50,51,55,50,93,44,91,45,57,53,46,49,48,55,52,56,44,52,52,46,50,56,49,55,54,56,93,44,91,45,57,53,46,49,48,56,55,55,55,44,52,52,46,49,57,53,48,52,52,93,44,91,45,57,53,46,49,48,48,50,50,49,44,52,52,46,49,48,56,48,51,52,93,44,91,45,57,52,46,56,53,57,56,48,51,44,52,52,46,49,48,56,48,49,54,93,44,91,45,57,52,46,51,54,56,56,53,44,52,52,46,49,48,56,54,57,56,93,44,91,45,57,52,46,51,55,49,55,51,49,44,52,52,46,50,54,52,52,52,56,93,44,91,45,57,52,46,52,57,49,54,56,54,44,52,52,46,51,53,50,50,53,52,93,44,91,45,57,52,46,55,56,48,54,51,44,52,52,46,52,53,54,54,53,93,44,91,45,57,52,46,56,54,53,56,50,52,44,52,52,46,52,57,56,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,80,105,99,107,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,55,52,56,49,49,44,51,54,46,54,49,53,52,54,53,93,44,91,45,56,53,46,50,55,54,50,56,49,44,51,54,46,54,50,54,56,49,54,93,44,91,45,56,53,46,50,56,52,56,55,56,44,51,54,46,53,51,49,50,57,51,93,44,91,45,56,53,46,49,50,48,52,52,53,44,51,54,46,52,48,55,49,54,52,93,44,91,45,56,53,46,48,52,51,57,50,52,44,51,54,46,53,53,56,55,57,49,93,44,91,45,56,52,46,57,52,51,49,52,52,44,51,54,46,53,56,49,50,55,93,44,91,45,56,52,46,55,51,49,56,51,57,44,51,54,46,53,50,52,54,55,52,93,44,91,45,56,52,46,55,56,53,52,53,44,51,54,46,54,48,51,52,52,52,93,44,91,45,56,52,46,57,55,52,56,49,49,44,51,54,46,54,49,53,52,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,76,111,117,105,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,51,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,54,50,52,56,49,44,51,55,46,57,48,52,54,56,53,93,44,91,45,55,55,46,55,57,55,51,48,54,44,51,55,46,55,50,57,51,53,56,93,44,91,45,55,55,46,54,56,55,52,54,57,44,51,56,46,48,48,55,56,48,54,93,44,91,45,55,55,46,56,51,57,55,49,55,44,51,56,46,49,48,54,48,51,56,93,44,91,45,55,55,46,57,53,51,54,51,57,44,51,56,46,49,49,56,53,48,49,93,44,91,45,55,56,46,49,48,49,55,52,56,44,51,56,46,49,53,50,53,54,55,93,44,91,45,55,56,46,50,48,57,51,56,52,44,51,56,46,49,51,49,49,50,56,93,44,91,45,55,56,46,51,48,54,55,54,51,44,51,56,46,48,48,54,52,55,52,93,44,91,45,55,56,46,48,54,50,52,56,49,44,51,55,46,57,48,52,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,53,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,51,57,57,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,53,50,48,56,44,51,57,46,54,51,56,51,52,53,93,44,91,45,56,53,46,57,53,50,48,48,53,44,51,57,46,51,52,55,51,55,51,93,44,91,45,56,53,46,54,56,52,53,49,53,44,51,57,46,51,53,48,48,52,57,93,44,91,45,56,53,46,54,50,57,51,50,55,44,51,57,46,52,53,50,55,53,93,44,91,45,56,53,46,54,51,51,50,50,56,44,51,57,46,54,57,56,52,54,50,93,44,91,45,56,53,46,57,53,49,55,50,49,44,51,57,46,54,57,55,49,51,54,93,44,91,45,56,53,46,57,53,50,48,56,44,51,57,46,54,51,56,51,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,53,51,51,51,44,34,98,101,100,115,34,58,53,56,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,54,49,56,50,55,44,52,48,46,49,50,53,56,53,53,93,44,91,45,56,51,46,49,54,57,57,56,49,44,52,48,46,49,52,51,48,56,55,93,44,91,45,56,51,46,50,48,54,50,55,51,44,52,48,46,49,48,55,55,51,51,93,44,91,45,56,51,46,50,53,51,56,51,44,52,48,46,48,52,57,50,49,56,93,44,91,45,56,51,46,50,52,51,55,48,50,44,51,57,46,56,49,50,53,48,51,93,44,91,45,56,50,46,56,50,52,50,53,52,44,51,57,46,55,57,52,57,57,54,93,44,91,45,56,50,46,55,56,50,52,57,53,44,51,57,46,57,51,57,54,54,50,93,44,91,45,56,50,46,55,54,49,56,50,55,44,52,48,46,49,50,53,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,73,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,54,57,49,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,48,53,50,51,53,44,51,55,46,54,48,52,55,55,54,93,44,91,45,49,49,51,46,53,56,55,55,57,55,44,51,55,46,54,48,52,54,49,49,93,44,91,45,49,49,51,46,52,55,52,48,50,57,44,51,55,46,53,50,57,48,56,53,93,44,91,45,49,49,51,46,50,53,51,51,52,44,51,55,46,53,50,56,57,56,51,93,44,91,45,49,49,51,46,50,53,51,52,57,44,51,55,46,52,56,50,49,54,55,93,44,91,45,49,49,51,46,48,51,55,48,52,56,44,51,55,46,52,55,52,52,55,52,93,44,91,45,49,49,50,46,57,48,48,57,57,51,44,51,55,46,53,48,48,48,50,49,93,44,91,45,49,49,50,46,54,56,51,55,53,44,51,55,46,53,52,51,54,57,50,93,44,91,45,49,49,50,46,54,56,57,50,50,49,44,51,55,46,56,48,53,53,57,93,44,91,45,49,49,50,46,53,55,56,51,57,55,44,51,55,46,56,56,50,49,52,55,93,44,91,45,49,49,50,46,52,54,56,49,55,55,44,51,55,46,56,57,48,52,54,52,93,44,91,45,49,49,50,46,52,55,56,54,56,44,51,56,46,49,52,55,52,49,57,93,44,91,45,49,49,51,46,52,55,49,54,44,51,56,46,49,52,56,54,54,53,93,44,91,45,49,49,52,46,48,52,57,57,55,56,44,51,56,46,49,52,56,55,54,51,93,44,91,45,49,49,52,46,48,53,50,51,53,44,51,55,46,54,48,52,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,50,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,69,115,109,101,114,97,108,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,118,97,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,52,50,56,49,52,52,44,51,55,46,56,57,54,50,50,93,44,91,45,49,49,55,46,56,51,50,55,50,54,44,51,55,46,52,54,52,57,50,57,93,44,91,45,49,49,55,46,49,54,54,48,48,49,44,51,54,46,57,55,49,49,49,49,93,44,91,45,49,49,55,46,49,54,53,54,49,50,44,51,56,46,48,48,49,54,57,50,93,44,91,45,49,49,55,46,54,57,49,48,50,49,44,51,56,46,52,55,51,55,57,55,93,44,91,45,49,49,56,46,51,53,49,52,56,52,44,51,55,46,56,57,51,55,48,53,93,44,91,45,49,49,56,46,52,50,56,49,52,52,44,51,55,46,56,57,54,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,75,101,119,101,101,110,97,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,52,56,56,54,57,44,52,55,46,52,55,55,49,52,53,93,44,91,45,56,56,46,53,49,50,53,57,50,44,52,55,46,50,56,53,57,52,51,93,44,91,45,56,56,46,50,57,56,57,57,50,44,52,55,46,50,56,54,48,57,55,93,44,91,45,56,56,46,50,57,56,52,51,54,44,52,55,46,49,57,57,55,56,50,93,44,91,45,56,56,46,48,52,54,48,54,51,44,52,55,46,49,57,57,55,50,50,93,44,91,45,56,56,46,48,52,54,54,49,52,44,52,55,46,50,49,56,54,57,54,93,44,91,45,56,55,46,49,49,50,49,49,52,44,52,55,46,50,50,51,50,54,57,93,44,91,45,56,55,46,49,49,50,54,57,53,44,52,55,46,56,49,55,57,57,56,93,44,91,45,56,56,46,51,54,57,56,54,50,44,52,56,46,51,48,54,48,54,51,93,44,91,45,56,56,46,54,55,55,52,52,50,44,52,56,46,50,52,53,51,57,55,93,44,91,45,56,57,46,51,51,55,53,53,44,52,55,46,57,55,52,50,54,49,93,44,91,45,56,57,46,52,56,51,51,56,53,44,52,56,46,48,49,51,55,49,54,93,44,91,45,56,57,46,54,56,48,55,51,44,52,55,46,55,49,52,53,53,50,93,44,91,45,56,56,46,57,52,56,56,54,57,44,52,55,46,52,55,55,49,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,83,97,110,112,101,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,54,54,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,54,52,49,57,52,52,44,51,57,46,56,49,50,56,54,57,93,44,91,45,49,49,49,46,53,56,52,55,53,52,44,51,57,46,55,52,48,49,52,49,93,44,91,45,49,49,49,46,55,49,55,52,56,50,44,51,57,46,54,57,52,53,54,93,44,91,45,49,49,49,46,55,49,51,50,50,52,44,51,57,46,52,54,48,50,57,52,93,44,91,45,49,49,49,46,55,52,55,48,52,52,44,51,57,46,51,56,50,55,53,93,44,91,45,49,49,49,46,57,50,50,51,56,57,44,51,57,46,51,56,49,53,57,49,93,44,91,45,49,49,50,46,48,49,54,48,48,51,44,51,57,46,51,49,52,53,54,49,93,44,91,45,49,49,50,46,48,49,52,48,56,51,44,51,57,46,48,52,53,53,49,56,93,44,91,45,49,49,49,46,56,53,51,50,57,55,44,51,57,46,48,51,50,57,56,52,93,44,91,45,49,49,49,46,50,57,57,51,54,44,51,57,46,48,51,50,50,54,52,93,44,91,45,49,49,49,46,51,48,48,57,48,53,44,51,57,46,52,54,55,50,51,55,93,44,91,45,49,49,49,46,50,52,55,55,52,56,44,51,57,46,52,54,55,49,57,57,93,44,91,45,49,49,49,46,50,52,55,51,57,49,44,51,57,46,55,48,52,51,53,93,44,91,45,49,49,49,46,50,52,55,52,57,54,44,51,57,46,56,49,51,48,50,56,93,44,91,45,49,49,49,46,54,52,49,57,52,52,44,51,57,46,56,49,50,56,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,75,101,97,114,110,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,52,50,51,49,50,44,51,56,46,50,54,51,50,48,55,93,44,91,45,49,48,49,46,53,52,50,55,53,55,44,51,55,46,56,50,55,53,57,52,93,44,91,45,49,48,49,46,53,50,55,48,54,51,44,51,55,46,55,51,54,51,49,52,93,44,91,45,49,48,49,46,48,56,57,54,54,55,44,51,55,46,55,51,54,51,51,55,93,44,91,45,49,48,49,46,49,48,51,55,55,56,44,51,55,46,56,50,57,48,51,53,93,44,91,45,49,48,49,46,49,48,51,50,54,56,44,51,56,46,50,54,52,53,53,55,93,44,91,45,49,48,49,46,49,50,53,52,51,56,44,51,56,46,50,54,52,53,48,57,93,44,91,45,49,48,49,46,53,52,50,51,49,50,44,51,56,46,50,54,51,50,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,114,101,118,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,54,56,48,56,44,34,98,101,100,115,34,58,50,48,54,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,54,50,57,48,56,44,50,56,46,51,52,55,52,56,55,93,44,91,45,56,48,46,56,54,56,56,56,49,44,50,55,46,56,50,50,53,50,50,93,44,91,45,56,48,46,53,48,57,48,55,53,44,50,55,46,56,50,50,48,53,56,93,44,91,45,56,48,46,51,56,53,48,54,57,44,50,55,46,56,54,49,51,54,50,93,44,91,45,56,48,46,52,57,57,55,55,51,44,50,56,46,48,55,55,50,54,93,44,91,45,56,48,46,53,52,51,57,57,57,44,50,56,46,50,55,49,48,57,50,93,44,91,45,56,48,46,52,54,57,51,57,44,50,56,46,52,53,51,48,57,55,93,44,91,45,56,48,46,53,50,50,57,55,51,44,50,56,46,54,48,56,50,51,56,93,44,91,45,56,48,46,54,54,51,52,54,49,44,50,56,46,55,57,48,53,56,56,93,44,91,45,56,48,46,57,54,55,56,57,53,44,50,56,46,55,57,48,49,57,55,93,44,91,45,56,48,46,57,56,55,50,53,44,50,56,46,54,49,50,57,57,55,93,44,91,45,56,48,46,56,56,53,57,48,50,44,50,56,46,53,49,48,50,51,56,93,44,91,45,56,48,46,56,54,50,57,48,56,44,50,56,46,51,52,55,52,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,52,48,51,44,34,98,101,100,115,34,58,51,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,51,48,56,49,56,44,51,57,46,51,52,54,57,52,56,93,44,91,45,56,54,46,54,56,53,54,49,44,51,57,46,51,51,54,48,52,51,93,44,91,45,56,54,46,54,56,51,48,48,50,44,51,57,46,49,54,53,55,52,54,93,44,91,45,56,54,46,54,56,50,50,55,55,44,51,56,46,57,57,50,52,48,52,93,44,91,45,56,54,46,51,49,55,52,55,52,44,51,56,46,57,57,48,56,55,93,44,91,45,56,54,46,51,49,56,49,51,51,44,51,57,46,48,52,56,56,49,93,44,91,45,56,54,46,51,55,48,48,54,54,44,51,57,46,48,52,56,51,55,53,93,44,91,45,56,54,46,51,56,49,51,57,53,44,51,57,46,51,51,57,55,53,50,93,44,91,45,56,54,46,54,51,48,56,49,56,44,51,57,46,51,52,54,57,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,76,117,99,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,57,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,53,55,53,53,54,44,52,49,46,49,54,49,50,55,49,93,44,91,45,57,51,46,53,53,54,53,52,44,52,48,46,56,57,56,50,57,53,93,44,91,45,57,51,46,48,57,55,53,57,53,44,52,48,46,56,57,56,52,53,49,93,44,91,45,57,51,46,48,57,57,50,49,55,44,52,49,46,49,54,48,56,54,55,93,44,91,45,57,51,46,51,50,55,56,56,54,44,52,49,46,49,54,48,54,53,57,93,44,91,45,57,51,46,53,53,55,53,53,54,44,52,49,46,49,54,49,50,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,57,34,44,34,78,65,77,69,34,58,34,87,111,111,100,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,57,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,50,53,49,54,56,44,51,56,46,49,57,53,52,50,54,93,44,91,45,56,52,46,56,54,52,57,48,56,44,51,56,46,49,49,54,57,50,54,93,44,91,45,56,52,46,55,57,54,51,50,55,44,51,55,46,57,55,48,48,56,56,93,44,91,45,56,52,46,55,48,57,57,49,56,44,51,55,46,56,54,49,57,53,50,93,44,91,45,56,52,46,54,54,48,51,52,44,51,56,46,48,48,51,56,51,54,93,44,91,45,56,52,46,54,50,53,48,55,57,44,51,56,46,49,49,54,51,57,55,93,44,91,45,56,52,46,55,50,53,49,54,56,44,51,56,46,49,57,53,52,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,74,97,115,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,57,48,48,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,56,49,50,55,44,51,50,46,53,53,54,52,55,49,93,44,91,45,56,49,46,49,50,56,53,51,53,44,51,50,46,51,51,56,51,56,49,93,44,91,45,56,49,46,49,52,52,53,55,50,44,51,50,46,50,50,54,49,50,56,93,44,91,45,56,49,46,49,49,55,50,50,53,44,51,50,46,49,49,55,54,48,52,93,44,91,45,56,49,46,48,48,52,51,48,53,44,51,50,46,49,48,50,51,54,55,93,44,91,45,56,48,46,55,56,50,57,54,44,51,49,46,57,57,53,57,53,52,93,44,91,45,56,48,46,55,52,53,53,51,54,44,51,50,46,48,55,56,54,54,55,93,44,91,45,56,48,46,57,48,48,53,55,51,44,51,50,46,49,49,49,54,49,55,93,44,91,45,56,49,46,48,48,56,53,52,44,51,50,46,50,49,50,49,50,56,93,44,91,45,56,48,46,57,50,49,56,56,51,44,51,50,46,51,53,49,56,51,52,93,44,91,45,56,48,46,56,52,49,52,53,56,44,51,50,46,51,56,53,48,54,52,93,44,91,45,56,48,46,56,50,48,50,50,56,44,51,50,46,52,57,48,55,56,56,93,44,91,45,56,48,46,56,54,57,55,48,53,44,51,50,46,54,54,48,57,51,53,93,44,91,45,56,49,46,48,49,56,52,57,53,44,51,50,46,55,53,48,49,55,50,93,44,91,45,56,49,46,50,56,49,50,55,44,51,50,46,53,53,54,52,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,66,114,101,119,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,50,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,53,54,55,48,52,57,44,51,48,46,48,53,50,56,48,56,93,44,91,45,49,48,51,46,52,51,57,57,55,54,44,51,48,46,54,54,53,57,51,57,93,44,91,45,49,48,51,46,56,48,48,54,56,44,51,48,46,52,49,50,53,50,55,93,44,91,45,49,48,51,46,55,57,50,55,48,51,44,50,57,46,50,54,50,52,57,57,93,44,91,45,49,48,51,46,55,49,56,53,54,49,44,50,57,46,49,56,48,56,50,54,93,44,91,45,49,48,51,46,53,53,54,56,54,56,44,50,57,46,49,53,53,53,48,50,93,44,91,45,49,48,51,46,51,56,54,56,49,55,44,50,57,46,48,50,49,55,51,53,93,44,91,45,49,48,51,46,49,53,51,56,57,54,44,50,56,46,57,55,49,54,48,54,93,44,91,45,49,48,50,46,57,48,54,51,56,50,44,50,57,46,50,54,50,48,53,53,93,44,91,45,49,48,50,46,56,55,55,55,50,54,44,50,57,46,51,53,52,56,93,44,91,45,49,48,50,46,54,57,51,53,51,57,44,50,57,46,54,55,54,57,53,55,93,44,91,45,49,48,50,46,54,55,55,50,49,57,44,50,57,46,55,52,49,48,53,50,93,44,91,45,49,48,50,46,52,51,52,50,50,56,44,50,57,46,55,55,54,57,52,54,93,44,91,45,49,48,50,46,51,50,48,56,49,57,44,50,57,46,56,55,56,57,51,51,93,44,91,45,49,48,50,46,53,54,55,48,52,57,44,51,48,46,48,53,50,56,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,77,99,67,111,114,109,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,48,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,53,54,52,52,57,49,44,51,51,46,57,53,53,55,51,51,93,44,91,45,56,50,46,51,52,54,57,51,51,44,51,51,46,56,51,52,50,57,56,93,44,91,45,56,50,46,50,49,56,54,52,57,44,51,51,46,54,56,54,50,57,57,93,44,91,45,56,50,46,49,49,53,51,50,57,44,51,51,46,53,57,54,54,49,51,93,44,91,45,56,50,46,49,55,50,56,48,55,44,51,51,46,55,54,53,49,57,52,93,44,91,45,56,50,46,49,50,52,56,52,50,44,51,51,46,56,52,50,50,56,49,93,44,91,45,56,50,46,49,53,53,55,44,51,51,46,57,50,57,50,57,93,44,91,45,56,50,46,48,52,54,57,55,52,44,51,51,46,57,53,51,50,49,93,44,91,45,56,50,46,50,48,48,50,56,54,44,51,51,46,57,55,56,53,57,55,93,44,91,45,56,50,46,51,50,54,57,52,55,44,51,52,46,48,54,52,49,50,93,44,91,45,56,50,46,53,51,48,53,54,55,44,51,52,46,48,55,49,57,50,53,93,44,91,45,56,50,46,53,57,52,54,51,49,44,51,52,46,48,49,51,55,57,54,93,44,91,45,56,50,46,53,54,52,52,57,49,44,51,51,46,57,53,53,55,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,54,52,52,44,34,98,101,100,115,34,58,49,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,49,49,54,57,52,44,51,52,46,57,49,50,53,55,55,93,44,91,45,56,49,46,55,56,51,51,57,44,51,52,46,56,51,55,49,50,53,93,44,91,45,56,49,46,56,53,52,48,48,50,44,51,52,46,53,57,52,53,52,57,93,44,91,45,56,49,46,54,52,51,53,53,50,44,51,52,46,53,51,51,54,53,50,93,44,91,45,56,49,46,53,53,51,50,48,52,44,51,52,46,52,55,55,49,49,52,93,44,91,45,56,49,46,52,50,51,50,52,49,44,51,52,46,52,57,52,51,55,57,93,44,91,45,56,49,46,52,50,50,55,48,54,44,51,52,46,53,55,50,48,50,57,93,44,91,45,56,49,46,52,55,56,52,53,52,44,51,52,46,56,50,49,53,48,57,93,44,91,45,56,49,46,52,53,55,50,53,55,44,51,52,46,56,51,57,50,56,93,44,91,45,56,49,46,55,49,49,54,57,52,44,51,52,46,57,49,50,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,78,105,99,111,108,108,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,55,56,51,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,50,57,53,53,44,52,52,46,52,53,54,55,49,54,93,44,91,45,57,52,46,54,50,52,50,44,52,52,46,52,53,54,48,51,93,44,91,45,57,52,46,55,56,48,54,51,44,52,52,46,52,53,54,54,53,93,44,91,45,57,52,46,52,57,49,54,56,54,44,52,52,46,51,53,50,50,53,52,93,44,91,45,57,52,46,51,55,49,55,51,49,44,52,52,46,50,54,52,52,52,56,93,44,91,45,57,52,46,48,53,54,55,53,55,44,52,52,46,49,53,52,54,49,55,93,44,91,45,57,52,46,48,49,49,56,54,56,44,52,52,46,50,51,57,53,50,93,44,91,45,57,51,46,57,51,54,48,51,50,44,52,52,46,51,51,57,54,54,53,93,44,91,45,57,51,46,57,50,57,53,53,44,52,52,46,52,53,54,55,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,110,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,53,51,55,44,34,98,101,100,115,34,58,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,52,50,56,49,48,50,44,52,53,46,51,55,55,48,49,93,44,91,45,56,56,46,51,48,53,56,49,49,44,52,53,46,51,55,52,54,49,93,44,91,45,56,56,46,51,48,57,48,54,51,44,52,53,46,50,48,49,53,56,93,44,91,45,56,56,46,49,56,54,51,53,53,44,52,53,46,49,57,55,57,55,52,93,44,91,45,56,56,46,49,50,49,49,53,50,44,52,53,46,48,50,51,53,56,49,93,44,91,45,56,55,46,55,54,48,48,55,49,44,52,52,46,57,57,48,53,51,93,44,91,45,56,55,46,55,54,50,52,54,52,44,52,52,46,55,54,52,51,54,55,93,44,91,45,56,55,46,53,53,49,50,54,50,44,52,53,46,48,48,56,48,52,57,93,44,91,45,56,55,46,52,52,50,55,54,44,52,53,46,48,55,54,52,55,49,93,44,91,45,56,55,46,54,54,49,50,49,49,44,52,53,46,49,48,56,50,55,57,93,44,91,45,56,55,46,55,51,53,50,56,50,44,52,53,46,49,55,54,53,54,53,93,44,91,45,56,55,46,54,52,55,55,54,56,44,52,53,46,51,52,48,53,54,51,93,44,91,45,56,55,46,56,56,52,56,53,53,44,52,53,46,51,54,50,55,57,50,93,44,91,45,56,55,46,55,57,50,55,54,57,44,52,53,46,52,57,57,57,54,55,93,44,91,45,56,55,46,55,55,52,54,56,50,44,52,53,46,54,48,50,48,50,52,93,44,91,45,56,55,46,56,52,54,54,48,50,44,52,53,46,55,50,50,53,52,52,93,44,91,45,56,56,46,48,53,56,50,53,51,44,52,53,46,55,56,48,54,50,57,93,44,91,45,56,56,46,48,53,57,50,52,54,44,52,53,46,55,49,51,48,54,51,93,44,91,45,56,56,46,52,50,53,51,48,50,44,52,53,46,55,50,50,52,50,54,93,44,91,45,56,56,46,52,50,56,49,48,50,44,52,53,46,51,55,55,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,53,51,56,52,44,34,98,101,100,115,34,58,56,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,55,56,53,53,49,53,44,52,53,46,56,53,48,53,51,54,93,44,91,45,49,50,50,46,55,54,50,52,51,55,44,52,53,46,55,50,56,54,54,53,93,44,91,45,49,50,50,46,55,54,51,56,49,44,52,53,46,54,53,55,49,51,56,93,44,91,45,49,50,50,46,52,51,56,54,55,52,44,52,53,46,53,54,51,53,56,53,93,44,91,45,49,50,50,46,50,52,57,50,49,55,44,52,53,46,53,52,56,54,53,51,93,44,91,45,49,50,50,46,50,52,53,56,53,54,44,52,54,46,48,53,51,56,53,51,93,44,91,45,49,50,50,46,51,51,50,54,54,51,44,52,53,46,57,54,53,48,54,52,93,44,91,45,49,50,50,46,52,55,56,55,53,51,44,52,53,46,57,56,55,57,51,56,93,44,91,45,49,50,50,46,55,50,48,57,49,44,52,53,46,57,51,49,56,57,50,93,44,91,45,49,50,50,46,55,56,53,53,49,53,44,52,53,46,56,53,48,53,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,80,114,105,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,55,54,57,54,56,44,52,53,46,57,56,49,53,53,52,93,44,91,45,57,48,46,54,55,56,55,52,57,44,52,53,46,54,51,56,50,54,52,93,44,91,45,57,48,46,54,55,56,55,55,51,44,52,53,46,51,55,55,57,48,55,93,44,91,45,57,48,46,48,52,50,50,55,51,44,52,53,46,51,56,49,56,54,54,93,44,91,45,57,48,46,48,52,51,52,49,52,44,52,53,46,53,53,53,48,56,50,93,44,91,45,57,48,46,48,52,50,56,53,55,44,52,53,46,56,57,55,50,54,51,93,44,91,45,57,48,46,48,52,51,57,53,56,44,52,53,46,57,56,49,57,52,56,93,44,91,45,57,48,46,51,48,50,48,54,51,44,52,53,46,57,56,49,51,52,57,93,44,91,45,57,48,46,54,55,54,57,54,56,44,52,53,46,57,56,49,53,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,77,105,97,109,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,57,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,54,57,48,49,50,44,52,48,46,57,48,57,56,51,54,93,44,91,45,56,54,46,49,54,53,48,50,52,44,52,48,46,53,54,50,54,52,57,93,44,91,45,56,53,46,56,54,51,54,52,49,44,52,48,46,53,54,53,53,50,53,93,44,91,45,56,53,46,56,54,52,55,57,49,44,52,48,46,54,53,49,54,57,51,93,44,91,45,56,53,46,57,51,57,53,50,53,44,52,48,46,54,53,48,57,57,49,93,44,91,45,56,53,46,57,52,54,52,51,54,44,52,48,46,57,57,57,49,57,53,93,44,91,45,56,54,46,49,54,56,52,53,57,44,52,48,46,57,57,54,48,57,55,93,44,91,45,56,54,46,49,54,57,48,49,50,44,52,48,46,57,48,57,56,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,69,108,108,115,119,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,57,51,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,52,56,52,56,54,49,44,51,56,46,56,55,48,55,57,49,93,44,91,45,57,56,46,52,56,54,49,48,56,44,51,56,46,54,57,54,56,55,56,93,44,91,45,57,56,46,52,56,48,51,55,55,44,51,56,46,53,50,49,56,52,49,93,44,91,45,57,55,46,57,50,52,50,54,57,44,51,56,46,53,50,50,55,53,53,93,44,91,45,57,55,46,57,50,52,55,57,53,44,51,56,46,54,48,57,56,56,93,44,91,45,57,55,46,57,50,56,53,57,50,44,51,56,46,56,55,49,48,57,57,93,44,91,45,57,56,46,52,56,52,56,54,49,44,51,56,46,56,55,48,55,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,87,101,115,116,32,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,56,48,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,51,53,55,56,50,44,51,51,46,48,48,54,48,57,57,93,44,91,45,57,49,46,53,54,54,51,54,51,44,51,50,46,56,53,53,53,54,49,93,44,91,45,57,49,46,54,51,55,53,56,55,44,51,50,46,54,54,55,51,52,49,93,44,91,45,57,49,46,53,57,54,48,50,55,44,51,50,46,53,56,50,49,57,50,93,44,91,45,57,49,46,52,52,53,50,57,57,44,51,50,46,53,56,49,57,53,54,93,44,91,45,57,49,46,51,52,52,56,52,53,44,51,50,46,55,53,54,54,53,57,93,44,91,45,57,49,46,51,51,53,52,54,51,44,51,50,46,56,54,54,49,48,52,93,44,91,45,57,49,46,50,54,53,48,49,56,44,51,51,46,48,48,53,48,56,51,93,44,91,45,57,49,46,52,51,53,55,56,50,44,51,51,46,48,48,54,48,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,76,105,98,101,114,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,52,54,52,48,56,44,51,48,46,51,56,56,50,56,49,93,44,91,45,56,52,46,56,56,50,54,49,54,44,51,48,46,53,51,51,48,57,52,93,44,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,44,91,45,56,53,46,48,51,50,57,51,49,44,51,48,46,52,50,48,50,57,57,93,44,91,45,56,53,46,48,53,50,55,55,55,44,51,48,46,50,56,55,52,48,54,93,44,91,45,56,53,46,49,49,53,54,54,44,51,48,46,49,57,57,57,55,54,93,44,91,45,56,53,46,49,51,53,50,53,52,44,51,48,46,48,52,51,50,55,93,44,91,45,56,53,46,48,50,53,52,51,57,44,50,57,46,57,55,49,51,57,57,93,44,91,45,56,53,46,48,48,55,54,50,54,44,51,48,46,48,49,51,56,56,51,93,44,91,45,56,52,46,53,52,52,52,53,44,51,48,46,48,49,49,48,51,93,44,91,45,56,52,46,54,54,57,50,53,56,44,51,48,46,49,50,53,50,93,44,91,45,56,52,46,55,49,51,51,53,49,44,51,48,46,51,48,48,49,55,93,44,91,45,56,52,46,54,52,54,52,48,56,44,51,48,46,51,56,56,50,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,72,111,100,103,101,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,56,52,50,48,55,44,51,56,46,50,54,50,49,55,57,93,44,91,45,49,48,48,46,50,50,55,49,51,55,44,51,56,46,50,54,50,50,51,55,93,44,91,45,49,48,48,46,50,50,54,54,49,44,51,56,46,48,48,49,48,49,53,93,44,91,45,49,48,48,46,50,50,55,48,57,44,51,55,46,57,49,52,48,49,56,93,44,91,45,57,57,46,53,54,57,56,55,57,44,51,55,46,57,49,51,48,49,54,93,44,91,45,57,57,46,53,54,57,53,51,51,44,51,56,46,48,56,55,51,55,50,93,44,91,45,57,57,46,53,56,52,50,48,55,44,51,56,46,50,54,50,49,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,101,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,54,49,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,49,54,50,50,57,44,51,55,46,52,55,53,49,57,93,44,91,45,49,48,48,46,54,53,50,54,52,50,44,51,55,46,52,55,52,56,52,56,93,44,91,45,49,48,48,46,54,53,50,55,50,56,44,51,55,46,51,56,55,54,50,55,93,44,91,45,49,48,48,46,54,51,51,51,50,55,44,51,55,46,48,48,48,49,48,51,93,44,91,45,49,48,48,46,48,56,57,52,56,51,44,51,55,46,48,48,50,50,54,49,93,44,91,45,49,48,48,46,48,57,49,53,50,57,44,51,55,46,51,56,54,56,57,50,93,44,91,45,49,48,48,46,49,48,55,50,52,56,44,51,55,46,52,55,52,56,51,54,93,44,91,45,49,48,48,46,50,49,54,50,50,57,44,51,55,46,52,55,53,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,77,99,76,101,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,55,53,49,52,53,44,51,55,46,53,54,57,57,56,56,93,44,91,45,56,55,46,51,53,49,56,57,51,44,51,55,46,52,50,53,54,53,53,93,44,91,45,56,55,46,50,57,53,57,54,53,44,51,55,46,51,57,49,56,49,57,93,44,91,45,56,55,46,48,57,57,56,48,51,44,51,55,46,52,49,54,48,52,50,93,44,91,45,56,55,46,48,51,56,50,54,44,51,55,46,53,54,48,56,48,51,93,44,91,45,56,55,46,52,48,56,53,52,55,44,51,55,46,54,56,51,53,54,51,93,44,91,45,56,55,46,52,57,53,51,51,49,44,51,55,46,54,52,55,53,52,55,93,44,91,45,56,55,46,51,55,53,49,52,53,44,51,55,46,53,54,57,57,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,52,55,44,34,98,101,100,115,34,58,49,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,56,48,50,53,52,44,51,49,46,55,51,51,50,53,53,93,44,91,45,57,49,46,52,52,51,57,49,54,44,51,49,46,53,52,50,52,54,54,93,44,91,45,57,49,46,53,49,53,57,49,57,44,51,49,46,53,51,48,55,50,57,93,44,91,45,57,49,46,52,55,50,48,54,55,44,51,49,46,51,57,55,48,55,54,93,44,91,45,57,49,46,53,56,57,52,53,49,44,51,49,46,49,57,49,49,52,93,44,91,45,57,49,46,52,55,56,55,57,57,44,51,49,46,50,51,56,57,57,57,93,44,91,45,57,49,46,52,50,52,48,49,50,44,51,49,46,51,49,53,48,52,93,44,91,45,57,49,46,51,48,51,53,56,44,51,49,46,51,54,48,57,55,53,93,44,91,45,57,49,46,49,53,56,49,53,44,51,49,46,51,52,54,54,57,53,93,44,91,45,57,49,46,49,53,51,56,54,52,44,51,49,46,54,49,48,48,54,56,93,44,91,45,57,49,46,50,57,53,53,55,44,51,49,46,54,54,57,56,55,93,44,91,45,57,49,46,51,49,55,56,54,52,44,51,49,46,55,52,57,55,54,54,93,44,91,45,57,49,46,51,56,48,50,53,52,44,51,49,46,55,51,51,50,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,76,97,115,32,77,97,114,195,173,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,48,56,50,48,48,50,44,49,56,46,50,53,52,57,52,54,93,44,91,45,54,55,46,48,49,57,56,51,54,44,49,56,46,49,57,53,52,55,49,93,44,91,45,54,54,46,56,57,55,57,54,52,44,49,56,46,49,56,55,55,52,52,93,44,91,45,54,54,46,57,48,55,50,51,54,44,49,56,46,50,53,51,48,57,93,44,91,45,54,55,46,48,51,55,57,51,53,44,49,56,46,50,56,57,55,48,53,93,44,91,45,54,55,46,48,56,50,48,48,50,44,49,56,46,50,53,52,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,73,116,97,119,97,109,98,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,52,56,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,52,50,48,55,57,44,51,52,46,52,54,53,50,55,54,93,44,91,45,56,56,46,53,52,51,51,53,50,44,51,52,46,48,56,57,48,52,52,93,44,91,45,56,56,46,50,48,51,56,54,52,44,51,52,46,48,56,54,53,54,52,93,44,91,45,56,56,46,49,55,51,54,51,50,44,51,52,46,51,50,49,48,53,52,93,44,91,45,56,56,46,49,53,54,50,57,50,44,51,52,46,52,54,51,50,49,52,93,44,91,45,56,56,46,51,50,57,49,57,51,44,51,52,46,52,54,51,53,55,49,93,44,91,45,56,56,46,53,52,50,48,55,57,44,51,52,46,52,54,53,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,50,57,54,44,34,98,101,100,115,34,58,49,55,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,55,48,52,56,50,44,51,56,46,51,53,54,55,53,49,93,44,91,45,56,52,46,57,57,55,54,54,55,44,51,56,46,51,51,53,53,56,54,93,44,91,45,56,53,46,48,50,51,55,49,49,44,51,56,46,49,50,57,48,53,50,93,44,91,45,56,52,46,56,54,52,57,48,56,44,51,56,46,49,49,54,57,50,54,93,44,91,45,56,52,46,55,50,53,49,54,56,44,51,56,46,49,57,53,52,50,54,93,44,91,45,56,52,46,55,52,48,53,57,52,44,51,56,46,51,53,50,52,49,53,93,44,91,45,56,52,46,56,55,48,52,56,50,44,51,56,46,51,53,54,55,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,72,97,110,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,53,52,49,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,56,46,48,53,52,57,56,53,44,52,53,46,50,53,50,53,55,55,93,44,91,45,54,56,46,51,48,51,55,49,52,44,52,53,46,50,50,49,53,51,49,93,44,91,45,54,56,46,50,55,48,52,57,55,44,52,53,46,49,48,48,49,50,49,93,44,91,45,54,56,46,51,57,54,57,48,51,44,52,53,46,48,56,51,50,57,54,93,44,91,45,54,56,46,51,55,53,56,57,50,44,52,52,46,57,57,55,51,55,51,93,44,91,45,54,56,46,53,48,49,48,57,53,44,52,52,46,57,56,48,55,49,56,93,44,91,45,54,56,46,52,52,53,50,49,57,44,52,52,46,55,54,51,48,49,52,93,44,91,45,54,56,46,56,49,53,55,57,51,44,52,52,46,54,56,51,55,53,52,93,44,91,45,54,56,46,56,48,52,54,49,53,44,52,52,46,52,53,56,52,49,49,93,44,91,45,54,56,46,56,57,54,51,56,52,44,52,52,46,50,48,57,57,51,53,93,44,91,45,54,56,46,55,50,48,57,49,55,44,52,52,46,49,49,53,50,54,93,44,91,45,54,56,46,53,55,57,51,52,56,44,52,52,46,49,50,56,55,53,93,44,91,45,54,56,46,52,56,52,54,51,53,44,52,52,46,48,50,56,51,50,54,93,44,91,45,54,56,46,51,49,49,51,57,51,44,52,52,46,48,53,51,52,50,57,93,44,91,45,54,56,46,49,55,53,56,53,56,44,52,52,46,49,50,53,48,56,51,93,44,91,45,54,56,46,49,50,56,50,56,44,52,52,46,50,54,52,50,53,51,93,44,91,45,54,55,46,57,50,53,49,55,56,44,52,52,46,51,52,49,52,51,52,93,44,91,45,54,55,46,57,56,49,57,56,56,44,52,52,46,52,55,51,55,53,54,93,44,91,45,54,56,46,49,48,53,48,49,55,44,52,52,46,57,51,57,48,56,56,93,44,91,45,54,55,46,57,56,49,56,53,49,44,52,52,46,57,53,53,56,56,53,93,44,91,45,54,56,46,48,53,52,57,56,53,44,52,53,46,50,53,50,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,56,50,51,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,57,46,52,48,57,54,51,53,44,52,52,46,51,50,55,57,57,56,93,44,91,45,54,57,46,50,56,50,48,50,55,44,52,52,46,48,54,52,53,50,51,93,44,91,45,54,57,46,51,54,51,57,57,54,44,52,52,46,48,49,50,56,55,51,93,44,91,45,54,57,46,51,57,55,55,51,56,44,52,51,46,56,55,49,56,57,93,44,91,45,54,57,46,50,51,51,52,56,44,52,51,46,55,55,56,48,48,50,93,44,91,45,54,57,46,48,53,53,56,57,52,44,52,51,46,56,53,56,57,49,49,93,44,91,45,54,56,46,57,50,53,53,49,56,44,52,51,46,55,53,48,48,56,56,93,44,91,45,54,56,46,56,50,54,57,49,54,44,52,51,46,55,51,53,55,49,49,93,44,91,45,54,56,46,55,52,57,52,55,51,44,52,51,46,56,51,50,53,51,49,93,44,91,45,54,56,46,52,56,52,54,51,53,44,52,52,46,48,50,56,51,50,54,93,44,91,45,54,56,46,53,55,57,51,52,56,44,52,52,46,49,50,56,55,53,93,44,91,45,54,56,46,55,50,48,57,49,55,44,52,52,46,49,49,53,50,54,93,44,91,45,54,56,46,56,57,54,51,56,52,44,52,52,46,50,48,57,57,51,53,93,44,91,45,54,56,46,57,57,57,52,53,53,44,52,52,46,50,48,50,55,50,49,93,44,91,45,54,57,46,50,54,56,56,56,50,44,52,52,46,51,54,52,54,53,51,93,44,91,45,54,57,46,52,48,57,54,51,53,44,52,52,46,51,50,55,57,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,55,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,52,57,55,44,34,98,101,100,115,34,58,49,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,52,52,52,57,51,44,51,51,46,53,50,53,55,55,54,93,44,91,45,56,51,46,57,50,51,57,49,51,44,51,51,46,52,52,52,49,57,52,93,44,91,45,56,51,46,56,54,51,48,53,56,44,51,51,46,51,54,56,50,55,56,93,44,91,45,56,51,46,54,56,50,49,57,54,44,51,51,46,53,50,54,50,50,93,44,91,45,56,51,46,54,56,48,56,57,54,44,51,51,46,53,57,54,57,49,57,93,44,91,45,56,51,46,57,49,52,56,50,51,44,51,51,46,55,52,52,50,48,51,93,44,91,45,56,51,46,57,51,48,56,54,51,44,51,51,46,54,53,49,56,50,51,93,44,91,45,56,52,46,48,52,52,52,57,51,44,51,51,46,53,50,53,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,70,97,117,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,50,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,55,51,51,51,44,52,53,46,50,52,53,51,54,52,93,44,91,45,57,57,46,53,55,50,54,57,57,44,52,52,46,56,57,55,50,54,51,93,44,91,45,57,57,46,51,49,49,55,53,52,44,52,52,46,56,57,55,50,50,55,93,44,91,45,57,56,46,55,49,54,52,57,56,44,52,52,46,56,57,54,57,50,53,93,44,91,45,57,56,46,55,49,55,55,53,57,44,52,53,46,50,52,51,55,51,50,93,44,91,45,57,56,46,55,50,50,52,56,49,44,52,53,46,50,52,51,55,54,52,93,44,91,45,57,57,46,53,55,51,51,51,44,52,53,46,50,52,53,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,111,117,103,104,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,51,54,48,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,52,56,56,54,57,44,52,55,46,52,55,55,49,52,53,93,44,91,45,56,56,46,57,51,50,52,56,44,52,54,46,55,54,52,55,56,55,93,44,91,45,56,56,46,57,56,57,53,50,57,44,52,54,46,54,56,48,49,49,57,93,44,91,45,56,56,46,57,57,49,50,51,54,44,52,54,46,52,49,57,55,48,52,93,44,91,45,56,56,46,54,55,57,51,57,50,44,52,54,46,52,50,48,49,51,57,93,44,91,45,56,56,46,54,55,56,57,56,51,44,52,54,46,56,53,49,56,50,50,93,44,91,45,56,56,46,53,53,49,57,52,51,44,52,54,46,56,53,49,55,57,53,93,44,91,45,56,56,46,52,53,49,50,44,52,54,46,57,51,56,57,55,54,93,44,91,45,56,56,46,48,52,51,55,51,49,44,52,55,46,48,52,51,57,53,56,93,44,91,45,56,56,46,48,52,54,48,54,51,44,52,55,46,49,57,57,55,50,50,93,44,91,45,56,56,46,50,57,56,52,51,54,44,52,55,46,49,57,57,55,56,50,93,44,91,45,56,56,46,50,57,56,57,57,50,44,52,55,46,50,56,54,48,57,55,93,44,91,45,56,56,46,53,49,50,53,57,50,44,52,55,46,50,56,53,57,52,51,93,44,91,45,56,56,46,57,52,56,56,54,57,44,52,55,46,52,55,55,49,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,77,105,110,101,114,97,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,49,49,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,54,50,57,52,56,56,44,52,55,46,52,55,57,54,49,93,44,91,45,49,49,53,46,55,52,54,54,49,57,44,52,55,46,52,52,50,51,49,49,93,44,91,45,49,49,53,46,51,52,48,56,52,57,44,52,55,46,50,54,50,56,53,93,44,91,45,49,49,53,46,48,52,55,56,53,55,44,52,54,46,57,54,57,53,51,50,93,44,91,45,49,49,52,46,57,53,57,51,49,55,44,52,54,46,57,51,50,56,57,56,93,44,91,45,49,49,52,46,57,50,50,51,49,50,44,52,54,46,56,50,56,54,48,50,93,44,91,45,49,49,52,46,54,55,52,57,52,50,44,52,54,46,55,51,54,56,50,54,93,44,91,45,49,49,52,46,53,52,57,49,50,55,44,52,54,46,55,52,55,51,54,54,93,44,91,45,49,49,52,46,53,54,54,49,50,57,44,52,54,46,57,54,51,52,48,53,93,44,91,45,49,49,52,46,52,56,51,50,50,55,44,52,55,46,48,50,51,51,53,56,93,44,91,45,49,49,52,46,55,55,53,56,51,51,44,52,55,46,50,50,53,53,55,51,93,44,91,45,49,49,52,46,55,57,55,50,48,52,44,52,55,46,50,54,56,57,49,54,93,44,91,45,49,49,52,46,57,54,56,57,55,56,44,52,55,46,51,49,50,54,50,53,93,44,91,45,49,49,52,46,57,56,50,50,54,53,44,52,55,46,51,57,54,56,48,52,93,44,91,45,49,49,53,46,50,56,51,56,53,54,44,52,55,46,52,56,54,54,51,56,93,44,91,45,49,49,53,46,54,50,57,52,56,56,44,52,55,46,52,55,57,54,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,53,49,50,44,34,98,101,100,115,34,58,49,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,50,54,49,52,56,57,44,51,53,46,51,51,51,53,55,57,93,44,91,45,56,54,46,51,49,56,49,54,56,44,51,53,46,49,50,54,57,56,54,93,44,91,45,56,54,46,51,49,56,55,54,49,44,51,52,46,57,57,49,49,54,57,93,44,91,45,56,54,46,51,49,49,50,55,52,44,51,52,46,57,57,49,48,57,56,93,44,91,45,56,53,46,56,54,51,57,51,53,44,51,52,46,57,56,56,50,53,51,93,44,91,45,56,53,46,56,55,51,48,50,53,44,51,53,46,50,50,51,51,54,50,93,44,91,45,56,53,46,57,49,51,53,57,51,44,51,53,46,50,56,57,49,56,57,93,44,91,45,56,54,46,49,53,56,48,49,56,44,51,53,46,51,54,50,54,48,55,93,44,91,45,56,54,46,50,54,49,52,56,57,44,51,53,46,51,51,51,53,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,111,110,99,111,114,100,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,48,50,49,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,53,52,52,55,57,49,44,51,49,46,55,53,49,55,51,49,93,44,91,45,57,49,46,54,57,52,52,54,57,44,51,49,46,55,51,53,50,56,54,93,44,91,45,57,49,46,55,48,53,57,52,56,44,51,49,46,54,52,50,56,54,51,93,44,91,45,57,49,46,56,50,54,57,50,54,44,51,49,46,53,57,49,54,55,49,93,44,91,45,57,49,46,56,53,53,57,48,56,44,51,49,46,52,57,54,48,49,93,44,91,45,57,49,46,56,51,52,50,56,44,51,49,46,50,54,54,51,52,52,93,44,91,45,57,49,46,54,55,55,51,48,50,44,51,49,46,49,56,56,48,52,55,93,44,91,45,57,49,46,55,50,51,56,48,52,44,51,49,46,48,52,52,50,53,52,93,44,91,45,57,49,46,54,53,56,51,50,49,44,51,48,46,57,57,52,51,54,53,93,44,91,45,57,49,46,54,54,50,53,48,54,44,51,48,46,57,55,48,51,54,50,93,44,91,45,57,49,46,54,51,54,57,52,50,44,51,48,46,57,57,57,52,49,54,93,44,91,45,57,49,46,53,56,57,52,53,49,44,51,49,46,49,57,49,49,52,93,44,91,45,57,49,46,52,55,50,48,54,55,44,51,49,46,51,57,55,48,55,54,93,44,91,45,57,49,46,53,49,53,57,49,57,44,51,49,46,53,51,48,55,50,57,93,44,91,45,57,49,46,52,52,51,57,49,54,44,51,49,46,53,52,50,52,54,54,93,44,91,45,57,49,46,51,56,48,50,53,52,44,51,49,46,55,51,51,50,53,53,93,44,91,45,57,49,46,53,52,52,55,57,49,44,51,49,46,55,53,49,55,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,49,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,49,48,55,48,49,44,51,48,46,54,52,57,51,56,53,93,44,91,45,57,48,46,57,55,55,52,48,49,44,51,48,46,53,57,51,52,56,53,93,44,91,45,57,48,46,57,55,55,53,48,51,44,51,48,46,52,50,48,56,57,57,93,44,91,45,57,48,46,56,57,49,55,50,56,44,51,48,46,51,52,53,50,52,52,93,44,91,45,57,48,46,55,49,57,53,51,57,44,51,48,46,49,56,57,57,57,52,93,44,91,45,57,48,46,54,51,50,56,49,49,44,51,48,46,50,50,49,52,48,57,93,44,91,45,57,48,46,53,53,52,49,52,55,44,51,48,46,49,57,53,54,50,56,93,44,91,45,57,48,46,52,56,53,56,50,54,44,51,48,46,50,55,54,57,57,50,93,44,91,45,57,48,46,52,55,55,56,44,51,48,46,51,53,54,52,52,55,93,44,91,45,57,48,46,53,54,54,57,48,54,44,51,48,46,52,56,55,48,54,93,44,91,45,57,48,46,53,54,55,49,54,53,44,51,48,46,54,53,48,48,50,51,93,44,91,45,57,48,46,57,49,48,55,48,49,44,51,48,46,54,52,57,51,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,69,115,115,101,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,49,48,50,52,44,34,98,101,100,115,34,58,49,51,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,55,51,53,48,48,53,44,52,50,46,56,55,52,54,56,53,93,44,91,45,55,48,46,57,50,57,53,57,52,44,52,50,46,56,56,53,48,51,50,93,44,91,45,55,49,46,49,51,50,56,48,53,44,52,50,46,56,50,49,52,55,54,93,44,91,45,55,49,46,50,52,53,52,56,49,44,52,50,46,55,52,50,53,49,52,93,44,91,45,55,49,46,50,53,53,49,52,55,44,52,50,46,55,51,54,53,53,52,93,44,91,45,55,49,46,50,53,54,49,56,56,44,52,50,46,54,53,55,49,52,53,93,44,91,45,55,49,46,49,51,53,52,48,53,44,52,50,46,53,57,57,48,56,93,44,91,45,55,49,46,48,50,53,56,51,54,44,52,50,46,52,52,52,55,48,57,93,44,91,45,55,48,46,57,50,52,53,57,51,44,52,50,46,51,56,54,55,57,56,93,44,91,45,55,48,46,54,52,56,48,55,50,44,52,50,46,52,48,53,54,50,56,93,44,91,45,55,48,46,54,48,54,50,57,44,52,50,46,53,51,49,50,50,93,44,91,45,55,48,46,53,48,50,49,52,51,44,52,50,46,54,50,52,53,55,57,93,44,91,45,55,48,46,53,52,57,51,48,54,44,52,50,46,55,50,52,49,54,52,93,44,91,45,55,48,46,55,48,50,53,56,44,52,50,46,55,50,52,49,54,50,93,44,91,45,55,48,46,55,51,53,48,48,53,44,52,50,46,56,55,52,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,117,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,49,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,57,53,55,50,56,49,44,52,53,46,50,49,50,56,53,49,93,44,91,45,49,48,52,46,48,52,48,48,48,52,44,52,53,46,50,49,50,56,57,49,93,44,91,45,49,48,52,46,48,53,55,56,55,57,44,52,52,46,57,57,55,54,48,53,93,44,91,45,49,48,52,46,48,53,53,57,52,51,44,52,52,46,53,55,49,48,50,53,93,44,91,45,49,48,51,46,56,50,48,54,51,57,44,52,52,46,54,48,52,55,55,55,93,44,91,45,49,48,51,46,53,54,55,54,53,51,44,52,52,46,54,48,52,48,57,56,93,44,91,45,49,48,50,46,57,54,52,49,50,53,44,52,52,46,54,48,52,50,56,55,93,44,91,45,49,48,50,46,57,53,55,51,55,49,44,52,53,46,48,51,57,53,54,57,93,44,91,45,49,48,50,46,57,53,55,50,56,49,44,52,53,46,50,49,50,56,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,56,54,49,52,44,34,98,101,100,115,34,58,55,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,54,54,48,54,50,54,44,51,57,46,53,54,53,57,48,57,93,44,91,45,49,48,53,46,48,52,56,55,52,44,51,57,46,53,54,54,48,56,56,93,44,91,45,49,48,53,46,50,51,51,57,51,56,44,51,57,46,50,52,54,56,54,56,93,44,91,45,49,48,53,46,51,50,57,50,50,44,51,57,46,49,50,57,54,56,57,93,44,91,45,49,48,53,46,48,51,51,53,52,52,44,51,57,46,49,50,57,56,49,57,93,44,91,45,49,48,52,46,54,54,50,56,57,54,44,51,57,46,49,50,57,53,50,55,93,44,91,45,49,48,52,46,54,54,48,54,50,54,44,51,57,46,53,54,53,57,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,82,105,99,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,56,50,54,51,44,34,98,101,100,115,34,58,50,50,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,56,50,53,57,50,49,44,51,52,46,50,54,56,55,54,93,44,91,45,56,49,46,48,57,53,56,54,51,44,51,52,46,50,49,51,56,55,50,93,44,91,45,56,49,46,51,49,54,57,49,49,44,51,52,46,50,51,57,52,53,56,93,44,91,45,56,49,46,51,51,56,57,54,49,44,51,52,46,49,57,55,53,56,55,93,44,91,45,56,49,46,50,55,53,56,52,53,44,51,52,46,48,57,55,51,56,49,93,44,91,45,56,49,46,50,48,49,56,51,57,44,51,52,46,48,57,55,49,54,56,93,44,91,45,56,49,46,48,54,55,54,49,53,44,51,52,46,48,48,56,57,53,51,93,44,91,45,56,49,46,48,49,50,51,51,44,51,51,46,56,56,48,48,56,93,44,91,45,56,48,46,56,48,55,53,57,49,44,51,51,46,55,55,52,50,49,49,93,44,91,45,56,48,46,54,50,48,49,48,55,44,51,51,46,55,52,51,50,51,55,93,44,91,45,56,48,46,53,57,55,55,49,53,44,51,51,46,55,55,55,53,49,50,93,44,91,45,56,48,46,54,52,48,57,56,54,44,51,51,46,57,57,57,52,51,51,93,44,91,45,56,48,46,54,49,54,49,56,54,44,51,52,46,48,57,57,54,48,53,93,44,91,45,56,48,46,55,49,57,51,49,56,44,51,52,46,48,54,56,57,55,50,93,44,91,45,56,48,46,56,54,57,53,50,52,44,51,52,46,49,56,50,50,55,49,93,44,91,45,56,48,46,56,50,53,57,50,49,44,51,52,46,50,54,56,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,53,48,53,44,34,98,101,100,115,34,58,51,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,56,54,49,57,48,51,44,52,48,46,50,49,56,57,51,54,93,44,91,45,56,53,46,56,54,50,52,56,57,44,51,57,46,57,52,51,54,49,56,93,44,91,45,56,53,46,53,55,54,49,57,50,44,51,57,46,57,52,53,55,53,54,93,44,91,45,56,53,46,53,55,54,49,57,55,44,52,48,46,48,55,55,49,52,51,93,44,91,45,56,53,46,53,55,56,53,56,57,44,52,48,46,51,55,57,53,50,52,93,44,91,45,56,53,46,56,54,50,50,57,54,44,52,48,46,51,55,56,51,54,55,93,44,91,45,56,53,46,56,54,49,57,48,51,44,52,48,46,50,49,56,57,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,77,117,114,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,55,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,53,50,49,56,51,44,51,52,46,53,48,54,55,57,54,93,44,91,45,57,55,46,51,53,50,49,49,53,44,51,52,46,51,55,54,49,56,56,93,44,91,45,57,55,46,48,51,56,50,51,57,44,51,52,46,51,55,53,55,48,55,93,44,91,45,57,54,46,57,51,51,51,48,53,44,51,52,46,51,51,50,53,54,49,93,44,91,45,57,54,46,56,56,48,55,57,44,51,52,46,53,48,54,48,53,51,93,44,91,45,57,54,46,56,50,55,51,52,51,44,51,52,46,53,48,54,48,54,50,93,44,91,45,57,54,46,56,50,55,49,52,52,44,51,52,46,53,57,51,50,50,93,44,91,45,57,54,46,57,51,50,52,53,50,44,51,52,46,54,51,54,56,49,50,93,44,91,45,57,55,46,49,52,50,54,55,49,44,51,52,46,54,51,55,49,50,54,93,44,91,45,57,55,46,49,52,51,57,55,51,44,51,52,46,53,48,54,54,48,54,93,44,91,45,57,55,46,51,53,50,49,56,51,44,51,52,46,53,48,54,55,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,114,111,111,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,55,55,50,44,34,98,101,100,115,34,58,51,48,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,50,57,54,56,52,44,52,48,46,51,57,52,57,55,56,93,44,91,45,56,48,46,53,57,57,56,57,53,44,52,48,46,51,49,55,54,54,54,93,44,91,45,56,48,46,54,56,49,56,49,49,44,52,48,46,49,56,53,53,54,51,93,44,91,45,56,48,46,53,49,57,49,48,52,44,52,48,46,49,53,57,54,55,50,93,44,91,45,56,48,46,53,49,55,57,57,49,44,52,48,46,51,57,57,54,52,52,93,44,91,45,56,48,46,54,50,57,54,56,52,44,52,48,46,51,57,52,57,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,51,57,54,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,49,54,50,52,53,53,44,51,57,46,48,51,48,54,48,56,93,44,91,45,56,49,46,50,55,56,52,49,50,44,51,56,46,57,49,52,56,54,55,93,44,91,45,56,49,46,48,56,51,55,49,44,51,56,46,54,49,49,57,56,50,93,44,91,45,56,49,46,48,51,49,54,55,55,44,51,56,46,54,54,55,56,51,57,93,44,91,45,56,48,46,57,56,52,57,53,44,51,56,46,55,49,55,56,57,56,93,44,91,45,56,49,46,48,51,51,54,51,50,44,51,57,46,48,48,57,53,56,52,93,44,91,45,56,49,46,49,54,50,52,53,53,44,51,57,46,48,51,48,54,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,52,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,50,50,53,49,48,52,44,51,55,46,50,51,52,56,55,52,93,44,91,45,56,49,46,50,55,48,48,55,56,44,51,55,46,48,57,51,48,49,50,93,44,91,45,56,49,46,52,51,54,55,51,44,51,55,46,48,49,48,49,51,53,93,44,91,45,56,49,46,51,55,57,52,48,50,44,51,54,46,57,53,50,52,52,50,93,44,91,45,56,49,46,50,50,52,54,50,52,44,51,55,46,48,52,55,56,51,53,93,44,91,45,56,49,46,49,49,52,51,49,57,44,51,55,46,48,50,50,54,49,50,93,44,91,45,56,48,46,57,49,50,54,55,52,44,51,55,46,48,55,51,51,52,57,93,44,91,45,56,48,46,56,53,52,54,50,55,44,51,55,46,49,52,55,52,56,50,93,44,91,45,56,48,46,57,56,48,49,52,54,44,51,55,46,50,57,50,55,52,51,93,44,91,45,56,49,46,50,50,53,49,48,52,44,51,55,46,50,51,52,56,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,89,101,108,108,111,119,115,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,56,49,54,44,34,98,101,100,115,34,58,54,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,55,56,49,50,49,52,44,52,54,46,52,57,54,48,49,52,93,44,91,45,49,48,55,46,55,56,50,48,56,55,44,52,54,46,51,57,53,49,56,50,93,44,91,45,49,48,55,46,57,50,56,53,52,55,44,52,54,46,51,57,53,50,56,52,93,44,91,45,49,48,56,46,48,50,57,51,54,51,44,52,54,46,50,54,52,48,53,53,93,44,91,45,49,48,56,46,51,50,48,56,49,50,44,52,54,46,50,54,51,57,57,55,93,44,91,45,49,48,56,46,52,48,52,56,53,54,44,52,54,46,50,51,53,57,54,93,44,91,45,49,48,56,46,52,48,52,55,57,53,44,52,54,46,49,51,50,57,53,50,93,44,91,45,49,48,56,46,55,55,57,55,51,51,44,52,54,46,49,51,50,52,53,55,93,44,91,45,49,48,56,46,57,50,52,53,56,57,44,52,54,46,49,51,50,51,55,93,44,91,45,49,48,56,46,57,48,49,54,53,53,44,52,53,46,57,53,57,52,49,54,93,44,91,45,49,48,56,46,57,48,52,55,50,54,44,52,53,46,54,56,50,56,50,49,93,44,91,45,49,48,56,46,56,52,51,48,49,54,44,52,53,46,54,49,49,48,52,50,93,44,91,45,49,48,56,46,54,52,53,51,50,53,44,52,53,46,52,54,52,48,55,51,93,44,91,45,49,48,56,46,51,49,54,51,55,52,44,52,53,46,52,54,48,53,48,57,93,44,91,45,49,48,56,46,49,57,51,50,48,53,44,52,53,46,53,49,56,53,51,56,93,44,91,45,49,48,56,46,48,54,57,55,53,50,44,52,53,46,53,49,56,53,51,53,93,44,91,45,49,48,56,46,48,52,55,51,53,50,44,52,53,46,56,57,57,52,55,57,93,44,91,45,49,48,55,46,56,56,49,56,52,54,44,52,53,46,56,57,57,50,51,51,93,44,91,45,49,48,55,46,54,55,52,52,53,52,44,52,54,46,48,52,51,54,49,93,44,91,45,49,48,55,46,53,49,49,53,51,52,44,52,54,46,48,52,51,52,48,51,93,44,91,45,49,48,55,46,52,54,54,57,57,54,44,52,54,46,49,50,57,57,57,53,93,44,91,45,49,48,55,46,55,51,56,53,52,56,44,52,54,46,52,56,49,56,48,54,93,44,91,45,49,48,55,46,55,56,49,50,49,52,44,52,54,46,52,57,54,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,48,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,52,55,49,50,56,44,51,56,46,51,55,52,52,51,50,93,44,91,45,56,50,46,49,57,53,55,53,49,44,51,56,46,51,50,51,52,57,57,93,44,91,45,56,50,46,50,54,52,56,52,57,44,51,56,46,50,50,57,49,57,57,93,44,91,45,56,50,46,50,56,53,54,57,51,44,51,56,46,49,52,52,57,53,50,93,44,91,45,56,50,46,50,48,50,50,51,54,44,51,56,46,48,51,54,49,57,51,93,44,91,45,56,50,46,51,48,54,51,57,49,44,51,55,46,57,52,51,54,52,93,44,91,45,56,50,46,49,57,48,54,53,56,44,51,55,46,57,55,52,55,55,56,93,44,91,45,56,49,46,57,51,50,53,48,55,44,51,56,46,48,50,53,51,53,54,93,44,91,45,56,49,46,57,51,50,52,52,52,44,51,56,46,49,53,48,48,56,53,93,44,91,45,56,49,46,56,51,51,52,55,44,51,56,46,50,48,57,53,55,93,44,91,45,56,49,46,56,49,56,50,51,52,44,51,56,46,51,49,54,55,53,49,93,44,91,45,56,49,46,57,49,53,49,57,55,44,51,56,46,51,50,53,53,57,55,93,44,91,45,56,50,46,48,52,55,49,50,56,44,51,56,46,51,55,52,52,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,49,52,56,44,34,98,101,100,115,34,58,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,56,56,53,51,53,50,44,51,57,46,53,56,48,49,48,56,93,44,91,45,49,50,50,46,56,57,48,51,49,44,51,57,46,53,50,57,48,49,52,93,44,91,45,49,50,51,46,48,54,51,49,56,49,44,51,57,46,53,48,51,53,51,57,93,44,91,45,49,50,51,46,48,55,53,49,49,52,44,51,57,46,52,48,55,54,56,51,93,44,91,45,49,50,51,46,48,49,50,55,49,44,51,57,46,50,51,54,49,56,56,93,44,91,45,49,50,51,46,48,57,51,48,49,51,44,51,57,46,48,55,49,57,57,52,93,44,91,45,49,50,50,46,57,56,54,54,52,44,51,56,46,57,57,55,50,56,51,93,44,91,45,49,50,50,46,57,52,56,56,54,53,44,51,56,46,57,48,48,50,50,93,44,91,45,49,50,50,46,56,50,49,53,57,50,44,51,56,46,56,53,48,49,52,93,44,91,45,49,50,50,46,54,50,55,51,57,54,44,51,56,46,54,54,55,53,48,54,93,44,91,45,49,50,50,46,52,54,51,56,57,44,51,56,46,55,48,53,50,48,51,93,44,91,45,49,50,50,46,51,57,53,48,53,54,44,51,56,46,56,54,52,50,52,53,93,44,91,45,49,50,50,46,51,52,48,49,55,50,44,51,56,46,57,50,52,50,52,54,93,44,91,45,49,50,50,46,52,56,51,56,55,57,44,51,57,46,48,54,54,57,53,53,93,44,91,45,49,50,50,46,53,49,53,51,51,49,44,51,57,46,50,48,57,50,49,53,93,44,91,45,49,50,50,46,54,57,49,51,54,49,44,51,57,46,50,52,55,52,51,49,93,44,91,45,49,50,50,46,55,55,53,48,52,51,44,51,57,46,51,49,49,55,55,56,93,44,91,45,49,50,50,46,55,51,57,48,54,50,44,51,57,46,51,56,51,50,54,54,93,44,91,45,49,50,50,46,55,51,53,54,51,57,44,51,57,46,53,56,48,54,54,56,93,44,91,45,49,50,50,46,56,56,53,51,53,50,44,51,57,46,53,56,48,49,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,71,114,97,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,50,54,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,55,54,54,49,50,44,51,49,46,48,55,56,56,56,51,93,44,91,45,56,52,46,51,56,48,55,48,53,44,51,48,46,54,56,57,57,57,51,93,44,91,45,56,52,46,50,56,50,53,53,57,44,51,48,46,54,56,53,51,51,52,93,44,91,45,56,52,46,48,56,51,55,53,55,44,51,48,46,54,55,53,56,48,52,93,44,91,45,56,52,46,48,55,55,49,49,57,44,51,48,46,57,49,52,57,54,53,93,44,91,45,56,52,46,49,49,54,54,52,52,44,51,49,46,48,55,55,57,55,49,93,44,91,45,56,52,46,51,55,54,54,49,50,44,51,49,46,48,55,56,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,111,110,101,106,111,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,52,50,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,55,49,56,52,54,51,44,51,54,46,57,57,53,56,52,49,93,44,91,45,49,48,53,46,55,52,51,51,51,57,44,51,55,46,51,53,54,55,57,56,93,44,91,45,49,48,54,46,48,51,56,57,49,50,44,51,55,46,51,53,54,57,53,51,93,44,91,45,49,48,54,46,48,51,57,51,51,49,44,51,55,46,52,48,48,56,53,50,93,44,91,45,49,48,54,46,54,55,56,51,55,51,44,51,55,46,52,48,51,53,57,54,93,44,91,45,49,48,54,46,54,55,56,51,53,52,44,51,55,46,50,50,56,53,54,54,93,44,91,45,49,48,54,46,52,55,54,48,57,44,51,54,46,57,57,51,53,52,56,93,44,91,45,49,48,54,46,48,48,54,51,49,54,44,51,54,46,57,57,53,50,54,55,93,44,91,45,49,48,53,46,55,49,56,52,54,51,44,51,54,46,57,57,53,56,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,83,97,110,32,74,117,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,56,49,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,54,52,54,51,57,52,44,51,55,46,53,52,49,48,54,51,93,44,91,45,49,49,48,46,55,52,50,49,57,56,44,51,55,46,51,52,52,51,57,50,93,44,91,45,49,49,48,46,56,49,50,53,48,49,44,51,55,46,51,50,52,57,57,50,93,44,91,45,49,49,48,46,56,57,57,53,49,55,44,51,55,46,49,55,54,49,53,51,93,44,91,45,49,49,48,46,57,57,50,52,48,52,44,51,55,46,49,49,49,48,57,51,93,44,91,45,49,49,49,46,49,55,56,51,52,57,44,51,55,46,49,48,50,54,49,51,93,44,91,45,49,49,49,46,52,49,50,55,56,52,44,51,55,46,48,48,49,53,48,51,93,44,91,45,49,49,48,46,55,53,48,54,57,44,51,55,46,48,48,51,48,48,55,93,44,91,45,49,49,48,46,48,48,48,54,56,56,44,51,54,46,57,57,56,51,52,57,93,44,91,45,49,48,57,46,48,52,53,49,55,50,44,51,54,46,57,57,56,57,55,55,93,44,91,45,49,48,57,46,48,52,51,51,54,54,44,51,55,46,52,56,52,56,49,56,93,44,91,45,49,48,57,46,48,52,49,57,57,50,44,51,55,46,56,56,49,48,56,51,93,44,91,45,49,48,57,46,48,52,50,53,56,51,44,51,56,46,49,53,51,48,50,56,93,44,91,45,49,48,57,46,48,54,48,49,49,57,44,51,56,46,52,57,57,57,56,57,93,44,91,45,49,49,48,46,48,50,53,52,48,50,44,51,56,46,52,57,57,57,56,49,93,44,91,45,49,49,48,46,48,51,49,57,55,51,44,51,56,46,51,56,52,57,53,55,93,44,91,45,49,48,57,46,57,48,57,55,54,44,51,56,46,50,55,49,50,51,93,44,91,45,49,48,57,46,57,50,55,57,57,53,44,51,56,46,49,53,49,56,56,52,93,44,91,45,49,49,48,46,48,48,57,52,57,52,44,51,56,46,49,48,57,54,53,54,93,44,91,45,49,49,48,46,50,49,52,57,52,57,44,51,55,46,56,57,50,53,53,53,93,44,91,45,49,49,48,46,51,54,52,49,52,54,44,51,55,46,56,57,50,49,56,53,93,44,91,45,49,49,48,46,52,51,55,53,51,56,44,51,55,46,56,48,54,57,50,93,44,91,45,49,49,48,46,53,48,49,53,57,52,44,51,55,46,54,53,93,44,91,45,49,49,48,46,54,52,54,51,57,52,44,51,55,46,53,52,49,48,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,53,53,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,48,57,52,55,55,44,51,57,46,56,54,54,55,48,53,93,44,91,45,56,55,46,48,49,51,48,54,50,44,51,57,46,54,48,52,55,56,55,93,44,91,45,56,54,46,57,51,57,57,56,49,44,51,57,46,52,55,51,51,52,53,93,44,91,45,56,54,46,54,56,53,55,49,44,51,57,46,52,55,48,48,54,51,93,44,91,45,56,54,46,54,53,54,54,53,44,51,57,46,54,48,49,51,57,53,93,44,91,45,56,54,46,54,56,55,52,48,54,44,51,57,46,54,51,48,52,51,55,93,44,91,45,56,54,46,54,57,53,49,50,55,44,51,57,46,56,54,52,56,52,53,93,44,91,45,56,55,46,48,48,57,52,55,55,44,51,57,46,56,54,54,55,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,71,111,111,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,54,57,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,53,46,48,51,55,55,55,52,44,52,50,46,57,49,49,56,54,52,93,44,91,45,49,49,52,46,57,48,49,54,51,54,44,52,50,46,56,53,57,49,48,56,93,44,91,45,49,49,52,46,56,49,57,57,55,49,44,52,50,46,54,54,57,55,52,54,93,44,91,45,49,49,52,46,54,49,54,52,56,55,44,52,50,46,54,52,57,50,57,56,93,44,91,45,49,49,52,46,53,57,52,51,55,53,44,52,50,46,56,53,48,57,48,49,93,44,91,45,49,49,52,46,53,57,52,54,48,53,44,52,51,46,49,57,56,51,52,53,93,44,91,45,49,49,53,46,48,56,54,49,53,53,44,52,51,46,49,57,56,48,54,52,93,44,91,45,49,49,53,46,48,56,54,56,53,50,44,52,50,46,57,49,52,53,54,93,44,91,45,49,49,53,46,48,51,55,55,55,52,44,52,50,46,57,49,49,56,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,84,105,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,52,52,54,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,56,57,46,53,48,50,49,49,56,44,51,53,46,53,56,48,54,50,49,93,44,91,45,56,57,46,54,49,50,57,55,54,44,51,53,46,54,52,51,50,51,54,93,44,91,45,56,57,46,55,57,51,49,52,53,44,51,53,46,54,51,55,51,53,54,93,44,91,45,56,57,46,57,48,57,55,57,55,44,51,53,46,53,51,55,57,49,52,93,44,91,45,57,48,46,48,53,48,52,51,55,44,51,53,46,53,49,53,56,57,52,93,44,91,45,57,48,46,48,52,49,53,54,51,44,51,53,46,51,57,54,54,50,93,44,91,45,56,57,46,54,51,50,55,55,54,44,51,53,46,51,55,53,56,50,52,93,44,91,45,56,57,46,52,55,52,49,55,49,44,51,53,46,52,48,51,48,51,57,93,44,91,45,56,57,46,53,48,50,49,49,56,44,51,53,46,53,56,48,54,50,49,93,93,93,44,91,91,91,45,57,48,46,49,52,48,50,53,55,44,51,53,46,52,51,54,54,51,54,93,44,91,45,57,48,46,48,55,52,57,57,50,44,51,53,46,51,56,52,49,53,50,93,44,91,45,57,48,46,48,53,52,51,50,50,44,51,53,46,51,56,57,50,55,55,93,44,91,45,57,48,46,49,52,48,50,53,55,44,51,53,46,52,51,54,54,51,54,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,87,101,115,116,32,66,97,116,111,110,32,82,111,117,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,54,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,51,51,48,56,55,44,51,48,46,54,53,56,54,55,55,93,44,91,45,57,49,46,52,49,52,55,54,44,51,48,46,53,49,49,53,49,54,93,44,91,45,57,49,46,52,56,53,48,56,57,44,51,48,46,52,57,55,49,51,56,93,44,91,45,57,49,46,51,49,49,54,54,44,51,48,46,51,50,50,52,55,49,93,44,91,45,57,49,46,49,52,50,49,48,53,44,51,48,46,51,50,51,50,57,51,93,44,91,45,57,49,46,50,52,49,53,48,56,44,51,48,46,51,53,55,53,57,50,93,44,91,45,57,49,46,49,57,55,50,48,56,44,51,48,46,53,48,55,48,56,56,93,44,91,45,57,49,46,51,49,53,50,56,50,44,51,48,46,53,57,52,50,56,56,93,44,91,45,57,49,46,50,57,55,54,53,56,44,51,48,46,54,52,57,53,52,56,93,44,91,45,57,49,46,51,49,48,48,54,49,44,51,48,46,54,53,51,57,54,49,93,44,91,45,57,49,46,51,51,48,56,55,44,51,48,46,54,53,56,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,80,117,116,110,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,49,53,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,57,55,50,57,54,44,52,48,46,53,56,52,48,49,52,93,44,91,45,57,51,46,51,55,52,51,56,54,44,52,48,46,53,56,48,51,51,51,93,44,91,45,57,51,46,51,54,54,57,51,53,44,52,48,46,51,56,50,57,57,57,93,44,91,45,57,50,46,56,53,53,51,49,51,44,52,48,46,51,56,53,56,57,52,93,44,91,45,57,50,46,56,53,53,54,50,57,44,52,48,46,51,52,50,55,51,54,93,44,91,45,57,50,46,54,56,52,49,54,55,44,52,48,46,51,52,51,52,54,54,93,44,91,45,57,50,46,55,49,52,53,57,54,44,52,48,46,53,56,57,52,50,55,93,44,91,45,57,51,46,48,57,55,50,57,54,44,52,48,46,53,56,52,48,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,84,101,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,53,57,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,48,53,50,52,51,52,44,52,52,46,52,55,56,52,49,49,93,44,91,45,49,49,49,46,48,52,55,49,53,55,44,52,51,46,57,56,51,52,53,57,93,44,91,45,49,49,49,46,48,52,53,52,55,51,44,52,51,46,53,48,49,48,53,49,93,44,91,45,49,49,49,46,48,52,52,56,57,51,44,52,51,46,51,49,53,55,49,57,93,44,91,45,49,49,48,46,56,49,51,57,57,54,44,52,51,46,51,49,51,57,52,93,44,91,45,49,49,48,46,56,49,51,57,57,51,44,52,51,46,50,51,53,49,55,56,93,44,91,45,49,49,48,46,53,55,56,54,53,54,44,52,51,46,50,51,53,50,50,52,93,44,91,45,49,49,48,46,53,55,56,51,56,44,52,51,46,50,57,49,54,52,93,44,91,45,49,49,48,46,51,52,51,57,53,57,44,52,51,46,50,57,49,49,54,53,93,44,91,45,49,49,48,46,51,52,52,50,49,56,44,52,51,46,51,55,55,57,49,56,93,44,91,45,49,49,48,46,48,53,55,51,49,44,52,51,46,51,55,55,55,54,56,93,44,91,45,49,49,48,46,48,53,49,53,55,44,52,51,46,52,54,52,55,56,51,93,44,91,45,49,49,48,46,48,53,51,49,55,57,44,52,52,46,48,48,56,48,50,50,93,44,91,45,49,49,48,46,49,49,57,49,57,51,44,52,52,46,49,51,50,53,56,52,93,44,91,45,49,49,48,46,49,53,48,49,55,53,44,52,52,46,50,56,57,54,54,54,93,44,91,45,49,49,48,46,50,57,54,54,52,56,44,52,52,46,52,51,49,51,52,49,93,44,91,45,49,49,48,46,50,55,54,53,48,54,44,52,52,46,53,49,53,54,54,53,93,44,91,45,49,49,48,46,51,55,53,51,51,52,44,52,52,46,53,56,51,48,49,54,93,44,91,45,49,49,48,46,54,54,55,56,57,57,44,52,52,46,53,56,50,55,57,50,93,44,91,45,49,49,48,46,54,54,55,56,54,55,44,52,52,46,54,54,54,50,57,49,93,44,91,45,49,49,49,46,48,53,51,52,52,55,44,52,52,46,54,54,54,50,54,56,93,44,91,45,49,49,49,46,48,53,50,52,51,52,44,52,52,46,52,55,56,52,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,56,50,56,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,49,53,54,56,49,50,44,52,50,46,57,56,56,49,55,93,44,91,45,57,49,46,48,53,49,50,55,53,44,52,50,46,55,51,55,48,48,49,93,44,91,45,57,48,46,56,57,54,57,53,49,44,52,50,46,54,55,53,48,56,50,93,44,91,45,57,48,46,55,50,48,50,48,57,44,52,50,46,54,52,48,55,53,56,93,44,91,45,57,48,46,54,52,50,56,52,51,44,52,50,46,53,48,56,52,56,49,93,44,91,45,57,48,46,52,50,54,51,55,55,44,52,50,46,53,48,55,49,55,51,93,44,91,45,57,48,46,52,50,54,57,48,50,44,52,50,46,56,49,50,56,54,50,93,44,91,45,57,48,46,52,50,57,56,50,53,44,52,51,46,50,48,48,57,52,93,44,91,45,57,48,46,54,54,54,55,56,54,44,52,51,46,49,55,49,55,55,55,93,44,91,45,57,49,46,48,54,53,50,55,44,52,50,46,57,57,50,48,55,52,93,44,91,45,57,49,46,49,53,54,56,49,50,44,52,50,46,57,56,56,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,77,111,114,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,52,52,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,54,54,50,48,49,53,44,52,54,46,54,51,52,54,93,44,91,45,49,48,48,46,55,56,56,55,54,56,44,52,54,46,54,57,49,55,48,49,93,44,91,45,49,48,48,46,57,51,53,57,56,51,44,52,54,46,57,56,50,56,52,93,44,91,45,49,48,49,46,55,54,52,51,57,50,44,52,54,46,57,56,49,51,48,54,93,44,91,45,49,48,50,46,48,57,53,57,48,52,44,52,54,46,57,56,49,51,50,57,93,44,91,45,49,48,50,46,48,57,54,50,52,44,52,54,46,55,49,55,55,55,50,93,44,91,45,49,48,49,46,55,49,56,50,50,56,44,52,54,46,55,49,55,56,51,52,93,44,91,45,49,48,49,46,55,49,56,52,54,50,44,52,54,46,54,51,49,50,56,51,93,44,91,45,49,48,49,46,50,57,56,56,50,51,44,52,54,46,54,51,48,52,51,49,93,44,91,45,49,48,49,46,50,57,56,57,56,57,44,52,54,46,51,55,49,52,48,52,93,44,91,45,49,48,49,46,48,52,56,53,50,55,44,52,54,46,51,55,49,52,53,93,44,91,45,49,48,49,46,48,50,53,54,57,49,44,52,54,46,50,56,52,52,49,52,93,44,91,45,49,48,48,46,57,49,56,57,53,44,52,54,46,51,57,52,57,56,51,93,44,91,45,49,48,48,46,56,49,52,56,55,51,44,52,54,46,51,56,52,55,48,49,93,44,91,45,49,48,48,46,53,57,48,49,57,57,44,52,54,46,52,50,55,56,57,52,93,44,91,45,49,48,48,46,53,52,52,53,53,53,44,52,54,46,53,51,51,55,54,54,93,44,91,45,49,48,48,46,54,54,50,48,49,53,44,52,54,46,54,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,104,111,119,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,50,48,53,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,55,48,54,53,56,52,44,51,54,46,50,52,51,55,57,54,93,44,91,45,55,54,46,55,51,54,57,51,51,44,51,54,46,49,53,48,53,56,51,93,44,91,45,55,54,46,54,56,50,53,51,53,44,51,54,46,48,51,48,57,52,55,93,44,91,45,55,54,46,54,48,54,50,49,52,44,51,53,46,57,55,56,48,53,49,93,44,91,45,55,54,46,51,57,54,55,57,52,44,51,54,46,48,50,54,52,52,51,93,44,91,45,55,54,46,52,48,50,57,53,55,44,51,54,46,48,55,50,56,54,55,93,44,91,45,55,54,46,53,55,51,48,55,51,44,51,54,46,49,49,49,55,53,55,93,44,91,45,55,54,46,53,57,48,49,48,55,44,51,54,46,50,51,56,56,54,50,93,44,91,45,55,54,46,53,53,57,54,52,54,44,51,54,46,51,53,49,48,53,54,93,44,91,45,55,54,46,54,57,54,53,55,49,44,51,54,46,50,57,54,49,51,56,93,44,91,45,55,54,46,55,48,54,53,56,52,44,51,54,46,50,52,51,55,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,117,110,99,111,109,98,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,52,52,55,52,44,34,98,101,100,115,34,58,57,54,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,48,56,54,48,50,44,51,53,46,56,49,56,49,55,56,93,44,91,45,56,50,46,53,49,51,49,54,49,44,51,53,46,56,48,51,51,56,93,44,91,45,56,50,46,56,48,55,48,53,54,44,51,53,46,54,56,53,56,55,52,93,44,91,45,56,50,46,56,56,51,57,48,57,44,51,53,46,54,55,56,50,51,53,93,44,91,45,56,50,46,55,54,53,56,57,51,44,51,53,46,53,54,55,52,57,53,93,44,91,45,56,50,46,55,52,53,49,51,57,44,51,53,46,52,50,50,57,54,55,93,44,91,45,56,50,46,52,55,48,53,53,55,44,51,53,46,52,52,53,49,55,52,93,44,91,45,56,50,46,51,51,50,51,51,49,44,51,53,46,53,48,48,49,49,55,93,44,91,45,56,50,46,50,54,53,55,57,53,44,51,53,46,52,54,55,56,49,56,93,44,91,45,56,50,46,49,54,57,48,52,57,44,51,53,46,53,50,55,56,49,49,93,44,91,45,56,50,46,50,53,49,50,53,49,44,51,53,46,53,53,57,57,52,51,93,44,91,45,56,50,46,50,55,53,51,57,57,44,51,53,46,55,48,52,52,51,56,93,44,91,45,56,50,46,52,48,56,54,48,50,44,51,53,46,56,49,56,49,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,80,108,117,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,57,57,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,52,51,54,56,56,54,44,52,48,46,49,53,49,57,48,53,93,44,91,45,49,50,49,46,51,54,49,50,48,54,44,51,57,46,56,53,53,52,55,51,93,44,91,45,49,50,49,46,49,51,54,55,49,53,44,51,57,46,54,50,56,49,54,57,93,44,91,45,49,50,49,46,48,55,54,54,57,53,44,51,57,46,53,57,55,50,54,52,93,44,91,45,49,50,49,46,48,48,57,52,55,55,44,51,57,46,54,51,57,52,53,57,93,44,91,45,49,50,48,46,56,55,49,52,57,56,44,51,57,46,55,55,54,53,50,57,93,44,91,45,49,50,48,46,54,53,52,50,50,55,44,51,57,46,55,48,54,54,50,57,93,44,91,45,49,50,48,46,49,52,55,49,52,57,44,51,57,46,55,48,55,54,53,56,93,44,91,45,49,50,48,46,49,49,48,54,50,55,44,51,57,46,55,54,53,55,55,57,93,44,91,45,49,50,48,46,49,48,56,55,54,49,44,51,57,46,57,51,57,53,49,93,44,91,45,49,50,48,46,50,48,57,54,52,49,44,52,48,46,48,56,54,48,48,56,93,44,91,45,49,50,48,46,51,52,49,51,56,53,44,52,48,46,49,49,53,50,52,51,93,44,91,45,49,50,48,46,53,55,54,56,50,53,44,52,48,46,50,56,53,52,51,93,44,91,45,49,50,48,46,55,54,52,52,48,51,44,52,48,46,51,49,54,48,49,93,44,91,45,49,50,48,46,56,55,49,55,56,50,44,52,48,46,50,52,49,54,52,93,44,91,45,49,50,49,46,48,54,49,52,57,51,44,52,48,46,50,53,54,52,49,55,93,44,91,45,49,50,49,46,48,54,49,52,49,55,44,52,48,46,52,52,54,53,51,54,93,44,91,45,49,50,49,46,51,50,55,56,50,54,44,52,48,46,52,52,53,51,54,55,93,44,91,45,49,50,49,46,52,57,55,54,51,53,44,52,48,46,52,52,53,53,57,49,93,44,91,45,49,50,49,46,52,55,48,51,57,53,44,52,48,46,51,53,48,50,49,51,93,44,91,45,49,50,49,46,51,52,57,44,52,48,46,50,54,52,52,53,52,93,44,91,45,49,50,49,46,52,51,54,56,56,54,44,52,48,46,49,53,49,57,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,55,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,55,51,48,34,44,34,78,65,77,69,34,58,34,80,101,116,101,114,115,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,56,50,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,52,55,52,48,56,44,51,55,46,50,50,51,48,54,54,93,44,91,45,55,55,46,51,57,57,50,48,51,44,51,55,46,49,55,48,56,53,93,44,91,45,55,55,46,51,55,54,55,56,53,44,51,55,46,50,52,52,56,52,57,93,44,91,45,55,55,46,51,56,51,56,53,54,44,51,55,46,50,51,56,57,48,54,93,44,91,45,55,55,46,52,48,51,54,55,49,44,51,55,46,50,51,55,51,52,54,93,44,91,45,55,55,46,52,49,54,53,48,49,44,51,55,46,50,51,51,50,48,56,93,44,91,45,55,55,46,52,52,55,52,48,56,44,51,55,46,50,50,51,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,52,55,55,44,34,98,101,100,115,34,58,49,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,52,51,52,51,49,53,44,52,52,46,53,48,54,48,57,56,93,44,91,45,55,50,46,52,57,50,57,49,52,44,52,52,46,52,50,51,48,51,93,44,91,45,55,50,46,54,53,52,51,57,56,44,52,52,46,51,57,56,50,50,52,93,44,91,45,55,50,46,56,48,52,57,57,53,44,52,52,46,52,53,49,54,55,54,93,44,91,45,55,50,46,57,53,50,49,54,55,44,52,52,46,49,54,49,50,55,49,93,44,91,45,55,50,46,57,49,54,55,55,56,44,52,52,46,48,55,49,56,56,54,93,44,91,45,55,50,46,55,52,50,51,48,51,44,52,52,46,48,50,57,54,53,53,93,44,91,45,55,50,46,53,56,57,56,53,53,44,52,52,46,49,53,57,51,52,51,93,44,91,45,55,50,46,52,52,51,48,51,50,44,52,52,46,49,50,56,54,54,57,93,44,91,45,55,50,46,51,54,56,51,53,51,44,52,52,46,50,48,52,48,53,55,93,44,91,45,55,50,46,50,50,51,54,56,57,44,52,52,46,52,50,52,53,55,51,93,44,91,45,55,50,46,52,51,52,51,49,53,44,52,52,46,53,48,54,48,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,77,101,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,50,52,44,34,98,101,100,115,34,58,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,57,53,55,51,55,49,44,52,53,46,48,51,57,53,54,57,93,44,91,45,49,48,50,46,57,54,52,49,50,53,44,52,52,46,54,48,52,50,56,55,93,44,91,45,49,48,51,46,53,54,55,54,53,51,44,52,52,46,54,48,52,48,57,56,93,44,91,45,49,48,51,46,53,55,52,51,57,54,44,52,52,46,50,53,54,48,55,55,93,44,91,45,49,48,51,46,52,53,51,48,49,54,44,52,52,46,50,53,54,54,48,57,93,44,91,45,49,48,51,46,52,53,50,52,53,51,44,52,52,46,49,52,48,55,55,50,93,44,91,45,49,48,50,46,51,56,56,48,52,53,44,52,52,46,49,52,48,49,56,51,93,44,91,45,49,48,50,46,51,52,49,54,51,53,44,52,52,46,51,52,56,55,55,50,93,44,91,45,49,48,50,46,50,56,52,52,48,52,44,52,52,46,52,52,49,50,51,50,93,44,91,45,49,48,50,46,49,49,50,53,51,53,44,52,52,46,52,51,53,56,56,54,93,44,91,45,49,48,50,46,48,48,49,48,54,56,44,52,52,46,53,49,48,57,50,54,93,44,91,45,49,48,50,46,48,48,48,52,51,50,44,52,52,46,53,49,49,54,54,51,93,44,91,45,49,48,49,46,57,57,57,57,57,44,52,53,46,48,51,56,50,55,52,93,44,91,45,49,48,50,46,57,53,55,51,55,49,44,52,53,46,48,51,57,53,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,55,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,52,53,50,51,44,34,98,101,100,115,34,58,51,56,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,57,51,55,53,56,55,44,51,57,46,57,50,55,49,51,55,93,44,91,45,56,54,46,50,51,57,55,51,57,44,51,57,46,57,50,54,48,53,53,93,44,91,45,56,54,46,51,50,54,50,57,51,44,51,57,46,57,50,52,48,50,57,93,44,91,45,56,54,46,51,50,54,51,52,49,44,51,57,46,54,51,50,49,55,55,93,44,91,45,56,54,46,50,52,57,56,56,53,44,51,57,46,54,51,51,54,52,53,93,44,91,45,56,53,46,57,53,50,48,56,44,51,57,46,54,51,56,51,52,53,93,44,91,45,56,53,46,57,53,49,55,50,49,44,51,57,46,54,57,55,49,51,54,93,44,91,45,56,53,46,57,51,55,53,56,55,44,51,57,46,57,50,55,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,104,105,99,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,50,54,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,53,51,52,51,56,44,51,51,46,53,54,51,55,48,51,93,44,91,45,57,49,46,52,53,55,51,55,44,51,51,46,51,56,56,57,55,52,93,44,91,45,57,49,46,52,54,48,52,44,51,51,46,48,48,53,57,49,53,93,44,91,45,57,49,46,52,51,53,55,56,50,44,51,51,46,48,48,54,48,57,57,93,44,91,45,57,49,46,50,54,53,48,49,56,44,51,51,46,48,48,53,48,56,51,93,44,91,45,57,49,46,49,54,54,48,55,51,44,51,51,46,48,48,52,49,48,54,93,44,91,45,57,49,46,49,54,54,50,56,50,44,51,51,46,48,49,49,51,51,49,93,44,91,45,57,49,46,48,56,55,53,56,57,44,51,51,46,49,52,53,49,55,54,93,44,91,45,57,49,46,49,54,57,52,53,57,44,51,51,46,52,53,50,49,51,55,93,44,91,45,57,49,46,50,49,53,54,55,49,44,51,51,46,53,50,57,52,50,51,93,44,91,45,57,49,46,50,51,48,56,57,55,44,51,51,46,53,54,49,52,93,44,91,45,57,49,46,52,53,51,52,51,56,44,51,51,46,53,54,51,55,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,105,98,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,52,57,48,44,34,98,101,100,115,34,58,49,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,49,48,54,56,53,44,51,50,46,57,53,50,55,57,50,93,44,91,45,56,51,46,56,57,49,57,50,50,44,51,50,46,56,52,56,51,53,49,93,44,91,45,56,51,46,56,48,56,50,54,55,44,51,50,46,55,50,56,54,56,50,93,44,91,45,56,51,46,55,48,49,49,53,50,44,51,50,46,54,57,50,49,54,57,93,44,91,45,56,51,46,53,57,55,54,53,54,44,51,50,46,54,54,52,51,51,56,93,44,91,45,56,51,46,53,49,51,53,49,49,44,51,50,46,56,52,52,56,54,56,93,44,91,45,56,51,46,54,53,56,50,49,49,44,51,50,46,56,56,55,57,49,51,93,44,91,45,56,51,46,55,49,48,54,56,53,44,51,50,46,57,53,50,55,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,71,117,97,121,97,110,105,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,48,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,54,46,55,57,55,53,53,55,44,49,56,46,49,51,51,52,52,53,93,44,91,45,54,54,46,56,53,56,50,51,51,44,49,55,46,57,53,48,56,50,53,93,44,91,45,54,54,46,56,51,57,57,50,57,44,49,55,46,56,57,56,57,57,51,93,44,91,45,54,54,46,55,55,52,49,50,51,44,49,55,46,57,49,52,55,57,54,93,44,91,45,54,54,46,55,54,57,48,52,57,44,49,56,46,49,51,52,57,56,51,93,44,91,45,54,54,46,55,57,55,53,53,55,44,49,56,46,49,51,51,52,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,83,97,110,32,83,101,98,97,115,116,105,195,161,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,57,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,48,50,55,49,55,51,44,49,56,46,51,57,51,51,55,54,93,44,91,45,54,55,46,48,53,50,53,56,51,44,49,56,46,51,48,54,54,53,53,93,44,91,45,54,55,46,48,51,55,57,51,53,44,49,56,46,50,56,57,55,48,53,93,44,91,45,54,54,46,57,48,55,50,51,54,44,49,56,46,50,53,51,48,57,93,44,91,45,54,54,46,56,57,51,51,51,57,44,49,56,46,51,54,55,48,56,57,93,44,91,45,54,54,46,56,57,56,57,44,49,56,46,51,54,54,49,48,56,93,44,91,45,54,54,46,57,50,50,48,50,44,49,56,46,51,57,51,50,48,52,93,44,91,45,54,55,46,48,50,55,49,55,51,44,49,56,46,51,57,51,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,80,111,112,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,54,52,52,44,34,98,101,100,115,34,58,49,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,49,54,52,52,53,50,44,51,53,46,55,50,56,56,51,49,93,44,91,45,57,51,46,49,54,55,56,44,51,53,46,53,57,55,54,57,53,93,44,91,45,57,51,46,50,50,51,54,51,51,44,51,53,46,52,54,56,53,57,51,93,44,91,45,57,51,46,50,57,53,57,49,44,51,53,46,52,54,57,57,49,53,93,44,91,45,57,51,46,50,57,57,48,49,44,51,53,46,51,50,55,54,52,52,93,44,91,45,57,51,46,50,55,56,49,51,54,44,51,53,46,51,49,55,53,48,51,93,44,91,45,57,51,46,49,53,54,48,55,56,44,51,53,46,50,51,53,51,48,55,93,44,91,45,57,51,46,48,56,52,54,55,56,44,51,53,46,49,50,55,51,57,93,44,91,45,57,50,46,56,57,54,49,48,57,44,51,53,46,49,55,48,54,55,56,93,44,91,45,57,50,46,56,53,53,44,51,53,46,49,55,50,55,55,55,93,44,91,45,57,50,46,56,53,48,54,50,52,44,51,53,46,52,54,50,57,53,93,44,91,45,57,50,46,56,49,51,52,49,55,44,51,53,46,53,52,57,93,44,91,45,57,50,46,56,48,57,55,54,51,44,51,53,46,55,50,50,52,48,49,93,44,91,45,57,50,46,57,53,49,51,49,53,44,51,53,46,55,50,52,54,54,51,93,44,91,45,57,51,46,49,54,52,52,53,50,44,51,53,46,55,50,56,56,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,83,111,117,116,104,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,57,51,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,51,48,49,50,55,44,51,54,46,55,48,55,54,53,56,93,44,91,45,55,55,46,51,54,48,57,48,54,44,51,54,46,53,54,52,55,54,93,44,91,45,55,55,46,50,57,54,56,55,53,44,51,54,46,53,52,52,56,53,53,93,44,91,45,55,55,46,49,54,52,51,55,55,44,51,54,46,53,52,54,51,50,57,93,44,91,45,55,54,46,57,49,53,57,55,55,44,51,54,46,53,52,51,56,56,52,93,44,91,45,55,54,46,57,49,53,56,57,57,44,51,54,46,53,53,50,49,52,57,93,44,91,45,55,54,46,56,57,55,53,57,50,44,51,54,46,54,52,52,48,53,93,44,91,45,55,54,46,57,48,57,54,55,50,44,51,54,46,54,52,56,49,55,53,93,44,91,45,55,54,46,57,53,53,52,50,52,44,51,54,46,54,54,52,53,56,55,93,44,91,45,55,54,46,57,50,52,54,50,57,44,51,54,46,55,48,55,55,50,57,93,44,91,45,55,54,46,56,49,52,57,52,49,44,51,54,46,57,48,48,52,54,53,93,44,91,45,55,54,46,56,52,57,54,56,52,44,51,54,46,57,57,54,50,49,49,93,44,91,45,55,54,46,57,53,51,53,52,54,44,51,54,46,57,52,52,52,53,93,44,91,45,55,55,46,52,51,48,49,50,55,44,51,54,46,55,48,55,54,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,71,114,101,103,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,52,57,52,44,34,98,101,100,115,34,58,55,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,57,56,54,57,51,53,44,51,50,46,53,51,55,50,52,54,93,44,91,45,57,52,46,57,56,53,52,49,49,44,51,50,46,51,55,48,56,50,93,44,91,45,57,52,46,54,51,56,51,52,55,44,51,50,46,51,55,48,53,51,57,93,44,91,45,57,52,46,53,55,57,50,49,57,44,51,50,46,51,57,52,57,49,54,93,44,91,45,57,52,46,55,48,49,57,56,54,44,51,50,46,52,50,49,55,56,50,93,44,91,45,57,52,46,55,48,49,55,57,44,51,50,46,54,53,50,50,48,57,93,44,91,45,57,52,46,57,56,54,57,51,53,44,51,50,46,53,51,55,50,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,82,111,99,107,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,51,54,56,54,44,34,98,101,100,115,34,58,49,51,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,56,49,51,56,52,44,52,49,46,51,50,52,54,57,51,93,44,91,45,55,52,46,50,51,52,50,56,56,44,52,49,46,49,52,51,48,48,56,93,44,91,45,55,52,46,50,49,49,50,50,52,44,52,49,46,49,51,51,55,49,52,93,44,91,45,55,51,46,56,57,51,57,55,57,44,52,48,46,57,57,55,50,48,53,93,44,91,45,55,51,46,56,56,57,52,56,44,52,49,46,49,52,53,48,57,53,93,44,91,45,55,51,46,57,56,50,53,56,52,44,52,49,46,51,50,49,54,57,51,93,44,91,45,55,51,46,57,56,49,51,56,52,44,52,49,46,51,50,52,54,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,52,51,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,56,53,52,48,52,57,44,51,54,46,52,57,55,56,52,50,93,44,91,45,57,50,46,56,56,52,57,53,52,44,51,54,46,52,57,48,56,57,49,93,44,91,45,57,50,46,56,57,48,54,57,53,44,51,54,46,49,49,52,49,51,50,93,44,91,45,57,50,46,56,51,55,55,55,54,44,51,54,46,48,55,48,49,50,52,93,44,91,45,57,50,46,52,49,49,53,48,50,44,51,54,46,48,54,50,55,53,54,93,44,91,45,57,50,46,52,48,57,49,55,53,44,51,54,46,49,51,52,54,56,52,93,44,91,45,57,50,46,53,50,48,53,56,49,44,51,54,46,50,54,56,56,50,52,93,44,91,45,57,50,46,53,50,57,49,50,56,44,51,54,46,52,57,56,53,57,57,93,44,91,45,57,50,46,55,55,50,51,52,51,44,51,54,46,52,57,55,54,54,50,93,44,91,45,57,50,46,56,53,52,48,52,57,44,51,54,46,52,57,55,56,52,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,56,48,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,56,48,48,34,44,34,78,65,77,69,34,58,34,83,117,102,102,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,49,54,48,44,34,98,101,100,115,34,58,49,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,56,57,55,53,57,50,44,51,54,46,54,52,52,48,53,93,44,91,45,55,54,46,57,49,53,56,57,57,44,51,54,46,53,53,50,49,52,57,93,44,91,45,55,54,46,53,52,49,57,54,54,44,51,54,46,53,53,48,54,53,51,93,44,91,45,55,54,46,52,57,49,52,57,54,44,51,54,46,53,53,48,54,52,56,93,44,91,45,55,54,46,52,53,55,52,54,57,44,51,54,46,56,49,52,56,52,49,93,44,91,45,55,54,46,52,50,48,51,54,56,44,51,54,46,56,54,54,51,52,56,93,44,91,45,55,54,46,51,57,57,53,54,55,44,51,54,46,57,51,48,57,52,55,93,44,91,45,55,54,46,52,52,53,51,48,49,44,51,54,46,57,52,49,56,57,49,93,44,91,45,55,54,46,53,51,51,53,50,44,51,54,46,57,49,53,53,54,51,93,44,91,45,55,54,46,56,57,55,53,57,50,44,51,54,46,54,52,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,69,108,32,80,97,115,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,49,53,51,44,34,98,101,100,115,34,58,49,50,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,51,51,53,52,52,44,51,57,46,49,50,57,56,49,57,93,44,91,45,49,48,53,46,48,50,56,57,48,51,44,51,56,46,56,54,56,57,48,55,93,44,91,45,49,48,52,46,57,51,56,57,57,52,44,51,56,46,55,57,54,56,56,52,93,44,91,45,49,48,52,46,57,52,50,52,50,54,44,51,56,46,54,52,57,56,56,50,93,44,91,45,49,48,52,46,57,52,49,53,51,51,44,51,56,46,53,49,57,53,54,57,93,44,91,45,49,48,52,46,48,53,51,57,50,49,44,51,56,46,53,50,50,51,57,51,93,44,91,45,49,48,52,46,48,53,53,53,50,56,44,51,56,46,56,54,56,56,54,56,93,44,91,45,49,48,52,46,48,53,49,53,56,57,44,51,57,46,49,50,56,51,55,93,44,91,45,49,48,52,46,54,54,50,56,57,54,44,51,57,46,49,50,57,53,50,55,93,44,91,45,49,48,53,46,48,51,51,53,52,52,44,51,57,46,49,50,57,56,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,83,116,46,32,70,114,97,110,99,111,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,51,52,50,44,34,98,101,100,115,34,58,52,55,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,51,57,57,56,44,51,56,46,48,55,54,53,52,56,93,44,91,45,57,48,46,54,52,53,49,51,53,44,51,55,46,55,51,52,56,49,51,93,44,91,45,57,48,46,54,52,55,56,55,52,44,51,55,46,54,52,50,56,48,57,93,44,91,45,57,48,46,53,51,53,48,49,54,44,51,55,46,54,52,51,54,52,49,93,44,91,45,57,48,46,49,52,54,55,55,56,44,51,55,46,54,52,49,54,49,56,93,44,91,45,57,48,46,49,49,48,53,51,55,44,51,55,46,54,55,49,51,52,93,44,91,45,57,48,46,50,48,48,50,48,56,44,51,55,46,54,54,57,54,50,56,93,44,91,45,57,48,46,52,53,57,49,51,51,44,51,55,46,56,55,56,57,50,52,93,44,91,45,57,48,46,51,50,50,56,55,44,51,55,46,57,56,49,55,51,49,93,44,91,45,57,48,46,52,49,54,48,50,50,44,51,56,46,48,52,50,51,49,53,93,44,91,45,57,48,46,53,56,51,51,50,52,44,51,56,46,48,48,51,52,57,57,93,44,91,45,57,48,46,54,51,57,57,56,44,51,56,46,48,55,54,53,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,55,53,34,44,34,78,65,77,69,34,58,34,87,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,56,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,54,49,48,56,56,55,44,51,49,46,54,53,49,56,48,50,93,44,91,45,49,48,51,46,53,48,56,56,48,53,44,51,49,46,54,50,52,49,49,55,93,44,91,45,49,48,51,46,52,54,53,48,53,55,44,51,49,46,52,51,49,57,52,56,93,44,91,45,49,48,51,46,49,56,49,50,50,53,44,51,49,46,51,55,48,50,52,53,93,44,91,45,49,48,51,46,48,49,49,48,52,44,51,49,46,51,55,49,51,48,54,93,44,91,45,49,48,50,46,56,50,53,49,49,54,44,51,49,46,50,54,54,57,49,52,93,44,91,45,49,48,50,46,55,54,55,51,54,53,44,51,49,46,50,57,51,56,48,51,93,44,91,45,49,48,50,46,55,54,55,50,52,54,44,51,49,46,54,53,49,55,49,52,93,44,91,45,49,48,50,46,55,57,56,57,51,57,44,51,49,46,54,53,49,55,56,51,93,44,91,45,49,48,51,46,51,50,55,53,51,56,44,51,49,46,54,53,49,52,50,93,44,91,45,49,48,51,46,54,49,48,56,56,55,44,51,49,46,54,53,49,56,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,75,105,111,119,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,53,48,56,50,44,51,56,46,54,49,53,49,55,50,93,44,91,45,49,48,51,46,49,55,50,57,52,51,44,51,56,46,54,49,50,52,53,93,44,91,45,49,48,51,46,49,55,50,56,55,56,44,51,56,46,53,50,53,51,49,53,93,44,91,45,49,48,51,46,53,48,52,54,54,54,44,51,56,46,53,49,54,52,48,57,93,44,91,45,49,48,51,46,53,48,49,55,54,52,44,51,56,46,50,54,53,48,49,54,93,44,91,45,49,48,51,46,51,57,57,57,51,56,44,51,56,46,50,54,53,52,51,53,93,44,91,45,49,48,50,46,55,52,50,51,51,44,51,56,46,50,54,54,57,55,49,93,44,91,45,49,48,50,46,48,52,52,52,55,53,44,51,56,46,50,54,56,55,52,57,93,44,91,45,49,48,50,46,48,52,53,48,56,50,44,51,56,46,54,49,53,49,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,56,55,34,44,34,78,65,77,69,34,58,34,87,105,108,98,97,114,103,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,48,54,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,55,53,50,57,52,44,51,52,46,48,56,53,54,49,56,93,44,91,45,57,57,46,52,55,53,54,53,44,51,51,46,56,51,52,48,48,53,93,44,91,45,57,56,46,57,53,51,50,48,50,44,51,51,46,56,51,52,48,50,53,93,44,91,45,57,56,46,57,53,50,51,57,53,44,51,52,46,50,49,50,52,57,55,93,44,91,45,57,57,46,49,56,57,55,55,54,44,51,52,46,50,49,52,51,53,55,93,44,91,45,57,57,46,50,48,54,57,48,53,44,51,52,46,51,51,56,50,55,55,93,44,91,45,57,57,46,50,54,49,50,55,53,44,51,52,46,52,48,51,53,48,56,93,44,91,45,57,57,46,52,55,53,49,49,53,44,51,52,46,51,57,53,57,51,93,44,91,45,57,57,46,52,55,53,50,57,52,44,51,52,46,48,56,53,54,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,117,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,48,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,52,46,53,53,50,51,55,51,44,52,50,46,57,53,52,51,49,49,93,44,91,45,49,50,52,46,55,48,48,50,56,51,44,52,50,46,55,56,52,48,50,56,93,44,91,45,49,50,52,46,52,55,51,53,53,52,44,52,50,46,54,49,52,55,51,52,93,44,91,45,49,50,52,46,53,54,55,50,50,49,44,52,50,46,52,55,55,55,57,49,93,44,91,45,49,50,52,46,52,57,52,49,53,52,44,52,50,46,51,57,54,48,56,54,93,44,91,45,49,50,52,46,52,55,49,51,53,54,44,52,50,46,50,48,51,55,50,51,93,44,91,45,49,50,52,46,52,48,57,51,49,52,44,52,50,46,48,54,52,48,55,55,93,44,91,45,49,50,52,46,51,50,56,56,51,53,44,52,49,46,57,57,56,51,51,52,93,44,91,45,49,50,51,46,56,50,50,48,52,49,44,52,49,46,57,57,53,53,56,93,44,91,45,49,50,51,46,56,53,56,53,52,57,44,52,50,46,49,51,53,49,49,54,93,44,91,45,49,50,51,46,55,57,50,56,51,52,44,52,50,46,50,50,52,51,49,52,93,44,91,45,49,50,51,46,56,57,50,54,53,49,44,52,50,46,51,53,51,50,57,51,93,44,91,45,49,50,52,46,48,50,53,57,56,52,44,52,50,46,51,53,57,52,48,57,93,44,91,45,49,50,51,46,57,57,56,55,56,44,52,50,46,52,57,57,57,54,50,93,44,91,45,49,50,51,46,56,57,48,54,53,55,44,52,50,46,53,48,48,53,51,56,93,44,91,45,49,50,51,46,55,49,54,52,57,50,44,52,50,46,55,56,52,48,54,49,93,44,91,45,49,50,51,46,56,49,49,53,53,51,44,52,50,46,55,56,56,56,51,55,93,44,91,45,49,50,51,46,57,50,53,55,49,55,44,52,50,46,55,55,52,53,49,52,93,44,91,45,49,50,51,46,57,57,54,50,57,49,44,52,50,46,54,56,53,54,53,49,93,44,91,45,49,50,52,46,49,51,56,55,52,56,44,52,50,46,54,55,49,49,49,53,93,44,91,45,49,50,52,46,49,54,49,51,48,56,44,52,50,46,56,56,51,52,57,57,93,44,91,45,49,50,52,46,50,53,56,51,56,56,44,52,50,46,57,53,52,57,52,54,93,44,91,45,49,50,52,46,53,53,50,51,55,51,44,52,50,46,57,53,52,51,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,84,101,108,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,49,51,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,51,51,48,52,52,52,44,51,57,46,49,50,57,54,56,53,93,44,91,45,49,48,53,46,51,50,57,49,51,52,44,51,56,46,54,57,55,50,48,53,93,44,91,45,49,48,53,46,50,52,48,51,54,50,44,51,56,46,54,52,55,53,57,53,93,44,91,45,49,48,52,46,57,52,50,52,50,54,44,51,56,46,54,52,57,56,56,50,93,44,91,45,49,48,52,46,57,51,56,57,57,52,44,51,56,46,55,57,54,56,56,52,93,44,91,45,49,48,53,46,48,50,56,57,48,51,44,51,56,46,56,54,56,57,48,55,93,44,91,45,49,48,53,46,48,51,51,53,52,52,44,51,57,46,49,50,57,56,49,57,93,44,91,45,49,48,53,46,51,50,57,50,50,44,51,57,46,49,50,57,54,56,57,93,44,91,45,49,48,53,46,51,51,48,52,52,52,44,51,57,46,49,50,57,54,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,67,108,105,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,52,55,53,44,34,98,101,100,115,34,58,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,50,50,53,55,44,51,57,46,55,52,55,49,57,53,93,44,91,45,57,52,46,54,48,49,50,49,53,44,51,57,46,53,51,48,49,55,93,44,91,45,57,52,46,54,48,48,56,49,57,44,51,57,46,52,53,54,49,53,53,93,44,91,45,57,52,46,50,49,48,54,52,50,44,51,57,46,52,53,52,54,56,50,93,44,91,45,57,52,46,50,48,56,52,50,51,44,51,57,46,53,50,55,50,93,44,91,45,57,52,46,50,48,53,57,54,49,44,51,57,46,55,52,53,56,52,49,93,44,91,45,57,52,46,54,48,50,50,53,55,44,51,57,46,55,52,55,49,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,87,97,115,97,116,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,53,50,51,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,53,57,51,57,52,50,44,52,48,46,53,55,55,48,54,54,93,44,91,45,49,49,49,46,54,50,48,52,51,55,44,52,48,46,52,53,53,48,49,56,93,44,91,45,49,49,49,46,53,53,53,50,51,53,44,52,48,46,51,54,50,54,57,54,93,44,91,45,49,49,49,46,52,50,56,55,50,56,44,52,48,46,50,56,55,55,54,93,44,91,45,49,49,49,46,51,50,49,51,48,53,44,52,48,46,50,56,55,51,55,50,93,44,91,45,49,49,49,46,50,50,53,53,48,55,44,52,48,46,49,54,55,51,50,52,93,44,91,45,49,49,49,46,50,52,57,51,51,57,44,52,48,46,48,53,53,50,49,55,93,44,91,45,49,49,49,46,48,56,51,48,54,49,44,51,57,46,57,52,51,49,57,56,93,44,91,45,49,49,48,46,56,57,49,54,53,53,44,51,57,46,56,57,57,54,53,52,93,44,91,45,49,49,48,46,57,48,49,57,55,52,44,52,48,46,54,55,56,49,54,50,93,44,91,45,49,49,48,46,57,55,54,48,56,54,44,52,48,46,53,57,50,57,53,52,93,44,91,45,49,49,49,46,49,52,55,50,49,54,44,52,48,46,53,52,57,54,48,50,93,44,91,45,49,49,49,46,51,55,53,52,56,49,44,52,48,46,54,51,51,49,49,54,93,44,91,45,49,49,49,46,53,53,51,50,54,54,44,52,48,46,54,48,57,51,49,51,93,44,91,45,49,49,49,46,53,57,51,57,52,50,44,52,48,46,53,55,55,48,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,97,114,105,98,111,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,48,54,51,48,50,51,44,52,51,46,48,50,50,51,54,52,93,44,91,45,49,49,50,46,49,50,55,52,50,52,44,52,50,46,57,52,52,52,57,56,93,44,91,45,49,49,50,46,49,52,53,48,56,57,44,52,50,46,55,57,48,54,54,52,93,44,91,45,49,49,50,46,49,48,53,56,56,44,52,50,46,54,57,57,50,48,51,93,44,91,45,49,49,49,46,57,55,51,51,55,51,44,52,50,46,55,49,53,52,55,50,93,44,91,45,49,49,49,46,57,49,54,57,50,55,44,52,50,46,54,49,55,50,54,52,93,44,91,45,49,49,49,46,56,55,53,54,51,54,44,52,50,46,52,49,54,49,53,56,93,44,91,45,49,49,49,46,53,57,57,50,50,55,44,52,50,46,52,49,53,51,57,53,93,44,91,45,49,49,49,46,54,51,52,57,49,44,52,50,46,53,55,48,48,50,54,93,44,91,45,49,49,49,46,51,54,56,48,54,50,44,52,50,46,53,57,48,50,57,52,93,44,91,45,49,49,49,46,50,51,54,48,56,57,44,52,50,46,52,55,57,55,53,57,93,44,91,45,49,49,49,46,48,52,54,56,49,55,44,52,50,46,53,49,51,57,50,53,93,44,91,45,49,49,49,46,48,52,52,48,55,50,44,52,51,46,48,49,57,52,48,55,93,44,91,45,49,49,49,46,53,56,57,52,56,57,44,52,51,46,48,50,48,48,53,50,93,44,91,45,49,49,50,46,48,54,51,48,50,51,44,52,51,46,48,50,50,51,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,82,111,99,107,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,50,55,48,44,34,98,101,100,115,34,58,49,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,55,49,52,56,52,57,44,51,54,46,53,52,49,57,54,53,93,44,91,45,56,48,46,48,50,55,51,51,57,44,51,54,46,53,52,50,52,56,93,44,91,45,56,48,46,48,51,53,49,49,57,44,51,54,46,50,53,55,49,56,52,93,44,91,45,55,57,46,53,51,50,52,49,44,51,54,46,50,52,49,52,54,51,93,44,91,45,55,57,46,53,51,49,56,54,53,44,51,54,46,50,52,57,54,55,51,93,44,91,45,55,57,46,53,49,51,54,51,56,44,51,54,46,53,52,48,57,48,50,93,44,91,45,55,57,46,55,49,52,56,52,57,44,51,54,46,53,52,49,57,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,80,114,97,105,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,52,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,48,50,53,48,53,44,51,53,46,48,51,48,52,50,53,93,44,91,45,57,49,46,56,48,51,55,48,51,44,51,52,46,57,50,49,53,50,52,93,44,91,45,57,49,46,54,57,51,55,48,53,44,51,52,46,57,49,57,54,48,53,93,44,91,45,57,49,46,55,48,48,56,50,56,44,51,52,46,54,55,50,48,50,57,93,44,91,45,57,49,46,54,52,51,48,56,44,51,52,46,54,51,54,56,54,50,93,44,91,45,57,49,46,54,55,56,48,51,55,44,51,52,46,52,56,49,57,50,93,44,91,45,57,49,46,53,57,52,52,50,57,44,51,52,46,53,54,56,48,53,93,44,91,45,57,49,46,51,55,55,56,50,44,51,52,46,53,54,51,52,56,93,44,91,45,57,49,46,51,54,56,53,54,44,51,52,46,57,49,50,55,51,53,93,44,91,45,57,49,46,51,54,51,55,54,51,44,51,53,46,48,53,49,56,56,55,93,44,91,45,57,49,46,52,54,53,49,49,52,44,51,53,46,48,56,57,52,53,52,93,44,91,45,57,49,46,53,56,52,48,48,53,44,51,53,46,48,57,49,53,56,52,93,44,91,45,57,49,46,56,48,50,53,48,53,44,51,53,46,48,51,48,52,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,114,97,100,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,57,52,56,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,51,51,48,56,51,57,44,51,51,46,55,48,55,56,48,54,93,44,91,45,57,50,46,51,49,49,48,55,57,44,51,51,46,52,57,57,55,56,50,93,44,91,45,57,50,46,51,56,50,48,54,44,51,51,46,51,52,53,57,55,49,93,44,91,45,57,50,46,51,53,48,52,51,50,44,51,51,46,50,57,56,57,52,49,93,44,91,45,57,50,46,49,51,55,53,50,55,44,51,51,46,49,54,50,57,53,54,93,44,91,45,57,49,46,57,55,55,50,56,52,44,51,51,46,51,48,50,48,50,54,93,44,91,45,57,49,46,57,57,48,49,54,55,44,51,51,46,51,57,56,50,49,52,93,44,91,45,57,49,46,57,55,53,56,52,52,44,51,51,46,55,48,52,52,49,52,93,44,91,45,57,50,46,51,51,48,56,51,57,44,51,51,46,55,48,55,56,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,51,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,54,57,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,48,56,51,56,54,44,51,49,46,57,49,55,53,49,49,93,44,91,45,57,56,46,49,53,54,53,54,56,44,51,49,46,56,52,49,55,49,51,93,44,91,45,57,56,46,52,54,51,55,51,54,44,51,49,46,54,56,51,57,56,57,93,44,91,45,57,56,46,50,55,49,48,55,44,51,49,46,52,49,54,51,57,56,93,44,91,45,57,56,46,49,56,48,48,48,54,44,51,49,46,52,54,51,55,49,55,93,44,91,45,57,55,46,55,54,54,52,51,49,44,51,49,46,54,55,50,52,54,49,93,44,91,45,57,56,46,48,48,53,52,54,50,44,51,50,46,48,49,55,56,57,55,93,44,91,45,57,56,46,50,48,56,51,56,54,44,51,49,46,57,49,55,53,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,52,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,67,97,114,111,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,114,121,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,50,56,55,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,66,111,116,104,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,57,52,57,51,51,53,44,51,56,46,57,49,56,51,51,51,93,44,91,45,55,53,46,56,57,54,55,55,52,44,51,56,46,56,49,53,49,48,57,93,44,91,45,55,54,46,48,49,53,48,52,53,44,51,56,46,55,50,56,54,56,55,93,44,91,45,55,53,46,57,52,53,50,52,56,44,51,56,46,54,55,52,49,48,57,93,44,91,45,55,53,46,56,51,55,57,55,52,44,51,56,46,55,48,51,57,57,93,44,91,45,55,53,46,55,48,55,52,52,55,44,51,56,46,54,51,53,51,57,54,93,44,91,45,55,53,46,55,50,50,55,57,55,44,51,56,46,56,50,57,56,53,49,93,44,91,45,55,53,46,55,52,55,55,54,49,44,51,57,46,49,52,51,51,51,56,93,44,91,45,55,53,46,56,51,52,57,52,56,44,51,57,46,49,48,56,52,51,55,93,44,91,45,55,53,46,57,52,57,51,51,53,44,51,56,46,57,49,56,51,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,111,117,103,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,50,48,51,44,34,98,101,100,115,34,58,49,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,54,57,55,53,44,52,54,46,49,48,55,52,53,93,44,91,45,57,53,46,55,53,56,53,48,56,44,52,53,46,55,53,57,57,51,50,93,44,91,45,57,53,46,49,51,57,54,55,44,52,53,46,55,53,56,56,57,49,93,44,91,45,57,53,46,49,51,57,55,51,49,44,52,53,46,55,55,51,52,49,54,93,44,91,45,57,53,46,49,52,53,56,56,44,52,54,46,49,48,54,55,54,49,93,44,91,45,57,53,46,55,54,57,55,53,44,52,54,46,49,48,55,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,55,55,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,53,55,55,49,48,54,44,52,54,46,49,55,56,57,56,49,93,44,91,45,49,49,50,46,52,54,54,51,50,57,44,52,54,46,48,57,50,57,55,57,93,44,91,45,49,49,50,46,52,48,49,52,52,49,44,52,53,46,56,51,49,56,53,49,93,44,91,45,49,49,50,46,49,57,48,50,54,57,44,52,53,46,55,52,56,53,48,51,93,44,91,45,49,49,50,46,48,56,56,55,54,44,52,53,46,56,52,57,48,53,93,44,91,45,49,49,49,46,57,50,54,57,54,53,44,52,53,46,56,53,53,54,57,52,93,44,91,45,49,49,49,46,56,48,53,50,53,57,44,52,53,46,55,57,56,51,48,54,93,44,91,45,49,49,49,46,54,54,48,48,53,55,44,52,53,46,56,51,51,53,93,44,91,45,49,49,49,46,54,54,48,52,50,50,44,52,54,46,48,52,57,49,57,50,93,44,91,45,49,49,49,46,55,56,52,53,54,53,44,52,54,46,48,52,57,56,49,51,93,44,91,45,49,49,49,46,55,56,55,57,52,57,44,52,54,46,53,54,57,52,54,53,93,44,91,45,49,49,50,46,48,50,57,50,51,49,44,52,54,46,53,54,56,56,48,53,93,44,91,45,49,49,50,46,49,55,54,50,51,53,44,52,54,46,52,53,54,51,52,50,93,44,91,45,49,49,50,46,51,49,48,53,55,51,44,52,54,46,52,50,49,49,55,49,93,44,91,45,49,49,50,46,53,51,51,54,50,53,44,52,54,46,51,51,48,56,57,56,93,44,91,45,49,49,50,46,53,53,56,53,57,57,44,52,54,46,50,54,53,56,50,49,93,44,91,45,49,49,50,46,53,55,55,49,48,54,44,52,54,46,49,55,56,57,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,70,97,105,114,102,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,55,51,57,52,44,34,98,101,100,115,34,58,50,57,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,50,56,51,49,56,44,51,57,46,48,53,55,54,55,56,93,44,91,45,55,55,46,53,51,53,57,57,49,44,51,56,46,56,52,55,51,54,56,93,44,91,45,55,55,46,50,50,51,54,56,51,44,51,56,46,54,53,50,48,54,52,93,44,91,45,55,55,46,50,50,55,51,51,54,44,51,56,46,54,48,52,53,55,93,44,91,45,55,55,46,48,56,54,51,57,49,44,51,56,46,55,48,54,50,50,55,93,44,91,45,55,55,46,48,52,49,51,54,50,44,51,56,46,55,56,53,52,49,53,93,44,91,45,55,55,46,49,49,48,55,57,57,44,51,56,46,56,52,51,52,52,54,93,44,91,45,55,55,46,49,52,57,55,48,49,44,51,56,46,56,55,53,54,55,93,44,91,45,55,55,46,49,56,57,55,53,52,44,51,56,46,56,55,56,49,51,54,93,44,91,45,55,55,46,49,55,50,50,55,54,44,51,56,46,56,57,51,50,52,53,93,44,91,45,55,55,46,49,49,57,55,57,50,44,51,56,46,57,51,52,51,55,52,93,44,91,45,55,55,46,51,50,56,51,49,56,44,51,57,46,48,53,55,54,55,56,93,93,44,91,91,45,55,55,46,51,51,52,56,53,50,44,51,56,46,56,53,51,55,51,55,93,44,91,45,55,55,46,51,48,51,49,51,57,44,51,56,46,56,54,57,50,48,56,93,44,91,45,55,55,46,50,55,48,53,57,55,44,51,56,46,56,54,54,48,55,53,93,44,91,45,55,55,46,50,55,48,53,50,44,51,56,46,56,52,48,57,48,50,93,44,91,45,55,55,46,51,49,54,50,50,52,44,51,56,46,56,51,54,52,48,56,93,44,91,45,55,55,46,51,51,52,56,53,50,44,51,56,46,56,53,51,55,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,68,101,101,114,32,76,111,100,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,48,48,44,34,98,101,100,115,34,58,49,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,48,51,54,56,50,53,44,52,54,46,50,54,54,56,50,54,93,44,91,45,49,49,51,46,50,56,52,53,51,50,44,52,54,46,50,50,50,55,56,51,93,44,91,45,49,49,51,46,50,55,56,48,49,50,44,52,54,46,48,52,53,50,54,56,93,44,91,45,49,49,51,46,53,49,55,52,48,57,44,52,53,46,57,52,48,48,56,57,93,44,91,45,49,49,51,46,53,49,54,49,52,52,44,52,53,46,57,51,56,56,49,52,93,44,91,45,49,49,51,46,51,57,54,57,48,51,44,52,53,46,55,54,55,54,53,93,44,91,45,49,49,51,46,49,55,57,55,57,49,44,52,53,46,56,56,53,48,48,57,93,44,91,45,49,49,51,46,48,56,53,53,49,55,44,52,53,46,56,54,48,54,52,56,93,44,91,45,49,49,50,46,57,50,52,53,53,50,44,52,53,46,57,51,54,52,52,51,93,44,91,45,49,49,50,46,55,55,55,49,50,44,52,54,46,49,51,53,56,50,54,93,44,91,45,49,49,50,46,53,55,55,49,48,54,44,52,54,46,49,55,56,57,56,49,93,44,91,45,49,49,50,46,53,53,56,53,57,57,44,52,54,46,50,54,53,56,50,49,93,44,91,45,49,49,51,46,48,51,54,56,50,53,44,52,54,46,50,54,54,56,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,55,55,53,44,34,98,101,100,115,34,58,51,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,52,49,56,49,50,44,51,54,46,48,52,56,57,55,55,93,44,91,45,56,52,46,50,55,49,53,56,55,44,51,53,46,57,49,48,49,54,53,93,44,91,45,56,52,46,49,57,50,50,56,55,44,51,53,46,57,57,53,52,56,56,93,44,91,45,56,51,46,57,52,49,55,49,49,44,51,54,46,49,56,54,51,55,56,93,44,91,45,56,52,46,48,48,52,51,49,55,44,51,54,46,50,55,48,51,55,56,93,44,91,45,56,52,46,48,54,57,54,49,56,44,51,54,46,50,51,48,57,55,56,93,44,91,45,56,52,46,50,50,55,53,50,55,44,51,54,46,50,52,52,56,55,57,93,44,91,45,56,52,46,51,55,50,55,51,49,44,51,54,46,50,49,54,55,55,56,93,44,91,45,56,52,46,52,52,49,48,51,52,44,51,54,46,49,54,51,52,55,56,93,44,91,45,56,52,46,51,52,49,56,49,50,44,51,54,46,48,52,56,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,72,117,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,52,53,55,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,52,48,48,56,55,44,52,49,46,50,53,53,51,51,55,93,44,91,45,56,50,46,56,50,57,53,49,50,44,52,48,46,57,57,54,54,50,52,93,44,91,45,56,50,46,55,50,52,55,57,50,44,52,48,46,57,57,53,54,51,56,93,44,91,45,56,50,46,52,51,50,56,53,50,44,52,48,46,57,57,50,57,52,52,93,44,91,45,56,50,46,51,51,54,52,57,54,44,52,49,46,48,54,53,55,54,49,93,44,91,45,56,50,46,51,52,50,51,49,52,44,52,49,46,50,56,51,53,53,52,93,44,91,45,56,50,46,56,52,49,52,55,53,44,52,49,46,50,57,48,48,50,51,93,44,91,45,56,50,46,56,52,48,48,56,55,44,52,49,46,50,53,53,51,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,97,99,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,50,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,53,50,49,52,50,44,51,49,46,55,49,48,55,57,54,93,44,91,45,56,50,46,54,50,55,51,52,50,44,51,49,46,54,55,50,54,55,50,93,44,91,45,56,50,46,53,57,55,53,48,57,44,51,49,46,52,54,57,50,57,51,93,44,91,45,56,50,46,52,49,55,50,52,54,44,51,49,46,52,49,55,49,49,57,93,44,91,45,56,50,46,51,52,52,56,52,51,44,51,49,46,52,51,48,49,51,93,44,91,45,56,50,46,50,50,54,53,56,53,44,51,49,46,53,51,48,54,57,57,93,44,91,45,56,50,46,53,50,49,52,50,44,51,49,46,55,49,48,55,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,68,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,52,56,50,50,44,34,98,101,100,115,34,58,52,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,52,55,55,54,49,44,51,57,46,49,52,51,51,51,56,93,44,91,45,55,53,46,55,50,50,55,57,55,44,51,56,46,56,50,57,56,53,49,93,44,91,45,55,53,46,53,53,53,48,49,51,44,51,56,46,56,51,53,54,52,57,93,44,91,45,55,53,46,51,55,50,49,51,49,44,51,56,46,57,54,49,52,51,54,93,44,91,45,55,53,46,49,51,56,52,54,49,44,51,57,46,48,48,50,54,57,55,93,44,91,45,55,53,46,49,54,56,52,54,50,44,51,57,46,48,53,54,49,55,57,93,44,91,45,55,53,46,51,50,49,48,50,49,44,51,57,46,50,53,49,51,55,57,93,44,91,45,55,53,46,52,52,52,55,53,49,44,51,57,46,51,53,53,48,56,57,93,44,91,45,55,53,46,52,56,49,51,54,44,51,57,46,51,56,55,53,53,53,93,44,91,45,55,53,46,53,55,52,52,50,57,44,51,57,46,51,49,51,54,49,49,93,44,91,45,55,53,46,55,54,48,48,55,52,44,51,57,46,50,57,54,56,49,57,93,44,91,45,55,53,46,55,53,54,48,48,52,44,51,57,46,50,52,54,48,54,54,93,44,91,45,55,53,46,55,52,55,55,54,49,44,51,57,46,49,52,51,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,87,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,57,57,51,54,44,34,98,101,100,115,34,58,49,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,49,53,57,52,49,44,52,49,46,54,49,57,49,49,93,44,91,45,56,51,46,53,54,57,57,51,52,44,52,49,46,54,49,55,49,53,93,44,91,45,56,51,46,55,52,55,50,49,55,44,52,49,46,52,54,54,50,49,54,93,44,91,45,56,51,46,56,56,51,50,51,52,44,52,49,46,52,49,52,53,48,51,93,44,91,45,56,51,46,56,56,49,49,52,57,44,52,49,46,49,54,55,56,50,52,93,44,91,45,56,51,46,52,50,49,48,53,52,44,52,49,46,49,54,54,55,56,93,44,91,45,56,51,46,52,49,57,56,52,51,44,52,49,46,50,53,52,48,48,51,93,44,91,45,56,51,46,52,49,52,54,50,54,44,52,49,46,53,48,48,50,50,56,93,44,91,45,56,51,46,52,49,53,57,52,49,44,52,49,46,54,49,57,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,55,53,53,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,50,48,49,49,53,44,51,52,46,50,57,53,50,55,54,93,44,91,45,56,51,46,56,49,55,54,56,50,44,51,52,46,49,50,55,52,57,51,93,44,91,45,56,51,46,55,53,49,51,56,49,44,51,52,46,48,54,52,50,48,49,93,44,91,45,56,51,46,53,54,51,50,49,53,44,51,52,46,48,51,49,55,53,55,93,44,91,45,56,51,46,53,51,55,51,56,53,44,51,51,46,57,54,53,57,49,50,93,44,91,45,56,51,46,51,54,48,48,50,56,44,51,52,46,48,52,48,53,55,50,93,44,91,45,56,51,46,52,48,50,52,50,56,44,51,52,46,49,57,55,52,57,57,93,44,91,45,56,51,46,52,56,48,51,54,49,44,51,52,46,50,54,50,48,51,56,93,44,91,45,56,51,46,54,50,48,49,49,53,44,51,52,46,50,57,53,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,56,53,50,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,44,91,45,57,53,46,53,48,56,51,50,56,44,51,56,46,51,57,48,50,55,56,93,44,91,45,57,53,46,53,49,56,57,55,44,51,56,46,48,51,56,50,51,93,44,91,45,57,53,46,48,55,55,56,55,54,44,51,56,46,48,51,55,55,48,54,93,44,91,45,57,53,46,48,54,53,56,51,49,44,51,56,46,51,56,57,57,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,57,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,53,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,57,57,57,44,34,98,101,100,115,34,58,50,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,52,51,57,52,50,51,44,52,49,46,48,54,51,57,57,53,93,44,91,45,57,48,46,52,52,52,51,51,57,44,52,48,46,55,49,52,56,54,56,93,44,91,45,56,57,46,57,56,54,48,54,52,44,52,48,46,55,49,50,51,54,49,93,44,91,45,56,57,46,57,56,53,52,55,57,44,52,48,46,57,55,52,52,57,53,93,44,91,45,56,57,46,57,56,52,53,53,57,44,52,49,46,49,52,57,51,57,52,93,44,91,45,57,48,46,52,51,55,54,53,50,44,52,49,46,49,53,49,52,54,51,93,44,91,45,57,48,46,52,51,57,52,50,51,44,52,49,46,48,54,51,57,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,87,104,101,97,116,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,55,52,53,55,52,53,44,52,54,46,54,57,52,48,57,55,93,44,91,45,49,48,57,46,57,54,55,56,44,52,54,46,55,53,48,56,55,53,93,44,91,45,49,49,48,46,50,55,51,51,51,55,44,52,54,46,55,49,48,53,48,57,93,44,91,45,49,49,48,46,50,56,49,57,55,49,44,52,54,46,50,50,48,54,48,53,93,44,91,45,49,48,57,46,54,53,51,56,55,49,44,52,54,46,50,49,57,52,48,52,93,44,91,45,49,48,57,46,52,48,50,57,48,54,44,52,54,46,50,49,57,55,48,54,93,44,91,45,49,48,57,46,51,56,57,49,54,51,44,52,54,46,54,57,51,54,50,53,93,44,91,45,49,48,57,46,55,52,53,55,52,53,44,52,54,46,54,57,52,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,110,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,55,54,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,53,51,50,49,52,44,51,53,46,57,53,52,51,57,57,93,44,91,45,56,54,46,50,48,55,49,52,55,44,51,53,46,55,48,51,55,57,93,44,91,45,56,54,46,49,52,51,54,53,50,44,51,53,46,54,54,49,55,52,55,93,44,91,45,56,53,46,57,56,53,48,54,50,44,51,53,46,54,54,48,49,48,56,93,44,91,45,56,53,46,57,56,52,56,57,49,44,51,53,46,55,51,52,53,53,51,93,44,91,45,56,53,46,56,56,53,49,53,54,44,51,53,46,56,51,57,54,53,56,93,44,91,45,56,54,46,48,49,52,56,52,57,44,51,53,46,57,54,49,48,54,93,44,91,45,56,54,46,49,53,51,50,49,52,44,51,53,46,57,53,52,51,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,49,57,44,34,98,101,100,115,34,58,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,56,51,53,49,52,50,44,52,53,46,50,55,55,48,52,55,93,44,91,45,55,48,46,55,55,57,56,52,50,44,52,53,46,48,49,56,51,55,57,93,44,91,45,55,48,46,55,54,57,50,50,56,44,52,52,46,55,51,50,50,50,56,93,44,91,45,55,48,46,54,49,53,48,51,44,52,52,46,55,57,53,54,51,52,93,44,91,45,55,48,46,53,49,48,53,57,56,44,52,52,46,54,50,55,50,49,54,93,44,91,45,55,48,46,50,56,48,55,52,56,44,52,52,46,53,54,57,54,49,57,93,44,91,45,55,48,46,50,51,56,57,48,52,44,52,52,46,52,53,56,57,52,50,93,44,91,45,55,48,46,49,50,57,51,57,44,52,52,46,52,56,55,50,49,55,93,44,91,45,55,48,46,48,52,48,50,49,53,44,52,52,46,53,56,56,55,50,50,93,44,91,45,54,57,46,57,51,48,52,53,49,44,52,52,46,54,49,48,56,53,50,93,44,91,45,54,57,46,57,57,54,49,57,49,44,52,52,46,54,55,55,52,57,55,93,44,91,45,55,48,46,48,51,51,50,55,44,52,52,46,56,54,52,53,52,93,44,91,45,55,48,46,49,49,48,51,54,53,44,52,52,46,57,52,55,51,49,49,93,44,91,45,55,48,46,49,53,57,51,55,53,44,52,53,46,49,50,56,51,57,54,93,44,91,45,55,48,46,50,57,51,56,50,54,44,52,53,46,49,48,57,57,48,51,93,44,91,45,55,48,46,52,49,56,53,49,57,44,52,53,46,49,52,52,48,48,53,93,44,91,45,55,48,46,53,53,50,56,53,51,44,52,53,46,54,54,55,56,57,57,93,44,91,45,55,48,46,55,50,50,53,55,49,44,52,53,46,53,49,51,54,55,50,93,44,91,45,55,48,46,54,50,52,52,53,52,44,52,53,46,52,48,54,49,52,57,93,44,91,45,55,48,46,56,50,53,55,51,55,44,52,53,46,52,48,48,50,54,53,93,44,91,45,55,48,46,56,51,53,49,52,50,44,52,53,46,50,55,55,48,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,77,101,110,105,102,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,48,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,51,49,48,54,44,51,55,46,56,50,53,51,55,50,93,44,91,45,56,51,46,52,57,53,48,56,44,51,55,46,56,54,49,57,48,54,93,44,91,45,56,51,46,52,51,51,57,52,50,44,51,56,46,48,51,51,57,55,52,93,44,91,45,56,51,46,52,57,56,56,52,54,44,51,56,46,48,53,48,54,50,93,44,91,45,56,51,46,55,53,57,52,51,44,51,55,46,57,57,56,55,51,49,93,44,91,45,56,51,46,55,54,56,55,56,51,44,51,55,46,57,49,56,51,55,49,93,44,91,45,56,51,46,54,51,49,48,54,44,51,55,46,56,50,53,51,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,99,80,104,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,54,52,44,34,98,101,100,115,34,58,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,48,53,55,53,56,44,52,53,46,57,51,57,55,51,49,93,44,91,45,57,57,46,55,49,56,48,55,49,44,52,53,46,57,52,48,56,56,51,93,44,91,45,57,57,46,55,49,55,52,54,54,44,52,53,46,53,57,51,52,50,56,93,44,91,45,57,57,46,55,48,55,55,48,53,44,52,53,46,53,57,51,51,57,49,93,44,91,45,57,56,46,55,50,53,48,48,50,44,52,53,46,53,57,49,50,53,50,93,44,91,45,57,56,46,55,50,52,51,55,53,44,52,53,46,57,51,56,55,51,49,93,44,91,45,57,57,46,48,48,53,55,53,56,44,52,53,46,57,51,57,55,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,117,110,110,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,53,51,55,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,53,48,48,54,48,54,44,51,57,46,50,49,55,57,49,54,93,44,91,45,49,48,55,46,53,48,48,54,53,53,44,51,56,46,54,54,56,53,53,51,93,44,91,45,49,48,55,46,53,48,48,48,50,44,51,56,46,51,48,49,57,50,54,93,44,91,45,49,48,55,46,54,51,53,48,52,44,51,56,46,51,48,49,56,57,54,93,44,91,45,49,48,55,46,53,54,56,54,50,44,51,56,46,49,52,55,50,54,55,93,44,91,45,49,48,55,46,48,48,49,49,49,57,44,51,56,46,49,52,55,48,55,50,93,44,91,45,49,48,55,46,48,48,48,54,48,49,44,51,56,46,52,50,53,54,49,57,93,44,91,45,49,48,54,46,50,52,54,57,52,44,51,56,46,52,50,50,55,54,56,93,44,91,45,49,48,54,46,51,52,56,49,48,56,44,51,56,46,53,49,50,52,57,57,93,44,91,45,49,48,54,46,52,51,48,49,53,57,44,51,56,46,54,53,51,52,54,56,93,44,91,45,49,48,54,46,52,49,54,50,54,51,44,51,56,46,56,50,51,56,53,93,44,91,45,49,48,54,46,52,54,53,48,51,50,44,51,56,46,57,49,48,51,53,52,93,44,91,45,49,48,54,46,53,57,57,50,49,52,44,51,56,46,57,57,55,57,57,52,93,44,91,45,49,48,54,46,55,52,48,54,57,53,44,51,57,46,48,52,53,57,48,54,93,44,91,45,49,48,54,46,56,48,49,56,55,52,44,51,56,46,57,55,56,51,48,51,93,44,91,45,49,48,54,46,57,48,56,49,57,54,44,51,56,46,57,57,50,53,55,57,93,44,91,45,49,48,55,46,48,54,54,51,50,44,51,57,46,49,49,56,56,48,53,93,44,91,45,49,48,55,46,50,56,50,52,57,44,51,57,46,49,49,56,55,49,56,93,44,91,45,49,48,55,46,51,57,52,52,56,54,44,51,57,46,50,53,54,50,57,57,93,44,91,45,49,48,55,46,53,48,48,54,48,54,44,51,57,46,50,49,55,57,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,101,118,111,105,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,49,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,53,56,56,57,54,44,52,53,46,50,48,54,53,55,52,93,44,91,45,56,53,46,50,50,50,55,48,55,44,52,53,46,50,48,53,53,54,93,44,91,45,56,53,46,50,50,51,54,56,49,44,52,53,46,49,49,55,56,54,49,93,44,91,45,56,52,46,56,53,55,52,53,50,44,52,53,46,49,49,54,55,48,55,93,44,91,45,56,52,46,55,51,52,51,48,51,44,52,53,46,50,48,49,57,51,54,93,44,91,45,56,52,46,55,51,50,54,56,55,44,52,53,46,50,56,57,51,56,50,93,44,91,45,56,52,46,57,54,52,55,56,55,44,52,53,46,50,57,49,54,48,49,93,44,91,45,56,53,46,50,56,51,50,51,56,44,52,53,46,53,53,48,50,48,57,93,44,91,45,56,53,46,51,48,55,53,56,52,44,52,53,46,54,50,53,48,48,54,93,44,91,45,56,53,46,50,50,49,51,57,52,44,52,53,46,55,56,50,56,52,51,93,44,91,45,56,53,46,50,51,57,54,49,56,44,52,53,46,56,55,48,55,52,93,44,91,45,56,53,46,53,55,48,48,55,52,44,52,53,46,56,56,51,50,52,52,93,44,91,45,56,53,46,56,54,56,50,52,49,44,52,53,46,56,49,57,55,57,53,93,44,91,45,56,53,46,56,53,53,55,54,56,44,52,53,46,53,55,56,51,56,54,93,44,91,45,56,53,46,54,50,53,48,55,54,44,52,53,46,52,53,52,54,48,50,93,44,91,45,56,53,46,52,53,56,56,57,54,44,52,53,46,50,48,54,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,119,105,102,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,49,49,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,49,49,55,48,51,54,44,52,53,46,52,49,49,57,57,51,93,44,91,45,57,54,46,49,48,51,54,49,52,44,52,53,46,49,55,54,54,55,53,93,44,91,45,57,54,46,48,51,54,54,57,56,44,52,53,46,49,53,50,50,48,54,93,44,91,45,57,53,46,50,52,54,52,56,57,44,52,53,46,49,53,50,52,51,49,93,44,91,45,57,53,46,50,53,53,50,49,51,44,52,53,46,52,49,50,55,51,57,93,44,91,45,57,53,46,55,52,55,52,48,50,44,52,53,46,52,49,50,51,49,51,93,44,91,45,57,54,46,49,49,55,48,51,54,44,52,53,46,52,49,49,57,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,83,101,110,101,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,55,53,44,34,98,101,100,115,34,58,49,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,49,57,56,52,51,44,52,49,46,50,53,52,48,48,51,93,44,91,45,56,51,46,52,50,49,48,53,52,44,52,49,46,49,54,54,55,56,93,44,91,45,56,51,46,52,50,48,51,49,57,44,52,48,46,57,57,49,56,56,57,93,44,91,45,56,51,46,49,49,50,55,51,55,44,52,48,46,57,57,51,52,52,55,93,44,91,45,56,50,46,56,50,57,53,49,50,44,52,48,46,57,57,54,54,50,52,93,44,91,45,56,50,46,56,52,48,48,56,55,44,52,49,46,50,53,53,51,51,55,93,44,91,45,56,51,46,52,49,57,56,52,51,44,52,49,46,50,53,52,48,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,54,55,34,44,34,78,65,77,69,34,58,34,84,97,116,116,110,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,51,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,51,50,55,56,56,44,51,50,46,51,49,56,56,51,56,93,44,91,45,56,50,46,49,56,50,55,50,55,44,51,50,46,49,54,48,52,52,50,93,44,91,45,56,50,46,50,50,53,48,52,50,44,51,49,46,57,49,51,48,55,52,93,44,91,45,56,50,46,48,52,56,53,56,50,44,51,49,46,56,50,55,48,55,53,93,44,91,45,56,49,46,57,54,57,48,53,50,44,51,49,46,55,56,57,51,50,52,93,44,91,45,56,49,46,56,50,52,52,48,53,44,51,50,46,48,49,52,56,56,50,93,44,91,45,56,49,46,55,54,49,55,51,53,44,51,50,46,48,52,55,57,93,44,91,45,56,49,46,57,56,48,48,52,49,44,51,50,46,48,56,49,53,48,50,93,44,91,45,56,50,46,48,50,53,51,51,57,44,51,50,46,50,55,56,56,56,51,93,44,91,45,56,50,46,50,51,50,55,56,56,44,51,50,46,51,49,56,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,50,57,34,44,34,78,65,77,69,34,58,34,83,116,101,112,104,101,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,55,50,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,48,57,54,48,49,54,44,51,50,46,57,53,55,48,51,55,93,44,91,45,57,57,46,48,57,54,48,53,44,51,50,46,53,49,52,55,54,56,93,44,91,45,57,56,46,53,55,54,50,53,54,44,51,50,46,53,49,53,49,54,51,93,44,91,45,57,56,46,53,55,53,54,49,54,44,51,50,46,57,53,52,51,52,57,93,44,91,45,57,56,46,57,53,48,56,55,53,44,51,50,46,57,53,54,57,49,56,93,44,91,45,57,57,46,48,57,54,48,49,54,44,51,50,46,57,53,55,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,97,114,116,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,48,53,52,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,48,50,54,49,52,44,51,54,46,48,48,52,57,54,54,93,44,91,45,55,55,46,51,52,50,52,49,56,44,51,53,46,57,48,53,50,54,50,93,44,91,45,55,55,46,51,53,48,51,54,57,44,51,53,46,56,49,57,50,50,56,93,44,91,45,55,55,46,49,55,52,44,51,53,46,55,51,50,56,51,49,93,44,91,45,55,54,46,57,56,53,56,52,50,44,51,53,46,54,53,56,56,52,56,93,44,91,45,55,54,46,56,52,55,50,54,52,44,51,53,46,55,49,57,57,56,50,93,44,91,45,55,54,46,55,54,48,53,57,56,44,51,53,46,56,54,52,56,56,55,93,44,91,45,55,55,46,48,48,53,50,53,44,51,53,46,56,53,56,52,51,51,93,44,91,45,55,55,46,48,52,50,56,56,50,44,51,53,46,57,52,50,50,55,56,93,44,91,45,55,55,46,51,50,55,53,54,57,44,51,54,46,48,55,49,51,54,49,93,44,91,45,55,55,46,52,48,50,54,49,52,44,51,54,46,48,48,52,57,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,82,97,118,97,108,108,105,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,57,48,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,51,51,50,55,57,54,44,52,54,46,54,54,48,53,56,49,93,44,91,45,49,49,52,46,51,52,50,57,56,53,44,52,54,46,53,49,56,48,52,93,44,91,45,49,49,52,46,52,55,48,55,57,53,44,52,54,46,50,54,53,51,55,55,93,44,91,45,49,49,52,46,52,52,53,50,51,52,44,52,54,46,49,54,55,57,52,54,93,44,91,45,49,49,52,46,52,56,48,53,51,55,44,52,54,46,48,51,48,52,51,57,93,44,91,45,49,49,52,46,52,48,53,57,49,55,44,52,53,46,56,55,48,52,93,44,91,45,49,49,52,46,53,54,54,51,52,56,44,52,53,46,55,55,50,55,51,57,93,44,91,45,49,49,52,46,52,57,57,54,54,55,44,52,53,46,54,54,56,53,49,51,93,44,91,45,49,49,52,46,53,54,52,57,57,57,44,52,53,46,53,53,55,56,48,51,93,44,91,45,49,49,52,46,50,54,57,56,57,50,44,52,53,46,52,56,52,53,53,50,93,44,91,45,49,49,51,46,57,51,56,48,57,53,44,52,53,46,54,57,53,55,52,93,44,91,45,49,49,51,46,55,49,50,53,50,50,44,52,53,46,56,51,56,51,56,52,93,44,91,45,49,49,51,46,53,51,50,51,55,44,52,53,46,56,55,56,52,48,53,93,44,91,45,49,49,51,46,53,49,54,49,52,52,44,52,53,46,57,51,56,56,49,52,93,44,91,45,49,49,51,46,53,49,55,52,48,57,44,52,53,46,57,52,48,48,56,57,93,44,91,45,49,49,51,46,54,52,56,51,53,56,44,52,53,46,57,54,53,48,51,56,93,44,91,45,49,49,51,46,55,53,51,50,52,54,44,52,54,46,49,49,50,56,93,44,91,45,49,49,51,46,55,56,50,48,51,50,44,52,54,46,51,53,57,53,49,56,93,44,91,45,49,49,51,46,56,55,52,54,53,49,44,52,54,46,53,48,56,51,50,57,93,44,91,45,49,49,51,46,56,50,55,55,52,51,44,52,54,46,54,54,48,56,57,54,93,44,91,45,49,49,52,46,51,51,50,55,57,54,44,52,54,46,54,54,48,53,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,55,34,44,34,78,65,77,69,34,58,34,87,105,108,107,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,56,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,55,57,53,48,54,44,51,51,46,57,55,49,49,50,52,93,44,91,45,56,50,46,56,52,54,54,56,54,44,51,51,46,57,52,48,54,51,57,93,44,91,45,56,50,46,57,56,55,50,56,54,44,51,51,46,55,56,48,55,49,93,44,91,45,56,50,46,57,52,57,48,52,54,44,51,51,46,55,51,51,51,51,51,93,44,91,45,56,50,46,56,57,48,53,57,57,44,51,51,46,54,51,50,56,55,55,93,44,91,45,56,50,46,56,49,50,57,53,56,44,51,51,46,54,53,53,56,51,54,93,44,91,45,56,50,46,54,55,57,57,55,53,44,51,51,46,53,57,57,55,57,50,93,44,91,45,56,50,46,54,52,57,55,48,53,44,51,51,46,54,48,56,55,54,56,93,44,91,45,56,50,46,52,55,57,53,49,56,44,51,51,46,54,51,57,53,51,53,93,44,91,45,56,50,46,53,55,51,54,53,50,44,51,51,46,55,56,54,49,49,54,93,44,91,45,56,50,46,54,52,53,52,53,49,44,51,51,46,57,56,52,49,57,53,93,44,91,45,56,50,46,55,55,57,53,48,54,44,51,51,46,57,55,49,49,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,52,51,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,51,52,48,57,51,56,44,52,55,46,56,57,52,51,49,54,93,44,91,45,49,49,56,46,53,51,49,50,57,55,44,52,55,46,56,55,52,56,55,56,93,44,91,45,49,49,56,46,55,51,48,51,50,53,44,52,55,46,57,48,48,49,54,57,93,44,91,45,49,49,56,46,56,53,49,57,54,44,52,55,46,57,53,55,57,48,54,93,44,91,45,49,49,56,46,57,55,51,53,48,52,44,52,55,46,57,52,51,52,49,52,93,44,91,45,49,49,56,46,57,55,57,55,55,55,44,52,55,46,50,54,49,55,48,57,93,44,91,45,49,49,55,46,57,54,48,57,51,44,52,55,46,50,54,48,53,54,56,93,44,91,45,49,49,55,46,56,50,51,54,50,57,44,52,55,46,50,54,48,50,50,93,44,91,45,49,49,55,46,56,50,48,57,52,55,44,52,55,46,56,50,53,55,55,53,93,44,91,45,49,49,56,46,48,55,56,49,56,50,44,52,55,46,56,48,48,48,54,50,93,44,91,45,49,49,56,46,50,49,50,51,50,51,44,52,55,46,57,52,53,52,57,51,93,44,91,45,49,49,56,46,51,52,48,57,51,56,44,52,55,46,56,57,52,51,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,83,97,110,32,77,97,116,101,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,53,57,51,53,44,34,98,101,100,115,34,58,50,52,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,53,55,53,49,56,57,44,51,55,46,55,48,54,55,50,49,93,44,91,45,49,50,50,46,53,55,52,57,54,51,44,51,55,46,52,57,57,57,52,51,93,44,91,45,49,50,50,46,52,54,53,56,54,57,44,51,55,46,51,52,49,50,52,93,44,91,45,49,50,50,46,52,54,52,49,49,55,44,51,55,46,49,55,55,56,52,56,93,44,91,45,49,50,50,46,51,49,51,56,57,57,44,51,55,46,48,53,52,55,54,52,93,44,91,45,49,50,50,46,51,49,55,54,56,50,44,51,55,46,49,56,54,57,52,53,93,44,91,45,49,50,50,46,49,53,50,55,55,52,44,51,55,46,50,49,53,52,52,52,93,44,91,45,49,50,50,46,49,53,50,50,55,56,44,51,55,46,50,56,54,48,53,53,93,44,91,45,49,50,50,46,49,57,48,52,48,50,44,51,55,46,52,51,49,52,55,50,93,44,91,45,49,50,50,46,48,56,49,52,55,51,44,51,55,46,52,55,55,56,51,56,93,44,91,45,49,50,50,46,50,56,49,55,56,44,51,55,46,55,48,56,50,51,93,44,91,45,49,50,50,46,53,55,53,49,56,57,44,51,55,46,55,48,54,55,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,87,105,108,108,105,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,57,51,54,44,34,98,101,100,115,34,58,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,57,57,53,52,54,44,52,49,46,55,48,53,56,49,54,93,44,91,45,56,52,46,56,48,53,57,55,50,44,52,49,46,54,57,54,49,49,56,93,44,91,45,56,52,46,56,48,52,54,56,55,44,52,49,46,53,51,48,49,51,52,93,44,91,45,56,52,46,56,48,52,48,54,51,44,52,49,46,52,50,54,48,53,49,93,44,91,45,56,52,46,51,52,49,54,54,52,44,52,49,46,52,50,55,53,54,56,93,44,91,45,56,52,46,51,52,49,57,48,50,44,52,49,46,52,56,53,53,49,57,93,44,91,45,56,52,46,51,56,48,55,51,53,44,52,49,46,53,49,51,57,52,50,93,44,91,45,56,52,46,51,57,57,53,52,54,44,52,49,46,55,48,53,56,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,54,51,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,48,50,51,50,57,44,51,55,46,48,48,48,49,53,93,44,91,45,49,48,50,46,48,52,50,48,56,57,44,51,54,46,57,57,51,48,49,54,93,44,91,45,49,48,50,46,48,52,49,54,52,50,44,51,55,46,51,56,57,49,57,93,44,91,45,49,48,50,46,48,52,49,53,56,53,44,51,55,46,54,52,52,50,56,50,93,44,91,45,49,48,50,46,55,52,55,54,49,53,44,51,55,46,54,52,51,54,52,50,93,44,91,45,49,48,51,46,48,55,53,57,51,56,44,51,55,46,54,52,51,52,50,93,44,91,45,49,48,51,46,48,56,54,49,48,50,44,51,55,46,48,48,48,49,56,56,93,44,91,45,49,48,51,46,48,48,50,51,50,57,44,51,55,46,48,48,48,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,66,111,117,110,100,97,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,52,57,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,54,46,48,52,57,48,56,54,44,52,57,46,48,48,48,56,52,54,93,44,91,45,49,49,55,46,48,51,50,51,52,53,44,52,56,46,57,57,57,50,48,49,93,44,91,45,49,49,55,46,48,51,50,52,52,49,44,52,56,46,56,52,54,54,54,54,93,44,91,45,49,49,54,46,55,56,53,49,55,52,44,52,56,46,56,52,55,52,48,50,93,44,91,45,49,49,54,46,55,56,52,56,55,56,44,52,56,46,53,48,48,52,55,50,93,44,91,45,49,49,54,46,48,52,57,48,53,56,44,52,56,46,53,48,50,48,54,50,93,44,91,45,49,49,54,46,48,52,57,48,56,54,44,52,57,46,48,48,48,56,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,101,97,114,32,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,57,54,50,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,53,57,57,50,50,55,44,52,50,46,52,49,53,51,57,53,93,44,91,45,49,49,49,46,53,54,54,54,50,56,44,52,50,46,50,55,51,53,55,52,93,44,91,45,49,49,49,46,54,50,54,49,48,52,44,52,50,46,50,48,55,53,52,50,93,44,91,45,49,49,49,46,53,57,53,55,52,51,44,52,50,46,48,57,52,50,49,93,44,91,45,49,49,49,46,53,48,55,56,48,54,44,52,49,46,57,57,57,53,53,50,93,44,91,45,49,49,49,46,48,52,54,55,49,52,44,52,50,46,48,48,49,55,48,50,93,44,91,45,49,49,49,46,48,52,54,56,49,55,44,52,50,46,53,49,51,57,50,53,93,44,91,45,49,49,49,46,50,51,54,48,56,57,44,52,50,46,52,55,57,55,53,57,93,44,91,45,49,49,49,46,51,54,56,48,54,50,44,52,50,46,53,57,48,50,57,52,93,44,91,45,49,49,49,46,54,51,52,57,49,44,52,50,46,53,55,48,48,50,54,93,44,91,45,49,49,49,46,53,57,57,50,50,55,44,52,50,46,52,49,53,51,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,54,53,52,44,34,98,101,100,115,34,58,57,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,53,50,48,50,50,55,44,52,48,46,53,48,52,48,55,55,93,44,91,45,56,51,46,53,53,49,51,51,56,44,52,48,46,50,50,57,51,55,93,44,91,45,56,51,46,53,48,51,55,49,52,44,52,48,46,49,49,49,52,54,56,93,44,91,45,56,51,46,50,48,54,50,55,51,44,52,48,46,49,48,55,55,51,51,93,44,91,45,56,51,46,49,54,57,57,56,49,44,52,48,46,49,52,51,48,56,55,93,44,91,45,56,51,46,50,52,56,52,50,56,44,52,48,46,50,52,52,52,54,54,93,44,91,45,56,51,46,50,52,56,53,57,53,44,52,48,46,52,52,51,57,56,57,93,44,91,45,56,51,46,50,52,56,49,56,51,44,52,48,46,53,48,55,48,51,52,93,44,91,45,56,51,46,52,49,56,54,55,44,52,48,46,53,48,53,50,50,57,93,44,91,45,56,51,46,53,50,48,50,50,55,44,52,48,46,53,48,52,48,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,67,117,121,97,104,111,103,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,51,55,56,51,44,34,98,101,100,115,34,58,55,49,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,55,48,53,56,44,52,49,46,56,55,55,56,52,53,93,44,91,45,56,49,46,57,55,49,50,54,50,44,52,49,46,51,53,49,50,54,56,93,44,91,45,56,49,46,56,55,56,48,53,51,44,52,49,46,50,55,53,48,52,52,93,44,91,45,56,49,46,54,56,52,57,53,44,52,49,46,50,55,55,49,52,54,93,44,91,45,56,49,46,53,57,56,48,53,50,44,52,49,46,51,53,49,49,53,55,93,44,91,45,56,49,46,51,57,49,54,57,52,44,52,49,46,51,52,56,50,55,50,93,44,91,45,56,49,46,51,57,49,48,48,53,44,52,49,46,53,54,57,55,49,54,93,44,91,45,56,49,46,52,56,55,56,52,50,44,52,49,46,53,55,48,48,53,49,93,44,91,45,56,49,46,52,57,53,49,56,49,44,52,50,46,48,57,54,52,48,50,93,44,91,45,56,49,46,57,55,48,53,56,44,52,49,46,56,55,55,56,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,53,34,44,34,78,65,77,69,34,58,34,76,97,118,97,99,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,57,52,49,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,52,48,49,48,56,44,50,57,46,51,56,52,52,56,56,93,44,91,45,57,54,46,57,55,54,51,55,56,44,50,57,46,49,48,52,48,52,54,93,44,91,45,57,54,46,57,51,56,53,56,55,44,50,57,46,48,54,51,50,52,52,93,44,91,45,57,54,46,54,53,56,52,54,54,44,50,57,46,50,54,51,56,55,54,93,44,91,45,57,54,46,53,54,48,53,53,53,44,50,57,46,51,51,53,52,51,57,93,44,91,45,57,54,46,55,57,51,49,51,50,44,50,57,46,53,55,55,51,55,56,93,44,91,45,57,54,46,56,55,52,50,50,50,44,50,57,46,54,51,50,55,48,54,93,44,91,45,57,55,46,49,52,50,54,52,51,44,50,57,46,54,50,56,49,48,49,93,44,91,45,57,55,46,50,48,52,48,56,55,44,50,57,46,53,56,48,54,49,51,93,44,91,45,57,55,46,50,52,48,49,48,56,44,50,57,46,51,56,52,52,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,78,111,119,97,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,56,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,56,54,55,54,50,44,51,54,46,57,57,57,51,49,93,44,91,45,57,53,46,56,48,57,56,50,44,51,54,46,57,52,49,57,51,93,44,91,45,57,53,46,56,48,57,53,52,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,52,51,49,53,55,44,51,54,46,53,57,55,53,52,93,44,91,45,57,53,46,52,51,49,55,53,56,44,51,54,46,57,52,50,53,57,51,93,44,91,45,57,53,46,52,48,55,55,51,51,44,51,54,46,57,57,57,51,49,49,93,44,91,45,57,53,46,53,50,50,52,49,53,44,51,54,46,57,57,57,50,56,93,44,91,45,57,53,46,55,56,54,55,54,50,44,51,54,46,57,57,57,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,71,108,97,115,99,111,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,49,57,53,55,44,51,51,46,50,55,52,56,51,93,44,91,45,56,50,46,53,53,57,55,53,51,44,51,51,46,51,50,55,50,55,93,44,91,45,56,50,46,55,53,53,56,52,54,44,51,51,46,50,53,51,52,52,93,44,91,45,56,50,46,55,52,56,51,49,49,44,51,51,46,50,51,56,51,52,56,93,44,91,45,56,50,46,54,54,49,57,49,55,44,51,51,46,49,50,54,51,51,49,93,44,91,45,56,50,46,52,51,49,57,53,55,44,51,51,46,50,55,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,85,109,97,116,105,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,56,57,56,44,34,98,101,100,115,34,58,49,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,56,46,57,56,55,50,53,56,44,52,53,46,57,57,57,56,53,53,93,44,91,45,49,49,57,46,49,50,54,51,50,50,44,52,53,46,57,51,50,55,56,52,93,44,91,45,49,49,57,46,52,51,50,49,53,44,52,53,46,57,49,56,50,55,49,93,44,91,45,49,49,57,46,52,51,52,54,52,44,52,53,46,54,48,50,57,56,53,93,44,91,45,49,49,57,46,50,52,56,53,52,55,44,52,53,46,54,48,49,57,51,53,93,44,91,45,49,49,57,46,49,52,53,49,52,52,44,52,53,46,53,49,53,57,48,57,93,44,91,45,49,49,57,46,49,52,54,52,50,52,44,52,53,46,48,56,50,57,52,93,44,91,45,49,49,57,46,49,54,50,57,54,54,44,52,52,46,57,57,54,50,52,49,93,44,91,45,49,49,56,46,53,49,56,54,56,57,44,52,52,46,57,57,53,56,55,55,93,44,91,45,49,49,56,46,53,52,54,54,51,50,44,52,53,46,49,57,54,56,57,56,93,44,91,45,49,49,56,46,54,53,53,57,57,50,44,52,53,46,49,57,54,57,50,56,93,44,91,45,49,49,56,46,54,57,55,55,54,54,44,52,53,46,51,52,53,54,52,55,93,44,91,45,49,49,56,46,52,50,56,51,50,57,44,52,53,46,51,53,53,49,57,93,44,91,45,49,49,56,46,52,50,56,53,51,57,44,52,53,46,52,50,57,48,55,54,93,44,91,45,49,49,56,46,49,57,55,56,55,54,44,52,53,46,52,50,55,50,48,52,93,44,91,45,49,49,56,46,49,49,54,52,54,49,44,52,53,46,52,55,48,55,51,50,93,44,91,45,49,49,56,46,49,49,55,49,57,52,44,52,53,46,54,56,56,54,48,55,93,44,91,45,49,49,55,46,57,55,50,57,56,44,52,53,46,56,54,48,53,57,53,93,44,91,45,49,49,55,46,57,55,55,54,54,52,44,52,54,46,48,48,48,53,50,50,93,44,91,45,49,49,55,46,57,57,54,57,55,44,52,54,46,48,48,48,53,54,93,44,91,45,49,49,56,46,57,56,55,50,53,56,44,52,53,46,57,57,57,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,48,50,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,50,34,44,34,78,65,77,69,34,58,34,79,103,108,97,108,97,32,76,97,107,111,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,51,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,49,51,57,49,53,56,44,52,51,46,55,48,48,57,52,56,93,44,91,45,49,48,50,46,49,55,53,50,51,49,44,52,51,46,54,56,55,55,53,54,93,44,91,45,49,48,50,46,56,48,57,51,57,56,44,52,51,46,54,56,55,53,54,93,44,91,45,49,48,51,46,48,48,49,48,49,55,44,52,51,46,54,48,53,56,49,54,93,44,91,45,49,48,51,46,48,48,48,57,49,51,44,52,51,46,52,55,54,56,52,56,93,44,91,45,49,48,51,46,48,48,48,54,48,57,44,52,51,46,48,48,48,55,53,49,93,44,91,45,49,48,50,46,55,57,50,49,49,49,44,52,50,46,57,57,57,57,56,93,44,91,45,49,48,50,46,48,56,50,53,52,54,44,52,50,46,57,57,57,51,53,54,93,44,91,45,49,48,50,46,48,56,50,52,56,54,44,52,50,46,57,57,57,51,53,53,93,44,91,45,49,48,50,46,49,48,56,56,57,50,44,52,51,46,49,50,57,50,53,56,93,44,91,45,49,48,50,46,49,49,48,56,49,57,44,52,51,46,51,56,57,57,48,50,93,44,91,45,49,48,50,46,49,51,57,48,53,49,44,52,51,46,52,55,54,54,55,54,93,44,91,45,49,48,50,46,49,51,57,49,53,56,44,52,51,46,55,48,48,57,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,57,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,48,53,55,54,56,44,52,48,46,48,48,49,52,57,53,93,44,91,45,57,54,46,56,48,54,53,52,52,44,51,57,46,53,54,54,52,50,51,93,44,91,45,57,54,46,53,56,48,51,54,50,44,51,57,46,53,54,54,51,51,50,93,44,91,45,57,54,46,50,51,56,57,54,57,44,51,57,46,53,54,54,50,50,93,44,91,45,57,54,46,50,51,57,50,44,52,48,46,48,48,48,56,56,49,93,44,91,45,57,54,46,52,54,51,55,49,50,44,52,48,46,48,48,49,48,50,51,93,44,91,45,57,54,46,56,48,53,55,54,56,44,52,48,46,48,48,49,52,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,55,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,53,55,54,52,51,44,51,50,46,53,51,55,56,48,55,93,44,91,45,57,49,46,52,55,54,55,51,57,44,51,50,46,52,48,53,56,48,56,93,44,91,45,57,49,46,53,52,51,48,50,49,44,51,50,46,50,53,57,48,48,54,93,44,91,45,57,49,46,52,57,50,55,49,56,44,51,50,46,50,48,51,51,52,57,93,44,91,45,57,49,46,49,50,52,48,52,51,44,51,50,46,50,49,49,49,48,52,93,44,91,45,57,48,46,57,56,51,51,56,49,44,51,50,46,50,49,49,55,54,55,93,44,91,45,57,48,46,57,56,54,54,55,50,44,51,50,46,51,53,49,55,54,93,44,91,45,57,49,46,49,49,54,55,48,56,44,51,50,46,53,48,48,49,51,56,93,44,91,45,57,49,46,48,54,57,55,57,50,44,51,50,46,53,54,50,56,48,51,93,44,91,45,57,49,46,49,51,51,55,49,51,44,51,50,46,53,51,55,57,49,50,93,44,91,45,57,49,46,52,53,55,54,52,51,44,51,50,46,53,51,55,56,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,86,97,108,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,51,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,49,49,50,48,53,56,44,52,56,46,57,57,57,52,54,93,44,91,45,49,48,55,46,49,55,57,56,49,50,44,52,57,46,48,48,48,49,48,51,93,44,91,45,49,48,55,46,50,48,54,48,51,50,44,52,56,46,57,49,50,55,49,93,44,91,45,49,48,55,46,50,48,54,51,49,54,44,52,56,46,53,54,56,49,55,93,44,91,45,49,48,55,46,51,48,49,55,50,49,44,52,56,46,52,56,48,57,52,51,93,44,91,45,49,48,55,46,50,54,48,52,53,56,44,52,56,46,51,48,52,55,54,56,93,44,91,45,49,48,55,46,52,48,52,53,49,51,44,52,56,46,50,49,56,52,52,93,44,91,45,49,48,55,46,52,49,52,56,56,54,44,52,55,46,54,57,49,55,51,52,93,44,91,45,49,48,55,46,50,52,57,44,52,55,46,54,54,49,53,54,54,93,44,91,45,49,48,54,46,56,56,49,49,54,50,44,52,55,46,54,55,56,49,50,56,93,44,91,45,49,48,54,46,56,54,49,54,54,56,44,52,55,46,55,51,55,51,55,50,93,44,91,45,49,48,54,46,53,55,49,48,48,51,44,52,55,46,56,49,50,57,51,51,93,44,91,45,49,48,54,46,52,49,56,54,50,44,52,55,46,57,53,55,52,53,55,93,44,91,45,49,48,54,46,51,57,52,49,54,51,44,52,56,46,48,54,52,55,50,54,93,44,91,45,49,48,54,46,50,50,57,51,48,50,44,52,56,46,48,50,54,52,49,54,93,44,91,45,49,48,53,46,56,52,51,56,57,49,44,52,56,46,48,49,48,50,56,57,93,44,91,45,49,48,53,46,56,48,52,53,57,57,44,52,56,46,50,49,57,48,51,55,93,44,91,45,49,48,53,46,56,48,52,52,51,54,44,52,56,46,53,54,51,51,53,56,93,44,91,45,49,48,54,46,48,49,57,56,50,44,52,56,46,53,54,51,50,50,49,93,44,91,45,49,48,54,46,48,50,49,50,53,49,44,52,56,46,56,50,51,57,55,53,93,44,91,45,49,48,54,46,49,53,49,57,48,56,44,52,56,46,56,50,51,57,50,55,93,44,91,45,49,48,54,46,49,49,50,48,53,56,44,52,56,46,57,57,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,51,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,51,34,44,34,78,65,77,69,34,58,34,87,104,105,116,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,56,52,57,44,34,98,101,100,115,34,58,50,56,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,55,57,56,54,44,51,52,46,57,56,55,54,52,55,93,44,91,45,56,53,46,48,54,49,54,52,56,44,51,52,46,56,49,57,52,55,56,93,44,91,45,56,53,46,49,52,52,55,56,57,44,51,52,46,55,54,55,54,51,57,93,44,91,45,56,53,46,48,53,48,56,52,55,44,51,52,46,55,49,57,57,56,93,44,91,45,56,53,46,48,53,48,52,52,54,44,51,52,46,54,50,50,52,56,50,93,44,91,45,56,52,46,57,49,51,52,53,54,44,51,52,46,54,51,52,49,50,56,93,44,91,45,56,52,46,57,50,52,57,48,57,44,51,52,46,55,49,53,57,55,49,93,44,91,45,56,52,46,56,49,56,55,49,53,44,51,52,46,56,55,54,57,53,93,44,91,45,56,52,46,56,49,48,52,55,55,44,51,52,46,57,56,55,54,48,53,93,44,91,45,56,52,46,57,55,54,57,55,54,44,51,52,46,57,56,55,54,54,52,93,44,91,45,56,52,46,57,55,57,56,54,44,51,52,46,57,56,55,54,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,50,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,51,34,44,34,78,65,77,69,34,58,34,87,105,99,104,105,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,54,55,48,57,52,44,51,56,46,54,57,57,54,54,57,93,44,91,45,49,48,49,46,53,54,55,52,56,50,44,51,56,46,50,54,51,49,52,53,93,44,91,45,49,48,49,46,53,52,50,51,49,50,44,51,56,46,50,54,51,50,48,55,93,44,91,45,49,48,49,46,49,50,53,52,51,56,44,51,56,46,50,54,52,53,48,57,93,44,91,45,49,48,49,46,49,50,56,51,55,57,44,51,56,46,55,48,48,54,48,51,93,44,91,45,49,48,49,46,52,56,52,51,56,51,44,51,56,46,55,48,48,49,54,54,93,44,91,45,49,48,49,46,53,54,55,48,57,52,44,51,56,46,54,57,57,54,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,101,115,32,77,105,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,52,52,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,57,55,57,57,56,44,52,51,46,52,57,57,54,54,57,93,44,91,45,57,57,46,49,53,50,56,56,57,44,52,51,46,52,50,54,57,48,56,93,44,91,45,57,57,46,48,54,57,50,56,53,44,52,51,46,51,50,48,54,56,56,93,44,91,45,57,56,46,56,57,54,55,56,51,44,52,51,46,50,52,54,57,48,57,93,44,91,45,57,56,46,56,54,56,55,54,50,44,52,51,46,49,54,50,48,48,57,93,44,91,45,57,56,46,52,57,56,53,53,44,52,50,46,57,57,56,53,53,57,93,44,91,45,57,56,46,51,48,57,55,55,49,44,52,50,46,56,56,50,54,48,53,93,44,91,45,57,56,46,49,53,51,49,48,55,44,52,50,46,56,51,56,57,56,54,93,44,91,45,57,56,46,48,57,50,55,56,50,44,52,50,46,57,55,51,57,50,49,93,44,91,45,57,56,46,48,55,55,49,48,56,44,52,51,46,49,54,56,51,51,93,44,91,45,57,56,46,49,48,57,52,57,50,44,52,51,46,49,57,54,56,51,56,93,44,91,45,57,56,46,54,56,48,54,56,56,44,52,51,46,51,55,51,49,53,55,93,44,91,45,57,56,46,55,48,53,55,56,50,44,52,51,46,52,57,57,51,49,57,93,44,91,45,57,56,46,55,57,52,53,56,56,44,52,51,46,52,57,57,49,56,55,93,44,91,45,57,57,46,50,57,55,56,56,50,44,52,51,46,52,57,57,56,53,54,93,44,91,45,57,57,46,50,57,55,57,57,56,44,52,51,46,52,57,57,54,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,101,100,97,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,50,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,56,52,57,50,49,44,52,50,46,56,53,48,51,54,56,93,44,91,45,57,55,46,52,56,53,50,57,56,44,52,50,46,52,51,56,53,55,56,93,44,91,45,57,55,46,51,54,55,55,50,52,44,52,50,46,51,53,49,56,54,49,93,44,91,45,57,55,46,48,49,55,55,56,57,44,52,50,46,51,53,49,51,52,55,93,44,91,45,57,55,46,48,49,53,56,52,57,44,52,50,46,55,54,49,51,51,56,93,44,91,45,57,55,46,49,54,48,51,53,51,44,52,50,46,55,57,57,55,48,49,93,44,91,45,57,55,46,50,49,56,48,52,54,44,52,50,46,56,52,53,49,49,51,93,44,91,45,57,55,46,52,56,52,57,50,49,44,52,50,46,56,53,48,51,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,75,105,116,115,97,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,50,52,55,53,44,34,98,101,100,115,34,58,51,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,54,48,54,55,54,44,52,55,46,57,55,50,57,53,51,93,44,91,45,49,50,50,46,53,57,57,51,54,52,44,52,55,46,56,55,52,56,49,53,93,44,91,45,49,50,50,46,55,50,49,57,55,49,44,52,55,46,55,56,55,54,54,53,93,44,91,45,49,50,50,46,55,56,51,50,51,55,44,52,55,46,54,55,50,55,53,52,93,44,91,45,49,50,50,46,57,53,48,54,50,49,44,52,55,46,54,48,54,51,48,56,93,44,91,45,49,50,51,46,48,51,56,52,48,52,44,52,55,46,53,50,48,50,51,54,93,44,91,45,49,50,50,46,56,48,49,48,49,50,44,52,55,46,53,50,48,52,48,54,93,44,91,45,49,50,50,46,56,48,49,49,57,57,44,52,55,46,52,48,51,53,55,56,93,44,91,45,49,50,50,46,53,51,54,57,57,51,44,52,55,46,52,48,51,51,53,53,93,44,91,45,49,50,50,46,52,52,55,48,49,55,44,52,55,46,53,52,48,48,52,52,93,44,91,45,49,50,50,46,52,51,56,48,57,51,44,52,55,46,55,55,55,56,49,52,93,44,91,45,49,50,50,46,52,50,57,54,50,53,44,52,55,46,56,50,56,48,57,56,93,44,91,45,49,50,50,46,54,48,54,55,54,44,52,55,46,57,55,50,57,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,77,99,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,55,55,56,57,44,34,98,101,100,115,34,58,52,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,57,57,51,56,57,44,52,50,46,52,57,53,49,51,51,93,44,91,45,56,56,46,51,48,52,54,57,50,44,52,50,46,52,57,52,54,49,56,93,44,91,45,56,56,46,55,48,55,52,50,49,44,52,50,46,52,57,51,53,57,54,93,44,91,45,56,56,46,55,48,53,53,56,53,44,52,50,46,49,53,51,53,51,55,93,44,91,45,56,56,46,53,56,56,54,53,55,44,52,50,46,49,53,51,53,57,93,44,91,45,56,56,46,50,51,56,52,52,57,44,52,50,46,49,53,52,50,52,57,93,44,91,45,56,56,46,49,57,57,53,56,52,44,52,50,46,49,53,52,50,54,93,44,91,45,56,56,46,49,57,57,51,56,57,44,52,50,46,52,57,53,49,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,80,101,116,114,111,108,101,117,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,51,49,51,48,52,56,44,52,55,46,53,56,51,54,53,93,44,91,45,49,48,56,46,51,49,53,52,56,49,44,52,55,46,51,49,53,49,53,50,93,44,91,45,49,48,56,46,53,57,48,56,51,53,44,52,55,46,51,48,54,53,49,54,93,44,91,45,49,48,56,46,55,49,57,49,56,57,44,52,55,46,50,55,48,51,52,50,93,44,91,45,49,48,56,46,55,51,54,56,51,56,44,52,55,46,48,57,56,50,49,56,93,44,91,45,49,48,56,46,54,48,56,57,53,52,44,52,55,46,48,57,56,49,50,54,93,44,91,45,49,48,56,46,54,51,49,52,54,50,44,52,54,46,55,52,57,51,57,50,93,44,91,45,49,48,55,46,56,50,55,54,56,55,44,52,54,46,55,53,53,56,55,53,93,44,91,45,49,48,55,46,56,57,50,50,51,51,44,52,54,46,56,53,49,50,49,53,93,44,91,45,49,48,55,46,56,56,52,55,49,56,44,52,54,46,57,56,52,50,52,57,93,44,91,45,49,48,55,46,57,53,52,51,52,55,44,52,55,46,49,50,48,54,53,50,93,44,91,45,49,48,55,46,57,53,54,54,50,52,44,52,55,46,51,54,48,57,52,51,93,44,91,45,49,48,55,46,57,48,57,49,50,44,52,55,46,52,53,48,54,57,50,93,44,91,45,49,48,55,46,57,51,49,49,48,53,44,52,55,46,53,54,57,48,55,51,93,44,91,45,49,48,56,46,48,54,53,52,49,56,44,52,55,46,53,57,56,50,57,52,93,44,91,45,49,48,56,46,51,49,51,48,52,56,44,52,55,46,53,56,51,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,50,55,56,48,57,56,44,51,57,46,54,49,53,54,51,50,93,44,91,45,57,51,46,55,53,56,51,53,55,44,51,57,46,54,49,49,52,48,55,93,44,91,45,57,51,46,55,53,57,49,56,51,44,51,57,46,53,50,52,53,53,56,93,44,91,45,57,51,46,55,53,56,52,54,51,44,51,57,46,50,48,55,48,50,49,93,44,91,45,57,51,46,54,53,48,53,50,54,44,51,57,46,50,52,56,50,49,52,93,44,91,45,57,51,46,52,56,55,56,56,53,44,51,57,46,50,50,56,56,55,53,93,44,91,45,57,51,46,52,55,55,50,51,51,44,51,57,46,50,57,50,55,57,54,93,44,91,45,57,51,46,50,50,49,50,48,52,44,51,57,46,51,51,49,54,53,54,93,44,91,45,57,51,46,49,48,52,52,56,53,44,51,57,46,51,56,51,54,53,54,93,44,91,45,57,51,46,50,55,53,57,51,50,44,51,57,46,52,56,52,51,55,49,93,44,91,45,57,51,46,50,55,56,48,57,56,44,51,57,46,54,49,53,54,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,87,104,105,116,109,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,53,57,51,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,57,54,48,57,51,44,52,55,46,50,54,48,53,54,56,93,44,91,45,49,49,55,46,57,53,57,51,51,53,44,52,54,46,57,49,52,56,49,49,93,44,91,45,49,49,56,46,48,49,50,52,52,50,44,52,54,46,55,57,48,55,56,93,44,91,45,49,49,56,46,50,49,48,50,52,51,44,52,54,46,55,51,56,56,51,51,93,44,91,45,49,49,56,46,50,49,53,54,54,44,52,54,46,53,56,56,57,50,52,93,44,91,45,49,49,56,46,49,55,50,53,53,50,44,52,54,46,53,53,54,57,52,55,93,44,91,45,49,49,55,46,56,53,49,56,53,44,52,54,46,54,50,52,54,55,93,44,91,45,49,49,55,46,55,52,48,56,54,56,44,52,54,46,54,57,52,53,56,51,93,44,91,45,49,49,55,46,52,54,52,55,54,57,44,52,54,46,54,57,57,54,50,54,93,44,91,45,49,49,55,46,50,53,52,50,54,50,44,52,54,46,53,52,53,48,56,50,93,44,91,45,49,49,55,46,50,50,56,49,50,44,52,54,46,52,54,50,50,52,53,93,44,91,45,49,49,55,46,48,51,57,55,54,54,44,52,54,46,52,50,53,56,56,55,93,44,91,45,49,49,55,46,48,51,57,54,57,52,44,52,54,46,53,52,49,55,48,57,93,44,91,45,49,49,55,46,48,51,57,55,53,50,44,52,55,46,49,50,55,50,54,57,93,44,91,45,49,49,55,46,48,51,57,56,55,56,44,52,55,46,50,53,57,50,55,50,93,44,91,45,49,49,55,46,56,50,51,54,50,57,44,52,55,46,50,54,48,50,50,93,44,91,45,49,49,55,46,57,54,48,57,51,44,52,55,46,50,54,48,53,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,83,116,101,101,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,55,54,44,34,98,101,100,115,34,58,52,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,52,53,57,49,44,52,52,46,49,57,54,55,49,54,93,44,91,45,57,51,46,52,48,54,53,54,53,44,52,52,46,49,57,54,51,55,55,93,44,91,45,57,51,46,52,48,54,54,52,50,44,52,51,46,56,52,56,49,50,93,44,91,45,57,51,46,48,52,57,53,50,52,44,52,51,46,56,52,56,52,52,51,93,44,91,45,57,51,46,48,52,53,57,54,54,44,52,51,46,56,52,56,52,54,55,93,44,91,45,57,51,46,48,52,53,57,49,44,52,52,46,49,57,54,55,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,84,104,97,121,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,57,56,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,44,91,45,57,55,46,56,50,48,56,49,54,44,52,48,46,51,53,48,53,52,53,93,44,91,45,57,55,46,56,50,49,52,57,53,44,52,48,46,48,48,50,48,52,55,93,44,91,45,57,55,46,51,54,57,49,57,57,44,52,48,46,48,48,49,57,54,54,93,44,91,45,57,55,46,51,54,56,54,56,56,44,52,48,46,51,53,48,51,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,114,111,99,107,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,57,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,51,53,54,48,51,51,44,51,53,46,56,49,55,54,51,53,93,44,91,45,56,57,46,50,55,49,50,50,52,44,51,53,46,55,53,52,57,50,50,93,44,91,45,56,57,46,48,54,57,53,52,52,44,51,53,46,54,57,50,54,55,57,93,44,91,45,56,56,46,57,49,54,49,56,49,44,51,53,46,55,57,55,51,48,55,93,44,91,45,56,57,46,49,48,57,54,48,50,44,51,53,46,56,54,50,48,57,53,93,44,91,45,56,57,46,49,56,56,56,52,52,44,51,53,46,57,57,57,55,54,93,44,91,45,56,57,46,50,56,48,49,56,56,44,51,53,46,56,56,54,52,49,54,93,44,91,45,56,57,46,51,52,50,56,50,57,44,51,53,46,56,56,48,57,51,52,93,44,91,45,56,57,46,51,53,54,48,51,51,44,51,53,46,56,49,55,54,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,55,49,53,56,51,44,52,50,46,53,53,56,49,51,57,93,44,91,45,57,51,46,57,51,49,54,56,52,44,52,50,46,52,55,50,48,49,49,93,44,91,45,57,51,46,57,51,49,53,56,44,52,50,46,50,48,57,57,48,56,93,44,91,45,57,51,46,54,57,56,51,57,44,52,50,46,50,48,57,51,51,57,93,44,91,45,57,51,46,52,54,51,48,52,51,44,52,50,46,50,48,57,51,48,50,93,44,91,45,57,51,46,52,54,50,54,51,53,44,52,50,46,52,55,48,56,48,50,93,44,91,45,57,51,46,52,57,57,52,56,53,44,52,50,46,53,53,55,55,93,44,91,45,57,51,46,57,55,49,53,56,51,44,52,50,46,53,53,56,49,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,53,54,52,44,34,98,101,100,115,34,58,51,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,53,50,51,50,44,51,57,46,53,56,57,52,57,51,93,44,91,45,56,52,46,51,51,50,48,56,57,44,51,57,46,53,52,56,56,48,51,93,44,91,45,56,52,46,51,53,51,50,48,57,44,51,57,46,50,57,50,50,56,55,93,44,91,45,56,52,46,50,53,57,52,51,49,44,51,57,46,50,55,48,55,57,54,93,44,91,45,56,52,46,48,48,54,55,56,50,44,51,57,46,50,53,53,48,54,56,93,44,91,45,56,51,46,57,55,55,48,48,53,44,51,57,46,53,54,57,49,54,57,93,44,91,45,56,52,46,49,49,52,49,57,53,44,51,57,46,53,55,55,57,56,51,93,44,91,45,56,52,46,51,54,53,50,51,50,44,51,57,46,53,56,57,52,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,53,53,34,44,34,78,65,77,69,34,58,34,83,112,97,108,100,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,55,49,57,44,34,98,101,100,115,34,58,49,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,52,56,49,56,53,44,51,51,46,49,56,57,48,49,57,93,44,91,45,56,52,46,49,50,51,55,54,55,44,51,51,46,50,48,50,56,50,52,93,44,91,45,56,52,46,49,48,50,53,56,50,44,51,51,46,50,57,56,49,57,49,93,44,91,45,56,52,46,49,53,48,53,56,49,44,51,51,46,51,51,53,54,51,57,93,44,91,45,56,52,46,51,53,52,52,44,51,51,46,51,53,50,53,49,52,93,44,91,45,56,52,46,51,56,56,49,49,56,44,51,51,46,51,53,50,52,54,53,93,44,91,45,56,52,46,52,57,55,53,50,55,44,51,51,46,50,53,55,52,50,50,93,44,91,45,56,52,46,53,48,50,51,53,50,44,51,51,46,50,50,49,48,53,53,93,44,91,45,56,52,46,52,57,54,55,56,51,44,51,51,46,49,56,51,56,54,54,93,44,91,45,56,52,46,50,52,56,49,56,53,44,51,51,46,49,56,57,48,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,72,117,110,116,101,114,100,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,48,53,49,44,34,98,101,100,115,34,58,49,56,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,56,56,57,56,49,57,44,52,48,46,55,56,55,55,50,57,93,44,91,45,55,52,46,57,55,48,49,49,50,44,52,48,46,55,48,57,56,54,50,93,44,91,45,55,53,46,49,56,57,54,44,52,48,46,53,57,49,55,55,54,93,44,91,45,55,53,46,48,54,56,49,44,52,48,46,53,52,49,52,56,56,93,44,91,45,55,53,46,48,54,48,57,49,55,44,52,48,46,52,50,49,55,51,55,93,44,91,45,55,52,46,57,52,50,57,48,57,44,52,48,46,51,52,49,54,56,51,93,44,91,45,55,52,46,55,52,56,49,52,55,44,52,48,46,52,50,52,49,53,54,93,44,91,45,55,52,46,55,55,53,57,55,57,44,52,48,46,53,48,51,54,48,54,93,44,91,45,55,52,46,55,49,51,49,53,44,52,48,46,53,56,51,57,48,51,93,44,91,45,55,52,46,55,50,53,54,54,54,44,52,48,46,55,49,57,53,51,50,93,44,91,45,55,52,46,56,56,57,56,49,57,44,52,48,46,55,56,55,55,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,50,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,55,34,44,34,78,65,77,69,34,58,34,86,101,114,110,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,57,49,44,34,98,101,100,115,34,58,49,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,53,56,50,56,53,44,51,56,46,48,51,54,54,50,55,93,44,91,45,57,52,46,54,49,52,48,54,49,44,51,56,46,48,54,48,48,53,54,93,44,91,45,57,52,46,54,49,52,48,56,57,44,51,56,46,48,51,55,48,53,55,93,44,91,45,57,52,46,54,49,55,55,55,57,44,51,55,46,54,55,51,49,48,53,93,44,91,45,57,52,46,54,49,55,54,57,56,44,51,55,46,54,53,51,53,55,56,93,44,91,45,57,52,46,48,55,51,53,50,52,44,51,55,46,54,51,57,55,50,50,93,44,91,45,57,52,46,48,54,53,54,55,53,44,51,55,46,57,48,48,57,56,55,93,44,91,45,57,52,46,48,53,56,50,56,53,44,51,56,46,48,51,54,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,80,97,114,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,57,57,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,52,50,48,50,50,49,44,51,57,46,57,53,50,52,53,50,93,44,91,45,56,55,46,51,54,56,56,54,51,44,51,57,46,56,57,48,52,55,49,93,44,91,45,56,55,46,51,56,50,52,49,56,44,51,57,46,54,48,55,57,51,55,93,44,91,45,56,55,46,49,57,57,48,49,50,44,51,57,46,54,48,55,49,51,55,93,44,91,45,56,55,46,48,49,51,48,54,50,44,51,57,46,54,48,52,55,56,55,93,44,91,45,56,55,46,48,48,57,52,55,55,44,51,57,46,56,54,54,55,48,53,93,44,91,45,56,55,46,48,57,49,48,48,54,44,51,57,46,57,53,51,48,48,57,93,44,91,45,56,55,46,52,50,48,50,50,49,44,51,57,46,57,53,50,52,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,52,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,44,91,45,57,51,46,52,57,56,54,49,55,44,52,50,46,57,48,56,53,49,50,93,44,91,45,57,51,46,52,57,57,52,56,53,44,52,50,46,53,53,55,55,93,44,91,45,57,51,46,48,50,55,44,52,50,46,53,53,54,56,49,93,44,91,45,57,51,46,48,50,53,49,52,52,44,52,50,46,57,48,55,53,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,66,117,116,116,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,55,53,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,50,51,57,49,51,44,51,51,46,52,52,52,49,57,52,93,44,91,45,56,52,46,49,48,50,53,56,50,44,51,51,46,50,57,56,49,57,49,93,44,91,45,56,52,46,49,50,51,55,54,55,44,51,51,46,50,48,50,56,50,52,93,44,91,45,56,52,46,48,52,49,52,57,56,44,51,51,46,50,48,50,54,50,57,93,44,91,45,56,51,46,56,50,50,50,54,49,44,51,51,46,49,56,48,50,51,56,93,44,91,45,56,51,46,56,54,51,48,53,56,44,51,51,46,51,54,56,50,55,56,93,44,91,45,56,51,46,57,50,51,57,49,51,44,51,51,46,52,52,52,49,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,69,108,98,101,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,49,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,55,49,52,51,53,53,44,51,57,46,53,54,54,51,51,49,93,44,91,45,49,48,52,46,54,54,48,54,50,54,44,51,57,46,53,54,53,57,48,57,93,44,91,45,49,48,52,46,54,54,50,56,57,54,44,51,57,46,49,50,57,53,50,55,93,44,91,45,49,48,52,46,48,53,49,53,56,57,44,51,57,46,49,50,56,51,55,93,44,91,45,49,48,52,46,48,53,53,53,50,56,44,51,56,46,56,54,56,56,54,56,93,44,91,45,49,48,51,46,55,49,57,54,54,52,44,51,56,46,56,54,54,56,50,55,93,44,91,45,49,48,51,46,55,49,52,51,53,53,44,51,57,46,53,54,54,51,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,52,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,114,105,115,116,111,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,82,104,111,100,101,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,82,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,57,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,51,51,48,57,55,44,52,49,46,54,56,54,57,54,50,93,44,91,45,55,49,46,50,48,56,51,55,49,44,52,49,46,54,57,48,53,57,56,93,44,91,45,55,49,46,51,49,55,56,55,51,44,52,49,46,55,55,54,49,57,57,93,44,91,45,55,49,46,51,54,53,50,48,55,44,52,49,46,55,51,53,54,52,57,93,44,91,45,55,49,46,51,51,48,57,55,44,52,49,46,54,56,54,57,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,66,111,115,113,117,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,49,50,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,54,49,53,48,53,53,44,51,50,46,50,48,51,53,56,49,93,44,91,45,57,55,46,56,54,52,56,54,52,44,51,50,46,48,56,55,51,50,56,93,44,91,45,57,56,46,48,48,53,52,54,50,44,51,50,46,48,49,55,56,57,55,93,44,91,45,57,55,46,55,54,54,52,51,49,44,51,49,46,54,55,50,52,54,49,93,44,91,45,57,55,46,54,56,57,56,51,52,44,51,49,46,55,49,49,48,49,57,93,44,91,45,57,55,46,54,48,53,50,51,44,51,49,46,53,56,55,55,54,50,93,44,91,45,57,55,46,50,55,55,50,54,53,44,51,49,46,55,52,53,52,57,50,93,44,91,45,57,55,46,51,50,55,49,52,53,44,51,49,46,56,52,49,52,53,50,93,44,91,45,57,55,46,52,56,53,57,54,56,44,51,50,46,48,49,55,54,49,49,93,44,91,45,57,55,46,52,55,54,48,56,54,44,51,50,46,49,55,51,52,54,93,44,91,45,57,55,46,54,49,53,48,53,53,44,51,50,46,50,48,51,53,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,52,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,78,101,119,112,111,114,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,82,104,111,100,101,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,82,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,48,55,53,44,34,98,101,100,115,34,58,49,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,51,56,48,53,52,50,44,52,49,46,54,53,48,51,50,54,93,44,91,45,55,49,46,52,48,57,48,57,57,44,52,49,46,52,54,56,50,48,50,93,44,91,45,55,49,46,53,48,57,52,52,50,44,52,49,46,51,48,55,55,51,50,93,44,91,45,55,49,46,48,56,56,53,55,49,44,52,49,46,52,51,49,51,49,53,93,44,91,45,55,49,46,49,51,50,53,53,55,44,52,49,46,54,54,48,51,54,51,93,44,91,45,55,49,46,50,48,56,51,55,49,44,52,49,46,54,57,48,53,57,56,93,44,91,45,55,49,46,51,51,48,57,55,44,52,49,46,54,56,54,57,54,50,93,44,91,45,55,49,46,51,56,48,53,52,50,44,52,49,46,54,53,48,51,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,70,97,105,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,50,57,49,48,44,34,98,101,100,115,34,58,50,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,56,50,52,57,53,44,51,57,46,57,51,57,54,54,50,93,44,91,45,56,50,46,56,50,52,50,53,52,44,51,57,46,55,57,52,57,57,54,93,44,91,45,56,50,46,56,52,50,57,53,51,44,51,57,46,53,54,49,52,56,93,44,91,45,56,50,46,55,51,49,53,49,56,44,51,57,46,53,53,52,52,52,53,93,44,91,45,56,50,46,52,57,54,49,50,51,44,51,57,46,54,48,50,56,52,57,93,44,91,45,56,50,46,51,55,52,53,51,49,44,51,57,46,54,53,52,57,53,57,93,44,91,45,56,50,46,51,57,54,53,57,52,44,51,57,46,56,51,51,48,53,55,93,44,91,45,56,50,46,52,54,50,56,49,51,44,51,57,46,57,51,48,51,56,93,44,91,45,56,50,46,55,56,50,52,57,53,44,51,57,46,57,51,57,54,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,80,105,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,55,54,54,49,57,44,52,56,46,53,52,52,56,49,51,93,44,91,45,49,48,48,46,50,51,55,48,57,57,44,52,56,46,51,55,49,50,52,52,93,44,91,45,49,48,48,46,50,51,55,48,50,50,44,52,56,46,48,50,49,56,54,54,93,44,91,45,49,48,48,46,49,57,55,57,57,54,44,52,55,46,56,52,55,54,53,50,93,44,91,45,49,48,48,46,48,54,57,51,49,49,44,52,55,46,56,52,55,52,51,49,93,44,91,45,57,57,46,56,49,50,49,54,55,44,52,55,46,56,52,55,50,53,55,93,44,91,45,57,57,46,56,52,56,50,50,50,44,52,56,46,48,50,49,52,50,52,93,44,91,45,57,57,46,56,52,55,48,52,54,44,52,56,46,51,55,49,50,93,44,91,45,57,57,46,52,57,50,57,49,57,44,52,56,46,51,55,48,57,52,54,93,44,91,45,57,57,46,52,57,51,49,56,57,44,52,56,46,53,52,52,56,51,52,93,44,91,45,49,48,48,46,49,52,53,56,53,56,44,52,56,46,53,52,53,50,49,49,93,44,91,45,49,48,48,46,50,55,54,54,49,57,44,52,56,46,53,52,52,56,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,97,114,114,111,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,53,54,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,55,51,57,53,44,52,50,46,49,57,51,54,52,53,93,44,91,45,57,48,46,49,54,50,56,57,53,44,52,50,46,49,49,54,55,49,56,93,44,91,45,57,48,46,49,53,52,50,50,49,44,52,50,46,48,51,51,48,55,51,93,44,91,45,57,48,46,49,53,49,57,56,44,52,49,46,57,50,56,57,49,55,93,44,91,45,56,57,46,54,56,53,51,54,54,44,52,49,46,57,51,48,51,52,93,44,91,45,56,57,46,54,56,56,52,56,54,44,52,50,46,49,57,57,49,49,50,93,44,91,45,56,57,46,57,49,57,55,55,50,44,52,50,46,49,57,54,56,56,49,93,44,91,45,57,48,46,51,49,55,51,57,53,44,52,50,46,49,57,51,54,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,82,101,100,32,76,97,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,56,50,53,53,44,52,55,46,57,54,51,53,57,53,93,44,91,45,57,54,46,52,56,50,48,57,50,44,52,55,46,56,52,55,52,50,56,93,44,91,45,57,54,46,51,53,49,55,50,55,44,52,55,46,55,54,48,51,93,44,91,45,57,53,46,56,51,55,49,55,55,44,52,55,46,55,54,48,56,57,52,93,44,91,45,57,53,46,56,51,54,56,50,55,44,52,55,46,56,52,56,50,49,57,93,44,91,45,57,53,46,55,48,57,54,49,57,44,52,55,46,57,51,53,56,48,53,93,44,91,45,57,53,46,55,48,57,56,52,44,52,55,46,57,54,52,51,51,93,44,91,45,57,54,46,52,56,50,53,53,44,52,55,46,57,54,51,53,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,49,46,56,52,51,49,51,56,44,52,52,46,51,57,50,54,51,93,44,91,45,49,50,49,46,49,48,55,53,51,52,44,52,52,46,51,57,48,54,93,44,91,45,49,50,48,46,57,56,56,56,50,52,44,52,52,46,52,55,54,52,56,52,93,44,91,45,49,50,48,46,56,50,54,56,57,57,44,52,52,46,52,55,54,52,57,57,93,44,91,45,49,50,48,46,56,50,55,53,53,53,44,52,52,46,53,54,50,55,57,51,93,44,91,45,49,50,48,46,51,56,54,53,54,49,44,52,52,46,53,54,52,48,48,57,93,44,91,45,49,50,48,46,51,55,49,52,52,49,44,52,52,46,56,50,49,55,54,57,93,44,91,45,49,50,49,46,48,56,57,52,56,44,52,52,46,56,50,51,50,55,50,93,44,91,45,49,50,49,46,55,53,50,57,57,52,44,52,52,46,56,50,57,57,49,57,93,44,91,45,49,50,49,46,56,48,48,48,49,53,44,52,52,46,54,56,51,52,50,53,93,44,91,45,49,50,49,46,56,52,51,49,51,56,44,52,52,46,51,57,50,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,101,97,116,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,57,50,57,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,50,56,54,53,48,49,44,51,54,46,51,50,49,57,51,51,93,44,91,45,56,55,46,49,53,54,53,56,57,44,51,54,46,51,48,55,55,48,54,93,44,91,45,56,55,46,49,56,50,53,55,51,44,51,54,46,48,52,57,55,50,54,93,44,91,45,56,55,46,48,53,51,55,50,50,44,51,54,46,48,52,53,53,56,50,93,44,91,45,56,54,46,57,57,55,55,48,53,44,51,54,46,49,50,56,53,49,50,93,44,91,45,56,54,46,57,49,51,50,51,51,44,51,54,46,51,56,50,54,50,49,93,44,91,45,56,54,46,57,56,56,48,54,44,51,54,46,51,54,57,49,53,52,93,44,91,45,56,55,46,49,50,48,52,52,51,44,51,54,46,52,53,53,52,54,93,44,91,45,56,55,46,50,56,54,53,48,49,44,51,54,46,51,50,49,57,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,55,55,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,48,53,54,56,50,44,52,51,46,48,56,51,54,55,93,44,91,45,57,54,46,56,48,54,50,49,51,44,52,50,46,55,48,52,49,53,52,93,44,91,45,57,54,46,54,51,49,52,57,50,44,52,50,46,53,50,52,51,49,56,93,44,91,45,57,54,46,52,52,53,52,56,51,44,52,50,46,52,57,48,54,51,93,44,91,45,57,54,46,52,57,56,55,55,54,44,52,50,46,53,54,49,48,52,51,93,44,91,45,57,54,46,54,51,53,53,54,49,44,52,50,46,55,52,48,56,52,55,93,44,91,45,57,54,46,53,51,56,52,53,56,44,52,50,46,57,48,56,55,55,49,93,44,91,45,57,54,46,53,49,51,54,56,49,44,52,51,46,48,52,55,48,51,93,44,91,45,57,54,46,52,53,52,49,51,44,52,51,46,48,56,51,51,56,93,44,91,45,57,54,46,56,48,53,54,56,50,44,52,51,46,48,56,51,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,69,108,109,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,50,49,50,44,34,98,101,100,115,34,58,49,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,55,52,57,55,52,44,51,50,46,55,53,51,53,56,93,44,91,45,56,54,46,52,49,51,49,49,54,44,51,50,46,55,48,55,51,56,54,93,44,91,45,56,54,46,52,49,49,49,55,50,44,51,50,46,52,48,57,57,51,55,93,44,91,45,56,54,46,50,51,55,48,54,56,44,51,50,46,52,57,52,57,56,93,44,91,45,56,54,46,49,49,54,51,50,57,44,51,50,46,52,49,55,48,50,54,93,44,91,45,56,54,46,48,50,51,48,49,50,44,51,50,46,52,49,57,57,55,56,93,44,91,45,56,53,46,56,56,54,49,52,56,44,51,50,46,52,57,51,48,53,51,93,44,91,45,56,53,46,56,55,57,56,54,44,51,50,46,55,53,52,53,50,56,93,44,91,45,56,54,46,48,48,55,49,56,55,44,51,50,46,55,53,52,57,56,52,93,44,91,45,56,54,46,51,55,52,57,55,52,44,51,50,46,55,53,51,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,76,117,109,112,107,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,57,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,56,53,54,53,48,54,44,51,52,46,55,50,50,49,57,49,93,44,91,45,56,51,46,57,51,57,48,48,55,44,51,52,46,55,52,48,56,53,57,93,44,91,45,56,52,46,48,51,54,50,55,54,44,51,52,46,54,52,50,48,56,55,93,44,91,45,56,52,46,49,53,56,48,51,53,44,51,52,46,54,52,56,50,52,51,93,44,91,45,56,52,46,49,56,56,53,53,55,44,51,52,46,54,48,50,54,57,50,93,44,91,45,56,52,46,49,57,49,48,52,44,51,52,46,53,51,57,49,56,49,93,44,91,45,56,51,46,57,56,48,54,52,57,44,51,52,46,52,49,56,51,56,57,93,44,91,45,56,51,46,56,52,51,52,48,53,44,51,52,46,53,48,53,52,57,52,93,44,91,45,56,51,46,56,53,54,53,48,54,44,51,52,46,55,50,50,49,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,50,49,53,44,34,98,101,100,115,34,58,49,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,50,51,54,48,57,44,52,48,46,53,52,57,56,55,57,93,44,91,45,56,50,46,54,52,54,53,48,51,44,52,48,46,51,52,53,48,55,54,93,44,91,45,56,50,46,55,52,52,57,51,49,44,52,48,46,51,52,57,54,48,51,93,44,91,45,56,50,46,55,53,48,55,52,55,44,52,48,46,50,55,54,57,57,54,93,44,91,45,56,50,46,52,55,55,50,55,51,44,52,48,46,50,52,53,56,49,93,44,91,45,56,50,46,49,57,53,57,49,49,44,52,48,46,50,51,57,48,55,49,93,44,91,45,56,50,46,49,56,52,54,48,55,44,52,48,46,52,53,54,50,56,93,44,91,45,56,50,46,50,50,48,49,49,44,52,48,46,53,54,56,50,48,54,93,44,91,45,56,50,46,51,51,54,57,54,50,44,52,48,46,53,53,53,48,48,49,93,44,91,45,56,50,46,54,50,51,54,48,57,44,52,48,46,53,52,57,56,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,66,114,101,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,55,56,50,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,53,53,52,50,49,49,44,52,50,46,57,48,55,49,49,50,93,44,91,45,57,50,46,53,53,52,52,57,50,44,52,50,46,54,52,50,51,49,52,93,44,91,45,57,50,46,48,56,49,54,54,49,44,52,50,46,54,52,50,48,53,54,93,44,91,45,57,50,46,48,56,49,53,54,56,44,52,50,46,57,48,55,48,49,51,93,44,91,45,57,50,46,53,53,52,50,49,49,44,52,50,46,57,48,55,49,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,71,111,108,105,97,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,51,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,51,48,53,57,49,54,44,50,56,46,56,54,52,48,51,55,93,44,91,45,57,55,46,52,49,55,51,52,44,50,56,46,57,50,53,50,50,56,93,44,91,45,57,55,46,53,55,52,54,51,57,44,50,56,46,56,49,51,51,93,44,91,45,57,55,46,55,55,56,53,51,44,50,56,46,54,54,56,48,50,55,93,44,91,45,57,55,46,54,57,54,57,52,53,44,50,56,46,53,52,49,56,53,54,93,44,91,45,57,55,46,53,55,55,48,53,56,44,50,56,46,53,50,50,53,52,55,93,44,91,45,57,55,46,53,53,51,57,49,54,44,50,56,46,52,53,53,50,55,56,93,44,91,45,57,55,46,51,55,53,53,55,57,44,50,56,46,51,56,56,54,56,52,93,44,91,45,57,55,46,49,54,48,55,53,49,44,50,56,46,53,53,51,52,55,53,93,44,91,45,57,55,46,49,53,56,57,51,51,44,50,56,46,55,55,54,49,53,54,93,44,91,45,57,55,46,50,48,52,57,57,56,44,50,56,46,56,53,53,48,52,93,44,91,45,57,55,46,51,48,53,57,49,54,44,50,56,46,56,54,52,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,72,101,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,51,54,50,53,44,34,98,101,100,115,34,58,51,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,50,54,53,55,57,53,44,51,53,46,52,54,55,56,49,56,93,44,91,45,56,50,46,51,51,50,51,51,49,44,51,53,46,53,48,48,49,49,55,93,44,91,45,56,50,46,52,55,48,53,53,55,44,51,53,46,52,52,53,49,55,52,93,44,91,45,56,50,46,55,52,53,49,51,57,44,51,53,46,52,50,50,57,54,55,93,44,91,45,56,50,46,54,49,48,49,56,54,44,51,53,46,50,56,56,49,57,57,93,44,91,45,56,50,46,53,55,52,56,51,57,44,51,53,46,49,52,53,52,52,57,93,44,91,45,56,50,46,51,53,51,55,53,52,44,51,53,46,49,57,48,57,54,55,93,44,91,45,56,50,46,51,52,54,49,52,49,44,51,53,46,50,56,53,57,57,50,93,44,91,45,56,50,46,50,54,49,51,48,53,44,51,53,46,51,57,51,49,57,56,93,44,91,45,56,50,46,50,54,53,55,57,53,44,51,53,46,52,54,55,56,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,73,110,100,105,97,110,32,82,105,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,57,56,52,44,34,98,101,100,115,34,58,52,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,54,55,57,56,50,49,44,50,55,46,53,53,56,52,55,93,44,91,45,56,48,46,50,54,51,53,52,51,44,50,55,46,53,53,54,55,56,50,93,44,91,45,56,48,46,51,56,53,48,54,57,44,50,55,46,56,54,49,51,54,50,93,44,91,45,56,48,46,53,48,57,48,55,53,44,50,55,46,56,50,50,48,53,56,93,44,91,45,56,48,46,56,54,56,56,56,49,44,50,55,46,56,50,50,53,50,50,93,44,91,45,56,48,46,56,55,51,49,53,44,50,55,46,54,52,50,50,56,56,93,44,91,45,56,48,46,55,55,55,49,54,54,44,50,55,46,53,53,56,55,51,51,93,44,91,45,56,48,46,54,55,57,56,50,49,44,50,55,46,53,53,56,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,57,51,34,44,34,78,65,77,69,34,58,34,82,111,98,101,114,116,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,48,56,53,55,51,53,44,51,54,46,48,53,53,50,55,54,93,44,91,45,49,48,49,46,48,56,54,48,54,56,44,51,53,46,54,50,53,50,54,55,93,44,91,45,49,48,49,46,48,56,53,57,51,53,44,51,53,46,54,49,57,49,48,50,93,44,91,45,49,48,48,46,53,52,48,49,53,56,44,51,53,46,54,49,57,50,57,54,93,44,91,45,49,48,48,46,53,52,48,50,50,49,44,51,54,46,48,53,54,52,57,49,93,44,91,45,49,48,48,46,53,52,54,55,50,52,44,51,54,46,48,53,54,53,51,54,93,44,91,45,49,48,49,46,48,56,53,55,49,54,44,51,54,46,48,53,55,53,55,50,93,44,91,45,49,48,49,46,48,56,53,55,51,53,44,51,54,46,48,53,53,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,68,101,117,101,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,57,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,49,48,52,49,51,44,52,49,46,50,50,49,54,49,52,93,44,91,45,49,48,50,46,54,50,49,48,51,51,44,52,49,46,48,48,50,53,57,55,93,44,91,45,49,48,50,46,48,53,49,55,49,55,44,52,49,46,48,48,50,51,53,57,93,44,91,45,49,48,50,46,48,53,49,55,54,49,44,52,49,46,48,48,51,56,57,93,44,91,45,49,48,50,46,48,53,53,53,51,53,44,52,49,46,50,50,49,53,52,55,93,44,91,45,49,48,50,46,54,49,48,52,49,51,44,52,49,46,50,50,49,54,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,76,105,118,105,110,103,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,57,48,55,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,57,48,57,56,51,50,44,52,50,46,57,56,55,55,54,50,93,44,91,45,55,55,46,57,53,52,57,54,52,44,52,50,46,56,54,50,55,53,52,93,44,91,45,55,55,46,57,53,54,51,51,52,44,52,50,46,54,54,55,51,50,50,93,44,91,45,55,56,46,48,51,56,50,54,49,44,52,50,46,53,50,49,53,50,50,93,44,91,45,55,55,46,56,52,48,57,48,49,44,52,50,46,53,49,55,55,54,55,93,44,91,45,55,55,46,55,50,50,57,54,52,44,52,50,46,52,55,49,50,49,54,93,44,91,45,55,55,46,54,53,57,57,49,55,44,52,50,46,53,56,48,52,48,57,93,44,91,45,55,55,46,52,57,48,56,56,57,44,52,50,46,53,55,55,50,56,56,93,44,91,45,55,55,46,53,57,56,56,49,53,44,52,50,46,54,55,49,57,54,53,93,44,91,45,55,55,46,53,56,48,51,55,55,44,52,50,46,57,52,51,57,54,51,93,44,91,45,55,55,46,55,51,48,57,53,55,44,52,50,46,57,56,56,51,55,50,93,44,91,45,55,55,46,57,48,57,56,51,50,44,52,50,46,57,56,55,55,54,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,49,34,44,34,78,65,77,69,34,58,34,79,39,66,114,105,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,57,49,49,44,34,98,101,100,115,34,58,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,54,49,57,49,52,44,52,51,46,50,53,55,53,54,54,93,44,91,45,57,53,46,56,53,57,51,55,55,44,52,50,46,57,48,57,48,57,55,93,44,91,45,57,53,46,51,56,56,49,56,50,44,52,50,46,57,48,57,56,57,55,93,44,91,45,57,53,46,51,56,56,48,55,56,44,52,51,46,50,53,53,50,50,49,93,44,91,45,57,53,46,56,54,49,57,49,52,44,52,51,46,50,53,55,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,67,97,108,108,97,104,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,55,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,49,49,52,50,57,51,44,51,50,46,53,49,52,56,49,49,93,44,91,45,57,57,46,54,49,50,48,50,54,44,51,50,46,53,49,52,54,53,52,93,44,91,45,57,57,46,54,50,57,53,55,57,44,51,50,46,53,49,52,54,53,55,93,44,91,45,57,57,46,54,51,49,52,49,51,44,51,50,46,48,56,49,50,55,52,93,44,91,45,57,57,46,49,57,53,56,55,49,44,51,50,46,48,55,57,50,51,53,93,44,91,45,57,57,46,49,49,56,54,54,53,44,51,50,46,48,55,57,53,56,53,93,44,91,45,57,57,46,49,49,52,50,57,51,44,51,50,46,53,49,52,56,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,55,57,34,44,34,78,65,77,69,34,58,34,82,97,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,55,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,57,51,52,52,51,51,44,51,50,46,56,51,55,50,49,55,93,44,91,45,57,53,46,54,51,53,48,49,55,44,51,50,46,55,50,48,51,56,93,44,91,45,57,53,46,54,54,53,51,56,57,44,51,50,46,57,54,48,52,51,52,93,44,91,45,57,53,46,56,54,50,53,50,49,44,51,50,46,57,55,57,53,55,49,93,44,91,45,57,53,46,57,52,53,51,44,51,50,46,57,55,57,56,55,55,93,44,91,45,57,53,46,57,51,52,52,51,51,44,51,50,46,56,51,55,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,54,49,54,44,34,98,101,100,115,34,58,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,53,50,55,48,54,51,44,51,55,46,55,51,54,51,49,52,93,44,91,45,49,48,49,46,53,50,53,56,49,44,51,55,46,51,56,56,51,57,50,93,44,91,45,49,48,49,46,48,56,57,54,53,51,44,51,55,46,51,56,55,55,50,49,93,44,91,45,49,48,49,46,48,56,57,54,54,55,44,51,55,46,55,51,54,51,51,55,93,44,91,45,49,48,49,46,53,50,55,48,54,51,44,51,55,46,55,51,54,51,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,51,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,55,56,52,44,51,54,46,56,57,50,57,53,51,93,44,91,45,56,51,46,48,55,50,56,51,54,44,51,54,46,56,53,52,52,53,55,93,44,91,45,56,51,46,49,57,52,50,53,50,44,51,54,46,55,51,57,53,49,57,93,44,91,45,56,51,46,52,54,49,48,49,54,44,51,54,46,54,54,52,56,54,93,44,91,45,56,51,46,54,55,53,51,57,53,44,51,54,46,54,48,48,55,56,52,93,44,91,45,56,51,46,52,55,50,49,48,56,44,51,54,46,53,57,55,50,56,52,93,44,91,45,56,50,46,57,56,53,49,50,52,44,51,54,46,53,57,51,55,50,57,93,44,91,45,56,50,46,57,52,55,54,52,55,44,51,54,46,54,55,53,55,53,49,93,44,91,45,56,50,46,55,55,49,53,57,53,44,51,54,46,56,48,48,48,51,49,93,44,91,45,56,50,46,56,55,56,52,44,51,54,46,56,57,50,57,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,83,105,101,114,114,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,49,51,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,51,55,50,55,57,55,44,51,51,46,52,55,57,56,55,53,93,44,91,45,49,48,54,46,52,55,52,50,57,53,44,51,51,46,52,55,53,55,56,54,93,44,91,45,49,48,55,46,55,49,50,55,53,52,44,51,51,46,52,55,54,56,51,50,93,44,91,45,49,48,56,46,48,48,48,54,48,50,44,51,51,46,52,55,56,48,49,52,93,44,91,45,49,48,56,46,48,48,48,53,57,56,44,51,51,46,50,48,49,50,53,51,93,44,91,45,49,48,55,46,56,54,53,48,48,57,44,51,51,46,49,57,57,57,55,52,93,44,91,45,49,48,55,46,56,53,54,54,55,50,44,51,51,46,48,48,50,53,51,57,93,44,91,45,49,48,55,46,55,56,48,53,52,56,44,51,50,46,57,53,50,55,55,54,93,44,91,45,49,48,55,46,55,50,49,51,56,55,44,51,50,46,55,55,56,48,55,55,93,44,91,45,49,48,55,46,55,51,50,50,56,50,44,51,50,46,54,50,55,51,53,51,93,44,91,45,49,48,55,46,54,48,56,52,56,53,44,51,50,46,54,48,53,52,52,57,93,44,91,45,49,48,55,46,50,57,57,54,51,49,44,51,50,46,54,48,53,51,55,93,44,91,45,49,48,55,46,50,57,57,52,55,53,44,51,50,46,55,56,48,49,54,54,93,44,91,45,49,48,54,46,56,56,55,55,51,51,44,51,50,46,55,55,57,50,55,51,93,44,91,45,49,48,54,46,56,56,55,56,57,49,44,51,50,46,56,50,50,55,56,49,93,44,91,45,49,48,54,46,51,52,48,53,49,53,44,51,51,46,48,53,50,55,55,55,93,44,91,45,49,48,54,46,51,52,53,55,49,44,51,51,46,51,57,48,53,57,53,93,44,91,45,49,48,54,46,51,55,50,55,57,55,44,51,51,46,52,55,57,56,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,68,114,101,119,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,48,50,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,55,53,56,52,52,44,51,51,46,55,48,52,52,49,52,93,44,91,45,57,49,46,57,57,48,49,54,55,44,51,51,46,51,57,56,50,49,52,93,44,91,45,57,49,46,52,53,55,51,55,44,51,51,46,51,56,56,57,55,52,93,44,91,45,57,49,46,52,53,51,52,51,56,44,51,51,46,53,54,51,55,48,51,93,44,91,45,57,49,46,52,53,48,51,50,53,44,51,51,46,55,56,48,52,49,53,93,44,91,45,57,49,46,53,53,55,54,52,56,44,51,51,46,55,56,51,51,56,52,93,44,91,45,57,49,46,57,55,53,57,55,52,44,51,51,46,55,57,49,55,56,55,93,44,91,45,57,49,46,57,55,53,56,52,52,44,51,51,46,55,48,52,52,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,111,114,114,105,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,52,49,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,57,55,56,51,53,44,52,50,46,48,48,52,56,52,51,93,44,91,45,49,48,51,46,51,54,51,51,51,55,44,52,50,46,48,48,50,57,51,93,44,91,45,49,48,51,46,51,55,48,51,57,49,44,52,49,46,54,57,57,50,49,93,44,91,45,49,48,51,46,51,54,57,48,50,52,44,52,49,46,52,51,55,54,53,53,93,44,91,45,49,48,50,46,54,51,54,54,57,53,44,52,49,46,52,51,57,48,53,51,93,44,91,45,49,48,50,46,54,51,54,52,55,54,44,52,49,46,55,52,51,49,51,57,93,44,91,45,49,48,50,46,54,55,57,48,57,51,44,52,49,46,56,52,51,48,53,93,44,91,45,49,48,50,46,54,55,55,53,56,50,44,52,50,46,48,48,53,50,56,50,93,44,91,45,49,48,50,46,54,57,55,56,51,53,44,52,50,46,48,48,52,56,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,66,101,110,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,57,56,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,54,55,50,57,49,44,51,56,46,53,50,57,57,57,53,93,44,91,45,57,51,46,50,57,48,52,53,52,44,51,56,46,53,51,53,51,56,56,93,44,91,45,57,51,46,53,49,50,55,52,51,44,51,56,46,53,49,50,52,55,54,93,44,91,45,57,51,46,53,50,51,52,56,52,44,51,56,46,50,48,55,50,49,54,93,44,91,45,57,51,46,53,48,51,57,52,54,44,51,56,46,48,55,51,49,50,51,93,44,91,45,57,51,46,48,54,53,49,57,57,44,51,56,46,48,54,50,52,55,57,93,44,91,45,57,51,46,48,55,55,54,57,50,44,51,56,46,50,54,51,48,57,50,93,44,91,45,57,51,46,48,54,55,50,57,49,44,51,56,46,53,50,57,57,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,51,53,51,55,49,44,51,52,46,51,53,48,48,57,55,93,44,91,45,57,51,46,57,50,53,56,51,44,51,52,46,49,56,54,52,57,54,93,44,91,45,57,51,46,56,50,48,55,50,50,44,51,52,46,49,56,51,56,48,50,93,44,91,45,57,51,46,56,50,51,48,55,54,44,51,52,46,48,48,56,56,57,51,93,44,91,45,57,51,46,54,49,55,52,54,44,51,51,46,57,53,57,54,50,55,93,44,91,45,57,51,46,52,53,54,55,48,57,44,51,51,46,57,53,54,56,51,55,93,44,91,45,57,51,46,51,55,51,52,48,54,44,51,51,46,57,53,55,48,55,93,44,91,45,57,51,46,52,51,52,56,56,55,44,51,52,46,48,53,50,50,57,56,93,44,91,45,57,51,46,52,55,56,54,52,54,44,51,52,46,51,52,48,56,53,49,93,44,91,45,57,51,46,57,51,53,51,55,49,44,51,52,46,51,53,48,48,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,77,101,115,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,57,57,57,56,44,34,98,101,100,115,34,58,52,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,53,48,55,54,53,44,51,57,46,51,54,54,54,55,55,93,44,91,45,49,48,57,46,48,54,48,49,49,57,44,51,56,46,52,57,57,57,56,57,93,44,91,45,49,48,56,46,51,55,57,49,51,54,44,51,56,46,52,57,57,57,56,55,93,44,91,45,49,48,56,46,51,55,56,54,57,56,44,51,56,46,54,54,56,48,57,55,93,44,91,45,49,48,56,46,51,55,56,57,53,51,44,51,56,46,56,50,57,49,48,56,93,44,91,45,49,48,56,46,49,53,50,52,55,56,44,51,56,46,57,48,49,50,54,56,93,44,91,45,49,48,55,46,57,56,50,49,55,51,44,51,57,46,48,53,57,56,55,56,93,44,91,45,49,48,55,46,55,54,53,48,53,57,44,51,57,46,48,52,52,54,56,51,93,44,91,45,49,48,55,46,53,48,48,54,48,54,44,51,57,46,50,49,55,57,49,54,93,44,91,45,49,48,55,46,51,57,52,52,56,54,44,51,57,46,50,53,54,50,57,57,93,44,91,45,49,48,55,46,52,51,48,57,52,57,44,51,57,46,51,54,54,49,55,56,93,44,91,45,49,48,56,46,52,48,57,54,48,55,44,51,57,46,51,54,53,57,56,51,93,44,91,45,49,48,57,46,48,53,48,55,54,53,44,51,57,46,51,54,54,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,68,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,53,48,52,44,34,98,101,100,115,34,58,53,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,48,57,49,48,53,44,51,55,46,53,57,56,56,54,51,93,44,91,45,57,49,46,55,53,53,48,52,44,51,55,46,52,50,52,49,49,93,44,91,45,57,49,46,54,52,54,54,50,54,44,51,55,46,52,50,50,55,51,49,93,44,91,45,57,49,46,50,49,49,56,54,51,44,51,55,46,52,49,53,50,55,55,93,44,91,45,57,49,46,51,49,52,50,51,54,44,51,55,46,53,48,53,49,51,50,93,44,91,45,57,49,46,51,49,50,52,53,56,44,51,55,46,53,57,50,56,50,52,93,44,91,45,57,49,46,49,53,53,48,55,51,44,51,55,46,53,56,56,48,57,50,93,44,91,45,57,49,46,49,53,51,51,52,53,44,51,55,46,54,57,55,51,52,93,44,91,45,57,49,46,51,49,48,54,53,53,44,51,55,46,55,48,48,48,52,56,93,44,91,45,57,49,46,51,48,56,51,49,49,44,51,55,46,55,56,55,49,56,54,93,44,91,45,57,49,46,53,50,56,55,57,55,44,51,55,46,55,56,56,57,56,57,93,44,91,45,57,49,46,56,48,54,50,49,57,44,51,55,46,55,57,49,50,56,54,93,44,91,45,57,49,46,56,48,57,49,48,53,44,51,55,46,53,57,56,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,84,97,122,101,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,48,56,48,44,34,98,101,100,115,34,58,50,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,55,52,48,49,50,52,44,51,55,46,50,51,55,55,53,50,93,44,91,45,56,49,46,57,48,48,56,57,50,44,51,55,46,49,52,50,53,53,51,93,44,91,45,56,49,46,55,56,48,53,52,53,44,51,54,46,57,53,56,54,50,57,93,44,91,45,56,49,46,54,56,50,55,56,54,44,51,54,46,57,51,50,57,51,52,93,44,91,45,56,49,46,52,51,54,55,51,44,51,55,46,48,49,48,49,51,53,93,44,91,45,56,49,46,50,55,48,48,55,56,44,51,55,46,48,57,51,48,49,50,93,44,91,45,56,49,46,50,50,53,49,48,52,44,51,55,46,50,51,52,56,55,52,93,44,91,45,56,49,46,51,54,50,49,53,54,44,51,55,46,51,51,55,54,56,55,93,44,91,45,56,49,46,53,54,48,54,51,49,44,51,55,46,50,48,54,54,54,51,93,44,91,45,56,49,46,55,52,48,49,50,52,44,51,55,46,50,51,55,55,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,80,105,107,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,57,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,48,54,57,53,53,57,44,52,49,46,54,48,49,56,55,52,93,44,91,45,55,53,46,51,53,57,49,56,52,44,52,49,46,50,51,57,50,48,54,93,44,91,45,55,53,46,49,50,57,55,50,49,44,52,49,46,50,53,50,49,48,49,93,44,91,45,55,53,46,49,53,54,53,48,55,44,52,49,46,49,53,48,51,52,49,93,44,91,45,55,52,46,57,57,49,55,49,56,44,52,49,46,48,57,50,50,56,52,93,44,91,45,55,52,46,56,56,50,49,51,57,44,52,49,46,49,56,48,56,51,54,93,44,91,45,55,52,46,56,51,48,48,53,55,44,52,49,46,50,56,55,50,93,44,91,45,55,52,46,54,57,52,57,49,52,44,52,49,46,51,53,55,52,50,51,93,44,91,45,55,52,46,55,53,52,54,57,44,52,49,46,52,50,52,57,55,51,93,44,91,45,55,52,46,57,56,49,54,53,50,44,52,49,46,52,55,57,57,52,53,93,44,91,45,55,53,46,48,54,57,53,53,57,44,52,49,46,54,48,49,56,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,83,117,115,113,117,101,104,97,110,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,51,52,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,52,56,51,49,52,57,44,52,49,46,57,57,57,50,49,52,93,44,91,45,55,54,46,49,48,53,56,52,44,52,49,46,57,57,56,56,53,56,93,44,91,45,55,54,46,49,52,53,53,49,57,44,52,49,46,57,57,56,56,52,50,93,44,91,45,55,54,46,49,49,53,49,55,50,44,52,49,46,54,53,49,56,50,53,93,44,91,45,55,53,46,55,49,57,56,56,55,44,52,49,46,54,52,50,50,54,51,93,44,91,45,55,53,46,52,54,50,52,49,49,44,52,49,46,54,52,49,53,56,55,93,44,91,45,55,53,46,52,56,51,49,52,57,44,52,49,46,57,57,57,50,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,52,51,34,44,34,78,65,77,69,34,58,34,77,111,114,114,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,52,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,56,48,56,55,56,51,44,51,51,46,51,54,51,54,51,54,93,44,91,45,57,52,46,56,49,57,56,50,56,44,51,50,46,57,56,50,56,56,54,93,44,91,45,57,52,46,55,49,57,57,52,50,44,51,50,46,57,48,52,53,48,50,93,44,91,45,57,52,46,55,48,53,56,55,56,44,51,50,46,56,55,57,49,55,55,93,44,91,45,57,52,46,54,53,51,57,57,52,44,51,50,46,56,55,57,53,48,54,93,44,91,45,57,52,46,54,53,50,50,54,44,51,51,46,50,54,56,56,54,49,93,44,91,45,57,52,46,55,52,54,57,50,53,44,51,51,46,51,50,56,57,51,56,93,44,91,45,57,52,46,56,48,56,55,56,51,44,51,51,46,51,54,51,54,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,55,53,52,55,44,34,98,101,100,115,34,58,53,55,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,55,57,57,49,44,52,48,46,51,57,57,54,52,52,93,44,91,45,56,48,46,53,49,57,49,48,52,44,52,48,46,49,53,57,54,55,50,93,44,91,45,56,48,46,53,49,57,49,50,44,52,48,46,48,49,54,52,49,93,44,91,45,56,48,46,53,49,57,48,57,49,44,51,57,46,57,54,50,50,93,44,91,45,56,48,46,50,56,55,52,50,49,44,52,48,46,48,49,57,50,48,54,93,44,91,45,55,57,46,57,57,56,48,49,52,44,51,57,46,57,56,51,51,50,50,93,44,91,45,55,57,46,56,55,55,51,56,53,44,52,48,46,49,50,54,55,57,50,93,44,91,45,55,57,46,56,55,48,53,56,53,44,52,48,46,49,57,55,52,49,53,93,44,91,45,55,57,46,57,49,52,49,51,57,44,52,48,46,50,53,50,53,49,56,93,44,91,45,56,48,46,49,56,51,52,55,50,44,52,48,46,51,51,50,55,56,50,93,44,91,45,56,48,46,51,54,48,56,55,51,44,52,48,46,52,55,55,53,51,57,93,44,91,45,56,48,46,53,49,57,48,51,56,44,52,48,46,52,55,55,51,54,51,93,44,91,45,56,48,46,53,49,55,57,57,49,44,52,48,46,51,57,57,54,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,57,51,57,44,34,98,101,100,115,34,58,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,51,49,51,50,56,51,44,52,52,46,50,54,52,49,51,93,44,91,45,55,51,46,51,57,48,54,50,53,44,52,52,46,49,57,49,48,54,56,93,44,91,45,55,51,46,52,51,55,57,48,53,44,52,52,46,48,52,53,49,50,53,93,44,91,45,55,51,46,51,55,57,50,56,49,44,52,51,46,56,48,56,52,56,49,93,44,91,45,55,51,46,51,54,50,56,50,51,44,52,51,46,55,53,51,48,56,52,93,44,91,45,55,51,46,50,48,54,51,50,50,44,52,51,46,55,54,54,55,55,53,93,44,91,45,55,51,46,50,49,56,57,53,54,44,52,51,46,56,51,55,50,57,49,93,44,91,45,55,50,46,57,53,56,56,53,51,44,52,51,46,56,50,54,53,52,50,93,44,91,45,55,50,46,57,53,51,48,56,51,44,52,51,46,56,55,52,56,55,93,44,91,45,55,50,46,55,57,49,51,51,54,44,52,51,46,57,54,49,56,53,53,93,44,91,45,55,50,46,55,52,50,51,48,51,44,52,52,46,48,50,57,54,53,53,93,44,91,45,55,50,46,57,49,54,55,55,56,44,52,52,46,48,55,49,56,56,54,93,44,91,45,55,50,46,57,53,50,49,54,55,44,52,52,46,49,54,49,50,55,49,93,44,91,45,55,50,46,57,55,51,51,49,56,44,52,52,46,50,57,51,52,50,93,44,91,45,55,51,46,51,49,51,50,56,51,44,52,52,46,50,54,52,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,76,101,97,118,101,110,119,111,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,48,52,50,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,56,48,56,57,49,44,51,57,46,52,49,57,50,49,56,93,44,91,45,57,53,46,49,56,55,49,48,51,44,51,57,46,48,52,52,49,48,57,93,44,91,45,57,53,46,48,53,54,50,53,56,44,51,56,46,57,56,50,49,50,93,44,91,45,57,52,46,57,48,56,55,54,53,44,51,56,46,57,57,49,52,48,49,93,44,91,45,57,52,46,57,48,48,49,57,49,44,51,57,46,50,48,50,57,49,49,93,44,91,45,57,52,46,55,55,53,53,51,50,44,51,57,46,50,48,48,54,48,54,93,44,91,45,57,52,46,56,57,56,53,49,54,44,51,57,46,50,57,56,52,53,93,44,91,45,57,52,46,57,54,56,57,55,51,44,51,57,46,52,49,56,56,55,57,93,44,91,45,57,53,46,49,56,48,56,57,49,44,51,57,46,52,49,57,50,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,77,117,115,107,101,103,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,48,52,51,44,34,98,101,100,115,34,58,51,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,57,48,52,52,56,44,52,51,46,50,57,51,48,48,51,93,44,91,45,56,54,46,48,51,56,57,53,51,44,52,51,46,50,57,51,53,49,57,93,44,91,45,56,54,46,48,51,57,52,57,49,44,52,51,46,52,54,55,52,52,55,93,44,91,45,56,55,46,49,52,48,51,51,49,44,52,51,46,52,55,49,52,51,54,93,44,91,45,56,55,46,49,49,57,48,48,56,44,52,51,46,49,57,48,56,49,54,93,44,91,45,56,55,46,49,48,55,54,54,57,44,52,51,46,49,49,56,50,52,51,93,44,91,45,56,53,46,57,48,55,52,51,53,44,52,51,46,49,49,56,57,49,49,93,44,91,45,56,53,46,55,57,48,54,54,50,44,52,51,46,50,48,53,49,54,55,93,44,91,45,56,53,46,55,57,48,52,52,56,44,52,51,46,50,57,51,48,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,72,105,110,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,49,55,55,52,44,34,98,101,100,115,34,58,50,52,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,48,54,53,54,57,55,44,51,50,46,51,57,57,53,50,57,93,44,91,45,57,48,46,50,52,51,55,54,52,44,51,50,46,52,48,48,48,57,56,93,44,91,45,57,48,46,50,52,51,54,52,49,44,51,50,46,52,56,55,53,51,51,93,44,91,45,57,48,46,52,52,53,57,52,54,44,51,50,46,52,56,55,57,48,51,93,44,91,45,57,48,46,52,53,48,48,51,55,44,51,50,46,53,55,51,55,56,51,93,44,91,45,57,48,46,53,53,51,56,50,49,44,51,50,46,53,48,55,53,55,52,93,44,91,45,57,48,46,54,56,51,53,55,49,44,51,50,46,51,53,50,55,56,52,93,44,91,45,57,48,46,55,50,56,54,50,50,44,51,50,46,50,50,53,49,49,57,93,44,91,45,57,48,46,55,49,56,50,57,55,44,51,50,46,48,52,56,51,53,50,93,44,91,45,57,48,46,50,51,48,51,51,49,44,51,50,46,48,52,57,55,50,56,93,44,91,45,57,48,46,50,52,53,51,56,44,51,50,46,49,55,49,51,57,54,93,44,91,45,57,48,46,48,54,53,54,57,55,44,51,50,46,51,57,57,53,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,56,49,34,44,34,78,65,77,69,34,58,34,76,97,109,112,97,115,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,52,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,55,49,48,55,44,51,49,46,52,49,54,51,57,56,93,44,91,45,57,56,46,53,54,50,55,51,57,44,51,49,46,50,51,48,53,56,50,93,44,91,45,57,56,46,52,51,57,54,56,55,44,51,49,46,48,50,57,53,51,55,93,44,91,45,57,55,46,57,49,49,54,56,52,44,51,49,46,48,51,52,57,49,57,93,44,91,45,57,55,46,57,48,55,49,44,51,49,46,48,54,57,51,55,52,93,44,91,45,57,56,46,49,56,48,48,48,54,44,51,49,46,52,54,51,55,49,55,93,44,91,45,57,56,46,50,55,49,48,55,44,51,49,46,52,49,54,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,76,111,117,100,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,53,49,52,51,44,34,98,101,100,115,34,58,52,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,50,56,51,49,56,44,51,57,46,48,53,55,54,55,56,93,44,91,45,55,55,46,52,54,48,54,48,50,44,51,57,46,48,55,52,56,52,51,93,44,91,45,55,55,46,53,50,55,51,50,50,44,51,57,46,49,52,54,57,54,49,93,44,91,45,55,55,46,52,53,56,56,48,56,44,51,57,46,50,50,48,50,55,93,44,91,45,55,55,46,53,54,56,55,53,51,44,51,57,46,51,48,54,52,52,55,93,44,91,45,55,55,46,54,55,55,49,54,52,44,51,57,46,51,50,52,53,51,52,93,44,91,45,55,55,46,55,49,57,53,49,57,44,51,57,46,51,50,49,51,49,52,93,44,91,45,55,55,46,56,50,56,50,57,57,44,51,57,46,49,51,50,52,50,54,93,44,91,45,55,55,46,57,54,50,50,48,51,44,51,57,46,48,49,51,55,51,51,93,44,91,45,55,55,46,54,53,53,49,54,57,44,51,56,46,57,52,50,54,53,54,93,44,91,45,55,55,46,53,51,53,57,57,49,44,51,56,46,56,52,55,51,54,56,93,44,91,45,55,55,46,51,50,56,51,49,56,44,51,57,46,48,53,55,54,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,53,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,108,97,105,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,56,51,44,34,98,101,100,115,34,58,49,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,48,53,56,50,56,53,44,51,56,46,48,51,54,54,50,55,93,44,91,45,57,52,46,48,54,53,54,55,53,44,51,55,46,57,48,48,57,56,55,93,44,91,45,57,51,46,56,48,56,54,52,56,44,51,55,46,56,57,50,55,55,53,93,44,91,45,57,51,46,56,49,49,52,48,50,44,51,55,46,56,51,52,53,55,49,93,44,91,45,57,51,46,54,50,56,52,48,52,44,51,55,46,56,50,57,52,51,53,93,44,91,45,57,51,46,53,55,51,50,48,50,44,51,55,46,56,50,56,48,51,53,93,44,91,45,57,51,46,53,49,50,49,48,51,44,51,55,46,57,49,51,53,51,53,93,44,91,45,57,51,46,53,48,51,57,52,54,44,51,56,46,48,55,51,49,50,51,93,44,91,45,57,51,46,53,50,51,52,56,52,44,51,56,46,50,48,55,50,49,54,93,44,91,45,57,52,46,48,52,57,56,57,53,44,51,56,46,50,49,51,57,56,53,93,44,91,45,57,52,46,48,53,56,50,56,53,44,51,56,46,48,51,54,54,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,68,101,108,97,119,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,53,48,50,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,55,49,49,53,56,44,52,50,46,53,49,55,55,57,57,93,44,91,45,55,52,46,56,52,52,49,50,49,44,52,50,46,53,49,50,53,57,49,93,44,91,45,55,53,46,48,49,57,56,49,56,44,52,50,46,52,50,57,48,52,53,93,44,91,45,55,53,46,52,49,53,51,49,57,44,52,50,46,51,49,52,49,53,49,93,44,91,45,55,53,46,52,49,56,52,50,49,44,52,50,46,49,57,53,48,51,50,93,44,91,45,55,53,46,52,50,49,55,55,54,44,52,50,46,48,52,50,48,51,93,44,91,45,55,53,46,51,53,57,53,55,57,44,52,49,46,57,57,57,52,52,53,93,44,91,45,55,53,46,50,55,49,50,57,51,44,52,49,46,56,56,55,51,53,56,93,44,91,45,55,53,46,49,52,54,52,52,54,44,52,49,46,56,53,48,56,57,57,93,44,91,45,55,52,46,55,56,48,54,57,51,44,52,50,46,48,49,54,51,55,53,93,44,91,45,55,52,46,52,53,49,55,49,51,44,52,50,46,49,54,57,50,50,53,93,44,91,45,55,52,46,53,51,55,51,49,44,52,50,46,50,48,49,52,50,52,93,44,91,45,55,52,46,52,52,51,53,48,54,44,52,50,46,51,53,53,48,49,55,93,44,91,45,55,52,46,54,49,56,56,57,53,44,52,50,46,52,50,52,51,56,57,93,44,91,45,55,52,46,55,49,49,53,56,44,52,50,46,53,49,55,55,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,80,104,105,108,108,105,112,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,50,52,44,34,98,101,100,115,34,58,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,56,46,50,51,54,52,57,55,44,52,56,46,57,57,57,53,55,49,93,44,91,45,49,48,56,46,50,53,57,51,56,52,44,52,56,46,55,52,50,50,50,53,93,44,91,45,49,48,56,46,51,49,57,48,49,49,44,52,56,46,53,54,56,52,51,49,93,44,91,45,49,48,56,46,52,49,49,49,56,54,44,52,56,46,52,52,52,57,56,49,93,44,91,45,49,48,56,46,52,51,51,57,56,44,52,55,46,57,55,54,53,53,51,93,44,91,45,49,48,56,46,54,48,55,53,55,57,44,52,55,46,57,57,48,57,57,55,93,44,91,45,49,48,56,46,54,50,53,53,56,55,44,52,55,46,57,50,48,52,49,49,93,44,91,45,49,48,56,46,56,56,56,51,49,54,44,52,55,46,57,50,50,55,50,50,93,44,91,45,49,48,56,46,56,57,49,49,49,53,44,52,55,46,55,51,52,52,53,54,93,44,91,45,49,48,56,46,54,55,49,52,44,52,55,46,54,49,57,53,53,54,93,44,91,45,49,48,56,46,51,49,51,48,52,56,44,52,55,46,53,56,51,54,53,93,44,91,45,49,48,56,46,48,54,53,52,49,56,44,52,55,46,53,57,56,50,57,52,93,44,91,45,49,48,55,46,57,51,49,49,48,53,44,52,55,46,53,54,57,48,55,51,93,44,91,45,49,48,55,46,57,48,57,49,50,44,52,55,46,52,53,48,54,57,50,93,44,91,45,49,48,55,46,56,54,52,57,50,50,44,52,55,46,53,49,51,55,52,93,44,91,45,49,48,55,46,53,57,52,50,53,44,52,55,46,54,52,57,55,51,49,93,44,91,45,49,48,55,46,52,49,52,56,56,54,44,52,55,46,54,57,49,55,51,52,93,44,91,45,49,48,55,46,52,48,52,53,49,51,44,52,56,46,50,49,56,52,52,93,44,91,45,49,48,55,46,50,54,48,52,53,56,44,52,56,46,51,48,52,55,54,56,93,44,91,45,49,48,55,46,51,48,49,55,50,49,44,52,56,46,52,56,48,57,52,51,93,44,91,45,49,48,55,46,50,48,54,51,49,54,44,52,56,46,53,54,56,49,55,93,44,91,45,49,48,55,46,50,48,54,48,51,50,44,52,56,46,57,49,50,55,49,93,44,91,45,49,48,55,46,49,55,57,56,49,50,44,52,57,46,48,48,48,49,48,51,93,44,91,45,49,48,56,46,50,51,54,52,57,55,44,52,56,46,57,57,57,53,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,53,53,54,56,57,57,44,52,48,46,53,56,48,50,51,53,93,44,91,45,57,51,46,55,55,52,51,52,52,44,52,48,46,53,55,55,53,52,56,93,44,91,45,57,51,46,55,54,51,51,50,52,44,52,48,46,50,54,51,57,56,56,93,44,91,45,57,51,46,51,54,55,50,49,52,44,52,48,46,50,54,54,51,49,52,93,44,91,45,57,51,46,51,54,54,57,51,53,44,52,48,46,51,56,50,57,57,57,93,44,91,45,57,51,46,51,55,52,51,56,54,44,52,48,46,53,56,48,51,51,51,93,44,91,45,57,51,46,53,53,54,56,57,57,44,52,48,46,53,56,48,50,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,54,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,56,50,48,53,55,54,44,52,55,46,49,57,52,50,50,93,44,91,45,49,50,50,46,56,53,49,49,56,55,44,52,55,46,50,52,57,55,55,52,93,44,91,45,49,50,50,46,56,48,49,49,57,57,44,52,55,46,52,48,51,53,55,56,93,44,91,45,49,50,50,46,56,48,49,48,49,50,44,52,55,46,53,50,48,52,48,54,93,44,91,45,49,50,51,46,48,51,56,52,48,52,44,52,55,46,53,50,48,50,51,54,93,44,91,45,49,50,50,46,57,53,48,54,50,49,44,52,55,46,54,48,54,51,48,56,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,54,48,52,54,49,53,93,44,91,45,49,50,51,46,53,48,53,57,49,55,44,52,55,46,53,49,55,55,49,54,93,44,91,45,49,50,51,46,52,56,56,57,52,51,44,52,55,46,48,56,50,54,52,54,93,44,91,45,49,50,51,46,50,48,49,56,57,49,44,52,55,46,48,56,53,48,53,57,93,44,91,45,49,50,51,46,48,55,53,48,50,54,44,52,55,46,48,56,52,55,56,55,93,44,91,45,49,50,51,46,48,48,50,52,51,53,44,52,55,46,49,53,49,51,48,50,93,44,91,45,49,50,50,46,56,50,48,53,55,54,44,52,55,46,49,57,52,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,78,97,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,52,48,48,51,44,34,98,101,100,115,34,58,51,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,48,54,53,53,49,44,51,54,46,50,48,50,54,51,51,93,44,91,45,55,56,46,50,53,53,57,55,51,44,51,53,46,56,49,56,49,50,93,44,91,45,55,56,46,49,57,50,49,49,55,44,51,53,46,55,51,48,53,52,53,93,44,91,45,55,55,46,56,50,56,52,52,52,44,51,53,46,56,54,55,50,48,56,93,44,91,45,55,55,46,54,57,55,57,53,54,44,51,54,46,49,53,51,49,53,93,44,91,45,55,55,46,56,56,55,50,52,44,51,54,46,49,52,51,56,52,93,44,91,45,55,56,46,48,48,54,53,53,49,44,51,54,46,50,48,50,54,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,57,34,44,34,78,65,77,69,34,58,34,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,53,56,55,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,57,49,51,48,50,44,51,55,46,50,49,51,50,48,53,93,44,91,45,55,54,46,52,51,56,48,50,54,44,51,55,46,48,57,52,51,52,56,93,44,91,45,55,54,46,51,57,53,55,57,53,44,51,55,46,49,48,55,49,55,52,93,44,91,45,55,54,46,51,51,48,52,51,53,44,51,55,46,49,57,48,57,56,52,93,44,91,45,55,54,46,49,51,53,53,50,44,51,55,46,49,57,49,57,55,93,44,91,45,55,54,46,49,51,54,51,48,49,44,51,55,46,50,56,50,49,51,55,93,44,91,45,55,54,46,51,48,52,53,44,51,55,46,50,55,56,51,54,49,93,44,91,45,55,54,46,53,49,54,48,53,55,44,51,55,46,50,52,56,55,53,50,93,44,91,45,55,54,46,54,53,56,54,53,49,44,51,55,46,51,56,48,49,51,57,93,44,91,45,55,54,46,55,50,55,56,53,57,44,51,55,46,51,48,53,57,50,55,93,44,91,45,55,54,46,54,56,48,49,53,49,44,51,55,46,50,54,53,57,57,55,93,44,91,45,55,54,46,53,57,49,51,48,50,44,51,55,46,50,49,51,50,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,80,101,116,116,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,51,55,49,44,34,98,101,100,115,34,58,49,52,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,53,48,52,53,51,44,51,56,46,57,50,56,50,52,52,93,44,91,45,57,51,46,52,57,54,51,55,55,44,51,56,46,57,52,50,56,51,55,93,44,91,45,57,51,46,52,57,55,50,55,56,44,51,56,46,57,50,56,52,51,93,44,91,45,57,51,46,53,49,49,48,51,44,51,56,46,53,53,54,50,49,93,44,91,45,57,51,46,53,49,50,55,52,51,44,51,56,46,53,49,50,52,55,54,93,44,91,45,57,51,46,50,57,48,52,53,52,44,51,56,46,53,51,53,51,56,56,93,44,91,45,57,51,46,48,54,55,50,57,49,44,51,56,46,53,50,57,57,57,53,93,44,91,45,57,51,46,48,53,57,57,55,52,44,51,56,46,54,57,51,48,55,55,93,44,91,45,57,51,46,48,53,48,52,53,51,44,51,56,46,57,50,56,50,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,77,105,115,115,111,117,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,53,57,56,51,44,34,98,101,100,115,34,58,52,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,54,51,52,48,55,57,44,52,55,46,54,48,48,48,50,55,93,44,91,45,49,49,51,46,57,50,52,56,50,54,44,52,55,46,54,48,48,50,51,57,93,44,91,45,49,49,51,46,57,52,50,56,56,54,44,52,55,46,52,55,57,54,55,56,93,44,91,45,49,49,51,46,56,55,49,49,49,44,52,55,46,51,57,49,57,55,93,44,91,45,49,49,51,46,56,50,49,52,52,55,44,52,55,46,49,56,49,55,48,57,93,44,91,45,49,49,51,46,57,51,51,53,48,51,44,52,55,46,49,51,56,50,56,57,93,44,91,45,49,49,52,46,49,56,55,49,55,44,52,55,46,49,51,56,49,57,49,93,44,91,45,49,49,52,46,50,53,51,53,56,52,44,52,55,46,49,50,49,48,48,55,93,44,91,45,49,49,52,46,52,50,51,56,53,56,44,52,55,46,50,49,48,48,57,49,93,44,91,45,49,49,52,46,54,56,55,50,57,53,44,52,55,46,50,55,52,51,49,93,44,91,45,49,49,52,46,55,57,55,50,48,52,44,52,55,46,50,54,56,57,49,54,93,44,91,45,49,49,52,46,55,55,53,56,51,51,44,52,55,46,50,50,53,53,55,51,93,44,91,45,49,49,52,46,52,56,51,50,50,55,44,52,55,46,48,50,51,51,53,56,93,44,91,45,49,49,52,46,53,54,54,49,50,57,44,52,54,46,57,54,51,52,48,53,93,44,91,45,49,49,52,46,53,52,57,49,50,55,44,52,54,46,55,52,55,51,54,54,93,44,91,45,49,49,52,46,54,55,52,57,52,50,44,52,54,46,55,51,54,56,50,54,93,44,91,45,49,49,52,46,53,57,52,54,51,52,44,52,54,46,54,51,51,52,52,56,93,44,91,45,49,49,52,46,51,51,50,55,57,54,44,52,54,46,54,54,48,53,56,49,93,44,91,45,49,49,51,46,56,50,55,55,52,51,44,52,54,46,54,54,48,56,57,54,93,44,91,45,49,49,51,46,52,55,57,56,53,54,44,52,54,46,55,52,52,55,49,52,93,44,91,45,49,49,51,46,52,49,54,53,57,57,44,52,54,46,56,51,50,49,49,51,93,44,91,45,49,49,51,46,51,48,50,57,48,51,44,52,54,46,56,51,50,49,53,57,93,44,91,45,49,49,51,46,51,48,50,57,52,51,44,52,55,46,49,55,57,54,52,51,93,44,91,45,49,49,51,46,52,54,54,52,53,44,52,55,46,49,55,57,49,56,54,93,44,91,45,49,49,51,46,52,54,54,52,56,53,44,52,55,46,54,48,48,48,53,55,93,44,91,45,49,49,51,46,54,51,52,48,55,57,44,52,55,46,54,48,48,48,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,104,97,117,116,97,117,113,117,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,54,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,50,52,56,55,51,44,51,55,46,51,48,50,55,51,93,44,91,45,57,54,46,53,50,53,53,56,50,44,51,54,46,57,57,56,55,49,93,44,91,45,57,54,46,48,48,48,56,49,44,51,54,46,57,57,56,56,54,93,44,91,45,57,53,46,57,54,52,50,55,44,51,54,46,57,57,57,49,48,52,93,44,91,45,57,53,46,57,54,52,51,57,57,44,51,55,46,50,57,57,50,51,50,93,44,91,45,57,54,46,53,50,52,56,55,51,44,51,55,46,51,48,50,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,53,57,34,44,34,78,65,77,69,34,58,34,85,112,115,104,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,55,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,53,50,49,49,44,51,50,46,57,48,50,54,52,49,93,44,91,45,57,53,46,49,53,51,52,49,44,51,50,46,53,55,48,49,49,53,93,44,91,45,57,52,46,57,56,54,57,51,53,44,51,50,46,53,51,55,50,52,54,93,44,91,45,57,52,46,55,48,49,55,57,44,51,50,46,54,53,50,50,48,57,93,44,91,45,57,52,46,55,48,50,49,52,44,51,50,46,55,57,51,48,56,56,93,44,91,45,57,52,46,55,48,53,56,55,56,44,51,50,46,56,55,57,49,55,55,93,44,91,45,57,52,46,55,49,57,57,52,50,44,51,50,46,57,48,52,53,48,50,93,44,91,45,57,53,46,49,53,50,49,49,44,51,50,46,57,48,50,54,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,117,108,112,101,112,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,52,53,48,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,51,49,56,48,51,44,51,56,46,53,51,50,53,51,57,93,44,91,45,55,56,46,48,57,54,48,56,51,44,51,56,46,52,48,52,51,52,51,93,44,91,45,55,56,46,48,57,52,52,57,56,44,51,56,46,51,49,49,50,52,50,93,44,91,45,55,55,46,57,48,56,57,55,57,44,51,56,46,51,56,49,53,48,51,93,44,91,45,55,55,46,55,48,50,56,52,51,44,51,56,46,51,54,48,56,52,93,44,91,45,55,55,46,54,49,56,55,50,55,44,51,56,46,51,54,55,56,51,53,93,44,91,45,55,55,46,54,51,52,57,52,44,51,56,46,52,49,48,50,49,56,93,44,91,45,55,55,46,55,51,53,57,48,49,44,51,56,46,52,49,51,52,53,56,93,44,91,45,55,55,46,57,51,53,51,53,53,44,51,56,46,54,57,53,56,52,93,44,91,45,55,56,46,49,54,56,55,57,50,44,51,56,46,53,50,51,56,48,57,93,44,91,45,55,56,46,50,51,49,56,48,51,44,51,56,46,53,51,50,53,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,72,97,115,107,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,48,52,57,57,51,51,44,51,53,46,52,53,56,56,57,52,93,44,91,45,57,53,46,49,55,49,55,54,51,44,51,53,46,51,48,53,53,53,51,93,44,91,45,57,53,46,51,52,52,55,54,54,44,51,53,46,50,57,51,48,51,53,93,44,91,45,57,53,46,52,53,49,50,53,44,51,53,46,50,57,54,48,49,57,93,44,91,45,57,53,46,52,53,53,48,49,56,44,51,53,46,49,54,48,53,55,53,93,44,91,45,57,53,46,51,52,57,53,50,53,44,51,53,46,49,54,48,48,50,49,93,44,91,45,57,53,46,51,52,57,52,48,57,44,51,53,46,48,53,56,53,50,93,44,91,45,57,52,46,57,50,55,56,54,51,44,51,53,46,48,53,56,50,52,54,93,44,91,45,57,52,46,57,50,55,55,55,52,44,51,53,46,50,48,50,54,49,93,44,91,45,57,52,46,56,49,52,50,55,54,44,51,53,46,50,48,50,51,51,49,93,44,91,45,57,52,46,56,49,51,54,50,57,44,51,53,46,51,50,51,51,52,52,93,44,91,45,57,53,46,48,52,57,57,51,51,44,51,53,46,52,53,56,56,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,53,52,55,44,34,98,101,100,115,34,58,52,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,51,51,56,48,51,44,52,48,46,48,51,51,52,48,57,93,44,91,45,56,48,46,53,49,57,49,50,44,52,48,46,48,49,54,52,49,93,44,91,45,56,48,46,53,49,57,49,48,52,44,52,48,46,49,53,57,54,55,50,93,44,91,45,56,48,46,54,56,49,56,49,49,44,52,48,46,49,56,53,53,54,51,93,44,91,45,56,48,46,55,48,50,55,53,44,52,48,46,49,53,55,50,52,57,93,44,91,45,56,48,46,55,51,51,56,48,51,44,52,48,46,48,51,51,52,48,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,77,111,114,103,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,50,52,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,50,50,49,49,44,51,57,46,54,49,57,54,53,55,93,44,91,45,55,56,46,49,55,49,53,52,57,44,51,57,46,54,57,53,54,52,51,93,44,91,45,55,56,46,51,51,51,56,49,57,44,51,57,46,54,51,54,55,54,50,93,44,91,45,55,56,46,52,54,56,53,56,49,44,51,57,46,53,49,54,54,49,57,93,44,91,45,55,56,46,51,52,55,48,56,55,44,51,57,46,52,54,54,48,49,50,93,44,91,45,55,56,46,50,50,56,55,54,54,44,51,57,46,51,57,49,50,51,51,93,44,91,45,55,56,46,49,51,56,57,51,55,44,51,57,46,53,57,51,55,57,54,93,44,91,45,55,56,46,48,50,50,49,49,44,51,57,46,54,49,57,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,53,34,44,34,78,65,77,69,34,58,34,82,111,99,107,105,110,103,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,52,52,52,44,34,98,101,100,115,34,58,50,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,48,53,55,50,53,51,44,51,56,46,55,54,49,52,49,51,93,44,91,45,55,57,46,50,50,52,53,56,51,44,51,56,46,52,55,55,53,56,56,93,44,91,45,55,56,46,55,52,57,51,57,54,44,51,56,46,50,48,54,54,52,56,93,44,91,45,55,56,46,54,54,51,49,52,53,44,51,56,46,50,55,55,57,51,51,93,44,91,45,55,56,46,52,56,53,55,52,44,51,56,46,52,50,49,53,55,57,93,44,91,45,55,56,46,54,57,49,51,49,50,44,51,56,46,53,49,48,48,48,56,93,44,91,45,55,56,46,54,52,49,55,54,57,44,51,56,46,54,48,52,55,49,57,93,44,91,45,55,56,46,56,54,57,50,54,49,44,51,56,46,55,54,50,57,56,93,44,91,45,55,56,46,57,57,51,55,54,49,44,51,56,46,56,53,48,48,50,49,93,44,91,45,55,57,46,48,53,55,50,53,51,44,51,56,46,55,54,49,52,49,51,93,93,44,91,91,45,55,56,46,57,49,55,56,55,49,44,51,56,46,51,57,52,49,53,51,93,44,91,45,55,56,46,57,48,48,53,56,57,44,51,56,46,52,53,57,50,49,55,93,44,91,45,55,56,46,56,50,52,51,50,44,51,56,46,52,51,53,48,55,57,93,44,91,45,55,56,46,57,49,55,56,55,49,44,51,56,46,51,57,52,49,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,87,104,105,116,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,54,52,57,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,53,49,57,50,56,44,52,49,46,50,57,52,55,55,54,93,44,91,45,56,53,46,54,56,52,49,56,49,44,52,49,46,48,52,54,55,49,54,93,44,91,45,56,53,46,54,52,51,56,52,49,44,52,49,46,48,48,50,51,48,53,93,44,91,45,56,53,46,51,51,53,54,52,51,44,52,49,46,48,48,53,50,53,93,44,91,45,56,53,46,51,48,55,55,56,49,44,52,49,46,50,54,52,49,53,56,93,44,91,45,56,53,46,53,51,55,49,56,44,52,49,46,50,54,54,49,53,55,93,44,91,45,56,53,46,54,53,49,57,50,56,44,52,49,46,50,57,52,55,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,83,105,115,107,105,121,111,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,53,52,48,44,34,98,101,100,115,34,58,54,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,50,56,57,55,52,56,44,52,50,46,48,48,56,48,57,56,93,44,91,45,49,50,51,46,50,51,49,49,49,51,44,52,50,46,48,48,51,57,52,51,93,44,91,45,49,50,51,46,53,49,55,57,49,49,44,52,50,46,48,48,48,55,53,54,93,44,91,45,49,50,51,46,53,54,53,52,52,50,44,52,49,46,57,48,51,49,52,49,93,44,91,45,49,50,51,46,55,48,51,54,56,49,44,52,49,46,56,50,57,52,56,55,93,44,91,45,49,50,51,46,54,54,55,49,49,52,44,52,49,46,54,57,49,54,56,57,93,44,91,45,49,50,51,46,55,49,57,49,55,52,44,52,49,46,53,57,53,54,49,51,93,44,91,45,49,50,51,46,54,49,50,51,57,53,44,52,49,46,52,52,56,57,53,52,93,44,91,45,49,50,51,46,54,54,49,51,54,51,44,52,49,46,51,56,50,48,57,93,44,91,45,49,50,51,46,52,55,52,48,56,53,44,52,49,46,51,54,54,49,57,51,93,44,91,45,49,50,51,46,52,48,56,50,57,49,44,52,49,46,49,55,57,57,52,52,93,44,91,45,49,50,51,46,50,52,53,50,50,50,44,52,49,46,48,55,55,57,56,55,93,44,91,45,49,50,51,46,49,48,57,48,55,55,44,52,49,46,48,55,53,52,50,57,93,44,91,45,49,50,51,46,48,51,54,56,48,56,44,52,49,46,48,48,52,48,53,56,93,44,91,45,49,50,50,46,56,57,55,48,54,54,44,52,49,46,50,48,49,48,48,54,93,44,91,45,49,50,50,46,56,49,49,51,52,50,44,52,49,46,50,48,50,52,53,49,93,44,91,45,49,50,50,46,53,57,48,56,48,56,44,52,49,46,51,50,53,57,49,93,44,91,45,49,50,50,46,53,48,52,50,53,52,44,52,49,46,51,51,52,55,49,93,44,91,45,49,50,50,46,52,57,56,51,55,54,44,52,49,46,49,56,50,54,55,53,93,44,91,45,49,50,49,46,52,52,54,52,57,53,44,52,49,46,49,56,51,52,56,52,93,44,91,45,49,50,49,46,52,52,55,53,51,56,44,52,49,46,57,57,55,52,54,53,93,44,91,45,49,50,50,46,50,56,57,55,52,56,44,52,50,46,48,48,56,48,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,68,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,48,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,55,57,53,57,50,44,52,53,46,53,56,56,52,56,51,93,44,91,45,57,55,46,57,56,49,52,53,55,44,52,53,46,50,52,48,52,49,53,93,44,91,45,57,55,46,57,56,49,55,57,50,44,52,53,46,49,53,51,50,57,53,93,44,91,45,57,55,46,52,57,52,50,53,52,44,52,53,46,49,53,49,54,51,49,93,44,91,45,57,55,46,50,50,54,50,56,49,44,52,53,46,49,53,49,56,50,54,93,44,91,45,57,55,46,50,50,54,50,52,52,44,52,53,46,50,57,55,54,52,55,93,44,91,45,57,55,46,50,50,55,48,56,57,44,52,53,46,53,53,56,49,53,56,93,44,91,45,57,55,46,51,55,51,51,54,54,44,52,53,46,53,56,55,54,51,52,93,44,91,45,57,55,46,57,55,57,53,57,50,44,52,53,46,53,56,56,52,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,79,114,108,101,97,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,56,57,54,52,56,44,34,98,101,100,115,34,58,49,49,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,48,56,49,49,57,44,51,48,46,49,54,52,57,52,93,44,91,45,57,48,46,49,51,56,53,55,52,44,50,57,46,57,49,56,56,48,53,93,44,91,45,57,48,46,48,48,56,48,53,54,44,50,57,46,56,57,53,53,50,56,93,44,91,45,56,57,46,57,49,48,55,48,56,44,50,57,46,56,54,55,56,54,53,93,44,91,45,56,57,46,56,56,49,53,57,57,44,50,57,46,57,56,54,50,93,44,91,45,56,57,46,54,56,51,50,51,44,51,48,46,48,55,54,52,48,54,93,44,91,45,56,57,46,54,50,53,48,53,52,44,51,48,46,49,53,51,52,57,51,93,44,91,45,56,57,46,55,57,55,52,49,52,44,51,48,46,49,54,48,55,53,55,93,44,91,45,56,57,46,57,48,51,50,51,52,44,51,48,46,49,57,56,54,54,93,44,91,45,57,48,46,49,48,56,49,49,57,44,51,48,46,49,54,52,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,57,56,57,50,44,34,98,101,100,115,34,58,52,55,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,57,53,51,54,54,52,44,51,51,46,56,49,53,50,57,55,93,44,91,45,56,55,46,48,50,51,50,56,54,44,51,51,46,55,55,50,55,50,55,93,44,91,45,56,55,46,48,57,50,55,51,51,44,51,51,46,54,50,55,56,53,93,44,91,45,56,55,46,49,55,57,52,51,44,51,51,46,54,49,51,55,57,52,93,44,91,45,56,55,46,50,54,54,57,50,51,44,51,51,46,53,49,50,57,50,57,93,44,91,45,56,55,46,50,56,52,51,54,51,44,51,51,46,52,52,48,53,55,56,93,44,91,45,56,55,46,49,55,57,54,51,56,44,51,51,46,51,50,49,49,49,50,93,44,91,45,56,55,46,48,54,53,55,51,56,44,51,51,46,50,52,54,57,48,55,93,44,91,45,56,55,46,48,50,54,56,52,54,44,51,51,46,50,52,54,52,53,57,93,44,91,45,56,54,46,54,55,52,52,49,56,44,51,51,46,52,54,54,53,50,49,93,44,91,45,56,54,46,53,49,54,55,56,51,44,51,51,46,53,52,53,56,57,54,93,44,91,45,56,54,46,53,50,53,48,55,51,44,51,51,46,55,50,49,50,51,54,93,44,91,45,56,54,46,53,55,55,55,57,57,44,51,51,46,55,54,53,51,49,54,93,44,91,45,56,54,46,55,53,57,49,52,52,44,51,51,46,56,52,48,54,49,55,93,44,91,45,56,54,46,57,53,51,54,54,52,44,51,51,46,56,49,53,50,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,87,97,108,107,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,52,52,57,51,44,34,98,101,100,115,34,58,50,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,51,53,57,51,50,44,51,51,46,57,49,53,50,53,49,93,44,91,45,56,55,46,53,51,49,54,48,50,44,51,51,46,56,54,55,54,49,56,93,44,91,45,56,55,46,53,50,56,51,51,56,44,51,51,46,54,57,50,48,52,57,93,44,91,45,56,55,46,52,50,51,56,52,51,44,51,51,46,54,56,57,49,49,50,93,44,91,45,56,55,46,52,50,51,55,48,49,44,51,51,46,54,48,50,48,57,54,93,44,91,45,56,55,46,51,49,56,53,51,50,44,51,51,46,53,56,55,51,57,51,93,44,91,45,56,55,46,50,54,54,57,50,51,44,51,51,46,53,49,50,57,50,57,93,44,91,45,56,55,46,49,55,57,52,51,44,51,51,46,54,49,51,55,57,52,93,44,91,45,56,55,46,48,57,50,55,51,51,44,51,51,46,54,50,55,56,53,93,44,91,45,56,55,46,48,50,51,50,56,54,44,51,51,46,55,55,50,55,50,55,93,44,91,45,56,54,46,57,53,51,54,54,52,44,51,51,46,56,49,53,50,57,55,93,44,91,45,56,54,46,57,54,51,51,53,56,44,51,51,46,56,53,56,50,50,49,93,44,91,45,56,55,46,49,53,49,48,51,54,44,51,51,46,57,57,51,50,50,53,93,44,91,45,56,55,46,54,51,54,49,49,56,44,51,52,46,48,48,50,50,48,51,93,44,91,45,56,55,46,54,51,53,57,51,50,44,51,51,46,57,49,53,50,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,68,101,75,97,108,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,53,54,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,48,53,51,55,55,44,52,48,46,48,51,57,50,49,55,93,44,91,45,57,52,46,54,48,50,56,51,44,51,57,46,56,49,57,57,48,54,93,44,91,45,57,52,46,54,48,50,50,53,55,44,51,57,46,55,52,55,49,57,53,93,44,91,45,57,52,46,50,48,53,57,54,49,44,51,57,46,55,52,53,56,52,49,93,44,91,45,57,52,46,50,48,53,56,52,52,44,51,57,46,55,56,56,57,53,52,93,44,91,45,57,52,46,50,49,56,56,44,52,48,46,48,51,52,56,56,53,93,44,91,45,57,52,46,54,48,53,51,55,55,44,52,48,46,48,51,57,50,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,71,97,100,115,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,48,49,55,44,34,98,101,100,115,34,58,57,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,44,91,45,56,52,46,56,56,50,54,49,54,44,51,48,46,53,51,51,48,57,52,93,44,91,45,56,52,46,54,52,54,52,48,56,44,51,48,46,51,56,56,50,56,49,93,44,91,45,56,52,46,52,50,48,52,55,52,44,51,48,46,52,54,51,57,48,53,93,44,91,45,56,52,46,50,56,50,53,53,57,44,51,48,46,54,56,53,51,51,52,93,44,91,45,56,52,46,51,56,48,55,48,53,44,51,48,46,54,56,57,57,57,51,93,44,91,45,56,52,46,56,54,51,52,54,53,44,51,48,46,55,49,49,52,57,52,93,44,91,45,56,52,46,56,54,52,54,57,51,44,51,48,46,55,49,49,53,52,50,93,44,91,45,56,52,46,57,51,50,53,49,57,44,51,48,46,54,48,54,51,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,51,34,44,34,78,65,77,69,34,58,34,68,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,50,55,44,34,98,101,100,115,34,58,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,53,56,51,49,52,53,44,51,52,46,56,54,48,51,55,49,93,44,91,45,56,53,46,53,51,52,48,56,57,44,51,52,46,54,50,51,56,53,56,93,44,91,45,56,53,46,52,53,48,52,48,57,44,51,52,46,55,53,57,50,52,49,93,44,91,45,56,53,46,52,53,48,53,54,49,44,51,52,46,56,51,49,54,55,55,93,44,91,45,56,53,46,51,54,51,57,49,57,44,51,52,46,57,56,51,51,55,53,93,44,91,45,56,53,46,52,55,52,48,55,51,44,51,52,46,57,56,51,48,50,93,44,91,45,56,53,46,54,48,53,49,54,53,44,51,52,46,57,56,52,54,55,56,93,44,91,45,56,53,46,53,56,51,49,52,53,44,51,52,46,56,54,48,51,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,68,101,83,111,116,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,49,51,50,44,34,98,101,100,115,34,58,53,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,48,52,53,51,50,44,51,52,46,56,54,48,53,56,56,93,44,91,45,57,48,46,50,48,50,49,50,54,44,51,52,46,56,54,48,51,55,52,93,44,91,45,57,48,46,50,48,48,49,57,57,44,51,52,46,55,50,52,52,49,56,93,44,91,45,57,48,46,48,50,57,49,52,52,44,51,52,46,55,48,56,49,55,54,93,44,91,45,56,57,46,57,48,56,53,56,55,44,51,52,46,55,55,50,54,52,49,93,44,91,45,56,57,46,55,50,51,52,52,50,44,51,52,46,55,55,50,51,49,49,93,44,91,45,56,57,46,55,50,52,51,50,52,44,51,52,46,57,57,52,55,57,93,44,91,45,57,48,46,51,48,57,50,56,57,44,51,52,46,57,57,53,54,57,52,93,44,91,45,57,48,46,50,52,54,49,49,54,44,51,52,46,57,52,52,51,49,54,93,44,91,45,57,48,46,51,48,52,53,51,50,44,51,52,46,56,54,48,53,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,87,97,114,114,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,52,52,57,44,34,98,101,100,115,34,58,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,49,52,48,56,44,51,57,46,48,48,55,57,57,52,93,44,91,45,55,56,46,51,48,48,52,49,52,44,51,56,46,57,52,51,53,57,50,93,44,91,45,55,56,46,51,57,52,55,48,52,44,51,56,46,56,50,50,55,57,93,44,91,45,55,56,46,50,56,52,56,48,53,44,51,56,46,55,53,57,51,49,53,93,44,91,45,55,56,46,49,51,48,53,55,52,44,51,56,46,56,54,52,56,54,53,93,44,91,45,55,56,46,48,48,52,51,49,51,44,51,56,46,57,55,57,52,51,56,93,44,91,45,55,56,46,49,53,49,54,49,52,44,51,57,46,48,51,54,54,50,57,93,44,91,45,55,56,46,51,49,52,48,56,44,51,57,46,48,48,55,57,57,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,69,100,119,97,114,100,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,48,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,52,55,56,48,51,44,51,56,46,53,54,57,48,51,55,93,44,91,45,56,56,46,49,53,48,56,57,49,44,51,56,46,50,53,54,49,53,54,93,44,91,45,56,55,46,57,57,48,54,50,56,44,51,56,46,50,53,57,54,50,57,93,44,91,45,56,55,46,57,52,51,48,51,52,44,51,56,46,52,52,57,50,49,54,93,44,91,45,56,55,46,57,53,52,54,55,53,44,51,56,46,53,55,48,50,51,93,44,91,45,56,56,46,49,52,55,56,48,51,44,51,56,46,53,54,57,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,51,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,55,54,56,50,44,34,98,101,100,115,34,58,57,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,49,54,49,56,49,44,51,53,46,55,57,55,51,48,55,93,44,91,45,56,57,46,48,54,57,53,52,52,44,51,53,46,54,57,50,54,55,57,93,44,91,45,56,57,46,48,55,56,56,55,54,44,51,53,46,52,51,49,52,50,56,93,44,91,45,56,56,46,56,52,49,54,48,55,44,51,53,46,52,50,55,56,50,54,93,44,91,45,56,56,46,54,55,53,56,54,55,44,51,53,46,52,56,57,49,54,51,93,44,91,45,56,56,46,54,49,51,54,49,49,44,51,53,46,53,56,56,48,56,57,93,44,91,45,56,56,46,54,48,54,56,54,50,44,51,53,46,55,56,57,51,53,52,93,44,91,45,56,56,46,55,48,54,56,49,49,44,51,53,46,55,57,49,48,55,53,93,44,91,45,56,56,46,57,49,54,49,56,49,44,51,53,46,55,57,55,51,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,82,97,110,100,111,108,112,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,55,52,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,54,52,51,52,56,50,44,51,51,46,52,57,53,56,56,53,93,44,91,45,56,53,46,54,53,51,54,53,52,44,51,51,46,49,48,54,54,51,52,93,44,91,45,56,53,46,53,57,51,49,55,55,44,51,51,46,49,48,55,51,52,93,44,91,45,56,53,46,50,51,50,51,55,56,44,51,51,46,49,48,56,48,55,55,93,44,91,45,56,53,46,50,51,54,53,49,56,44,51,51,46,49,50,57,53,53,57,93,44,91,45,56,53,46,50,57,51,56,48,53,44,51,51,46,52,50,56,48,57,56,93,44,91,45,56,53,46,51,48,52,52,51,57,44,51,51,46,52,56,50,56,56,52,93,44,91,45,56,53,46,54,52,51,52,56,50,44,51,51,46,52,57,53,56,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,65,115,104,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,55,56,54,44,34,98,101,100,115,34,58,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,55,55,52,57,44,51,54,46,53,56,56,49,51,55,93,44,91,45,56,49,46,55,50,56,55,56,49,44,51,54,46,51,57,49,51,48,57,93,44,91,45,56,49,46,52,55,55,53,49,54,44,51,54,46,50,52,48,50,53,93,44,91,45,56,49,46,50,53,51,54,52,57,44,51,54,46,51,54,54,54,48,49,93,44,91,45,56,49,46,51,53,51,50,53,57,44,51,54,46,53,55,52,54,57,50,93,44,91,45,56,49,46,54,55,55,52,57,44,51,54,46,53,56,56,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,68,111,108,111,114,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,55,46,56,54,48,56,52,53,44,51,55,46,55,55,53,53,49,55,93,44,91,45,49,48,55,46,57,56,57,50,48,56,44,51,55,46,56,53,54,54,52,93,44,91,45,49,48,56,46,50,48,57,48,57,51,44,51,55,46,56,50,48,57,51,54,93,44,91,45,49,48,56,46,50,53,54,52,57,56,44,51,55,46,56,57,52,54,48,55,93,44,91,45,49,48,56,46,56,49,54,55,49,44,51,55,46,56,57,53,53,51,56,93,44,91,45,49,48,57,46,48,52,49,57,57,50,44,51,55,46,56,56,49,48,56,51,93,44,91,45,49,48,57,46,48,52,51,51,54,54,44,51,55,46,52,56,52,56,49,56,93,44,91,45,49,48,56,46,57,49,55,48,56,49,44,51,55,46,54,51,49,57,48,50,93,44,91,45,49,48,55,46,57,55,48,48,56,54,44,51,55,46,54,51,57,53,56,55,93,44,91,45,49,48,55,46,56,54,48,56,52,53,44,51,55,46,55,55,53,53,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,76,105,99,107,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,50,50,57,51,44,34,98,101,100,115,34,58,50,54,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,55,54,49,56,50,55,44,52,48,46,49,50,53,56,53,53,93,44,91,45,56,50,46,55,56,50,52,57,53,44,51,57,46,57,51,57,54,54,50,93,44,91,45,56,50,46,52,54,50,56,49,51,44,51,57,46,57,51,48,51,56,93,44,91,45,56,50,46,50,51,51,57,55,52,44,51,57,46,57,49,51,50,54,93,44,91,45,56,50,46,49,57,56,55,55,50,44,51,57,46,57,53,48,49,52,93,44,91,45,56,50,46,49,56,55,49,48,53,44,52,48,46,49,54,54,56,56,93,44,91,45,56,50,46,49,57,53,57,49,49,44,52,48,46,50,51,57,48,55,49,93,44,91,45,56,50,46,52,55,55,50,55,51,44,52,48,46,50,52,53,56,49,93,44,91,45,56,50,46,55,53,48,55,52,55,44,52,48,46,50,55,54,57,57,54,93,44,91,45,56,50,46,55,54,49,56,50,55,44,52,48,46,49,50,53,56,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,56,51,34,44,34,78,65,77,69,34,58,34,77,97,110,97,115,115,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,52,53,55,44,34,98,101,100,115,34,58,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,55,53,55,54,44,51,56,46,55,56,49,49,55,49,93,44,91,45,55,55,46,52,57,57,52,51,44,51,56,46,55,51,55,49,51,55,93,44,91,45,55,55,46,52,53,49,54,52,50,44,51,56,46,55,51,56,51,51,55,93,44,91,45,55,55,46,52,53,56,54,57,53,44,51,56,46,55,55,50,51,49,57,93,44,91,45,55,55,46,52,55,53,55,54,44,51,56,46,55,56,49,49,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,55,51,50,44,34,98,101,100,115,34,58,49,54,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,55,56,52,54,57,44,51,51,46,51,55,55,50,56,93,44,91,45,57,50,46,57,56,56,55,48,55,44,51,51,46,48,49,55,52,51,51,93,44,91,45,57,50,46,55,50,52,55,52,44,51,51,46,48,49,52,51,57,93,44,91,45,57,50,46,48,54,57,49,48,53,44,51,51,46,48,48,56,49,54,51,93,44,91,45,57,50,46,49,51,55,53,50,55,44,51,51,46,49,54,50,57,53,54,93,44,91,45,57,50,46,51,53,48,52,51,50,44,51,51,46,50,57,56,57,52,49,93,44,91,45,57,50,46,52,52,49,54,55,55,44,51,51,46,50,55,51,54,52,55,93,44,91,45,57,50,46,53,54,55,49,53,54,44,51,51,46,51,54,55,50,93,44,91,45,57,50,46,57,55,56,52,54,57,44,51,51,46,51,55,55,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,72,101,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,57,52,56,57,56,57,44,52,49,46,48,55,48,50,53,93,44,91,45,57,48,46,57,54,50,57,49,54,44,52,48,46,57,50,52,57,53,55,93,44,91,45,57,49,46,48,57,54,57,52,54,44,52,48,46,56,49,49,52,48,51,93,44,91,45,57,49,46,49,49,50,52,54,55,44,52,48,46,54,57,54,51,48,49,93,44,91,45,57,49,46,49,56,53,50,57,53,44,52,48,46,54,51,55,56,48,51,93,44,91,45,57,48,46,57,48,52,50,49,54,44,52,48,46,54,51,57,50,48,49,93,44,91,45,57,48,46,55,56,57,54,53,50,44,52,48,46,54,51,53,55,53,93,44,91,45,57,48,46,55,56,53,49,57,52,44,52,49,46,48,54,56,55,52,57,93,44,91,45,57,48,46,57,52,56,57,56,57,44,52,49,46,48,55,48,50,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,54,57,52,49,44,34,98,101,100,115,34,58,49,50,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,57,54,55,55,52,44,51,50,46,51,52,52,52,51,55,93,44,91,45,56,54,46,52,48,56,55,55,49,44,51,50,46,50,52,52,51,48,57,93,44,91,45,56,54,46,52,48,54,50,55,54,44,51,50,46,48,53,48,55,51,49,93,44,91,45,56,54,46,51,48,50,50,49,55,44,51,49,46,57,54,53,48,54,53,93,44,91,45,56,54,46,49,57,49,51,55,57,44,51,49,46,57,54,54,52,53,51,93,44,91,45,56,53,46,57,57,53,53,54,51,44,51,49,46,57,54,55,53,53,52,93,44,91,45,56,53,46,57,57,54,56,53,51,44,51,50,46,48,53,49,48,52,57,93,44,91,45,56,53,46,57,57,57,49,53,55,44,51,50,46,50,53,48,53,52,51,93,44,91,45,56,53,46,57,49,57,50,57,51,44,51,50,46,50,55,52,51,56,50,93,44,91,45,56,54,46,48,50,51,48,49,50,44,51,50,46,52,49,57,57,55,56,93,44,91,45,56,54,46,49,49,54,51,50,57,44,51,50,46,52,49,55,48,50,54,93,44,91,45,56,54,46,50,51,55,48,54,56,44,51,50,46,52,57,52,57,56,93,44,91,45,56,54,46,52,49,49,49,55,50,44,51,50,46,52,48,57,57,51,55,93,44,91,45,56,54,46,52,57,54,55,55,52,44,51,50,46,51,52,52,52,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,114,97,112,97,104,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,54,54,55,49,44,34,98,101,100,115,34,58,49,50,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,52,56,55,52,44,51,57,46,53,54,54,48,56,56,93,44,91,45,49,48,52,46,54,54,48,54,50,54,44,51,57,46,53,54,53,57,48,57,93,44,91,45,49,48,51,46,55,49,52,51,53,53,44,51,57,46,53,54,54,51,51,49,93,44,91,45,49,48,51,46,55,48,55,48,55,50,44,51,57,46,53,54,54,50,57,53,93,44,91,45,49,48,51,46,55,48,54,53,52,55,44,51,57,46,55,51,57,56,57,52,93,44,91,45,49,48,52,46,56,56,52,54,52,54,44,51,57,46,55,52,48,49,53,54,93,44,91,45,49,48,53,46,48,53,51,52,49,49,44,51,57,46,54,51,49,53,56,54,93,44,91,45,49,48,53,46,48,53,51,52,53,55,44,51,57,46,54,50,57,53,50,54,93,44,91,45,49,48,53,46,48,53,51,51,51,44,51,57,46,54,50,55,57,56,57,93,44,91,45,49,48,53,46,48,53,51,52,51,57,44,51,57,46,54,50,52,51,56,55,93,44,91,45,49,48,53,46,48,53,51,52,51,55,44,51,57,46,54,50,48,57,56,52,93,44,91,45,49,48,53,46,48,52,56,55,52,44,51,57,46,53,54,54,48,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,77,97,114,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,57,50,51,50,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,51,48,49,55,50,44,51,55,46,54,51,49,50,55,93,44,91,45,56,53,46,50,53,55,50,57,56,44,51,55,46,54,51,48,57,48,51,93,44,91,45,56,53,46,52,48,49,55,56,52,44,51,55,46,55,51,48,54,53,56,93,44,91,45,56,53,46,53,50,49,50,57,44,51,55,46,53,53,52,51,52,51,93,44,91,45,56,53,46,52,54,54,50,53,44,51,55,46,52,54,53,53,57,53,93,44,91,45,56,53,46,51,52,49,50,50,44,51,55,46,52,54,57,52,53,56,93,44,91,45,56,53,46,50,52,54,55,53,57,44,51,55,46,52,50,48,50,48,53,93,44,91,45,56,53,46,49,54,57,53,54,53,44,51,55,46,52,54,52,48,48,52,93,44,91,45,56,53,46,48,55,51,55,55,50,44,51,55,46,52,49,51,54,54,57,93,44,91,45,56,53,46,48,51,57,54,55,52,44,51,55,46,53,52,53,50,51,50,93,44,91,45,56,53,46,48,51,48,49,55,50,44,51,55,46,54,51,49,50,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,83,107,97,103,105,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,51,57,48,55,44,34,98,101,100,115,34,58,50,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,55,51,53,50,51,49,44,52,56,46,52,48,53,57,51,50,93,44,91,45,49,50,50,46,53,57,49,57,52,52,44,52,56,46,52,49,55,55,53,56,93,44,91,45,49,50,50,46,52,53,56,53,57,54,44,52,56,46,50,57,55,55,48,51,93,44,91,45,49,50,49,46,48,48,49,54,53,56,44,52,56,46,50,57,54,48,48,57,93,44,91,45,49,50,49,46,48,54,50,52,53,44,52,56,46,52,54,48,51,54,55,93,44,91,45,49,50,48,46,56,53,55,52,50,55,44,52,56,46,53,52,55,54,55,54,93,44,91,45,49,50,48,46,55,48,50,48,54,57,44,52,56,46,53,51,49,53,56,57,93,44,91,45,49,50,48,46,55,53,49,57,48,52,44,52,56,46,54,53,55,48,48,50,93,44,91,45,49,50,49,46,50,54,49,54,51,56,44,52,56,46,54,52,48,57,49,50,93,44,91,45,49,50,50,46,55,49,51,55,48,52,44,52,56,46,54,52,53,49,51,93,44,91,45,49,50,50,46,55,54,52,52,48,52,44,52,56,46,54,48,48,53,55,55,93,44,91,45,49,50,50,46,55,51,53,50,51,49,44,52,56,46,52,48,53,57,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,74,111,110,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,52,53,52,44,34,98,101,100,115,34,58,50,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,52,51,51,53,53,44,51,49,46,56,50,52,53,54,53,93,44,91,45,56,57,46,51,49,54,53,54,44,51,49,46,56,48,50,48,57,93,44,91,45,56,57,46,52,48,49,50,50,55,44,51,49,46,55,57,54,56,54,51,93,44,91,45,56,57,46,51,57,57,49,55,56,44,51,49,46,52,51,52,48,50,57,93,44,91,45,56,57,46,49,52,54,48,57,50,44,51,49,46,52,51,52,48,53,50,93,44,91,45,56,56,46,57,52,51,52,54,56,44,51,49,46,52,51,51,52,53,56,93,44,91,45,56,56,46,57,52,51,51,53,53,44,51,49,46,56,50,52,53,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,57,53,52,44,34,98,101,100,115,34,58,57,56,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,55,56,53,56,48,57,44,52,51,46,54,52,49,48,52,57,93,44,91,45,56,57,46,55,50,55,55,56,56,44,52,51,46,53,54,57,52,55,56,93,44,91,45,56,57,46,53,57,57,51,53,55,44,52,51,46,53,53,56,48,52,49,93,44,91,45,56,57,46,54,48,48,55,51,44,52,51,46,51,56,48,54,54,54,93,44,91,45,56,57,46,55,50,48,52,54,51,44,52,51,46,50,57,51,48,56,52,93,44,91,45,56,57,46,48,48,57,49,51,57,44,52,51,46,50,56,52,56,51,93,44,91,45,56,57,46,48,48,54,56,52,56,44,52,51,46,54,51,51,48,52,53,93,44,91,45,56,57,46,50,52,53,52,51,55,44,52,51,46,54,52,51,48,56,51,93,44,91,45,56,57,46,53,57,57,53,52,55,44,52,51,46,54,52,50,54,51,54,93,44,91,45,56,57,46,55,56,52,57,48,49,44,52,51,46,54,52,49,48,53,49,93,44,91,45,56,57,46,55,56,53,56,48,57,44,52,51,46,54,52,49,48,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,114,117,110,115,119,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,54,56,54,48,44,34,98,101,100,115,34,58,49,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,49,54,50,51,53,44,51,52,46,51,53,55,48,48,55,93,44,91,45,55,56,46,50,53,52,54,50,50,44,51,52,46,50,49,54,51,48,53,93,44,91,45,55,56,46,51,55,52,50,57,53,44,51,52,46,50,48,52,56,57,51,93,44,91,45,55,56,46,53,53,53,48,52,51,44,51,52,46,48,54,55,48,55,49,93,44,91,45,55,56,46,54,53,48,51,49,52,44,51,51,46,57,52,52,51,52,50,93,44,91,45,55,56,46,52,57,57,51,48,49,44,51,51,46,56,49,50,56,53,50,93,44,91,45,55,56,46,50,54,50,51,51,53,44,51,51,46,56,54,51,49,54,51,93,44,91,45,55,56,46,48,54,54,53,56,49,44,51,51,46,56,52,55,57,56,53,93,44,91,45,55,55,46,57,54,52,48,53,50,44,51,51,46,55,53,50,56,57,57,93,44,91,45,55,55,46,56,57,55,48,49,49,44,51,51,46,55,56,54,56,93,44,91,45,55,55,46,57,52,56,52,55,57,44,51,51,46,57,55,49,50,55,52,93,44,91,45,55,55,46,57,53,54,54,48,53,44,51,52,46,50,51,52,52,57,49,93,44,91,45,55,56,46,48,50,57,57,50,50,44,51,52,46,51,51,49,55,54,56,93,44,91,45,55,56,46,49,54,50,51,53,44,51,52,46,51,53,55,48,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,108,101,97,114,119,97,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,49,50,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,53,56,50,49,53,53,44,52,55,46,57,51,51,57,54,54,93,44,91,45,57,53,46,53,53,52,50,52,56,44,52,55,46,52,57,57,56,57,51,93,44,91,45,57,53,46,53,53,49,49,56,54,44,52,55,46,49,53,49,52,53,51,93,44,91,45,57,53,46,49,54,57,49,55,50,44,52,55,46,49,53,50,53,49,53,93,44,91,45,57,53,46,49,56,51,50,49,54,44,52,55,46,52,49,50,55,55,51,93,44,91,45,57,53,46,49,57,51,55,48,53,44,52,55,46,56,55,50,53,52,52,93,44,91,45,57,53,46,50,55,55,56,51,52,44,52,55,46,57,50,53,51,52,54,93,44,91,45,57,53,46,50,50,57,49,51,51,44,52,56,46,48,49,57,57,53,56,93,44,91,45,57,53,46,53,56,50,56,56,55,44,52,56,46,48,50,48,53,53,55,93,44,91,45,57,53,46,53,56,50,49,53,53,44,52,55,46,57,51,51,57,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,78,111,114,116,104,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,49,52,48,56,51,53,44,51,55,46,53,52,50,50,50,93,44,91,45,55,54,46,49,51,54,51,48,49,44,51,55,46,50,56,50,49,51,55,93,44,91,45,55,54,46,49,51,53,53,50,44,51,55,46,49,57,49,57,55,93,44,91,45,55,54,46,49,51,52,57,52,49,44,51,55,46,49,49,55,54,48,51,93,44,91,45,55,54,46,49,51,51,56,55,50,44,51,55,46,48,52,48,56,56,54,93,44,91,45,55,53,46,57,48,57,52,57,49,44,51,54,46,57,57,48,55,48,56,93,44,91,45,55,53,46,56,56,57,54,55,54,44,51,55,46,48,53,52,53,49,53,93,44,91,45,55,53,46,55,52,52,54,51,57,44,51,55,46,49,56,50,51,52,57,93,44,91,45,55,53,46,55,49,53,53,49,53,44,51,55,46,50,55,53,54,56,55,93,44,91,45,55,53,46,53,57,55,52,52,49,44,51,55,46,52,53,48,57,56,56,93,44,91,45,55,53,46,55,56,55,48,51,44,51,55,46,52,54,52,53,55,56,93,44,91,45,55,53,46,56,51,53,50,49,52,44,51,55,46,53,53,52,50,52,53,93,44,91,45,55,54,46,49,52,48,56,51,53,44,51,55,46,53,52,50,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,82,111,111,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,48,50,49,55,54,44,51,57,46,53,54,55,51,50,56,93,44,91,45,57,57,46,54,48,53,49,56,55,44,51,57,46,49,51,50,52,56,49,93,44,91,45,57,57,46,53,57,49,55,55,54,44,51,57,46,49,51,50,51,53,55,93,44,91,45,57,57,46,48,52,55,54,56,55,44,51,57,46,49,51,51,48,49,52,93,44,91,45,57,57,46,48,52,52,51,57,56,44,51,57,46,53,54,56,48,51,53,93,44,91,45,57,57,46,48,54,54,50,50,44,51,57,46,53,54,56,49,50,53,93,44,91,45,57,57,46,54,48,50,49,55,54,44,51,57,46,53,54,55,51,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,50,53,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,48,49,53,56,52,44,51,57,46,55,56,55,53,55,57,93,44,91,45,56,53,46,50,57,56,49,49,44,51,57,46,53,50,53,52,55,54,93,44,91,45,56,53,46,48,51,54,48,56,55,44,51,57,46,53,50,54,50,49,51,93,44,91,45,56,53,46,48,51,52,53,55,53,44,51,57,46,55,49,52,55,54,52,93,44,91,45,56,53,46,49,56,53,48,56,57,44,51,57,46,55,49,53,53,49,53,93,44,91,45,56,53,46,50,50,49,49,49,56,44,51,57,46,55,56,56,52,52,57,93,44,91,45,56,53,46,51,48,49,53,56,52,44,51,57,46,55,56,55,53,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,72,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,51,52,51,44,34,98,101,100,115,34,58,49,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,55,50,49,57,55,53,44,52,49,46,48,52,54,54,55,52,93,44,91,45,57,56,46,55,50,49,52,51,44,52,48,46,54,57,56,57,48,51,93,44,91,45,57,56,46,50,56,50,56,53,49,44,52,48,46,54,57,56,50,56,52,93,44,91,45,57,56,46,50,56,50,53,55,56,44,52,48,46,56,54,56,54,55,55,93,44,91,45,57,56,46,50,56,55,49,54,56,44,52,49,46,48,52,54,51,54,51,93,44,91,45,57,56,46,55,50,49,57,55,53,44,52,49,46,48,52,54,54,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,49,34,44,34,78,65,77,69,34,58,34,72,97,109,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,49,55,56,44,34,98,101,100,115,34,58,49,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,56,50,53,55,56,44,52,48,46,56,54,56,54,55,55,93,44,91,45,57,56,46,50,56,50,56,53,49,44,52,48,46,54,57,56,50,56,52,93,44,91,45,57,56,46,50,55,56,49,48,51,44,52,48,46,54,57,56,50,57,49,93,44,91,45,57,55,46,56,50,53,55,50,51,44,52,48,46,54,57,56,53,53,53,93,44,91,45,57,55,46,56,50,54,50,56,55,44,52,49,46,48,52,54,53,56,49,93,44,91,45,57,55,46,56,50,56,50,53,54,44,52,49,46,49,55,51,52,51,57,93,44,91,45,57,56,46,48,49,48,53,52,56,44,52,49,46,48,55,50,55,54,49,93,44,91,45,57,56,46,50,56,50,53,55,56,44,52,48,46,56,54,56,54,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,76,111,117,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,51,52,54,50,57,44,52,50,46,48,56,55,57,57,53,93,44,91,45,57,57,46,54,54,50,51,55,57,44,52,50,46,48,56,54,48,48,57,93,44,91,45,57,57,46,54,56,54,57,53,57,44,52,50,46,48,56,54,48,55,53,93,44,91,45,57,57,46,54,56,54,56,51,52,44,52,49,46,55,52,48,51,50,54,93,44,91,45,57,57,46,50,50,49,56,51,44,52,49,46,55,52,48,55,57,50,93,44,91,45,57,57,46,50,50,50,55,51,51,44,52,50,46,48,56,55,57,49,54,93,44,91,45,57,57,46,50,51,52,54,50,57,44,52,50,46,48,56,55,57,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,83,104,101,114,105,100,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,52,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,48,53,55,54,52,50,44,52,56,46,57,57,57,48,49,50,93,44,91,45,49,48,53,46,48,51,56,53,52,56,44,52,56,46,54,53,48,48,57,57,93,44,91,45,49,48,52,46,57,55,51,51,53,52,44,52,56,46,53,54,51,49,57,93,44,91,45,49,48,52,46,55,53,55,54,49,57,44,52,56,46,53,54,51,49,50,55,93,44,91,45,49,48,52,46,54,50,55,55,50,54,44,52,56,46,52,55,54,51,52,57,93,44,91,45,49,48,52,46,54,50,55,55,54,44,52,56,46,51,56,57,51,54,50,93,44,91,45,49,48,52,46,48,52,54,55,54,54,44,52,56,46,51,56,57,50,57,56,93,44,91,45,49,48,52,46,48,52,55,57,50,52,44,52,56,46,54,51,51,57,49,49,93,44,91,45,49,48,52,46,48,52,56,54,56,57,44,52,56,46,57,57,57,53,57,51,93,44,91,45,49,48,53,46,48,53,55,54,52,50,44,52,56,46,57,57,57,48,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,70,114,111,110,116,105,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,48,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,55,55,55,56,51,51,44,52,48,46,55,48,48,49,51,53,93,44,91,45,49,48,48,46,55,55,55,51,55,54,44,52,48,46,51,52,57,52,54,54,93,44,91,45,49,48,48,46,55,53,56,52,51,53,44,52,48,46,51,52,57,53,48,55,93,44,91,45,49,48,48,46,49,57,55,56,48,55,44,52,48,46,51,53,48,48,50,55,93,44,91,45,49,48,48,46,48,57,52,55,57,56,44,52,48,46,51,53,49,50,52,53,93,44,91,45,57,57,46,57,56,49,49,57,51,44,52,48,46,52,51,56,50,57,49,93,44,91,45,57,57,46,57,56,49,55,52,51,44,52,48,46,55,48,48,48,48,51,93,44,91,45,49,48,48,46,50,50,51,51,49,49,44,52,48,46,55,48,48,50,53,52,93,44,91,45,49,48,48,46,55,55,55,56,51,51,44,52,48,46,55,48,48,49,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,55,50,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,55,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,76,117,113,117,105,108,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,117,101,114,116,111,32,82,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,52,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,53,46,55,49,51,56,50,53,44,49,56,46,52,52,52,48,50,52,93,44,91,45,54,53,46,55,53,56,56,54,49,44,49,56,46,50,57,48,54,48,52,93,44,91,45,54,53,46,55,53,51,53,57,49,44,49,56,46,50,57,54,55,53,53,93,44,91,45,54,53,46,54,56,53,57,50,44,49,56,46,51,50,57,57,57,49,93,44,91,45,54,53,46,54,52,54,48,56,51,44,49,56,46,52,52,50,50,50,93,44,91,45,54,53,46,55,49,51,56,50,53,44,49,56,46,52,52,52,48,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,55,34,44,34,78,65,77,69,34,58,34,66,105,98,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,53,50,55,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,48,54,53,55,51,56,44,51,51,46,50,52,54,57,48,55,93,44,91,45,56,55,46,50,56,49,57,52,53,44,51,51,46,49,51,51,48,54,93,44,91,45,56,55,46,51,49,56,53,51,57,44,51,51,46,48,48,54,49,55,57,93,44,91,45,56,55,46,52,50,49,57,51,54,44,51,51,46,48,48,51,51,55,57,93,44,91,45,56,55,46,52,50,49,50,44,51,50,46,56,55,52,53,48,56,93,44,91,45,56,55,46,51,49,57,49,56,52,44,51,50,46,56,51,49,53,50,50,93,44,91,45,56,55,46,48,49,57,49,53,55,44,51,50,46,56,51,55,48,51,52,93,44,91,45,56,54,46,56,55,54,49,49,56,44,51,50,46,56,51,54,50,54,52,93,44,91,45,56,54,46,56,56,49,49,56,50,44,51,51,46,48,52,57,57,48,49,93,44,91,45,56,55,46,48,50,53,53,57,54,44,51,51,46,49,54,53,55,57,53,93,44,91,45,56,55,46,48,50,54,56,52,54,44,51,51,46,50,52,54,52,53,57,93,44,91,45,56,55,46,48,54,53,55,51,56,44,51,51,46,50,52,54,57,48,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,97,117,100,101,114,100,97,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,55,51,50,51,44,34,98,101,100,115,34,58,57,48,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,57,49,52,53,49,54,44,51,50,46,53,55,54,57,53,53,93,44,91,45,56,56,46,57,49,51,56,52,55,44,51,50,46,50,50,52,49,56,54,93,44,91,45,56,56,46,52,51,49,51,55,57,44,51,50,46,50,50,55,54,54,54,93,44,91,45,56,56,46,52,50,49,52,53,51,44,51,50,46,51,48,56,54,56,93,44,91,45,56,56,46,51,56,56,55,57,55,44,51,50,46,53,55,56,49,50,51,93,44,91,45,56,56,46,57,49,52,53,49,54,44,51,50,46,53,55,54,57,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,105,103,32,83,116,111,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,49,54,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,56,51,53,52,53,49,44,52,53,46,53,56,54,49,50,57,93,44,91,45,57,54,46,54,56,48,52,53,52,44,52,53,46,52,49,48,52,57,57,93,44,91,45,57,54,46,52,55,48,52,55,53,44,52,53,46,51,50,54,53,52,53,93,44,91,45,57,54,46,52,53,50,57,52,55,44,52,53,46,50,54,56,57,50,53,93,44,91,45,57,54,46,50,56,51,49,57,53,44,52,53,46,50,52,54,51,57,49,93,44,91,45,57,54,46,49,48,51,54,49,52,44,52,53,46,49,55,54,54,55,53,93,44,91,45,57,54,46,49,49,55,48,51,54,44,52,53,46,52,49,49,57,57,51,93,44,91,45,57,54,46,50,52,49,51,50,56,44,52,53,46,52,49,50,54,54,55,93,44,91,45,57,54,46,50,53,51,48,50,54,44,52,53,46,53,56,53,53,50,54,93,44,91,45,57,54,46,56,51,53,52,53,49,44,52,53,46,53,56,54,49,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,108,117,101,32,69,97,114,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,51,50,50,44,34,98,101,100,115,34,58,50,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,51,55,49,55,51,49,44,52,52,46,50,54,52,52,52,56,93,44,91,45,57,52,46,51,54,56,56,53,44,52,52,46,49,48,56,54,57,56,93,44,91,45,57,52,46,51,54,56,57,55,52,44,52,51,46,56,52,56,48,52,55,93,44,91,45,57,52,46,50,52,55,49,50,51,44,52,51,46,56,52,55,57,52,54,93,44,91,45,57,51,46,55,54,55,55,54,49,44,52,51,46,56,52,55,57,53,54,93,44,91,45,57,51,46,55,54,55,57,55,49,44,52,52,46,49,57,53,56,51,54,93,44,91,45,57,52,46,48,49,49,56,54,56,44,52,52,46,50,51,57,53,50,93,44,91,45,57,52,46,48,53,54,55,53,55,44,52,52,46,49,53,52,54,49,55,93,44,91,45,57,52,46,51,55,49,55,51,49,44,52,52,46,50,54,52,52,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,72,105,103,104,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,55,57,53,57,50,49,44,51,56,46,50,54,53,53,53,50,93,44,91,45,55,57,46,53,49,50,49,53,56,44,51,56,46,49,56,48,52,49,57,93,44,91,45,55,57,46,52,51,51,54,55,44,51,56,46,50,50,57,52,57,51,93,44,91,45,55,57,46,51,49,50,50,55,54,44,51,56,46,52,49,49,56,55,54,93,44,91,45,55,57,46,52,55,54,54,51,56,44,51,56,46,52,53,55,50,50,56,93,44,91,45,55,57,46,53,51,54,56,55,44,51,56,46,53,53,48,57,49,55,93,44,91,45,55,57,46,54,52,57,48,55,53,44,51,56,46,53,57,49,53,49,53,93,44,91,45,55,57,46,54,56,57,54,54,55,44,51,56,46,52,51,49,52,54,50,93,44,91,45,55,57,46,55,57,53,57,50,49,44,51,56,46,50,54,53,53,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,83,112,111,116,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,52,49,50,44,34,98,101,100,115,34,58,49,48,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,55,48,50,56,52,51,44,51,56,46,51,54,48,56,52,93,44,91,45,55,55,46,57,53,51,54,51,57,44,51,56,46,49,49,56,53,48,49,93,44,91,45,55,55,46,56,51,57,55,49,55,44,51,56,46,49,48,54,48,51,56,93,44,91,45,55,55,46,54,56,55,52,54,57,44,51,56,46,48,48,55,56,48,54,93,44,91,45,55,55,46,54,52,50,53,49,56,44,51,55,46,57,57,48,54,56,56,93,44,91,45,55,55,46,51,55,48,50,57,55,44,51,56,46,50,52,54,53,55,54,93,44,91,45,55,55,46,52,52,55,49,50,54,44,51,56,46,50,56,52,54,49,52,93,44,91,45,55,55,46,53,51,48,50,56,51,44,51,56,46,51,48,57,49,55,53,93,44,91,45,55,55,46,54,49,56,55,50,55,44,51,56,46,51,54,55,56,51,53,93,44,91,45,55,55,46,55,48,50,56,52,51,44,51,56,46,51,54,48,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,83,116,114,97,102,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,56,50,51,55,44,34,98,101,100,115,34,58,50,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,49,54,50,54,55,53,44,52,51,46,53,51,56,57,53,57,93,44,91,45,55,49,46,49,53,57,51,54,52,44,52,51,46,51,53,53,49,50,51,93,44,91,45,55,49,46,50,51,54,48,49,49,44,52,51,46,50,56,52,57,57,52,93,44,91,45,55,49,46,50,52,55,51,51,54,44,52,51,46,50,55,53,50,51,50,93,44,91,45,55,49,46,48,50,54,54,56,54,44,52,51,46,49,51,55,57,52,55,93,44,91,45,55,48,46,56,55,53,52,51,54,44,52,51,46,48,56,48,52,50,50,93,44,91,45,55,48,46,56,50,48,48,49,57,44,52,51,46,49,50,50,53,52,53,93,44,91,45,55,48,46,56,49,56,49,57,53,44,52,51,46,50,51,56,51,51,93,44,91,45,55,48,46,57,55,56,49,49,53,44,52,51,46,51,53,56,57,49,52,93,44,91,45,55,48,46,57,54,50,49,53,52,44,52,51,46,53,52,49,48,56,55,93,44,91,45,55,49,46,49,54,50,54,55,53,44,52,51,46,53,51,56,57,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,72,111,117,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,49,54,56,50,44,34,98,101,100,115,34,58,50,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,55,48,49,48,57,44,51,50,46,54,57,49,53,57,56,93,44,91,45,56,51,46,55,49,57,56,53,57,44,51,50,46,53,51,49,55,54,93,44,91,45,56,51,46,56,52,54,54,55,54,44,51,50,46,52,54,56,53,49,52,93,44,91,45,56,51,46,56,52,56,51,55,57,44,51,50,46,50,57,48,57,55,93,44,91,45,56,51,46,54,49,53,53,55,57,44,51,50,46,50,56,56,53,53,54,93,44,91,45,56,51,46,52,57,56,48,51,57,44,51,50,46,52,48,49,55,49,53,93,44,91,45,56,51,46,52,57,55,57,50,51,44,51,50,46,52,53,50,49,57,56,93,44,91,45,56,51,46,53,57,55,54,53,54,44,51,50,46,54,54,52,51,51,56,93,44,91,45,56,51,46,55,48,49,49,53,50,44,51,50,46,54,57,50,49,54,57,93,44,91,45,56,51,46,55,48,49,48,57,44,51,50,46,54,57,49,53,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,68,101,108,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,49,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,54,55,56,52,57,44,52,53,46,57,56,53,51,50,49,93,44,91,45,56,55,46,51,50,53,51,57,49,44,52,53,46,56,57,56,54,54,53,93,44,91,45,56,55,46,51,50,55,53,48,50,44,52,53,46,53,53,49,50,53,93,44,91,45,56,55,46,49,50,57,49,49,56,44,52,53,46,53,53,48,52,56,53,93,44,91,45,56,55,46,49,50,55,56,50,54,44,52,53,46,52,48,57,52,56,55,93,44,91,45,56,55,46,49,48,49,49,51,51,44,52,53,46,52,52,52,50,51,93,44,91,45,56,54,46,55,53,52,50,51,54,44,52,53,46,52,52,51,54,49,93,44,91,45,56,54,46,52,54,52,49,50,44,52,53,46,51,50,52,56,49,93,44,91,45,56,54,46,52,54,48,55,57,55,44,52,53,46,53,56,52,52,51,51,93,44,91,45,56,54,46,52,53,57,49,49,52,44,52,53,46,56,57,54,51,54,51,93,44,91,45,56,54,46,52,57,48,49,52,50,44,52,54,46,49,53,56,49,55,56,93,44,91,45,56,54,46,54,49,53,54,48,49,44,52,54,46,49,53,56,54,57,49,93,44,91,45,56,55,46,49,49,54,49,51,56,44,52,54,46,49,53,57,48,53,93,44,91,45,56,55,46,50,52,49,53,48,54,44,52,54,46,49,53,57,49,48,51,93,44,91,45,56,55,46,50,52,50,56,56,53,44,52,53,46,57,56,53,49,49,55,93,44,91,45,56,55,46,51,54,55,56,52,57,44,52,53,46,57,56,53,51,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,49,34,44,34,78,65,77,69,34,58,34,83,101,98,97,115,116,105,97,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,52,54,49,44,34,98,101,100,115,34,58,49,48,55,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,51,53,53,57,44,51,53,46,51,56,54,49,50,50,93,44,91,45,57,52,46,52,52,55,55,55,52,44,51,52,46,57,51,51,57,51,55,93,44,91,45,57,52,46,50,51,48,53,50,52,44,51,52,46,57,54,56,53,50,55,93,44,91,45,57,52,46,50,50,56,50,50,54,44,51,53,46,48,55,49,57,53,53,93,44,91,45,57,52,46,49,52,48,53,55,49,44,51,53,46,48,57,57,54,55,56,93,44,91,45,57,52,46,48,51,49,50,51,54,44,51,53,46,49,52,48,57,48,56,93,44,91,45,57,52,46,48,50,56,56,56,54,44,51,53,46,50,49,51,56,52,49,93,44,91,45,57,52,46,48,56,50,55,57,56,44,51,53,46,50,49,53,57,49,51,93,44,91,45,57,52,46,48,55,52,56,57,53,44,51,53,46,52,52,53,52,48,51,93,44,91,45,57,52,46,50,56,57,51,51,50,44,51,53,46,51,52,53,50,49,49,93,44,91,45,57,52,46,52,51,49,48,52,53,44,51,53,46,51,57,51,55,51,53,93,44,91,45,57,52,46,52,51,53,53,57,44,51,53,46,51,56,54,49,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,55,34,44,34,78,65,77,69,34,58,34,83,97,110,116,97,32,67,114,117,122,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,51,55,54,53,44,34,98,101,100,115,34,58,51,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,49,53,50,50,55,56,44,51,55,46,50,56,54,48,53,53,93,44,91,45,49,50,50,46,49,53,50,55,55,52,44,51,55,46,50,49,53,52,52,52,93,44,91,45,49,50,50,46,51,49,55,54,56,50,44,51,55,46,49,56,54,57,52,53,93,44,91,45,49,50,50,46,51,49,51,56,57,57,44,51,55,46,48,53,52,55,54,52,93,44,91,45,49,50,50,46,50,53,49,48,56,50,44,51,54,46,57,56,53,56,51,51,93,44,91,45,49,50,50,46,48,55,54,51,57,57,44,51,54,46,57,49,48,49,57,57,93,44,91,45,49,50,50,46,48,53,49,56,55,56,44,51,54,46,56,49,57,54,93,44,91,45,49,50,49,46,54,52,52,48,48,49,44,51,54,46,56,57,51,57,57,54,93,44,91,45,49,50,49,46,53,56,49,51,53,52,44,51,54,46,56,57,57,49,53,50,93,44,91,45,49,50,49,46,55,53,55,54,44,51,55,46,48,52,57,54,51,93,44,91,45,49,50,50,46,48,50,54,49,48,55,44,51,55,46,49,54,54,56,49,93,44,91,45,49,50,50,46,49,53,50,50,55,56,44,51,55,46,50,56,54,48,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,49,34,44,34,78,65,77,69,34,58,34,77,99,73,110,116,111,115,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,50,52,50,57,44,51,49,46,52,53,50,57,56,50,93,44,91,45,56,49,46,52,51,53,56,55,52,44,51,49,46,51,49,51,50,54,51,93,44,91,45,56,49,46,49,56,51,55,49,54,44,51,49,46,50,57,52,50,56,51,93,44,91,45,56,49,46,49,57,48,55,53,56,44,51,49,46,51,57,57,56,55,54,93,44,91,45,56,49,46,48,57,53,51,56,51,44,51,49,46,53,50,48,57,56,49,93,44,91,45,56,49,46,49,55,53,49,52,56,44,51,49,46,53,51,57,54,54,93,44,91,45,56,49,46,50,54,49,56,54,56,44,51,49,46,54,53,48,49,52,50,93,44,91,45,56,49,46,52,51,53,55,54,44,51,49,46,54,52,50,48,53,53,93,44,91,45,56,49,46,52,57,49,55,57,56,44,51,49,46,54,57,57,53,55,53,93,44,91,45,56,49,46,53,54,54,48,48,57,44,51,49,46,53,55,54,52,54,55,93,44,91,45,56,49,46,54,54,51,50,48,54,44,51,49,46,53,51,56,54,54,55,93,44,91,45,56,49,46,54,50,52,50,57,44,51,49,46,52,53,50,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,50,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,55,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,48,49,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,48,52,49,52,57,56,44,51,51,46,50,48,50,54,50,57,93,44,91,45,56,52,46,48,52,52,49,49,51,44,51,50,46,57,52,55,56,55,52,93,44,91,45,56,52,46,49,50,51,51,52,44,51,50,46,57,51,50,49,56,52,93,44,91,45,56,52,46,49,50,52,50,55,53,44,51,50,46,56,52,57,53,54,50,93,44,91,45,56,51,46,56,57,49,57,50,50,44,51,50,46,56,52,56,51,53,49,93,44,91,45,56,51,46,55,49,48,54,56,53,44,51,50,46,57,53,50,55,57,50,93,44,91,45,56,51,46,56,49,54,48,52,56,44,51,51,46,49,51,49,56,49,54,93,44,91,45,56,51,46,56,50,50,50,54,49,44,51,51,46,49,56,48,50,51,56,93,44,91,45,56,52,46,48,52,49,52,57,56,44,51,51,46,50,48,50,54,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,68,117,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,52,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,50,48,55,51,50,44,51,54,46,52,57,55,56,53,57,93,44,91,45,57,48,46,48,54,51,53,57,52,44,51,54,46,51,56,52,50,51,53,93,44,91,45,57,48,46,49,50,53,52,56,55,44,51,54,46,50,51,49,50,51,50,93,44,91,45,57,48,46,49,57,48,50,48,55,44,51,54,46,50,48,49,51,54,49,93,44,91,45,57,48,46,51,55,55,56,57,44,51,53,46,57,57,53,54,56,51,93,44,91,45,57,48,46,50,56,56,57,52,55,44,51,53,46,57,57,54,52,49,93,44,91,45,56,57,46,57,53,57,51,55,54,44,51,53,46,57,57,57,49,51,49,93,44,91,45,56,57,46,57,54,49,51,49,44,51,54,46,51,56,56,56,48,51,93,44,91,45,56,57,46,57,53,56,55,56,54,44,51,54,46,54,50,57,51,51,49,93,44,91,45,57,48,46,49,52,56,51,57,56,44,51,54,46,54,51,48,54,53,54,93,44,91,45,57,48,46,50,50,48,55,51,50,44,51,54,46,52,57,55,56,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,56,51,34,44,34,78,65,77,69,34,58,34,87,104,101,101,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,56,50,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,52,48,49,53,56,44,51,53,46,54,49,57,50,57,54,93,44,91,45,49,48,48,46,53,51,56,57,55,56,44,51,53,46,49,56,51,49,52,52,93,44,91,45,49,48,48,46,48,48,48,51,56,53,44,51,53,46,49,56,50,55,48,50,93,44,91,45,57,57,46,57,57,57,54,54,44,51,53,46,52,50,50,51,54,52,93,44,91,45,49,48,48,46,48,48,48,51,57,50,44,51,53,46,54,49,57,49,49,53,93,44,91,45,49,48,48,46,53,52,48,49,53,56,44,51,53,46,54,49,57,50,57,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,70,111,114,115,121,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,56,56,48,44,34,98,101,100,115,34,58,51,48,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,53,56,48,55,53,44,51,52,46,51,51,53,49,53,54,93,44,91,45,56,52,46,50,53,56,55,52,51,44,51,52,46,49,56,53,57,48,57,93,44,91,45,56,52,46,50,53,56,57,51,52,44,51,52,46,49,48,57,53,51,57,93,44,91,45,56,52,46,48,57,55,54,57,51,44,51,52,46,48,53,48,55,48,56,93,44,91,45,56,52,46,48,54,50,56,52,49,44,51,52,46,49,54,55,56,55,51,93,44,91,45,56,51,46,57,50,55,50,56,52,44,51,52,46,50,55,57,51,57,57,93,44,91,45,56,51,46,57,53,55,48,55,55,44,51,52,46,51,51,52,48,49,49,93,44,91,45,56,52,46,50,53,56,48,55,53,44,51,52,46,51,51,53,49,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,48,57,34,44,34,78,65,77,69,34,58,34,83,97,110,32,80,97,116,114,105,99,105,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,55,48,52,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,55,57,56,53,49,55,44,50,55,46,57,57,53,54,53,57,93,44,91,45,57,55,46,53,56,57,52,55,51,44,50,55,46,56,53,54,49,48,49,93,44,91,45,57,55,46,51,51,55,54,55,55,44,50,55,46,56,56,51,49,54,53,93,44,91,45,57,55,46,49,56,53,53,55,57,44,50,55,46,56,51,48,50,55,50,93,44,91,45,57,55,46,49,51,54,51,49,50,44,50,55,46,57,48,52,51,57,93,44,91,45,57,55,46,50,54,48,56,49,56,44,50,56,46,48,55,53,55,53,57,93,44,91,45,57,55,46,51,49,57,49,57,57,44,50,56,46,49,50,53,57,53,56,93,44,91,45,57,55,46,53,52,49,48,55,49,44,50,56,46,49,54,52,54,54,57,93,44,91,45,57,55,46,53,54,55,54,50,50,44,50,56,46,49,50,57,54,56,51,93,44,91,45,57,55,46,56,49,55,55,49,54,44,50,56,46,49,55,54,56,52,56,93,44,91,45,57,55,46,56,56,51,49,52,56,44,50,56,46,48,53,54,57,93,44,91,45,57,55,46,55,57,56,53,49,55,44,50,55,46,57,57,53,54,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,55,34,44,34,78,65,77,69,34,58,34,87,97,108,116,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,54,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,54,48,51,57,49,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,50,53,57,53,53,53,44,51,49,46,48,48,48,54,55,57,93,44,91,45,56,57,46,56,51,53,57,48,56,44,51,49,46,48,48,50,48,52,55,93,44,91,45,56,57,46,56,51,53,56,55,51,44,51,49,46,48,55,52,57,50,54,93,44,91,45,57,48,46,48,51,49,56,57,54,44,51,49,46,49,55,53,55,50,55,93,44,91,45,57,48,46,48,52,48,52,54,54,44,51,49,46,51,51,54,48,49,52,93,44,91,45,57,48,46,50,52,51,56,57,44,51,49,46,51,53,48,50,55,52,93,44,91,45,57,48,46,50,54,48,51,57,49,44,51,49,46,51,53,48,50,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,55,34,44,34,78,65,77,69,34,58,34,77,111,110,114,111,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,56,52,54,55,52,51,44,51,57,46,54,53,56,53,49,51,93,44,91,45,57,50,46,49,56,52,57,56,54,44,51,57,46,54,54,50,57,51,50,93,44,91,45,57,50,46,50,57,57,51,49,54,44,51,57,46,54,48,53,51,52,52,93,44,91,45,57,50,46,51,48,48,56,55,49,44,51,57,46,54,48,53,51,52,56,93,44,91,45,57,50,46,51,49,48,48,50,56,44,51,57,46,51,52,55,55,57,53,93,44,91,45,57,49,46,55,49,55,57,54,56,44,51,57,46,51,51,57,49,50,50,93,44,91,45,57,49,46,55,49,53,50,52,55,44,51,57,46,54,53,55,54,52,52,93,44,91,45,57,49,46,56,52,54,55,52,51,44,51,57,46,54,53,56,53,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,73,115,97,98,101,108,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,55,55,53,44,34,98,101,100,115,34,58,49,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,44,91,45,56,53,46,48,56,56,56,49,49,44,52,51,46,56,49,51,54,55,54,93,44,91,45,56,53,46,48,56,52,57,57,54,44,52,51,46,52,54,54,49,57,93,44,91,45,56,52,46,56,52,53,57,54,50,44,52,51,46,52,54,54,49,53,56,93,44,91,45,56,52,46,54,48,55,53,52,44,52,51,46,52,54,54,48,48,54,93,44,91,45,56,52,46,54,48,54,48,51,55,44,52,51,46,56,49,53,51,54,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,52,49,34,44,34,78,65,77,69,34,58,34,77,111,111,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,48,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,44,91,45,49,48,50,46,49,54,51,48,49,53,44,51,54,46,48,53,53,50,52,57,93,44,91,45,49,48,50,46,49,54,50,56,48,57,44,51,53,46,54,50,55,53,49,53,93,44,91,45,49,48,50,46,49,54,50,55,53,50,44,51,53,46,54,50,48,48,51,53,93,44,91,45,49,48,49,46,54,50,50,56,44,51,53,46,54,50,48,49,57,54,93,44,91,45,49,48,49,46,54,50,50,56,51,49,44,51,53,46,54,50,52,48,53,55,93,44,91,45,49,48,49,46,54,50,51,52,54,54,44,51,54,46,48,53,53,52,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,55,34,44,34,78,65,77,69,34,58,34,67,97,108,104,111,117,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,55,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,48,52,50,56,53,52,44,51,51,46,55,48,55,49,51,49,93,44,91,45,56,48,46,57,54,53,52,56,57,44,51,51,46,54,50,53,50,56,50,93,44,91,45,56,48,46,56,48,55,54,51,49,44,51,51,46,54,48,52,48,56,49,93,44,91,45,56,48,46,54,53,57,48,50,44,51,51,46,52,55,48,57,56,50,93,44,91,45,56,48,46,52,57,54,50,55,51,44,51,51,46,53,53,56,52,56,49,93,44,91,45,56,48,46,53,51,52,48,56,53,44,51,51,46,54,52,51,57,49,49,93,44,91,45,56,48,46,54,50,48,49,48,55,44,51,51,46,55,52,51,50,51,55,93,44,91,45,56,48,46,56,48,55,53,57,49,44,51,51,46,55,55,52,50,49,49,93,44,91,45,56,49,46,48,49,50,51,51,44,51,51,46,56,56,48,48,56,93,44,91,45,56,49,46,48,52,50,56,53,52,44,51,51,46,55,48,55,49,51,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,53,34,44,34,78,65,77,69,34,58,34,83,117,98,108,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,57,53,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,48,46,53,55,56,54,53,54,44,52,51,46,50,51,53,50,50,52,93,44,91,45,49,49,48,46,53,57,48,49,51,49,44,52,50,46,52,52,56,52,51,53,93,44,91,45,49,49,48,46,53,52,49,54,51,52,44,52,50,46,50,55,55,52,57,49,93,44,91,45,49,49,48,46,48,53,51,55,48,56,44,52,50,46,50,55,48,55,52,52,93,44,91,45,49,48,57,46,48,52,51,56,54,52,44,52,50,46,50,54,51,54,56,52,93,44,91,45,49,48,57,46,48,55,50,56,53,49,44,52,50,46,54,57,51,53,49,52,93,44,91,45,49,48,57,46,50,49,52,54,48,50,44,52,50,46,55,54,49,55,57,53,93,44,91,45,49,48,57,46,51,55,48,54,53,56,44,52,50,46,57,52,53,55,50,56,93,44,91,45,49,48,57,46,53,53,50,53,55,57,44,52,51,46,48,49,50,53,51,56,93,44,91,45,49,48,57,46,54,57,50,55,49,54,44,52,51,46,50,54,53,48,51,93,44,91,45,49,48,57,46,55,53,52,55,49,55,44,52,51,46,52,54,51,50,93,44,91,45,49,49,48,46,48,53,49,53,55,44,52,51,46,52,54,52,55,56,51,93,44,91,45,49,49,48,46,48,53,55,51,49,44,52,51,46,51,55,55,55,54,56,93,44,91,45,49,49,48,46,51,52,52,50,49,56,44,52,51,46,51,55,55,57,49,56,93,44,91,45,49,49,48,46,51,52,51,57,53,57,44,52,51,46,50,57,49,49,54,53,93,44,91,45,49,49,48,46,53,55,56,51,56,44,52,51,46,50,57,49,54,52,93,44,91,45,49,49,48,46,53,55,56,54,53,54,44,52,51,46,50,51,53,50,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,70,108,101,109,105,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,52,55,57,44,34,98,101,100,115,34,58,53,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,54,52,49,56,53,50,44,51,56,46,53,50,53,51,56,49,93,44,91,45,56,51,46,56,53,57,50,56,44,51,56,46,52,53,54,51,52,56,93,44,91,45,56,51,46,57,51,48,51,52,56,44,51,56,46,52,57,50,50,55,56,93,44,91,45,56,51,46,57,56,48,48,54,56,44,51,56,46,52,51,57,52,52,56,93,44,91,45,56,51,46,56,52,56,51,53,53,44,51,56,46,50,57,54,57,52,57,93,44,91,45,56,51,46,54,51,53,49,57,53,44,51,56,46,49,56,55,53,50,53,93,44,91,45,56,51,46,53,48,55,57,53,51,44,51,56,46,50,55,51,49,53,53,93,44,91,45,56,51,46,52,53,50,56,52,56,44,51,56,46,51,56,49,55,57,57,93,44,91,45,56,51,46,53,56,48,53,54,54,44,51,56,46,52,51,48,49,54,57,93,44,91,45,56,51,46,54,52,49,56,53,50,44,51,56,46,53,50,53,51,56,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,108,97,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,52,57,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,51,49,54,50,53,51,44,52,52,46,54,56,53,49,53,52,93,44,91,45,57,48,46,51,49,53,48,51,56,44,52,53,46,48,51,51,56,50,57,93,44,91,45,57,48,46,57,50,51,51,54,50,44,52,53,46,48,51,49,49,52,51,93,44,91,45,57,48,46,57,50,50,50,52,55,44,52,52,46,56,53,55,51,48,57,93,44,91,45,57,48,46,57,50,50,51,53,44,52,52,46,53,57,54,50,57,51,93,44,91,45,57,48,46,56,48,49,53,50,53,44,52,52,46,53,48,57,54,56,49,93,44,91,45,57,48,46,56,48,49,57,49,56,44,52,52,46,52,50,50,52,52,50,93,44,91,45,57,48,46,51,49,54,48,53,53,44,52,52,46,52,50,52,53,48,50,93,44,91,45,57,48,46,51,49,54,50,53,51,44,52,52,46,54,56,53,49,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,89,111,114,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,56,54,52,49,44,34,98,101,100,115,34,58,51,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,54,54,54,44,51,53,46,49,54,52,56,56,51,93,44,91,45,56,49,46,52,48,56,56,55,54,44,51,53,46,48,52,54,51,50,52,93,44,91,45,56,49,46,52,56,55,48,49,54,44,51,53,46,48,51,52,56,53,51,93,44,91,45,56,49,46,52,53,55,50,53,55,44,51,52,46,56,51,57,50,56,93,44,91,45,56,49,46,52,55,56,52,53,52,44,51,52,46,56,50,49,53,48,57,93,44,91,45,56,48,46,56,57,56,50,49,53,44,51,52,46,56,50,48,55,52,54,93,44,91,45,56,48,46,56,54,56,54,53,50,44,51,52,46,57,53,49,49,52,51,93,44,91,45,56,48,46,57,48,54,51,56,53,44,51,53,46,48,55,54,50,55,55,93,44,91,45,56,49,46,48,52,49,52,57,54,44,51,53,46,48,52,52,55,49,51,93,44,91,45,56,49,46,48,51,51,57,48,57,44,51,53,46,49,52,56,54,57,93,44,91,45,56,49,46,51,50,56,48,51,55,44,51,53,46,49,54,51,52,54,55,93,44,91,45,56,49,46,51,54,54,54,44,51,53,46,49,54,52,56,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,100,97,109,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,49,57,53,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,55,51,56,54,49,44,52,48,46,57,49,55,56,50,51,93,44,91,45,56,53,46,48,54,56,52,55,57,44,52,48,46,53,54,56,50,52,93,44,91,45,56,52,46,56,48,50,52,55,55,44,52,48,46,53,55,50,50,49,51,93,44,91,45,56,52,46,56,48,50,50,55,51,44,52,48,46,55,50,56,49,52,54,93,44,91,45,56,52,46,56,48,50,57,50,50,44,52,48,46,57,50,50,53,54,56,93,44,91,45,56,53,46,48,55,51,56,54,49,44,52,48,46,57,49,55,56,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,115,99,101,110,115,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,49,55,54,44,34,98,101,100,115,34,58,49,53,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,56,57,49,55,50,56,44,51,48,46,51,52,53,50,52,52,93,44,91,45,57,49,46,48,50,49,48,49,52,44,51,48,46,51,50,49,52,56,57,93,44,91,45,57,49,46,49,48,53,57,53,49,44,51,48,46,48,54,50,52,55,56,93,44,91,45,57,48,46,57,54,51,54,57,51,44,51,48,46,48,54,54,52,53,93,44,91,45,57,48,46,57,49,53,53,54,53,44,51,48,46,49,49,51,50,56,53,93,44,91,45,57,48,46,54,52,49,57,57,56,44,51,48,46,49,54,54,52,51,93,44,91,45,57,48,46,54,51,50,56,49,49,44,51,48,46,50,50,49,52,48,57,93,44,91,45,57,48,46,55,49,57,53,51,57,44,51,48,46,49,56,57,57,57,52,93,44,91,45,57,48,46,56,57,49,55,50,56,44,51,48,46,51,52,53,50,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,85,110,105,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,49,49,52,44,34,98,101,100,115,34,58,49,51,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,49,52,52,49,54,44,52,49,46,48,52,52,51,51,56,93,44,91,45,55,55,46,51,54,52,49,56,44,52,48,46,56,52,54,57,51,55,93,44,91,45,55,55,46,51,53,54,54,50,56,44,52,48,46,56,48,55,51,51,52,93,44,91,45,55,54,46,57,52,48,55,48,54,44,52,48,46,56,56,56,48,50,51,93,44,91,45,55,54,46,56,48,48,50,52,50,44,52,48,46,56,56,49,57,57,52,93,44,91,45,55,54,46,56,56,50,50,56,44,52,48,46,57,55,49,51,51,52,93,44,91,45,55,54,46,56,57,54,49,49,52,44,52,49,46,49,51,57,48,55,93,44,91,45,55,54,46,57,55,55,57,51,57,44,52,49,46,48,56,55,56,56,51,93,44,91,45,55,55,46,49,52,52,49,49,49,44,52,49,46,48,54,56,56,52,93,44,91,45,55,55,46,49,52,52,49,54,44,52,49,46,48,52,52,51,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,67,104,101,115,116,101,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,57,52,52,55,44,34,98,101,100,115,34,58,52,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,44,91,45,55,55,46,56,53,53,49,52,56,44,51,55,46,52,49,56,51,54,51,93,44,91,45,55,55,46,56,55,55,53,53,54,44,51,55,46,51,54,54,50,52,55,93,44,91,45,55,55,46,55,53,56,54,50,44,51,55,46,50,54,56,55,49,55,93,44,91,45,55,55,46,54,53,48,54,49,44,51,55,46,50,54,53,49,49,50,93,44,91,45,55,55,46,52,52,55,52,48,56,44,51,55,46,50,50,51,48,54,54,93,44,91,45,55,55,46,52,49,54,53,48,49,44,51,55,46,50,51,51,50,48,56,93,44,91,45,55,55,46,52,49,52,52,48,54,44,51,55,46,50,54,48,57,52,57,93,44,91,45,55,55,46,51,56,56,57,49,55,44,51,55,46,50,56,55,51,52,57,93,44,91,45,55,55,46,51,55,57,49,57,51,44,51,55,46,50,54,55,53,56,93,44,91,45,55,55,46,51,56,50,53,50,49,44,51,55,46,50,52,50,56,51,55,93,44,91,45,55,55,46,52,48,51,54,55,49,44,51,55,46,50,51,55,51,52,54,93,44,91,45,55,55,46,51,56,51,56,53,54,44,51,55,46,50,51,56,57,48,54,93,44,91,45,55,55,46,51,55,54,55,56,53,44,51,55,46,50,52,52,56,52,57,93,44,91,45,55,55,46,51,51,53,54,54,54,44,51,55,46,51,49,51,48,51,57,93,44,91,45,55,55,46,50,56,52,48,49,57,44,51,55,46,51,49,51,48,49,50,93,44,91,45,55,55,46,50,55,48,54,55,53,44,51,55,46,51,50,48,55,53,54,93,44,91,45,55,55,46,50,52,57,54,54,53,44,51,55,46,51,56,50,93,44,91,45,55,55,46,51,52,57,50,51,53,44,51,55,46,51,55,56,52,54,54,93,44,91,45,55,55,46,52,50,48,56,55,53,44,51,55,46,52,52,55,49,48,49,93,44,91,45,55,55,46,53,57,53,52,54,50,44,51,55,46,53,53,53,55,53,93,44,91,45,55,55,46,54,53,53,51,57,57,44,51,55,46,53,54,51,57,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,99,97,100,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,53,54,56,44,34,98,101,100,115,34,58,49,56,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,54,51,49,57,56,55,44,51,48,46,52,56,49,49,52,55,93,44,91,45,57,50,46,54,50,53,52,56,52,44,51,48,46,48,57,50,51,51,93,44,91,45,57,50,46,53,51,52,54,51,56,44,51,48,46,49,48,55,56,53,50,93,44,91,45,57,50,46,52,50,54,48,51,57,44,51,48,46,48,52,57,51,54,57,93,44,91,45,57,50,46,50,56,52,54,55,53,44,51,48,46,49,52,55,52,52,51,93,44,91,45,57,50,46,49,52,50,49,56,52,44,51,48,46,50,57,56,56,49,55,93,44,91,45,57,50,46,49,55,54,52,52,52,44,51,48,46,52,51,54,56,53,50,93,44,91,45,57,50,46,50,52,52,55,57,53,44,51,48,46,52,56,48,49,57,51,93,44,91,45,57,50,46,52,57,51,50,53,57,44,51,48,46,52,56,48,52,57,57,93,44,91,45,57,50,46,54,51,49,57,56,55,44,51,48,46,52,56,49,49,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,114,97,119,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,54,49,54,52,44,34,98,101,100,115,34,58,50,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,49,57,51,53,52,44,52,49,46,56,52,57,53,54,51,93,44,91,45,56,48,46,53,49,57,50,50,53,44,52,49,46,52,57,57,57,50,52,93,44,91,45,56,48,46,53,49,57,50,49,55,44,52,49,46,52,56,57,48,49,51,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,52,57,48,48,52,57,93,44,91,45,55,57,46,56,50,56,56,55,54,44,52,49,46,54,50,50,48,53,55,93,44,91,45,55,57,46,54,49,50,56,55,51,44,52,49,46,54,50,51,56,53,56,93,44,91,45,55,57,46,54,49,50,48,55,50,44,52,49,46,56,53,48,48,53,54,93,44,91,45,56,48,46,53,49,57,51,53,52,44,52,49,46,56,52,57,53,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,84,114,105,112,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,54,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,51,48,56,52,53,44,52,51,46,55,49,51,56,53,54,93,44,91,45,49,48,48,46,50,49,52,50,50,49,44,52,51,46,51,57,48,51,50,49,93,44,91,45,49,48,48,46,49,57,56,52,49,51,44,52,50,46,57,57,56,54,55,52,93,44,91,45,57,57,46,53,51,52,48,52,57,44,52,50,46,57,57,56,48,51,51,93,44,91,45,57,57,46,53,51,52,52,56,49,44,52,51,46,52,57,57,56,48,49,93,44,91,45,57,57,46,54,50,51,53,55,56,44,52,51,46,52,57,57,56,53,57,93,44,91,45,57,57,46,54,50,51,53,56,55,44,52,51,46,55,52,50,52,49,52,93,44,91,45,57,57,46,56,51,55,56,50,53,44,52,51,46,54,56,57,48,55,49,93,44,91,45,49,48,48,46,50,51,48,56,52,53,44,52,51,46,55,49,51,56,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,71,117,116,104,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,55,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,50,56,48,51,52,44,52,49,46,56,54,50,57,57,57,93,44,91,45,57,52,46,54,50,56,55,50,52,44,52,49,46,56,54,50,55,54,51,93,44,91,45,57,52,46,55,52,52,56,55,54,44,52,49,46,56,54,50,51,57,52,93,44,91,45,57,52,46,55,52,52,50,48,52,44,52,49,46,54,48,50,49,56,53,93,44,91,45,57,52,46,55,48,48,54,50,57,44,52,49,46,53,48,52,49,52,56,93,44,91,45,57,52,46,50,52,49,53,57,51,44,52,49,46,53,48,51,54,55,57,93,44,91,45,57,52,46,50,56,48,48,53,55,44,52,49,46,54,48,49,51,49,50,93,44,91,45,57,52,46,50,56,48,51,52,44,52,49,46,56,54,50,57,57,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,56,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,51,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,52,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,57,52,54,48,52,51,44,52,49,46,53,49,48,55,52,57,93,44,91,45,57,49,46,57,52,53,53,55,49,44,52,49,46,49,54,51,53,55,56,93,44,91,45,57,49,46,55,49,54,48,52,50,44,52,49,46,49,54,50,56,48,56,93,44,91,45,57,49,46,52,56,53,55,49,55,44,52,49,46,49,54,50,52,48,53,93,44,91,45,57,49,46,52,56,51,57,57,53,44,52,49,46,52,50,51,56,52,56,93,44,91,45,57,49,46,53,50,50,52,56,44,52,49,46,53,49,49,48,51,53,93,44,91,45,57,49,46,56,50,57,50,51,49,44,52,49,46,53,49,49,52,53,55,93,44,91,45,57,49,46,57,52,54,48,52,51,44,52,49,46,53,49,48,55,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,83,97,110,98,111,114,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,51,51,49,57,49,44,52,52,46,49,57,54,54,56,55,93,44,91,45,57,56,46,51,51,49,53,48,56,44,52,51,46,57,51,55,55,48,56,93,44,91,45,57,56,46,51,50,53,50,52,50,44,52,51,46,56,53,49,48,53,56,93,44,91,45,57,55,46,57,54,55,50,55,57,44,52,51,46,56,53,48,54,56,54,93,44,91,45,57,55,46,56,53,49,49,49,44,52,51,46,56,52,57,56,53,55,93,44,91,45,57,55,46,56,52,57,52,57,50,44,52,52,46,49,57,53,50,51,53,93,44,91,45,57,55,46,56,53,51,54,54,44,52,52,46,49,57,53,50,51,51,93,44,91,45,57,56,46,51,51,49,57,49,44,52,52,46,49,57,54,54,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,114,97,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,55,51,51,44,34,98,101,100,115,34,58,55,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,57,54,48,49,52,44,51,53,46,51,55,55,55,53,51,93,44,91,45,57,56,46,48,57,51,49,50,55,44,51,52,46,56,53,52,57,56,56,93,44,91,45,57,56,46,48,56,57,48,57,55,44,51,52,46,54,56,49,49,54,51,93,44,91,45,57,55,46,54,54,56,53,49,50,44,51,52,46,54,56,49,51,52,93,44,91,45,57,55,46,54,54,56,48,57,57,44,51,52,46,56,53,53,49,54,52,93,44,91,45,57,55,46,54,55,49,52,49,52,44,51,53,46,51,51,53,57,52,54,93,44,91,45,57,55,46,57,53,53,49,50,52,44,51,53,46,51,52,54,48,52,56,93,44,91,45,57,56,46,48,57,54,48,49,52,44,51,53,46,51,55,55,55,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,75,97,110,97,119,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,53,55,49,48,44,34,98,101,100,115,34,58,49,51,57,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,57,49,53,49,57,55,44,51,56,46,51,50,53,53,57,55,93,44,91,45,56,49,46,56,49,56,50,51,52,44,51,56,46,51,49,54,55,53,49,93,44,91,45,56,49,46,56,51,51,52,55,44,51,56,46,50,48,57,53,55,93,44,91,45,56,49,46,54,52,56,53,51,55,44,51,56,46,49,56,53,48,51,54,93,44,91,45,56,49,46,52,55,56,49,50,50,44,51,56,46,48,54,48,49,51,56,93,44,91,45,56,49,46,52,53,54,54,51,50,44,51,55,46,57,56,55,51,48,55,93,44,91,45,56,49,46,51,56,48,56,50,57,44,51,55,46,57,54,57,49,48,57,93,44,91,45,56,49,46,51,51,49,53,48,51,44,51,56,46,49,54,55,53,55,56,93,44,91,45,56,49,46,50,51,49,54,51,54,44,51,56,46,50,54,51,53,49,52,93,44,91,45,56,49,46,50,51,49,52,51,52,44,51,56,46,50,54,51,55,49,54,93,44,91,45,56,49,46,50,56,51,56,55,50,44,51,56,46,52,55,50,48,50,57,93,44,91,45,56,49,46,49,57,52,49,49,51,44,51,56,46,53,50,55,54,51,52,93,44,91,45,56,49,46,52,54,53,51,55,50,44,51,56,46,53,52,57,56,57,56,93,44,91,45,56,49,46,53,50,50,49,54,54,44,51,56,46,54,49,50,55,52,54,93,44,91,45,56,49,46,54,51,50,56,51,54,44,51,56,46,53,53,52,51,55,93,44,91,45,56,49,46,54,57,54,51,52,56,44,51,56,46,54,50,54,52,50,55,93,44,91,45,56,49,46,55,53,48,53,52,55,44,51,56,46,53,57,49,48,49,52,93,44,91,45,56,49,46,55,50,53,56,48,49,44,51,56,46,52,54,54,54,50,93,44,91,45,56,49,46,57,48,48,50,50,50,44,51,56,46,51,57,56,53,55,50,93,44,91,45,56,49,46,57,49,53,49,57,55,44,51,56,46,51,50,53,53,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,114,111,105,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,55,57,49,55,44,34,98,101,100,115,34,58,49,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,55,53,56,48,48,56,44,52,53,46,50,48,57,53,54,54,93,44,91,45,57,50,46,55,54,57,53,48,49,44,52,52,46,56,54,50,48,48,49,93,44,91,45,57,50,46,49,51,54,51,52,56,44,52,52,46,56,53,55,56,52,56,93,44,91,45,57,50,46,49,53,54,52,54,53,44,52,53,46,50,48,57,53,53,52,93,44,91,45,57,50,46,55,53,56,48,48,56,44,52,53,46,50,48,57,53,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,49,34,44,34,78,65,77,69,34,58,34,86,101,110,97,110,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,51,55,54,44,34,98,101,100,115,34,58,49,53,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,52,57,48,48,52,57,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,49,55,49,56,54,49,93,44,91,45,55,57,46,54,57,52,57,56,52,44,52,49,46,49,55,50,56,54,53,93,44,91,45,55,57,46,52,55,55,56,50,50,44,52,49,46,51,56,54,52,55,57,93,44,91,45,55,57,46,53,49,50,48,55,44,52,49,46,54,50,52,53,53,57,93,44,91,45,55,57,46,54,49,50,56,55,51,44,52,49,46,54,50,51,56,53,56,93,44,91,45,55,57,46,56,50,56,56,55,54,44,52,49,46,54,50,50,48,53,55,93,44,91,45,55,57,46,57,57,57,55,55,57,44,52,49,46,52,57,48,48,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,51,34,44,34,78,65,77,69,34,58,34,83,117,109,109,105,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,52,49,56,49,48,44,34,98,101,100,115,34,58,50,53,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,56,52,57,53,44,52,49,46,50,55,55,49,52,54,93,44,91,45,56,49,46,54,56,56,52,57,49,44,52,48,46,57,56,56,53,57,93,44,91,45,56,49,46,54,52,55,55,51,53,44,52,48,46,57,49,52,48,49,54,93,44,91,45,56,49,46,52,50,48,51,54,51,44,52,48,46,57,48,54,53,48,50,93,44,91,45,56,49,46,51,57,51,50,52,57,44,52,48,46,57,56,56,53,51,49,93,44,91,45,56,49,46,51,57,49,54,57,52,44,52,49,46,51,52,56,50,55,50,93,44,91,45,56,49,46,53,57,56,48,53,50,44,52,49,46,51,53,49,49,53,55,93,44,91,45,56,49,46,54,56,52,57,53,44,52,49,46,50,55,55,49,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,71,108,121,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,51,57,55,52,44,34,98,101,100,115,34,58,52,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,50,52,50,57,44,51,49,46,52,53,50,57,56,50,93,44,91,45,56,49,46,55,51,49,54,57,52,44,51,49,46,51,51,48,48,52,56,93,44,91,45,56,49,46,55,54,54,51,50,50,44,51,49,46,49,54,57,53,57,53,93,44,91,45,56,49,46,53,54,53,49,49,54,44,51,49,46,48,57,49,57,52,93,44,91,45,56,49,46,52,50,51,55,55,53,44,51,48,46,57,57,48,56,57,50,93,44,91,45,56,49,46,51,48,54,52,51,53,44,51,48,46,57,57,48,54,52,52,93,44,91,45,56,49,46,50,57,50,49,52,53,44,51,49,46,49,53,53,52,49,53,93,44,91,45,56,49,46,50,51,52,51,51,55,44,51,49,46,49,55,48,50,53,56,93,44,91,45,56,49,46,49,56,51,55,49,54,44,51,49,46,50,57,52,50,56,51,93,44,91,45,56,49,46,52,51,53,56,55,52,44,51,49,46,51,49,51,50,54,51,93,44,91,45,56,49,46,54,50,52,50,57,44,51,49,46,52,53,50,57,56,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,55,57,34,44,34,78,65,77,69,34,58,34,87,101,98,98,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,50,48,53,51,44,34,98,101,100,115,34,58,53,53,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,49,50,49,56,57,44,50,56,46,49,57,54,56,51,55,93,44,91,45,49,48,48,46,48,56,54,56,57,56,44,50,56,46,49,52,54,55,56,51,93,44,91,45,57,57,46,57,56,57,55,54,50,44,50,55,46,57,57,50,56,55,54,93,44,91,45,57,57,46,56,57,51,52,53,54,44,50,55,46,56,57,57,50,48,56,93,44,91,45,57,57,46,56,55,50,50,57,52,44,50,55,46,55,57,53,50,53,56,93,44,91,45,57,57,46,55,50,49,53,49,57,44,50,55,46,54,54,54,49,53,53,93,44,91,45,57,57,46,54,48,51,53,51,51,44,50,55,46,54,52,49,57,57,50,93,44,91,45,57,57,46,53,49,49,48,52,57,44,50,55,46,53,54,52,53,48,55,93,44,91,45,57,57,46,52,55,57,50,53,49,44,50,55,46,52,55,56,54,51,53,93,44,91,45,57,57,46,53,48,52,51,57,55,44,50,55,46,51,51,57,56,57,54,93,44,91,45,57,57,46,52,53,51,55,57,52,44,50,55,46,50,54,53,48,53,56,93,44,91,45,57,56,46,57,53,52,54,54,57,44,50,55,46,50,54,57,51,57,55,93,44,91,45,57,56,46,55,57,56,48,56,55,44,50,55,46,50,54,56,48,49,50,93,44,91,45,57,56,46,55,57,56,51,50,51,44,50,55,46,51,53,52,48,50,57,93,44,91,45,57,56,46,56,48,51,51,50,53,44,50,56,46,48,53,55,52,56,93,44,91,45,57,57,46,51,56,56,57,52,54,44,50,56,46,48,51,48,52,49,57,93,44,91,45,57,57,46,51,57,52,49,55,55,44,50,56,46,50,48,52,54,50,55,93,44,91,45,49,48,48,46,49,49,51,55,49,57,44,50,56,46,49,57,55,56,49,57,93,44,91,45,49,48,48,46,50,49,50,49,56,57,44,50,56,46,49,57,54,56,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,51,51,56,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,49,56,50,53,53,57,44,51,53,46,53,48,52,49,53,49,93,44,91,45,56,48,46,48,53,49,55,51,57,44,51,53,46,51,55,50,53,56,53,93,44,91,45,56,48,46,48,57,56,49,56,53,44,51,53,46,50,53,53,49,55,51,93,44,91,45,56,48,46,48,55,53,51,54,53,44,51,53,46,49,52,51,48,56,49,93,44,91,45,55,57,46,56,53,49,50,54,56,44,51,53,46,49,56,51,56,53,53,93,44,91,45,55,57,46,54,49,52,51,48,52,44,51,53,46,49,54,51,54,55,57,93,44,91,45,55,57,46,54,57,55,55,55,51,44,51,53,46,50,53,49,51,55,57,93,44,91,45,55,57,46,55,54,55,57,53,55,44,51,53,46,53,49,49,52,56,52,93,44,91,45,56,48,46,48,54,54,56,52,50,44,51,53,46,53,48,53,54,54,49,93,44,91,45,56,48,46,49,56,50,53,53,57,44,51,53,46,53,48,52,49,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,65,114,111,111,115,116,111,111,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,50,54,57,44,34,98,101,100,115,34,58,50,50,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,54,55,46,56,48,53,54,56,57,44,52,53,46,54,56,48,48,53,49,93,44,91,45,54,55,46,55,56,49,50,52,56,44,52,53,46,57,52,51,52,53,93,44,91,45,54,55,46,55,57,48,49,57,54,44,52,55,46,48,54,55,50,50,93,44,91,45,54,55,46,57,53,49,57,56,54,44,52,55,46,49,57,52,54,50,56,93,44,91,45,54,56,46,50,51,52,53,49,51,44,52,55,46,51,53,53,50,57,53,93,44,91,45,54,56,46,51,56,51,57,55,50,44,52,55,46,51,48,49,49,55,49,93,44,91,45,54,56,46,53,56,48,48,53,44,52,55,46,50,56,55,49,49,53,93,44,91,45,54,56,46,57,48,52,57,56,49,44,52,55,46,49,56,48,52,51,54,93,44,91,45,54,57,46,48,52,48,57,49,56,44,52,55,46,50,52,52,57,55,51,93,44,91,45,54,57,46,48,51,53,52,56,49,44,52,55,46,52,49,52,57,56,53,93,44,91,45,54,57,46,50,50,52,52,54,49,44,52,55,46,52,53,57,56,51,51,93,44,91,45,54,57,46,57,57,55,49,49,49,44,52,54,46,54,57,53,53,50,93,44,91,45,55,48,46,48,50,51,49,56,55,44,52,54,46,53,55,51,52,56,55,93,44,91,45,54,57,46,55,50,49,49,48,57,44,52,54,46,53,55,52,48,53,51,93,44,91,45,54,56,46,56,50,49,52,49,52,44,52,54,46,53,55,50,53,49,93,44,91,45,54,56,46,56,49,57,52,48,49,44,52,54,46,51,57,53,55,56,50,93,44,91,45,54,56,46,52,51,54,52,52,51,44,52,54,46,51,56,50,49,50,49,93,44,91,45,54,56,46,52,50,54,49,54,57,44,52,53,46,56,55,48,56,50,57,93,44,91,45,54,56,46,52,51,51,48,50,56,44,52,53,46,53,55,56,52,56,50,93,44,91,45,54,56,46,48,52,56,48,49,50,44,52,53,46,54,51,57,56,57,55,93,44,91,45,54,55,46,56,48,53,54,56,57,44,52,53,46,54,56,48,48,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,53,34,44,34,78,65,77,69,34,58,34,74,101,102,102,101,114,115,111,110,32,68,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,52,57,53,44,34,98,101,100,115,34,58,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,55,52,53,56,54,44,51,49,46,55,54,49,54,53,53,93,44,91,45,56,57,46,57,53,56,57,52,44,51,49,46,51,57,48,52,56,57,93,44,91,45,56,57,46,56,50,52,50,51,54,44,51,49,46,52,51,52,48,57,51,93,44,91,45,56,57,46,54,53,52,50,49,50,44,51,49,46,52,51,51,56,48,53,93,44,91,45,56,57,46,53,56,54,56,49,57,44,51,49,46,52,51,51,54,56,56,93,44,91,45,56,57,46,54,48,50,56,56,57,44,51,49,46,53,51,56,56,51,54,93,44,91,45,56,57,46,55,53,53,54,49,52,44,51,49,46,54,48,57,55,53,49,93,44,91,45,56,57,46,55,53,53,49,48,51,44,51,49,46,55,55,52,54,53,52,93,44,91,45,56,57,46,57,55,52,53,56,54,44,51,49,46,55,54,49,54,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,51,48,56,55,48,49,44,51,56,46,54,56,56,49,48,49,93,44,91,45,56,54,46,51,48,56,54,55,52,44,51,56,46,52,50,50,56,55,53,93,44,91,45,56,54,46,50,53,53,48,52,53,44,51,56,46,52,50,50,54,56,53,93,44,91,45,56,54,46,48,51,50,56,49,55,44,51,56,46,52,49,55,56,57,56,93,44,91,45,56,53,46,57,57,52,54,50,44,51,56,46,52,49,56,51,52,53,93,44,91,45,56,53,46,57,57,51,51,49,55,44,51,56,46,52,56,56,53,52,93,44,91,45,56,53,46,56,52,55,56,57,51,44,51,56,46,53,54,49,50,54,57,93,44,91,45,56,53,46,56,56,56,51,51,52,44,51,56,46,55,51,52,52,52,51,93,44,91,45,56,54,46,48,57,49,55,48,53,44,51,56,46,55,56,51,51,57,57,93,44,91,45,56,54,46,50,55,53,50,56,49,44,51,56,46,55,54,51,55,57,53,93,44,91,45,56,54,46,51,48,56,55,48,49,44,51,56,46,54,56,56,49,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,66,108,97,110,99,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,50,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,53,57,49,54,55,44,51,48,46,52,57,57,56,55,53,93,44,91,45,57,56,46,53,56,55,56,57,55,44,51,48,46,49,51,56,57,53,52,93,44,91,45,57,56,46,52,49,52,48,49,56,44,50,57,46,57,51,55,53,53,55,93,44,91,45,57,56,46,50,57,55,54,44,51,48,46,48,51,55,57,57,52,93,44,91,45,57,56,46,49,55,50,57,55,55,44,51,48,46,51,53,54,51,49,50,93,44,91,45,57,56,46,49,50,53,53,53,54,44,51,48,46,52,50,54,49,56,54,93,44,91,45,57,56,46,51,53,49,48,52,49,44,51,48,46,52,56,54,48,57,54,93,44,91,45,57,56,46,53,57,49,54,55,44,51,48,46,52,57,57,56,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,66,114,117,110,115,119,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,54,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,50,55,52,49,49,44,51,54,46,55,55,55,56,53,56,93,44,91,45,55,56,46,48,52,54,50,55,49,44,51,54,46,53,52,51,53,53,49,93,44,91,45,55,55,46,56,57,57,55,55,51,44,51,54,46,53,52,52,53,57,54,93,44,91,45,55,55,46,55,54,55,49,53,44,51,54,46,53,52,53,51,55,52,93,44,91,45,55,55,46,54,53,53,56,52,49,44,51,54,46,55,49,51,53,51,57,93,44,91,45,55,55,46,54,53,56,48,51,54,44,51,54,46,56,57,52,53,49,52,93,44,91,45,55,55,46,55,54,53,53,52,44,51,54,46,57,55,52,54,53,53,93,44,91,45,55,55,46,56,56,57,56,49,51,44,51,54,46,57,56,56,56,49,56,93,44,91,45,55,56,46,48,48,51,54,51,57,44,51,55,46,48,50,50,55,53,54,93,44,91,45,55,56,46,48,50,55,52,49,49,44,51,54,46,55,55,55,56,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,68,121,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,53,55,54,44,34,98,101,100,115,34,58,50,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,52,56,50,57,55,49,44,51,54,46,50,49,50,54,53,57,93,44,91,45,56,57,46,54,50,57,52,53,51,44,51,54,46,49,56,53,51,56,50,93,44,91,45,56,57,46,55,51,51,48,57,53,44,51,54,46,48,48,48,54,48,56,93,44,91,45,56,57,46,54,52,52,56,51,56,44,51,53,46,57,48,52,51,53,49,93,44,91,45,56,57,46,52,48,54,57,54,53,44,51,53,46,57,52,54,53,57,57,93,44,91,45,56,57,46,51,52,50,56,50,57,44,51,53,46,56,56,48,57,51,52,93,44,91,45,56,57,46,50,56,48,49,56,56,44,51,53,46,56,56,54,52,49,54,93,44,91,45,56,57,46,49,56,56,56,52,52,44,51,53,46,57,57,57,55,54,93,44,91,45,56,57,46,49,53,52,52,54,52,44,51,54,46,50,48,52,54,55,56,93,44,91,45,56,57,46,52,56,50,57,55,49,44,51,54,46,50,49,50,54,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,105,98,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,57,49,55,53,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,56,56,56,52,52,44,51,53,46,57,57,57,55,54,93,44,91,45,56,57,46,49,48,57,54,48,50,44,51,53,46,56,54,50,48,57,53,93,44,91,45,56,56,46,57,49,54,49,56,49,44,51,53,46,55,57,55,51,48,55,93,44,91,45,56,56,46,55,48,54,56,49,49,44,51,53,46,55,57,49,48,55,53,93,44,91,45,56,56,46,54,57,50,55,48,57,44,51,54,46,48,54,50,55,52,54,93,44,91,45,56,56,46,56,51,53,52,53,55,44,51,54,46,49,50,49,52,54,49,93,44,91,45,56,56,46,57,53,57,56,51,57,44,51,54,46,50,50,50,56,51,52,93,44,91,45,56,57,46,49,53,52,52,54,52,44,51,54,46,50,48,52,54,55,56,93,44,91,45,56,57,46,49,56,56,56,52,52,44,51,53,46,57,57,57,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,80,114,105,110,99,101,32,71,101,111,114,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,57,52,44,34,98,101,100,115,34,58,52,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,55,54,55,56,53,44,51,55,46,50,52,52,56,52,57,93,44,91,45,55,55,46,51,57,57,50,48,51,44,51,55,46,49,55,48,56,53,93,44,91,45,55,55,46,51,57,56,52,57,56,44,51,54,46,57,57,50,57,56,53,93,44,91,45,55,55,46,49,53,53,52,49,53,44,51,55,46,49,49,50,48,51,52,93,44,91,45,55,54,46,57,55,50,52,51,57,44,51,55,46,50,52,56,53,48,49,93,44,91,45,55,55,46,50,55,48,54,55,53,44,51,55,46,51,50,48,55,53,54,93,44,91,45,55,55,46,50,56,52,48,49,57,44,51,55,46,51,49,51,48,49,50,93,44,91,45,55,55,46,50,55,51,54,49,52,44,51,55,46,50,55,56,51,48,56,93,44,91,45,55,55,46,51,50,53,51,50,44,51,55,46,50,54,48,57,51,50,93,44,91,45,55,55,46,51,51,53,54,54,54,44,51,55,46,51,49,51,48,51,57,93,44,91,45,55,55,46,51,55,54,55,56,53,44,51,55,46,50,52,52,56,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,53,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,54,54,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,56,48,57,56,49,54,44,51,54,46,49,52,57,53,54,55,93,44,91,45,57,49,46,49,49,57,54,50,53,44,51,54,46,49,53,51,54,55,49,93,44,91,45,57,49,46,50,53,56,57,50,44,51,54,46,50,53,55,56,56,93,44,91,45,57,49,46,51,52,57,56,51,52,44,51,54,46,50,51,48,57,54,55,93,44,91,45,57,49,46,51,53,55,50,51,44,51,53,46,56,57,48,54,50,49,93,44,91,45,57,49,46,49,57,56,53,53,54,44,51,53,46,56,57,48,48,50,52,93,44,91,45,57,49,46,48,51,50,52,57,57,44,51,53,46,56,56,53,48,55,93,44,91,45,57,48,46,56,55,50,55,56,53,44,51,53,46,56,56,48,56,55,93,44,91,45,57,48,46,56,53,50,48,54,52,44,51,53,46,57,54,56,48,57,50,93,44,91,45,57,48,46,56,48,57,56,49,54,44,51,54,46,49,52,57,53,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,69,100,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,50,57,55,50,48,50,44,52,55,46,56,52,54,56,51,52,93,44,91,45,57,57,46,50,54,53,55,57,56,44,52,55,46,53,56,55,54,93,44,91,45,57,56,46,53,48,48,48,56,53,44,52,55,46,53,56,55,50,50,56,93,44,91,45,57,56,46,53,48,48,49,56,49,44,52,55,46,54,55,50,52,49,51,93,44,91,45,57,56,46,53,50,53,53,49,54,44,52,55,46,56,52,54,50,55,54,93,44,91,45,57,57,46,50,57,55,50,48,50,44,52,55,46,56,52,54,56,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,80,105,101,114,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,57,56,52,48,44,34,98,101,100,115,34,58,50,52,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,56,50,48,53,55,54,44,52,55,46,49,57,52,50,50,93,44,91,45,49,50,50,46,54,51,56,50,49,49,44,52,54,46,57,55,56,49,51,57,93,44,91,45,49,50,50,46,52,57,48,56,56,56,44,52,54,46,56,54,55,52,53,50,93,44,91,45,49,50,50,46,50,48,51,49,49,53,44,52,54,46,55,54,51,48,54,49,93,44,91,45,49,50,49,46,56,52,49,56,57,44,52,54,46,55,50,56,52,53,53,93,44,91,45,49,50,49,46,55,53,56,53,57,51,44,52,54,46,55,56,51,55,57,49,93,44,91,45,49,50,49,46,52,53,53,50,49,56,44,52,54,46,55,56,51,55,57,55,93,44,91,45,49,50,49,46,52,57,55,51,52,53,44,52,54,46,56,54,50,56,54,54,93,44,91,45,49,50,49,46,51,55,57,57,54,49,44,52,55,46,48,56,55,50,52,56,93,44,91,45,49,50,49,46,55,57,54,52,54,52,44,52,55,46,49,55,51,48,53,57,93,44,91,45,49,50,49,46,57,50,56,49,57,53,44,52,55,46,49,52,55,51,53,56,93,44,91,45,49,50,50,46,48,57,52,55,54,52,44,52,55,46,49,57,52,57,55,55,93,44,91,45,49,50,50,46,49,52,51,57,55,54,44,52,55,46,50,53,55,53,50,54,93,44,91,45,49,50,50,46,51,51,52,57,49,52,44,52,55,46,50,53,55,51,54,54,93,44,91,45,49,50,50,46,53,51,54,57,57,51,44,52,55,46,52,48,51,51,53,53,93,44,91,45,49,50,50,46,56,48,49,49,57,57,44,52,55,46,52,48,51,53,55,56,93,44,91,45,49,50,50,46,56,53,49,49,56,55,44,52,55,46,50,52,57,55,55,52,93,44,91,45,49,50,50,46,56,50,48,53,55,54,44,52,55,46,49,57,52,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,76,105,110,99,111,108,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,50,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,55,49,52,54,52,50,44,52,51,46,49,57,57,55,56,51,93,44,91,45,49,49,52,46,51,55,52,57,54,50,44,52,51,46,49,57,57,54,52,93,44,91,45,49,49,52,46,53,57,52,54,48,53,44,52,51,46,49,57,56,51,52,53,93,44,91,45,49,49,52,46,53,57,52,51,55,53,44,52,50,46,56,53,48,57,48,49,93,44,91,45,49,49,52,46,51,54,53,51,54,54,44,52,50,46,56,53,48,55,57,93,44,91,45,49,49,52,46,51,52,53,54,53,57,44,52,50,46,56,48,57,48,53,53,93,44,91,45,49,49,52,46,48,52,57,56,52,57,44,52,50,46,56,48,56,52,52,52,93,44,91,45,49,49,51,46,57,51,49,54,56,55,44,52,50,46,55,54,53,48,50,54,93,44,91,45,49,49,51,46,55,54,51,56,54,50,44,52,50,46,55,54,52,53,48,56,93,44,91,45,49,49,51,46,55,49,52,48,52,52,44,52,50,46,56,52,57,55,51,52,93,44,91,45,49,49,51,46,55,49,52,54,52,50,44,52,51,46,49,57,57,55,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,76,97,110,99,97,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,51,56,51,52,55,44,34,98,101,100,115,34,58,49,48,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,54,54,51,51,57,44,52,48,46,49,57,54,54,52,52,93,44,91,45,55,54,46,55,50,49,54,50,44,52,48,46,49,50,48,48,55,93,44,91,45,55,54,46,53,51,52,53,50,52,44,52,48,46,48,53,49,51,52,56,93,44,91,45,55,54,46,52,55,51,53,56,44,51,57,46,57,52,55,51,53,50,93,44,91,45,55,54,46,50,51,57,56,48,53,44,51,57,46,55,50,49,51,51,53,93,44,91,45,55,54,46,50,51,51,50,55,57,44,51,57,46,55,50,49,51,54,55,93,44,91,45,55,54,46,49,51,53,52,56,52,44,51,57,46,55,50,49,49,52,55,93,44,91,45,55,53,46,57,56,54,56,50,51,44,51,57,46,56,57,50,49,57,50,93,44,91,45,55,53,46,57,57,52,54,50,57,44,51,57,46,57,53,50,52,50,57,93,44,91,45,55,53,46,56,55,51,51,55,53,44,52,48,46,49,51,55,49,48,55,93,44,91,45,55,54,46,49,53,49,50,49,53,44,52,48,46,51,49,53,57,55,49,93,44,91,45,55,54,46,51,48,55,53,55,56,44,52,48,46,50,53,53,48,54,54,93,44,91,45,55,54,46,53,54,54,51,51,57,44,52,48,46,49,57,54,54,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,74,117,110,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,52,49,57,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,48,50,55,56,51,44,52,52,46,50,52,57,52,55,51,93,44,91,45,57,48,46,51,49,50,54,56,44,52,52,46,50,52,56,55,53,93,44,91,45,57,48,46,51,49,50,53,50,50,44,52,52,46,49,53,53,49,57,56,93,44,91,45,57,48,46,51,49,50,49,57,52,44,52,51,46,55,51,49,52,55,57,93,44,91,45,57,48,46,51,49,50,52,48,52,44,52,51,46,54,52,48,57,56,56,93,44,91,45,56,57,46,55,56,53,56,48,57,44,52,51,46,54,52,49,48,52,57,93,44,91,45,56,57,46,55,56,52,57,48,49,44,52,51,46,54,52,49,48,53,49,93,44,91,45,56,57,46,56,54,53,49,51,50,44,52,51,46,55,56,51,52,49,52,93,44,91,45,56,57,46,57,54,49,50,50,49,44,52,51,46,56,54,52,48,50,55,93,44,91,45,56,57,46,57,54,50,54,48,49,44,52,51,46,57,55,57,50,51,54,93,44,91,45,57,48,46,48,50,53,57,53,51,44,52,52,46,48,57,49,55,52,56,93,44,91,45,56,57,46,57,48,50,55,56,51,44,52,52,46,50,52,57,52,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,49,34,44,34,78,65,77,69,34,58,34,83,99,111,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,57,53,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,51,49,56,51,57,44,51,54,46,53,50,52,54,55,52,93,44,91,45,56,52,46,55,48,48,55,56,53,44,51,54,46,51,55,48,56,50,52,93,44,91,45,56,52,46,53,54,56,55,52,49,44,51,54,46,50,51,55,48,55,55,93,44,91,45,56,52,46,52,52,49,48,51,52,44,51,54,46,49,54,51,52,55,56,93,44,91,45,56,52,46,51,55,50,55,51,49,44,51,54,46,50,49,54,55,55,56,93,44,91,45,56,52,46,51,50,57,57,50,55,44,51,54,46,50,56,53,48,56,54,93,44,91,45,56,52,46,51,52,57,57,51,57,44,51,54,46,52,54,54,50,57,50,93,44,91,45,56,52,46,50,53,57,53,57,51,44,51,54,46,53,49,51,57,56,53,93,44,91,45,56,52,46,50,54,49,51,51,55,44,51,54,46,53,57,49,55,56,52,93,44,91,45,56,52,46,55,55,56,52,53,52,44,51,54,46,54,48,51,50,57,93,44,91,45,56,52,46,55,56,53,52,53,44,51,54,46,54,48,51,52,52,52,93,44,91,45,56,52,46,55,51,49,56,51,57,44,51,54,46,53,50,52,54,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,53,49,49,57,52,57,44,52,53,46,57,52,51,55,49,50,93,44,91,45,49,48,49,46,57,57,56,55,51,51,44,52,53,46,57,52,52,54,53,51,93,44,91,45,49,48,50,46,48,48,48,54,56,49,44,52,53,46,57,52,52,53,54,51,93,44,91,45,49,48,49,46,57,57,57,55,57,44,52,53,46,52,55,50,52,49,52,93,44,91,45,49,48,49,46,52,55,48,49,57,44,52,53,46,52,55,50,52,49,54,93,44,91,45,49,48,48,46,51,52,49,57,50,52,44,52,53,46,52,55,50,57,48,52,93,44,91,45,49,48,48,46,52,56,54,53,54,49,44,52,53,46,53,51,54,53,50,49,93,44,91,45,49,48,48,46,52,51,48,48,55,57,44,52,53,46,53,57,52,56,50,51,93,44,91,45,49,48,48,46,51,48,57,48,49,51,44,52,53,46,55,48,55,56,52,50,93,44,91,45,49,48,48,46,51,56,55,48,51,54,44,52,53,46,56,54,57,49,52,50,93,44,91,45,49,48,48,46,52,57,57,51,55,49,44,52,53,46,57,52,51,54,53,51,93,44,91,45,49,48,48,46,53,49,49,57,52,57,44,52,53,46,57,52,51,55,49,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,114,101,103,111,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,48,49,44,34,98,101,100,115,34,58,52,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,53,51,52,52,56,49,44,52,51,46,52,57,57,56,48,49,93,44,91,45,57,57,46,53,51,52,48,52,57,44,52,50,46,57,57,56,48,51,51,93,44,91,45,57,57,46,50,53,52,52,53,53,44,52,50,46,57,57,56,48,55,52,93,44,91,45,57,56,46,52,57,56,53,53,44,52,50,46,57,57,56,53,53,57,93,44,91,45,57,56,46,56,54,56,55,54,50,44,52,51,46,49,54,50,48,48,57,93,44,91,45,57,56,46,56,57,54,55,56,51,44,52,51,46,50,52,54,57,48,57,93,44,91,45,57,57,46,48,54,57,50,56,53,44,52,51,46,51,50,48,54,56,56,93,44,91,45,57,57,46,49,53,50,56,56,57,44,52,51,46,52,50,54,57,48,56,93,44,91,45,57,57,46,50,57,55,57,57,56,44,52,51,46,52,57,57,54,54,57,93,44,91,45,57,57,46,53,51,52,52,56,49,44,52,51,46,52,57,57,56,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,86,97,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,52,52,56,50,44,34,98,101,100,115,34,58,49,48,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,52,53,54,57,49,51,44,51,54,46,53,52,50,53,52,49,93,44,91,45,55,56,46,53,49,49,50,50,52,44,51,54,46,52,53,52,56,48,56,93,44,91,45,55,56,46,52,57,54,54,49,52,44,51,54,46,49,55,53,49,57,57,93,44,91,45,55,56,46,52,49,50,48,57,53,44,51,54,46,49,54,57,53,57,55,93,44,91,45,55,56,46,51,48,54,57,54,53,44,51,54,46,50,54,54,49,57,49,93,44,91,45,55,56,46,50,55,55,49,54,53,44,51,54,46,51,48,54,49,51,50,93,44,91,45,55,56,46,51,50,51,57,57,49,44,51,54,46,53,52,51,56,50,50,93,44,91,45,55,56,46,52,53,54,57,49,51,44,51,54,46,53,52,50,53,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,97,108,100,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,55,50,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,57,53,55,56,49,44,51,55,46,49,55,57,54,56,52,93,44,91,45,56,56,46,48,52,50,49,52,50,44,51,55,46,49,55,52,55,53,54,93,44,91,45,56,55,46,56,55,54,57,57,54,44,51,54,46,57,54,48,49,49,54,93,44,91,45,56,55,46,55,51,51,51,54,56,44,51,55,46,48,48,50,49,48,51,93,44,91,45,56,55,46,54,56,48,54,49,55,44,51,55,46,49,52,57,50,51,57,93,44,91,45,56,55,46,55,55,52,54,57,52,44,51,55,46,49,57,56,49,50,55,93,44,91,45,56,55,46,56,49,51,52,49,51,44,51,55,46,51,53,48,54,52,53,93,44,91,45,56,55,46,56,48,49,48,52,54,44,51,55,46,51,55,57,52,52,53,93,44,91,45,56,56,46,48,56,49,48,53,56,44,51,55,46,50,50,51,51,52,55,93,44,91,45,56,56,46,48,57,53,55,56,49,44,51,55,46,49,55,57,54,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,97,114,110,119,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,53,55,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,51,55,50,57,51,49,44,51,51,46,52,57,48,52,49,55,93,44,91,45,56,49,46,55,53,55,48,51,53,44,51,51,46,49,57,56,49,52,56,93,44,91,45,56,49,46,55,48,52,54,51,52,44,51,51,46,49,49,54,52,53,93,44,91,45,56,49,46,54,49,52,48,51,51,44,51,51,46,48,57,53,50,53,49,93,44,91,45,56,49,46,53,52,49,56,56,49,44,51,51,46,49,53,56,50,55,57,93,44,91,45,56,49,46,51,54,52,56,53,55,44,51,51,46,49,48,56,48,54,49,93,44,91,45,56,49,46,49,57,51,48,57,57,44,51,51,46,49,49,56,54,54,56,93,44,91,45,56,49,46,50,50,55,55,55,56,44,51,51,46,49,54,50,54,50,50,93,44,91,45,56,49,46,50,50,50,54,55,51,44,51,51,46,52,52,93,44,91,45,56,49,46,51,55,50,57,51,49,44,51,51,46,52,57,48,52,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,68,101,99,97,116,117,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,56,51,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,49,55,57,49,55,55,44,51,53,46,56,49,54,55,56,53,93,44,91,45,56,56,46,49,57,48,52,54,53,44,51,53,46,54,48,57,48,56,56,93,44,91,45,56,56,46,50,52,49,54,55,55,44,51,53,46,52,50,51,50,54,51,93,44,91,45,56,56,46,49,56,57,54,54,49,44,51,53,46,51,56,52,51,48,51,93,44,91,45,56,56,46,48,50,52,55,52,49,44,51,53,46,51,57,50,51,48,55,93,44,91,45,56,56,46,48,48,55,55,48,57,44,51,53,46,52,50,51,51,56,49,93,44,91,45,56,55,46,57,55,52,54,51,44,51,53,46,53,50,49,48,50,53,93,44,91,45,56,56,46,48,51,53,56,51,55,44,51,53,46,54,50,49,56,51,57,93,44,91,45,56,56,46,48,51,52,55,56,56,44,51,53,46,55,49,55,50,54,49,93,44,91,45,56,55,46,57,55,48,55,51,56,44,51,53,46,56,49,53,55,48,53,93,44,91,45,56,56,46,49,55,55,56,53,57,44,51,53,46,56,52,53,56,52,49,93,44,91,45,56,56,46,49,55,57,49,55,55,44,51,53,46,56,49,54,55,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,108,97,99,107,102,111,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,49,50,57,44,34,98,101,100,115,34,58,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,52,55,48,49,52,44,52,48,46,53,54,54,57,50,57,93,44,91,45,56,53,46,52,52,52,51,51,44,52,48,46,51,55,57,49,52,93,44,91,45,56,53,46,50,49,57,57,48,49,44,52,48,46,51,55,57,48,51,52,93,44,91,45,56,53,46,50,48,49,49,52,54,44,52,48,46,53,54,55,50,52,50,93,44,91,45,56,53,46,52,52,55,48,49,52,44,52,48,46,53,54,54,57,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,69,116,111,119,97,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,50,57,51,57,44,34,98,101,100,115,34,58,55,51,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,48,54,48,56,54,44,51,52,46,50,48,48,55,53,54,93,44,91,45,56,54,46,51,48,51,53,49,54,44,51,52,46,48,57,57,48,55,51,93,44,91,45,56,54,46,51,50,53,54,50,50,44,51,51,46,57,52,48,49,52,55,93,44,91,45,56,54,46,50,49,53,53,50,53,44,51,51,46,57,56,55,52,50,49,93,44,91,45,56,54,46,48,54,53,50,55,50,44,51,51,46,56,52,50,49,57,56,93,44,91,45,56,53,46,56,56,49,55,54,56,44,51,51,46,57,53,48,50,57,57,93,44,91,45,56,53,46,55,51,56,57,55,53,44,51,51,46,57,54,56,52,54,93,44,91,45,56,53,46,56,52,51,54,49,55,44,51,52,46,50,48,48,48,48,54,93,44,91,45,56,54,46,49,48,54,48,56,54,44,51,52,46,50,48,48,55,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,97,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,52,46,51,55,52,57,54,50,44,52,51,46,49,57,57,54,52,93,44,91,45,49,49,52,46,51,57,52,54,48,54,44,52,51,46,51,50,54,52,54,55,93,44,91,45,49,49,52,46,53,51,52,52,56,56,44,52,51,46,51,51,51,51,56,51,93,44,91,45,49,49,52,46,53,49,50,52,51,56,44,52,51,46,52,54,48,52,53,52,93,44,91,45,49,49,52,46,54,56,51,49,52,44,52,51,46,53,57,51,51,54,55,93,44,91,45,49,49,52,46,55,48,50,48,53,44,52,51,46,56,48,53,52,49,51,93,44,91,45,49,49,52,46,57,56,57,50,53,56,44,52,51,46,56,53,56,53,54,51,93,44,91,45,49,49,53,46,48,56,51,48,56,57,44,52,51,46,54,48,52,50,57,50,93,44,91,45,49,49,53,46,48,56,54,49,53,53,44,52,51,46,49,57,56,48,54,52,93,44,91,45,49,49,52,46,53,57,52,54,48,53,44,52,51,46,49,57,56,51,52,53,93,44,91,45,49,49,52,46,51,55,52,57,54,50,44,52,51,46,49,57,57,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,82,101,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,49,48,49,44,34,98,101,100,115,34,58,50,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,50,50,49,51,54,44,51,56,46,49,55,51,55,49,51,93,44,91,45,57,56,46,52,55,50,55,57,52,44,51,56,46,49,55,50,55,53,55,93,44,91,45,57,56,46,52,55,50,50,53,55,44,51,55,46,56,50,52,52,57,55,93,44,91,45,57,56,46,52,54,52,56,48,52,44,51,55,46,55,51,50,54,55,53,93,44,91,45,57,55,46,56,48,55,56,50,51,44,51,55,46,55,51,51,56,53,53,93,44,91,45,57,55,46,54,57,56,54,57,50,44,51,55,46,55,51,53,48,53,54,93,44,91,45,57,55,46,55,48,49,57,54,57,44,51,55,46,57,49,49,51,50,53,93,44,91,45,57,55,46,55,48,49,56,52,49,44,51,56,46,49,55,51,56,49,52,93,44,91,45,57,55,46,57,50,50,49,51,54,44,51,56,46,49,55,51,55,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,77,97,117,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,57,55,55,54,44,34,98,101,100,115,34,58,50,56,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,51,51,57,50,51,50,44,51,53,46,54,53,57,49,49,93,44,91,45,56,55,46,50,57,52,53,51,52,44,51,53,46,52,52,52,54,55,54,93,44,91,45,56,55,46,50,48,54,53,55,56,44,51,53,46,52,51,51,50,48,55,93,44,91,45,56,55,46,49,50,48,56,56,51,44,51,53,46,52,53,53,54,54,93,44,91,45,56,54,46,57,54,48,56,48,52,44,51,53,46,52,49,55,48,50,49,93,44,91,45,56,54,46,56,52,57,53,55,51,44,51,53,46,53,50,53,53,49,53,93,44,91,45,56,54,46,55,56,50,48,49,54,44,51,53,46,55,48,54,53,57,53,93,44,91,45,56,55,46,50,49,53,48,57,57,44,51,53,46,56,53,48,54,53,49,93,44,91,45,56,55,46,50,51,52,49,52,51,44,51,53,46,55,50,52,54,57,49,93,44,91,45,56,55,46,51,51,57,50,51,50,44,51,53,46,54,53,57,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,54,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,71,111,115,104,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,121,111,109,105,110,103,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,51,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,54,53,53,54,51,57,44,52,50,46,54,48,57,52,54,56,93,44,91,45,49,48,52,46,54,53,51,51,51,56,44,52,49,46,54,53,51,48,48,55,93,44,91,45,49,48,52,46,54,53,50,57,57,50,44,52,49,46,53,54,53,48,49,52,93,44,91,45,49,48,52,46,48,53,50,53,52,44,52,49,46,53,54,52,50,55,52,93,44,91,45,49,48,52,46,48,53,50,54,56,56,44,52,49,46,54,57,55,57,53,52,93,44,91,45,49,48,52,46,48,53,50,54,52,53,44,52,50,46,48,48,49,55,49,56,93,44,91,45,49,48,52,46,48,53,50,56,51,56,44,52,50,46,54,49,49,55,54,55,93,44,91,45,49,48,52,46,54,53,53,54,51,57,44,52,50,46,54,48,57,52,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,82,117,115,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,56,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,54,55,56,55,52,57,44,52,53,46,54,51,56,50,54,52,93,44,91,45,57,49,46,53,52,48,50,57,52,44,52,53,46,54,51,55,54,48,53,93,44,91,45,57,49,46,53,52,49,51,50,50,44,52,53,46,50,57,50,50,50,93,44,91,45,57,48,46,57,50,53,50,50,50,44,52,53,46,50,57,50,48,54,49,93,44,91,45,57,48,46,57,50,53,51,52,51,44,52,53,46,51,55,57,51,53,93,44,91,45,57,48,46,54,55,56,55,55,51,44,52,53,46,51,55,55,57,48,55,93,44,91,45,57,48,46,54,55,56,55,52,57,44,52,53,46,54,51,56,50,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,49,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,51,34,44,34,78,65,77,69,34,58,34,87,97,117,107,101,115,104,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,56,56,55,57,44,34,98,101,100,115,34,58,49,48,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,53,51,53,56,52,51,44,52,51,46,49,57,54,48,52,56,93,44,91,45,56,56,46,53,52,49,53,51,53,44,52,50,46,56,52,50,57,57,54,93,44,91,45,56,56,46,51,48,54,51,56,52,44,52,50,46,56,52,50,48,57,53,93,44,91,45,56,56,46,48,54,57,57,50,52,44,52,50,46,56,52,51,51,50,51,93,44,91,45,56,56,46,48,54,51,51,53,51,44,52,51,46,49,57,50,49,49,55,93,44,91,45,56,56,46,52,49,55,57,56,55,44,52,51,46,49,57,52,54,57,55,93,44,91,45,56,56,46,53,51,53,56,52,51,44,52,51,46,49,57,54,48,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,71,97,114,114,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,51,50,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,55,52,52,56,56,56,44,51,55,46,55,49,51,48,55,53,93,44,91,45,56,52,46,54,53,56,50,57,54,44,51,55,46,54,51,52,53,48,49,93,44,91,45,56,52,46,52,52,54,55,49,57,44,51,55,46,52,56,53,56,57,51,93,44,91,45,56,52,46,51,52,55,56,48,53,44,51,55,46,53,51,57,48,54,52,93,44,91,45,56,52,46,53,50,53,54,52,51,44,51,55,46,55,54,57,52,57,55,93,44,91,45,56,52,46,55,49,54,57,50,53,44,51,55,46,56,49,53,51,56,57,93,44,91,45,56,52,46,55,52,52,56,56,56,44,51,55,46,55,49,51,48,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,78,111,114,102,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,56,50,52,57,44,34,98,101,100,115,34,58,49,51,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,49,57,49,49,53,53,44,52,50,46,50,56,51,48,53,57,93,44,91,45,55,49,46,52,55,56,49,49,57,44,52,50,46,49,53,54,55,56,50,93,44,91,45,55,49,46,52,57,56,50,53,57,44,52,50,46,48,49,55,50,55,50,93,44,91,45,55,49,46,51,56,49,50,57,57,44,52,49,46,57,56,53,48,56,52,93,44,91,45,55,49,46,48,56,48,52,56,51,44,52,50,46,48,57,53,53,51,57,93,44,91,45,55,48,46,57,50,52,56,55,55,44,52,50,46,49,53,55,53,56,93,44,91,45,55,48,46,57,54,48,49,57,50,44,52,50,46,50,57,57,52,57,56,93,44,91,45,55,49,46,49,57,49,49,53,53,44,52,50,46,50,56,51,48,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,101,110,100,114,105,99,107,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,57,52,48,44,34,98,101,100,115,34,58,50,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,57,53,49,50,55,44,51,57,46,56,54,52,56,52,53,93,44,91,45,56,54,46,54,56,55,52,48,54,44,51,57,46,54,51,48,52,51,55,93,44,91,45,56,54,46,54,53,54,54,53,44,51,57,46,54,48,49,51,57,53,93,44,91,45,56,54,46,52,54,53,54,48,53,44,51,57,46,54,48,48,55,54,57,93,44,91,45,56,54,46,51,50,54,51,52,49,44,51,57,46,54,51,50,49,55,55,93,44,91,45,56,54,46,51,50,54,50,57,51,44,51,57,46,57,50,52,48,50,57,93,44,91,45,56,54,46,54,57,53,48,55,49,44,51,57,46,57,50,50,55,55,93,44,91,45,56,54,46,54,57,53,49,50,55,44,51,57,46,56,54,52,56,52,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,55,48,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,55,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,108,108,105,110,111,105,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,53,53,49,44,34,98,101,100,115,34,58,49,55,57,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,53,57,53,48,55,51,44,51,55,46,57,53,53,51,52,51,93,44,91,45,56,57,46,54,55,52,51,50,49,44,51,55,46,56,48,51,49,53,50,93,44,91,45,56,57,46,53,49,50,48,48,57,44,51,55,46,54,56,53,53,50,53,93,44,91,45,56,57,46,53,50,49,53,54,52,44,51,55,46,53,55,50,49,53,54,93,44,91,45,56,57,46,52,52,56,53,57,56,44,51,55,46,53,57,56,56,50,49,93,44,91,45,56,57,46,49,53,51,54,49,55,44,51,55,46,54,48,48,50,51,55,93,44,91,45,56,57,46,49,53,49,49,55,54,44,51,55,46,56,54,49,57,57,57,93,44,91,45,56,57,46,49,55,55,53,57,55,44,51,55,46,57,53,48,51,49,49,93,44,91,45,56,57,46,53,57,53,48,55,51,44,51,55,46,57,53,53,51,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,71,101,111,114,103,101,116,111,119,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,49,54,48,53,44,34,98,101,100,115,34,58,52,54,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,51,49,55,48,52,49,44,51,51,46,55,55,57,56,55,56,93,44,91,45,55,57,46,52,48,57,51,51,50,44,51,51,46,54,56,56,56,57,93,44,91,45,55,57,46,52,51,53,55,51,51,44,51,51,46,53,55,50,55,48,50,93,44,91,45,55,57,46,53,57,48,49,49,44,51,51,46,52,52,51,53,52,93,44,91,45,55,57,46,54,55,55,48,49,52,44,51,51,46,51,48,52,57,52,52,93,44,91,45,55,57,46,52,52,54,54,57,57,44,51,51,46,50,49,51,52,53,56,93,44,91,45,55,57,46,50,54,49,56,51,44,51,51,46,48,52,57,55,57,51,93,44,91,45,55,57,46,48,57,49,54,49,52,44,51,51,46,49,53,57,48,53,54,93,44,91,45,55,57,46,49,50,48,50,49,55,44,51,51,46,50,52,54,57,51,50,93,44,91,45,55,57,46,48,56,55,53,56,49,44,51,51,46,51,54,57,50,56,55,93,44,91,45,55,56,46,57,50,54,48,55,53,44,51,51,46,53,55,50,54,53,56,93,44,91,45,55,57,46,49,48,49,48,55,52,44,51,51,46,53,55,50,57,54,57,93,44,91,45,55,57,46,49,57,48,50,54,52,44,51,51,46,55,48,53,55,56,55,93,44,91,45,55,57,46,51,49,55,48,52,49,44,51,51,46,55,55,57,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,56,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,72,101,116,116,105,110,103,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,53,55,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,57,54,55,52,52,44,52,54,46,54,51,49,48,50,54,93,44,91,45,49,48,50,46,57,50,55,52,53,49,44,52,54,46,54,51,48,48,50,93,44,91,45,49,48,50,46,57,50,52,53,52,55,44,52,54,46,50,56,49,53,49,56,93,44,91,45,49,48,50,46,52,57,55,54,52,50,44,52,54,46,50,56,51,49,57,53,93,44,91,45,49,48,50,46,52,57,55,49,51,55,44,52,54,46,50,48,53,57,48,52,93,44,91,45,49,48,49,46,57,57,55,57,51,44,52,54,46,50,48,53,51,50,52,93,44,91,45,49,48,50,46,48,52,54,55,56,57,44,52,54,46,50,56,51,55,52,54,93,44,91,45,49,48,50,46,48,53,49,50,52,44,52,54,46,54,51,48,57,49,55,93,44,91,45,49,48,50,46,48,57,54,55,52,52,44,52,54,46,54,51,49,48,50,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,71,114,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,54,49,54,44,34,98,101,100,115,34,58,49,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,57,46,48,53,49,50,50,54,44,51,57,46,52,57,55,55,51,57,93,44,91,45,49,48,57,46,49,48,54,57,55,50,44,51,57,46,52,54,49,57,55,57,93,44,91,45,49,48,57,46,57,53,51,51,52,57,44,51,57,46,52,54,49,56,48,49,93,44,91,45,49,49,48,46,48,50,51,57,54,51,44,51,57,46,52,54,57,50,54,56,93,44,91,45,49,49,48,46,48,50,52,49,49,56,44,51,57,46,52,54,57,50,54,57,93,44,91,45,49,49,48,46,48,50,50,49,54,54,44,51,57,46,51,53,50,48,49,56,93,44,91,45,49,49,48,46,48,55,55,50,55,44,51,57,46,50,55,53,56,54,57,93,44,91,45,49,49,48,46,49,53,54,50,50,50,44,51,57,46,48,51,50,54,53,52,93,44,91,45,49,49,48,46,49,54,50,53,50,57,44,51,56,46,56,54,51,57,50,50,93,44,91,45,49,49,48,46,48,56,49,57,51,57,44,51,56,46,55,53,54,54,54,54,93,44,91,45,49,48,57,46,57,57,52,50,56,51,44,51,56,46,53,50,55,49,49,56,93,44,91,45,49,49,48,46,48,50,53,52,48,50,44,51,56,46,52,57,57,57,56,49,93,44,91,45,49,48,57,46,48,54,48,49,49,57,44,51,56,46,52,57,57,57,56,57,93,44,91,45,49,48,57,46,48,53,48,55,54,53,44,51,57,46,51,54,54,54,55,55,93,44,91,45,49,48,57,46,48,53,49,50,50,54,44,51,57,46,52,57,55,55,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,57,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,84,111,111,101,108,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,85,116,97,104,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,85,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,53,49,56,53,44,34,98,101,100,115,34,58,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,50,46,52,57,51,53,49,53,44,52,49,46,48,55,54,56,56,56,93,44,91,45,49,49,50,46,55,57,57,51,53,57,44,52,48,46,57,57,57,57,51,57,93,44,91,45,49,49,52,46,48,52,50,48,50,57,44,52,48,46,57,57,57,56,57,54,93,44,91,45,49,49,52,46,48,52,54,54,49,52,44,52,48,46,49,49,54,57,51,54,93,44,91,45,49,49,52,46,48,52,55,48,50,54,44,51,57,46,57,48,54,48,57,55,93,44,91,45,49,49,51,46,50,52,56,52,57,56,44,51,57,46,57,48,52,55,49,52,93,44,91,45,49,49,50,46,51,52,49,57,56,56,44,51,57,46,57,48,52,52,53,56,93,44,91,45,49,49,50,46,49,55,57,56,44,52,48,46,48,49,49,54,53,54,93,44,91,45,49,49,50,46,49,52,54,56,53,54,44,52,48,46,49,55,55,56,49,55,93,44,91,45,49,49,50,46,49,57,56,52,54,49,44,52,48,46,51,49,51,50,48,54,93,44,91,45,49,49,50,46,49,55,50,56,54,50,44,52,48,46,52,54,55,48,54,53,93,44,91,45,49,49,50,46,49,55,53,51,51,55,44,52,48,46,54,48,51,57,56,49,93,44,91,45,49,49,50,46,50,54,48,50,49,54,44,52,48,46,55,54,57,48,57,51,93,44,91,45,49,49,50,46,52,57,51,53,49,53,44,52,49,46,48,55,54,56,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,54,53,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,54,53,48,34,44,34,78,65,77,69,34,58,34,72,97,109,112,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,53,53,56,51,44,34,98,101,100,115,34,58,51,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,52,51,56,48,50,54,44,51,55,46,48,57,52,51,52,56,93,44,91,45,55,54,46,51,56,52,52,49,57,44,51,54,46,57,53,49,48,53,57,93,44,91,45,55,54,46,51,52,49,56,50,53,44,51,54,46,57,50,52,55,55,50,93,44,91,45,55,54,46,51,51,50,50,53,55,44,51,54,46,57,54,54,48,57,57,93,44,91,45,55,54,46,49,51,51,56,55,50,44,51,55,46,48,52,48,56,56,54,93,44,91,45,55,54,46,49,51,52,57,52,49,44,51,55,46,49,49,55,54,48,51,93,44,91,45,55,54,46,51,57,53,55,57,53,44,51,55,46,49,48,55,49,55,52,93,44,91,45,55,54,46,52,51,56,48,50,54,44,51,55,46,48,57,52,51,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,117,102,102,97,108,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,54,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,53,48,50,52,56,44,52,52,46,53,57,54,54,52,57,93,44,91,45,57,50,46,48,50,57,49,56,44,52,52,46,53,56,54,50,57,50,93,44,91,45,57,50,46,48,56,51,53,55,50,44,52,52,46,52,48,55,51,51,54,93,44,91,45,57,49,46,57,50,56,50,50,52,44,52,52,46,51,51,53,52,55,51,93,44,91,45,57,49,46,56,53,56,50,52,53,44,52,52,46,49,57,51,48,48,52,93,44,91,45,57,49,46,53,53,57,48,48,52,44,52,52,46,48,50,53,51,49,53,93,44,91,45,57,49,46,54,49,50,51,51,49,44,52,52,46,49,54,56,56,48,57,93,44,91,45,57,49,46,53,50,57,55,52,49,44,52,52,46,50,52,54,55,55,55,93,44,91,45,57,49,46,53,50,57,49,48,49,44,52,52,46,53,57,54,49,57,55,93,44,91,45,57,49,46,54,53,48,50,52,56,44,52,52,46,53,57,54,54,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,70,114,101,100,101,114,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,53,49,53,51,44,34,98,101,100,115,34,58,51,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,51,52,55,48,56,55,44,51,57,46,52,54,54,48,49,50,93,44,91,45,55,56,46,51,52,48,52,49,53,44,51,57,46,51,53,51,54,50,56,93,44,91,45,55,56,46,52,49,57,52,50,50,44,51,57,46,50,53,55,52,55,54,93,44,91,45,55,56,46,52,48,51,57,48,55,44,51,57,46,49,54,55,55,51,56,93,44,91,45,55,56,46,53,48,56,49,51,50,44,51,57,46,48,56,56,54,51,93,44,91,45,55,56,46,53,52,52,49,56,50,44,51,57,46,48,53,54,53,53,57,93,44,91,45,55,56,46,51,49,52,48,56,44,51,57,46,48,48,55,57,57,52,93,44,91,45,55,56,46,49,53,49,54,49,52,44,51,57,46,48,51,54,54,50,57,93,44,91,45,55,56,46,48,51,51,49,57,49,44,51,57,46,50,54,52,54,49,50,93,44,91,45,55,56,46,50,50,56,55,54,54,44,51,57,46,51,57,49,50,51,51,93,44,91,45,55,56,46,51,52,55,48,56,55,44,51,57,46,52,54,54,48,49,50,93,93,44,91,91,45,55,56,46,50,48,48,52,57,55,44,51,57,46,49,56,48,49,54,51,93,44,91,45,55,56,46,49,52,56,56,57,53,44,51,57,46,49,55,53,51,53,50,93,44,91,45,55,56,46,49,55,49,54,50,44,51,57,46,49,52,51,49,55,52,93,44,91,45,55,56,46,50,48,48,52,57,55,44,51,57,46,49,56,48,49,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,50,55,54,44,34,98,101,100,115,34,58,50,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,55,50,56,51,50,54,44,51,57,46,48,57,53,54,55,57,93,44,91,45,56,48,46,55,49,54,56,49,53,44,51,57,46,48,48,56,52,51,93,44,91,45,56,48,46,54,48,53,55,57,57,44,51,56,46,57,48,52,49,54,55,93,44,91,45,56,48,46,52,55,51,55,54,56,44,51,56,46,56,50,57,48,57,56,93,44,91,45,56,48,46,52,53,55,51,51,50,44,51,56,46,55,51,57,49,54,57,93,44,91,45,56,48,46,51,57,51,48,54,51,44,51,56,46,55,50,55,53,55,49,93,44,91,45,56,48,46,51,56,54,57,56,57,44,51,56,46,56,55,52,56,48,56,93,44,91,45,56,48,46,51,49,57,51,52,54,44,51,56,46,57,54,48,57,49,57,93,44,91,45,56,48,46,51,48,48,50,48,57,44,51,57,46,49,48,51,56,53,55,93,44,91,45,56,48,46,53,57,54,49,50,54,44,51,57,46,49,54,55,48,54,57,93,44,91,45,56,48,46,55,50,56,51,50,54,44,51,57,46,48,57,53,54,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,80,111,108,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,53,57,49,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,52,54,55,48,51,44,52,56,46,49,55,51,50,50,51,93,44,91,45,57,55,46,48,53,53,53,57,55,44,52,55,46,57,52,57,49,50,57,93,44,91,45,57,54,46,56,56,54,56,52,54,44,52,55,46,54,55,50,48,54,51,93,44,91,45,57,54,46,56,52,56,57,50,51,44,52,55,46,52,57,56,57,57,49,93,44,91,45,57,54,46,48,54,55,54,50,49,44,52,55,46,52,57,57,49,51,54,93,44,91,45,57,53,46,53,53,52,50,52,56,44,52,55,46,52,57,57,56,57,51,93,44,91,45,57,53,46,53,56,50,49,53,53,44,52,55,46,57,51,51,57,54,54,93,44,91,45,57,53,46,55,48,57,54,49,57,44,52,55,46,57,51,53,56,48,53,93,44,91,45,57,53,46,56,51,54,56,50,55,44,52,55,46,56,52,56,50,49,57,93,44,91,45,57,53,46,56,51,55,49,55,55,44,52,55,46,55,54,48,56,57,52,93,44,91,45,57,54,46,51,53,49,55,50,55,44,52,55,46,55,54,48,51,93,44,91,45,57,54,46,52,56,50,48,57,50,44,52,55,46,56,52,55,52,50,56,93,44,91,45,57,54,46,52,56,50,53,53,44,52,55,46,57,54,51,53,57,53,93,44,91,45,57,54,46,53,48,48,56,52,51,44,52,56,46,49,55,52,49,48,56,93,44,91,45,57,55,46,49,52,54,55,48,51,44,52,56,46,49,55,51,50,50,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,55,34,44,34,78,65,77,69,34,58,34,82,101,100,119,111,111,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,51,51,49,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,51,54,48,49,55,55,44,52,52,46,54,57,56,53,52,93,44,91,45,57,53,46,51,54,48,52,44,52,52,46,53,52,49,55,54,50,93,44,91,45,57,53,46,53,57,52,56,49,55,44,52,52,46,53,52,50,51,48,53,93,44,91,45,57,53,46,53,57,51,53,55,44,52,52,46,49,57,53,53,51,93,44,91,45,57,53,46,52,54,50,53,52,55,44,52,52,46,49,57,53,57,52,50,93,44,91,45,57,53,46,49,48,56,55,55,55,44,52,52,46,49,57,53,48,52,52,93,44,91,45,57,53,46,49,48,55,52,56,44,52,52,46,50,56,49,55,54,56,93,44,91,45,57,52,46,56,54,54,50,53,57,44,52,52,46,50,56,50,51,55,50,93,44,91,45,57,52,46,56,54,53,56,50,52,44,52,52,46,52,57,56,50,49,56,93,44,91,45,57,53,46,48,49,51,53,57,57,44,52,52,46,53,52,50,56,51,51,93,44,91,45,57,53,46,50,52,48,52,51,57,44,52,52,46,54,54,52,54,48,52,93,44,91,45,57,53,46,51,54,48,49,55,55,44,52,52,46,54,57,56,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,70,97,121,101,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,57,54,57,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,51,50,55,55,54,44,51,53,46,51,55,53,56,50,52,93,44,91,45,56,57,46,54,52,52,48,53,44,51,52,46,57,57,53,50,57,49,93,44,91,45,56,57,46,51,53,50,54,55,57,44,51,52,46,57,57,51,56,54,51,93,44,91,45,56,57,46,49,57,56,50,56,56,44,51,52,46,57,57,52,52,56,52,93,44,91,45,56,57,46,49,56,51,57,52,52,44,51,53,46,51,57,55,49,50,54,93,44,91,45,56,57,46,52,55,52,49,55,49,44,51,53,46,52,48,51,48,51,57,93,44,91,45,56,57,46,54,51,50,55,55,54,44,51,53,46,51,55,53,56,50,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,83,116,46,32,67,104,97,114,108,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,50,55,50,52,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,53,57,56,56,57,44,51,48,46,49,54,51,52,49,93,44,91,45,57,48,46,51,50,54,54,51,55,44,51,48,46,49,53,48,49,56,56,93,44,91,45,57,48,46,52,53,48,50,49,56,44,51,48,46,48,51,51,49,48,54,93,44,91,45,57,48,46,53,51,56,49,51,50,44,51,48,46,48,49,54,56,56,52,93,44,91,45,57,48,46,53,50,57,54,48,49,44,50,57,46,56,56,52,57,57,55,93,44,91,45,57,48,46,51,55,49,57,55,56,44,50,57,46,55,53,57,50,51,57,93,44,91,45,57,48,46,51,52,54,49,57,49,44,50,57,46,54,57,51,51,48,50,93,44,91,45,57,48,46,50,50,56,49,53,55,44,50,57,46,54,57,50,48,50,56,93,44,91,45,57,48,46,49,54,55,50,57,55,44,50,57,46,56,49,55,52,48,55,93,44,91,45,57,48,46,50,52,48,49,55,51,44,50,57,46,56,54,50,49,49,55,93,44,91,45,57,48,46,50,56,48,50,57,54,44,50,57,46,57,55,50,54,49,56,93,44,91,45,57,48,46,50,53,57,56,56,57,44,51,48,46,49,54,51,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,80,111,105,110,115,101,116,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,48,53,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,50,56,54,55,51,54,44,51,53,46,54,57,57,57,49,52,93,44,91,45,57,49,46,48,51,54,57,54,55,44,51,53,46,55,48,56,52,49,56,93,44,91,45,57,49,46,48,51,57,50,51,44,51,53,46,52,52,52,55,49,55,93,44,91,45,57,48,46,53,48,50,52,50,57,44,51,53,46,52,52,49,55,50,54,93,44,91,45,57,48,46,50,56,54,56,57,57,44,51,53,46,52,51,56,53,55,51,93,44,91,45,57,48,46,50,56,54,55,51,54,44,51,53,46,54,57,57,57,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,71,117,108,102,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,48,53,53,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,51,56,57,54,55,57,44,51,48,46,50,48,48,57,55,51,93,44,91,45,56,53,46,51,56,56,54,54,57,44,50,57,46,57,50,52,51,53,57,93,44,91,45,56,53,46,52,52,54,50,56,57,44,50,57,46,57,48,49,48,51,51,93,44,91,45,56,53,46,52,55,52,57,57,54,44,50,57,46,56,51,49,53,52,50,93,44,91,45,56,53,46,51,56,49,54,56,52,44,50,57,46,54,49,50,56,53,51,93,44,91,45,56,53,46,50,52,54,51,49,54,44,50,57,46,54,50,53,48,48,50,93,44,91,45,56,53,46,50,48,54,50,50,54,44,50,57,46,55,49,49,49,56,56,93,44,91,45,56,53,46,48,50,48,53,51,52,44,50,57,46,56,48,55,51,55,51,93,44,91,45,56,53,46,48,50,53,52,51,57,44,50,57,46,57,55,49,51,57,57,93,44,91,45,56,53,46,49,51,53,50,53,52,44,51,48,46,48,52,51,50,55,93,44,91,45,56,53,46,49,49,53,54,54,44,51,48,46,49,57,57,57,55,54,93,44,91,45,56,53,46,51,56,57,54,55,57,44,51,48,46,50,48,48,57,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,48,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,51,34,44,34,78,65,77,69,34,58,34,72,97,109,98,108,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,51,55,52,48,44,34,98,101,100,115,34,58,49,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,50,53,53,50,57,50,44,51,54,46,50,56,57,48,57,50,93,44,91,45,56,51,46,51,53,53,49,57,54,44,51,54,46,50,56,50,53,57,93,44,91,45,56,51,46,52,54,55,48,57,55,44,51,54,46,49,55,52,54,56,56,93,44,91,45,56,51,46,50,57,51,54,56,57,44,51,54,46,49,51,56,49,57,51,93,44,91,45,56,51,46,50,51,52,53,56,53,44,51,54,46,48,56,53,48,57,52,93,44,91,45,56,51,46,49,54,54,48,56,53,44,51,54,46,49,56,48,56,57,52,93,44,91,45,56,51,46,48,56,50,51,49,50,44,51,54,46,50,52,50,50,57,54,93,44,91,45,56,51,46,49,53,49,54,56,57,44,51,54,46,51,49,56,49,57,50,93,44,91,45,56,51,46,50,53,53,50,57,50,44,51,54,46,50,56,57,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,67,104,105,108,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,57,51,48,44,34,98,101,100,115,34,58,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,56,56,49,49,56,50,44,51,51,46,48,52,57,57,48,49,93,44,91,45,56,54,46,56,55,54,49,49,56,44,51,50,46,56,51,54,50,54,52,93,44,91,45,56,55,46,48,49,57,49,53,55,44,51,50,46,56,51,55,48,51,52,93,44,91,45,56,55,46,48,49,55,55,54,50,44,51,50,46,55,50,57,53,51,50,93,44,91,45,56,54,46,57,49,55,53,57,53,44,51,50,46,54,54,52,49,54,57,93,44,91,45,56,54,46,55,49,52,50,49,57,44,51,50,46,55,48,53,54,57,52,93,44,91,45,56,54,46,52,49,51,49,49,54,44,51,50,46,55,48,55,51,56,54,93,44,91,45,56,54,46,51,55,52,57,55,52,44,51,50,46,55,53,51,53,56,93,44,91,45,56,54,46,52,53,55,48,49,53,44,51,50,46,56,49,51,56,57,57,93,44,91,45,56,54,46,53,49,55,51,52,52,44,51,51,46,48,50,48,53,54,54,93,44,91,45,56,54,46,54,49,48,48,48,51,44,51,51,46,48,55,48,48,48,51,93,44,91,45,56,54,46,56,56,49,49,56,50,44,51,51,46,48,52,57,57,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,53,49,34,44,34,78,65,77,69,34,58,34,78,101,119,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,48,53,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,49,49,49,50,54,44,51,49,46,49,53,56,48,55,49,93,44,91,45,57,51,46,56,54,53,55,49,49,44,51,48,46,57,52,55,50,49,56,93,44,91,45,57,51,46,57,48,49,52,53,50,44,51,48,46,50,52,50,54,55,50,93,44,91,45,57,51,46,55,48,54,57,57,51,44,51,48,46,50,52,51,55,51,54,93,44,91,45,57,51,46,55,54,52,50,53,50,44,51,48,46,51,51,48,50,50,57,93,44,91,45,57,51,46,55,52,49,54,55,57,44,51,48,46,52,48,50,57,55,53,93,44,91,45,57,51,46,55,51,56,55,56,56,44,51,48,46,53,52,48,57,55,53,93,44,91,45,57,51,46,54,51,49,51,52,53,44,51,48,46,54,55,55,56,55,50,93,44,91,45,57,51,46,53,53,56,53,57,54,44,51,48,46,56,54,56,56,50,50,93,44,91,45,57,51,46,53,50,52,55,51,57,44,51,49,46,48,51,57,48,48,55,93,44,91,45,57,51,46,53,53,50,53,50,52,44,51,49,46,49,56,53,52,48,53,93,44,91,45,57,51,46,54,48,48,51,48,56,44,51,49,46,49,55,54,49,53,56,93,44,91,45,57,51,46,57,49,49,49,50,54,44,51,49,46,49,53,56,48,55,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,49,57,34,44,34,78,65,77,69,34,58,34,72,111,99,107,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,49,54,50,44,34,98,101,100,115,34,58,52,56,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,54,49,53,52,52,55,44,51,51,46,56,50,53,49,50,49,93,44,91,45,49,48,50,46,53,57,52,56,51,54,44,51,51,46,51,56,56,52,56,57,93,44,91,45,49,48,50,46,48,55,53,57,50,57,44,51,51,46,51,56,57,53,56,54,93,44,91,45,49,48,50,46,48,56,53,55,51,51,44,51,51,46,56,50,52,54,55,53,93,44,91,45,49,48,50,46,54,49,53,52,52,55,44,51,51,46,56,50,53,49,50,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,48,48,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,57,34,44,34,78,65,77,69,34,58,34,66,97,108,100,119,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,50,56,54,44,34,98,101,100,115,34,58,51,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,50,57,48,57,44,51,51,46,49,56,53,51,53,50,93,44,91,45,56,51,46,51,53,55,54,56,53,44,51,50,46,57,50,54,49,52,49,93,44,91,45,56,51,46,49,51,51,56,52,55,44,51,51,46,48,48,55,50,52,56,93,44,91,45,56,51,46,48,55,51,54,52,56,44,51,50,46,57,52,54,53,54,50,93,44,91,45,56,51,46,48,53,50,49,57,55,44,51,51,46,48,56,48,54,56,50,93,44,91,45,56,51,46,48,57,55,54,52,57,44,51,51,46,49,53,49,53,51,54,93,44,91,45,56,51,46,50,55,52,49,48,56,44,51,51,46,49,56,55,50,51,56,93,44,91,45,56,51,46,52,50,57,48,57,44,51,51,46,49,56,53,51,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,84,114,97,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,51,53,49,51,44,34,98,101,100,115,34,58,57,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,57,50,48,56,56,49,44,51,53,46,50,57,50,48,51,55,93,44,91,45,56,51,46,48,48,56,53,51,49,44,51,53,46,48,50,55,51,57,52,93,44,91,45,56,50,46,56,57,55,51,55,51,44,51,53,46,48,53,54,50,49,52,93,44,91,45,56,50,46,55,54,52,53,55,53,44,51,53,46,48,54,56,51,56,93,44,91,45,56,50,46,53,55,52,56,51,57,44,51,53,46,49,52,53,52,52,57,93,44,91,45,56,50,46,54,49,48,49,56,54,44,51,53,46,50,56,56,49,57,57,93,44,91,45,56,50,46,55,52,53,49,51,57,44,51,53,46,52,50,50,57,54,55,93,44,91,45,56,50,46,56,51,50,50,52,52,44,51,53,46,51,49,56,51,50,52,93,44,91,45,56,50,46,57,50,48,56,56,49,44,51,53,46,50,57,50,48,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,49,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,49,34,44,34,78,65,77,69,34,58,34,83,117,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,48,57,57,44,34,98,101,100,115,34,58,50,50,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,57,54,55,49,53,51,44,51,54,46,52,48,50,48,50,93,44,91,45,56,48,46,56,54,56,55,52,54,44,51,54,46,51,50,54,52,52,55,93,44,91,45,56,48,46,56,55,51,50,48,53,44,51,54,46,50,51,54,51,48,53,93,44,91,45,56,48,46,54,51,49,53,52,52,44,51,54,46,50,56,53,53,56,52,93,44,91,45,56,48,46,52,53,50,51,50,50,44,51,54,46,50,52,49,52,49,57,93,44,91,45,56,48,46,52,53,49,54,57,54,44,51,54,46,50,54,49,53,48,50,93,44,91,45,56,48,46,52,52,48,48,57,56,44,51,54,46,53,53,48,54,53,53,93,44,91,45,56,48,46,54,49,50,48,53,55,44,51,54,46,53,53,55,56,57,56,93,44,91,45,56,48,46,56,51,55,57,53,52,44,51,54,46,53,53,57,49,52,51,93,44,91,45,56,48,46,57,48,49,54,52,49,44,51,54,46,53,54,49,55,54,54,93,44,91,45,56,48,46,57,54,55,49,53,51,44,51,54,46,52,48,50,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,102,102,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,50,56,56,44,34,98,101,100,115,34,58,49,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,52,53,56,57,53,44,51,49,46,54,49,55,55,52,49,93,44,91,45,56,54,46,49,57,51,57,53,49,44,51,49,46,52,52,48,48,55,50,93,44,91,45,56,54,46,49,57,51,52,55,54,44,51,49,46,49,57,50,50,49,51,93,44,91,45,56,53,46,55,57,49,52,48,50,44,51,49,46,49,57,54,51,52,57,93,44,91,45,56,53,46,55,56,57,49,52,50,44,51,49,46,54,49,55,57,54,52,93,44,91,45,56,54,46,49,52,53,56,57,53,44,51,49,46,54,49,55,55,52,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,57,34,44,34,78,65,77,69,34,58,34,83,104,101,108,98,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,55,57,55,44,34,98,101,100,115,34,58,57,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,52,51,52,54,51,49,44,52,48,46,51,53,52,50,53,57,93,44,91,45,56,52,46,52,51,50,53,55,53,44,52,48,46,49,57,55,48,51,55,93,44,91,45,56,52,46,48,50,50,57,49,57,44,52,48,46,49,56,51,57,52,53,93,44,91,45,56,52,46,48,49,52,55,54,51,44,52,48,46,50,55,51,52,53,57,93,44,91,45,56,52,46,48,48,50,51,55,50,44,52,48,46,52,56,51,49,49,53,93,44,91,45,56,52,46,51,51,57,49,51,55,44,52,48,46,52,56,49,48,55,54,93,44,91,45,56,52,46,51,51,56,54,44,52,48,46,51,55,57,49,57,57,93,44,91,45,56,52,46,52,51,52,51,56,55,44,52,48,46,51,53,52,53,51,52,93,44,91,45,56,52,46,52,51,52,54,51,49,44,52,48,46,51,53,52,50,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,54,48,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,55,34,44,34,78,65,77,69,34,58,34,67,97,110,121,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,100,97,104,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,50,50,51,48,44,34,98,101,100,115,34,58,51,52,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,55,46,48,50,54,53,51,56,44,52,51,46,54,56,48,56,48,50,93,44,91,45,49,49,54,46,56,52,52,57,55,56,44,52,51,46,53,57,52,52,93,44,91,45,49,49,54,46,55,56,49,51,51,54,44,52,51,46,52,55,56,54,51,51,93,44,91,45,49,49,54,46,53,49,49,56,57,55,44,52,51,46,50,57,48,53,50,93,44,91,45,49,49,54,46,52,55,51,53,57,55,44,52,51,46,52,53,57,50,49,56,93,44,91,45,49,49,54,46,52,55,51,52,57,50,44,52,51,46,54,51,52,49,48,51,93,44,91,45,49,49,54,46,53,49,50,53,48,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,55,49,50,54,55,50,44,52,51,46,56,48,55,49,54,49,93,44,91,45,49,49,54,46,56,53,51,49,53,52,44,52,51,46,55,57,50,55,49,93,44,91,45,49,49,54,46,57,56,51,56,50,55,44,52,51,46,56,56,48,48,52,54,93,44,91,45,49,49,55,46,48,51,50,50,56,57,44,52,51,46,56,50,56,55,54,55,93,44,91,45,49,49,55,46,48,50,54,53,51,56,44,52,51,46,54,56,48,56,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,68,97,110,105,101,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,51,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,49,49,50,48,53,56,44,52,56,46,57,57,57,52,54,93,44,91,45,49,48,54,46,49,53,49,57,48,56,44,52,56,46,56,50,51,57,50,55,93,44,91,45,49,48,54,46,48,50,49,50,53,49,44,52,56,46,56,50,51,57,55,53,93,44,91,45,49,48,54,46,48,49,57,56,50,44,52,56,46,53,54,51,50,50,49,93,44,91,45,49,48,53,46,56,48,52,52,51,54,44,52,56,46,53,54,51,51,53,56,93,44,91,45,49,48,52,46,57,55,51,51,53,52,44,52,56,46,53,54,51,49,57,93,44,91,45,49,48,53,46,48,51,56,53,52,56,44,52,56,46,54,53,48,48,57,57,93,44,91,45,49,48,53,46,48,53,55,54,52,50,44,52,56,46,57,57,57,48,49,50,93,44,91,45,49,48,54,46,49,49,50,48,53,56,44,52,56,46,57,57,57,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,51,34,44,34,78,65,77,69,34,58,34,76,101,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,56,49,48,50,44,34,98,101,100,115,34,58,49,50,48,56,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,50,56,50,53,53,57,44,51,48,46,54,56,53,51,51,52,93,44,91,45,56,52,46,52,50,48,52,55,52,44,51,48,46,52,54,51,57,48,53,93,44,91,45,56,52,46,54,52,54,52,48,56,44,51,48,46,51,56,56,50,56,49,93,44,91,45,56,52,46,55,49,51,51,53,49,44,51,48,46,51,48,48,49,55,93,44,91,45,56,52,46,50,52,55,54,55,51,44,51,48,46,51,48,51,52,57,51,93,44,91,45,56,52,46,48,55,53,53,51,57,44,51,48,46,50,55,51,54,49,55,93,44,91,45,56,52,46,48,55,52,54,57,49,44,51,48,46,52,51,52,51,48,50,93,44,91,45,56,51,46,57,55,56,54,48,55,44,51,48,46,53,50,50,54,56,55,93,44,91,45,56,52,46,48,48,55,52,53,52,44,51,48,46,54,55,50,49,50,55,93,44,91,45,56,52,46,48,56,51,55,53,55,44,51,48,46,54,55,53,56,48,52,93,44,91,45,56,52,46,50,56,50,53,53,57,44,51,48,46,54,56,53,51,51,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,49,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,57,34,44,34,78,65,77,69,34,58,34,80,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,49,53,49,50,44,34,98,101,100,115,34,58,50,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,54,50,50,49,50,44,51,54,46,49,53,57,57,48,51,93,44,91,45,57,54,46,56,49,57,48,48,53,44,51,54,46,49,53,56,56,56,54,93,44,91,45,57,54,46,57,50,53,48,54,57,44,51,54,46,50,52,54,52,55,52,93,44,91,45,57,55,46,49,52,48,57,54,56,44,51,54,46,50,52,54,52,51,53,93,44,91,45,57,55,46,49,52,48,54,54,56,44,51,54,46,49,53,57,50,51,49,93,44,91,45,57,55,46,51,53,52,49,51,50,44,51,54,46,49,53,57,48,55,50,93,44,91,45,57,55,46,51,50,51,54,50,44,51,54,46,48,49,48,56,55,55,93,44,91,45,57,55,46,49,52,48,53,56,51,44,51,53,46,57,52,49,57,57,49,93,44,91,45,57,54,46,54,49,57,54,53,53,44,51,53,46,57,52,49,53,55,49,93,44,91,45,57,54,46,54,50,50,49,50,44,51,54,46,49,53,57,57,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,57,34,44,34,78,65,77,69,34,58,34,67,111,118,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,51,53,49,44,34,98,101,100,115,34,58,49,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,49,57,51,57,53,49,44,51,49,46,52,52,48,48,55,50,93,44,91,45,56,54,46,51,57,56,53,51,54,44,51,49,46,52,53,49,51,50,53,93,44,91,45,56,54,46,52,57,57,50,49,51,44,51,49,46,53,50,53,51,51,49,93,44,91,45,56,54,46,55,48,49,53,53,52,44,51,49,46,53,50,51,57,52,54,93,44,91,45,56,54,46,55,48,48,50,56,50,44,51,49,46,49,57,50,50,49,55,93,44,91,45,56,54,46,54,56,56,51,49,55,44,51,48,46,57,57,52,53,48,55,93,44,91,45,56,54,46,51,56,56,54,52,54,44,51,48,46,57,57,52,49,56,49,93,44,91,45,56,54,46,49,56,55,50,52,54,44,51,48,46,57,57,52,48,50,49,93,44,91,45,56,54,46,49,57,51,52,55,54,44,51,49,46,49,57,50,50,49,51,93,44,91,45,56,54,46,49,57,51,57,53,49,44,51,49,46,52,52,48,48,55,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,56,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,76,97,119,114,101,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,110,100,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,54,49,57,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,54,56,50,56,53,51,44,51,56,46,57,48,52,54,57,55,93,44,91,45,56,54,46,54,56,51,49,48,50,44,51,56,46,54,56,54,53,54,49,93,44,91,45,56,54,46,51,48,56,55,48,49,44,51,56,46,54,56,56,49,48,49,93,44,91,45,56,54,46,50,55,53,50,56,49,44,51,56,46,55,54,51,55,57,53,93,44,91,45,56,54,46,51,49,55,52,55,52,44,51,56,46,57,57,48,56,55,93,44,91,45,56,54,46,54,56,50,50,55,55,44,51,56,46,57,57,50,52,48,52,93,44,91,45,56,54,46,54,56,50,56,53,51,44,51,56,46,57,48,52,54,57,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,57,34,44,34,78,65,77,69,34,58,34,71,114,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,51,55,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,48,46,50,50,54,54,49,44,51,56,46,48,48,49,48,49,53,93,44,91,45,49,48,48,46,54,54,52,49,54,54,44,51,56,46,48,48,50,53,51,93,44,91,45,49,48,48,46,54,53,50,50,53,49,44,51,55,46,55,51,54,50,55,53,93,44,91,45,49,48,48,46,54,53,50,54,52,50,44,51,55,46,52,55,52,56,52,56,93,44,91,45,49,48,48,46,50,49,54,50,50,57,44,51,55,46,52,55,53,49,57,93,44,91,45,49,48,48,46,50,50,55,48,57,44,51,55,46,57,49,52,48,49,56,93,44,91,45,49,48,48,46,50,50,54,54,49,44,51,56,46,48,48,49,48,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,52,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,53,34,44,34,78,65,77,69,34,58,34,67,97,115,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,55,57,54,44,34,98,101,100,115,34,58,50,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,51,57,54,55,52,44,51,55,46,53,52,53,50,51,50,93,44,91,45,56,53,46,48,55,51,55,55,50,44,51,55,46,52,49,51,54,54,57,93,44,91,45,56,53,46,49,54,53,49,55,52,44,51,55,46,51,49,48,51,57,54,93,44,91,45,56,53,46,48,53,54,56,57,56,44,51,55,46,50,53,55,48,52,49,93,44,91,45,56,53,46,48,52,51,51,49,54,44,51,55,46,49,56,54,48,50,56,93,44,91,45,56,52,46,57,48,49,49,49,50,44,51,55,46,49,49,54,50,57,55,93,44,91,45,56,52,46,55,50,48,55,49,50,44,51,55,46,50,51,56,51,50,56,93,44,91,45,56,52,46,55,50,50,56,50,54,44,51,55,46,51,54,48,48,52,51,93,44,91,45,56,52,46,56,53,48,56,49,54,44,51,55,46,52,50,55,49,52,51,93,44,91,45,56,52,46,56,52,55,52,51,52,44,51,55,46,53,52,56,51,52,51,93,44,91,45,56,53,46,48,51,57,54,55,52,44,51,55,46,53,52,53,50,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,54,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,57,34,44,34,78,65,77,69,34,58,34,77,101,116,99,97,108,102,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,48,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,55,52,52,50,50,49,44,51,55,46,49,54,57,56,49,51,93,44,91,45,56,53,46,55,51,57,50,53,53,44,51,54,46,56,52,49,52,55,54,93,44,91,45,56,53,46,53,57,54,50,49,52,44,51,54,46,56,49,56,48,51,57,93,44,91,45,56,53,46,52,53,49,56,51,44,51,54,46,57,51,56,49,51,56,93,44,91,45,56,53,46,53,50,54,56,56,49,44,51,55,46,49,48,57,52,53,93,44,91,45,56,53,46,54,56,54,52,56,50,44,51,55,46,49,56,50,52,50,55,93,44,91,45,56,53,46,55,52,52,50,50,49,44,51,55,46,49,54,57,56,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,55,34,44,34,78,65,77,69,34,58,34,82,117,115,115,101,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,52,51,51,49,54,44,51,55,46,49,56,54,48,50,56,93,44,91,45,56,53,46,50,48,53,56,51,49,44,51,54,46,57,57,54,56,54,50,93,44,91,45,56,53,46,50,51,50,48,50,54,44,51,54,46,57,50,53,48,54,57,93,44,91,45,56,53,46,50,49,53,52,48,53,44,51,54,46,56,53,52,52,54,55,93,44,91,45,56,53,46,48,54,52,51,48,55,44,51,54,46,56,53,56,55,52,51,93,44,91,45,56,52,46,56,51,53,55,49,50,44,51,54,46,57,57,55,54,49,50,93,44,91,45,56,52,46,57,48,49,49,49,50,44,51,55,46,49,49,54,50,57,55,93,44,91,45,56,53,46,48,52,51,51,49,54,44,51,55,46,49,56,54,48,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,101,97,117,114,101,103,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,55,54,57,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,50,46,57,55,56,52,53,51,44,51,48,46,56,55,56,49,55,53,93,44,91,45,57,51,46,52,50,49,49,48,50,44,51,48,46,56,56,51,49,51,56,93,44,91,45,57,51,46,53,53,56,53,57,54,44,51,48,46,56,54,56,56,50,50,93,44,91,45,57,51,46,54,51,49,51,52,53,44,51,48,46,54,55,55,56,55,50,93,44,91,45,57,51,46,55,51,56,55,56,56,44,51,48,46,53,52,48,57,55,53,93,44,91,45,57,51,46,55,52,49,54,55,57,44,51,48,46,52,48,50,57,55,53,93,44,91,45,57,51,46,49,51,49,49,48,57,44,51,48,46,52,48,51,48,53,55,93,44,91,45,57,51,46,49,51,49,49,53,53,44,51,48,46,52,50,51,54,49,50,93,44,91,45,57,51,46,49,51,48,51,56,44,51,48,46,53,57,55,55,55,55,93,44,91,45,57,50,46,57,55,57,49,55,44,51,48,46,53,57,56,51,52,93,44,91,45,57,50,46,57,55,56,52,53,51,44,51,48,46,56,55,56,49,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,51,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,83,111,109,101,114,115,101,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,105,110,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,48,55,49,48,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,48,46,48,50,51,49,56,55,44,52,54,46,53,55,51,52,56,55,93,44,91,45,55,48,46,48,53,54,53,53,54,44,52,54,46,52,49,54,53,53,93,44,91,45,55,48,46,50,48,56,57,56,57,44,52,54,46,51,50,57,53,50,55,93,44,91,45,55,48,46,50,57,48,52,48,53,44,52,54,46,49,56,53,48,56,55,93,44,91,45,55,48,46,51,49,49,53,55,44,52,53,46,57,54,54,51,53,57,93,44,91,45,55,48,46,50,53,52,48,57,44,52,53,46,57,48,50,50,56,54,93,44,91,45,55,48,46,52,49,54,57,55,55,44,52,53,46,55,57,53,51,56,50,93,44,91,45,55,48,46,52,48,48,52,57,52,44,52,53,46,55,49,57,55,52,51,93,44,91,45,55,48,46,53,53,50,56,53,51,44,52,53,46,54,54,55,56,57,57,93,44,91,45,55,48,46,52,49,56,53,49,57,44,52,53,46,49,52,52,48,48,53,93,44,91,45,55,48,46,50,57,51,56,50,54,44,52,53,46,49,48,57,57,48,51,93,44,91,45,55,48,46,49,53,57,51,55,53,44,52,53,46,49,50,56,51,57,54,93,44,91,45,55,48,46,49,49,48,51,54,53,44,52,52,46,57,52,55,51,49,49,93,44,91,45,55,48,46,48,51,51,50,55,44,52,52,46,56,54,52,53,52,93,44,91,45,54,57,46,57,57,54,49,57,49,44,52,52,46,54,55,55,52,57,55,93,44,91,45,54,57,46,57,51,48,52,53,49,44,52,52,46,54,49,48,56,53,50,93,44,91,45,54,57,46,54,48,53,55,52,54,44,52,52,46,53,55,55,50,54,52,93,44,91,45,54,57,46,54,51,51,49,49,56,44,52,52,46,55,48,48,51,55,51,93,44,91,45,54,57,46,52,55,49,55,49,50,44,52,52,46,54,57,50,56,57,57,93,44,91,45,54,57,46,50,54,54,55,56,53,44,52,52,46,55,50,49,57,50,56,93,44,91,45,54,57,46,51,53,53,54,54,55,44,52,53,46,48,55,51,52,54,57,93,44,91,45,54,57,46,54,50,48,57,54,55,44,52,53,46,48,49,48,57,53,54,93,44,91,45,54,57,46,55,55,57,57,50,56,44,52,53,46,53,52,50,55,54,54,93,44,91,45,54,57,46,55,48,49,54,56,56,44,52,53,46,54,50,55,57,56,50,93,44,91,45,54,57,46,55,56,53,50,53,55,44,52,53,46,54,57,50,55,56,93,44,91,45,54,57,46,55,48,52,50,54,53,44,52,53,46,56,52,54,49,51,54,93,44,91,45,54,57,46,55,50,56,53,55,55,44,52,53,46,57,55,54,56,56,50,93,44,91,45,54,57,46,55,50,49,49,48,57,44,52,54,46,53,55,52,48,53,51,93,44,91,45,55,48,46,48,50,51,49,56,55,44,52,54,46,53,55,51,52,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,105,109,97,114,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,56,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,50,46,48,52,50,48,56,57,44,51,54,46,57,57,51,48,49,54,93,44,91,45,49,48,51,46,48,48,50,51,50,57,44,51,55,46,48,48,48,49,53,93,44,91,45,49,48,51,46,48,48,50,51,53,57,44,51,54,46,53,48,48,53,53,49,93,44,91,45,49,48,50,46,49,54,50,52,54,51,44,51,54,46,53,48,48,51,50,54,93,44,91,45,49,48,50,46,48,51,50,51,51,56,44,51,54,46,53,48,48,53,55,53,93,44,91,45,49,48,50,46,48,50,56,50,48,52,44,51,54,46,57,57,51,49,48,50,93,44,91,45,49,48,50,46,48,52,50,48,56,57,44,51,54,46,57,57,51,48,49,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,54,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,51,34,44,34,78,65,77,69,34,58,34,77,101,97,100,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,51,50,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,54,46,52,57,48,56,53,52,44,51,56,46,48,52,53,55,51,53,93,44,91,45,56,54,46,49,53,49,50,56,53,44,51,55,46,55,57,56,56,55,56,93,44,91,45,56,54,46,48,48,55,52,51,50,44,51,55,46,56,49,56,52,51,57,93,44,91,45,56,53,46,57,57,56,57,53,50,44,51,55,46,57,57,57,54,53,52,93,44,91,45,56,54,46,49,55,56,57,51,44,51,56,46,48,49,48,56,49,93,44,91,45,56,54,46,50,54,55,55,54,57,44,51,56,46,48,53,55,49,55,49,93,44,91,45,56,54,46,51,50,57,54,44,51,56,46,49,56,49,56,48,53,93,44,91,45,56,54,46,52,54,49,48,50,50,44,51,56,46,49,50,49,48,56,55,93,44,91,45,56,54,46,52,57,48,56,53,52,44,51,56,46,48,52,53,55,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,57,34,44,34,78,65,77,69,34,58,34,78,101,108,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,51,56,56,44,34,98,101,100,115,34,58,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,56,57,50,48,50,44,51,55,46,57,57,48,54,53,52,93,44,91,45,56,53,46,54,52,51,50,53,52,44,51,55,46,56,51,52,48,51,51,93,44,91,45,56,53,46,55,51,55,55,55,55,44,51,55,46,56,49,49,55,57,93,44,91,45,56,53,46,54,56,48,52,56,56,44,51,55,46,55,51,50,50,56,52,93,44,91,45,56,53,46,53,57,50,48,56,56,44,51,55,46,54,57,51,52,55,57,93,44,91,45,56,53,46,54,49,56,48,55,49,44,51,55,46,53,52,48,54,49,49,93,44,91,45,56,53,46,53,50,49,50,57,44,51,55,46,53,53,52,51,52,51,93,44,91,45,56,53,46,52,48,49,55,56,52,44,51,55,46,55,51,48,54,53,56,93,44,91,45,56,53,46,50,57,48,50,56,52,44,51,55,46,56,51,49,49,56,50,93,44,91,45,56,53,46,49,53,50,55,57,55,44,51,55,46,56,57,55,54,54,49,93,44,91,45,56,53,46,49,54,55,56,51,52,44,51,55,46,57,55,49,56,48,57,93,44,91,45,56,53,46,51,57,57,56,55,49,44,51,55,46,57,51,57,57,53,54,93,44,91,45,56,53,46,52,56,57,50,48,50,44,51,55,46,57,57,48,54,53,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,56,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,55,34,44,34,78,65,77,69,34,58,34,79,119,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,52,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,48,55,52,53,56,51,44,51,56,46,53,57,54,56,51,56,93,44,91,45,56,53,46,48,50,57,56,56,56,44,51,56,46,53,49,48,55,54,53,93,44,91,45,56,52,46,56,56,48,50,52,56,44,51,56,46,52,49,54,49,56,93,44,91,45,56,52,46,56,55,48,52,56,50,44,51,56,46,51,53,54,55,53,49,93,44,91,45,56,52,46,55,52,48,53,57,52,44,51,56,46,51,53,50,52,49,53,93,44,91,45,56,52,46,53,56,48,53,51,57,44,51,56,46,52,55,51,48,51,57,93,44,91,45,56,52,46,55,55,52,51,50,50,44,51,56,46,54,49,56,53,57,52,93,44,91,45,56,52,46,55,56,53,55,56,56,44,51,56,46,55,50,48,52,53,57,93,44,91,45,56,52,46,57,51,52,53,51,54,44,51,56,46,54,54,50,49,51,93,44,91,45,56,53,46,48,55,52,53,56,51,44,51,56,46,53,57,54,56,51,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,80,101,109,105,115,99,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,48,51,49,44,34,98,101,100,115,34,58,49,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,54,49,51,49,44,51,54,46,51,56,56,56,48,51,93,44,91,45,56,57,46,57,53,57,51,55,54,44,51,53,46,57,57,57,49,51,49,93,44,91,45,56,57,46,55,51,51,48,57,53,44,51,54,46,48,48,48,54,48,56,93,44,91,45,56,57,46,54,50,57,52,53,51,44,51,54,46,49,56,53,51,56,50,93,44,91,45,56,57,46,53,51,54,52,52,49,44,51,54,46,50,55,50,56,50,55,93,44,91,45,56,57,46,53,52,53,48,48,54,44,51,54,46,51,51,54,56,48,57,93,44,91,45,56,57,46,54,49,49,51,48,56,44,51,54,46,52,49,49,50,55,51,93,44,91,45,56,57,46,57,54,49,51,49,44,51,54,46,51,56,56,56,48,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,53,34,44,34,78,65,77,69,34,58,34,78,97,110,99,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,53,52,44,34,98,101,100,115,34,58,49,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,56,54,53,56,52,44,52,49,46,51,57,51,56,57,56,93,44,91,45,57,56,46,50,55,53,52,48,56,44,52,49,46,50,54,52,51,52,49,93,44,91,45,57,56,46,48,53,51,49,51,55,44,52,49,46,50,57,51,49,50,51,93,44,91,45,57,55,46,55,48,53,52,57,55,44,52,49,46,51,48,57,49,51,52,93,44,91,45,57,55,46,55,48,51,55,54,53,44,52,49,46,51,57,52,56,55,54,93,44,91,45,57,55,46,55,48,51,54,50,55,44,52,49,46,53,50,54,55,57,54,93,44,91,45,57,55,46,56,50,57,56,52,54,44,52,49,46,53,50,54,49,55,52,93,44,91,45,57,56,46,48,57,57,53,50,51,44,52,49,46,52,56,48,55,55,55,93,44,91,45,57,56,46,50,57,49,51,52,52,44,52,49,46,52,56,48,55,50,55,93,44,91,45,57,56,46,50,57,49,52,49,57,44,52,49,46,51,57,51,56,57,52,93,44,91,45,57,56,46,50,56,54,53,56,52,44,52,49,46,51,57,51,56,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,56,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,56,34,44,34,78,65,77,69,34,58,34,77,101,110,111,109,105,110,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,55,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,54,52,49,49,53,57,44,52,53,46,49,49,55,51,52,54,93,44,91,45,56,56,46,57,56,50,49,53,57,44,52,53,46,49,49,56,48,50,54,93,44,91,45,56,56,46,57,56,49,54,56,44,52,53,46,48,50,56,57,49,55,93,44,91,45,56,56,46,57,56,49,51,49,57,44,52,52,46,57,52,50,55,52,53,93,44,91,45,56,56,46,55,51,53,53,52,56,44,52,52,46,57,52,51,49,55,56,93,44,91,45,56,56,46,55,51,54,49,57,52,44,52,52,46,56,53,54,51,55,54,93,44,91,45,56,56,46,52,56,57,49,52,57,44,52,52,46,56,53,53,52,52,53,93,44,91,45,56,56,46,52,56,51,55,51,50,44,52,53,46,49,49,54,56,56,55,93,44,91,45,56,56,46,54,52,49,49,53,57,44,52,53,46,49,49,55,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,54,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,54,53,34,44,34,78,65,77,69,34,58,34,80,97,110,111,108,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,51,52,52,48,44,34,98,101,100,115,34,58,52,50,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,52,57,49,56,49,56,44,51,50,46,51,57,52,49,51,55,93,44,91,45,57,52,46,53,56,48,53,44,51,50,46,50,48,49,51,54,51,93,44,91,45,57,52,46,53,57,57,57,55,56,44,51,49,46,57,55,51,49,57,51,93,44,91,45,57,52,46,53,49,49,52,51,49,44,51,49,46,57,55,51,57,56,52,93,44,91,45,57,52,46,48,49,53,54,51,44,51,49,46,57,55,57,56,53,54,93,44,91,45,57,52,46,48,52,50,53,57,56,44,51,50,46,49,57,54,48,48,53,93,44,91,45,57,52,46,48,52,50,57,48,49,44,51,50,46,51,57,50,50,56,51,93,44,91,45,57,52,46,51,53,52,50,57,52,44,51,50,46,51,50,57,50,48,57,93,44,91,45,57,52,46,52,57,49,56,49,56,44,51,50,46,51,57,52,49,51,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,66,97,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,50,54,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,55,55,57,50,52,44,51,56,46,49,57,50,49,49,56,93,44,91,45,56,51,46,56,56,49,51,53,51,44,51,56,46,49,51,54,53,49,55,93,44,91,45,56,51,46,55,53,57,52,51,44,51,55,46,57,57,56,55,51,49,93,44,91,45,56,51,46,52,57,56,56,52,54,44,51,56,46,48,53,48,54,50,93,44,91,45,56,51,46,54,51,53,49,57,53,44,51,56,46,49,56,55,53,50,53,93,44,91,45,56,51,46,56,52,56,51,53,53,44,51,56,46,50,57,54,57,52,57,93,44,91,45,56,51,46,57,55,55,57,50,52,44,51,56,46,49,57,50,49,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,110,100,101,114,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,56,54,51,44,34,98,101,100,115,34,58,49,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,52,50,56,53,49,50,44,51,50,46,48,56,52,52,55,53,93,44,91,45,57,54,46,48,53,50,55,56,54,44,51,50,46,48,48,53,56,57,53,93,44,91,45,57,53,46,57,56,51,52,52,57,44,51,49,46,55,56,57,57,55,57,93,44,91,45,57,53,46,56,55,53,57,51,55,44,51,49,46,55,53,53,53,48,51,93,44,91,45,57,53,46,55,56,55,51,44,51,49,46,54,49,56,51,56,53,93,44,91,45,57,53,46,55,51,57,50,55,57,44,51,49,46,53,48,52,48,53,54,93,44,91,45,57,53,46,54,53,49,55,54,52,44,51,49,46,53,52,49,55,57,49,93,44,91,45,57,53,46,50,55,51,50,48,51,44,51,49,46,53,57,50,56,56,54,93,44,91,45,57,53,46,50,56,57,54,54,49,44,51,49,46,54,56,51,57,57,55,93,44,91,45,57,53,46,51,54,54,49,56,55,44,51,49,46,55,50,54,55,53,51,93,44,91,45,57,53,46,52,52,54,48,50,52,44,51,49,46,56,52,55,57,56,55,93,44,91,45,57,53,46,52,50,56,53,49,50,44,51,50,46,48,56,52,52,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,48,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,51,34,44,34,78,65,77,69,34,58,34,67,97,114,111,108,105,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,49,56,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,51,55,48,50,57,55,44,51,56,46,50,52,54,53,55,54,93,44,91,45,55,55,46,54,52,50,53,49,56,44,51,55,46,57,57,48,54,56,56,93,44,91,45,55,55,46,51,52,53,50,49,53,44,51,55,46,55,56,57,49,55,53,93,44,91,45,55,55,46,49,56,49,52,49,56,44,51,55,46,56,57,49,54,53,52,93,44,91,45,55,55,46,48,55,48,49,49,53,44,51,55,46,57,54,52,55,55,93,44,91,45,55,55,46,49,55,48,49,44,51,56,46,48,55,57,53,52,51,93,44,91,45,55,55,46,49,49,53,57,57,55,44,51,56,46,49,52,57,57,51,49,93,44,91,45,55,55,46,51,50,54,54,57,50,44,51,56,46,50,52,53,49,51,54,93,44,91,45,55,55,46,51,55,48,50,57,55,44,51,56,46,50,52,54,53,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,54,55,34,44,34,78,65,77,69,34,58,34,83,105,111,117,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,52,56,50,53,44,34,98,101,100,115,34,58,57,54,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,53,53,52,57,54,57,44,52,51,46,50,53,57,57,53,49,93,44,91,45,57,54,46,52,55,54,55,50,57,44,52,51,46,50,50,49,57,56,55,93,44,91,45,57,54,46,52,53,52,49,51,44,52,51,46,48,56,51,51,56,93,44,91,45,57,54,46,53,49,51,54,56,49,44,52,51,46,48,52,55,48,51,93,44,91,45,57,54,46,53,51,56,52,53,56,44,52,50,46,57,48,56,55,55,49,93,44,91,45,57,53,46,56,53,57,51,55,55,44,52,50,46,57,48,57,48,57,55,93,44,91,45,57,53,46,56,54,49,57,49,52,44,52,51,46,50,53,55,53,54,54,93,44,91,45,57,54,46,53,53,52,57,54,57,44,52,51,46,50,53,57,57,53,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,71,108,101,110,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,56,57,55,44,34,98,101,100,115,34,58,52,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,57,51,55,54,53,52,44,51,57,46,55,57,56,49,53,54,93,44,91,45,49,50,50,46,56,56,53,51,53,50,44,51,57,46,53,56,48,49,48,56,93,44,91,45,49,50,50,46,55,51,53,54,51,57,44,51,57,46,53,56,48,54,54,56,93,44,91,45,49,50,50,46,55,51,57,48,54,50,44,51,57,46,51,56,51,50,54,54,93,44,91,45,49,50,50,46,49,51,54,48,48,54,44,51,57,46,51,56,53,52,57,52,93,44,91,45,49,50,50,46,48,48,56,56,53,55,44,51,57,46,52,49,51,53,54,55,93,44,91,45,49,50,49,46,56,57,48,48,49,51,44,51,57,46,51,56,51,56,54,52,93,44,91,45,49,50,49,46,56,53,54,53,51,50,44,51,57,46,53,51,54,57,48,52,93,44,91,45,49,50,49,46,57,57,52,48,50,49,44,51,57,46,53,51,51,57,50,54,93,44,91,45,49,50,49,46,57,55,52,55,57,52,44,51,57,46,54,55,53,52,56,55,93,44,91,45,49,50,50,46,48,52,54,52,55,49,44,51,57,46,55,57,55,54,52,56,93,44,91,45,49,50,50,46,57,51,55,54,53,52,44,51,57,46,55,57,56,49,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,53,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,49,48,34,44,34,78,65,77,69,34,58,34,83,116,46,32,76,111,117,105,115,32,67,105,116,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,49,49,50,55,51,44,34,98,101,100,115,34,58,50,56,49,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,48,46,49,54,54,53,55,52,44,51,56,46,55,55,50,52,52,56,93,44,91,45,57,48,46,50,53,49,55,52,53,44,51,56,46,55,49,56,56,56,55,93,44,91,45,57,48,46,51,50,48,53,48,52,44,51,56,46,53,57,52,49,55,55,93,44,91,45,57,48,46,50,53,55,52,49,51,44,51,56,46,53,51,49,56,53,50,93,44,91,45,57,48,46,49,56,49,53,52,51,44,51,56,46,54,54,48,48,54,50,93,44,91,45,57,48,46,49,54,54,53,55,52,44,51,56,46,55,55,50,52,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,49,34,44,34,78,65,77,69,34,58,34,70,97,110,110,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,57,50,53,44,34,98,101,100,115,34,58,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,50,49,56,50,49,44,51,52,46,57,56,56,52,48,56,93,44,91,45,56,52,46,54,50,49,52,56,51,44,51,52,46,57,56,56,51,50,57,93,44,91,45,56,52,46,54,49,56,54,51,55,44,51,52,46,56,53,53,51,57,56,93,44,91,45,56,52,46,52,50,57,48,57,51,44,51,52,46,56,53,53,48,51,54,93,44,91,45,56,52,46,51,49,52,54,53,51,44,51,52,46,56,48,55,51,50,56,93,44,91,45,56,52,46,49,57,54,55,53,52,44,51,52,46,54,49,55,57,50,52,93,44,91,45,56,52,46,49,56,56,53,53,55,44,51,52,46,54,48,50,54,57,50,93,44,91,45,56,52,46,49,53,56,48,51,53,44,51,52,46,54,52,56,50,52,51,93,44,91,45,56,52,46,49,48,51,54,51,44,51,52,46,55,50,55,56,51,55,93,44,91,45,56,52,46,49,50,57,52,52,56,44,51,52,46,57,56,55,53,49,52,93,44,91,45,56,52,46,51,50,49,56,50,49,44,51,52,46,57,56,56,52,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,53,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,49,34,44,34,78,65,77,69,34,58,34,71,114,97,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,50,49,55,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,50,54,50,52,52,44,52,53,46,50,57,55,54,52,55,93,44,91,45,57,55,46,50,50,54,50,56,49,44,52,53,46,49,53,49,56,50,54,93,44,91,45,57,54,46,56,56,51,57,52,56,44,52,53,46,49,53,48,50,50,52,93,44,91,45,57,54,46,56,56,50,51,52,53,44,52,52,46,57,55,54,56,55,93,44,91,45,57,54,46,52,53,50,48,51,53,44,52,52,46,57,55,55,54,53,93,44,91,45,57,54,46,52,53,50,57,52,55,44,52,53,46,50,54,56,57,50,53,93,44,91,45,57,54,46,52,55,48,52,55,53,44,52,53,46,51,50,54,53,52,53,93,44,91,45,57,54,46,57,57,50,57,52,54,44,52,53,46,51,50,54,56,56,93,44,91,45,57,55,46,50,50,54,50,52,52,44,52,53,46,50,57,55,54,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,54,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,77,97,114,115,104,97,108,108,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,68,97,107,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,68,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,57,53,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,57,55,56,55,55,56,44,52,53,46,57,51,53,56,54,51,93,44,91,45,57,55,46,57,55,57,53,57,50,44,52,53,46,53,56,56,52,56,51,93,44,91,45,57,55,46,51,55,51,51,54,54,44,52,53,46,53,56,55,54,51,52,93,44,91,45,57,55,46,50,50,55,48,56,57,44,52,53,46,53,53,56,49,53,56,93,44,91,45,57,55,46,50,50,56,50,57,49,44,52,53,46,57,51,53,51,56,51,93,44,91,45,57,55,46,57,55,56,55,55,56,44,52,53,46,57,51,53,56,54,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,84,104,117,114,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,54,56,52,44,34,98,101,100,115,34,58,52,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,50,48,49,56,57,49,44,52,55,46,48,56,53,48,53,57,93,44,91,45,49,50,51,46,49,53,56,51,54,52,44,52,54,46,57,57,53,56,55,49,93,44,91,45,49,50,51,46,49,54,48,53,56,56,44,52,54,46,55,57,51,51,56,51,93,44,91,45,49,50,51,46,49,54,48,57,48,57,44,52,54,46,55,54,52,51,51,93,44,91,45,49,50,50,46,50,48,51,49,49,53,44,52,54,46,55,54,51,48,54,49,93,44,91,45,49,50,50,46,52,57,48,56,56,56,44,52,54,46,56,54,55,52,53,50,93,44,91,45,49,50,50,46,54,51,56,50,49,49,44,52,54,46,57,55,56,49,51,57,93,44,91,45,49,50,50,46,56,50,48,53,55,54,44,52,55,46,49,57,52,50,50,93,44,91,45,49,50,51,46,48,48,50,52,51,53,44,52,55,46,49,53,49,51,48,50,93,44,91,45,49,50,51,46,48,55,53,48,50,54,44,52,55,46,48,56,52,55,56,55,93,44,91,45,49,50,51,46,50,48,49,56,57,49,44,52,55,46,48,56,53,48,53,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,75,110,111,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,52,54,48,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,52,56,52,57,50,49,44,52,50,46,56,53,48,51,54,56,93,44,91,45,57,55,46,54,51,53,52,52,44,52,50,46,56,53,49,53,51,50,93,44,91,45,57,55,46,56,55,53,53,51,49,44,52,50,46,56,53,56,54,53,54,93,44,91,45,57,56,46,48,49,51,48,55,50,44,52,50,46,55,54,50,50,49,57,93,44,91,45,57,56,46,49,53,51,49,48,55,44,52,50,46,56,51,56,57,56,54,93,44,91,45,57,56,46,51,48,57,55,55,49,44,52,50,46,56,56,50,54,48,53,93,44,91,45,57,56,46,51,48,53,49,52,57,44,52,50,46,55,54,49,50,48,55,93,44,91,45,57,56,46,51,48,48,50,51,53,44,52,50,46,52,51,54,57,49,51,93,44,91,45,57,55,46,56,51,52,52,51,49,44,52,50,46,52,51,55,54,56,52,93,44,91,45,57,55,46,52,56,53,50,57,56,44,52,50,46,52,51,56,53,55,56,93,44,91,45,57,55,46,52,56,52,57,50,49,44,52,50,46,56,53,48,51,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,53,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,86,97,108,101,110,99,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,77,101,120,105,99,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,77,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,53,57,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,52,49,49,55,56,49,44,51,52,46,56,55,48,50,53,50,93,44,91,45,49,48,54,46,52,50,57,52,56,54,44,51,52,46,57,48,51,52,93,44,91,45,49,48,54,46,54,56,53,56,48,49,44,51,52,46,57,48,54,51,53,56,93,44,91,45,49,48,54,46,55,50,48,54,54,54,44,51,52,46,56,55,48,48,53,51,93,44,91,45,49,48,55,46,48,50,52,52,56,49,44,51,52,46,56,54,57,57,53,51,93,44,91,45,49,48,55,46,48,54,54,53,54,50,44,51,52,46,57,53,55,49,57,93,44,91,45,49,48,55,46,50,48,50,56,56,50,44,51,52,46,57,53,55,53,55,50,93,44,91,45,49,48,55,46,50,48,49,55,52,51,44,51,52,46,53,55,56,55,53,55,93,44,91,45,49,48,54,46,56,56,50,56,49,51,44,51,52,46,53,55,57,54,50,56,93,44,91,45,49,48,54,46,55,54,56,50,56,49,44,51,52,46,53,51,49,50,54,50,93,44,91,45,49,48,54,46,52,49,54,57,50,52,44,51,52,46,52,51,57,54,56,55,93,44,91,45,49,48,54,46,52,54,57,55,57,44,51,52,46,53,50,49,50,49,55,93,44,91,45,49,48,54,46,52,54,51,56,54,56,44,51,52,46,56,55,48,49,57,52,93,44,91,45,49,48,54,46,52,49,49,55,56,49,44,51,52,46,56,55,48,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,80,114,97,105,114,105,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,52,50,44,34,98,101,100,115,34,58,50,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,54,46,48,56,54,53,56,53,44,52,54,46,56,54,48,50,57,93,44,91,45,49,48,53,46,56,51,50,54,55,52,44,52,54,46,56,54,48,56,50,93,44,91,45,49,48,53,46,54,49,56,49,53,56,44,52,54,46,56,51,50,49,52,56,93,44,91,45,49,48,53,46,53,55,54,48,54,51,44,52,54,46,54,53,56,48,48,51,93,44,91,45,49,48,53,46,52,52,57,49,57,54,44,52,54,46,53,55,48,57,54,55,93,44,91,45,49,48,53,46,50,51,57,50,51,56,44,52,54,46,53,52,49,49,56,56,93,44,91,45,49,48,52,46,57,56,52,55,49,52,44,52,54,46,53,52,48,51,56,57,93,44,91,45,49,48,52,46,55,51,51,48,53,57,44,52,54,46,54,49,50,54,57,53,93,44,91,45,49,48,52,46,54,48,54,57,48,51,44,52,54,46,54,56,52,57,50,52,93,44,91,45,49,48,52,46,54,48,51,55,54,54,44,52,54,46,56,54,48,56,53,51,93,44,91,45,49,48,53,46,48,50,55,53,50,54,44,52,54,46,56,54,49,52,53,55,93,44,91,45,49,48,53,46,49,57,54,55,51,53,44,52,54,46,57,55,55,49,55,50,93,44,91,45,49,48,53,46,51,50,52,55,53,55,44,52,54,46,57,55,55,49,57,54,93,44,91,45,49,48,53,46,51,50,52,56,53,51,44,52,55,46,49,56,49,52,57,54,93,44,91,45,49,48,53,46,52,48,54,51,48,57,44,52,55,46,49,56,49,53,56,51,93,44,91,45,49,48,53,46,56,51,51,48,52,52,44,52,55,46,49,56,49,48,57,50,93,44,91,45,49,48,53,46,57,53,57,56,57,55,44,52,55,46,48,57,50,57,54,56,93,44,91,45,49,48,54,46,48,56,54,55,55,55,44,52,55,46,49,56,48,57,51,56,93,44,91,45,49,48,54,46,48,56,54,53,56,53,44,52,54,46,56,54,48,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,108,108,97,109,97,107,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,56,56,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,54,49,48,56,51,53,44,52,51,46,53,48,48,54,53,55,93,44,91,45,57,49,46,54,48,53,51,48,55,44,52,51,46,48,56,49,54,53,51,93,44,91,45,57,49,46,49,55,55,50,50,50,44,52,51,46,48,56,48,50,52,55,93,44,91,45,57,49,46,48,53,55,57,49,44,52,51,46,50,53,51,57,54,56,93,44,91,45,57,49,46,50,48,49,56,52,55,44,52,51,46,51,52,57,49,48,51,93,44,91,45,57,49,46,50,48,53,53,53,44,52,51,46,52,50,50,57,52,57,93,44,91,45,57,49,46,50,49,55,55,48,54,44,52,51,46,53,48,48,53,53,93,44,91,45,57,49,46,54,49,48,56,51,53,44,52,51,46,53,48,48,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,48,54,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,49,34,44,34,78,65,77,69,34,58,34,67,97,109,101,114,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,50,49,55,53,48,44,34,98,101,100,115,34,58,49,51,56,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,54,55,50,53,53,44,50,54,46,52,49,50,55,49,53,93,44,91,45,57,55,46,51,56,54,53,48,53,44,50,54,46,52,49,48,52,51,55,93,44,91,45,57,55,46,53,50,55,53,56,50,44,50,54,46,50,57,57,51,48,52,93,44,91,45,57,55,46,56,54,49,56,55,53,44,50,54,46,51,52,56,49,53,54,93,44,91,45,57,55,46,56,54,49,56,50,50,44,50,54,46,48,54,57,57,50,49,93,44,91,45,57,55,46,54,54,55,52,50,50,44,50,54,46,48,50,57,48,55,51,93,44,91,45,57,55,46,53,50,48,56,49,50,44,50,53,46,56,56,54,93,44,91,45,57,55,46,51,55,51,49,56,55,44,50,53,46,56,51,57,57,53,54,93,44,91,45,57,55,46,50,55,54,55,48,49,44,50,53,46,57,53,50,49,52,54,93,44,91,45,57,55,46,48,57,49,49,50,49,44,50,53,46,57,55,51,56,52,93,44,91,45,57,55,46,49,50,54,49,50,49,44,50,54,46,50,53,48,51,53,49,93,44,91,45,57,55,46,49,54,55,50,53,53,44,50,54,46,52,49,50,55,49,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,51,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,51,57,34,44,34,78,65,77,69,34,58,34,77,111,110,116,103,111,109,101,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,53,52,52,52,53,44,34,98,101,100,115,34,58,49,55,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,56,48,52,51,48,54,44,51,48,46,50,52,53,53,55,93,44,91,45,57,53,46,56,48,51,51,51,44,51,48,46,48,57,48,48,57,54,93,44,91,45,57,53,46,54,48,49,49,51,50,44,51,48,46,49,51,50,55,56,93,44,91,45,57,53,46,52,50,52,50,49,54,44,51,48,46,49,49,53,52,57,49,93,44,91,45,57,53,46,50,54,52,49,51,56,44,51,48,46,48,51,50,48,54,57,93,44,91,45,57,53,46,48,57,54,55,48,56,44,51,48,46,49,54,55,50,49,52,93,44,91,45,57,53,46,49,54,53,56,57,55,44,51,48,46,51,52,52,57,55,54,93,44,91,45,57,53,46,51,48,56,51,57,53,44,51,48,46,52,48,53,55,53,93,44,91,45,57,53,46,51,53,57,49,53,54,44,51,48,46,53,48,52,51,54,57,93,44,91,45,57,53,46,53,57,56,57,55,49,44,51,48,46,53,48,57,48,48,50,93,44,91,45,57,53,46,56,51,48,50,52,44,51,48,46,54,51,48,50,56,52,93,44,91,45,57,53,46,56,48,52,51,48,54,44,51,48,46,50,52,53,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,76,97,115,32,65,110,105,109,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,49,55,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,52,46,51,53,49,49,48,57,44,51,55,46,56,49,55,52,56,56,93,44,91,45,49,48,52,46,52,53,52,57,51,44,51,55,46,55,52,48,56,51,57,93,44,91,45,49,48,52,46,53,52,56,54,53,50,44,51,55,46,53,55,52,55,93,44,91,45,49,48,52,46,55,52,56,52,52,55,44,51,55,46,52,48,55,52,51,55,93,44,91,45,49,48,52,46,57,57,53,53,48,53,44,51,55,46,51,55,53,53,53,49,93,44,91,45,49,48,53,46,49,53,52,49,55,54,44,51,55,46,50,57,51,49,50,57,93,44,91,45,49,48,53,46,49,53,53,48,52,50,44,51,54,46,57,57,53,50,54,50,93,44,91,45,49,48,52,46,48,48,55,56,53,49,44,51,54,46,57,57,54,49,51,52,93,44,91,45,49,48,51,46,48,56,54,49,48,50,44,51,55,46,48,48,48,49,56,56,93,44,91,45,49,48,51,46,48,55,53,57,51,56,44,51,55,46,54,52,51,52,50,93,44,91,45,49,48,51,46,52,48,52,51,51,57,44,51,55,46,54,52,51,53,55,54,93,44,91,45,49,48,52,46,48,53,56,49,57,54,44,51,55,46,54,52,52,48,52,57,93,44,91,45,49,48,52,46,48,54,49,49,51,50,44,51,55,46,55,51,52,55,48,52,93,44,91,45,49,48,52,46,51,53,49,49,48,57,44,51,55,46,56,49,55,52,56,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,57,57,34,44,34,78,65,77,69,34,58,34,76,108,97,110,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,54,52,48,44,34,98,101,100,115,34,58,50,55,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,57,54,52,54,49,50,44,51,48,46,57,50,49,51,54,56,93,44,91,45,57,56,46,57,54,52,50,51,50,44,51,48,46,52,57,56,52,56,50,93,44,91,45,57,56,46,53,57,49,54,55,44,51,48,46,52,57,57,56,55,53,93,44,91,45,57,56,46,51,53,49,48,52,49,44,51,48,46,52,56,54,48,57,54,93,44,91,45,57,56,46,52,49,56,53,57,52,44,51,48,46,54,52,53,57,50,54,93,44,91,45,57,56,46,51,57,51,54,52,54,44,51,48,46,56,52,50,57,54,93,44,91,45,57,56,46,52,52,53,55,56,50,44,51,48,46,57,50,49,52,51,57,93,44,91,45,57,56,46,57,54,52,54,49,50,44,51,48,46,57,50,49,51,54,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,51,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,51,49,57,34,44,34,78,65,77,69,34,58,34,77,97,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,51,48,51,57,57,54,44,51,48,46,52,57,57,56,51,50,93,44,91,45,57,56,46,57,54,52,50,51,50,44,51,48,46,52,57,56,52,56,50,93,44,91,45,57,56,46,57,54,52,54,49,50,44,51,48,46,57,50,49,51,54,56,93,44,91,45,57,57,46,48,57,50,51,49,55,44,51,48,46,57,52,49,48,48,50,93,44,91,45,57,57,46,52,56,52,55,53,53,44,51,48,46,57,52,48,54,48,53,93,44,91,45,57,57,46,52,56,51,56,54,57,44,51,48,46,55,49,48,55,55,49,93,44,91,45,57,57,46,52,56,52,52,57,51,44,51,48,46,52,57,57,54,52,49,93,44,91,45,57,57,46,51,48,51,57,57,54,44,51,48,46,52,57,57,56,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,51,34,44,34,78,65,77,69,34,58,34,67,108,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,49,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,57,51,54,51,57,53,44,51,52,46,57,56,55,53,54,52,93,44,91,45,56,51,46,53,52,57,51,55,54,44,51,52,46,57,57,50,51,57,51,93,44,91,45,56,51,46,52,56,50,57,52,57,44,51,52,46,57,57,51,51,48,49,93,44,91,45,56,51,46,54,52,56,52,53,53,44,51,53,46,49,53,50,56,57,54,93,44,91,45,56,51,46,55,51,56,49,50,57,44,51,53,46,49,53,53,57,53,93,44,91,45,56,51,46,56,52,48,55,51,51,44,51,53,46,49,52,51,56,52,49,93,44,91,45,56,52,46,48,48,53,49,51,50,44,51,52,46,57,56,55,49,55,53,93,44,91,45,56,51,46,57,51,54,51,57,53,44,51,52,46,57,56,55,53,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,79,114,97,110,103,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,55,56,50,50,55,44,34,98,101,100,115,34,58,49,48,57,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,51,54,55,48,53,53,44,52,49,46,53,57,48,57,55,55,93,44,91,45,55,52,46,52,56,52,51,54,55,44,52,49,46,53,48,52,50,51,53,93,44,91,45,55,52,46,55,53,50,51,57,57,44,52,49,46,52,57,51,55,52,51,93,44,91,45,55,52,46,55,53,52,54,57,44,52,49,46,52,50,52,57,55,51,93,44,91,45,55,52,46,54,57,52,57,49,52,44,52,49,46,51,53,55,52,50,51,93,44,91,45,55,52,46,51,54,55,53,49,44,52,49,46,50,48,51,50,52,49,93,44,91,45,55,52,46,50,51,52,50,56,56,44,52,49,46,49,52,51,48,48,56,93,44,91,45,55,51,46,57,56,49,51,56,52,44,52,49,46,51,50,52,54,57,51,93,44,91,45,55,51,46,57,56,49,52,56,54,44,52,49,46,52,51,56,57,48,53,93,44,91,45,55,51,46,57,53,51,51,48,55,44,52,49,46,53,56,57,57,55,55,93,44,91,45,55,52,46,51,54,55,48,53,53,44,52,49,46,53,57,48,57,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,83,99,104,101,110,101,99,116,97,100,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,56,56,51,44,34,98,101,100,115,34,58,52,56,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,49,56,48,50,55,52,44,52,50,46,55,50,57,57,55,57,93,44,91,45,55,51,46,56,48,57,51,54,57,44,52,50,46,55,55,56,56,54,57,93,44,91,45,55,52,46,48,48,53,54,53,54,44,52,50,46,57,51,51,52,56,52,93,44,91,45,55,52,46,48,57,50,57,56,44,52,50,46,57,53,53,56,54,56,93,44,91,45,55,52,46,48,56,51,56,56,51,44,52,50,46,56,57,55,51,53,52,93,44,91,45,55,52,46,50,54,51,51,49,52,44,52,50,46,55,57,54,53,51,52,93,44,91,45,55,52,46,49,56,48,50,55,52,44,52,50,46,55,50,57,57,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,77,105,110,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,52,55,52,49,44,34,98,101,100,115,34,58,55,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,51,51,51,49,51,54,44,51,55,46,55,52,48,56,52,56,93,44,91,45,56,50,46,49,49,55,51,48,52,44,51,55,46,53,53,57,50,50,54,93,44,91,45,56,49,46,57,54,56,48,49,50,44,51,55,46,53,51,56,48,51,53,93,44,91,45,56,49,46,57,50,55,54,56,49,44,51,55,46,53,49,50,49,49,51,93,44,91,45,56,49,46,56,53,53,57,51,57,44,51,55,46,53,52,56,57,49,93,44,91,45,56,49,46,56,48,50,57,51,55,44,51,55,46,54,54,48,53,48,56,93,44,91,45,56,50,46,48,55,57,57,52,49,44,51,55,46,55,48,48,49,50,50,93,44,91,45,56,50,46,49,57,48,54,53,56,44,51,55,46,57,55,52,55,55,56,93,44,91,45,56,50,46,51,48,54,51,57,49,44,51,55,46,57,52,51,54,52,93,44,91,45,56,50,46,52,49,52,55,53,55,44,51,55,46,56,53,53,53,48,57,93,44,91,45,56,50,46,51,51,51,49,51,54,44,51,55,46,55,52,48,56,52,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,57,55,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,57,55,34,44,34,78,65,77,69,34,58,34,87,97,98,97,117,110,115,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,56,56,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,51,56,57,48,52,54,44,51,57,46,49,55,50,56,55,56,93,44,91,45,57,54,46,51,57,48,55,57,54,44,51,57,46,48,52,51,50,53,55,93,44,91,45,57,54,46,53,48,49,49,54,54,44,51,57,46,48,52,51,54,54,54,93,44,91,45,57,54,46,53,48,49,53,53,54,44,51,56,46,56,54,57,55,48,52,93,44,91,45,57,54,46,51,57,48,51,57,56,44,51,56,46,56,50,53,56,53,56,93,44,91,45,57,54,46,51,53,50,54,49,51,44,51,56,46,55,51,57,48,50,49,93,44,91,45,57,53,46,57,52,53,57,50,52,44,51,56,46,55,51,57,49,49,50,93,44,91,45,57,53,46,57,52,54,53,56,55,44,51,56,46,56,54,57,57,55,51,93,44,91,45,57,53,46,57,52,54,55,53,52,44,51,57,46,48,57,56,54,56,53,93,44,91,45,57,54,46,48,51,57,48,54,44,51,57,46,49,50,54,53,50,55,93,44,91,45,57,54,46,48,56,51,53,53,55,44,51,57,46,49,57,51,53,48,52,93,44,91,45,57,54,46,50,51,51,54,55,49,44,51,57,46,50,49,50,50,55,57,93,44,91,45,57,54,46,51,56,57,48,52,54,44,51,57,46,49,55,50,56,55,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,72,111,117,115,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,56,54,54,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,55,51,48,52,50,52,44,52,51,46,56,52,54,57,51,53,93,44,91,45,57,49,46,55,51,48,50,49,55,44,52,51,46,53,48,48,56,48,54,93,44,91,45,57,49,46,54,49,48,56,51,53,44,52,51,46,53,48,48,54,53,55,93,44,91,45,57,49,46,50,49,55,55,48,54,44,52,51,46,53,48,48,53,53,93,44,91,45,57,49,46,50,54,56,55,52,56,44,52,51,46,54,49,53,51,52,56,93,44,91,45,57,49,46,50,53,55,56,51,57,44,52,51,46,55,50,53,54,54,49,93,44,91,45,57,49,46,50,56,52,49,51,56,44,52,51,46,56,52,55,48,54,53,93,44,91,45,57,49,46,55,51,48,52,50,52,44,52,51,46,56,52,54,57,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,56,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,49,34,44,34,78,65,77,69,34,58,34,78,105,99,104,111,108,97,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,49,48,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,49,57,52,48,53,44,51,56,46,51,55,49,55,53,93,44,91,45,56,52,46,48,54,50,54,57,49,44,51,56,46,50,51,53,50,48,51,93,44,91,45,56,51,46,57,55,55,57,50,52,44,51,56,46,49,57,50,49,49,56,93,44,91,45,56,51,46,56,52,56,51,53,53,44,51,56,46,50,57,54,57,52,57,93,44,91,45,56,51,46,57,56,48,48,54,56,44,51,56,46,52,51,57,52,52,56,93,44,91,45,56,52,46,49,48,50,49,44,51,56,46,52,53,57,51,55,57,93,44,91,45,56,52,46,49,57,52,48,53,44,51,56,46,51,55,49,55,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,80,108,121,109,111,117,116,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,50,49,51,53,44,34,98,101,100,115,34,58,55,48,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,48,56,48,52,56,51,44,52,50,46,48,57,53,53,51,57,93,44,91,45,55,49,46,48,52,57,52,56,53,44,52,49,46,57,54,51,48,57,52,93,44,91,45,55,48,46,56,56,54,52,51,57,44,52,49,46,55,54,48,50,51,50,93,44,91,45,55,48,46,56,51,57,49,55,53,44,52,49,46,54,49,52,55,54,49,93,44,91,45,55,48,46,55,53,50,52,50,52,44,52,49,46,53,54,53,56,53,49,93,44,91,45,55,48,46,54,50,49,54,50,50,44,52,49,46,55,52,56,57,55,50,93,44,91,45,55,48,46,51,53,53,48,48,52,44,52,50,46,48,48,48,49,48,52,93,44,91,45,55,48,46,51,50,50,53,50,50,44,52,50,46,49,49,55,57,49,53,93,44,91,45,55,48,46,54,48,56,51,56,49,44,52,50,46,49,51,56,52,55,57,93,44,91,45,55,48,46,54,57,48,51,57,51,44,52,50,46,50,55,56,57,57,57,93,44,91,45,55,48,46,54,53,56,55,50,51,44,52,50,46,51,55,53,48,57,56,93,44,91,45,55,48,46,54,55,53,54,57,44,52,50,46,51,55,53,48,57,56,93,44,91,45,55,48,46,55,50,57,50,49,50,44,52,50,46,51,55,51,56,52,56,93,44,91,45,55,48,46,56,57,52,50,57,50,44,52,50,46,51,55,50,51,57,57,93,44,91,45,55,48,46,57,54,48,49,57,50,44,52,50,46,50,57,57,52,57,56,93,44,91,45,55,48,46,57,50,52,56,55,55,44,52,50,46,49,53,55,53,56,93,44,91,45,55,49,46,48,56,48,52,56,51,44,52,50,46,48,57,53,53,51,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,54,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,66,114,111,110,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,89,111,114,107,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,55,56,55,50,44,34,98,101,100,115,34,58,51,52,49,49,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,57,49,55,57,48,53,44,52,48,46,57,49,55,53,55,55,93,44,91,45,55,51,46,57,51,51,56,48,56,44,52,48,46,56,56,50,50,49,52,93,44,91,45,55,51,46,57,49,50,52,53,54,44,52,48,46,55,57,54,48,57,54,93,44,91,45,55,51,46,55,55,56,57,53,56,44,52,48,46,56,49,49,55,49,51,93,44,91,45,55,51,46,55,52,56,48,54,44,52,48,46,56,55,49,55,50,49,93,44,91,45,55,51,46,57,49,55,57,48,53,44,52,48,46,57,49,55,53,55,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,53,34,44,34,78,65,77,69,34,58,34,68,97,114,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,55,52,49,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,53,46,55,48,57,48,55,56,44,51,54,46,50,52,52,57,56,52,93,44,91,45,55,53,46,56,49,51,49,48,56,44,51,54,46,50,50,51,53,54,93,44,91,45,55,53,46,55,54,52,55,50,55,44,51,54,46,48,54,48,49,51,57,93,44,91,45,55,53,46,56,52,48,48,52,54,44,51,54,46,48,50,56,56,51,52,93,44,91,45,55,53,46,57,53,52,51,55,52,44,51,53,46,57,57,48,48,54,52,93,44,91,45,55,54,46,48,48,56,51,52,56,44,51,53,46,56,57,53,56,48,50,93,44,91,45,55,54,46,48,50,55,52,55,57,44,51,53,46,54,54,56,56,52,57,93,44,91,45,55,53,46,57,48,49,51,52,50,44,51,53,46,54,54,56,57,53,50,93,44,91,45,55,53,46,56,49,52,48,50,49,44,51,53,46,53,48,48,49,56,50,93,44,91,45,55,53,46,55,51,54,54,50,44,51,53,46,49,52,48,53,54,53,93,44,91,45,55,53,46,52,55,52,54,44,51,53,46,50,48,50,48,50,57,93,44,91,45,55,53,46,52,48,48,51,57,44,51,53,46,53,57,51,53,49,50,93,44,91,45,55,53,46,52,51,55,54,49,55,44,51,53,46,55,52,54,57,54,93,44,91,45,55,53,46,55,48,57,48,55,56,44,51,54,46,50,52,52,57,56,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,77,101,100,105,110,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,55,50,53,55,44,34,98,101,100,115,34,58,49,57,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,49,46,54,56,52,57,53,44,52,49,46,50,55,55,49,52,54,93,44,91,45,56,49,46,56,55,56,48,53,51,44,52,49,46,50,55,53,48,52,52,93,44,91,45,56,49,46,57,55,51,56,57,53,44,52,49,46,49,57,57,56,51,49,93,44,91,45,56,50,46,49,54,57,56,55,53,44,52,49,46,49,51,55,48,57,55,93,44,91,45,56,50,46,49,55,49,52,57,50,44,52,49,46,48,54,51,53,51,55,93,44,91,45,56,50,46,49,50,57,51,51,52,44,52,48,46,57,57,49,56,48,55,93,44,91,45,56,49,46,54,56,56,52,57,49,44,52,48,46,57,56,56,53,57,93,44,91,45,56,49,46,54,56,52,57,53,44,52,49,46,50,55,55,49,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,48,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,53,34,44,34,78,65,77,69,34,58,34,65,114,109,115,116,114,111,110,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,54,51,51,49,44,34,98,101,100,115,34,58,49,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,54,57,48,55,49,49,44,52,49,46,49,55,48,54,57,49,93,44,91,45,55,57,46,54,57,50,57,51,44,52,48,46,54,54,57,55,52,52,93,44,91,45,55,57,46,54,57,50,53,56,55,44,52,48,46,54,54,57,55,51,50,93,44,91,45,55,57,46,53,54,49,49,49,44,52,48,46,53,54,52,49,49,51,93,44,91,45,55,57,46,52,53,48,49,55,54,44,52,48,46,53,51,48,49,52,57,93,44,91,45,55,57,46,50,49,53,50,49,53,44,52,48,46,55,55,53,57,52,50,93,44,91,45,55,57,46,50,49,53,51,49,44,52,48,46,57,49,49,51,52,54,93,44,91,45,55,57,46,50,49,53,50,49,52,44,52,49,46,48,53,48,53,49,53,93,44,91,45,55,57,46,51,56,53,53,51,55,44,52,48,46,57,56,57,55,54,54,93,44,91,45,55,57,46,53,57,55,48,49,51,44,52,48,46,57,57,52,51,56,56,93,44,91,45,55,57,46,54,54,53,55,54,50,44,52,49,46,48,52,57,49,50,51,93,44,91,45,55,57,46,54,57,48,55,49,49,44,52,49,46,49,55,48,54,57,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,65,116,108,97,110,116,105,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,56,53,51,57,44,34,98,101,100,115,34,58,56,53,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,57,56,53,50,55,49,44,51,57,46,53,49,52,57,54,55,93,44,91,45,55,52,46,56,53,53,57,55,56,44,51,57,46,52,50,52,50,51,56,93,44,91,45,55,52,46,56,54,49,50,57,52,44,51,57,46,51,50,51,56,49,53,93,44,91,45,55,52,46,55,53,50,49,54,53,44,51,57,46,50,57,53,48,48,53,93,44,91,45,55,52,46,52,54,52,57,51,44,51,57,46,50,57,56,50,51,93,44,91,45,55,52,46,51,54,50,53,49,51,44,51,57,46,51,50,53,55,56,49,93,44,91,45,55,52,46,50,51,50,48,54,50,44,51,57,46,52,55,53,49,57,56,93,44,91,45,55,52,46,51,56,48,55,57,54,44,51,57,46,52,57,56,53,51,55,93,44,91,45,55,52,46,52,49,55,51,57,51,44,51,57,46,53,53,55,50,53,53,93,44,91,45,55,52,46,54,53,57,50,57,53,44,51,57,46,54,51,49,50,51,51,93,44,91,45,55,52,46,55,51,54,50,49,54,44,51,57,46,55,50,57,55,55,53,93,44,91,45,55,52,46,56,55,55,50,54,44,51,57,46,54,48,56,51,53,50,93,44,91,45,55,52,46,57,56,53,50,55,49,44,51,57,46,53,49,52,57,54,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,55,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,49,34,44,34,78,65,77,69,34,58,34,77,97,110,105,116,111,119,111,99,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,57,52,48,55,44,34,98,101,100,115,34,58,50,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,56,46,48,52,51,50,52,44,52,52,46,50,52,49,48,49,56,93,44,91,45,56,56,46,48,52,49,55,57,52,44,52,51,46,56,57,49,54,57,50,93,44,91,45,56,55,46,48,55,53,51,51,53,44,52,51,46,56,57,52,55,55,52,93,44,91,45,56,54,46,57,56,55,57,57,56,44,52,52,46,49,56,50,54,52,57,93,44,91,45,56,54,46,57,50,51,52,48,51,44,52,52,46,51,50,56,56,50,53,93,44,91,45,56,55,46,55,54,54,48,50,54,44,52,52,46,51,50,55,49,56,52,93,44,91,45,56,55,46,56,56,56,48,56,55,44,52,52,46,50,52,48,52,54,49,93,44,91,45,56,56,46,48,52,51,50,52,44,52,52,46,50,52,49,48,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,53,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,68,111,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,105,115,99,111,110,115,105,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,55,52,51,57,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,49,50,55,56,50,54,44,52,53,46,52,48,57,52,56,55,93,44,91,45,56,55,46,51,49,53,52,50,50,44,52,53,46,50,52,48,54,53,55,93,44,91,45,56,55,46,52,48,53,54,57,52,44,52,53,46,50,48,49,57,54,57,93,44,91,45,56,55,46,52,52,50,55,54,44,52,53,46,48,55,54,52,55,49,93,44,91,45,56,55,46,53,53,49,50,54,50,44,52,53,46,48,48,56,48,52,57,93,44,91,45,56,55,46,55,54,50,52,54,52,44,52,52,46,55,54,52,51,54,55,93,44,91,45,56,55,46,55,54,50,51,51,57,44,52,52,46,54,55,55,48,49,53,93,44,91,45,56,55,46,55,53,56,48,52,56,44,52,52,46,54,55,55,48,53,52,93,44,91,45,56,54,46,55,55,56,51,57,56,44,52,52,46,54,55,53,50,49,57,93,44,91,45,56,54,46,55,51,52,53,50,57,44,52,52,46,55,55,51,48,55,52,93,44,91,45,56,54,46,54,56,54,50,56,56,44,52,52,46,56,56,49,48,48,50,93,44,91,45,56,54,46,52,57,57,57,51,44,52,53,46,48,56,48,56,93,44,91,45,56,54,46,50,53,48,49,44,52,53,46,50,51,53,55,51,53,93,44,91,45,56,54,46,52,54,52,49,50,44,52,53,46,51,50,52,56,49,93,44,91,45,56,54,46,55,53,52,50,51,54,44,52,53,46,52,52,51,54,49,93,44,91,45,56,55,46,49,48,49,49,51,51,44,52,53,46,52,52,52,50,51,93,44,91,45,56,55,46,49,50,55,56,50,54,44,52,53,46,52,48,57,52,56,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,55,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,67,111,108,117,109,98,117,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,111,114,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,54,50,57,51,44,34,98,101,100,115,34,58,49,53,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,50,53,54,48,56,53,44,51,52,46,51,57,57,52,54,57,93,44,91,45,55,56,46,52,52,53,51,50,44,51,52,46,51,55,55,52,93,44,91,45,55,56,46,54,54,55,53,56,56,44,51,52,46,52,54,57,54,52,53,93,44,91,45,55,56,46,56,54,56,57,54,49,44,51,52,46,52,56,52,55,55,56,93,44,91,45,55,56,46,57,53,49,56,48,56,44,51,52,46,52,52,56,55,53,54,93,44,91,45,55,57,46,48,55,49,50,49,49,44,51,52,46,50,57,57,51,52,50,93,44,91,45,55,56,46,54,53,48,51,49,52,44,51,51,46,57,52,52,51,52,50,93,44,91,45,55,56,46,53,53,53,48,52,51,44,51,52,46,48,54,55,48,55,49,93,44,91,45,55,56,46,51,55,52,50,57,53,44,51,52,46,50,48,52,56,57,51,93,44,91,45,55,56,46,50,53,52,54,50,50,44,51,52,46,50,49,54,51,48,53,93,44,91,45,55,56,46,49,54,50,51,53,44,51,52,46,51,53,55,48,48,55,93,44,91,45,55,56,46,50,53,54,48,56,53,44,51,52,46,51,57,57,52,54,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,51,34,44,34,78,65,77,69,34,58,34,71,97,108,108,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,49,57,53,44,34,98,101,100,115,34,58,50,56,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,52,51,53,51,48,57,44,51,57,46,48,51,53,48,55,57,93,44,91,45,56,50,46,52,53,53,49,55,57,44,51,56,46,56,52,52,53,55,55,93,44,91,45,56,50,46,53,55,53,53,56,51,44,51,56,46,56,52,52,52,55,56,93,44,91,45,56,50,46,52,56,51,53,55,57,44,51,56,46,55,55,50,50,55,56,93,44,91,45,56,50,46,52,55,50,52,55,56,44,51,56,46,54,56,50,50,55,57,93,44,91,45,56,50,46,51,53,52,52,54,56,44,51,56,46,54,55,54,48,55,93,44,91,45,56,50,46,50,56,55,50,55,44,51,56,46,53,56,50,55,56,51,93,44,91,45,56,50,46,50,49,56,57,54,55,44,51,56,46,53,57,49,54,56,51,93,44,91,45,56,50,46,49,55,49,57,54,54,44,51,56,46,54,50,53,51,56,52,93,44,91,45,56,50,46,50,50,49,53,54,54,44,51,56,46,55,56,55,49,56,55,93,44,91,45,56,50,46,49,52,52,49,54,55,44,51,56,46,56,52,49,56,56,93,44,91,45,56,50,46,48,57,56,57,54,53,44,51,56,46,57,53,56,51,55,56,93,44,91,45,56,50,46,48,57,53,52,54,53,44,51,57,46,48,48,50,55,55,56,93,44,91,45,56,50,46,51,50,50,56,55,52,44,51,57,46,48,50,55,54,55,52,93,44,91,45,56,50,46,52,51,53,51,48,57,44,51,57,46,48,51,53,48,55,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,52,49,34,44,34,78,65,77,69,34,58,34,84,97,121,108,111,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,54,51,52,56,44,34,98,101,100,115,34,58,49,48,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,54,50,57,53,55,57,44,51,50,46,53,49,52,54,53,55,93,44,91,45,49,48,48,46,49,52,54,53,52,51,44,51,50,46,53,50,50,55,57,51,93,44,91,45,49,48,48,46,49,53,49,57,49,49,44,51,50,46,48,56,50,54,51,56,93,44,91,45,57,57,46,55,49,51,57,55,49,44,51,50,46,48,56,50,48,56,57,93,44,91,45,57,57,46,54,51,49,52,49,51,44,51,50,46,48,56,49,50,55,52,93,44,91,45,57,57,46,54,50,57,53,55,57,44,51,50,46,53,49,52,54,53,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,53,55,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,55,48,34,44,34,78,65,77,69,34,58,34,67,111,108,111,110,105,97,108,32,72,101,105,103,104,116,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,53,57,51,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,55,46,52,48,51,54,55,49,44,51,55,46,50,51,55,51,52,54,93,44,91,45,55,55,46,51,56,50,53,50,49,44,51,55,46,50,52,50,56,51,55,93,44,91,45,55,55,46,51,55,57,49,57,51,44,51,55,46,50,54,55,53,56,93,44,91,45,55,55,46,51,56,56,57,49,55,44,51,55,46,50,56,55,51,52,57,93,44,91,45,55,55,46,52,49,52,52,48,54,44,51,55,46,50,54,48,57,52,57,93,44,91,45,55,55,46,52,49,54,53,48,49,44,51,55,46,50,51,51,50,48,56,93,44,91,45,55,55,46,52,48,51,54,55,49,44,51,55,46,50,51,55,51,52,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,111,115,104,111,99,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,53,55,52,44,34,98,101,100,115,34,58,53,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,49,56,52,54,48,55,44,52,48,46,52,53,54,50,56,93,44,91,45,56,50,46,49,57,53,57,49,49,44,52,48,46,50,51,57,48,55,49,93,44,91,45,56,50,46,49,56,55,49,48,53,44,52,48,46,49,54,54,56,56,93,44,91,45,56,49,46,55,49,54,50,55,54,44,52,48,46,49,53,50,49,54,54,93,44,91,45,56,49,46,54,50,50,54,56,51,44,52,48,46,50,50,49,51,48,56,93,44,91,45,56,49,46,54,49,54,48,51,44,52,48,46,51,54,56,49,49,56,93,44,91,45,56,49,46,55,48,57,49,51,50,44,52,48,46,52,52,52,55,55,53,93,44,91,45,56,50,46,49,56,52,54,48,55,44,52,48,46,52,53,54,50,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,80,101,114,107,105,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,48,55,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,52,57,57,55,53,44,52,49,46,48,48,51,57,53,93,44,91,45,49,48,50,46,48,53,49,55,54,49,44,52,49,46,48,48,51,56,57,93,44,91,45,49,48,50,46,48,53,49,55,49,55,44,52,49,46,48,48,50,51,53,57,93,44,91,45,49,48,50,46,48,53,49,52,49,54,44,52,48,46,55,52,57,53,56,54,93,44,91,45,49,48,50,46,48,53,49,52,53,55,44,52,48,46,54,57,55,53,51,57,93,44,91,45,49,48,49,46,51,52,53,51,54,53,44,52,48,46,54,57,56,48,57,51,93,44,91,45,49,48,49,46,50,52,55,57,54,51,44,52,48,46,54,57,55,56,48,50,93,44,91,45,49,48,49,46,50,52,57,57,55,53,44,52,49,46,48,48,51,57,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,48,53,34,44,34,78,65,77,69,34,58,34,72,97,114,116,108,101,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,54,55,44,34,98,101,100,115,34,58,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,51,46,48,52,49,51,52,57,44,51,53,46,55,51,57,52,51,51,93,44,91,45,49,48,51,46,48,52,49,55,48,54,44,51,53,46,54,50,50,52,56,56,93,44,91,45,49,48,50,46,49,54,50,56,48,57,44,51,53,46,54,50,55,53,49,53,93,44,91,45,49,48,50,46,49,54,51,48,49,53,44,51,54,46,48,53,53,50,52,57,93,44,91,45,49,48,51,46,48,52,49,48,54,50,44,51,54,46,48,53,53,50,50,54,93,44,91,45,49,48,51,46,48,52,49,51,52,57,44,51,53,46,55,51,57,52,51,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,56,48,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,57,34,44,34,78,65,77,69,34,58,34,71,114,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,111,108,111,114,97,100,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,48,54,54,44,34,98,101,100,115,34,58,50,51,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,53,46,56,53,52,57,50,54,44,52,48,46,52,56,54,50,53,50,93,44,91,45,49,48,53,46,57,48,53,57,57,44,52,48,46,51,57,57,54,53,50,93,44,91,45,49,48,54,46,50,51,48,55,52,54,44,52,48,46,51,50,52,52,56,54,93,44,91,45,49,48,54,46,54,49,50,51,50,49,44,52,48,46,51,55,57,51,56,51,93,44,91,45,49,48,54,46,54,53,50,49,49,50,44,52,48,46,52,52,53,50,51,49,93,44,91,45,49,48,54,46,54,51,50,50,53,55,44,52,48,46,51,52,49,53,53,57,93,44,91,45,49,48,54,46,54,50,54,53,54,57,44,51,57,46,57,50,52,55,56,53,93,44,91,45,49,48,54,46,52,51,52,53,48,56,44,51,57,46,57,50,52,57,49,52,93,44,91,45,49,48,54,46,50,53,50,48,50,55,44,51,57,46,57,49,52,55,49,50,93,44,91,45,49,48,54,46,48,56,51,55,49,49,44,51,57,46,56,48,53,57,54,52,93,44,91,45,49,48,54,46,48,50,51,55,56,51,44,51,57,46,54,56,56,52,50,93,44,91,45,49,48,53,46,57,50,52,54,49,56,44,51,57,46,54,57,56,57,55,50,93,44,91,45,49,48,53,46,54,57,48,51,52,56,44,51,57,46,56,53,49,57,57,54,93,44,91,45,49,48,53,46,54,55,53,55,57,56,44,51,57,46,57,51,50,52,52,53,93,44,91,45,49,48,53,46,54,51,56,50,57,50,44,52,48,46,48,52,52,51,50,54,93,44,91,45,49,48,53,46,54,53,51,51,50,49,44,52,48,46,50,54,48,52,53,55,93,44,91,45,49,48,53,46,56,53,52,57,50,54,44,52,48,46,52,56,54,50,53,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,52,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,52,57,34,44,34,78,65,77,69,34,58,34,74,105,109,32,87,101,108,108,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,49,49,57,50,44,34,98,101,100,115,34,58,49,51,53,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,50,51,53,52,57,55,44,50,56,46,48,53,55,57,54,54,93,44,91,45,57,56,46,50,51,50,52,54,52,44,50,55,46,50,54,50,52,56,55,93,44,91,45,57,56,46,48,53,56,48,55,56,44,50,55,46,50,54,48,57,56,49,93,44,91,45,57,56,46,48,53,57,56,44,50,55,46,54,51,53,56,54,57,93,44,91,45,57,55,46,57,52,50,49,52,54,44,50,55,46,54,51,53,57,51,50,93,44,91,45,57,55,46,57,51,52,50,55,52,44,50,55,46,56,56,53,50,48,50,93,44,91,45,57,55,46,55,57,56,53,49,55,44,50,55,46,57,57,53,54,53,57,93,44,91,45,57,55,46,56,56,51,49,52,56,44,50,56,46,48,53,54,57,93,44,91,45,57,56,46,50,51,53,52,57,55,44,50,56,46,48,53,55,57,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,49,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,56,57,34,44,34,78,65,77,69,34,58,34,87,105,110,110,101,98,97,103,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,53,55,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,57,55,48,55,54,50,44,52,51,46,52,57,57,56,56,54,93,44,91,45,57,51,46,57,55,48,52,49,53,44,52,51,46,50,53,53,51,53,56,93,44,91,45,57,51,46,52,57,55,54,51,53,44,52,51,46,50,53,53,52,54,56,93,44,91,45,57,51,46,52,57,55,51,53,51,44,52,51,46,52,57,57,54,50,50,93,44,91,45,57,51,46,54,52,56,53,51,51,44,52,51,46,52,57,57,54,56,93,44,91,45,57,51,46,57,55,48,55,54,50,44,52,51,46,52,57,57,56,56,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,54,48,55,57,34,44,34,83,84,65,84,69,70,80,34,58,34,48,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,55,57,34,44,34,78,65,77,69,34,58,34,83,97,110,32,76,117,105,115,32,79,98,105,115,112,111,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,67,97,108,105,102,111,114,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,67,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,56,49,52,53,53,44,34,98,101,100,115,34,58,49,55,48,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,48,46,50,49,51,57,55,57,44,51,53,46,55,56,57,50,55,54,93,44,91,45,49,50,49,46,52,51,56,49,55,54,44,51,53,46,55,57,54,54,53,53,93,44,91,45,49,50,49,46,51,50,51,53,49,50,44,51,53,46,54,50,52,57,54,57,93,44,91,45,49,50,49,46,50,48,49,53,53,53,44,51,53,46,53,56,51,54,57,93,44,91,45,49,50,49,46,48,52,49,54,51,53,44,51,53,46,52,49,57,57,57,93,44,91,45,49,50,48,46,57,51,51,50,57,50,44,51,53,46,51,57,50,55,52,56,93,44,91,45,49,50,48,46,57,54,48,50,52,55,44,51,53,46,50,52,51,54,50,50,93,44,91,45,49,50,48,46,56,48,48,52,49,49,44,51,53,46,49,49,54,53,55,55,93,44,91,45,49,50,48,46,54,56,57,54,48,54,44,51,53,46,48,57,56,56,50,56,93,44,91,45,49,50,48,46,55,48,50,55,57,53,44,51,52,46,57,57,57,57,55,53,93,44,91,45,49,50,48,46,54,51,52,49,52,52,44,51,52,46,57,53,57,53,54,50,93,44,91,45,49,50,48,46,52,57,54,50,50,50,44,51,52,46,57,57,51,49,53,53,93,44,91,45,49,50,48,46,51,50,55,49,49,53,44,51,52,46,57,56,54,53,50,53,93,44,91,45,49,50,48,46,48,57,54,57,51,44,51,53,46,49,48,57,53,57,53,93,44,91,45,49,49,57,46,55,52,53,53,54,54,44,51,52,46,57,55,51,54,55,54,93,44,91,45,49,49,57,46,52,55,50,55,53,52,44,51,52,46,57,48,49,49,55,52,93,44,91,45,49,49,57,46,52,55,50,55,49,57,44,51,53,46,48,55,54,56,56,53,93,44,91,45,49,49,57,46,53,53,51,54,52,49,44,51,53,46,49,55,57,57,55,53,93,44,91,45,49,49,57,46,54,54,55,48,53,54,44,51,53,46,49,55,52,56,48,57,93,44,91,45,49,49,57,46,54,54,54,54,54,51,44,51,53,46,50,54,50,53,50,55,93,44,91,45,49,49,57,46,56,48,57,52,52,57,44,51,53,46,50,54,51,53,56,52,93,44,91,45,49,49,57,46,56,56,48,49,55,50,44,51,53,46,51,53,49,50,49,49,93,44,91,45,49,49,57,46,56,56,48,48,52,53,44,51,53,46,52,51,57,49,51,51,93,44,91,45,49,50,48,46,48,56,54,54,55,52,44,51,53,46,53,50,54,53,53,52,93,44,91,45,49,50,48,46,49,57,51,57,49,56,44,51,53,46,54,49,52,51,53,57,93,44,91,45,49,50,48,46,49,57,52,49,52,54,44,51,53,46,55,56,57,50,48,52,93,44,91,45,49,50,48,46,50,49,51,57,55,57,44,51,53,46,55,56,57,50,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,72,101,110,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,98,97,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,49,50,52,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,53,46,52,49,54,52,51,55,44,51,49,46,54,49,57,52,54,54,93,44,91,45,56,53,46,52,49,55,52,51,52,44,51,49,46,51,49,52,57,55,51,93,44,91,45,56,53,46,48,56,55,54,53,49,44,51,49,46,51,48,56,54,55,55,93,44,91,45,56,53,46,48,52,53,52,57,53,44,51,49,46,53,49,55,49,50,57,93,44,91,45,56,53,46,49,50,55,51,50,57,44,51,49,46,55,54,50,53,54,51,93,44,91,45,56,53,46,50,49,54,48,55,54,44,51,49,46,55,48,50,52,48,57,93,44,91,45,56,53,46,52,49,54,48,51,56,44,51,49,46,55,48,54,54,54,52,93,44,91,45,56,53,46,52,49,54,52,51,55,44,51,49,46,54,49,57,52,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,55,53,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,53,34,44,34,78,65,77,69,34,58,34,87,121,97,110,100,111,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,49,48,55,44,34,98,101,100,115,34,58,51,49,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,52,50,48,51,49,57,44,52,48,46,57,57,49,56,56,57,93,44,91,45,56,51,46,53,49,53,56,56,51,44,52,48,46,56,49,56,49,51,52,93,44,91,45,56,51,46,52,57,53,55,57,56,44,52,48,46,55,48,49,53,49,53,93,44,91,45,56,51,46,52,49,57,56,51,54,44,52,48,46,54,56,54,56,50,51,93,44,91,45,56,51,46,49,49,49,51,54,44,52,48,46,55,48,50,57,49,53,93,44,91,45,56,51,46,49,49,50,55,51,55,44,52,48,46,57,57,51,52,52,55,93,44,91,45,56,51,46,52,50,48,51,49,57,44,52,48,46,57,57,49,56,56,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,53,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,53,48,53,34,44,34,78,65,77,69,34,58,34,90,97,112,97,116,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,52,51,54,57,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,57,46,52,53,51,55,57,52,44,50,55,46,50,54,53,48,53,56,93,44,91,45,57,57,46,52,50,54,52,49,56,44,50,55,46,49,55,56,50,56,55,93,44,91,45,57,57,46,52,52,54,49,50,51,44,50,55,46,48,50,51,48,52,56,93,44,91,45,57,57,46,50,54,56,54,49,51,44,50,54,46,56,52,51,50,49,51,93,44,91,45,57,57,46,49,54,57,52,49,54,44,50,54,46,53,55,49,54,56,50,93,44,91,45,57,57,46,48,49,49,49,49,50,44,50,54,46,54,55,53,48,50,51,93,44,91,45,57,56,46,57,53,52,50,51,44,50,54,46,55,56,53,54,57,52,93,44,91,45,57,56,46,57,53,52,54,54,57,44,50,55,46,50,54,57,51,57,55,93,44,91,45,57,57,46,52,53,51,55,57,52,44,50,55,46,50,54,53,48,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,55,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,55,34,44,34,78,65,77,69,34,58,34,76,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,51,52,56,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,48,53,50,48,52,44,51,49,46,54,57,49,48,53,56,93,44,91,45,56,52,46,50,57,55,56,48,49,44,51,49,46,54,50,49,57,53,49,93,44,91,45,56,52,46,48,52,51,50,49,51,44,51,49,46,54,50,51,53,55,51,93,44,91,45,56,52,46,48,49,56,52,48,52,44,51,49,46,54,53,48,50,55,52,93,44,91,45,56,52,46,48,50,53,54,50,51,44,51,49,46,55,49,48,48,50,50,93,44,91,45,56,51,46,57,51,57,52,51,55,44,51,49,46,56,52,55,57,50,57,93,44,91,45,56,51,46,57,50,50,52,57,52,44,51,49,46,57,48,57,54,53,51,93,44,91,45,56,52,46,51,51,56,49,52,51,44,51,49,46,57,49,54,49,57,93,44,91,45,56,52,46,51,51,56,50,52,53,44,51,49,46,56,55,51,53,57,49,93,44,91,45,56,52,46,50,54,50,51,52,57,44,51,49,46,56,50,56,52,56,56,93,44,91,45,56,52,46,51,48,53,50,48,52,44,51,49,46,54,57,49,48,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,66,111,121,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,56,48,57,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,56,49,55,52,53,52,44,51,56,46,51,55,51,57,51,53,93,44,91,45,56,50,46,55,57,52,50,48,54,44,51,56,46,50,52,51,55,55,50,93,44,91,45,56,50,46,54,48,52,54,50,53,44,51,56,46,50,52,55,54,54,50,93,44,91,45,56,50,46,53,57,51,52,56,44,51,56,46,52,50,49,56,50,49,93,44,91,45,56,50,46,54,54,53,52,49,49,44,51,56,46,53,48,53,55,56,55,93,44,91,45,56,50,46,56,49,55,52,53,52,44,51,56,46,51,55,51,57,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,67,97,114,118,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,48,52,49,54,44,34,98,101,100,115,34,58,49,48,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,55,54,55,51,54,55,44,52,52,46,57,55,55,57,54,52,93,44,91,45,57,52,46,48,49,50,50,51,54,44,52,52,46,57,55,56,55,49,50,93,44,91,45,57,52,46,48,49,48,52,57,52,44,52,52,46,55,49,55,52,54,52,93,44,91,45,57,51,46,55,54,56,48,51,57,44,52,52,46,54,52,48,51,48,51,93,44,91,45,57,51,46,53,50,48,52,51,49,44,52,52,46,56,48,52,50,54,51,93,44,91,45,57,51,46,53,50,48,55,48,54,44,52,52,46,56,57,49,53,48,50,93,44,91,45,57,51,46,55,54,55,48,52,49,44,52,52,46,56,57,48,56,54,50,93,44,91,45,57,51,46,55,54,55,51,54,55,44,52,52,46,57,55,55,57,54,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,51,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,55,34,44,34,78,65,77,69,34,58,34,67,111,108,102,97,120,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,55,54,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,50,53,50,52,50,53,44,52,49,46,55,52,51,48,56,53,93,44,91,45,57,55,46,50,53,51,53,49,57,44,52,49,46,51,56,52,50,49,50,93,44,91,45,57,55,46,49,55,53,54,49,51,44,52,49,46,51,55,55,48,56,51,93,44,91,45,57,54,46,57,48,53,57,49,44,52,49,46,52,53,54,52,51,54,93,44,91,45,57,54,46,57,48,53,57,50,50,44,52,49,46,55,52,50,55,54,51,93,44,91,45,57,55,46,48,49,57,57,49,49,44,52,49,46,55,52,50,57,56,93,44,91,45,57,55,46,50,53,50,52,50,53,44,52,49,46,55,52,51,48,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,53,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,52,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,67,104,101,115,116,101,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,83,111,117,116,104,32,67,97,114,111,108,105,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,83,67,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,54,48,50,52,44,34,98,101,100,115,34,58,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,48,46,53,54,49,55,49,44,51,52,46,56,49,55,52,50,57,93,44,91,45,56,48,46,52,48,56,51,55,51,44,51,52,46,54,49,52,55,54,53,93,44,91,45,56,48,46,51,50,55,53,57,44,51,52,46,52,57,55,55,54,93,44,91,45,56,48,46,50,56,56,53,57,54,44,51,52,46,51,54,54,50,48,55,93,44,91,45,56,48,46,48,52,53,52,51,57,44,51,52,46,52,57,50,54,51,49,93,44,91,45,55,57,46,56,56,52,53,52,50,44,51,52,46,52,57,49,50,49,56,93,44,91,45,55,57,46,56,50,57,57,56,49,44,51,52,46,53,51,49,57,50,53,93,44,91,45,55,57,46,56,48,51,56,55,55,44,51,52,46,54,48,57,48,53,51,93,44,91,45,55,57,46,57,50,55,52,49,50,44,51,52,46,56,48,54,55,51,52,93,44,91,45,56,48,46,51,50,48,56,50,56,44,51,52,46,56,49,51,57,48,54,93,44,91,45,56,48,46,53,54,49,55,49,44,51,52,46,56,49,55,52,50,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,55,49,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,52,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,49,34,44,34,78,65,77,69,34,58,34,76,101,119,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,110,110,101,115,115,101,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,57,53,54,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,54,53,56,49,56,57,44,51,53,46,54,48,57,51,52,57,93,44,91,45,56,55,46,55,49,55,53,53,57,44,51,53,46,52,56,51,51,52,55,93,44,91,45,56,55,46,53,55,53,51,53,50,44,51,53,46,51,57,56,52,53,52,93,44,91,45,56,55,46,50,57,52,53,51,52,44,51,53,46,52,52,52,54,55,54,93,44,91,45,56,55,46,51,51,57,50,51,50,44,51,53,46,54,53,57,49,49,93,44,91,45,56,55,46,52,53,57,53,56,55,44,51,53,46,54,49,53,49,50,52,93,44,91,45,56,55,46,53,54,56,56,51,49,44,51,53,46,54,53,50,50,57,54,93,44,91,45,56,55,46,54,53,56,49,56,57,44,51,53,46,54,48,57,51,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,49,48,54,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,54,55,34,44,34,78,65,77,69,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,114,101,103,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,56,49,56,50,49,44,34,98,101,100,115,34,58,57,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,51,46,52,54,52,56,56,44,52,53,46,52,51,51,51,51,50,93,44,91,45,49,50,51,46,49,51,53,52,50,55,44,52,53,46,52,51,51,52,53,57,93,44,91,45,49,50,50,46,56,54,55,56,57,49,44,52,53,46,51,49,55,51,52,53,93,44,91,45,49,50,50,46,55,52,51,55,52,49,44,52,53,46,51,51,50,48,54,55,93,44,91,45,49,50,50,46,55,52,51,55,50,49,44,52,53,46,52,51,51,50,57,52,93,44,91,45,49,50,50,46,55,52,51,56,54,50,44,52,53,46,53,49,57,53,48,57,93,44,91,45,49,50,50,46,57,50,57,49,50,56,44,52,53,46,54,51,53,51,49,51,93,44,91,45,49,50,50,46,57,50,57,49,52,54,44,52,53,46,55,50,49,52,56,50,93,44,91,45,49,50,51,46,48,51,48,56,55,51,44,52,53,46,55,55,57,49,53,57,93,44,91,45,49,50,51,46,51,54,49,54,50,50,44,52,53,46,55,55,57,53,55,57,93,44,91,45,49,50,51,46,52,56,52,55,50,54,44,52,53,46,55,48,56,55,54,52,93,44,91,45,49,50,51,46,51,54,49,49,51,49,44,52,53,46,53,55,56,55,55,57,93,44,91,45,49,50,51,46,52,54,52,56,56,44,52,53,46,52,51,51,51,51,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,56,49,48,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,56,49,48,34,44,34,78,65,77,69,34,58,34,86,105,114,103,105,110,105,97,32,66,101,97,99,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,48,49,51,53,44,34,98,101,100,115,34,58,56,49,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,50,50,54,48,54,44,51,54,46,56,51,57,57,52,55,93,44,91,45,55,54,46,49,50,49,57,53,53,44,51,54,46,54,54,53,55,53,93,44,91,45,55,54,46,49,50,50,51,52,57,44,51,54,46,53,53,48,53,50,51,93,44,91,45,55,53,46,55,57,55,52,57,55,44,51,54,46,53,53,48,57,49,54,93,44,91,45,55,53,46,57,50,54,56,52,55,44,51,54,46,57,51,54,52,54,50,93,44,91,45,55,53,46,57,48,57,52,57,49,44,51,54,46,57,57,48,55,48,56,93,44,91,45,55,54,46,49,51,51,56,55,50,44,51,55,46,48,52,48,56,56,54,93,44,91,45,55,54,46,50,50,54,48,54,44,51,54,46,56,51,57,57,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,50,49,56,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,49,46,56,48,53,50,53,57,44,52,53,46,55,57,56,51,48,54,93,44,91,45,49,49,49,46,57,50,54,57,54,53,44,52,53,46,56,53,53,54,57,52,93,44,91,45,49,49,50,46,48,56,56,55,54,44,52,53,46,56,52,57,48,53,93,44,91,45,49,49,50,46,49,57,48,50,54,57,44,52,53,46,55,52,56,53,48,51,93,44,91,45,49,49,50,46,53,49,53,52,53,51,44,52,53,46,55,52,54,55,48,50,93,44,91,45,49,49,50,46,54,56,55,48,53,52,44,52,53,46,54,50,52,56,53,52,93,44,91,45,49,49,50,46,54,56,55,56,51,57,44,52,53,46,52,55,55,50,52,93,44,91,45,49,49,50,46,53,48,53,53,54,56,44,52,53,46,52,52,51,48,48,57,93,44,91,45,49,49,50,46,52,53,56,48,54,50,44,52,53,46,51,52,57,57,49,93,44,91,45,49,49,50,46,52,53,54,56,53,52,44,52,53,46,48,56,56,53,48,57,93,44,91,45,49,49,50,46,51,51,52,50,52,56,44,52,53,46,48,48,48,53,49,57,93,44,91,45,49,49,50,46,49,57,49,49,56,55,44,52,53,46,48,48,48,53,49,50,93,44,91,45,49,49,50,46,49,54,55,49,48,56,44,52,52,46,56,50,54,55,51,56,93,44,91,45,49,49,50,46,48,54,53,55,57,55,44,52,52,46,55,56,51,52,55,53,93,44,91,45,49,49,49,46,55,56,49,49,53,55,44,52,52,46,55,56,49,48,50,55,93,44,91,45,49,49,49,46,55,56,49,48,57,57,44,52,52,46,55,48,56,56,52,53,93,44,91,45,49,49,49,46,52,55,52,57,54,51,44,52,52,46,55,48,56,55,55,51,93,44,91,45,49,49,49,46,51,55,55,48,49,53,44,52,52,46,55,53,49,52,52,51,93,44,91,45,49,49,49,46,51,55,51,48,51,44,52,53,46,51,53,48,53,50,49,93,44,91,45,49,49,49,46,51,53,49,51,56,44,52,53,46,54,52,49,57,51,56,93,44,91,45,49,49,49,46,53,51,54,50,52,49,44,52,53,46,54,52,50,50,53,55,93,44,91,45,49,49,49,46,54,53,57,55,51,56,44,52,53,46,55,52,51,51,52,52,93,44,91,45,49,49,49,46,56,48,53,50,53,57,44,52,53,46,55,57,56,51,48,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,51,34,44,34,78,65,77,69,34,58,34,76,97,110,99,97,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,56,48,52,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,53,48,55,56,50,56,44,51,55,46,56,51,56,56,49,52,93,44,91,45,55,54,46,54,54,56,49,56,50,44,51,55,46,55,55,56,51,56,54,93,44,91,45,55,54,46,53,51,54,53,56,57,44,51,55,46,54,51,57,49,57,52,93,44,91,45,55,54,46,51,54,56,50,49,51,44,51,55,46,53,57,52,51,51,49,93,44,91,45,55,54,46,49,53,49,55,49,49,44,51,55,46,53,56,53,57,54,56,93,44,91,45,55,54,46,49,55,53,54,56,55,44,51,55,46,54,55,49,54,50,54,93,44,91,45,55,54,46,51,48,56,51,54,55,44,51,55,46,54,54,57,55,55,51,93,44,91,45,55,54,46,52,50,48,48,55,49,44,51,55,46,56,50,51,55,54,54,93,44,91,45,55,54,46,53,48,55,56,50,56,44,51,55,46,56,51,56,56,49,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,49,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,51,34,44,34,78,65,77,69,34,58,34,66,97,116,101,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,55,52,44,34,98,101,100,115,34,58,54,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,52,46,54,49,51,50,51,50,44,51,56,46,51,56,56,55,49,56,93,44,91,45,57,52,46,54,49,52,48,54,49,44,51,56,46,48,54,48,48,53,54,93,44,91,45,57,52,46,48,53,56,50,56,53,44,51,56,46,48,51,54,54,50,55,93,44,91,45,57,52,46,48,52,57,56,57,53,44,51,56,46,50,49,51,57,56,53,93,44,91,45,57,52,46,48,54,53,55,49,51,44,51,56,46,52,52,55,48,56,55,93,44,91,45,57,52,46,54,49,50,56,56,50,44,51,56,46,52,55,55,53,57,55,93,44,91,45,57,52,46,54,49,51,50,51,50,44,51,56,46,51,56,56,55,49,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,51,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,101,108,107,110,97,112,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,72,97,109,112,115,104,105,114,101,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,48,54,52,48,44,34,98,101,100,115,34,58,49,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,55,50,55,53,55,51,44,52,51,46,53,54,51,52,49,49,93,44,91,45,55,49,46,54,49,50,52,50,54,44,52,51,46,52,51,55,56,57,51,93,44,91,45,55,49,46,53,53,48,48,51,44,52,51,46,52,53,50,55,48,49,93,44,91,45,55,49,46,50,51,54,48,49,49,44,52,51,46,50,56,52,57,57,52,93,44,91,45,55,49,46,49,53,57,51,54,52,44,52,51,46,51,53,53,49,50,51,93,44,91,45,55,49,46,49,54,50,54,55,53,44,52,51,46,53,51,56,57,53,57,93,44,91,45,55,49,46,50,53,56,50,53,57,44,52,51,46,53,55,49,51,52,53,93,44,91,45,55,49,46,53,51,49,54,53,56,44,52,51,46,55,54,48,57,55,57,93,44,91,45,55,49,46,54,52,56,51,52,54,44,52,51,46,54,56,52,53,49,49,93,44,91,45,55,49,46,55,50,55,53,55,51,44,52,51,46,53,54,51,52,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,57,34,44,34,78,65,77,69,34,58,34,82,105,99,104,109,111,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,56,55,56,44,34,98,101,100,115,34,58,57,49,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,54,46,57,51,54,57,53,57,44,51,56,46,48,55,55,48,55,52,93,44,91,45,55,54,46,57,48,48,52,57,44,51,55,46,57,56,50,49,52,50,93,44,91,45,55,54,46,54,54,56,49,56,50,44,51,55,46,55,55,56,51,56,54,93,44,91,45,55,54,46,53,48,55,56,50,56,44,51,55,46,56,51,56,56,49,52,93,44,91,45,55,54,46,54,51,52,50,51,44,51,55,46,57,54,54,54,51,93,44,91,45,55,54,46,55,52,56,56,55,49,44,51,55,46,57,57,52,56,57,55,93,44,91,45,55,54,46,56,55,55,48,54,50,44,51,56,46,49,50,52,51,53,56,93,44,91,45,55,54,46,57,51,54,57,53,57,44,51,56,46,48,55,55,48,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,51,48,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,48,34,44,34,78,65,77,69,34,58,34,83,107,97,103,119,97,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,54,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,51,53,46,55,49,55,51,48,55,44,53,57,46,55,51,48,48,52,51,93,44,91,45,49,51,53,46,51,55,53,48,50,44,53,57,46,51,53,48,48,51,51,93,44,91,45,49,51,53,46,48,51,48,53,50,53,44,53,57,46,51,52,54,51,52,56,93,44,91,45,49,51,53,46,49,48,49,48,50,44,53,57,46,52,50,55,53,51,49,93,44,91,45,49,51,53,46,48,50,56,57,48,51,44,53,57,46,53,54,51,54,53,57,93,44,91,45,49,51,53,46,52,55,57,49,54,49,44,53,57,46,55,57,56,48,52,49,93,44,91,45,49,51,53,46,55,49,55,51,48,55,44,53,57,46,55,51,48,48,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,48,53,34,44,34,83,84,65,84,69,70,80,34,58,34,48,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,53,34,44,34,78,65,77,69,34,58,34,72,111,111,110,97,104,45,65,110,103,111,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,108,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,49,51,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,77,117,108,116,105,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,44,91,45,49,51,51,46,56,49,51,48,53,49,44,53,55,46,56,51,55,54,50,52,93,44,91,45,49,51,52,46,49,55,54,57,57,44,53,56,46,49,53,56,51,50,93,44,91,45,49,51,52,46,53,51,56,52,49,51,44,53,56,46,48,57,56,49,55,50,93,44,91,45,49,51,52,46,54,57,55,55,54,54,44,53,56,46,48,51,50,48,51,54,93,44,91,45,49,51,52,46,55,55,54,56,54,50,44,53,56,46,48,57,57,48,52,53,93,44,91,45,49,51,52,46,54,57,52,56,51,54,44,53,56,46,50,55,54,53,50,50,93,44,91,45,49,51,53,46,48,55,48,52,53,44,53,56,46,52,57,57,56,57,55,93,44,91,45,49,51,53,46,48,48,48,52,51,50,44,53,56,46,49,49,56,48,54,52,93,44,91,45,49,51,53,46,50,53,48,48,50,44,53,56,46,49,54,54,55,93,44,91,45,49,51,53,46,52,52,57,54,56,55,44,53,56,46,51,49,55,48,55,51,93,44,91,45,49,51,53,46,52,55,54,49,51,57,44,53,56,46,52,55,53,51,52,55,93,44,91,45,49,51,53,46,52,50,50,54,56,55,44,53,56,46,54,51,49,52,49,54,93,44,91,45,49,51,53,46,55,53,53,51,50,51,44,53,56,46,55,52,53,57,53,52,93,44,91,45,49,51,53,46,53,54,54,56,54,53,44,53,56,46,57,54,51,56,50,93,44,91,45,49,51,53,46,55,49,48,51,56,51,44,53,57,46,49,48,49,52,57,49,93,44,91,45,49,51,53,46,57,54,57,56,52,55,44,53,57,46,49,55,57,55,52,93,44,91,45,49,51,54,46,52,56,56,52,48,50,44,53,57,46,50,53,57,50,57,93,44,91,45,49,51,54,46,53,56,49,53,50,49,44,53,57,46,49,54,52,57,48,57,93,44,91,45,49,51,54,46,56,50,54,54,51,51,44,53,57,46,49,53,56,51,56,57,93,44,91,45,49,51,55,46,53,50,53,54,55,53,44,53,56,46,57,48,56,57,55,53,93,44,91,45,49,51,56,46,48,50,49,54,49,44,53,56,46,55,57,48,48,50,51,93,44,91,45,49,51,55,46,55,54,50,50,49,56,44,53,56,46,53,57,54,53,48,50,93,44,91,45,49,51,55,46,49,52,57,53,56,54,44,53,56,46,51,52,49,51,48,55,93,44,91,45,49,51,55,46,48,49,52,53,44,53,56,46,51,52,52,51,49,49,93,44,91,45,49,51,54,46,56,49,52,52,49,50,44,53,56,46,49,56,56,55,57,93,44,91,45,49,51,54,46,54,49,54,51,51,57,44,53,56,46,49,52,55,50,51,93,44,91,45,49,51,54,46,54,55,56,56,57,49,44,53,56,46,48,51,54,50,57,51,93,44,91,45,49,51,54,46,54,53,56,53,54,56,44,53,55,46,57,48,49,52,53,53,93,44,91,45,49,51,54,46,52,53,52,52,50,55,44,53,55,46,56,51,48,54,55,54,93,44,91,45,49,51,54,46,48,50,52,51,50,56,44,53,55,46,56,51,56,55,57,53,93,44,91,45,49,51,53,46,57,48,49,57,54,52,44,53,56,46,48,48,49,51,52,51,93,44,91,45,49,51,53,46,53,50,56,53,51,52,44,53,55,46,56,56,48,52,55,93,44,91,45,49,51,53,46,50,51,56,49,50,57,44,53,55,46,55,54,49,55,49,49,93,44,91,45,49,51,52,46,56,51,54,50,44,53,55,46,55,56,55,55,93,44,91,45,49,51,52,46,55,48,49,49,52,49,44,53,55,46,52,53,52,54,49,51,93,44,91,45,49,51,52,46,55,51,56,53,53,54,44,53,55,46,50,50,54,51,48,51,93,44,91,45,49,51,52,46,54,55,55,50,44,53,54,46,57,57,57,93,44,91,45,49,51,52,46,53,54,57,50,56,57,44,53,54,46,56,54,51,48,53,50,93,44,91,45,49,51,52,46,51,51,53,51,49,57,44,53,54,46,57,54,55,53,51,57,93,44,91,45,49,51,52,46,48,54,51,49,52,53,44,53,55,46,49,53,54,50,56,54,93,44,91,45,49,51,51,46,54,53,56,50,50,50,44,53,55,46,49,54,50,52,57,51,93,44,91,45,49,51,51,46,55,51,56,54,49,49,44,53,55,46,49,56,54,51,52,56,93,44,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,93,93,44,91,91,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,44,91,45,49,51,51,46,52,53,50,50,52,50,44,53,55,46,56,49,52,48,54,50,93,44,91,45,49,51,50,46,56,55,49,56,57,56,44,53,55,46,55,49,50,55,57,54,93,44,91,45,49,51,50,46,56,56,55,56,53,44,53,55,46,54,49,51,55,51,57,93,44,91,45,49,51,50,46,54,53,50,52,53,54,44,53,55,46,54,48,55,51,53,55,93,44,91,45,49,51,50,46,56,54,57,51,49,56,44,53,55,46,56,52,50,57,52,49,93,44,91,45,49,51,51,46,48,55,54,52,50,49,44,53,55,46,57,57,57,55,54,50,93,44,91,45,49,51,51,46,49,55,54,57,51,55,44,53,56,46,49,53,48,53,54,55,93,44,91,45,49,51,51,46,54,57,54,55,48,49,44,53,55,46,55,57,50,55,50,52,93,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,48,54,54,48,44,34,98,101,100,115,34,58,57,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,57,46,52,53,51,49,57,44,52,54,46,54,55,57,50,52,51,93,44,91,45,49,49,57,46,50,55,48,51,50,44,52,54,46,53,50,49,51,49,49,93,44,91,45,49,49,57,46,50,54,55,50,48,50,44,52,54,46,50,56,52,54,50,53,93,44,91,45,49,49,57,46,48,52,49,52,57,56,44,52,54,46,49,57,50,54,54,55,93,44,91,45,49,49,56,46,55,55,55,50,50,56,44,52,54,46,50,57,48,49,55,55,93,44,91,45,49,49,56,46,54,51,51,56,50,54,44,52,54,46,52,49,52,48,50,50,93,44,91,45,49,49,56,46,54,49,53,53,57,50,44,52,54,46,53,48,52,53,52,51,93,44,91,45,49,49,56,46,52,55,53,57,51,50,44,52,54,46,53,57,53,49,52,50,93,44,91,45,49,49,56,46,50,50,56,54,51,53,44,52,54,46,53,57,51,51,54,50,93,44,91,45,49,49,56,46,50,49,53,54,54,44,52,54,46,53,56,56,57,50,52,93,44,91,45,49,49,56,46,50,49,48,50,52,51,44,52,54,46,55,51,56,56,51,51,93,44,91,45,49,49,57,46,51,54,57,52,50,57,44,52,54,46,55,51,55,54,57,53,93,44,91,45,49,49,57,46,52,53,51,49,57,44,52,54,46,54,55,57,50,52,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,57,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,51,34,44,34,78,65,77,69,34,58,34,73,100,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,57,49,54,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,52,49,54,49,49,44,52,50,46,53,54,49,50,56,53,93,44,91,45,57,53,46,54,54,57,50,54,53,44,52,50,46,52,55,52,54,52,53,93,44,91,45,57,53,46,54,55,48,56,50,50,44,52,50,46,50,49,49,52,48,56,93,44,91,45,57,53,46,51,50,51,52,57,55,44,52,50,46,50,49,48,57,51,50,93,44,91,45,57,53,46,51,50,50,51,53,55,44,52,50,46,52,55,52,55,51,55,93,44,91,45,57,53,46,51,56,56,48,49,44,52,50,46,53,54,49,55,52,50,93,44,91,45,57,53,46,55,52,49,54,49,49,44,52,50,46,53,54,49,50,56,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,49,55,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,55,51,34,44,34,78,65,77,69,34,58,34,83,101,100,103,119,105,99,107,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,49,50,48,54,52,44,34,98,101,100,115,34,58,50,56,52,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,44,91,45,57,55,46,49,53,50,52,55,54,44,51,55,46,57,49,50,55,51,51,93,44,91,45,57,55,46,55,48,49,57,54,57,44,51,55,46,57,49,49,51,50,53,93,44,91,45,57,55,46,54,57,56,54,57,50,44,51,55,46,55,51,53,48,53,54,93,44,91,45,57,55,46,56,48,55,56,50,51,44,51,55,46,55,51,51,56,53,53,93,44,91,45,57,55,46,56,48,55,54,44,51,55,46,52,55,52,49,56,52,93,44,91,45,57,55,46,49,53,51,51,51,49,44,51,55,46,52,55,53,53,52,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,52,53,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,52,53,51,34,44,34,78,65,77,69,34,58,34,84,114,97,118,105,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,50,48,51,49,54,54,44,34,98,101,100,115,34,58,51,48,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,48,52,57,56,56,54,44,51,48,46,54,50,52,49,53,53,93,44,91,45,57,56,46,49,50,53,53,53,54,44,51,48,46,52,50,54,49,56,54,93,44,91,45,57,56,46,49,55,50,57,55,55,44,51,48,46,51,53,54,51,49,50,93,44,91,45,57,55,46,55,49,48,50,49,53,44,51,48,46,48,50,52,52,57,57,93,44,91,45,57,55,46,54,52,57,51,55,44,51,48,46,48,54,55,57,52,52,93,44,91,45,57,55,46,52,57,50,52,56,50,44,51,48,46,50,49,48,48,49,49,93,44,91,45,57,55,46,51,54,57,53,51,57,44,51,48,46,52,49,57,53,54,51,93,44,91,45,57,55,46,53,57,54,50,51,54,44,51,48,46,53,48,49,53,49,51,93,44,91,45,57,55,46,56,49,49,56,54,51,44,51,48,46,52,52,55,48,49,56,93,44,91,45,57,55,46,57,53,54,55,51,52,44,51,48,46,54,50,56,50,52,57,93,44,91,45,57,56,46,48,52,57,56,56,54,44,51,48,46,54,50,52,49,53,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,105,108,108,115,98,111,114,111,117,103,104,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,55,56,56,56,51,44,34,98,101,100,115,34,58,52,48,50,49,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,54,53,49,49,54,53,44,50,56,46,49,55,51,50,54,54,93,44,91,45,56,50,46,54,52,56,51,50,44,50,55,46,57,52,55,51,57,56,93,44,91,45,56,50,46,53,57,55,50,49,57,44,50,55,46,57,51,53,49,57,57,93,44,91,45,56,50,46,53,52,49,53,49,56,44,50,55,46,55,56,50,50,48,52,93,44,91,45,56,50,46,54,48,54,49,51,57,44,50,55,46,54,52,51,54,51,56,93,44,91,45,56,50,46,56,49,51,51,54,50,44,50,55,46,54,52,53,55,52,56,93,44,91,45,56,50,46,56,50,51,48,50,57,44,50,55,46,53,55,48,53,53,93,44,91,45,56,50,46,55,52,53,49,51,55,44,50,55,46,53,55,48,53,53,93,44,91,45,56,50,46,53,53,51,54,54,54,44,50,55,46,54,52,53,52,54,53,93,44,91,45,56,50,46,48,53,52,51,52,57,44,50,55,46,54,52,54,51,56,50,93,44,91,45,56,50,46,48,53,54,50,54,49,44,50,56,46,49,55,49,53,57,50,93,44,91,45,56,50,46,49,48,53,56,53,51,44,50,56,46,49,55,49,54,53,93,44,91,45,56,50,46,54,53,49,49,54,53,44,50,56,46,49,55,51,50,54,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,52,48,50,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,49,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,119,32,74,101,114,115,101,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,74,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,56,55,54,50,44,34,98,101,100,115,34,58,50,48,52,52,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,52,46,57,52,50,57,48,57,44,52,48,46,51,52,49,54,56,51,93,44,91,45,55,52,46,55,50,50,48,52,56,44,52,48,46,49,53,48,51,49,49,93,44,91,45,55,52,46,53,56,55,56,51,53,44,52,48,46,49,51,56,50,53,52,93,44,91,45,55,52,46,52,56,52,57,54,50,44,52,48,46,50,53,51,51,50,53,93,44,91,45,55,52,46,54,50,48,50,52,44,52,48,46,51,55,51,55,52,57,93,44,91,45,55,52,46,55,52,56,49,52,55,44,52,48,46,52,50,52,49,53,54,93,44,91,45,55,52,46,57,52,50,57,48,57,44,52,48,46,51,52,49,54,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,51,34,44,34,78,65,77,69,34,58,34,66,117,116,108,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,56,48,54,55,44,34,98,101,100,115,34,58,50,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,57,48,53,57,49,44,52,49,46,52,53,54,52,51,54,93,44,91,45,57,55,46,49,55,53,54,49,51,44,52,49,46,51,55,55,48,56,51,93,44,91,45,57,55,46,50,53,51,53,49,57,44,52,49,46,51,56,52,50,49,50,93,44,91,45,57,55,46,51,54,56,49,56,54,44,52,49,46,51,57,54,52,49,54,93,44,91,45,57,55,46,51,54,56,49,49,56,44,52,49,46,48,52,54,57,52,55,93,44,91,45,57,54,46,57,49,48,57,52,44,52,49,46,48,52,54,49,49,54,93,44,91,45,57,54,46,57,48,56,53,48,55,44,52,49,46,48,52,54,48,57,49,93,44,91,45,57,54,46,57,48,53,56,54,50,44,52,49,46,52,53,51,51,56,57,93,44,91,45,57,54,46,57,48,53,57,49,44,52,49,46,52,53,54,52,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,50,49,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,52,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,57,34,44,34,78,65,77,69,34,58,34,87,101,115,116,109,111,114,101,108,97,110,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,80,101,110,110,115,121,108,118,97,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,80,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,53,52,55,53,49,44,34,98,101,100,115,34,58,57,55,52,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,57,46,52,53,48,49,55,54,44,52,48,46,53,51,48,49,52,57,93,44,91,45,55,57,46,53,54,49,49,49,44,52,48,46,53,54,52,49,49,51,93,44,91,45,55,57,46,54,57,50,53,56,55,44,52,48,46,54,54,57,55,51,50,93,44,91,45,55,57,46,55,54,53,52,49,53,44,52,48,46,53,52,57,56,53,52,93,44,91,45,55,57,46,55,48,52,55,51,57,44,52,48,46,52,50,55,50,51,49,93,44,91,45,55,57,46,55,55,49,48,56,50,44,52,48,46,51,55,53,52,49,57,93,44,91,45,55,57,46,55,56,49,55,54,49,44,52,48,46,50,50,55,55,49,49,93,44,91,45,55,57,46,56,55,48,53,56,53,44,52,48,46,49,57,55,52,49,53,93,44,91,45,55,57,46,56,55,55,51,56,53,44,52,48,46,49,50,54,55,57,50,93,44,91,45,55,57,46,54,51,56,57,57,52,44,52,48,46,48,56,50,56,53,57,93,44,91,45,55,57,46,53,48,53,49,56,56,44,52,48,46,49,52,48,53,54,56,93,44,91,45,55,57,46,50,57,51,54,56,50,44,52,48,46,48,52,48,52,49,51,93,44,91,45,55,57,46,48,53,53,57,56,51,44,52,48,46,50,56,53,48,56,57,93,44,91,45,55,56,46,57,55,52,54,52,57,44,52,48,46,51,57,53,57,55,50,93,44,91,45,55,57,46,49,50,49,54,51,52,44,52,48,46,51,55,48,53,55,54,93,44,91,45,55,57,46,52,53,48,49,55,54,44,52,48,46,53,51,48,49,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,50,48,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,49,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,53,34,44,34,78,65,77,69,34,58,34,67,104,97,114,108,111,116,116,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,70,108,111,114,105,100,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,70,76,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,54,57,53,52,44,34,98,101,100,115,34,58,54,57,57,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,48,53,55,52,54,57,44,50,55,46,48,51,50,49,49,57,93,44,91,45,56,50,46,50,53,53,50,51,55,44,50,55,46,48,51,50,57,55,53,93,44,91,45,56,50,46,50,53,53,53,50,49,44,50,54,46,57,52,53,50,54,52,93,44,91,45,56,50,46,52,51,55,51,50,55,44,50,54,46,57,52,54,48,50,53,93,44,91,45,56,50,46,51,51,53,48,52,44,50,54,46,55,56,55,57,52,54,93,44,91,45,56,50,46,49,57,56,54,50,54,44,50,54,46,55,55,48,56,57,50,93,44,91,45,56,49,46,53,54,53,57,51,49,44,50,54,46,55,54,57,53,53,50,93,44,91,45,56,49,46,53,54,50,53,51,49,44,50,55,46,48,51,51,54,56,55,93,44,91,45,56,49,46,53,54,50,54,50,52,44,50,55,46,48,51,51,56,51,53,93,44,91,45,56,50,46,48,53,55,52,54,57,44,50,55,46,48,51,50,49,49,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,57,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,49,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,97,115,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,73,111,119,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,73,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,57,49,44,34,98,101,100,115,34,58,51,51,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,49,53,52,55,50,50,44,52,49,46,53,48,53,50,49,49,93,44,91,45,57,53,46,49,53,53,56,53,49,44,52,49,46,49,53,57,50,51,54,93,44,91,45,57,52,46,57,50,55,53,56,55,44,52,49,46,49,53,56,53,48,56,93,44,91,45,57,52,46,55,48,48,53,56,57,44,52,49,46,49,53,56,48,56,53,93,44,91,45,57,52,46,55,48,48,54,50,57,44,52,49,46,53,48,52,49,52,56,93,44,91,45,57,53,46,48,52,48,55,55,44,52,49,46,53,48,52,54,57,93,44,91,45,57,53,46,49,53,52,55,50,50,44,52,49,46,53,48,53,50,49,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,57,49,48,55,34,44,34,83,84,65,84,69,70,80,34,58,34,51,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,48,55,34,44,34,78,65,77,69,34,58,34,77,101,114,99,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,104,105,111,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,72,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,56,48,54,44,34,98,101,100,115,34,58,56,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,56,48,50,52,55,55,44,52,48,46,53,55,50,50,49,51,93,44,91,45,56,52,46,56,48,51,56,57,52,44,52,48,46,51,53,50,55,53,56,93,44,91,45,56,52,46,52,51,52,54,51,49,44,52,48,46,51,53,52,50,53,57,93,44,91,45,56,52,46,52,51,52,51,56,55,44,52,48,46,51,53,52,53,51,52,93,44,91,45,56,52,46,52,53,54,49,56,44,52,48,46,54,56,52,56,54,50,93,44,91,45,56,52,46,52,53,54,49,55,50,44,52,48,46,55,50,56,51,48,54,93,44,91,45,56,52,46,56,48,50,50,55,51,44,52,48,46,55,50,56,49,52,54,93,44,91,45,56,52,46,56,48,50,52,55,55,44,52,48,46,53,55,50,50,49,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,49,49,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,53,34,44,34,78,65,77,69,34,58,34,74,111,104,110,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,56,52,51,44,34,98,101,100,115,34,58,55,50,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,51,46,48,48,52,54,52,57,44,51,55,46,56,53,57,50,52,55,93,44,91,45,56,50,46,57,52,48,55,54,51,44,51,55,46,55,49,54,51,51,56,93,44,91,45,56,50,46,55,54,50,49,57,44,51,55,46,55,53,53,56,53,54,93,44,91,45,56,50,46,54,52,48,55,53,44,51,55,46,55,50,48,49,56,50,93,44,91,45,56,50,46,54,49,50,51,57,51,44,51,55,46,56,55,57,50,55,50,93,44,91,45,56,50,46,57,52,55,57,51,54,44,51,56,46,48,48,48,52,51,49,93,44,91,45,56,50,46,57,56,57,48,49,52,44,51,55,46,57,54,51,57,54,56,93,44,91,45,56,51,46,48,48,52,54,52,57,44,51,55,46,56,53,57,50,52,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,52,48,48,51,34,44,34,83,84,65,84,69,70,80,34,58,34,52,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,51,34,44,34,78,65,77,69,34,58,34,75,101,110,116,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,82,104,111,100,101,32,73,115,108,97,110,100,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,82,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,54,51,56,54,49,44,34,98,101,100,115,34,58,51,53,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,51,54,53,50,48,55,44,52,49,46,55,51,53,54,52,57,93,44,91,45,55,49,46,55,56,57,55,48,52,44,52,49,46,55,50,53,49,57,56,93,44,91,45,55,49,46,55,56,55,54,53,56,44,52,49,46,54,51,57,57,49,56,93,44,91,45,55,49,46,55,56,57,50,52,55,44,52,49,46,53,57,54,56,52,55,93,44,91,45,55,49,46,52,56,52,52,50,55,44,52,49,46,54,48,50,53,57,49,93,44,91,45,55,49,46,51,56,48,53,52,50,44,52,49,46,54,53,48,51,50,54,93,44,91,45,55,49,46,51,51,48,57,55,44,52,49,46,54,56,54,57,54,50,93,44,91,45,55,49,46,51,54,53,50,48,55,44,52,49,46,55,51,53,54,52,57,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,50,53,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,53,34,44,34,78,65,77,69,34,58,34,87,105,110,100,104,97,109,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,51,49,53,48,44,34,98,101,100,115,34,58,50,50,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,50,46,56,49,57,51,54,56,44,52,51,46,50,53,53,52,57,56,93,44,91,45,55,50,46,56,54,56,55,51,55,44,52,51,46,49,49,51,49,55,93,44,91,45,55,50,46,57,57,54,57,44,52,51,46,49,49,57,48,57,53,93,44,91,45,55,51,46,48,48,56,48,54,51,44,52,50,46,57,51,48,48,56,55,93,44,91,45,55,50,46,57,50,49,51,55,54,44,52,50,46,57,50,54,55,57,50,93,44,91,45,55,50,46,57,51,48,50,53,56,44,52,50,46,55,51,57,50,57,51,93,44,91,45,55,50,46,52,53,56,52,49,50,44,52,50,46,55,50,54,57,51,51,93,44,91,45,55,50,46,53,52,49,53,49,51,44,52,50,46,56,48,55,48,57,52,93,44,91,45,55,50,46,53,51,50,48,50,50,44,52,50,46,57,53,52,57,52,51,93,44,91,45,55,50,46,52,55,51,48,55,54,44,52,50,46,57,55,50,53,50,56,93,44,91,45,55,50,46,52,53,50,50,53,49,44,52,51,46,49,54,49,51,53,52,93,44,91,45,55,50,46,52,51,52,54,52,53,44,52,51,46,50,51,51,51,49,49,93,44,91,45,55,50,46,54,56,53,54,51,55,44,52,51,46,50,50,50,52,57,53,93,44,91,45,55,50,46,56,49,57,51,54,56,44,52,51,46,50,53,53,52,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,48,49,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,57,34,44,34,78,65,77,69,34,58,34,79,114,108,101,97,110,115,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,101,114,109,111,110,116,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,54,57,49,49,44,34,98,101,100,115,34,58,52,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,49,46,56,57,55,54,48,56,44,52,53,46,48,48,56,51,53,93,44,91,45,55,50,46,53,53,52,51,54,44,52,53,46,48,48,56,50,55,49,93,44,91,45,55,50,46,53,51,50,54,51,56,44,52,52,46,56,51,51,51,52,54,93,44,91,45,55,50,46,53,55,56,49,54,49,44,52,52,46,55,56,49,53,55,56,93,44,91,45,55,50,46,52,49,55,51,49,53,44,52,52,46,55,50,50,56,57,51,93,44,91,45,55,50,46,52,56,50,51,48,50,44,52,52,46,54,51,51,57,50,56,93,44,91,45,55,50,46,51,55,52,55,56,54,44,52,52,46,53,56,52,49,50,53,93,44,91,45,55,50,46,50,54,50,57,54,53,44,52,52,46,53,52,50,51,51,54,93,44,91,45,55,50,46,49,49,52,53,48,51,44,52,52,46,55,52,57,54,50,52,93,44,91,45,55,50,46,48,49,50,53,48,52,44,52,52,46,54,57,56,56,50,49,93,44,91,45,55,49,46,57,51,57,57,51,54,44,52,52,46,55,54,57,48,51,50,93,44,91,45,55,49,46,56,55,52,52,51,51,44,52,52,46,56,55,54,51,56,50,93,44,91,45,55,49,46,56,57,55,54,48,56,44,52,53,46,48,48,56,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,48,48,56,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,53,34,44,34,78,65,77,69,34,58,34,74,97,99,107,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,51,49,56,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,53,46,55,56,56,57,52,49,44,51,57,46,54,53,51,48,48,49,93,44,91,45,57,53,46,55,56,57,49,48,49,44,51,57,46,53,54,53,57,49,54,93,44,91,45,57,54,46,48,51,53,57,53,50,44,51,57,46,53,54,54,49,93,44,91,45,57,54,46,48,51,53,53,55,51,44,51,57,46,50,49,54,53,50,93,44,91,45,57,53,46,53,56,57,52,55,50,44,51,57,46,50,49,54,48,56,49,93,44,91,45,57,53,46,53,55,48,51,53,49,44,51,57,46,52,49,57,48,53,93,44,91,45,57,53,46,53,54,52,49,50,54,44,51,57,46,54,53,50,56,55,50,93,44,91,45,57,53,46,55,56,56,57,52,49,44,51,57,46,54,53,51,48,48,49,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,50,48,52,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,50,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,76,111,117,105,115,105,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,76,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,48,51,50,50,44,34,98,101,100,115,34,58,51,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,49,46,52,55,54,55,51,57,44,51,50,46,52,48,53,56,48,56,93,44,91,45,57,49,46,54,50,53,49,50,49,44,51,50,46,52,48,53,51,52,52,93,44,91,45,57,49,46,55,53,57,48,57,56,44,51,50,46,51,49,55,55,49,52,93,44,91,45,57,49,46,55,55,54,53,56,55,44,51,50,46,50,51,57,49,48,54,93,44,91,45,57,49,46,56,57,52,55,50,57,44,51,50,46,49,53,49,53,53,93,44,91,45,57,49,46,56,56,57,54,56,55,44,51,49,46,57,55,49,52,55,52,93,44,91,45,57,49,46,55,55,57,57,50,56,44,51,49,46,56,56,49,52,56,49,93,44,91,45,57,49,46,54,52,54,48,52,44,51,49,46,57,54,49,49,52,49,93,44,91,45,57,49,46,53,55,53,55,50,49,44,51,49,46,56,56,50,53,54,93,44,91,45,57,49,46,53,49,49,51,55,52,44,51,49,46,57,51,48,48,50,53,93,44,91,45,57,49,46,52,57,50,55,49,56,44,51,50,46,50,48,51,51,52,57,93,44,91,45,57,49,46,53,52,51,48,50,49,44,51,50,46,50,53,57,48,48,54,93,44,91,45,57,49,46,52,55,54,55,51,57,44,51,50,46,52,48,53,56,48,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,49,53,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,53,53,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,50,56,44,34,98,101,100,115,34,58,51,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,49,57,49,55,56,49,44,51,51,46,55,51,56,54,48,50,93,44,91,45,56,57,46,53,48,55,49,51,53,44,51,51,46,55,50,49,56,49,57,93,44,91,45,56,57,46,53,48,54,56,55,50,44,51,51,46,54,55,55,54,48,53,93,44,91,45,56,57,46,53,48,54,52,57,54,44,51,51,46,52,53,57,56,48,54,93,44,91,45,56,57,46,51,56,49,48,57,50,44,51,51,46,52,54,48,51,48,55,93,44,91,45,56,57,46,50,50,50,48,51,57,44,51,51,46,53,50,55,50,52,53,93,44,91,45,56,57,46,48,56,56,52,52,54,44,51,51,46,53,51,51,50,48,50,93,44,91,45,56,57,46,48,49,56,54,49,51,44,51,51,46,53,54,50,49,49,52,93,44,91,45,56,57,46,48,51,52,52,57,56,44,51,51,46,55,51,57,52,51,93,44,91,45,56,57,46,49,57,49,55,56,49,44,51,51,46,55,51,56,54,48,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,53,48,49,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,49,49,34,44,34,78,65,77,69,34,58,34,70,114,97,110,107,108,105,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,97,115,115,97,99,104,117,115,101,116,116,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,55,48,57,51,53,44,34,98,101,100,115,34,58,56,57,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,51,46,48,50,51,48,49,53,44,52,50,46,55,52,49,49,51,53,93,44,91,45,55,50,46,57,53,49,48,51,57,44,52,50,46,54,52,49,48,48,54,93,44,91,45,55,50,46,57,55,53,52,48,57,44,52,50,46,53,53,54,48,51,55,93,44,91,45,55,50,46,56,55,49,49,51,54,44,52,50,46,52,56,52,48,52,49,93,44,91,45,55,50,46,51,55,53,48,50,50,44,52,50,46,52,50,48,56,49,57,93,44,91,45,55,50,46,51,49,52,50,53,51,44,52,50,46,51,52,51,54,56,56,93,44,91,45,55,50,46,50,55,54,52,51,52,44,52,50,46,53,55,55,51,55,52,93,44,91,45,55,50,46,50,56,51,48,52,53,44,52,50,46,55,50,49,54,49,53,93,44,91,45,55,50,46,52,53,56,52,49,50,44,52,50,46,55,50,54,57,51,51,93,44,91,45,55,50,46,57,51,48,50,53,56,44,52,50,46,55,51,57,50,57,51,93,44,91,45,55,51,46,48,50,51,48,49,53,44,52,50,46,55,52,49,49,51,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,49,48,51,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,51,49,34,44,34,78,65,77,69,34,58,34,67,104,101,114,114,121,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,78,101,98,114,97,115,107,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,78,69,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,53,55,57,48,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,50,50,56,48,49,51,44,52,50,46,57,57,56,49,51,54,93,44,91,45,49,48,50,46,48,56,50,52,56,54,44,52,50,46,57,57,57,51,53,53,93,44,91,45,49,48,50,46,48,56,50,53,52,54,44,52,50,46,57,57,57,51,53,54,93,44,91,45,49,48,50,46,48,54,54,54,56,57,44,52,50,46,52,52,51,52,54,51,93,44,91,45,49,48,50,46,48,52,48,50,56,44,52,50,46,48,57,54,55,52,52,93,44,91,45,49,48,50,46,48,48,54,50,48,52,44,52,50,46,48,57,54,51,51,56,93,44,91,45,49,48,49,46,52,50,54,53,53,55,44,52,50,46,48,57,50,49,57,52,93,44,91,45,49,48,48,46,56,52,54,49,50,57,44,52,50,46,48,56,56,49,54,54,93,44,91,45,49,48,48,46,50,54,55,54,50,50,44,52,50,46,48,56,54,49,52,55,93,44,91,45,49,48,48,46,49,54,55,54,48,53,44,52,50,46,48,56,53,56,52,56,93,44,91,45,49,48,48,46,49,57,56,52,55,56,44,52,50,46,56,52,54,49,48,50,93,44,91,45,49,48,48,46,49,57,56,52,49,51,44,52,50,46,57,57,56,54,55,52,93,44,91,45,49,48,49,46,50,50,56,48,49,51,44,52,50,46,57,57,56,49,51,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,51,48,48,48,49,34,44,34,83,84,65,84,69,70,80,34,58,34,51,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,48,49,34,44,34,78,65,77,69,34,58,34,66,101,97,118,101,114,104,101,97,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,111,110,116,97,110,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,84,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,51,57,51,44,34,98,101,100,115,34,58,49,56,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,49,51,46,57,51,56,48,57,53,44,52,53,46,54,57,53,55,52,93,44,91,45,49,49,51,46,56,48,54,52,51,49,44,52,53,46,54,48,49,54,51,93,44,91,45,49,49,51,46,55,55,51,55,53,51,44,52,53,46,52,48,54,51,53,57,93,44,91,45,49,49,51,46,53,55,54,55,50,53,44,52,53,46,49,51,49,50,51,55,93,44,91,45,49,49,51,46,52,53,50,48,52,52,44,52,53,46,48,53,57,49,55,52,93,44,91,45,49,49,51,46,52,53,53,48,55,49,44,52,52,46,56,54,53,52,50,52,93,44,91,45,49,49,51,46,50,52,55,49,57,50,44,52,52,46,56,50,50,57,53,52,93,44,91,45,49,49,51,46,49,48,49,54,49,56,44,52,52,46,55,50,57,52,54,53,93,44,91,45,49,49,51,46,48,48,49,57,55,56,44,52,52,46,52,52,57,56,53,55,93,44,91,45,49,49,50,46,56,49,51,56,48,53,44,52,52,46,51,55,54,52,53,53,93,44,91,45,49,49,50,46,55,49,55,57,51,44,52,52,46,53,48,52,50,55,51,93,44,91,45,49,49,50,46,52,55,51,52,49,57,44,52,52,46,52,55,57,51,53,57,93,44,91,45,49,49,50,46,50,56,56,54,55,51,44,52,52,46,53,54,55,57,49,93,44,91,45,49,49,50,46,48,57,54,52,56,52,44,52,52,46,53,50,50,57,57,50,93,44,91,45,49,49,49,46,56,54,51,54,53,55,44,52,52,46,53,53,49,50,52,52,93,44,91,45,49,49,49,46,54,49,55,51,52,53,44,52,52,46,53,53,48,51,57,50,93,44,91,45,49,49,49,46,53,50,53,54,49,44,52,52,46,54,48,52,55,52,93,44,91,45,49,49,49,46,52,55,52,57,54,51,44,52,52,46,55,48,56,55,55,51,93,44,91,45,49,49,49,46,55,56,49,48,57,57,44,52,52,46,55,48,56,56,52,53,93,44,91,45,49,49,49,46,55,56,49,49,53,55,44,52,52,46,55,56,49,48,50,55,93,44,91,45,49,49,50,46,48,54,53,55,57,55,44,52,52,46,55,56,51,52,55,53,93,44,91,45,49,49,50,46,49,54,55,49,48,56,44,52,52,46,56,50,54,55,51,56,93,44,91,45,49,49,50,46,49,57,49,49,56,55,44,52,53,46,48,48,48,53,49,50,93,44,91,45,49,49,50,46,51,51,52,50,52,56,44,52,53,46,48,48,48,53,49,57,93,44,91,45,49,49,50,46,52,53,54,56,53,52,44,52,53,46,48,56,56,53,48,57,93,44,91,45,49,49,50,46,52,53,56,48,54,50,44,52,53,46,51,52,57,57,49,93,44,91,45,49,49,50,46,53,48,53,53,54,56,44,52,53,46,52,52,51,48,48,57,93,44,91,45,49,49,50,46,54,56,55,56,51,57,44,52,53,46,52,55,55,50,52,93,44,91,45,49,49,50,46,54,56,55,48,53,52,44,52,53,46,54,50,52,56,53,52,93,44,91,45,49,49,50,46,55,53,57,51,51,57,44,52,53,46,55,52,56,50,48,57,93,44,91,45,49,49,51,46,48,48,48,49,53,53,44,52,53,46,56,48,55,55,52,55,93,44,91,45,49,49,51,46,48,56,53,53,49,55,44,52,53,46,56,54,48,54,52,56,93,44,91,45,49,49,51,46,49,55,57,55,57,49,44,52,53,46,56,56,53,48,48,57,93,44,91,45,49,49,51,46,51,57,54,57,48,51,44,52,53,46,55,54,55,54,53,93,44,91,45,49,49,51,46,53,49,54,49,52,52,44,52,53,46,57,51,56,56,49,52,93,44,91,45,49,49,51,46,53,51,50,51,55,44,52,53,46,56,55,56,52,48,53,93,44,91,45,49,49,51,46,55,49,50,53,50,50,44,52,53,46,56,51,56,51,56,52,93,44,91,45,49,49,51,46,57,51,56,48,57,53,44,52,53,46,54,57,53,55,52,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,49,52,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,52,51,34,44,34,78,65,77,69,34,58,34,78,101,119,32,77,97,100,114,105,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,55,56,49,49,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,54,57,49,54,48,51,44,51,54,46,56,53,57,53,49,55,93,44,91,45,56,57,46,55,48,48,57,53,50,44,51,54,46,54,50,55,52,53,51,93,44,91,45,56,57,46,57,53,56,55,56,54,44,51,54,46,54,50,57,51,51,49,93,44,91,45,56,57,46,57,54,49,51,49,44,51,54,46,51,56,56,56,48,51,93,44,91,45,56,57,46,54,49,49,51,48,56,44,51,54,46,52,49,49,50,55,51,93,44,91,45,56,57,46,53,52,53,48,48,54,44,51,54,46,51,51,54,56,48,57,93,44,91,45,56,57,46,53,51,57,50,51,50,44,51,54,46,52,57,55,57,51,52,93,44,91,45,56,57,46,52,56,53,52,50,55,44,51,54,46,52,57,55,52,57,49,93,44,91,45,56,57,46,52,49,55,50,55,53,44,51,54,46,52,57,57,48,49,49,93,44,91,45,56,57,46,51,50,55,53,56,56,44,51,54,46,54,51,50,50,55,54,93,44,91,45,56,57,46,53,49,57,56,48,57,44,51,54,46,56,54,57,54,49,55,93,44,91,45,56,57,46,54,57,49,54,48,51,44,51,54,46,56,53,57,53,49,55,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,48,53,55,34,44,34,83,84,65,84,69,70,80,34,58,34,48,53,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,55,34,44,34,78,65,77,69,34,58,34,72,101,109,112,115,116,101,97,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,65,114,107,97,110,115,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,65,82,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,50,48,49,56,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,56,50,51,48,55,54,44,51,52,46,48,48,56,56,57,51,93,44,91,45,57,51,46,56,51,49,52,53,50,44,51,51,46,55,52,55,55,48,57,93,44,91,45,57,51,46,57,53,55,51,49,53,44,51,51,46,55,53,48,57,52,93,44,91,45,57,51,46,57,54,53,54,51,55,44,51,51,46,54,54,57,55,51,54,93,44,91,45,57,51,46,56,50,53,56,56,52,44,51,51,46,54,48,57,56,53,51,93,44,91,45,57,51,46,55,50,50,56,54,55,44,51,51,46,52,56,49,57,54,51,93,44,91,45,57,51,46,52,56,51,48,57,55,44,51,51,46,52,55,54,48,55,53,93,44,91,45,57,51,46,52,53,54,55,48,57,44,51,51,46,57,53,54,56,51,55,93,44,91,45,57,51,46,54,49,55,52,54,44,51,51,46,57,53,57,54,50,55,93,44,91,45,57,51,46,56,50,51,48,55,54,44,51,52,46,48,48,56,56,57,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,57,48,50,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,57,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,50,57,34,44,34,78,65,77,69,34,58,34,67,97,109,100,101,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,111,117,114,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,79,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,53,48,57,54,44,34,98,101,100,115,34,58,49,51,48,44,34,99,114,105,116,101,114,105,97,34,58,34,85,110,107,110,111,119,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,51,46,48,55,55,54,57,50,44,51,56,46,50,54,51,48,57,50,93,44,91,45,57,51,46,48,54,53,49,57,57,44,51,56,46,48,54,50,52,55,57,93,44,91,45,57,51,46,48,55,50,52,52,55,44,51,55,46,57,48,50,54,50,55,93,44,91,45,57,50,46,56,53,53,51,56,52,44,51,55,46,56,57,53,55,51,54,93,44,91,45,57,50,46,54,50,48,49,56,49,44,51,55,46,56,57,50,53,50,49,93,44,91,45,57,50,46,53,52,56,57,51,52,44,51,55,46,56,48,48,52,55,93,44,91,45,57,50,46,52,48,57,50,51,49,44,51,55,46,56,53,57,49,56,93,44,91,45,57,50,46,52,48,54,50,55,53,44,51,56,46,48,50,49,49,55,57,93,44,91,45,57,50,46,53,55,48,50,56,49,44,51,56,46,48,54,54,54,51,53,93,44,91,45,57,50,46,54,52,48,48,56,53,44,51,56,46,50,49,51,48,51,50,93,44,91,45,57,50,46,54,57,53,56,56,54,44,51,56,46,50,50,50,48,51,49,93,44,91,45,57,50,46,55,54,52,57,54,51,44,51,56,46,49,56,57,53,51,52,93,44,91,45,57,51,46,48,50,50,50,55,55,44,51,56,46,49,57,56,54,52,50,93,44,91,45,57,51,46,48,55,55,54,57,50,44,51,56,46,50,54,51,48,57,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,49,49,49,55,34,44,34,83,84,65,84,69,70,80,34,58,34,53,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,49,55,34,44,34,78,65,77,69,34,58,34,77,101,99,107,108,101,110,98,117,114,103,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,86,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,48,56,52,55,44,34,98,101,100,115,34,58,55,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,55,56,46,48,50,55,52,49,49,44,51,54,46,55,55,55,56,53,56,93,44,91,45,55,56,46,50,52,49,53,48,57,44,51,54,46,56,48,55,57,53,56,93,44,91,45,55,56,46,52,57,51,48,50,56,44,51,54,46,56,57,49,50,50,93,44,91,45,55,56,46,54,52,56,53,52,49,44,51,54,46,54,57,55,57,48,57,93,44,91,45,55,56,46,55,51,52,49,50,50,44,51,54,46,53,52,49,57,51,57,93,44,91,45,55,56,46,52,53,54,57,49,51,44,51,54,46,53,52,50,53,52,49,93,44,91,45,55,56,46,51,50,51,57,57,49,44,51,54,46,53,52,51,56,50,50,93,44,91,45,55,56,46,48,52,54,50,55,49,44,51,54,46,53,52,51,53,53,49,93,44,91,45,55,56,46,48,50,55,52,49,49,44,51,54,46,55,55,55,56,53,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,49,50,51,51,34,44,34,83,84,65,84,69,70,80,34,58,34,50,49,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,51,51,34,44,34,78,65,77,69,34,58,34,87,101,98,115,116,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,75,101,110,116,117,99,107,121,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,75,89,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,51,49,53,53,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,55,46,55,51,52,53,52,53,44,51,55,46,54,51,56,51,55,54,93,44,91,45,56,55,46,57,51,50,57,53,50,44,51,55,46,52,56,48,48,53,50,93,44,91,45,56,55,46,56,48,49,48,52,54,44,51,55,46,51,55,57,52,52,53,93,44,91,45,56,55,46,56,49,51,52,49,51,44,51,55,46,51,53,48,54,52,53,93,44,91,45,56,55,46,51,55,53,49,52,53,44,51,55,46,53,54,57,57,56,56,93,44,91,45,56,55,46,52,57,53,51,51,49,44,51,55,46,54,52,55,53,52,55,93,44,91,45,56,55,46,55,51,52,53,52,53,44,51,55,46,54,51,56,51,55,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,48,48,52,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,48,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,52,55,34,44,34,78,65,77,69,34,58,34,71,97,114,102,105,101,108,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,79,107,108,97,104,111,109,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,79,75,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,54,50,49,57,48,44,34,98,101,100,115,34,58,52,51,54,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,56,46,49,48,52,52,50,55,44,51,54,46,52,54,51,49,48,53,93,44,91,45,57,56,46,49,48,51,57,48,52,44,51,54,46,49,54,52,56,55,55,93,44,91,45,57,55,46,54,55,53,54,49,55,44,51,54,46,49,54,52,54,54,51,93,44,91,45,57,55,46,52,54,48,55,57,50,44,51,54,46,49,54,52,52,54,50,93,44,91,45,57,55,46,52,54,49,54,48,51,44,51,54,46,53,57,51,54,51,55,93,44,91,45,57,55,46,52,54,50,52,53,57,44,51,54,46,53,57,51,54,50,55,93,44,91,45,57,56,46,49,48,52,50,56,54,44,51,54,46,53,57,51,53,55,56,93,44,91,45,57,56,46,49,48,52,52,50,55,44,51,54,46,52,54,51,49,48,53,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,51,48,53,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,53,57,34,44,34,78,65,77,69,34,58,34,83,107,97,109,97,110,105,97,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,97,115,104,105,110,103,116,111,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,49,54,50,48,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,80,101,114,115,111,110,115,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,50,50,46,50,52,53,56,53,54,44,52,54,46,48,53,51,56,53,51,93,44,91,45,49,50,50,46,50,52,57,50,49,55,44,52,53,46,53,52,56,54,53,51,93,44,91,45,49,50,49,46,57,50,50,48,50,56,44,52,53,46,54,52,57,50,48,53,93,44,91,45,49,50,49,46,56,54,55,48,50,49,44,52,53,46,54,57,51,51,57,49,93,44,91,45,49,50,49,46,53,50,51,54,56,49,44,52,53,46,55,50,52,57,51,93,44,91,45,49,50,49,46,54,48,57,50,52,54,44,52,53,46,55,56,50,53,49,57,93,44,91,45,49,50,49,46,54,49,50,50,51,50,44,52,54,46,48,52,52,48,57,51,93,44,91,45,49,50,49,46,53,50,50,51,50,49,44,52,54,46,48,52,52,48,48,54,93,44,91,45,49,50,49,46,53,50,50,51,50,52,44,52,54,46,51,56,56,50,50,52,93,44,91,45,49,50,50,46,50,52,48,57,54,54,44,52,54,46,51,56,53,51,54,49,93,44,91,45,49,50,50,46,50,52,53,56,53,54,44,52,54,46,48,53,51,56,53,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,54,48,57,49,34,44,34,83,84,65,84,69,70,80,34,58,34,50,54,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,49,34,44,34,78,65,77,69,34,58,34,76,101,110,97,119,101,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,99,104,105,103,97,110,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,73,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,57,56,52,55,52,44,34,98,101,100,115,34,58,49,49,51,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,51,54,51,50,57,55,44,52,50,46,48,55,51,52,53,54,93,44,91,45,56,52,46,51,54,48,52,49,54,44,52,49,46,55,48,54,53,56,57,93,44,91,45,56,51,46,56,56,48,51,57,49,44,52,49,46,55,50,48,50,49,50,93,44,91,45,56,51,46,55,54,51,49,53,44,52,49,46,55,50,51,53,53,50,93,44,91,45,56,51,46,55,55,51,57,50,50,44,52,50,46,48,56,50,52,51,93,44,91,45,56,52,46,49,51,49,57,54,51,44,52,50,46,48,55,49,53,55,55,93,44,91,45,56,52,46,51,54,51,50,57,55,44,52,50,46,48,55,51,52,53,54,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,49,51,49,50,51,34,44,34,83,84,65,84,69,70,80,34,58,34,49,51,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,50,51,34,44,34,78,65,77,69,34,58,34,71,105,108,109,101,114,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,71,101,111,114,103,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,71,65,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,50,57,57,50,50,44,34,98,101,100,115,34,58,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,52,46,54,49,56,54,51,55,44,51,52,46,56,53,53,51,57,56,93,44,91,45,56,52,46,54,53,55,48,57,56,44,51,52,46,55,50,56,57,48,53,93,44,91,45,56,52,46,54,53,52,53,50,51,44,51,52,46,53,56,51,49,56,55,93,44,91,45,56,52,46,54,53,52,51,54,54,44,51,52,46,53,52,56,57,52,54,93,44,91,45,56,52,46,51,52,53,53,53,51,44,51,52,46,53,54,50,55,51,53,93,44,91,45,56,52,46,49,57,54,55,53,52,44,51,52,46,54,49,55,57,50,52,93,44,91,45,56,52,46,51,49,52,54,53,51,44,51,52,46,56,48,55,51,50,56,93,44,91,45,56,52,46,52,50,57,48,57,51,44,51,52,46,56,53,53,48,51,54,93,44,91,45,56,52,46,54,49,56,54,51,55,44,51,52,46,56,53,53,51,57,56,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,55,49,51,53,34,44,34,83,84,65,84,69,70,80,34,58,34,50,55,34,44,34,67,79,85,78,84,89,70,80,34,58,34,49,51,53,34,44,34,78,65,77,69,34,58,34,82,111,115,101,97,117,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,110,110,101,115,111,116,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,78,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,53,52,54,50,44,34,98,101,100,115,34,58,50,53,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,57,54,46,52,48,53,52,48,56,44,52,56,46,57,57,57,57,56,51,93,44,91,45,57,54,46,51,56,55,56,51,53,44,52,56,46,53,52,52,51,48,56,93,44,91,45,57,53,46,54,48,50,51,49,53,44,52,56,46,53,51,56,56,56,55,93,44,91,45,57,53,46,51,52,50,53,52,44,52,56,46,53,52,48,50,49,49,93,44,91,45,57,53,46,51,52,50,55,51,44,52,56,46,55,49,51,48,50,56,93,44,91,45,57,53,46,48,56,57,56,54,51,44,52,56,46,55,49,51,48,54,50,93,44,91,45,57,53,46,48,57,49,50,56,50,44,52,56,46,57,49,57,49,55,51,93,44,91,45,57,53,46,50,51,53,54,48,54,44,52,56,46,56,56,49,52,53,93,44,91,45,57,53,46,51,49,57,56,57,53,44,52,56,46,57,57,56,55,55,93,44,91,45,57,54,46,52,48,53,52,48,56,44,52,56,46,57,57,57,57,56,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,50,56,48,56,57,34,44,34,83,84,65,84,69,70,80,34,58,34,50,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,56,57,34,44,34,78,65,77,69,34,58,34,77,97,100,105,115,111,110,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,77,105,115,115,105,115,115,105,112,112,105,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,77,83,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,49,48,51,52,57,56,44,34,98,101,100,115,34,58,54,55,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,44,91,45,57,48,46,48,52,57,49,50,57,44,51,50,46,55,51,53,54,55,52,93,44,91,45,57,48,46,52,53,48,48,51,55,44,51,50,46,53,55,51,55,56,51,93,44,91,45,57,48,46,52,52,53,57,52,54,44,51,50,46,52,56,55,57,48,51,93,44,91,45,57,48,46,50,52,51,54,52,49,44,51,50,46,52,56,55,53,51,51,93,44,91,45,57,48,46,50,52,51,55,54,52,44,51,50,46,52,48,48,48,57,56,93,44,91,45,57,48,46,48,54,53,54,57,55,44,51,50,46,51,57,57,53,50,57,93,44,91,45,56,57,46,56,54,49,49,53,57,44,51,50,46,53,56,51,49,54,50,93,44,91,45,56,57,46,55,56,52,49,50,51,44,51,50,46,53,56,54,56,57,49,93,44,91,45,56,57,46,55,51,48,51,48,52,44,51,50,46,54,51,52,50,50,56,93,44,91,45,56,57,46,55,51,48,48,49,54,44,51,50,46,56,56,53,48,55,50,93,44,91,45,56,57,46,57,54,53,56,56,50,44,51,50,46,56,55,57,53,55,51,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,52,56,50,50,55,34,44,34,83,84,65,84,69,70,80,34,58,34,52,56,34,44,34,67,79,85,78,84,89,70,80,34,58,34,50,50,55,34,44,34,78,65,77,69,34,58,34,72,111,119,97,114,100,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,84,101,120,97,115,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,84,88,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,51,54,54,54,55,44,34,98,101,100,115,34,58,51,53,48,44,34,99,114,105,116,101,114,105,97,34,58,34,83,112,101,99,105,109,101,110,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,49,48,49,46,54,56,56,55,52,44,51,50,46,53,50,53,50,50,50,93,44,91,45,49,48,49,46,54,57,53,48,49,49,44,51,50,46,48,56,55,53,51,50,93,44,91,45,49,48,49,46,50,54,52,50,49,54,44,51,50,46,48,56,55,49,51,54,93,44,91,45,49,48,49,46,49,56,51,57,57,55,44,51,50,46,48,56,55,50,48,56,93,44,91,45,49,48,49,46,49,55,52,53,55,49,44,51,50,46,53,50,52,49,49,50,93,44,91,45,49,48,49,46,54,56,56,55,52,44,51,50,46,53,50,53,50,50,50,93,93,93,125,125,44,123,34,116,121,112,101,34,58,34,70,101,97,116,117,114,101,34,44,34,112,114,111,112,101,114,116,105,101,115,34,58,123,34,71,69,79,73,68,34,58,34,53,52,48,57,57,34,44,34,83,84,65,84,69,70,80,34,58,34,53,52,34,44,34,67,79,85,78,84,89,70,80,34,58,34,48,57,57,34,44,34,78,65,77,69,34,58,34,87,97,121,110,101,34,44,34,115,116,97,116,101,95,110,97,109,101,34,58,34,87,101,115,116,32,86,105,114,103,105,110,105,97,34,44,34,115,116,97,116,101,95,97,98,98,114,34,58,34,87,86,34,44,34,112,111,112,117,108,97,116,105,111,110,34,58,52,48,55,48,56,44,34,98,101,100,115,34,58,56,48,44,34,99,114,105,116,101,114,105,97,34,58,34,78,65,34,125,44,34,103,101,111,109,101,116,114,121,34,58,123,34,116,121,112,101,34,58,34,80,111,108,121,103,111,110,34,44,34,99,111,111,114,100,105,110,97,116,101,115,34,58,91,91,91,45,56,50,46,53,57,51,52,56,44,51,56,46,52,50,49,56,50,49,93,44,91,45,56,50,46,54,48,52,54,50,53,44,51,56,46,50,52,55,54,54,50,93,44,91,45,56,50,46,54,51,52,55,48,50,44,51,56,46,49,51,54,57,52,49,93,44,91,45,56,50,46,53,52,57,50,52,44,51,56,46,48,54,55,57,53,50,93,44,91,45,56,50,46,52,57,55,55,57,54,44,51,55,46,57,52,53,52,56,56,93,44,91,45,56,50,46,52,49,52,55,53,55,44,51,55,46,56,53,53,53,48,57,93,44,91,45,56,50,46,51,48,54,51,57,49,44,51,55,46,57,52,51,54,52,93,44,91,45,56,50,46,50,48,50,50,51,54,44,51,56,46,48,51,54,49,57,51,93,44,91,45,56,50,46,50,56,53,54,57,51,44,51,56,46,49,52,52,57,53,50,93,44,91,45,56,50,46,50,54,52,56,52,57,44,51,56,46,50,50,57,49,57,57,93,44,91,45,56,50,46,53,48,56,50,56,44,51,56,46,52,49,49,49,57,56,93,44,91,45,56,50,46,53,57,51,52,56,44,51,56,46,52,50,49,56,50,49,93,93,93,125,125,93,125]) \ No newline at end of file +}; \ No newline at end of file diff --git a/src/config/index.js b/src/config/index.js index a0785b3d6..04db5972f 100644 --- a/src/config/index.js +++ b/src/config/index.js @@ -525,11 +525,13 @@ export const dataPresets = { tables: { 'cases': { 'file':'covid_confirmed_usafacts.pbf', + 'bigQuery':'public.covid_confirmed_usafacts', 'dates':'isoDateList', 'type':'time-series-cumulative' }, 'deaths': { 'file':'covid_deaths_usafacts.pbf', + 'bigQuery':'public.covid_deaths_usafacts', 'dates':'isoDateList', 'type':'time-series-cumulative' } diff --git a/src/hooks/useBigQuery.js b/src/hooks/useBigQuery.js index 72183d5a9..faf782285 100644 --- a/src/hooks/useBigQuery.js +++ b/src/hooks/useBigQuery.js @@ -1,4 +1,24 @@ +import { useSelector } from "react-redux"; -// export default function useBigQuery(){ +export default function useBigQuery(){ + const dates = useSelector((state) => state.dates); + const getRecentSnapshot = async (datasets) => { + const response = await fetch(`${process.env.PUBLIC_URL}/.netlify/functions/query?type=snapshot&datasets=${JSON.stringify(datasets)}`).then(r => r.json()) + const dummyArray = new Array(dates.length).fill(null) + let parsedData = { + dates: response.data[0].dateRange.map(f => dates.indexOf(f)), + data: {} + } + const firstDate = parsedData.dates[0] -// } \ No newline at end of file + for (let i=0; i state.dataPresets); const defaultTables = useSelector((state) => state.defaultTables); const geoda = useContext(GeoDaContext); + const { getRecentSnapshot } = useBigQuery() const dispatch = useDispatch(); @@ -78,12 +79,13 @@ export default function useLoadData(){ setIsInProcess(true) const numeratorParams = datasetParams.tables[dataParams.numerator]||defaultTables[dataParams.numerator] const denominatorParams = dataParams.denominator !== 'properties' ? datasetParams.tables[dataParams.denominator]||defaultTables[dataParams.denominator] : null - + + if ((storedData.hasOwnProperty(numeratorParams?.file)||dataParams.numerator === 'properties') && (storedData.hasOwnProperty(denominatorParams?.file)||dataParams.denominator !== 'properties')) return [numeratorParams.file, denominatorParams && denominatorParams.file] const firstLoadPromises = [ geoda.loadGeoJSON(`${process.env.PUBLIC_URL}/geojson/${datasetParams.geojson}`, datasetParams.id), - numeratorParams && handleLoadData(numeratorParams), - denominatorParams && handleLoadData(denominatorParams) + numeratorParams ? numeratorParams.bigQuery !== undefined ? getRecentSnapshot([numeratorParams.bigQuery]) : handleLoadData(numeratorParams) : () => {}, + denominatorParams ? denominatorParams.bigQuery !== undefined ? getRecentSnapshot([denominatorParams.bigQuery]) : handleLoadData(denominatorParams) : () => {} ]; const [ From 71ae64dcfc08b824d32b474f9bec3768d14cad1a Mon Sep 17 00:00:00 2001 From: theuscovidatlas Date: Tue, 24 Aug 2021 21:36:50 -0500 Subject: [PATCH 19/40] WIP --- src/components/Slider.js | 2 +- src/components/SliderPlaceholder.js | 37 +++++++++++++++++++++++++++++ src/components/TopPanel.js | 17 ++++++------- src/components/index.js | 5 +++- src/constants/defaults.js | 4 +++- src/hooks/useLoadData.js | 1 + src/index.js | 28 ++++++++++------------ 7 files changed, 68 insertions(+), 26 deletions(-) create mode 100644 src/components/SliderPlaceholder.js diff --git a/src/components/Slider.js b/src/components/Slider.js index bd27f5ac8..dd9cd1c84 100644 --- a/src/components/Slider.js +++ b/src/components/Slider.js @@ -253,7 +253,7 @@ const formatDate = (date) => { return rawDate.toLocaleDateString('en-US', options); } -function DateTitle(){ +export function DateTitle(){ const nType = useSelector(state => state.dataParams.nType); const nIndex = useSelector(state => state.dataParams.nIndex); const dates = useSelector(state => state.dates); diff --git a/src/components/SliderPlaceholder.js b/src/components/SliderPlaceholder.js new file mode 100644 index 000000000..97597ab3d --- /dev/null +++ b/src/components/SliderPlaceholder.js @@ -0,0 +1,37 @@ +import styled from 'styled-components'; +import { DateTitle } from './Slider'; +import { colors } from '../config'; + +const Container = styled.div` + display:flex; + align-items:center; + justify-content:center; + flex-direction:row; + +` + +const HistoricDataButton = styled.button` + border:none; + padding:0.25em 0.5em; + border-radius:0.125em; + margin:0.5em; + font-weight:bold; + cursor:pointer; + transition:250ms all; + color:white; + border-width:1px; + border-style:solid; + background:none; + font-family:'Lato', Arial, sans-serif; + &:hover { + border-color:${colors.yellow}; + color:${colors.yellow}; + } +` + +export default function SliderPlaceholder({setHistoric}){ + return + + Load Historic Data + +} \ No newline at end of file diff --git a/src/components/TopPanel.js b/src/components/TopPanel.js index 82f601760..bed4ed4d8 100644 --- a/src/components/TopPanel.js +++ b/src/components/TopPanel.js @@ -1,9 +1,10 @@ // this components houses the slider, legend, and bottom dock chart import React from 'react'; +import { useSelector } from 'react-redux'; import styled from 'styled-components'; -import { DateSlider, Dock, Ticks } from '../components'; +import { DateSlider, Dock, Ticks, SliderPlaceholder } from '../components'; import { colors } from '../config'; // Styled components @@ -20,6 +21,7 @@ const TopDrawer = styled.div` box-shadow: 0px 0px 5px rgba(0,0,0,0.7); border-radius:0 0 0.5vh 0.5vh ; transition:250ms all; + color:white; hr { opacity:0.5; } @@ -37,16 +39,15 @@ const TopDrawer = styled.div` // bottom all the way down for landscape phone } ` -const TopPanel = () => { +export default function TopPanel(){ + const shouldLoadTimeseries = useSelector((state)=>state.shouldLoadTimeseries) return ( - + {!shouldLoadTimeseries && } + {shouldLoadTimeseries && } - + {shouldLoadTimeseries && } ) - -} - -export default TopPanel \ No newline at end of file +} \ No newline at end of file diff --git a/src/components/index.js b/src/components/index.js index 03a040a13..77f5dde7c 100644 --- a/src/components/index.js +++ b/src/components/index.js @@ -4,7 +4,7 @@ import ContextMenu from './ContextMenu'; import CsvDownloader from './CsvDownloader'; import DataDetails from './DataDetails'; import DataPanel from './DataPanel'; -import DateSlider from './Slider'; +import DateSlider, {DateTitle} from './Slider'; import Dock from './Dock'; import Draggable from './Draggable'; import Footer from './Footer'; @@ -21,6 +21,7 @@ import VariablePanel from './VariablePanel'; import Popover from './TooltipPopper'; import Preloader from './Preloader'; import Scaleable from './Scaleable'; +import SliderPlaceholder from './SliderPlaceholder'; import StaticNavbar from './StaticNavbar'; import Ticks from './Ticks'; import Tooltip from './Tooltip'; @@ -53,6 +54,7 @@ export { CsvDownloader, DataDetails, DataPanel, + DateTitle, DateSlider, Dock, Draggable, @@ -76,6 +78,7 @@ export { Tooltip, TopPanel, ShareButton, + SliderPlaceholder, About, Api, diff --git a/src/constants/defaults.js b/src/constants/defaults.js index 610f08618..f43699c59 100644 --- a/src/constants/defaults.js +++ b/src/constants/defaults.js @@ -140,5 +140,7 @@ export const INITIAL_STATE = { data: null }, shouldUpdate:true, - isLoading: true + isLoading: true, + shouldLoadTimeseries:false, + shouldAlwaysLoadTimeseries: false }; \ No newline at end of file diff --git a/src/hooks/useLoadData.js b/src/hooks/useLoadData.js index 15eca782b..caee566e6 100644 --- a/src/hooks/useLoadData.js +++ b/src/hooks/useLoadData.js @@ -178,6 +178,7 @@ export default function useLoadData(){ const secondLoad = useMemo(() => async (datasetParams, defaultTables, loadedTables, mapId) => { if (geoda === undefined) return; + console.log(loadedTables) setIsInProcess(true); const defaultChartTable = defaultTables[chartParams.table] diff --git a/src/index.js b/src/index.js index 8305eca01..b7af8d87d 100644 --- a/src/index.js +++ b/src/index.js @@ -6,21 +6,19 @@ import './index.css'; import * as serviceWorkerRegistration from './serviceWorkerRegistration'; import { createStore } from 'redux'; import rootReducer from './reducers'; -// import { persistStore, persistReducer } from 'redux-persist'; -// import storage from 'redux-persist/lib/storage'; // defaults to localStorage for web -// import { PersistGate } from 'redux-persist/integration/react'; -// import autoMergeLevel2 from 'redux-persist/lib/stateReconciler/autoMergeLevel2' +import { persistStore, persistReducer } from 'redux-persist'; +import storage from 'redux-persist/lib/storage'; // defaults to localStorage for web +import { PersistGate } from 'redux-persist/integration/react'; -// const persistConfig = { -// key: 'root', -// storage, -// stateReconciler: autoMergeLevel2 , -// whitelist: [] // only navigation will be persisted 'dataParams', 'mapParams', 'currentData' -// } +const persistConfig = { + key: 'root', + storage, + whitelist: ['shouldLoadTimeseries','shouldAlwaysLoadTimeseries'] // only navigation will be persisted 'dataParams', 'mapParams', 'currentData' +} -// const persistedReducer = persistReducer(persistConfig, rootReducer) +const persistedReducer = persistReducer(persistConfig, rootReducer) const store = createStore( - rootReducer, + persistedReducer, ( typeof window === 'object' && window.__REDUX_DEVTOOLS_EXTENSION__ @@ -29,15 +27,15 @@ const store = createStore( stateSanitizer: (state) => state.storedGeojson ? { ...state, storedData: '<>', storedGeojson: '<>' } : state }) ); -// const persistor = persistStore(store) +const persistor = persistStore(store) ReactDOM.render( - {/* */} + - {/* */} +